diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index db138a0..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index 4f074fd..f520495 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,18 @@ .DS_Store **/.DS_Store + +# Virtual Environments +.venv_ocr/ +.tmp_pydeps/ +venv/ +ENV/ + +# Dependency directories +node_modules/ +**/node_modules/ + +# Temp files and local IDE settings +tmp/ +.agents/ +.claude/ +.cursor/ diff --git a/AI-Arco-Design-Themes-Demos-complete/README.md b/AI-Arco-Design-Themes-Demos-complete/README.md new file mode 100644 index 0000000..e6c7fda --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/README.md @@ -0,0 +1,272 @@ +# 网页数据导出包使用说明 + +本压缩包包含从网页提取的完整数据,用于 AI 辅助页面还原和设计分析。 + +## 📦 文件结构 + +``` +├── README.md # 本说明文件 +├── screenshot.png # 完整页面截图(系统 API 截取) +├── domlist.json # DOM 结构数据(TOON 格式) +├── stylePool.json # 样式池数据(TOON 格式) +├── theme.json # 设计令牌(可选) +├── content.md # 页面内容 Markdown(可选) +├── index.html # 参考:生成的 HTML 文件 +├── style.css # 参考:生成的 CSS 文件 +└── assets/ + ├── images/ # 图片资源 + └── fonts/ # 字体资源 +``` + +## 🎯 核心文件说明 + +### 1. screenshot.png +- **用途:** 页面完整截图,用于视觉参考 +- **截取方式:** 使用 Chrome DevTools Protocol (CDP) 系统 API +- **特点:** 完整页面截图,包含滚动区域,无拼接痕迹 +- **优先级:** ⭐⭐⭐⭐⭐ 最重要的视觉参考 + +### 2. domlist.json(TOON 格式) +- **用途:** DOM 节点结构映射 +- **格式:** + ```json + { + "nodes": { + "n1": { + "tag": "div", + "children": ["n2", "n3"], + "styleId": "style_1", + "width": "1200px", + "height": "800px", + "text": "文本内容", + "id": "元素ID", + "class": "CSS类名", + "label": "data-label", + "src": "图片路径" + } + }, + "root": "n1" + } + ``` +- **说明:** + - `nodes`: 所有节点的映射表 + - `root`: 根节点 ID + - `width/height`: 从样式中独立存放,精确尺寸 + - `styleId`: 指向 stylePool.json 中的样式 + +### 3. stylePool.json(TOON 格式) +- **用途:** 去重后的样式池 +- **格式:** + ```json + { + "styles": { + "style_1": { + "tw": "flex items-center justify-between", + "custom": { + "borderRadius": "8px", + "boxShadow": "0 2px 8px rgba(0,0,0,0.1)" + } + } + } + } + ``` +- **说明:** + - `tw`: Tailwind CSS 类名(已优化) + - `custom`: 无法用 Tailwind 表达的自定义样式 + - 样式已去重,多个节点可共享同一 styleId + +### 4. theme.json(可选) +- **用途:** 页面设计令牌(Top 10) +- **内容:** 颜色、字体、间距、圆角、阴影等 +- **格式:** + ```json + { + "colors": { + "background": [{"value": "#ffffff", "count": 15}], + "text": [{"value": "#333333", "count": 20}] + }, + "typography": { + "families": ["Inter", "Arial"], + "textStyles": [{"size": "16px", "lineHeight": "1.5"}] + }, + "spacing": ["8px", "16px", "24px"], + "radius": ["4px", "8px"], + "shadow": { + "box": ["0 2px 8px rgba(0,0,0,0.1)"] + } + } + ``` + +### 5. content.md(可选) +- **用途:** 页面文本内容(Markdown 格式) +- **用途:** 快速理解页面信息结构和文案 + +### 6. index.html 和 style.css(仅供参考) +- **⚠️ 注意:** 这两个文件仅供参考,不是还原的必需文件 +- **用途:** + - 快速预览页面效果 + - 理解 DOM 结构和样式关系 + - 验证数据的正确性 +- **说明:** + - `index.html`: 使用 Tailwind CDN + 自定义样式 + - `style.css`: 包含 @font-face 和自定义样式 + - 可以直接在浏览器中打开查看效果 +- **还原时:** 应该使用 `domlist.json` 和 `stylePool.json`,而不是直接使用这两个文件 + +## 🚀 快速还原指引(推荐) + +**目标:** 快速生成页面视觉效果,节省 token + +**数据源优先级:** +1. ⭐⭐⭐⭐⭐ `screenshot.png` - 视觉参考 +2. ⭐⭐⭐⭐ `theme.json` - 设计令牌 +3. ⭐⭐⭐ `content.md` - 内容结构 +4. ⭐⭐ `index.html` - 参考实现(可选) + +**操作步骤:** + +1. **分析截图** + - 识别页面整体布局(header、main、footer) + - 识别主要视觉元素(导航、卡片、按钮等) + - 识别颜色、字体、间距等设计风格 + +2. **提取设计令牌**(从 theme.json) + - 颜色:背景色、文本色、边框色 + - 字体:字体家族、字号、行高、粗细 + - 间距:margin、padding、gap + - 其他:圆角、阴影、线宽 + +3. **生成 DOM 结构** + - 根据截图创建简化的 DOM 层级 + - 不必严格按照 domlist.json + - 使用 theme.json 中的设计令牌 + +4. **添加资源** + - 图片:使用 `assets/images/` 中的资源 + - 字体:使用 `assets/fonts/` 或系统字体 + +5. **微调样式** + - 对比截图调整布局和样式 + - 确保视觉效果接近原页面 + +**优点:** +- ✅ 快速生成 +- ✅ 节省 token +- ✅ 视觉效果好 + +## 🎨 精细还原指引(高保真) + +**目标:** 高保真还原页面结构与样式 + +**数据源优先级:** +1. ⭐⭐⭐⭐⭐ `screenshot.png` - 视觉参考 +2. ⭐⭐⭐⭐⭐ `domlist.json` - DOM 结构 +3. ⭐⭐⭐⭐⭐ `stylePool.json` - 样式数据 +4. ⭐⭐⭐⭐ `theme.json` - 设计令牌 +5. ⭐⭐ `index.html` - 参考实现(可选) + +**操作步骤:** + +1. **分析截图** + - 页面整体布局、颜色分布、主要元素 + +2. **构建 DOM 树**(从 domlist.json) + - 按 `children` 严格构建节点层级 + - 保留所有节点属性(id、class、label、src 等) + - 使用 `width` 和 `height` 设置精确尺寸 + +3. **应用样式**(从 stylePool.json) + - 每个节点通过 `styleId` 关联样式 + - `tw` 字段:Tailwind CSS 类名 + - `custom` 字段:自定义样式(CSS-in-JS 或 style 属性) + +4. **添加资源** + - 图片:`assets/images/` 中的资源,保持原始尺寸 + - 字体:`assets/fonts/` 中的 Web 字体,使用 @font-face + +5. **微调细节** + - 对比截图调整节点尺寸、间距、字体、阴影 + - 确保视觉效果高度还原 + +**优点:** +- ✅ 高保真还原 +- ✅ 结构完整 +- ✅ 样式精确 + +## 💡 使用建议 + +### 选择还原方式 + +- **快速原型:** 使用快速还原指引 +- **生产环境:** 使用精细还原指引 +- **AI Agent:** 使用渐进式还原指引(见下方 🧠 模式) +- **学习参考:** 打开 `index.html` 查看效果 + +### 注意事项 + +1. **截图优先:** 如果数据与截图冲突,以截图为准 +2. **样式优化:** stylePool 中的样式已优化(Tailwind + 自定义) +3. **资源路径:** 图片和字体路径需要根据实际部署调整 +4. **响应式:** 原始页面的响应式样式可能未完全保留 + +--- + +## 🧠 渐进式高精度还原(AI Agent 推荐) + +使用查询脚本实现渐进式数据读取,避免 Context Window 溢出。 +当离线数据不完整时,利用 Playwright 回溯原始页面补充采集。 + +**前置条件:** Node.js >= 18 + +**原始页面 URL:** `manifest.json` → `sourceUrl` 字段。 +当数据不准确时,AI 可通过 Playwright 访问此 URL 获取实时信息。 + +### 渐进式读取 + +```bash +# Step 1 — 全局概览(~500 tokens) +node scripts/query-page-data.mjs summary +node scripts/query-page-data.mjs skeleton --depth=2 + +# Step 2 — 按 Section 深入 +node scripts/query-page-data.mjs subtree n2 --depth=3 +node scripts/query-page-data.mjs nodes n3,n4,n5 --fields=style,text,selector + +# Step 3 — 条件反查 +node scripts/query-page-data.mjs find --tag=button --interactive +node scripts/query-page-data.mjs find --text="登录" +``` + +### 在线回溯(按需) + +当发现离线数据可疑时,可使用 Playwright(MCP 或 CLI)访问 `sourceUrl`: +- 每个节点文件 `flat/nodes/{id}.json` 包含 `selector` 字段 +- 该 `selector` 可直接用于 `page.locator(selector)` 定位原始元素 +- 截图、computedStyle、hover 态等均可按需获取 + +### 扁平化文件结构(full/interactive 模式) + +``` +flat/ +├── skeleton.json # 极简骨架树(含 sourceUrl,< 5KB) +├── index.json # 反向索引(tag/role/interactive 分类) +├── nodes/ # 每个节点的完整数据(含 selector + bbox) +│ ├── n1.json +│ └── ... +└── styles/ # 每个样式的完整数据 + ├── style_1.json + └── ... +``` + +--- + +## 📚 相关资源 + +- **TOON 格式:** https://github.com/toon-format/toon +- **Tailwind CSS:** https://tailwindcss.com/ +- **Chrome Extension:** Axhub Make + +--- + +**生成时间:** 2026-04-20T15:28:01.363Z +**版本:** 3.0(渐进式检索 + 在线回溯) diff --git a/AI-Arco-Design-Themes-Demos-complete/content.md b/AI-Arco-Design-Themes-Demos-complete/content.md new file mode 100644 index 0000000..23bdc1b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/content.md @@ -0,0 +1,113 @@ +[常用组件](/themes/demo/preview/common-components) + +仪表盘 + +工作台 + +实时监控 + +数据可视化 + +分析页 + +多维数据分析 + +列表页 + +查询表格 + +卡片列表 + +表单页 + +分组表单 + +分步表单 + +详情页 + +基础详情页 + +结果页 + +成功页 + +失败页 + +异常页 + +403 + +404 + +500 + +个人中心 + +用户信息 + +用户设置 + +列表页 + +查询表格 + +元素检查 dom-inspector + +###### 查询表格 + +集合编号 + +集合名称 + +内容体裁 + +全部 + +筛选方式 + +全部 + +创建时间 + +\- + +状态 + +全部 + +查询重置 + +新建 + +批量导入 + +下载 + +| 集合编号 | 集合名称 | 内容体裁 | 筛选方式 | 内容量 | 创建时间 | 状态 | 操作 | +| ------------- | -------- | ----- | ---- | ----- | ------------------- | --- | -- | +| 18514366-5559 | 每日推荐视频集 | 图文 | 人工 | 105 | 2026-04-10 23:28:13 | 已上线 | 查看 | +| 64494084-3767 | 每日推荐视频集 | 横版短视频 | 人工 | 1,246 | 2026-04-16 23:28:13 | 未上线 | 查看 | +| 79634294-4686 | 国际新闻集合 | 竖版短视频 | 规则筛选 | 366 | 2026-04-05 23:28:13 | 已上线 | 查看 | +| 86326438-1258 | 抖音短视频候选集 | 横版短视频 | 人工 | 1 | 2026-03-03 23:28:13 | 未上线 | 查看 | +| 98615157-3293 | 国际新闻集合 | 竖版短视频 | 人工 | 1,316 | 2026-04-03 23:28:13 | 未上线 | 查看 | +| 14712111-5478 | 国际新闻集合 | 图文 | 规则筛选 | 1,688 | 2026-03-02 23:28:13 | 未上线 | 查看 | +| 34674613-1537 | 每日推荐视频集 | 竖版短视频 | 规则筛选 | 324 | 2026-03-06 23:28:13 | 未上线 | 查看 | +| 71922474-4505 | 每日推荐视频集 | 竖版短视频 | 规则筛选 | 1,083 | 2026-03-15 23:28:13 | 未上线 | 查看 | +| 14481716-4383 | 抖音短视频候选集 | 横版短视频 | 规则筛选 | 835 | 2026-04-06 23:28:13 | 已上线 | 查看 | +| 26506467-1132 | 抖音短视频候选集 | 横版短视频 | 规则筛选 | 1,446 | 2026-03-01 23:28:13 | 已上线 | 查看 | + +共 100 条 + +* 1 +* 2 +* 3 +* 4 +* 5 +* 10 + +10 条/页 + +Arco Design Pro + +A design is a plan or specification for the construction of an object or system or for the implementation of an activity or process, or the result of that plan or specification in the form of a prototype, product or process. The verb to design expresses the process of developing a design. The verb to design expresses the process of developing a design. A design is a plan or specification for the construction of an object or system or for the ...--Arco Design展开 \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/index.json b/AI-Arco-Design-Themes-Demos-complete/flat/index.json new file mode 100644 index 0000000..a15d92e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/index.json @@ -0,0 +1,1973 @@ +{ + "byRole": { + "aside": [ + "n146" + ], + "footer": [ + "n719" + ], + "form": [ + "n253" + ], + "header": [ + "n8", + "n25", + "n42", + "n59", + "n76", + "n88", + "n105", + "n127" + ], + "main": [ + "n717" + ], + "section": [ + "n720", + "n721", + "n722" + ] + }, + "byTag": { + "a": [ + "n2" + ], + "aside": [ + "n146" + ], + "body": [ + "n728" + ], + "button": [ + "n159", + "n256", + "n259", + "n264", + "n267", + "n272", + "n354", + "n390", + "n426", + "n462", + "n498", + "n534", + "n570", + "n606", + "n642", + "n678" + ], + "col": [ + "n276", + "n277", + "n278", + "n279", + "n280", + "n281", + "n282", + "n283" + ], + "colgroup": [ + "n284" + ], + "div": [ + "n3", + "n8", + "n11", + "n13", + "n16", + "n18", + "n19", + "n20", + "n25", + "n28", + "n30", + "n33", + "n35", + "n36", + "n37", + "n42", + "n45", + "n47", + "n50", + "n52", + "n53", + "n54", + "n59", + "n62", + "n64", + "n67", + "n69", + "n70", + "n71", + "n76", + "n79", + "n81", + "n82", + "n83", + "n88", + "n91", + "n93", + "n96", + "n98", + "n99", + "n100", + "n105", + "n108", + "n110", + "n113", + "n115", + "n118", + "n120", + "n121", + "n122", + "n127", + "n130", + "n132", + "n135", + "n137", + "n138", + "n139", + "n140", + "n141", + "n142", + "n144", + "n145", + "n148", + "n151", + "n154", + "n155", + "n157", + "n158", + "n160", + "n161", + "n162", + "n165", + "n168", + "n169", + "n170", + "n171", + "n172", + "n173", + "n175", + "n178", + "n179", + "n180", + "n181", + "n182", + "n183", + "n185", + "n187", + "n188", + "n189", + "n191", + "n192", + "n193", + "n194", + "n195", + "n196", + "n197", + "n198", + "n199", + "n200", + "n202", + "n204", + "n205", + "n206", + "n208", + "n209", + "n210", + "n211", + "n212", + "n213", + "n214", + "n215", + "n216", + "n217", + "n219", + "n221", + "n224", + "n227", + "n228", + "n229", + "n230", + "n231", + "n232", + "n233", + "n234", + "n236", + "n238", + "n239", + "n240", + "n242", + "n243", + "n244", + "n245", + "n246", + "n247", + "n248", + "n249", + "n250", + "n251", + "n252", + "n260", + "n261", + "n265", + "n268", + "n269", + "n273", + "n274", + "n275", + "n286", + "n289", + "n292", + "n295", + "n299", + "n301", + "n302", + "n303", + "n304", + "n308", + "n310", + "n311", + "n312", + "n313", + "n316", + "n319", + "n327", + "n330", + "n333", + "n335", + "n338", + "n341", + "n344", + "n351", + "n356", + "n363", + "n366", + "n369", + "n371", + "n374", + "n377", + "n380", + "n387", + "n392", + "n399", + "n402", + "n405", + "n407", + "n410", + "n413", + "n416", + "n423", + "n428", + "n435", + "n438", + "n441", + "n443", + "n446", + "n449", + "n452", + "n459", + "n464", + "n471", + "n474", + "n477", + "n479", + "n482", + "n485", + "n488", + "n495", + "n500", + "n507", + "n510", + "n513", + "n515", + "n518", + "n521", + "n524", + "n531", + "n536", + "n543", + "n546", + "n549", + "n551", + "n554", + "n557", + "n560", + "n567", + "n572", + "n579", + "n582", + "n585", + "n587", + "n590", + "n593", + "n596", + "n603", + "n608", + "n615", + "n618", + "n621", + "n623", + "n626", + "n629", + "n632", + "n639", + "n644", + "n651", + "n654", + "n657", + "n659", + "n662", + "n665", + "n668", + "n675", + "n680", + "n685", + "n686", + "n687", + "n688", + "n705", + "n706", + "n707", + "n708", + "n709", + "n710", + "n711", + "n712", + "n713", + "n714", + "n715", + "n716", + "n718", + "n723", + "n724", + "n725", + "n726", + "n727" + ], + "footer": [ + "n719" + ], + "form": [ + "n253" + ], + "h6": [ + "n163" + ], + "input": [ + "n166", + "n176", + "n186", + "n203", + "n220", + "n223", + "n237", + "n702" + ], + "label": [ + "n164", + "n174", + "n184", + "n201", + "n218", + "n235" + ], + "li": [ + "n690", + "n691", + "n692", + "n693", + "n694", + "n695", + "n697", + "n698", + "n700" + ], + "main": [ + "n717" + ], + "p": [ + "n156" + ], + "root": [ + "n729" + ], + "section": [ + "n720", + "n721", + "n722" + ], + "span": [ + "n5", + "n7", + "n9", + "n10", + "n12", + "n14", + "n15", + "n17", + "n22", + "n24", + "n26", + "n27", + "n29", + "n31", + "n32", + "n34", + "n39", + "n41", + "n43", + "n44", + "n46", + "n48", + "n49", + "n51", + "n56", + "n58", + "n60", + "n61", + "n63", + "n65", + "n66", + "n68", + "n73", + "n75", + "n77", + "n78", + "n80", + "n85", + "n87", + "n89", + "n90", + "n92", + "n94", + "n95", + "n97", + "n102", + "n104", + "n106", + "n107", + "n109", + "n111", + "n112", + "n114", + "n116", + "n117", + "n119", + "n124", + "n126", + "n128", + "n129", + "n131", + "n133", + "n134", + "n136", + "n150", + "n153", + "n167", + "n177", + "n222", + "n226", + "n255", + "n258", + "n263", + "n266", + "n271", + "n285", + "n288", + "n291", + "n294", + "n297", + "n306", + "n315", + "n318", + "n324", + "n325", + "n326", + "n329", + "n334", + "n337", + "n340", + "n343", + "n346", + "n347", + "n348", + "n349", + "n350", + "n353", + "n355", + "n360", + "n361", + "n362", + "n365", + "n370", + "n373", + "n376", + "n379", + "n382", + "n383", + "n384", + "n385", + "n386", + "n389", + "n391", + "n396", + "n397", + "n398", + "n401", + "n406", + "n409", + "n412", + "n415", + "n418", + "n419", + "n420", + "n421", + "n422", + "n425", + "n427", + "n432", + "n433", + "n434", + "n437", + "n442", + "n445", + "n448", + "n451", + "n454", + "n455", + "n456", + "n457", + "n458", + "n461", + "n463", + "n468", + "n469", + "n470", + "n473", + "n478", + "n481", + "n484", + "n487", + "n490", + "n491", + "n492", + "n493", + "n494", + "n497", + "n499", + "n504", + "n505", + "n506", + "n509", + "n514", + "n517", + "n520", + "n523", + "n526", + "n527", + "n528", + "n529", + "n530", + "n533", + "n535", + "n540", + "n541", + "n542", + "n545", + "n550", + "n553", + "n556", + "n559", + "n562", + "n563", + "n564", + "n565", + "n566", + "n569", + "n571", + "n576", + "n577", + "n578", + "n581", + "n586", + "n589", + "n592", + "n595", + "n598", + "n599", + "n600", + "n601", + "n602", + "n605", + "n607", + "n612", + "n613", + "n614", + "n617", + "n622", + "n625", + "n628", + "n631", + "n634", + "n635", + "n636", + "n637", + "n638", + "n641", + "n643", + "n648", + "n649", + "n650", + "n653", + "n658", + "n661", + "n664", + "n667", + "n670", + "n671", + "n672", + "n673", + "n674", + "n677", + "n679", + "n703" + ], + "svg": [ + "n1", + "n4", + "n6", + "n21", + "n23", + "n38", + "n40", + "n55", + "n57", + "n72", + "n74", + "n84", + "n86", + "n101", + "n103", + "n123", + "n125", + "n143", + "n147", + "n149", + "n152", + "n190", + "n207", + "n225", + "n241", + "n254", + "n257", + "n262", + "n270", + "n298", + "n300", + "n307", + "n309", + "n323", + "n332", + "n359", + "n368", + "n395", + "n404", + "n431", + "n440", + "n467", + "n476", + "n503", + "n512", + "n539", + "n548", + "n575", + "n584", + "n611", + "n620", + "n647", + "n656", + "n689", + "n696", + "n699", + "n704" + ], + "table": [ + "n684" + ], + "tbody": [ + "n683" + ], + "td": [ + "n328", + "n331", + "n336", + "n339", + "n342", + "n345", + "n352", + "n357", + "n364", + "n367", + "n372", + "n375", + "n378", + "n381", + "n388", + "n393", + "n400", + "n403", + "n408", + "n411", + "n414", + "n417", + "n424", + "n429", + "n436", + "n439", + "n444", + "n447", + "n450", + "n453", + "n460", + "n465", + "n472", + "n475", + "n480", + "n483", + "n486", + "n489", + "n496", + "n501", + "n508", + "n511", + "n516", + "n519", + "n522", + "n525", + "n532", + "n537", + "n544", + "n547", + "n552", + "n555", + "n558", + "n561", + "n568", + "n573", + "n580", + "n583", + "n588", + "n591", + "n594", + "n597", + "n604", + "n609", + "n616", + "n619", + "n624", + "n627", + "n630", + "n633", + "n640", + "n645", + "n652", + "n655", + "n660", + "n663", + "n666", + "n669", + "n676", + "n681" + ], + "th": [ + "n287", + "n290", + "n293", + "n296", + "n305", + "n314", + "n317", + "n320" + ], + "thead": [ + "n322" + ], + "tr": [ + "n321", + "n358", + "n394", + "n430", + "n466", + "n502", + "n538", + "n574", + "n610", + "n646", + "n682" + ], + "ul": [ + "n701" + ] + }, + "interactive": [ + "n2", + "n159", + "n166", + "n176", + "n186", + "n203", + "n220", + "n223", + "n237", + "n256", + "n259", + "n264", + "n267", + "n272", + "n354", + "n390", + "n426", + "n462", + "n498", + "n534", + "n570", + "n606", + "n642", + "n678", + "n702" + ], + "styleUsage": { + "style_1": [ + "n2" + ], + "style_10": [ + "n19", + "n36", + "n53", + "n70", + "n82", + "n99", + "n121", + "n138" + ], + "style_100": [ + "n382", + "n454", + "n490", + "n526", + "n562", + "n598" + ], + "style_101": [ + "n683" + ], + "style_102": [ + "n684" + ], + "style_103": [ + "n685", + "n713" + ], + "style_104": [ + "n686" + ], + "style_105": [ + "n687" + ], + "style_106": [ + "n688" + ], + "style_107": [ + "n690" + ], + "style_108": [ + "n691" + ], + "style_109": [ + "n692", + "n693", + "n694", + "n695", + "n698" + ], + "style_11": [ + "n20", + "n37", + "n54", + "n71", + "n83", + "n100", + "n122", + "n139" + ], + "style_110": [ + "n697" + ], + "style_111": [ + "n700" + ], + "style_112": [ + "n702" + ], + "style_113": [ + "n703" + ], + "style_114": [ + "n705" + ], + "style_115": [ + "n706" + ], + "style_116": [ + "n707" + ], + "style_117": [ + "n708" + ], + "style_118": [ + "n709" + ], + "style_119": [ + "n710" + ], + "style_12": [ + "n39" + ], + "style_120": [ + "n711" + ], + "style_121": [ + "n712", + "n714" + ], + "style_122": [ + "n715" + ], + "style_123": [ + "n716" + ], + "style_124": [ + "n717" + ], + "style_125": [ + "n718" + ], + "style_126": [ + "n719" + ], + "style_127": [ + "n720" + ], + "style_128": [ + "n721" + ], + "style_129": [ + "n722" + ], + "style_13": [ + "n41" + ], + "style_130": [ + "n728" + ], + "style_14": [ + "n42" + ], + "style_15": [ + "n43", + "n45" + ], + "style_16": [ + "n44" + ], + "style_17": [ + "n46" + ], + "style_18": [ + "n47" + ], + "style_19": [ + "n140" + ], + "style_2": [ + "n3" + ], + "style_20": [ + "n141" + ], + "style_21": [ + "n142" + ], + "style_22": [ + "n144" + ], + "style_23": [ + "n145" + ], + "style_24": [ + "n146" + ], + "style_25": [ + "n148", + "n151" + ], + "style_26": [ + "n150", + "n153" + ], + "style_27": [ + "n154" + ], + "style_28": [ + "n155", + "n268", + "n273", + "n701" + ], + "style_29": [ + "n156", + "n723", + "n724", + "n725", + "n726", + "n727" + ], + "style_3": [ + "n5", + "n22", + "n56", + "n73", + "n85", + "n102", + "n124" + ], + "style_30": [ + "n157" + ], + "style_31": [ + "n158" + ], + "style_32": [ + "n159" + ], + "style_33": [ + "n160" + ], + "style_34": [ + "n161" + ], + "style_35": [ + "n162" + ], + "style_36": [ + "n163" + ], + "style_37": [ + "n164", + "n174", + "n184", + "n201", + "n218", + "n235" + ], + "style_38": [ + "n165", + "n175", + "n185", + "n202", + "n219", + "n236" + ], + "style_39": [ + "n166", + "n176" + ], + "style_4": [ + "n7", + "n24", + "n58", + "n75", + "n87", + "n104", + "n126" + ], + "style_40": [ + "n167", + "n177" + ], + "style_41": [ + "n168", + "n178", + "n195", + "n212", + "n229", + "n246" + ], + "style_42": [ + "n169", + "n179", + "n196", + "n213", + "n230", + "n247" + ], + "style_43": [ + "n170", + "n180", + "n197", + "n214", + "n231", + "n248" + ], + "style_44": [ + "n171", + "n181", + "n198", + "n215", + "n232", + "n249" + ], + "style_45": [ + "n172", + "n182", + "n199", + "n216", + "n233", + "n250" + ], + "style_46": [ + "n173", + "n183", + "n200", + "n217", + "n234", + "n251" + ], + "style_47": [ + "n186", + "n203", + "n237" + ], + "style_48": [ + "n187", + "n204", + "n238" + ], + "style_49": [ + "n188", + "n205", + "n239" + ], + "style_5": [ + "n8", + "n25", + "n59", + "n76", + "n88", + "n105", + "n127" + ], + "style_50": [ + "n189", + "n206", + "n240" + ], + "style_51": [ + "n191", + "n208", + "n242" + ], + "style_52": [ + "n192", + "n209", + "n243" + ], + "style_53": [ + "n193", + "n210", + "n244" + ], + "style_54": [ + "n194", + "n211", + "n245" + ], + "style_55": [ + "n220", + "n223" + ], + "style_56": [ + "n221", + "n224" + ], + "style_57": [ + "n222" + ], + "style_58": [ + "n226" + ], + "style_59": [ + "n227" + ], + "style_6": [ + "n9", + "n11", + "n14", + "n16", + "n26", + "n28", + "n31", + "n33", + "n48", + "n50", + "n60", + "n62", + "n65", + "n67", + "n77", + "n79", + "n89", + "n91", + "n94", + "n96", + "n106", + "n108", + "n111", + "n113", + "n116", + "n118", + "n128", + "n130", + "n133", + "n135" + ], + "style_60": [ + "n228" + ], + "style_61": [ + "n252" + ], + "style_62": [ + "n253" + ], + "style_63": [ + "n255", + "n263" + ], + "style_64": [ + "n256" + ], + "style_65": [ + "n258", + "n271" + ], + "style_66": [ + "n259" + ], + "style_67": [ + "n260" + ], + "style_68": [ + "n261" + ], + "style_69": [ + "n264" + ], + "style_7": [ + "n10", + "n15", + "n27", + "n32", + "n49", + "n61", + "n66", + "n78", + "n90", + "n95", + "n107", + "n112", + "n117", + "n129", + "n134" + ], + "style_70": [ + "n265" + ], + "style_71": [ + "n266" + ], + "style_72": [ + "n267", + "n272" + ], + "style_73": [ + "n269", + "n274" + ], + "style_74": [ + "n275" + ], + "style_75": [ + "n276", + "n277", + "n278", + "n279", + "n280", + "n281", + "n282", + "n283" + ], + "style_76": [ + "n284" + ], + "style_77": [ + "n285", + "n288", + "n291", + "n294", + "n315", + "n318" + ], + "style_78": [ + "n286", + "n289", + "n292", + "n295", + "n316", + "n319" + ], + "style_79": [ + "n287" + ], + "style_8": [ + "n12", + "n17", + "n29", + "n34", + "n51", + "n63", + "n68", + "n80", + "n92", + "n97", + "n109", + "n114", + "n119", + "n131", + "n136" + ], + "style_80": [ + "n290", + "n293", + "n296", + "n305", + "n314", + "n317" + ], + "style_81": [ + "n297", + "n306" + ], + "style_82": [ + "n299", + "n301", + "n308", + "n310" + ], + "style_83": [ + "n302", + "n311" + ], + "style_84": [ + "n303", + "n312" + ], + "style_85": [ + "n304", + "n313" + ], + "style_86": [ + "n320" + ], + "style_87": [ + "n321", + "n358", + "n394", + "n430", + "n466", + "n502", + "n538", + "n574", + "n610", + "n646", + "n682" + ], + "style_88": [ + "n322" + ], + "style_89": [ + "n324", + "n360", + "n396", + "n432", + "n468", + "n504", + "n540", + "n576", + "n612", + "n648" + ], + "style_9": [ + "n13", + "n18", + "n30", + "n35", + "n52", + "n64", + "n69", + "n81", + "n93", + "n98", + "n110", + "n115", + "n120", + "n132", + "n137" + ], + "style_90": [ + "n325", + "n326", + "n329", + "n334", + "n337", + "n340", + "n343", + "n350", + "n355", + "n361", + "n362", + "n365", + "n370", + "n373", + "n376", + "n379", + "n386", + "n391", + "n397", + "n398", + "n401", + "n406", + "n409", + "n412", + "n415", + "n422", + "n427", + "n433", + "n434", + "n437", + "n442", + "n445", + "n448", + "n451", + "n458", + "n463", + "n469", + "n470", + "n473", + "n478", + "n481", + "n484", + "n487", + "n494", + "n499", + "n505", + "n506", + "n509", + "n514", + "n517", + "n520", + "n523", + "n530", + "n535", + "n541", + "n542", + "n545", + "n550", + "n553", + "n556", + "n559", + "n566", + "n571", + "n577", + "n578", + "n581", + "n586", + "n589", + "n592", + "n595", + "n602", + "n607", + "n613", + "n614", + "n617", + "n622", + "n625", + "n628", + "n631", + "n638", + "n643", + "n649", + "n650", + "n653", + "n658", + "n661", + "n664", + "n667", + "n674", + "n679" + ], + "style_91": [ + "n327", + "n330", + "n335", + "n338", + "n341", + "n344", + "n351", + "n356", + "n363", + "n366", + "n371", + "n374", + "n377", + "n380", + "n387", + "n392", + "n399", + "n402", + "n407", + "n410", + "n413", + "n416", + "n423", + "n428", + "n435", + "n438", + "n443", + "n446", + "n449", + "n452", + "n459", + "n464", + "n471", + "n474", + "n479", + "n482", + "n485", + "n488", + "n495", + "n500", + "n507", + "n510", + "n515", + "n518", + "n521", + "n524", + "n531", + "n536", + "n543", + "n546", + "n551", + "n554", + "n557", + "n560", + "n567", + "n572", + "n579", + "n582", + "n587", + "n590", + "n593", + "n596", + "n603", + "n608", + "n615", + "n618", + "n623", + "n626", + "n629", + "n632", + "n639", + "n644", + "n651", + "n654", + "n659", + "n662", + "n665", + "n668", + "n675", + "n680" + ], + "style_92": [ + "n328", + "n331", + "n336", + "n339", + "n342", + "n345", + "n352", + "n357", + "n364", + "n367", + "n372", + "n375", + "n378", + "n381", + "n388", + "n393", + "n400", + "n403", + "n408", + "n411", + "n414", + "n417", + "n424", + "n429", + "n436", + "n439", + "n444", + "n447", + "n450", + "n453", + "n460", + "n465", + "n472", + "n475", + "n480", + "n483", + "n486", + "n489", + "n496", + "n501", + "n508", + "n511", + "n516", + "n519", + "n522", + "n525", + "n532", + "n537", + "n544", + "n547", + "n552", + "n555", + "n558", + "n561", + "n568", + "n573", + "n580", + "n583", + "n588", + "n591", + "n594", + "n597", + "n604", + "n609", + "n616", + "n619", + "n624", + "n627", + "n630", + "n633", + "n640", + "n645", + "n652", + "n655", + "n660", + "n663", + "n666", + "n669", + "n676", + "n681" + ], + "style_93": [ + "n333", + "n369", + "n405", + "n441", + "n477", + "n513", + "n549", + "n585", + "n621", + "n657" + ], + "style_94": [ + "n346", + "n418", + "n634", + "n670" + ], + "style_95": [ + "n347", + "n383", + "n419", + "n455", + "n491", + "n527", + "n563", + "n599", + "n635", + "n671" + ], + "style_96": [ + "n348", + "n384", + "n420", + "n456", + "n492", + "n528", + "n564", + "n600", + "n636", + "n672" + ], + "style_97": [ + "n349", + "n385", + "n421", + "n457", + "n493", + "n529", + "n565", + "n601", + "n637", + "n673" + ], + "style_98": [ + "n353", + "n389", + "n425", + "n461", + "n497", + "n533", + "n569", + "n605", + "n641", + "n677" + ], + "style_99": [ + "n354", + "n390", + "n426", + "n462", + "n498", + "n534", + "n570", + "n606", + "n642", + "n678" + ] + }, + "withImage": [ + "n1", + "n4", + "n6", + "n21", + "n23", + "n38", + "n40", + "n55", + "n57", + "n72", + "n74", + "n84", + "n86", + "n101", + "n103", + "n123", + "n125", + "n143", + "n147", + "n149", + "n152", + "n190", + "n207", + "n225", + "n241", + "n254", + "n257", + "n262", + "n270", + "n298", + "n300", + "n307", + "n309", + "n323", + "n332", + "n359", + "n368", + "n395", + "n404", + "n431", + "n440", + "n467", + "n476", + "n503", + "n512", + "n539", + "n548", + "n575", + "n584", + "n611", + "n620", + "n647", + "n656", + "n689", + "n696", + "n699", + "n704" + ], + "withText": [ + "n2", + "n5", + "n12", + "n17", + "n22", + "n29", + "n34", + "n39", + "n46", + "n51", + "n56", + "n63", + "n68", + "n73", + "n80", + "n85", + "n92", + "n97", + "n102", + "n109", + "n114", + "n119", + "n124", + "n131", + "n136", + "n151", + "n154", + "n156", + "n163", + "n164", + "n174", + "n184", + "n201", + "n218", + "n222", + "n235", + "n255", + "n258", + "n263", + "n266", + "n271", + "n285", + "n288", + "n291", + "n294", + "n297", + "n306", + "n315", + "n318", + "n325", + "n329", + "n333", + "n337", + "n340", + "n343", + "n347", + "n353", + "n361", + "n365", + "n369", + "n373", + "n376", + "n379", + "n383", + "n389", + "n397", + "n401", + "n405", + "n409", + "n412", + "n415", + "n419", + "n425", + "n433", + "n437", + "n441", + "n445", + "n448", + "n451", + "n455", + "n461", + "n469", + "n473", + "n477", + "n481", + "n484", + "n487", + "n491", + "n497", + "n505", + "n509", + "n513", + "n517", + "n520", + "n523", + "n527", + "n533", + "n541", + "n545", + "n549", + "n553", + "n556", + "n559", + "n563", + "n569", + "n577", + "n581", + "n585", + "n589", + "n592", + "n595", + "n599", + "n605", + "n613", + "n617", + "n621", + "n625", + "n628", + "n631", + "n635", + "n641", + "n649", + "n653", + "n657", + "n661", + "n664", + "n667", + "n671", + "n677", + "n688", + "n691", + "n692", + "n693", + "n694", + "n695", + "n698", + "n703", + "n719" + ] +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n1.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n1.json new file mode 100644 index 0000000..7ee6ae1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n1.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 16, + "left": 20, + "top": 60, + "width": 80 + }, + "nodeId": "n1", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n10.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n10.json new file mode 100644 index 0000000..8a9cd7f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n10.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 40, + "left": 20, + "top": 136, + "width": 20 + }, + "children": [ + "n9" + ], + "height": "40px", + "nodeId": "n10", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n100.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n100.json new file mode 100644 index 0000000..5cfd425 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n100.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 44, + "left": 8, + "top": 400, + "width": 204 + }, + "children": [ + "n88", + "n99" + ], + "height": "44px", + "nodeId": "n100", + "originalClass": "arco-menu-inline", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8)", + "styleId": "style_11", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n101.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n101.json new file mode 100644 index 0000000..1a90c86 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n101.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 40, + "top": 532, + "width": 160 + }, + "nodeId": "n101", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span.arco-menu-item-inner:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n102.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n102.json new file mode 100644 index 0000000..947be91 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n102.json @@ -0,0 +1,17 @@ +{ + "_innerHTML": " 异常页", + "bbox": { + "height": 0, + "left": 20, + "top": 557, + "width": 20 + }, + "children": [ + "n101" + ], + "nodeId": "n102", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_3", + "tag": "span", + "text": "异常页" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n103.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n103.json new file mode 100644 index 0000000..a05803f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n103.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 8, + "top": 444, + "width": 204 + }, + "nodeId": "n103", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-header:nth-of-type(1)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n104.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n104.json new file mode 100644 index 0000000..bd8bea8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n104.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 20, + "top": 456, + "width": 94 + }, + "children": [ + "n103" + ], + "height": "40px", + "nodeId": "n104", + "originalClass": "arco-menu-icon-suffix", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_4", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n105.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n105.json new file mode 100644 index 0000000..0dc0e8a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n105.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 44, + "left": 8, + "top": 444, + "width": 204 + }, + "children": [ + "n102", + "n104" + ], + "height": "40px", + "nodeId": "n105", + "originalClass": "arco-menu-inline-header", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9)", + "styleId": "style_5", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n106.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n106.json new file mode 100644 index 0000000..f6520f9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n106.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 20, + "top": 488, + "width": 20 + }, + "height": "0px", + "nodeId": "n106", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n107.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n107.json new file mode 100644 index 0000000..ff28973 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n107.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 40, + "left": 186, + "top": 444, + "width": 14 + }, + "children": [ + "n106" + ], + "height": "40px", + "nodeId": "n107", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n108.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n108.json new file mode 100644 index 0000000..6206b4b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n108.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 495, + "width": 12 + }, + "height": "18px", + "nodeId": "n108", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n109.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n109.json new file mode 100644 index 0000000..21c614e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n109.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
403", + "bbox": { + "height": 0, + "left": 20, + "top": 513, + "width": 20 + }, + "children": [ + "n108" + ], + "height": "40px", + "nodeId": "n109", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_8", + "tag": "span", + "text": "403", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n11.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n11.json new file mode 100644 index 0000000..4ba4a1d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n11.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 44, + "left": 8, + "top": 92, + "width": 204 + }, + "height": "18px", + "nodeId": "n11", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3)", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n110.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n110.json new file mode 100644 index 0000000..fac7b56 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n110.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 488, + "width": 204 + }, + "children": [ + "n107", + "n109" + ], + "height": "40px", + "nodeId": "n110", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n111.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n111.json new file mode 100644 index 0000000..0988e42 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n111.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 20, + "top": 532, + "width": 20 + }, + "height": "0px", + "nodeId": "n111", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n112.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n112.json new file mode 100644 index 0000000..6aa64d4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n112.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 40, + "left": 40, + "top": 488, + "width": 160 + }, + "children": [ + "n111" + ], + "height": "40px", + "nodeId": "n112", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n113.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n113.json new file mode 100644 index 0000000..f74b5e4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n113.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 539, + "width": 12 + }, + "height": "18px", + "nodeId": "n113", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n114.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n114.json new file mode 100644 index 0000000..46aefec --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n114.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
404", + "bbox": { + "height": 0, + "left": 20, + "top": 557, + "width": 20 + }, + "children": [ + "n113" + ], + "height": "40px", + "nodeId": "n114", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_8", + "tag": "span", + "text": "404", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n115.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n115.json new file mode 100644 index 0000000..16f6a84 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n115.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 532, + "width": 204 + }, + "children": [ + "n112", + "n114" + ], + "height": "40px", + "nodeId": "n115", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n116.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n116.json new file mode 100644 index 0000000..71d21cf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n116.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 24, + "left": 270, + "top": 16, + "width": 14 + }, + "height": "0px", + "nodeId": "n116", + "originalClass": "arco-menu-indent", + "selector": "div.arco-breadcrumb > span.arco-breadcrumb-item-separator:nth-of-type(1)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n117.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n117.json new file mode 100644 index 0000000..6e1ec74 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n117.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 40, + "left": 40, + "top": 532, + "width": 160 + }, + "children": [ + "n116" + ], + "height": "40px", + "nodeId": "n117", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n118.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n118.json new file mode 100644 index 0000000..423e28c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n118.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 1198, + "left": 220, + "top": 0, + "width": 1565 + }, + "height": "18px", + "nodeId": "n118", + "originalClass": "icon-empty--ILNVB", + "selector": "div.layout-content-wrapper--xX3sP", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n119.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n119.json new file mode 100644 index 0000000..50e9a50 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n119.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
500", + "bbox": { + "height": 1238, + "left": 0, + "top": 0, + "width": 1785 + }, + "children": [ + "n118" + ], + "height": "40px", + "nodeId": "n119", + "originalClass": "arco-menu-item-inner", + "selector": "section.arco-layout.layout-content--Fd7YS", + "styleId": "style_8", + "tag": "span", + "text": "500", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n12.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n12.json new file mode 100644 index 0000000..eac4900 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n12.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
工作台", + "bbox": { + "height": 40, + "left": 40, + "top": 136, + "width": 160 + }, + "children": [ + "n11" + ], + "height": "40px", + "nodeId": "n12", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_8", + "tag": "span", + "text": "工作台", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n120.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n120.json new file mode 100644 index 0000000..1e4350d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n120.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 24, + "left": 184, + "top": 833, + "width": 24 + }, + "children": [ + "n117", + "n119" + ], + "height": "40px", + "nodeId": "n120", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.collapse-btn--FJHnQ", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n121.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n121.json new file mode 100644 index 0000000..44125ce --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n121.json @@ -0,0 +1,20 @@ +{ + "bbox": { + "height": 0, + "left": 8, + "top": 488, + "width": 204 + }, + "children": [ + "n110", + "n115", + "n120" + ], + "height": "0px", + "nodeId": "n121", + "originalClass": "arco-menu-inline-content", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2)", + "styleId": "style_10", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n122.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n122.json new file mode 100644 index 0000000..dbd2814 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n122.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 539, + "width": 12 + }, + "children": [ + "n105", + "n121" + ], + "height": "44px", + "nodeId": "n122", + "originalClass": "arco-menu-inline", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_11", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n123.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n123.json new file mode 100644 index 0000000..0c4694e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n123.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 18, + "left": 240, + "top": 19, + "width": 26 + }, + "nodeId": "n123", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-breadcrumb > div.arco-breadcrumb-item:nth-of-type(1)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n124.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n124.json new file mode 100644 index 0000000..03bb692 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n124.json @@ -0,0 +1,17 @@ +{ + "_innerHTML": " 个人中心", + "bbox": { + "height": 24, + "left": 342, + "top": 16, + "width": 14 + }, + "children": [ + "n123" + ], + "nodeId": "n124", + "selector": "div.arco-breadcrumb > span.arco-breadcrumb-item-separator:nth-of-type(2)", + "styleId": "style_3", + "tag": "span", + "text": "个人中心" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n125.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n125.json new file mode 100644 index 0000000..ba2fc47 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n125.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 24, + "left": 360, + "top": 16, + "width": 64 + }, + "nodeId": "n125", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-breadcrumb > div.arco-breadcrumb-item:nth-of-type(3)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n126.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n126.json new file mode 100644 index 0000000..51c8826 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n126.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 24, + "left": 288, + "top": 16, + "width": 50 + }, + "children": [ + "n125" + ], + "height": "40px", + "nodeId": "n126", + "originalClass": "arco-menu-icon-suffix", + "selector": "div.arco-breadcrumb > div.arco-breadcrumb-item:nth-of-type(2)", + "styleId": "style_4", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n127.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n127.json new file mode 100644 index 0000000..d605c82 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n127.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 24, + "left": 240, + "top": 16, + "width": 184 + }, + "children": [ + "n124", + "n126" + ], + "height": "40px", + "nodeId": "n127", + "originalClass": "arco-menu-inline-header", + "selector": "div.arco-breadcrumb", + "styleId": "style_5", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n128.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n128.json new file mode 100644 index 0000000..2d5f77e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n128.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 24, + "left": 1729, + "top": 16, + "width": 36 + }, + "height": "0px", + "nodeId": "n128", + "originalClass": "arco-menu-indent", + "selector": "div.layout-breadcrumb--aBouq > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item:nth-of-type(2)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n129.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n129.json new file mode 100644 index 0000000..f3b3f50 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n129.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 21, + "left": 1572, + "top": 18, + "width": 149 + }, + "children": [ + "n128" + ], + "height": "40px", + "nodeId": "n129", + "selector": "p.inspector-text", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n13.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n13.json new file mode 100644 index 0000000..e55679f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n13.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 143, + "width": 12 + }, + "children": [ + "n10", + "n12" + ], + "height": "40px", + "nodeId": "n13", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n130.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n130.json new file mode 100644 index 0000000..0f603d8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n130.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 20, + "left": 1729, + "top": 18, + "width": 20 + }, + "height": "18px", + "nodeId": "n130", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-switch-dot", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n131.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n131.json new file mode 100644 index 0000000..1ebac28 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n131.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
用户信息", + "bbox": { + "height": 24, + "left": 1729, + "top": 16, + "width": 36 + }, + "children": [ + "n130" + ], + "height": "40px", + "nodeId": "n131", + "originalClass": "arco-menu-item-inner", + "selector": "button.arco-switch.arco-switch-type-line", + "styleId": "style_8", + "tag": "span", + "text": "用户信息", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n132.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n132.json new file mode 100644 index 0000000..839a1c7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n132.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 21, + "left": 1572, + "top": 18, + "width": 149 + }, + "children": [ + "n129", + "n131" + ], + "height": "40px", + "nodeId": "n132", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.layout-breadcrumb--aBouq > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item:nth-of-type(1)", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n133.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n133.json new file mode 100644 index 0000000..12e0e3f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n133.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 1142, + "left": 240, + "top": 56, + "width": 1525 + }, + "height": "0px", + "nodeId": "n133", + "originalClass": "arco-menu-indent", + "selector": "div.arco-card-body", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n134.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n134.json new file mode 100644 index 0000000..e8ef350 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n134.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 1142, + "left": 240, + "top": 56, + "width": 1525 + }, + "children": [ + "n133" + ], + "height": "40px", + "nodeId": "n134", + "selector": "main.arco-layout-content", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n135.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n135.json new file mode 100644 index 0000000..b083a4c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n135.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 105, + "left": 260, + "top": 116, + "width": 1485 + }, + "height": "18px", + "nodeId": "n135", + "originalClass": "icon-empty--ILNVB", + "selector": "div.search-form-wrapper--jiX5t", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n136.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n136.json new file mode 100644 index 0000000..a17010d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n136.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
用户设置", + "bbox": { + "height": 24, + "left": 260, + "top": 76, + "width": 1485 + }, + "children": [ + "n135" + ], + "height": "40px", + "nodeId": "n136", + "originalClass": "arco-menu-item-inner", + "selector": "h6.arco-typography", + "styleId": "style_8", + "tag": "span", + "text": "用户设置", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n137.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n137.json new file mode 100644 index 0000000..2d0b82a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n137.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 1142, + "left": 240, + "top": 56, + "width": 1525 + }, + "children": [ + "n134", + "n136" + ], + "height": "40px", + "nodeId": "n137", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-card.arco-card-size-default", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n138.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n138.json new file mode 100644 index 0000000..c31ff41 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n138.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 24, + "left": 1572, + "top": 16, + "width": 193 + }, + "children": [ + "n132", + "n137" + ], + "height": "0px", + "nodeId": "n138", + "originalClass": "arco-menu-inline-content", + "selector": "div.layout-breadcrumb--aBouq > div.arco-space.arco-space-horizontal:nth-of-type(2)", + "styleId": "style_10", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n139.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n139.json new file mode 100644 index 0000000..cfb7138 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n139.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 24, + "left": 240, + "top": 16, + "width": 1525 + }, + "children": [ + "n127", + "n138" + ], + "height": "44px", + "nodeId": "n139", + "originalClass": "arco-menu-inline", + "selector": "div.layout-breadcrumb--aBouq", + "styleId": "style_11", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n14.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n14.json new file mode 100644 index 0000000..9f248d3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n14.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 186, + "top": 92, + "width": 14 + }, + "height": "0px", + "nodeId": "n14", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n140.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n140.json new file mode 100644 index 0000000..ed52031 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n140.json @@ -0,0 +1,26 @@ +{ + "bbox": { + "height": 44, + "left": 8, + "top": 48, + "width": 204 + }, + "children": [ + "n3", + "n20", + "n37", + "n54", + "n71", + "n83", + "n100", + "n122", + "n139" + ], + "height": "492px", + "nodeId": "n140", + "originalClass": "arco-menu-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2)", + "styleId": "style_19", + "tag": "div", + "width": "220px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n141.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n141.json new file mode 100644 index 0000000..f4c5763 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n141.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 4, + "width": 204 + }, + "children": [ + "n140" + ], + "height": "492px", + "nodeId": "n141", + "originalClass": "arco-menu arco-menu-light arco-menu-vertical", + "selector": "div.arco-menu-inner > div.arco-menu-item:nth-of-type(1)", + "styleId": "style_20", + "tag": "div", + "width": "220px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n142.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n142.json new file mode 100644 index 0000000..d9e9e05 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n142.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 492, + "left": 0, + "top": 0, + "width": 220 + }, + "children": [ + "n141" + ], + "height": "921px", + "nodeId": "n142", + "originalClass": "menu-wrapper--e9ooU", + "selector": "div.arco-menu-inner", + "styleId": "style_21", + "tag": "div", + "width": "220px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n143.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n143.json new file mode 100644 index 0000000..b750d3e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n143.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 104, + "left": 260, + "top": 116, + "width": 1382 + }, + "nodeId": "n143", + "originalClass": "[object SVGAnimatedString]", + "selector": "form.arco-form.arco-form-horizontal", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n144.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n144.json new file mode 100644 index 0000000..94f8d73 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n144.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 104, + "left": 248, + "top": 116, + "width": 1386 + }, + "children": [ + "n143" + ], + "height": "24px", + "nodeId": "n144", + "originalClass": "collapse-btn--FJHnQ", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start", + "styleId": "style_22", + "tag": "div", + "width": "24px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n145.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n145.json new file mode 100644 index 0000000..5d12c75 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n145.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 492, + "left": 0, + "top": 0, + "width": 220 + }, + "children": [ + "n142", + "n144" + ], + "height": "921px", + "nodeId": "n145", + "originalClass": "arco-layout-sider-children", + "selector": "div.arco-menu.arco-menu-light", + "styleId": "style_23", + "tag": "div", + "width": "220px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n146.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n146.json new file mode 100644 index 0000000..38f63c7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n146.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 220 + }, + "children": [ + "n145" + ], + "height": "921px", + "nodeId": "n146", + "originalClass": "arco-layout-sider arco-layout-sider-light layout-sider--G4cYl", + "selector": "aside.arco-layout-sider.arco-layout-sider-light", + "styleId": "style_24", + "tag": "aside", + "width": "220px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n147.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n147.json new file mode 100644 index 0000000..0ed27f8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n147.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 16, + "left": 260, + "top": 124, + "width": 56 + }, + "nodeId": "n147", + "originalClass": "[object SVGAnimatedString]", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n148.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n148.json new file mode 100644 index 0000000..45421c0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n148.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "children": [ + "n147" + ], + "height": "18px", + "nodeId": "n148", + "originalClass": "arco-breadcrumb-item", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "styleId": "style_25", + "tag": "div", + "width": "18px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n149.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n149.json new file mode 100644 index 0000000..3fa41fd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n149.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "nodeId": "n149", + "originalClass": "[object SVGAnimatedString]", + "selector": "#id", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n15.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n15.json new file mode 100644 index 0000000..f5faea0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n15.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 16, + "left": 20, + "top": 104, + "width": 108 + }, + "children": [ + "n14" + ], + "height": "40px", + "nodeId": "n15", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n150.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n150.json new file mode 100644 index 0000000..92ecd51 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n150.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "children": [ + "n149" + ], + "height": "24px", + "nodeId": "n150", + "originalClass": "arco-breadcrumb-item-separator", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > span.arco-input-inner-wrapper.arco-input-inner-wrapper-default", + "styleId": "style_26", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n151.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n151.json new file mode 100644 index 0000000..d49d9d0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n151.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "height": "24px", + "nodeId": "n151", + "originalClass": "arco-breadcrumb-item", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "styleId": "style_25", + "tag": "div", + "text": "列表页", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n152.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n152.json new file mode 100644 index 0000000..c2f5b48 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n152.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 52, + "left": 710, + "top": 116, + "width": 462 + }, + "nodeId": "n152", + "originalClass": "[object SVGAnimatedString]", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n153.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n153.json new file mode 100644 index 0000000..7c2ec13 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n153.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 364, + "top": 117, + "width": 321 + }, + "children": [ + "n152" + ], + "height": "24px", + "nodeId": "n153", + "originalClass": "arco-breadcrumb-item-separator", + "selector": "#id_input", + "styleId": "style_26", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n154.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n154.json new file mode 100644 index 0000000..3228f40 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n154.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 32, + "left": 722, + "top": 116, + "width": 438 + }, + "height": "24px", + "nodeId": "n154", + "originalClass": "arco-breadcrumb-item", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start", + "styleId": "style_27", + "tag": "div", + "text": "查询表格", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n155.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n155.json new file mode 100644 index 0000000..b0f09ac --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n155.json @@ -0,0 +1,22 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "children": [ + "n148", + "n150", + "n151", + "n153", + "n154" + ], + "height": "24px", + "nodeId": "n155", + "originalClass": "arco-breadcrumb", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "styleId": "style_28", + "tag": "div", + "width": "184px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n156.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n156.json new file mode 100644 index 0000000..85dba04 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n156.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 722, + "top": 124, + "width": 56 + }, + "height": "21px", + "nodeId": "n156", + "originalClass": "inspector-text", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "styleId": "style_29", + "tag": "p", + "text": "元素检查 dom-inspector", + "width": "148.594px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n157.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n157.json new file mode 100644 index 0000000..9b33279 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n157.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "children": [ + "n156" + ], + "height": "21px", + "nodeId": "n157", + "originalClass": "arco-space-item", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "styleId": "style_30", + "tag": "div", + "width": "148.594px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n158.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n158.json new file mode 100644 index 0000000..3bb0450 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n158.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "height": "20px", + "nodeId": "n158", + "originalClass": "arco-switch-dot", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "styleId": "style_31", + "tag": "div", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n159.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n159.json new file mode 100644 index 0000000..f00d658 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n159.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "children": [ + "n158" + ], + "height": "24px", + "nodeId": "n159", + "originalClass": "arco-switch arco-switch-type-line inspector-switch", + "selector": "#name", + "styleId": "style_32", + "tag": "button", + "width": "36px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n16.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n16.json new file mode 100644 index 0000000..c611bc5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n16.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 0, + "left": 8, + "top": 136, + "width": 204 + }, + "height": "18px", + "nodeId": "n16", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2)", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n160.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n160.json new file mode 100644 index 0000000..3b18d6e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n160.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "children": [ + "n159" + ], + "height": "24px", + "nodeId": "n160", + "originalClass": "arco-space-item", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "styleId": "style_33", + "tag": "div", + "width": "36px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n161.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n161.json new file mode 100644 index 0000000..86b09e1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n161.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 32, + "left": 722, + "top": 116, + "width": 91 + }, + "children": [ + "n157", + "n160" + ], + "height": "24px", + "nodeId": "n161", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "styleId": "style_34", + "tag": "div", + "width": "192.594px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n162.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n162.json new file mode 100644 index 0000000..0e9441e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n162.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 32, + "left": 260, + "top": 116, + "width": 91 + }, + "children": [ + "n155", + "n161" + ], + "height": "24px", + "nodeId": "n162", + "originalClass": "layout-breadcrumb--aBouq", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "styleId": "style_35", + "tag": "div", + "width": "1525px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n163.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n163.json new file mode 100644 index 0000000..b50d06f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n163.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 30, + "left": 826, + "top": 117, + "width": 321 + }, + "height": "24px", + "nodeId": "n163", + "originalClass": "arco-typography", + "selector": "#name_input", + "styleId": "style_36", + "tag": "h6", + "text": "查询表格", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n164.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n164.json new file mode 100644 index 0000000..ea7a803 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n164.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "nodeId": "n164", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple", + "styleId": "style_37", + "tag": "label", + "text": "集合编号" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n165.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n165.json new file mode 100644 index 0000000..381a390 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n165.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "children": [ + "n164" + ], + "height": "32px", + "nodeId": "n165", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n166.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n166.json new file mode 100644 index 0000000..abeebe6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n166.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1279, + "top": 124, + "width": 44 + }, + "height": "30px", + "id": "id_input", + "nodeId": "n166", + "originalClass": "arco-input arco-input-size-default", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > input.arco-input-tag-input.arco-input-tag-input-size-default", + "styleId": "style_39", + "tag": "input", + "width": "320.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n167.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n167.json new file mode 100644 index 0000000..15c1686 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n167.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 0, + "left": 1279, + "top": 117, + "width": 36 + }, + "children": [ + "n166" + ], + "height": "32px", + "nodeId": "n167", + "originalClass": "arco-input-inner-wrapper arco-input-inner-wrapper-default arco-input-clear-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > span.arco-input-tag-input-mirror", + "styleId": "style_40", + "tag": "span", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n168.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n168.json new file mode 100644 index 0000000..0fca9fc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n168.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 1279, + "top": 117, + "width": 315 + }, + "children": [ + "n167" + ], + "height": "32px", + "nodeId": "n168", + "originalClass": "arco-form-item-control-children", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n169.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n169.json new file mode 100644 index 0000000..b49d92c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n169.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 30, + "left": 1279, + "top": 117, + "width": 315 + }, + "children": [ + "n168" + ], + "height": "32px", + "id": "id", + "nodeId": "n169", + "originalClass": "arco-form-item-control", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n17.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n17.json new file mode 100644 index 0000000..15641e0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n17.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
实时监控", + "bbox": { + "height": 40, + "left": 20, + "top": 136, + "width": 20 + }, + "children": [ + "n16" + ], + "height": "40px", + "nodeId": "n17", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_8", + "tag": "span", + "text": "实时监控", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n170.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n170.json new file mode 100644 index 0000000..e2bc45d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n170.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 1279, + "top": 117, + "width": 315 + }, + "children": [ + "n169" + ], + "height": "32px", + "nodeId": "n170", + "originalClass": "arco-form-item-control-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1)", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n171.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n171.json new file mode 100644 index 0000000..f166d99 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n171.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "children": [ + "n170" + ], + "height": "32px", + "nodeId": "n171", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n172.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n172.json new file mode 100644 index 0000000..8d98a6f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n172.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "children": [ + "n165", + "n171" + ], + "height": "32px", + "nodeId": "n172", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "selector": "#contentType", + "styleId": "style_45", + "tag": "div", + "width": "438px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n173.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n173.json new file mode 100644 index 0000000..b064427 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n173.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "children": [ + "n172" + ], + "nodeId": "n173", + "originalClass": "arco-col arco-col-8", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "styleId": "style_46", + "tag": "div", + "width": "462px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n174.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n174.json new file mode 100644 index 0000000..50cf7ea --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n174.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 260, + "top": 176, + "width": 56 + }, + "nodeId": "n174", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "styleId": "style_37", + "tag": "label", + "text": "集合名称" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n175.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n175.json new file mode 100644 index 0000000..fb1fdd5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n175.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 52, + "left": 248, + "top": 168, + "width": 462 + }, + "children": [ + "n174" + ], + "height": "32px", + "nodeId": "n175", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4)", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n176.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n176.json new file mode 100644 index 0000000..87344db --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n176.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 355, + "top": 176, + "width": 44 + }, + "height": "30px", + "id": "name_input", + "nodeId": "n176", + "originalClass": "arco-input arco-input-size-default", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > input.arco-input-tag-input.arco-input-tag-input-size-default", + "styleId": "style_39", + "tag": "input", + "width": "320.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n177.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n177.json new file mode 100644 index 0000000..50a3d1b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n177.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "children": [ + "n176" + ], + "height": "32px", + "nodeId": "n177", + "originalClass": "arco-input-inner-wrapper arco-input-inner-wrapper-default arco-input-clear-wrapper", + "selector": "#filterType", + "styleId": "style_40", + "tag": "span", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n178.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n178.json new file mode 100644 index 0000000..b6e7db3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n178.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "children": [ + "n177" + ], + "height": "32px", + "nodeId": "n178", + "originalClass": "arco-form-item-control-children", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n179.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n179.json new file mode 100644 index 0000000..61f4b9c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n179.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "children": [ + "n178" + ], + "height": "32px", + "id": "name", + "nodeId": "n179", + "originalClass": "arco-form-item-control", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n18.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n18.json new file mode 100644 index 0000000..3e49077 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n18.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 92, + "width": 204 + }, + "children": [ + "n15", + "n17" + ], + "height": "40px", + "nodeId": "n18", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-header:nth-of-type(1)", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n180.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n180.json new file mode 100644 index 0000000..03b56da --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n180.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 260, + "top": 168, + "width": 91 + }, + "children": [ + "n179" + ], + "height": "32px", + "nodeId": "n180", + "originalClass": "arco-form-item-control-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n181.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n181.json new file mode 100644 index 0000000..dc32b60 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n181.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 260, + "top": 168, + "width": 438 + }, + "children": [ + "n180" + ], + "height": "32px", + "nodeId": "n181", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n182.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n182.json new file mode 100644 index 0000000..a5809ad --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n182.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 12, + "left": 1598, + "top": 126, + "width": 12 + }, + "children": [ + "n175", + "n181" + ], + "height": "32px", + "nodeId": "n182", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2) > div.arco-select-expand-icon", + "styleId": "style_45", + "tag": "div", + "width": "438px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n183.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n183.json new file mode 100644 index 0000000..0087643 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n183.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 30, + "left": 1598, + "top": 117, + "width": 20 + }, + "children": [ + "n182" + ], + "nodeId": "n183", + "originalClass": "arco-col arco-col-8", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2)", + "styleId": "style_46", + "tag": "div", + "width": "462px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n184.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n184.json new file mode 100644 index 0000000..e927530 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n184.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 30, + "left": 355, + "top": 169, + "width": 315 + }, + "nodeId": "n184", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1)", + "styleId": "style_37", + "tag": "label", + "text": "内容体裁" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n185.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n185.json new file mode 100644 index 0000000..b44bd8a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n185.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "children": [ + "n184" + ], + "height": "32px", + "nodeId": "n185", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n186.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n186.json new file mode 100644 index 0000000..7d3e741 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n186.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 16, + "left": 722, + "top": 176, + "width": 56 + }, + "height": "16.0938px", + "nodeId": "n186", + "originalClass": "arco-input-tag-input arco-input-tag-input-size-default", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "styleId": "style_47", + "tag": "input", + "width": "44px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n187.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n187.json new file mode 100644 index 0000000..0b72fa8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n187.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "children": [ + "n186" + ], + "height": "30px", + "nodeId": "n187", + "originalClass": "arco-input-tag-inner", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "styleId": "style_48", + "tag": "div", + "width": "314.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n188.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n188.json new file mode 100644 index 0000000..f25e886 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n188.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "children": [ + "n187" + ], + "height": "30px", + "nodeId": "n188", + "originalClass": "arco-input-tag-view", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "styleId": "style_49", + "tag": "div", + "width": "314.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n189.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n189.json new file mode 100644 index 0000000..d99bfe2 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n189.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 722, + "top": 168, + "width": 91 + }, + "children": [ + "n188" + ], + "height": "30px", + "nodeId": "n189", + "originalClass": "arco-input-tag arco-input-tag-size-default arco-input-tag-has-placeholder", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "styleId": "style_50", + "tag": "div", + "width": "314.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n19.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n19.json new file mode 100644 index 0000000..4b1f56c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n19.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 136, + "width": 204 + }, + "children": [ + "n13", + "n18" + ], + "height": "0px", + "nodeId": "n19", + "originalClass": "arco-menu-inline-content", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "styleId": "style_10", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n190.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n190.json new file mode 100644 index 0000000..a56638e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n190.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "nodeId": "n190", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-picker.arco-picker-range", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n191.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n191.json new file mode 100644 index 0000000..d7d4753 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n191.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "children": [ + "n190" + ], + "height": "12px", + "nodeId": "n191", + "originalClass": "arco-select-expand-icon", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "styleId": "style_51", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n192.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n192.json new file mode 100644 index 0000000..f90ce9d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n192.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "children": [ + "n191" + ], + "height": "30px", + "nodeId": "n192", + "originalClass": "arco-select-suffix", + "selector": "#createdTime", + "styleId": "style_52", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n193.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n193.json new file mode 100644 index 0000000..5eb3abf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n193.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 32, + "left": 722, + "top": 168, + "width": 438 + }, + "children": [ + "n189", + "n192" + ], + "height": "32px", + "nodeId": "n193", + "originalClass": "arco-select-view", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start", + "styleId": "style_53", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n194.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n194.json new file mode 100644 index 0000000..70e233b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n194.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 52, + "left": 710, + "top": 168, + "width": 462 + }, + "children": [ + "n193" + ], + "height": "32px", + "nodeId": "n194", + "originalClass": "arco-select arco-select-multiple arco-select-show-search arco-select-size-default", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5)", + "styleId": "style_54", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n195.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n195.json new file mode 100644 index 0000000..a4f4522 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n195.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 12, + "left": 674, + "top": 178, + "width": 12 + }, + "children": [ + "n194" + ], + "height": "32px", + "nodeId": "n195", + "originalClass": "arco-form-item-control-children", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2) > div.arco-select-expand-icon", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n196.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n196.json new file mode 100644 index 0000000..d19d9d6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n196.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 30, + "left": 674, + "top": 169, + "width": 20 + }, + "children": [ + "n195" + ], + "height": "32px", + "id": "contentType", + "nodeId": "n196", + "originalClass": "arco-form-item-control", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2)", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n197.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n197.json new file mode 100644 index 0000000..94cb5a7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n197.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 355, + "top": 169, + "width": 315 + }, + "children": [ + "n196" + ], + "height": "32px", + "nodeId": "n197", + "originalClass": "arco-form-item-control-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n198.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n198.json new file mode 100644 index 0000000..daf27ec --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n198.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 355, + "top": 169, + "width": 315 + }, + "children": [ + "n197" + ], + "height": "32px", + "nodeId": "n198", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n199.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n199.json new file mode 100644 index 0000000..ab2b5b8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n199.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "children": [ + "n185", + "n198" + ], + "height": "32px", + "nodeId": "n199", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple", + "styleId": "style_45", + "tag": "div", + "width": "438px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n2.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n2.json new file mode 100644 index 0000000..e9451da --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n2.json @@ -0,0 +1,17 @@ +{ + "_innerHTML": " 常用组件", + "bbox": { + "height": 16, + "left": 20, + "top": 16, + "width": 94 + }, + "children": [ + "n1" + ], + "nodeId": "n2", + "selector": "div.arco-menu-inner > div.arco-menu-item:nth-of-type(1) > a", + "styleId": "style_1", + "tag": "a", + "text": "常用组件" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n20.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n20.json new file mode 100644 index 0000000..06184c0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n20.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 0, + "left": 8, + "top": 92, + "width": 204 + }, + "children": [ + "n8", + "n19" + ], + "height": "44px", + "nodeId": "n20", + "originalClass": "arco-menu-inline", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2)", + "styleId": "style_11", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n200.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n200.json new file mode 100644 index 0000000..164ca26 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n200.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "children": [ + "n199" + ], + "nodeId": "n200", + "originalClass": "arco-col arco-col-8", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "styleId": "style_46", + "tag": "div", + "width": "462px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n201.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n201.json new file mode 100644 index 0000000..394c26f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n201.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 22, + "left": 818, + "top": 173, + "width": 143 + }, + "nodeId": "n201", + "selector": "div.arco-picker-input.arco-picker-input-active > input", + "styleId": "style_37", + "tag": "label", + "text": "筛选方式" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n202.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n202.json new file mode 100644 index 0000000..e3fa45f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n202.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1134, + "top": 173, + "width": 14 + }, + "children": [ + "n201" + ], + "height": "32px", + "nodeId": "n202", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "selector": "div.arco-picker-suffix", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n203.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n203.json new file mode 100644 index 0000000..47d5673 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n203.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 16, + "left": 1184, + "top": 176, + "width": 28 + }, + "height": "16.0938px", + "nodeId": "n203", + "originalClass": "arco-input-tag-input arco-input-tag-input-size-default", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "styleId": "style_47", + "tag": "input", + "width": "44px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n204.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n204.json new file mode 100644 index 0000000..5b489b0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n204.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "children": [ + "n203" + ], + "height": "30px", + "nodeId": "n204", + "originalClass": "arco-input-tag-inner", + "selector": "#status", + "styleId": "style_48", + "tag": "div", + "width": "314.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n205.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n205.json new file mode 100644 index 0000000..e7cee45 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n205.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "children": [ + "n204" + ], + "height": "30px", + "nodeId": "n205", + "originalClass": "arco-input-tag-view", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "styleId": "style_49", + "tag": "div", + "width": "314.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n206.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n206.json new file mode 100644 index 0000000..4607562 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n206.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "children": [ + "n205" + ], + "height": "30px", + "nodeId": "n206", + "originalClass": "arco-input-tag arco-input-tag-size-default arco-input-tag-has-placeholder", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "styleId": "style_50", + "tag": "div", + "width": "314.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n207.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n207.json new file mode 100644 index 0000000..430d63f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n207.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "nodeId": "n207", + "originalClass": "[object SVGAnimatedString]", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n208.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n208.json new file mode 100644 index 0000000..cb50ea8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n208.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "children": [ + "n207" + ], + "height": "12px", + "nodeId": "n208", + "originalClass": "arco-select-expand-icon", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple", + "styleId": "style_51", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n209.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n209.json new file mode 100644 index 0000000..01f2793 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n209.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "children": [ + "n208" + ], + "height": "30px", + "nodeId": "n209", + "originalClass": "arco-select-suffix", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "styleId": "style_52", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n21.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n21.json new file mode 100644 index 0000000..56c121d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n21.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 40, + "top": 136, + "width": 160 + }, + "nodeId": "n21", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n210.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n210.json new file mode 100644 index 0000000..3434abf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n210.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 16, + "left": 1134, + "top": 176, + "width": 14 + }, + "children": [ + "n206", + "n209" + ], + "height": "32px", + "nodeId": "n210", + "originalClass": "arco-select-view", + "selector": "span.arco-picker-suffix-icon", + "styleId": "style_53", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n211.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n211.json new file mode 100644 index 0000000..cee60d5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n211.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1184, + "top": 168, + "width": 91 + }, + "children": [ + "n210" + ], + "height": "32px", + "nodeId": "n211", + "originalClass": "arco-select arco-select-multiple arco-select-show-search arco-select-size-default", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "styleId": "style_54", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n212.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n212.json new file mode 100644 index 0000000..56efe2b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n212.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1184, + "top": 168, + "width": 438 + }, + "children": [ + "n211" + ], + "height": "32px", + "nodeId": "n212", + "originalClass": "arco-form-item-control-children", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n213.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n213.json new file mode 100644 index 0000000..bfea638 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n213.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 22, + "left": 987, + "top": 173, + "width": 143 + }, + "children": [ + "n212" + ], + "height": "32px", + "id": "filterType", + "nodeId": "n213", + "originalClass": "arco-form-item-control", + "selector": "div.arco-picker.arco-picker-range > div.arco-picker-input:nth-of-type(2) > input", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n214.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n214.json new file mode 100644 index 0000000..ceb7c34 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n214.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 52, + "left": 1172, + "top": 168, + "width": 462 + }, + "children": [ + "n213" + ], + "height": "32px", + "nodeId": "n214", + "originalClass": "arco-form-item-control-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6)", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n215.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n215.json new file mode 100644 index 0000000..35c666a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n215.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 961, + "top": 173, + "width": 26 + }, + "children": [ + "n214" + ], + "height": "32px", + "nodeId": "n215", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "selector": "span.arco-picker-separator", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n216.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n216.json new file mode 100644 index 0000000..9c6fe3c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n216.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 22, + "left": 987, + "top": 173, + "width": 143 + }, + "children": [ + "n202", + "n215" + ], + "height": "32px", + "nodeId": "n216", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "selector": "div.arco-picker.arco-picker-range > div.arco-picker-input:nth-of-type(2)", + "styleId": "style_45", + "tag": "div", + "width": "438px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n217.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n217.json new file mode 100644 index 0000000..b53925c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n217.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 22, + "left": 818, + "top": 173, + "width": 143 + }, + "children": [ + "n216" + ], + "nodeId": "n217", + "originalClass": "arco-col arco-col-8", + "selector": "div.arco-picker-input.arco-picker-input-active", + "styleId": "style_46", + "tag": "div", + "width": "462px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n218.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n218.json new file mode 100644 index 0000000..e1405a6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n218.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 1279, + "top": 176, + "width": 44 + }, + "nodeId": "n218", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > input.arco-input-tag-input.arco-input-tag-input-size-default", + "styleId": "style_37", + "tag": "label", + "text": "创建时间" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n219.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n219.json new file mode 100644 index 0000000..2e2fa29 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n219.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 1279, + "top": 169, + "width": 315 + }, + "children": [ + "n218" + ], + "height": "32px", + "nodeId": "n219", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n22.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n22.json new file mode 100644 index 0000000..7daf421 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n22.json @@ -0,0 +1,17 @@ +{ + "_innerHTML": " 数据可视化", + "bbox": { + "height": 0, + "left": 20, + "top": 161, + "width": 20 + }, + "children": [ + "n21" + ], + "nodeId": "n22", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_3", + "tag": "span", + "text": "数据可视化" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n220.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n220.json new file mode 100644 index 0000000..20065c7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n220.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 32, + "left": 1663, + "top": 116, + "width": 82 + }, + "height": "22px", + "nodeId": "n220", + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-primary:nth-of-type(1)", + "styleId": "style_55", + "tag": "input", + "width": "134.875px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n221.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n221.json new file mode 100644 index 0000000..cf088ea --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n221.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 260, + "top": 241, + "width": 178 + }, + "children": [ + "n220" + ], + "height": "22px", + "nodeId": "n221", + "originalClass": "arco-picker-input arco-picker-input-active", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1)", + "styleId": "style_56", + "tag": "div", + "width": "142.875px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n222.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n222.json new file mode 100644 index 0000000..2b3b4e5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n222.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1701, + "top": 124, + "width": 28 + }, + "height": "22px", + "nodeId": "n222", + "originalClass": "arco-picker-separator", + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-primary:nth-of-type(1) > span", + "styleId": "style_57", + "tag": "span", + "text": "-", + "width": "10px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n223.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n223.json new file mode 100644 index 0000000..3ac8626 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n223.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1701, + "top": 176, + "width": 28 + }, + "height": "22px", + "nodeId": "n223", + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-secondary:nth-of-type(2) > span", + "styleId": "style_55", + "tag": "input", + "width": "134.875px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n224.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n224.json new file mode 100644 index 0000000..4029a1c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n224.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1663, + "top": 168, + "width": 82 + }, + "children": [ + "n223" + ], + "height": "22px", + "nodeId": "n224", + "originalClass": "arco-picker-input", + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-secondary:nth-of-type(2)", + "styleId": "style_56", + "tag": "div", + "width": "142.875px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n225.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n225.json new file mode 100644 index 0000000..4e69a07 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n225.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 32, + "left": 260, + "top": 241, + "width": 82 + }, + "nodeId": "n225", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-primary", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n226.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n226.json new file mode 100644 index 0000000..29190ee --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n226.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 298, + "top": 249, + "width": 28 + }, + "children": [ + "n225" + ], + "nodeId": "n226", + "originalClass": "arco-picker-suffix-icon", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-primary > span", + "styleId": "style_58", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n227.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n227.json new file mode 100644 index 0000000..e4784fa --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n227.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 260, + "top": 241, + "width": 82 + }, + "children": [ + "n226" + ], + "height": "22px", + "nodeId": "n227", + "originalClass": "arco-picker-suffix", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(1)", + "styleId": "style_59", + "tag": "div", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n228.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n228.json new file mode 100644 index 0000000..b12c36c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n228.json @@ -0,0 +1,21 @@ +{ + "bbox": { + "height": 32, + "left": 260, + "top": 241, + "width": 1485 + }, + "children": [ + "n221", + "n222", + "n224", + "n227" + ], + "height": "32px", + "nodeId": "n228", + "originalClass": "arco-picker arco-picker-range arco-picker-size-default", + "selector": "div.button-group--yAB1O", + "styleId": "style_60", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n229.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n229.json new file mode 100644 index 0000000..23c96ea --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n229.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 0, + "left": 1279, + "top": 169, + "width": 36 + }, + "children": [ + "n228" + ], + "height": "32px", + "nodeId": "n229", + "originalClass": "arco-form-item-control-children", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > span.arco-input-tag-input-mirror", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n23.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n23.json new file mode 100644 index 0000000..20ffd57 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n23.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 8, + "top": 180, + "width": 204 + }, + "nodeId": "n23", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n230.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n230.json new file mode 100644 index 0000000..1e98312 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n230.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 84, + "left": 1642, + "top": 116, + "width": 103 + }, + "children": [ + "n229" + ], + "height": "32px", + "id": "createdTime", + "nodeId": "n230", + "originalClass": "arco-form-item-control", + "selector": "div.right-button--gbVbn", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n231.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n231.json new file mode 100644 index 0000000..303c7a5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n231.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 12, + "left": 1598, + "top": 178, + "width": 12 + }, + "children": [ + "n230" + ], + "height": "32px", + "nodeId": "n231", + "originalClass": "arco-form-item-control-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2) > div.arco-select-expand-icon", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n232.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n232.json new file mode 100644 index 0000000..1558db9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n232.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 1598, + "top": 169, + "width": 20 + }, + "children": [ + "n231" + ], + "height": "32px", + "nodeId": "n232", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2)", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n233.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n233.json new file mode 100644 index 0000000..630ea1f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n233.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 30, + "left": 1279, + "top": 169, + "width": 315 + }, + "children": [ + "n219", + "n232" + ], + "height": "32px", + "nodeId": "n233", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view", + "styleId": "style_45", + "tag": "div", + "width": "438px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n234.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n234.json new file mode 100644 index 0000000..90f133d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n234.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 30, + "left": 1279, + "top": 169, + "width": 315 + }, + "children": [ + "n233" + ], + "nodeId": "n234", + "originalClass": "arco-col arco-col-8", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1)", + "styleId": "style_46", + "tag": "div", + "width": "462px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n235.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n235.json new file mode 100644 index 0000000..4dd749f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n235.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 32, + "left": 350, + "top": 241, + "width": 88 + }, + "nodeId": "n235", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(2) > button.arco-btn.arco-btn-secondary", + "styleId": "style_37", + "tag": "label", + "text": "状态" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n236.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n236.json new file mode 100644 index 0000000..6972061 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n236.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1663, + "top": 241, + "width": 82 + }, + "children": [ + "n235" + ], + "height": "32px", + "nodeId": "n236", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n237.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n237.json new file mode 100644 index 0000000..32fc35f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n237.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "height": "16.0938px", + "nodeId": "n237", + "originalClass": "arco-input-tag-input arco-input-tag-input-size-default", + "selector": "div.arco-table-content-inner > table", + "styleId": "style_47", + "tag": "input", + "width": "44px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n238.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n238.json new file mode 100644 index 0000000..c13ca47 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n238.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "children": [ + "n237" + ], + "height": "30px", + "nodeId": "n238", + "originalClass": "arco-input-tag-inner", + "selector": "div.arco-table-content-inner", + "styleId": "style_48", + "tag": "div", + "width": "314.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n239.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n239.json new file mode 100644 index 0000000..0ee8e51 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n239.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "children": [ + "n238" + ], + "height": "30px", + "nodeId": "n239", + "originalClass": "arco-input-tag-view", + "selector": "div.arco-table-content-scroll", + "styleId": "style_49", + "tag": "div", + "width": "314.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n24.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n24.json new file mode 100644 index 0000000..fb14a52 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n24.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 40, + "left": 20, + "top": 180, + "width": 20 + }, + "children": [ + "n23" + ], + "height": "40px", + "nodeId": "n24", + "originalClass": "arco-menu-icon-suffix", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "styleId": "style_4", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n240.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n240.json new file mode 100644 index 0000000..536619c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n240.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "children": [ + "n239" + ], + "height": "30px", + "nodeId": "n240", + "originalClass": "arco-input-tag arco-input-tag-size-default arco-input-tag-has-placeholder", + "selector": "div.arco-table-container", + "styleId": "style_50", + "tag": "div", + "width": "314.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n241.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n241.json new file mode 100644 index 0000000..3c267a8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n241.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 841, + "left": 496, + "top": 293, + "width": 227 + }, + "nodeId": "n241", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n242.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n242.json new file mode 100644 index 0000000..42ed1d2 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n242.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 236 + }, + "children": [ + "n241" + ], + "height": "12px", + "nodeId": "n242", + "originalClass": "arco-select-expand-icon", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(1)", + "styleId": "style_51", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n243.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n243.json new file mode 100644 index 0000000..ad9679f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n243.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "children": [ + "n242" + ], + "height": "30px", + "nodeId": "n243", + "originalClass": "arco-select-suffix", + "selector": "div.arco-table-content-inner > table > colgroup", + "styleId": "style_52", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n244.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n244.json new file mode 100644 index 0000000..c833f58 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n244.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 16, + "left": 1701, + "top": 249, + "width": 28 + }, + "children": [ + "n240", + "n243" + ], + "height": "32px", + "nodeId": "n244", + "originalClass": "arco-select-view", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item > button.arco-btn.arco-btn-secondary > span", + "styleId": "style_53", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n245.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n245.json new file mode 100644 index 0000000..1ea9575 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n245.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 885, + "left": 260, + "top": 293, + "width": 1485 + }, + "children": [ + "n244" + ], + "height": "32px", + "nodeId": "n245", + "originalClass": "arco-select arco-select-multiple arco-select-show-search arco-select-size-default", + "selector": "div.arco-spin-children", + "styleId": "style_54", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n246.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n246.json new file mode 100644 index 0000000..6d1038f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n246.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1663, + "top": 241, + "width": 82 + }, + "children": [ + "n245" + ], + "height": "32px", + "nodeId": "n246", + "originalClass": "arco-form-item-control-children", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item > button.arco-btn.arco-btn-secondary", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n247.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n247.json new file mode 100644 index 0000000..82739d8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n247.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 885, + "left": 260, + "top": 293, + "width": 1485 + }, + "children": [ + "n246" + ], + "height": "32px", + "id": "status", + "nodeId": "n247", + "originalClass": "arco-form-item-control", + "selector": "div.arco-spin", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n248.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n248.json new file mode 100644 index 0000000..f9ca856 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n248.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 885, + "left": 260, + "top": 293, + "width": 1485 + }, + "children": [ + "n247" + ], + "height": "32px", + "nodeId": "n248", + "originalClass": "arco-form-item-control-wrapper", + "selector": "div.arco-table.arco-table-size-default", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n249.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n249.json new file mode 100644 index 0000000..d3bf3e7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n249.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 366, + "top": 249, + "width": 56 + }, + "children": [ + "n248" + ], + "height": "32px", + "nodeId": "n249", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(2) > button.arco-btn.arco-btn-secondary > span", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n25.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n25.json new file mode 100644 index 0000000..36e8713 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n25.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 143, + "width": 12 + }, + "children": [ + "n22", + "n24" + ], + "height": "40px", + "nodeId": "n25", + "originalClass": "arco-menu-inline-header", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_5", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n250.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n250.json new file mode 100644 index 0000000..81c2dc4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n250.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 32, + "left": 1663, + "top": 241, + "width": 82 + }, + "children": [ + "n236", + "n249" + ], + "height": "32px", + "nodeId": "n250", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(2)", + "styleId": "style_45", + "tag": "div", + "width": "438px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n251.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n251.json new file mode 100644 index 0000000..1889289 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n251.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 32, + "left": 350, + "top": 241, + "width": 88 + }, + "children": [ + "n250" + ], + "nodeId": "n251", + "originalClass": "arco-col arco-col-8", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(2)", + "styleId": "style_46", + "tag": "div", + "width": "462px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n252.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n252.json new file mode 100644 index 0000000..337476e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n252.json @@ -0,0 +1,23 @@ +{ + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "children": [ + "n173", + "n183", + "n200", + "n217", + "n234", + "n251" + ], + "height": "104px", + "nodeId": "n252", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "styleId": "style_61", + "tag": "div", + "width": "1386px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n253.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n253.json new file mode 100644 index 0000000..2cc5537 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n253.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 1184, + "top": 124, + "width": 56 + }, + "children": [ + "n252" + ], + "height": "104px", + "nodeId": "n253", + "originalClass": "arco-form arco-form-horizontal arco-form-size-default search-form--W0ULN", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "styleId": "style_62", + "tag": "form", + "width": "1362px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n254.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n254.json new file mode 100644 index 0000000..e1d5a94 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n254.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 841, + "left": 1058, + "top": 293, + "width": 148 + }, + "nodeId": "n254", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(5)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n255.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n255.json new file mode 100644 index 0000000..1a3ea0e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n255.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 841, + "left": 1206, + "top": 293, + "width": 255 + }, + "nodeId": "n255", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(6)", + "styleId": "style_63", + "tag": "span", + "text": "查询" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n256.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n256.json new file mode 100644 index 0000000..893bf71 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n256.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 841, + "left": 920, + "top": 293, + "width": 139 + }, + "children": [ + "n254", + "n255" + ], + "height": "32px", + "nodeId": "n256", + "originalClass": "arco-btn arco-btn-primary arco-btn-size-default arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(4)", + "styleId": "style_64", + "tag": "button", + "width": "82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n257.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n257.json new file mode 100644 index 0000000..c831de6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n257.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 841, + "left": 1600, + "top": 293, + "width": 145 + }, + "nodeId": "n257", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(8)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n258.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n258.json new file mode 100644 index 0000000..ef46589 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n258.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 320, + "width": 56 + }, + "nodeId": "n258", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(1) > div.arco-table-th-item > span.arco-table-th-item-title", + "styleId": "style_65", + "tag": "span", + "text": "重置" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n259.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n259.json new file mode 100644 index 0000000..e1af2ec --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n259.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 841, + "left": 1462, + "top": 293, + "width": 139 + }, + "children": [ + "n257", + "n258" + ], + "height": "32px", + "nodeId": "n259", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-default arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(7)", + "styleId": "style_66", + "tag": "button", + "width": "82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n26.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n26.json new file mode 100644 index 0000000..92891de --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n26.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 0, + "left": 20, + "top": 205, + "width": 20 + }, + "height": "0px", + "nodeId": "n26", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n260.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n260.json new file mode 100644 index 0000000..221a8ea --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n260.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 841, + "left": 723, + "top": 293, + "width": 197 + }, + "children": [ + "n256", + "n259" + ], + "height": "84px", + "nodeId": "n260", + "originalClass": "right-button--gbVbn", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(3)", + "styleId": "style_67", + "tag": "div", + "width": "103px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n261.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n261.json new file mode 100644 index 0000000..c099a46 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n261.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1184, + "top": 116, + "width": 91 + }, + "children": [ + "n253", + "n260" + ], + "nodeId": "n261", + "originalClass": "search-form-wrapper--jiX5t", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "styleId": "style_68", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n262.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n262.json new file mode 100644 index 0000000..035fe0f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n262.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 71, + "left": 496, + "top": 293, + "width": 227 + }, + "nodeId": "n262", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n263.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n263.json new file mode 100644 index 0000000..67e8806 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n263.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 320, + "width": 56 + }, + "nodeId": "n263", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(2) > div.arco-table-th-item > span.arco-table-th-item-title", + "styleId": "style_63", + "tag": "span", + "text": "新建" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n264.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n264.json new file mode 100644 index 0000000..0c9e3e1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n264.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 71, + "left": 260, + "top": 293, + "width": 236 + }, + "children": [ + "n262", + "n263" + ], + "height": "32px", + "nodeId": "n264", + "originalClass": "arco-btn arco-btn-primary arco-btn-size-default arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(1)", + "styleId": "style_69", + "tag": "button", + "width": "82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n265.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n265.json new file mode 100644 index 0000000..91ec90d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n265.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 71, + "left": 260, + "top": 293, + "width": 1485 + }, + "children": [ + "n264" + ], + "height": "32px", + "nodeId": "n265", + "originalClass": "arco-space-item", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr", + "styleId": "style_70", + "tag": "div", + "width": "82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n266.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n266.json new file mode 100644 index 0000000..1203c55 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n266.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 739, + "top": 320, + "width": 56 + }, + "nodeId": "n266", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(3) > div.arco-table-th-item > span.arco-table-th-item-title", + "styleId": "style_71", + "tag": "span", + "text": "批量导入" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n267.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n267.json new file mode 100644 index 0000000..1962de4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n267.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 71, + "left": 723, + "top": 293, + "width": 197 + }, + "children": [ + "n266" + ], + "height": "32px", + "nodeId": "n267", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-default arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(3)", + "styleId": "style_72", + "tag": "button", + "width": "88px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n268.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n268.json new file mode 100644 index 0000000..3434bd6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n268.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 70, + "left": 496, + "top": 293, + "width": 227 + }, + "children": [ + "n267" + ], + "height": "32px", + "nodeId": "n268", + "originalClass": "arco-space-item", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(2) > div.arco-table-th-item", + "styleId": "style_28", + "tag": "div", + "width": "88px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n269.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n269.json new file mode 100644 index 0000000..2562874 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n269.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 71, + "left": 260, + "top": 293, + "width": 1485 + }, + "children": [ + "n265", + "n268" + ], + "height": "32px", + "nodeId": "n269", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "selector": "div.arco-table-content-inner > table > thead", + "styleId": "style_73", + "tag": "div", + "width": "178px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n27.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n27.json new file mode 100644 index 0000000..b3b37c0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n27.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 40, + "left": 40, + "top": 180, + "width": 160 + }, + "children": [ + "n26" + ], + "height": "40px", + "nodeId": "n27", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n270.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n270.json new file mode 100644 index 0000000..0cfe80c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n270.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 16, + "left": 936, + "top": 320, + "width": 56 + }, + "nodeId": "n270", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(4) > div.arco-table-th-item > span.arco-table-th-item-title", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n271.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n271.json new file mode 100644 index 0000000..30b8e3d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n271.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 320, + "width": 42 + }, + "nodeId": "n271", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > span.arco-table-th-item-title", + "styleId": "style_65", + "tag": "span", + "text": "下载" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n272.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n272.json new file mode 100644 index 0000000..d952918 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n272.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 71, + "left": 920, + "top": 293, + "width": 139 + }, + "children": [ + "n270", + "n271" + ], + "height": "32px", + "nodeId": "n272", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-default arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(4)", + "styleId": "style_72", + "tag": "button", + "width": "82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n273.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n273.json new file mode 100644 index 0000000..ef41084 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n273.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 70, + "left": 920, + "top": 293, + "width": 139 + }, + "children": [ + "n272" + ], + "height": "32px", + "nodeId": "n273", + "originalClass": "arco-space-item", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(4) > div.arco-table-th-item", + "styleId": "style_28", + "tag": "div", + "width": "82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n274.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n274.json new file mode 100644 index 0000000..b9b9d1f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n274.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 70, + "left": 723, + "top": 293, + "width": 197 + }, + "children": [ + "n273" + ], + "height": "32px", + "nodeId": "n274", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(3) > div.arco-table-th-item", + "styleId": "style_73", + "tag": "div", + "width": "82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n275.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n275.json new file mode 100644 index 0000000..d1706b5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n275.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 70, + "left": 260, + "top": 293, + "width": 236 + }, + "children": [ + "n269", + "n274" + ], + "height": "32px", + "nodeId": "n275", + "originalClass": "button-group--yAB1O", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(1) > div.arco-table-th-item", + "styleId": "style_74", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n276.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n276.json new file mode 100644 index 0000000..f7cd453 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n276.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 70, + "left": 1206, + "top": 293, + "width": 255 + }, + "height": "841px", + "nodeId": "n276", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter", + "styleId": "style_75", + "tag": "col", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n277.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n277.json new file mode 100644 index 0000000..c93935a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n277.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 320, + "width": 56 + }, + "height": "841px", + "nodeId": "n277", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > span.arco-table-th-item-title", + "styleId": "style_75", + "tag": "col", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n278.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n278.json new file mode 100644 index 0000000..d930437 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n278.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1286, + "top": 320, + "width": 12 + }, + "height": "841px", + "nodeId": "n278", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter", + "styleId": "style_75", + "tag": "col", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n279.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n279.json new file mode 100644 index 0000000..5812931 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n279.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 8, + "left": 1286, + "top": 320, + "width": 12 + }, + "height": "841px", + "nodeId": "n279", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter > div.arco-table-sorter-icon:nth-of-type(1)", + "styleId": "style_75", + "tag": "col", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n28.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n28.json new file mode 100644 index 0000000..cfb953f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n28.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 136, + "width": 204 + }, + "height": "18px", + "nodeId": "n28", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inline-header.arco-menu-selected", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n280.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n280.json new file mode 100644 index 0000000..a44d424 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n280.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 8, + "left": 1286, + "top": 328, + "width": 12 + }, + "height": "841px", + "nodeId": "n280", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter > div.arco-table-sorter-icon:nth-of-type(2)", + "styleId": "style_75", + "tag": "col", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n281.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n281.json new file mode 100644 index 0000000..281f827 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n281.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 71, + "left": 1462, + "top": 293, + "width": 139 + }, + "height": "841px", + "nodeId": "n281", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(7)", + "styleId": "style_75", + "tag": "col", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n282.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n282.json new file mode 100644 index 0000000..f0dd5e6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n282.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 70, + "left": 1462, + "top": 293, + "width": 139 + }, + "height": "841px", + "nodeId": "n282", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(7) > div.arco-table-th-item", + "styleId": "style_75", + "tag": "col", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n283.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n283.json new file mode 100644 index 0000000..7cf9f8a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n283.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 320, + "width": 28 + }, + "height": "841px", + "nodeId": "n283", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(7) > div.arco-table-th-item > span.arco-table-th-item-title", + "styleId": "style_75", + "tag": "col", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n284.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n284.json new file mode 100644 index 0000000..c0ff990 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n284.json @@ -0,0 +1,24 @@ +{ + "bbox": { + "height": 70, + "left": 1206, + "top": 293, + "width": 255 + }, + "children": [ + "n276", + "n277", + "n278", + "n279", + "n280", + "n281", + "n282", + "n283" + ], + "height": "841px", + "nodeId": "n284", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter", + "styleId": "style_76", + "tag": "colgroup", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n285.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n285.json new file mode 100644 index 0000000..1837bdd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n285.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1631, + "top": 320, + "width": 28 + }, + "nodeId": "n285", + "originalClass": "arco-table-th-item-title", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(8) > div.arco-table-th-item > span.arco-table-th-item-title", + "styleId": "style_77", + "tag": "span", + "text": "集合编号" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n286.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n286.json new file mode 100644 index 0000000..99cd484 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n286.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 391, + "width": 204 + }, + "children": [ + "n285" + ], + "height": "22px", + "nodeId": "n286", + "originalClass": "arco-table-th-item", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_78", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n287.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n287.json new file mode 100644 index 0000000..5112b10 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n287.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 70, + "left": 1615, + "top": 293, + "width": 130 + }, + "children": [ + "n286" + ], + "height": "71px", + "nodeId": "n287", + "originalClass": "arco-table-th", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(8) > div.arco-table-th-item", + "styleId": "style_79", + "tag": "th", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n288.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n288.json new file mode 100644 index 0000000..3ea1480 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n288.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 394, + "width": 118 + }, + "nodeId": "n288", + "originalClass": "arco-table-th-item-title", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_77", + "tag": "span", + "text": "集合名称" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n289.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n289.json new file mode 100644 index 0000000..3c87a88 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n289.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 391, + "width": 195 + }, + "children": [ + "n288" + ], + "height": "22px", + "nodeId": "n289", + "originalClass": "arco-table-th-item", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_78", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n29.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n29.json new file mode 100644 index 0000000..1621cc9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n29.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
分析页", + "bbox": { + "height": 16, + "left": 20, + "top": 148, + "width": 80 + }, + "children": [ + "n28" + ], + "height": "40px", + "nodeId": "n29", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inline-header.arco-menu-selected > span:nth-of-type(1)", + "styleId": "style_8", + "tag": "span", + "text": "分析页", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n290.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n290.json new file mode 100644 index 0000000..6f0cdc8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n290.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 770, + "left": 260, + "top": 364, + "width": 1485 + }, + "children": [ + "n289" + ], + "height": "71px", + "nodeId": "n290", + "originalClass": "arco-table-th", + "selector": "div.arco-table-content-inner > table > tbody", + "styleId": "style_80", + "tag": "th", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n291.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n291.json new file mode 100644 index 0000000..250e7e1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n291.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 394, + "width": 118 + }, + "nodeId": "n291", + "originalClass": "arco-table-th-item-title", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_77", + "tag": "span", + "text": "内容体裁" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n292.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n292.json new file mode 100644 index 0000000..94579b6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n292.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 391, + "width": 165 + }, + "children": [ + "n291" + ], + "height": "22px", + "nodeId": "n292", + "originalClass": "arco-table-th-item", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_78", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n293.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n293.json new file mode 100644 index 0000000..0534cf0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n293.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 364, + "width": 236 + }, + "children": [ + "n292" + ], + "height": "71px", + "nodeId": "n293", + "originalClass": "arco-table-th", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_80", + "tag": "th", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n294.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n294.json new file mode 100644 index 0000000..ff0e7ea --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n294.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 394, + "width": 98 + }, + "nodeId": "n294", + "originalClass": "arco-table-th-item-title", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_77", + "tag": "span", + "text": "筛选方式" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n295.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n295.json new file mode 100644 index 0000000..b8b2a34 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n295.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 496, + "top": 364, + "width": 227 + }, + "children": [ + "n294" + ], + "height": "22px", + "nodeId": "n295", + "originalClass": "arco-table-th-item", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(2)", + "styleId": "style_78", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n296.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n296.json new file mode 100644 index 0000000..2b058cf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n296.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 20, + "left": 376, + "top": 392, + "width": 18 + }, + "children": [ + "n295" + ], + "height": "71px", + "nodeId": "n296", + "originalClass": "arco-table-th", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_80", + "tag": "th", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n297.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n297.json new file mode 100644 index 0000000..2dfa652 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n297.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 391, + "width": 165 + }, + "nodeId": "n297", + "originalClass": "arco-table-th-item-title", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_81", + "tag": "span", + "text": "内容量" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n298.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n298.json new file mode 100644 index 0000000..c64caaa --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n298.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 16, + "left": 936, + "top": 394, + "width": 28 + }, + "nodeId": "n298", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n299.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n299.json new file mode 100644 index 0000000..10902f8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n299.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 364, + "width": 139 + }, + "children": [ + "n298" + ], + "height": "8px", + "nodeId": "n299", + "originalClass": "arco-table-sorter-icon", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_82", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n3.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n3.json new file mode 100644 index 0000000..86f1234 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n3.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 48, + "width": 204 + }, + "children": [ + "n2" + ], + "height": "40px", + "nodeId": "n3", + "originalClass": "arco-menu-item", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-header:nth-of-type(1)", + "styleId": "style_2", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n30.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n30.json new file mode 100644 index 0000000..29c4a13 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n30.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 132, + "left": 8, + "top": 136, + "width": 204 + }, + "children": [ + "n27", + "n29" + ], + "height": "40px", + "nodeId": "n30", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4)", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n300.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n300.json new file mode 100644 index 0000000..e159ed8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n300.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 1058, + "top": 364, + "width": 148 + }, + "nodeId": "n300", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(5)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n301.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n301.json new file mode 100644 index 0000000..20da99e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n301.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1222, + "top": 391, + "width": 223 + }, + "children": [ + "n300" + ], + "height": "8px", + "nodeId": "n301", + "originalClass": "arco-table-sorter-icon", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_82", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n302.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n302.json new file mode 100644 index 0000000..d439cfc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n302.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 22, + "left": 1074, + "top": 391, + "width": 116 + }, + "children": [ + "n299", + "n301" + ], + "height": "16px", + "nodeId": "n302", + "originalClass": "arco-table-sorter", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "styleId": "style_83", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n303.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n303.json new file mode 100644 index 0000000..0c032f1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n303.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 22, + "left": 936, + "top": 391, + "width": 107 + }, + "children": [ + "n297", + "n302" + ], + "height": "22px", + "nodeId": "n303", + "originalClass": "arco-table-cell-with-sorter", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "styleId": "style_84", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n304.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n304.json new file mode 100644 index 0000000..8afa448 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n304.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 391, + "width": 165 + }, + "children": [ + "n303" + ], + "height": "70px", + "nodeId": "n304", + "originalClass": "arco-table-th-item arco-table-col-has-sorter", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "styleId": "style_85", + "tag": "div", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n305.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n305.json new file mode 100644 index 0000000..5bf5ae6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n305.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 723, + "top": 364, + "width": 197 + }, + "children": [ + "n304" + ], + "height": "71px", + "nodeId": "n305", + "originalClass": "arco-table-th", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(3)", + "styleId": "style_80", + "tag": "th", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n306.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n306.json new file mode 100644 index 0000000..a82db31 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n306.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 394, + "width": 130 + }, + "nodeId": "n306", + "originalClass": "arco-table-th-item-title", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_81", + "tag": "span", + "text": "创建时间" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n307.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n307.json new file mode 100644 index 0000000..fd6655a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n307.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 1478, + "top": 392, + "width": 56 + }, + "nodeId": "n307", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n308.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n308.json new file mode 100644 index 0000000..d82ebeb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n308.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 393, + "width": 56 + }, + "children": [ + "n307" + ], + "height": "8px", + "nodeId": "n308", + "originalClass": "arco-table-sorter-icon", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_82", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n309.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n309.json new file mode 100644 index 0000000..d41d1c9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n309.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 1478, + "top": 392, + "width": 56 + }, + "nodeId": "n309", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n31.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n31.json new file mode 100644 index 0000000..d67c2e0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n31.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 20, + "top": 180, + "width": 20 + }, + "height": "0px", + "nodeId": "n31", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-item.arco-menu-selected > span:nth-of-type(1)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n310.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n310.json new file mode 100644 index 0000000..42bf3b9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n310.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 388, + "width": 113 + }, + "children": [ + "n309" + ], + "height": "8px", + "nodeId": "n310", + "originalClass": "arco-table-sorter-icon", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_82", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n311.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n311.json new file mode 100644 index 0000000..01caf9a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n311.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 77, + "left": 1462, + "top": 364, + "width": 139 + }, + "children": [ + "n308", + "n310" + ], + "height": "16px", + "nodeId": "n311", + "originalClass": "arco-table-sorter", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7)", + "styleId": "style_83", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n312.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n312.json new file mode 100644 index 0000000..7b4a650 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n312.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 77, + "left": 1206, + "top": 364, + "width": 255 + }, + "children": [ + "n306", + "n311" + ], + "height": "22px", + "nodeId": "n312", + "originalClass": "arco-table-cell-with-sorter", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(6)", + "styleId": "style_84", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n313.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n313.json new file mode 100644 index 0000000..2d47847 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n313.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 24, + "left": 1478, + "top": 390, + "width": 107 + }, + "children": [ + "n312" + ], + "height": "70px", + "nodeId": "n313", + "originalClass": "arco-table-th-item arco-table-col-has-sorter", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_85", + "tag": "div", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n314.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n314.json new file mode 100644 index 0000000..c29734c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n314.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 394, + "width": 23 + }, + "children": [ + "n313" + ], + "height": "71px", + "nodeId": "n314", + "originalClass": "arco-table-th", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_80", + "tag": "th", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n315.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n315.json new file mode 100644 index 0000000..1e755ac --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n315.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1616, + "top": 394, + "width": 60 + }, + "nodeId": "n315", + "originalClass": "arco-table-th-item-title", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_77", + "tag": "span", + "text": "状态" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n316.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n316.json new file mode 100644 index 0000000..d6bcff3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n316.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1492, + "top": 392, + "width": 42 + }, + "children": [ + "n315" + ], + "height": "22px", + "nodeId": "n316", + "originalClass": "arco-table-th-item", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "styleId": "style_78", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n317.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n317.json new file mode 100644 index 0000000..8aebaa3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n317.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 6, + "left": 1478, + "top": 400, + "width": 6 + }, + "children": [ + "n316" + ], + "height": "71px", + "nodeId": "n317", + "originalClass": "arco-table-th", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-success:nth-of-type(1)", + "styleId": "style_80", + "tag": "th", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n318.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n318.json new file mode 100644 index 0000000..875ae5f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n318.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 394, + "width": 28 + }, + "nodeId": "n318", + "originalClass": "arco-table-th-item-title", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_77", + "tag": "span", + "text": "操作" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n319.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n319.json new file mode 100644 index 0000000..c88be55 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n319.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 468, + "width": 204 + }, + "children": [ + "n318" + ], + "height": "22px", + "nodeId": "n319", + "originalClass": "arco-table-th-item", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_78", + "tag": "div", + "width": "97.8906px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n32.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n32.json new file mode 100644 index 0000000..ffe905c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n32.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 40, + "left": 186, + "top": 136, + "width": 14 + }, + "children": [ + "n31" + ], + "height": "40px", + "nodeId": "n32", + "selector": "span.arco-menu-icon-suffix.is-open", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n320.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n320.json new file mode 100644 index 0000000..161cd36 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n320.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 364, + "width": 145 + }, + "children": [ + "n319" + ], + "height": "71px", + "nodeId": "n320", + "originalClass": "arco-table-th", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_86", + "tag": "th", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n321.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n321.json new file mode 100644 index 0000000..8214917 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n321.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 364, + "width": 1485 + }, + "children": [ + "n287", + "n290", + "n293", + "n296", + "n305", + "n314", + "n317", + "n320" + ], + "height": "71px", + "nodeId": "n321", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1)", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n322.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n322.json new file mode 100644 index 0000000..f27584b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n322.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 71, + "left": 1600, + "top": 293, + "width": 145 + }, + "children": [ + "n321" + ], + "height": "71px", + "nodeId": "n322", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(8)", + "styleId": "style_88", + "tag": "thead", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n323.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n323.json new file mode 100644 index 0000000..94c3ed9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n323.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 496, + "top": 441, + "width": 227 + }, + "nodeId": "n323", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n324.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n324.json new file mode 100644 index 0000000..44d4a50 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n324.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 20, + "left": 376, + "top": 469, + "width": 18 + }, + "children": [ + "n323" + ], + "nodeId": "n324", + "originalClass": "arco-typography-operation-copy", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n325.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n325.json new file mode 100644 index 0000000..3a2ec07 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n325.json @@ -0,0 +1,18 @@ +{ + "_innerHTML": "18514366-5559", + "bbox": { + "height": 16, + "left": 276, + "top": 471, + "width": 118 + }, + "children": [ + "n324" + ], + "nodeId": "n325", + "originalClass": "arco-typography", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "18514366-5559" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n326.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n326.json new file mode 100644 index 0000000..367d00d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n326.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 471, + "width": 118 + }, + "children": [ + "n325" + ], + "nodeId": "n326", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n327.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n327.json new file mode 100644 index 0000000..c3e9bfb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n327.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 468, + "width": 195 + }, + "children": [ + "n326" + ], + "height": "22px", + "nodeId": "n327", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n328.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n328.json new file mode 100644 index 0000000..6d14500 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n328.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 441, + "width": 236 + }, + "children": [ + "n327" + ], + "height": "77px", + "nodeId": "n328", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n329.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n329.json new file mode 100644 index 0000000..d7ca3ed --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n329.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 471, + "width": 98 + }, + "nodeId": "n329", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "每日推荐视频集" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n33.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n33.json new file mode 100644 index 0000000..1459f5a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n33.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 180, + "width": 204 + }, + "height": "18px", + "nodeId": "n33", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-item.arco-menu-selected", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n330.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n330.json new file mode 100644 index 0000000..df7da80 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n330.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 468, + "width": 165 + }, + "children": [ + "n329" + ], + "height": "22px", + "nodeId": "n330", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n331.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n331.json new file mode 100644 index 0000000..50e05de --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n331.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 723, + "top": 441, + "width": 197 + }, + "children": [ + "n330" + ], + "height": "77px", + "nodeId": "n331", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(3)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n332.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n332.json new file mode 100644 index 0000000..819819f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n332.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 16, + "left": 936, + "top": 471, + "width": 28 + }, + "nodeId": "n332", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n333.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n333.json new file mode 100644 index 0000000..801cefd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n333.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "图文", + "bbox": { + "height": 22, + "left": 936, + "top": 468, + "width": 107 + }, + "children": [ + "n332" + ], + "height": "22px", + "nodeId": "n333", + "originalClass": "content-type--HXfG3", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "styleId": "style_93", + "tag": "div", + "text": "图文", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n334.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n334.json new file mode 100644 index 0000000..d834710 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n334.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 468, + "width": 165 + }, + "children": [ + "n333" + ], + "nodeId": "n334", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n335.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n335.json new file mode 100644 index 0000000..6863a4d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n335.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 468, + "width": 165 + }, + "children": [ + "n334" + ], + "height": "22px", + "nodeId": "n335", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n336.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n336.json new file mode 100644 index 0000000..e74a2f9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n336.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 441, + "width": 139 + }, + "children": [ + "n335" + ], + "height": "77px", + "nodeId": "n336", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n337.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n337.json new file mode 100644 index 0000000..e65125f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n337.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 471, + "width": 35 + }, + "nodeId": "n337", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "人工" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n338.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n338.json new file mode 100644 index 0000000..c978511 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n338.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1074, + "top": 468, + "width": 116 + }, + "children": [ + "n337" + ], + "height": "22px", + "nodeId": "n338", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n339.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n339.json new file mode 100644 index 0000000..dbe5842 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n339.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1058, + "top": 441, + "width": 148 + }, + "children": [ + "n338" + ], + "height": "77px", + "nodeId": "n339", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(5)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n34.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n34.json new file mode 100644 index 0000000..7319359 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n34.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
多维数据分析", + "bbox": { + "height": 0, + "left": 20, + "top": 205, + "width": 20 + }, + "children": [ + "n33" + ], + "height": "40px", + "nodeId": "n34", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-item.arco-menu-selected > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_8", + "tag": "span", + "text": "多维数据分析", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n340.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n340.json new file mode 100644 index 0000000..f60ad30 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n340.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 471, + "width": 130 + }, + "nodeId": "n340", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "105" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n341.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n341.json new file mode 100644 index 0000000..dbdfe1d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n341.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1222, + "top": 468, + "width": 223 + }, + "children": [ + "n340" + ], + "height": "22px", + "nodeId": "n341", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n342.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n342.json new file mode 100644 index 0000000..8461976 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n342.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1206, + "top": 441, + "width": 255 + }, + "children": [ + "n341" + ], + "height": "77px", + "nodeId": "n342", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(6)", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n343.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n343.json new file mode 100644 index 0000000..ded9b9a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n343.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 470, + "width": 56 + }, + "nodeId": "n343", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-10 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n344.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n344.json new file mode 100644 index 0000000..f56df6b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n344.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 24, + "left": 1478, + "top": 467, + "width": 107 + }, + "children": [ + "n343" + ], + "height": "22px", + "nodeId": "n344", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n345.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n345.json new file mode 100644 index 0000000..e33b7c0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n345.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1462, + "top": 441, + "width": 139 + }, + "children": [ + "n344" + ], + "height": "77px", + "nodeId": "n345", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7)", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n346.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n346.json new file mode 100644 index 0000000..06659ff --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n346.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 22, + "left": 1492, + "top": 469, + "width": 42 + }, + "height": "6px", + "nodeId": "n346", + "originalClass": "arco-badge-status-dot arco-badge-status-success", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "styleId": "style_94", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n347.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n347.json new file mode 100644 index 0000000..5461d7e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n347.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1616, + "top": 471, + "width": 60 + }, + "height": "22px", + "nodeId": "n347", + "originalClass": "arco-badge-status-text", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_95", + "tag": "span", + "text": "已上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n348.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n348.json new file mode 100644 index 0000000..1de2abe --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n348.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 6, + "left": 1478, + "top": 477, + "width": 6 + }, + "children": [ + "n346", + "n347" + ], + "height": "22px", + "nodeId": "n348", + "originalClass": "arco-badge-status-wrapper", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n349.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n349.json new file mode 100644 index 0000000..b92bce5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n349.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 469, + "width": 56 + }, + "children": [ + "n348" + ], + "height": "22px", + "nodeId": "n349", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n35.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n35.json new file mode 100644 index 0000000..da9dbb4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n35.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 88, + "left": 8, + "top": 180, + "width": 204 + }, + "children": [ + "n32", + "n34" + ], + "height": "40px", + "nodeId": "n35", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2)", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n350.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n350.json new file mode 100644 index 0000000..1c5a3ec --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n350.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 469, + "width": 56 + }, + "children": [ + "n349" + ], + "nodeId": "n350", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n351.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n351.json new file mode 100644 index 0000000..697b5f6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n351.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 465, + "width": 113 + }, + "children": [ + "n350" + ], + "height": "24px", + "nodeId": "n351", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n352.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n352.json new file mode 100644 index 0000000..8fbf3be --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n352.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 441, + "width": 145 + }, + "children": [ + "n351" + ], + "height": "77px", + "nodeId": "n352", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n353.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n353.json new file mode 100644 index 0000000..deee235 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n353.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 548, + "width": 118 + }, + "nodeId": "n353", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n354.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n354.json new file mode 100644 index 0000000..a2fec50 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n354.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 465, + "width": 60 + }, + "children": [ + "n353" + ], + "height": "28px", + "nodeId": "n354", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n355.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n355.json new file mode 100644 index 0000000..ce4cd0f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n355.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 471, + "width": 28 + }, + "children": [ + "n354" + ], + "nodeId": "n355", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n356.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n356.json new file mode 100644 index 0000000..a727a7c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n356.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 545, + "width": 204 + }, + "children": [ + "n355" + ], + "height": "28px", + "nodeId": "n356", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n357.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n357.json new file mode 100644 index 0000000..e5bec50 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n357.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 518, + "width": 236 + }, + "children": [ + "n356" + ], + "height": "77px", + "nodeId": "n357", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n358.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n358.json new file mode 100644 index 0000000..7e6cd71 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n358.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 441, + "width": 1485 + }, + "children": [ + "n328", + "n331", + "n336", + "n339", + "n342", + "n345", + "n352", + "n357" + ], + "height": "77px", + "nodeId": "n358", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2)", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n359.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n359.json new file mode 100644 index 0000000..3bfd83a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n359.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 723, + "top": 518, + "width": 197 + }, + "nodeId": "n359", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(3)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n36.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n36.json new file mode 100644 index 0000000..e4af944 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n36.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 187, + "width": 12 + }, + "children": [ + "n30", + "n35" + ], + "height": "0px", + "nodeId": "n36", + "originalClass": "arco-menu-inline-content", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_10", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n360.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n360.json new file mode 100644 index 0000000..c0fd6c0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n360.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 548, + "width": 84 + }, + "children": [ + "n359" + ], + "nodeId": "n360", + "originalClass": "arco-typography-operation-copy", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n361.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n361.json new file mode 100644 index 0000000..88897e9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n361.json @@ -0,0 +1,18 @@ +{ + "_innerHTML": "64494084-3767", + "bbox": { + "height": 20, + "left": 376, + "top": 546, + "width": 18 + }, + "children": [ + "n360" + ], + "nodeId": "n361", + "originalClass": "arco-typography", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_90", + "tag": "span", + "text": "64494084-3767" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n362.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n362.json new file mode 100644 index 0000000..4974c70 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n362.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 548, + "width": 118 + }, + "children": [ + "n361" + ], + "nodeId": "n362", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n363.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n363.json new file mode 100644 index 0000000..36080e8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n363.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 545, + "width": 195 + }, + "children": [ + "n362" + ], + "height": "22px", + "nodeId": "n363", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n364.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n364.json new file mode 100644 index 0000000..652a092 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n364.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 496, + "top": 518, + "width": 227 + }, + "children": [ + "n363" + ], + "height": "77px", + "nodeId": "n364", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(2)", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n365.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n365.json new file mode 100644 index 0000000..c084d61 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n365.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 545, + "width": 165 + }, + "nodeId": "n365", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "每日推荐视频集" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n366.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n366.json new file mode 100644 index 0000000..e4de8b4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n366.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 545, + "width": 165 + }, + "children": [ + "n365" + ], + "height": "22px", + "nodeId": "n366", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n367.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n367.json new file mode 100644 index 0000000..58f56e9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n367.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 518, + "width": 139 + }, + "children": [ + "n366" + ], + "height": "77px", + "nodeId": "n367", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n368.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n368.json new file mode 100644 index 0000000..5c7089d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n368.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 1074, + "top": 545, + "width": 116 + }, + "nodeId": "n368", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n369.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n369.json new file mode 100644 index 0000000..8dc39a9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n369.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "横版短视频", + "bbox": { + "height": 22, + "left": 936, + "top": 545, + "width": 107 + }, + "children": [ + "n368" + ], + "height": "22px", + "nodeId": "n369", + "originalClass": "content-type--HXfG3", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "styleId": "style_93", + "tag": "div", + "text": "横版短视频", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n37.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n37.json new file mode 100644 index 0000000..a74e4e3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n37.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 136, + "width": 204 + }, + "children": [ + "n25", + "n36" + ], + "height": "44px", + "nodeId": "n37", + "originalClass": "arco-menu-inline", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "styleId": "style_11", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n370.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n370.json new file mode 100644 index 0000000..21e2707 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n370.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 936, + "top": 548, + "width": 56 + }, + "children": [ + "n369" + ], + "nodeId": "n370", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n371.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n371.json new file mode 100644 index 0000000..da49601 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n371.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 545, + "width": 165 + }, + "children": [ + "n370" + ], + "height": "22px", + "nodeId": "n371", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n372.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n372.json new file mode 100644 index 0000000..590170a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n372.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1058, + "top": 518, + "width": 148 + }, + "children": [ + "n371" + ], + "height": "77px", + "nodeId": "n372", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(5)", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n373.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n373.json new file mode 100644 index 0000000..eb45658 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n373.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 548, + "width": 23 + }, + "nodeId": "n373", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "人工" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n374.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n374.json new file mode 100644 index 0000000..10e094a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n374.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1222, + "top": 545, + "width": 223 + }, + "children": [ + "n373" + ], + "height": "22px", + "nodeId": "n374", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n375.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n375.json new file mode 100644 index 0000000..1340717 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n375.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1206, + "top": 518, + "width": 255 + }, + "children": [ + "n374" + ], + "height": "77px", + "nodeId": "n375", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(6)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n376.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n376.json new file mode 100644 index 0000000..42eb911 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n376.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 548, + "width": 130 + }, + "nodeId": "n376", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "1,246" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n377.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n377.json new file mode 100644 index 0000000..71fed30 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n377.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 24, + "left": 1478, + "top": 544, + "width": 107 + }, + "children": [ + "n376" + ], + "height": "22px", + "nodeId": "n377", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n378.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n378.json new file mode 100644 index 0000000..956915d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n378.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1462, + "top": 518, + "width": 139 + }, + "children": [ + "n377" + ], + "height": "77px", + "nodeId": "n378", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7)", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n379.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n379.json new file mode 100644 index 0000000..619dcf0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n379.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 547, + "width": 56 + }, + "nodeId": "n379", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-16 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n38.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n38.json new file mode 100644 index 0000000..6df7c2e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n38.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 20, + "top": 224, + "width": 20 + }, + "nodeId": "n38", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n380.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n380.json new file mode 100644 index 0000000..53c140e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n380.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 542, + "width": 113 + }, + "children": [ + "n379" + ], + "height": "22px", + "nodeId": "n380", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n381.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n381.json new file mode 100644 index 0000000..c0bdf35 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n381.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 518, + "width": 145 + }, + "children": [ + "n380" + ], + "height": "77px", + "nodeId": "n381", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n382.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n382.json new file mode 100644 index 0000000..af0a2da --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n382.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 548, + "width": 28 + }, + "height": "6px", + "nodeId": "n382", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_100", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n383.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n383.json new file mode 100644 index 0000000..72960f9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n383.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 625, + "width": 118 + }, + "height": "22px", + "nodeId": "n383", + "originalClass": "arco-badge-status-text", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n384.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n384.json new file mode 100644 index 0000000..5af9a1a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n384.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 16, + "left": 1616, + "top": 548, + "width": 60 + }, + "children": [ + "n382", + "n383" + ], + "height": "22px", + "nodeId": "n384", + "originalClass": "arco-badge-status-wrapper", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n385.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n385.json new file mode 100644 index 0000000..209fe0d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n385.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1492, + "top": 546, + "width": 42 + }, + "children": [ + "n384" + ], + "height": "22px", + "nodeId": "n385", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n386.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n386.json new file mode 100644 index 0000000..1a199d0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n386.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 6, + "left": 1478, + "top": 554, + "width": 6 + }, + "children": [ + "n385" + ], + "nodeId": "n386", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-success:nth-of-type(1)", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n387.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n387.json new file mode 100644 index 0000000..941abb3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n387.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 546, + "width": 56 + }, + "children": [ + "n386" + ], + "height": "24px", + "nodeId": "n387", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n388.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n388.json new file mode 100644 index 0000000..ad003a5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n388.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 546, + "width": 56 + }, + "children": [ + "n387" + ], + "height": "77px", + "nodeId": "n388", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n389.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n389.json new file mode 100644 index 0000000..5068d27 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n389.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 625, + "width": 118 + }, + "nodeId": "n389", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n39.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n39.json new file mode 100644 index 0000000..8a51c71 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n39.json @@ -0,0 +1,17 @@ +{ + "_innerHTML": " 列表页", + "bbox": { + "height": 40, + "left": 40, + "top": 180, + "width": 160 + }, + "children": [ + "n38" + ], + "nodeId": "n39", + "selector": "div.arco-menu-item.arco-menu-selected > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_12", + "tag": "span", + "text": "列表页" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n390.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n390.json new file mode 100644 index 0000000..58b239d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n390.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 622, + "width": 204 + }, + "children": [ + "n389" + ], + "height": "28px", + "nodeId": "n390", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n391.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n391.json new file mode 100644 index 0000000..e5f24b7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n391.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 595, + "width": 1485 + }, + "children": [ + "n390" + ], + "nodeId": "n391", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4)", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n392.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n392.json new file mode 100644 index 0000000..028bfaa --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n392.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 542, + "width": 60 + }, + "children": [ + "n391" + ], + "height": "28px", + "nodeId": "n392", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n393.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n393.json new file mode 100644 index 0000000..b093007 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n393.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 595, + "width": 236 + }, + "children": [ + "n392" + ], + "height": "77px", + "nodeId": "n393", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n394.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n394.json new file mode 100644 index 0000000..39fc2b4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n394.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 518, + "width": 1485 + }, + "children": [ + "n364", + "n367", + "n372", + "n375", + "n378", + "n381", + "n388", + "n393" + ], + "height": "77px", + "nodeId": "n394", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3)", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n395.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n395.json new file mode 100644 index 0000000..b8897df --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n395.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 723, + "top": 595, + "width": 197 + }, + "nodeId": "n395", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(3)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n396.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n396.json new file mode 100644 index 0000000..1f6a329 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n396.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 936, + "top": 625, + "width": 28 + }, + "children": [ + "n395" + ], + "nodeId": "n396", + "originalClass": "arco-typography-operation-copy", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n397.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n397.json new file mode 100644 index 0000000..2219dd4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n397.json @@ -0,0 +1,18 @@ +{ + "_innerHTML": "79634294-4686", + "bbox": { + "height": 22, + "left": 739, + "top": 622, + "width": 165 + }, + "children": [ + "n396" + ], + "nodeId": "n397", + "originalClass": "arco-typography", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "79634294-4686" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n398.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n398.json new file mode 100644 index 0000000..3ede014 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n398.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 625, + "width": 112 + }, + "children": [ + "n397" + ], + "nodeId": "n398", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n399.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n399.json new file mode 100644 index 0000000..8a2f056 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n399.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 622, + "width": 195 + }, + "children": [ + "n398" + ], + "height": "22px", + "nodeId": "n399", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n4.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n4.json new file mode 100644 index 0000000..b28de8f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n4.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 0, + "left": 20, + "top": 117, + "width": 20 + }, + "nodeId": "n4", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n40.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n40.json new file mode 100644 index 0000000..8d5c930 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n40.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 40, + "top": 224, + "width": 160 + }, + "nodeId": "n40", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n400.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n400.json new file mode 100644 index 0000000..d885b1e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n400.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 496, + "top": 595, + "width": 227 + }, + "children": [ + "n399" + ], + "height": "77px", + "nodeId": "n400", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(2)", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n401.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n401.json new file mode 100644 index 0000000..9418aef --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n401.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 622, + "width": 165 + }, + "nodeId": "n401", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "styleId": "style_90", + "tag": "span", + "text": "国际新闻集合" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n402.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n402.json new file mode 100644 index 0000000..913d621 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n402.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 622, + "width": 165 + }, + "children": [ + "n401" + ], + "height": "22px", + "nodeId": "n402", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n403.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n403.json new file mode 100644 index 0000000..421ddd5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n403.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 595, + "width": 139 + }, + "children": [ + "n402" + ], + "height": "77px", + "nodeId": "n403", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n404.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n404.json new file mode 100644 index 0000000..abea14a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n404.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 1206, + "top": 595, + "width": 255 + }, + "nodeId": "n404", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(6)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n405.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n405.json new file mode 100644 index 0000000..e1c5813 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n405.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "竖版短视频", + "bbox": { + "height": 22, + "left": 1074, + "top": 622, + "width": 116 + }, + "children": [ + "n404" + ], + "height": "22px", + "nodeId": "n405", + "originalClass": "content-type--HXfG3", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "styleId": "style_93", + "tag": "div", + "text": "竖版短视频", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n406.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n406.json new file mode 100644 index 0000000..9618371 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n406.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 625, + "width": 8 + }, + "children": [ + "n405" + ], + "nodeId": "n406", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n407.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n407.json new file mode 100644 index 0000000..d8940a3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n407.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 936, + "top": 622, + "width": 107 + }, + "children": [ + "n406" + ], + "height": "22px", + "nodeId": "n407", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n408.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n408.json new file mode 100644 index 0000000..08c84d0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n408.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1058, + "top": 595, + "width": 148 + }, + "children": [ + "n407" + ], + "height": "77px", + "nodeId": "n408", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(5)", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n409.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n409.json new file mode 100644 index 0000000..3bd1ad4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n409.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 625, + "width": 130 + }, + "nodeId": "n409", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n41.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n41.json new file mode 100644 index 0000000..971e602 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n41.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 0, + "left": 20, + "top": 249, + "width": 20 + }, + "children": [ + "n40" + ], + "height": "40px", + "nodeId": "n41", + "originalClass": "arco-menu-icon-suffix", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_13", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n410.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n410.json new file mode 100644 index 0000000..e000702 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n410.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1222, + "top": 622, + "width": 223 + }, + "children": [ + "n409" + ], + "height": "22px", + "nodeId": "n410", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n411.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n411.json new file mode 100644 index 0000000..47e0cff --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n411.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1462, + "top": 595, + "width": 139 + }, + "children": [ + "n410" + ], + "height": "77px", + "nodeId": "n411", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n412.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n412.json new file mode 100644 index 0000000..a7978a7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n412.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 623, + "width": 56 + }, + "nodeId": "n412", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "styleId": "style_90", + "tag": "span", + "text": "366" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n413.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n413.json new file mode 100644 index 0000000..60fdf3d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n413.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 624, + "width": 56 + }, + "children": [ + "n412" + ], + "height": "22px", + "nodeId": "n413", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n414.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n414.json new file mode 100644 index 0000000..e918e2d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n414.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 24, + "left": 1478, + "top": 621, + "width": 107 + }, + "children": [ + "n413" + ], + "height": "77px", + "nodeId": "n414", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n415.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n415.json new file mode 100644 index 0000000..b5e6632 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n415.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 623, + "width": 56 + }, + "nodeId": "n415", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-05 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n416.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n416.json new file mode 100644 index 0000000..71de034 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n416.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 619, + "width": 113 + }, + "children": [ + "n415" + ], + "height": "22px", + "nodeId": "n416", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n417.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n417.json new file mode 100644 index 0000000..6c1e178 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n417.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 595, + "width": 145 + }, + "children": [ + "n416" + ], + "height": "77px", + "nodeId": "n417", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n418.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n418.json new file mode 100644 index 0000000..5fcc92d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n418.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 619, + "width": 60 + }, + "height": "6px", + "nodeId": "n418", + "originalClass": "arco-badge-status-dot arco-badge-status-success", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_94", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n419.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n419.json new file mode 100644 index 0000000..6af7b8d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n419.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 702, + "width": 118 + }, + "height": "22px", + "nodeId": "n419", + "originalClass": "arco-badge-status-text", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_95", + "tag": "span", + "text": "已上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n42.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n42.json new file mode 100644 index 0000000..e5ab5b0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n42.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 224, + "width": 204 + }, + "children": [ + "n39", + "n41" + ], + "height": "40px", + "nodeId": "n42", + "originalClass": "arco-menu-inline-header arco-menu-selected", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "styleId": "style_14", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n420.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n420.json new file mode 100644 index 0000000..94e5e25 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n420.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 702, + "width": 118 + }, + "children": [ + "n418", + "n419" + ], + "height": "22px", + "nodeId": "n420", + "originalClass": "arco-badge-status-wrapper", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n421.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n421.json new file mode 100644 index 0000000..bd4a69e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n421.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 625, + "width": 28 + }, + "children": [ + "n420" + ], + "height": "22px", + "nodeId": "n421", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n422.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n422.json new file mode 100644 index 0000000..56dd597 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n422.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1616, + "top": 625, + "width": 60 + }, + "children": [ + "n421" + ], + "nodeId": "n422", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n423.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n423.json new file mode 100644 index 0000000..b668d34 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n423.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1492, + "top": 623, + "width": 42 + }, + "children": [ + "n422" + ], + "height": "24px", + "nodeId": "n423", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n424.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n424.json new file mode 100644 index 0000000..1fe31d1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n424.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 6, + "left": 1478, + "top": 631, + "width": 6 + }, + "children": [ + "n423" + ], + "height": "77px", + "nodeId": "n424", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n425.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n425.json new file mode 100644 index 0000000..9339c9a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n425.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 702, + "width": 84 + }, + "nodeId": "n425", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n426.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n426.json new file mode 100644 index 0000000..ae93aa3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n426.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 672, + "width": 1485 + }, + "children": [ + "n425" + ], + "height": "28px", + "nodeId": "n426", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5)", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n427.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n427.json new file mode 100644 index 0000000..6f8632a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n427.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 20, + "left": 376, + "top": 700, + "width": 18 + }, + "children": [ + "n426" + ], + "nodeId": "n427", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n428.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n428.json new file mode 100644 index 0000000..962b1ba --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n428.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 699, + "width": 204 + }, + "children": [ + "n427" + ], + "height": "28px", + "nodeId": "n428", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n429.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n429.json new file mode 100644 index 0000000..632610d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n429.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 672, + "width": 236 + }, + "children": [ + "n428" + ], + "height": "77px", + "nodeId": "n429", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n43.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n43.json new file mode 100644 index 0000000..2651798 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n43.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 186, + "top": 268, + "width": 14 + }, + "height": "0px", + "nodeId": "n43", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "styleId": "style_15", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n430.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n430.json new file mode 100644 index 0000000..a2b0aaf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n430.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 20, + "left": 376, + "top": 623, + "width": 18 + }, + "children": [ + "n400", + "n403", + "n408", + "n411", + "n414", + "n417", + "n424", + "n429" + ], + "height": "77px", + "nodeId": "n430", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n431.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n431.json new file mode 100644 index 0000000..7fa4637 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n431.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 739, + "top": 699, + "width": 165 + }, + "nodeId": "n431", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n432.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n432.json new file mode 100644 index 0000000..6f9cbe9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n432.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 699, + "width": 165 + }, + "children": [ + "n431" + ], + "nodeId": "n432", + "originalClass": "arco-typography-operation-copy", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n433.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n433.json new file mode 100644 index 0000000..55a390c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n433.json @@ -0,0 +1,18 @@ +{ + "_innerHTML": "86326438-1258", + "bbox": { + "height": 16, + "left": 936, + "top": 702, + "width": 28 + }, + "children": [ + "n432" + ], + "nodeId": "n433", + "originalClass": "arco-typography", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "86326438-1258" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n434.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n434.json new file mode 100644 index 0000000..88cfeb3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n434.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 699, + "width": 165 + }, + "children": [ + "n433" + ], + "nodeId": "n434", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n435.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n435.json new file mode 100644 index 0000000..b35795b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n435.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 699, + "width": 195 + }, + "children": [ + "n434" + ], + "height": "22px", + "nodeId": "n435", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n436.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n436.json new file mode 100644 index 0000000..4b52d3b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n436.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 723, + "top": 672, + "width": 197 + }, + "children": [ + "n435" + ], + "height": "77px", + "nodeId": "n436", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(3)", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n437.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n437.json new file mode 100644 index 0000000..f32b513 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n437.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 702, + "width": 35 + }, + "nodeId": "n437", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "抖音短视频候选集" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n438.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n438.json new file mode 100644 index 0000000..d016a30 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n438.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 936, + "top": 699, + "width": 107 + }, + "children": [ + "n437" + ], + "height": "22px", + "nodeId": "n438", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n439.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n439.json new file mode 100644 index 0000000..970a930 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n439.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 672, + "width": 139 + }, + "children": [ + "n438" + ], + "height": "77px", + "nodeId": "n439", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n44.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n44.json new file mode 100644 index 0000000..7353755 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n44.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 16, + "left": 20, + "top": 280, + "width": 80 + }, + "children": [ + "n43" + ], + "height": "40px", + "nodeId": "n44", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_16", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n440.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n440.json new file mode 100644 index 0000000..b6ccc6a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n440.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 1206, + "top": 672, + "width": 255 + }, + "nodeId": "n440", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(6)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n441.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n441.json new file mode 100644 index 0000000..cfa1af5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n441.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "横版短视频", + "bbox": { + "height": 22, + "left": 1222, + "top": 699, + "width": 223 + }, + "children": [ + "n440" + ], + "height": "22px", + "nodeId": "n441", + "originalClass": "content-type--HXfG3", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_93", + "tag": "div", + "text": "横版短视频", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n442.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n442.json new file mode 100644 index 0000000..77fb6f4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n442.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 702, + "width": 130 + }, + "children": [ + "n441" + ], + "nodeId": "n442", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n443.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n443.json new file mode 100644 index 0000000..bdc9897 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n443.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1074, + "top": 699, + "width": 116 + }, + "children": [ + "n442" + ], + "height": "22px", + "nodeId": "n443", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n444.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n444.json new file mode 100644 index 0000000..56b2faa --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n444.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1058, + "top": 672, + "width": 148 + }, + "children": [ + "n443" + ], + "height": "77px", + "nodeId": "n444", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(5)", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n445.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n445.json new file mode 100644 index 0000000..88a9248 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n445.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 701, + "width": 56 + }, + "nodeId": "n445", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "人工" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n446.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n446.json new file mode 100644 index 0000000..0a43368 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n446.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 24, + "left": 1478, + "top": 698, + "width": 107 + }, + "children": [ + "n445" + ], + "height": "22px", + "nodeId": "n446", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n447.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n447.json new file mode 100644 index 0000000..58b01c1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n447.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1462, + "top": 672, + "width": 139 + }, + "children": [ + "n446" + ], + "height": "77px", + "nodeId": "n447", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n448.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n448.json new file mode 100644 index 0000000..21376e9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n448.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 700, + "width": 56 + }, + "nodeId": "n448", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "styleId": "style_90", + "tag": "span", + "text": "1" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n449.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n449.json new file mode 100644 index 0000000..bbacd43 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n449.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 696, + "width": 113 + }, + "children": [ + "n448" + ], + "height": "22px", + "nodeId": "n449", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n45.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n45.json new file mode 100644 index 0000000..b35696f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n45.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 0, + "left": 8, + "top": 312, + "width": 204 + }, + "height": "18px", + "nodeId": "n45", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2)", + "styleId": "style_15", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n450.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n450.json new file mode 100644 index 0000000..2e05b44 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n450.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 672, + "width": 145 + }, + "children": [ + "n449" + ], + "height": "77px", + "nodeId": "n450", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n451.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n451.json new file mode 100644 index 0000000..d473a9e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n451.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 1492, + "top": 700, + "width": 42 + }, + "nodeId": "n451", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-03 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n452.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n452.json new file mode 100644 index 0000000..6fe5272 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n452.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 6, + "left": 1478, + "top": 708, + "width": 6 + }, + "children": [ + "n451" + ], + "height": "22px", + "nodeId": "n452", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n453.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n453.json new file mode 100644 index 0000000..e738fff --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n453.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 700, + "width": 56 + }, + "children": [ + "n452" + ], + "height": "77px", + "nodeId": "n453", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n454.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n454.json new file mode 100644 index 0000000..90ee4a9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n454.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 779, + "width": 116 + }, + "height": "6px", + "nodeId": "n454", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_100", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n455.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n455.json new file mode 100644 index 0000000..e119149 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n455.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 749, + "width": 1485 + }, + "height": "22px", + "nodeId": "n455", + "originalClass": "arco-badge-status-text", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6)", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n456.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n456.json new file mode 100644 index 0000000..f217cdf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n456.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 696, + "width": 60 + }, + "children": [ + "n454", + "n455" + ], + "height": "22px", + "nodeId": "n456", + "originalClass": "arco-badge-status-wrapper", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n457.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n457.json new file mode 100644 index 0000000..6c1a6b1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n457.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 702, + "width": 28 + }, + "children": [ + "n456" + ], + "height": "22px", + "nodeId": "n457", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n458.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n458.json new file mode 100644 index 0000000..c8d162d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n458.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1616, + "top": 702, + "width": 60 + }, + "children": [ + "n457" + ], + "nodeId": "n458", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n459.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n459.json new file mode 100644 index 0000000..7e6637e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n459.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 776, + "width": 204 + }, + "children": [ + "n458" + ], + "height": "24px", + "nodeId": "n459", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n46.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n46.json new file mode 100644 index 0000000..46cc92c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n46.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
查询表格", + "bbox": { + "height": 40, + "left": 20, + "top": 312, + "width": 20 + }, + "children": [ + "n45" + ], + "height": "40px", + "nodeId": "n46", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_17", + "tag": "span", + "text": "查询表格", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n460.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n460.json new file mode 100644 index 0000000..613f09a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n460.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 749, + "width": 236 + }, + "children": [ + "n459" + ], + "height": "77px", + "nodeId": "n460", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n461.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n461.json new file mode 100644 index 0000000..10fd649 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n461.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 779, + "width": 84 + }, + "nodeId": "n461", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n462.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n462.json new file mode 100644 index 0000000..c3ca2f6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n462.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 20, + "left": 374, + "top": 777, + "width": 18 + }, + "children": [ + "n461" + ], + "height": "28px", + "nodeId": "n462", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n463.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n463.json new file mode 100644 index 0000000..636c96a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n463.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 779, + "width": 116 + }, + "children": [ + "n462" + ], + "nodeId": "n463", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n464.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n464.json new file mode 100644 index 0000000..db992d8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n464.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 776, + "width": 195 + }, + "children": [ + "n463" + ], + "height": "28px", + "nodeId": "n464", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n465.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n465.json new file mode 100644 index 0000000..247a320 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n465.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 496, + "top": 749, + "width": 227 + }, + "children": [ + "n464" + ], + "height": "77px", + "nodeId": "n465", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(2)", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n466.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n466.json new file mode 100644 index 0000000..0da3a38 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n466.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 77, + "left": 496, + "top": 672, + "width": 227 + }, + "children": [ + "n436", + "n439", + "n444", + "n447", + "n450", + "n453", + "n460", + "n465" + ], + "height": "77px", + "nodeId": "n466", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(2)", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n467.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n467.json new file mode 100644 index 0000000..0e51ddb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n467.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 936, + "top": 776, + "width": 107 + }, + "nodeId": "n467", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n468.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n468.json new file mode 100644 index 0000000..a327231 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n468.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 776, + "width": 165 + }, + "children": [ + "n467" + ], + "nodeId": "n468", + "originalClass": "arco-typography-operation-copy", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n469.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n469.json new file mode 100644 index 0000000..6c7c6ef --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n469.json @@ -0,0 +1,18 @@ +{ + "_innerHTML": "98615157-3293", + "bbox": { + "height": 16, + "left": 936, + "top": 779, + "width": 56 + }, + "children": [ + "n468" + ], + "nodeId": "n469", + "originalClass": "arco-typography", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "98615157-3293" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n47.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n47.json new file mode 100644 index 0000000..6f17dd0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n47.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 44, + "left": 8, + "top": 268, + "width": 204 + }, + "children": [ + "n44", + "n46" + ], + "height": "40px", + "nodeId": "n47", + "originalClass": "arco-menu-item arco-menu-selected arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5)", + "styleId": "style_18", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n470.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n470.json new file mode 100644 index 0000000..ae4db17 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n470.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 776, + "width": 165 + }, + "children": [ + "n469" + ], + "nodeId": "n470", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n471.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n471.json new file mode 100644 index 0000000..f264014 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n471.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 776, + "width": 165 + }, + "children": [ + "n470" + ], + "height": "22px", + "nodeId": "n471", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n472.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n472.json new file mode 100644 index 0000000..c0b4c66 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n472.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 749, + "width": 139 + }, + "children": [ + "n471" + ], + "height": "77px", + "nodeId": "n472", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n473.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n473.json new file mode 100644 index 0000000..15280c8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n473.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 779, + "width": 35 + }, + "nodeId": "n473", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "国际新闻集合" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n474.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n474.json new file mode 100644 index 0000000..4102006 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n474.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1074, + "top": 776, + "width": 116 + }, + "children": [ + "n473" + ], + "height": "22px", + "nodeId": "n474", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n475.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n475.json new file mode 100644 index 0000000..3962fd4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n475.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1058, + "top": 749, + "width": 148 + }, + "children": [ + "n474" + ], + "height": "77px", + "nodeId": "n475", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(5)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n476.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n476.json new file mode 100644 index 0000000..628db1f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n476.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 1462, + "top": 749, + "width": 139 + }, + "nodeId": "n476", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n477.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n477.json new file mode 100644 index 0000000..15142d5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n477.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "竖版短视频", + "bbox": { + "height": 24, + "left": 1478, + "top": 775, + "width": 107 + }, + "children": [ + "n476" + ], + "height": "22px", + "nodeId": "n477", + "originalClass": "content-type--HXfG3", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_93", + "tag": "div", + "text": "竖版短视频", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n478.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n478.json new file mode 100644 index 0000000..ad464d8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n478.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 779, + "width": 130 + }, + "children": [ + "n477" + ], + "nodeId": "n478", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n479.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n479.json new file mode 100644 index 0000000..a1749c7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n479.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1222, + "top": 776, + "width": 223 + }, + "children": [ + "n478" + ], + "height": "22px", + "nodeId": "n479", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n48.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n48.json new file mode 100644 index 0000000..14e4232 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n48.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 40, + "top": 312, + "width": 160 + }, + "height": "0px", + "nodeId": "n48", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n480.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n480.json new file mode 100644 index 0000000..a2a38e7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n480.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1206, + "top": 749, + "width": 255 + }, + "children": [ + "n479" + ], + "height": "77px", + "nodeId": "n480", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(6)", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n481.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n481.json new file mode 100644 index 0000000..36eca29 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n481.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 778, + "width": 56 + }, + "nodeId": "n481", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "人工" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n482.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n482.json new file mode 100644 index 0000000..a1dfae8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n482.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 773, + "width": 113 + }, + "children": [ + "n481" + ], + "height": "22px", + "nodeId": "n482", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n483.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n483.json new file mode 100644 index 0000000..88621a6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n483.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 749, + "width": 145 + }, + "children": [ + "n482" + ], + "height": "77px", + "nodeId": "n483", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n484.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n484.json new file mode 100644 index 0000000..ad4e109 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n484.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 6, + "left": 1478, + "top": 785, + "width": 6 + }, + "nodeId": "n484", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "styleId": "style_90", + "tag": "span", + "text": "1,316" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n485.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n485.json new file mode 100644 index 0000000..933dd0b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n485.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 777, + "width": 56 + }, + "children": [ + "n484" + ], + "height": "22px", + "nodeId": "n485", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n486.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n486.json new file mode 100644 index 0000000..ed2c52e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n486.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 777, + "width": 56 + }, + "children": [ + "n485" + ], + "height": "77px", + "nodeId": "n486", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n487.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n487.json new file mode 100644 index 0000000..8fcdb48 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n487.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1616, + "top": 779, + "width": 60 + }, + "nodeId": "n487", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-03 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n488.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n488.json new file mode 100644 index 0000000..9812d80 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n488.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 853, + "width": 204 + }, + "children": [ + "n487" + ], + "height": "22px", + "nodeId": "n488", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n489.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n489.json new file mode 100644 index 0000000..1b97775 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n489.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1492, + "top": 777, + "width": 42 + }, + "children": [ + "n488" + ], + "height": "77px", + "nodeId": "n489", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n49.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n49.json new file mode 100644 index 0000000..bc69bdb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n49.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 0, + "left": 20, + "top": 337, + "width": 20 + }, + "children": [ + "n48" + ], + "height": "40px", + "nodeId": "n49", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n490.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n490.json new file mode 100644 index 0000000..c53f00d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n490.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 856, + "width": 118 + }, + "height": "6px", + "nodeId": "n490", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_100", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n491.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n491.json new file mode 100644 index 0000000..a2f31c4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n491.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 20, + "left": 376, + "top": 854, + "width": 18 + }, + "height": "22px", + "nodeId": "n491", + "originalClass": "arco-badge-status-text", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n492.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n492.json new file mode 100644 index 0000000..8dd2f6a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n492.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 826, + "width": 1485 + }, + "children": [ + "n490", + "n491" + ], + "height": "22px", + "nodeId": "n492", + "originalClass": "arco-badge-status-wrapper", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7)", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n493.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n493.json new file mode 100644 index 0000000..9cba5c9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n493.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 856, + "width": 118 + }, + "children": [ + "n492" + ], + "height": "22px", + "nodeId": "n493", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n494.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n494.json new file mode 100644 index 0000000..3e210d0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n494.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 779, + "width": 28 + }, + "children": [ + "n493" + ], + "nodeId": "n494", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n495.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n495.json new file mode 100644 index 0000000..1a23613 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n495.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 773, + "width": 60 + }, + "children": [ + "n494" + ], + "height": "24px", + "nodeId": "n495", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n496.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n496.json new file mode 100644 index 0000000..ec8e735 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n496.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 826, + "width": 236 + }, + "children": [ + "n495" + ], + "height": "77px", + "nodeId": "n496", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n497.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n497.json new file mode 100644 index 0000000..e0f1a5b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n497.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 853, + "width": 165 + }, + "nodeId": "n497", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n498.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n498.json new file mode 100644 index 0000000..b0694ad --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n498.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 723, + "top": 826, + "width": 197 + }, + "children": [ + "n497" + ], + "height": "28px", + "nodeId": "n498", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(3)", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n499.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n499.json new file mode 100644 index 0000000..2de13d1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n499.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 856, + "width": 98 + }, + "children": [ + "n498" + ], + "nodeId": "n499", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n5.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n5.json new file mode 100644 index 0000000..6f4dfd4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n5.json @@ -0,0 +1,17 @@ +{ + "_innerHTML": " 仪表盘", + "bbox": { + "height": 40, + "left": 20, + "top": 92, + "width": 20 + }, + "children": [ + "n4" + ], + "nodeId": "n5", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_3", + "tag": "span", + "text": "仪表盘" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n50.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n50.json new file mode 100644 index 0000000..d602213 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n50.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 319, + "width": 12 + }, + "height": "18px", + "nodeId": "n50", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n500.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n500.json new file mode 100644 index 0000000..2a0840f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n500.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 853, + "width": 195 + }, + "children": [ + "n499" + ], + "height": "28px", + "nodeId": "n500", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n501.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n501.json new file mode 100644 index 0000000..863ca60 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n501.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 496, + "top": 826, + "width": 227 + }, + "children": [ + "n500" + ], + "height": "77px", + "nodeId": "n501", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(2)", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n502.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n502.json new file mode 100644 index 0000000..f0d65fa --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n502.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 77, + "left": 723, + "top": 749, + "width": 197 + }, + "children": [ + "n472", + "n475", + "n480", + "n483", + "n486", + "n489", + "n496", + "n501" + ], + "height": "77px", + "nodeId": "n502", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(3)", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n503.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n503.json new file mode 100644 index 0000000..691bbdc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n503.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 1058, + "top": 826, + "width": 148 + }, + "nodeId": "n503", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(5)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n504.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n504.json new file mode 100644 index 0000000..900801f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n504.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 936, + "top": 853, + "width": 107 + }, + "children": [ + "n503" + ], + "nodeId": "n504", + "originalClass": "arco-typography-operation-copy", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n505.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n505.json new file mode 100644 index 0000000..9bcb6c2 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n505.json @@ -0,0 +1,18 @@ +{ + "_innerHTML": "14712111-5478", + "bbox": { + "height": 16, + "left": 1074, + "top": 856, + "width": 23 + }, + "children": [ + "n504" + ], + "nodeId": "n505", + "originalClass": "arco-typography", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "14712111-5478" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n506.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n506.json new file mode 100644 index 0000000..d9a6e74 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n506.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 936, + "top": 856, + "width": 56 + }, + "children": [ + "n505" + ], + "nodeId": "n506", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n507.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n507.json new file mode 100644 index 0000000..e64cf91 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n507.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 853, + "width": 165 + }, + "children": [ + "n506" + ], + "height": "22px", + "nodeId": "n507", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n508.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n508.json new file mode 100644 index 0000000..dbca338 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n508.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 826, + "width": 139 + }, + "children": [ + "n507" + ], + "height": "77px", + "nodeId": "n508", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n509.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n509.json new file mode 100644 index 0000000..5e58288 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n509.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 856, + "width": 130 + }, + "nodeId": "n509", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "国际新闻集合" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n51.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n51.json new file mode 100644 index 0000000..c2b115d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n51.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
卡片列表", + "bbox": { + "height": 40, + "left": 20, + "top": 356, + "width": 20 + }, + "children": [ + "n50" + ], + "height": "40px", + "nodeId": "n51", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "styleId": "style_8", + "tag": "span", + "text": "卡片列表", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n510.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n510.json new file mode 100644 index 0000000..018f74d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n510.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1074, + "top": 853, + "width": 116 + }, + "children": [ + "n509" + ], + "height": "22px", + "nodeId": "n510", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n511.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n511.json new file mode 100644 index 0000000..57b69a8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n511.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1206, + "top": 826, + "width": 255 + }, + "children": [ + "n510" + ], + "height": "77px", + "nodeId": "n511", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(6)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n512.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n512.json new file mode 100644 index 0000000..f8c46fe --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n512.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 1478, + "top": 854, + "width": 56 + }, + "nodeId": "n512", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n513.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n513.json new file mode 100644 index 0000000..a31a5cd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n513.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "图文", + "bbox": { + "height": 24, + "left": 1478, + "top": 852, + "width": 107 + }, + "children": [ + "n512" + ], + "height": "22px", + "nodeId": "n513", + "originalClass": "content-type--HXfG3", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_93", + "tag": "div", + "text": "图文", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n514.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n514.json new file mode 100644 index 0000000..adddd78 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n514.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 855, + "width": 56 + }, + "children": [ + "n513" + ], + "nodeId": "n514", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n515.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n515.json new file mode 100644 index 0000000..5183eaf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n515.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1222, + "top": 853, + "width": 223 + }, + "children": [ + "n514" + ], + "height": "22px", + "nodeId": "n515", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n516.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n516.json new file mode 100644 index 0000000..8132820 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n516.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1462, + "top": 826, + "width": 139 + }, + "children": [ + "n515" + ], + "height": "77px", + "nodeId": "n516", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7)", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n517.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n517.json new file mode 100644 index 0000000..96b4cef --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n517.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 854, + "width": 56 + }, + "nodeId": "n517", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n518.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n518.json new file mode 100644 index 0000000..3dfaad2 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n518.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 850, + "width": 113 + }, + "children": [ + "n517" + ], + "height": "22px", + "nodeId": "n518", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n519.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n519.json new file mode 100644 index 0000000..8d513e1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n519.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 826, + "width": 145 + }, + "children": [ + "n518" + ], + "height": "77px", + "nodeId": "n519", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n52.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n52.json new file mode 100644 index 0000000..dc79b9d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n52.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 312, + "width": 204 + }, + "children": [ + "n49", + "n51" + ], + "height": "40px", + "nodeId": "n52", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n520.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n520.json new file mode 100644 index 0000000..be1d08c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n520.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1616, + "top": 856, + "width": 60 + }, + "nodeId": "n520", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "1,688" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n521.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n521.json new file mode 100644 index 0000000..2a40364 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n521.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1492, + "top": 854, + "width": 42 + }, + "children": [ + "n520" + ], + "height": "22px", + "nodeId": "n521", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n522.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n522.json new file mode 100644 index 0000000..96d5b7b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n522.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 6, + "left": 1478, + "top": 862, + "width": 6 + }, + "children": [ + "n521" + ], + "height": "77px", + "nodeId": "n522", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n523.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n523.json new file mode 100644 index 0000000..1456852 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n523.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 856, + "width": 28 + }, + "nodeId": "n523", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-02 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n524.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n524.json new file mode 100644 index 0000000..9ca42c3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n524.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 930, + "width": 204 + }, + "children": [ + "n523" + ], + "height": "22px", + "nodeId": "n524", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n525.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n525.json new file mode 100644 index 0000000..6cf8d27 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n525.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 903, + "width": 236 + }, + "children": [ + "n524" + ], + "height": "77px", + "nodeId": "n525", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n526.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n526.json new file mode 100644 index 0000000..7a227d4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n526.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 933, + "width": 98 + }, + "height": "6px", + "nodeId": "n526", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_100", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n527.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n527.json new file mode 100644 index 0000000..119421f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n527.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 930, + "width": 165 + }, + "height": "22px", + "nodeId": "n527", + "originalClass": "arco-badge-status-text", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n528.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n528.json new file mode 100644 index 0000000..6bbd040 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n528.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 20, + "left": 376, + "top": 931, + "width": 18 + }, + "children": [ + "n526", + "n527" + ], + "height": "22px", + "nodeId": "n528", + "originalClass": "arco-badge-status-wrapper", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n529.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n529.json new file mode 100644 index 0000000..7277e6d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n529.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 933, + "width": 118 + }, + "children": [ + "n528" + ], + "height": "22px", + "nodeId": "n529", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n53.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n53.json new file mode 100644 index 0000000..38ef249 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n53.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 231, + "width": 12 + }, + "children": [ + "n47", + "n52" + ], + "nodeId": "n53", + "originalClass": "arco-menu-inline-content arco-menu-inline-enter-done", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_10", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n530.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n530.json new file mode 100644 index 0000000..0133f69 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n530.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 933, + "width": 118 + }, + "children": [ + "n529" + ], + "nodeId": "n530", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n531.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n531.json new file mode 100644 index 0000000..12ecca7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n531.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 903, + "width": 1485 + }, + "children": [ + "n530" + ], + "height": "24px", + "nodeId": "n531", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8)", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n532.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n532.json new file mode 100644 index 0000000..b3aa55c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n532.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 850, + "width": 60 + }, + "children": [ + "n531" + ], + "height": "77px", + "nodeId": "n532", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n533.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n533.json new file mode 100644 index 0000000..97c430c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n533.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 930, + "width": 165 + }, + "nodeId": "n533", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n534.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n534.json new file mode 100644 index 0000000..e87a8e4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n534.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 723, + "top": 903, + "width": 197 + }, + "children": [ + "n533" + ], + "height": "28px", + "nodeId": "n534", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(3)", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n535.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n535.json new file mode 100644 index 0000000..6e7cade --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n535.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 936, + "top": 933, + "width": 56 + }, + "children": [ + "n534" + ], + "nodeId": "n535", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n536.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n536.json new file mode 100644 index 0000000..7ba8c09 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n536.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 930, + "width": 195 + }, + "children": [ + "n535" + ], + "height": "28px", + "nodeId": "n536", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n537.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n537.json new file mode 100644 index 0000000..251b455 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n537.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 496, + "top": 903, + "width": 227 + }, + "children": [ + "n536" + ], + "height": "77px", + "nodeId": "n537", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(2)", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n538.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n538.json new file mode 100644 index 0000000..fd0e07e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n538.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 853, + "width": 165 + }, + "children": [ + "n508", + "n511", + "n516", + "n519", + "n522", + "n525", + "n532", + "n537" + ], + "height": "77px", + "nodeId": "n538", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n539.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n539.json new file mode 100644 index 0000000..8b8fdf7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n539.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 1074, + "top": 930, + "width": 116 + }, + "nodeId": "n539", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n54.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n54.json new file mode 100644 index 0000000..3cc72d4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n54.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 187, + "width": 12 + }, + "children": [ + "n42", + "n53" + ], + "height": "132px", + "nodeId": "n54", + "originalClass": "arco-menu-inline", + "selector": "div.arco-menu-item.arco-menu-selected > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_11", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n540.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n540.json new file mode 100644 index 0000000..727eb92 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n540.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 77, + "left": 1058, + "top": 903, + "width": 148 + }, + "children": [ + "n539" + ], + "nodeId": "n540", + "originalClass": "arco-typography-operation-copy", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(5)", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n541.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n541.json new file mode 100644 index 0000000..050b7d8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n541.json @@ -0,0 +1,18 @@ +{ + "_innerHTML": "34674613-1537", + "bbox": { + "height": 16, + "left": 1222, + "top": 933, + "width": 130 + }, + "children": [ + "n540" + ], + "nodeId": "n541", + "originalClass": "arco-typography", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "34674613-1537" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n542.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n542.json new file mode 100644 index 0000000..9e270bc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n542.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 933, + "width": 35 + }, + "children": [ + "n541" + ], + "nodeId": "n542", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n543.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n543.json new file mode 100644 index 0000000..f156026 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n543.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 936, + "top": 930, + "width": 107 + }, + "children": [ + "n542" + ], + "height": "22px", + "nodeId": "n543", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n544.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n544.json new file mode 100644 index 0000000..f64d87f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n544.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 903, + "width": 139 + }, + "children": [ + "n543" + ], + "height": "77px", + "nodeId": "n544", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n545.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n545.json new file mode 100644 index 0000000..d15c3ea --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n545.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 932, + "width": 56 + }, + "nodeId": "n545", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "每日推荐视频集" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n546.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n546.json new file mode 100644 index 0000000..755d9b2 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n546.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1222, + "top": 930, + "width": 223 + }, + "children": [ + "n545" + ], + "height": "22px", + "nodeId": "n546", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n547.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n547.json new file mode 100644 index 0000000..2559e0b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n547.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1206, + "top": 903, + "width": 255 + }, + "children": [ + "n546" + ], + "height": "77px", + "nodeId": "n547", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(6)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n548.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n548.json new file mode 100644 index 0000000..0e27375 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n548.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 1478, + "top": 931, + "width": 56 + }, + "nodeId": "n548", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n549.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n549.json new file mode 100644 index 0000000..6e87eaa --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n549.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "竖版短视频", + "bbox": { + "height": 28, + "left": 1616, + "top": 927, + "width": 113 + }, + "children": [ + "n548" + ], + "height": "22px", + "nodeId": "n549", + "originalClass": "content-type--HXfG3", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_93", + "tag": "div", + "text": "竖版短视频", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n55.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n55.json new file mode 100644 index 0000000..fb15776 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n55.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 40, + "top": 356, + "width": 160 + }, + "nodeId": "n55", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n550.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n550.json new file mode 100644 index 0000000..e0b439e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n550.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 931, + "width": 56 + }, + "children": [ + "n549" + ], + "nodeId": "n550", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n551.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n551.json new file mode 100644 index 0000000..d68c872 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n551.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 24, + "left": 1478, + "top": 929, + "width": 107 + }, + "children": [ + "n550" + ], + "height": "22px", + "nodeId": "n551", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n552.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n552.json new file mode 100644 index 0000000..9fafffb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n552.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1462, + "top": 903, + "width": 139 + }, + "children": [ + "n551" + ], + "height": "77px", + "nodeId": "n552", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7)", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n553.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n553.json new file mode 100644 index 0000000..38a72e0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n553.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 1492, + "top": 931, + "width": 42 + }, + "nodeId": "n553", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n554.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n554.json new file mode 100644 index 0000000..a178471 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n554.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 6, + "left": 1478, + "top": 939, + "width": 6 + }, + "children": [ + "n553" + ], + "height": "22px", + "nodeId": "n554", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n555.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n555.json new file mode 100644 index 0000000..56741e9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n555.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 903, + "width": 145 + }, + "children": [ + "n554" + ], + "height": "77px", + "nodeId": "n555", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n556.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n556.json new file mode 100644 index 0000000..4d77f99 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n556.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1616, + "top": 933, + "width": 60 + }, + "nodeId": "n556", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "324" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n557.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n557.json new file mode 100644 index 0000000..55ffa0a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n557.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 1007, + "width": 204 + }, + "children": [ + "n556" + ], + "height": "22px", + "nodeId": "n557", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n558.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n558.json new file mode 100644 index 0000000..75ffdf0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n558.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 980, + "width": 236 + }, + "children": [ + "n557" + ], + "height": "77px", + "nodeId": "n558", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n559.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n559.json new file mode 100644 index 0000000..c226eee --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n559.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 1010, + "width": 118 + }, + "nodeId": "n559", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-06 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n56.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n56.json new file mode 100644 index 0000000..a62694e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n56.json @@ -0,0 +1,17 @@ +{ + "_innerHTML": " 表单页", + "bbox": { + "height": 0, + "left": 20, + "top": 381, + "width": 20 + }, + "children": [ + "n55" + ], + "nodeId": "n56", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_3", + "tag": "span", + "text": "表单页" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n560.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n560.json new file mode 100644 index 0000000..ccc8004 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n560.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 933, + "width": 28 + }, + "children": [ + "n559" + ], + "height": "22px", + "nodeId": "n560", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n561.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n561.json new file mode 100644 index 0000000..d98eba5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n561.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 927, + "width": 60 + }, + "children": [ + "n560" + ], + "height": "77px", + "nodeId": "n561", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n562.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n562.json new file mode 100644 index 0000000..25c0dab --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n562.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 77, + "left": 496, + "top": 980, + "width": 227 + }, + "height": "6px", + "nodeId": "n562", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(2)", + "styleId": "style_100", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n563.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n563.json new file mode 100644 index 0000000..ca3ff57 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n563.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 1007, + "width": 165 + }, + "height": "22px", + "nodeId": "n563", + "originalClass": "arco-badge-status-text", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n564.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n564.json new file mode 100644 index 0000000..d1753f7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n564.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 1010, + "width": 112 + }, + "children": [ + "n562", + "n563" + ], + "height": "22px", + "nodeId": "n564", + "originalClass": "arco-badge-status-wrapper", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n565.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n565.json new file mode 100644 index 0000000..478c694 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n565.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 20, + "left": 376, + "top": 1008, + "width": 18 + }, + "children": [ + "n564" + ], + "height": "22px", + "nodeId": "n565", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n566.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n566.json new file mode 100644 index 0000000..99ad759 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n566.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 1010, + "width": 118 + }, + "children": [ + "n565" + ], + "nodeId": "n566", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n567.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n567.json new file mode 100644 index 0000000..8626641 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n567.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 1007, + "width": 195 + }, + "children": [ + "n566" + ], + "height": "24px", + "nodeId": "n567", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n568.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n568.json new file mode 100644 index 0000000..584fe75 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n568.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 980, + "width": 1485 + }, + "children": [ + "n567" + ], + "height": "77px", + "nodeId": "n568", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n569.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n569.json new file mode 100644 index 0000000..c593d14 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n569.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 1010, + "width": 23 + }, + "nodeId": "n569", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n57.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n57.json new file mode 100644 index 0000000..2df2458 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n57.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 44, + "left": 8, + "top": 312, + "width": 204 + }, + "nodeId": "n57", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n570.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n570.json new file mode 100644 index 0000000..71f02de --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n570.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 1007, + "width": 165 + }, + "children": [ + "n569" + ], + "height": "28px", + "nodeId": "n570", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n571.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n571.json new file mode 100644 index 0000000..d6b7c0c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n571.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 936, + "top": 1010, + "width": 56 + }, + "children": [ + "n570" + ], + "nodeId": "n571", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n572.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n572.json new file mode 100644 index 0000000..d7b8d9e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n572.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 1007, + "width": 165 + }, + "children": [ + "n571" + ], + "height": "28px", + "nodeId": "n572", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n573.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n573.json new file mode 100644 index 0000000..7cdfafb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n573.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 723, + "top": 980, + "width": 197 + }, + "children": [ + "n572" + ], + "height": "77px", + "nodeId": "n573", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(3)", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n574.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n574.json new file mode 100644 index 0000000..7d28959 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n574.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 930, + "width": 165 + }, + "children": [ + "n544", + "n547", + "n552", + "n555", + "n558", + "n561", + "n568", + "n573" + ], + "height": "77px", + "nodeId": "n574", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n575.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n575.json new file mode 100644 index 0000000..57c2c57 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n575.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 1206, + "top": 980, + "width": 255 + }, + "nodeId": "n575", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(6)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n576.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n576.json new file mode 100644 index 0000000..ab9324f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n576.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1478, + "top": 1009, + "width": 56 + }, + "children": [ + "n575" + ], + "nodeId": "n576", + "originalClass": "arco-typography-operation-copy", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n577.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n577.json new file mode 100644 index 0000000..64487c3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n577.json @@ -0,0 +1,18 @@ +{ + "_innerHTML": "71922474-4505", + "bbox": { + "height": 22, + "left": 1074, + "top": 1007, + "width": 116 + }, + "children": [ + "n576" + ], + "nodeId": "n577", + "originalClass": "arco-typography", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "styleId": "style_90", + "tag": "span", + "text": "71922474-4505" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n578.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n578.json new file mode 100644 index 0000000..ddc4c95 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n578.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 1010, + "width": 130 + }, + "children": [ + "n577" + ], + "nodeId": "n578", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n579.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n579.json new file mode 100644 index 0000000..5eca592 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n579.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 936, + "top": 1007, + "width": 107 + }, + "children": [ + "n578" + ], + "height": "22px", + "nodeId": "n579", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n58.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n58.json new file mode 100644 index 0000000..31a613a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n58.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 20, + "top": 324, + "width": 80 + }, + "children": [ + "n57" + ], + "height": "40px", + "nodeId": "n58", + "originalClass": "arco-menu-icon-suffix", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_4", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n580.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n580.json new file mode 100644 index 0000000..a9342d7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n580.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1058, + "top": 980, + "width": 148 + }, + "children": [ + "n579" + ], + "height": "77px", + "nodeId": "n580", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(5)", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n581.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n581.json new file mode 100644 index 0000000..72700d7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n581.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 1008, + "width": 56 + }, + "nodeId": "n581", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "styleId": "style_90", + "tag": "span", + "text": "每日推荐视频集" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n582.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n582.json new file mode 100644 index 0000000..2e37b9b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n582.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1222, + "top": 1007, + "width": 223 + }, + "children": [ + "n581" + ], + "height": "22px", + "nodeId": "n582", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n583.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n583.json new file mode 100644 index 0000000..d778fe2 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n583.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1462, + "top": 980, + "width": 139 + }, + "children": [ + "n582" + ], + "height": "77px", + "nodeId": "n583", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n584.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n584.json new file mode 100644 index 0000000..9ac3c12 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n584.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 1492, + "top": 1008, + "width": 42 + }, + "nodeId": "n584", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n585.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n585.json new file mode 100644 index 0000000..86976af --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n585.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "竖版短视频", + "bbox": { + "height": 6, + "left": 1478, + "top": 1016, + "width": 6 + }, + "children": [ + "n584" + ], + "height": "22px", + "nodeId": "n585", + "originalClass": "content-type--HXfG3", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-success:nth-of-type(1)", + "styleId": "style_93", + "tag": "div", + "text": "竖版短视频", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n586.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n586.json new file mode 100644 index 0000000..3ab8d2d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n586.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 1008, + "width": 56 + }, + "children": [ + "n585" + ], + "nodeId": "n586", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n587.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n587.json new file mode 100644 index 0000000..f3eaa60 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n587.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 1004, + "width": 113 + }, + "children": [ + "n586" + ], + "height": "22px", + "nodeId": "n587", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n588.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n588.json new file mode 100644 index 0000000..4cd74bd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n588.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 24, + "left": 1478, + "top": 1006, + "width": 107 + }, + "children": [ + "n587" + ], + "height": "77px", + "nodeId": "n588", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n589.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n589.json new file mode 100644 index 0000000..97f5c8d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n589.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1616, + "top": 1010, + "width": 60 + }, + "nodeId": "n589", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n59.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n59.json new file mode 100644 index 0000000..b4be424 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n59.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 363, + "width": 12 + }, + "children": [ + "n56", + "n58" + ], + "height": "40px", + "nodeId": "n59", + "originalClass": "arco-menu-inline-header", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_5", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n590.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n590.json new file mode 100644 index 0000000..3912733 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n590.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 276, + "top": 1084, + "width": 204 + }, + "children": [ + "n589" + ], + "height": "22px", + "nodeId": "n590", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n591.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n591.json new file mode 100644 index 0000000..85e5762 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n591.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 980, + "width": 145 + }, + "children": [ + "n590" + ], + "height": "77px", + "nodeId": "n591", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n592.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n592.json new file mode 100644 index 0000000..e77edf2 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n592.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 1010, + "width": 28 + }, + "nodeId": "n592", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_90", + "tag": "span", + "text": "1,083" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n593.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n593.json new file mode 100644 index 0000000..1f2f5bc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n593.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 1004, + "width": 60 + }, + "children": [ + "n592" + ], + "height": "22px", + "nodeId": "n593", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n594.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n594.json new file mode 100644 index 0000000..f2ae390 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n594.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 1057, + "width": 236 + }, + "children": [ + "n593" + ], + "height": "77px", + "nodeId": "n594", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1)", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n595.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n595.json new file mode 100644 index 0000000..e80af34 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n595.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 1087, + "width": 117 + }, + "nodeId": "n595", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-15 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n596.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n596.json new file mode 100644 index 0000000..25dbab5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n596.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 512, + "top": 1084, + "width": 195 + }, + "children": [ + "n595" + ], + "height": "22px", + "nodeId": "n596", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n597.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n597.json new file mode 100644 index 0000000..2877728 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n597.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 260, + "top": 1057, + "width": 1485 + }, + "children": [ + "n596" + ], + "height": "77px", + "nodeId": "n597", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10)", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n598.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n598.json new file mode 100644 index 0000000..42cff77 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n598.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 16, + "left": 936, + "top": 1087, + "width": 56 + }, + "height": "6px", + "nodeId": "n598", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_100", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n599.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n599.json new file mode 100644 index 0000000..1b87364 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n599.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 77, + "left": 723, + "top": 1057, + "width": 197 + }, + "height": "22px", + "nodeId": "n599", + "originalClass": "arco-badge-status-text", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(3)", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n6.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n6.json new file mode 100644 index 0000000..2cc3ec3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n6.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 18, + "left": 40, + "top": 99, + "width": 12 + }, + "nodeId": "n6", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n60.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n60.json new file mode 100644 index 0000000..826db30 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n60.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 20, + "top": 356, + "width": 20 + }, + "height": "0px", + "nodeId": "n60", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented > span:nth-of-type(1)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n600.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n600.json new file mode 100644 index 0000000..4f1b1e0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n600.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 1084, + "width": 165 + }, + "children": [ + "n598", + "n599" + ], + "height": "22px", + "nodeId": "n600", + "originalClass": "arco-badge-status-wrapper", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n601.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n601.json new file mode 100644 index 0000000..d5f0e18 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n601.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 512, + "top": 1087, + "width": 112 + }, + "children": [ + "n600" + ], + "height": "22px", + "nodeId": "n601", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n602.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n602.json new file mode 100644 index 0000000..926b474 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n602.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 20, + "left": 375, + "top": 1085, + "width": 18 + }, + "children": [ + "n601" + ], + "nodeId": "n602", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n603.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n603.json new file mode 100644 index 0000000..d8dc457 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n603.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 276, + "top": 1087, + "width": 117 + }, + "children": [ + "n602" + ], + "height": "24px", + "nodeId": "n603", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n604.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n604.json new file mode 100644 index 0000000..16f5d78 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n604.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 496, + "top": 1057, + "width": 227 + }, + "children": [ + "n603" + ], + "height": "77px", + "nodeId": "n604", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(2)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n605.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n605.json new file mode 100644 index 0000000..dac5e02 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n605.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 16, + "left": 1074, + "top": 1087, + "width": 35 + }, + "nodeId": "n605", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n606.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n606.json new file mode 100644 index 0000000..414f702 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n606.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 936, + "top": 1084, + "width": 107 + }, + "children": [ + "n605" + ], + "height": "28px", + "nodeId": "n606", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n607.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n607.json new file mode 100644 index 0000000..674619d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n607.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 1084, + "width": 165 + }, + "children": [ + "n606" + ], + "nodeId": "n607", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n608.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n608.json new file mode 100644 index 0000000..2513634 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n608.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 739, + "top": 1084, + "width": 165 + }, + "children": [ + "n607" + ], + "height": "28px", + "nodeId": "n608", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n609.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n609.json new file mode 100644 index 0000000..9045bee --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n609.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 1057, + "width": 139 + }, + "children": [ + "n608" + ], + "height": "77px", + "nodeId": "n609", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n61.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n61.json new file mode 100644 index 0000000..6c82481 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n61.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 40, + "left": 186, + "top": 312, + "width": 14 + }, + "children": [ + "n60" + ], + "height": "40px", + "nodeId": "n61", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n610.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n610.json new file mode 100644 index 0000000..de531a7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n610.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 77, + "left": 920, + "top": 980, + "width": 139 + }, + "children": [ + "n580", + "n583", + "n588", + "n591", + "n594", + "n597", + "n604", + "n609" + ], + "height": "77px", + "nodeId": "n610", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(4)", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n611.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n611.json new file mode 100644 index 0000000..0375163 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n611.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 77, + "left": 1462, + "top": 1057, + "width": 139 + }, + "nodeId": "n611", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n612.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n612.json new file mode 100644 index 0000000..75f3140 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n612.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 1222, + "top": 1084, + "width": 223 + }, + "children": [ + "n611" + ], + "nodeId": "n612", + "originalClass": "arco-typography-operation-copy", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n613.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n613.json new file mode 100644 index 0000000..f23ca60 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n613.json @@ -0,0 +1,18 @@ +{ + "_innerHTML": "14481716-4383", + "bbox": { + "height": 16, + "left": 1478, + "top": 1086, + "width": 56 + }, + "children": [ + "n612" + ], + "nodeId": "n613", + "originalClass": "arco-typography", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "14481716-4383" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n614.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n614.json new file mode 100644 index 0000000..d14fd24 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n614.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 16, + "left": 1222, + "top": 1087, + "width": 130 + }, + "children": [ + "n613" + ], + "nodeId": "n614", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n615.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n615.json new file mode 100644 index 0000000..7f9af63 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n615.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1074, + "top": 1084, + "width": 116 + }, + "children": [ + "n614" + ], + "height": "22px", + "nodeId": "n615", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n616.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n616.json new file mode 100644 index 0000000..f9026f1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n616.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1206, + "top": 1057, + "width": 255 + }, + "children": [ + "n615" + ], + "height": "77px", + "nodeId": "n616", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(6)", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n617.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n617.json new file mode 100644 index 0000000..eabc4c1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n617.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 1085, + "width": 56 + }, + "nodeId": "n617", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "styleId": "style_90", + "tag": "span", + "text": "抖音短视频候选集" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n618.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n618.json new file mode 100644 index 0000000..5f71ff8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n618.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 24, + "left": 1478, + "top": 1083, + "width": 107 + }, + "children": [ + "n617" + ], + "height": "22px", + "nodeId": "n618", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n619.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n619.json new file mode 100644 index 0000000..bfe2ea6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n619.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 77, + "left": 1600, + "top": 1057, + "width": 145 + }, + "children": [ + "n618" + ], + "height": "77px", + "nodeId": "n619", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n62.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n62.json new file mode 100644 index 0000000..1390390 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n62.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 356, + "width": 204 + }, + "height": "18px", + "nodeId": "n62", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n620.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n620.json new file mode 100644 index 0000000..8d4a5a9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n620.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 16, + "left": 1616, + "top": 1087, + "width": 60 + }, + "nodeId": "n620", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n621.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n621.json new file mode 100644 index 0000000..6ed91a9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n621.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "横版短视频", + "bbox": { + "height": 22, + "left": 1492, + "top": 1085, + "width": 42 + }, + "children": [ + "n620" + ], + "height": "22px", + "nodeId": "n621", + "originalClass": "content-type--HXfG3", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "styleId": "style_93", + "tag": "div", + "text": "横版短视频", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n622.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n622.json new file mode 100644 index 0000000..9eca83f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n622.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 6, + "left": 1478, + "top": 1093, + "width": 6 + }, + "children": [ + "n621" + ], + "nodeId": "n622", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-success:nth-of-type(1)", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n623.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n623.json new file mode 100644 index 0000000..0d85730 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n623.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 1081, + "width": 113 + }, + "children": [ + "n622" + ], + "height": "22px", + "nodeId": "n623", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n624.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n624.json new file mode 100644 index 0000000..35a43dc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n624.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1478, + "top": 1085, + "width": 56 + }, + "children": [ + "n623" + ], + "height": "77px", + "nodeId": "n624", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n625.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n625.json new file mode 100644 index 0000000..bbc1ed9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n625.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 16, + "left": 1632, + "top": 1087, + "width": 28 + }, + "nodeId": "n625", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n626.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n626.json new file mode 100644 index 0000000..0911a1c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n626.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 44, + "left": 260, + "top": 1134, + "width": 1485 + }, + "children": [ + "n625" + ], + "height": "22px", + "nodeId": "n626", + "originalClass": "arco-table-cell", + "selector": "div.arco-table-pagination", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n627.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n627.json new file mode 100644 index 0000000..33411da --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n627.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 1081, + "width": 60 + }, + "children": [ + "n626" + ], + "height": "77px", + "nodeId": "n627", + "originalClass": "arco-table-td", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n628.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n628.json new file mode 100644 index 0000000..e73fba3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n628.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 32, + "left": 1288, + "top": 1146, + "width": 352 + }, + "nodeId": "n628", + "originalClass": "arco-table-cell-wrap-value", + "selector": "ul.arco-pagination-list", + "styleId": "style_90", + "tag": "span", + "text": "835" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n629.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n629.json new file mode 100644 index 0000000..12c1327 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n629.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1221, + "top": 1146, + "width": 59 + }, + "children": [ + "n628" + ], + "height": "22px", + "nodeId": "n629", + "originalClass": "arco-table-cell", + "selector": "div.arco-pagination-total-text", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n63.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n63.json new file mode 100644 index 0000000..71920df --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n63.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
分组表单", + "bbox": { + "height": 0, + "left": 20, + "top": 381, + "width": 20 + }, + "children": [ + "n62" + ], + "height": "40px", + "nodeId": "n63", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_8", + "tag": "span", + "text": "分组表单", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n630.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n630.json new file mode 100644 index 0000000..49db8f4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n630.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1221, + "top": 1146, + "width": 524 + }, + "children": [ + "n629" + ], + "height": "77px", + "nodeId": "n630", + "originalClass": "arco-table-td", + "selector": "div.arco-pagination.arco-pagination-size-default", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n631.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n631.json new file mode 100644 index 0000000..7559fcc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n631.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 32, + "left": 1368, + "top": 1146, + "width": 32 + }, + "nodeId": "n631", + "originalClass": "arco-table-cell-wrap-value", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(3)", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-06 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n632.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n632.json new file mode 100644 index 0000000..033ec4d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n632.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1328, + "top": 1146, + "width": 32 + }, + "children": [ + "n631" + ], + "height": "22px", + "nodeId": "n632", + "originalClass": "arco-table-cell", + "selector": "li.arco-pagination-item.arco-pagination-item-active", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n633.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n633.json new file mode 100644 index 0000000..055e8be --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n633.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1288, + "top": 1146, + "width": 32 + }, + "children": [ + "n632" + ], + "height": "77px", + "nodeId": "n633", + "originalClass": "arco-table-td", + "selector": "li.arco-pagination-item.arco-pagination-item-prev", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n634.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n634.json new file mode 100644 index 0000000..a6a71c7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n634.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 30, + "left": 1660, + "top": 1147, + "width": 57 + }, + "height": "6px", + "nodeId": "n634", + "originalClass": "arco-badge-status-dot arco-badge-status-success", + "selector": "span.arco-select-view-value", + "styleId": "style_94", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n635.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n635.json new file mode 100644 index 0000000..9c4a57c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n635.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 32, + "left": 1568, + "top": 1146, + "width": 32 + }, + "height": "22px", + "nodeId": "n635", + "originalClass": "arco-badge-status-text", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(8)", + "styleId": "style_95", + "tag": "span", + "text": "已上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n636.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n636.json new file mode 100644 index 0000000..790198a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n636.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 32, + "left": 1528, + "top": 1146, + "width": 32 + }, + "children": [ + "n634", + "n635" + ], + "height": "22px", + "nodeId": "n636", + "originalClass": "arco-badge-status-wrapper", + "selector": "li.arco-pagination-item.arco-pagination-item-jumper", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n637.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n637.json new file mode 100644 index 0000000..51177d4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n637.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1488, + "top": 1146, + "width": 32 + }, + "children": [ + "n636" + ], + "height": "22px", + "nodeId": "n637", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(6)", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n638.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n638.json new file mode 100644 index 0000000..616c993 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n638.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 32, + "left": 1448, + "top": 1146, + "width": 32 + }, + "children": [ + "n637" + ], + "nodeId": "n638", + "originalClass": "arco-table-cell-wrap-value", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(5)", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n639.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n639.json new file mode 100644 index 0000000..2f5f2c5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n639.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1648, + "top": 1146, + "width": 97 + }, + "children": [ + "n638" + ], + "height": "24px", + "nodeId": "n639", + "originalClass": "arco-table-cell", + "selector": "div.arco-pagination-option", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n64.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n64.json new file mode 100644 index 0000000..41fd5a3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n64.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 0, + "left": 8, + "top": 356, + "width": 204 + }, + "children": [ + "n61", + "n63" + ], + "height": "40px", + "nodeId": "n64", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2)", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n640.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n640.json new file mode 100644 index 0000000..8b8c7e0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n640.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1408, + "top": 1146, + "width": 32 + }, + "children": [ + "n639" + ], + "height": "77px", + "nodeId": "n640", + "originalClass": "arco-table-td", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(4)", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n641.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n641.json new file mode 100644 index 0000000..354cdc3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n641.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 30, + "left": 1721, + "top": 1147, + "width": 12 + }, + "nodeId": "n641", + "selector": "div.arco-select.arco-select-single > div.arco-select-view > div.arco-select-suffix", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n642.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n642.json new file mode 100644 index 0000000..3d963ad --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n642.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 1660, + "top": 1147, + "width": 95 + }, + "children": [ + "n641" + ], + "height": "28px", + "nodeId": "n642", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "selector": "input.arco-select-view-input.arco-select-hidden", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n643.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n643.json new file mode 100644 index 0000000..b4cee75 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n643.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 32, + "left": 1648, + "top": 1146, + "width": 97 + }, + "children": [ + "n642" + ], + "nodeId": "n643", + "originalClass": "arco-table-cell-wrap-value", + "selector": "div.arco-select.arco-select-single > div.arco-select-view", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n644.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n644.json new file mode 100644 index 0000000..968eb37 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n644.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1648, + "top": 1146, + "width": 97 + }, + "children": [ + "n643" + ], + "height": "28px", + "nodeId": "n644", + "originalClass": "arco-table-cell", + "selector": "div.arco-select.arco-select-single", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n645.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n645.json new file mode 100644 index 0000000..acd8ae8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n645.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1608, + "top": 1146, + "width": 32 + }, + "children": [ + "n644" + ], + "height": "77px", + "nodeId": "n645", + "originalClass": "arco-table-td", + "selector": "li.arco-pagination-item.arco-pagination-item-next", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n646.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n646.json new file mode 100644 index 0000000..b851337 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n646.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 77, + "left": 1058, + "top": 1057, + "width": 148 + }, + "children": [ + "n616", + "n619", + "n624", + "n627", + "n630", + "n633", + "n640", + "n645" + ], + "height": "77px", + "nodeId": "n646", + "originalClass": "arco-table-tr", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(5)", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n647.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n647.json new file mode 100644 index 0000000..9fef382 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n647.json @@ -0,0 +1,7 @@ +{ + "_innerHTML": "", + "nodeId": "n647", + "originalClass": "[object SVGAnimatedString]", + "selector": "body > script:nth-of-type(4)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n648.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n648.json new file mode 100644 index 0000000..06e1653 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n648.json @@ -0,0 +1,10 @@ +{ + "children": [ + "n647" + ], + "nodeId": "n648", + "originalClass": "arco-typography-operation-copy", + "selector": "body > script:nth-of-type(3)", + "styleId": "style_89", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n649.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n649.json new file mode 100644 index 0000000..e80c29a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n649.json @@ -0,0 +1,12 @@ +{ + "_innerHTML": "26506467-1132", + "children": [ + "n648" + ], + "nodeId": "n649", + "originalClass": "arco-typography", + "selector": "body > script:nth-of-type(2)", + "styleId": "style_90", + "tag": "span", + "text": "26506467-1132" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n65.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n65.json new file mode 100644 index 0000000..0a374c6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n65.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 16, + "left": 20, + "top": 368, + "width": 80 + }, + "height": "0px", + "nodeId": "n65", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n650.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n650.json new file mode 100644 index 0000000..bbfecab --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n650.json @@ -0,0 +1,10 @@ +{ + "children": [ + "n649" + ], + "nodeId": "n650", + "originalClass": "arco-table-cell-wrap-value", + "selector": "body > script:nth-of-type(1)", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n651.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n651.json new file mode 100644 index 0000000..c394440 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n651.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 0, + "left": 0, + "top": 1238, + "width": 1785 + }, + "children": [ + "n650" + ], + "height": "22px", + "nodeId": "n651", + "originalClass": "arco-table-cell", + "selector": "body > div:nth-of-type(2)", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n652.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n652.json new file mode 100644 index 0000000..7ab10ac --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n652.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 40, + "left": 220, + "top": 1198, + "width": 1565 + }, + "children": [ + "n651" + ], + "height": "77px", + "nodeId": "n652", + "originalClass": "arco-table-td", + "selector": "footer.arco-layout-footer.footer--No_Lw", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n653.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n653.json new file mode 100644 index 0000000..8dd8ff2 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n653.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 0, + "left": 0, + "top": 1238, + "width": 1785 + }, + "nodeId": "n653", + "originalClass": "arco-table-cell-wrap-value", + "selector": "body > div:nth-of-type(5)", + "styleId": "style_90", + "tag": "span", + "text": "抖音短视频候选集" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n654.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n654.json new file mode 100644 index 0000000..08858cb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n654.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 0, + "left": 0, + "top": 1238, + "width": 1785 + }, + "children": [ + "n653" + ], + "height": "22px", + "nodeId": "n654", + "originalClass": "arco-table-cell", + "selector": "body > div:nth-of-type(4)", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n655.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n655.json new file mode 100644 index 0000000..ef5bc44 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n655.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 0, + "left": 0, + "top": 1238, + "width": 1785 + }, + "children": [ + "n654" + ], + "height": "77px", + "nodeId": "n655", + "originalClass": "arco-table-td", + "selector": "body > div:nth-of-type(3)", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n656.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n656.json new file mode 100644 index 0000000..6072525 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n656.json @@ -0,0 +1,6 @@ +{ + "_innerHTML": "", + "nodeId": "n656", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n657.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n657.json new file mode 100644 index 0000000..88ec1e0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n657.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "横版短视频", + "children": [ + "n656" + ], + "height": "22px", + "nodeId": "n657", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "横版短视频", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n658.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n658.json new file mode 100644 index 0000000..15da073 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n658.json @@ -0,0 +1,9 @@ +{ + "children": [ + "n657" + ], + "nodeId": "n658", + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n659.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n659.json new file mode 100644 index 0000000..8d9cdd6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n659.json @@ -0,0 +1,12 @@ +{ + "children": [ + "n658" + ], + "height": "22px", + "nodeId": "n659", + "originalClass": "arco-table-cell", + "selector": "a.arco-typography-operation-expand", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n66.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n66.json new file mode 100644 index 0000000..f8cf893 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n66.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 40, + "left": 40, + "top": 356, + "width": 160 + }, + "children": [ + "n65" + ], + "height": "40px", + "nodeId": "n66", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n660.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n660.json new file mode 100644 index 0000000..c9f0452 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n660.json @@ -0,0 +1,12 @@ +{ + "children": [ + "n659" + ], + "height": "77px", + "nodeId": "n660", + "originalClass": "arco-table-td", + "selector": "body > div:nth-of-type(6)", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n661.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n661.json new file mode 100644 index 0000000..b882993 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n661.json @@ -0,0 +1,7 @@ +{ + "nodeId": "n661", + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n662.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n662.json new file mode 100644 index 0000000..1b83fd9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n662.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n661" + ], + "height": "22px", + "nodeId": "n662", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n663.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n663.json new file mode 100644 index 0000000..8f1139e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n663.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n662" + ], + "height": "77px", + "nodeId": "n663", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n664.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n664.json new file mode 100644 index 0000000..d8ca69f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n664.json @@ -0,0 +1,7 @@ +{ + "nodeId": "n664", + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "1,446" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n665.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n665.json new file mode 100644 index 0000000..bd09f41 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n665.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n664" + ], + "height": "22px", + "nodeId": "n665", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n666.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n666.json new file mode 100644 index 0000000..725cd88 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n666.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n665" + ], + "height": "77px", + "nodeId": "n666", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n667.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n667.json new file mode 100644 index 0000000..dba487f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n667.json @@ -0,0 +1,7 @@ +{ + "nodeId": "n667", + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-01 23:28:13" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n668.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n668.json new file mode 100644 index 0000000..87e9371 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n668.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n667" + ], + "height": "22px", + "nodeId": "n668", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n669.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n669.json new file mode 100644 index 0000000..211f0b5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n669.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n668" + ], + "height": "77px", + "nodeId": "n669", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n67.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n67.json new file mode 100644 index 0000000..f439878 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n67.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 44, + "left": 8, + "top": 356, + "width": 204 + }, + "height": "18px", + "nodeId": "n67", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7)", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n670.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n670.json new file mode 100644 index 0000000..c656360 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n670.json @@ -0,0 +1,8 @@ +{ + "height": "6px", + "nodeId": "n670", + "originalClass": "arco-badge-status-dot arco-badge-status-success", + "styleId": "style_94", + "tag": "span", + "width": "6px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n671.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n671.json new file mode 100644 index 0000000..3494b6c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n671.json @@ -0,0 +1,9 @@ +{ + "height": "22px", + "nodeId": "n671", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "已上线", + "width": "42px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n672.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n672.json new file mode 100644 index 0000000..78e8722 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n672.json @@ -0,0 +1,12 @@ +{ + "children": [ + "n670", + "n671" + ], + "height": "22px", + "nodeId": "n672", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n673.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n673.json new file mode 100644 index 0000000..b603459 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n673.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n672" + ], + "height": "22px", + "nodeId": "n673", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n674.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n674.json new file mode 100644 index 0000000..52ae446 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n674.json @@ -0,0 +1,9 @@ +{ + "children": [ + "n673" + ], + "nodeId": "n674", + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n675.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n675.json new file mode 100644 index 0000000..fcb21c8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n675.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n674" + ], + "height": "24px", + "nodeId": "n675", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n676.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n676.json new file mode 100644 index 0000000..cfe7bcc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n676.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n675" + ], + "height": "77px", + "nodeId": "n676", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n677.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n677.json new file mode 100644 index 0000000..8a8fd33 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n677.json @@ -0,0 +1,6 @@ +{ + "nodeId": "n677", + "styleId": "style_98", + "tag": "span", + "text": "查看" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n678.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n678.json new file mode 100644 index 0000000..91e980c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n678.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n677" + ], + "height": "28px", + "nodeId": "n678", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n679.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n679.json new file mode 100644 index 0000000..80f05cf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n679.json @@ -0,0 +1,9 @@ +{ + "children": [ + "n678" + ], + "nodeId": "n679", + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n68.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n68.json new file mode 100644 index 0000000..2aaa82d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n68.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
分步表单", + "bbox": { + "height": 40, + "left": 186, + "top": 356, + "width": 14 + }, + "children": [ + "n67" + ], + "height": "40px", + "nodeId": "n68", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "styleId": "style_8", + "tag": "span", + "text": "分步表单", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n680.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n680.json new file mode 100644 index 0000000..0f5073d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n680.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n679" + ], + "height": "28px", + "nodeId": "n680", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n681.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n681.json new file mode 100644 index 0000000..19f89fd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n681.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n680" + ], + "height": "77px", + "nodeId": "n681", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n682.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n682.json new file mode 100644 index 0000000..a5f3f14 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n682.json @@ -0,0 +1,25 @@ +{ + "bbox": { + "height": 30, + "left": 1721, + "top": 1147, + "width": 12 + }, + "children": [ + "n652", + "n655", + "n660", + "n663", + "n666", + "n669", + "n676", + "n681" + ], + "height": "77px", + "nodeId": "n682", + "originalClass": "arco-table-tr", + "selector": "div.arco-select-arrow-icon", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n683.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n683.json new file mode 100644 index 0000000..654b452 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n683.json @@ -0,0 +1,26 @@ +{ + "bbox": { + "height": 28, + "left": 1616, + "top": 388, + "width": 60 + }, + "children": [ + "n358", + "n394", + "n430", + "n466", + "n502", + "n538", + "n574", + "n610", + "n646", + "n682" + ], + "height": "770px", + "nodeId": "n683", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "styleId": "style_101", + "tag": "tbody", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n684.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n684.json new file mode 100644 index 0000000..aae6499 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n684.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 71, + "left": 1206, + "top": 293, + "width": 255 + }, + "children": [ + "n284", + "n322", + "n683" + ], + "height": "841px", + "nodeId": "n684", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6)", + "styleId": "style_102", + "tag": "table", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n685.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n685.json new file mode 100644 index 0000000..c8d971e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n685.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 8, + "left": 1124, + "top": 328, + "width": 12 + }, + "children": [ + "n684" + ], + "height": "841px", + "nodeId": "n685", + "originalClass": "arco-table-content-inner", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter > div.arco-table-sorter-icon:nth-of-type(2)", + "styleId": "style_103", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n686.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n686.json new file mode 100644 index 0000000..3071f60 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n686.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 8, + "left": 1124, + "top": 320, + "width": 12 + }, + "children": [ + "n685" + ], + "height": "841px", + "nodeId": "n686", + "originalClass": "arco-table-content-scroll", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter > div.arco-table-sorter-icon:nth-of-type(1)", + "styleId": "style_104", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n687.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n687.json new file mode 100644 index 0000000..481746f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n687.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 16, + "left": 1124, + "top": 320, + "width": 12 + }, + "children": [ + "n686" + ], + "height": "841px", + "nodeId": "n687", + "originalClass": "arco-table-container", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter", + "styleId": "style_105", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n688.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n688.json new file mode 100644 index 0000000..5350a4b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n688.json @@ -0,0 +1,9 @@ +{ + "height": "32px", + "nodeId": "n688", + "originalClass": "arco-pagination-total-text", + "styleId": "style_106", + "tag": "div", + "text": "共 100 条", + "width": "59.1406px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n689.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n689.json new file mode 100644 index 0000000..3919ba3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n689.json @@ -0,0 +1,6 @@ +{ + "_innerHTML": "", + "nodeId": "n689", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n69.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n69.json new file mode 100644 index 0000000..0140085 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n69.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 363, + "width": 12 + }, + "children": [ + "n66", + "n68" + ], + "height": "40px", + "nodeId": "n69", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n690.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n690.json new file mode 100644 index 0000000..57c545a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n690.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n689" + ], + "height": "32px", + "nodeId": "n690", + "originalClass": "arco-pagination-item arco-pagination-item-prev arco-pagination-item-disabled", + "styleId": "style_107", + "tag": "li", + "width": "32px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n691.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n691.json new file mode 100644 index 0000000..858a77c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n691.json @@ -0,0 +1,9 @@ +{ + "height": "32px", + "nodeId": "n691", + "originalClass": "arco-pagination-item arco-pagination-item-active", + "styleId": "style_108", + "tag": "li", + "text": "1", + "width": "32px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n692.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n692.json new file mode 100644 index 0000000..6450b04 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n692.json @@ -0,0 +1,9 @@ +{ + "height": "32px", + "nodeId": "n692", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "2", + "width": "32px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n693.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n693.json new file mode 100644 index 0000000..a1461c1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n693.json @@ -0,0 +1,9 @@ +{ + "height": "32px", + "nodeId": "n693", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "3", + "width": "32px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n694.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n694.json new file mode 100644 index 0000000..70c8e23 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n694.json @@ -0,0 +1,9 @@ +{ + "height": "32px", + "nodeId": "n694", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "4", + "width": "32px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n695.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n695.json new file mode 100644 index 0000000..2f104da --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n695.json @@ -0,0 +1,9 @@ +{ + "height": "32px", + "nodeId": "n695", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "5", + "width": "32px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n696.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n696.json new file mode 100644 index 0000000..5aa1d44 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n696.json @@ -0,0 +1,6 @@ +{ + "_innerHTML": "", + "nodeId": "n696", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n697.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n697.json new file mode 100644 index 0000000..631481b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n697.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n696" + ], + "height": "32px", + "nodeId": "n697", + "originalClass": "arco-pagination-item arco-pagination-item-jumper", + "styleId": "style_110", + "tag": "li", + "width": "32px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n698.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n698.json new file mode 100644 index 0000000..e2ed40b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n698.json @@ -0,0 +1,9 @@ +{ + "height": "32px", + "nodeId": "n698", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "10", + "width": "32px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n699.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n699.json new file mode 100644 index 0000000..bd09c74 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n699.json @@ -0,0 +1,6 @@ +{ + "_innerHTML": "", + "nodeId": "n699", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n7.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n7.json new file mode 100644 index 0000000..3d144a9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n7.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 40, + "left": 40, + "top": 92, + "width": 160 + }, + "children": [ + "n6" + ], + "height": "40px", + "nodeId": "n7", + "originalClass": "arco-menu-icon-suffix", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_4", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n70.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n70.json new file mode 100644 index 0000000..7d752e0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n70.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 312, + "width": 204 + }, + "children": [ + "n64", + "n69" + ], + "height": "0px", + "nodeId": "n70", + "originalClass": "arco-menu-inline-content", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-header:nth-of-type(1)", + "styleId": "style_10", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n700.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n700.json new file mode 100644 index 0000000..87ee178 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n700.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n699" + ], + "height": "32px", + "nodeId": "n700", + "originalClass": "arco-pagination-item arco-pagination-item-next", + "styleId": "style_111", + "tag": "li", + "width": "32px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n701.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n701.json new file mode 100644 index 0000000..afaf0f6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n701.json @@ -0,0 +1,19 @@ +{ + "children": [ + "n690", + "n691", + "n692", + "n693", + "n694", + "n695", + "n697", + "n698", + "n700" + ], + "height": "32px", + "nodeId": "n701", + "originalClass": "arco-pagination-list", + "styleId": "style_28", + "tag": "ul", + "width": "352px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n702.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n702.json new file mode 100644 index 0000000..5202c31 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n702.json @@ -0,0 +1,8 @@ +{ + "height": "16.0938px", + "nodeId": "n702", + "originalClass": "arco-select-view-input arco-select-hidden", + "styleId": "style_112", + "tag": "input", + "width": "95.3516px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n703.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n703.json new file mode 100644 index 0000000..aaa1faf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n703.json @@ -0,0 +1,9 @@ +{ + "height": "30px", + "nodeId": "n703", + "originalClass": "arco-select-view-value", + "styleId": "style_113", + "tag": "span", + "text": "10 条/页", + "width": "57.3516px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n704.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n704.json new file mode 100644 index 0000000..29e015f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n704.json @@ -0,0 +1,6 @@ +{ + "_innerHTML": "", + "nodeId": "n704", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n705.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n705.json new file mode 100644 index 0000000..67b80bd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n705.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n704" + ], + "height": "30px", + "nodeId": "n705", + "originalClass": "arco-select-arrow-icon", + "styleId": "style_114", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n706.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n706.json new file mode 100644 index 0000000..0c29d84 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n706.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n705" + ], + "height": "30px", + "nodeId": "n706", + "originalClass": "arco-select-suffix", + "styleId": "style_115", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n707.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n707.json new file mode 100644 index 0000000..71df761 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n707.json @@ -0,0 +1,13 @@ +{ + "children": [ + "n702", + "n703", + "n706" + ], + "height": "32px", + "nodeId": "n707", + "originalClass": "arco-select-view", + "styleId": "style_116", + "tag": "div", + "width": "97.3516px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n708.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n708.json new file mode 100644 index 0000000..9cf10cb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n708.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n707" + ], + "height": "32px", + "nodeId": "n708", + "originalClass": "arco-select arco-select-single arco-select-size-default", + "styleId": "style_117", + "tag": "div", + "width": "97.3516px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n709.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n709.json new file mode 100644 index 0000000..952e54f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n709.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n708" + ], + "height": "32px", + "nodeId": "n709", + "originalClass": "arco-pagination-option", + "styleId": "style_118", + "tag": "div", + "width": "97.3516px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n71.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n71.json new file mode 100644 index 0000000..99773d6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n71.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 356, + "width": 204 + }, + "children": [ + "n59", + "n70" + ], + "height": "44px", + "nodeId": "n71", + "originalClass": "arco-menu-inline", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "styleId": "style_11", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n710.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n710.json new file mode 100644 index 0000000..a3a8402 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n710.json @@ -0,0 +1,13 @@ +{ + "children": [ + "n688", + "n701", + "n709" + ], + "height": "32px", + "nodeId": "n710", + "originalClass": "arco-pagination arco-pagination-size-default", + "styleId": "style_119", + "tag": "div", + "width": "524.492px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n711.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n711.json new file mode 100644 index 0000000..ce05964 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n711.json @@ -0,0 +1,11 @@ +{ + "children": [ + "n710" + ], + "height": "44px", + "nodeId": "n711", + "originalClass": "arco-table-pagination", + "styleId": "style_120", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n712.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n712.json new file mode 100644 index 0000000..1bbb7bd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n712.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 71, + "left": 1058, + "top": 293, + "width": 148 + }, + "children": [ + "n687", + "n711" + ], + "height": "885px", + "nodeId": "n712", + "originalClass": "arco-spin-children", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5)", + "styleId": "style_121", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n713.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n713.json new file mode 100644 index 0000000..856ba27 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n713.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 70, + "left": 1058, + "top": 293, + "width": 148 + }, + "children": [ + "n712" + ], + "height": "885px", + "nodeId": "n713", + "originalClass": "arco-spin", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter", + "styleId": "style_103", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n714.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n714.json new file mode 100644 index 0000000..eeab6b3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n714.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 70, + "left": 1058, + "top": 293, + "width": 148 + }, + "children": [ + "n713" + ], + "height": "885px", + "nodeId": "n714", + "originalClass": "arco-table arco-table-size-default arco-table-hover", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter", + "styleId": "style_121", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n715.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n715.json new file mode 100644 index 0000000..ac4a910 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n715.json @@ -0,0 +1,21 @@ +{ + "bbox": { + "height": 32, + "left": 1184, + "top": 116, + "width": 438 + }, + "children": [ + "n163", + "n261", + "n275", + "n714" + ], + "height": "1102px", + "nodeId": "n715", + "originalClass": "arco-card-body", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start", + "styleId": "style_122", + "tag": "div", + "width": "1485px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n716.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n716.json new file mode 100644 index 0000000..7c6edae --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n716.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 52, + "left": 1172, + "top": 116, + "width": 462 + }, + "children": [ + "n715" + ], + "height": "1142px", + "nodeId": "n716", + "originalClass": "arco-card arco-card-size-default", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3)", + "styleId": "style_123", + "tag": "div", + "width": "1525px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n717.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n717.json new file mode 100644 index 0000000..5745930 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n717.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "children": [ + "n716" + ], + "height": "1142px", + "nodeId": "n717", + "originalClass": "arco-layout-content", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > span.arco-input-inner-wrapper.arco-input-inner-wrapper-default", + "styleId": "style_124", + "tag": "main", + "width": "1525px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n718.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n718.json new file mode 100644 index 0000000..13beae9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n718.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 32, + "left": 260, + "top": 116, + "width": 438 + }, + "children": [ + "n162", + "n717" + ], + "height": "1182px", + "nodeId": "n718", + "originalClass": "layout-content-wrapper--xX3sP", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start", + "styleId": "style_125", + "tag": "div", + "width": "1525px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n719.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n719.json new file mode 100644 index 0000000..59103ca --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n719.json @@ -0,0 +1,9 @@ +{ + "height": "40px", + "nodeId": "n719", + "originalClass": "arco-layout-footer footer--No_Lw", + "styleId": "style_126", + "tag": "footer", + "text": "Arco Design Pro", + "width": "1565px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n72.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n72.json new file mode 100644 index 0000000..372553a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n72.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 8, + "top": 400, + "width": 204 + }, + "nodeId": "n72", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n720.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n720.json new file mode 100644 index 0000000..f417bf9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n720.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 52, + "left": 248, + "top": 116, + "width": 462 + }, + "children": [ + "n718", + "n719" + ], + "height": "1238px", + "nodeId": "n720", + "originalClass": "arco-layout layout-content--Fd7YS", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1)", + "styleId": "style_127", + "tag": "section", + "width": "1785px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n721.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n721.json new file mode 100644 index 0000000..0a978a6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n721.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 220 + }, + "children": [ + "n146", + "n720" + ], + "height": "1238px", + "nodeId": "n721", + "originalClass": "arco-layout arco-layout-has-sider", + "selector": "div.menu-wrapper--e9ooU", + "styleId": "style_128", + "tag": "section", + "width": "1785px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n722.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n722.json new file mode 100644 index 0000000..acded22 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n722.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 1238, + "left": 0, + "top": 0, + "width": 1785 + }, + "children": [ + "n721" + ], + "height": "1238px", + "nodeId": "n722", + "originalClass": "arco-layout layout--NILiW", + "selector": "section.arco-layout.arco-layout-has-sider", + "styleId": "style_129", + "tag": "section", + "width": "1785px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n723.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n723.json new file mode 100644 index 0000000..c8fe063 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n723.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 220 + }, + "children": [ + "n722" + ], + "height": "1238px", + "id": "root", + "nodeId": "n723", + "selector": "div.arco-layout-sider-children", + "styleId": "style_29", + "tag": "div", + "width": "1785px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n724.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n724.json new file mode 100644 index 0000000..df707ee --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n724.json @@ -0,0 +1,7 @@ +{ + "height": "0px", + "nodeId": "n724", + "styleId": "style_29", + "tag": "div", + "width": "1785px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n725.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n725.json new file mode 100644 index 0000000..3ef8f4a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n725.json @@ -0,0 +1,7 @@ +{ + "height": "0px", + "nodeId": "n725", + "styleId": "style_29", + "tag": "div", + "width": "1785px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n726.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n726.json new file mode 100644 index 0000000..cd0e44d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n726.json @@ -0,0 +1,7 @@ +{ + "height": "0px", + "nodeId": "n726", + "styleId": "style_29", + "tag": "div", + "width": "1785px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n727.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n727.json new file mode 100644 index 0000000..2b53020 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n727.json @@ -0,0 +1,7 @@ +{ + "height": "0px", + "nodeId": "n727", + "styleId": "style_29", + "tag": "div", + "width": "1785px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n728.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n728.json new file mode 100644 index 0000000..78073c0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n728.json @@ -0,0 +1,21 @@ +{ + "bbox": { + "height": 1238, + "left": 0, + "top": 0, + "width": 1785 + }, + "children": [ + "n723", + "n724", + "n725", + "n726", + "n727" + ], + "height": "921px", + "nodeId": "n728", + "selector": "section.arco-layout.layout--NILiW", + "styleId": "style_130", + "tag": "body", + "width": "1785px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n729.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n729.json new file mode 100644 index 0000000..6bcb8a4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n729.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 1238, + "left": 0, + "top": 0, + "width": 1785 + }, + "children": [ + "n728" + ], + "nodeId": "n729", + "selector": "#root", + "tag": "root" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n73.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n73.json new file mode 100644 index 0000000..a50ae98 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n73.json @@ -0,0 +1,17 @@ +{ + "_innerHTML": " 详情页", + "bbox": { + "height": 40, + "left": 20, + "top": 400, + "width": 20 + }, + "children": [ + "n72" + ], + "nodeId": "n73", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_3", + "tag": "span", + "text": "详情页" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n74.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n74.json new file mode 100644 index 0000000..12b9ff3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n74.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 40, + "top": 400, + "width": 160 + }, + "nodeId": "n74", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n75.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n75.json new file mode 100644 index 0000000..7c88d04 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n75.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 0, + "left": 20, + "top": 425, + "width": 20 + }, + "children": [ + "n74" + ], + "height": "40px", + "nodeId": "n75", + "originalClass": "arco-menu-icon-suffix", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_4", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n76.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n76.json new file mode 100644 index 0000000..43165df --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n76.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 0, + "left": 8, + "top": 400, + "width": 204 + }, + "children": [ + "n73", + "n75" + ], + "height": "40px", + "nodeId": "n76", + "originalClass": "arco-menu-inline-header", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2)", + "styleId": "style_5", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n77.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n77.json new file mode 100644 index 0000000..fd77f7e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n77.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 0, + "left": 20, + "top": 469, + "width": 20 + }, + "height": "0px", + "nodeId": "n77", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n78.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n78.json new file mode 100644 index 0000000..7e50eba --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n78.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 40, + "left": 20, + "top": 444, + "width": 20 + }, + "children": [ + "n77" + ], + "height": "40px", + "nodeId": "n78", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n79.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n79.json new file mode 100644 index 0000000..267a0b7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n79.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 451, + "width": 12 + }, + "height": "18px", + "nodeId": "n79", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n8.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n8.json new file mode 100644 index 0000000..6ecf7b5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n8.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 92, + "width": 204 + }, + "children": [ + "n5", + "n7" + ], + "height": "40px", + "nodeId": "n8", + "originalClass": "arco-menu-inline-header", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "styleId": "style_5", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n80.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n80.json new file mode 100644 index 0000000..5275dd4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n80.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
基础详情页", + "bbox": { + "height": 40, + "left": 40, + "top": 444, + "width": 160 + }, + "children": [ + "n79" + ], + "height": "40px", + "nodeId": "n80", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_8", + "tag": "span", + "text": "基础详情页", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n81.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n81.json new file mode 100644 index 0000000..ecbb616 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n81.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 444, + "width": 204 + }, + "children": [ + "n78", + "n80" + ], + "height": "40px", + "nodeId": "n81", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n82.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n82.json new file mode 100644 index 0000000..4bab81c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n82.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 407, + "width": 12 + }, + "children": [ + "n81" + ], + "height": "0px", + "nodeId": "n82", + "originalClass": "arco-menu-inline-content", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_10", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n83.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n83.json new file mode 100644 index 0000000..0639cf0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n83.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 356, + "width": 204 + }, + "children": [ + "n76", + "n82" + ], + "height": "44px", + "nodeId": "n83", + "originalClass": "arco-menu-inline", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-header:nth-of-type(1)", + "styleId": "style_11", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n84.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n84.json new file mode 100644 index 0000000..9de44df --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n84.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 40, + "left": 186, + "top": 400, + "width": 14 + }, + "nodeId": "n84", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n85.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n85.json new file mode 100644 index 0000000..81b324c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n85.json @@ -0,0 +1,17 @@ +{ + "_innerHTML": " 结果页", + "bbox": { + "height": 16, + "left": 20, + "top": 412, + "width": 80 + }, + "children": [ + "n84" + ], + "nodeId": "n85", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_3", + "tag": "span", + "text": "结果页" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n86.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n86.json new file mode 100644 index 0000000..c177016 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n86.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 0, + "left": 8, + "top": 444, + "width": 204 + }, + "nodeId": "n86", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n87.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n87.json new file mode 100644 index 0000000..d9d1f96 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n87.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 40, + "left": 20, + "top": 444, + "width": 20 + }, + "children": [ + "n86" + ], + "height": "40px", + "nodeId": "n87", + "originalClass": "arco-menu-icon-suffix", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "styleId": "style_4", + "tag": "span", + "width": "14px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n88.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n88.json new file mode 100644 index 0000000..33c361a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n88.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 400, + "width": 204 + }, + "children": [ + "n85", + "n87" + ], + "height": "40px", + "nodeId": "n88", + "originalClass": "arco-menu-inline-header", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-header:nth-of-type(1)", + "styleId": "style_5", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n89.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n89.json new file mode 100644 index 0000000..f035b9d --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n89.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 40, + "top": 444, + "width": 160 + }, + "height": "0px", + "nodeId": "n89", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n9.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n9.json new file mode 100644 index 0000000..a4af259 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n9.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 0, + "left": 20, + "top": 161, + "width": 20 + }, + "height": "0px", + "nodeId": "n9", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n90.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n90.json new file mode 100644 index 0000000..cca7d47 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n90.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 0, + "left": 20, + "top": 469, + "width": 20 + }, + "children": [ + "n89" + ], + "height": "40px", + "nodeId": "n90", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n91.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n91.json new file mode 100644 index 0000000..4a24f49 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n91.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 488, + "width": 204 + }, + "height": "18px", + "nodeId": "n91", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n92.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n92.json new file mode 100644 index 0000000..4f07f29 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n92.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
成功页", + "bbox": { + "height": 40, + "left": 20, + "top": 488, + "width": 20 + }, + "children": [ + "n91" + ], + "height": "40px", + "nodeId": "n92", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "styleId": "style_8", + "tag": "span", + "text": "成功页", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n93.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n93.json new file mode 100644 index 0000000..860bfd8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n93.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 451, + "width": 12 + }, + "children": [ + "n90", + "n92" + ], + "height": "40px", + "nodeId": "n93", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n94.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n94.json new file mode 100644 index 0000000..062993f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n94.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 40, + "top": 488, + "width": 160 + }, + "height": "0px", + "nodeId": "n94", + "originalClass": "arco-menu-indent", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "styleId": "style_6", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n95.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n95.json new file mode 100644 index 0000000..38ab77c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n95.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 0, + "left": 20, + "top": 513, + "width": 20 + }, + "children": [ + "n94" + ], + "height": "40px", + "nodeId": "n95", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "styleId": "style_7", + "tag": "span", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n96.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n96.json new file mode 100644 index 0000000..c3d833b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n96.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 532, + "width": 204 + }, + "height": "18px", + "nodeId": "n96", + "originalClass": "icon-empty--ILNVB", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3)", + "styleId": "style_6", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n97.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n97.json new file mode 100644 index 0000000..0454848 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n97.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "
失败页", + "bbox": { + "height": 40, + "left": 20, + "top": 532, + "width": 20 + }, + "children": [ + "n96" + ], + "height": "40px", + "nodeId": "n97", + "originalClass": "arco-menu-item-inner", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span:nth-of-type(1)", + "styleId": "style_8", + "tag": "span", + "text": "失败页", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n98.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n98.json new file mode 100644 index 0000000..8351223 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n98.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 18, + "left": 40, + "top": 495, + "width": 12 + }, + "children": [ + "n95", + "n97" + ], + "height": "40px", + "nodeId": "n98", + "originalClass": "arco-menu-item arco-menu-item-indented", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "styleId": "style_9", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n99.json b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n99.json new file mode 100644 index 0000000..17bf7f6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/nodes/n99.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 8, + "top": 444, + "width": 204 + }, + "children": [ + "n93", + "n98" + ], + "height": "0px", + "nodeId": "n99", + "originalClass": "arco-menu-inline-content", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "styleId": "style_10", + "tag": "div", + "width": "204px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/skeleton.json b/AI-Arco-Design-Themes-Demos-complete/flat/skeleton.json new file mode 100644 index 0000000..08aa543 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/skeleton.json @@ -0,0 +1,5434 @@ +{ + "capturedAt": "2026-04-20T15:28:22.024Z", + "nodeCount": 729, + "nodes": { + "n1": { + "childCount": 0, + "depth": 12, + "tag": "svg" + }, + "n10": { + "childCount": 1, + "children": [ + "n9" + ], + "depth": 13, + "tag": "span" + }, + "n100": { + "childCount": 16, + "children": [ + "n88", + "n99" + ], + "depth": 10, + "tag": "div" + }, + "n101": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n102": { + "childCount": 1, + "children": [ + "n101" + ], + "depth": 12, + "tag": "span" + }, + "n103": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n104": { + "childCount": 1, + "children": [ + "n103" + ], + "depth": 12, + "tag": "span" + }, + "n105": { + "childCount": 4, + "children": [ + "n102", + "n104" + ], + "depth": 11, + "role": "header", + "tag": "div" + }, + "n106": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n107": { + "childCount": 1, + "children": [ + "n106" + ], + "depth": 13, + "tag": "span" + }, + "n108": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n109": { + "childCount": 1, + "children": [ + "n108" + ], + "depth": 13, + "tag": "span" + }, + "n11": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n110": { + "childCount": 4, + "children": [ + "n107", + "n109" + ], + "depth": 12, + "tag": "div" + }, + "n111": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n112": { + "childCount": 1, + "children": [ + "n111" + ], + "depth": 13, + "tag": "span" + }, + "n113": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n114": { + "childCount": 1, + "children": [ + "n113" + ], + "depth": 13, + "tag": "span" + }, + "n115": { + "childCount": 4, + "children": [ + "n112", + "n114" + ], + "depth": 12, + "tag": "div" + }, + "n116": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n117": { + "childCount": 1, + "children": [ + "n116" + ], + "depth": 13, + "tag": "span" + }, + "n118": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n119": { + "childCount": 1, + "children": [ + "n118" + ], + "depth": 13, + "tag": "span" + }, + "n12": { + "childCount": 1, + "children": [ + "n11" + ], + "depth": 13, + "tag": "span" + }, + "n120": { + "childCount": 4, + "children": [ + "n117", + "n119" + ], + "depth": 12, + "tag": "div" + }, + "n121": { + "childCount": 15, + "children": [ + "n110", + "n115", + "n120" + ], + "depth": 11, + "tag": "div" + }, + "n122": { + "childCount": 21, + "children": [ + "n105", + "n121" + ], + "depth": 10, + "tag": "div" + }, + "n123": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n124": { + "childCount": 1, + "children": [ + "n123" + ], + "depth": 12, + "tag": "span" + }, + "n125": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n126": { + "childCount": 1, + "children": [ + "n125" + ], + "depth": 12, + "tag": "span" + }, + "n127": { + "childCount": 4, + "children": [ + "n124", + "n126" + ], + "depth": 11, + "role": "header", + "tag": "div" + }, + "n128": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n129": { + "childCount": 1, + "children": [ + "n128" + ], + "depth": 13, + "tag": "span" + }, + "n13": { + "childCount": 4, + "children": [ + "n10", + "n12" + ], + "depth": 12, + "tag": "div" + }, + "n130": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n131": { + "childCount": 1, + "children": [ + "n130" + ], + "depth": 13, + "tag": "span" + }, + "n132": { + "childCount": 4, + "children": [ + "n129", + "n131" + ], + "depth": 12, + "tag": "div" + }, + "n133": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n134": { + "childCount": 1, + "children": [ + "n133" + ], + "depth": 13, + "tag": "span" + }, + "n135": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n136": { + "childCount": 1, + "children": [ + "n135" + ], + "depth": 13, + "tag": "span" + }, + "n137": { + "childCount": 4, + "children": [ + "n134", + "n136" + ], + "depth": 12, + "tag": "div" + }, + "n138": { + "childCount": 10, + "children": [ + "n132", + "n137" + ], + "depth": 11, + "tag": "div" + }, + "n139": { + "childCount": 16, + "children": [ + "n127", + "n138" + ], + "depth": 10, + "tag": "div" + }, + "n14": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n140": { + "childCount": 139, + "children": [ + "n3", + "n20", + "n37", + "n54", + "n71", + "n83", + "n100", + "n122", + "n139" + ], + "depth": 9, + "tag": "div" + }, + "n141": { + "childCount": 140, + "children": [ + "n140" + ], + "depth": 8, + "tag": "div" + }, + "n142": { + "childCount": 141, + "children": [ + "n141" + ], + "depth": 7, + "tag": "div" + }, + "n143": { + "childCount": 0, + "depth": 8, + "tag": "svg" + }, + "n144": { + "childCount": 1, + "children": [ + "n143" + ], + "depth": 7, + "tag": "div" + }, + "n145": { + "childCount": 144, + "children": [ + "n142", + "n144" + ], + "depth": 6, + "tag": "div" + }, + "n146": { + "childCount": 145, + "children": [ + "n145" + ], + "depth": 5, + "role": "aside", + "tag": "aside" + }, + "n147": { + "childCount": 0, + "depth": 10, + "tag": "svg" + }, + "n148": { + "childCount": 1, + "children": [ + "n147" + ], + "depth": 9, + "tag": "div" + }, + "n149": { + "childCount": 0, + "depth": 10, + "tag": "svg" + }, + "n15": { + "childCount": 1, + "children": [ + "n14" + ], + "depth": 13, + "tag": "span" + }, + "n150": { + "childCount": 1, + "children": [ + "n149" + ], + "depth": 9, + "tag": "span" + }, + "n151": { + "childCount": 0, + "depth": 9, + "tag": "div" + }, + "n152": { + "childCount": 0, + "depth": 10, + "tag": "svg" + }, + "n153": { + "childCount": 1, + "children": [ + "n152" + ], + "depth": 9, + "tag": "span" + }, + "n154": { + "childCount": 0, + "depth": 9, + "tag": "div" + }, + "n155": { + "childCount": 8, + "children": [ + "n148", + "n150", + "n151", + "n153", + "n154" + ], + "depth": 8, + "tag": "div" + }, + "n156": { + "childCount": 0, + "depth": 10, + "tag": "p" + }, + "n157": { + "childCount": 1, + "children": [ + "n156" + ], + "depth": 9, + "tag": "div" + }, + "n158": { + "childCount": 0, + "depth": 11, + "tag": "div" + }, + "n159": { + "childCount": 1, + "children": [ + "n158" + ], + "depth": 10, + "tag": "button" + }, + "n16": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n160": { + "childCount": 2, + "children": [ + "n159" + ], + "depth": 9, + "tag": "div" + }, + "n161": { + "childCount": 5, + "children": [ + "n157", + "n160" + ], + "depth": 8, + "tag": "div" + }, + "n162": { + "childCount": 15, + "children": [ + "n155", + "n161" + ], + "depth": 7, + "tag": "div" + }, + "n163": { + "childCount": 0, + "depth": 10, + "tag": "h6" + }, + "n164": { + "childCount": 0, + "depth": 16, + "tag": "label" + }, + "n165": { + "childCount": 1, + "children": [ + "n164" + ], + "depth": 15, + "tag": "div" + }, + "n166": { + "childCount": 0, + "depth": 20, + "tag": "input" + }, + "n167": { + "childCount": 1, + "children": [ + "n166" + ], + "depth": 19, + "tag": "span" + }, + "n168": { + "childCount": 2, + "children": [ + "n167" + ], + "depth": 18, + "tag": "div" + }, + "n169": { + "childCount": 3, + "children": [ + "n168" + ], + "depth": 17, + "tag": "div" + }, + "n17": { + "childCount": 1, + "children": [ + "n16" + ], + "depth": 13, + "tag": "span" + }, + "n170": { + "childCount": 4, + "children": [ + "n169" + ], + "depth": 16, + "tag": "div" + }, + "n171": { + "childCount": 5, + "children": [ + "n170" + ], + "depth": 15, + "tag": "div" + }, + "n172": { + "childCount": 8, + "children": [ + "n165", + "n171" + ], + "depth": 14, + "tag": "div" + }, + "n173": { + "childCount": 9, + "children": [ + "n172" + ], + "depth": 13, + "tag": "div" + }, + "n174": { + "childCount": 0, + "depth": 16, + "tag": "label" + }, + "n175": { + "childCount": 1, + "children": [ + "n174" + ], + "depth": 15, + "tag": "div" + }, + "n176": { + "childCount": 0, + "depth": 20, + "tag": "input" + }, + "n177": { + "childCount": 1, + "children": [ + "n176" + ], + "depth": 19, + "tag": "span" + }, + "n178": { + "childCount": 2, + "children": [ + "n177" + ], + "depth": 18, + "tag": "div" + }, + "n179": { + "childCount": 3, + "children": [ + "n178" + ], + "depth": 17, + "tag": "div" + }, + "n18": { + "childCount": 4, + "children": [ + "n15", + "n17" + ], + "depth": 12, + "tag": "div" + }, + "n180": { + "childCount": 4, + "children": [ + "n179" + ], + "depth": 16, + "tag": "div" + }, + "n181": { + "childCount": 5, + "children": [ + "n180" + ], + "depth": 15, + "tag": "div" + }, + "n182": { + "childCount": 8, + "children": [ + "n175", + "n181" + ], + "depth": 14, + "tag": "div" + }, + "n183": { + "childCount": 9, + "children": [ + "n182" + ], + "depth": 13, + "tag": "div" + }, + "n184": { + "childCount": 0, + "depth": 16, + "tag": "label" + }, + "n185": { + "childCount": 1, + "children": [ + "n184" + ], + "depth": 15, + "tag": "div" + }, + "n186": { + "childCount": 0, + "depth": 24, + "tag": "input" + }, + "n187": { + "childCount": 1, + "children": [ + "n186" + ], + "depth": 23, + "tag": "div" + }, + "n188": { + "childCount": 2, + "children": [ + "n187" + ], + "depth": 22, + "tag": "div" + }, + "n189": { + "childCount": 3, + "children": [ + "n188" + ], + "depth": 21, + "tag": "div" + }, + "n19": { + "childCount": 10, + "children": [ + "n13", + "n18" + ], + "depth": 11, + "tag": "div" + }, + "n190": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n191": { + "childCount": 1, + "children": [ + "n190" + ], + "depth": 22, + "tag": "div" + }, + "n192": { + "childCount": 2, + "children": [ + "n191" + ], + "depth": 21, + "tag": "div" + }, + "n193": { + "childCount": 7, + "children": [ + "n189", + "n192" + ], + "depth": 20, + "tag": "div" + }, + "n194": { + "childCount": 8, + "children": [ + "n193" + ], + "depth": 19, + "tag": "div" + }, + "n195": { + "childCount": 9, + "children": [ + "n194" + ], + "depth": 18, + "tag": "div" + }, + "n196": { + "childCount": 10, + "children": [ + "n195" + ], + "depth": 17, + "tag": "div" + }, + "n197": { + "childCount": 11, + "children": [ + "n196" + ], + "depth": 16, + "tag": "div" + }, + "n198": { + "childCount": 12, + "children": [ + "n197" + ], + "depth": 15, + "tag": "div" + }, + "n199": { + "childCount": 15, + "children": [ + "n185", + "n198" + ], + "depth": 14, + "tag": "div" + }, + "n2": { + "childCount": 1, + "children": [ + "n1" + ], + "depth": 11, + "tag": "a" + }, + "n20": { + "childCount": 16, + "children": [ + "n8", + "n19" + ], + "depth": 10, + "tag": "div" + }, + "n200": { + "childCount": 16, + "children": [ + "n199" + ], + "depth": 13, + "tag": "div" + }, + "n201": { + "childCount": 0, + "depth": 16, + "tag": "label" + }, + "n202": { + "childCount": 1, + "children": [ + "n201" + ], + "depth": 15, + "tag": "div" + }, + "n203": { + "childCount": 0, + "depth": 24, + "tag": "input" + }, + "n204": { + "childCount": 1, + "children": [ + "n203" + ], + "depth": 23, + "tag": "div" + }, + "n205": { + "childCount": 2, + "children": [ + "n204" + ], + "depth": 22, + "tag": "div" + }, + "n206": { + "childCount": 3, + "children": [ + "n205" + ], + "depth": 21, + "tag": "div" + }, + "n207": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n208": { + "childCount": 1, + "children": [ + "n207" + ], + "depth": 22, + "tag": "div" + }, + "n209": { + "childCount": 2, + "children": [ + "n208" + ], + "depth": 21, + "tag": "div" + }, + "n21": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n210": { + "childCount": 7, + "children": [ + "n206", + "n209" + ], + "depth": 20, + "tag": "div" + }, + "n211": { + "childCount": 8, + "children": [ + "n210" + ], + "depth": 19, + "tag": "div" + }, + "n212": { + "childCount": 9, + "children": [ + "n211" + ], + "depth": 18, + "tag": "div" + }, + "n213": { + "childCount": 10, + "children": [ + "n212" + ], + "depth": 17, + "tag": "div" + }, + "n214": { + "childCount": 11, + "children": [ + "n213" + ], + "depth": 16, + "tag": "div" + }, + "n215": { + "childCount": 12, + "children": [ + "n214" + ], + "depth": 15, + "tag": "div" + }, + "n216": { + "childCount": 15, + "children": [ + "n202", + "n215" + ], + "depth": 14, + "tag": "div" + }, + "n217": { + "childCount": 16, + "children": [ + "n216" + ], + "depth": 13, + "tag": "div" + }, + "n218": { + "childCount": 0, + "depth": 16, + "tag": "label" + }, + "n219": { + "childCount": 1, + "children": [ + "n218" + ], + "depth": 15, + "tag": "div" + }, + "n22": { + "childCount": 1, + "children": [ + "n21" + ], + "depth": 12, + "tag": "span" + }, + "n220": { + "childCount": 0, + "depth": 21, + "tag": "input" + }, + "n221": { + "childCount": 1, + "children": [ + "n220" + ], + "depth": 20, + "tag": "div" + }, + "n222": { + "childCount": 0, + "depth": 20, + "tag": "span" + }, + "n223": { + "childCount": 0, + "depth": 21, + "tag": "input" + }, + "n224": { + "childCount": 1, + "children": [ + "n223" + ], + "depth": 20, + "tag": "div" + }, + "n225": { + "childCount": 0, + "depth": 22, + "tag": "svg" + }, + "n226": { + "childCount": 1, + "children": [ + "n225" + ], + "depth": 21, + "tag": "span" + }, + "n227": { + "childCount": 2, + "children": [ + "n226" + ], + "depth": 20, + "tag": "div" + }, + "n228": { + "childCount": 8, + "children": [ + "n221", + "n222", + "n224", + "n227" + ], + "depth": 19, + "tag": "div" + }, + "n229": { + "childCount": 9, + "children": [ + "n228" + ], + "depth": 18, + "tag": "div" + }, + "n23": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n230": { + "childCount": 10, + "children": [ + "n229" + ], + "depth": 17, + "tag": "div" + }, + "n231": { + "childCount": 11, + "children": [ + "n230" + ], + "depth": 16, + "tag": "div" + }, + "n232": { + "childCount": 12, + "children": [ + "n231" + ], + "depth": 15, + "tag": "div" + }, + "n233": { + "childCount": 15, + "children": [ + "n219", + "n232" + ], + "depth": 14, + "tag": "div" + }, + "n234": { + "childCount": 16, + "children": [ + "n233" + ], + "depth": 13, + "tag": "div" + }, + "n235": { + "childCount": 0, + "depth": 16, + "tag": "label" + }, + "n236": { + "childCount": 1, + "children": [ + "n235" + ], + "depth": 15, + "tag": "div" + }, + "n237": { + "childCount": 0, + "depth": 24, + "tag": "input" + }, + "n238": { + "childCount": 1, + "children": [ + "n237" + ], + "depth": 23, + "tag": "div" + }, + "n239": { + "childCount": 2, + "children": [ + "n238" + ], + "depth": 22, + "tag": "div" + }, + "n24": { + "childCount": 1, + "children": [ + "n23" + ], + "depth": 12, + "tag": "span" + }, + "n240": { + "childCount": 3, + "children": [ + "n239" + ], + "depth": 21, + "tag": "div" + }, + "n241": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n242": { + "childCount": 1, + "children": [ + "n241" + ], + "depth": 22, + "tag": "div" + }, + "n243": { + "childCount": 2, + "children": [ + "n242" + ], + "depth": 21, + "tag": "div" + }, + "n244": { + "childCount": 7, + "children": [ + "n240", + "n243" + ], + "depth": 20, + "tag": "div" + }, + "n245": { + "childCount": 8, + "children": [ + "n244" + ], + "depth": 19, + "tag": "div" + }, + "n246": { + "childCount": 9, + "children": [ + "n245" + ], + "depth": 18, + "tag": "div" + }, + "n247": { + "childCount": 10, + "children": [ + "n246" + ], + "depth": 17, + "tag": "div" + }, + "n248": { + "childCount": 11, + "children": [ + "n247" + ], + "depth": 16, + "tag": "div" + }, + "n249": { + "childCount": 12, + "children": [ + "n248" + ], + "depth": 15, + "tag": "div" + }, + "n25": { + "childCount": 4, + "children": [ + "n22", + "n24" + ], + "depth": 11, + "role": "header", + "tag": "div" + }, + "n250": { + "childCount": 15, + "children": [ + "n236", + "n249" + ], + "depth": 14, + "tag": "div" + }, + "n251": { + "childCount": 16, + "children": [ + "n250" + ], + "depth": 13, + "tag": "div" + }, + "n252": { + "childCount": 88, + "children": [ + "n173", + "n183", + "n200", + "n217", + "n234", + "n251" + ], + "depth": 12, + "tag": "div" + }, + "n253": { + "childCount": 89, + "children": [ + "n252" + ], + "depth": 11, + "role": "form", + "tag": "form" + }, + "n254": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n255": { + "childCount": 0, + "depth": 13, + "tag": "span" + }, + "n256": { + "childCount": 2, + "children": [ + "n254", + "n255" + ], + "depth": 12, + "tag": "button" + }, + "n257": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n258": { + "childCount": 0, + "depth": 13, + "tag": "span" + }, + "n259": { + "childCount": 2, + "children": [ + "n257", + "n258" + ], + "depth": 12, + "tag": "button" + }, + "n26": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n260": { + "childCount": 6, + "children": [ + "n256", + "n259" + ], + "depth": 11, + "tag": "div" + }, + "n261": { + "childCount": 97, + "children": [ + "n253", + "n260" + ], + "depth": 10, + "tag": "div" + }, + "n262": { + "childCount": 0, + "depth": 14, + "tag": "svg" + }, + "n263": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n264": { + "childCount": 2, + "children": [ + "n262", + "n263" + ], + "depth": 13, + "tag": "button" + }, + "n265": { + "childCount": 3, + "children": [ + "n264" + ], + "depth": 12, + "tag": "div" + }, + "n266": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n267": { + "childCount": 1, + "children": [ + "n266" + ], + "depth": 13, + "tag": "button" + }, + "n268": { + "childCount": 2, + "children": [ + "n267" + ], + "depth": 12, + "tag": "div" + }, + "n269": { + "childCount": 7, + "children": [ + "n265", + "n268" + ], + "depth": 11, + "tag": "div" + }, + "n27": { + "childCount": 1, + "children": [ + "n26" + ], + "depth": 13, + "tag": "span" + }, + "n270": { + "childCount": 0, + "depth": 14, + "tag": "svg" + }, + "n271": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n272": { + "childCount": 2, + "children": [ + "n270", + "n271" + ], + "depth": 13, + "tag": "button" + }, + "n273": { + "childCount": 3, + "children": [ + "n272" + ], + "depth": 12, + "tag": "div" + }, + "n274": { + "childCount": 4, + "children": [ + "n273" + ], + "depth": 11, + "tag": "div" + }, + "n275": { + "childCount": 13, + "children": [ + "n269", + "n274" + ], + "depth": 10, + "tag": "div" + }, + "n276": { + "childCount": 0, + "depth": 18, + "tag": "col" + }, + "n277": { + "childCount": 0, + "depth": 18, + "tag": "col" + }, + "n278": { + "childCount": 0, + "depth": 18, + "tag": "col" + }, + "n279": { + "childCount": 0, + "depth": 18, + "tag": "col" + }, + "n28": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n280": { + "childCount": 0, + "depth": 18, + "tag": "col" + }, + "n281": { + "childCount": 0, + "depth": 18, + "tag": "col" + }, + "n282": { + "childCount": 0, + "depth": 18, + "tag": "col" + }, + "n283": { + "childCount": 0, + "depth": 18, + "tag": "col" + }, + "n284": { + "childCount": 8, + "children": [ + "n276", + "n277", + "n278", + "n279", + "n280", + "n281", + "n282", + "n283" + ], + "depth": 17, + "tag": "colgroup" + }, + "n285": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n286": { + "childCount": 1, + "children": [ + "n285" + ], + "depth": 20, + "tag": "div" + }, + "n287": { + "childCount": 2, + "children": [ + "n286" + ], + "depth": 19, + "tag": "th" + }, + "n288": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n289": { + "childCount": 1, + "children": [ + "n288" + ], + "depth": 20, + "tag": "div" + }, + "n29": { + "childCount": 1, + "children": [ + "n28" + ], + "depth": 13, + "tag": "span" + }, + "n290": { + "childCount": 2, + "children": [ + "n289" + ], + "depth": 19, + "tag": "th" + }, + "n291": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n292": { + "childCount": 1, + "children": [ + "n291" + ], + "depth": 20, + "tag": "div" + }, + "n293": { + "childCount": 2, + "children": [ + "n292" + ], + "depth": 19, + "tag": "th" + }, + "n294": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n295": { + "childCount": 1, + "children": [ + "n294" + ], + "depth": 20, + "tag": "div" + }, + "n296": { + "childCount": 2, + "children": [ + "n295" + ], + "depth": 19, + "tag": "th" + }, + "n297": { + "childCount": 0, + "depth": 22, + "tag": "span" + }, + "n298": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n299": { + "childCount": 1, + "children": [ + "n298" + ], + "depth": 23, + "tag": "div" + }, + "n3": { + "childCount": 2, + "children": [ + "n2" + ], + "depth": 10, + "tag": "div" + }, + "n30": { + "childCount": 4, + "children": [ + "n27", + "n29" + ], + "depth": 12, + "tag": "div" + }, + "n300": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n301": { + "childCount": 1, + "children": [ + "n300" + ], + "depth": 23, + "tag": "div" + }, + "n302": { + "childCount": 4, + "children": [ + "n299", + "n301" + ], + "depth": 22, + "tag": "div" + }, + "n303": { + "childCount": 6, + "children": [ + "n297", + "n302" + ], + "depth": 21, + "tag": "div" + }, + "n304": { + "childCount": 7, + "children": [ + "n303" + ], + "depth": 20, + "tag": "div" + }, + "n305": { + "childCount": 8, + "children": [ + "n304" + ], + "depth": 19, + "tag": "th" + }, + "n306": { + "childCount": 0, + "depth": 22, + "tag": "span" + }, + "n307": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n308": { + "childCount": 1, + "children": [ + "n307" + ], + "depth": 23, + "tag": "div" + }, + "n309": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n31": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n310": { + "childCount": 1, + "children": [ + "n309" + ], + "depth": 23, + "tag": "div" + }, + "n311": { + "childCount": 4, + "children": [ + "n308", + "n310" + ], + "depth": 22, + "tag": "div" + }, + "n312": { + "childCount": 6, + "children": [ + "n306", + "n311" + ], + "depth": 21, + "tag": "div" + }, + "n313": { + "childCount": 7, + "children": [ + "n312" + ], + "depth": 20, + "tag": "div" + }, + "n314": { + "childCount": 8, + "children": [ + "n313" + ], + "depth": 19, + "tag": "th" + }, + "n315": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n316": { + "childCount": 1, + "children": [ + "n315" + ], + "depth": 20, + "tag": "div" + }, + "n317": { + "childCount": 2, + "children": [ + "n316" + ], + "depth": 19, + "tag": "th" + }, + "n318": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n319": { + "childCount": 1, + "children": [ + "n318" + ], + "depth": 20, + "tag": "div" + }, + "n32": { + "childCount": 1, + "children": [ + "n31" + ], + "depth": 13, + "tag": "span" + }, + "n320": { + "childCount": 2, + "children": [ + "n319" + ], + "depth": 19, + "tag": "th" + }, + "n321": { + "childCount": 36, + "children": [ + "n287", + "n290", + "n293", + "n296", + "n305", + "n314", + "n317", + "n320" + ], + "depth": 18, + "tag": "tr" + }, + "n322": { + "childCount": 37, + "children": [ + "n321" + ], + "depth": 17, + "tag": "thead" + }, + "n323": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n324": { + "childCount": 1, + "children": [ + "n323" + ], + "depth": 23, + "tag": "span" + }, + "n325": { + "childCount": 2, + "children": [ + "n324" + ], + "depth": 22, + "tag": "span" + }, + "n326": { + "childCount": 3, + "children": [ + "n325" + ], + "depth": 21, + "tag": "span" + }, + "n327": { + "childCount": 4, + "children": [ + "n326" + ], + "depth": 20, + "tag": "div" + }, + "n328": { + "childCount": 5, + "children": [ + "n327" + ], + "depth": 19, + "tag": "td" + }, + "n329": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n33": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n330": { + "childCount": 1, + "children": [ + "n329" + ], + "depth": 20, + "tag": "div" + }, + "n331": { + "childCount": 2, + "children": [ + "n330" + ], + "depth": 19, + "tag": "td" + }, + "n332": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n333": { + "childCount": 1, + "children": [ + "n332" + ], + "depth": 22, + "tag": "div" + }, + "n334": { + "childCount": 2, + "children": [ + "n333" + ], + "depth": 21, + "tag": "span" + }, + "n335": { + "childCount": 3, + "children": [ + "n334" + ], + "depth": 20, + "tag": "div" + }, + "n336": { + "childCount": 4, + "children": [ + "n335" + ], + "depth": 19, + "tag": "td" + }, + "n337": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n338": { + "childCount": 1, + "children": [ + "n337" + ], + "depth": 20, + "tag": "div" + }, + "n339": { + "childCount": 2, + "children": [ + "n338" + ], + "depth": 19, + "tag": "td" + }, + "n34": { + "childCount": 1, + "children": [ + "n33" + ], + "depth": 13, + "tag": "span" + }, + "n340": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n341": { + "childCount": 1, + "children": [ + "n340" + ], + "depth": 20, + "tag": "div" + }, + "n342": { + "childCount": 2, + "children": [ + "n341" + ], + "depth": 19, + "tag": "td" + }, + "n343": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n344": { + "childCount": 1, + "children": [ + "n343" + ], + "depth": 20, + "tag": "div" + }, + "n345": { + "childCount": 2, + "children": [ + "n344" + ], + "depth": 19, + "tag": "td" + }, + "n346": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n347": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n348": { + "childCount": 2, + "children": [ + "n346", + "n347" + ], + "depth": 23, + "tag": "span" + }, + "n349": { + "childCount": 3, + "children": [ + "n348" + ], + "depth": 22, + "tag": "span" + }, + "n35": { + "childCount": 4, + "children": [ + "n32", + "n34" + ], + "depth": 12, + "tag": "div" + }, + "n350": { + "childCount": 4, + "children": [ + "n349" + ], + "depth": 21, + "tag": "span" + }, + "n351": { + "childCount": 5, + "children": [ + "n350" + ], + "depth": 20, + "tag": "div" + }, + "n352": { + "childCount": 6, + "children": [ + "n351" + ], + "depth": 19, + "tag": "td" + }, + "n353": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n354": { + "childCount": 1, + "children": [ + "n353" + ], + "depth": 22, + "tag": "button" + }, + "n355": { + "childCount": 2, + "children": [ + "n354" + ], + "depth": 21, + "tag": "span" + }, + "n356": { + "childCount": 3, + "children": [ + "n355" + ], + "depth": 20, + "tag": "div" + }, + "n357": { + "childCount": 4, + "children": [ + "n356" + ], + "depth": 19, + "tag": "td" + }, + "n358": { + "childCount": 35, + "children": [ + "n328", + "n331", + "n336", + "n339", + "n342", + "n345", + "n352", + "n357" + ], + "depth": 18, + "tag": "tr" + }, + "n359": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n36": { + "childCount": 10, + "children": [ + "n30", + "n35" + ], + "depth": 11, + "tag": "div" + }, + "n360": { + "childCount": 1, + "children": [ + "n359" + ], + "depth": 23, + "tag": "span" + }, + "n361": { + "childCount": 2, + "children": [ + "n360" + ], + "depth": 22, + "tag": "span" + }, + "n362": { + "childCount": 3, + "children": [ + "n361" + ], + "depth": 21, + "tag": "span" + }, + "n363": { + "childCount": 4, + "children": [ + "n362" + ], + "depth": 20, + "tag": "div" + }, + "n364": { + "childCount": 5, + "children": [ + "n363" + ], + "depth": 19, + "tag": "td" + }, + "n365": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n366": { + "childCount": 1, + "children": [ + "n365" + ], + "depth": 20, + "tag": "div" + }, + "n367": { + "childCount": 2, + "children": [ + "n366" + ], + "depth": 19, + "tag": "td" + }, + "n368": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n369": { + "childCount": 1, + "children": [ + "n368" + ], + "depth": 22, + "tag": "div" + }, + "n37": { + "childCount": 16, + "children": [ + "n25", + "n36" + ], + "depth": 10, + "tag": "div" + }, + "n370": { + "childCount": 2, + "children": [ + "n369" + ], + "depth": 21, + "tag": "span" + }, + "n371": { + "childCount": 3, + "children": [ + "n370" + ], + "depth": 20, + "tag": "div" + }, + "n372": { + "childCount": 4, + "children": [ + "n371" + ], + "depth": 19, + "tag": "td" + }, + "n373": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n374": { + "childCount": 1, + "children": [ + "n373" + ], + "depth": 20, + "tag": "div" + }, + "n375": { + "childCount": 2, + "children": [ + "n374" + ], + "depth": 19, + "tag": "td" + }, + "n376": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n377": { + "childCount": 1, + "children": [ + "n376" + ], + "depth": 20, + "tag": "div" + }, + "n378": { + "childCount": 2, + "children": [ + "n377" + ], + "depth": 19, + "tag": "td" + }, + "n379": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n38": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n380": { + "childCount": 1, + "children": [ + "n379" + ], + "depth": 20, + "tag": "div" + }, + "n381": { + "childCount": 2, + "children": [ + "n380" + ], + "depth": 19, + "tag": "td" + }, + "n382": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n383": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n384": { + "childCount": 2, + "children": [ + "n382", + "n383" + ], + "depth": 23, + "tag": "span" + }, + "n385": { + "childCount": 3, + "children": [ + "n384" + ], + "depth": 22, + "tag": "span" + }, + "n386": { + "childCount": 4, + "children": [ + "n385" + ], + "depth": 21, + "tag": "span" + }, + "n387": { + "childCount": 5, + "children": [ + "n386" + ], + "depth": 20, + "tag": "div" + }, + "n388": { + "childCount": 6, + "children": [ + "n387" + ], + "depth": 19, + "tag": "td" + }, + "n389": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n39": { + "childCount": 1, + "children": [ + "n38" + ], + "depth": 12, + "tag": "span" + }, + "n390": { + "childCount": 1, + "children": [ + "n389" + ], + "depth": 22, + "tag": "button" + }, + "n391": { + "childCount": 2, + "children": [ + "n390" + ], + "depth": 21, + "tag": "span" + }, + "n392": { + "childCount": 3, + "children": [ + "n391" + ], + "depth": 20, + "tag": "div" + }, + "n393": { + "childCount": 4, + "children": [ + "n392" + ], + "depth": 19, + "tag": "td" + }, + "n394": { + "childCount": 35, + "children": [ + "n364", + "n367", + "n372", + "n375", + "n378", + "n381", + "n388", + "n393" + ], + "depth": 18, + "tag": "tr" + }, + "n395": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n396": { + "childCount": 1, + "children": [ + "n395" + ], + "depth": 23, + "tag": "span" + }, + "n397": { + "childCount": 2, + "children": [ + "n396" + ], + "depth": 22, + "tag": "span" + }, + "n398": { + "childCount": 3, + "children": [ + "n397" + ], + "depth": 21, + "tag": "span" + }, + "n399": { + "childCount": 4, + "children": [ + "n398" + ], + "depth": 20, + "tag": "div" + }, + "n4": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n40": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n400": { + "childCount": 5, + "children": [ + "n399" + ], + "depth": 19, + "tag": "td" + }, + "n401": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n402": { + "childCount": 1, + "children": [ + "n401" + ], + "depth": 20, + "tag": "div" + }, + "n403": { + "childCount": 2, + "children": [ + "n402" + ], + "depth": 19, + "tag": "td" + }, + "n404": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n405": { + "childCount": 1, + "children": [ + "n404" + ], + "depth": 22, + "tag": "div" + }, + "n406": { + "childCount": 2, + "children": [ + "n405" + ], + "depth": 21, + "tag": "span" + }, + "n407": { + "childCount": 3, + "children": [ + "n406" + ], + "depth": 20, + "tag": "div" + }, + "n408": { + "childCount": 4, + "children": [ + "n407" + ], + "depth": 19, + "tag": "td" + }, + "n409": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n41": { + "childCount": 1, + "children": [ + "n40" + ], + "depth": 12, + "tag": "span" + }, + "n410": { + "childCount": 1, + "children": [ + "n409" + ], + "depth": 20, + "tag": "div" + }, + "n411": { + "childCount": 2, + "children": [ + "n410" + ], + "depth": 19, + "tag": "td" + }, + "n412": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n413": { + "childCount": 1, + "children": [ + "n412" + ], + "depth": 20, + "tag": "div" + }, + "n414": { + "childCount": 2, + "children": [ + "n413" + ], + "depth": 19, + "tag": "td" + }, + "n415": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n416": { + "childCount": 1, + "children": [ + "n415" + ], + "depth": 20, + "tag": "div" + }, + "n417": { + "childCount": 2, + "children": [ + "n416" + ], + "depth": 19, + "tag": "td" + }, + "n418": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n419": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n42": { + "childCount": 4, + "children": [ + "n39", + "n41" + ], + "depth": 11, + "role": "header", + "tag": "div" + }, + "n420": { + "childCount": 2, + "children": [ + "n418", + "n419" + ], + "depth": 23, + "tag": "span" + }, + "n421": { + "childCount": 3, + "children": [ + "n420" + ], + "depth": 22, + "tag": "span" + }, + "n422": { + "childCount": 4, + "children": [ + "n421" + ], + "depth": 21, + "tag": "span" + }, + "n423": { + "childCount": 5, + "children": [ + "n422" + ], + "depth": 20, + "tag": "div" + }, + "n424": { + "childCount": 6, + "children": [ + "n423" + ], + "depth": 19, + "tag": "td" + }, + "n425": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n426": { + "childCount": 1, + "children": [ + "n425" + ], + "depth": 22, + "tag": "button" + }, + "n427": { + "childCount": 2, + "children": [ + "n426" + ], + "depth": 21, + "tag": "span" + }, + "n428": { + "childCount": 3, + "children": [ + "n427" + ], + "depth": 20, + "tag": "div" + }, + "n429": { + "childCount": 4, + "children": [ + "n428" + ], + "depth": 19, + "tag": "td" + }, + "n43": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n430": { + "childCount": 35, + "children": [ + "n400", + "n403", + "n408", + "n411", + "n414", + "n417", + "n424", + "n429" + ], + "depth": 18, + "tag": "tr" + }, + "n431": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n432": { + "childCount": 1, + "children": [ + "n431" + ], + "depth": 23, + "tag": "span" + }, + "n433": { + "childCount": 2, + "children": [ + "n432" + ], + "depth": 22, + "tag": "span" + }, + "n434": { + "childCount": 3, + "children": [ + "n433" + ], + "depth": 21, + "tag": "span" + }, + "n435": { + "childCount": 4, + "children": [ + "n434" + ], + "depth": 20, + "tag": "div" + }, + "n436": { + "childCount": 5, + "children": [ + "n435" + ], + "depth": 19, + "tag": "td" + }, + "n437": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n438": { + "childCount": 1, + "children": [ + "n437" + ], + "depth": 20, + "tag": "div" + }, + "n439": { + "childCount": 2, + "children": [ + "n438" + ], + "depth": 19, + "tag": "td" + }, + "n44": { + "childCount": 1, + "children": [ + "n43" + ], + "depth": 13, + "tag": "span" + }, + "n440": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n441": { + "childCount": 1, + "children": [ + "n440" + ], + "depth": 22, + "tag": "div" + }, + "n442": { + "childCount": 2, + "children": [ + "n441" + ], + "depth": 21, + "tag": "span" + }, + "n443": { + "childCount": 3, + "children": [ + "n442" + ], + "depth": 20, + "tag": "div" + }, + "n444": { + "childCount": 4, + "children": [ + "n443" + ], + "depth": 19, + "tag": "td" + }, + "n445": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n446": { + "childCount": 1, + "children": [ + "n445" + ], + "depth": 20, + "tag": "div" + }, + "n447": { + "childCount": 2, + "children": [ + "n446" + ], + "depth": 19, + "tag": "td" + }, + "n448": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n449": { + "childCount": 1, + "children": [ + "n448" + ], + "depth": 20, + "tag": "div" + }, + "n45": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n450": { + "childCount": 2, + "children": [ + "n449" + ], + "depth": 19, + "tag": "td" + }, + "n451": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n452": { + "childCount": 1, + "children": [ + "n451" + ], + "depth": 20, + "tag": "div" + }, + "n453": { + "childCount": 2, + "children": [ + "n452" + ], + "depth": 19, + "tag": "td" + }, + "n454": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n455": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n456": { + "childCount": 2, + "children": [ + "n454", + "n455" + ], + "depth": 23, + "tag": "span" + }, + "n457": { + "childCount": 3, + "children": [ + "n456" + ], + "depth": 22, + "tag": "span" + }, + "n458": { + "childCount": 4, + "children": [ + "n457" + ], + "depth": 21, + "tag": "span" + }, + "n459": { + "childCount": 5, + "children": [ + "n458" + ], + "depth": 20, + "tag": "div" + }, + "n46": { + "childCount": 1, + "children": [ + "n45" + ], + "depth": 13, + "tag": "span" + }, + "n460": { + "childCount": 6, + "children": [ + "n459" + ], + "depth": 19, + "tag": "td" + }, + "n461": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n462": { + "childCount": 1, + "children": [ + "n461" + ], + "depth": 22, + "tag": "button" + }, + "n463": { + "childCount": 2, + "children": [ + "n462" + ], + "depth": 21, + "tag": "span" + }, + "n464": { + "childCount": 3, + "children": [ + "n463" + ], + "depth": 20, + "tag": "div" + }, + "n465": { + "childCount": 4, + "children": [ + "n464" + ], + "depth": 19, + "tag": "td" + }, + "n466": { + "childCount": 35, + "children": [ + "n436", + "n439", + "n444", + "n447", + "n450", + "n453", + "n460", + "n465" + ], + "depth": 18, + "tag": "tr" + }, + "n467": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n468": { + "childCount": 1, + "children": [ + "n467" + ], + "depth": 23, + "tag": "span" + }, + "n469": { + "childCount": 2, + "children": [ + "n468" + ], + "depth": 22, + "tag": "span" + }, + "n47": { + "childCount": 4, + "children": [ + "n44", + "n46" + ], + "depth": 12, + "tag": "div" + }, + "n470": { + "childCount": 3, + "children": [ + "n469" + ], + "depth": 21, + "tag": "span" + }, + "n471": { + "childCount": 4, + "children": [ + "n470" + ], + "depth": 20, + "tag": "div" + }, + "n472": { + "childCount": 5, + "children": [ + "n471" + ], + "depth": 19, + "tag": "td" + }, + "n473": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n474": { + "childCount": 1, + "children": [ + "n473" + ], + "depth": 20, + "tag": "div" + }, + "n475": { + "childCount": 2, + "children": [ + "n474" + ], + "depth": 19, + "tag": "td" + }, + "n476": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n477": { + "childCount": 1, + "children": [ + "n476" + ], + "depth": 22, + "tag": "div" + }, + "n478": { + "childCount": 2, + "children": [ + "n477" + ], + "depth": 21, + "tag": "span" + }, + "n479": { + "childCount": 3, + "children": [ + "n478" + ], + "depth": 20, + "tag": "div" + }, + "n48": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n480": { + "childCount": 4, + "children": [ + "n479" + ], + "depth": 19, + "tag": "td" + }, + "n481": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n482": { + "childCount": 1, + "children": [ + "n481" + ], + "depth": 20, + "tag": "div" + }, + "n483": { + "childCount": 2, + "children": [ + "n482" + ], + "depth": 19, + "tag": "td" + }, + "n484": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n485": { + "childCount": 1, + "children": [ + "n484" + ], + "depth": 20, + "tag": "div" + }, + "n486": { + "childCount": 2, + "children": [ + "n485" + ], + "depth": 19, + "tag": "td" + }, + "n487": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n488": { + "childCount": 1, + "children": [ + "n487" + ], + "depth": 20, + "tag": "div" + }, + "n489": { + "childCount": 2, + "children": [ + "n488" + ], + "depth": 19, + "tag": "td" + }, + "n49": { + "childCount": 1, + "children": [ + "n48" + ], + "depth": 13, + "tag": "span" + }, + "n490": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n491": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n492": { + "childCount": 2, + "children": [ + "n490", + "n491" + ], + "depth": 23, + "tag": "span" + }, + "n493": { + "childCount": 3, + "children": [ + "n492" + ], + "depth": 22, + "tag": "span" + }, + "n494": { + "childCount": 4, + "children": [ + "n493" + ], + "depth": 21, + "tag": "span" + }, + "n495": { + "childCount": 5, + "children": [ + "n494" + ], + "depth": 20, + "tag": "div" + }, + "n496": { + "childCount": 6, + "children": [ + "n495" + ], + "depth": 19, + "tag": "td" + }, + "n497": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n498": { + "childCount": 1, + "children": [ + "n497" + ], + "depth": 22, + "tag": "button" + }, + "n499": { + "childCount": 2, + "children": [ + "n498" + ], + "depth": 21, + "tag": "span" + }, + "n5": { + "childCount": 1, + "children": [ + "n4" + ], + "depth": 12, + "tag": "span" + }, + "n50": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n500": { + "childCount": 3, + "children": [ + "n499" + ], + "depth": 20, + "tag": "div" + }, + "n501": { + "childCount": 4, + "children": [ + "n500" + ], + "depth": 19, + "tag": "td" + }, + "n502": { + "childCount": 35, + "children": [ + "n472", + "n475", + "n480", + "n483", + "n486", + "n489", + "n496", + "n501" + ], + "depth": 18, + "tag": "tr" + }, + "n503": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n504": { + "childCount": 1, + "children": [ + "n503" + ], + "depth": 23, + "tag": "span" + }, + "n505": { + "childCount": 2, + "children": [ + "n504" + ], + "depth": 22, + "tag": "span" + }, + "n506": { + "childCount": 3, + "children": [ + "n505" + ], + "depth": 21, + "tag": "span" + }, + "n507": { + "childCount": 4, + "children": [ + "n506" + ], + "depth": 20, + "tag": "div" + }, + "n508": { + "childCount": 5, + "children": [ + "n507" + ], + "depth": 19, + "tag": "td" + }, + "n509": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n51": { + "childCount": 1, + "children": [ + "n50" + ], + "depth": 13, + "tag": "span" + }, + "n510": { + "childCount": 1, + "children": [ + "n509" + ], + "depth": 20, + "tag": "div" + }, + "n511": { + "childCount": 2, + "children": [ + "n510" + ], + "depth": 19, + "tag": "td" + }, + "n512": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n513": { + "childCount": 1, + "children": [ + "n512" + ], + "depth": 22, + "tag": "div" + }, + "n514": { + "childCount": 2, + "children": [ + "n513" + ], + "depth": 21, + "tag": "span" + }, + "n515": { + "childCount": 3, + "children": [ + "n514" + ], + "depth": 20, + "tag": "div" + }, + "n516": { + "childCount": 4, + "children": [ + "n515" + ], + "depth": 19, + "tag": "td" + }, + "n517": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n518": { + "childCount": 1, + "children": [ + "n517" + ], + "depth": 20, + "tag": "div" + }, + "n519": { + "childCount": 2, + "children": [ + "n518" + ], + "depth": 19, + "tag": "td" + }, + "n52": { + "childCount": 4, + "children": [ + "n49", + "n51" + ], + "depth": 12, + "tag": "div" + }, + "n520": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n521": { + "childCount": 1, + "children": [ + "n520" + ], + "depth": 20, + "tag": "div" + }, + "n522": { + "childCount": 2, + "children": [ + "n521" + ], + "depth": 19, + "tag": "td" + }, + "n523": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n524": { + "childCount": 1, + "children": [ + "n523" + ], + "depth": 20, + "tag": "div" + }, + "n525": { + "childCount": 2, + "children": [ + "n524" + ], + "depth": 19, + "tag": "td" + }, + "n526": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n527": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n528": { + "childCount": 2, + "children": [ + "n526", + "n527" + ], + "depth": 23, + "tag": "span" + }, + "n529": { + "childCount": 3, + "children": [ + "n528" + ], + "depth": 22, + "tag": "span" + }, + "n53": { + "childCount": 10, + "children": [ + "n47", + "n52" + ], + "depth": 11, + "tag": "div" + }, + "n530": { + "childCount": 4, + "children": [ + "n529" + ], + "depth": 21, + "tag": "span" + }, + "n531": { + "childCount": 5, + "children": [ + "n530" + ], + "depth": 20, + "tag": "div" + }, + "n532": { + "childCount": 6, + "children": [ + "n531" + ], + "depth": 19, + "tag": "td" + }, + "n533": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n534": { + "childCount": 1, + "children": [ + "n533" + ], + "depth": 22, + "tag": "button" + }, + "n535": { + "childCount": 2, + "children": [ + "n534" + ], + "depth": 21, + "tag": "span" + }, + "n536": { + "childCount": 3, + "children": [ + "n535" + ], + "depth": 20, + "tag": "div" + }, + "n537": { + "childCount": 4, + "children": [ + "n536" + ], + "depth": 19, + "tag": "td" + }, + "n538": { + "childCount": 35, + "children": [ + "n508", + "n511", + "n516", + "n519", + "n522", + "n525", + "n532", + "n537" + ], + "depth": 18, + "tag": "tr" + }, + "n539": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n54": { + "childCount": 16, + "children": [ + "n42", + "n53" + ], + "depth": 10, + "tag": "div" + }, + "n540": { + "childCount": 1, + "children": [ + "n539" + ], + "depth": 23, + "tag": "span" + }, + "n541": { + "childCount": 2, + "children": [ + "n540" + ], + "depth": 22, + "tag": "span" + }, + "n542": { + "childCount": 3, + "children": [ + "n541" + ], + "depth": 21, + "tag": "span" + }, + "n543": { + "childCount": 4, + "children": [ + "n542" + ], + "depth": 20, + "tag": "div" + }, + "n544": { + "childCount": 5, + "children": [ + "n543" + ], + "depth": 19, + "tag": "td" + }, + "n545": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n546": { + "childCount": 1, + "children": [ + "n545" + ], + "depth": 20, + "tag": "div" + }, + "n547": { + "childCount": 2, + "children": [ + "n546" + ], + "depth": 19, + "tag": "td" + }, + "n548": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n549": { + "childCount": 1, + "children": [ + "n548" + ], + "depth": 22, + "tag": "div" + }, + "n55": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n550": { + "childCount": 2, + "children": [ + "n549" + ], + "depth": 21, + "tag": "span" + }, + "n551": { + "childCount": 3, + "children": [ + "n550" + ], + "depth": 20, + "tag": "div" + }, + "n552": { + "childCount": 4, + "children": [ + "n551" + ], + "depth": 19, + "tag": "td" + }, + "n553": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n554": { + "childCount": 1, + "children": [ + "n553" + ], + "depth": 20, + "tag": "div" + }, + "n555": { + "childCount": 2, + "children": [ + "n554" + ], + "depth": 19, + "tag": "td" + }, + "n556": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n557": { + "childCount": 1, + "children": [ + "n556" + ], + "depth": 20, + "tag": "div" + }, + "n558": { + "childCount": 2, + "children": [ + "n557" + ], + "depth": 19, + "tag": "td" + }, + "n559": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n56": { + "childCount": 1, + "children": [ + "n55" + ], + "depth": 12, + "tag": "span" + }, + "n560": { + "childCount": 1, + "children": [ + "n559" + ], + "depth": 20, + "tag": "div" + }, + "n561": { + "childCount": 2, + "children": [ + "n560" + ], + "depth": 19, + "tag": "td" + }, + "n562": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n563": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n564": { + "childCount": 2, + "children": [ + "n562", + "n563" + ], + "depth": 23, + "tag": "span" + }, + "n565": { + "childCount": 3, + "children": [ + "n564" + ], + "depth": 22, + "tag": "span" + }, + "n566": { + "childCount": 4, + "children": [ + "n565" + ], + "depth": 21, + "tag": "span" + }, + "n567": { + "childCount": 5, + "children": [ + "n566" + ], + "depth": 20, + "tag": "div" + }, + "n568": { + "childCount": 6, + "children": [ + "n567" + ], + "depth": 19, + "tag": "td" + }, + "n569": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n57": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n570": { + "childCount": 1, + "children": [ + "n569" + ], + "depth": 22, + "tag": "button" + }, + "n571": { + "childCount": 2, + "children": [ + "n570" + ], + "depth": 21, + "tag": "span" + }, + "n572": { + "childCount": 3, + "children": [ + "n571" + ], + "depth": 20, + "tag": "div" + }, + "n573": { + "childCount": 4, + "children": [ + "n572" + ], + "depth": 19, + "tag": "td" + }, + "n574": { + "childCount": 35, + "children": [ + "n544", + "n547", + "n552", + "n555", + "n558", + "n561", + "n568", + "n573" + ], + "depth": 18, + "tag": "tr" + }, + "n575": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n576": { + "childCount": 1, + "children": [ + "n575" + ], + "depth": 23, + "tag": "span" + }, + "n577": { + "childCount": 2, + "children": [ + "n576" + ], + "depth": 22, + "tag": "span" + }, + "n578": { + "childCount": 3, + "children": [ + "n577" + ], + "depth": 21, + "tag": "span" + }, + "n579": { + "childCount": 4, + "children": [ + "n578" + ], + "depth": 20, + "tag": "div" + }, + "n58": { + "childCount": 1, + "children": [ + "n57" + ], + "depth": 12, + "tag": "span" + }, + "n580": { + "childCount": 5, + "children": [ + "n579" + ], + "depth": 19, + "tag": "td" + }, + "n581": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n582": { + "childCount": 1, + "children": [ + "n581" + ], + "depth": 20, + "tag": "div" + }, + "n583": { + "childCount": 2, + "children": [ + "n582" + ], + "depth": 19, + "tag": "td" + }, + "n584": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n585": { + "childCount": 1, + "children": [ + "n584" + ], + "depth": 22, + "tag": "div" + }, + "n586": { + "childCount": 2, + "children": [ + "n585" + ], + "depth": 21, + "tag": "span" + }, + "n587": { + "childCount": 3, + "children": [ + "n586" + ], + "depth": 20, + "tag": "div" + }, + "n588": { + "childCount": 4, + "children": [ + "n587" + ], + "depth": 19, + "tag": "td" + }, + "n589": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n59": { + "childCount": 4, + "children": [ + "n56", + "n58" + ], + "depth": 11, + "role": "header", + "tag": "div" + }, + "n590": { + "childCount": 1, + "children": [ + "n589" + ], + "depth": 20, + "tag": "div" + }, + "n591": { + "childCount": 2, + "children": [ + "n590" + ], + "depth": 19, + "tag": "td" + }, + "n592": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n593": { + "childCount": 1, + "children": [ + "n592" + ], + "depth": 20, + "tag": "div" + }, + "n594": { + "childCount": 2, + "children": [ + "n593" + ], + "depth": 19, + "tag": "td" + }, + "n595": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n596": { + "childCount": 1, + "children": [ + "n595" + ], + "depth": 20, + "tag": "div" + }, + "n597": { + "childCount": 2, + "children": [ + "n596" + ], + "depth": 19, + "tag": "td" + }, + "n598": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n599": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n6": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n60": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n600": { + "childCount": 2, + "children": [ + "n598", + "n599" + ], + "depth": 23, + "tag": "span" + }, + "n601": { + "childCount": 3, + "children": [ + "n600" + ], + "depth": 22, + "tag": "span" + }, + "n602": { + "childCount": 4, + "children": [ + "n601" + ], + "depth": 21, + "tag": "span" + }, + "n603": { + "childCount": 5, + "children": [ + "n602" + ], + "depth": 20, + "tag": "div" + }, + "n604": { + "childCount": 6, + "children": [ + "n603" + ], + "depth": 19, + "tag": "td" + }, + "n605": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n606": { + "childCount": 1, + "children": [ + "n605" + ], + "depth": 22, + "tag": "button" + }, + "n607": { + "childCount": 2, + "children": [ + "n606" + ], + "depth": 21, + "tag": "span" + }, + "n608": { + "childCount": 3, + "children": [ + "n607" + ], + "depth": 20, + "tag": "div" + }, + "n609": { + "childCount": 4, + "children": [ + "n608" + ], + "depth": 19, + "tag": "td" + }, + "n61": { + "childCount": 1, + "children": [ + "n60" + ], + "depth": 13, + "tag": "span" + }, + "n610": { + "childCount": 35, + "children": [ + "n580", + "n583", + "n588", + "n591", + "n594", + "n597", + "n604", + "n609" + ], + "depth": 18, + "tag": "tr" + }, + "n611": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n612": { + "childCount": 1, + "children": [ + "n611" + ], + "depth": 23, + "tag": "span" + }, + "n613": { + "childCount": 2, + "children": [ + "n612" + ], + "depth": 22, + "tag": "span" + }, + "n614": { + "childCount": 3, + "children": [ + "n613" + ], + "depth": 21, + "tag": "span" + }, + "n615": { + "childCount": 4, + "children": [ + "n614" + ], + "depth": 20, + "tag": "div" + }, + "n616": { + "childCount": 5, + "children": [ + "n615" + ], + "depth": 19, + "tag": "td" + }, + "n617": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n618": { + "childCount": 1, + "children": [ + "n617" + ], + "depth": 20, + "tag": "div" + }, + "n619": { + "childCount": 2, + "children": [ + "n618" + ], + "depth": 19, + "tag": "td" + }, + "n62": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n620": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n621": { + "childCount": 1, + "children": [ + "n620" + ], + "depth": 22, + "tag": "div" + }, + "n622": { + "childCount": 2, + "children": [ + "n621" + ], + "depth": 21, + "tag": "span" + }, + "n623": { + "childCount": 3, + "children": [ + "n622" + ], + "depth": 20, + "tag": "div" + }, + "n624": { + "childCount": 4, + "children": [ + "n623" + ], + "depth": 19, + "tag": "td" + }, + "n625": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n626": { + "childCount": 1, + "children": [ + "n625" + ], + "depth": 20, + "tag": "div" + }, + "n627": { + "childCount": 2, + "children": [ + "n626" + ], + "depth": 19, + "tag": "td" + }, + "n628": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n629": { + "childCount": 1, + "children": [ + "n628" + ], + "depth": 20, + "tag": "div" + }, + "n63": { + "childCount": 1, + "children": [ + "n62" + ], + "depth": 13, + "tag": "span" + }, + "n630": { + "childCount": 2, + "children": [ + "n629" + ], + "depth": 19, + "tag": "td" + }, + "n631": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n632": { + "childCount": 1, + "children": [ + "n631" + ], + "depth": 20, + "tag": "div" + }, + "n633": { + "childCount": 2, + "children": [ + "n632" + ], + "depth": 19, + "tag": "td" + }, + "n634": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n635": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n636": { + "childCount": 2, + "children": [ + "n634", + "n635" + ], + "depth": 23, + "tag": "span" + }, + "n637": { + "childCount": 3, + "children": [ + "n636" + ], + "depth": 22, + "tag": "span" + }, + "n638": { + "childCount": 4, + "children": [ + "n637" + ], + "depth": 21, + "tag": "span" + }, + "n639": { + "childCount": 5, + "children": [ + "n638" + ], + "depth": 20, + "tag": "div" + }, + "n64": { + "childCount": 4, + "children": [ + "n61", + "n63" + ], + "depth": 12, + "tag": "div" + }, + "n640": { + "childCount": 6, + "children": [ + "n639" + ], + "depth": 19, + "tag": "td" + }, + "n641": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n642": { + "childCount": 1, + "children": [ + "n641" + ], + "depth": 22, + "tag": "button" + }, + "n643": { + "childCount": 2, + "children": [ + "n642" + ], + "depth": 21, + "tag": "span" + }, + "n644": { + "childCount": 3, + "children": [ + "n643" + ], + "depth": 20, + "tag": "div" + }, + "n645": { + "childCount": 4, + "children": [ + "n644" + ], + "depth": 19, + "tag": "td" + }, + "n646": { + "childCount": 35, + "children": [ + "n616", + "n619", + "n624", + "n627", + "n630", + "n633", + "n640", + "n645" + ], + "depth": 18, + "tag": "tr" + }, + "n647": { + "childCount": 0, + "depth": 24, + "tag": "svg" + }, + "n648": { + "childCount": 1, + "children": [ + "n647" + ], + "depth": 23, + "tag": "span" + }, + "n649": { + "childCount": 2, + "children": [ + "n648" + ], + "depth": 22, + "tag": "span" + }, + "n65": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n650": { + "childCount": 3, + "children": [ + "n649" + ], + "depth": 21, + "tag": "span" + }, + "n651": { + "childCount": 4, + "children": [ + "n650" + ], + "depth": 20, + "tag": "div" + }, + "n652": { + "childCount": 5, + "children": [ + "n651" + ], + "depth": 19, + "tag": "td" + }, + "n653": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n654": { + "childCount": 1, + "children": [ + "n653" + ], + "depth": 20, + "tag": "div" + }, + "n655": { + "childCount": 2, + "children": [ + "n654" + ], + "depth": 19, + "tag": "td" + }, + "n656": { + "childCount": 0, + "depth": 23, + "tag": "svg" + }, + "n657": { + "childCount": 1, + "children": [ + "n656" + ], + "depth": 22, + "tag": "div" + }, + "n658": { + "childCount": 2, + "children": [ + "n657" + ], + "depth": 21, + "tag": "span" + }, + "n659": { + "childCount": 3, + "children": [ + "n658" + ], + "depth": 20, + "tag": "div" + }, + "n66": { + "childCount": 1, + "children": [ + "n65" + ], + "depth": 13, + "tag": "span" + }, + "n660": { + "childCount": 4, + "children": [ + "n659" + ], + "depth": 19, + "tag": "td" + }, + "n661": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n662": { + "childCount": 1, + "children": [ + "n661" + ], + "depth": 20, + "tag": "div" + }, + "n663": { + "childCount": 2, + "children": [ + "n662" + ], + "depth": 19, + "tag": "td" + }, + "n664": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n665": { + "childCount": 1, + "children": [ + "n664" + ], + "depth": 20, + "tag": "div" + }, + "n666": { + "childCount": 2, + "children": [ + "n665" + ], + "depth": 19, + "tag": "td" + }, + "n667": { + "childCount": 0, + "depth": 21, + "tag": "span" + }, + "n668": { + "childCount": 1, + "children": [ + "n667" + ], + "depth": 20, + "tag": "div" + }, + "n669": { + "childCount": 2, + "children": [ + "n668" + ], + "depth": 19, + "tag": "td" + }, + "n67": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n670": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n671": { + "childCount": 0, + "depth": 24, + "tag": "span" + }, + "n672": { + "childCount": 2, + "children": [ + "n670", + "n671" + ], + "depth": 23, + "tag": "span" + }, + "n673": { + "childCount": 3, + "children": [ + "n672" + ], + "depth": 22, + "tag": "span" + }, + "n674": { + "childCount": 4, + "children": [ + "n673" + ], + "depth": 21, + "tag": "span" + }, + "n675": { + "childCount": 5, + "children": [ + "n674" + ], + "depth": 20, + "tag": "div" + }, + "n676": { + "childCount": 6, + "children": [ + "n675" + ], + "depth": 19, + "tag": "td" + }, + "n677": { + "childCount": 0, + "depth": 23, + "tag": "span" + }, + "n678": { + "childCount": 1, + "children": [ + "n677" + ], + "depth": 22, + "tag": "button" + }, + "n679": { + "childCount": 2, + "children": [ + "n678" + ], + "depth": 21, + "tag": "span" + }, + "n68": { + "childCount": 1, + "children": [ + "n67" + ], + "depth": 13, + "tag": "span" + }, + "n680": { + "childCount": 3, + "children": [ + "n679" + ], + "depth": 20, + "tag": "div" + }, + "n681": { + "childCount": 4, + "children": [ + "n680" + ], + "depth": 19, + "tag": "td" + }, + "n682": { + "childCount": 35, + "children": [ + "n652", + "n655", + "n660", + "n663", + "n666", + "n669", + "n676", + "n681" + ], + "depth": 18, + "tag": "tr" + }, + "n683": { + "childCount": 360, + "children": [ + "n358", + "n394", + "n430", + "n466", + "n502", + "n538", + "n574", + "n610", + "n646", + "n682" + ], + "depth": 17, + "tag": "tbody" + }, + "n684": { + "childCount": 408, + "children": [ + "n284", + "n322", + "n683" + ], + "depth": 16, + "tag": "table" + }, + "n685": { + "childCount": 409, + "children": [ + "n684" + ], + "depth": 15, + "tag": "div" + }, + "n686": { + "childCount": 410, + "children": [ + "n685" + ], + "depth": 14, + "tag": "div" + }, + "n687": { + "childCount": 411, + "children": [ + "n686" + ], + "depth": 13, + "tag": "div" + }, + "n688": { + "childCount": 0, + "depth": 15, + "tag": "div" + }, + "n689": { + "childCount": 0, + "depth": 17, + "tag": "svg" + }, + "n69": { + "childCount": 4, + "children": [ + "n66", + "n68" + ], + "depth": 12, + "tag": "div" + }, + "n690": { + "childCount": 1, + "children": [ + "n689" + ], + "depth": 16, + "tag": "li" + }, + "n691": { + "childCount": 0, + "depth": 16, + "tag": "li" + }, + "n692": { + "childCount": 0, + "depth": 16, + "tag": "li" + }, + "n693": { + "childCount": 0, + "depth": 16, + "tag": "li" + }, + "n694": { + "childCount": 0, + "depth": 16, + "tag": "li" + }, + "n695": { + "childCount": 0, + "depth": 16, + "tag": "li" + }, + "n696": { + "childCount": 0, + "depth": 17, + "tag": "svg" + }, + "n697": { + "childCount": 1, + "children": [ + "n696" + ], + "depth": 16, + "tag": "li" + }, + "n698": { + "childCount": 0, + "depth": 16, + "tag": "li" + }, + "n699": { + "childCount": 0, + "depth": 17, + "tag": "svg" + }, + "n7": { + "childCount": 1, + "children": [ + "n6" + ], + "depth": 12, + "tag": "span" + }, + "n70": { + "childCount": 10, + "children": [ + "n64", + "n69" + ], + "depth": 11, + "tag": "div" + }, + "n700": { + "childCount": 1, + "children": [ + "n699" + ], + "depth": 16, + "tag": "li" + }, + "n701": { + "childCount": 12, + "children": [ + "n690", + "n691", + "n692", + "n693", + "n694", + "n695", + "n697", + "n698", + "n700" + ], + "depth": 15, + "tag": "ul" + }, + "n702": { + "childCount": 0, + "depth": 18, + "tag": "input" + }, + "n703": { + "childCount": 0, + "depth": 18, + "tag": "span" + }, + "n704": { + "childCount": 0, + "depth": 20, + "tag": "svg" + }, + "n705": { + "childCount": 1, + "children": [ + "n704" + ], + "depth": 19, + "tag": "div" + }, + "n706": { + "childCount": 2, + "children": [ + "n705" + ], + "depth": 18, + "tag": "div" + }, + "n707": { + "childCount": 5, + "children": [ + "n702", + "n703", + "n706" + ], + "depth": 17, + "tag": "div" + }, + "n708": { + "childCount": 6, + "children": [ + "n707" + ], + "depth": 16, + "tag": "div" + }, + "n709": { + "childCount": 7, + "children": [ + "n708" + ], + "depth": 15, + "tag": "div" + }, + "n71": { + "childCount": 16, + "children": [ + "n59", + "n70" + ], + "depth": 10, + "tag": "div" + }, + "n710": { + "childCount": 22, + "children": [ + "n688", + "n701", + "n709" + ], + "depth": 14, + "tag": "div" + }, + "n711": { + "childCount": 23, + "children": [ + "n710" + ], + "depth": 13, + "tag": "div" + }, + "n712": { + "childCount": 436, + "children": [ + "n687", + "n711" + ], + "depth": 12, + "tag": "div" + }, + "n713": { + "childCount": 437, + "children": [ + "n712" + ], + "depth": 11, + "tag": "div" + }, + "n714": { + "childCount": 438, + "children": [ + "n713" + ], + "depth": 10, + "tag": "div" + }, + "n715": { + "childCount": 552, + "children": [ + "n163", + "n261", + "n275", + "n714" + ], + "depth": 9, + "tag": "div" + }, + "n716": { + "childCount": 553, + "children": [ + "n715" + ], + "depth": 8, + "tag": "div" + }, + "n717": { + "childCount": 554, + "children": [ + "n716" + ], + "depth": 7, + "role": "main", + "tag": "main" + }, + "n718": { + "childCount": 571, + "children": [ + "n162", + "n717" + ], + "depth": 6, + "tag": "div" + }, + "n719": { + "childCount": 0, + "depth": 6, + "role": "footer", + "tag": "footer" + }, + "n72": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n720": { + "childCount": 573, + "children": [ + "n718", + "n719" + ], + "depth": 5, + "role": "section", + "tag": "section" + }, + "n721": { + "childCount": 720, + "children": [ + "n146", + "n720" + ], + "depth": 4, + "role": "section", + "tag": "section" + }, + "n722": { + "childCount": 721, + "children": [ + "n721" + ], + "depth": 3, + "role": "section", + "tag": "section" + }, + "n723": { + "childCount": 722, + "children": [ + "n722" + ], + "depth": 2, + "tag": "div" + }, + "n724": { + "childCount": 0, + "depth": 2, + "tag": "div" + }, + "n725": { + "childCount": 0, + "depth": 2, + "tag": "div" + }, + "n726": { + "childCount": 0, + "depth": 2, + "tag": "div" + }, + "n727": { + "childCount": 0, + "depth": 2, + "tag": "div" + }, + "n728": { + "childCount": 727, + "children": [ + "n723", + "n724", + "n725", + "n726", + "n727" + ], + "depth": 1, + "tag": "body" + }, + "n729": { + "childCount": 728, + "children": [ + "n728" + ], + "depth": 0, + "tag": "root" + }, + "n73": { + "childCount": 1, + "children": [ + "n72" + ], + "depth": 12, + "tag": "span" + }, + "n74": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n75": { + "childCount": 1, + "children": [ + "n74" + ], + "depth": 12, + "tag": "span" + }, + "n76": { + "childCount": 4, + "children": [ + "n73", + "n75" + ], + "depth": 11, + "role": "header", + "tag": "div" + }, + "n77": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n78": { + "childCount": 1, + "children": [ + "n77" + ], + "depth": 13, + "tag": "span" + }, + "n79": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n8": { + "childCount": 4, + "children": [ + "n5", + "n7" + ], + "depth": 11, + "role": "header", + "tag": "div" + }, + "n80": { + "childCount": 1, + "children": [ + "n79" + ], + "depth": 13, + "tag": "span" + }, + "n81": { + "childCount": 4, + "children": [ + "n78", + "n80" + ], + "depth": 12, + "tag": "div" + }, + "n82": { + "childCount": 5, + "children": [ + "n81" + ], + "depth": 11, + "tag": "div" + }, + "n83": { + "childCount": 11, + "children": [ + "n76", + "n82" + ], + "depth": 10, + "tag": "div" + }, + "n84": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n85": { + "childCount": 1, + "children": [ + "n84" + ], + "depth": 12, + "tag": "span" + }, + "n86": { + "childCount": 0, + "depth": 13, + "tag": "svg" + }, + "n87": { + "childCount": 1, + "children": [ + "n86" + ], + "depth": 12, + "tag": "span" + }, + "n88": { + "childCount": 4, + "children": [ + "n85", + "n87" + ], + "depth": 11, + "role": "header", + "tag": "div" + }, + "n89": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n9": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n90": { + "childCount": 1, + "children": [ + "n89" + ], + "depth": 13, + "tag": "span" + }, + "n91": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n92": { + "childCount": 1, + "children": [ + "n91" + ], + "depth": 13, + "tag": "span" + }, + "n93": { + "childCount": 4, + "children": [ + "n90", + "n92" + ], + "depth": 12, + "tag": "div" + }, + "n94": { + "childCount": 0, + "depth": 14, + "tag": "span" + }, + "n95": { + "childCount": 1, + "children": [ + "n94" + ], + "depth": 13, + "tag": "span" + }, + "n96": { + "childCount": 0, + "depth": 14, + "tag": "div" + }, + "n97": { + "childCount": 1, + "children": [ + "n96" + ], + "depth": 13, + "tag": "span" + }, + "n98": { + "childCount": 4, + "children": [ + "n95", + "n97" + ], + "depth": 12, + "tag": "div" + }, + "n99": { + "childCount": 10, + "children": [ + "n93", + "n98" + ], + "depth": 11, + "tag": "div" + } + }, + "pageTitle": "Arco Design Themes Demos", + "root": "n729", + "sourceUrl": "https://arco.design/themes/demo/preview/list/search-table", + "styleCount": 130, + "viewport": { + "height": 869, + "width": 1800 + } +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_1.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_1.json new file mode 100644 index 0000000..0be39bc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_1.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_1", + "tw": "inline static font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_10.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_10.json new file mode 100644 index 0000000..5bc55a5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_10.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip", + "transition": "height 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "styleId": "style_10", + "tw": "block static font-normal leading-snug border-0 visible m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_100.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_100.json new file mode 100644 index 0000000..a302cbb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_100.json @@ -0,0 +1,15 @@ +{ + "custom": { + "background": "rgb(245, 63, 63) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(245, 63, 63)", + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "50%", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textOverflow": "clip" + }, + "styleId": "style_100", + "tw": "block static font-normal leading-none text-left break-all border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_101.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_101.json new file mode 100644 index 0000000..103572e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_101.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(128, 128, 128)", + "borderColor": "rgb(128, 128, 128)", + "color": "rgb(78, 89, 105)", + "display": "table-row-group", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_101", + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_102.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_102.json new file mode 100644 index 0000000..1589228 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_102.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(128, 128, 128)", + "borderColor": "rgb(128, 128, 128)", + "color": "rgb(78, 89, 105)", + "display": "table", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "100%", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_102", + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_103.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_103.json new file mode 100644 index 0000000..3b755c5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_103.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_103", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_104.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_104.json new file mode 100644 index 0000000..4b0dc40 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_104.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_104", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_105.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_105.json new file mode 100644 index 0000000..629797f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_105.json @@ -0,0 +1,22 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "4px 4px 0px 0px", + "borderTopLeftRadius": "4px", + "borderTopRightRadius": "4px", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_105", + "tw": "block relative font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_106.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_106.json new file mode 100644 index 0000000..413e246 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_106.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_106", + "tw": "block static font-normal border-0 visible mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_107.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_107.json new file mode 100644 index 0000000..7051855 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_107.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(201, 205, 212)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip" + }, + "styleId": "style_107", + "tw": "inline-block static font-normal text-center border-0 visible cursor-not-allowed mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_108.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_108.json new file mode 100644 index 0000000..8aea450 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_108.json @@ -0,0 +1,22 @@ +{ + "custom": { + "background": "rgb(232, 243, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(232, 243, 255)", + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip", + "transition": "color 0.2s cubic-bezier(0, 0, 1, 1), background-color 0.2s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_108", + "tw": "inline-block static font-normal text-center border-0 visible cursor-pointer mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_109.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_109.json new file mode 100644 index 0000000..0daaad5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_109.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip" + }, + "styleId": "style_109", + "tw": "inline-block static font-normal text-center border-0 visible cursor-pointer mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_11.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_11.json new file mode 100644 index 0000000..b2cf8f7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_11.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_11", + "tw": "block static font-normal leading-snug border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_110.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_110.json new file mode 100644 index 0000000..1db2328 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_110.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "16px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip" + }, + "styleId": "style_110", + "tw": "inline-flex static justify-center items-center font-normal text-center border-0 visible cursor-pointer mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_111.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_111.json new file mode 100644 index 0000000..7b528ec --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_111.json @@ -0,0 +1,17 @@ +{ + "custom": { + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "lineHeight": "32px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip" + }, + "styleId": "style_111", + "tw": "inline-block static font-normal text-center border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_112.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_112.json new file mode 100644 index 0000000..8e6bc62 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_112.json @@ -0,0 +1,23 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "13.9062px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetBlockEnd": "13.9062px", + "insetInlineEnd": "-11px", + "insetInlineStart": "11px", + "left": "11px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "clip", + "right": "-11px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px" + }, + "styleId": "style_112", + "tw": "block absolute -z-0 font-normal leading-none whitespace-nowrap border-0 opacity-0 visible cursor-pointer m-0 p-0" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_113.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_113.json new file mode 100644 index 0000000..d75e648 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_113.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "padding": "0px 6px 0px 0px", + "paddingInlineEnd": "6px", + "textOverflow": "ellipsis" + }, + "styleId": "style_113", + "tw": "block static font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 pt-0 pr-1.5 pb-0 pl-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_114.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_114.json new file mode 100644 index 0000000..0ab3ffa --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_114.json @@ -0,0 +1,12 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "textOverflow": "clip" + }, + "styleId": "style_114", + "tw": "block static font-normal leading-7 text-left border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_115.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_115.json new file mode 100644 index 0000000..6473030 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_115.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "textOverflow": "clip" + }, + "styleId": "style_115", + "tw": "flex static items-center font-normal leading-7 text-left border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-1 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_116.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_116.json new file mode 100644 index 0000000..77e7055 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_116.json @@ -0,0 +1,26 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "2px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 11px", + "paddingInlineEnd": "11px", + "paddingInlineStart": "11px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1), padding linear" + }, + "styleId": "style_116", + "tw": "flex relative font-normal leading-7 text-left border visible cursor-pointer m-0 pt-0 pr-2.5 pb-0 pl-2.5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_117.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_117.json new file mode 100644 index 0000000..14435f3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_117.json @@ -0,0 +1,18 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_117", + "tw": "inline-block relative font-normal leading-3 text-center border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_118.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_118.json new file mode 100644 index 0000000..3f8ef16 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_118.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_118", + "tw": "block relative font-normal leading-3 text-center border-0 visible mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_119.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_119.json new file mode 100644 index 0000000..37c0cad --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_119.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "12px 0px 0px", + "marginBlockStart": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_119", + "tw": "flex static items-center font-normal leading-tight border-0 visible mt-3 mr-0 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_12.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_12.json new file mode 100644 index 0000000..de6a3a0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_12.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_12", + "tw": "inline static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_120.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_120.json new file mode 100644 index 0000000..901ff35 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_120.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_120", + "tw": "flex static justify-end font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_121.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_121.json new file mode 100644 index 0000000..264d09c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_121.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_121", + "tw": "block relative font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_122.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_122.json new file mode 100644 index 0000000..6a666f1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_122.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "paddingBlockEnd": "20px", + "paddingBlockStart": "20px", + "paddingInlineEnd": "20px", + "paddingInlineStart": "20px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_122", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_123.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_123.json new file mode 100644 index 0000000..e184941 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_123.json @@ -0,0 +1,22 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "bottom": "0px", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "box-shadow 0.2s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_123", + "tw": "block relative font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_124.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_124.json new file mode 100644 index 0000000..3f42cc7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_124.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_124", + "tw": "block static grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_125.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_125.json new file mode 100644 index 0000000..71b893b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_125.json @@ -0,0 +1,17 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "padding": "16px 20px 0px", + "paddingBlockStart": "16px", + "paddingInlineEnd": "20px", + "paddingInlineStart": "20px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_125", + "tw": "block static font-normal leading-tight border-0 visible m-0 pt-4 pr-5 pb-0 pl-5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_126.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_126.json new file mode 100644 index 0000000..64d381b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_126.json @@ -0,0 +1,12 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textOverflow": "clip" + }, + "styleId": "style_126", + "tw": "flex static justify-center items-center shrink-0 font-normal leading-tight text-center border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_127.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_127.json new file mode 100644 index 0000000..8bf45aa --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_127.json @@ -0,0 +1,21 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "921px", + "minWidth": "1100px", + "overflow": "hidden auto", + "padding": "0px 0px 0px 220px", + "paddingInlineStart": "220px", + "textAlign": "start", + "textOverflow": "clip", + "transition": "padding-left 0.2s" + }, + "styleId": "style_127", + "tw": "flex static flex-col grow basis-1/12 font-normal leading-tight border-0 visible m-0 pt-0 pr-0 pb-0 pl-56 overflow-x-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_128.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_128.json new file mode 100644 index 0000000..960b810 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_128.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_128", + "tw": "flex static grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_129.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_129.json new file mode 100644 index 0000000..af8f587 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_129.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_129", + "tw": "flex static flex-col grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_13.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_13.json new file mode 100644 index 0000000..3ad4f63 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_13.json @@ -0,0 +1,24 @@ +{ + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "bottom": "-20px", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetBlockEnd": "-20px", + "insetBlockStart": "20px", + "insetInlineEnd": "12px", + "insetInlineStart": "178px", + "left": "178px", + "minHeight": "0px", + "minWidth": "0px", + "right": "12px", + "textAlign": "start", + "textOverflow": "clip", + "top": "20px", + "transform": "matrix(-1, 0, 0, -1, 0, -20)" + }, + "styleId": "style_13", + "tw": "block absolute font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_130.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_130.json new file mode 100644 index 0000000..483d372 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_130.json @@ -0,0 +1,17 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_130", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_14.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_14.json new file mode 100644 index 0000000..b3372ab --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_14.json @@ -0,0 +1,28 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 28px 0px 12px", + "paddingInlineEnd": "28px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px", + "transition": "color 0.2s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_14", + "tw": "block relative font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-7 pb-0 pl-3 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_15.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_15.json new file mode 100644 index 0000000..0ae8921 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_15.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_15", + "tw": "inline-block static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_16.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_16.json new file mode 100644 index 0000000..2a04975 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_16.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_16", + "tw": "block static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_17.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_17.json new file mode 100644 index 0000000..21d95a8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_17.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "styleId": "style_17", + "tw": "block static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_18.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_18.json new file mode 100644 index 0000000..44fe8d0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_18.json @@ -0,0 +1,28 @@ +{ + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px", + "transition": "color 0.2s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_18", + "tw": "flex relative font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-3 pb-0 pl-3 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_19.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_19.json new file mode 100644 index 0000000..fddf85c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_19.json @@ -0,0 +1,20 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "4px 8px", + "paddingBlockEnd": "4px", + "paddingBlockStart": "4px", + "paddingInlineEnd": "8px", + "paddingInlineStart": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_19", + "tw": "block static font-normal leading-snug border-0 visible m-0 pt-1 pr-2 pb-1 pl-2" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_2.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_2.json new file mode 100644 index 0000000..9e8dfd4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_2.json @@ -0,0 +1,27 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px" + }, + "styleId": "style_2", + "tw": "block relative font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-3 pb-0 pl-3 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_20.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_20.json new file mode 100644 index 0000000..dab83c1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_20.json @@ -0,0 +1,22 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "bottom": "0px", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "width 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "styleId": "style_20", + "tw": "block relative font-normal leading-snug border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_21.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_21.json new file mode 100644 index 0000000..02e6873 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_21.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_21", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_22.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_22.json new file mode 100644 index 0000000..6eacaa5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_22.json @@ -0,0 +1,26 @@ +{ + "custom": { + "background": "rgb(247, 248, 250) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(247, 248, 250)", + "border": "0px none rgb(134, 144, 156)", + "borderColor": "rgb(134, 144, 156)", + "borderRadius": "2px", + "bottom": "12px", + "color": "rgb(134, 144, 156)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetBlockEnd": "12px", + "insetBlockStart": "885px", + "insetInlineEnd": "12px", + "insetInlineStart": "184px", + "left": "184px", + "minHeight": "0px", + "minWidth": "0px", + "right": "12px", + "textAlign": "start", + "textOverflow": "clip", + "top": "885px" + }, + "styleId": "style_22", + "tw": "flex absolute justify-center items-center font-normal leading-tight border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_23.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_23.json new file mode 100644 index 0000000..27c29ca --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_23.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "auto hidden", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_23", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-y-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_24.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_24.json new file mode 100644 index 0000000..2c85b7a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_24.json @@ -0,0 +1,24 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "bottom": "0px", + "boxShadow": "rgba(0, 0, 0, 0.08) 0px 2px 5px 0px", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetInlineEnd": "1565px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "1565px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "width 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "styleId": "style_24", + "tw": "block fixed shrink-0 z-50 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_25.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_25.json new file mode 100644 index 0000000..2bd209b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_25.json @@ -0,0 +1,18 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 4px", + "paddingInlineEnd": "4px", + "paddingInlineStart": "4px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_25", + "tw": "inline-flex static items-center font-normal leading-normal border-0 visible m-0 pt-0 pr-1 pb-0 pl-1 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_26.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_26.json new file mode 100644 index 0000000..78bcc55 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_26.json @@ -0,0 +1,18 @@ +{ + "custom": { + "border": "0px none rgb(201, 205, 212)", + "borderColor": "rgb(201, 205, 212)", + "color": "rgb(201, 205, 212)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 4px", + "marginInlineEnd": "4px", + "marginInlineStart": "4px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_26", + "tw": "inline-block static font-normal leading-normal border-0 visible mt-0 mr-1 mb-0 ml-1 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_27.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_27.json new file mode 100644 index 0000000..69f2bda --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_27.json @@ -0,0 +1,18 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 4px", + "paddingInlineEnd": "4px", + "paddingInlineStart": "4px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_27", + "tw": "inline-flex static items-center font-medium leading-normal border-0 visible m-0 pt-0 pr-1 pb-0 pl-1 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_28.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_28.json new file mode 100644 index 0000000..63bcd1b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_28.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_28", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_29.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_29.json new file mode 100644 index 0000000..0638972 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_29.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_29", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_3.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_3.json new file mode 100644 index 0000000..781c007 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_3.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_3", + "tw": "inline static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_30.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_30.json new file mode 100644 index 0000000..5b95cec --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_30.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_30", + "tw": "block static font-normal leading-tight border-0 visible mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_31.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_31.json new file mode 100644 index 0000000..1f83bb4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_31.json @@ -0,0 +1,26 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "10px", + "bottom": "2px", + "boxShadow": "rgb(134, 144, 156) 0px 1px 3px 0px", + "color": "rgb(229, 230, 235)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "insetBlockEnd": "2px", + "insetBlockStart": "2px", + "insetInlineEnd": "16px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "16px", + "textOverflow": "clip", + "top": "2px", + "transition": "0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "styleId": "style_31", + "tw": "flex absolute justify-center items-center font-normal leading-normal text-center border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_32.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_32.json new file mode 100644 index 0000000..b36f502 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_32.json @@ -0,0 +1,20 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "borderRadius": "12px", + "bottom": "0px", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "13.3333px", + "left": "0px", + "minHeight": "0px", + "minWidth": "36px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "background-color 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "styleId": "style_32", + "tw": "inline-block relative font-normal leading-normal text-center border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_33.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_33.json new file mode 100644 index 0000000..78e0a85 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_33.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_33", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_34.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_34.json new file mode 100644 index 0000000..f35632b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_34.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_34", + "tw": "flex static items-center font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_35.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_35.json new file mode 100644 index 0000000..d15e17a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_35.json @@ -0,0 +1,17 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 16px", + "marginBlockEnd": "16px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_35", + "tw": "flex static justify-between font-normal leading-tight border-0 visible mt-0 mr-0 mb-4 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_36.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_36.json new file mode 100644 index 0000000..fa9c4f5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_36.json @@ -0,0 +1,17 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "16px", + "margin": "0px 0px 16px", + "marginBlockEnd": "16px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_36", + "tw": "block static font-medium leading-normal break-all border-0 visible mt-0 mr-0 mb-4 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_37.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_37.json new file mode 100644 index 0000000..fc2a40f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_37.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "lineHeight": "32px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_37", + "tw": "inline static font-normal text-left whitespace-nowrap border-0 visible cursor-default m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_38.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_38.json new file mode 100644 index 0000000..cef6297 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_38.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "lineHeight": "32px", + "padding": "0px 16px 0px 0px", + "paddingInlineEnd": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_38", + "tw": "block relative shrink-0 basis-1/5 font-normal text-left whitespace-nowrap border-0 visible m-0 pt-0 pr-4 pb-0 pl-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_39.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_39.json new file mode 100644 index 0000000..1eb7096 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_39.json @@ -0,0 +1,18 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "overflow": "clip", + "padding": "4px 0px", + "paddingBlockEnd": "4px", + "paddingBlockStart": "4px", + "textAlign": "start", + "textOverflow": "clip", + "transition": "color 0.1s cubic-bezier(0, 0, 1, 1), border-color 0.1s cubic-bezier(0, 0, 1, 1), background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_39", + "tw": "block static font-normal leading-snug border-0 visible cursor-text m-0 pt-1 pr-0 pb-1 pl-0" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_4.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_4.json new file mode 100644 index 0000000..0d3128e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_4.json @@ -0,0 +1,24 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "-20px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetBlockEnd": "-20px", + "insetBlockStart": "20px", + "insetInlineEnd": "12px", + "insetInlineStart": "178px", + "left": "178px", + "minHeight": "0px", + "minWidth": "0px", + "right": "12px", + "textAlign": "start", + "textOverflow": "clip", + "top": "20px", + "transform": "matrix(1, 0, 0, 1, 0, -20)" + }, + "styleId": "style_4", + "tw": "block absolute font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_40.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_40.json new file mode 100644 index 0000000..4578a25 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_40.json @@ -0,0 +1,27 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "2px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "color 0.1s cubic-bezier(0, 0, 1, 1), border-color 0.1s cubic-bezier(0, 0, 1, 1), background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_40", + "tw": "inline-flex relative items-center font-normal leading-tight border visible m-0 pt-0 pr-3 pb-0 pl-3 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_41.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_41.json new file mode 100644 index 0000000..d33b40e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_41.json @@ -0,0 +1,17 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_41", + "tw": "block relative grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_42.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_42.json new file mode 100644 index 0000000..c689455 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_42.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "32px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_42", + "tw": "flex static items-center font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_43.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_43.json new file mode 100644 index 0000000..1d2c472 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_43.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_43", + "tw": "flex static flex-col items-start font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_44.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_44.json new file mode 100644 index 0000000..aefe8f7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_44.json @@ -0,0 +1,17 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_44", + "tw": "block relative shrink-0 basis-4/5 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_45.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_45.json new file mode 100644 index 0000000..83a6fdc --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_45.json @@ -0,0 +1,17 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 20px", + "marginBlockEnd": "20px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_45", + "tw": "flex static flex-wrap items-start font-normal leading-tight border-0 visible mt-0 mr-0 mb-5 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_46.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_46.json new file mode 100644 index 0000000..ccd3856 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_46.json @@ -0,0 +1,20 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_46", + "tw": "block relative shrink-0 basis-1/3 font-normal leading-tight border-0 visible m-0 pt-0 pr-3 pb-0 pl-3 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_47.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_47.json new file mode 100644 index 0000000..f82bbd0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_47.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "overflow": "clip", + "padding": "0px 0px 0px 8px", + "paddingInlineStart": "8px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "styleId": "style_47", + "tw": "block static max-w-full font-normal leading-none whitespace-nowrap border-0 visible cursor-text m-0 pt-0 pr-0 pb-0 pl-2" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_48.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_48.json new file mode 100644 index 0000000..dac22cd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_48.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "padding": "1px 0px", + "paddingBlockEnd": "1px", + "paddingBlockStart": "1px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_48", + "tw": "flex relative flex-wrap items-center grow font-normal leading-3 text-left border-0 visible cursor-text m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_49.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_49.json new file mode 100644 index 0000000..9beaa7f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_49.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "30px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_49", + "tw": "flex static font-normal leading-3 text-left border-0 visible cursor-text m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_5.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_5.json new file mode 100644 index 0000000..5725f02 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_5.json @@ -0,0 +1,27 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 28px 0px 12px", + "paddingInlineEnd": "28px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px" + }, + "styleId": "style_5", + "tw": "block relative font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-7 pb-0 pl-3 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_50.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_50.json new file mode 100644 index 0000000..a6f5a3e --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_50.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "2px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textOverflow": "clip", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_50", + "tw": "block static grow basis-1/12 font-normal leading-3 text-left border-0 visible cursor-text m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_51.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_51.json new file mode 100644 index 0000000..695e360 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_51.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "textOverflow": "clip", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_51", + "tw": "block static font-normal leading-3 text-left border-0 visible cursor-text m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_52.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_52.json new file mode 100644 index 0000000..cfee560 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_52.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "padding": "0px 8px 0px 0px", + "paddingInlineEnd": "8px", + "textOverflow": "clip" + }, + "styleId": "style_52", + "tw": "flex static items-center font-normal leading-3 text-left border-0 visible cursor-text mt-0 mr-0 mb-0 ml-1 pt-0 pr-2 pb-0 pl-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_53.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_53.json new file mode 100644 index 0000000..e4c5ebd --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_53.json @@ -0,0 +1,26 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "2px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 3px", + "paddingInlineEnd": "3px", + "paddingInlineStart": "3px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1), padding linear" + }, + "styleId": "style_53", + "tw": "flex relative font-normal leading-3 text-left border visible cursor-text m-0 pt-0 pr-0.5 pb-0 pl-0.5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_54.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_54.json new file mode 100644 index 0000000..ff9ba51 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_54.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_54", + "tw": "inline-block relative font-normal leading-tight border-0 visible cursor-text m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_55.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_55.json new file mode 100644 index 0000000..31988d8 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_55.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "overflow": "clip", + "padding": "0px 0px 0px 8px", + "paddingInlineStart": "8px", + "textOverflow": "clip", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_55", + "tw": "block static font-normal leading-snug text-left border-0 visible cursor-text m-0 pt-0 pr-0 pb-0 pl-2" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_56.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_56.json new file mode 100644 index 0000000..3b11676 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_56.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_56", + "tw": "flex static grow basis-1/12 font-normal leading-snug border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_57.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_57.json new file mode 100644 index 0000000..8b18004 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_57.json @@ -0,0 +1,17 @@ +{ + "custom": { + "border": "0px none rgb(134, 144, 156)", + "borderColor": "rgb(134, 144, 156)", + "color": "rgb(134, 144, 156)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minWidth": "10px", + "padding": "0px 8px", + "paddingInlineEnd": "8px", + "paddingInlineStart": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_57", + "tw": "block static font-normal leading-snug border-0 visible m-0 pt-0 pr-2 pb-0 pl-2 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_58.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_58.json new file mode 100644 index 0000000..94d6e89 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_58.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_58", + "tw": "inline static font-normal leading-snug text-center border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_59.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_59.json new file mode 100644 index 0000000..48a1b5f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_59.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "textOverflow": "clip" + }, + "styleId": "style_59", + "tw": "block static font-normal leading-snug text-center border-0 visible mt-0 mr-0 mb-0 ml-1 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_6.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_6.json new file mode 100644 index 0000000..aa412a1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_6.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_6", + "tw": "inline-block static font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_60.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_60.json new file mode 100644 index 0000000..f1705ca --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_60.json @@ -0,0 +1,27 @@ +{ + "custom": { + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "2px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "4px 11px 4px 4px", + "paddingBlockEnd": "4px", + "paddingBlockStart": "4px", + "paddingInlineEnd": "11px", + "paddingInlineStart": "4px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_60", + "tw": "inline-flex relative items-center font-normal leading-snug border visible m-0 pt-1 pr-2.5 pb-1 pl-1 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_61.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_61.json new file mode 100644 index 0000000..dc2942a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_61.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px -12px", + "marginInlineEnd": "-12px", + "marginInlineStart": "-12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_61", + "tw": "flex static flex-wrap items-start font-normal leading-tight border-0 visible mt-0 -mr-3 mb-0 -ml-3 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_62.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_62.json new file mode 100644 index 0000000..66b1092 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_62.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "padding": "0px 20px 0px 0px", + "paddingInlineEnd": "20px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_62", + "tw": "flex static flex-col font-normal leading-tight border-0 visible m-0 pt-0 pr-5 pb-0 pl-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_63.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_63.json new file mode 100644 index 0000000..194579a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_63.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "color": "rgb(255, 255, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_63", + "tw": "inline static font-normal leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_64.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_64.json new file mode 100644 index 0000000..70cd75f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_64.json @@ -0,0 +1,24 @@ +{ + "custom": { + "background": "rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(22, 93, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_64", + "tw": "block relative font-normal leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_65.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_65.json new file mode 100644 index 0000000..7a8a168 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_65.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_65", + "tw": "inline static font-normal leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_66.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_66.json new file mode 100644 index 0000000..4bf5b96 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_66.json @@ -0,0 +1,22 @@ +{ + "custom": { + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_66", + "tw": "block relative font-normal leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_67.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_67.json new file mode 100644 index 0000000..bbed667 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_67.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px 0px 0px 1px none none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(78, 89, 105) rgb(229, 230, 235)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 20px", + "marginBlockEnd": "20px", + "padding": "0px 0px 0px 20px", + "paddingInlineStart": "20px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_67", + "tw": "flex static flex-col justify-between font-normal leading-tight visible mt-0 mr-0 mb-5 ml-0 pt-0 pr-0 pb-0 pl-5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_68.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_68.json new file mode 100644 index 0000000..e3bce1c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_68.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px 0px 1px none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(242, 243, 245)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 20px", + "marginBlockEnd": "20px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_68", + "tw": "flex static font-normal leading-tight visible mt-0 mr-0 mb-5 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_69.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_69.json new file mode 100644 index 0000000..29c84f4 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_69.json @@ -0,0 +1,26 @@ +{ + "custom": { + "background": "rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(22, 93, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_69", + "tw": "inline-block relative font-normal leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_7.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_7.json new file mode 100644 index 0000000..575af1f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_7.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_7", + "tw": "block static font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_70.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_70.json new file mode 100644 index 0000000..a1ef0b5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_70.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_70", + "tw": "block static font-normal leading-tight border-0 visible mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_71.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_71.json new file mode 100644 index 0000000..029f289 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_71.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_71", + "tw": "inline static font-normal leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_72.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_72.json new file mode 100644 index 0000000..0f11b4c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_72.json @@ -0,0 +1,24 @@ +{ + "custom": { + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_72", + "tw": "inline-block relative font-normal leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_73.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_73.json new file mode 100644 index 0000000..2cde3f3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_73.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_73", + "tw": "flex static items-center font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_74.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_74.json new file mode 100644 index 0000000..45a54e3 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_74.json @@ -0,0 +1,17 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 20px", + "marginBlockEnd": "20px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_74", + "tw": "flex static justify-between font-normal leading-tight border-0 visible mt-0 mr-0 mb-5 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_75.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_75.json new file mode 100644 index 0000000..16fc471 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_75.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "display": "table-column", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_75", + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_76.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_76.json new file mode 100644 index 0000000..ea5040f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_76.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "display": "table-column-group", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_76", + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_77.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_77.json new file mode 100644 index 0000000..4e05b6a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_77.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_77", + "tw": "inline static font-medium leading-snug text-left border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_78.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_78.json new file mode 100644 index 0000000..5875e7f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_78.json @@ -0,0 +1,24 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "24px 16px", + "paddingBlockEnd": "24px", + "paddingBlockStart": "24px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_78", + "tw": "block relative font-medium leading-snug text-left border-0 visible m-0 pt-6 pr-4 pb-6 pl-4 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_79.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_79.json new file mode 100644 index 0000000..587ce8b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_79.json @@ -0,0 +1,18 @@ +{ + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235)", + "borderRadius": "4px 0px 0px", + "borderTopLeftRadius": "4px", + "color": "rgb(29, 33, 41)", + "display": "table-cell", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_79", + "tw": "static font-medium leading-snug text-left visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_8.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_8.json new file mode 100644 index 0000000..56b54b5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_8.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "styleId": "style_8", + "tw": "block static font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_80.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_80.json new file mode 100644 index 0000000..cffe0aa --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_80.json @@ -0,0 +1,16 @@ +{ + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235)", + "color": "rgb(29, 33, 41)", + "display": "table-cell", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_80", + "tw": "static font-medium leading-snug text-left visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_81.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_81.json new file mode 100644 index 0000000..6b65021 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_81.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_81", + "tw": "inline static font-medium leading-snug text-left border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_82.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_82.json new file mode 100644 index 0000000..aad71d7 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_82.json @@ -0,0 +1,18 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_82", + "tw": "block relative font-medium leading-3 text-left border-0 visible cursor-pointer m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_83.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_83.json new file mode 100644 index 0000000..0f3b7c1 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_83.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_83", + "tw": "inline-block static font-medium leading-snug text-left border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_84.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_84.json new file mode 100644 index 0000000..1b18ca5 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_84.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "24px 16px", + "paddingBlockEnd": "24px", + "paddingBlockStart": "24px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "textOverflow": "clip" + }, + "styleId": "style_84", + "tw": "block static font-medium leading-snug text-left border-0 visible cursor-pointer m-0 pt-6 pr-4 pb-6 pl-4 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_85.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_85.json new file mode 100644 index 0000000..7a4f0f0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_85.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_85", + "tw": "block relative font-medium leading-snug text-left border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_86.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_86.json new file mode 100644 index 0000000..3e989bb --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_86.json @@ -0,0 +1,20 @@ +{ + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235)", + "borderRadius": "0px 4px 0px 0px", + "borderTopRightRadius": "4px", + "color": "rgb(29, 33, 41)", + "display": "table-cell", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 0px 0px 15px", + "paddingInlineStart": "15px", + "textOverflow": "clip" + }, + "styleId": "style_86", + "tw": "static font-medium leading-snug text-left visible m-0 pt-0 pr-0 pb-0 pl-3.5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_87.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_87.json new file mode 100644 index 0000000..ba4721a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_87.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(128, 128, 128)", + "borderColor": "rgb(128, 128, 128)", + "color": "rgb(78, 89, 105)", + "display": "table-row", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_87", + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_88.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_88.json new file mode 100644 index 0000000..0cb2335 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_88.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(128, 128, 128)", + "borderColor": "rgb(128, 128, 128)", + "color": "rgb(78, 89, 105)", + "display": "table-header-group", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_88", + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_89.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_89.json new file mode 100644 index 0000000..827747a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_89.json @@ -0,0 +1,22 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 2px", + "marginInlineStart": "2px", + "minHeight": "0px", + "minWidth": "0px", + "paddingBlockEnd": "2px", + "paddingBlockStart": "2px", + "paddingInlineEnd": "2px", + "paddingInlineStart": "2px", + "textOverflow": "clip", + "transition": "background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_89", + "tw": "inline static font-normal leading-snug text-left break-all border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-0.5 p-0.5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_9.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_9.json new file mode 100644 index 0000000..c1cd122 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_9.json @@ -0,0 +1,27 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px" + }, + "styleId": "style_9", + "tw": "flex relative font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-3 pb-0 pl-3 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_90.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_90.json new file mode 100644 index 0000000..6d05c2c --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_90.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_90", + "tw": "inline static font-normal leading-snug text-left break-all border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_91.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_91.json new file mode 100644 index 0000000..3569075 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_91.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_91", + "tw": "block static font-normal leading-snug text-left break-all border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_92.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_92.json new file mode 100644 index 0000000..ff16fdf --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_92.json @@ -0,0 +1,21 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235)", + "color": "rgb(29, 33, 41)", + "display": "table-cell", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "24px 16px", + "paddingBlockEnd": "24px", + "paddingBlockStart": "24px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "textOverflow": "clip" + }, + "styleId": "style_92", + "tw": "static font-normal leading-snug text-left visible m-0 pt-6 pr-4 pb-6 pl-4 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_93.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_93.json new file mode 100644 index 0000000..687a884 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_93.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_93", + "tw": "flex static font-normal leading-snug text-left break-all border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_94.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_94.json new file mode 100644 index 0000000..2b80aab --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_94.json @@ -0,0 +1,15 @@ +{ + "custom": { + "background": "rgb(0, 180, 42) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(0, 180, 42)", + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "50%", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textOverflow": "clip" + }, + "styleId": "style_94", + "tw": "block static font-normal leading-none text-left break-all border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_95.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_95.json new file mode 100644 index 0000000..274f317 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_95.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "textOverflow": "clip" + }, + "styleId": "style_95", + "tw": "block static font-normal leading-snug text-left break-all border-0 visible mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_96.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_96.json new file mode 100644 index 0000000..9d02ef9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_96.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_96", + "tw": "inline-flex static items-center font-normal leading-none text-left break-all border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_97.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_97.json new file mode 100644 index 0000000..3612fa0 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_97.json @@ -0,0 +1,18 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_97", + "tw": "inline-block relative font-normal leading-none text-left break-all border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_98.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_98.json new file mode 100644 index 0000000..138138a --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_98.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_98", + "tw": "inline static font-normal leading-snug text-center whitespace-nowrap break-all border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_99.json b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_99.json new file mode 100644 index 0000000..7e2f102 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/flat/styles/style_99.json @@ -0,0 +1,24 @@ +{ + "custom": { + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "styleId": "style_99", + "tw": "inline-block relative font-normal leading-snug text-center whitespace-nowrap break-all border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/index.html b/AI-Arco-Design-Themes-Demos-complete/index.html new file mode 100644 index 0000000..89df0b9 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/index.html @@ -0,0 +1,1176 @@ + + + + + + Arco-Design-Themes-Demos + + + + + + + +
+
+
+ +
+
+
+
+
+ +
+ + + +
列表页
+ + + +
查询表格
+
+
+
+

元素检查 dom-inspector

+
+
+ +
+
+
+
+
+
+
查询表格
+
+
+
+
+
+
+ +
+
+
+
+
+ + + +
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+ + + +
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+ - +
+ +
+
+ + + +
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ 集合编号 +
+
+
+ 集合名称 +
+
+
+ 内容体裁 +
+
+
+ 筛选方式 +
+
+
+
+ 内容量 +
+
+ +
+
+ +
+
+
+
+
+
+
+ 创建时间 +
+
+ +
+
+ +
+
+
+
+
+
+ 状态 +
+
+
+ 操作 +
+
+
+ + 18514366-5559 + + + +
+
+
+ 每日推荐视频集 +
+
+
+ +
图文
+
+
+
+
+ 人工 +
+
+
+ 105 +
+
+
+ 2026-04-10 23:28:13 +
+
+
+ + + + + 已上线 + + + +
+
+
+ + + +
+
+
+ + 64494084-3767 + + + +
+
+
+ 每日推荐视频集 +
+
+
+ +
横版短视频
+
+
+
+
+ 人工 +
+
+
+ 1,246 +
+
+
+ 2026-04-16 23:28:13 +
+
+
+ + + + + 未上线 + + + +
+
+
+ + + +
+
+
+ + 79634294-4686 + + + +
+
+
+ 国际新闻集合 +
+
+
+ +
竖版短视频
+
+
+
+
+ 规则筛选 +
+
+
+ 366 +
+
+
+ 2026-04-05 23:28:13 +
+
+
+ + + + + 已上线 + + + +
+
+
+ + + +
+
+
+ + 86326438-1258 + + + +
+
+
+ 抖音短视频候选集 +
+
+
+ +
横版短视频
+
+
+
+
+ 人工 +
+
+
+ 1 +
+
+
+ 2026-03-03 23:28:13 +
+
+
+ + + + + 未上线 + + + +
+
+
+ + + +
+
+
+ + 98615157-3293 + + + +
+
+
+ 国际新闻集合 +
+
+
+ +
竖版短视频
+
+
+
+
+ 人工 +
+
+
+ 1,316 +
+
+
+ 2026-04-03 23:28:13 +
+
+
+ + + + + 未上线 + + + +
+
+
+ + + +
+
+
+ + 14712111-5478 + + + +
+
+
+ 国际新闻集合 +
+
+
+ +
图文
+
+
+
+
+ 规则筛选 +
+
+
+ 1,688 +
+
+
+ 2026-03-02 23:28:13 +
+
+
+ + + + + 未上线 + + + +
+
+
+ + + +
+
+
+ + 34674613-1537 + + + +
+
+
+ 每日推荐视频集 +
+
+
+ +
竖版短视频
+
+
+
+
+ 规则筛选 +
+
+
+ 324 +
+
+
+ 2026-03-06 23:28:13 +
+
+
+ + + + + 未上线 + + + +
+
+
+ + + +
+
+
+ + 71922474-4505 + + + +
+
+
+ 每日推荐视频集 +
+
+
+ +
竖版短视频
+
+
+
+
+ 规则筛选 +
+
+
+ 1,083 +
+
+
+ 2026-03-15 23:28:13 +
+
+
+ + + + + 未上线 + + + +
+
+
+ + + +
+
+
+ + 14481716-4383 + + + +
+
+
+ 抖音短视频候选集 +
+
+
+ +
横版短视频
+
+
+
+
+ 规则筛选 +
+
+
+ 835 +
+
+
+ 2026-04-06 23:28:13 +
+
+
+ + + + + 已上线 + + + +
+
+
+ + + +
+
+
+ + 26506467-1132 + + + +
+
+
+ 抖音短视频候选集 +
+
+
+ +
横版短视频
+
+
+
+
+ 规则筛选 +
+
+
+ 1,446 +
+
+
+ 2026-03-01 23:28:13 +
+
+
+ + + + + 已上线 + + + +
+
+
+ + + +
+
+
+
+
+
+
+
共 100 条
+
    +
  • + +
  • +
  • 1
  • +
  • 2
  • +
  • 3
  • +
  • 4
  • +
  • 5
  • +
  • + +
  • +
  • 10
  • +
  • + +
  • +
+
+
+
+ + 10 条/页 +
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Arco Design Pro
+
+
+
+
+
+
+
+
+ +
+ + \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/manifest.json b/AI-Arco-Design-Themes-Demos-complete/manifest.json new file mode 100644 index 0000000..5e3b85f --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/manifest.json @@ -0,0 +1,78 @@ +{ + "version": "3.0", + "generator": "axhub-ai-extension", + "exportTime": "2026-04-20T15:28:27.772Z", + "sourceUrl": "https://arco.design/themes/demo/preview/list/search-table", + "viewport": { + "height": 869, + "width": 1800 + }, + "mode": "full", + "files": { + "domlist": "structure/doms.json", + "stylePool": "structure/styles.json", + "theme": "theme.json", + "screenshot": "screenshot.png", + "content": "content.md", + "pageMap": "page-map.json", + "topology": "topology/topology.json", + "selectorMap": "topology/selector-map.json", + "contentBlocks": "topology/content-blocks.json", + "behaviors": null, + "responsive": null, + "networkSummary": null, + "html": "index.html", + "css": "style.css" + }, + "flatStructure": { + "skeleton": "flat/skeleton.json", + "nodesDir": "flat/nodes/", + "stylesDir": "flat/styles/", + "index": "flat/index.json" + }, + "livePageAccess": { + "sourceUrl": "https://arco.design/themes/demo/preview/list/search-table", + "selectorAvailable": true, + "note": "每个节点文件包含 selector 字段,可用 Playwright 访问 sourceUrl 进行补充采集" + }, + "screenshots": { + "current": "screenshot.png", + "responsive": [ + "screenshots/desktop-1440.png", + "screenshots/tablet-768.png", + "screenshots/mobile-390.png" + ] + }, + "assets": { + "imageCount": 0, + "fontCount": 0, + "imageFiles": [], + "fontFiles": [], + "viewportScreenshotCount": 0 + }, + "stats": { + "nodeCount": 729, + "styleCount": 130, + "markdownLength": 1842, + "sectionCount": 1 + }, + "capabilities": { + "hasFonts": false, + "hasScreenshot": true, + "hasResponsiveScreenshots": true, + "hasTheme": true, + "hasMarkdown": true, + "hasPreviewHTML": true, + "hasSections": true, + "hasTopology": true, + "hasSelectorMap": true, + "hasBehaviors": false, + "hasResponsive": false, + "hasNetworkSummary": false, + "hasContentBlocks": true, + "hasRebuildPrompts": true, + "hasFlatStructure": true, + "jsonFormat": true, + "tailwindClasses": true + } +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/page-map.json b/AI-Arco-Design-Themes-Demos-complete/page-map.json new file mode 100644 index 0000000..4a888db --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/page-map.json @@ -0,0 +1,104 @@ +{ + "links": [ + { + "href": "https://arco.design/themes/demo/preview/common-components", + "selector": "div.arco-menu-inner > div.arco-menu-item:nth-of-type(1) > a", + "text": "常用组件", + "type": "a", + "visible": true + }, + { + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-primary:nth-of-type(1)", + "text": "查询", + "type": "button", + "visible": true + }, + { + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-secondary:nth-of-type(2)", + "text": "重置", + "type": "button", + "visible": true + }, + { + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-primary", + "text": "新建", + "type": "button", + "visible": true + }, + { + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(2) > button.arco-btn.arco-btn-secondary", + "text": "批量导入", + "type": "button", + "visible": true + }, + { + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item > button.arco-btn.arco-btn-secondary", + "text": "下载", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + }, + { + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "text": "查看", + "type": "button", + "visible": true + } + ], + "pageTitle": "Arco Design Themes Demos", + "pageUrl": "https://arco.design/themes/demo/preview/list/search-table", + "totalLinks": 16 +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/prompts/rebuild-page.md b/AI-Arco-Design-Themes-Demos-complete/prompts/rebuild-page.md new file mode 100644 index 0000000..f49f655 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/prompts/rebuild-page.md @@ -0,0 +1,20 @@ +# Rebuild Page Prompt + +Rebuild the page "Arco Design Themes Demos" as a production-ready webpage. + +Use the export pack in this order: +1. Read `manifest.json` to understand available files and capabilities. +2. Use `screenshot.png` as the visual source of truth. +3. Use `topology.json`, `selector-map.json`, and `content.blocks.json` when present to preserve page structure and section semantics. +4. Use `theme.json`, `doms.toon`, and `styles.toon` to restore layout, tokens, and styling details. +5. Use `behaviors.json`, `responsive.json`, and `network-summary.json` when present to preserve dynamic behavior and breakpoint changes. +6. Use `preview/index.html` and `preview/style.css` only as references, not as the final implementation. + +Implementation requirements: +- Match the original hierarchy section by section. +- Reuse exported assets from `assets/images` and `assets/fonts`. +- Preserve CTA order, sticky/fixed layers, and content hierarchy. +- Keep the page responsive across desktop, tablet, and mobile. +- Document any behavior or asset you cannot reproduce exactly. + +Export mode: `full`. \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/prompts/rebuild-section.md b/AI-Arco-Design-Themes-Demos-complete/prompts/rebuild-section.md new file mode 100644 index 0000000..ac36a73 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/prompts/rebuild-section.md @@ -0,0 +1,14 @@ +# Rebuild Section Prompt + +Rebuild one section at a time for "Arco Design Themes Demos". + +Workflow: +1. Inspect `sections//spec.json` and `sections//screenshot.png`. +2. Use `content.blocks.json` to preserve copy, buttons, images, and forms. +3. Use `theme.json` and `selector-map.json` to match shared styles and spacing. +4. If the section appears in `behaviors.json` or `responsive.json`, preserve those states too. + +Available sections: +- section-001: signup (#root) -> sections/section-001/spec.json + +For each rebuilt section, keep the output self-contained, semantically meaningful, and easy to compose back into the full page. \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/screenshot.png b/AI-Arco-Design-Themes-Demos-complete/screenshot.png new file mode 100644 index 0000000..204006d Binary files /dev/null and b/AI-Arco-Design-Themes-Demos-complete/screenshot.png differ diff --git a/AI-Arco-Design-Themes-Demos-complete/screenshots/desktop-1440.png b/AI-Arco-Design-Themes-Demos-complete/screenshots/desktop-1440.png new file mode 100644 index 0000000..f839d12 Binary files /dev/null and b/AI-Arco-Design-Themes-Demos-complete/screenshots/desktop-1440.png differ diff --git a/AI-Arco-Design-Themes-Demos-complete/screenshots/mobile-390.png b/AI-Arco-Design-Themes-Demos-complete/screenshots/mobile-390.png new file mode 100644 index 0000000..6614043 Binary files /dev/null and b/AI-Arco-Design-Themes-Demos-complete/screenshots/mobile-390.png differ diff --git a/AI-Arco-Design-Themes-Demos-complete/screenshots/tablet-768.png b/AI-Arco-Design-Themes-Demos-complete/screenshots/tablet-768.png new file mode 100644 index 0000000..5f8cdfc Binary files /dev/null and b/AI-Arco-Design-Themes-Demos-complete/screenshots/tablet-768.png differ diff --git a/AI-Arco-Design-Themes-Demos-complete/sections/section-001/screenshot.png b/AI-Arco-Design-Themes-Demos-complete/sections/section-001/screenshot.png new file mode 100644 index 0000000..915bc89 Binary files /dev/null and b/AI-Arco-Design-Themes-Demos-complete/sections/section-001/screenshot.png differ diff --git a/AI-Arco-Design-Themes-Demos-complete/sections/section-001/spec.json b/AI-Arco-Design-Themes-Demos-complete/sections/section-001/spec.json new file mode 100644 index 0000000..b291228 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/sections/section-001/spec.json @@ -0,0 +1,23 @@ +{ + "bbox": { + "height": 1238, + "left": 0, + "top": 0, + "width": 1785 + }, + "contentSummary": "常用组件 仪表盘 工作台 实时监控 数据可视化 分析页 多维数据分析 列表页 查询表格 卡片列表 表单页 分组表单 分步表单 详情页 基础详情页 结果页 成功页 失败页 异常页 403 404 500 个人中心 用户信息 用户设置 列表页查询表格 元素检查 dom-inspector 查询表格 集合编号 集合名称 内容体裁 筛选方式 创建时间 - 状态 查询 重置 新建 批量导入 下载 集合编号 ", + "dominantStyle": { + "backgroundImage": false + }, + "hasMedia": true, + "hasText": true, + "id": "section-001", + "interactionHints": [ + "cta", + "form" + ], + "name": "signup", + "nodeCount": 641, + "selector": "#root", + "tagHint": "div" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/structure/doms.json b/AI-Arco-Design-Themes-Demos-complete/structure/doms.json new file mode 100644 index 0000000..2703a84 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/structure/doms.json @@ -0,0 +1,6590 @@ +{ + "nodes": { + "n1": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n10": { + "children": [ + "n9" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n100": { + "children": [ + "n88", + "n99" + ], + "height": "44px", + "originalClass": "arco-menu-inline", + "styleId": "style_11", + "tag": "div", + "width": "204px" + }, + "n101": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n102": { + "_innerHTML": " 异常页", + "children": [ + "n101" + ], + "styleId": "style_3", + "tag": "span", + "text": "异常页" + }, + "n103": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n104": { + "children": [ + "n103" + ], + "height": "40px", + "originalClass": "arco-menu-icon-suffix", + "styleId": "style_4", + "tag": "span", + "width": "14px" + }, + "n105": { + "children": [ + "n102", + "n104" + ], + "height": "40px", + "originalClass": "arco-menu-inline-header", + "styleId": "style_5", + "tag": "div", + "width": "204px" + }, + "n106": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n107": { + "children": [ + "n106" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n108": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n109": { + "_innerHTML": "
403", + "children": [ + "n108" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "403", + "width": "160px" + }, + "n11": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n110": { + "children": [ + "n107", + "n109" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n111": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n112": { + "children": [ + "n111" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n113": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n114": { + "_innerHTML": "
404", + "children": [ + "n113" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "404", + "width": "160px" + }, + "n115": { + "children": [ + "n112", + "n114" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n116": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n117": { + "children": [ + "n116" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n118": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n119": { + "_innerHTML": "
500", + "children": [ + "n118" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "500", + "width": "160px" + }, + "n12": { + "_innerHTML": "
工作台", + "children": [ + "n11" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "工作台", + "width": "160px" + }, + "n120": { + "children": [ + "n117", + "n119" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n121": { + "children": [ + "n110", + "n115", + "n120" + ], + "height": "0px", + "originalClass": "arco-menu-inline-content", + "styleId": "style_10", + "tag": "div", + "width": "204px" + }, + "n122": { + "children": [ + "n105", + "n121" + ], + "height": "44px", + "originalClass": "arco-menu-inline", + "styleId": "style_11", + "tag": "div", + "width": "204px" + }, + "n123": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n124": { + "_innerHTML": " 个人中心", + "children": [ + "n123" + ], + "styleId": "style_3", + "tag": "span", + "text": "个人中心" + }, + "n125": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n126": { + "children": [ + "n125" + ], + "height": "40px", + "originalClass": "arco-menu-icon-suffix", + "styleId": "style_4", + "tag": "span", + "width": "14px" + }, + "n127": { + "children": [ + "n124", + "n126" + ], + "height": "40px", + "originalClass": "arco-menu-inline-header", + "styleId": "style_5", + "tag": "div", + "width": "204px" + }, + "n128": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n129": { + "children": [ + "n128" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n13": { + "children": [ + "n10", + "n12" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n130": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n131": { + "_innerHTML": "
用户信息", + "children": [ + "n130" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "用户信息", + "width": "160px" + }, + "n132": { + "children": [ + "n129", + "n131" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n133": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n134": { + "children": [ + "n133" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n135": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n136": { + "_innerHTML": "
用户设置", + "children": [ + "n135" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "用户设置", + "width": "160px" + }, + "n137": { + "children": [ + "n134", + "n136" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n138": { + "children": [ + "n132", + "n137" + ], + "height": "0px", + "originalClass": "arco-menu-inline-content", + "styleId": "style_10", + "tag": "div", + "width": "204px" + }, + "n139": { + "children": [ + "n127", + "n138" + ], + "height": "44px", + "originalClass": "arco-menu-inline", + "styleId": "style_11", + "tag": "div", + "width": "204px" + }, + "n14": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n140": { + "children": [ + "n3", + "n20", + "n37", + "n54", + "n71", + "n83", + "n100", + "n122", + "n139" + ], + "height": "492px", + "originalClass": "arco-menu-inner", + "styleId": "style_19", + "tag": "div", + "width": "220px" + }, + "n141": { + "children": [ + "n140" + ], + "height": "492px", + "originalClass": "arco-menu arco-menu-light arco-menu-vertical", + "styleId": "style_20", + "tag": "div", + "width": "220px" + }, + "n142": { + "children": [ + "n141" + ], + "height": "921px", + "originalClass": "menu-wrapper--e9ooU", + "styleId": "style_21", + "tag": "div", + "width": "220px" + }, + "n143": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n144": { + "children": [ + "n143" + ], + "height": "24px", + "originalClass": "collapse-btn--FJHnQ", + "styleId": "style_22", + "tag": "div", + "width": "24px" + }, + "n145": { + "children": [ + "n142", + "n144" + ], + "height": "921px", + "originalClass": "arco-layout-sider-children", + "styleId": "style_23", + "tag": "div", + "width": "220px" + }, + "n146": { + "children": [ + "n145" + ], + "height": "921px", + "originalClass": "arco-layout-sider arco-layout-sider-light layout-sider--G4cYl", + "styleId": "style_24", + "tag": "aside", + "width": "220px" + }, + "n147": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n148": { + "children": [ + "n147" + ], + "height": "18px", + "originalClass": "arco-breadcrumb-item", + "styleId": "style_25", + "tag": "div", + "width": "18px" + }, + "n149": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n15": { + "children": [ + "n14" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n150": { + "children": [ + "n149" + ], + "height": "24px", + "originalClass": "arco-breadcrumb-item-separator", + "styleId": "style_26", + "tag": "span", + "width": "14px" + }, + "n151": { + "height": "24px", + "originalClass": "arco-breadcrumb-item", + "styleId": "style_25", + "tag": "div", + "text": "列表页", + "width": "42px" + }, + "n152": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n153": { + "children": [ + "n152" + ], + "height": "24px", + "originalClass": "arco-breadcrumb-item-separator", + "styleId": "style_26", + "tag": "span", + "width": "14px" + }, + "n154": { + "height": "24px", + "originalClass": "arco-breadcrumb-item", + "styleId": "style_27", + "tag": "div", + "text": "查询表格", + "width": "56px" + }, + "n155": { + "children": [ + "n148", + "n150", + "n151", + "n153", + "n154" + ], + "height": "24px", + "originalClass": "arco-breadcrumb", + "styleId": "style_28", + "tag": "div", + "width": "184px" + }, + "n156": { + "height": "21px", + "originalClass": "inspector-text", + "styleId": "style_29", + "tag": "p", + "text": "元素检查 dom-inspector", + "width": "148.594px" + }, + "n157": { + "children": [ + "n156" + ], + "height": "21px", + "originalClass": "arco-space-item", + "styleId": "style_30", + "tag": "div", + "width": "148.594px" + }, + "n158": { + "height": "20px", + "originalClass": "arco-switch-dot", + "styleId": "style_31", + "tag": "div", + "width": "20px" + }, + "n159": { + "children": [ + "n158" + ], + "height": "24px", + "originalClass": "arco-switch arco-switch-type-line inspector-switch", + "styleId": "style_32", + "tag": "button", + "width": "36px" + }, + "n16": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n160": { + "children": [ + "n159" + ], + "height": "24px", + "originalClass": "arco-space-item", + "styleId": "style_33", + "tag": "div", + "width": "36px" + }, + "n161": { + "children": [ + "n157", + "n160" + ], + "height": "24px", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "styleId": "style_34", + "tag": "div", + "width": "192.594px" + }, + "n162": { + "children": [ + "n155", + "n161" + ], + "height": "24px", + "originalClass": "layout-breadcrumb--aBouq", + "styleId": "style_35", + "tag": "div", + "width": "1525px" + }, + "n163": { + "height": "24px", + "originalClass": "arco-typography", + "styleId": "style_36", + "tag": "h6", + "text": "查询表格", + "width": "1485px" + }, + "n164": { + "styleId": "style_37", + "tag": "label", + "text": "集合编号" + }, + "n165": { + "children": [ + "n164" + ], + "height": "32px", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" + }, + "n166": { + "height": "30px", + "id": "id_input", + "originalClass": "arco-input arco-input-size-default", + "styleId": "style_39", + "tag": "input", + "width": "320.75px" + }, + "n167": { + "children": [ + "n166" + ], + "height": "32px", + "originalClass": "arco-input-inner-wrapper arco-input-inner-wrapper-default arco-input-clear-wrapper", + "styleId": "style_40", + "tag": "span", + "width": "346.75px" + }, + "n168": { + "children": [ + "n167" + ], + "height": "32px", + "originalClass": "arco-form-item-control-children", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" + }, + "n169": { + "children": [ + "n168" + ], + "height": "32px", + "id": "id", + "originalClass": "arco-form-item-control", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" + }, + "n17": { + "_innerHTML": "
实时监控", + "children": [ + "n16" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "实时监控", + "width": "160px" + }, + "n170": { + "children": [ + "n169" + ], + "height": "32px", + "originalClass": "arco-form-item-control-wrapper", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" + }, + "n171": { + "children": [ + "n170" + ], + "height": "32px", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" + }, + "n172": { + "children": [ + "n165", + "n171" + ], + "height": "32px", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "styleId": "style_45", + "tag": "div", + "width": "438px" + }, + "n173": { + "children": [ + "n172" + ], + "originalClass": "arco-col arco-col-8", + "styleId": "style_46", + "tag": "div", + "width": "462px" + }, + "n174": { + "styleId": "style_37", + "tag": "label", + "text": "集合名称" + }, + "n175": { + "children": [ + "n174" + ], + "height": "32px", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" + }, + "n176": { + "height": "30px", + "id": "name_input", + "originalClass": "arco-input arco-input-size-default", + "styleId": "style_39", + "tag": "input", + "width": "320.75px" + }, + "n177": { + "children": [ + "n176" + ], + "height": "32px", + "originalClass": "arco-input-inner-wrapper arco-input-inner-wrapper-default arco-input-clear-wrapper", + "styleId": "style_40", + "tag": "span", + "width": "346.75px" + }, + "n178": { + "children": [ + "n177" + ], + "height": "32px", + "originalClass": "arco-form-item-control-children", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" + }, + "n179": { + "children": [ + "n178" + ], + "height": "32px", + "id": "name", + "originalClass": "arco-form-item-control", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" + }, + "n18": { + "children": [ + "n15", + "n17" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n180": { + "children": [ + "n179" + ], + "height": "32px", + "originalClass": "arco-form-item-control-wrapper", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" + }, + "n181": { + "children": [ + "n180" + ], + "height": "32px", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" + }, + "n182": { + "children": [ + "n175", + "n181" + ], + "height": "32px", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "styleId": "style_45", + "tag": "div", + "width": "438px" + }, + "n183": { + "children": [ + "n182" + ], + "originalClass": "arco-col arco-col-8", + "styleId": "style_46", + "tag": "div", + "width": "462px" + }, + "n184": { + "styleId": "style_37", + "tag": "label", + "text": "内容体裁" + }, + "n185": { + "children": [ + "n184" + ], + "height": "32px", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" + }, + "n186": { + "height": "16.0938px", + "originalClass": "arco-input-tag-input arco-input-tag-input-size-default", + "styleId": "style_47", + "tag": "input", + "width": "44px" + }, + "n187": { + "children": [ + "n186" + ], + "height": "30px", + "originalClass": "arco-input-tag-inner", + "styleId": "style_48", + "tag": "div", + "width": "314.75px" + }, + "n188": { + "children": [ + "n187" + ], + "height": "30px", + "originalClass": "arco-input-tag-view", + "styleId": "style_49", + "tag": "div", + "width": "314.75px" + }, + "n189": { + "children": [ + "n188" + ], + "height": "30px", + "originalClass": "arco-input-tag arco-input-tag-size-default arco-input-tag-has-placeholder", + "styleId": "style_50", + "tag": "div", + "width": "314.75px" + }, + "n19": { + "children": [ + "n13", + "n18" + ], + "height": "0px", + "originalClass": "arco-menu-inline-content", + "styleId": "style_10", + "tag": "div", + "width": "204px" + }, + "n190": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n191": { + "children": [ + "n190" + ], + "height": "12px", + "originalClass": "arco-select-expand-icon", + "styleId": "style_51", + "tag": "div", + "width": "12px" + }, + "n192": { + "children": [ + "n191" + ], + "height": "30px", + "originalClass": "arco-select-suffix", + "styleId": "style_52", + "tag": "div", + "width": "12px" + }, + "n193": { + "children": [ + "n189", + "n192" + ], + "height": "32px", + "originalClass": "arco-select-view", + "styleId": "style_53", + "tag": "div", + "width": "346.75px" + }, + "n194": { + "children": [ + "n193" + ], + "height": "32px", + "originalClass": "arco-select arco-select-multiple arco-select-show-search arco-select-size-default", + "styleId": "style_54", + "tag": "div", + "width": "346.75px" + }, + "n195": { + "children": [ + "n194" + ], + "height": "32px", + "originalClass": "arco-form-item-control-children", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" + }, + "n196": { + "children": [ + "n195" + ], + "height": "32px", + "id": "contentType", + "originalClass": "arco-form-item-control", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" + }, + "n197": { + "children": [ + "n196" + ], + "height": "32px", + "originalClass": "arco-form-item-control-wrapper", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" + }, + "n198": { + "children": [ + "n197" + ], + "height": "32px", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" + }, + "n199": { + "children": [ + "n185", + "n198" + ], + "height": "32px", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "styleId": "style_45", + "tag": "div", + "width": "438px" + }, + "n2": { + "_innerHTML": " 常用组件", + "children": [ + "n1" + ], + "styleId": "style_1", + "tag": "a", + "text": "常用组件" + }, + "n20": { + "children": [ + "n8", + "n19" + ], + "height": "44px", + "originalClass": "arco-menu-inline", + "styleId": "style_11", + "tag": "div", + "width": "204px" + }, + "n200": { + "children": [ + "n199" + ], + "originalClass": "arco-col arco-col-8", + "styleId": "style_46", + "tag": "div", + "width": "462px" + }, + "n201": { + "styleId": "style_37", + "tag": "label", + "text": "筛选方式" + }, + "n202": { + "children": [ + "n201" + ], + "height": "32px", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" + }, + "n203": { + "height": "16.0938px", + "originalClass": "arco-input-tag-input arco-input-tag-input-size-default", + "styleId": "style_47", + "tag": "input", + "width": "44px" + }, + "n204": { + "children": [ + "n203" + ], + "height": "30px", + "originalClass": "arco-input-tag-inner", + "styleId": "style_48", + "tag": "div", + "width": "314.75px" + }, + "n205": { + "children": [ + "n204" + ], + "height": "30px", + "originalClass": "arco-input-tag-view", + "styleId": "style_49", + "tag": "div", + "width": "314.75px" + }, + "n206": { + "children": [ + "n205" + ], + "height": "30px", + "originalClass": "arco-input-tag arco-input-tag-size-default arco-input-tag-has-placeholder", + "styleId": "style_50", + "tag": "div", + "width": "314.75px" + }, + "n207": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n208": { + "children": [ + "n207" + ], + "height": "12px", + "originalClass": "arco-select-expand-icon", + "styleId": "style_51", + "tag": "div", + "width": "12px" + }, + "n209": { + "children": [ + "n208" + ], + "height": "30px", + "originalClass": "arco-select-suffix", + "styleId": "style_52", + "tag": "div", + "width": "12px" + }, + "n21": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n210": { + "children": [ + "n206", + "n209" + ], + "height": "32px", + "originalClass": "arco-select-view", + "styleId": "style_53", + "tag": "div", + "width": "346.75px" + }, + "n211": { + "children": [ + "n210" + ], + "height": "32px", + "originalClass": "arco-select arco-select-multiple arco-select-show-search arco-select-size-default", + "styleId": "style_54", + "tag": "div", + "width": "346.75px" + }, + "n212": { + "children": [ + "n211" + ], + "height": "32px", + "originalClass": "arco-form-item-control-children", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" + }, + "n213": { + "children": [ + "n212" + ], + "height": "32px", + "id": "filterType", + "originalClass": "arco-form-item-control", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" + }, + "n214": { + "children": [ + "n213" + ], + "height": "32px", + "originalClass": "arco-form-item-control-wrapper", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" + }, + "n215": { + "children": [ + "n214" + ], + "height": "32px", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" + }, + "n216": { + "children": [ + "n202", + "n215" + ], + "height": "32px", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "styleId": "style_45", + "tag": "div", + "width": "438px" + }, + "n217": { + "children": [ + "n216" + ], + "originalClass": "arco-col arco-col-8", + "styleId": "style_46", + "tag": "div", + "width": "462px" + }, + "n218": { + "styleId": "style_37", + "tag": "label", + "text": "创建时间" + }, + "n219": { + "children": [ + "n218" + ], + "height": "32px", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" + }, + "n22": { + "_innerHTML": " 数据可视化", + "children": [ + "n21" + ], + "styleId": "style_3", + "tag": "span", + "text": "数据可视化" + }, + "n220": { + "height": "22px", + "styleId": "style_55", + "tag": "input", + "width": "134.875px" + }, + "n221": { + "children": [ + "n220" + ], + "height": "22px", + "originalClass": "arco-picker-input arco-picker-input-active", + "styleId": "style_56", + "tag": "div", + "width": "142.875px" + }, + "n222": { + "height": "22px", + "originalClass": "arco-picker-separator", + "styleId": "style_57", + "tag": "span", + "text": "-", + "width": "10px" + }, + "n223": { + "height": "22px", + "styleId": "style_55", + "tag": "input", + "width": "134.875px" + }, + "n224": { + "children": [ + "n223" + ], + "height": "22px", + "originalClass": "arco-picker-input", + "styleId": "style_56", + "tag": "div", + "width": "142.875px" + }, + "n225": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n226": { + "children": [ + "n225" + ], + "originalClass": "arco-picker-suffix-icon", + "styleId": "style_58", + "tag": "span" + }, + "n227": { + "children": [ + "n226" + ], + "height": "22px", + "originalClass": "arco-picker-suffix", + "styleId": "style_59", + "tag": "div", + "width": "14px" + }, + "n228": { + "children": [ + "n221", + "n222", + "n224", + "n227" + ], + "height": "32px", + "originalClass": "arco-picker arco-picker-range arco-picker-size-default", + "styleId": "style_60", + "tag": "div", + "width": "346.75px" + }, + "n229": { + "children": [ + "n228" + ], + "height": "32px", + "originalClass": "arco-form-item-control-children", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" + }, + "n23": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n230": { + "children": [ + "n229" + ], + "height": "32px", + "id": "createdTime", + "originalClass": "arco-form-item-control", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" + }, + "n231": { + "children": [ + "n230" + ], + "height": "32px", + "originalClass": "arco-form-item-control-wrapper", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" + }, + "n232": { + "children": [ + "n231" + ], + "height": "32px", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" + }, + "n233": { + "children": [ + "n219", + "n232" + ], + "height": "32px", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "styleId": "style_45", + "tag": "div", + "width": "438px" + }, + "n234": { + "children": [ + "n233" + ], + "originalClass": "arco-col arco-col-8", + "styleId": "style_46", + "tag": "div", + "width": "462px" + }, + "n235": { + "styleId": "style_37", + "tag": "label", + "text": "状态" + }, + "n236": { + "children": [ + "n235" + ], + "height": "32px", + "originalClass": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left", + "styleId": "style_38", + "tag": "div", + "width": "91.25px" + }, + "n237": { + "height": "16.0938px", + "originalClass": "arco-input-tag-input arco-input-tag-input-size-default", + "styleId": "style_47", + "tag": "input", + "width": "44px" + }, + "n238": { + "children": [ + "n237" + ], + "height": "30px", + "originalClass": "arco-input-tag-inner", + "styleId": "style_48", + "tag": "div", + "width": "314.75px" + }, + "n239": { + "children": [ + "n238" + ], + "height": "30px", + "originalClass": "arco-input-tag-view", + "styleId": "style_49", + "tag": "div", + "width": "314.75px" + }, + "n24": { + "children": [ + "n23" + ], + "height": "40px", + "originalClass": "arco-menu-icon-suffix", + "styleId": "style_4", + "tag": "span", + "width": "14px" + }, + "n240": { + "children": [ + "n239" + ], + "height": "30px", + "originalClass": "arco-input-tag arco-input-tag-size-default arco-input-tag-has-placeholder", + "styleId": "style_50", + "tag": "div", + "width": "314.75px" + }, + "n241": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n242": { + "children": [ + "n241" + ], + "height": "12px", + "originalClass": "arco-select-expand-icon", + "styleId": "style_51", + "tag": "div", + "width": "12px" + }, + "n243": { + "children": [ + "n242" + ], + "height": "30px", + "originalClass": "arco-select-suffix", + "styleId": "style_52", + "tag": "div", + "width": "12px" + }, + "n244": { + "children": [ + "n240", + "n243" + ], + "height": "32px", + "originalClass": "arco-select-view", + "styleId": "style_53", + "tag": "div", + "width": "346.75px" + }, + "n245": { + "children": [ + "n244" + ], + "height": "32px", + "originalClass": "arco-select arco-select-multiple arco-select-show-search arco-select-size-default", + "styleId": "style_54", + "tag": "div", + "width": "346.75px" + }, + "n246": { + "children": [ + "n245" + ], + "height": "32px", + "originalClass": "arco-form-item-control-children", + "styleId": "style_41", + "tag": "div", + "width": "346.75px" + }, + "n247": { + "children": [ + "n246" + ], + "height": "32px", + "id": "status", + "originalClass": "arco-form-item-control", + "styleId": "style_42", + "tag": "div", + "width": "346.75px" + }, + "n248": { + "children": [ + "n247" + ], + "height": "32px", + "originalClass": "arco-form-item-control-wrapper", + "styleId": "style_43", + "tag": "div", + "width": "346.75px" + }, + "n249": { + "children": [ + "n248" + ], + "height": "32px", + "originalClass": "arco-col arco-col-19 arco-form-item-wrapper", + "styleId": "style_44", + "tag": "div", + "width": "346.75px" + }, + "n25": { + "children": [ + "n22", + "n24" + ], + "height": "40px", + "originalClass": "arco-menu-inline-header", + "styleId": "style_5", + "tag": "div", + "width": "204px" + }, + "n250": { + "children": [ + "n236", + "n249" + ], + "height": "32px", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal", + "styleId": "style_45", + "tag": "div", + "width": "438px" + }, + "n251": { + "children": [ + "n250" + ], + "originalClass": "arco-col arco-col-8", + "styleId": "style_46", + "tag": "div", + "width": "462px" + }, + "n252": { + "children": [ + "n173", + "n183", + "n200", + "n217", + "n234", + "n251" + ], + "height": "104px", + "originalClass": "arco-row arco-row-align-start arco-row-justify-start", + "styleId": "style_61", + "tag": "div", + "width": "1386px" + }, + "n253": { + "children": [ + "n252" + ], + "height": "104px", + "originalClass": "arco-form arco-form-horizontal arco-form-size-default search-form--W0ULN", + "styleId": "style_62", + "tag": "form", + "width": "1362px" + }, + "n254": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n255": { + "styleId": "style_63", + "tag": "span", + "text": "查询" + }, + "n256": { + "children": [ + "n254", + "n255" + ], + "height": "32px", + "originalClass": "arco-btn arco-btn-primary arco-btn-size-default arco-btn-shape-square", + "styleId": "style_64", + "tag": "button", + "width": "82px" + }, + "n257": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n258": { + "styleId": "style_65", + "tag": "span", + "text": "重置" + }, + "n259": { + "children": [ + "n257", + "n258" + ], + "height": "32px", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-default arco-btn-shape-square", + "styleId": "style_66", + "tag": "button", + "width": "82px" + }, + "n26": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n260": { + "children": [ + "n256", + "n259" + ], + "height": "84px", + "originalClass": "right-button--gbVbn", + "styleId": "style_67", + "tag": "div", + "width": "103px" + }, + "n261": { + "children": [ + "n253", + "n260" + ], + "originalClass": "search-form-wrapper--jiX5t", + "styleId": "style_68", + "tag": "div", + "width": "1485px" + }, + "n262": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n263": { + "styleId": "style_63", + "tag": "span", + "text": "新建" + }, + "n264": { + "children": [ + "n262", + "n263" + ], + "height": "32px", + "originalClass": "arco-btn arco-btn-primary arco-btn-size-default arco-btn-shape-square", + "styleId": "style_69", + "tag": "button", + "width": "82px" + }, + "n265": { + "children": [ + "n264" + ], + "height": "32px", + "originalClass": "arco-space-item", + "styleId": "style_70", + "tag": "div", + "width": "82px" + }, + "n266": { + "styleId": "style_71", + "tag": "span", + "text": "批量导入" + }, + "n267": { + "children": [ + "n266" + ], + "height": "32px", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-default arco-btn-shape-square", + "styleId": "style_72", + "tag": "button", + "width": "88px" + }, + "n268": { + "children": [ + "n267" + ], + "height": "32px", + "originalClass": "arco-space-item", + "styleId": "style_28", + "tag": "div", + "width": "88px" + }, + "n269": { + "children": [ + "n265", + "n268" + ], + "height": "32px", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "styleId": "style_73", + "tag": "div", + "width": "178px" + }, + "n27": { + "children": [ + "n26" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n270": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n271": { + "styleId": "style_65", + "tag": "span", + "text": "下载" + }, + "n272": { + "children": [ + "n270", + "n271" + ], + "height": "32px", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-default arco-btn-shape-square", + "styleId": "style_72", + "tag": "button", + "width": "82px" + }, + "n273": { + "children": [ + "n272" + ], + "height": "32px", + "originalClass": "arco-space-item", + "styleId": "style_28", + "tag": "div", + "width": "82px" + }, + "n274": { + "children": [ + "n273" + ], + "height": "32px", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "styleId": "style_73", + "tag": "div", + "width": "82px" + }, + "n275": { + "children": [ + "n269", + "n274" + ], + "height": "32px", + "originalClass": "button-group--yAB1O", + "styleId": "style_74", + "tag": "div", + "width": "1485px" + }, + "n276": { + "height": "841px", + "styleId": "style_75", + "tag": "col", + "width": "236.344px" + }, + "n277": { + "height": "841px", + "styleId": "style_75", + "tag": "col", + "width": "226.734px" + }, + "n278": { + "height": "841px", + "styleId": "style_75", + "tag": "col", + "width": "196.82px" + }, + "n279": { + "height": "841px", + "styleId": "style_75", + "tag": "col", + "width": "138.562px" + }, + "n28": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n280": { + "height": "841px", + "styleId": "style_75", + "tag": "col", + "width": "148.008px" + }, + "n281": { + "height": "841px", + "styleId": "style_75", + "tag": "col", + "width": "255.078px" + }, + "n282": { + "height": "841px", + "styleId": "style_75", + "tag": "col", + "width": "138.562px" + }, + "n283": { + "height": "841px", + "styleId": "style_75", + "tag": "col", + "width": "144.891px" + }, + "n284": { + "children": [ + "n276", + "n277", + "n278", + "n279", + "n280", + "n281", + "n282", + "n283" + ], + "height": "841px", + "styleId": "style_76", + "tag": "colgroup", + "width": "1485px" + }, + "n285": { + "originalClass": "arco-table-th-item-title", + "styleId": "style_77", + "tag": "span", + "text": "集合编号" + }, + "n286": { + "children": [ + "n285" + ], + "height": "22px", + "originalClass": "arco-table-th-item", + "styleId": "style_78", + "tag": "div", + "width": "204.344px" + }, + "n287": { + "children": [ + "n286" + ], + "height": "71px", + "originalClass": "arco-table-th", + "styleId": "style_79", + "tag": "th", + "width": "236.344px" + }, + "n288": { + "originalClass": "arco-table-th-item-title", + "styleId": "style_77", + "tag": "span", + "text": "集合名称" + }, + "n289": { + "children": [ + "n288" + ], + "height": "22px", + "originalClass": "arco-table-th-item", + "styleId": "style_78", + "tag": "div", + "width": "194.734px" + }, + "n29": { + "_innerHTML": "
分析页", + "children": [ + "n28" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "分析页", + "width": "160px" + }, + "n290": { + "children": [ + "n289" + ], + "height": "71px", + "originalClass": "arco-table-th", + "styleId": "style_80", + "tag": "th", + "width": "226.734px" + }, + "n291": { + "originalClass": "arco-table-th-item-title", + "styleId": "style_77", + "tag": "span", + "text": "内容体裁" + }, + "n292": { + "children": [ + "n291" + ], + "height": "22px", + "originalClass": "arco-table-th-item", + "styleId": "style_78", + "tag": "div", + "width": "164.82px" + }, + "n293": { + "children": [ + "n292" + ], + "height": "71px", + "originalClass": "arco-table-th", + "styleId": "style_80", + "tag": "th", + "width": "196.82px" + }, + "n294": { + "originalClass": "arco-table-th-item-title", + "styleId": "style_77", + "tag": "span", + "text": "筛选方式" + }, + "n295": { + "children": [ + "n294" + ], + "height": "22px", + "originalClass": "arco-table-th-item", + "styleId": "style_78", + "tag": "div", + "width": "106.562px" + }, + "n296": { + "children": [ + "n295" + ], + "height": "71px", + "originalClass": "arco-table-th", + "styleId": "style_80", + "tag": "th", + "width": "138.562px" + }, + "n297": { + "originalClass": "arco-table-th-item-title", + "styleId": "style_81", + "tag": "span", + "text": "内容量" + }, + "n298": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n299": { + "children": [ + "n298" + ], + "height": "8px", + "originalClass": "arco-table-sorter-icon", + "styleId": "style_82", + "tag": "div", + "width": "12px" + }, + "n3": { + "children": [ + "n2" + ], + "height": "40px", + "originalClass": "arco-menu-item", + "styleId": "style_2", + "tag": "div", + "width": "204px" + }, + "n30": { + "children": [ + "n27", + "n29" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n300": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n301": { + "children": [ + "n300" + ], + "height": "8px", + "originalClass": "arco-table-sorter-icon", + "styleId": "style_82", + "tag": "div", + "width": "12px" + }, + "n302": { + "children": [ + "n299", + "n301" + ], + "height": "16px", + "originalClass": "arco-table-sorter", + "styleId": "style_83", + "tag": "div", + "width": "12px" + }, + "n303": { + "children": [ + "n297", + "n302" + ], + "height": "22px", + "originalClass": "arco-table-cell-with-sorter", + "styleId": "style_84", + "tag": "div", + "width": "116.008px" + }, + "n304": { + "children": [ + "n303" + ], + "height": "70px", + "originalClass": "arco-table-th-item arco-table-col-has-sorter", + "styleId": "style_85", + "tag": "div", + "width": "148.008px" + }, + "n305": { + "children": [ + "n304" + ], + "height": "71px", + "originalClass": "arco-table-th", + "styleId": "style_80", + "tag": "th", + "width": "148.008px" + }, + "n306": { + "originalClass": "arco-table-th-item-title", + "styleId": "style_81", + "tag": "span", + "text": "创建时间" + }, + "n307": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n308": { + "children": [ + "n307" + ], + "height": "8px", + "originalClass": "arco-table-sorter-icon", + "styleId": "style_82", + "tag": "div", + "width": "12px" + }, + "n309": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n31": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n310": { + "children": [ + "n309" + ], + "height": "8px", + "originalClass": "arco-table-sorter-icon", + "styleId": "style_82", + "tag": "div", + "width": "12px" + }, + "n311": { + "children": [ + "n308", + "n310" + ], + "height": "16px", + "originalClass": "arco-table-sorter", + "styleId": "style_83", + "tag": "div", + "width": "12px" + }, + "n312": { + "children": [ + "n306", + "n311" + ], + "height": "22px", + "originalClass": "arco-table-cell-with-sorter", + "styleId": "style_84", + "tag": "div", + "width": "223.078px" + }, + "n313": { + "children": [ + "n312" + ], + "height": "70px", + "originalClass": "arco-table-th-item arco-table-col-has-sorter", + "styleId": "style_85", + "tag": "div", + "width": "255.078px" + }, + "n314": { + "children": [ + "n313" + ], + "height": "71px", + "originalClass": "arco-table-th", + "styleId": "style_80", + "tag": "th", + "width": "255.078px" + }, + "n315": { + "originalClass": "arco-table-th-item-title", + "styleId": "style_77", + "tag": "span", + "text": "状态" + }, + "n316": { + "children": [ + "n315" + ], + "height": "22px", + "originalClass": "arco-table-th-item", + "styleId": "style_78", + "tag": "div", + "width": "106.562px" + }, + "n317": { + "children": [ + "n316" + ], + "height": "71px", + "originalClass": "arco-table-th", + "styleId": "style_80", + "tag": "th", + "width": "138.562px" + }, + "n318": { + "originalClass": "arco-table-th-item-title", + "styleId": "style_77", + "tag": "span", + "text": "操作" + }, + "n319": { + "children": [ + "n318" + ], + "height": "22px", + "originalClass": "arco-table-th-item", + "styleId": "style_78", + "tag": "div", + "width": "97.8906px" + }, + "n32": { + "children": [ + "n31" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n320": { + "children": [ + "n319" + ], + "height": "71px", + "originalClass": "arco-table-th", + "styleId": "style_86", + "tag": "th", + "width": "144.891px" + }, + "n321": { + "children": [ + "n287", + "n290", + "n293", + "n296", + "n305", + "n314", + "n317", + "n320" + ], + "height": "71px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n322": { + "children": [ + "n321" + ], + "height": "71px", + "styleId": "style_88", + "tag": "thead", + "width": "1485px" + }, + "n323": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n324": { + "children": [ + "n323" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n325": { + "_innerHTML": "18514366-5559", + "children": [ + "n324" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "18514366-5559" + }, + "n326": { + "children": [ + "n325" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n327": { + "children": [ + "n326" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n328": { + "children": [ + "n327" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n329": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "每日推荐视频集" + }, + "n33": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n330": { + "children": [ + "n329" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n331": { + "children": [ + "n330" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n332": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n333": { + "_innerHTML": "图文", + "children": [ + "n332" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "图文", + "width": "164.82px" + }, + "n334": { + "children": [ + "n333" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n335": { + "children": [ + "n334" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n336": { + "children": [ + "n335" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n337": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "人工" + }, + "n338": { + "children": [ + "n337" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n339": { + "children": [ + "n338" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n34": { + "_innerHTML": "
多维数据分析", + "children": [ + "n33" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "多维数据分析", + "width": "160px" + }, + "n340": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "105" + }, + "n341": { + "children": [ + "n340" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n342": { + "children": [ + "n341" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n343": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-10 23:28:13" + }, + "n344": { + "children": [ + "n343" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n345": { + "children": [ + "n344" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n346": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-success", + "styleId": "style_94", + "tag": "span", + "width": "6px" + }, + "n347": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "已上线", + "width": "42px" + }, + "n348": { + "children": [ + "n346", + "n347" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n349": { + "children": [ + "n348" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n35": { + "children": [ + "n32", + "n34" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n350": { + "children": [ + "n349" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n351": { + "children": [ + "n350" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n352": { + "children": [ + "n351" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n353": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n354": { + "children": [ + "n353" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n355": { + "children": [ + "n354" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n356": { + "children": [ + "n355" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n357": { + "children": [ + "n356" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n358": { + "children": [ + "n328", + "n331", + "n336", + "n339", + "n342", + "n345", + "n352", + "n357" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n359": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n36": { + "children": [ + "n30", + "n35" + ], + "height": "0px", + "originalClass": "arco-menu-inline-content", + "styleId": "style_10", + "tag": "div", + "width": "204px" + }, + "n360": { + "children": [ + "n359" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n361": { + "_innerHTML": "64494084-3767", + "children": [ + "n360" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "64494084-3767" + }, + "n362": { + "children": [ + "n361" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n363": { + "children": [ + "n362" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n364": { + "children": [ + "n363" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n365": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "每日推荐视频集" + }, + "n366": { + "children": [ + "n365" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n367": { + "children": [ + "n366" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n368": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n369": { + "_innerHTML": "横版短视频", + "children": [ + "n368" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "横版短视频", + "width": "164.82px" + }, + "n37": { + "children": [ + "n25", + "n36" + ], + "height": "44px", + "originalClass": "arco-menu-inline", + "styleId": "style_11", + "tag": "div", + "width": "204px" + }, + "n370": { + "children": [ + "n369" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n371": { + "children": [ + "n370" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n372": { + "children": [ + "n371" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n373": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "人工" + }, + "n374": { + "children": [ + "n373" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n375": { + "children": [ + "n374" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n376": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "1,246" + }, + "n377": { + "children": [ + "n376" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n378": { + "children": [ + "n377" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n379": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-16 23:28:13" + }, + "n38": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n380": { + "children": [ + "n379" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n381": { + "children": [ + "n380" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n382": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "styleId": "style_100", + "tag": "span", + "width": "6px" + }, + "n383": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" + }, + "n384": { + "children": [ + "n382", + "n383" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n385": { + "children": [ + "n384" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n386": { + "children": [ + "n385" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n387": { + "children": [ + "n386" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n388": { + "children": [ + "n387" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n389": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n39": { + "_innerHTML": " 列表页", + "children": [ + "n38" + ], + "styleId": "style_12", + "tag": "span", + "text": "列表页" + }, + "n390": { + "children": [ + "n389" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n391": { + "children": [ + "n390" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n392": { + "children": [ + "n391" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n393": { + "children": [ + "n392" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n394": { + "children": [ + "n364", + "n367", + "n372", + "n375", + "n378", + "n381", + "n388", + "n393" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n395": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n396": { + "children": [ + "n395" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n397": { + "_innerHTML": "79634294-4686", + "children": [ + "n396" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "79634294-4686" + }, + "n398": { + "children": [ + "n397" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n399": { + "children": [ + "n398" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n4": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n40": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n400": { + "children": [ + "n399" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n401": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "国际新闻集合" + }, + "n402": { + "children": [ + "n401" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n403": { + "children": [ + "n402" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n404": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n405": { + "_innerHTML": "竖版短视频", + "children": [ + "n404" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "竖版短视频", + "width": "164.82px" + }, + "n406": { + "children": [ + "n405" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n407": { + "children": [ + "n406" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n408": { + "children": [ + "n407" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n409": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" + }, + "n41": { + "children": [ + "n40" + ], + "height": "40px", + "originalClass": "arco-menu-icon-suffix", + "styleId": "style_13", + "tag": "span", + "width": "14px" + }, + "n410": { + "children": [ + "n409" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n411": { + "children": [ + "n410" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n412": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "366" + }, + "n413": { + "children": [ + "n412" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n414": { + "children": [ + "n413" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n415": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-05 23:28:13" + }, + "n416": { + "children": [ + "n415" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n417": { + "children": [ + "n416" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n418": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-success", + "styleId": "style_94", + "tag": "span", + "width": "6px" + }, + "n419": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "已上线", + "width": "42px" + }, + "n42": { + "children": [ + "n39", + "n41" + ], + "height": "40px", + "originalClass": "arco-menu-inline-header arco-menu-selected", + "styleId": "style_14", + "tag": "div", + "width": "204px" + }, + "n420": { + "children": [ + "n418", + "n419" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n421": { + "children": [ + "n420" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n422": { + "children": [ + "n421" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n423": { + "children": [ + "n422" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n424": { + "children": [ + "n423" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n425": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n426": { + "children": [ + "n425" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n427": { + "children": [ + "n426" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n428": { + "children": [ + "n427" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n429": { + "children": [ + "n428" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n43": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_15", + "tag": "span", + "width": "20px" + }, + "n430": { + "children": [ + "n400", + "n403", + "n408", + "n411", + "n414", + "n417", + "n424", + "n429" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n431": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n432": { + "children": [ + "n431" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n433": { + "_innerHTML": "86326438-1258", + "children": [ + "n432" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "86326438-1258" + }, + "n434": { + "children": [ + "n433" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n435": { + "children": [ + "n434" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n436": { + "children": [ + "n435" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n437": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "抖音短视频候选集" + }, + "n438": { + "children": [ + "n437" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n439": { + "children": [ + "n438" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n44": { + "children": [ + "n43" + ], + "height": "40px", + "styleId": "style_16", + "tag": "span", + "width": "20px" + }, + "n440": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n441": { + "_innerHTML": "横版短视频", + "children": [ + "n440" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "横版短视频", + "width": "164.82px" + }, + "n442": { + "children": [ + "n441" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n443": { + "children": [ + "n442" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n444": { + "children": [ + "n443" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n445": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "人工" + }, + "n446": { + "children": [ + "n445" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n447": { + "children": [ + "n446" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n448": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "1" + }, + "n449": { + "children": [ + "n448" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n45": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_15", + "tag": "div", + "width": "12px" + }, + "n450": { + "children": [ + "n449" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n451": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-03 23:28:13" + }, + "n452": { + "children": [ + "n451" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n453": { + "children": [ + "n452" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n454": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "styleId": "style_100", + "tag": "span", + "width": "6px" + }, + "n455": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" + }, + "n456": { + "children": [ + "n454", + "n455" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n457": { + "children": [ + "n456" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n458": { + "children": [ + "n457" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n459": { + "children": [ + "n458" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n46": { + "_innerHTML": "
查询表格", + "children": [ + "n45" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_17", + "tag": "span", + "text": "查询表格", + "width": "160px" + }, + "n460": { + "children": [ + "n459" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n461": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n462": { + "children": [ + "n461" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n463": { + "children": [ + "n462" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n464": { + "children": [ + "n463" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n465": { + "children": [ + "n464" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n466": { + "children": [ + "n436", + "n439", + "n444", + "n447", + "n450", + "n453", + "n460", + "n465" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n467": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n468": { + "children": [ + "n467" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n469": { + "_innerHTML": "98615157-3293", + "children": [ + "n468" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "98615157-3293" + }, + "n47": { + "children": [ + "n44", + "n46" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-selected arco-menu-item-indented", + "styleId": "style_18", + "tag": "div", + "width": "204px" + }, + "n470": { + "children": [ + "n469" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n471": { + "children": [ + "n470" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n472": { + "children": [ + "n471" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n473": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "国际新闻集合" + }, + "n474": { + "children": [ + "n473" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n475": { + "children": [ + "n474" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n476": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n477": { + "_innerHTML": "竖版短视频", + "children": [ + "n476" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "竖版短视频", + "width": "164.82px" + }, + "n478": { + "children": [ + "n477" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n479": { + "children": [ + "n478" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n48": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n480": { + "children": [ + "n479" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n481": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "人工" + }, + "n482": { + "children": [ + "n481" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n483": { + "children": [ + "n482" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n484": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "1,316" + }, + "n485": { + "children": [ + "n484" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n486": { + "children": [ + "n485" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n487": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-03 23:28:13" + }, + "n488": { + "children": [ + "n487" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n489": { + "children": [ + "n488" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n49": { + "children": [ + "n48" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n490": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "styleId": "style_100", + "tag": "span", + "width": "6px" + }, + "n491": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" + }, + "n492": { + "children": [ + "n490", + "n491" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n493": { + "children": [ + "n492" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n494": { + "children": [ + "n493" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n495": { + "children": [ + "n494" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n496": { + "children": [ + "n495" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n497": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n498": { + "children": [ + "n497" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n499": { + "children": [ + "n498" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n5": { + "_innerHTML": " 仪表盘", + "children": [ + "n4" + ], + "styleId": "style_3", + "tag": "span", + "text": "仪表盘" + }, + "n50": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n500": { + "children": [ + "n499" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n501": { + "children": [ + "n500" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n502": { + "children": [ + "n472", + "n475", + "n480", + "n483", + "n486", + "n489", + "n496", + "n501" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n503": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n504": { + "children": [ + "n503" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n505": { + "_innerHTML": "14712111-5478", + "children": [ + "n504" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "14712111-5478" + }, + "n506": { + "children": [ + "n505" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n507": { + "children": [ + "n506" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n508": { + "children": [ + "n507" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n509": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "国际新闻集合" + }, + "n51": { + "_innerHTML": "
卡片列表", + "children": [ + "n50" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "卡片列表", + "width": "160px" + }, + "n510": { + "children": [ + "n509" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n511": { + "children": [ + "n510" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n512": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n513": { + "_innerHTML": "图文", + "children": [ + "n512" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "图文", + "width": "164.82px" + }, + "n514": { + "children": [ + "n513" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n515": { + "children": [ + "n514" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n516": { + "children": [ + "n515" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n517": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" + }, + "n518": { + "children": [ + "n517" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n519": { + "children": [ + "n518" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n52": { + "children": [ + "n49", + "n51" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n520": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "1,688" + }, + "n521": { + "children": [ + "n520" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n522": { + "children": [ + "n521" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n523": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-02 23:28:13" + }, + "n524": { + "children": [ + "n523" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n525": { + "children": [ + "n524" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n526": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "styleId": "style_100", + "tag": "span", + "width": "6px" + }, + "n527": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" + }, + "n528": { + "children": [ + "n526", + "n527" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n529": { + "children": [ + "n528" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n53": { + "children": [ + "n47", + "n52" + ], + "originalClass": "arco-menu-inline-content arco-menu-inline-enter-done", + "styleId": "style_10", + "tag": "div", + "width": "204px" + }, + "n530": { + "children": [ + "n529" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n531": { + "children": [ + "n530" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n532": { + "children": [ + "n531" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n533": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n534": { + "children": [ + "n533" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n535": { + "children": [ + "n534" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n536": { + "children": [ + "n535" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n537": { + "children": [ + "n536" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n538": { + "children": [ + "n508", + "n511", + "n516", + "n519", + "n522", + "n525", + "n532", + "n537" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n539": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n54": { + "children": [ + "n42", + "n53" + ], + "height": "132px", + "originalClass": "arco-menu-inline", + "styleId": "style_11", + "tag": "div", + "width": "204px" + }, + "n540": { + "children": [ + "n539" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n541": { + "_innerHTML": "34674613-1537", + "children": [ + "n540" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "34674613-1537" + }, + "n542": { + "children": [ + "n541" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n543": { + "children": [ + "n542" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n544": { + "children": [ + "n543" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n545": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "每日推荐视频集" + }, + "n546": { + "children": [ + "n545" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n547": { + "children": [ + "n546" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n548": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n549": { + "_innerHTML": "竖版短视频", + "children": [ + "n548" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "竖版短视频", + "width": "164.82px" + }, + "n55": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n550": { + "children": [ + "n549" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n551": { + "children": [ + "n550" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n552": { + "children": [ + "n551" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n553": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" + }, + "n554": { + "children": [ + "n553" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n555": { + "children": [ + "n554" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n556": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "324" + }, + "n557": { + "children": [ + "n556" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n558": { + "children": [ + "n557" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n559": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-06 23:28:13" + }, + "n56": { + "_innerHTML": " 表单页", + "children": [ + "n55" + ], + "styleId": "style_3", + "tag": "span", + "text": "表单页" + }, + "n560": { + "children": [ + "n559" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n561": { + "children": [ + "n560" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n562": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "styleId": "style_100", + "tag": "span", + "width": "6px" + }, + "n563": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" + }, + "n564": { + "children": [ + "n562", + "n563" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n565": { + "children": [ + "n564" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n566": { + "children": [ + "n565" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n567": { + "children": [ + "n566" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n568": { + "children": [ + "n567" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n569": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n57": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n570": { + "children": [ + "n569" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n571": { + "children": [ + "n570" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n572": { + "children": [ + "n571" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n573": { + "children": [ + "n572" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n574": { + "children": [ + "n544", + "n547", + "n552", + "n555", + "n558", + "n561", + "n568", + "n573" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n575": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n576": { + "children": [ + "n575" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n577": { + "_innerHTML": "71922474-4505", + "children": [ + "n576" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "71922474-4505" + }, + "n578": { + "children": [ + "n577" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n579": { + "children": [ + "n578" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n58": { + "children": [ + "n57" + ], + "height": "40px", + "originalClass": "arco-menu-icon-suffix", + "styleId": "style_4", + "tag": "span", + "width": "14px" + }, + "n580": { + "children": [ + "n579" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n581": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "每日推荐视频集" + }, + "n582": { + "children": [ + "n581" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n583": { + "children": [ + "n582" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n584": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n585": { + "_innerHTML": "竖版短视频", + "children": [ + "n584" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "竖版短视频", + "width": "164.82px" + }, + "n586": { + "children": [ + "n585" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n587": { + "children": [ + "n586" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n588": { + "children": [ + "n587" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n589": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" + }, + "n59": { + "children": [ + "n56", + "n58" + ], + "height": "40px", + "originalClass": "arco-menu-inline-header", + "styleId": "style_5", + "tag": "div", + "width": "204px" + }, + "n590": { + "children": [ + "n589" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n591": { + "children": [ + "n590" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n592": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "1,083" + }, + "n593": { + "children": [ + "n592" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n594": { + "children": [ + "n593" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n595": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-15 23:28:13" + }, + "n596": { + "children": [ + "n595" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n597": { + "children": [ + "n596" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n598": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-error", + "styleId": "style_100", + "tag": "span", + "width": "6px" + }, + "n599": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "未上线", + "width": "42px" + }, + "n6": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n60": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n600": { + "children": [ + "n598", + "n599" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n601": { + "children": [ + "n600" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n602": { + "children": [ + "n601" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n603": { + "children": [ + "n602" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n604": { + "children": [ + "n603" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n605": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n606": { + "children": [ + "n605" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n607": { + "children": [ + "n606" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n608": { + "children": [ + "n607" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n609": { + "children": [ + "n608" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n61": { + "children": [ + "n60" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n610": { + "children": [ + "n580", + "n583", + "n588", + "n591", + "n594", + "n597", + "n604", + "n609" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n611": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n612": { + "children": [ + "n611" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n613": { + "_innerHTML": "14481716-4383", + "children": [ + "n612" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "14481716-4383" + }, + "n614": { + "children": [ + "n613" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n615": { + "children": [ + "n614" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n616": { + "children": [ + "n615" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n617": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "抖音短视频候选集" + }, + "n618": { + "children": [ + "n617" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n619": { + "children": [ + "n618" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n62": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n620": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n621": { + "_innerHTML": "横版短视频", + "children": [ + "n620" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "横版短视频", + "width": "164.82px" + }, + "n622": { + "children": [ + "n621" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n623": { + "children": [ + "n622" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n624": { + "children": [ + "n623" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n625": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" + }, + "n626": { + "children": [ + "n625" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n627": { + "children": [ + "n626" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n628": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "835" + }, + "n629": { + "children": [ + "n628" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n63": { + "_innerHTML": "
分组表单", + "children": [ + "n62" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "分组表单", + "width": "160px" + }, + "n630": { + "children": [ + "n629" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n631": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-04-06 23:28:13" + }, + "n632": { + "children": [ + "n631" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n633": { + "children": [ + "n632" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n634": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-success", + "styleId": "style_94", + "tag": "span", + "width": "6px" + }, + "n635": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "已上线", + "width": "42px" + }, + "n636": { + "children": [ + "n634", + "n635" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n637": { + "children": [ + "n636" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n638": { + "children": [ + "n637" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n639": { + "children": [ + "n638" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n64": { + "children": [ + "n61", + "n63" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n640": { + "children": [ + "n639" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n641": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n642": { + "children": [ + "n641" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n643": { + "children": [ + "n642" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n644": { + "children": [ + "n643" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n645": { + "children": [ + "n644" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n646": { + "children": [ + "n616", + "n619", + "n624", + "n627", + "n630", + "n633", + "n640", + "n645" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n647": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n648": { + "children": [ + "n647" + ], + "originalClass": "arco-typography-operation-copy", + "styleId": "style_89", + "tag": "span" + }, + "n649": { + "_innerHTML": "26506467-1132", + "children": [ + "n648" + ], + "originalClass": "arco-typography", + "styleId": "style_90", + "tag": "span", + "text": "26506467-1132" + }, + "n65": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n650": { + "children": [ + "n649" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n651": { + "children": [ + "n650" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "204.344px" + }, + "n652": { + "children": [ + "n651" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "236.344px" + }, + "n653": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "抖音短视频候选集" + }, + "n654": { + "children": [ + "n653" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "194.734px" + }, + "n655": { + "children": [ + "n654" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "226.734px" + }, + "n656": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n657": { + "_innerHTML": "横版短视频", + "children": [ + "n656" + ], + "height": "22px", + "originalClass": "content-type--HXfG3", + "styleId": "style_93", + "tag": "div", + "text": "横版短视频", + "width": "164.82px" + }, + "n658": { + "children": [ + "n657" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n659": { + "children": [ + "n658" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "164.82px" + }, + "n66": { + "children": [ + "n65" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n660": { + "children": [ + "n659" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "196.82px" + }, + "n661": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "规则筛选" + }, + "n662": { + "children": [ + "n661" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n663": { + "children": [ + "n662" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n664": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "1,446" + }, + "n665": { + "children": [ + "n664" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "116.008px" + }, + "n666": { + "children": [ + "n665" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "148.008px" + }, + "n667": { + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span", + "text": "2026-03-01 23:28:13" + }, + "n668": { + "children": [ + "n667" + ], + "height": "22px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "223.078px" + }, + "n669": { + "children": [ + "n668" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "255.078px" + }, + "n67": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n670": { + "height": "6px", + "originalClass": "arco-badge-status-dot arco-badge-status-success", + "styleId": "style_94", + "tag": "span", + "width": "6px" + }, + "n671": { + "height": "22px", + "originalClass": "arco-badge-status-text", + "styleId": "style_95", + "tag": "span", + "text": "已上线", + "width": "42px" + }, + "n672": { + "children": [ + "n670", + "n671" + ], + "height": "22px", + "originalClass": "arco-badge-status-wrapper", + "styleId": "style_96", + "tag": "span", + "width": "56px" + }, + "n673": { + "children": [ + "n672" + ], + "height": "22px", + "originalClass": "arco-badge arco-badge-status arco-badge-no-children", + "styleId": "style_97", + "tag": "span", + "width": "56px" + }, + "n674": { + "children": [ + "n673" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n675": { + "children": [ + "n674" + ], + "height": "24px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "106.562px" + }, + "n676": { + "children": [ + "n675" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "138.562px" + }, + "n677": { + "styleId": "style_98", + "tag": "span", + "text": "查看" + }, + "n678": { + "children": [ + "n677" + ], + "height": "28px", + "originalClass": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square", + "styleId": "style_99", + "tag": "button", + "width": "60px" + }, + "n679": { + "children": [ + "n678" + ], + "originalClass": "arco-table-cell-wrap-value", + "styleId": "style_90", + "tag": "span" + }, + "n68": { + "_innerHTML": "
分步表单", + "children": [ + "n67" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "分步表单", + "width": "160px" + }, + "n680": { + "children": [ + "n679" + ], + "height": "28px", + "originalClass": "arco-table-cell", + "styleId": "style_91", + "tag": "div", + "width": "112.891px" + }, + "n681": { + "children": [ + "n680" + ], + "height": "77px", + "originalClass": "arco-table-td", + "styleId": "style_92", + "tag": "td", + "width": "144.891px" + }, + "n682": { + "children": [ + "n652", + "n655", + "n660", + "n663", + "n666", + "n669", + "n676", + "n681" + ], + "height": "77px", + "originalClass": "arco-table-tr", + "styleId": "style_87", + "tag": "tr", + "width": "1485px" + }, + "n683": { + "children": [ + "n358", + "n394", + "n430", + "n466", + "n502", + "n538", + "n574", + "n610", + "n646", + "n682" + ], + "height": "770px", + "styleId": "style_101", + "tag": "tbody", + "width": "1485px" + }, + "n684": { + "children": [ + "n284", + "n322", + "n683" + ], + "height": "841px", + "styleId": "style_102", + "tag": "table", + "width": "1485px" + }, + "n685": { + "children": [ + "n684" + ], + "height": "841px", + "originalClass": "arco-table-content-inner", + "styleId": "style_103", + "tag": "div", + "width": "1485px" + }, + "n686": { + "children": [ + "n685" + ], + "height": "841px", + "originalClass": "arco-table-content-scroll", + "styleId": "style_104", + "tag": "div", + "width": "1485px" + }, + "n687": { + "children": [ + "n686" + ], + "height": "841px", + "originalClass": "arco-table-container", + "styleId": "style_105", + "tag": "div", + "width": "1485px" + }, + "n688": { + "height": "32px", + "originalClass": "arco-pagination-total-text", + "styleId": "style_106", + "tag": "div", + "text": "共 100 条", + "width": "59.1406px" + }, + "n689": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n69": { + "children": [ + "n66", + "n68" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n690": { + "children": [ + "n689" + ], + "height": "32px", + "originalClass": "arco-pagination-item arco-pagination-item-prev arco-pagination-item-disabled", + "styleId": "style_107", + "tag": "li", + "width": "32px" + }, + "n691": { + "height": "32px", + "originalClass": "arco-pagination-item arco-pagination-item-active", + "styleId": "style_108", + "tag": "li", + "text": "1", + "width": "32px" + }, + "n692": { + "height": "32px", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "2", + "width": "32px" + }, + "n693": { + "height": "32px", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "3", + "width": "32px" + }, + "n694": { + "height": "32px", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "4", + "width": "32px" + }, + "n695": { + "height": "32px", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "5", + "width": "32px" + }, + "n696": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n697": { + "children": [ + "n696" + ], + "height": "32px", + "originalClass": "arco-pagination-item arco-pagination-item-jumper", + "styleId": "style_110", + "tag": "li", + "width": "32px" + }, + "n698": { + "height": "32px", + "originalClass": "arco-pagination-item", + "styleId": "style_109", + "tag": "li", + "text": "10", + "width": "32px" + }, + "n699": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n7": { + "children": [ + "n6" + ], + "height": "40px", + "originalClass": "arco-menu-icon-suffix", + "styleId": "style_4", + "tag": "span", + "width": "14px" + }, + "n70": { + "children": [ + "n64", + "n69" + ], + "height": "0px", + "originalClass": "arco-menu-inline-content", + "styleId": "style_10", + "tag": "div", + "width": "204px" + }, + "n700": { + "children": [ + "n699" + ], + "height": "32px", + "originalClass": "arco-pagination-item arco-pagination-item-next", + "styleId": "style_111", + "tag": "li", + "width": "32px" + }, + "n701": { + "children": [ + "n690", + "n691", + "n692", + "n693", + "n694", + "n695", + "n697", + "n698", + "n700" + ], + "height": "32px", + "originalClass": "arco-pagination-list", + "styleId": "style_28", + "tag": "ul", + "width": "352px" + }, + "n702": { + "height": "16.0938px", + "originalClass": "arco-select-view-input arco-select-hidden", + "styleId": "style_112", + "tag": "input", + "width": "95.3516px" + }, + "n703": { + "height": "30px", + "originalClass": "arco-select-view-value", + "styleId": "style_113", + "tag": "span", + "text": "10 条/页", + "width": "57.3516px" + }, + "n704": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n705": { + "children": [ + "n704" + ], + "height": "30px", + "originalClass": "arco-select-arrow-icon", + "styleId": "style_114", + "tag": "div", + "width": "12px" + }, + "n706": { + "children": [ + "n705" + ], + "height": "30px", + "originalClass": "arco-select-suffix", + "styleId": "style_115", + "tag": "div", + "width": "12px" + }, + "n707": { + "children": [ + "n702", + "n703", + "n706" + ], + "height": "32px", + "originalClass": "arco-select-view", + "styleId": "style_116", + "tag": "div", + "width": "97.3516px" + }, + "n708": { + "children": [ + "n707" + ], + "height": "32px", + "originalClass": "arco-select arco-select-single arco-select-size-default", + "styleId": "style_117", + "tag": "div", + "width": "97.3516px" + }, + "n709": { + "children": [ + "n708" + ], + "height": "32px", + "originalClass": "arco-pagination-option", + "styleId": "style_118", + "tag": "div", + "width": "97.3516px" + }, + "n71": { + "children": [ + "n59", + "n70" + ], + "height": "44px", + "originalClass": "arco-menu-inline", + "styleId": "style_11", + "tag": "div", + "width": "204px" + }, + "n710": { + "children": [ + "n688", + "n701", + "n709" + ], + "height": "32px", + "originalClass": "arco-pagination arco-pagination-size-default", + "styleId": "style_119", + "tag": "div", + "width": "524.492px" + }, + "n711": { + "children": [ + "n710" + ], + "height": "44px", + "originalClass": "arco-table-pagination", + "styleId": "style_120", + "tag": "div", + "width": "1485px" + }, + "n712": { + "children": [ + "n687", + "n711" + ], + "height": "885px", + "originalClass": "arco-spin-children", + "styleId": "style_121", + "tag": "div", + "width": "1485px" + }, + "n713": { + "children": [ + "n712" + ], + "height": "885px", + "originalClass": "arco-spin", + "styleId": "style_103", + "tag": "div", + "width": "1485px" + }, + "n714": { + "children": [ + "n713" + ], + "height": "885px", + "originalClass": "arco-table arco-table-size-default arco-table-hover", + "styleId": "style_121", + "tag": "div", + "width": "1485px" + }, + "n715": { + "children": [ + "n163", + "n261", + "n275", + "n714" + ], + "height": "1102px", + "originalClass": "arco-card-body", + "styleId": "style_122", + "tag": "div", + "width": "1485px" + }, + "n716": { + "children": [ + "n715" + ], + "height": "1142px", + "originalClass": "arco-card arco-card-size-default", + "styleId": "style_123", + "tag": "div", + "width": "1525px" + }, + "n717": { + "children": [ + "n716" + ], + "height": "1142px", + "originalClass": "arco-layout-content", + "styleId": "style_124", + "tag": "main", + "width": "1525px" + }, + "n718": { + "children": [ + "n162", + "n717" + ], + "height": "1182px", + "originalClass": "layout-content-wrapper--xX3sP", + "styleId": "style_125", + "tag": "div", + "width": "1525px" + }, + "n719": { + "height": "40px", + "originalClass": "arco-layout-footer footer--No_Lw", + "styleId": "style_126", + "tag": "footer", + "text": "Arco Design Pro", + "width": "1565px" + }, + "n72": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n720": { + "children": [ + "n718", + "n719" + ], + "height": "1238px", + "originalClass": "arco-layout layout-content--Fd7YS", + "styleId": "style_127", + "tag": "section", + "width": "1785px" + }, + "n721": { + "children": [ + "n146", + "n720" + ], + "height": "1238px", + "originalClass": "arco-layout arco-layout-has-sider", + "styleId": "style_128", + "tag": "section", + "width": "1785px" + }, + "n722": { + "children": [ + "n721" + ], + "height": "1238px", + "originalClass": "arco-layout layout--NILiW", + "styleId": "style_129", + "tag": "section", + "width": "1785px" + }, + "n723": { + "children": [ + "n722" + ], + "height": "1238px", + "id": "root", + "styleId": "style_29", + "tag": "div", + "width": "1785px" + }, + "n724": { + "height": "0px", + "styleId": "style_29", + "tag": "div", + "width": "1785px" + }, + "n725": { + "height": "0px", + "styleId": "style_29", + "tag": "div", + "width": "1785px" + }, + "n726": { + "height": "0px", + "styleId": "style_29", + "tag": "div", + "width": "1785px" + }, + "n727": { + "height": "0px", + "styleId": "style_29", + "tag": "div", + "width": "1785px" + }, + "n728": { + "children": [ + "n723", + "n724", + "n725", + "n726", + "n727" + ], + "height": "921px", + "styleId": "style_130", + "tag": "body", + "width": "1785px" + }, + "n729": { + "children": [ + "n728" + ], + "tag": "root" + }, + "n73": { + "_innerHTML": " 详情页", + "children": [ + "n72" + ], + "styleId": "style_3", + "tag": "span", + "text": "详情页" + }, + "n74": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n75": { + "children": [ + "n74" + ], + "height": "40px", + "originalClass": "arco-menu-icon-suffix", + "styleId": "style_4", + "tag": "span", + "width": "14px" + }, + "n76": { + "children": [ + "n73", + "n75" + ], + "height": "40px", + "originalClass": "arco-menu-inline-header", + "styleId": "style_5", + "tag": "div", + "width": "204px" + }, + "n77": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n78": { + "children": [ + "n77" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n79": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n8": { + "children": [ + "n5", + "n7" + ], + "height": "40px", + "originalClass": "arco-menu-inline-header", + "styleId": "style_5", + "tag": "div", + "width": "204px" + }, + "n80": { + "_innerHTML": "
基础详情页", + "children": [ + "n79" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "基础详情页", + "width": "160px" + }, + "n81": { + "children": [ + "n78", + "n80" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n82": { + "children": [ + "n81" + ], + "height": "0px", + "originalClass": "arco-menu-inline-content", + "styleId": "style_10", + "tag": "div", + "width": "204px" + }, + "n83": { + "children": [ + "n76", + "n82" + ], + "height": "44px", + "originalClass": "arco-menu-inline", + "styleId": "style_11", + "tag": "div", + "width": "204px" + }, + "n84": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n85": { + "_innerHTML": " 结果页", + "children": [ + "n84" + ], + "styleId": "style_3", + "tag": "span", + "text": "结果页" + }, + "n86": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n87": { + "children": [ + "n86" + ], + "height": "40px", + "originalClass": "arco-menu-icon-suffix", + "styleId": "style_4", + "tag": "span", + "width": "14px" + }, + "n88": { + "children": [ + "n85", + "n87" + ], + "height": "40px", + "originalClass": "arco-menu-inline-header", + "styleId": "style_5", + "tag": "div", + "width": "204px" + }, + "n89": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n9": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n90": { + "children": [ + "n89" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n91": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n92": { + "_innerHTML": "
成功页", + "children": [ + "n91" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "成功页", + "width": "160px" + }, + "n93": { + "children": [ + "n90", + "n92" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n94": { + "height": "0px", + "originalClass": "arco-menu-indent", + "styleId": "style_6", + "tag": "span", + "width": "20px" + }, + "n95": { + "children": [ + "n94" + ], + "height": "40px", + "styleId": "style_7", + "tag": "span", + "width": "20px" + }, + "n96": { + "height": "18px", + "originalClass": "icon-empty--ILNVB", + "styleId": "style_6", + "tag": "div", + "width": "12px" + }, + "n97": { + "_innerHTML": "
失败页", + "children": [ + "n96" + ], + "height": "40px", + "originalClass": "arco-menu-item-inner", + "styleId": "style_8", + "tag": "span", + "text": "失败页", + "width": "160px" + }, + "n98": { + "children": [ + "n95", + "n97" + ], + "height": "40px", + "originalClass": "arco-menu-item arco-menu-item-indented", + "styleId": "style_9", + "tag": "div", + "width": "204px" + }, + "n99": { + "children": [ + "n93", + "n98" + ], + "height": "0px", + "originalClass": "arco-menu-inline-content", + "styleId": "style_10", + "tag": "div", + "width": "204px" + } + }, + "root": "n729" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/structure/styles.json b/AI-Arco-Design-Themes-Demos-complete/structure/styles.json new file mode 100644 index 0000000..d6094c6 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/structure/styles.json @@ -0,0 +1,2173 @@ +{ + "styles": { + "style_1": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_10": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip", + "transition": "height 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "tw": "block static font-normal leading-snug border-0 visible m-0 p-0 overflow-hidden" + }, + "style_100": { + "custom": { + "background": "rgb(245, 63, 63) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(245, 63, 63)", + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "50%", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-none text-left break-all border-0 visible m-0 p-0 overflow-visible" + }, + "style_101": { + "custom": { + "border": "0px none rgb(128, 128, 128)", + "borderColor": "rgb(128, 128, 128)", + "color": "rgb(78, 89, 105)", + "display": "table-row-group", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_102": { + "custom": { + "border": "0px none rgb(128, 128, 128)", + "borderColor": "rgb(128, 128, 128)", + "color": "rgb(78, 89, 105)", + "display": "table", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "100%", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_103": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_104": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-hidden" + }, + "style_105": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "4px 4px 0px 0px", + "borderTopLeftRadius": "4px", + "borderTopRightRadius": "4px", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "block relative font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_106": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal border-0 visible mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" + }, + "style_107": { + "custom": { + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(201, 205, 212)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip" + }, + "tw": "inline-block static font-normal text-center border-0 visible cursor-not-allowed mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" + }, + "style_108": { + "custom": { + "background": "rgb(232, 243, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(232, 243, 255)", + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip", + "transition": "color 0.2s cubic-bezier(0, 0, 1, 1), background-color 0.2s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "inline-block static font-normal text-center border-0 visible cursor-pointer mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" + }, + "style_109": { + "custom": { + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip" + }, + "tw": "inline-block static font-normal text-center border-0 visible cursor-pointer mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" + }, + "style_11": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-snug border-0 visible m-0 p-0 overflow-visible" + }, + "style_110": { + "custom": { + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "16px", + "lineHeight": "32px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip" + }, + "tw": "inline-flex static justify-center items-center font-normal text-center border-0 visible cursor-pointer mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" + }, + "style_111": { + "custom": { + "border": "0px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "lineHeight": "32px", + "minHeight": "0px", + "minWidth": "32px", + "textOverflow": "clip" + }, + "tw": "inline-block static font-normal text-center border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_112": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "13.9062px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetBlockEnd": "13.9062px", + "insetInlineEnd": "-11px", + "insetInlineStart": "11px", + "left": "11px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "clip", + "right": "-11px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px" + }, + "tw": "block absolute -z-0 font-normal leading-none whitespace-nowrap border-0 opacity-0 visible cursor-pointer m-0 p-0" + }, + "style_113": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "padding": "0px 6px 0px 0px", + "paddingInlineEnd": "6px", + "textOverflow": "ellipsis" + }, + "tw": "block static font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 pt-0 pr-1.5 pb-0 pl-0 overflow-hidden" + }, + "style_114": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-7 text-left border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_115": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-7 text-left border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-1 p-0 overflow-visible" + }, + "style_116": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "2px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 11px", + "paddingInlineEnd": "11px", + "paddingInlineStart": "11px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1), padding linear" + }, + "tw": "flex relative font-normal leading-7 text-left border visible cursor-pointer m-0 pt-0 pr-2.5 pb-0 pl-2.5 overflow-visible" + }, + "style_117": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "inline-block relative font-normal leading-3 text-center border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_118": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "block relative font-normal leading-3 text-center border-0 visible mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" + }, + "style_119": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "12px 0px 0px", + "marginBlockStart": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-tight border-0 visible mt-3 mr-0 mb-0 ml-0 p-0 overflow-visible" + }, + "style_12": { + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_120": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static justify-end font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_121": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "block relative font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_122": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "paddingBlockEnd": "20px", + "paddingBlockStart": "20px", + "paddingInlineEnd": "20px", + "paddingInlineStart": "20px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-5 overflow-visible" + }, + "style_123": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "bottom": "0px", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "box-shadow 0.2s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block relative font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_124": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_125": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "padding": "16px 20px 0px", + "paddingBlockStart": "16px", + "paddingInlineEnd": "20px", + "paddingInlineStart": "20px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 pt-4 pr-5 pb-0 pl-5 overflow-visible" + }, + "style_126": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textOverflow": "clip" + }, + "tw": "flex static justify-center items-center shrink-0 font-normal leading-tight text-center border-0 visible m-0 p-0 overflow-visible" + }, + "style_127": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "921px", + "minWidth": "1100px", + "overflow": "hidden auto", + "padding": "0px 0px 0px 220px", + "paddingInlineStart": "220px", + "textAlign": "start", + "textOverflow": "clip", + "transition": "padding-left 0.2s" + }, + "tw": "flex static flex-col grow basis-1/12 font-normal leading-tight border-0 visible m-0 pt-0 pr-0 pb-0 pl-56 overflow-x-hidden" + }, + "style_128": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_129": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static flex-col grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_13": { + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "bottom": "-20px", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetBlockEnd": "-20px", + "insetBlockStart": "20px", + "insetInlineEnd": "12px", + "insetInlineStart": "178px", + "left": "178px", + "minHeight": "0px", + "minWidth": "0px", + "right": "12px", + "textAlign": "start", + "textOverflow": "clip", + "top": "20px", + "transform": "matrix(-1, 0, 0, -1, 0, -20)" + }, + "tw": "block absolute font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_130": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_14": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 28px 0px 12px", + "paddingInlineEnd": "28px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px", + "transition": "color 0.2s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block relative font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-7 pb-0 pl-3 overflow-hidden" + }, + "style_15": { + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline-block static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_16": { + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_17": { + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "tw": "block static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-hidden" + }, + "style_18": { + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px", + "transition": "color 0.2s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "flex relative font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-3 pb-0 pl-3 overflow-hidden" + }, + "style_19": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "4px 8px", + "paddingBlockEnd": "4px", + "paddingBlockStart": "4px", + "paddingInlineEnd": "8px", + "paddingInlineStart": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-snug border-0 visible m-0 pt-1 pr-2 pb-1 pl-2" + }, + "style_2": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px" + }, + "tw": "block relative font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-3 pb-0 pl-3 overflow-hidden" + }, + "style_20": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "bottom": "0px", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "width 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "tw": "block relative font-normal leading-snug border-0 visible m-0 p-0 overflow-visible" + }, + "style_21": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0" + }, + "style_22": { + "custom": { + "background": "rgb(247, 248, 250) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(247, 248, 250)", + "border": "0px none rgb(134, 144, 156)", + "borderColor": "rgb(134, 144, 156)", + "borderRadius": "2px", + "bottom": "12px", + "color": "rgb(134, 144, 156)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetBlockEnd": "12px", + "insetBlockStart": "885px", + "insetInlineEnd": "12px", + "insetInlineStart": "184px", + "left": "184px", + "minHeight": "0px", + "minWidth": "0px", + "right": "12px", + "textAlign": "start", + "textOverflow": "clip", + "top": "885px" + }, + "tw": "flex absolute justify-center items-center font-normal leading-tight border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_23": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "auto hidden", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-y-hidden" + }, + "style_24": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "bottom": "0px", + "boxShadow": "rgba(0, 0, 0, 0.08) 0px 2px 5px 0px", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetInlineEnd": "1565px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "1565px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "width 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "tw": "block fixed shrink-0 z-50 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_25": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 4px", + "paddingInlineEnd": "4px", + "paddingInlineStart": "4px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline-flex static items-center font-normal leading-normal border-0 visible m-0 pt-0 pr-1 pb-0 pl-1 overflow-visible" + }, + "style_26": { + "custom": { + "border": "0px none rgb(201, 205, 212)", + "borderColor": "rgb(201, 205, 212)", + "color": "rgb(201, 205, 212)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 4px", + "marginInlineEnd": "4px", + "marginInlineStart": "4px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline-block static font-normal leading-normal border-0 visible mt-0 mr-1 mb-0 ml-1 p-0 overflow-visible" + }, + "style_27": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 4px", + "paddingInlineEnd": "4px", + "paddingInlineStart": "4px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline-flex static items-center font-medium leading-normal border-0 visible m-0 pt-0 pr-1 pb-0 pl-1 overflow-visible" + }, + "style_28": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_29": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_3": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline static font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_30": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" + }, + "style_31": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "10px", + "bottom": "2px", + "boxShadow": "rgb(134, 144, 156) 0px 1px 3px 0px", + "color": "rgb(229, 230, 235)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "insetBlockEnd": "2px", + "insetBlockStart": "2px", + "insetInlineEnd": "16px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "16px", + "textOverflow": "clip", + "top": "2px", + "transition": "0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "tw": "flex absolute justify-center items-center font-normal leading-normal text-center border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_32": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "borderRadius": "12px", + "bottom": "0px", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "13.3333px", + "left": "0px", + "minHeight": "0px", + "minWidth": "36px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "background-color 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + "tw": "inline-block relative font-normal leading-normal text-center border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_33": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_34": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_35": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 16px", + "marginBlockEnd": "16px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static justify-between font-normal leading-tight border-0 visible mt-0 mr-0 mb-4 ml-0 p-0 overflow-visible" + }, + "style_36": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "16px", + "margin": "0px 0px 16px", + "marginBlockEnd": "16px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-medium leading-normal break-all border-0 visible mt-0 mr-0 mb-4 ml-0 p-0 overflow-visible" + }, + "style_37": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "lineHeight": "32px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-normal text-left whitespace-nowrap border-0 visible cursor-default m-0 p-0 overflow-visible" + }, + "style_38": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "lineHeight": "32px", + "padding": "0px 16px 0px 0px", + "paddingInlineEnd": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "block relative shrink-0 basis-1/5 font-normal text-left whitespace-nowrap border-0 visible m-0 pt-0 pr-4 pb-0 pl-0 overflow-visible" + }, + "style_39": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "overflow": "clip", + "padding": "4px 0px", + "paddingBlockEnd": "4px", + "paddingBlockStart": "4px", + "textAlign": "start", + "textOverflow": "clip", + "transition": "color 0.1s cubic-bezier(0, 0, 1, 1), border-color 0.1s cubic-bezier(0, 0, 1, 1), background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block static font-normal leading-snug border-0 visible cursor-text m-0 pt-1 pr-0 pb-1 pl-0" + }, + "style_4": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "-20px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "insetBlockEnd": "-20px", + "insetBlockStart": "20px", + "insetInlineEnd": "12px", + "insetInlineStart": "178px", + "left": "178px", + "minHeight": "0px", + "minWidth": "0px", + "right": "12px", + "textAlign": "start", + "textOverflow": "clip", + "top": "20px", + "transform": "matrix(1, 0, 0, 1, 0, -20)" + }, + "tw": "block absolute font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_40": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "2px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "color 0.1s cubic-bezier(0, 0, 1, 1), border-color 0.1s cubic-bezier(0, 0, 1, 1), background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "inline-flex relative items-center font-normal leading-tight border visible m-0 pt-0 pr-3 pb-0 pl-3 overflow-visible" + }, + "style_41": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "block relative grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_42": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "32px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_43": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static flex-col items-start font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_44": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "block relative shrink-0 basis-4/5 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_45": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 20px", + "marginBlockEnd": "20px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static flex-wrap items-start font-normal leading-tight border-0 visible mt-0 mr-0 mb-5 ml-0 p-0 overflow-visible" + }, + "style_46": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "block relative shrink-0 basis-1/3 font-normal leading-tight border-0 visible m-0 pt-0 pr-3 pb-0 pl-3 overflow-visible" + }, + "style_47": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "overflow": "clip", + "padding": "0px 0px 0px 8px", + "paddingInlineStart": "8px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "tw": "block static max-w-full font-normal leading-none whitespace-nowrap border-0 visible cursor-text m-0 pt-0 pr-0 pb-0 pl-2" + }, + "style_48": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "padding": "1px 0px", + "paddingBlockEnd": "1px", + "paddingBlockStart": "1px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "flex relative flex-wrap items-center grow font-normal leading-3 text-left border-0 visible cursor-text m-0 p-0 overflow-hidden" + }, + "style_49": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "30px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "flex static font-normal leading-3 text-left border-0 visible cursor-text m-0 p-0 overflow-visible" + }, + "style_5": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 28px 0px 12px", + "paddingInlineEnd": "28px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px" + }, + "tw": "block relative font-medium leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-7 pb-0 pl-3 overflow-hidden" + }, + "style_50": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "2px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textOverflow": "clip", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block static grow basis-1/12 font-normal leading-3 text-left border-0 visible cursor-text m-0 p-0 overflow-hidden" + }, + "style_51": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "12px", + "textOverflow": "clip", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block static font-normal leading-3 text-left border-0 visible cursor-text m-0 p-0 overflow-visible" + }, + "style_52": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "padding": "0px 8px 0px 0px", + "paddingInlineEnd": "8px", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-3 text-left border-0 visible cursor-text mt-0 mr-0 mb-0 ml-1 pt-0 pr-2 pb-0 pl-0 overflow-visible" + }, + "style_53": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "2px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 3px", + "paddingInlineEnd": "3px", + "paddingInlineStart": "3px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1), padding linear" + }, + "tw": "flex relative font-normal leading-3 text-left border visible cursor-text m-0 pt-0 pr-0.5 pb-0 pl-0.5 overflow-visible" + }, + "style_54": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "inline-block relative font-normal leading-tight border-0 visible cursor-text m-0 p-0 overflow-visible" + }, + "style_55": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "overflow": "clip", + "padding": "0px 0px 0px 8px", + "paddingInlineStart": "8px", + "textOverflow": "clip", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block static font-normal leading-snug text-left border-0 visible cursor-text m-0 pt-0 pr-0 pb-0 pl-2" + }, + "style_56": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static grow basis-1/12 font-normal leading-snug border-0 visible m-0 p-0 overflow-visible" + }, + "style_57": { + "custom": { + "border": "0px none rgb(134, 144, 156)", + "borderColor": "rgb(134, 144, 156)", + "color": "rgb(134, 144, 156)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minWidth": "10px", + "padding": "0px 8px", + "paddingInlineEnd": "8px", + "paddingInlineStart": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-snug border-0 visible m-0 pt-0 pr-2 pb-0 pl-2 overflow-visible" + }, + "style_58": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-snug text-center border-0 visible m-0 p-0 overflow-visible" + }, + "style_59": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-snug text-center border-0 visible mt-0 mr-0 mb-0 ml-1 p-0 overflow-visible" + }, + "style_6": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline-block static font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_60": { + "custom": { + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "2px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "4px 11px 4px 4px", + "paddingBlockEnd": "4px", + "paddingBlockStart": "4px", + "paddingInlineEnd": "11px", + "paddingInlineStart": "4px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "inline-flex relative items-center font-normal leading-snug border visible m-0 pt-1 pr-2.5 pb-1 pl-1 overflow-visible" + }, + "style_61": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px -12px", + "marginInlineEnd": "-12px", + "marginInlineStart": "-12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static flex-wrap items-start font-normal leading-tight border-0 visible mt-0 -mr-3 mb-0 -ml-3 p-0 overflow-visible" + }, + "style_62": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "padding": "0px 20px 0px 0px", + "paddingInlineEnd": "20px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static flex-col font-normal leading-tight border-0 visible m-0 pt-0 pr-5 pb-0 pl-0 overflow-visible" + }, + "style_63": { + "custom": { + "border": "0px none rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "color": "rgb(255, 255, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" + }, + "style_64": { + "custom": { + "background": "rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(22, 93, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block relative font-normal leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" + }, + "style_65": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" + }, + "style_66": { + "custom": { + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block relative font-normal leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" + }, + "style_67": { + "custom": { + "border": "0px 0px 0px 1px none none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(78, 89, 105) rgb(229, 230, 235)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 20px", + "marginBlockEnd": "20px", + "padding": "0px 0px 0px 20px", + "paddingInlineStart": "20px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static flex-col justify-between font-normal leading-tight visible mt-0 mr-0 mb-5 ml-0 pt-0 pr-0 pb-0 pl-5 overflow-visible" + }, + "style_68": { + "custom": { + "border": "0px 0px 1px none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(242, 243, 245)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 20px", + "marginBlockEnd": "20px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static font-normal leading-tight visible mt-0 mr-0 mb-5 ml-0 p-0 overflow-visible" + }, + "style_69": { + "custom": { + "background": "rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(22, 93, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "inline-block relative font-normal leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" + }, + "style_7": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_70": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" + }, + "style_71": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_72": { + "custom": { + "border": "1px solid rgb(229, 230, 235)", + "borderColor": "rgb(229, 230, 235)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "inline-block relative font-normal leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" + }, + "style_73": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_74": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 20px", + "marginBlockEnd": "20px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static justify-between font-normal leading-tight border-0 visible mt-0 mr-0 mb-5 ml-0 p-0 overflow-visible" + }, + "style_75": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "display": "table-column", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_76": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "display": "table-column-group", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_77": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-medium leading-snug text-left border-0 visible m-0 p-0 overflow-visible" + }, + "style_78": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "24px 16px", + "paddingBlockEnd": "24px", + "paddingBlockStart": "24px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block relative font-medium leading-snug text-left border-0 visible m-0 pt-6 pr-4 pb-6 pl-4 overflow-visible" + }, + "style_79": { + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235)", + "borderRadius": "4px 0px 0px", + "borderTopLeftRadius": "4px", + "color": "rgb(29, 33, 41)", + "display": "table-cell", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "static font-medium leading-snug text-left visible m-0 p-0 overflow-visible" + }, + "style_8": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "tw": "block static font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-hidden" + }, + "style_80": { + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235)", + "color": "rgb(29, 33, 41)", + "display": "table-cell", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "static font-medium leading-snug text-left visible m-0 p-0 overflow-visible" + }, + "style_81": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-medium leading-snug text-left border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_82": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "block relative font-medium leading-3 text-left border-0 visible cursor-pointer m-0 p-0 overflow-hidden" + }, + "style_83": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline-block static font-medium leading-snug text-left border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" + }, + "style_84": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "24px 16px", + "paddingBlockEnd": "24px", + "paddingBlockStart": "24px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "textOverflow": "clip" + }, + "tw": "block static font-medium leading-snug text-left border-0 visible cursor-pointer m-0 pt-6 pr-4 pb-6 pl-4 overflow-visible" + }, + "style_85": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "block relative font-medium leading-snug text-left border-0 visible m-0 p-0 overflow-visible" + }, + "style_86": { + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235)", + "borderRadius": "0px 4px 0px 0px", + "borderTopRightRadius": "4px", + "color": "rgb(29, 33, 41)", + "display": "table-cell", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 0px 0px 15px", + "paddingInlineStart": "15px", + "textOverflow": "clip" + }, + "tw": "static font-medium leading-snug text-left visible m-0 pt-0 pr-0 pb-0 pl-3.5 overflow-visible" + }, + "style_87": { + "custom": { + "border": "0px none rgb(128, 128, 128)", + "borderColor": "rgb(128, 128, 128)", + "color": "rgb(78, 89, 105)", + "display": "table-row", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_88": { + "custom": { + "border": "0px none rgb(128, 128, 128)", + "borderColor": "rgb(128, 128, 128)", + "color": "rgb(78, 89, 105)", + "display": "table-header-group", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_89": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 2px", + "marginInlineStart": "2px", + "minHeight": "0px", + "minWidth": "0px", + "paddingBlockEnd": "2px", + "paddingBlockStart": "2px", + "paddingInlineEnd": "2px", + "paddingInlineStart": "2px", + "textOverflow": "clip", + "transition": "background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "inline static font-normal leading-snug text-left break-all border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-0.5 p-0.5 overflow-visible" + }, + "style_9": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "margin": "0px 0px 4px", + "marginBlockEnd": "4px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 12px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "0px" + }, + "tw": "flex relative font-normal leading-10 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-1 ml-0 pt-0 pr-3 pb-0 pl-3 overflow-hidden" + }, + "style_90": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-snug text-left break-all border-0 visible m-0 p-0 overflow-visible" + }, + "style_91": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-snug text-left break-all border-0 visible m-0 p-0 overflow-visible" + }, + "style_92": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235)", + "color": "rgb(29, 33, 41)", + "display": "table-cell", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "24px 16px", + "paddingBlockEnd": "24px", + "paddingBlockStart": "24px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "textOverflow": "clip" + }, + "tw": "static font-normal leading-snug text-left visible m-0 pt-6 pr-4 pb-6 pl-4 overflow-visible" + }, + "style_93": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "flex static font-normal leading-snug text-left break-all border-0 visible m-0 p-0 overflow-visible" + }, + "style_94": { + "custom": { + "background": "rgb(0, 180, 42) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(0, 180, 42)", + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "50%", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-none text-left break-all border-0 visible m-0 p-0 overflow-visible" + }, + "style_95": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-snug text-left break-all border-0 visible mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" + }, + "style_96": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline-flex static items-center font-normal leading-none text-left break-all border-0 visible m-0 p-0 overflow-visible" + }, + "style_97": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "inline-block relative font-normal leading-none text-left break-all border-0 visible m-0 p-0 overflow-visible" + }, + "style_98": { + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-snug text-center whitespace-nowrap break-all border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_99": { + "custom": { + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "8px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(22, 93, 255)", + "fontFamily": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\"", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 15px", + "paddingInlineEnd": "15px", + "paddingInlineStart": "15px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + "tw": "inline-block relative font-normal leading-snug text-center whitespace-nowrap break-all border visible cursor-pointer m-0 pt-0 pr-3.5 pb-0 pl-3.5 overflow-visible" + } + } +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/style.css b/AI-Arco-Design-Themes-Demos-complete/style.css new file mode 100644 index 0000000..9751c75 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/style.css @@ -0,0 +1,1908 @@ +.style_1 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_2 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 4px; + padding: 0px 12px; + margin-block-end: 4px; + padding-inline-start: 12px; + padding-inline-end: 12px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + border-radius: 2px; + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); +} + +.style_3 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_4 { + min-width: 0px; + min-height: 0px; + top: 20px; + right: 12px; + bottom: -20px; + left: 178px; + inset-inline-start: 178px; + inset-inline-end: 12px; + inset-block-start: 20px; + inset-block-end: -20px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + transform: matrix(1, 0, 0, 1, 0, -20); +} + +.style_5 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 4px; + padding: 0px 28px 0px 12px; + margin-block-end: 4px; + padding-inline-start: 12px; + padding-inline-end: 28px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + border-radius: 2px; + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); +} + +.style_6 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_7 { + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_8 { + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_9 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 4px; + padding: 0px 12px; + margin-block-end: 4px; + padding-inline-start: 12px; + padding-inline-end: 12px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + border-radius: 2px; + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); +} + +.style_10 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + transition: height 0.2s cubic-bezier(0.34, 0.69, 0.1, 1); +} + +.style_11 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_12 { + min-width: 0px; + min-height: 0px; + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(22, 93, 255); + border-color: rgb(22, 93, 255); +} + +.style_13 { + min-width: 0px; + min-height: 0px; + top: 20px; + right: 12px; + bottom: -20px; + left: 178px; + inset-inline-start: 178px; + inset-inline-end: 12px; + inset-block-start: 20px; + inset-block-end: -20px; + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(22, 93, 255); + border-color: rgb(22, 93, 255); + transform: matrix(-1, 0, 0, -1, 0, -20); +} + +.style_14 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 4px; + padding: 0px 28px 0px 12px; + margin-block-end: 4px; + padding-inline-start: 12px; + padding-inline-end: 28px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(22, 93, 255); + border-color: rgb(22, 93, 255); + border-radius: 2px; + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + transition: color 0.2s cubic-bezier(0, 0, 1, 1); +} + +.style_15 { + min-width: 0px; + min-height: 0px; + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(22, 93, 255); + border-color: rgb(22, 93, 255); +} + +.style_16 { + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(22, 93, 255); + border-color: rgb(22, 93, 255); +} + +.style_17 { + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(22, 93, 255); + border-color: rgb(22, 93, 255); +} + +.style_18 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 4px; + padding: 0px 12px; + margin-block-end: 4px; + padding-inline-start: 12px; + padding-inline-end: 12px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(22, 93, 255); + border-color: rgb(22, 93, 255); + border-radius: 2px; + background: rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(242, 243, 245); + transition: color 0.2s cubic-bezier(0, 0, 1, 1); +} + +.style_19 { + min-width: 0px; + min-height: 0px; + padding: 4px 8px; + padding-inline-start: 8px; + padding-inline-end: 8px; + padding-block-start: 4px; + padding-block-end: 4px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_20 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + transition: width 0.2s cubic-bezier(0.34, 0.69, 0.1, 1); +} + +.style_21 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_22 { + min-width: 0px; + min-height: 0px; + top: 885px; + right: 12px; + bottom: 12px; + left: 184px; + inset-inline-start: 184px; + inset-inline-end: 12px; + inset-block-start: 885px; + inset-block-end: 12px; + color: rgb(134, 144, 156); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(134, 144, 156); + border-color: rgb(134, 144, 156); + border-radius: 2px; + background: rgb(247, 248, 250) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(247, 248, 250); +} + +.style_23 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + overflow: auto hidden; +} + +.style_24 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 1565px; + bottom: 0px; + left: 0px; + inset-inline-end: 1565px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 5px 0px; + transition: width 0.2s cubic-bezier(0.34, 0.69, 0.1, 1); +} + +.style_25 { + min-width: 0px; + min-height: 0px; + padding: 0px 4px; + padding-inline-start: 4px; + padding-inline-end: 4px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_26 { + min-width: 0px; + min-height: 0px; + margin: 0px 4px; + margin-inline-start: 4px; + margin-inline-end: 4px; + color: rgb(201, 205, 212); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(201, 205, 212); + border-color: rgb(201, 205, 212); +} + +.style_27 { + min-width: 0px; + min-height: 0px; + padding: 0px 4px; + padding-inline-start: 4px; + padding-inline-end: 4px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_28 { + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_29 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_30 { + margin: 0px 8px 0px 0px; + margin-inline-end: 8px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_31 { + min-width: 0px; + min-height: 0px; + top: 2px; + right: 16px; + bottom: 2px; + left: 0px; + inset-inline-end: 16px; + inset-block-start: 2px; + inset-block-end: 2px; + color: rgb(229, 230, 235); + font-size: 12px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(229, 230, 235); + border-color: rgb(229, 230, 235); + border-radius: 10px; + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + box-shadow: rgb(134, 144, 156) 0px 1px 3px 0px; + transition: 0.2s cubic-bezier(0.34, 0.69, 0.1, 1); +} + +.style_32 { + min-width: 36px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(0, 0, 0); + font-size: 13.3333px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + border-radius: 12px; + transition: background-color 0.2s cubic-bezier(0.34, 0.69, 0.1, 1); +} + +.style_33 { + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_34 { + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_35 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 16px; + margin-block-end: 16px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_36 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 16px; + margin-block-end: 16px; + color: rgb(29, 33, 41); + font-size: 16px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_37 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + line-height: 32px; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_38 { + padding: 0px 16px 0px 0px; + padding-inline-end: 16px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + line-height: 32px; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_39 { + padding: 4px 0px; + padding-block-start: 4px; + padding-block-end: 4px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + overflow: clip; + transition: color 0.1s cubic-bezier(0, 0, 1, 1), border-color 0.1s cubic-bezier(0, 0, 1, 1), background-color 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_40 { + min-width: 0px; + min-height: 0px; + padding: 0px 12px; + padding-inline-start: 12px; + padding-inline-end: 12px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 1px solid rgb(229, 230, 235); + border-style: solid; + border-color: rgb(229, 230, 235); + border-radius: 2px; + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + transition: color 0.1s cubic-bezier(0, 0, 1, 1), border-color 0.1s cubic-bezier(0, 0, 1, 1), background-color 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_41 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_42 { + min-height: 32px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_43 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_44 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_45 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 20px; + margin-block-end: 20px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_46 { + padding: 0px 12px; + padding-inline-start: 12px; + padding-inline-end: 12px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_47 { + padding: 0px 0px 0px 8px; + padding-inline-start: 8px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + overflow: clip; +} + +.style_48 { + padding: 1px 0px; + padding-block-start: 1px; + padding-block-end: 1px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_49 { + min-width: 0px; + min-height: 30px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_50 { + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + border-radius: 2px; + transition: 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_51 { + color: rgb(78, 89, 105); + font-size: 12px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + transition: 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_52 { + margin: 0px 0px 0px 4px; + padding: 0px 8px 0px 0px; + margin-inline-start: 4px; + padding-inline-end: 8px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_53 { + min-width: 0px; + min-height: 0px; + padding: 0px 3px; + padding-inline-start: 3px; + padding-inline-end: 3px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 1px solid rgb(229, 230, 235); + border-style: solid; + border-color: rgb(229, 230, 235); + border-radius: 2px; + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + transition: 0.1s cubic-bezier(0, 0, 1, 1), padding linear; +} + +.style_54 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_55 { + padding: 0px 0px 0px 8px; + padding-inline-start: 8px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + overflow: clip; + transition: 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_56 { + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_57 { + min-width: 10px; + padding: 0px 8px; + padding-inline-start: 8px; + padding-inline-end: 8px; + color: rgb(134, 144, 156); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(134, 144, 156); + border-color: rgb(134, 144, 156); +} + +.style_58 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_59 { + margin: 0px 0px 0px 4px; + margin-inline-start: 4px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_60 { + min-width: 0px; + min-height: 0px; + padding: 4px 11px 4px 4px; + padding-inline-start: 4px; + padding-inline-end: 11px; + padding-block-start: 4px; + padding-block-end: 4px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 1px solid rgb(229, 230, 235); + border-style: solid; + border-color: rgb(229, 230, 235); + border-radius: 2px; + transition: 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_61 { + margin: 0px -12px; + margin-inline-start: -12px; + margin-inline-end: -12px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_62 { + padding: 0px 20px 0px 0px; + padding-inline-end: 20px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_63 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 0px 8px; + margin-inline-start: 8px; + color: rgb(255, 255, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); +} + +.style_64 { + padding: 0px 15px; + padding-inline-start: 15px; + padding-inline-end: 15px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(255, 255, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 1px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 8px; + background: rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(22, 93, 255); + transition: 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_65 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 0px 8px; + margin-inline-start: 8px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_66 { + padding: 0px 15px; + padding-inline-start: 15px; + padding-inline-end: 15px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 1px solid rgb(229, 230, 235); + border-style: solid; + border-color: rgb(229, 230, 235); + border-radius: 8px; + transition: 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_67 { + margin: 0px 0px 20px; + padding: 0px 0px 0px 20px; + margin-block-end: 20px; + padding-inline-start: 20px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px 0px 0px 1px none none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(78, 89, 105) rgb(229, 230, 235); +} + +.style_68 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 20px; + margin-block-end: 20px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px 0px 1px none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(242, 243, 245); +} + +.style_69 { + min-width: 0px; + min-height: 0px; + padding: 0px 15px; + padding-inline-start: 15px; + padding-inline-end: 15px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(255, 255, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 1px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 8px; + background: rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(22, 93, 255); + transition: 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_70 { + margin: 0px 8px 0px 0px; + margin-inline-end: 8px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_71 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_72 { + min-width: 0px; + min-height: 0px; + padding: 0px 15px; + padding-inline-start: 15px; + padding-inline-end: 15px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 1px solid rgb(229, 230, 235); + border-style: solid; + border-color: rgb(229, 230, 235); + border-radius: 8px; + transition: 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_73 { + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_74 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 20px; + margin-block-end: 20px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_75 { + display: table-column; + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_76 { + display: table-column-group; + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_77 { + min-width: 0px; + min-height: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_78 { + min-width: 0px; + min-height: 0px; + padding: 24px 16px; + padding-inline-start: 16px; + padding-inline-end: 16px; + padding-block-start: 24px; + padding-block-end: 24px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + transition: background-color 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_79 { + display: table-cell; + min-width: 0px; + min-height: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border-radius: 4px 0px 0px; + border-top-left-radius: 4px; + background: rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(242, 243, 245); + border: 0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235); +} + +.style_80 { + display: table-cell; + min-width: 0px; + min-height: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + background: rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(242, 243, 245); + border: 0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235); +} + +.style_81 { + min-width: 0px; + min-height: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_82 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_83 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 0px 8px; + margin-inline-start: 8px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_84 { + min-width: 0px; + min-height: 0px; + padding: 24px 16px; + padding-inline-start: 16px; + padding-inline-end: 16px; + padding-block-start: 24px; + padding-block-end: 24px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_85 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + transition: background-color 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_86 { + display: table-cell; + min-width: 0px; + min-height: 0px; + padding: 0px 0px 0px 15px; + padding-inline-start: 15px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border-radius: 0px 4px 0px 0px; + border-top-right-radius: 4px; + background: rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(242, 243, 245); + border: 0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235); +} + +.style_87 { + display: table-row; + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(128, 128, 128); + border-color: rgb(128, 128, 128); +} + +.style_88 { + display: table-header-group; + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(128, 128, 128); + border-color: rgb(128, 128, 128); +} + +.style_89 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 0px 2px; + margin-inline-start: 2px; + padding-inline-start: 2px; + padding-inline-end: 2px; + padding-block-start: 2px; + padding-block-end: 2px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + border-radius: 2px; + transition: background-color 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_90 { + min-width: 0px; + min-height: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_91 { + min-width: 0px; + min-height: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_92 { + display: table-cell; + min-width: 0px; + min-height: 0px; + padding: 24px 16px; + padding-inline-start: 16px; + padding-inline-end: 16px; + padding-block-start: 24px; + padding-block-end: 24px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + border: 0px 0px 1px none none solid rgb(29, 33, 41) rgb(29, 33, 41) rgb(229, 230, 235); +} + +.style_93 { + min-width: 0px; + min-height: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_94 { + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + border-radius: 50%; + background: rgb(0, 180, 42) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(0, 180, 42); +} + +.style_95 { + margin: 0px 0px 0px 8px; + margin-inline-start: 8px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_96 { + min-width: 0px; + min-height: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_97 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_98 { + min-width: 0px; + min-height: 0px; + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(22, 93, 255); + border-color: rgb(22, 93, 255); +} + +.style_99 { + min-width: 0px; + min-height: 0px; + padding: 0px 15px; + padding-inline-start: 15px; + padding-inline-end: 15px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 1px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 8px; + transition: 0.1s cubic-bezier(0, 0, 1, 1); +} + +.style_100 { + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + border-radius: 50%; + background: rgb(245, 63, 63) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(245, 63, 63); +} + +.style_101 { + display: table-row-group; + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(128, 128, 128); + border-color: rgb(128, 128, 128); +} + +.style_102 { + display: table; + min-width: 100%; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(128, 128, 128); + border-color: rgb(128, 128, 128); +} + +.style_103 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_104 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_105 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + border-radius: 4px 4px 0px 0px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +.style_106 { + margin: 0px 8px 0px 0px; + margin-inline-end: 8px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + line-height: 32px; + text-align: start; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_107 { + min-width: 32px; + min-height: 0px; + margin: 0px 8px 0px 0px; + margin-inline-end: 8px; + color: rgb(201, 205, 212); + font-size: 12px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + line-height: 32px; + text-overflow: clip; + border: 0px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 2px; +} + +.style_108 { + min-width: 32px; + min-height: 0px; + margin: 0px 8px 0px 0px; + margin-inline-end: 8px; + color: rgb(22, 93, 255); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + line-height: 32px; + text-overflow: clip; + border: 0px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 2px; + background: rgb(232, 243, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(232, 243, 255); + transition: color 0.2s cubic-bezier(0, 0, 1, 1), background-color 0.2s cubic-bezier(0, 0, 1, 1); +} + +.style_109 { + min-width: 32px; + min-height: 0px; + margin: 0px 8px 0px 0px; + margin-inline-end: 8px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + line-height: 32px; + text-overflow: clip; + border: 0px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 2px; +} + +.style_110 { + min-width: 32px; + min-height: 0px; + margin: 0px 8px 0px 0px; + margin-inline-end: 8px; + color: rgb(78, 89, 105); + font-size: 16px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + line-height: 32px; + text-overflow: clip; + border: 0px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 2px; +} + +.style_111 { + min-width: 32px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + line-height: 32px; + text-overflow: clip; + border: 0px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 2px; +} + +.style_112 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: -11px; + bottom: 13.9062px; + left: 11px; + inset-inline-start: 11px; + inset-inline-end: -11px; + inset-block-end: 13.9062px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + overflow: clip; +} + +.style_113 { + padding: 0px 6px 0px 0px; + padding-inline-end: 6px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: ellipsis; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_114 { + color: rgb(78, 89, 105); + font-size: 12px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_115 { + margin: 0px 0px 0px 4px; + margin-inline-start: 4px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_116 { + min-width: 0px; + min-height: 0px; + padding: 0px 11px; + padding-inline-start: 11px; + padding-inline-end: 11px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 1px solid rgb(229, 230, 235); + border-style: solid; + border-color: rgb(229, 230, 235); + border-radius: 2px; + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + transition: 0.1s cubic-bezier(0, 0, 1, 1), padding linear; +} + +.style_117 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_118 { + min-width: 0px; + margin: 0px 0px 0px 8px; + margin-inline-start: 8px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_119 { + margin: 12px 0px 0px; + margin-block-start: 12px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_120 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_121 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_122 { + min-width: 0px; + min-height: 0px; + padding-inline-start: 20px; + padding-inline-end: 20px; + padding-block-start: 20px; + padding-block-end: 20px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_123 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + transition: box-shadow 0.2s cubic-bezier(0, 0, 1, 1); +} + +.style_124 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_125 { + padding: 16px 20px 0px; + padding-inline-start: 20px; + padding-inline-end: 20px; + padding-block-start: 16px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_126 { + color: rgb(78, 89, 105); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_127 { + min-width: 1100px; + min-height: 921px; + padding: 0px 0px 0px 220px; + padding-inline-start: 220px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + overflow: hidden auto; + transition: padding-left 0.2s; +} + +.style_128 { + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_129 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_130 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/theme.json b/AI-Arco-Design-Themes-Demos-complete/theme.json new file mode 100644 index 0000000..c130c17 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/theme.json @@ -0,0 +1,677 @@ +{ + "animations": [], + "assets": { + "backgroundImages": [], + "images": [], + "svgCount": 57 + }, + "colors": { + "background": [ + { + "count": 116, + "tags": [ + "body" + ], + "value": "rgb(255, 255, 255)" + }, + { + "count": 9, + "tags": [ + "div", + "th" + ], + "value": "rgb(242, 243, 245)" + }, + { + "count": 6, + "tags": [ + "span" + ], + "value": "rgb(245, 63, 63)" + }, + { + "count": 4, + "tags": [ + "span" + ], + "value": "rgb(0, 180, 42)" + }, + { + "count": 2, + "tags": [ + "button" + ], + "value": "rgb(22, 93, 255)" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "rgb(247, 248, 250)" + }, + { + "count": 1, + "tags": [ + "li" + ], + "value": "rgb(232, 243, 255)" + } + ], + "border": [ + { + "count": 2634, + "tags": [ + "div", + "h6", + "input", + "span", + "th", + "td", + "svg", + "path", + "g", + "defs", + "filter", + "feflood", + "fecolormatrix", + "feoffset", + "fegaussianblur", + "fecomposite", + "feblend", + "lineargradient", + "stop", + "clippath", + "rect" + ], + "value": "rgb(29, 33, 41)" + }, + { + "count": 1216, + "tags": [ + "div", + "a", + "span", + "form", + "label", + "svg", + "path", + "colgroup", + "col", + "ul", + "footer" + ], + "value": "rgb(78, 89, 105)" + }, + { + "count": 225, + "tags": [ + "svg", + "path", + "circle", + "div", + "span" + ], + "value": "rgb(134, 144, 156)" + }, + { + "count": 220, + "tags": [ + "body" + ], + "value": "rgb(0, 0, 0)" + }, + { + "count": 144, + "tags": [ + "div", + "span", + "button", + "th", + "td" + ], + "value": "rgb(229, 230, 235)" + }, + { + "count": 115, + "tags": [ + "div", + "span", + "svg", + "path", + "a" + ], + "value": "rgb(22, 93, 255)" + } + ], + "text": [ + { + "count": 568, + "tags": [ + "div", + "h6", + "span", + "input", + "th", + "td", + "svg", + "path", + "g", + "defs", + "filter", + "feflood", + "fecolormatrix", + "feoffset", + "fegaussianblur", + "fecomposite", + "feblend", + "lineargradient", + "stop", + "clippath", + "rect" + ], + "value": "rgb(29, 33, 41)" + }, + { + "count": 269, + "tags": [ + "div", + "a", + "span", + "form", + "label", + "svg", + "path", + "button", + "table", + "colgroup", + "col", + "thead", + "tr", + "tbody", + "ul", + "li", + "footer" + ], + "value": "rgb(78, 89, 105)" + }, + { + "count": 45, + "tags": [ + "svg", + "path", + "circle", + "div", + "span" + ], + "value": "rgb(134, 144, 156)" + }, + { + "count": 44, + "tags": [ + "body" + ], + "value": "rgb(0, 0, 0)" + }, + { + "count": 34, + "tags": [ + "div", + "span", + "svg", + "path", + "button", + "li", + "a" + ], + "value": "rgb(22, 93, 255)" + }, + { + "count": 9, + "tags": [ + "span", + "svg", + "path", + "li" + ], + "value": "rgb(201, 205, 212)" + }, + { + "count": 8, + "tags": [ + "button", + "svg", + "path", + "span" + ], + "value": "rgb(255, 255, 255)" + }, + { + "count": 8, + "tags": [ + "svg", + "path" + ], + "value": "rgb(169, 174, 184)" + } + ] + }, + "cssVariables": {}, + "lineWidth": [ + { + "count": 200, + "tags": [ + "div", + "span", + "button", + "th", + "td" + ], + "value": "1px" + }, + { + "count": 89, + "tags": [ + "div", + "th", + "td" + ], + "value": "0px 0px 1px" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "0px 0px 0px 1px" + } + ], + "radius": [ + { + "count": 55, + "tags": [ + "div", + "span", + "li" + ], + "value": "2px" + }, + { + "count": 15, + "tags": [ + "button" + ], + "value": "8px" + }, + { + "count": 10, + "tags": [ + "span" + ], + "value": "50%" + }, + { + "count": 1, + "tags": [ + "button" + ], + "value": "12px" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "10px" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "4px 4px 0px 0px" + } + ], + "shadow": { + "box": [ + { + "count": 1, + "tags": [ + "aside" + ], + "value": "rgba(0, 0, 0, 0.08) 0px 2px 5px 0px" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "rgb(134, 144, 156) 0px 1px 3px 0px" + } + ], + "text": [] + }, + "spacing": [ + { + "count": 106, + "tags": [ + "svg", + "div", + "h6", + "td" + ], + "value": "16px" + }, + { + "count": 88, + "tags": [ + "div", + "td" + ], + "value": "24px" + }, + { + "count": 51, + "tags": [ + "div", + "input", + "span", + "svg", + "li" + ], + "value": "8px" + }, + { + "count": 42, + "tags": [ + "div", + "span", + "input", + "a" + ], + "value": "4px" + }, + { + "count": 34, + "tags": [ + "div", + "span" + ], + "value": "12px" + }, + { + "count": 20, + "tags": [ + "span" + ], + "value": "2px" + }, + { + "count": 16, + "tags": [ + "button", + "th" + ], + "value": "15px" + }, + { + "count": 13, + "tags": [ + "div", + "form" + ], + "value": "20px" + }, + { + "count": 13, + "tags": [ + "div", + "svg" + ], + "value": "3px" + }, + { + "count": 8, + "tags": [ + "div" + ], + "value": "28px" + }, + { + "count": 3, + "tags": [ + "div" + ], + "value": "1px" + }, + { + "count": 2, + "tags": [ + "div" + ], + "value": "11px" + }, + { + "count": 1, + "tags": [ + "section" + ], + "value": "220px" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "-12px" + }, + { + "count": 1, + "tags": [ + "span" + ], + "value": "6px" + } + ], + "transitions": [ + { + "count": 913, + "tags": [ + "body" + ], + "value": "all" + }, + { + "count": 28, + "tags": [ + "div", + "input", + "button", + "svg" + ], + "value": "0.1s cubic-bezier(0, 0, 1, 1)" + }, + { + "count": 18, + "tags": [ + "div", + "span" + ], + "value": "background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + { + "count": 8, + "tags": [ + "div" + ], + "value": "height 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + }, + { + "count": 4, + "tags": [ + "div", + "svg" + ], + "value": "color 0.2s cubic-bezier(0, 0, 1, 1)" + }, + { + "count": 4, + "tags": [ + "span", + "input" + ], + "value": "color 0.1s cubic-bezier(0, 0, 1, 1), border-color 0.1s cubic-bezier(0, 0, 1, 1), background-color 0.1s cubic-bezier(0, 0, 1, 1)" + }, + { + "count": 4, + "tags": [ + "div" + ], + "value": "0.1s cubic-bezier(0, 0, 1, 1), padding linear" + }, + { + "count": 2, + "tags": [ + "aside", + "div" + ], + "value": "width 0.2s cubic-bezier(0.34, 0.69, 0.1, 1)" + } + ], + "typography": { + "families": [ + { + "count": 986, + "tags": [ + "body" + ], + "value": "Inter, Helvetica, \"PingFang SC\", \"Hiragino Sans GB\", \"Microsoft YaHei\", 微软雅黑, Arial, sans-serif" + } + ], + "textStyles": [ + { + "count": 570, + "lineHeight": "22.001px", + "size": "14px", + "tags": [ + "div", + "input", + "span", + "svg", + "path", + "button", + "td", + "g", + "defs", + "filter", + "feflood", + "fecolormatrix", + "feoffset", + "fegaussianblur", + "fecomposite", + "feblend", + "lineargradient", + "stop", + "clippath", + "rect" + ], + "weight": "400" + }, + { + "count": 115, + "lineHeight": "21px", + "size": "14px", + "tags": [ + "body" + ], + "weight": "400" + }, + { + "count": 77, + "lineHeight": "40px", + "size": "14px", + "tags": [ + "div", + "a", + "span" + ], + "weight": "400" + }, + { + "count": 45, + "lineHeight": "40px", + "size": "14px", + "tags": [ + "div", + "span", + "svg", + "path" + ], + "weight": "500" + }, + { + "count": 30, + "lineHeight": "14px", + "size": "14px", + "tags": [ + "span" + ], + "weight": "400" + }, + { + "count": 28, + "lineHeight": "22.001px", + "size": "14px", + "tags": [ + "th", + "div", + "span" + ], + "weight": "500" + }, + { + "count": 22, + "lineHeight": "40px", + "size": "18px", + "tags": [ + "svg", + "path", + "circle" + ], + "weight": "500" + }, + { + "count": 20, + "lineHeight": "0px", + "size": "14px", + "tags": [ + "div", + "span" + ], + "weight": "400" + }, + { + "count": 19, + "lineHeight": "32px", + "size": "14px", + "tags": [ + "div", + "label", + "li" + ], + "weight": "400" + }, + { + "count": 9, + "lineHeight": "0px", + "size": "12px", + "tags": [ + "div", + "svg", + "path" + ], + "weight": "400" + } + ] + } +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/topology/content-blocks.json b/AI-Arco-Design-Themes-Demos-complete/topology/content-blocks.json new file mode 100644 index 0000000..f385814 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/topology/content-blocks.json @@ -0,0 +1,68 @@ +{ + "blocks": [ + { + "buttons": [ + { + "href": "https://arco.design/themes/demo/preview/common-components", + "text": "常用组件" + }, + { + "text": "查询", + "type": "button" + }, + { + "text": "重置", + "type": "button" + }, + { + "text": "新建", + "type": "button" + }, + { + "text": "批量导入", + "type": "button" + }, + { + "text": "下载", + "type": "button" + }, + { + "text": "查看", + "type": "button" + }, + { + "text": "查看", + "type": "button" + }, + { + "text": "查看", + "type": "button" + }, + { + "text": "查看", + "type": "button" + } + ], + "forms": [ + { + "fieldCount": 7 + } + ], + "headings": [ + "查询表格" + ], + "images": [], + "paragraphs": [ + "元素检查 dom-inspector", + "1", + "2", + "3", + "4", + "5", + "10" + ], + "sectionId": "section-001", + "sectionName": "signup" + } + ] +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/topology/selector-map.json b/AI-Arco-Design-Themes-Demos-complete/topology/selector-map.json new file mode 100644 index 0000000..d4c8639 --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/topology/selector-map.json @@ -0,0 +1,12177 @@ +[ + { + "attributes": { + "id": "root" + }, + "bbox": { + "height": 1238, + "left": 0, + "top": 0, + "width": 1785 + }, + "depth": 0, + "domPath": "html > body:nth-child(2) > div:nth-child(1)", + "nodeId": "n729", + "sectionId": "section-001", + "selector": "#root", + "visible": true + }, + { + "attributes": { + "class": "arco-layout layout--NILiW" + }, + "bbox": { + "height": 1238, + "left": 0, + "top": 0, + "width": 1785 + }, + "depth": 1, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1)", + "nodeId": "n728", + "sectionId": "section-001", + "selector": "section.arco-layout.layout--NILiW", + "visible": true + }, + { + "attributes": { + "class": "arco-layout-sider-children" + }, + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 220 + }, + "depth": 2, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1)", + "nodeId": "n723", + "sectionId": "section-001", + "selector": "div.arco-layout-sider-children", + "visible": true + }, + { + "attributes": { + "class": "arco-layout arco-layout-has-sider" + }, + "bbox": { + "height": 1238, + "left": 0, + "top": 0, + "width": 1785 + }, + "depth": 3, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1)", + "nodeId": "n722", + "sectionId": "section-001", + "selector": "section.arco-layout.arco-layout-has-sider", + "visible": true + }, + { + "attributes": { + "class": "menu-wrapper--e9ooU" + }, + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 220 + }, + "depth": 4, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n721", + "sectionId": "section-001", + "selector": "div.menu-wrapper--e9ooU", + "visible": true + }, + { + "attributes": { + "class": "arco-layout-sider arco-layout-sider-light layout-sider--G4cYl" + }, + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 220 + }, + "depth": 5, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1)", + "nodeId": "n146", + "sectionId": "section-001", + "selector": "aside.arco-layout-sider.arco-layout-sider-light", + "visible": true + }, + { + "attributes": { + "class": "arco-menu arco-menu-light arco-menu-vertical" + }, + "bbox": { + "height": 492, + "left": 0, + "top": 0, + "width": 220 + }, + "depth": 6, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n145", + "sectionId": "section-001", + "selector": "div.arco-menu.arco-menu-light", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inner" + }, + "bbox": { + "height": 492, + "left": 0, + "top": 0, + "width": 220 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n142", + "sectionId": "section-001", + "selector": "div.arco-menu-inner", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 4, + "width": 204 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n141", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-item:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline" + }, + "bbox": { + "height": 44, + "left": 8, + "top": 48, + "width": 204 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n140", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-header" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 48, + "width": 204 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n3", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-header:nth-of-type(1)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 20, + "top": 16, + "width": 94 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > a:nth-child(1)", + "nodeId": "n2", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-item:nth-of-type(1) > a", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 20, + "top": 60, + "width": 80 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n1", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-content" + }, + "bbox": { + "height": 0, + "left": 8, + "top": 92, + "width": 204 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n20", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2)", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 92, + "width": 204 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n8", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 92, + "width": 20 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n5", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 117, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n4", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 92, + "width": 160 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n7", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 99, + "width": 12 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n6", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 136, + "width": 204 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n19", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 143, + "width": 12 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n13", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 136, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n10", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 161, + "width": 20 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n9", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 136, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2)", + "nodeId": "n12", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(2) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline" + }, + "bbox": { + "height": 44, + "left": 8, + "top": 92, + "width": 204 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3)", + "nodeId": "n11", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-header" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 92, + "width": 204 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1)", + "nodeId": "n18", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-header:nth-of-type(1)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 20, + "top": 104, + "width": 108 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n15", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-icon-suffix" + }, + "bbox": { + "height": 40, + "left": 186, + "top": 92, + "width": 14 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n14", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 136, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n17", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-content" + }, + "bbox": { + "height": 0, + "left": 8, + "top": 136, + "width": 204 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2)", + "nodeId": "n16", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2)", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 136, + "width": 204 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n37", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 143, + "width": 12 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n25", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 161, + "width": 20 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n22", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 136, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n21", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 180, + "width": 20 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n24", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 180, + "width": 204 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n23", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 187, + "width": 12 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n36", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline" + }, + "bbox": { + "height": 132, + "left": 8, + "top": 136, + "width": 204 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4)", + "nodeId": "n30", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 180, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2)", + "nodeId": "n27", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 205, + "width": 20 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n26", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(3) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 20, + "top": 148, + "width": 80 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n29", + "sectionId": "section-001", + "selector": "div.arco-menu-inline-header.arco-menu-selected > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-header arco-menu-selected" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 136, + "width": 204 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1)", + "nodeId": "n28", + "sectionId": "section-001", + "selector": "div.arco-menu-inline-header.arco-menu-selected", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-content" + }, + "bbox": { + "height": 88, + "left": 8, + "top": 180, + "width": 204 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2)", + "nodeId": "n35", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-icon-suffix is-open" + }, + "bbox": { + "height": 40, + "left": 186, + "top": 136, + "width": 14 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n32", + "sectionId": "section-001", + "selector": "span.arco-menu-icon-suffix.is-open", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 180, + "width": 20 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n31", + "sectionId": "section-001", + "selector": "div.arco-menu-item.arco-menu-selected > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 205, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n34", + "sectionId": "section-001", + "selector": "div.arco-menu-item.arco-menu-selected > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-selected arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 180, + "width": 204 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n33", + "sectionId": "section-001", + "selector": "div.arco-menu-item.arco-menu-selected", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 187, + "width": 12 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n54", + "sectionId": "section-001", + "selector": "div.arco-menu-item.arco-menu-selected > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 224, + "width": 204 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n42", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 180, + "width": 160 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n39", + "sectionId": "section-001", + "selector": "div.arco-menu-item.arco-menu-selected > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 224, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n38", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 249, + "width": 20 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n41", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 224, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2)", + "nodeId": "n40", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 231, + "width": 12 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n53", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(4) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline" + }, + "bbox": { + "height": 44, + "left": 8, + "top": 268, + "width": 204 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5)", + "nodeId": "n47", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 20, + "top": 280, + "width": 80 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n44", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-icon-suffix" + }, + "bbox": { + "height": 40, + "left": 186, + "top": 268, + "width": 14 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n43", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 312, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n46", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-content" + }, + "bbox": { + "height": 0, + "left": 8, + "top": 312, + "width": 204 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2)", + "nodeId": "n45", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2)", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 312, + "width": 204 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n52", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 337, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n49", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 312, + "width": 160 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n48", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 356, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n51", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 319, + "width": 12 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n50", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 356, + "width": 204 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n71", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 363, + "width": 12 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n59", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 381, + "width": 20 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n56", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 356, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2)", + "nodeId": "n55", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(5) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 20, + "top": 324, + "width": 80 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n58", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline" + }, + "bbox": { + "height": 44, + "left": 8, + "top": 312, + "width": 204 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6)", + "nodeId": "n57", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-header" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 312, + "width": 204 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1)", + "nodeId": "n70", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-header:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-content" + }, + "bbox": { + "height": 0, + "left": 8, + "top": 356, + "width": 204 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(2)", + "nodeId": "n64", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2)", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-icon-suffix" + }, + "bbox": { + "height": 40, + "left": 186, + "top": 312, + "width": 14 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n61", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 356, + "width": 20 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n60", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 381, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n63", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 356, + "width": 204 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n62", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 363, + "width": 12 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n69", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 356, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n66", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(6) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 20, + "top": 368, + "width": 80 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n65", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-icon-suffix" + }, + "bbox": { + "height": 40, + "left": 186, + "top": 356, + "width": 14 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n68", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline" + }, + "bbox": { + "height": 44, + "left": 8, + "top": 356, + "width": 204 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7)", + "nodeId": "n67", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-header" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 356, + "width": 204 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(1)", + "nodeId": "n83", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-header:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-content" + }, + "bbox": { + "height": 0, + "left": 8, + "top": 400, + "width": 204 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2)", + "nodeId": "n76", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 400, + "width": 20 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n73", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 400, + "width": 204 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n72", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 425, + "width": 20 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n75", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 400, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n74", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 407, + "width": 12 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n82", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 444, + "width": 204 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n81", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 444, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n78", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 469, + "width": 20 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n77", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 444, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2)", + "nodeId": "n80", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 451, + "width": 12 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(7) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n79", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(7) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline" + }, + "bbox": { + "height": 44, + "left": 8, + "top": 400, + "width": 204 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8)", + "nodeId": "n100", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-header" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 400, + "width": 204 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(1)", + "nodeId": "n88", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-header:nth-of-type(1)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 20, + "top": 412, + "width": 80 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n85", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-icon-suffix" + }, + "bbox": { + "height": 40, + "left": 186, + "top": 400, + "width": 14 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n84", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 444, + "width": 20 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n87", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-content" + }, + "bbox": { + "height": 0, + "left": 8, + "top": 444, + "width": 204 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2)", + "nodeId": "n86", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2)", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 444, + "width": 204 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n99", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 451, + "width": 12 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n93", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 469, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n90", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 444, + "width": 160 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n89", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 488, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n92", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 488, + "width": 204 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n91", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 495, + "width": 12 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n98", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 513, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n95", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 488, + "width": 160 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2)", + "nodeId": "n94", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 532, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(3) > span:nth-child(1)", + "nodeId": "n97", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 532, + "width": 204 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(3)", + "nodeId": "n96", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 539, + "width": 12 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(3) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n122", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline" + }, + "bbox": { + "height": 44, + "left": 8, + "top": 444, + "width": 204 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9)", + "nodeId": "n105", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 557, + "width": 20 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(3) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n102", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 532, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(8) > div:nth-child(2) > div:nth-child(3) > span:nth-child(2)", + "nodeId": "n101", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(8) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(3) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 20, + "top": 456, + "width": 94 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n104", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-header:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-header" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 444, + "width": 204 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(1)", + "nodeId": "n103", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-header:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-inline-content" + }, + "bbox": { + "height": 0, + "left": 8, + "top": 488, + "width": 204 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2)", + "nodeId": "n121", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2)", + "visible": false + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 488, + "width": 204 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n110", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-icon-suffix" + }, + "bbox": { + "height": 40, + "left": 186, + "top": 444, + "width": 14 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n107", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-header:nth-of-type(1) > span.arco-menu-icon-suffix:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 488, + "width": 20 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n106", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 513, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n109", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 495, + "width": 12 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n108", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item arco-menu-item-indented" + }, + "bbox": { + "height": 40, + "left": 8, + "top": 532, + "width": 204 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n115", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 488, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n112", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(1) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 40, + "left": 20, + "top": 532, + "width": 20 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n111", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-indent" + }, + "bbox": { + "height": 0, + "left": 20, + "top": 557, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n114", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span:nth-of-type(1) > span.arco-menu-indent", + "visible": false + }, + { + "attributes": { + "class": "icon-empty--ILNVB" + }, + "bbox": { + "height": 18, + "left": 40, + "top": 539, + "width": 12 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2) > div:nth-child(1)", + "nodeId": "n113", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2) > div.icon-empty--ILNVB", + "visible": true + }, + { + "attributes": { + "class": "collapse-btn--FJHnQ" + }, + "bbox": { + "height": 24, + "left": 184, + "top": 833, + "width": 24 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n120", + "sectionId": "section-001", + "selector": "div.collapse-btn--FJHnQ", + "visible": true + }, + { + "attributes": { + "class": "arco-menu-item-inner" + }, + "bbox": { + "height": 40, + "left": 40, + "top": 532, + "width": 160 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > aside:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(9) > div:nth-child(2) > div:nth-child(2) > span:nth-child(2)", + "nodeId": "n117", + "sectionId": "section-001", + "selector": "div.arco-menu-inner > div.arco-menu-inline:nth-of-type(9) > div.arco-menu-inline-content:nth-of-type(2) > div.arco-menu-item.arco-menu-item-indented:nth-of-type(2) > span.arco-menu-item-inner:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-breadcrumb-item-separator" + }, + "bbox": { + "height": 24, + "left": 270, + "top": 16, + "width": 14 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n116", + "sectionId": "section-001", + "selector": "div.arco-breadcrumb > span.arco-breadcrumb-item-separator:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-layout layout-content--Fd7YS" + }, + "bbox": { + "height": 1238, + "left": 0, + "top": 0, + "width": 1785 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2)", + "nodeId": "n119", + "sectionId": "section-001", + "selector": "section.arco-layout.layout-content--Fd7YS", + "visible": true + }, + { + "attributes": { + "class": "layout-content-wrapper--xX3sP" + }, + "bbox": { + "height": 1198, + "left": 220, + "top": 0, + "width": 1565 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1)", + "nodeId": "n118", + "sectionId": "section-001", + "selector": "div.layout-content-wrapper--xX3sP", + "visible": true + }, + { + "attributes": { + "class": "layout-breadcrumb--aBouq" + }, + "bbox": { + "height": 24, + "left": 240, + "top": 16, + "width": 1525 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n139", + "sectionId": "section-001", + "selector": "div.layout-breadcrumb--aBouq", + "visible": true + }, + { + "attributes": { + "class": "arco-breadcrumb" + }, + "bbox": { + "height": 24, + "left": 240, + "top": 16, + "width": 184 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n127", + "sectionId": "section-001", + "selector": "div.arco-breadcrumb", + "visible": true + }, + { + "attributes": { + "class": "arco-breadcrumb-item-separator" + }, + "bbox": { + "height": 24, + "left": 342, + "top": 16, + "width": 14 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > span:nth-child(4)", + "nodeId": "n124", + "sectionId": "section-001", + "selector": "div.arco-breadcrumb > span.arco-breadcrumb-item-separator:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-breadcrumb-item" + }, + "bbox": { + "height": 18, + "left": 240, + "top": 19, + "width": 26 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n123", + "sectionId": "section-001", + "selector": "div.arco-breadcrumb > div.arco-breadcrumb-item:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-breadcrumb-item" + }, + "bbox": { + "height": 24, + "left": 288, + "top": 16, + "width": 50 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3)", + "nodeId": "n126", + "sectionId": "section-001", + "selector": "div.arco-breadcrumb > div.arco-breadcrumb-item:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-breadcrumb-item" + }, + "bbox": { + "height": 24, + "left": 360, + "top": 16, + "width": 64 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5)", + "nodeId": "n125", + "sectionId": "section-001", + "selector": "div.arco-breadcrumb > div.arco-breadcrumb-item:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-space arco-space-horizontal arco-space-align-center" + }, + "bbox": { + "height": 24, + "left": 1572, + "top": 16, + "width": 193 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n138", + "sectionId": "section-001", + "selector": "div.layout-breadcrumb--aBouq > div.arco-space.arco-space-horizontal:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-space-item" + }, + "bbox": { + "height": 21, + "left": 1572, + "top": 18, + "width": 149 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n132", + "sectionId": "section-001", + "selector": "div.layout-breadcrumb--aBouq > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "inspector-text" + }, + "bbox": { + "height": 21, + "left": 1572, + "top": 18, + "width": 149 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > p:nth-child(1)", + "nodeId": "n129", + "sectionId": "section-001", + "selector": "p.inspector-text", + "visible": true + }, + { + "attributes": { + "class": "arco-space-item" + }, + "bbox": { + "height": 24, + "left": 1729, + "top": 16, + "width": 36 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n128", + "sectionId": "section-001", + "selector": "div.layout-breadcrumb--aBouq > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-switch arco-switch-type-line inspector-switch" + }, + "bbox": { + "height": 24, + "left": 1729, + "top": 16, + "width": 36 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > button:nth-child(1)", + "nodeId": "n131", + "sectionId": "section-001", + "selector": "button.arco-switch.arco-switch-type-line", + "visible": true + }, + { + "attributes": { + "class": "arco-switch-dot" + }, + "bbox": { + "height": 20, + "left": 1729, + "top": 18, + "width": 20 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > button:nth-child(1) > div:nth-child(1)", + "nodeId": "n130", + "sectionId": "section-001", + "selector": "div.arco-switch-dot", + "visible": true + }, + { + "attributes": { + "class": "arco-card arco-card-size-default" + }, + "bbox": { + "height": 1142, + "left": 240, + "top": 56, + "width": 1525 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1)", + "nodeId": "n137", + "sectionId": "section-001", + "selector": "div.arco-card.arco-card-size-default", + "visible": true + }, + { + "attributes": { + "class": "arco-layout-content" + }, + "bbox": { + "height": 1142, + "left": 240, + "top": 56, + "width": 1525 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2)", + "nodeId": "n134", + "sectionId": "section-001", + "selector": "main.arco-layout-content", + "visible": true + }, + { + "attributes": { + "class": "arco-card-body" + }, + "bbox": { + "height": 1142, + "left": 240, + "top": 56, + "width": 1525 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n133", + "sectionId": "section-001", + "selector": "div.arco-card-body", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 24, + "left": 260, + "top": 76, + "width": 1485 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > h6:nth-child(1)", + "nodeId": "n136", + "sectionId": "section-001", + "selector": "h6.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "search-form-wrapper--jiX5t" + }, + "bbox": { + "height": 105, + "left": 260, + "top": 116, + "width": 1485 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n135", + "sectionId": "section-001", + "selector": "div.search-form-wrapper--jiX5t", + "visible": true + }, + { + "attributes": { + "class": "arco-row arco-row-align-start arco-row-justify-start" + }, + "bbox": { + "height": 104, + "left": 248, + "top": 116, + "width": 1386 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1)", + "nodeId": "n144", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start", + "visible": true + }, + { + "attributes": { + "class": "arco-form arco-form-horizontal arco-form-size-default search-form--W0ULN" + }, + "bbox": { + "height": 104, + "left": 260, + "top": 116, + "width": 1382 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1)", + "nodeId": "n143", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-8" + }, + "bbox": { + "height": 52, + "left": 248, + "top": 116, + "width": 462 + }, + "depth": 5, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n720", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal" + }, + "bbox": { + "height": 32, + "left": 260, + "top": 116, + "width": 438 + }, + "depth": 6, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n718", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left" + }, + "bbox": { + "height": 32, + "left": 260, + "top": 116, + "width": 91 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n162", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-19 arco-form-item-wrapper" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n155", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-wrapper" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n148", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 260, + "top": 124, + "width": 56 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > label:nth-child(1)", + "nodeId": "n147", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "visible": true + }, + { + "attributes": { + "class": "arco-input-inner-wrapper arco-input-inner-wrapper-default arco-input-clear-wrapper" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n150", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > span.arco-input-inner-wrapper.arco-input-inner-wrapper-default", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control", + "id": "id" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n149", + "sectionId": "section-001", + "selector": "#id", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-children" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 116, + "width": 347 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n151", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(1) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "visible": true + }, + { + "attributes": { + "class": "arco-input arco-input-size-default", + "id": "id_input" + }, + "bbox": { + "height": 30, + "left": 364, + "top": 117, + "width": 321 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > span:nth-child(1) > input:nth-child(1)", + "nodeId": "n153", + "sectionId": "section-001", + "selector": "#id_input", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-8" + }, + "bbox": { + "height": 52, + "left": 710, + "top": 116, + "width": 462 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n152", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal" + }, + "bbox": { + "height": 32, + "left": 722, + "top": 116, + "width": 438 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n154", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left" + }, + "bbox": { + "height": 32, + "left": 722, + "top": 116, + "width": 91 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n161", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-19 arco-form-item-wrapper" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n157", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 722, + "top": 124, + "width": 56 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > label:nth-child(1)", + "nodeId": "n156", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-wrapper" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n160", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control", + "id": "name" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n159", + "sectionId": "section-001", + "selector": "#name", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-children" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n158", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "visible": true + }, + { + "attributes": { + "class": "arco-input-inner-wrapper arco-input-inner-wrapper-default arco-input-clear-wrapper" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 116, + "width": 347 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n717", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(2) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > span.arco-input-inner-wrapper.arco-input-inner-wrapper-default", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-8" + }, + "bbox": { + "height": 52, + "left": 1172, + "top": 116, + "width": 462 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3)", + "nodeId": "n716", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal" + }, + "bbox": { + "height": 32, + "left": 1184, + "top": 116, + "width": 438 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1)", + "nodeId": "n715", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start", + "visible": true + }, + { + "attributes": { + "class": "arco-input arco-input-size-default", + "id": "name_input" + }, + "bbox": { + "height": 30, + "left": 826, + "top": 117, + "width": 321 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > span:nth-child(1) > input:nth-child(1)", + "nodeId": "n163", + "sectionId": "section-001", + "selector": "#name_input", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left" + }, + "bbox": { + "height": 32, + "left": 1184, + "top": 116, + "width": 91 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n261", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1184, + "top": 124, + "width": 56 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1) > label:nth-child(1)", + "nodeId": "n253", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-19 arco-form-item-wrapper" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n252", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-wrapper" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n173", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control", + "id": "contentType" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n172", + "sectionId": "section-001", + "selector": "#contentType", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-children" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n165", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "visible": true + }, + { + "attributes": { + "class": "arco-select arco-select-multiple arco-select-show-search arco-select-size-default" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n164", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 116, + "width": 347 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n171", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag arco-input-tag-size-default arco-input-tag-has-placeholder" + }, + "bbox": { + "height": 30, + "left": 1279, + "top": 117, + "width": 315 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n170", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-view" + }, + "bbox": { + "height": 30, + "left": 1279, + "top": 117, + "width": 315 + }, + "depth": 17, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n169", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-inner" + }, + "bbox": { + "height": 30, + "left": 1279, + "top": 117, + "width": 315 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n168", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-input-mirror" + }, + "bbox": { + "height": 0, + "left": 1279, + "top": 117, + "width": 36 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n167", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > span.arco-input-tag-input-mirror", + "visible": false + }, + { + "attributes": { + "class": "arco-input-tag-input arco-input-tag-input-size-default" + }, + "bbox": { + "height": 16, + "left": 1279, + "top": 124, + "width": 44 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > input:nth-child(1)", + "nodeId": "n166", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > input.arco-input-tag-input.arco-input-tag-input-size-default", + "visible": true + }, + { + "attributes": { + "class": "arco-select-suffix" + }, + "bbox": { + "height": 30, + "left": 1598, + "top": 117, + "width": 20 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n183", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-select-expand-icon" + }, + "bbox": { + "height": 12, + "left": 1598, + "top": 126, + "width": 12 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n182", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(3) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2) > div.arco-select-expand-icon", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-8" + }, + "bbox": { + "height": 52, + "left": 248, + "top": 168, + "width": 462 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4)", + "nodeId": "n175", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 260, + "top": 176, + "width": 56 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > label:nth-child(1)", + "nodeId": "n174", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "visible": true + }, + { + "attributes": { + "class": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal" + }, + "bbox": { + "height": 32, + "left": 260, + "top": 168, + "width": 438 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1)", + "nodeId": "n181", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left" + }, + "bbox": { + "height": 32, + "left": 260, + "top": 168, + "width": 91 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n180", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-19 arco-form-item-wrapper" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "depth": 17, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n179", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-wrapper" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n178", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control", + "id": "filterType" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n177", + "sectionId": "section-001", + "selector": "#filterType", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-input arco-input-tag-input-size-default" + }, + "bbox": { + "height": 16, + "left": 355, + "top": 176, + "width": 44 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > input:nth-child(1)", + "nodeId": "n176", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > input.arco-input-tag-input.arco-input-tag-input-size-default", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-children" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n200", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "visible": true + }, + { + "attributes": { + "class": "arco-select arco-select-multiple arco-select-show-search arco-select-size-default" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n199", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view" + }, + "bbox": { + "height": 32, + "left": 351, + "top": 168, + "width": 347 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n185", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag arco-input-tag-size-default arco-input-tag-has-placeholder" + }, + "bbox": { + "height": 30, + "left": 355, + "top": 169, + "width": 315 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n184", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-view" + }, + "bbox": { + "height": 30, + "left": 355, + "top": 169, + "width": 315 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n198", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-inner" + }, + "bbox": { + "height": 30, + "left": 355, + "top": 169, + "width": 315 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n197", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner", + "visible": true + }, + { + "attributes": { + "class": "arco-select-suffix" + }, + "bbox": { + "height": 30, + "left": 674, + "top": 169, + "width": 20 + }, + "depth": 17, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n196", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-select-expand-icon" + }, + "bbox": { + "height": 12, + "left": 674, + "top": 178, + "width": 12 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n195", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(4) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2) > div.arco-select-expand-icon", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-8" + }, + "bbox": { + "height": 52, + "left": 710, + "top": 168, + "width": 462 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5)", + "nodeId": "n194", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal" + }, + "bbox": { + "height": 32, + "left": 722, + "top": 168, + "width": 438 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1)", + "nodeId": "n193", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left" + }, + "bbox": { + "height": 32, + "left": 722, + "top": 168, + "width": 91 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n189", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-19 arco-form-item-wrapper" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n188", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-wrapper" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n187", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 722, + "top": 176, + "width": 56 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(1) > label:nth-child(1)", + "nodeId": "n186", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control", + "id": "createdTime" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n192", + "sectionId": "section-001", + "selector": "#createdTime", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-children" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n191", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(5) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "visible": true + }, + { + "attributes": { + "class": "arco-picker arco-picker-range arco-picker-size-default" + }, + "bbox": { + "height": 32, + "left": 813, + "top": 168, + "width": 347 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n190", + "sectionId": "section-001", + "selector": "div.arco-picker.arco-picker-range", + "visible": true + }, + { + "attributes": { + "class": "arco-picker-input arco-picker-input-active" + }, + "bbox": { + "height": 22, + "left": 818, + "top": 173, + "width": 143 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n217", + "sectionId": "section-001", + "selector": "div.arco-picker-input.arco-picker-input-active", + "visible": true + }, + { + "attributes": { + "class": "arco-picker-input" + }, + "bbox": { + "height": 22, + "left": 987, + "top": 173, + "width": 143 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3)", + "nodeId": "n216", + "sectionId": "section-001", + "selector": "div.arco-picker.arco-picker-range > div.arco-picker-input:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-picker-suffix" + }, + "bbox": { + "height": 22, + "left": 1134, + "top": 173, + "width": 14 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4)", + "nodeId": "n202", + "sectionId": "section-001", + "selector": "div.arco-picker-suffix", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 22, + "left": 818, + "top": 173, + "width": 143 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > input:nth-child(1)", + "nodeId": "n201", + "sectionId": "section-001", + "selector": "div.arco-picker-input.arco-picker-input-active > input", + "visible": true + }, + { + "attributes": { + "class": "arco-picker-separator" + }, + "bbox": { + "height": 22, + "left": 961, + "top": 173, + "width": 26 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n215", + "sectionId": "section-001", + "selector": "span.arco-picker-separator", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-8" + }, + "bbox": { + "height": 52, + "left": 1172, + "top": 168, + "width": 462 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6)", + "nodeId": "n214", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 22, + "left": 987, + "top": 173, + "width": 143 + }, + "depth": 17, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > input:nth-child(1)", + "nodeId": "n213", + "sectionId": "section-001", + "selector": "div.arco-picker.arco-picker-range > div.arco-picker-input:nth-of-type(2) > input", + "visible": true + }, + { + "attributes": { + "class": "arco-row arco-row-align-start arco-row-justify-start arco-form-item arco-form-layout-horizontal" + }, + "bbox": { + "height": 32, + "left": 1184, + "top": 168, + "width": 438 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1)", + "nodeId": "n212", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-5 arco-form-label-item arco-form-label-item-left" + }, + "bbox": { + "height": 32, + "left": 1184, + "top": 168, + "width": 91 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n211", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-picker-suffix-icon" + }, + "bbox": { + "height": 16, + "left": 1134, + "top": 176, + "width": 14 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > span:nth-child(1)", + "nodeId": "n210", + "sectionId": "section-001", + "selector": "span.arco-picker-suffix-icon", + "visible": true + }, + { + "attributes": { + "class": "arco-col arco-col-19 arco-form-item-wrapper" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n206", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-wrapper" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n205", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control", + "id": "status" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n204", + "sectionId": "section-001", + "selector": "#status", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1184, + "top": 176, + "width": 28 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(1) > label:nth-child(1)", + "nodeId": "n203", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-5:nth-of-type(1) > label", + "visible": true + }, + { + "attributes": { + "class": "arco-form-item-control-children" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n209", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children", + "visible": true + }, + { + "attributes": { + "class": "arco-select arco-select-multiple arco-select-show-search arco-select-size-default" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n208", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view" + }, + "bbox": { + "height": 32, + "left": 1275, + "top": 168, + "width": 347 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n207", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag arco-input-tag-size-default arco-input-tag-has-placeholder" + }, + "bbox": { + "height": 30, + "left": 1279, + "top": 169, + "width": 315 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n234", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-view" + }, + "bbox": { + "height": 30, + "left": 1279, + "top": 169, + "width": 315 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n233", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-inner" + }, + "bbox": { + "height": 30, + "left": 1279, + "top": 169, + "width": 315 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n219", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-input arco-input-tag-input-size-default" + }, + "bbox": { + "height": 16, + "left": 1279, + "top": 176, + "width": 44 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > input:nth-child(1)", + "nodeId": "n218", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > input.arco-input-tag-input.arco-input-tag-input-size-default", + "visible": true + }, + { + "attributes": { + "class": "arco-select-suffix" + }, + "bbox": { + "height": 30, + "left": 1598, + "top": 169, + "width": 20 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n232", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-select-expand-icon" + }, + "bbox": { + "height": 12, + "left": 1598, + "top": 178, + "width": 12 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n231", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-select-suffix:nth-of-type(2) > div.arco-select-expand-icon", + "visible": true + }, + { + "attributes": { + "class": "right-button--gbVbn" + }, + "bbox": { + "height": 84, + "left": 1642, + "top": 116, + "width": 103 + }, + "depth": 17, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n230", + "sectionId": "section-001", + "selector": "div.right-button--gbVbn", + "visible": true + }, + { + "attributes": { + "class": "arco-input-tag-input-mirror" + }, + "bbox": { + "height": 0, + "left": 1279, + "top": 169, + "width": 36 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > form:nth-child(1) > div:nth-child(1) > div:nth-child(6) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n229", + "sectionId": "section-001", + "selector": "form.arco-form.arco-form-horizontal > div.arco-row.arco-row-align-start > div.arco-col.arco-col-8:nth-of-type(6) > div.arco-row.arco-row-align-start > div.arco-col.arco-col-19:nth-of-type(2) > div.arco-form-item-control-wrapper > div.arco-form-item-control > div.arco-form-item-control-children > div.arco-select.arco-select-multiple > div.arco-select-view > div.arco-input-tag.arco-input-tag-size-default:nth-of-type(1) > div.arco-input-tag-view > div.arco-input-tag-inner > span.arco-input-tag-input-mirror", + "visible": false + }, + { + "attributes": { + "class": "button-group--yAB1O" + }, + "bbox": { + "height": 32, + "left": 260, + "top": 241, + "width": 1485 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3)", + "nodeId": "n228", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O", + "visible": true + }, + { + "attributes": { + "class": "arco-space arco-space-horizontal arco-space-align-center" + }, + "bbox": { + "height": 32, + "left": 260, + "top": 241, + "width": 178 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1)", + "nodeId": "n221", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-primary arco-btn-size-default arco-btn-shape-square" + }, + "bbox": { + "height": 32, + "left": 1663, + "top": 116, + "width": 82 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > button:nth-child(1)", + "nodeId": "n220", + "sectionId": "section-001", + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-primary:nth-of-type(1)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1701, + "top": 124, + "width": 28 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > button:nth-child(1) > span:nth-child(2)", + "nodeId": "n222", + "sectionId": "section-001", + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-primary:nth-of-type(1) > span", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-secondary arco-btn-size-default arco-btn-shape-square" + }, + "bbox": { + "height": 32, + "left": 1663, + "top": 168, + "width": 82 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > button:nth-child(2)", + "nodeId": "n224", + "sectionId": "section-001", + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-secondary:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1701, + "top": 176, + "width": 28 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > button:nth-child(2) > span:nth-child(2)", + "nodeId": "n223", + "sectionId": "section-001", + "selector": "div.right-button--gbVbn > button.arco-btn.arco-btn-secondary:nth-of-type(2) > span", + "visible": true + }, + { + "attributes": { + "class": "arco-space-item" + }, + "bbox": { + "height": 32, + "left": 260, + "top": 241, + "width": 82 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n227", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(1)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 298, + "top": 249, + "width": 28 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1) > button:nth-child(1) > span:nth-child(2)", + "nodeId": "n226", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-primary > span", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-primary arco-btn-size-default arco-btn-shape-square" + }, + "bbox": { + "height": 32, + "left": 260, + "top": 241, + "width": 82 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1) > button:nth-child(1)", + "nodeId": "n225", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-primary", + "visible": true + }, + { + "attributes": { + "class": "arco-space-item" + }, + "bbox": { + "height": 32, + "left": 350, + "top": 241, + "width": 88 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n251", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-space arco-space-horizontal arco-space-align-center" + }, + "bbox": { + "height": 32, + "left": 1663, + "top": 241, + "width": 82 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2)", + "nodeId": "n250", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-space-item" + }, + "bbox": { + "height": 32, + "left": 1663, + "top": 241, + "width": 82 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n236", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-secondary arco-btn-size-default arco-btn-shape-square" + }, + "bbox": { + "height": 32, + "left": 350, + "top": 241, + "width": 88 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > button:nth-child(1)", + "nodeId": "n235", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(2) > button.arco-btn.arco-btn-secondary", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 366, + "top": 249, + "width": 56 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(2) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n249", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(1) > div.arco-space-item:nth-of-type(2) > button.arco-btn.arco-btn-secondary > span", + "visible": true + }, + { + "attributes": { + "class": "arco-table arco-table-size-default arco-table-hover" + }, + "bbox": { + "height": 885, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4)", + "nodeId": "n248", + "sectionId": "section-001", + "selector": "div.arco-table.arco-table-size-default", + "visible": true + }, + { + "attributes": { + "class": "arco-spin" + }, + "bbox": { + "height": 885, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 17, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1)", + "nodeId": "n247", + "sectionId": "section-001", + "selector": "div.arco-spin", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-secondary arco-btn-size-default arco-btn-shape-square" + }, + "bbox": { + "height": 32, + "left": 1663, + "top": 241, + "width": 82 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > button:nth-child(1)", + "nodeId": "n246", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item > button.arco-btn.arco-btn-secondary", + "visible": true + }, + { + "attributes": { + "class": "arco-spin-children" + }, + "bbox": { + "height": 885, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n245", + "sectionId": "section-001", + "selector": "div.arco-spin-children", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1701, + "top": 249, + "width": 28 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > button:nth-child(1) > span:nth-child(2)", + "nodeId": "n244", + "sectionId": "section-001", + "selector": "div.button-group--yAB1O > div.arco-space.arco-space-horizontal:nth-of-type(2) > div.arco-space-item > button.arco-btn.arco-btn-secondary > span", + "visible": true + }, + { + "attributes": { + "class": "arco-table-container" + }, + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n240", + "sectionId": "section-001", + "selector": "div.arco-table-container", + "visible": true + }, + { + "attributes": { + "class": "arco-table-content-scroll" + }, + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n239", + "sectionId": "section-001", + "selector": "div.arco-table-content-scroll", + "visible": true + }, + { + "attributes": { + "class": "arco-table-content-inner" + }, + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n238", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1)", + "nodeId": "n237", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > colgroup:nth-child(1)", + "nodeId": "n243", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > colgroup", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 260, + "top": 293, + "width": 236 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > colgroup:nth-child(1) > col:nth-child(1)", + "nodeId": "n242", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(1)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 496, + "top": 293, + "width": 227 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > colgroup:nth-child(1) > col:nth-child(2)", + "nodeId": "n241", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(2)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 723, + "top": 293, + "width": 197 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > colgroup:nth-child(1) > col:nth-child(3)", + "nodeId": "n260", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(3)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 920, + "top": 293, + "width": 139 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > colgroup:nth-child(1) > col:nth-child(4)", + "nodeId": "n256", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(4)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 1058, + "top": 293, + "width": 148 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > colgroup:nth-child(1) > col:nth-child(5)", + "nodeId": "n254", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(5)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 1206, + "top": 293, + "width": 255 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > colgroup:nth-child(1) > col:nth-child(6)", + "nodeId": "n255", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(6)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 1462, + "top": 293, + "width": 139 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > colgroup:nth-child(1) > col:nth-child(7)", + "nodeId": "n259", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(7)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 841, + "left": 1600, + "top": 293, + "width": 145 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > colgroup:nth-child(1) > col:nth-child(8)", + "nodeId": "n257", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > colgroup > col:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item-title" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 320, + "width": 56 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n258", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(1) > div.arco-table-th-item > span.arco-table-th-item-title", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item" + }, + "bbox": { + "height": 70, + "left": 260, + "top": 293, + "width": 236 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(1) > div:nth-child(1)", + "nodeId": "n275", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(1) > div.arco-table-th-item", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 71, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2)", + "nodeId": "n269", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 71, + "left": 260, + "top": 293, + "width": 1485 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1)", + "nodeId": "n265", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th" + }, + "bbox": { + "height": 71, + "left": 260, + "top": 293, + "width": 236 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(1)", + "nodeId": "n264", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th" + }, + "bbox": { + "height": 71, + "left": 496, + "top": 293, + "width": 227 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(2)", + "nodeId": "n262", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item-title" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 320, + "width": 56 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n263", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(2) > div.arco-table-th-item > span.arco-table-th-item-title", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item" + }, + "bbox": { + "height": 70, + "left": 496, + "top": 293, + "width": 227 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(2) > div:nth-child(1)", + "nodeId": "n268", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(2) > div.arco-table-th-item", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th" + }, + "bbox": { + "height": 71, + "left": 723, + "top": 293, + "width": 197 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(3)", + "nodeId": "n267", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item-title" + }, + "bbox": { + "height": 16, + "left": 739, + "top": 320, + "width": 56 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n266", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(3) > div.arco-table-th-item > span.arco-table-th-item-title", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item" + }, + "bbox": { + "height": 70, + "left": 723, + "top": 293, + "width": 197 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(3) > div:nth-child(1)", + "nodeId": "n274", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(3) > div.arco-table-th-item", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item" + }, + "bbox": { + "height": 70, + "left": 920, + "top": 293, + "width": 139 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(4) > div:nth-child(1)", + "nodeId": "n273", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(4) > div.arco-table-th-item", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th" + }, + "bbox": { + "height": 71, + "left": 920, + "top": 293, + "width": 139 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(4)", + "nodeId": "n272", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item-title" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 320, + "width": 56 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n270", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(4) > div.arco-table-th-item > span.arco-table-th-item-title", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item-title" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 320, + "width": 42 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(5) > div:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n271", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > span.arco-table-th-item-title", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item arco-table-col-has-sorter" + }, + "bbox": { + "height": 70, + "left": 1058, + "top": 293, + "width": 148 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(5) > div:nth-child(1)", + "nodeId": "n714", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-with-sorter" + }, + "bbox": { + "height": 70, + "left": 1058, + "top": 293, + "width": 148 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(5) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n713", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th" + }, + "bbox": { + "height": 71, + "left": 1058, + "top": 293, + "width": 148 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(5)", + "nodeId": "n712", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-sorter" + }, + "bbox": { + "height": 16, + "left": 1124, + "top": 320, + "width": 12 + }, + "depth": 13, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(5) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n687", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter", + "visible": true + }, + { + "attributes": { + "class": "arco-table-sorter-icon" + }, + "bbox": { + "height": 8, + "left": 1124, + "top": 320, + "width": 12 + }, + "depth": 14, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(5) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n686", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter > div.arco-table-sorter-icon:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-sorter-icon" + }, + "bbox": { + "height": 8, + "left": 1124, + "top": 328, + "width": 12 + }, + "depth": 15, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(5) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n685", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(5) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter > div.arco-table-sorter-icon:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th" + }, + "bbox": { + "height": 71, + "left": 1206, + "top": 293, + "width": 255 + }, + "depth": 16, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(6)", + "nodeId": "n684", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item arco-table-col-has-sorter" + }, + "bbox": { + "height": 70, + "left": 1206, + "top": 293, + "width": 255 + }, + "depth": 17, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(6) > div:nth-child(1)", + "nodeId": "n284", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-with-sorter" + }, + "bbox": { + "height": 70, + "left": 1206, + "top": 293, + "width": 255 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(6) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n276", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item-title" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 320, + "width": 56 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(6) > div:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n277", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > span.arco-table-th-item-title", + "visible": true + }, + { + "attributes": { + "class": "arco-table-sorter" + }, + "bbox": { + "height": 16, + "left": 1286, + "top": 320, + "width": 12 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(6) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n278", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter", + "visible": true + }, + { + "attributes": { + "class": "arco-table-sorter-icon" + }, + "bbox": { + "height": 8, + "left": 1286, + "top": 320, + "width": 12 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(6) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n279", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter > div.arco-table-sorter-icon:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-sorter-icon" + }, + "bbox": { + "height": 8, + "left": 1286, + "top": 328, + "width": 12 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(6) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n280", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(6) > div.arco-table-th-item.arco-table-col-has-sorter > div.arco-table-cell-with-sorter > div.arco-table-sorter > div.arco-table-sorter-icon:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th" + }, + "bbox": { + "height": 71, + "left": 1462, + "top": 293, + "width": 139 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(7)", + "nodeId": "n281", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item" + }, + "bbox": { + "height": 70, + "left": 1462, + "top": 293, + "width": 139 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(7) > div:nth-child(1)", + "nodeId": "n282", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(7) > div.arco-table-th-item", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item-title" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 320, + "width": 28 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n283", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(7) > div.arco-table-th-item > span.arco-table-th-item-title", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th" + }, + "bbox": { + "height": 71, + "left": 1600, + "top": 293, + "width": 145 + }, + "depth": 17, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(8)", + "nodeId": "n322", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 364, + "width": 1485 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1)", + "nodeId": "n321", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item" + }, + "bbox": { + "height": 70, + "left": 1615, + "top": 293, + "width": 130 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(8) > div:nth-child(1)", + "nodeId": "n287", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(8) > div.arco-table-th-item", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 391, + "width": 204 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n286", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-th-item-title" + }, + "bbox": { + "height": 16, + "left": 1631, + "top": 320, + "width": 28 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > thead:nth-child(2) > tr:nth-child(1) > th:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n285", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > thead > tr.arco-table-tr > th.arco-table-th:nth-of-type(8) > div.arco-table-th-item > span.arco-table-th-item-title", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 770, + "left": 260, + "top": 364, + "width": 1485 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3)", + "nodeId": "n290", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 391, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n289", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 394, + "width": 118 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n288", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 364, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(1)", + "nodeId": "n293", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 391, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n292", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 394, + "width": 118 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n291", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 376, + "top": 392, + "width": 18 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n296", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 364, + "width": 227 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(2)", + "nodeId": "n295", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 394, + "width": 98 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n294", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 364, + "width": 197 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(3)", + "nodeId": "n305", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 391, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n304", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 391, + "width": 107 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n303", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 391, + "width": 165 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n297", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 391, + "width": 116 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n302", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 364, + "width": 139 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(4)", + "nodeId": "n299", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 394, + "width": 28 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n298", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 391, + "width": 223 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n301", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 364, + "width": 148 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(5)", + "nodeId": "n300", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 394, + "width": 23 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n314", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 390, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n313", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 364, + "width": 255 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(6)", + "nodeId": "n312", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 394, + "width": 130 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n306", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 364, + "width": 139 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(7)", + "nodeId": "n311", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 393, + "width": 56 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n308", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 392, + "width": 56 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n307", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 388, + "width": 113 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n310", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 392, + "width": 56 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n309", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-success" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 400, + "width": 6 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n317", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-success:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 392, + "width": 42 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n316", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 394, + "width": 60 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n315", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 364, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(8)", + "nodeId": "n320", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 468, + "width": 204 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n319", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 394, + "width": 28 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n318", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 388, + "width": 60 + }, + "depth": 17, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(1) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n683", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(1) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 441, + "width": 1485 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2)", + "nodeId": "n358", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 441, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(1)", + "nodeId": "n328", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 468, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n327", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 471, + "width": 118 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n326", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 471, + "width": 118 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n325", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 376, + "top": 469, + "width": 18 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n324", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 441, + "width": 227 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(2)", + "nodeId": "n323", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 441, + "width": 197 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(3)", + "nodeId": "n331", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 468, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n330", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 471, + "width": 98 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n329", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 441, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(4)", + "nodeId": "n336", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 468, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n335", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 468, + "width": 165 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n334", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 468, + "width": 107 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n333", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 471, + "width": 28 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n332", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 441, + "width": 148 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(5)", + "nodeId": "n339", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 468, + "width": 116 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n338", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 471, + "width": 35 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n337", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 441, + "width": 255 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(6)", + "nodeId": "n342", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 468, + "width": 223 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n341", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 471, + "width": 130 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n340", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 441, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(7)", + "nodeId": "n345", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 467, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n344", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 470, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n343", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 441, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(8)", + "nodeId": "n352", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 465, + "width": 113 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n351", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 469, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n350", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 469, + "width": 56 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n349", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-error" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 477, + "width": 6 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n348", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 469, + "width": 42 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n346", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 471, + "width": 60 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n347", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 518, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(1)", + "nodeId": "n357", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 545, + "width": 204 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n356", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 471, + "width": 28 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n355", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 465, + "width": 60 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(2) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n354", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(2) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 548, + "width": 118 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n353", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 518, + "width": 1485 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3)", + "nodeId": "n394", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 518, + "width": 227 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(2)", + "nodeId": "n364", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 545, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n363", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 548, + "width": 118 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n362", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 376, + "top": 546, + "width": 18 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n361", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 548, + "width": 84 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n360", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 518, + "width": 197 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(3)", + "nodeId": "n359", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 518, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(4)", + "nodeId": "n367", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 545, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n366", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 545, + "width": 165 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n365", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 518, + "width": 148 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(5)", + "nodeId": "n372", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 545, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n371", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 548, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n370", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 545, + "width": 107 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n369", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 545, + "width": 116 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n368", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 518, + "width": 255 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(6)", + "nodeId": "n375", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 545, + "width": 223 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n374", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 548, + "width": 23 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n373", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 518, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(7)", + "nodeId": "n378", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 544, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n377", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 548, + "width": 130 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n376", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 518, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(8)", + "nodeId": "n381", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 542, + "width": 113 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n380", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 547, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n379", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 546, + "width": 56 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n388", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 546, + "width": 56 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n387", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-success" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 554, + "width": 6 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n386", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-success:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 546, + "width": 42 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n385", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 548, + "width": 60 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n384", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 548, + "width": 28 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n382", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 625, + "width": 118 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n383", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 595, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(1)", + "nodeId": "n393", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 542, + "width": 60 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(3) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n392", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(3) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 595, + "width": 1485 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4)", + "nodeId": "n391", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 622, + "width": 204 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n390", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 625, + "width": 118 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n389", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 376, + "top": 623, + "width": 18 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n430", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 595, + "width": 227 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(2)", + "nodeId": "n400", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 622, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n399", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 625, + "width": 112 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n398", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 622, + "width": 165 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n397", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 625, + "width": 28 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n396", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 595, + "width": 197 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(3)", + "nodeId": "n395", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 595, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(4)", + "nodeId": "n403", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 622, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n402", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 622, + "width": 165 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n401", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 595, + "width": 148 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(5)", + "nodeId": "n408", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 622, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n407", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 625, + "width": 8 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n406", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 622, + "width": 116 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n405", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 595, + "width": 255 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(6)", + "nodeId": "n404", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 595, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(7)", + "nodeId": "n411", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 622, + "width": 223 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n410", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 625, + "width": 130 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n409", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 621, + "width": 107 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n414", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 624, + "width": 56 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n413", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 623, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n412", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 595, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(8)", + "nodeId": "n417", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 619, + "width": 113 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n416", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 623, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n415", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-error" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 631, + "width": 6 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n424", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 623, + "width": 42 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n423", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 625, + "width": 60 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n422", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 625, + "width": 28 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n421", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 702, + "width": 118 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n420", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 619, + "width": 60 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(4) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n418", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(4) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 702, + "width": 118 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n419", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 672, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(1)", + "nodeId": "n429", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 699, + "width": 204 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n428", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 376, + "top": 700, + "width": 18 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n427", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 672, + "width": 1485 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5)", + "nodeId": "n426", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 702, + "width": 84 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n425", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 672, + "width": 227 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(2)", + "nodeId": "n466", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 672, + "width": 197 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(3)", + "nodeId": "n436", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 699, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n435", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 699, + "width": 165 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n434", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 702, + "width": 28 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n433", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 699, + "width": 165 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n432", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 699, + "width": 165 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n431", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 672, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(4)", + "nodeId": "n439", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 699, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n438", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 702, + "width": 35 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n437", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 672, + "width": 148 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(5)", + "nodeId": "n444", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 699, + "width": 116 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n443", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 702, + "width": 130 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n442", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 699, + "width": 223 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n441", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 672, + "width": 255 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(6)", + "nodeId": "n440", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 672, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(7)", + "nodeId": "n447", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 698, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n446", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 701, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n445", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 672, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(8)", + "nodeId": "n450", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 696, + "width": 113 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n449", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 700, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n448", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 700, + "width": 56 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n453", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-error" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 708, + "width": 6 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n452", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 700, + "width": 42 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n451", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 749, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(1)", + "nodeId": "n460", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 776, + "width": 204 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n459", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 702, + "width": 60 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n458", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 702, + "width": 28 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n457", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 696, + "width": 60 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(5) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n456", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(5) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 779, + "width": 116 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n454", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 749, + "width": 1485 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6)", + "nodeId": "n455", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 749, + "width": 227 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(2)", + "nodeId": "n465", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 776, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n464", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 779, + "width": 116 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n463", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 374, + "top": 777, + "width": 18 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n462", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 779, + "width": 84 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n461", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 749, + "width": 197 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(3)", + "nodeId": "n502", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 749, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(4)", + "nodeId": "n472", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 776, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n471", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 776, + "width": 165 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n470", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 779, + "width": 56 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n469", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 776, + "width": 165 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n468", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 776, + "width": 107 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n467", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 749, + "width": 148 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(5)", + "nodeId": "n475", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 776, + "width": 116 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n474", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 779, + "width": 35 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n473", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 749, + "width": 255 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(6)", + "nodeId": "n480", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 776, + "width": 223 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n479", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 779, + "width": 130 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n478", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 775, + "width": 107 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n477", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 749, + "width": 139 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(7)", + "nodeId": "n476", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 749, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(8)", + "nodeId": "n483", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 773, + "width": 113 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n482", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 778, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n481", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 777, + "width": 56 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n486", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 777, + "width": 56 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n485", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-error" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 785, + "width": 6 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n484", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 777, + "width": 42 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n489", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 853, + "width": 204 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n488", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 779, + "width": 60 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n487", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 826, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(1)", + "nodeId": "n496", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 773, + "width": 60 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n495", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 779, + "width": 28 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(6) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n494", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(6) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 856, + "width": 118 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n493", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 826, + "width": 1485 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7)", + "nodeId": "n492", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 856, + "width": 118 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n490", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 376, + "top": 854, + "width": 18 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n491", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 826, + "width": 227 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(2)", + "nodeId": "n501", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 853, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n500", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 856, + "width": 98 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n499", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 826, + "width": 197 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(3)", + "nodeId": "n498", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 853, + "width": 165 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n497", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 853, + "width": 165 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n538", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 826, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(4)", + "nodeId": "n508", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 853, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n507", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 856, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n506", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 856, + "width": 23 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n505", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 853, + "width": 107 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n504", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 826, + "width": 148 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(5)", + "nodeId": "n503", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 826, + "width": 255 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(6)", + "nodeId": "n511", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 853, + "width": 116 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n510", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 856, + "width": 130 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n509", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 826, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(7)", + "nodeId": "n516", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 853, + "width": 223 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n515", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 855, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n514", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 852, + "width": 107 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n513", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 854, + "width": 56 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n512", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 826, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(8)", + "nodeId": "n519", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 850, + "width": 113 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n518", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 854, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n517", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-error" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 862, + "width": 6 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n522", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 854, + "width": 42 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n521", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 856, + "width": 60 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n520", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 903, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(1)", + "nodeId": "n525", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 930, + "width": 204 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n524", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 856, + "width": 28 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n523", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 850, + "width": 60 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(7) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n532", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(7) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 903, + "width": 1485 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8)", + "nodeId": "n531", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 933, + "width": 118 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n530", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 933, + "width": 118 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n529", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 376, + "top": 931, + "width": 18 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n528", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 933, + "width": 98 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n526", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 930, + "width": 165 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n527", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 903, + "width": 227 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(2)", + "nodeId": "n537", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 930, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n536", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 933, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n535", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 903, + "width": 197 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(3)", + "nodeId": "n534", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 930, + "width": 165 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n533", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 930, + "width": 165 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n574", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 903, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(4)", + "nodeId": "n544", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 930, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n543", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 933, + "width": 35 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n542", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 933, + "width": 130 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n541", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 903, + "width": 148 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(5)", + "nodeId": "n540", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 930, + "width": 116 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n539", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 903, + "width": 255 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(6)", + "nodeId": "n547", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 930, + "width": 223 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n546", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 932, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n545", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 903, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(7)", + "nodeId": "n552", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 929, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n551", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 931, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n550", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 927, + "width": 113 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n549", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 931, + "width": 56 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n548", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 903, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(8)", + "nodeId": "n555", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-error" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 939, + "width": 6 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n554", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-error:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 931, + "width": 42 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n553", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 980, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(1)", + "nodeId": "n558", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 1007, + "width": 204 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n557", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 933, + "width": 60 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n556", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 927, + "width": 60 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n561", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 933, + "width": 28 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(8) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n560", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(8) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 1010, + "width": 118 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n559", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 980, + "width": 1485 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9)", + "nodeId": "n568", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 1007, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n567", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 1010, + "width": 118 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n566", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 376, + "top": 1008, + "width": 18 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n565", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 1010, + "width": 112 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n564", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 980, + "width": 227 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(2)", + "nodeId": "n562", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 1007, + "width": 165 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n563", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 980, + "width": 197 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(3)", + "nodeId": "n573", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 1007, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n572", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 1010, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n571", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 1007, + "width": 165 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n570", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 1010, + "width": 23 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n569", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 980, + "width": 139 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(4)", + "nodeId": "n610", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 980, + "width": 148 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(5)", + "nodeId": "n580", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 1007, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n579", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 1010, + "width": 130 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n578", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 1007, + "width": 116 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n577", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 1009, + "width": 56 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n576", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 980, + "width": 255 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(6)", + "nodeId": "n575", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 980, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(7)", + "nodeId": "n583", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 1007, + "width": 223 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n582", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 1008, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n581", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 1006, + "width": 107 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n588", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 1004, + "width": 113 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n587", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 1008, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n586", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-success" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 1016, + "width": 6 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n585", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-success:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 1008, + "width": 42 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n584", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 980, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(8)", + "nodeId": "n591", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 276, + "top": 1084, + "width": 204 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(1) > div:nth-child(1)", + "nodeId": "n590", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 1010, + "width": 60 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n589", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 1057, + "width": 236 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(1)", + "nodeId": "n594", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 1004, + "width": 60 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n593", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 1010, + "width": 28 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(9) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n592", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(9) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-table-tr" + }, + "bbox": { + "height": 77, + "left": 260, + "top": 1057, + "width": 1485 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10)", + "nodeId": "n597", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 512, + "top": 1084, + "width": 195 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(2) > div:nth-child(1)", + "nodeId": "n596", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 1087, + "width": 117 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n595", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 496, + "top": 1057, + "width": 227 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(2)", + "nodeId": "n604", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-typography" + }, + "bbox": { + "height": 16, + "left": 276, + "top": 1087, + "width": 117 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n603", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography", + "visible": true + }, + { + "attributes": { + "class": "arco-typography-operation-copy" + }, + "bbox": { + "height": 20, + "left": 375, + "top": 1085, + "width": 18 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n602", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(1) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-typography > span.arco-typography-operation-copy", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 512, + "top": 1087, + "width": 112 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(2) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n601", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(2) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 1084, + "width": 165 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n600", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 936, + "top": 1087, + "width": 56 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(4) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n598", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 723, + "top": 1057, + "width": 197 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(3)", + "nodeId": "n599", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 920, + "top": 1057, + "width": 139 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(4)", + "nodeId": "n609", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 1084, + "width": 165 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(3) > div:nth-child(1)", + "nodeId": "n608", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "content-type--HXfG3" + }, + "bbox": { + "height": 22, + "left": 739, + "top": 1084, + "width": 165 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(3) > div:nth-child(1) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n607", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(3) > div.arco-table-cell > span.arco-table-cell-wrap-value > div.content-type--HXfG3", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 936, + "top": 1084, + "width": 107 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(4) > div:nth-child(1)", + "nodeId": "n606", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(4) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1074, + "top": 1087, + "width": 35 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(5) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n605", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1058, + "top": 1057, + "width": 148 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(5)", + "nodeId": "n646", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1206, + "top": 1057, + "width": 255 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(6)", + "nodeId": "n616", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1074, + "top": 1084, + "width": 116 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(5) > div:nth-child(1)", + "nodeId": "n615", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(5) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1222, + "top": 1087, + "width": 130 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(6) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n614", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1478, + "top": 1086, + "width": 56 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n613", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 22, + "left": 1222, + "top": 1084, + "width": 223 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(6) > div:nth-child(1)", + "nodeId": "n612", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(6) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1462, + "top": 1057, + "width": 139 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(7)", + "nodeId": "n611", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-td" + }, + "bbox": { + "height": 77, + "left": 1600, + "top": 1057, + "width": 145 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(8)", + "nodeId": "n619", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 24, + "left": 1478, + "top": 1083, + "width": 107 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(7) > div:nth-child(1)", + "nodeId": "n618", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge arco-badge-status arco-badge-no-children" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 1085, + "width": 56 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n617", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-wrapper" + }, + "bbox": { + "height": 22, + "left": 1478, + "top": 1085, + "width": 56 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n624", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 1081, + "width": 113 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(8) > div:nth-child(1)", + "nodeId": "n623", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-dot arco-badge-status-success" + }, + "bbox": { + "height": 6, + "left": 1478, + "top": 1093, + "width": 6 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n622", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-dot.arco-badge-status-success:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-badge-status-text" + }, + "bbox": { + "height": 22, + "left": 1492, + "top": 1085, + "width": 42 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(7) > div:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n621", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(7) > div.arco-table-cell > span.arco-table-cell-wrap-value > span.arco-badge.arco-badge-status > span.arco-badge-status-wrapper > span.arco-badge-status-text:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-table-cell-wrap-value" + }, + "bbox": { + "height": 16, + "left": 1616, + "top": 1087, + "width": 60 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n620", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-text arco-btn-size-small arco-btn-shape-square" + }, + "bbox": { + "height": 28, + "left": 1616, + "top": 1081, + "width": 60 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n627", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text", + "visible": true + }, + { + "attributes": { + "class": "arco-table-pagination" + }, + "bbox": { + "height": 44, + "left": 260, + "top": 1134, + "width": 1485 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n626", + "sectionId": "section-001", + "selector": "div.arco-table-pagination", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 16, + "left": 1632, + "top": 1087, + "width": 28 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(3) > tr:nth-child(10) > td:nth-child(8) > div:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(1)", + "nodeId": "n625", + "sectionId": "section-001", + "selector": "div.arco-table-content-inner > table > tbody > tr.arco-table-tr:nth-of-type(10) > td.arco-table-td:nth-of-type(8) > div.arco-table-cell > span.arco-table-cell-wrap-value > button.arco-btn.arco-btn-text > span", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination arco-pagination-size-default" + }, + "bbox": { + "height": 32, + "left": 1221, + "top": 1146, + "width": 524 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n630", + "sectionId": "section-001", + "selector": "div.arco-pagination.arco-pagination-size-default", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-total-text" + }, + "bbox": { + "height": 32, + "left": 1221, + "top": 1146, + "width": 59 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n629", + "sectionId": "section-001", + "selector": "div.arco-pagination-total-text", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-list" + }, + "bbox": { + "height": 32, + "left": 1288, + "top": 1146, + "width": 352 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2)", + "nodeId": "n628", + "sectionId": "section-001", + "selector": "ul.arco-pagination-list", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-item arco-pagination-item-prev arco-pagination-item-disabled" + }, + "bbox": { + "height": 32, + "left": 1288, + "top": 1146, + "width": 32 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(1)", + "nodeId": "n633", + "sectionId": "section-001", + "selector": "li.arco-pagination-item.arco-pagination-item-prev", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-item arco-pagination-item-active", + "dataAttrs": { + "data-active": "true" + } + }, + "bbox": { + "height": 32, + "left": 1328, + "top": 1146, + "width": 32 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(2)", + "nodeId": "n632", + "sectionId": "section-001", + "selector": "li.arco-pagination-item.arco-pagination-item-active", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-item", + "dataAttrs": { + "data-active": "false" + } + }, + "bbox": { + "height": 32, + "left": 1368, + "top": 1146, + "width": 32 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(3)", + "nodeId": "n631", + "sectionId": "section-001", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-item", + "dataAttrs": { + "data-active": "false" + } + }, + "bbox": { + "height": 32, + "left": 1408, + "top": 1146, + "width": 32 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(4)", + "nodeId": "n640", + "sectionId": "section-001", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-option" + }, + "bbox": { + "height": 32, + "left": 1648, + "top": 1146, + "width": 97 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(3)", + "nodeId": "n639", + "sectionId": "section-001", + "selector": "div.arco-pagination-option", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-item", + "dataAttrs": { + "data-active": "false" + } + }, + "bbox": { + "height": 32, + "left": 1448, + "top": 1146, + "width": 32 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(5)", + "nodeId": "n638", + "sectionId": "section-001", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-item", + "dataAttrs": { + "data-active": "false" + } + }, + "bbox": { + "height": 32, + "left": 1488, + "top": 1146, + "width": 32 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(6)", + "nodeId": "n637", + "sectionId": "section-001", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-item arco-pagination-item-jumper" + }, + "bbox": { + "height": 32, + "left": 1528, + "top": 1146, + "width": 32 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(7)", + "nodeId": "n636", + "sectionId": "section-001", + "selector": "li.arco-pagination-item.arco-pagination-item-jumper", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view-value" + }, + "bbox": { + "height": 30, + "left": 1660, + "top": 1147, + "width": 57 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1) > span:nth-child(2)", + "nodeId": "n634", + "sectionId": "section-001", + "selector": "span.arco-select-view-value", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-item", + "dataAttrs": { + "data-active": "false" + } + }, + "bbox": { + "height": 32, + "left": 1568, + "top": 1146, + "width": 32 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(8)", + "nodeId": "n635", + "sectionId": "section-001", + "selector": "ul.arco-pagination-list > li.arco-pagination-item:nth-of-type(8)", + "visible": true + }, + { + "attributes": { + "class": "arco-pagination-item arco-pagination-item-next" + }, + "bbox": { + "height": 32, + "left": 1608, + "top": 1146, + "width": 32 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > ul:nth-child(2) > li:nth-child(9)", + "nodeId": "n645", + "sectionId": "section-001", + "selector": "li.arco-pagination-item.arco-pagination-item-next", + "visible": true + }, + { + "attributes": { + "class": "arco-select arco-select-single arco-select-size-default" + }, + "bbox": { + "height": 32, + "left": 1648, + "top": 1146, + "width": 97 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1)", + "nodeId": "n644", + "sectionId": "section-001", + "selector": "div.arco-select.arco-select-single", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view" + }, + "bbox": { + "height": 32, + "left": 1648, + "top": 1146, + "width": 97 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n643", + "sectionId": "section-001", + "selector": "div.arco-select.arco-select-single > div.arco-select-view", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view-input arco-select-hidden" + }, + "bbox": { + "height": 16, + "left": 1660, + "top": 1147, + "width": 95 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1) > input:nth-child(1)", + "nodeId": "n642", + "sectionId": "section-001", + "selector": "input.arco-select-view-input.arco-select-hidden", + "visible": false + }, + { + "attributes": { + "class": "arco-select-suffix" + }, + "bbox": { + "height": 30, + "left": 1721, + "top": 1147, + "width": 12 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3)", + "nodeId": "n641", + "sectionId": "section-001", + "selector": "div.arco-select.arco-select-single > div.arco-select-view > div.arco-select-suffix", + "visible": true + }, + { + "attributes": { + "class": "arco-select-arrow-icon" + }, + "bbox": { + "height": 30, + "left": 1721, + "top": 1147, + "width": 12 + }, + "depth": 18, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > div:nth-child(1) > main:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1)", + "nodeId": "n682", + "sectionId": "section-001", + "selector": "div.arco-select-arrow-icon", + "visible": true + }, + { + "attributes": { + "class": "arco-layout-footer footer--No_Lw" + }, + "bbox": { + "height": 40, + "left": 220, + "top": 1198, + "width": 1565 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(1) > section:nth-child(1) > section:nth-child(1) > section:nth-child(2) > footer:nth-child(2)", + "nodeId": "n652", + "sectionId": "section-001", + "selector": "footer.arco-layout-footer.footer--No_Lw", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 1238, + "width": 1785 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(6)", + "nodeId": "n651", + "sectionId": "section-001", + "selector": "body > div:nth-of-type(2)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > script:nth-child(2)", + "nodeId": "n650", + "sectionId": "section-001", + "selector": "body > script:nth-of-type(1)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 22, + "domPath": "html > body:nth-child(2) > script:nth-child(3)", + "nodeId": "n649", + "sectionId": "section-001", + "selector": "body > script:nth-of-type(2)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 23, + "domPath": "html > body:nth-child(2) > script:nth-child(4)", + "nodeId": "n648", + "sectionId": "section-001", + "selector": "body > script:nth-of-type(3)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 24, + "domPath": "html > body:nth-child(2) > script:nth-child(5)", + "nodeId": "n647", + "sectionId": "section-001", + "selector": "body > script:nth-of-type(4)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 1238, + "width": 1785 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(7)", + "nodeId": "n655", + "sectionId": "section-001", + "selector": "body > div:nth-of-type(3)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 1238, + "width": 1785 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(8)", + "nodeId": "n654", + "sectionId": "section-001", + "selector": "body > div:nth-of-type(4)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 1238, + "width": 1785 + }, + "depth": 21, + "domPath": "html > body:nth-child(2) > div:nth-child(9)", + "nodeId": "n653", + "sectionId": "section-001", + "selector": "body > div:nth-of-type(5)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 19, + "domPath": "html > body:nth-child(2) > div:nth-child(10)", + "nodeId": "n660", + "sectionId": "section-001", + "selector": "body > div:nth-of-type(6)", + "visible": false + }, + { + "attributes": { + "class": "arco-typography-operation-expand" + }, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 20, + "domPath": "html > body:nth-child(2) > div:nth-child(10) > a:nth-child(1)", + "nodeId": "n659", + "sectionId": "section-001", + "selector": "a.arco-typography-operation-expand", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 21, + "domPath": "", + "nodeId": "n658", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 22, + "domPath": "", + "nodeId": "n657", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 23, + "domPath": "", + "nodeId": "n656", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 19, + "domPath": "", + "nodeId": "n663", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 20, + "domPath": "", + "nodeId": "n662", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 21, + "domPath": "", + "nodeId": "n661", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 19, + "domPath": "", + "nodeId": "n666", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 20, + "domPath": "", + "nodeId": "n665", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 21, + "domPath": "", + "nodeId": "n664", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 19, + "domPath": "", + "nodeId": "n669", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 20, + "domPath": "", + "nodeId": "n668", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 21, + "domPath": "", + "nodeId": "n667", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 19, + "domPath": "", + "nodeId": "n676", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 20, + "domPath": "", + "nodeId": "n675", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 21, + "domPath": "", + "nodeId": "n674", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 22, + "domPath": "", + "nodeId": "n673", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 23, + "domPath": "", + "nodeId": "n672", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 24, + "domPath": "", + "nodeId": "n670", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 24, + "domPath": "", + "nodeId": "n671", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 19, + "domPath": "", + "nodeId": "n681", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 20, + "domPath": "", + "nodeId": "n680", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 21, + "domPath": "", + "nodeId": "n679", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 22, + "domPath": "", + "nodeId": "n678", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 23, + "domPath": "", + "nodeId": "n677", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 13, + "domPath": "", + "nodeId": "n711", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 14, + "domPath": "", + "nodeId": "n710", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 15, + "domPath": "", + "nodeId": "n688", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 15, + "domPath": "", + "nodeId": "n701", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n690", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 17, + "domPath": "", + "nodeId": "n689", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n691", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n692", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n693", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n694", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n695", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n697", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 17, + "domPath": "", + "nodeId": "n696", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n698", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n700", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 17, + "domPath": "", + "nodeId": "n699", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 15, + "domPath": "", + "nodeId": "n709", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 16, + "domPath": "", + "nodeId": "n708", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 17, + "domPath": "", + "nodeId": "n707", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 18, + "domPath": "", + "nodeId": "n702", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 18, + "domPath": "", + "nodeId": "n703", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 18, + "domPath": "", + "nodeId": "n706", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 19, + "domPath": "", + "nodeId": "n705", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 20, + "domPath": "", + "nodeId": "n704", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 6, + "domPath": "", + "nodeId": "n719", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 2, + "domPath": "", + "nodeId": "n724", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 2, + "domPath": "", + "nodeId": "n725", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 2, + "domPath": "", + "nodeId": "n726", + "sectionId": "", + "selector": "", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 2, + "domPath": "", + "nodeId": "n727", + "sectionId": "", + "selector": "", + "visible": false + } +] \ No newline at end of file diff --git a/AI-Arco-Design-Themes-Demos-complete/topology/topology.json b/AI-Arco-Design-Themes-Demos-complete/topology/topology.json new file mode 100644 index 0000000..d34140b --- /dev/null +++ b/AI-Arco-Design-Themes-Demos-complete/topology/topology.json @@ -0,0 +1,19 @@ +{ + "fixedLayers": [ + "aside.arco-layout-sider.arco-layout-sider-light" + ], + "pageHeight": 1238, + "pageWidth": 1800, + "scrollContainer": null, + "sections": [ + { + "id": "section-001", + "interactionModel": "click-driven", + "isFixed": false, + "isSticky": false, + "name": "signup", + "order": 0, + "zIndex": 0 + } + ] +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/README.md b/AI-Arco-Design-Themes-complete/README.md new file mode 100644 index 0000000..22e2928 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/README.md @@ -0,0 +1,272 @@ +# 网页数据导出包使用说明 + +本压缩包包含从网页提取的完整数据,用于 AI 辅助页面还原和设计分析。 + +## 📦 文件结构 + +``` +├── README.md # 本说明文件 +├── screenshot.png # 完整页面截图(系统 API 截取) +├── domlist.json # DOM 结构数据(TOON 格式) +├── stylePool.json # 样式池数据(TOON 格式) +├── theme.json # 设计令牌(可选) +├── content.md # 页面内容 Markdown(可选) +├── index.html # 参考:生成的 HTML 文件 +├── style.css # 参考:生成的 CSS 文件 +└── assets/ + ├── images/ # 图片资源 + └── fonts/ # 字体资源 +``` + +## 🎯 核心文件说明 + +### 1. screenshot.png +- **用途:** 页面完整截图,用于视觉参考 +- **截取方式:** 使用 Chrome DevTools Protocol (CDP) 系统 API +- **特点:** 完整页面截图,包含滚动区域,无拼接痕迹 +- **优先级:** ⭐⭐⭐⭐⭐ 最重要的视觉参考 + +### 2. domlist.json(TOON 格式) +- **用途:** DOM 节点结构映射 +- **格式:** + ```json + { + "nodes": { + "n1": { + "tag": "div", + "children": ["n2", "n3"], + "styleId": "style_1", + "width": "1200px", + "height": "800px", + "text": "文本内容", + "id": "元素ID", + "class": "CSS类名", + "label": "data-label", + "src": "图片路径" + } + }, + "root": "n1" + } + ``` +- **说明:** + - `nodes`: 所有节点的映射表 + - `root`: 根节点 ID + - `width/height`: 从样式中独立存放,精确尺寸 + - `styleId`: 指向 stylePool.json 中的样式 + +### 3. stylePool.json(TOON 格式) +- **用途:** 去重后的样式池 +- **格式:** + ```json + { + "styles": { + "style_1": { + "tw": "flex items-center justify-between", + "custom": { + "borderRadius": "8px", + "boxShadow": "0 2px 8px rgba(0,0,0,0.1)" + } + } + } + } + ``` +- **说明:** + - `tw`: Tailwind CSS 类名(已优化) + - `custom`: 无法用 Tailwind 表达的自定义样式 + - 样式已去重,多个节点可共享同一 styleId + +### 4. theme.json(可选) +- **用途:** 页面设计令牌(Top 10) +- **内容:** 颜色、字体、间距、圆角、阴影等 +- **格式:** + ```json + { + "colors": { + "background": [{"value": "#ffffff", "count": 15}], + "text": [{"value": "#333333", "count": 20}] + }, + "typography": { + "families": ["Inter", "Arial"], + "textStyles": [{"size": "16px", "lineHeight": "1.5"}] + }, + "spacing": ["8px", "16px", "24px"], + "radius": ["4px", "8px"], + "shadow": { + "box": ["0 2px 8px rgba(0,0,0,0.1)"] + } + } + ``` + +### 5. content.md(可选) +- **用途:** 页面文本内容(Markdown 格式) +- **用途:** 快速理解页面信息结构和文案 + +### 6. index.html 和 style.css(仅供参考) +- **⚠️ 注意:** 这两个文件仅供参考,不是还原的必需文件 +- **用途:** + - 快速预览页面效果 + - 理解 DOM 结构和样式关系 + - 验证数据的正确性 +- **说明:** + - `index.html`: 使用 Tailwind CDN + 自定义样式 + - `style.css`: 包含 @font-face 和自定义样式 + - 可以直接在浏览器中打开查看效果 +- **还原时:** 应该使用 `domlist.json` 和 `stylePool.json`,而不是直接使用这两个文件 + +## 🚀 快速还原指引(推荐) + +**目标:** 快速生成页面视觉效果,节省 token + +**数据源优先级:** +1. ⭐⭐⭐⭐⭐ `screenshot.png` - 视觉参考 +2. ⭐⭐⭐⭐ `theme.json` - 设计令牌 +3. ⭐⭐⭐ `content.md` - 内容结构 +4. ⭐⭐ `index.html` - 参考实现(可选) + +**操作步骤:** + +1. **分析截图** + - 识别页面整体布局(header、main、footer) + - 识别主要视觉元素(导航、卡片、按钮等) + - 识别颜色、字体、间距等设计风格 + +2. **提取设计令牌**(从 theme.json) + - 颜色:背景色、文本色、边框色 + - 字体:字体家族、字号、行高、粗细 + - 间距:margin、padding、gap + - 其他:圆角、阴影、线宽 + +3. **生成 DOM 结构** + - 根据截图创建简化的 DOM 层级 + - 不必严格按照 domlist.json + - 使用 theme.json 中的设计令牌 + +4. **添加资源** + - 图片:使用 `assets/images/` 中的资源 + - 字体:使用 `assets/fonts/` 或系统字体 + +5. **微调样式** + - 对比截图调整布局和样式 + - 确保视觉效果接近原页面 + +**优点:** +- ✅ 快速生成 +- ✅ 节省 token +- ✅ 视觉效果好 + +## 🎨 精细还原指引(高保真) + +**目标:** 高保真还原页面结构与样式 + +**数据源优先级:** +1. ⭐⭐⭐⭐⭐ `screenshot.png` - 视觉参考 +2. ⭐⭐⭐⭐⭐ `domlist.json` - DOM 结构 +3. ⭐⭐⭐⭐⭐ `stylePool.json` - 样式数据 +4. ⭐⭐⭐⭐ `theme.json` - 设计令牌 +5. ⭐⭐ `index.html` - 参考实现(可选) + +**操作步骤:** + +1. **分析截图** + - 页面整体布局、颜色分布、主要元素 + +2. **构建 DOM 树**(从 domlist.json) + - 按 `children` 严格构建节点层级 + - 保留所有节点属性(id、class、label、src 等) + - 使用 `width` 和 `height` 设置精确尺寸 + +3. **应用样式**(从 stylePool.json) + - 每个节点通过 `styleId` 关联样式 + - `tw` 字段:Tailwind CSS 类名 + - `custom` 字段:自定义样式(CSS-in-JS 或 style 属性) + +4. **添加资源** + - 图片:`assets/images/` 中的资源,保持原始尺寸 + - 字体:`assets/fonts/` 中的 Web 字体,使用 @font-face + +5. **微调细节** + - 对比截图调整节点尺寸、间距、字体、阴影 + - 确保视觉效果高度还原 + +**优点:** +- ✅ 高保真还原 +- ✅ 结构完整 +- ✅ 样式精确 + +## 💡 使用建议 + +### 选择还原方式 + +- **快速原型:** 使用快速还原指引 +- **生产环境:** 使用精细还原指引 +- **AI Agent:** 使用渐进式还原指引(见下方 🧠 模式) +- **学习参考:** 打开 `index.html` 查看效果 + +### 注意事项 + +1. **截图优先:** 如果数据与截图冲突,以截图为准 +2. **样式优化:** stylePool 中的样式已优化(Tailwind + 自定义) +3. **资源路径:** 图片和字体路径需要根据实际部署调整 +4. **响应式:** 原始页面的响应式样式可能未完全保留 + +--- + +## 🧠 渐进式高精度还原(AI Agent 推荐) + +使用查询脚本实现渐进式数据读取,避免 Context Window 溢出。 +当离线数据不完整时,利用 Playwright 回溯原始页面补充采集。 + +**前置条件:** Node.js >= 18 + +**原始页面 URL:** `manifest.json` → `sourceUrl` 字段。 +当数据不准确时,AI 可通过 Playwright 访问此 URL 获取实时信息。 + +### 渐进式读取 + +```bash +# Step 1 — 全局概览(~500 tokens) +node scripts/query-page-data.mjs summary +node scripts/query-page-data.mjs skeleton --depth=2 + +# Step 2 — 按 Section 深入 +node scripts/query-page-data.mjs subtree n2 --depth=3 +node scripts/query-page-data.mjs nodes n3,n4,n5 --fields=style,text,selector + +# Step 3 — 条件反查 +node scripts/query-page-data.mjs find --tag=button --interactive +node scripts/query-page-data.mjs find --text="登录" +``` + +### 在线回溯(按需) + +当发现离线数据可疑时,可使用 Playwright(MCP 或 CLI)访问 `sourceUrl`: +- 每个节点文件 `flat/nodes/{id}.json` 包含 `selector` 字段 +- 该 `selector` 可直接用于 `page.locator(selector)` 定位原始元素 +- 截图、computedStyle、hover 态等均可按需获取 + +### 扁平化文件结构(full/interactive 模式) + +``` +flat/ +├── skeleton.json # 极简骨架树(含 sourceUrl,< 5KB) +├── index.json # 反向索引(tag/role/interactive 分类) +├── nodes/ # 每个节点的完整数据(含 selector + bbox) +│ ├── n1.json +│ └── ... +└── styles/ # 每个样式的完整数据 + ├── style_1.json + └── ... +``` + +--- + +## 📚 相关资源 + +- **TOON 格式:** https://github.com/toon-format/toon +- **Tailwind CSS:** https://tailwindcss.com/ +- **Chrome Extension:** Axhub Make + +--- + +**生成时间:** 2026-04-20T15:21:59.405Z +**版本:** 3.0(渐进式检索 + 在线回溯) diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-1.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-1.woff2 new file mode 100644 index 0000000..a901a32 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-1.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-10.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-10.woff2 new file mode 100644 index 0000000..b324df6 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-10.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-2.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-2.woff2 new file mode 100644 index 0000000..1b1c2b2 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-2.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-3.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-3.woff2 new file mode 100644 index 0000000..6c9cd8c Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-3.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-4.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-4.woff2 new file mode 100644 index 0000000..8fd0d36 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-4.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-5.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-5.woff2 new file mode 100644 index 0000000..613469d Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-5.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-6.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-6.woff2 new file mode 100644 index 0000000..f38504d Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-6.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-7.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-7.woff2 new file mode 100644 index 0000000..e555283 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-7.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-8.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-8.woff2 new file mode 100644 index 0000000..8c9f0ae Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-8.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/assets/fonts/font-9.woff2 b/AI-Arco-Design-Themes-complete/assets/fonts/font-9.woff2 new file mode 100644 index 0000000..b13406a Binary files /dev/null and b/AI-Arco-Design-Themes-complete/assets/fonts/font-9.woff2 differ diff --git a/AI-Arco-Design-Themes-complete/content.md b/AI-Arco-Design-Themes-complete/content.md new file mode 100644 index 0000000..d14a56f --- /dev/null +++ b/AI-Arco-Design-Themes-complete/content.md @@ -0,0 +1,27 @@ +{"savedTokens":{"@primary-2":{"key":"@primary-2","value":"rgb(var(--arcoblue-2))","component":"Color","version":2},"@dark-primary-2":{"key":"@dark-primary-2","value":"rgb(var(--arcoblue-2))","component":"Color","version":2},"@primary-1":{"key":"@primary-1","value":"rgb(var(--arcoblue-1))","component":"Color","version":2},"@dark-primary-4":{"key":"@dark-primary-4","value":"rgb(var(--arcoblue-4))","component":"Color","version":2},"@primary-5":{"key":"@primary-5","value":"rgb(var(--arcoblue-5))","component":"Color","version":2},"@dark-primary-3":{"key":"@dark-primary-3","value":"rgb(var(--arcoblue-3))","component":"Color","version":2},"@primary-7":{"key":"@primary-7","value":"rgb(var(--arcoblue-7))","component":"Color","version":2},"@dark-primary-5":{"key":"@dark-primary-5","value":"rgb(var(--arcoblue-5))","component":"Color","version":2},"@primary-6":{"key":"@primary-6","value":"rgb(var(--arcoblue-6))","component":"Color","version":2},"@primary-8":{"key":"@primary-8","value":"rgb(var(--arcoblue-8))","component":"Color","version":2},"@primary-4":{"key":"@primary-4","value":"rgb(var(--arcoblue-4))","component":"Color","version":2},"@dark-primary-7":{"key":"@dark-primary-7","value":"rgb(var(--arcoblue-7))","component":"Color","version":2},"@dark-primary-1":{"key":"@dark-primary-1","value":"rgb(var(--arcoblue-1))","component":"Color","version":2},"@dark-primary-10":{"key":"@dark-primary-10","value":"rgb(var(--arcoblue-10))","component":"Color","version":2},"@primary-3":{"key":"@primary-3","value":"rgb(var(--arcoblue-3))","component":"Color","version":2},"@dark-primary-6":{"key":"@dark-primary-6","value":"rgb(var(--arcoblue-6))","component":"Color","version":2},"@dark-primary-9":{"key":"@dark-primary-9","value":"rgb(var(--arcoblue-9))","component":"Color","version":2},"@dark-primary-8":{"key":"@dark-primary-8","value":"rgb(var(--arcoblue-8))","component":"Color","version":2},"@primary-9":{"key":"@primary-9","value":"rgb(var(--arcoblue-9))","component":"Color","version":2},"@primary-10":{"key":"@primary-10","value":"rgb(var(--arcoblue-10))","component":"Color","version":2},"@btn-secondary-color-bg\_disabled":{"key":"@btn-secondary-color-bg\_disabled","value":"var(--color-fill-1)","component":"Button","version":0},"@btn-secondary-color-bg":{"key":"@btn-secondary-color-bg","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-bg\_hover":{"key":"@btn-secondary-color-bg\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-bg\_active":{"key":"@btn-secondary-color-bg\_active","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-border":{"key":"@btn-secondary-color-border","value":"var(--color-border-2)","component":"Button","version":0},"@btn-secondary-color-border\_disabled":{"key":"@btn-secondary-color-border\_disabled","value":"var(--color-border-2)","component":"Button","version":0},"@btn-secondary-color-border\_hover":{"key":"@btn-secondary-color-border\_hover","value":"@color-primary-6","component":"Button","version":0},"@btn-secondary-color-border\_active":{"key":"@btn-secondary-color-border\_active","value":"@color-primary-7","component":"Button","version":0},"@btn-secondary-color-text\_hover":{"key":"@btn-secondary-color-text\_hover","value":"@color-primary-6","component":"Button","version":1},"@btn-secondary-color-text\_active":{"key":"@btn-secondary-color-text\_active","value":"@color-primary-7","component":"Button","version":0},"@btn-secondary-color-bg\_warning":{"key":"@btn-secondary-color-bg\_warning","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-bg\_danger\_hover":{"key":"@btn-secondary-color-bg\_danger\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-bg\_danger":{"key":"@btn-secondary-color-bg\_danger","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-bg\_danger\_active":{"key":"@btn-secondary-color-bg\_danger\_active","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-bg\_success\_hover":{"key":"@btn-secondary-color-bg\_success\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-border\_success":{"key":"@btn-secondary-color-border\_success","value":"@color-success-6","component":"Button","version":0},"@btn-secondary-color-border\_danger\_disabled":{"key":"@btn-secondary-color-border\_danger\_disabled","value":"var(--color-danger-light-3)","component":"Button","version":0},"@btn-secondary-color-border\_success\_disabled":{"key":"@btn-secondary-color-border\_success\_disabled","value":"var(--color-success-light-3)","component":"Button","version":0},"@btn-primary-color-border\_hover":{"key":"@btn-primary-color-border\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-border\_danger\_hover":{"key":"@btn-secondary-color-border\_danger\_hover","value":"@color-danger-5","component":"Button","version":0},"@btn-dashed-color-text\_success\_hover":{"key":"@btn-dashed-color-text\_success\_hover","value":"@color-success-5","component":"Button","version":0},"@btn-primary-color-border\_active":{"key":"@btn-primary-color-border\_active","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-bg\_warning\_active":{"key":"@btn-secondary-color-bg\_warning\_active","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-text\_danger\_hover":{"key":"@btn-secondary-color-text\_danger\_hover","value":"@color-danger-5","component":"Button","version":0},"@btn-text-color-bg\_hover":{"key":"@btn-text-color-bg\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-text\_danger":{"key":"@btn-dashed-color-text\_danger","value":"@color-danger-6","component":"Button","version":0},"@btn-text-color-text\_active":{"key":"@btn-text-color-text\_active","value":"@color-primary-7","component":"Button","version":0},"@btn-dashed-color-border\_success\_hover":{"key":"@btn-dashed-color-border\_success\_hover","value":"@color-success-5","component":"Button","version":0},"@btn-dashed-color-bg\_warning":{"key":"@btn-dashed-color-bg\_warning","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-bg\_danger\_hover":{"key":"@btn-dashed-color-bg\_danger\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-text-color-text\_hover":{"key":"@btn-text-color-text\_hover","value":"@color-primary-5","component":"Button","version":0},"@btn-secondary-color-border\_warning\_hover":{"key":"@btn-secondary-color-border\_warning\_hover","value":"@color-warning-5","component":"Button","version":0},"@btn-secondary-color-border\_danger":{"key":"@btn-secondary-color-border\_danger","value":"@color-danger-6","component":"Button","version":0},"@btn-secondary-color-border\_danger\_active":{"key":"@btn-secondary-color-border\_danger\_active","value":"@color-danger-7","component":"Button","version":0},"@btn-secondary-color-bg\_success\_active":{"key":"@btn-secondary-color-bg\_success\_active","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-border\_success\_hover":{"key":"@btn-secondary-color-border\_success\_hover","value":"@color-success-5","component":"Button","version":0},"@btn-secondary-color-bg\_warning\_hover":{"key":"@btn-secondary-color-bg\_warning\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-text-color-text\_danger\_hover":{"key":"@btn-text-color-text\_danger\_hover","value":"@color-danger-5","component":"Button","version":0},"@btn-text-color-bg\_danger\_hover":{"key":"@btn-text-color-bg\_danger\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-text\_danger\_active":{"key":"@btn-dashed-color-text\_danger\_active","value":"@color-danger-7","component":"Button","version":0},"@btn-dashed-color-border\_danger\_active":{"key":"@btn-dashed-color-border\_danger\_active","value":"var(--color-danger-light-4)","component":"Button","version":0},"@btn-dashed-color-bg\_danger":{"key":"@btn-dashed-color-bg\_danger","value":"@color-transparent","component":"Button","version":0},"@btn-text-color-text\_success\_active":{"key":"@btn-text-color-text\_success\_active","value":"@color-success-7","component":"Button","version":0},"@btn-dashed-color-text\_danger\_hover":{"key":"@btn-dashed-color-text\_danger\_hover","value":"@color-danger-5","component":"Button","version":0},"@btn-dashed-color-border\_warning\_hover":{"key":"@btn-dashed-color-border\_warning\_hover","value":"@color-warning-5","component":"Button","version":0},"@btn-dashed-color-border\_success":{"key":"@btn-dashed-color-border\_success","value":"@color-success-6","component":"Button","version":0},"@btn-dashed-color-bg\_hover":{"key":"@btn-dashed-color-bg\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-text-color-bg\_active":{"key":"@btn-text-color-bg\_active","value":"@color-transparent","component":"Button","version":0},"@btn-text-color-text\_warning\_hover":{"key":"@btn-text-color-text\_warning\_hover","value":"@color-warning-5","component":"Button","version":0},"@btn-primary-color-border\_disabled":{"key":"@btn-primary-color-border\_disabled","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-bg\_danger\_active":{"key":"@btn-dashed-color-bg\_danger\_active","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-border\_hover":{"key":"@btn-dashed-color-border\_hover","value":"@color-primary-6","component":"Button","version":0},"@btn-dashed-color-bg\_success\_hover":{"key":"@btn-dashed-color-bg\_success\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-bg\_warning\_active":{"key":"@btn-dashed-color-bg\_warning\_active","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-text\_active":{"key":"@btn-dashed-color-text\_active","value":"@color-primary-7","component":"Button","version":0},"@btn-secondary-color-border\_warning":{"key":"@btn-secondary-color-border\_warning","value":"var(--color-warning-light-4)","component":"Button","version":0},"@btn-secondary-color-border\_warning\_disabled":{"key":"@btn-secondary-color-border\_warning\_disabled","value":"var(--color-warning-light-3)","component":"Button","version":0},"@btn-secondary-color-border\_warning\_active":{"key":"@btn-secondary-color-border\_warning\_active","value":"@color-warning-7","component":"Button","version":0},"@btn-secondary-color-bg\_success":{"key":"@btn-secondary-color-bg\_success","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-border\_success\_active":{"key":"@btn-secondary-color-border\_success\_active","value":"@color-success-7","component":"Button","version":0},"@btn-dashed-color-border\_active":{"key":"@btn-dashed-color-border\_active","value":"@color-primary-7","component":"Button","version":0},"@btn-dashed-color-text\_warning\_active":{"key":"@btn-dashed-color-text\_warning\_active","value":"@color-warning-7","component":"Button","version":0},"@btn-dashed-color-bg\_success\_active":{"key":"@btn-dashed-color-bg\_success\_active","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-bg\_success":{"key":"@btn-dashed-color-bg\_success","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-border\_success\_active":{"key":"@btn-dashed-color-border\_success\_active","value":"@color-success-7","component":"Button","version":0},"@btn-text-color-text\_danger\_active":{"key":"@btn-text-color-text\_danger\_active","value":"@color-danger-7","component":"Button","version":0},"@btn-dashed-color-border\_warning\_active":{"key":"@btn-dashed-color-border\_warning\_active","value":"@color-warning-7","component":"Button","version":0},"@btn-dashed-color-bg":{"key":"@btn-dashed-color-bg","value":"@color-transparent","component":"Button","version":0},"@btn-text-color-bg\_warning\_active":{"key":"@btn-text-color-bg\_warning\_active","value":"@color-transparent","component":"Button","version":0},"@btn-text-color-bg\_success\_hover":{"key":"@btn-text-color-bg\_success\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-border\_danger":{"key":"@btn-dashed-color-border\_danger","value":"@color-danger-6","component":"Button","version":0},"@btn-secondary-color-text\_warning\_hover":{"key":"@btn-secondary-color-text\_warning\_hover","value":"@color-warning-5","component":"Button","version":0},"@btn-primary-color-border":{"key":"@btn-primary-color-border","value":"@color-transparent","component":"Button","version":0},"@btn-secondary-color-text\_success\_hover":{"key":"@btn-secondary-color-text\_success\_hover","value":"@color-success-5","component":"Button","version":0},"@btn-secondary-color-bg\_danger\_disabled":{"key":"@btn-secondary-color-bg\_danger\_disabled","value":"var(--color-danger-light-1)","component":"Button","version":0},"@btn-dashed-color-text\_hover":{"key":"@btn-dashed-color-text\_hover","value":"@color-primary-6","component":"Button","version":0},"@btn-text-color-text\_warning\_active":{"key":"@btn-text-color-text\_warning\_active","value":"@color-warning-7","component":"Button","version":0},"@btn-text-color-text\_success\_hover":{"key":"@btn-text-color-text\_success\_hover","value":"@color-success-5","component":"Button","version":0},"@btn-dashed-color-bg\_warning\_hover":{"key":"@btn-dashed-color-bg\_warning\_hover","value":"@color-transparent","component":"Button","version":0},"@btn-dashed-color-border\_danger\_hover":{"key":"@btn-dashed-color-border\_danger\_hover","value":"@color-danger-5","component":"Button","version":0},"@btn-text-color-bg\_warning\_hover":{"key":"@btn-text-color-bg\_warning\_hover","value":"@color-transparent","component":"Button","version":0},"@input-color-bg":{"key":"@input-color-bg","value":"var(--color-bg-1)","component":"Input","version":0},"@input-color-bg\_focus":{"key":"@input-color-bg\_focus","value":"var(--color-bg-2)","component":"Input","version":0},"@input-color-bg\_error\_hover":{"key":"@input-color-bg\_error\_hover","value":"var(--color-bg-2)","component":"Input","version":0},"@input-color-border":{"key":"@input-color-border","value":"@color-border-2","component":"Input","version":0},"@input-color-border\_disabled":{"key":"@input-color-border\_disabled","value":"@color-border-2","component":"Input","version":0},"@input-color-shadow\_error\_focus":{"key":"@input-color-shadow\_error\_focus","value":"@color-danger-2","component":"Input","version":0},"@input-color-shadow\_focus":{"key":"@input-color-shadow\_focus","value":"@color-primary-2","component":"Input","version":0},"@input-color-border\_error\_hover":{"key":"@input-color-border\_error\_hover","value":"@danger-7","component":"Input","version":0},"@input-color-bg\_hover":{"key":"@input-color-bg\_hover","value":"var(--color-bg-2)","component":"Input","version":0},"@input-color-border\_error":{"key":"@input-color-border\_error","value":"@color-danger-6","component":"Input","version":0},"@input-color-bg\_disabled":{"key":"@input-color-bg\_disabled","value":"var(--color-fill-2)","component":"Input","version":0},"@input-color-bg\_error":{"key":"@input-color-bg\_error","value":"@color-transparent","component":"Input","version":0},"@search-size-icon":{"key":"@search-size-icon","value":"12px","component":"Input","version":0},"@input-color-border\_hover":{"key":"@input-color-border\_hover","value":"@primary-7","component":"Input","version":0},"@input-color-addon-bg":{"key":"@input-color-addon-bg","value":"@color-fill-2","component":"Input","version":0},"@input-size-default-font-size":{"key":"@input-size-default-font-size","value":"14px","component":"Input","version":0},"@input-color-prefix-text":{"key":"@input-color-prefix-text","value":"@color-text-2","component":"Input","version":0},"@input-color-addon-border\_default":{"key":"@input-color-addon-border\_default","value":"@color-border-2","component":"Input","version":0},"@input-group-color-separator-border":{"key":"@input-group-color-separator-border","value":"@color-border-1","component":"Input","version":0},"@search-color-icon":{"key":"@search-color-icon","value":"@color-text-2","component":"Input","version":0},"@input-color-addon-border":{"key":"@input-color-addon-border","value":"@color-transparent","component":"Input","version":0},"@input-color-text":{"key":"@input-color-text","value":"@color-text-1","component":"Input","version":0},"@input-border-addon-separator-width":{"key":"@input-border-addon-separator-width","value":"0","component":"Input","version":0},"@input-size-large-font-size":{"key":"@input-size-large-font-size","value":"13px","component":"Input","version":0},"@input-border-radius":{"key":"@input-border-radius","value":"2px","component":"Input","version":0},"@input-color-tip-text":{"key":"@input-color-tip-text","value":"@color-text-3","component":"Input","version":0},"@password-color-eye-icon":{"key":"@password-color-eye-icon","value":"@color-text-3","component":"Input","version":0},"@input-group-border-separator-width":{"key":"@input-group-border-separator-width","value":"1px","component":"Input","version":0},"@input-size-mini-icon-suffix-size":{"key":"@input-size-mini-icon-suffix-size","value":"12px","component":"Input","version":0},"@input-size-shadow\_focus":{"key":"@input-size-shadow\_focus","value":"@shadow-distance-2","component":"Input","version":0},"@input-color-border\_focus":{"key":"@input-color-border\_focus","value":"@primary-6","component":"Input","version":0},"@input-size-shadow\_error\_focus":{"key":"@input-size-shadow\_error\_focus","value":"@shadow-distance-2","component":"Input","version":0},"@input-group-border-radius\_compact":{"key":"@input-group-border-radius\_compact","value":"2px","component":"Input","version":0},"@input-size-mini-height":{"key":"@input-size-mini-height","value":"@size-6","component":"Input","version":0},"@input-size-default-height":{"key":"@input-size-default-height","value":"@size-8","component":"Input","version":3},"@select-popup-group-title-font-size":{"key":"@select-popup-group-title-font-size","value":"14px","component":"Select","version":0},"@select-color-bg\_error":{"key":"@select-color-bg\_error","value":"var(--color-bg-1)","component":"Select","version":0},"@select-popup-group-title-height":{"key":"@select-popup-group-title-height","value":"24px","component":"Select","version":0},"@select-color-border\_error":{"key":"@select-color-border\_error","value":"@color-danger-6","component":"Select","version":0},"@select-color-border\_default":{"key":"@select-color-border\_default","value":"@color-border-2","component":"Select","version":0},"@select-shadow-distance\_error\_focus":{"key":"@select-shadow-distance\_error\_focus","value":"2px","component":"Select","version":0},"@select-color-bg\_default":{"key":"@select-color-bg\_default","value":"var(--color-bg-1)","component":"Select","version":0},"@select-color-border\_disabled":{"key":"@select-color-border\_disabled","value":"@color-border-2","component":"Select","version":0},"@select-popup-group-title-padding-top":{"key":"@select-popup-group-title-padding-top","value":"8px","component":"Select","version":0},"@select-color-bg\_default\_hover":{"key":"@select-color-bg\_default\_hover","value":"@color-transparent","component":"Select","version":0},"@select-shadow-distance\_default\_focus":{"key":"@select-shadow-distance\_default\_focus","value":"2px","component":"Select","version":0},"@select-color-bg\_error\_hover":{"key":"@select-color-bg\_error\_hover","value":"@color-transparent","component":"Select","version":0},"@select-popup-option-height":{"key":"@select-popup-option-height","value":"40px","component":"Select","version":0},"@select-popup-option-color-bg\_default":{"key":"@select-popup-option-color-bg\_default","value":"var(--color-bg-3)","component":"Select","version":0},"@select-color-border\_default\_hover":{"key":"@select-color-border\_default\_hover","value":"@color-primary-6","component":"Select","version":0},"@select-color-border\_error\_hover":{"key":"@select-color-border\_error\_hover","value":"@color-danger-7","component":"Select","version":0},"@checkbox-mask-border-width":{"key":"@checkbox-mask-border-width","value":"@border-1","component":"Checkbox","version":0},"@checkbox-mask-height":{"key":"@checkbox-mask-height","value":"@size-4","component":"Checkbox","version":0},"@checkbox-mask-color-border\_hover":{"key":"@checkbox-mask-color-border\_hover","value":"@color-primary-6","component":"Checkbox","version":0},"@checkbox-mask-bg-color-bg":{"key":"@checkbox-mask-bg-color-bg","value":"@color-transparent","component":"Checkbox","version":0},"@radio-border-width":{"key":"@radio-border-width","value":"@border-1","component":"Radio","version":0},"@radio-layout-height":{"key":"@radio-layout-height","value":"@size-4","component":"Radio","version":0},"@radio-mask-bg-color-bg":{"key":"@radio-mask-bg-color-bg","value":"@color-transparent","component":"Radio","version":0},"@radio-color-border\_hover":{"key":"@radio-color-border\_hover","value":"@color-primary-6","component":"Radio","version":0},"@picker-color-bg":{"key":"@picker-color-bg","value":"@color-transparent","component":"DatePicker","version":0},"@picker-color-border":{"key":"@picker-color-border","value":"@color-border-2","component":"DatePicker","version":0},"@picker-color-border\_hover":{"key":"@picker-color-border\_hover","value":"var(--color-border-3)","component":"DatePicker","version":0},"@picker-color-bg\_hover":{"key":"@picker-color-bg\_hover","value":"@color-transparent","component":"DatePicker","version":0},"@picker-size-shadow\_focus":{"key":"@picker-size-shadow\_focus","value":"@shadow-distance-2","component":"DatePicker","version":0},"@picker-color-border\_disabled":{"key":"@picker-color-border\_disabled","value":"@color-border-2","component":"DatePicker","version":0},"@font-family":{"key":"@font-family","value":"Inter, Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif","component":"Font","version":4},"@border-1":{"key":"@border-1","value":"1px","component":"borderWidth","version":5},"@border-2":{"key":"@border-2","value":"2px","component":"borderWidth","version":1},"@size-7":{"key":"@size-7","value":"28px","component":"Size","version":4},"@size-2":{"key":"@size-2","value":"8px","component":"Size","version":4},"@size-14":{"key":"@size-14","value":"56px","component":"Size","version":4},"@size-22":{"key":"@size-22","value":"88px","component":"Size","version":4},"@size-25":{"key":"@size-25","value":"100px","component":"Size","version":4},"@size-43":{"key":"@size-43","value":"172px","component":"Size","version":4},"@size-1":{"key":"@size-1","value":"4px","component":"Size","version":4},"@size-5":{"key":"@size-5","value":"20px","component":"Size","version":4},"@size-8":{"key":"@size-8","value":"32px","component":"Size","version":4},"@size-9":{"key":"@size-9","value":"36px","component":"Size","version":4},"@size-11":{"key":"@size-11","value":"44px","component":"Size","version":4},"@size-10":{"key":"@size-10","value":"40px","component":"Size","version":4},"@size-13":{"key":"@size-13","value":"52px","component":"Size","version":4},"@size-12":{"key":"@size-12","value":"48px","component":"Size","version":4},"@size-30":{"key":"@size-30","value":"120px","component":"Size","version":4},"@size-17":{"key":"@size-17","value":"68px","component":"Size","version":4},"@size-37":{"key":"@size-37","value":"148px","component":"Size","version":4},"@size-39":{"key":"@size-39","value":"156px","component":"Size","version":4},"@size-4":{"key":"@size-4","value":"16px","component":"Size","version":4},"@size-50":{"key":"@size-50","value":"200px","component":"Size","version":4},"@size-3":{"key":"@size-3","value":"12px","component":"Size","version":4},"@size-6":{"key":"@size-6","value":"24px","component":"Size","version":4},"@size-23":{"key":"@size-23","value":"92px","component":"Size","version":4},"@size-32":{"key":"@size-32","value":"128px","component":"Size","version":4},"@size-40":{"key":"@size-40","value":"160px","component":"Size","version":4},"@size-18":{"key":"@size-18","value":"72px","component":"Size","version":4},"@size-41":{"key":"@size-41","value":"164px","component":"Size","version":4},"@size-19":{"key":"@size-19","value":"76px","component":"Size","version":4},"@size-20":{"key":"@size-20","value":"80px","component":"Size","version":4},"@size-21":{"key":"@size-21","value":"84px","component":"Size","version":4},"@size-33":{"key":"@size-33","value":"132px","component":"Size","version":4},"@size-36":{"key":"@size-36","value":"144px","component":"Size","version":4},"@size-24":{"key":"@size-24","value":"96px","component":"Size","version":4},"@size-15":{"key":"@size-15","value":"60px","component":"Size","version":4},"@size-28":{"key":"@size-28","value":"112px","component":"Size","version":4},"@size-26":{"key":"@size-26","value":"104px","component":"Size","version":4},"@size-27":{"key":"@size-27","value":"108px","component":"Size","version":4},"@size-16":{"key":"@size-16","value":"64px","component":"Size","version":4},"@size-49":{"key":"@size-49","value":"196px","component":"Size","version":4},"@size-29":{"key":"@size-29","value":"116px","component":"Size","version":4},"@size-31":{"key":"@size-31","value":"124px","component":"Size","version":4},"@size-34":{"key":"@size-34","value":"136px","component":"Size","version":4},"@size-45":{"key":"@size-45","value":"180px","component":"Size","version":4},"@size-47":{"key":"@size-47","value":"188px","component":"Size","version":4},"@size-35":{"key":"@size-35","value":"140px","component":"Size","version":4},"@size-38":{"key":"@size-38","value":"152px","component":"Size","version":4},"@size-42":{"key":"@size-42","value":"168px","component":"Size","version":4},"@size-44":{"key":"@size-44","value":"176px","component":"Size","version":4},"@size-46":{"key":"@size-46","value":"184px","component":"Size","version":4},"@size-48":{"key":"@size-48","value":"192px","component":"Size","version":4},"@danger-4":{"key":"@danger-4","value":"rgb(249, 137, 129)","component":"Color","version":1},"@dark-danger-3":{"key":"@dark-danger-3","value":"rgb(161, 22, 31)","component":"Color","version":1},"@danger-5":{"key":"@danger-5","value":"rgb(247, 101, 96)","component":"Color","version":1},"@dark-danger-1":{"key":"@dark-danger-1","value":"rgb(77, 0, 10)","component":"Color","version":1},"@danger-1":{"key":"@danger-1","value":"rgb(255, 236, 232)","component":"Color","version":1},"@danger-3":{"key":"@danger-3","value":"rgb(251, 172, 163)","component":"Color","version":1},"@dark-danger-4":{"key":"@dark-danger-4","value":"rgb(203, 46, 52)","component":"Color","version":1},"@danger-2":{"key":"@danger-2","value":"rgb(253, 205, 197)","component":"Color","version":1},"@dark-danger-5":{"key":"@dark-danger-5","value":"rgb(245, 78, 78)","component":"Color","version":1},"@dark-danger-2":{"key":"@dark-danger-2","value":"rgb(119, 6, 17)","component":"Color","version":1},"@danger-9":{"key":"@danger-9","value":"rgb(119, 8, 19)","component":"Color","version":1},"@danger-6":{"key":"@danger-6","value":"rgb(245, 63, 63)","component":"Color","version":1},"@dark-danger-6":{"key":"@dark-danger-6","value":"rgb(247, 105, 101)","component":"Color","version":1},"@dark-danger-7":{"key":"@dark-danger-7","value":"rgb(249, 141, 134)","component":"Color","version":1},"@danger-8":{"key":"@danger-8","value":"rgb(161, 21, 30)","component":"Color","version":1},"@danger-7":{"key":"@danger-7","value":"rgb(203, 39, 45)","component":"Color","version":1},"@danger-10":{"key":"@danger-10","value":"rgb(77, 0, 10)","component":"Color","version":1},"@dark-danger-10":{"key":"@dark-danger-10","value":"rgb(255, 240, 236)","component":"Color","version":1},"@dark-danger-8":{"key":"@dark-danger-8","value":"rgb(251, 176, 167)","component":"Color","version":1},"@dark-danger-9":{"key":"@dark-danger-9","value":"rgb(253, 209, 202)","component":"Color","version":1},"@success-1":{"key":"@success-1","value":"rgb(232, 255, 234)","component":"Color","version":1},"@dark-success-2":{"key":"@dark-success-2","value":"rgb(4, 102, 37)","component":"Color","version":1},"@dark-success-1":{"key":"@dark-success-1","value":"rgb(0, 77, 28)","component":"Color","version":1},"@success-2":{"key":"@success-2","value":"rgb(175, 240, 181)","component":"Color","version":1},"@success-6":{"key":"@success-6","value":"rgb(0, 180, 42)","component":"Color","version":1},"@dark-success-7":{"key":"@dark-success-7","value":"rgb(80, 210, 102)","component":"Color","version":1},"@dark-success-6":{"key":"@dark-success-6","value":"rgb(39, 195, 70)","component":"Color","version":1},"@success-8":{"key":"@success-8","value":"rgb(0, 128, 38)","component":"Color","version":1},"@success-7":{"key":"@success-7","value":"rgb(0, 154, 41)","component":"Color","version":1},"@dark-success-3":{"key":"@dark-success-3","value":"rgb(10, 128, 45)","component":"Color","version":1},"@success-9":{"key":"@success-9","value":"rgb(0, 102, 34)","component":"Color","version":1},"@success-3":{"key":"@success-3","value":"rgb(123, 225, 136)","component":"Color","version":1},"@dark-success-8":{"key":"@dark-success-8","value":"rgb(126, 225, 139)","component":"Color","version":1},"@dark-success-10":{"key":"@dark-success-10","value":"rgb(235, 255, 236)","component":"Color","version":1},"@success-4":{"key":"@success-4","value":"rgb(76, 210, 99)","component":"Color","version":1},"@dark-success-4":{"key":"@dark-success-4","value":"rgb(18, 154, 55)","component":"Color","version":1},"@success-5":{"key":"@success-5","value":"rgb(35, 195, 67)","component":"Color","version":1},"@dark-success-5":{"key":"@dark-success-5","value":"rgb(29, 180, 64)","component":"Color","version":1},"@dark-success-9":{"key":"@dark-success-9","value":"rgb(178, 240, 183)","component":"Color","version":1},"@success-10":{"key":"@success-10","value":"rgb(0, 77, 28)","component":"Color","version":1},"@link-2":{"key":"@link-2","value":"rgb(var(--arcoblue-2))","component":"Color","version":6},"@link-8":{"key":"@link-8","value":"rgb(var(--arcoblue-8))","component":"Color","version":6},"@dark-link-7":{"key":"@dark-link-7","value":"rgb(var(--arcoblue-7))","component":"Color","version":6},"@dark-link-4":{"key":"@dark-link-4","value":"rgb(var(--arcoblue-4))","component":"Color","version":6},"@link-5":{"key":"@link-5","value":"rgb(var(--arcoblue-5))","component":"Color","version":6},"@link-7":{"key":"@link-7","value":"rgb(var(--arcoblue-7))","component":"Color","version":6},"@link-1":{"key":"@link-1","value":"rgb(var(--arcoblue-1))","component":"Color","version":6},"@link-4":{"key":"@link-4","value":"rgb(var(--arcoblue-4))","component":"Color","version":6},"@dark-link-1":{"key":"@dark-link-1","value":"rgb(var(--arcoblue-1))","component":"Color","version":6},"@link-10":{"key":"@link-10","value":"rgb(var(--arcoblue-10))","component":"Color","version":6},"@link-6":{"key":"@link-6","value":"rgb(var(--arcoblue-6))","component":"Color","version":6},"@dark-link-10":{"key":"@dark-link-10","value":"rgb(var(--arcoblue-10))","component":"Color","version":6},"@dark-link-5":{"key":"@dark-link-5","value":"rgb(var(--arcoblue-5))","component":"Color","version":6},"@dark-link-3":{"key":"@dark-link-3","value":"rgb(var(--arcoblue-3))","component":"Color","version":6},"@link-9":{"key":"@link-9","value":"rgb(var(--arcoblue-9))","component":"Color","version":6},"@dark-link-8":{"key":"@dark-link-8","value":"rgb(var(--arcoblue-8))","component":"Color","version":6},"@dark-link-6":{"key":"@dark-link-6","value":"rgb(var(--arcoblue-6))","component":"Color","version":6},"@dark-link-2":{"key":"@dark-link-2","value":"rgb(var(--arcoblue-2))","component":"Color","version":6},"@link-3":{"key":"@link-3","value":"rgb(var(--arcoblue-3))","component":"Color","version":6},"@dark-link-9":{"key":"@dark-link-9","value":"rgb(var(--arcoblue-9))","component":"Color","version":6},"@table-size-default-padding-horizontal":{"key":"@table-size-default-padding-horizontal","value":"@spacing-7","component":"Table","version":2},"@table-size-default-padding-vertical":{"key":"@table-size-default-padding-vertical","value":"@spacing-9","component":"Table","version":2},"@table-size-middle-padding-vertical":{"key":"@table-size-middle-padding-vertical","value":"@spacing-8","component":"Table","version":1},"@table-size-small-padding-vertical":{"key":"@table-size-small-padding-vertical","value":"@spacing-7","component":"Table","version":1},"@table-size-mini-padding-vertical":{"key":"@table-size-mini-padding-vertical","value":"@spacing-6","component":"Table","version":1},"@upload-picture-item-size-width":{"key":"@upload-picture-item-size-width","value":"@size-17","component":"Upload","version":2},"@upload-picture-item-border-radius":{"key":"@upload-picture-item-border-radius","value":"@border-radius-large","component":"Upload","version":1},"@upload-picture-item-margin-right":{"key":"@upload-picture-item-margin-right","value":"@spacing-none","component":"Upload","version":2},"@upload-picture-item-margin-bottom":{"key":"@upload-picture-item-margin-bottom","value":"@spacing-none","component":"Upload","version":1},"@upload-picture-item-color-operation\_bg":{"key":"@upload-picture-item-color-operation\_bg","value":"rgba(44,35,35,0.5)","component":"Upload","version":2},"@upload-picture-item-color-operation-icon":{"key":"@upload-picture-item-color-operation-icon","value":"@color-primary-7","component":"Upload","version":1},"@upload-picture-item-margin-preview-icon-right":{"key":"@upload-picture-item-margin-preview-icon-right","value":"@spacing-none","component":"Upload","version":2},"@upload-picture-item-size-operation-icon":{"key":"@upload-picture-item-size-operation-icon","value":"@size-5","component":"Upload","version":2},"@upload-picture-item-color-error-icon":{"key":"@upload-picture-item-color-error-icon","value":"@color-primary-6","component":"Upload","version":1},"@upload-picture-item-size-error-icon":{"key":"@upload-picture-item-size-error-icon","value":"@size-4","component":"Upload","version":1},"@btn-border-radius":{"key":"@btn-border-radius","value":"@border-radius-large","component":"Button","version":8},"@drawer-padding-horizontal":{"key":"@drawer-padding-horizontal","value":"@spacing-none","component":"Drawer","version":1},"@btn-border-width":{"key":"@btn-border-width","value":"@border-1","component":"Button","version":2},"@empty-spacing-padding":{"key":"@empty-spacing-padding","value":"@spacing-21","component":"Empty","version":4}},"user":{"login":"15810879921-coder","id":275892898,"node\_id":"U\_kgDOEHHKog","avatar\_url":"https://avatars.githubusercontent.com/u/275892898?v=4","gravatar\_id":"","url":"https://api.github.com/users/15810879921-coder","html\_url":"https://github.com/15810879921-coder","followers\_url":"https://api.github.com/users/15810879921-coder/followers","following\_url":"https://api.github.com/users/15810879921-coder/following{/other\_user}","gists\_url":"https://api.github.com/users/15810879921-coder/gists{/gist\_id}","starred\_url":"https://api.github.com/users/15810879921-coder/starred{/owner}{/repo}","subscriptions\_url":"https://api.github.com/users/15810879921-coder/subscriptions","organizations\_url":"https://api.github.com/users/15810879921-coder/orgs","repos\_url":"https://api.github.com/users/15810879921-coder/repos","events\_url":"https://api.github.com/users/15810879921-coder/events{/privacy}","received\_events\_url":"https://api.github.com/users/15810879921-coder/received\_events","type":"User","user\_view\_type":"public","site\_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter\_username":null,"notification\_email":null,"public\_repos":0,"public\_gists":0,"followers":0,"following":0,"created\_at":"2026-04-14T05:14:43Z","updated\_at":"2026-04-14T05:14:43Z","picture":"https://avatars.githubusercontent.com/u/275892898?v=4","username":"15810879921-coder","nickname":null,"accountType":"github"},"themeId":"544"} + +![logo](//p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/6ebcd67e7b174de397e864daaad96047~tplv-uwbnlip3yd-image.image)线性主题主题预览 + +0.0.3 + +切换暗黑模式 + +![](https://avatars.githubusercontent.com/u/23161413?v=4) + +![](https://avatars.githubusercontent.com/u/19399269?v=4) + +![](https://avatars.githubusercontent.com/u/23137528?v=4) + +![](https://avatars.githubusercontent.com/u/29793175?v=4) + +简体中文 + +[帮助文档](/docs/designlab/guideline) + +71 + +126 + +查看配置详情 + +复制主题 \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/index.json b/AI-Arco-Design-Themes-complete/flat/index.json new file mode 100644 index 0000000..9053ddb --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/index.json @@ -0,0 +1,311 @@ +{ + "byRole": { + "header": [ + "n11", + "n67" + ], + "section": [ + "n70" + ] + }, + "byTag": { + "a": [ + "n2", + "n41" + ], + "body": [ + "n77" + ], + "button": [ + "n45", + "n50", + "n56", + "n60", + "n76" + ], + "div": [ + "n7", + "n9", + "n10", + "n11", + "n14", + "n17", + "n20", + "n23", + "n26", + "n29", + "n30", + "n31", + "n36", + "n37", + "n38", + "n39", + "n40", + "n42", + "n46", + "n47", + "n51", + "n52", + "n53", + "n57", + "n63", + "n64", + "n65", + "n66", + "n69", + "n71", + "n72", + "n73", + "n74" + ], + "header": [ + "n67" + ], + "iframe": [ + "n68" + ], + "img": [ + "n3", + "n15", + "n18", + "n21", + "n24", + "n27" + ], + "input": [ + "n32" + ], + "root": [ + "n78" + ], + "section": [ + "n70" + ], + "span": [ + "n4", + "n5", + "n6", + "n13", + "n16", + "n19", + "n22", + "n25", + "n28", + "n33", + "n34", + "n44", + "n49", + "n55", + "n59", + "n61", + "n62" + ], + "svg": [ + "n1", + "n8", + "n12", + "n35", + "n43", + "n48", + "n54", + "n58", + "n75" + ] + }, + "interactive": [ + "n2", + "n32", + "n41", + "n45", + "n50", + "n56", + "n60", + "n76" + ], + "styleUsage": { + "style_1": [ + "n2" + ], + "style_10": [ + "n14", + "n31", + "n42" + ], + "style_11": [ + "n15", + "n18", + "n21", + "n24", + "n27" + ], + "style_12": [ + "n16", + "n19", + "n22", + "n25", + "n28" + ], + "style_13": [ + "n17" + ], + "style_14": [ + "n20", + "n23", + "n26", + "n29" + ], + "style_15": [ + "n30" + ], + "style_16": [ + "n32" + ], + "style_17": [ + "n33" + ], + "style_18": [ + "n34" + ], + "style_19": [ + "n36" + ], + "style_2": [ + "n3" + ], + "style_20": [ + "n37" + ], + "style_21": [ + "n38" + ], + "style_22": [ + "n39" + ], + "style_23": [ + "n40", + "n52", + "n63" + ], + "style_24": [ + "n41" + ], + "style_25": [ + "n44", + "n49" + ], + "style_26": [ + "n45", + "n50" + ], + "style_27": [ + "n46", + "n51" + ], + "style_28": [ + "n47" + ], + "style_29": [ + "n53" + ], + "style_3": [ + "n4" + ], + "style_30": [ + "n55" + ], + "style_31": [ + "n56" + ], + "style_32": [ + "n57" + ], + "style_33": [ + "n59" + ], + "style_34": [ + "n60" + ], + "style_35": [ + "n61", + "n62" + ], + "style_36": [ + "n65" + ], + "style_37": [ + "n66" + ], + "style_38": [ + "n67" + ], + "style_39": [ + "n68" + ], + "style_4": [ + "n5" + ], + "style_40": [ + "n69" + ], + "style_41": [ + "n70" + ], + "style_42": [ + "n71", + "n72", + "n73", + "n74" + ], + "style_43": [ + "n76" + ], + "style_44": [ + "n77" + ], + "style_5": [ + "n6" + ], + "style_6": [ + "n7" + ], + "style_7": [ + "n9", + "n11", + "n64" + ], + "style_8": [ + "n10" + ], + "style_9": [ + "n13" + ] + }, + "withImage": [ + "n1", + "n3", + "n8", + "n12", + "n15", + "n18", + "n21", + "n24", + "n27", + "n35", + "n43", + "n48", + "n54", + "n58", + "n75" + ], + "withText": [ + "n5", + "n6", + "n13", + "n33", + "n41", + "n44", + "n49", + "n55", + "n59" + ] +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n1.json b/AI-Arco-Design-Themes-complete/flat/nodes/n1.json new file mode 100644 index 0000000..a56e8e0 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n1.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 24, + "left": 58, + "top": 18, + "width": 24 + }, + "nodeId": "n1", + "originalClass": "[object SVGAnimatedString]", + "selector": "span.style-logo-NxwZ7", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n10.json b/AI-Arco-Design-Themes-complete/flat/nodes/n10.json new file mode 100644 index 0000000..c79fcfc --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n10.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 26, + "left": 1019, + "top": 17, + "width": 104 + }, + "height": "12px", + "nodeId": "n10", + "originalClass": "arco-divider arco-divider-vertical", + "selector": "div.arco-avatar-group", + "styleId": "style_8", + "tag": "div", + "width": "1px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n11.json b/AI-Arco-Design-Themes-complete/flat/nodes/n11.json new file mode 100644 index 0000000..54e7bed --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n11.json @@ -0,0 +1,20 @@ +{ + "bbox": { + "height": 30, + "left": 58, + "top": 15, + "width": 263 + }, + "children": [ + "n2", + "n9", + "n10" + ], + "height": "30px", + "nodeId": "n11", + "originalClass": "style-nav-header-x_NEb", + "selector": "div.arco-row.arco-row-align-center", + "styleId": "style_7", + "tag": "div", + "width": "330.898px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n12.json b/AI-Arco-Design-Themes-complete/flat/nodes/n12.json new file mode 100644 index 0000000..4c7f5f8 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n12.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 22, + "left": 1021, + "top": 19, + "width": 22 + }, + "nodeId": "n12", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(1) > span.arco-avatar-image > img", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n13.json b/AI-Arco-Design-Themes-complete/flat/nodes/n13.json new file mode 100644 index 0000000..f61c3c1 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n13.json @@ -0,0 +1,20 @@ +{ + "_innerHTML": "切换暗黑模式", + "bbox": { + "height": 22, + "left": 1021, + "top": 19, + "width": 22 + }, + "children": [ + "n12" + ], + "height": "24px", + "nodeId": "n13", + "originalClass": "style-nav-actions-theme-1iwj- guide-theme-toggle", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(1) > span.arco-avatar-image", + "styleId": "style_9", + "tag": "span", + "text": "切换暗黑模式", + "width": "99px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n14.json b/AI-Arco-Design-Themes-complete/flat/nodes/n14.json new file mode 100644 index 0000000..714e991 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n14.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 26, + "left": 1039, + "top": 17, + "width": 26 + }, + "height": "12px", + "nodeId": "n14", + "originalClass": "arco-divider arco-divider-vertical", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(2)", + "styleId": "style_10", + "tag": "div", + "width": "1px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n15.json b/AI-Arco-Design-Themes-complete/flat/nodes/n15.json new file mode 100644 index 0000000..6ba64f8 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n15.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 22, + "left": 1041, + "top": 19, + "width": 22 + }, + "height": "22px", + "nodeId": "n15", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(2) > span.arco-avatar-image > img", + "styleId": "style_11", + "tag": "img", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n16.json b/AI-Arco-Design-Themes-complete/flat/nodes/n16.json new file mode 100644 index 0000000..aa3dce9 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n16.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1060, + "top": 19, + "width": 22 + }, + "children": [ + "n15" + ], + "height": "22px", + "nodeId": "n16", + "originalClass": "arco-avatar-image", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(3) > span.arco-avatar-image", + "styleId": "style_12", + "tag": "span", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n17.json b/AI-Arco-Design-Themes-complete/flat/nodes/n17.json new file mode 100644 index 0000000..aaa2212 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n17.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1041, + "top": 19, + "width": 22 + }, + "children": [ + "n16" + ], + "height": "26px", + "nodeId": "n17", + "originalClass": "arco-avatar arco-avatar-circle", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(2) > span.arco-avatar-image", + "styleId": "style_13", + "tag": "div", + "width": "26px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n18.json b/AI-Arco-Design-Themes-complete/flat/nodes/n18.json new file mode 100644 index 0000000..6f6869e --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n18.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 22, + "left": 1060, + "top": 19, + "width": 22 + }, + "height": "22px", + "nodeId": "n18", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(3) > span.arco-avatar-image > img", + "src": "assets/images/2Q==.jpeg", + "styleId": "style_11", + "tag": "img", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n19.json b/AI-Arco-Design-Themes-complete/flat/nodes/n19.json new file mode 100644 index 0000000..c4dfcb6 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n19.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1080, + "top": 19, + "width": 22 + }, + "children": [ + "n18" + ], + "height": "22px", + "nodeId": "n19", + "originalClass": "arco-avatar-image", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(4) > span.arco-avatar-image", + "styleId": "style_12", + "tag": "span", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n2.json b/AI-Arco-Design-Themes-complete/flat/nodes/n2.json new file mode 100644 index 0000000..e65b457 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n2.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 16, + "top": 15, + "width": 30 + }, + "children": [ + "n1" + ], + "height": "20px", + "nodeId": "n2", + "originalClass": "style-nav-back-2Csip", + "selector": "a.style-nav-back-2Csip", + "styleId": "style_1", + "tag": "a", + "width": "20px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n20.json b/AI-Arco-Design-Themes-complete/flat/nodes/n20.json new file mode 100644 index 0000000..1b3ff53 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n20.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 26, + "left": 1078, + "top": 17, + "width": 26 + }, + "children": [ + "n19" + ], + "height": "26px", + "nodeId": "n20", + "originalClass": "arco-avatar arco-avatar-circle", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(4)", + "styleId": "style_14", + "tag": "div", + "width": "26px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n21.json b/AI-Arco-Design-Themes-complete/flat/nodes/n21.json new file mode 100644 index 0000000..e321b82 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n21.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 22, + "left": 1080, + "top": 19, + "width": 22 + }, + "height": "22px", + "nodeId": "n21", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(4) > span.arco-avatar-image > img", + "src": "assets/images/Z.jpeg", + "styleId": "style_11", + "tag": "img", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n22.json b/AI-Arco-Design-Themes-complete/flat/nodes/n22.json new file mode 100644 index 0000000..ba2e039 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n22.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1099, + "top": 19, + "width": 22 + }, + "children": [ + "n21" + ], + "height": "22px", + "nodeId": "n22", + "originalClass": "arco-avatar-image", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(5) > span.arco-avatar-image", + "styleId": "style_12", + "tag": "span", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n23.json b/AI-Arco-Design-Themes-complete/flat/nodes/n23.json new file mode 100644 index 0000000..c2057f0 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n23.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 26, + "left": 1097, + "top": 17, + "width": 26 + }, + "children": [ + "n22" + ], + "height": "26px", + "nodeId": "n23", + "originalClass": "arco-avatar arco-avatar-circle", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(5)", + "styleId": "style_14", + "tag": "div", + "width": "26px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n24.json b/AI-Arco-Design-Themes-complete/flat/nodes/n24.json new file mode 100644 index 0000000..3b1b542 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n24.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 86 + }, + "height": "22px", + "nodeId": "n24", + "selector": "div.style-locale-select-253ti", + "src": "assets/images/08KpJGKtpeCAAAAAElFTkSuQmCC.png", + "styleId": "style_11", + "tag": "img", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n25.json b/AI-Arco-Design-Themes-complete/flat/nodes/n25.json new file mode 100644 index 0000000..8a5c3b2 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n25.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 22, + "left": 1099, + "top": 19, + "width": 22 + }, + "children": [ + "n24" + ], + "height": "22px", + "nodeId": "n25", + "originalClass": "arco-avatar-image", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(5) > span.arco-avatar-image > img", + "styleId": "style_12", + "tag": "span", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n26.json b/AI-Arco-Design-Themes-complete/flat/nodes/n26.json new file mode 100644 index 0000000..005fc42 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n26.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 12, + "left": 1143, + "top": 24, + "width": 2 + }, + "children": [ + "n25" + ], + "height": "26px", + "nodeId": "n26", + "originalClass": "arco-avatar arco-avatar-circle", + "selector": "div.style-nav-actions-3V1E0 > div.arco-divider.arco-divider-vertical:nth-of-type(3)", + "styleId": "style_14", + "tag": "div", + "width": "26px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n27.json b/AI-Arco-Design-Themes-complete/flat/nodes/n27.json new file mode 100644 index 0000000..2e7bc0d --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n27.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 86 + }, + "height": "22px", + "nodeId": "n27", + "selector": "div.arco-select-view", + "src": "assets/images/Z-1.jpeg", + "styleId": "style_11", + "tag": "img", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n28.json b/AI-Arco-Design-Themes-complete/flat/nodes/n28.json new file mode 100644 index 0000000..02b0607 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n28.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 50 + }, + "children": [ + "n27" + ], + "height": "22px", + "nodeId": "n28", + "originalClass": "arco-avatar-image", + "selector": "span.arco-select-view-selector", + "styleId": "style_12", + "tag": "span", + "width": "22px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n29.json b/AI-Arco-Design-Themes-complete/flat/nodes/n29.json new file mode 100644 index 0000000..0a03a4a --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n29.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 86 + }, + "children": [ + "n28" + ], + "height": "26px", + "nodeId": "n29", + "originalClass": "arco-avatar arco-avatar-circle", + "selector": "div.arco-select.arco-select-single", + "styleId": "style_14", + "tag": "div", + "width": "26px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n3.json b/AI-Arco-Design-Themes-complete/flat/nodes/n3.json new file mode 100644 index 0000000..1768bd7 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n3.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 24, + "left": 58, + "top": 18, + "width": 24 + }, + "height": "24px", + "nodeId": "n3", + "selector": "span.style-logo-NxwZ7 > img", + "src": "assets/images/B1bbK4X5L0YBAAAAAElFTkSuQmCC.png", + "styleId": "style_2", + "tag": "img", + "width": "24px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n30.json b/AI-Arco-Design-Themes-complete/flat/nodes/n30.json new file mode 100644 index 0000000..d78dd7c --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n30.json @@ -0,0 +1,22 @@ +{ + "bbox": { + "height": 26, + "left": 1058, + "top": 17, + "width": 26 + }, + "children": [ + "n17", + "n20", + "n23", + "n26", + "n29" + ], + "height": "26px", + "nodeId": "n30", + "originalClass": "arco-avatar-group", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(3)", + "styleId": "style_15", + "tag": "div", + "width": "104px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n31.json b/AI-Arco-Design-Themes-complete/flat/nodes/n31.json new file mode 100644 index 0000000..1ff89fb --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n31.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 32, + "left": 1219, + "top": 14, + "width": 12 + }, + "height": "12px", + "nodeId": "n31", + "originalClass": "arco-divider arco-divider-vertical", + "selector": "div.arco-select-suffix", + "styleId": "style_10", + "tag": "div", + "width": "1px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n32.json b/AI-Arco-Design-Themes-complete/flat/nodes/n32.json new file mode 100644 index 0000000..bc7a345 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n32.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 16, + "left": 1165, + "top": 22, + "width": 50 + }, + "height": "16.0938px", + "nodeId": "n32", + "originalClass": "arco-select-view-input arco-select-hidden", + "selector": "input.arco-select-view-input.arco-select-hidden", + "styleId": "style_16", + "tag": "input", + "width": "50px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n33.json b/AI-Arco-Design-Themes-complete/flat/nodes/n33.json new file mode 100644 index 0000000..4892c23 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n33.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 36, + "left": 1341, + "top": 12, + "width": 163 + }, + "height": "32px", + "nodeId": "n33", + "originalClass": "arco-select-view-value", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6)", + "styleId": "style_17", + "tag": "span", + "text": "简体中文", + "width": "50px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n34.json b/AI-Arco-Design-Themes-complete/flat/nodes/n34.json new file mode 100644 index 0000000..4793107 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n34.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 19, + "left": 1251, + "top": 21, + "width": 48 + }, + "children": [ + "n32", + "n33" + ], + "height": "32px", + "nodeId": "n34", + "originalClass": "arco-select-view-selector", + "selector": "a.arco-link.arco-link-hoverless", + "styleId": "style_18", + "tag": "span", + "width": "50px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n35.json b/AI-Arco-Design-Themes-complete/flat/nodes/n35.json new file mode 100644 index 0000000..fa12812 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n35.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 36, + "left": 1341, + "top": 12, + "width": 71 + }, + "nodeId": "n35", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(1) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n36.json b/AI-Arco-Design-Themes-complete/flat/nodes/n36.json new file mode 100644 index 0000000..b32a340 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n36.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 36, + "left": 1341, + "top": 12, + "width": 71 + }, + "children": [ + "n35" + ], + "height": "30px", + "nodeId": "n36", + "originalClass": "arco-select-arrow-icon", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(1) > div.style-vote-2aPPM", + "styleId": "style_19", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n37.json b/AI-Arco-Design-Themes-complete/flat/nodes/n37.json new file mode 100644 index 0000000..cdd899e --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n37.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 36, + "left": 1341, + "top": 12, + "width": 71 + }, + "children": [ + "n36" + ], + "height": "32px", + "nodeId": "n37", + "originalClass": "arco-select-suffix", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(1)", + "styleId": "style_20", + "tag": "div", + "width": "12px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n38.json b/AI-Arco-Design-Themes-complete/flat/nodes/n38.json new file mode 100644 index 0000000..18b0e97 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n38.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 12, + "left": 1319, + "top": 24, + "width": 2 + }, + "children": [ + "n34", + "n37" + ], + "height": "32px", + "nodeId": "n38", + "originalClass": "arco-select-view", + "selector": "div.style-nav-actions-3V1E0 > div.arco-divider.arco-divider-vertical:nth-of-type(5)", + "styleId": "style_21", + "tag": "div", + "width": "86px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n39.json b/AI-Arco-Design-Themes-complete/flat/nodes/n39.json new file mode 100644 index 0000000..98490e8 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n39.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 50 + }, + "children": [ + "n38" + ], + "height": "32px", + "nodeId": "n39", + "originalClass": "arco-select arco-select-single arco-select-size-default arco-select-no-border", + "selector": "span.arco-select-view-value", + "styleId": "style_22", + "tag": "div", + "width": "86px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n4.json b/AI-Arco-Design-Themes-complete/flat/nodes/n4.json new file mode 100644 index 0000000..4faa83f --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n4.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 86, + "top": 15, + "width": 160 + }, + "children": [ + "n3" + ], + "height": "24px", + "nodeId": "n4", + "originalClass": "style-logo-NxwZ7", + "selector": "span.style-title-3bZPr", + "styleId": "style_3", + "tag": "span", + "width": "24px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n40.json b/AI-Arco-Design-Themes-complete/flat/nodes/n40.json new file mode 100644 index 0000000..252983d --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n40.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 30, + "left": 1219, + "top": 15, + "width": 12 + }, + "children": [ + "n39" + ], + "height": "32px", + "nodeId": "n40", + "originalClass": "style-locale-select-253ti", + "selector": "div.arco-select-arrow-icon", + "styleId": "style_23", + "tag": "div", + "width": "86px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n41.json b/AI-Arco-Design-Themes-complete/flat/nodes/n41.json new file mode 100644 index 0000000..1a65bd5 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n41.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 17, + "left": 1380, + "top": 22, + "width": 15 + }, + "height": "18.8516px", + "nodeId": "n41", + "originalClass": "arco-link arco-link-hoverless style-help-doc-link-O9aag", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(1) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary > span.style-vote-count-CHG5G", + "styleId": "style_24", + "tag": "a", + "text": "帮助文档", + "width": "48px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n42.json b/AI-Arco-Design-Themes-complete/flat/nodes/n42.json new file mode 100644 index 0000000..f8d306f --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n42.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 36, + "left": 1424, + "top": 12, + "width": 80 + }, + "height": "12px", + "nodeId": "n42", + "originalClass": "arco-divider arco-divider-vertical", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(2)", + "styleId": "style_10", + "tag": "div", + "width": "1px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n43.json b/AI-Arco-Design-Themes-complete/flat/nodes/n43.json new file mode 100644 index 0000000..2016ea7 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n43.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 17, + "left": 1463, + "top": 22, + "width": 24 + }, + "nodeId": "n43", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(2) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary > span.style-vote-count-CHG5G", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n44.json b/AI-Arco-Design-Themes-complete/flat/nodes/n44.json new file mode 100644 index 0000000..2883291 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n44.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 17, + "left": 1557, + "top": 22, + "width": 84 + }, + "nodeId": "n44", + "originalClass": "style-vote-count-CHG5G", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-secondary > span", + "styleId": "style_25", + "tag": "span", + "text": "71" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n45.json b/AI-Arco-Design-Themes-complete/flat/nodes/n45.json new file mode 100644 index 0000000..bda1ee2 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n45.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 36, + "left": 1424, + "top": 12, + "width": 80 + }, + "children": [ + "n43", + "n44" + ], + "height": "36px", + "nodeId": "n45", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(2) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary", + "styleId": "style_26", + "tag": "button", + "width": "70.5547px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n46.json b/AI-Arco-Design-Themes-complete/flat/nodes/n46.json new file mode 100644 index 0000000..89f4aae --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n46.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 36, + "left": 1516, + "top": 12, + "width": 142 + }, + "children": [ + "n45" + ], + "height": "36px", + "nodeId": "n46", + "originalClass": "style-vote-2aPPM", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(1)", + "styleId": "style_27", + "tag": "div", + "width": "70.5547px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n47.json b/AI-Arco-Design-Themes-complete/flat/nodes/n47.json new file mode 100644 index 0000000..9b3e8c1 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n47.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 36, + "left": 1516, + "top": 12, + "width": 264 + }, + "children": [ + "n46" + ], + "height": "36px", + "nodeId": "n47", + "originalClass": "arco-space-item", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7)", + "styleId": "style_28", + "tag": "div", + "width": "70.5547px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n48.json b/AI-Arco-Design-Themes-complete/flat/nodes/n48.json new file mode 100644 index 0000000..af0a369 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n48.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 14, + "left": 1666, + "top": 24, + "width": 114 + }, + "nodeId": "n48", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2) > span", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n49.json b/AI-Arco-Design-Themes-complete/flat/nodes/n49.json new file mode 100644 index 0000000..ee2161a --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n49.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 14, + "left": 1666, + "top": 24, + "width": 114 + }, + "nodeId": "n49", + "originalClass": "style-vote-count-CHG5G", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2) > span > span", + "styleId": "style_25", + "tag": "span", + "text": "126" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n5.json b/AI-Arco-Design-Themes-complete/flat/nodes/n5.json new file mode 100644 index 0000000..9dbd1b3 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n5.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 22, + "left": 259, + "top": 19, + "width": 29 + }, + "height": "30px", + "nodeId": "n5", + "originalClass": "style-title-3bZPr", + "selector": "span.arco-tag-content", + "styleId": "style_4", + "tag": "span", + "text": "线性主题 主题预览", + "width": "160px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n50.json b/AI-Arco-Design-Themes-complete/flat/nodes/n50.json new file mode 100644 index 0000000..0212e22 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n50.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 36, + "left": 1666, + "top": 12, + "width": 114 + }, + "children": [ + "n48", + "n49" + ], + "height": "36px", + "nodeId": "n50", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2) > span > span > button.arco-btn.arco-btn-primary", + "styleId": "style_26", + "tag": "button", + "width": "80.0391px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n51.json b/AI-Arco-Design-Themes-complete/flat/nodes/n51.json new file mode 100644 index 0000000..4e610da --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n51.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 36, + "left": 1516, + "top": 12, + "width": 142 + }, + "children": [ + "n50" + ], + "height": "36px", + "nodeId": "n51", + "originalClass": "style-vote-2aPPM", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-secondary", + "styleId": "style_27", + "tag": "div", + "width": "80.0391px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n52.json b/AI-Arco-Design-Themes-complete/flat/nodes/n52.json new file mode 100644 index 0000000..ca15352 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n52.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 36, + "left": 1666, + "top": 12, + "width": 114 + }, + "children": [ + "n51" + ], + "height": "36px", + "nodeId": "n52", + "originalClass": "arco-space-item", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2)", + "styleId": "style_23", + "tag": "div", + "width": "80.0391px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n53.json b/AI-Arco-Design-Themes-complete/flat/nodes/n53.json new file mode 100644 index 0000000..3a6adb6 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n53.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 36, + "left": 1424, + "top": 12, + "width": 80 + }, + "children": [ + "n47", + "n52" + ], + "height": "36px", + "nodeId": "n53", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(2) > div.style-vote-2aPPM", + "styleId": "style_29", + "tag": "div", + "width": "162.594px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n54.json b/AI-Arco-Design-Themes-complete/flat/nodes/n54.json new file mode 100644 index 0000000..1b2dae4 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n54.json @@ -0,0 +1,7 @@ +{ + "_innerHTML": "", + "nodeId": "n54", + "originalClass": "[object SVGAnimatedString]", + "selector": "body > script:nth-of-type(1)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n55.json b/AI-Arco-Design-Themes-complete/flat/nodes/n55.json new file mode 100644 index 0000000..863ab28 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n55.json @@ -0,0 +1,7 @@ +{ + "nodeId": "n55", + "selector": "body > script:nth-of-type(2)", + "styleId": "style_30", + "tag": "span", + "text": "查看配置详情" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n56.json b/AI-Arco-Design-Themes-complete/flat/nodes/n56.json new file mode 100644 index 0000000..c76ca0a --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n56.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 809, + "left": 0, + "top": 60, + "width": 1800 + }, + "children": [ + "n54", + "n55" + ], + "height": "36px", + "nodeId": "n56", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6", + "selector": "section.arco-layout.page-page-TbnIU > div > iframe", + "styleId": "style_31", + "tag": "button", + "width": "142px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n57.json b/AI-Arco-Design-Themes-complete/flat/nodes/n57.json new file mode 100644 index 0000000..095bc6b --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n57.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 17, + "left": 1707, + "top": 22, + "width": 56 + }, + "children": [ + "n56" + ], + "height": "36px", + "nodeId": "n57", + "originalClass": "arco-space-item", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2) > span > span > button.arco-btn.arco-btn-primary > span", + "styleId": "style_32", + "tag": "div", + "width": "142px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n58.json b/AI-Arco-Design-Themes-complete/flat/nodes/n58.json new file mode 100644 index 0000000..7c1a76f --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n58.json @@ -0,0 +1,7 @@ +{ + "_innerHTML": "", + "nodeId": "n58", + "originalClass": "[object SVGAnimatedString]", + "selector": "body > div:nth-of-type(2) > script", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n59.json b/AI-Arco-Design-Themes-complete/flat/nodes/n59.json new file mode 100644 index 0000000..c386652 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n59.json @@ -0,0 +1,13 @@ +{ + "bbox": { + "height": 0, + "left": 0, + "top": 869, + "width": 1800 + }, + "nodeId": "n59", + "selector": "#dp-bridge-feedback", + "styleId": "style_33", + "tag": "span", + "text": "复制主题" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n6.json b/AI-Arco-Design-Themes-complete/flat/nodes/n6.json new file mode 100644 index 0000000..72b00ba --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n6.json @@ -0,0 +1,16 @@ +{ + "bbox": { + "height": 30, + "left": 854, + "top": 15, + "width": 123 + }, + "height": "22px", + "nodeId": "n6", + "originalClass": "arco-tag-content", + "selector": "span.style-nav-actions-theme-1iwj-.guide-theme-toggle", + "styleId": "style_5", + "tag": "span", + "text": "0.0.3", + "width": "28.8984px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n60.json b/AI-Arco-Design-Themes-complete/flat/nodes/n60.json new file mode 100644 index 0000000..6faa3eb --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n60.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 40, + "left": 1710, + "top": 779, + "width": 40 + }, + "children": [ + "n58", + "n59" + ], + "height": "36px", + "nodeId": "n60", + "originalClass": "arco-btn arco-btn-primary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6", + "selector": "body > button.arco-btn.arco-btn-primary", + "styleId": "style_34", + "tag": "button", + "width": "114px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n61.json b/AI-Arco-Design-Themes-complete/flat/nodes/n61.json new file mode 100644 index 0000000..aaf4973 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n61.json @@ -0,0 +1,9 @@ +{ + "children": [ + "n60" + ], + "nodeId": "n61", + "selector": "body > script:nth-of-type(4)", + "styleId": "style_35", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n62.json b/AI-Arco-Design-Themes-complete/flat/nodes/n62.json new file mode 100644 index 0000000..eb6275e --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n62.json @@ -0,0 +1,9 @@ +{ + "children": [ + "n61" + ], + "nodeId": "n62", + "selector": "body > script:nth-of-type(3)", + "styleId": "style_35", + "tag": "span" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n63.json b/AI-Arco-Design-Themes-complete/flat/nodes/n63.json new file mode 100644 index 0000000..0ee3ee9 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n63.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 0, + "left": 0, + "top": 869, + "width": 1800 + }, + "children": [ + "n62" + ], + "height": "36px", + "nodeId": "n63", + "originalClass": "arco-space-item", + "selector": "#arco-dp-survey", + "styleId": "style_23", + "tag": "div", + "width": "114px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n64.json b/AI-Arco-Design-Themes-complete/flat/nodes/n64.json new file mode 100644 index 0000000..abce504 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n64.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 809, + "left": 0, + "top": 60, + "width": 1800 + }, + "children": [ + "n57", + "n63" + ], + "height": "36px", + "nodeId": "n64", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "selector": "section.arco-layout.page-page-TbnIU > div", + "styleId": "style_7", + "tag": "div", + "width": "264px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n65.json b/AI-Arco-Design-Themes-complete/flat/nodes/n65.json new file mode 100644 index 0000000..070994e --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n65.json @@ -0,0 +1,26 @@ +{ + "bbox": { + "height": 26, + "left": 1019, + "top": 17, + "width": 26 + }, + "children": [ + "n13", + "n14", + "n30", + "n31", + "n40", + "n41", + "n42", + "n53", + "n64" + ], + "height": "36px", + "nodeId": "n65", + "originalClass": "style-nav-actions-3V1E0", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(1)", + "styleId": "style_36", + "tag": "div", + "width": "925.594px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n66.json b/AI-Arco-Design-Themes-complete/flat/nodes/n66.json new file mode 100644 index 0000000..0dedbd7 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n66.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 30, + "left": 16, + "top": 15, + "width": 331 + }, + "children": [ + "n11", + "n65" + ], + "height": "60px", + "nodeId": "n66", + "originalClass": "style-nav-2BWoO", + "selector": "div.style-nav-header-x_NEb", + "styleId": "style_37", + "tag": "div", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n67.json b/AI-Arco-Design-Themes-complete/flat/nodes/n67.json new file mode 100644 index 0000000..875e53a --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n67.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 60, + "left": 0, + "top": 0, + "width": 1800 + }, + "children": [ + "n66" + ], + "height": "60px", + "nodeId": "n67", + "originalClass": "arco-layout-header page-nav-1VbLA", + "selector": "header.arco-layout-header.page-nav-1VbLA", + "styleId": "style_38", + "tag": "header", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n68.json b/AI-Arco-Design-Themes-complete/flat/nodes/n68.json new file mode 100644 index 0000000..6fa0126 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n68.json @@ -0,0 +1,14 @@ +{ + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 1800 + }, + "height": "855px", + "nodeId": "n68", + "selector": "body > div:nth-of-type(4)", + "styleId": "style_39", + "tag": "iframe", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n69.json b/AI-Arco-Design-Themes-complete/flat/nodes/n69.json new file mode 100644 index 0000000..61ec09a --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n69.json @@ -0,0 +1,17 @@ +{ + "bbox": { + "height": 0, + "left": 0, + "top": 869, + "width": 1800 + }, + "children": [ + "n68" + ], + "height": "855px", + "nodeId": "n69", + "selector": "div.dp-feedback", + "styleId": "style_40", + "tag": "div", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n7.json b/AI-Arco-Design-Themes-complete/flat/nodes/n7.json new file mode 100644 index 0000000..e693d42 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n7.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 12, + "left": 333, + "top": 24, + "width": 2 + }, + "children": [ + "n6" + ], + "height": "24px", + "nodeId": "n7", + "originalClass": "arco-tag arco-tag-arcoblue arco-tag-checked arco-tag-size-default", + "selector": "div.style-nav-header-x_NEb > div.arco-divider.arco-divider-vertical:nth-of-type(2)", + "styleId": "style_6", + "tag": "div", + "width": "46.8984px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n70.json b/AI-Arco-Design-Themes-complete/flat/nodes/n70.json new file mode 100644 index 0000000..35b18c1 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n70.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 1800 + }, + "children": [ + "n67", + "n69" + ], + "height": "915px", + "nodeId": "n70", + "originalClass": "arco-layout page-page-TbnIU", + "selector": "section.arco-layout.page-page-TbnIU", + "styleId": "style_41", + "tag": "section", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n71.json b/AI-Arco-Design-Themes-complete/flat/nodes/n71.json new file mode 100644 index 0000000..1578dcb --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n71.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 60, + "left": 0, + "top": 0, + "width": 1800 + }, + "children": [ + "n70" + ], + "height": "915px", + "id": "root", + "nodeId": "n71", + "selector": "div.style-nav-2BWoO", + "styleId": "style_42", + "tag": "div", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n72.json b/AI-Arco-Design-Themes-complete/flat/nodes/n72.json new file mode 100644 index 0000000..879671b --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n72.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 26, + "left": 865, + "top": 57, + "width": 101 + }, + "height": "0px", + "id": "arco-dp-survey", + "nodeId": "n72", + "selector": "div.arco-tooltip-content.arco-tooltip-content-top", + "styleId": "style_42", + "tag": "div", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n73.json b/AI-Arco-Design-Themes-complete/flat/nodes/n73.json new file mode 100644 index 0000000..c7c02ca --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n73.json @@ -0,0 +1,15 @@ +{ + "bbox": { + "height": 0, + "left": 865, + "top": 83, + "width": 101 + }, + "height": "0px", + "nodeId": "n73", + "originalClass": "dp-feedback", + "selector": "div.arco-trigger-arrow-container.arco-tooltip-arrow-container", + "styleId": "style_42", + "tag": "div", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n74.json b/AI-Arco-Design-Themes-complete/flat/nodes/n74.json new file mode 100644 index 0000000..c63fb34 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n74.json @@ -0,0 +1,19 @@ +{ + "bbox": { + "height": 15, + "left": 873, + "top": 62, + "width": 85 + }, + "children": [ + "n73" + ], + "height": "0px", + "id": "dp-bridge-feedback", + "nodeId": "n74", + "originalClass": "dp-bridge", + "selector": "div.arco-tooltip-content-inner", + "styleId": "style_42", + "tag": "div", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n75.json b/AI-Arco-Design-Themes-complete/flat/nodes/n75.json new file mode 100644 index 0000000..24abf79 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n75.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 26, + "left": 865, + "top": 57, + "width": 101 + }, + "nodeId": "n75", + "originalClass": "[object SVGAnimatedString]", + "selector": "span.arco-trigger.arco-tooltip", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n76.json b/AI-Arco-Design-Themes-complete/flat/nodes/n76.json new file mode 100644 index 0000000..aa42c85 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n76.json @@ -0,0 +1,18 @@ +{ + "bbox": { + "height": 8, + "left": 912, + "top": 53, + "width": 8 + }, + "children": [ + "n75" + ], + "height": "40px", + "nodeId": "n76", + "originalClass": "arco-btn arco-btn-primary arco-btn-size-default arco-btn-shape-circle arco-btn-icon-only", + "selector": "div.arco-trigger-arrow.arco-tooltip-arrow", + "styleId": "style_43", + "tag": "button", + "width": "40px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n77.json b/AI-Arco-Design-Themes-complete/flat/nodes/n77.json new file mode 100644 index 0000000..4d9b864 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n77.json @@ -0,0 +1,20 @@ +{ + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 1800 + }, + "children": [ + "n71", + "n72", + "n74", + "n76" + ], + "height": "915px", + "nodeId": "n77", + "selector": "#root", + "styleId": "style_44", + "tag": "body", + "width": "1800px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n78.json b/AI-Arco-Design-Themes-complete/flat/nodes/n78.json new file mode 100644 index 0000000..fedb213 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n78.json @@ -0,0 +1,8 @@ +{ + "children": [ + "n77" + ], + "nodeId": "n78", + "selector": "textarea.projectData", + "tag": "root" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n8.json b/AI-Arco-Design-Themes-complete/flat/nodes/n8.json new file mode 100644 index 0000000..e8d4d8a --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n8.json @@ -0,0 +1,13 @@ +{ + "_innerHTML": "", + "bbox": { + "height": 12, + "left": 997, + "top": 24, + "width": 2 + }, + "nodeId": "n8", + "originalClass": "[object SVGAnimatedString]", + "selector": "div.style-nav-actions-3V1E0 > div.arco-divider.arco-divider-vertical:nth-of-type(1)", + "tag": "svg" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/nodes/n9.json b/AI-Arco-Design-Themes-complete/flat/nodes/n9.json new file mode 100644 index 0000000..4eb99a6 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/nodes/n9.json @@ -0,0 +1,21 @@ +{ + "bbox": { + "height": 24, + "left": 250, + "top": 18, + "width": 47 + }, + "children": [ + "n4", + "n5", + "n7", + "n8" + ], + "height": "30px", + "nodeId": "n9", + "originalClass": "arco-row arco-row-align-center arco-row-justify-start", + "selector": "div.arco-tag.arco-tag-arcoblue", + "styleId": "style_7", + "tag": "div", + "width": "262.898px" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/skeleton.json b/AI-Arco-Design-Themes-complete/flat/skeleton.json new file mode 100644 index 0000000..75f64d0 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/skeleton.json @@ -0,0 +1,578 @@ +{ + "capturedAt": "2026-04-20T15:22:36.694Z", + "nodeCount": 78, + "nodes": { + "n1": { + "childCount": 0, + "depth": 8, + "tag": "svg" + }, + "n10": { + "childCount": 0, + "depth": 7, + "tag": "div" + }, + "n11": { + "childCount": 10, + "children": [ + "n2", + "n9", + "n10" + ], + "depth": 6, + "role": "header", + "tag": "div" + }, + "n12": { + "childCount": 0, + "depth": 8, + "tag": "svg" + }, + "n13": { + "childCount": 1, + "children": [ + "n12" + ], + "depth": 7, + "tag": "span" + }, + "n14": { + "childCount": 0, + "depth": 7, + "tag": "div" + }, + "n15": { + "childCount": 0, + "depth": 10, + "tag": "img" + }, + "n16": { + "childCount": 1, + "children": [ + "n15" + ], + "depth": 9, + "tag": "span" + }, + "n17": { + "childCount": 2, + "children": [ + "n16" + ], + "depth": 8, + "tag": "div" + }, + "n18": { + "childCount": 0, + "depth": 10, + "tag": "img" + }, + "n19": { + "childCount": 1, + "children": [ + "n18" + ], + "depth": 9, + "tag": "span" + }, + "n2": { + "childCount": 1, + "children": [ + "n1" + ], + "depth": 7, + "tag": "a" + }, + "n20": { + "childCount": 2, + "children": [ + "n19" + ], + "depth": 8, + "tag": "div" + }, + "n21": { + "childCount": 0, + "depth": 10, + "tag": "img" + }, + "n22": { + "childCount": 1, + "children": [ + "n21" + ], + "depth": 9, + "tag": "span" + }, + "n23": { + "childCount": 2, + "children": [ + "n22" + ], + "depth": 8, + "tag": "div" + }, + "n24": { + "childCount": 0, + "depth": 10, + "tag": "img" + }, + "n25": { + "childCount": 1, + "children": [ + "n24" + ], + "depth": 9, + "tag": "span" + }, + "n26": { + "childCount": 2, + "children": [ + "n25" + ], + "depth": 8, + "tag": "div" + }, + "n27": { + "childCount": 0, + "depth": 10, + "tag": "img" + }, + "n28": { + "childCount": 1, + "children": [ + "n27" + ], + "depth": 9, + "tag": "span" + }, + "n29": { + "childCount": 2, + "children": [ + "n28" + ], + "depth": 8, + "tag": "div" + }, + "n3": { + "childCount": 0, + "depth": 9, + "tag": "img" + }, + "n30": { + "childCount": 15, + "children": [ + "n17", + "n20", + "n23", + "n26", + "n29" + ], + "depth": 7, + "tag": "div" + }, + "n31": { + "childCount": 0, + "depth": 7, + "tag": "div" + }, + "n32": { + "childCount": 0, + "depth": 11, + "tag": "input" + }, + "n33": { + "childCount": 0, + "depth": 11, + "tag": "span" + }, + "n34": { + "childCount": 2, + "children": [ + "n32", + "n33" + ], + "depth": 10, + "tag": "span" + }, + "n35": { + "childCount": 0, + "depth": 12, + "tag": "svg" + }, + "n36": { + "childCount": 1, + "children": [ + "n35" + ], + "depth": 11, + "tag": "div" + }, + "n37": { + "childCount": 2, + "children": [ + "n36" + ], + "depth": 10, + "tag": "div" + }, + "n38": { + "childCount": 6, + "children": [ + "n34", + "n37" + ], + "depth": 9, + "tag": "div" + }, + "n39": { + "childCount": 7, + "children": [ + "n38" + ], + "depth": 8, + "tag": "div" + }, + "n4": { + "childCount": 1, + "children": [ + "n3" + ], + "depth": 8, + "tag": "span" + }, + "n40": { + "childCount": 8, + "children": [ + "n39" + ], + "depth": 7, + "tag": "div" + }, + "n41": { + "childCount": 0, + "depth": 7, + "tag": "a" + }, + "n42": { + "childCount": 0, + "depth": 7, + "tag": "div" + }, + "n43": { + "childCount": 0, + "depth": 11, + "tag": "svg" + }, + "n44": { + "childCount": 0, + "depth": 11, + "tag": "span" + }, + "n45": { + "childCount": 2, + "children": [ + "n43", + "n44" + ], + "depth": 10, + "tag": "button" + }, + "n46": { + "childCount": 3, + "children": [ + "n45" + ], + "depth": 9, + "tag": "div" + }, + "n47": { + "childCount": 4, + "children": [ + "n46" + ], + "depth": 8, + "tag": "div" + }, + "n48": { + "childCount": 0, + "depth": 11, + "tag": "svg" + }, + "n49": { + "childCount": 0, + "depth": 11, + "tag": "span" + }, + "n5": { + "childCount": 0, + "depth": 8, + "tag": "span" + }, + "n50": { + "childCount": 2, + "children": [ + "n48", + "n49" + ], + "depth": 10, + "tag": "button" + }, + "n51": { + "childCount": 3, + "children": [ + "n50" + ], + "depth": 9, + "tag": "div" + }, + "n52": { + "childCount": 4, + "children": [ + "n51" + ], + "depth": 8, + "tag": "div" + }, + "n53": { + "childCount": 10, + "children": [ + "n47", + "n52" + ], + "depth": 7, + "tag": "div" + }, + "n54": { + "childCount": 0, + "depth": 10, + "tag": "svg" + }, + "n55": { + "childCount": 0, + "depth": 10, + "tag": "span" + }, + "n56": { + "childCount": 2, + "children": [ + "n54", + "n55" + ], + "depth": 9, + "tag": "button" + }, + "n57": { + "childCount": 3, + "children": [ + "n56" + ], + "depth": 8, + "tag": "div" + }, + "n58": { + "childCount": 0, + "depth": 12, + "tag": "svg" + }, + "n59": { + "childCount": 0, + "depth": 12, + "tag": "span" + }, + "n6": { + "childCount": 0, + "depth": 9, + "tag": "span" + }, + "n60": { + "childCount": 2, + "children": [ + "n58", + "n59" + ], + "depth": 11, + "tag": "button" + }, + "n61": { + "childCount": 3, + "children": [ + "n60" + ], + "depth": 10, + "tag": "span" + }, + "n62": { + "childCount": 4, + "children": [ + "n61" + ], + "depth": 9, + "tag": "span" + }, + "n63": { + "childCount": 5, + "children": [ + "n62" + ], + "depth": 8, + "tag": "div" + }, + "n64": { + "childCount": 10, + "children": [ + "n57", + "n63" + ], + "depth": 7, + "tag": "div" + }, + "n65": { + "childCount": 53, + "children": [ + "n13", + "n14", + "n30", + "n31", + "n40", + "n41", + "n42", + "n53", + "n64" + ], + "depth": 6, + "tag": "div" + }, + "n66": { + "childCount": 65, + "children": [ + "n11", + "n65" + ], + "depth": 5, + "tag": "div" + }, + "n67": { + "childCount": 66, + "children": [ + "n66" + ], + "depth": 4, + "role": "header", + "tag": "header" + }, + "n68": { + "childCount": 0, + "depth": 5, + "tag": "iframe" + }, + "n69": { + "childCount": 1, + "children": [ + "n68" + ], + "depth": 4, + "tag": "div" + }, + "n7": { + "childCount": 1, + "children": [ + "n6" + ], + "depth": 8, + "tag": "div" + }, + "n70": { + "childCount": 69, + "children": [ + "n67", + "n69" + ], + "depth": 3, + "role": "section", + "tag": "section" + }, + "n71": { + "childCount": 70, + "children": [ + "n70" + ], + "depth": 2, + "tag": "div" + }, + "n72": { + "childCount": 0, + "depth": 2, + "tag": "div" + }, + "n73": { + "childCount": 0, + "depth": 3, + "tag": "div" + }, + "n74": { + "childCount": 1, + "children": [ + "n73" + ], + "depth": 2, + "tag": "div" + }, + "n75": { + "childCount": 0, + "depth": 3, + "tag": "svg" + }, + "n76": { + "childCount": 1, + "children": [ + "n75" + ], + "depth": 2, + "tag": "button" + }, + "n77": { + "childCount": 76, + "children": [ + "n71", + "n72", + "n74", + "n76" + ], + "depth": 1, + "tag": "body" + }, + "n78": { + "childCount": 77, + "children": [ + "n77" + ], + "depth": 0, + "tag": "root" + }, + "n8": { + "childCount": 0, + "depth": 8, + "tag": "svg" + }, + "n9": { + "childCount": 6, + "children": [ + "n4", + "n5", + "n7", + "n8" + ], + "depth": 7, + "tag": "div" + } + }, + "pageTitle": "Arco Design Themes", + "root": "n78", + "sourceUrl": "https://arco.design/themes/preview/544?from=%2Fthemes%3FcurrentPage%3D1%26onlyPublished%3Dfalse%26pageSize%3D9%26sortBy%3DstarCount%26tag%3Dall", + "styleCount": 44, + "viewport": { + "height": 869, + "width": 1800 + } +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_1.json b/AI-Arco-Design-Themes-complete/flat/styles/style_1.json new file mode 100644 index 0000000..488a96d --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_1.json @@ -0,0 +1,20 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "20px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "20px", + "margin": "0px 12px 0px 0px", + "marginInlineEnd": "12px", + "paddingBlockEnd": "5px", + "paddingBlockStart": "5px", + "paddingInlineEnd": "5px", + "paddingInlineStart": "5px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_1", + "tw": "flex static items-center font-normal leading-7 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-3 mb-0 ml-0 p-1 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_10.json b/AI-Arco-Design-Themes-complete/flat/styles/style_10.json new file mode 100644 index 0000000..77dfcf1 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_10.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px 0px 0px 1px none none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(78, 89, 105) rgb(229, 230, 235)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 20px", + "marginInlineEnd": "20px", + "marginInlineStart": "20px", + "minWidth": "1px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_10", + "tw": "block static max-w-0 font-normal leading-none whitespace-nowrap visible mt-0 mr-5 mb-0 ml-5 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_11.json b/AI-Arco-Design-Themes-complete/flat/styles/style_11.json new file mode 100644 index 0000000..7ffb9ba --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_11.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "clip", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_11", + "tw": "inline static font-normal leading-3 whitespace-nowrap border-0 visible m-0 p-0" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_12.json b/AI-Arco-Design-Themes-complete/flat/styles/style_12.json new file mode 100644 index 0000000..b70e780 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_12.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "borderRadius": "50%", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_12", + "tw": "block static font-normal leading-3 whitespace-nowrap border-0 visible m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_13.json b/AI-Arco-Design-Themes-complete/flat/styles/style_13.json new file mode 100644 index 0000000..95b4c09 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_13.json @@ -0,0 +1,23 @@ +{ + "custom": { + "background": "rgb(201, 205, 212) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(201, 205, 212)", + "border": "2px solid rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "borderRadius": "50%", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_13", + "tw": "inline-flex relative items-center z-0 font-normal leading-3 whitespace-nowrap border-2 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_14.json b/AI-Arco-Design-Themes-complete/flat/styles/style_14.json new file mode 100644 index 0000000..ad5b15d --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_14.json @@ -0,0 +1,25 @@ +{ + "custom": { + "background": "rgb(201, 205, 212) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(201, 205, 212)", + "border": "2px solid rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "borderRadius": "50%", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "left": "0px", + "margin": "0px 0px 0px -6.5px", + "marginInlineStart": "-6.5px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_14", + "tw": "inline-flex relative items-center z-0 font-normal leading-3 whitespace-nowrap border-2 visible mt-0 mr-0 mb-0 -ml-1.5 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_15.json b/AI-Arco-Design-Themes-complete/flat/styles/style_15.json new file mode 100644 index 0000000..7ecd3b5 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_15.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_15", + "tw": "block static font-normal leading-3 whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_16.json b/AI-Arco-Design-Themes-complete/flat/styles/style_16.json new file mode 100644 index 0000000..2cb37b9 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_16.json @@ -0,0 +1,23 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "-0.09375px", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "insetBlockEnd": "-0.09375px", + "insetBlockStart": "16px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "clip", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "16px", + "transform": "matrix(1, 0, 0, 1, 0, -8.04688)" + }, + "styleId": "style_16", + "tw": "block absolute -z-0 font-normal leading-none whitespace-nowrap border-0 opacity-0 visible cursor-pointer m-0 p-0" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_17.json b/AI-Arco-Design-Themes-complete/flat/styles/style_17.json new file mode 100644 index 0000000..dc5050d --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_17.json @@ -0,0 +1,12 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textOverflow": "ellipsis" + }, + "styleId": "style_17", + "tw": "block static font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_18.json b/AI-Arco-Design-Themes-complete/flat/styles/style_18.json new file mode 100644 index 0000000..e888ece --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_18.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_18", + "tw": "flex relative font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_19.json b/AI-Arco-Design-Themes-complete/flat/styles/style_19.json new file mode 100644 index 0000000..58802e8 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_19.json @@ -0,0 +1,12 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textOverflow": "clip" + }, + "styleId": "style_19", + "tw": "block static font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_2.json b/AI-Arco-Design-Themes-complete/flat/styles/style_2.json new file mode 100644 index 0000000..73f547e --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_2.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "overflow": "clip", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_2", + "tw": "block static font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_20.json b/AI-Arco-Design-Themes-complete/flat/styles/style_20.json new file mode 100644 index 0000000..c7e802d --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_20.json @@ -0,0 +1,14 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "textOverflow": "clip" + }, + "styleId": "style_20", + "tw": "flex static items-center font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-1 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_21.json b/AI-Arco-Design-Themes-complete/flat/styles/style_21.json new file mode 100644 index 0000000..047b3e1 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_21.json @@ -0,0 +1,22 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 20px 0px 0px", + "paddingInlineEnd": "20px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s linear, padding linear" + }, + "styleId": "style_21", + "tw": "flex relative font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 pt-0 pr-5 pb-0 pl-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_22.json b/AI-Arco-Design-Themes-complete/flat/styles/style_22.json new file mode 100644 index 0000000..b6f956c --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_22.json @@ -0,0 +1,19 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_22", + "tw": "inline-block relative font-normal leading-none whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_23.json b/AI-Arco-Design-Themes-complete/flat/styles/style_23.json new file mode 100644 index 0000000..e4647cc --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_23.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_23", + "tw": "block static font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_24.json b/AI-Arco-Design-Themes-complete/flat/styles/style_24.json new file mode 100644 index 0000000..e4cd6b2 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_24.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "2px", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip", + "transition": "0.1s linear" + }, + "styleId": "style_24", + "tw": "block static font-normal leading-tight whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_25.json b/AI-Arco-Design-Themes-complete/flat/styles/style_25.json new file mode 100644 index 0000000..0079a44 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_25.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(169, 174, 184)", + "borderColor": "rgb(169, 174, 184)", + "color": "rgb(169, 174, 184)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "margin": "0px 0px 0px 6px", + "marginInlineStart": "6px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_25", + "tw": "inline static font-medium leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-1.5 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_26.json b/AI-Arco-Design-Themes-complete/flat/styles/style_26.json new file mode 100644 index 0000000..3bf7cca --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_26.json @@ -0,0 +1,24 @@ +{ + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "18px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "padding": "0px 16px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s linear" + }, + "styleId": "style_26", + "tw": "block relative font-medium leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-4 pb-0 pl-4 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_27.json b/AI-Arco-Design-Themes-complete/flat/styles/style_27.json new file mode 100644 index 0000000..dc5e49c --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_27.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(187, 191, 196)", + "borderColor": "rgb(187, 191, 196)", + "color": "rgb(187, 191, 196)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_27", + "tw": "flex static justify-center items-center font-normal leading-tight whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_28.json b/AI-Arco-Design-Themes-complete/flat/styles/style_28.json new file mode 100644 index 0000000..ea2878b --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_28.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 12px 0px 0px", + "marginInlineEnd": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_28", + "tw": "block static font-normal leading-none whitespace-nowrap border-0 visible mt-0 mr-3 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_29.json b/AI-Arco-Design-Themes-complete/flat/styles/style_29.json new file mode 100644 index 0000000..33bd621 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_29.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 12px 0px 0px", + "marginInlineEnd": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_29", + "tw": "flex static items-center font-normal leading-none whitespace-nowrap border-0 visible mt-0 mr-3 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_3.json b/AI-Arco-Design-Themes-complete/flat/styles/style_3.json new file mode 100644 index 0000000..253adc3 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_3.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 4px 0px 0px", + "marginInlineEnd": "4px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_3", + "tw": "flex static font-normal leading-none whitespace-nowrap border-0 visible mt-0 mr-1 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_30.json b/AI-Arco-Design-Themes-complete/flat/styles/style_30.json new file mode 100644 index 0000000..92c95ed --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_30.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_30", + "tw": "inline static font-medium leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_31.json b/AI-Arco-Design-Themes-complete/flat/styles/style_31.json new file mode 100644 index 0000000..5c8f853 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_31.json @@ -0,0 +1,26 @@ +{ + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "18px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 16px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s linear" + }, + "styleId": "style_31", + "tw": "inline-block relative font-medium leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-4 pb-0 pl-4 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_32.json b/AI-Arco-Design-Themes-complete/flat/styles/style_32.json new file mode 100644 index 0000000..9d8074c --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_32.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_32", + "tw": "block static font-normal leading-none whitespace-nowrap border-0 visible mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_33.json b/AI-Arco-Design-Themes-complete/flat/styles/style_33.json new file mode 100644 index 0000000..93e8deb --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_33.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "styleId": "style_33", + "tw": "inline static font-medium leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_34.json b/AI-Arco-Design-Themes-complete/flat/styles/style_34.json new file mode 100644 index 0000000..68c1a76 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_34.json @@ -0,0 +1,26 @@ +{ + "custom": { + "background": "rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(22, 93, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "18px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 16px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s linear" + }, + "styleId": "style_34", + "tw": "inline-block relative font-medium leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-4 pb-0 pl-4 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_35.json b/AI-Arco-Design-Themes-complete/flat/styles/style_35.json new file mode 100644 index 0000000..b20abc8 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_35.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_35", + "tw": "inline static font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_36.json b/AI-Arco-Design-Themes-complete/flat/styles/style_36.json new file mode 100644 index 0000000..0070aa6 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_36.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_36", + "tw": "flex static justify-end items-center font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_37.json b/AI-Arco-Design-Themes-complete/flat/styles/style_37.json new file mode 100644 index 0000000..489cf28 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_37.json @@ -0,0 +1,25 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "boxShadow": "rgb(229, 230, 235) 0px 1px 0px 0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 20px 0px 16px", + "paddingInlineEnd": "20px", + "paddingInlineStart": "16px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "styleId": "style_37", + "tw": "flex relative justify-between items-center z-50 font-normal leading-none border-0 visible m-0 pt-0 pr-5 pb-0 pl-4 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_38.json b/AI-Arco-Design-Themes-complete/flat/styles/style_38.json new file mode 100644 index 0000000..7dfe0e6 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_38.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_38", + "tw": "block static shrink-0 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_39.json b/AI-Arco-Design-Themes-complete/flat/styles/style_39.json new file mode 100644 index 0000000..ed6551b --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_39.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "clip", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_39", + "tw": "inline static font-normal leading-tight border-0 visible m-0 p-0" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_4.json b/AI-Arco-Design-Themes-complete/flat/styles/style_4.json new file mode 100644 index 0000000..d5633bf --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_4.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "20px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "styleId": "style_4", + "tw": "block static max-w-xs font-semibold leading-7 whitespace-nowrap border-0 visible m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_40.json b/AI-Arco-Design-Themes-complete/flat/styles/style_40.json new file mode 100644 index 0000000..9090895 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_40.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_40", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_41.json b/AI-Arco-Design-Themes-complete/flat/styles/style_41.json new file mode 100644 index 0000000..eb2abeb --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_41.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_41", + "tw": "flex static flex-col grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_42.json b/AI-Arco-Design-Themes-complete/flat/styles/style_42.json new file mode 100644 index 0000000..5b6a457 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_42.json @@ -0,0 +1,15 @@ +{ + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_42", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_43.json b/AI-Arco-Design-Themes-complete/flat/styles/style_43.json new file mode 100644 index 0000000..389c8fb --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_43.json @@ -0,0 +1,29 @@ +{ + "custom": { + "background": "rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(22, 93, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "50%", + "borderStyle": "solid", + "bottom": "50px", + "boxShadow": "rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "20px", + "insetBlockEnd": "50px", + "insetBlockStart": "825px", + "insetInlineEnd": "50px", + "insetInlineStart": "1710px", + "left": "1710px", + "lineHeight": "31.43px", + "minHeight": "0px", + "minWidth": "0px", + "right": "50px", + "textOverflow": "clip", + "top": "825px", + "transition": "0.1s linear" + }, + "styleId": "style_43", + "tw": "block fixed font-normal text-center whitespace-nowrap border visible cursor-pointer m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_44.json b/AI-Arco-Design-Themes-complete/flat/styles/style_44.json new file mode 100644 index 0000000..88d615b --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_44.json @@ -0,0 +1,17 @@ +{ + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "1000px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_44", + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_5.json b/AI-Arco-Design-Themes-complete/flat/styles/style_5.json new file mode 100644 index 0000000..d42529d --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_5.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "styleId": "style_5", + "tw": "block static grow basis-1/12 font-medium leading-snug whitespace-nowrap border-0 visible m-0 p-0 overflow-hidden" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_6.json b/AI-Arco-Design-Themes-complete/flat/styles/style_6.json new file mode 100644 index 0000000..564fbe5 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_6.json @@ -0,0 +1,22 @@ +{ + "custom": { + "background": "rgb(232, 243, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(232, 243, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(22, 93, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "padding": "0px 8px", + "paddingInlineEnd": "8px", + "paddingInlineStart": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_6", + "tw": "flex static items-center font-medium leading-snug whitespace-nowrap border visible mt-0 mr-0 mb-0 ml-1 pt-0 pr-2 pb-0 pl-2 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_7.json b/AI-Arco-Design-Themes-complete/flat/styles/style_7.json new file mode 100644 index 0000000..a173eee --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_7.json @@ -0,0 +1,13 @@ +{ + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_7", + "tw": "flex static items-center font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_8.json b/AI-Arco-Design-Themes-complete/flat/styles/style_8.json new file mode 100644 index 0000000..19d33b2 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_8.json @@ -0,0 +1,16 @@ +{ + "custom": { + "border": "0px 0px 0px 1px none none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(78, 89, 105) rgb(229, 230, 235)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 12px", + "marginInlineEnd": "12px", + "marginInlineStart": "12px", + "minWidth": "1px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_8", + "tw": "block static max-w-0 font-normal leading-none whitespace-nowrap visible mt-0 mr-3 mb-0 ml-3 p-0 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/flat/styles/style_9.json b/AI-Arco-Design-Themes-complete/flat/styles/style_9.json new file mode 100644 index 0000000..c4a497b --- /dev/null +++ b/AI-Arco-Design-Themes-complete/flat/styles/style_9.json @@ -0,0 +1,21 @@ +{ + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "30px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "padding": "3px 12px", + "paddingBlockEnd": "3px", + "paddingBlockStart": "3px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "styleId": "style_9", + "tw": "flex static items-center font-medium leading-tight whitespace-nowrap border-0 visible cursor-pointer m-0 pt-0.5 pr-3 pb-0.5 pl-3 overflow-visible" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/index.html b/AI-Arco-Design-Themes-complete/index.html new file mode 100644 index 0000000..02691d8 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/index.html @@ -0,0 +1,144 @@ + + + + + + Arco-Design-Themes + + + + + + + +
+
+
+
+
+ + + +
+ + + + 线性主题 主题预览 +
+ 0.0.3 +
+ +
+
+
+
+ 切换暗黑模式 +
+
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+
+
+
+ + + 简体中文 + +
+
+ +
+
+
+
+
+ 帮助文档 +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+ +
+
+ + + + + +
+
+
+
+
+
+ +
+
+
+
+
+
+
+ + +
+ + \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/manifest.json b/AI-Arco-Design-Themes-complete/manifest.json new file mode 100644 index 0000000..011190e --- /dev/null +++ b/AI-Arco-Design-Themes-complete/manifest.json @@ -0,0 +1,89 @@ +{ + "version": "3.0", + "generator": "axhub-ai-extension", + "exportTime": "2026-04-20T15:22:48.239Z", + "sourceUrl": "https://arco.design/themes/preview/544?from=%2Fthemes%3FcurrentPage%3D1%26onlyPublished%3Dfalse%26pageSize%3D9%26sortBy%3DstarCount%26tag%3Dall", + "viewport": { + "height": 869, + "width": 1800 + }, + "mode": "full", + "files": { + "domlist": "structure/doms.json", + "stylePool": "structure/styles.json", + "theme": "theme.json", + "screenshot": "screenshot.png", + "content": "content.md", + "pageMap": "page-map.json", + "topology": "topology/topology.json", + "selectorMap": "topology/selector-map.json", + "contentBlocks": "topology/content-blocks.json", + "behaviors": null, + "responsive": null, + "networkSummary": null, + "html": "index.html", + "css": "style.css" + }, + "flatStructure": { + "skeleton": "flat/skeleton.json", + "nodesDir": "flat/nodes/", + "stylesDir": "flat/styles/", + "index": "flat/index.json" + }, + "livePageAccess": { + "sourceUrl": "https://arco.design/themes/preview/544?from=%2Fthemes%3FcurrentPage%3D1%26onlyPublished%3Dfalse%26pageSize%3D9%26sortBy%3DstarCount%26tag%3Dall", + "selectorAvailable": true, + "note": "每个节点文件包含 selector 字段,可用 Playwright 访问 sourceUrl 进行补充采集" + }, + "screenshots": { + "current": "screenshot.png", + "responsive": [ + "screenshots/desktop-1440.png", + "screenshots/tablet-768.png", + "screenshots/mobile-390.png" + ] + }, + "assets": { + "imageCount": 0, + "fontCount": 10, + "imageFiles": [], + "fontFiles": [ + "assets/fonts/font-1.woff2", + "assets/fonts/font-2.woff2", + "assets/fonts/font-3.woff2", + "assets/fonts/font-4.woff2", + "assets/fonts/font-5.woff2", + "assets/fonts/font-6.woff2", + "assets/fonts/font-7.woff2", + "assets/fonts/font-8.woff2", + "assets/fonts/font-9.woff2", + "assets/fonts/font-10.woff2" + ], + "viewportScreenshotCount": 0 + }, + "stats": { + "nodeCount": 78, + "styleCount": 44, + "markdownLength": 36573, + "sectionCount": 1 + }, + "capabilities": { + "hasFonts": true, + "hasScreenshot": true, + "hasResponsiveScreenshots": true, + "hasTheme": true, + "hasMarkdown": true, + "hasPreviewHTML": true, + "hasSections": true, + "hasTopology": true, + "hasSelectorMap": true, + "hasBehaviors": false, + "hasResponsive": false, + "hasNetworkSummary": false, + "hasContentBlocks": true, + "hasRebuildPrompts": true, + "hasFlatStructure": true, + "jsonFormat": true, + "tailwindClasses": true + } +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/page-map.json b/AI-Arco-Design-Themes-complete/page-map.json new file mode 100644 index 0000000..b199f6c --- /dev/null +++ b/AI-Arco-Design-Themes-complete/page-map.json @@ -0,0 +1,38 @@ +{ + "links": [ + { + "href": "https://arco.design/docs/designlab/guideline", + "selector": "a.arco-link.arco-link-hoverless", + "text": "帮助文档", + "type": "a", + "visible": true + }, + { + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(1) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary", + "text": "71", + "type": "button", + "visible": true + }, + { + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(2) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary", + "text": "126", + "type": "button", + "visible": true + }, + { + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-secondary", + "text": "查看配置详情", + "type": "button", + "visible": true + }, + { + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2) > span > span > button.arco-btn.arco-btn-primary", + "text": "复制主题", + "type": "button", + "visible": true + } + ], + "pageTitle": "Arco Design Themes", + "pageUrl": "https://arco.design/themes/preview/544?from=%2Fthemes%3FcurrentPage%3D1%26onlyPublished%3Dfalse%26pageSize%3D9%26sortBy%3DstarCount%26tag%3Dall", + "totalLinks": 5 +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/prompts/rebuild-page.md b/AI-Arco-Design-Themes-complete/prompts/rebuild-page.md new file mode 100644 index 0000000..7b99a12 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/prompts/rebuild-page.md @@ -0,0 +1,20 @@ +# Rebuild Page Prompt + +Rebuild the page "Arco Design Themes" as a production-ready webpage. + +Use the export pack in this order: +1. Read `manifest.json` to understand available files and capabilities. +2. Use `screenshot.png` as the visual source of truth. +3. Use `topology.json`, `selector-map.json`, and `content.blocks.json` when present to preserve page structure and section semantics. +4. Use `theme.json`, `doms.toon`, and `styles.toon` to restore layout, tokens, and styling details. +5. Use `behaviors.json`, `responsive.json`, and `network-summary.json` when present to preserve dynamic behavior and breakpoint changes. +6. Use `preview/index.html` and `preview/style.css` only as references, not as the final implementation. + +Implementation requirements: +- Match the original hierarchy section by section. +- Reuse exported assets from `assets/images` and `assets/fonts`. +- Preserve CTA order, sticky/fixed layers, and content hierarchy. +- Keep the page responsive across desktop, tablet, and mobile. +- Document any behavior or asset you cannot reproduce exactly. + +Export mode: `full`. \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/prompts/rebuild-section.md b/AI-Arco-Design-Themes-complete/prompts/rebuild-section.md new file mode 100644 index 0000000..b82147e --- /dev/null +++ b/AI-Arco-Design-Themes-complete/prompts/rebuild-section.md @@ -0,0 +1,14 @@ +# Rebuild Section Prompt + +Rebuild one section at a time for "Arco Design Themes". + +Workflow: +1. Inspect `sections//spec.json` and `sections//screenshot.png`. +2. Use `content.blocks.json` to preserve copy, buttons, images, and forms. +3. Use `theme.json` and `selector-map.json` to match shared styles and spacing. +4. If the section appears in `behaviors.json` or `responsive.json`, preserve those states too. + +Available sections: +- section-001: div (#root) -> sections/section-001/spec.json + +For each rebuilt section, keep the output self-contained, semantically meaningful, and easy to compose back into the full page. \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/screenshot.png b/AI-Arco-Design-Themes-complete/screenshot.png new file mode 100644 index 0000000..d8cf876 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/screenshot.png differ diff --git a/AI-Arco-Design-Themes-complete/screenshots/desktop-1440.png b/AI-Arco-Design-Themes-complete/screenshots/desktop-1440.png new file mode 100644 index 0000000..a00edc8 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/screenshots/desktop-1440.png differ diff --git a/AI-Arco-Design-Themes-complete/screenshots/mobile-390.png b/AI-Arco-Design-Themes-complete/screenshots/mobile-390.png new file mode 100644 index 0000000..dbb3b53 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/screenshots/mobile-390.png differ diff --git a/AI-Arco-Design-Themes-complete/screenshots/tablet-768.png b/AI-Arco-Design-Themes-complete/screenshots/tablet-768.png new file mode 100644 index 0000000..4fdc5b0 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/screenshots/tablet-768.png differ diff --git a/AI-Arco-Design-Themes-complete/sections/section-001/screenshot.png b/AI-Arco-Design-Themes-complete/sections/section-001/screenshot.png new file mode 100644 index 0000000..a05b541 Binary files /dev/null and b/AI-Arco-Design-Themes-complete/sections/section-001/screenshot.png differ diff --git a/AI-Arco-Design-Themes-complete/sections/section-001/spec.json b/AI-Arco-Design-Themes-complete/sections/section-001/spec.json new file mode 100644 index 0000000..a7270c4 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/sections/section-001/spec.json @@ -0,0 +1,24 @@ +{ + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 1800 + }, + "contentSummary": "线性主题主题预览 0.0.3 切换暗黑模式 简体中文 帮助文档 71 126 查看配置详情 复制主题", + "dominantStyle": { + "backgroundImage": false + }, + "hasMedia": true, + "hasText": true, + "id": "section-001", + "interactionHints": [ + "cta", + "form", + "toggle" + ], + "name": "div", + "nodeCount": 61, + "selector": "#root", + "tagHint": "div" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/structure/doms.json b/AI-Arco-Design-Themes-complete/structure/doms.json new file mode 100644 index 0000000..a13dfce --- /dev/null +++ b/AI-Arco-Design-Themes-complete/structure/doms.json @@ -0,0 +1,691 @@ +{ + "nodes": { + "n1": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n10": { + "height": "12px", + "originalClass": "arco-divider arco-divider-vertical", + "styleId": "style_8", + "tag": "div", + "width": "1px" + }, + "n11": { + "children": [ + "n2", + "n9", + "n10" + ], + "height": "30px", + "originalClass": "style-nav-header-x_NEb", + "styleId": "style_7", + "tag": "div", + "width": "330.898px" + }, + "n12": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n13": { + "_innerHTML": "切换暗黑模式", + "children": [ + "n12" + ], + "height": "24px", + "originalClass": "style-nav-actions-theme-1iwj- guide-theme-toggle", + "styleId": "style_9", + "tag": "span", + "text": "切换暗黑模式", + "width": "99px" + }, + "n14": { + "height": "12px", + "originalClass": "arco-divider arco-divider-vertical", + "styleId": "style_10", + "tag": "div", + "width": "1px" + }, + "n15": { + "height": "22px", + "styleId": "style_11", + "tag": "img", + "width": "22px" + }, + "n16": { + "children": [ + "n15" + ], + "height": "22px", + "originalClass": "arco-avatar-image", + "styleId": "style_12", + "tag": "span", + "width": "22px" + }, + "n17": { + "children": [ + "n16" + ], + "height": "26px", + "originalClass": "arco-avatar arco-avatar-circle", + "styleId": "style_13", + "tag": "div", + "width": "26px" + }, + "n18": { + "height": "22px", + "src": "assets/images/2Q==.jpeg", + "styleId": "style_11", + "tag": "img", + "width": "22px" + }, + "n19": { + "children": [ + "n18" + ], + "height": "22px", + "originalClass": "arco-avatar-image", + "styleId": "style_12", + "tag": "span", + "width": "22px" + }, + "n2": { + "children": [ + "n1" + ], + "height": "20px", + "originalClass": "style-nav-back-2Csip", + "styleId": "style_1", + "tag": "a", + "width": "20px" + }, + "n20": { + "children": [ + "n19" + ], + "height": "26px", + "originalClass": "arco-avatar arco-avatar-circle", + "styleId": "style_14", + "tag": "div", + "width": "26px" + }, + "n21": { + "height": "22px", + "src": "assets/images/Z.jpeg", + "styleId": "style_11", + "tag": "img", + "width": "22px" + }, + "n22": { + "children": [ + "n21" + ], + "height": "22px", + "originalClass": "arco-avatar-image", + "styleId": "style_12", + "tag": "span", + "width": "22px" + }, + "n23": { + "children": [ + "n22" + ], + "height": "26px", + "originalClass": "arco-avatar arco-avatar-circle", + "styleId": "style_14", + "tag": "div", + "width": "26px" + }, + "n24": { + "height": "22px", + "src": "assets/images/08KpJGKtpeCAAAAAElFTkSuQmCC.png", + "styleId": "style_11", + "tag": "img", + "width": "22px" + }, + "n25": { + "children": [ + "n24" + ], + "height": "22px", + "originalClass": "arco-avatar-image", + "styleId": "style_12", + "tag": "span", + "width": "22px" + }, + "n26": { + "children": [ + "n25" + ], + "height": "26px", + "originalClass": "arco-avatar arco-avatar-circle", + "styleId": "style_14", + "tag": "div", + "width": "26px" + }, + "n27": { + "height": "22px", + "src": "assets/images/Z-1.jpeg", + "styleId": "style_11", + "tag": "img", + "width": "22px" + }, + "n28": { + "children": [ + "n27" + ], + "height": "22px", + "originalClass": "arco-avatar-image", + "styleId": "style_12", + "tag": "span", + "width": "22px" + }, + "n29": { + "children": [ + "n28" + ], + "height": "26px", + "originalClass": "arco-avatar arco-avatar-circle", + "styleId": "style_14", + "tag": "div", + "width": "26px" + }, + "n3": { + "height": "24px", + "src": "assets/images/B1bbK4X5L0YBAAAAAElFTkSuQmCC.png", + "styleId": "style_2", + "tag": "img", + "width": "24px" + }, + "n30": { + "children": [ + "n17", + "n20", + "n23", + "n26", + "n29" + ], + "height": "26px", + "originalClass": "arco-avatar-group", + "styleId": "style_15", + "tag": "div", + "width": "104px" + }, + "n31": { + "height": "12px", + "originalClass": "arco-divider arco-divider-vertical", + "styleId": "style_10", + "tag": "div", + "width": "1px" + }, + "n32": { + "height": "16.0938px", + "originalClass": "arco-select-view-input arco-select-hidden", + "styleId": "style_16", + "tag": "input", + "width": "50px" + }, + "n33": { + "height": "32px", + "originalClass": "arco-select-view-value", + "styleId": "style_17", + "tag": "span", + "text": "简体中文", + "width": "50px" + }, + "n34": { + "children": [ + "n32", + "n33" + ], + "height": "32px", + "originalClass": "arco-select-view-selector", + "styleId": "style_18", + "tag": "span", + "width": "50px" + }, + "n35": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n36": { + "children": [ + "n35" + ], + "height": "30px", + "originalClass": "arco-select-arrow-icon", + "styleId": "style_19", + "tag": "div", + "width": "12px" + }, + "n37": { + "children": [ + "n36" + ], + "height": "32px", + "originalClass": "arco-select-suffix", + "styleId": "style_20", + "tag": "div", + "width": "12px" + }, + "n38": { + "children": [ + "n34", + "n37" + ], + "height": "32px", + "originalClass": "arco-select-view", + "styleId": "style_21", + "tag": "div", + "width": "86px" + }, + "n39": { + "children": [ + "n38" + ], + "height": "32px", + "originalClass": "arco-select arco-select-single arco-select-size-default arco-select-no-border", + "styleId": "style_22", + "tag": "div", + "width": "86px" + }, + "n4": { + "children": [ + "n3" + ], + "height": "24px", + "originalClass": "style-logo-NxwZ7", + "styleId": "style_3", + "tag": "span", + "width": "24px" + }, + "n40": { + "children": [ + "n39" + ], + "height": "32px", + "originalClass": "style-locale-select-253ti", + "styleId": "style_23", + "tag": "div", + "width": "86px" + }, + "n41": { + "height": "18.8516px", + "originalClass": "arco-link arco-link-hoverless style-help-doc-link-O9aag", + "styleId": "style_24", + "tag": "a", + "text": "帮助文档", + "width": "48px" + }, + "n42": { + "height": "12px", + "originalClass": "arco-divider arco-divider-vertical", + "styleId": "style_10", + "tag": "div", + "width": "1px" + }, + "n43": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n44": { + "originalClass": "style-vote-count-CHG5G", + "styleId": "style_25", + "tag": "span", + "text": "71" + }, + "n45": { + "children": [ + "n43", + "n44" + ], + "height": "36px", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6", + "styleId": "style_26", + "tag": "button", + "width": "70.5547px" + }, + "n46": { + "children": [ + "n45" + ], + "height": "36px", + "originalClass": "style-vote-2aPPM", + "styleId": "style_27", + "tag": "div", + "width": "70.5547px" + }, + "n47": { + "children": [ + "n46" + ], + "height": "36px", + "originalClass": "arco-space-item", + "styleId": "style_28", + "tag": "div", + "width": "70.5547px" + }, + "n48": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n49": { + "originalClass": "style-vote-count-CHG5G", + "styleId": "style_25", + "tag": "span", + "text": "126" + }, + "n5": { + "height": "30px", + "originalClass": "style-title-3bZPr", + "styleId": "style_4", + "tag": "span", + "text": "线性主题 主题预览", + "width": "160px" + }, + "n50": { + "children": [ + "n48", + "n49" + ], + "height": "36px", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6", + "styleId": "style_26", + "tag": "button", + "width": "80.0391px" + }, + "n51": { + "children": [ + "n50" + ], + "height": "36px", + "originalClass": "style-vote-2aPPM", + "styleId": "style_27", + "tag": "div", + "width": "80.0391px" + }, + "n52": { + "children": [ + "n51" + ], + "height": "36px", + "originalClass": "arco-space-item", + "styleId": "style_23", + "tag": "div", + "width": "80.0391px" + }, + "n53": { + "children": [ + "n47", + "n52" + ], + "height": "36px", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "styleId": "style_29", + "tag": "div", + "width": "162.594px" + }, + "n54": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n55": { + "styleId": "style_30", + "tag": "span", + "text": "查看配置详情" + }, + "n56": { + "children": [ + "n54", + "n55" + ], + "height": "36px", + "originalClass": "arco-btn arco-btn-secondary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6", + "styleId": "style_31", + "tag": "button", + "width": "142px" + }, + "n57": { + "children": [ + "n56" + ], + "height": "36px", + "originalClass": "arco-space-item", + "styleId": "style_32", + "tag": "div", + "width": "142px" + }, + "n58": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n59": { + "styleId": "style_33", + "tag": "span", + "text": "复制主题" + }, + "n6": { + "height": "22px", + "originalClass": "arco-tag-content", + "styleId": "style_5", + "tag": "span", + "text": "0.0.3", + "width": "28.8984px" + }, + "n60": { + "children": [ + "n58", + "n59" + ], + "height": "36px", + "originalClass": "arco-btn arco-btn-primary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6", + "styleId": "style_34", + "tag": "button", + "width": "114px" + }, + "n61": { + "children": [ + "n60" + ], + "styleId": "style_35", + "tag": "span" + }, + "n62": { + "children": [ + "n61" + ], + "styleId": "style_35", + "tag": "span" + }, + "n63": { + "children": [ + "n62" + ], + "height": "36px", + "originalClass": "arco-space-item", + "styleId": "style_23", + "tag": "div", + "width": "114px" + }, + "n64": { + "children": [ + "n57", + "n63" + ], + "height": "36px", + "originalClass": "arco-space arco-space-horizontal arco-space-align-center", + "styleId": "style_7", + "tag": "div", + "width": "264px" + }, + "n65": { + "children": [ + "n13", + "n14", + "n30", + "n31", + "n40", + "n41", + "n42", + "n53", + "n64" + ], + "height": "36px", + "originalClass": "style-nav-actions-3V1E0", + "styleId": "style_36", + "tag": "div", + "width": "925.594px" + }, + "n66": { + "children": [ + "n11", + "n65" + ], + "height": "60px", + "originalClass": "style-nav-2BWoO", + "styleId": "style_37", + "tag": "div", + "width": "1800px" + }, + "n67": { + "children": [ + "n66" + ], + "height": "60px", + "originalClass": "arco-layout-header page-nav-1VbLA", + "styleId": "style_38", + "tag": "header", + "width": "1800px" + }, + "n68": { + "height": "855px", + "styleId": "style_39", + "tag": "iframe", + "width": "1800px" + }, + "n69": { + "children": [ + "n68" + ], + "height": "855px", + "styleId": "style_40", + "tag": "div", + "width": "1800px" + }, + "n7": { + "children": [ + "n6" + ], + "height": "24px", + "originalClass": "arco-tag arco-tag-arcoblue arco-tag-checked arco-tag-size-default", + "styleId": "style_6", + "tag": "div", + "width": "46.8984px" + }, + "n70": { + "children": [ + "n67", + "n69" + ], + "height": "915px", + "originalClass": "arco-layout page-page-TbnIU", + "styleId": "style_41", + "tag": "section", + "width": "1800px" + }, + "n71": { + "children": [ + "n70" + ], + "height": "915px", + "id": "root", + "styleId": "style_42", + "tag": "div", + "width": "1800px" + }, + "n72": { + "height": "0px", + "id": "arco-dp-survey", + "styleId": "style_42", + "tag": "div", + "width": "1800px" + }, + "n73": { + "height": "0px", + "originalClass": "dp-feedback", + "styleId": "style_42", + "tag": "div", + "width": "1800px" + }, + "n74": { + "children": [ + "n73" + ], + "height": "0px", + "id": "dp-bridge-feedback", + "originalClass": "dp-bridge", + "styleId": "style_42", + "tag": "div", + "width": "1800px" + }, + "n75": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n76": { + "children": [ + "n75" + ], + "height": "40px", + "originalClass": "arco-btn arco-btn-primary arco-btn-size-default arco-btn-shape-circle arco-btn-icon-only", + "styleId": "style_43", + "tag": "button", + "width": "40px" + }, + "n77": { + "children": [ + "n71", + "n72", + "n74", + "n76" + ], + "height": "915px", + "styleId": "style_44", + "tag": "body", + "width": "1800px" + }, + "n78": { + "children": [ + "n77" + ], + "tag": "root" + }, + "n8": { + "_innerHTML": "", + "originalClass": "[object SVGAnimatedString]", + "tag": "svg" + }, + "n9": { + "children": [ + "n4", + "n5", + "n7", + "n8" + ], + "height": "30px", + "originalClass": "arco-row arco-row-align-center arco-row-justify-start", + "styleId": "style_7", + "tag": "div", + "width": "262.898px" + } + }, + "root": "n78" +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/structure/styles.json b/AI-Arco-Design-Themes-complete/structure/styles.json new file mode 100644 index 0000000..e15262f --- /dev/null +++ b/AI-Arco-Design-Themes-complete/structure/styles.json @@ -0,0 +1,717 @@ +{ + "styles": { + "style_1": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "20px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "20px", + "margin": "0px 12px 0px 0px", + "marginInlineEnd": "12px", + "paddingBlockEnd": "5px", + "paddingBlockStart": "5px", + "paddingInlineEnd": "5px", + "paddingInlineStart": "5px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-7 whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-3 mb-0 ml-0 p-1 overflow-visible" + }, + "style_10": { + "custom": { + "border": "0px 0px 0px 1px none none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(78, 89, 105) rgb(229, 230, 235)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 20px", + "marginInlineEnd": "20px", + "marginInlineStart": "20px", + "minWidth": "1px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static max-w-0 font-normal leading-none whitespace-nowrap visible mt-0 mr-5 mb-0 ml-5 p-0 overflow-visible" + }, + "style_11": { + "custom": { + "border": "0px none rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "clip", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-3 whitespace-nowrap border-0 visible m-0 p-0" + }, + "style_12": { + "custom": { + "border": "0px none rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "borderRadius": "50%", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-3 whitespace-nowrap border-0 visible m-0 p-0 overflow-hidden" + }, + "style_13": { + "custom": { + "background": "rgb(201, 205, 212) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(201, 205, 212)", + "border": "2px solid rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "borderRadius": "50%", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "inline-flex relative items-center z-0 font-normal leading-3 whitespace-nowrap border-2 visible m-0 p-0 overflow-visible" + }, + "style_14": { + "custom": { + "background": "rgb(201, 205, 212) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(201, 205, 212)", + "border": "2px solid rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "borderRadius": "50%", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "left": "0px", + "margin": "0px 0px 0px -6.5px", + "marginInlineStart": "-6.5px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "inline-flex relative items-center z-0 font-normal leading-3 whitespace-nowrap border-2 visible mt-0 mr-0 mb-0 -ml-1.5 p-0 overflow-visible" + }, + "style_15": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-3 whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" + }, + "style_16": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "-0.09375px", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "insetBlockEnd": "-0.09375px", + "insetBlockStart": "16px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "clip", + "right": "0px", + "textAlign": "start", + "textOverflow": "ellipsis", + "top": "16px", + "transform": "matrix(1, 0, 0, 1, 0, -8.04688)" + }, + "tw": "block absolute -z-0 font-normal leading-none whitespace-nowrap border-0 opacity-0 visible cursor-pointer m-0 p-0" + }, + "style_17": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textOverflow": "ellipsis" + }, + "tw": "block static font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-hidden" + }, + "style_18": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "right": "0px", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "flex relative font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-hidden" + }, + "style_19": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_2": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "overflow": "clip", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0" + }, + "style_20": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-1 p-0 overflow-visible" + }, + "style_21": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "2px", + "bottom": "0px", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 20px 0px 0px", + "paddingInlineEnd": "20px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s linear, padding linear" + }, + "tw": "flex relative font-normal leading-7 text-left whitespace-nowrap border-0 visible cursor-pointer m-0 pt-0 pr-5 pb-0 pl-0 overflow-visible" + }, + "style_22": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "inline-block relative font-normal leading-none whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_23": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" + }, + "style_24": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "borderRadius": "2px", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip", + "transition": "0.1s linear" + }, + "tw": "block static font-normal leading-tight whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_25": { + "custom": { + "border": "0px none rgb(169, 174, 184)", + "borderColor": "rgb(169, 174, 184)", + "color": "rgb(169, 174, 184)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "margin": "0px 0px 0px 6px", + "marginInlineStart": "6px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-medium leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-1.5 p-0 overflow-visible" + }, + "style_26": { + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "18px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "padding": "0px 16px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s linear" + }, + "tw": "block relative font-medium leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-4 pb-0 pl-4 overflow-visible" + }, + "style_27": { + "custom": { + "border": "0px none rgb(187, 191, 196)", + "borderColor": "rgb(187, 191, 196)", + "color": "rgb(187, 191, 196)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static justify-center items-center font-normal leading-tight whitespace-nowrap border-0 visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_28": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 12px 0px 0px", + "marginInlineEnd": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-none whitespace-nowrap border-0 visible mt-0 mr-3 mb-0 ml-0 p-0 overflow-visible" + }, + "style_29": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 12px 0px 0px", + "marginInlineEnd": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-none whitespace-nowrap border-0 visible mt-0 mr-3 mb-0 ml-0 p-0 overflow-visible" + }, + "style_3": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "2px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 4px 0px 0px", + "marginInlineEnd": "4px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static font-normal leading-none whitespace-nowrap border-0 visible mt-0 mr-1 mb-0 ml-0 p-0 overflow-visible" + }, + "style_30": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-medium leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" + }, + "style_31": { + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "18px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 16px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s linear" + }, + "tw": "inline-block relative font-medium leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-4 pb-0 pl-4 overflow-visible" + }, + "style_32": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 8px 0px 0px", + "marginInlineEnd": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-none whitespace-nowrap border-0 visible mt-0 mr-2 mb-0 ml-0 p-0 overflow-visible" + }, + "style_33": { + "custom": { + "border": "0px none rgb(255, 255, 255)", + "borderColor": "rgb(255, 255, 255)", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "margin": "0px 0px 0px 8px", + "marginInlineStart": "8px", + "minHeight": "0px", + "minWidth": "0px", + "textOverflow": "clip" + }, + "tw": "inline static font-medium leading-snug text-center whitespace-nowrap border-0 visible cursor-pointer mt-0 mr-0 mb-0 ml-2 p-0 overflow-visible" + }, + "style_34": { + "custom": { + "background": "rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(22, 93, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "18px", + "borderStyle": "solid", + "bottom": "0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 16px", + "paddingInlineEnd": "16px", + "paddingInlineStart": "16px", + "right": "0px", + "textOverflow": "clip", + "top": "0px", + "transition": "0.1s linear" + }, + "tw": "inline-block relative font-medium leading-snug text-center whitespace-nowrap border visible cursor-pointer m-0 pt-0 pr-4 pb-0 pl-4 overflow-visible" + }, + "style_35": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" + }, + "style_36": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static justify-end items-center font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" + }, + "style_37": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "bottom": "0px", + "boxShadow": "rgb(229, 230, 235) 0px 1px 0px 0px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "left": "0px", + "minHeight": "0px", + "minWidth": "0px", + "padding": "0px 20px 0px 16px", + "paddingInlineEnd": "20px", + "paddingInlineStart": "16px", + "right": "0px", + "textAlign": "start", + "textOverflow": "clip", + "top": "0px" + }, + "tw": "flex relative justify-between items-center z-50 font-normal leading-none border-0 visible m-0 pt-0 pr-5 pb-0 pl-4 overflow-visible" + }, + "style_38": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static shrink-0 font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_39": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "overflow": "clip", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "inline static font-normal leading-tight border-0 visible m-0 p-0" + }, + "style_4": { + "custom": { + "border": "0px none rgb(29, 33, 41)", + "borderColor": "rgb(29, 33, 41)", + "color": "rgb(29, 33, 41)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "20px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "tw": "block static max-w-xs font-semibold leading-7 whitespace-nowrap border-0 visible m-0 p-0 overflow-hidden" + }, + "style_40": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_41": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static flex-col grow basis-1/12 font-normal leading-tight border-0 visible m-0 p-0 overflow-hidden" + }, + "style_42": { + "custom": { + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "0px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0 overflow-visible" + }, + "style_43": { + "custom": { + "background": "rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(22, 93, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "50%", + "borderStyle": "solid", + "bottom": "50px", + "boxShadow": "rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px", + "color": "rgb(255, 255, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "20px", + "insetBlockEnd": "50px", + "insetBlockStart": "825px", + "insetInlineEnd": "50px", + "insetInlineStart": "1710px", + "left": "1710px", + "lineHeight": "31.43px", + "minHeight": "0px", + "minWidth": "0px", + "right": "50px", + "textOverflow": "clip", + "top": "825px", + "transition": "0.1s linear" + }, + "tw": "block fixed font-normal text-center whitespace-nowrap border visible cursor-pointer m-0 p-0 overflow-visible" + }, + "style_44": { + "custom": { + "background": "rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(255, 255, 255)", + "border": "0px none rgb(0, 0, 0)", + "borderColor": "rgb(0, 0, 0)", + "color": "rgb(0, 0, 0)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "14px", + "minHeight": "0px", + "minWidth": "1000px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static font-normal leading-tight border-0 visible m-0 p-0" + }, + "style_5": { + "custom": { + "border": "0px none rgb(22, 93, 255)", + "borderColor": "rgb(22, 93, 255)", + "color": "rgb(22, 93, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "ellipsis" + }, + "tw": "block static grow basis-1/12 font-medium leading-snug whitespace-nowrap border-0 visible m-0 p-0 overflow-hidden" + }, + "style_6": { + "custom": { + "background": "rgb(232, 243, 255) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(232, 243, 255)", + "border": "1px solid rgba(0, 0, 0, 0)", + "borderColor": "rgba(0, 0, 0, 0)", + "borderRadius": "2px", + "borderStyle": "solid", + "color": "rgb(22, 93, 255)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 0px 0px 4px", + "marginInlineStart": "4px", + "padding": "0px 8px", + "paddingInlineEnd": "8px", + "paddingInlineStart": "8px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-medium leading-snug whitespace-nowrap border visible mt-0 mr-0 mb-0 ml-1 pt-0 pr-2 pb-0 pl-2 overflow-visible" + }, + "style_7": { + "custom": { + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-normal leading-none whitespace-nowrap border-0 visible m-0 p-0 overflow-visible" + }, + "style_8": { + "custom": { + "border": "0px 0px 0px 1px none none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(78, 89, 105) rgb(229, 230, 235)", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "12px", + "margin": "0px 12px", + "marginInlineEnd": "12px", + "marginInlineStart": "12px", + "minWidth": "1px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "block static max-w-0 font-normal leading-none whitespace-nowrap visible mt-0 mr-3 mb-0 ml-3 p-0 overflow-visible" + }, + "style_9": { + "custom": { + "background": "rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box", + "backgroundColor": "rgb(242, 243, 245)", + "border": "0px none rgb(78, 89, 105)", + "borderColor": "rgb(78, 89, 105)", + "borderRadius": "30px", + "color": "rgb(78, 89, 105)", + "fontFamily": "system-ui, -apple-system, system-ui, \"segoe ui\", Roboto", + "fontSize": "13px", + "padding": "3px 12px", + "paddingBlockEnd": "3px", + "paddingBlockStart": "3px", + "paddingInlineEnd": "12px", + "paddingInlineStart": "12px", + "textAlign": "start", + "textOverflow": "clip" + }, + "tw": "flex static items-center font-medium leading-tight whitespace-nowrap border-0 visible cursor-pointer m-0 pt-0.5 pr-3 pb-0.5 pl-3 overflow-visible" + } + } +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/style.css b/AI-Arco-Design-Themes-complete/style.css new file mode 100644 index 0000000..db62d34 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/style.css @@ -0,0 +1,666 @@ +@font-face { + font-family: 'font'; + src: url('assets/fonts/font-1.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'font'; + src: url('assets/fonts/font-3.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'font'; + src: url('assets/fonts/font-5.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'font'; + src: url('assets/fonts/font-7.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'font'; + src: url('assets/fonts/font-9.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; +} + + + +.style_1 { + margin: 0px 12px 0px 0px; + margin-inline-end: 12px; + padding-inline-start: 5px; + padding-inline-end: 5px; + padding-block-start: 5px; + padding-block-end: 5px; + color: rgb(78, 89, 105); + font-size: 20px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + border-radius: 20px; +} + +.style_2 { + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + border-radius: 2px; + overflow: clip; +} + +.style_3 { + margin: 0px 4px 0px 0px; + margin-inline-end: 4px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + border-radius: 2px; +} + +.style_4 { + color: rgb(29, 33, 41); + font-size: 20px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_5 { + color: rgb(22, 93, 255); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(22, 93, 255); + border-color: rgb(22, 93, 255); +} + +.style_6 { + margin: 0px 0px 0px 4px; + padding: 0px 8px; + margin-inline-start: 4px; + padding-inline-start: 8px; + padding-inline-end: 8px; + color: rgb(22, 93, 255); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 1px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 2px; + background: rgb(232, 243, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(232, 243, 255); +} + +.style_7 { + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_8 { + min-width: 1px; + margin: 0px 12px; + margin-inline-start: 12px; + margin-inline-end: 12px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px 0px 0px 1px none none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(78, 89, 105) rgb(229, 230, 235); +} + +.style_9 { + padding: 3px 12px; + padding-inline-start: 12px; + padding-inline-end: 12px; + padding-block-start: 3px; + padding-block-end: 3px; + color: rgb(78, 89, 105); + font-size: 13px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + border-radius: 30px; + background: rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(242, 243, 245); +} + +.style_10 { + min-width: 1px; + margin: 0px 20px; + margin-inline-start: 20px; + margin-inline-end: 20px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px 0px 0px 1px none none none solid rgb(78, 89, 105) rgb(78, 89, 105) rgb(78, 89, 105) rgb(229, 230, 235); +} + +.style_11 { + min-width: 0px; + min-height: 0px; + color: rgb(255, 255, 255); + font-size: 13px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + overflow: clip; +} + +.style_12 { + color: rgb(255, 255, 255); + font-size: 13px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); + border-radius: 50%; +} + +.style_13 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(255, 255, 255); + font-size: 13px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 2px solid rgb(255, 255, 255); + border-style: solid; + border-color: rgb(255, 255, 255); + border-radius: 50%; + background: rgb(201, 205, 212) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(201, 205, 212); +} + +.style_14 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 0px -6.5px; + margin-inline-start: -6.5px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(255, 255, 255); + font-size: 13px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 2px solid rgb(255, 255, 255); + border-style: solid; + border-color: rgb(255, 255, 255); + border-radius: 50%; + background: rgb(201, 205, 212) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(201, 205, 212); +} + +.style_15 { + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_16 { + min-width: 0px; + min-height: 0px; + top: 16px; + right: 0px; + bottom: -0.09375px; + left: 0px; + inset-block-start: 16px; + inset-block-end: -0.09375px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: ellipsis; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + overflow: clip; + transform: matrix(1, 0, 0, 1, 0, -8.04688); +} + +.style_17 { + color: rgb(29, 33, 41); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: ellipsis; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_18 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_19 { + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_20 { + margin: 0px 0px 0px 4px; + margin-inline-start: 4px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); +} + +.style_21 { + min-width: 0px; + min-height: 0px; + padding: 0px 20px 0px 0px; + padding-inline-end: 20px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(29, 33, 41); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + border-radius: 2px; + transition: 0.1s linear, padding linear; +} + +.style_22 { + min-width: 0px; + min-height: 0px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_23 { + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_24 { + color: rgb(29, 33, 41); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(29, 33, 41); + border-color: rgb(29, 33, 41); + border-radius: 2px; + transition: 0.1s linear; +} + +.style_25 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 0px 6px; + margin-inline-start: 6px; + color: rgb(169, 174, 184); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 0px none rgb(169, 174, 184); + border-color: rgb(169, 174, 184); +} + +.style_26 { + padding: 0px 16px; + padding-inline-start: 16px; + padding-inline-end: 16px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 1px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 18px; + background: rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(242, 243, 245); + transition: 0.1s linear; +} + +.style_27 { + min-width: 0px; + min-height: 0px; + color: rgb(187, 191, 196); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(187, 191, 196); + border-color: rgb(187, 191, 196); +} + +.style_28 { + margin: 0px 12px 0px 0px; + margin-inline-end: 12px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_29 { + margin: 0px 12px 0px 0px; + margin-inline-end: 12px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_30 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 0px 8px; + margin-inline-start: 8px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_31 { + min-width: 0px; + min-height: 0px; + padding: 0px 16px; + padding-inline-start: 16px; + padding-inline-end: 16px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 1px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 18px; + background: rgb(242, 243, 245) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(242, 243, 245); + transition: 0.1s linear; +} + +.style_32 { + margin: 0px 8px 0px 0px; + margin-inline-end: 8px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_33 { + min-width: 0px; + min-height: 0px; + margin: 0px 0px 0px 8px; + margin-inline-start: 8px; + color: rgb(255, 255, 255); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 0px none rgb(255, 255, 255); + border-color: rgb(255, 255, 255); +} + +.style_34 { + min-width: 0px; + min-height: 0px; + padding: 0px 16px; + padding-inline-start: 16px; + padding-inline-end: 16px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(255, 255, 255); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-overflow: clip; + border: 1px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 18px; + background: rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(22, 93, 255); + transition: 0.1s linear; +} + +.style_35 { + min-width: 0px; + min-height: 0px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_36 { + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); +} + +.style_37 { + min-width: 0px; + min-height: 0px; + padding: 0px 20px 0px 16px; + padding-inline-start: 16px; + padding-inline-end: 20px; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + color: rgb(78, 89, 105); + font-size: 12px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(78, 89, 105); + border-color: rgb(78, 89, 105); + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); + box-shadow: rgb(229, 230, 235) 0px 1px 0px 0px; +} + +.style_38 { + color: rgb(0, 0, 0); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_39 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + overflow: clip; +} + +.style_40 { + color: rgb(0, 0, 0); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_41 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_42 { + min-width: 0px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); +} + +.style_43 { + min-width: 0px; + min-height: 0px; + top: 825px; + right: 50px; + bottom: 50px; + left: 1710px; + inset-inline-start: 1710px; + inset-inline-end: 50px; + inset-block-start: 825px; + inset-block-end: 50px; + color: rgb(255, 255, 255); + font-size: 20px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + line-height: 31.43px; + text-overflow: clip; + border: 1px solid rgba(0, 0, 0, 0); + border-style: solid; + border-color: rgba(0, 0, 0, 0); + border-radius: 50%; + background: rgb(22, 93, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(22, 93, 255); + box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; + transition: 0.1s linear; +} + +.style_44 { + min-width: 1000px; + min-height: 0px; + color: rgb(0, 0, 0); + font-size: 14px; + font-family: system-ui, -apple-system, system-ui, "segoe ui", Roboto; + text-align: start; + text-overflow: clip; + border: 0px none rgb(0, 0, 0); + border-color: rgb(0, 0, 0); + background: rgb(255, 255, 255) none repeat scroll 0% 0% / auto padding-box border-box; + background-color: rgb(255, 255, 255); +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/theme.json b/AI-Arco-Design-Themes-complete/theme.json new file mode 100644 index 0000000..0b235fb --- /dev/null +++ b/AI-Arco-Design-Themes-complete/theme.json @@ -0,0 +1,562 @@ +{ + "animations": [], + "assets": { + "backgroundImages": [], + "images": [ + { + "alt": "logo", + "position": "static", + "siblingImgCount": 1, + "src": "data:image/png;base64,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QC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg8D/B1bbK4X5L0YBAAAAAElFTkSuQmCC", + "zIndex": "auto" + }, + { + "alt": "", + "position": "static", + "siblingImgCount": 1, + "src": "", + "zIndex": "auto" + }, + { + "alt": "", + "position": "static", + "siblingImgCount": 1, + "src": "data:image/jpeg;base64,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", + "zIndex": "auto" + }, + { + "alt": "", + "position": "static", + "siblingImgCount": 1, + "src": "data:image/jpeg;base64,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", + "zIndex": "auto" + }, + { + "alt": "", + "position": "static", + "siblingImgCount": 1, + "src": "data:image/png;base64,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", + "zIndex": "auto" + }, + { + "alt": "", + "position": "static", + "siblingImgCount": 1, + "src": "data:image/jpeg;base64,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", + "zIndex": "auto" + } + ], + "svgCount": 9 + }, + "colors": { + "background": [ + { + "count": 5, + "tags": [ + "div" + ], + "value": "rgb(201, 205, 212)" + }, + { + "count": 3, + "tags": [ + "body" + ], + "value": "rgb(255, 255, 255)" + }, + { + "count": 3, + "tags": [ + "button" + ], + "value": "rgb(242, 243, 245)" + }, + { + "count": 2, + "tags": [ + "button" + ], + "value": "rgb(22, 93, 255)" + }, + { + "count": 2, + "tags": [ + "div" + ], + "value": "rgb(29, 33, 41)" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "rgb(232, 243, 255)" + }, + { + "count": 1, + "tags": [ + "span" + ], + "value": "rgb(229, 230, 235)" + } + ], + "border": [ + { + "count": 192, + "tags": [ + "div", + "a", + "svg", + "path", + "span", + "img" + ], + "value": "rgb(78, 89, 105)" + }, + { + "count": 110, + "tags": [ + "div", + "span", + "img", + "svg", + "path" + ], + "value": "rgb(255, 255, 255)" + }, + { + "count": 90, + "tags": [ + "body" + ], + "value": "rgb(0, 0, 0)" + }, + { + "count": 35, + "tags": [ + "span", + "div", + "input", + "a" + ], + "value": "rgb(29, 33, 41)" + }, + { + "count": 10, + "tags": [ + "div" + ], + "value": "rgb(187, 191, 196)" + }, + { + "count": 10, + "tags": [ + "span" + ], + "value": "rgb(169, 174, 184)" + } + ], + "text": [ + { + "count": 43, + "tags": [ + "div", + "a", + "svg", + "path", + "span", + "img", + "button" + ], + "value": "rgb(78, 89, 105)" + }, + { + "count": 24, + "tags": [ + "div", + "span", + "img", + "button", + "svg", + "path" + ], + "value": "rgb(255, 255, 255)" + }, + { + "count": 19, + "tags": [ + "body" + ], + "value": "rgb(0, 0, 0)" + }, + { + "count": 7, + "tags": [ + "span", + "div", + "input", + "a" + ], + "value": "rgb(29, 33, 41)" + }, + { + "count": 2, + "tags": [ + "div", + "span" + ], + "value": "rgb(22, 93, 255)" + }, + { + "count": 2, + "tags": [ + "div" + ], + "value": "rgb(187, 191, 196)" + }, + { + "count": 2, + "tags": [ + "span" + ], + "value": "rgb(169, 174, 184)" + } + ] + }, + "cssVariables": {}, + "lineWidth": [ + { + "count": 39, + "tags": [ + "textarea", + "div", + "button" + ], + "value": "1px" + }, + { + "count": 25, + "tags": [ + "div" + ], + "value": "2px" + }, + { + "count": 4, + "tags": [ + "div" + ], + "value": "0px 0px 0px 1px" + } + ], + "radius": [ + { + "count": 11, + "tags": [ + "div", + "span", + "button" + ], + "value": "50%" + }, + { + "count": 6, + "tags": [ + "span", + "img", + "div", + "a" + ], + "value": "2px" + }, + { + "count": 4, + "tags": [ + "button" + ], + "value": "18px" + }, + { + "count": 1, + "tags": [ + "a" + ], + "value": "20px" + }, + { + "count": 1, + "tags": [ + "span" + ], + "value": "30px" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "2px 0px 0px" + } + ], + "shadow": { + "box": [ + { + "count": 1, + "tags": [ + "div" + ], + "value": "rgb(229, 230, 235) 0px 1px 0px 0px" + }, + { + "count": 1, + "tags": [ + "button" + ], + "value": "rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "rgba(0, 0, 0, 0.1) 0px 4px 10px 0px" + } + ], + "text": [] + }, + "spacing": [ + { + "count": 7, + "tags": [ + "div", + "svg", + "span" + ], + "value": "8px" + }, + { + "count": 6, + "tags": [ + "a", + "div", + "span" + ], + "value": "12px" + }, + { + "count": 5, + "tags": [ + "div" + ], + "value": "20px" + }, + { + "count": 5, + "tags": [ + "div", + "button" + ], + "value": "16px" + }, + { + "count": 4, + "tags": [ + "div" + ], + "value": "-6.5px" + }, + { + "count": 3, + "tags": [ + "span", + "div" + ], + "value": "4px" + }, + { + "count": 2, + "tags": [ + "span" + ], + "value": "6px" + }, + { + "count": 1, + "tags": [ + "textarea" + ], + "value": "2px" + }, + { + "count": 1, + "tags": [ + "a" + ], + "value": "5px" + }, + { + "count": 1, + "tags": [ + "span" + ], + "value": "3px" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "-4px" + } + ], + "transitions": [ + { + "count": 91, + "tags": [ + "body" + ], + "value": "all" + }, + { + "count": 6, + "tags": [ + "a", + "button" + ], + "value": "0.1s linear" + }, + { + "count": 1, + "tags": [ + "div" + ], + "value": "0.1s linear, padding linear" + }, + { + "count": 1, + "tags": [ + "span" + ], + "value": "opacity 0.3s cubic-bezier(0.3, 1.3, 0.3, 1), transform 0.3s cubic-bezier(0.3, 1.3, 0.3, 1)" + } + ], + "typography": { + "families": [ + { + "count": 99, + "tags": [ + "body" + ], + "value": "\"system-ui\", -apple-system, \"system-ui\", \"segoe ui\", Roboto, Helvetica, Arial, \"sans-serif\", \"apple color emoji\", \"segoe ui emoji\", \"segoe ui symbol\"" + } + ], + "textStyles": [ + { + "count": 20, + "lineHeight": "18px", + "size": "12px", + "tags": [ + "div", + "span", + "img" + ], + "weight": "400" + }, + { + "count": 18, + "lineHeight": "21px", + "size": "14px", + "tags": [ + "body" + ], + "weight": "400" + }, + { + "count": 15, + "lineHeight": "0px", + "size": "13px", + "tags": [ + "div", + "span", + "img" + ], + "weight": "400" + }, + { + "count": 9, + "lineHeight": "25.144px", + "size": "16px", + "tags": [ + "svg", + "path" + ], + "weight": "500" + }, + { + "count": 8, + "lineHeight": "22.001px", + "size": "14px", + "tags": [ + "button", + "span" + ], + "weight": "500" + }, + { + "count": 4, + "lineHeight": "30px", + "size": "12px", + "tags": [ + "span", + "div", + "svg", + "path" + ], + "weight": "400" + }, + { + "count": 3, + "lineHeight": "30px", + "size": "20px", + "tags": [ + "a", + "svg", + "path" + ], + "weight": "400" + }, + { + "count": 3, + "lineHeight": "19.5px", + "size": "13px", + "tags": [ + "span", + "svg", + "path" + ], + "weight": "500" + }, + { + "count": 3, + "lineHeight": "30px", + "size": "14px", + "tags": [ + "div", + "span" + ], + "weight": "400" + }, + { + "count": 3, + "lineHeight": "31.43px", + "size": "20px", + "tags": [ + "button", + "svg", + "path" + ], + "weight": "400" + } + ] + } +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/topology/content-blocks.json b/AI-Arco-Design-Themes-complete/topology/content-blocks.json new file mode 100644 index 0000000..b374a62 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/topology/content-blocks.json @@ -0,0 +1,51 @@ +{ + "blocks": [ + { + "buttons": [ + { + "href": "https://arco.design/docs/designlab/guideline", + "text": "帮助文档" + }, + { + "text": "71", + "type": "button" + }, + { + "text": "126", + "type": "button" + }, + { + "text": "查看配置详情", + "type": "button" + }, + { + "text": "复制主题", + "type": "button" + } + ], + "forms": [], + "headings": [], + "images": [ + { + "alt": "logo", + "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAADwCAYAAAA+VemSAAAAAXNSR0IArs4c6QAAIABJREFUeF7tfQm0XFWV9q56LwMkgIGA5pGEbhCCDd2tMqgMtiCdNHQTSHBJFBUw5AWQHxASBBuUKWCbsBpIgkCYWhmEbokItAZF4Q8ikNB2/wxKGJNAgh0gkjmv6t77r+/ss++9VbxXd6i6N3Xf27VWrXrDrTt8Z39nD2efvUu7fdXzSF+KgCJQSARKSuBCjpvetCJgEFACqyAoAgVGQAlc4MHTW1cElMAqA4pAgRFQAhd48PTWFQElsMqAIlBgBJTABR48vXVFQAmsMqAIFBgBJXCBB09vXRFQAqsMKAIFRkAJXODB01tXBJTAKgOKQIERUAIXePD01hUBJbDKgCJQYASUwAUePL11RUAJrDKgCBQYASVwgQdPb10RUAKrDCgCBUZACVzgwdNbVwSUwCoDikCBEVACF3jw9NYVASWwyoAiUGAElMAFHjy9dUVACawyoAgUGAElcIEHT29dEVACqwwoAgVGQAlc4MHTW1cElMAqA4pAgRFQAhd48PTWFQElsMqAIlBgBJTABR48vXVFQAmsMqAIFBgBJXCBB09vXRFQAqsMKAIFRkAJXODB01tXBJTAKgOKQIERUAIXePD01hUBJbDKgCJQYASUwAUePL11RUAJrDKgCBQYASVwgQdPb10RUAKrDCgCBUZACVzgwdNbVwSUwCoDikCBEVACF3jw9NYVASWwyoAiUGAElMAFHjy9dUVACawyoAgUGAElcIEHT29dEVACqwwoAgVGQAlc4MHTW1cElMAqA4pAgRFQAhd48PTWFQElsMqAIlBgBJTABR48vXVFQAmsMqAIFBgBJXCBB09vXRFQAqsMKAIFRkAJXODB01tXBJTABZeBHbcn2n8s0f57EO1nP3fanghv/E9e6zYRvb+JaOU7RCvWEL2wguiF5UTPrSDC//RVTASUwAUcNxD26AOIDvkY0SH7Nv8AT/6R6OfP8hsE11dxEFACF2SsoE2nHG6J2wLS9vXYIPOPFxPdu7ggwAzw21QCt7kA7DiMaPp4ou4JtSZx1rcNTTx7oRI5a5ybPb8SuFkEM/x+93iimZPzJW794yiRMxzgFpxaCdwCEFt9ijG7El0/rTX+bavuDSY1NLL6yK1CtDXnUQK3BseWnaV7gkczJ5VqIsgtO3mTJ1Jt3CSAGXxdCZwBqGlOWSKiy09iXzfNy/M88zV8ylt+L5VwdiJ8ylt+T3MtaOI5C9N8U7/TagSUwK1GNMX5dhpGdMc5yU1mIarruuQ4jnnjZ/xdPuV2QNxyuey/Ozo6/J/DpI57+wseIbr4zrhH63FZIaAEzgrZmOfF8tDCb3MyRtyXEBSErVQqVK1WzTtM4LAWrte+IHJnZyeBxIMGDfJ/xt9FW8e5lx8v9uicBazd9bVtEFACbxvczVWTkhekBElBVhBXyCvad90mj1a9V6KX3iJavbZkNHH4NW53oq6dicbt7hmiCpFBYrwHDx5sSJ2EyAhunb1gG4I4wC+tBN5GApCUvGIm9/T00NatWwmfIO77Gz16cAnRb54r07JVJVq/pUQkvIVyDHHYusLmTwfs6dLEg106YC+PRo9kjQwCDxkyxNfKcbWxauJtJESIa+z21bppetvdy4C5chryCnFBXmjeJS97dOMvyvTsa2Umaals2RoErKCBwyQ0v5ujLKsx9KUSHXugQ9MnuDR6ZMkn8dChQw2poY3jvJTEcVBq/TFK4NZj2vCMScgrJjMIu2XLFvNeucah795TpqWvlA35iDiyjE9+y0edb2pI7lmNLGqZI9aipkHk0ye4NPbDnUYTg8TQynFNaiVxzsKkGjhfwNOQFxoXxIUG/tFvXJr90w4qUZmVrtG6Jda+5mdhL/5mqG31LczqgLRMWJDZ5bf5GXrZox2GejR9gkNfPaJkSLzddtv5vnEck1p94nxlSjVwTninIS+Iu3nzZnp3XYW+eUuJlr4aEBYkNhrYJ29HSBMbdltiiiZmc5kJaxaMyfMcIhICu+S5+B0vl758uENnHu3RLh8aQttvv30iEmMzxDka2MpFspTAOcDcDHmXv91DU+d10Oq1Vssa0nbwm7DsI6S2ZPZNafZ/WfGGo9Eh/xfkNUQGiV0iQ2DHamaP9u5y6baznFQkvnexR2frElPm0qUEzhjiNOSF2bxp0yZ64+0eOm1eB61aa7VruZNJW+4khKMMeQ2RJXDVYQNUEn6uC0P7RnaQtRWY0EgAqVoN7Vgyu7T3KI9uO6vqkxhmNZaa4rxgTkMT1y5mxfmmHhMXASVwXKRSHJeEvMZwdV3j727cuJGM5p3fQaveg5btICqDNB2GvKyBQc4gkMUkNp5x5J0aSzqsmX0/mAlsNLJbZRPbc2mfLsdo4pEjhtaY05EXIuwt1mSPODilPUYJnBa5iO+lIa9o3tdWbaXT5ovZDLJ2srYV8krgKhx5Tv0cQno2p8mSlrWx1cieQ/uMcujW/+PSriOG1gS24lxWSRwHpXTHKIHT4Rb5rUevjJ8eCc0r5H199VaaOq9Mq9Za0pZY47LmlWhz2USYW22a4oxG+xqN7HBQCyR2q8ZHVhJHDnvuByiBM4Ace3lPPDzeiT9I3jrNWx4UClohUBVa7413idhHBUkessQEEltNbEjs0D5dLt16VnpNfO4tEliLfVt6YAMElMAtFo9myPv1eWV6e62NMMNsNlpXfN7wOm+Lb7rX04k5LZq40hJNfO8TROfcrIGtVo2gErhVSBJX0UiveWE2I2DFpP0geaODUy18FHsqa06bwBYIDDJXjPG+T1c1tSbGXmLsKdZX8wgogZvH0JyhGfKy5gVxYSKDvDCbA59XMq9adKuxT8MmtZCY/WEQ2PjIbpX22d2jW89yUgW2QGK8W+3Hx364fnKgErgFA9kMeRGwWg2zGUtC1mQOlopgNsfbTNCCx+j7FJLogQi1WV7iwBaWmcbBJ04ZnVZN3PyoKYGbxLBZ8pp1XqzxGo07qGa5yKZntImWEk0MLRwsMTGJHWNOj6xLu4wDrWriOCj1fYwSuAn8rp/m0YmHx/NNa6PNSI+E5mWTmZeHBvlJGljz5Y1/8c7dxCMk+GpoA4RoYaOJOZ9alpjSklh94gRDETpUCZwON7pumkdTUpD3nT9vpS/OtmazpEKWBlstHE6NbCfyMkj1PjH7w/CN2bQ2S0wpzenZCz2as7D9njmleOT2NSVwCqiTkhdbAZHbvGbtFpo6r9NUzmCfFyZzp/V98TdJkWxfQeY0zLA5DQJzYAu+8biuILAlu5jiFgWYY0msga34QqkEjo+V6fh3xUnxl4qwWR6b8ZHbDPKeOrdEL6+SdV74voNrdhZlmaSR4DFjHop1Yps7bXxiXmaCOX3AXlhi8kzeNN6otxVnLzEuDBLPVk0ccwy0pE5soNAF8N/OTdbmBDWrsJ939Tsb6dTrPFoG8tpoc6lkM6zMJoXwpoTYt7RND6w1p9kX9teKyaGJBzl09dc6aNiwYaayR9wdTHgoNafjD61q4BhYHbKvRwu/ndyshekM7XvS7B5a8gq2/9ldRcbnBWk5gLWt1nljPHqMQwJz2iexMbEdOu5gl2ZPHULDhw839bWSvHSJKR5aSuAInPYfy+QNN8uOBy2ZDQp3PrqBLrzDtYTFvt5BoV1FxdO8H3x2LsdjCgL468MwqaGRHbrz/E468hM7GALHNaPlGivWeDT56pL2Y2ogcErgBuCg6/3Ci5KZzXI6+L/QwKf+6wb61e9hJUP7DqISAlWys6jtloriTk31x9UvMdldTF6VTvl8mWadMtz4wWle6Mc06SptqtYXdkrgPpBpRvPKKRHAOurbG+gPb8J8thsTbFWNYgWsoqlX4xOboBbnTX96nEf3X8IaOO1LNXHfyCmBe8GmFeTFaZG8ceDZG+jN90o2v5mragQVJNOKdDt/j/1f9oer9JlxLi28ZHjs+tJ9PZlq4t6RUQLX4TJmpEe/vjKdz9sbxBf/cAstWOTVVtNoqwyr1k4GRhPbIBai0tPGl2jWydu15CKqiT8IoxI4hAnIi4DVmJEtkTdzkpVrXJo0q0Ir35VKksmj2a27mzzOJFUvuRjA0n8dTGN3a92GDCVx7RgqgS0eIC26BLaSvAL1ync8mjTLpTfflRznPIi0ba7hV/XwXJoxiWjm5HgVLJPcrZI4QEsJTCBt6zVvvUCyD+fRynf6uwbGk3s0Y5JHMye1TvPW46kkZkQGPIHzIG+giQfCkgjISzRzUvYTlQa2BjiBk5BXGmYjshxunp20ny6EbvJVHq3op5qYNW/25A1PikdeTLRuUxIjvP8cO2A18Nhdie6/KJ7PG+4SiLVd5DhL606sb6JbQZJWnP3VnG6WvOGG5Emytp5fwZbNQCTxgCRwUs1brVZNWiS6JoDA0MLyggZGsj66+CHbKO7WOUPiqxGlLr42gL49P6XmDVs2Yt2AvMAR2MYl8vPLGc+BRuIBR+A05JUuge+tq9ADT3umN++GzVyQbeLBHk36TNkQOBWJ+0Fga8bxHs2cnNxsFssGKaf1lg0mQ/QmFssmDpGfX+7RpKtLA4rEA4rAzZD3+Teq9M3byrTq3dpKNxBbdLc/85jSgCRxM+SFZSONy8OWDcgK7QsCS5PxuNp4oJF4wBC4WfJOm1emdVuwe0gaZ6PDACfxM4kdOvMYGlAkboa8ICz2SoPAy/9UobseL9HSV1iL77BdiSYe7NJxnyITX0jan3gg+cQDgsA7DeOA1f5jo/1NkFI0AwQMmve0+TCZy+SV0JFItgDac6GUjO1wf/oAInEryAt8f/ioQ3Me6OTJUKxwD7OkR107ozyPR3/xkcGJSfzzZz065brkZn20hLTXEf2ewEm6BIpPBq2AGlYg77T5nbTeaF5bswob8UNNtE2Rc1MPyqGS5/Z7TWwCVk34vKJ5Qd75D7l04yNc+9r3cQ2Rbf/TEtGoEdyLKQ2JB0JXxH5N4LTkhXCZ5trzO7nouqkeiQ3p8rPNMEJ3e+lcIB0LyKHp4/uvOT1zEplEjaQvqQ8mAcF5Dzp04yPYYiiNym3jNmhfa9GgSAA2RnTtnJ7E9y726OwF/VcT91sCt4K8q9ZiGcOS12+sLbm9VtCMsIW7+HFht+njK/0usNWs2eyT9yGXbnpEtlVKKd1wdRLbHRGTo9mWKCR2Umni/kzifkvguP15w2YzNO/ytys0dX4HMXmlL690TpD+vL6zFpSTMb10pbAb99OdPr7qkxiBmOTJHu1TiaJl5H3YpZsWseZF32PzLtteyOZvbD7LlkSpO41exV07cwcINaf78WYGUOu6mF0CP0jeHpo6v9OSF2VfB5Hnm86iMerNsdqaUDVtR9wqtSKw9eY7rW/mHdcExtPCZE5rNiMgiIkR73mieU1ZIS5uUNMHCtaO2Y2IRBkPFRG4D5MpHo+WLkri+nHrdxo4Sa8ipERKwKrW52XBiiavwBmqCVXTAKxiNEkrSLwtdjE1G7DqlbyidWsmRrZ2eCexlHW3E2PIPeHJESSGTxyY01hqilu2tr+VrO1XBE7aMQHpkSj7+vrqrUbzImDFgSpbgM4XNpR+jdKCoomlIbYUdkPXAs+a082tE+etiVtrNoOgFl8bTzBtVPuoic12Dkxp4AhfGJMht3Ahckx0+r4ZVRo5YmjNElMcy6I/kbjfEPiKkzzqnhAv2ljbaGwrTZ3X4UebWfOi0Zg18fxGY3FEI2ROhxuA2f5B4eh0Kp84p9zplmveRR3kof61TIwSEIyoDxYUB2ASswZmIpc8h/YZhV5M6foTn32zR/c+EU9e4oz8tjqmXxA4iabovUtgsFRkAiqmwTYIjAE2qVexO1FDT3NiBxd2M76brZcMIWz3jC3EkM4/Ln1uM9Z5w9HmGxfZetB+sErqYofX06PEP2gyDj9Y2riY1qa7szm96wjeUIL0yzjm9PsbPfr8JUR5WzVRT5r0/4Un8ImHeXR9d7yZtE/y2jrNfrsTWe9NUXwu0Brw5URzwIzmPkIg9fQJiE6zOZ1KE1/lZSZ4Jx7u0fXT4uEZFjbJYKsPWHkmSYMbuPGnVOa0k2NsiQWJpR9T7bIdd0VMTuLn3vDoqO/gBpI/b+zbzvjAwhIYkI8e6ZkUybG7Rg+AkBcC9toqdAmUFp9SaN0KWBPklbHySSya2Jh/lsRmXdNpy8BWksmwIXkfdunGRR027ZSX4IxVYxqZhyybBMIdTIxctlbMafaJ0Z84IHGSroiz73dpzk+zK/2T4BFTHVpYAsOmvf1sj445MBr8MHnX/HkrTZ1bppdWWZ8srB1aQN7aUQgCW+zDoYMfd7fn6HSwTryttyK2jLxIjwR5/QAgIvqWvLZ9anRAsIEsw4ox2W9B7WlDZqrSOENilz68S/yuiLAcDjoftcqi5SgVwzL+UkEJ7NGJh3p0XTfS8BprX5BX+vOiufbX55a4S2BNtBldE8JLGa1EvY/Alm3FyckezUWnm11iOvEwl67vTi7A9WbzT5506NJ7EATEGrpYNNL/OInPG4W/jTHUZMCxJj5gT4duP4eMa4JJMU5PpidedOmE7yU16aPuMZ//F5LACBQ9PcejPSLqDUv+LTYm/O97m+nrvubl9D0OVjF5uVtCciGON0xhEgfZWhJNZZ+4ZIRO9r9GTUxyXVT2OPJij9ZtinYjervXVvm8IO9377HdFo3JbLPXTBNzKaeb7h57xzgIbHG6ZY/fn/hY09q0bFqbSrmjRuMEOUHF0N+9VDwSF47AIO95x3l0wQmNySZZVvB5sdb7hX+hUH9eCBeWisLkzXrwJDEhlF1k1zaxJILo9Df+kUkcV3OIUPL+1+QkbsZsDkebRfNygKrMTdwMtp3cOtVYSa0krywMBK1N2SfG74g1uDTjuCpNnTDYkBiR6ahSR4tfdOgL3xMrId603A5HFY7AMJOemUOR2hemM5YzQN5Z91XprsclicCS1y5rsOaFVxaVqNGK4bIZW5I37fvDshWxSmf9U9kncdwqFLizpCRuhrzhDCvRvGbTh5DWt2qAdevJWzMSxicOR/s52QPWzb9/y6VP7s3+cFRzNcjL5KuhhVtfiL4VktPXOQpGYI++eKhD13c3LnYWNp3vfXwLXXyXJBHge4NtppXsgslYwD6AvN1pYxL2OaDFgS3eDAFNLCSGOR3Hh0uqiVttNgfkBb7i86aLNqcRdrP2bgKDsvZeMXnT+3Y5tPCfy6bBeJQWhszc9AuXvntPsbRwYQjMywguPf197EZp3KoSsylM55dXbqRTriNa9Z7seAmEywidTdSQ7Ns0wpPmOyxwvK5ZT2JZYmqKxKjOuLH3OzvxMKLru5PfdW8BK/i8nLHGQSsTTzDBK6RN5jcxBktM0tY0aG/6rckOdR8drLc3evK16x06eEaJ1m3OKhaSHPeobxSIwB791RiXfnUFlxzt6yWCBtN55q099MAzdueLrEXWLBW11i+LArv2//U+sdXCdl3zshMrNPnQjtTm9CnX1rZxwf5obMbvnpDsLnF0n+S1ZnPQ+3hbt0+tXV5C/vTwoQ49ekWJunZjLdwoOIiJf9JVLj21LMuAZnL8G32jMASG73vpFIdOP9qm5vXxVBA2+L7LVmygv/9OySYPIBJqs4BSJhK0FnY5m5jTUpZH1onZnL7sS1WafAiTOKk5jSs8+UeuO73fHkRjRxKBxElffS0V8YYPm6QhZnMfGxOSXjPt8WzZ2AILxjXh5JkLJzs0/R85OBg1+d/9WJXOu604PZwLQmDWVosudehv92xMYARYsGx0/i1brfYV8tqIc46mXTxBDJM4lCJo6mxV6fIQiSGASQJb8a7f91F9aV5ZMweBg7zxHAJWsR5I8ASWPCEe9NEq3T2z00SkGwWz8LzvrqvSfmfZYgMtjpzHuv2EBxWGwDsOdegPN1DkAGB5Y/WajXTQea6NitolDfhobUfeek3Mub7B5gdOu7x8StU3p9No4oQyYQ6PMps5PVImxXYhr7lzflzZemgKAVTo0Ss8GrfHcNM9o5EZDQXwqRkevYm4SWZ5AWlGpPfvFIDAPKOO/7hDd5zb0XCnCYQOe3zvenQTXfQjmM8gryRrtHt0MfCJkRbI2kPK9Dg1mjhrEvdK3h9jTdealhZT2XKZ+VJRYnkPtDDnTffQRSc4dMY/bW8SOxoRGEUezr65Sv/xJOSm/YNZhSHwucdW6VtfaNx7SNZ+p167mR59zpLX1xL5RUUTy5v9QhCdtj6xbIAwtbby0cSxfN621LwB6sGWTuz+4snw4L0rdN+FQ00soZEfDBn6wcM9dPl9QuBtGeiMlqS2JnB4Q/fNZ1bp2E81zqgB+PB/D7+gQm/9GQQezGZ025rOvQ1QsE7MdaAQiJF9xa4xp084jP05CGOcva/RYmCtTs8znRexBAccf/I7l757dzgBBj/XbkxodYZV3HuNPk4sGsZwhyEV+p+5nSYgGEXgh57uoWk32ABdLgk+0U/T1xFtTWD2Z1DczKEfz3To7/66MYHhv/zpvc30iXPckOnM+bnFetVnbPX4iR5wJy7/skNTPredH5SJmzcdhUE4e+3fn6iEcpulxJDF0tSzQn5zO7/CvjASOyr0f68u0d5jtm846QGD37/aQ8dcjolfqpC273O2P4HtssAT36vSXl1DGs6eIPBj/7OZvnyNx9rXFk7jpIKivULRVFsTiosCcJ3kG87ooImHRK9tJnlq4Ldhwwb6/SubaercDtqwJVz2NYtdRUnuLs2xgiFr4bvPd+mIjw+LJPBrq3ro0AulmH97T1QFIDAvzr9+czXSf4EAPvjUZpp+Q6l2p1GasW+L79QGY9ik5qT9oz7u0e3n7RCZnBD3MSQAuGz5Bpp0tUfrkY1kN+BL8TlTL6xQ7oiNRpuIdIX+5RSXvnIkbzHs6yVWyF92h2qBt7ECaHMCYwC4IuHrC5xIAsN/u/PXm+mCO3hHDOoOF898rhetwJcLd4D49DiP7r9kx8gk/SQERgLMuTdupIVPwXoM542nLYMT9+pZHRcqTetVaM7JLp30eV5Lj0fgcAWRrO6xufO2NYE5KsvJDW8scCMJjNnzzke30Mw7IIB2+aiNZ8/4QxdO9oA/V6XP7Eu08JLhkdvk4l5DNPB+Z2yg9VukwIEtQGcK+7X7MlxvT2r9YFshdM6pLp10ROPAn2jgv+i2tbz8zL24SOZ7XFsTmJtcMYFfv9mJTIUD+Hf9egvNgAaWLW39gsCI9TKJZUKbNqFEs07ermXSIju4Rn9tA6+fG/x4s0LhzOYaVKRCaJXmfN2jk45oHEeRjTB7okKJbNBoYxlqWwLX1AR2q/T4VVXae3Rj8wdC+NBTqPMMhRFOnWyZnG+zE4Xx2HFohR6dNYTGRlQkSXqzcEHGdW+0Gri+2EHSs7XD8RKJxsRXoftmEv3d3zRO5ACB335nE33im0Gxw/ZdKiNqWwLz8Aca+PFZFUPgqFzW11f30KdnIgrdvwjs08FzyHSg+GzjLZVp6GNKy1y5mX73Un+yYGzVDrdKiy4r09/uFZ1K+eyyzTRxFqLuXB88n2IPaUasjQkc1jgwoX/Q3UPHfmZorFzWj53p0LrNQuB0wLTntzy67jSQN966NrQJSInEhbhrxb990aHJVzk2ASbeddoTK6sAzAenpL51R0dk0A+59I/99yb6yrU2CQiuhJrQaYcYSRxcteKiE3ro9GOGROaymj2ds3roqWX9SwNjQjt/kkczJ0WvaYO0wAHCiE9EXZHEH1UXSkZp9v0OzfkpfitWeZl6KQunVP7VaId+dWVnZC49Kpj+4OEtdNVPBgdFCsyJo3FPK+XNfK8QJjRIfNxBW+na7kGRkWgI740/r9Cl93AUsb2zheIP3YyY5MUZ4ctiUweWhfAzyJu07jQ3AGtfwY2PHLthU49yadbXGpvPEoH+zp1b6UePbxfsd27jdMoCEJjXgbtG9NDjV3G936gCZW/8yaFPzXBtF4Bim4GmV9HxyTQvyIt8ZtTBvvMx8puMS8na2Jp4oUfXLMyj2F98OiY/kgn8H9/y6PD9kRvQ9wuTHXLAp8x2aemrQ+rKAyW/ch7fKAiBYUb30DOzqzRq12GRfjDX+a3aCoPFJnBczStmc5i8U+eW6KW3SjTxYJeu/ErJaOF0mrg9zcd4BHFp9C4OLbmmI9KFkL3kB86QTRvhLYXtiUExCGx35Vw0uYemHxO9JQwD+8SLDp1wNVyXIiYgsGgmJW+4AwV6P730Fp6dnYiJB4HE6TpAFLqfrucSOk9cF6OSKSa/3/z3Jjr5OtmKCpOb4wDt6ooVhMBcHuWgPXvorhmlWLtwWAu7havzK1olSctUmH4gL8zmNWuxDg7NG0SejfB5Hk08yElN4kvuIrp5UTyd1z5HcfLLM9eUIuuIi/l8/q1VemAJNsLYFrOWwO3zTLV30uYExs1yS07eF1uhp79foY+M5JYZUb7cb19EsW7Rwu06BB+8r7jkFbO5nrzLoHlhefjWR5CKibYjaTVx8Zpiu6aH1vXTG0fTJQsNO7GOvLhEq94fEmyGMcPTnuazubPdvor9eu35qs/GQmmUMyb00PmTB5tgVpwCbxff6dKCR9q/GoeIiQlYTY4WmHrymo0It5TosRdk+UxIXOK+unYiRBeDLx3u0IUnpDOnz15AdO/i9pSX2rvyaMwuLt3/7XJk+1lJn8RW1FPnYvkIOeDS5F0J3ORoh/d09pjKCk/Pdv3GVVFa+P1NRJOv8uj5FdGkaPJGm/56XJ8XFwqbzSDvJXeV6MGlQW8iv3Kk0R5SLI/bjsCsRAeItF0RQeL7FrexX2jmrHhJL6J9UUf8gtsdemDJECp1hJretbH2bXsNzIwIlwlFrd8euuJLPTTlc0P8JaWoLKMVazxjSjfbhrNphjY4QVyz2TgVoZapPnmXSME5uwlB6mBDAG1PXd5LDAwd8sih08c3QeKbie59IktE0p8bUxZ6P6H9bNQLE6GpI75yI02Ko8QTAAAPVElEQVS4lDVvUIqp/Vcw2tqEDsAPiryV3AqN+lCFfnKRSx/ZhQuex6kL1c4k/uJhLs2N2Z833PcJQauL7yR6cKkt/yKF1sNF53wQg4bYQmKY1c30J25Hnxir1qNHEi38donGjGxM3xrte1uVHlhq134LtJe8EASWfcG8tRDlVit0xvgKnXM8FymLalwlw9iOJE7SJVAEDsTF+59/5NHPltiic6bfcdCfyO+6WCrZbgXwg4XEXKEi3FAtrTmNtqZP/jFa00Vpwlb9f+yuRPdfRLHIKwX8Xl65if7hcqt9TdG+4qThFoLAQbFu7uQnVQbvu6BCH909aFwVZUpDSNqJxGnIi0whmHzzH3LppkdskTlp62kqcHLLE95BEyaWLZRnEvttuVXTS9d2RRzPTcaR6CHZblHxBeCJGAMayD35h1ZRMP15xoz0YmlecUOw7gvf98J/c+lnWDpCYzZTS00qcaS/l7y+WRACh31hKXpeoQP2rNAd53h+7yDk/MZ5Pb8Ca8SUuqt9nGtEHdMceT266ZfI80ZXwLr+RGbpqC/fLURiUzTedoEwlo1Dp4cCW0lIjGfd1uvEY3YlWhhD8xpJ8jyzbo7J8L7FPXTJ3aEGAMZ8bv9qlCJfhSFwTQtJp2Lbj1RoxvEVOvUobgCGteGoPGl58JXvcFf7bRHYSkNeMZuheW/8pXRJ6LARU9EY3De5cRVOWyfKN6eDwBZM7Ol1ga2ojn7hiQqbH2abDRD5vo4+gOj6afGat4UL17/y5iY6dW4HrV4LzStLR8XahloYAkMkwr4wfDjpIbTgzB46dD9eGwaJ4wS1cD4mMX/m9Zoxidt8xnmFfV6YzfMedOmmX9oCc6boXKiZttm3yihFv2rNaU6Sse6J59LpE9icRvF4mNRJmozniWnSlqnAU6LO0L4X/RAxhKB3VtCorf2jz4XTwIFQ8pqmWQqBD4cesEOqdO/MKv3lR5KTGD4cNEfWaYIQtrndRP/wyWh6iZmH5HoQF9p3HjTvIi6ozhUjbYcEQ1ykTSarX4xdTp7rBgkeXjAhou40zGlpMp6mKyKWmGbfn83kCCynT+Bex3Fbpgp54feCvLf/CnueZQIM+77Fyp0vlAZm0efO9n5E2gZiuj7k0IKzakmcpBLFCyuITr42G4HrHk80c3IyYQN5QVyjeU3AqhfN6weskpG3ZjKUskU2sBVoYvaJhcRpG6qByJggV6yJN3E1OioNcWUylD3SwPT/vdZDJ14jhftsi1RTyE8K+DV/r3mdoYAEFhJzwXeTnGDN6a4RVbrlLDeVJhbAkSaI92//2NwQ7DiM6EuHEU2bEL2kEb6SmM2+5n3YpZt+YX1c01QbWtg2Kzd1r5tNE61r42K7P5hov+fQjOMdOuXzZWNKwz1JUtkj/FzPr2BcX1ieDFus5cLHxfuQfZOPSdhsBnnfeLuHTps/iFb/GdhZ89lvUN4slsnvr9lvFJTAEoipWw5xqzSqjsQIwsTJma4HEr7cgkUsbM8vjwczSLv/GKKjDySaclh8jStn7428N/4iaC5mzGZDYtbGpXKZ05ybeNlEy5ApzRUcOeWSl5gum1KlSYeUTdJM0v3Evd3auk1EIDTcF8EWfxNzGKTdaRjRofsmx7B+MkS3DtkjzeTtpNVrQ72eZM23zes/9zXEBSUwPw4HtYK1YRG4USMcuuUsx2hiCJ1Ep+OsEzcSOJiB9QGvnbZnITv0Y8k0bf11kB4JYfPN5oddMuQ1AiZ9eiRRQ3bXxAlYxWV30J/YYGpxNWvGXtXPnQaeeEMTp5kY495NM8dhIgxPhrBmlv+pStNusOQ1k6A1oU08gXPIm5wLm7nl1N8tNIH9PGmz04Y7FnADMJc18Tcc2uPDXA9KSBwnOSE1mim+GC5AB0EzSRowmxdZM9k2aOM2qWJKZ2XqBa1NZWIUPPE7fOIzjvZM5puU50GEup0wFZMZ67zAEtr36ZdcOu+2TtqwFROh7Xlkcp4F0+JEnetFrNAENpFUG9ASTSEkhv/WNcKhBWeCxJ2GwKI5kgS3UnAy9ldkTTIsbD/4T7IZVjajynZICEznrMjrG/KcqWXfxpw2zcHYJ0ZRgJnHOzRix0EGU/GLZekurZUTG7Q+DhTiwooBniAuPlETbM4DNnpv0k0HkYdP27mDo/ettGSafZJk3y80gflRZU1TNjyIFmYfbvhQly6bUqGjPt5hNIcInZh/20LgROuKfybC9v37ie5eDM0gmhbLG9ZsLpWplJuZF24yjuU6DhRya5cqdY1wCQ3Xx+xaNpjiDZNazGrj3pjgWvYvIS6izIjcA0t8rl3v0Hm3lenZV22gz2reAM/ipEs2QrEfEFgeT7QGB17CmrjkudQ9ns0/CJkQGeZfnkQW4speXiHuyv916Lw7OmnZKphyNkgV6k3E3QHy89HYspGC6LV7iVkjuyb+MO3vq/SVz3n0oeFcdzpMZLFysiCy+LgSNwBh8YbGBbYPPE10zQOdtG4zN2Uza+emz5MtUmfI3CjlNPuJp1VX6BcE9tMszZpm/eZ19onZpPZowTeqNHpk2Rc4CF2WRDYmvt3DC40rJh6EDT/DxLtpUQet3woNG5AXJp7px2s0b1R6ZKvEof48QSke4CcNxrnJOH73qGtn3pI48WDyC8iDzMBUcA27LGkJHSatEBf4CXlB3GeWeXTTI6x1DWlNTrO4IiGrBjMUTOciRq3qhqhfELj2mWw3Ohs9DQe2MGIesTY+6bOOrzlEe0Ab492swNULG4QrTF4WNmRWddB/vVomrwSKhsjrl3PZtkn1Qf653Yro72LiSZGJjGwuz0yO0ycwkYEfcAyTWIJdIHDcGITgGDaTw1jiZ7yXvsKT4NJXcce2mJ/RuoGvy8GrcJ2wfEz8rKZWOW8/JLDRd0G2lo1KB+mXjglZjBrBZWWOPYhbj4i2kM8wmXHGqEhrWNigIUS4hLjy+5KXPfrZM2V6cClrCDbvxMQLJWy0JEmjleITTIzsEzt2fzGnYwZEdunLn3Xpc/t7tPsujJsQWiZH+ZtgClKbTRgha0XwBG7AUzCVz3WbPHpwSYl+8xw0LvDDJMifHLEXAltMzdo5jil6ofraMe13BJbEBF4jllxfjqDKOjH+XjJCB83h0oF7edQ9wfUFTgSt/jNs/oUFLkrY8H8QF1riv16TqCeEVpY1ZA+vZFoxqdvJxGNcwxOj3VcsprXvvgBzzJ8uHbAXiOzSgR8lGre7Z0ga1sDyexhXiRP4kQ1LXvwO0j72HAr3ddCzrxCt38JxAYkkm/VcMZ1lfdeu8Ubv0mrlZJffufodgX3TAgQ2QoW/cCUKiaJKjSg2AcUR8ozAHbG/QwfsRbTvaD5TOBgjAidR1rDGED9XyIzMopfeInrs+bLRFOu3WA0h3e6NHyZF6LiRNu/jtVqkzZY2/CU7ZqedDEFWa0YbSyc0aVpcpcHYDkM92qfLowM/6tHeozyT/NK1s0c7bEc0fGitM7p6bYnWb0Zta6L1m4mWrS7Ts6+UadXaYHR51xUwDE+EVuuK72t93b73R+dHtKyu1G8JHAAWSrs0wSzOLBIfjs1t1sbhYNiOQ4k+uZdL+3S5NG53MoIGP2/UzrXCtmELhIxbmKzfxMIGn4wjykY9WCpy4CTww0ImnjXvmNDmS1mNd4vOK0t3lshiQlu/mC0de4xoZhvZZkIHT2gmQXlcC61oZDMmZn+zQAkzm+t8G1QNnvgyp5Vyokt9Tex2x7K5IRkABDYqw6ZdiuAJgcV3CxIXOLtLhE+K+eD7VpAa2bV27TMw4/k7vmln/i9+r/i77at1o0XLRqlt5VBQs2RL9vjuiyF1YOWwGW55xy0jbFJscDU/PxscFU0rE5uvVaF5QyZzWNsagvOo9/fXACGwDGM46YMjq6yRA03CmpmPC4uWmMtiStYHQ4yo+MkLgXnHZp6QNEzeEJkLL2wBZkF6K5Ob8eVIdY1W9t2bOorVstf+UzQtPi2p/agy4yjmtG9a93fmilXSzp0ZshmDQBsEZA0LWlhjhAXPaovAnmOBrMk4sjO+bPGT5aEa7SDklo3j/UlLhEnKwaxajK2bAkIbolrz2ce0rouYxVGKFUgyCwf/JKVUXJXi5jM3I+cDTAOHNXHoZzGZJWrtm3ZWE5u/W4GTr/maQnxWIXNAUPbTeiFs03t4mxnybL/LlghHoX0CixcbMqVrQ+yuMXfDrkffEyMTNahA0p8mwORjM0AJ3AdQYupJfrVv5kk0WwQtHIYRW4bXMQPtIMQWAvPvvPyUfKCK9o1gfuOHNct2zOy+m3X2Ams42iz+8kDBMM6YK4F7RSlkZvuaNw7rrMb1BVHMvDhDMRCO6c1WlgBh8MlIhLHrldkDAbDIZ1QCN4CIlzyCeGYthfF3aybWGn8DIvoZKVl6QC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg4ASOBtc9ayKQC4IKIFzgVkvoghkg8D/B1bbK4X5L0YBAAAAAElFTkSuQmCC" + }, + { + "src": "data:image/jpeg;base64,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" + }, + { + "src": "data:image/jpeg;base64,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" + }, + { + "src": "data:image/png;base64,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" + }, + { + "src": "data:image/jpeg;base64,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" + } + ], + "paragraphs": [], + "sectionId": "section-001", + "sectionName": "div" + } + ] +} \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/topology/selector-map.json b/AI-Arco-Design-Themes-complete/topology/selector-map.json new file mode 100644 index 0000000..a0661fb --- /dev/null +++ b/AI-Arco-Design-Themes-complete/topology/selector-map.json @@ -0,0 +1,1293 @@ +[ + { + "attributes": { + "class": "projectData" + }, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 0, + "domPath": "html > body:nth-child(2) > textarea:nth-child(1)", + "nodeId": "n78", + "sectionId": "section-001", + "selector": "textarea.projectData", + "visible": false + }, + { + "attributes": { + "id": "root" + }, + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 1800 + }, + "depth": 1, + "domPath": "html > body:nth-child(2) > div:nth-child(2)", + "nodeId": "n77", + "sectionId": "section-001", + "selector": "#root", + "visible": true + }, + { + "attributes": { + "class": "style-nav-2BWoO" + }, + "bbox": { + "height": 60, + "left": 0, + "top": 0, + "width": 1800 + }, + "depth": 2, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1)", + "nodeId": "n71", + "sectionId": "section-001", + "selector": "div.style-nav-2BWoO", + "visible": true + }, + { + "attributes": { + "class": "arco-layout page-page-TbnIU" + }, + "bbox": { + "height": 869, + "left": 0, + "top": 0, + "width": 1800 + }, + "depth": 3, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1)", + "nodeId": "n70", + "sectionId": "section-001", + "selector": "section.arco-layout.page-page-TbnIU", + "visible": true + }, + { + "attributes": { + "class": "arco-layout-header page-nav-1VbLA" + }, + "bbox": { + "height": 60, + "left": 0, + "top": 0, + "width": 1800 + }, + "depth": 4, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1)", + "nodeId": "n67", + "sectionId": "section-001", + "selector": "header.arco-layout-header.page-nav-1VbLA", + "visible": true + }, + { + "attributes": { + "class": "style-nav-header-x_NEb" + }, + "bbox": { + "height": 30, + "left": 16, + "top": 15, + "width": 331 + }, + "depth": 5, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n66", + "sectionId": "section-001", + "selector": "div.style-nav-header-x_NEb", + "visible": true + }, + { + "attributes": { + "class": "arco-row arco-row-align-center arco-row-justify-start" + }, + "bbox": { + "height": 30, + "left": 58, + "top": 15, + "width": 263 + }, + "depth": 6, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n11", + "sectionId": "section-001", + "selector": "div.arco-row.arco-row-align-center", + "visible": true + }, + { + "attributes": { + "class": "style-nav-back-2Csip" + }, + "bbox": { + "height": 30, + "left": 16, + "top": 15, + "width": 30 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(1) > a:nth-child(1)", + "nodeId": "n2", + "sectionId": "section-001", + "selector": "a.style-nav-back-2Csip", + "visible": true + }, + { + "attributes": { + "class": "style-logo-NxwZ7" + }, + "bbox": { + "height": 24, + "left": 58, + "top": 18, + "width": 24 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n1", + "sectionId": "section-001", + "selector": "span.style-logo-NxwZ7", + "visible": true + }, + { + "attributes": { + "class": "arco-tag arco-tag-arcoblue arco-tag-checked arco-tag-size-default" + }, + "bbox": { + "height": 24, + "left": 250, + "top": 18, + "width": 47 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3)", + "nodeId": "n9", + "sectionId": "section-001", + "selector": "div.arco-tag.arco-tag-arcoblue", + "visible": true + }, + { + "attributes": { + "class": "style-title-3bZPr" + }, + "bbox": { + "height": 30, + "left": 86, + "top": 15, + "width": 160 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > span:nth-child(2)", + "nodeId": "n4", + "sectionId": "section-001", + "selector": "span.style-title-3bZPr", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 24, + "left": 58, + "top": 18, + "width": 24 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > span:nth-child(1) > img:nth-child(1)", + "nodeId": "n3", + "sectionId": "section-001", + "selector": "span.style-logo-NxwZ7 > img", + "visible": true + }, + { + "attributes": { + "class": "arco-tag-content" + }, + "bbox": { + "height": 22, + "left": 259, + "top": 19, + "width": 29 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > span:nth-child(1)", + "nodeId": "n5", + "sectionId": "section-001", + "selector": "span.arco-tag-content", + "visible": true + }, + { + "attributes": { + "class": "arco-divider arco-divider-vertical" + }, + "bbox": { + "height": 12, + "left": 333, + "top": 24, + "width": 2 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3)", + "nodeId": "n7", + "sectionId": "section-001", + "selector": "div.style-nav-header-x_NEb > div.arco-divider.arco-divider-vertical:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "style-nav-actions-theme-1iwj- guide-theme-toggle arco-tooltip-open" + }, + "bbox": { + "height": 30, + "left": 854, + "top": 15, + "width": 123 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n6", + "sectionId": "section-001", + "selector": "span.style-nav-actions-theme-1iwj-.guide-theme-toggle", + "visible": true + }, + { + "attributes": { + "class": "arco-divider arco-divider-vertical" + }, + "bbox": { + "height": 12, + "left": 997, + "top": 24, + "width": 2 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2)", + "nodeId": "n8", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-divider.arco-divider-vertical:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar-group" + }, + "bbox": { + "height": 26, + "left": 1019, + "top": 17, + "width": 104 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3)", + "nodeId": "n10", + "sectionId": "section-001", + "selector": "div.arco-avatar-group", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar arco-avatar-circle" + }, + "bbox": { + "height": 26, + "left": 1019, + "top": 17, + "width": 26 + }, + "depth": 6, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(1)", + "nodeId": "n65", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar-image" + }, + "bbox": { + "height": 22, + "left": 1021, + "top": 19, + "width": 22 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n13", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(1) > span.arco-avatar-image", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 22, + "left": 1021, + "top": 19, + "width": 22 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(1) > span:nth-child(1) > img:nth-child(1)", + "nodeId": "n12", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(1) > span.arco-avatar-image > img", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar arco-avatar-circle" + }, + "bbox": { + "height": 26, + "left": 1039, + "top": 17, + "width": 26 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(2)", + "nodeId": "n14", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar arco-avatar-circle" + }, + "bbox": { + "height": 26, + "left": 1058, + "top": 17, + "width": 26 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(3)", + "nodeId": "n30", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(3)", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar-image" + }, + "bbox": { + "height": 22, + "left": 1041, + "top": 19, + "width": 22 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n17", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(2) > span.arco-avatar-image", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar-image" + }, + "bbox": { + "height": 22, + "left": 1060, + "top": 19, + "width": 22 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(3) > span:nth-child(1)", + "nodeId": "n16", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(3) > span.arco-avatar-image", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 22, + "left": 1041, + "top": 19, + "width": 22 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(2) > span:nth-child(1) > img:nth-child(1)", + "nodeId": "n15", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(2) > span.arco-avatar-image > img", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar arco-avatar-circle" + }, + "bbox": { + "height": 26, + "left": 1078, + "top": 17, + "width": 26 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(4)", + "nodeId": "n20", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(4)", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar-image" + }, + "bbox": { + "height": 22, + "left": 1080, + "top": 19, + "width": 22 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(4) > span:nth-child(1)", + "nodeId": "n19", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(4) > span.arco-avatar-image", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 22, + "left": 1060, + "top": 19, + "width": 22 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(3) > span:nth-child(1) > img:nth-child(1)", + "nodeId": "n18", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(3) > span.arco-avatar-image > img", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar arco-avatar-circle" + }, + "bbox": { + "height": 26, + "left": 1097, + "top": 17, + "width": 26 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(5)", + "nodeId": "n23", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-avatar-image" + }, + "bbox": { + "height": 22, + "left": 1099, + "top": 19, + "width": 22 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(5) > span:nth-child(1)", + "nodeId": "n22", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(5) > span.arco-avatar-image", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 22, + "left": 1080, + "top": 19, + "width": 22 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(4) > span:nth-child(1) > img:nth-child(1)", + "nodeId": "n21", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(4) > span.arco-avatar-image > img", + "visible": true + }, + { + "attributes": { + "class": "arco-divider arco-divider-vertical" + }, + "bbox": { + "height": 12, + "left": 1143, + "top": 24, + "width": 2 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(4)", + "nodeId": "n26", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-divider.arco-divider-vertical:nth-of-type(3)", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 22, + "left": 1099, + "top": 19, + "width": 22 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(3) > div:nth-child(5) > span:nth-child(1) > img:nth-child(1)", + "nodeId": "n25", + "sectionId": "section-001", + "selector": "div.arco-avatar-group > div.arco-avatar.arco-avatar-circle:nth-of-type(5) > span.arco-avatar-image > img", + "visible": true + }, + { + "attributes": { + "class": "style-locale-select-253ti" + }, + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 86 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(5)", + "nodeId": "n24", + "sectionId": "section-001", + "selector": "div.style-locale-select-253ti", + "visible": true + }, + { + "attributes": { + "class": "arco-select arco-select-single arco-select-size-default arco-select-no-border" + }, + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 86 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(5) > div:nth-child(1)", + "nodeId": "n29", + "sectionId": "section-001", + "selector": "div.arco-select.arco-select-single", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view-selector" + }, + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 50 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(5) > div:nth-child(1) > div:nth-child(1) > span:nth-child(1)", + "nodeId": "n28", + "sectionId": "section-001", + "selector": "span.arco-select-view-selector", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view" + }, + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 86 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(5) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n27", + "sectionId": "section-001", + "selector": "div.arco-select-view", + "visible": true + }, + { + "attributes": { + "class": "arco-select-suffix" + }, + "bbox": { + "height": 32, + "left": 1219, + "top": 14, + "width": 12 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(5) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)", + "nodeId": "n31", + "sectionId": "section-001", + "selector": "div.arco-select-suffix", + "visible": true + }, + { + "attributes": { + "class": "arco-select-arrow-icon" + }, + "bbox": { + "height": 30, + "left": 1219, + "top": 15, + "width": 12 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(5) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n40", + "sectionId": "section-001", + "selector": "div.arco-select-arrow-icon", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view-value" + }, + "bbox": { + "height": 32, + "left": 1165, + "top": 14, + "width": 50 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(5) > div:nth-child(1) > div:nth-child(1) > span:nth-child(1) > span:nth-child(2)", + "nodeId": "n39", + "sectionId": "section-001", + "selector": "span.arco-select-view-value", + "visible": true + }, + { + "attributes": { + "class": "arco-divider arco-divider-vertical" + }, + "bbox": { + "height": 12, + "left": 1319, + "top": 24, + "width": 2 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(7)", + "nodeId": "n38", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-divider.arco-divider-vertical:nth-of-type(5)", + "visible": true + }, + { + "attributes": { + "class": "arco-link arco-link-hoverless style-help-doc-link-O9aag" + }, + "bbox": { + "height": 19, + "left": 1251, + "top": 21, + "width": 48 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > a:nth-child(6)", + "nodeId": "n34", + "sectionId": "section-001", + "selector": "a.arco-link.arco-link-hoverless", + "visible": true + }, + { + "attributes": { + "class": "arco-select-view-input arco-select-hidden" + }, + "bbox": { + "height": 16, + "left": 1165, + "top": 22, + "width": 50 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(5) > div:nth-child(1) > div:nth-child(1) > span:nth-child(1) > input:nth-child(1)", + "nodeId": "n32", + "sectionId": "section-001", + "selector": "input.arco-select-view-input.arco-select-hidden", + "visible": false + }, + { + "attributes": { + "class": "arco-space arco-space-horizontal arco-space-align-center" + }, + "bbox": { + "height": 36, + "left": 1341, + "top": 12, + "width": 163 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(8)", + "nodeId": "n33", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6)", + "visible": true + }, + { + "attributes": { + "class": "arco-space-item" + }, + "bbox": { + "height": 36, + "left": 1341, + "top": 12, + "width": 71 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(8) > div:nth-child(1)", + "nodeId": "n37", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "style-vote-2aPPM" + }, + "bbox": { + "height": 36, + "left": 1341, + "top": 12, + "width": 71 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(8) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n36", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(1) > div.style-vote-2aPPM", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-secondary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6" + }, + "bbox": { + "height": 36, + "left": 1341, + "top": 12, + "width": 71 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(8) > div:nth-child(1) > div:nth-child(1) > button:nth-child(1)", + "nodeId": "n35", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(1) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary", + "visible": true + }, + { + "attributes": { + "class": "style-vote-count-CHG5G" + }, + "bbox": { + "height": 17, + "left": 1380, + "top": 22, + "width": 15 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(8) > div:nth-child(1) > div:nth-child(1) > button:nth-child(1) > span:nth-child(2)", + "nodeId": "n41", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(1) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary > span.style-vote-count-CHG5G", + "visible": true + }, + { + "attributes": { + "class": "arco-space-item" + }, + "bbox": { + "height": 36, + "left": 1424, + "top": 12, + "width": 80 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(8) > div:nth-child(2)", + "nodeId": "n42", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "style-vote-2aPPM" + }, + "bbox": { + "height": 36, + "left": 1424, + "top": 12, + "width": 80 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(8) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n53", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(2) > div.style-vote-2aPPM", + "visible": true + }, + { + "attributes": { + "class": "arco-space arco-space-horizontal arco-space-align-center" + }, + "bbox": { + "height": 36, + "left": 1516, + "top": 12, + "width": 264 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(9)", + "nodeId": "n47", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7)", + "visible": true + }, + { + "attributes": { + "class": "arco-space-item" + }, + "bbox": { + "height": 36, + "left": 1516, + "top": 12, + "width": 142 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(9) > div:nth-child(1)", + "nodeId": "n46", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(1)", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-secondary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6" + }, + "bbox": { + "height": 36, + "left": 1424, + "top": 12, + "width": 80 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(8) > div:nth-child(2) > div:nth-child(1) > button:nth-child(1)", + "nodeId": "n45", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(2) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary", + "visible": true + }, + { + "attributes": { + "class": "style-vote-count-CHG5G" + }, + "bbox": { + "height": 17, + "left": 1463, + "top": 22, + "width": 24 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(8) > div:nth-child(2) > div:nth-child(1) > button:nth-child(1) > span:nth-child(2)", + "nodeId": "n43", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(6) > div.arco-space-item:nth-of-type(2) > div.style-vote-2aPPM > button.arco-btn.arco-btn-secondary > span.style-vote-count-CHG5G", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 17, + "left": 1557, + "top": 22, + "width": 84 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(9) > div:nth-child(1) > button:nth-child(1) > span:nth-child(2)", + "nodeId": "n44", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-secondary > span", + "visible": true + }, + { + "attributes": { + "class": "arco-space-item" + }, + "bbox": { + "height": 36, + "left": 1666, + "top": 12, + "width": 114 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(9) > div:nth-child(2)", + "nodeId": "n52", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2)", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-secondary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6" + }, + "bbox": { + "height": 36, + "left": 1516, + "top": 12, + "width": 142 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(9) > div:nth-child(1) > button:nth-child(1)", + "nodeId": "n51", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(1) > button.arco-btn.arco-btn-secondary", + "visible": true + }, + { + "attributes": { + "class": "arco-btn arco-btn-primary arco-btn-size-large arco-btn-shape-round style-action-button-g-2Q6" + }, + "bbox": { + "height": 36, + "left": 1666, + "top": 12, + "width": 114 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(9) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1) > button:nth-child(1)", + "nodeId": "n50", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2) > span > span > button.arco-btn.arco-btn-primary", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 14, + "left": 1666, + "top": 24, + "width": 114 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(9) > div:nth-child(2) > span:nth-child(1)", + "nodeId": "n48", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2) > span", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 14, + "left": 1666, + "top": 24, + "width": 114 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(9) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1)", + "nodeId": "n49", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2) > span > span", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 809, + "left": 0, + "top": 60, + "width": 1800 + }, + "depth": 7, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > div:nth-child(2)", + "nodeId": "n64", + "sectionId": "section-001", + "selector": "section.arco-layout.page-page-TbnIU > div", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 17, + "left": 1707, + "top": 22, + "width": 56 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > header:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(9) > div:nth-child(2) > span:nth-child(1) > span:nth-child(1) > button:nth-child(1) > span:nth-child(2)", + "nodeId": "n57", + "sectionId": "section-001", + "selector": "div.style-nav-actions-3V1E0 > div.arco-space.arco-space-horizontal:nth-of-type(7) > div.arco-space-item:nth-of-type(2) > span > span > button.arco-btn.arco-btn-primary > span", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 809, + "left": 0, + "top": 60, + "width": 1800 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > div:nth-child(2) > section:nth-child(1) > div:nth-child(2) > iframe:nth-child(1)", + "nodeId": "n56", + "sectionId": "section-001", + "selector": "section.arco-layout.page-page-TbnIU > div > iframe", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > script:nth-child(3)", + "nodeId": "n54", + "sectionId": "section-001", + "selector": "body > script:nth-of-type(1)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > script:nth-child(4)", + "nodeId": "n55", + "sectionId": "section-001", + "selector": "body > script:nth-of-type(2)", + "visible": false + }, + { + "attributes": { + "id": "arco-dp-survey" + }, + "bbox": { + "height": 0, + "left": 0, + "top": 869, + "width": 1800 + }, + "depth": 8, + "domPath": "html > body:nth-child(2) > div:nth-child(7)", + "nodeId": "n63", + "sectionId": "section-001", + "selector": "#arco-dp-survey", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 9, + "domPath": "html > body:nth-child(2) > script:nth-child(5)", + "nodeId": "n62", + "sectionId": "section-001", + "selector": "body > script:nth-of-type(3)", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 10, + "domPath": "html > body:nth-child(2) > script:nth-child(6)", + "nodeId": "n61", + "sectionId": "section-001", + "selector": "body > script:nth-of-type(4)", + "visible": false + }, + { + "attributes": { + "class": "arco-btn arco-btn-primary arco-btn-size-default arco-btn-shape-circle arco-btn-icon-only style-trigger-button-3oYrR" + }, + "bbox": { + "height": 40, + "left": 1710, + "top": 779, + "width": 40 + }, + "depth": 11, + "domPath": "html > body:nth-child(2) > button:nth-child(9)", + "nodeId": "n60", + "sectionId": "section-001", + "selector": "body > button.arco-btn.arco-btn-primary", + "visible": true + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 0 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(7) > script:nth-child(1)", + "nodeId": "n58", + "sectionId": "section-001", + "selector": "body > div:nth-of-type(2) > script", + "visible": false + }, + { + "attributes": { + "class": "dp-bridge", + "id": "dp-bridge-feedback" + }, + "bbox": { + "height": 0, + "left": 0, + "top": 869, + "width": 1800 + }, + "depth": 12, + "domPath": "html > body:nth-child(2) > div:nth-child(8)", + "nodeId": "n59", + "sectionId": "section-001", + "selector": "#dp-bridge-feedback", + "visible": false + }, + { + "attributes": { + "class": "dp-feedback" + }, + "bbox": { + "height": 0, + "left": 0, + "top": 869, + "width": 1800 + }, + "depth": 4, + "domPath": "html > body:nth-child(2) > div:nth-child(8) > div:nth-child(1)", + "nodeId": "n69", + "sectionId": "section-001", + "selector": "div.dp-feedback", + "visible": false + }, + { + "attributes": {}, + "bbox": { + "height": 0, + "left": 0, + "top": 0, + "width": 1800 + }, + "depth": 5, + "domPath": "html > body:nth-child(2) > div:nth-child(10)", + "nodeId": "n68", + "sectionId": "section-001", + "selector": "body > div:nth-of-type(4)", + "visible": false + }, + { + "attributes": { + "class": "arco-tooltip-content arco-tooltip-content-top" + }, + "bbox": { + "height": 26, + "left": 865, + "top": 57, + "width": 101 + }, + "depth": 2, + "domPath": "html > body:nth-child(2) > div:nth-child(10) > span:nth-child(1) > div:nth-child(1)", + "nodeId": "n72", + "sectionId": "section-001", + "selector": "div.arco-tooltip-content.arco-tooltip-content-top", + "visible": true + }, + { + "attributes": { + "class": "arco-tooltip-content-inner" + }, + "bbox": { + "height": 15, + "left": 873, + "top": 62, + "width": 85 + }, + "depth": 2, + "domPath": "html > body:nth-child(2) > div:nth-child(10) > span:nth-child(1) > div:nth-child(1) > div:nth-child(1)", + "nodeId": "n74", + "sectionId": "section-001", + "selector": "div.arco-tooltip-content-inner", + "visible": true + }, + { + "attributes": { + "class": "arco-trigger-arrow-container arco-tooltip-arrow-container" + }, + "bbox": { + "height": 0, + "left": 865, + "top": 83, + "width": 101 + }, + "depth": 3, + "domPath": "html > body:nth-child(2) > div:nth-child(10) > span:nth-child(1) > div:nth-child(2)", + "nodeId": "n73", + "sectionId": "section-001", + "selector": "div.arco-trigger-arrow-container.arco-tooltip-arrow-container", + "visible": false + }, + { + "attributes": { + "class": "arco-trigger-arrow arco-tooltip-arrow" + }, + "bbox": { + "height": 8, + "left": 912, + "top": 53, + "width": 8 + }, + "depth": 2, + "domPath": "html > body:nth-child(2) > div:nth-child(10) > span:nth-child(1) > div:nth-child(2) > div:nth-child(1)", + "nodeId": "n76", + "sectionId": "section-001", + "selector": "div.arco-trigger-arrow.arco-tooltip-arrow", + "visible": true + }, + { + "attributes": { + "class": "arco-trigger arco-tooltip arco-trigger-position-top zoomInFadeOut-appear zoomInFadeOut-appear-active" + }, + "bbox": { + "height": 26, + "left": 865, + "top": 57, + "width": 101 + }, + "depth": 3, + "domPath": "html > body:nth-child(2) > div:nth-child(10) > span:nth-child(1)", + "nodeId": "n75", + "sectionId": "section-001", + "selector": "span.arco-trigger.arco-tooltip", + "visible": true + } +] \ No newline at end of file diff --git a/AI-Arco-Design-Themes-complete/topology/topology.json b/AI-Arco-Design-Themes-complete/topology/topology.json new file mode 100644 index 0000000..c546636 --- /dev/null +++ b/AI-Arco-Design-Themes-complete/topology/topology.json @@ -0,0 +1,19 @@ +{ + "fixedLayers": [ + "body > button.arco-btn.arco-btn-primary" + ], + "pageHeight": 869, + "pageWidth": 1800, + "scrollContainer": null, + "sections": [ + { + "id": "section-001", + "interactionModel": "click-driven", + "isFixed": false, + "isSticky": false, + "name": "div", + "order": 0, + "zIndex": 0 + } + ] +} \ No newline at end of file diff --git a/ONEOS-web/CRM/供应商管理.jsx b/ONEOS-web/CRM/供应商管理.jsx new file mode 100644 index 0000000..783145b --- /dev/null +++ b/ONEOS-web/CRM/供应商管理.jsx @@ -0,0 +1,379 @@ +// 【重要】必须使用 const Component 作为组件变量名 +// ONEOS-web 示例项目 - CRM 供应商管理 (完美复刻 Arco Design Pro 查询表格) + +const Component = function () { + var useState = React.useState; + + var antd = window.antd; + var Table = antd.Table; + var Button = antd.Button; + var Card = antd.Card; + var Space = antd.Space; + var Input = antd.Input; + var Select = antd.Select; + var DatePicker = antd.DatePicker; + var Form = antd.Form; + var Row = antd.Row; + var Col = antd.Col; + var Divider = antd.Divider; + var Breadcrumb = antd.Breadcrumb; + var Menu = antd.Menu; + var Layout = antd.Layout; + var message = antd.message; + var Typography = antd.Typography; + var Avatar = antd.Avatar; + var Badge = antd.Badge; + + var Header = Layout.Header; + var Content = Layout.Content; + var Sider = Layout.Sider; + var Title = Typography.Title; + + var _currentMenu = useState('crm-supplier'); + var currentMenu = _currentMenu[0]; + var setCurrentMenu = _currentMenu[1]; + + var handleMenuClick = function (e) { + setCurrentMenu(e.key); + if (e.key === 'contract-list') { + message.info('跳转至 合同列表'); + window.location.hash = '合同列表'; + } else if (e.key === 'erp-order') { + message.info('跳转至 ERP 订单管理'); + window.location.hash = '订单管理'; + } else if (e.key === 'asset-overview') { + message.info('跳转至 资产概览'); + window.location.hash = '资产概览'; + } else if (e.key === 'crm-list') { + message.info('跳转至 客户列表'); + window.location.hash = '客户列表'; + } + }; + + // 自定义 SVG 图标(高保真还原 Arco 风格) + var SearchIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, React.createElement('path', { d: 'M33.072 33.071c6.248-6.248 6.248-16.379 0-22.627-6.249-6.249-16.38-6.249-22.628 0-6.248 6.248-6.248 16.379 0 22.627 6.248 6.248 16.38 6.248 22.628 0Zm0 0 8.485 8.485' })); }; + var ResetIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, React.createElement('path', { d: 'M38.837 18C36.463 12.136 30.715 8 24 8 15.163 8 8 15.163 8 24s7.163 16 16 16c7.455 0 13.72-5.1 15.496-12M40 8v10H30' })); }; + var PlusIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, React.createElement('path', { d: 'M5 24h38M24 5v38' })); }; + var DownloadIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, React.createElement('path', { d: 'm33.072 22.071-9.07 9.071-9.072-9.07M24 5v26m16 4v6H8v-6' })); }; + var SettingIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 16, height: 16, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, React.createElement('path', { d: 'M18.797 6.732A1 1 0 0 1 19.76 6h8.48a1 1 0 0 1 .964.732l1.285 4.628a1 1 0 0 0 1.213.7l4.651-1.2a1 1 0 0 1 1.116.468l4.24 7.344a1 1 0 0 1-.153 1.2L38.193 23.3a1 1 0 0 0 0 1.402l3.364 3.427a1 1 0 0 1 .153 1.2l-4.24 7.344a1 1 0 0 1-1.116.468l-4.65-1.2a1 1 0 0 0-1.214.7l-1.285 4.628a1 1 0 0 1-.964.732h-8.48a1 1 0 0 1-.963-.732L17.51 36.64a1 1 0 0 0-1.213-.7l-4.65 1.2a1 1 0 0 1-1.116-.468l-4.24-7.344a1 1 0 0 1 .153-1.2L9.809 24.7a1 1 0 0 0 0-1.402l-3.364-3.427a1 1 0 0 1-.153-1.2l4.24-7.344a1 1 0 0 1 1.116-.468l4.65 1.2a1 1 0 0 0 1.213-.7l1.286-4.628Z' }), React.createElement('path', { d: 'M30 24a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z' })); }; + var NoticeIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 18, height: 18, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, React.createElement('path', { d: 'M39 34h3v4H6v-4h3V20.218a15 15 0 0 1 30 0V34ZM24 44a6 6 0 0 1-6-6h12a6 6 0 0 1-6 6Z' })); }; + var ListIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4, strokeLinecap: 'butt', strokeLinejoin: 'miter' }, React.createElement('path', { d: 'M17 12H42' }), React.createElement('path', { d: 'M17 24H42' }), React.createElement('path', { d: 'M17 36H42' }), React.createElement('path', { d: 'M8 12H9' }), React.createElement('path', { d: 'M8 24H9' }), React.createElement('path', { d: 'M8 36H9' })); }; + + var columns = [ + { title: '供应商名称', dataIndex: 'name', key: 'name', width: 220 }, + { title: '类型', dataIndex: 'type', key: 'type', width: 140 }, + { title: '所属城市', dataIndex: 'city', key: 'city', width: 140 }, + { title: '业务负责部门', dataIndex: 'department', key: 'department', width: 140 }, + { title: '业务负责人员', dataIndex: 'manager', key: 'manager', width: 140 }, + { title: '状态', dataIndex: 'status', key: 'status', width: 100, render: function(text) { + var isOnline = text === '正常'; + return React.createElement(Space, { size: 6 }, + React.createElement('span', { style: { display: 'inline-block', width: 6, height: 6, borderRadius: '50%', backgroundColor: isOnline ? '#00b42a' : '#f53f3f' } }), + React.createElement('span', null, text) + ); + } }, + { title: '创建时间', dataIndex: 'createTime', key: 'createTime', width: 180 }, + { + title: '操作', + key: 'action', + fixed: 'right', + width: 100, + render: function (_, record) { + return React.createElement(Button, { type: 'link', style: { padding: 0 }, onClick: function() { message.info('查看详情: ' + record.name); } }, '查看'); + } + } + ]; + + var data = [ + { key: '1', name: '阿里云计算有限公司', type: '其他', city: '浙江-杭州', department: '技术部', manager: '张三', status: '正常', createTime: '2023-01-10 10:00:00' }, + { key: '2', name: '腾讯云计算(北京)有限责任公司', type: '其他', city: '北京', department: '技术部', manager: '李四', status: '正常', createTime: '2023-02-15 11:30:00' }, + { key: '3', name: '中国平安财产保险股份有限公司', type: '保险公司', city: '广东-深圳', department: '法务部', manager: '王五', status: '正常', createTime: '2023-03-20 14:15:00' }, + { key: '4', name: '一汽大众汽车有限公司', type: '整车企业', city: '吉林-长春', department: '采购部', manager: '赵六', status: '停用', createTime: '2023-04-18 09:45:00' }, + { key: '5', name: '宁德时代新能源科技股份有限公司', type: '备件供应商', city: '福建-宁德', department: '采购部', manager: '孙七', status: '正常', createTime: '2023-05-12 16:20:00' } + ]; + + var menuItems = [ + { + key: 'contract', + label: '合同管理', + icon: React.createElement('span', { className: 'anticon' }, '📄'), + children: [ + { key: 'contract-list', label: '合同列表' } + ] + }, + { + key: 'crm', + label: 'CRM 管理', + icon: React.createElement('span', { className: 'anticon' }, '👥'), + children: [ + { key: 'crm-list', label: '客户管理' }, + { key: 'crm-supplier', label: '供应商管理' }, + { key: 'crm-analysis', label: 'CRM 分析' } + ] + }, + { + key: 'erp', + label: 'ERP 订单管理', + icon: React.createElement('span', { className: 'anticon' }, '📦'), + children: [ + { key: 'erp-order', label: '订单管理' } + ] + }, + { + key: 'asset', + label: '资产管理', + icon: React.createElement('span', { className: 'anticon' }, '🚗'), + children: [ + { key: 'asset-overview', label: '资产概览' } + ] + } + ]; + + var formItemLayout = { + labelAlign: 'left', + colon: false, + labelCol: { flex: '0 0 86px' }, + wrapperCol: { flex: '1 1 0' } + }; + + return React.createElement(Layout, { className: 'arco-theme-overrides', style: { minHeight: '100vh', background: '#fff', fontFamily: 'Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif' } }, + // 内联 CSS 以实现最高保真度的 Arco UI + React.createElement('style', null, ` + .arco-theme-overrides .ant-btn { border-radius: 4px; box-shadow: none; font-size: 14px; } + .arco-theme-overrides .ant-btn-primary { background-color: #165dff; border-color: #165dff; } + .arco-theme-overrides .ant-btn-primary:hover { background-color: #4080ff; border-color: #4080ff; } + .arco-theme-overrides .ant-btn-default { background-color: #f2f3f5; border-color: transparent; color: #4e5969; } + .arco-theme-overrides .ant-btn-default:hover { background-color: #e5e6eb; border-color: transparent; color: #4e5969; } + .arco-theme-overrides .ant-btn-link { color: #165dff; } + .arco-theme-overrides .ant-btn-link:hover { background-color: transparent; color: #4080ff; } + .arco-theme-overrides .ant-menu-light .ant-menu-item-selected { background-color: #f2f9fe; color: #165dff; } + .arco-theme-overrides .ant-menu-light .ant-menu-item-selected::after { border-right-color: #165dff; } + .arco-theme-overrides .ant-table-thead > tr > th { background-color: #f2f3f5; color: #1d2129; font-weight: 500; padding: 13px 16px; border-bottom: 1px solid #e5e6eb; border-top: none; } + .arco-theme-overrides .ant-table-thead > tr > th::before { display: none !important; } + .arco-theme-overrides .ant-table-tbody > tr > td { border-bottom: 1px solid #e5e6eb; padding: 13px 16px; color: #4e5969; } + .arco-theme-overrides .ant-table-wrapper { border: none; } + .arco-theme-overrides .ant-table { border: none; } + .arco-theme-overrides .ant-table-container { border: none; } + .arco-theme-overrides .ant-table-pagination.ant-pagination { margin: 16px 0 0 0; } + .arco-theme-overrides .ant-card { border: none; border-radius: 4px; } + /* 筛选组件(Input/Select/DatePicker)的默认、Hover、Focus样式复刻 */ + .arco-theme-overrides .ant-input, .arco-theme-overrides .ant-select-selector, .arco-theme-overrides .ant-picker { border-radius: 2px; border: 1px solid #e5e6eb; background-color: #fff; transition: all 0.1s cubic-bezier(0, 0, 1, 1); } + .arco-theme-overrides .ant-input:hover, .arco-theme-overrides .ant-select:not(.ant-select-disabled):hover .ant-select-selector, .arco-theme-overrides .ant-picker:hover { background-color: #fff; border-color: #165dff; } + .arco-theme-overrides .ant-input:focus, .arco-theme-overrides .ant-input-focused, .arco-theme-overrides .ant-select-focused .ant-select-selector, .arco-theme-overrides .ant-picker-focused { background-color: #fff; border: 1px solid #165dff !important; box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2) !important; outline: 0; } + .arco-theme-overrides .ant-input-affix-wrapper:focus, .arco-theme-overrides .ant-input-affix-wrapper-focused { background-color: #fff; border-color: #165dff !important; box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2) !important; } + + /* 日期选择器展开面板(Dropdown/Panel)的样式复刻 */ + .arco-theme-overrides .ant-picker-dropdown .ant-picker-panel-container { border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 1px solid #e5e6eb; background: #fff; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-header { border-bottom: 1px solid #e5e6eb; color: #1d2129; padding: 0 8px; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-content th { color: #86909c; font-weight: 400; font-size: 14px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner { background: #165dff; color: #fff; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner, + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner { background: #165dff; color: #fff; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-in-range::before { background: #e8f3ff; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::before { border: 1px solid transparent; border-radius: 2px; position: relative; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background-color: #165dff; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today.ant-picker-cell-selected .ant-picker-cell-inner::after { background-color: #fff; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end) .ant-picker-cell-inner { background: #f2f3f5; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-inner { border-radius: 2px; font-size: 14px; color: #4e5969; width: 24px; height: 24px; line-height: 24px; } + .arco-theme-overrides .ant-breadcrumb { color: #86909c; font-size: 14px; } + .arco-theme-overrides .ant-breadcrumb a { color: #4e5969; } + .arco-theme-overrides .ant-breadcrumb a:hover { color: #165dff; background-color: transparent; } + .arco-theme-overrides .ant-form-item-label { padding: 0 16px 0 0 !important; line-height: 32px; height: 32px; display: flex; align-items: center; } + .arco-theme-overrides .ant-form-item-control { display: flex; align-items: center; line-height: 32px; min-height: 32px; } + .arco-theme-overrides .ant-form-item-control-input { min-height: 32px; width: 100%; display: flex; align-items: center; } + .arco-theme-overrides .ant-form-item-control-input-content { display: flex; align-items: center; width: 100%; height: 100%; } + .arco-theme-overrides .ant-select { width: 100%; height: 32px; } + .arco-theme-overrides .ant-select-selector { height: 32px !important; min-height: 32px !important; display: flex; align-items: center; width: 100%; padding: 0 12px; } + .arco-theme-overrides .ant-select-multiple .ant-select-selector { padding: 0 4px; align-items: center; } + .arco-theme-overrides .ant-select-selection-item { line-height: 30px !important; margin-top: 0 !important; margin-bottom: 0 !important; } + .arco-theme-overrides .ant-select-selection-overflow { align-items: center; } + .arco-theme-overrides .ant-input { height: 32px; padding: 4px 12px; } + .arco-theme-overrides .ant-picker { height: 32px !important; min-height: 32px !important; display: flex; align-items: center; padding: 4px 12px; width: 100%; } + .arco-theme-overrides .ant-form-item-label > label { color: #4e5969; } + .arco-theme-overrides .ant-form-item-label > label::after { display: none !important; content: "" !important; margin: 0 !important; } + + /* 多选标签及下拉菜单 Checkbox 样式复刻 (模拟 Arco) */ + .arco-theme-overrides .ant-select-multiple .ant-select-selection-item { background: #f2f3f5; border: none; border-radius: 2px; } + .arco-theme-overrides .ant-select-multiple.ant-select-show-arrow .ant-select-selection-item { padding-inline-end: 24px; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option { padding-left: 36px; position: relative; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option::before { content: ""; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border: 1px solid #e5e6eb; border-radius: 2px; transition: all 0.1s; background: #fff; box-sizing: border-box; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option-selected::before { background-color: #165dff; border-color: #165dff; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option-selected::after { content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-70%) rotate(45deg); width: 4px; height: 8px; border: 2px solid #fff; border-top: 0; border-left: 0; box-sizing: content-box; z-index: 1; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option-state { display: none; } + `), + // 顶部 Header + React.createElement(Header, { + style: { + background: '#fff', + padding: '0 20px', + display: 'flex', + justifyContent: 'space-between', + alignItems: 'center', + borderBottom: '1px solid #e5e6eb', + height: 60, + position: 'fixed', + top: 0, + left: 0, + right: 0, + zIndex: 100 + } + }, + // 左侧 Logo + React.createElement('div', { style: { display: 'flex', alignItems: 'center', gap: 12 } }, + React.createElement('div', { style: { width: 32, height: 32, background: '#165dff', borderRadius: 4, display: 'flex', justifyContent: 'center', alignItems: 'center', color: '#fff', fontWeight: 'bold' } }, 'A'), + React.createElement('div', { style: { fontSize: '20px', fontWeight: '600', color: '#1d2129', letterSpacing: '0.5px' } }, 'Arco Pro') + ), + // 右侧工具栏 + React.createElement('div', { style: { display: 'flex', alignItems: 'center', gap: 20 } }, + React.createElement(Input.Search, { placeholder: '搜索功能', style: { width: 220, borderRadius: 16 } }), + React.createElement(Badge, { dot: true, offset: [-2, 4] }, + React.createElement('span', { style: { color: '#4e5969', cursor: 'pointer', display: 'flex' }, title: '消息通知' }, React.createElement(NoticeIcon, null)) + ), + React.createElement('span', { style: { color: '#4e5969', cursor: 'pointer', display: 'flex' }, title: '设置' }, React.createElement(SettingIcon, null)), + React.createElement(Avatar, { size: 32, src: 'https://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/3ee5f13fb09879ecb5185e440cef6eb9.png~tplv-uwbnlip3yd-webp.webp', style: { cursor: 'pointer' } }) + ) + ), + // 下方主体内容 + React.createElement(Layout, { style: { paddingTop: 60, background: '#fff' } }, + // 左侧菜单 Sider + React.createElement(Sider, { + width: 220, + style: { + background: '#fff', + borderRight: '1px solid #e5e6eb', + position: 'fixed', + top: 60, + left: 0, + height: 'calc(100vh - 60px)', + overflowY: 'auto', + zIndex: 99 + } + }, + React.createElement(Menu, { + mode: 'inline', + selectedKeys: [currentMenu], + defaultOpenKeys: ['crm'], + items: menuItems, + onClick: handleMenuClick, + style: { borderRight: 'none', padding: '8px', background: '#fff' } + }) + ), + // 右侧内容 Content + React.createElement(Content, { style: { marginLeft: 220, padding: '16px 20px 0 20px', minHeight: 'calc(100vh - 60px)', display: 'flex', flexDirection: 'column', background: '#fff' } }, + React.createElement('div', { style: { padding: '16px 20px 0 20px', marginBottom: 0 } }, + React.createElement(Breadcrumb, { + separator: React.createElement('span', { style: { color: '#c9cdd4' } }, '/'), + items: [ + { title: React.createElement(ListIcon, { style: { display: 'inline-flex', alignItems: 'center', fontSize: 14, transform: 'translate(-2px, 1px)' } }) }, + { title: '列表页' }, + { title: React.createElement('span', { style: { color: '#1d2129' } }, '供应商管理') } + ] + }), + React.createElement(Title, { level: 4, style: { marginTop: 16, marginBottom: 20, fontWeight: 700, color: '#1d2129', fontSize: 16 } }, '供应商管理') + ), + React.createElement('div', { style: { padding: '0', display: 'flex', flexDirection: 'column', flex: 1, background: 'transparent' } }, + // 搜索表单区域 + React.createElement('div', { style: { padding: '0 20px 0 20px', marginBottom: 0, background: '#fff' } }, + React.createElement(Row, { style: { flexWrap: 'nowrap' } }, + React.createElement(Col, { flex: 1, style: { minWidth: 0, paddingRight: 40 } }, + React.createElement(Form, Object.assign({ layout: 'horizontal' }, formItemLayout), + React.createElement(Row, { gutter: 24, style: { rowGap: 0 } }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '供应商名称', style: { marginBottom: 16, height: 32 } }, + React.createElement(Input, { placeholder: '请输入供应商名称' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '类型', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + mode: 'multiple', + allowClear: true, + maxTagCount: 'responsive', + placeholder: '请选择类型', + options: [ + { label: '整车企业', value: '整车企业' }, + { label: '车辆外租企业', value: '车辆外租企业' }, + { label: '加氢站', value: '加氢站' }, + { label: '充电站', value: '充电站' }, + { label: '维修站', value: '维修站' }, + { label: '备件供应商', value: '备件供应商' }, + { label: '保险公司', value: '保险公司' }, + { label: '救援车队', value: '救援车队' }, + { label: '其他', value: '其他' } + ] + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '所属城市', style: { marginBottom: 16, height: 32 } }, + React.createElement(Input, { placeholder: '请输入所属城市' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '业务部门', style: { marginBottom: 16, height: 32 } }, + React.createElement(Input, { placeholder: '请输入部门名称' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '业务人员', style: { marginBottom: 16, height: 32 } }, + React.createElement(Input, { placeholder: '请输入人员姓名' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '状态', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + placeholder: '全部', + options: [ + { label: '全部', value: '' }, + { label: '正常', value: 'normal' }, + { label: '停用', value: 'disabled' } + ] + }) + ) + ) + ) + ) + ), + React.createElement(Divider, { style: { height: 72, borderLeftColor: 'rgb(229, 230, 235)', borderLeftStyle: 'dashed', marginLeft: 20, marginRight: 20 }, type: 'vertical' }), + React.createElement(Col, { flex: '86px', style: { textAlign: 'right' } }, + React.createElement(Space, { direction: 'vertical', size: 12 }, + React.createElement(Button, { type: 'primary', icon: React.createElement(SearchIcon, null), style: { display: 'flex', alignItems: 'center', gap: 6, justifyContent: 'center' } }, '查询'), + React.createElement(Button, { icon: React.createElement(ResetIcon, null), style: { display: 'flex', alignItems: 'center', gap: 6, justifyContent: 'center' } }, '重置') + ) + ) + ) + ), + // 底部表格区 + React.createElement('div', { style: { padding: '20px 20px 0 20px', display: 'flex', flexDirection: 'column', flex: 1, background: '#fff' } }, + // 工具栏区域 + React.createElement(Row, { justify: 'space-between', align: 'middle', style: { marginBottom: 16 } }, + React.createElement(Col, null, + React.createElement(Space, { size: 12 }, + React.createElement(Button, { type: 'primary', icon: React.createElement(PlusIcon, null), style: { display: 'flex', alignItems: 'center', gap: 6 }, onClick: function() { window.location.hash = '新建供应商'; } }, '新建'), + React.createElement(Button, null, '批量导入') + ) + ), + React.createElement(Col, null, + React.createElement(Space, { size: 16 }, + React.createElement(Button, { style: { padding: '4px 10px', height: 32, display: 'flex', alignItems: 'center', gap: 6, color: '#4e5969' }, title: '下载' }, React.createElement(DownloadIcon, null), React.createElement('span', null, '下载')) + ) + ) + ), + // 表格区域 + React.createElement('div', { style: { flex: 1, minHeight: 0 } }, + React.createElement(Table, { + rowSelection: { type: 'checkbox', columnWidth: 48 }, + columns: columns, + dataSource: data, + pagination: { pageSize: 10, showTotal: function(total) { return '共 ' + total + ' 条'; } }, + scroll: { x: 1000 } + }) + ) + ) + ) + ) + ) + ); +}; + +if (typeof module !== 'undefined' && module.exports) module.exports = Component; \ No newline at end of file diff --git a/ONEOS-web/CRM/客户列表.jsx b/ONEOS-web/CRM/客户列表.jsx new file mode 100644 index 0000000..c98d5e0 --- /dev/null +++ b/ONEOS-web/CRM/客户列表.jsx @@ -0,0 +1,766 @@ +// 【重要】必须使用 const Component 作为组件变量名 +// ONEOS-web - CRM 客户管理(建档字段、列表、标签、筛选) + +const Component = function () { + var useState = React.useState; + + var antd = window.antd; + var Table = antd.Table; + var Button = antd.Button; + var Space = antd.Space; + var Input = antd.Input; + var Select = antd.Select; + var DatePicker = antd.DatePicker; + var Form = antd.Form; + var Row = antd.Row; + var Col = antd.Col; + var Divider = antd.Divider; + var Breadcrumb = antd.Breadcrumb; + var Layout = antd.Layout; + var message = antd.message; + var Tag = antd.Tag; + var Tooltip = antd.Tooltip; + var Card = antd.Card; + var Modal = antd.Modal; + var Tabs = antd.Tabs; + var Cascader = antd.Cascader; + var Radio = antd.Radio; + + var Content = Layout.Content; + var _modalOpen = useState(false); + var modalOpen = _modalOpen[0]; + var setModalOpen = _modalOpen[1]; + + /** 筛选默认 2 行(每行 3 个 span:8);超出部分展开/收起 */ + var _filterExpand = useState(false); + var filterExpanded = _filterExpand[0]; + var setFilterExpanded = _filterExpand[1]; + var FILTER_COLS_PER_ROW = 3; + var FILTER_VISIBLE_ROWS = 2; + var filterFieldCount = 8; + var filterRowCount = Math.ceil(filterFieldCount / FILTER_COLS_PER_ROW); + var showFilterExpandToggle = filterRowCount > FILTER_VISIBLE_ROWS; + + var _form = Form.useForm(); + var customerForm = _form[0]; + + var _filterFormInst = Form.useForm(); + var filterForm = _filterFormInst[0]; + + var _filterDeptSel = useState([]); + var filterDeptSelection = _filterDeptSel[0]; + var setFilterDeptSelection = _filterDeptSel[1]; + + /** + * 客户编号规则(集团多子公司) + * - 总长度 7,仅含大写字母 A–Z 与数字 0–9。 + * - 结构:第 1 位 = 签约/归属子公司代码;第 2–7 位 = 6 位数字流水号(000001–999999,不足左补 0)。 + * - 流水号在「同一子公司代码」下递增;不同字母下可各自从 000001 起编。 + * - 校验正则:/^[A-Z][0-9]{6}$/ + * 示例映射(可按主数据调整):A华东 B华南 C华北 D西南 E华中 F西北 G集团总部 … + */ + + /** 客户标签枚举(筛选 + 列表展示,多选) */ + var customerLabelOptions = [ + { label: '逾期预警', value: '逾期预警' }, + { label: '严重拖欠', value: '严重拖欠' }, + { label: '频繁改账期', value: '频繁改账期' }, + { label: '资质存疑', value: '资质存疑' }, + { label: '涉诉/仲裁', value: '涉诉/仲裁' }, + { label: '制裁/高风险地区', value: '制裁/高风险地区' }, + { label: '频繁争议', value: '频繁争议' }, + { label: '车辆/资产高风险', value: '车辆/资产高风险' }, + { label: '信息不实', value: '信息不实' }, + { label: '开票异常', value: '开票异常' }, + { label: '多头签约', value: '多头签约' } + ]; + + var customerLabelTagStyle = { + margin: 0, + background: '#fff', + border: '1px solid #f77234', + color: '#1d2129', + borderRadius: 4, + lineHeight: '20px', + padding: '0 7px' + }; + var customerLabelCountTagStyle = { + margin: 0, + background: '#fff', + border: '1px solid #c9cdd4', + color: '#4e5969', + borderRadius: 4, + lineHeight: '20px', + padding: '0 7px', + cursor: 'default' + }; + + /** PDF:区域 — 省-市级联(示例数据,可对接字典) */ + var regionOptions = [ + { value: 'zj', label: '浙江省', children: [ + { value: 'zj-hz', label: '杭州市' }, + { value: 'zj-jx', label: '嘉兴市' }, + { value: 'zj-nb', label: '宁波市' } + ] }, + { value: 'sh', label: '上海市', children: [ + { value: 'sh-pu', label: '上海市' } + ] }, + { value: 'js', label: '江苏省', children: [ + { value: 'js-nj', label: '南京市' }, + { value: 'js-sz', label: '苏州市' } + ] } + ]; + + // 自定义 SVG 图标(高保真还原 Arco 风格) + var SearchIcon = function() { return React.createElement('svg', { viewBox: '0 0 1024 1024', width: 14, height: 14, fill: 'currentColor' }, React.createElement('path', { d: 'M909.6 854.5L649.9 594.8C690.2 542.7 712 479 712 412c0-80.2-31.3-155.4-87.9-212.1-56.6-56.7-132-87.9-212.1-87.9s-155.5 31.3-212.1 87.9C143.2 256.5 112 331.8 112 412c0 80.1 31.3 155.5 87.9 212.1C256.5 680.8 331.8 712 412 712c67 0 130.6-21.8 182.7-62l259.7 259.6a8.2 8.2 0 0011.6 0l43.6-43.5a8.2 8.2 0 000-11.6zM570.4 570.4C528 612.7 471.8 636 412 636s-116-23.3-158.4-65.6C211.3 528 188 471.8 188 412s23.3-116.1 65.6-158.4C296 211.3 352.2 188 412 188s116.1 23.2 158.4 65.6S636 352.2 636 412s-23.3 116.1-65.6 158.4z' })); }; + var ResetIcon = function() { return React.createElement('svg', { viewBox: '0 0 1024 1024', width: 14, height: 14, fill: 'currentColor' }, React.createElement('path', { d: 'M793 242H366v-74c0-6.7-7.7-10.4-12.9-6.3l-142 112a8 8 0 000 12.6l142 112c5.2 4.1 12.9.4 12.9-6.3v-74h415v470H175c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h618c35.3 0 64-28.7 64-64V306c0-35.3-28.7-64-64-64z' })); }; + var PlusIcon = function() { return React.createElement('svg', { viewBox: '0 0 1024 1024', width: 14, height: 14, fill: 'currentColor' }, React.createElement('path', { d: 'M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z' }), React.createElement('path', { d: 'M192 474h672q8 0 8 8v60q0 8-8 8H192q-8 0-8-8v-60q0-8 8-8z' })); }; + var DownloadIcon = function() { return React.createElement('svg', { viewBox: '0 0 1024 1024', width: 16, height: 16, fill: 'currentColor' }, React.createElement('path', { d: 'M505.7 661a8 8 0 0012.6 0l112-141.7c4.1-5.2.4-12.9-6.3-12.9h-74.1V168c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v338.3H400c-6.7 0-10.4 7.7-6.3 12.9l112 141.8zM878 626h-60c-4.4 0-8 3.6-8 8v154H214V634c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v198c0 17.7 14.3 32 32 32h684c17.7 0 32-14.3 32-32V634c0-4.4-3.6-8-8-8z' })); }; + var ListIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4, strokeLinecap: 'butt', strokeLinejoin: 'miter' }, React.createElement('path', { d: 'M17 12H42' }), React.createElement('path', { d: 'M17 24H42' }), React.createElement('path', { d: 'M17 36H42' }), React.createElement('path', { d: 'M8 12H9' }), React.createElement('path', { d: 'M8 24H9' }), React.createElement('path', { d: 'M8 36H9' })); }; + + /** 与 Ant Design Select 后缀箭头同形(DownOutlined 路径,收起态旋转 180° 与展开动画一致) */ + var SelectSuffixArrowIcon = function (props) { + var up = props && props.up; + return React.createElement('span', { + className: 'ant-select-arrow', + style: { + display: 'inline-flex', + alignItems: 'center', + lineHeight: 0, + marginLeft: 4, + flexShrink: 0, + color: 'inherit', + fontSize: 12, + transform: up ? 'rotate(180deg)' : 'none', + transformOrigin: '50% 50%', + transition: 'transform 0.3s' + }, + 'aria-hidden': true + }, + React.createElement('svg', { + viewBox: '64 64 896 896', + focusable: 'false', + width: '1em', + height: '1em', + fill: 'currentColor' + }, + React.createElement('path', { d: 'M884 256h-75c-5.1 0-9.9 2.5-12.6 6.5L512 654.6 227.9 262.6c-2.7-4-7.5-6.5-12.6-6.5h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z' }) + ) + ); + }; + + var renderLabelTooltipContent = function (tags) { + return React.createElement(Space, { direction: 'vertical', size: 6, style: { padding: '2px 0' } }, + tags.map(function (t) { + return React.createElement(Tag, { key: t, style: customerLabelTagStyle }, t); + }) + ); + }; + + /** 多标签:仅展示第一个 +「+N」;悬浮数量展示全部 */ + var renderCustomerLabels = function (tags) { + if (!tags || !tags.length) return React.createElement('span', { style: { color: '#86909c' } }, '—'); + if (tags.length === 1) { + return React.createElement(Space, { size: 4, wrap: false, style: { maxWidth: '100%', overflow: 'hidden' } }, + React.createElement(Tag, { style: customerLabelTagStyle }, tags[0]) + ); + } + var rest = tags.length - 1; + var countEl = React.createElement(Tag, { style: customerLabelCountTagStyle }, '+' + String(rest)); + return React.createElement(Space, { size: 4, wrap: false, style: { maxWidth: '100%', overflow: 'hidden' } }, + React.createElement(Tag, { style: customerLabelTagStyle }, tags[0]), + React.createElement(Tooltip, { title: renderLabelTooltipContent(tags) }, + React.createElement('span', { style: { display: 'inline-flex', alignItems: 'center', verticalAlign: 'middle' } }, countEl) + ) + ); + }; + + var renderCustomerStatus = function (text) { + var dot = '#86909c'; + if (text === '正常') dot = '#00b42a'; + else if (text === '黑名单') dot = '#f53f3f'; + return React.createElement(Space, { size: 6 }, + React.createElement('span', { style: { display: 'inline-block', width: 6, height: 6, borderRadius: '50%', backgroundColor: dot } }), + React.createElement('span', null, text) + ); + }; + + var columns = [ + { title: '客户编号', dataIndex: 'code', key: 'code', width: 132, fixed: 'left' }, + { title: '客户名称', dataIndex: 'name', key: 'name', width: 200, ellipsis: true }, + { title: '标签', dataIndex: 'labels', key: 'labels', width: 120, className: 'customer-col-labels', render: renderCustomerLabels }, + { title: '客户区域', dataIndex: 'region', key: 'region', width: 100, ellipsis: true }, + { title: '客户状态', dataIndex: 'status', key: 'status', width: 100, render: renderCustomerStatus }, + { title: '业务部门', dataIndex: 'department', key: 'department', width: 110, ellipsis: true }, + { title: '业务负责人', dataIndex: 'manager', key: 'manager', width: 110, ellipsis: true }, + { title: '客户类型', dataIndex: 'customerType', key: 'customerType', width: 100 }, + { title: '所属行业', dataIndex: 'industry', key: 'industry', width: 100, ellipsis: true }, + { title: '统一社会信用代码', dataIndex: 'creditCode', key: 'creditCode', width: 200, ellipsis: true }, + { title: '法人', dataIndex: 'legalPerson', key: 'legalPerson', width: 88 }, + { title: '注册资本', dataIndex: 'regCapital', key: 'regCapital', width: 104 }, + { title: '经营状态', dataIndex: 'operateStatus', key: 'operateStatus', width: 88 }, + { title: '详细地址', dataIndex: 'address', key: 'address', width: 240, ellipsis: true }, + { title: '创建时间', dataIndex: 'createTime', key: 'createTime', width: 176, className: 'customer-col-create-time', ellipsis: true }, + { + title: '操作', + key: 'action', + fixed: 'right', + width: 168, + render: function (_, record) { + return React.createElement(Space, { size: 0, split: React.createElement('span', { style: { color: '#e5e6eb' } }, '|') }, + React.createElement(Button, { type: 'link', size: 'small', style: { padding: '0 4px' }, onClick: function () { message.info('详情:' + record.name); } }, '详情'), + React.createElement(Button, { type: 'link', size: 'small', style: { padding: '0 4px' }, onClick: function () { message.info('编辑:' + record.name); } }, '编辑'), + React.createElement(Button, { type: 'link', size: 'small', style: { padding: '0 4px' }, onClick: function () { message.info('删除:' + record.name); } }, '删除') + ); + } + } + ]; + + var data = [ + { key: '1', code: 'C000001', name: '北京华宇科技有限公司', labels: ['资质存疑'], region: '华北地区', status: '正常', department: '销售一部', manager: '张伟', customerType: '企业客户', industry: '互联网', creditCode: '91110108MA01D2XY89', legalPerson: '李明', regCapital: '1000万元', operateStatus: '在业', address: '北京市海淀区中关村大街18号科创大厦8层', createTime: '2023-10-25 14:30:00' }, + { key: '2', code: 'A000001', name: '上海诚新贸易有限公司', labels: ['频繁改账期'], region: '华东地区', status: '正常', department: '销售一部', manager: '王芳', customerType: '企业客户', industry: '零售', creditCode: '91310115MA1K3NBC12', legalPerson: '陈强', regCapital: '500万元', operateStatus: '在业', address: '上海市浦东新区张江路1288号科技园3号楼', createTime: '2023-11-02 09:15:00' }, + { key: '3', code: 'B000001', name: '深圳智联信息技术有限公司', labels: [], region: '华南地区', status: '正常', department: '市场开拓部', manager: '刘洋', customerType: '企业客户', industry: '互联网', creditCode: '91440300MA5F8QWE45', legalPerson: '赵敏', regCapital: '2000万元', operateStatus: '在业', address: '广东省深圳市南山区科技园南区科苑路15号', createTime: '2023-11-18 16:20:00' }, + { key: '4', code: 'A000002', name: '杭州云帆智能制造股份有限公司', labels: ['逾期预警'], region: '华东地区', status: '正常', department: '大客户部', manager: '李强', customerType: '企业客户', industry: '制造业', creditCode: '91330106MA2B7HJK01', legalPerson: '周杰', regCapital: '5000万元', operateStatus: '存续', address: '浙江省杭州市滨江区物联网街451号', createTime: '2023-12-05 11:00:00' }, + { key: '5', code: 'D000001', name: '成都天府医疗健康集团', labels: ['信息不实'], region: '西南地区', status: '正常', department: '大客户部', manager: '陈静', customerType: '企业客户', industry: '医疗保健', creditCode: '91510100MA6C9RST78', legalPerson: '吴磊', regCapital: '3000万元', operateStatus: '在业', address: '四川省成都市高新区天府大道北段966号', createTime: '2024-01-08 10:45:00' }, + { key: '6', code: 'B000002', name: '广州粤海金融服务有限公司', labels: ['严重拖欠', '多头签约'], region: '华南地区', status: '黑名单', department: '销售二部', manager: '孙丽', customerType: '企业客户', industry: '金融', creditCode: '91440101MA5D1UVW23', legalPerson: '郑华', regCapital: '8000万元', operateStatus: '在业', address: '广东省广州市天河区珠江东路30号金融中心16层', createTime: '2024-01-22 13:10:00' }, + { key: '7', code: 'E000001', name: '武汉长江物流供应链有限公司', labels: [], region: '华中地区', status: '正常', department: '销售一部', manager: '张伟', customerType: '企业客户', industry: '物流', creditCode: '91420100MA4K2PQR56', legalPerson: '冯涛', regCapital: '1500万元', operateStatus: '在业', address: '湖北省武汉市东西湖区物流大道88号', createTime: '2024-02-01 08:50:00' }, + { key: '8', code: 'A000003', name: '南京金陵软件科技有限公司', labels: [], region: '华东地区', status: '正常', department: '市场开拓部', manager: '王芳', customerType: '企业客户', industry: '互联网', creditCode: '91320105MA1P5XYZ99', legalPerson: '韩雪', regCapital: '800万元', operateStatus: '在业', address: '江苏省南京市雨花台区软件大道101号', createTime: '2024-02-14 15:25:00' }, + { key: '9', code: 'C000002', name: '天津市滨海新区港口设备制造厂', labels: ['涉诉/仲裁'], region: '华北地区', status: '正常', department: '销售二部', manager: '刘洋', customerType: '企业客户', industry: '制造业', creditCode: '91120116MA07NMLM34', legalPerson: '曹阳', regCapital: '2200万元', operateStatus: '存续', address: '天津市滨海新区临港经济区渤海路36号', createTime: '2024-03-03 09:40:00' }, + { key: '10', code: 'B000003', name: '厦门海峡跨境电商有限公司', labels: [], region: '华南地区', status: '正常', department: '市场开拓部', manager: '赵敏', customerType: '企业客户', industry: '零售', creditCode: '91350200MA8F3CDE77', legalPerson: '许晴', regCapital: '600万元', operateStatus: '在业', address: '福建省厦门市湖里区象屿路97号国际航运中心', createTime: '2024-03-20 14:05:00' }, + { key: '11', code: 'F000001', name: '西安市教育局机关服务中心', labels: [], region: '西北地区', status: '正常', department: '大客户部', manager: '李强', customerType: '政府机构', industry: '公共服务', creditCode: '91610103MB1T2ABC88', legalPerson: '何伟', regCapital: '—', operateStatus: '在业', address: '陕西省西安市碑林区盐店街28号', createTime: '2024-04-02 11:30:00' }, + { key: '12', code: 'A000004', name: '青岛海洋生物医药研究院有限公司', labels: ['开票异常'], region: '华东地区', status: '正常', department: '销售一部', manager: '陈静', customerType: '企业客户', industry: '医疗保健', creditCode: '91370212MA3U5FGH22', legalPerson: '罗斌', regCapital: '3500万元', operateStatus: '在业', address: '山东省青岛市崂山区松岭路238号', createTime: '2024-04-18 16:00:00' }, + { key: '13', code: 'E000002', name: '郑州中原新能源汽车销售有限公司', labels: ['严重拖欠', '涉诉/仲裁', '多头签约'], region: '华中地区', status: '黑名单', department: '销售二部', manager: '孙丽', customerType: '企业客户', industry: '制造业', creditCode: '91410105MA9L6NOP44', legalPerson: '丁凯', regCapital: '1200万元', operateStatus: '注销', address: '河南省郑州市金水区经三路66号(已迁出)', createTime: '2024-05-06 10:15:00' }, + { key: '14', code: 'A000005', name: '个体工商户·林晓峰五金经营部', labels: [], region: '华东地区', status: '正常', department: '销售一部', manager: '周杰', customerType: '个人客户', industry: '零售', creditCode: '92330102MA2HY67890', legalPerson: '林晓峰', regCapital: '50万元', operateStatus: '在业', address: '浙江省温州市鹿城区车站大道789号', createTime: '2024-05-22 09:20:00' }, + { key: '15', code: 'D000002', name: '重庆山城火锅餐饮管理有限公司', labels: [], region: '西南地区', status: '正常', department: '市场开拓部', manager: '吴磊', customerType: '企业客户', industry: '零售', creditCode: '91500105MA60QRS111', legalPerson: '黄丽', regCapital: '300万元', operateStatus: '在业', address: '重庆市渝中区解放碑民族路188号', createTime: '2024-06-01 12:45:00' }, + { key: '16', code: 'A000006', name: '苏州工业园区精密模具厂', labels: ['车辆/资产高风险', '制裁/高风险地区'], region: '华东地区', status: '黑名单', department: '大客户部', manager: '郑华', customerType: '企业客户', industry: '制造业', creditCode: '91320594MA1W2TUV55', legalPerson: '马军', regCapital: '1800万元', operateStatus: '在业', address: '江苏省苏州市工业园区星龙街428号', createTime: '2024-06-15 15:50:00' }, + { key: '17', code: 'E000003', name: '长沙湘江科创投资基金(有限合伙)', labels: ['频繁争议'], region: '华中地区', status: '正常', department: '大客户部', manager: '冯涛', customerType: '企业客户', industry: '金融', creditCode: '91430100MA4L8XYZ66', legalPerson: '谢文', regCapital: '10000万元', operateStatus: '在业', address: '湖南省长沙市岳麓区麓谷大道658号', createTime: '2024-07-03 08:30:00' }, + { key: '18', code: 'C000003', name: '石家庄市桥西区智慧城市运营中心', labels: [], region: '华北地区', status: '正常', department: '市场开拓部', manager: '韩雪', customerType: '政府机构', industry: '互联网', creditCode: '91130104MB0X9DEF12', legalPerson: '邓伟', regCapital: '—', operateStatus: '在业', address: '河北省石家庄市桥西区中华南大街172号', createTime: '2024-07-20 14:10:00' }, + { key: '19', code: 'A000007', name: '合肥徽风电子元器件有限公司', labels: ['频繁改账期'], region: '华东地区', status: '正常', department: '销售二部', manager: '曹阳', customerType: '企业客户', industry: '制造业', creditCode: '91340100MA2U1BCD33', legalPerson: '蒋欣', regCapital: '900万元', operateStatus: '在业', address: '安徽省合肥市高新区望江西路800号', createTime: '2024-08-08 11:55:00' }, + { key: '20', code: 'D000003', name: '昆明滇池生态旅游开发有限公司', labels: ['制裁/高风险地区', '多头签约', '开票异常'], region: '西南地区', status: '正常', department: '销售一部', manager: '许晴', customerType: '企业客户', industry: '公共服务', creditCode: '91530100MA6N7KLM88', legalPerson: '潘越', regCapital: '4500万元', operateStatus: '存续', address: '云南省昆明市西山区滇池路1318号', createTime: '2024-08-25 17:00:00' } + ]; + + var deptManagerMap = {}; + data.forEach(function (r) { + if (!r.department) return; + if (!deptManagerMap[r.department]) deptManagerMap[r.department] = []; + if (r.manager && deptManagerMap[r.department].indexOf(r.manager) < 0) { + deptManagerMap[r.department].push(r.manager); + } + }); + + var departmentOptions = []; + var seenDept = {}; + data.forEach(function (r) { + if (r.department && !seenDept[r.department]) { + seenDept[r.department] = true; + departmentOptions.push({ label: r.department, value: r.department }); + } + }); + + var customerCodeFilterOptions = []; + var seenCode = {}; + data.forEach(function (r) { + if (r.code && !seenCode[r.code]) { + seenCode[r.code] = true; + customerCodeFilterOptions.push({ label: r.code + ' · ' + r.name, value: r.code }); + } + }); + + var customerNameFilterOptions = []; + var seenName = {}; + data.forEach(function (r) { + if (r.name && !seenName[r.name]) { + seenName[r.name] = true; + customerNameFilterOptions.push({ label: r.name, value: r.name }); + } + }); + + var fuzzyFilterOption = function (input, option) { + if (input == null || String(input).trim() === '') return true; + var s = String(input).toLowerCase(); + var label = (option && option.label != null ? String(option.label) : '') + ''; + var value = (option && option.value != null ? String(option.value) : '') + ''; + return label.toLowerCase().indexOf(s) >= 0 || value.toLowerCase().indexOf(s) >= 0; + }; + + var getManagerFilterOptions = function (deptVals) { + if (!deptVals || deptVals.length === 0) { + var all = {}; + Object.keys(deptManagerMap).forEach(function (d) { + (deptManagerMap[d] || []).forEach(function (m) { all[m] = true; }); + }); + return Object.keys(all).sort().map(function (m) { return { label: m, value: m }; }); + } + var pick = {}; + deptVals.forEach(function (d) { + (deptManagerMap[d] || []).forEach(function (m) { pick[m] = true; }); + }); + return Object.keys(pick).sort().map(function (m) { return { label: m, value: m }; }); + }; + + var handleFilterDeptChange = function (vals) { + var v = vals || []; + setFilterDeptSelection(v); + var allowed = getManagerFilterOptions(v).map(function (o) { return o.value; }); + var curM = filterForm.getFieldValue('filterManagers') || []; + filterForm.setFieldsValue({ + filterManagers: curM.filter(function (m) { return allowed.indexOf(m) >= 0; }) + }); + }; + + var formItemLayout = { + labelAlign: 'left', + colon: false, + labelCol: { flex: '0 0 100px' }, + wrapperCol: { flex: '1 1 0' } + }; + + var TextArea = Input.TextArea; + + var tabCustomerBase = React.createElement(Row, { gutter: 16 }, + React.createElement(Col, { span: 24 }, + React.createElement(Form.Item, { label: '客户类型', name: 'customerType', rules: [{ required: true, message: '请选择客户类型' }] }, + React.createElement(Radio.Group, null, + React.createElement(Radio, { value: '企业' }, '企业'), + React.createElement(Radio, { value: '个人' }, '个人'), + React.createElement(Radio, { value: '事业单位' }, '事业单位') + ) + ) + ), + React.createElement(Col, { span: 24 }, + React.createElement(Form.Item, { label: '客户分级', name: 'abcLevel', rules: [{ required: true, message: '请选择分级' }] }, + React.createElement(Radio.Group, null, + React.createElement(Radio, { value: 'A' }, 'A'), + React.createElement(Radio, { value: 'B' }, 'B'), + React.createElement(Radio, { value: 'C' }, 'C') + ) + ) + ), + React.createElement(Col, { span: 12 }, + React.createElement(Form.Item, { label: '客户全称', name: 'name', rules: [{ required: true, message: '请输入客户全称' }] }, + React.createElement(Input, { placeholder: '与客户证照一致' }) + ) + ), + React.createElement(Col, { span: 12 }, + React.createElement(Form.Item, { label: '客户简称', name: 'shortName' }, + React.createElement(Input, { placeholder: '选填' }) + ) + ), + React.createElement(Col, { span: 24 }, + React.createElement(Form.Item, { label: '所属城市', name: 'region', rules: [{ required: true, message: '请选择省-市' }] }, + React.createElement(Cascader, { options: regionOptions, placeholder: '省 - 市(级联)', style: { width: '100%' } }) + ) + ), + React.createElement(Col, { span: 24 }, + React.createElement(Form.Item, { label: '通讯地址', name: 'address' }, + React.createElement(TextArea, { rows: 2, placeholder: '通讯地址' }) + ) + ), + React.createElement(Col, { span: 12 }, + React.createElement(Form.Item, { label: '业务部门', name: 'department', rules: [{ required: true, message: '请填写业务部门' }] }, + React.createElement(Input, { placeholder: '业务部门' }) + ) + ), + React.createElement(Col, { span: 12 }, + React.createElement(Form.Item, { label: '业务负责人', name: 'manager', rules: [{ required: true, message: '请填写业务负责人' }] }, + React.createElement(Input, { placeholder: '业务负责人' }) + ) + ), + React.createElement(Col, { span: 24 }, + React.createElement(Form.Item, { label: '备注', name: 'remark' }, + React.createElement(TextArea, { rows: 2, placeholder: '备注' }) + ) + ) + ); + + var tabContact = React.createElement(Row, { gutter: 16 }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '姓名', name: 'contactName' }, + React.createElement(Input, { placeholder: '联系人姓名' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '手机号', name: 'contactPhone' }, + React.createElement(Input, { placeholder: '手机号' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '职位', name: 'contactTitle' }, + React.createElement(Input, { placeholder: '职位' }) + ) + ) + ); + + var tabInvoice = React.createElement(Row, { gutter: 16 }, + React.createElement(Col, { span: 24 }, + React.createElement(Form.Item, { + label: '发票抬头', + name: 'invoiceTitle', + rules: [{ required: true, message: '请填写发票抬头' }], + extra: '建议与客户全称保持一致' + }, + React.createElement(Input, { placeholder: '与客户名称一致' }) + ) + ), + React.createElement(Col, { span: 12 }, + React.createElement(Form.Item, { label: '纳税人识别号', name: 'taxId', rules: [{ required: true, message: '请填写纳税人识别号' }] }, + React.createElement(Input, { placeholder: '纳税人识别号' }) + ) + ), + React.createElement(Col, { span: 12 }, + React.createElement(Form.Item, { label: '注册电话', name: 'regPhone' }, + React.createElement(Input, { placeholder: '注册电话' }) + ) + ), + React.createElement(Col, { span: 24 }, + React.createElement(Form.Item, { label: '注册地址', name: 'regAddress' }, + React.createElement(TextArea, { rows: 2, placeholder: '注册地址' }) + ) + ), + React.createElement(Col, { span: 12 }, + React.createElement(Form.Item, { label: '开户银行', name: 'bankName', rules: [{ required: true, message: '请填写开户银行' }] }, + React.createElement(Input, { placeholder: '开户银行' }) + ) + ), + React.createElement(Col, { span: 12 }, + React.createElement(Form.Item, { label: '账号', name: 'bankAccount', rules: [{ required: true, message: '请填写银行账号' }] }, + React.createElement(Input, { placeholder: '银行账号' }) + ) + ) + ); + + var customerModal = React.createElement(Modal, { + title: '新增客户', + open: modalOpen, + width: 720, + onCancel: function () { setModalOpen(false); }, + onOk: function () { + customerForm.validateFields().then(function () { + message.success('已保存(示例,请对接保存接口)'); + setModalOpen(false); + }).catch(function () {}); + }, + okText: '保存', + cancelText: '取消', + destroyOnClose: true + }, + React.createElement(Form, { + form: customerForm, + layout: 'vertical', + style: { marginTop: 4 }, + initialValues: { customerType: '企业', abcLevel: 'B' } + }, + React.createElement(Tabs, { + defaultActiveKey: 'base', + items: [ + { key: 'base', label: '客户信息', children: tabCustomerBase }, + { key: 'contact', label: '联系人信息', children: tabContact }, + { key: 'invoice', label: '付款及开票信息', children: tabInvoice } + ] + }) + ) + ); + + return React.createElement(Layout, { className: 'arco-theme-overrides', style: { minHeight: '100vh', background: '#f2f3f5', fontFamily: 'Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif' } }, + // 内联 CSS 以实现最高保真度的 Arco UI + React.createElement('style', null, ` + .arco-theme-overrides .ant-btn { border-radius: 4px; } + .arco-theme-overrides .ant-btn-primary { background-color: #165dff; border-color: #165dff; } + .arco-theme-overrides .ant-btn-primary:hover { background-color: #4080ff; border-color: #4080ff; } + .arco-theme-overrides .ant-btn-link { color: #165dff; } + .arco-theme-overrides .ant-btn-link:hover { background-color: transparent; color: #4080ff; } + /* 表头对齐 Arco .arco-table-th-title:14px / #909399,标题区 22px 行高,整行仍 40px */ + .arco-theme-overrides .ant-table-thead > tr > th { + background-color: #f2f3f5; + color: #909399; + font-weight: 400; + font-size: 14px; + height: 40px; + padding: 9px 16px; + line-height: 22px; + box-sizing: border-box; + border-bottom: 1px solid #e5e6eb; + border-top: none; + vertical-align: middle; + } + .arco-theme-overrides .ant-table-thead > tr > th .ant-table-column-title { + font-size: 14px; + color: #909399; + line-height: 22px; + min-height: 22px; + white-space: nowrap; + } + .arco-theme-overrides .ant-table-thead > tr > th::before { display: none !important; } + .arco-theme-overrides .ant-table-tbody > tr > td { border-bottom: 1px solid #e5e6eb; padding: 13px 16px; color: #4e5969; vertical-align: middle; line-height: 22px; } + .arco-theme-overrides .ant-table-tbody > tr { height: 52px; } + .arco-theme-overrides .ant-table-cell.customer-col-create-time { white-space: nowrap; } + .arco-theme-overrides .ant-table-cell.customer-col-labels .ant-space { max-width: 100%; } + .arco-theme-overrides .customer-table-scroll-wrap { width: 100%; min-width: 0; max-width: 100%; } + .arco-theme-overrides .ant-table-wrapper { border: none; } + .arco-theme-overrides .ant-table { border: none; } + .arco-theme-overrides .ant-table-container { border: none; } + .arco-theme-overrides .ant-table-pagination.ant-pagination { margin: 16px 0 0 0; } + .arco-theme-overrides .ant-card { border: none; border-radius: 4px; } + .arco-theme-overrides .customer-page-card.ant-card { border: 1px solid #e5e6eb !important; border-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,0.06); background: #fff; } + .arco-theme-overrides .customer-page-card .ant-card-body { padding: 20px 24px 24px; } + /* 筛选组件(Input/Select/DatePicker)的默认、Hover、Focus样式复刻 */ + .arco-theme-overrides .ant-input, .arco-theme-overrides .ant-select-selector, .arco-theme-overrides .ant-picker { border-radius: 2px; border: 1px solid #e5e6eb; background-color: #fff; transition: all 0.1s cubic-bezier(0, 0, 1, 1); } + .arco-theme-overrides .ant-input:hover, .arco-theme-overrides .ant-select:not(.ant-select-disabled):hover .ant-select-selector, .arco-theme-overrides .ant-picker:hover { background-color: #fff; border-color: #165dff; } + .arco-theme-overrides .ant-input:focus, .arco-theme-overrides .ant-input-focused, .arco-theme-overrides .ant-select-focused .ant-select-selector, .arco-theme-overrides .ant-picker-focused { background-color: #fff; border: 1px solid #165dff !important; box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2) !important; outline: 0; } + .arco-theme-overrides .ant-input-affix-wrapper:focus, .arco-theme-overrides .ant-input-affix-wrapper-focused { background-color: #fff; border-color: #165dff !important; box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2) !important; } + .arco-theme-overrides .ant-input-affix-wrapper > input.ant-input, + .arco-theme-overrides .ant-input-affix-wrapper > input.ant-input:focus, + .arco-theme-overrides .ant-input-affix-wrapper > input.ant-input:hover { height: 100%; padding: 0; border: none !important; box-shadow: none !important; outline: none !important; background-color: transparent !important; } + + /* 日期选择器展开面板(Dropdown/Panel)的样式复刻 */ + .arco-theme-overrides .ant-picker-dropdown .ant-picker-panel-container { border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 1px solid #e5e6eb; background: #fff; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-header { border-bottom: 1px solid #e5e6eb; color: #1d2129; padding: 0 8px; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-content th { color: #86909c; font-weight: 400; font-size: 14px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner { background: #165dff; color: #fff; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner, + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner { background: #165dff; color: #fff; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-in-range::before { background: #e8f3ff; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::before { border: 1px solid transparent; border-radius: 2px; position: relative; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background-color: #165dff; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today.ant-picker-cell-selected .ant-picker-cell-inner::after { background-color: #fff; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end) .ant-picker-cell-inner { background: #f2f3f5; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-inner { border-radius: 2px; font-size: 14px; color: #4e5969; width: 24px; height: 24px; line-height: 24px; } + + /* 日期选择器展开面板(Dropdown/Panel)的样式复刻 */ + .arco-theme-overrides .ant-picker-dropdown .ant-picker-panel-container { border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 1px solid #e5e6eb; background: #fff; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-header { border-bottom: 1px solid #e5e6eb; color: #1d2129; padding: 0 8px; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-content th { color: #86909c; font-weight: 400; font-size: 14px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner { background: #165dff; color: #fff; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner, + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner { background: #165dff; color: #fff; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-in-range::before { background: #e8f3ff; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::before { border: 1px solid transparent; border-radius: 2px; position: relative; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background-color: #165dff; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today.ant-picker-cell-selected .ant-picker-cell-inner::after { background-color: #fff; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end) .ant-picker-cell-inner { background: #f2f3f5; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-inner { border-radius: 2px; font-size: 14px; color: #4e5969; width: 24px; height: 24px; line-height: 24px; } + .arco-theme-overrides .ant-breadcrumb { color: #86909c; font-size: 14px; white-space: nowrap; flex-shrink: 0; } + .arco-theme-overrides .customer-page-header-row { display: flex; align-items: center; flex-wrap: nowrap; gap: 0; margin-bottom: 20px; } + .arco-theme-overrides .ant-breadcrumb a { color: #4e5969; } + .arco-theme-overrides .ant-breadcrumb a:hover { color: #165dff; background-color: transparent; } + .arco-theme-overrides .ant-form-item-label { padding: 0 16px 0 0 !important; line-height: 32px; height: 32px; display: flex; align-items: center; } + .arco-theme-overrides .ant-form-item-control { display: flex; align-items: center; line-height: 32px; min-height: 32px; } + .arco-theme-overrides .ant-form-item-control-input { min-height: 32px; width: 100%; display: flex; align-items: center; } + .arco-theme-overrides .ant-form-item-control-input-content { display: flex; align-items: center; width: 100%; height: 100%; } + .arco-theme-overrides .ant-select { width: 100%; height: 32px; } + .arco-theme-overrides .ant-select-selector { height: 32px !important; min-height: 32px !important; display: flex; align-items: center; width: 100%; padding: 0 12px; } + .arco-theme-overrides .ant-select-multiple .ant-select-selector { padding: 0 4px; align-items: center; } + .arco-theme-overrides .ant-select-selection-item { line-height: 30px !important; margin-top: 0 !important; margin-bottom: 0 !important; } + .arco-theme-overrides .ant-select-selection-overflow { align-items: center; } + .arco-theme-overrides .customer-filter-manager-select.ant-select-multiple .ant-select-selector { overflow: hidden; } + .arco-theme-overrides .customer-filter-manager-select.ant-select-multiple .ant-select-selection-overflow { flex-wrap: nowrap; overflow: hidden; } + .arco-theme-overrides .ant-input { height: 32px; padding: 4px 12px; } + .arco-theme-overrides .ant-picker { height: 32px !important; min-height: 32px !important; display: flex; align-items: center; padding: 4px 12px; width: 100%; } + .arco-theme-overrides .ant-form-item-label > label { color: #4e5969; white-space: nowrap; } + .arco-theme-overrides .ant-form-item-label > label::after { display: none !important; content: "" !important; margin: 0 !important; } + + /* 多选标签及下拉菜单 Checkbox 样式复刻 (模拟 Arco) */ + .arco-theme-overrides .ant-select-multiple .ant-select-selection-item { background: #f2f3f5; border: none; border-radius: 2px; } + .arco-theme-overrides .ant-select-multiple.ant-select-show-arrow .ant-select-selection-item { padding-inline-end: 24px; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option { padding-left: 36px; position: relative; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option::before { content: ""; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border: 1px solid #e5e6eb; border-radius: 2px; transition: all 0.1s; background: #fff; box-sizing: border-box; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option-selected::before { background-color: #165dff; border-color: #165dff; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option-selected::after { content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-70%) rotate(45deg); width: 4px; height: 8px; border: 2px solid #fff; border-top: 0; border-left: 0; box-sizing: content-box; z-index: 1; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option-state { display: none; } + `), + // 仅保留客户管理主内容区(无顶栏、无侧栏);面包屑在卡片外,标题+筛选+列表在白卡片内 + React.createElement(Content, { style: { marginLeft: 0, padding: '16px 20px 24px', minHeight: '100vh', display: 'flex', flexDirection: 'column', background: '#f2f3f5' } }, + React.createElement('div', { className: 'customer-page-header-row', style: { marginBottom: 12, flexShrink: 0 } }, + React.createElement(Breadcrumb, { + separator: React.createElement('span', { style: { color: '#c9cdd4' } }, '/'), + items: [ + { title: React.createElement(ListIcon, { style: { display: 'inline-flex', alignItems: 'center', fontSize: 14, transform: 'translate(-2px, 1px)' } }) }, + { title: '业务管理' } + ] + }) + ), + React.createElement(Card, { className: 'customer-page-card', bordered: false }, + React.createElement('div', { style: { fontSize: 18, fontWeight: 600, color: '#1d2129', lineHeight: '26px', marginBottom: 20 } }, '客户管理'), + // 搜索表单区域 + React.createElement('div', { style: { marginBottom: 0 } }, + React.createElement(Row, { style: { flexWrap: 'nowrap', alignItems: 'stretch' } }, + React.createElement(Col, { flex: 1, style: { minWidth: 0, paddingRight: 40 } }, + React.createElement(Form, Object.assign({ layout: 'horizontal', form: filterForm }, formItemLayout), + React.createElement(Row, { gutter: 24, style: { rowGap: 0 } }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { name: 'filterCode', label: '客户编号', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + allowClear: true, + showSearch: true, + filterOption: fuzzyFilterOption, + placeholder: '请选择或搜索客户编号', + options: customerCodeFilterOptions + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { name: 'filterName', label: '客户名称', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + allowClear: true, + showSearch: true, + filterOption: fuzzyFilterOption, + placeholder: '请选择或搜索客户名称', + options: customerNameFilterOptions + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { name: 'filterTags', label: '标签', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + mode: 'multiple', + allowClear: true, + maxTagCount: 'responsive', + placeholder: '请选择标签', + options: customerLabelOptions + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { name: 'filterRegion', label: '区域', style: { marginBottom: 16, height: 32 } }, + React.createElement(Cascader, { + style: { width: '100%' }, + options: regionOptions, + placeholder: '请选择客户区域', + changeOnSelect: false + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { name: 'filterStatus', label: '客户状态', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + mode: 'multiple', + allowClear: true, + maxTagCount: 'responsive', + placeholder: '请选择客户状态', + options: [ + { label: '正常', value: '正常' }, + { label: '黑名单', value: '黑名单' } + ] + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { name: 'filterDepts', label: '业务部门', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + mode: 'multiple', + allowClear: true, + maxTagCount: 'responsive', + placeholder: '请选择业务部门', + options: departmentOptions, + onChange: handleFilterDeptChange + }) + ) + ) + ), + filterExpanded + ? React.createElement(Row, { gutter: 24, style: { rowGap: 0, marginTop: 0 } }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { name: 'filterManagers', label: '业务负责人', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + mode: 'multiple', + allowClear: true, + maxTagCount: 'responsive', + className: 'customer-filter-manager-select', + placeholder: '请选择业务负责人', + options: getManagerFilterOptions(filterDeptSelection) + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { name: 'filterDateRange', label: '创建时间', style: { marginBottom: 16, height: 32 } }, + React.createElement(DatePicker.RangePicker, { + style: { width: '100%' }, + placeholder: ['开始时间', '结束时间'] + }) + ) + ) + ) + : null + ) + ), + React.createElement(Divider, { + type: 'vertical', + style: { + alignSelf: 'stretch', + height: 'auto', + minHeight: filterExpanded ? 132 : 100, + borderLeftColor: 'rgb(229, 230, 235)', + borderLeftStyle: 'dashed', + marginLeft: 20, + marginRight: 20 + } + }), + React.createElement(Col, { flex: 'none', style: { textAlign: 'right', display: 'flex', flexDirection: 'column', alignItems: 'flex-end', minWidth: 100, maxWidth: 168 } }, + React.createElement(Space, { direction: 'vertical', size: 12, style: { width: '100%', alignItems: 'flex-end' } }, + React.createElement(Button, { type: 'primary', icon: React.createElement(SearchIcon, null), style: { display: 'flex', alignItems: 'center', gap: 6, justifyContent: 'center', width: 86 } }, '查询'), + React.createElement(Button, { + icon: React.createElement(ResetIcon, null), + style: { display: 'flex', alignItems: 'center', gap: 6, justifyContent: 'center', width: 86 }, + onClick: function () { + filterForm.resetFields(); + setFilterDeptSelection([]); + } + }, '重置'), + showFilterExpandToggle + ? React.createElement(Button, { + type: 'link', + size: 'small', + style: { padding: '0 4px', height: 'auto', lineHeight: 1.4, color: '#165dff', whiteSpace: 'normal', textAlign: 'right' }, + onClick: function () { setFilterExpanded(!filterExpanded); } + }, + React.createElement('span', { style: { display: 'inline-flex', alignItems: 'center', justifyContent: 'flex-end', width: '100%' } }, + filterExpanded ? '收起' : '更多筛选', + React.createElement(SelectSuffixArrowIcon, { up: filterExpanded }) + ) + ) + : null + ) + ) + ) + ), + React.createElement(Divider, { style: { margin: '16px 0 20px', borderColor: '#e5e6eb' } }), + // 工具栏 + 表格 + React.createElement('div', { style: { display: 'flex', flexDirection: 'column', flex: 1, minWidth: 0 } }, + React.createElement(Row, { justify: 'space-between', align: 'middle', style: { marginBottom: 16 } }, + React.createElement(Col, null, + React.createElement(Space, { size: 12 }, + React.createElement(Button, { type: 'primary', icon: React.createElement(PlusIcon, null), style: { display: 'flex', alignItems: 'center', gap: 6 }, onClick: function () { customerForm.resetFields(); setModalOpen(true); } }, '新增客户'), + React.createElement(Button, null, '批量导入') + ) + ), + React.createElement(Col, null, + React.createElement(Button, { + style: { padding: '4px 10px', height: 32, display: 'flex', alignItems: 'center', gap: 6, color: '#4e5969' }, + title: '批量导出', + onClick: function () { message.info('批量导出(示例)'); } + }, React.createElement(DownloadIcon, null), React.createElement('span', null, '批量导出')) + ) + ), + // 表格区域(横向超出出现滚动条;操作列 fixed 右侧) + React.createElement('div', { className: 'customer-table-scroll-wrap', style: { flex: 1, minHeight: 0, minWidth: 0 } }, + React.createElement(Table, { + rowSelection: { type: 'checkbox', columnWidth: 48 }, + columns: columns, + dataSource: data, + pagination: { + defaultPageSize: 10, + showSizeChanger: true, + pageSizeOptions: ['10', '20', '50', '100'], + showTotal: function (total) { return '共 ' + total + ' 条'; } + }, + scroll: { x: 2242 } + }) + ) + ) + ) + ), + customerModal + ); +}; + +if (typeof module !== 'undefined' && module.exports) module.exports = Component; diff --git a/ONEOS-web/CRM/客户管理-新增.jsx b/ONEOS-web/CRM/客户管理-新增.jsx new file mode 100644 index 0000000..9f1b679 --- /dev/null +++ b/ONEOS-web/CRM/客户管理-新增.jsx @@ -0,0 +1,262 @@ +// 【重要】必须使用 const Component 作为组件变量名 +// ONEOS-web - CRM 客户管理-新增(高保真还原分组表单样式) + +const Component = function () { + var antd = window.antd; + var Form = antd.Form; + var Input = antd.Input; + var Select = antd.Select; + var Button = antd.Button; + var Row = antd.Row; + var Col = antd.Col; + var Card = antd.Card; + var Layout = antd.Layout; + var Breadcrumb = antd.Breadcrumb; + var Cascader = antd.Cascader; + + var Content = Layout.Content; + + var _form = Form.useForm(); + var form = _form[0]; + + /** 区域 — 省-市级联(示例数据) */ + var regionOptions = [ + { value: 'zj', label: '浙江省', children: [ + { value: 'zj-hz', label: '杭州市' }, + { value: 'zj-jx', label: '嘉兴市' }, + { value: 'zj-nb', label: '宁波市' } + ] }, + { value: 'sh', label: '上海市', children: [ + { value: 'sh-pu', label: '上海市' } + ] }, + { value: 'js', label: '江苏省', children: [ + { value: 'js-nj', label: '南京市' }, + { value: 'js-sz', label: '苏州市' } + ] }, + { value: 'gd', label: '广东省', children: [ + { value: 'gd-gz', label: '广州市' }, + { value: 'gd-sz', label: '深圳市' } + ] } + ]; + + /** 示例业务部门和负责人数据 */ + var deptManagerMap = { + '销售一部': ['张伟', '王芳', '周杰', '陈静', '许晴'], + '销售二部': ['刘洋', '孙丽', '曹阳'], + '市场开拓部': ['吴磊', '赵敏', '韩雪'], + '大客户部': ['李强', '郑华', '冯涛'] + }; + var departmentOptions = Object.keys(deptManagerMap).map(function(dept) { + return { label: dept, value: dept }; + }); + + return React.createElement(Layout, { className: 'arco-theme-overrides', style: { minHeight: '100vh', background: '#f2f3f5', fontFamily: 'Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif' } }, + React.createElement('style', null, ` + .arco-grouped-form-page { display: flex; flex-direction: column; min-height: 100vh; } + .arco-grouped-form-page-content { flex: 1; padding: 16px 20px 24px; } + .arco-grouped-form-page .ant-card { margin-bottom: 16px; border-radius: 4px; border: none; box-shadow: 0 1px 2px rgba(0,0,0,0.06); } + .arco-grouped-form-page .ant-card-head { border-bottom: none; padding: 20px 24px 0; min-height: auto; } + .arco-grouped-form-page .ant-card-head-title { font-size: 16px; font-weight: 500; color: #1d2129; padding: 0; } + .arco-grouped-form-page .ant-card-body { padding: 24px; } + + /* 表单样式复刻 */ + .arco-grouped-form-page .ant-form-vertical .ant-form-item-label { padding-bottom: 8px; } + .arco-grouped-form-page .ant-form-item-label > label { color: #4e5969; font-size: 14px; font-weight: 400; } + .arco-grouped-form-page .ant-form-item-label > label::after { display: none !important; } + .arco-grouped-form-page .ant-form-item { margin-bottom: 24px; } + + /* 输入框和下拉框样式复刻 */ + .arco-grouped-form-page .ant-input, + .arco-grouped-form-page .ant-select-selector { border-radius: 2px; border-color: #e5e6eb; height: 32px; transition: all 0.1s cubic-bezier(0, 0, 1, 1); box-shadow: none !important; } + .arco-grouped-form-page .ant-input:hover, + .arco-grouped-form-page .ant-select:not(.ant-select-disabled):hover .ant-select-selector { border-color: #165dff; } + .arco-grouped-form-page .ant-input:focus, + .arco-grouped-form-page .ant-input-focused, + .arco-grouped-form-page .ant-select-focused .ant-select-selector { border-color: #165dff; box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2) !important; } + .arco-grouped-form-page .ant-select-selection-item, + .arco-grouped-form-page .ant-select-selection-placeholder { line-height: 30px !important; } + + /* 后缀输入框样式复刻 */ + .arco-grouped-form-page .ant-input-group-addon { background-color: #f2f3f5; border: 1px solid #e5e6eb; border-left: 0; border-radius: 0 2px 2px 0; color: #4e5969; padding: 0 12px; } + .arco-grouped-form-page .ant-input-wrapper { display: flex; align-items: stretch; } + .arco-grouped-form-page .ant-input-group > .ant-input:first-child { border-top-right-radius: 0; border-bottom-right-radius: 0; border-right: 0; } + .arco-grouped-form-page .ant-input-group > .ant-input:first-child:focus, + .arco-grouped-form-page .ant-input-group > .ant-input:first-child:hover { border-right: 1px solid #165dff; z-index: 1; } + + /* 底部操作栏 */ + .arco-grouped-form-footer { background: #fff; padding: 16px 24px; border-top: 1px solid #e5e6eb; display: flex; justify-content: flex-end; align-items: center; gap: 12px; position: sticky; bottom: 0; z-index: 100; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); } + .arco-grouped-form-footer .ant-btn { border-radius: 5px; height: 32px; padding: 4px 16px; font-size: 14px; } + .arco-grouped-form-footer .ant-btn-primary { background-color: #165dff; border-color: #165dff; } + .arco-grouped-form-footer .ant-btn-primary:hover { background-color: #4080ff; border-color: #4080ff; } + + .arco-grouped-form-page .ant-breadcrumb { color: #86909c; font-size: 14px; margin-bottom: 16px; } + .arco-grouped-form-page .ant-breadcrumb a { color: #4e5969; } + .arco-grouped-form-page .ant-breadcrumb a:hover { color: #165dff; background-color: transparent; } + + /* 级联选择器下拉菜单宽度一致 (强行控制宽度和两列平分) */ + .customer-full-width-cascader-popup { min-width: 100% !important; } + .customer-full-width-cascader-popup .ant-cascader-menu { width: 50%; min-width: 0; } + `), + React.createElement('div', { className: 'arco-grouped-form-page' }, + React.createElement('div', { className: 'arco-grouped-form-page-content' }, + // 面包屑导航 + React.createElement(Breadcrumb, { + separator: React.createElement('span', { style: { color: '#c9cdd4' } }, '/'), + items: [ + { title: '首页' }, + { title: '业务管理' }, + { title: '客户管理' }, + { title: React.createElement('span', { style: { color: '#1d2129' } }, '新增') } + ] + }), + + // 表单主体 + React.createElement(Form, { form: form, layout: 'vertical' }, + // 客户信息组 + React.createElement(Card, { title: '客户信息', bordered: false }, + React.createElement(Row, { gutter: 24 }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '客户类型', name: 'customerType', rules: [{ required: true, message: '请选择客户类型' }] }, + React.createElement(Select, { placeholder: '请选择客户类型', options: [{ label: '企业', value: '企业' }, { label: '个人', value: '个人' }, { label: '事业单位', value: '事业单位' }] }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '客户分级', name: 'customerLevel' }, + React.createElement(Select, { placeholder: '请选择客户分级', options: [{ label: 'A', value: 'A' }, { label: 'B', value: 'B' }, { label: 'C', value: 'C' }] }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '客户全称', name: 'customerName', rules: [{ required: true, message: '请输入客户全称' }] }, + React.createElement(Input, { + placeholder: '请输入客户全称', + onChange: function(e) { + form.setFieldsValue({ invoiceTitle: e.target.value }); + } + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '客户简称', name: 'customerShortName' }, + React.createElement(Input, { placeholder: '请输入客户简称' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '所属城市', name: 'city', rules: [{ required: true, message: '请选择所属城市' }] }, + React.createElement(Cascader, { + options: regionOptions, + placeholder: '请选择客户所属城市', + style: { width: '100%' }, + getPopupContainer: function (triggerNode) { return triggerNode.parentNode; }, + popupClassName: 'customer-full-width-cascader-popup' + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '通讯地址', name: 'address' }, + React.createElement(Input, { placeholder: '请输入通讯地址' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '业务负责部门', name: 'department', rules: [{ required: true, message: '请选择业务负责部门' }] }, + React.createElement(Select, { + placeholder: '请选择业务负责部门', + options: departmentOptions, + onChange: function() { form.setFieldsValue({ manager: undefined }); } + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { + noStyle: true, + shouldUpdate: function(prev, cur) { return prev.department !== cur.department; } + }, function() { + var curDept = form.getFieldValue('department'); + var managerOptions = []; + if (curDept && deptManagerMap[curDept]) { + managerOptions = deptManagerMap[curDept].map(function(m) { return { label: m, value: m }; }); + } + return React.createElement(Form.Item, { label: '业务负责人员', name: 'manager', rules: [{ required: true, message: '请选择业务负责人员' }] }, + React.createElement(Select, { + placeholder: '请选择业务负责人员', + options: managerOptions, + disabled: !curDept + }) + ); + }) + ), + React.createElement(Col, { span: 24 }, + React.createElement(Form.Item, { label: '备注', name: 'remark' }, + React.createElement(Input.TextArea, { placeholder: '请输入备注', style: { height: 52, minHeight: 52, resize: 'none' } }) + ) + ) + ) + ), + + // 联系人信息组 + React.createElement(Card, { title: '联系人信息', bordered: false }, + React.createElement(Row, { gutter: 24 }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '姓名', name: 'contactName' }, + React.createElement(Input, { placeholder: '请输入姓名' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '手机号', name: 'contactPhone' }, + React.createElement(Input, { placeholder: '请输入手机号' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '职位', name: 'contactPosition' }, + React.createElement(Input, { placeholder: '请输入职位' }) + ) + ) + ) + ), + + // 付款及开票信息组 + React.createElement(Card, { title: '付款及开票信息', bordered: false }, + React.createElement(Row, { gutter: 24 }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '发票抬头', name: 'invoiceTitle', rules: [{ required: true, message: '请先输入客户全称' }] }, + React.createElement(Input, { placeholder: '自动带入客户全称', disabled: true, style: { backgroundColor: '#f2f3f5', color: '#86909c' } }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '纳税人识别号', name: 'taxId', rules: [{ required: true, message: '请输入纳税人识别号' }] }, + React.createElement(Input, { placeholder: '请输入纳税人识别号' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '注册地址', name: 'regAddress' }, + React.createElement(Input, { placeholder: '请输入注册地址' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '注册电话', name: 'regPhone' }, + React.createElement(Input, { placeholder: '请输入注册电话' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '开户银行', name: 'bankName', rules: [{ required: true, message: '请输入开户银行' }] }, + React.createElement(Input, { placeholder: '请输入开户银行' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '账号', name: 'bankAccount' }, + React.createElement(Input, { placeholder: '请输入账号' }) + ) + ) + ) + ) + ) + ), + // 底部操作栏 + React.createElement('div', { className: 'arco-grouped-form-footer' }, + React.createElement(Button, { onClick: function () { form.resetFields(); } }, '重置'), + React.createElement(Button, { type: 'primary', onClick: function () { form.submit(); } }, '提交') + ) + ) + ); +}; + +if (typeof module !== 'undefined' && module.exports) module.exports = Component; diff --git a/ONEOS-web/CRM/新建供应商.jsx b/ONEOS-web/CRM/新建供应商.jsx new file mode 100644 index 0000000..a68b003 --- /dev/null +++ b/ONEOS-web/CRM/新建供应商.jsx @@ -0,0 +1,348 @@ +// 【重要】必须使用 const Component 作为组件变量名 +// ONEOS-web 示例项目 - CRM 新建供应商 (完美复刻 Arco Design Pro 分组表单) + +const Component = function () { + var useState = React.useState; + + var antd = window.antd; + var Button = antd.Button; + var Space = antd.Space; + var Input = antd.Input; + var Select = antd.Select; + var Cascader = antd.Cascader; + var Form = antd.Form; + var Row = antd.Row; + var Col = antd.Col; + var Breadcrumb = antd.Breadcrumb; + var Menu = antd.Menu; + var Layout = antd.Layout; + var message = antd.message; + var Typography = antd.Typography; + var Avatar = antd.Avatar; + var Badge = antd.Badge; + var Card = antd.Card; + + var Header = Layout.Header; + var Content = Layout.Content; + var Sider = Layout.Sider; + var Title = Typography.Title; + + var _currentMenu = useState('crm-supplier'); + var currentMenu = _currentMenu[0]; + var setCurrentMenu = _currentMenu[1]; + + var handleMenuClick = function (e) { + setCurrentMenu(e.key); + if (e.key === 'contract-list') { + message.info('跳转至 合同列表'); + window.location.hash = '合同列表'; + } else if (e.key === 'erp-order') { + message.info('跳转至 ERP 订单管理'); + window.location.hash = '订单管理'; + } else if (e.key === 'asset-overview') { + message.info('跳转至 资产概览'); + window.location.hash = '资产概览'; + } else if (e.key === 'crm-list') { + message.info('跳转至 客户列表'); + window.location.hash = '客户列表'; + } else if (e.key === 'crm-supplier') { + message.info('跳转至 供应商管理'); + window.location.hash = '供应商管理'; + } + }; + + // 自定义 SVG 图标(高保真还原 Arco 风格) + var SettingIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 16, height: 16, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, React.createElement('path', { d: 'M18.797 6.732A1 1 0 0 1 19.76 6h8.48a1 1 0 0 1 .964.732l1.285 4.628a1 1 0 0 0 1.213.7l4.651-1.2a1 1 0 0 1 1.116.468l4.24 7.344a1 1 0 0 1-.153 1.2L38.193 23.3a1 1 0 0 0 0 1.402l3.364 3.427a1 1 0 0 1 .153 1.2l-4.24 7.344a1 1 0 0 1-1.116.468l-4.65-1.2a1 1 0 0 0-1.214.7l-1.285 4.628a1 1 0 0 1-.964.732h-8.48a1 1 0 0 1-.963-.732L17.51 36.64a1 1 0 0 0-1.213-.7l-4.65 1.2a1 1 0 0 1-1.116-.468l-4.24-7.344a1 1 0 0 1 .153-1.2L9.809 24.7a1 1 0 0 0 0-1.402l-3.364-3.427a1 1 0 0 1-.153-1.2l4.24-7.344a1 1 0 0 1 1.116-.468l4.65 1.2a1 1 0 0 0 1.213-.7l1.286-4.628Z' }), React.createElement('path', { d: 'M30 24a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z' })); }; + var NoticeIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 18, height: 18, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, React.createElement('path', { d: 'M39 34h3v4H6v-4h3V20.218a15 15 0 0 1 30 0V34ZM24 44a6 6 0 0 1-6-6h12a6 6 0 0 1-6 6Z' })); }; + var FormIcon = function() { return React.createElement('svg', { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4, strokeLinecap: 'butt', strokeLinejoin: 'miter' }, React.createElement('path', { d: 'M18.797 6.732A1 1 0 0 1 19.76 6h8.48a1 1 0 0 1 .964.732l1.285 4.628a1 1 0 0 0 1.213.7l4.651-1.2a1 1 0 0 1 1.116.468l4.24 7.344a1 1 0 0 1-.153 1.2L38.193 23.3a1 1 0 0 0 0 1.402l3.364 3.427a1 1 0 0 1 .153 1.2l-4.24 7.344a1 1 0 0 1-1.116.468l-4.65-1.2a1 1 0 0 0-1.214.7l-1.285 4.628a1 1 0 0 1-.964.732h-8.48a1 1 0 0 1-.963-.732L17.51 36.64a1 1 0 0 0-1.213-.7l-4.65 1.2a1 1 0 0 1-1.116-.468l-4.24-7.344a1 1 0 0 1 .153-1.2L9.809 24.7a1 1 0 0 0 0-1.402l-3.364-3.427a1 1 0 0 1-.153-1.2l4.24-7.344a1 1 0 0 1 1.116-.468l4.65 1.2a1 1 0 0 0 1.213-.7l1.286-4.628Z' }), React.createElement('path', { d: 'M30 24a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z' })); }; + + var menuItems = [ + { + key: 'contract', + label: '合同管理', + icon: React.createElement('span', { className: 'anticon' }, '📄'), + children: [ + { key: 'contract-list', label: '合同列表' } + ] + }, + { + key: 'crm', + label: 'CRM 管理', + icon: React.createElement('span', { className: 'anticon' }, '👥'), + children: [ + { key: 'crm-list', label: '客户列表' }, + { key: 'crm-supplier', label: '供应商管理' }, + { key: 'crm-analysis', label: 'CRM 分析' } + ] + }, + { + key: 'erp', + label: 'ERP 订单管理', + icon: React.createElement('span', { className: 'anticon' }, '📦'), + children: [ + { key: 'erp-order', label: '订单管理' } + ] + }, + { + key: 'asset', + label: '资产管理', + icon: React.createElement('span', { className: 'anticon' }, '🚗'), + children: [ + { key: 'asset-overview', label: '资产概览' } + ] + } + ]; + + // 供应商类型下拉选项 + var supplierTypeOptions = [ + { label: '整车企业', value: '整车企业' }, + { label: '车辆外租企业', value: '车辆外租企业' }, + { label: '加氢站', value: '加氢站' }, + { label: '充电站', value: '充电站' }, + { label: '维修站', value: '维修站' }, + { label: '备件供应商', value: '备件供应商' }, + { label: '保险公司', value: '保险公司' }, + { label: '救援车队', value: '救援车队' }, + { label: '其他', value: '其他' } + ]; + + return React.createElement(Layout, { className: 'arco-theme-overrides', style: { minHeight: '100vh', background: '#f2f3f5', fontFamily: 'Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif' } }, + // 内联 CSS 以实现最高保真度的 Arco UI + React.createElement('style', null, ` + .arco-theme-overrides .ant-btn { border-radius: 4px; box-shadow: none; font-size: 14px; } + .arco-theme-overrides .ant-btn-primary { background-color: #165dff; border-color: #165dff; } + .arco-theme-overrides .ant-btn-primary:hover { background-color: #4080ff; border-color: #4080ff; } + .arco-theme-overrides .ant-btn-default { background-color: #f2f3f5; border-color: transparent; color: #4e5969; } + .arco-theme-overrides .ant-btn-default:hover { background-color: #e5e6eb; border-color: transparent; color: #4e5969; } + .arco-theme-overrides .ant-menu-light .ant-menu-item-selected { background-color: #f2f9fe; color: #165dff; } + .arco-theme-overrides .ant-menu-light .ant-menu-item-selected::after { border-right-color: #165dff; } + + /* 输入组件默认、Hover、Focus样式复刻 */ + .arco-theme-overrides .ant-input, .arco-theme-overrides .ant-select-selector, .arco-theme-overrides .ant-cascader { border-radius: 2px; border: 1px solid #e5e6eb; background-color: #f2f3f5; transition: all 0.1s cubic-bezier(0, 0, 1, 1); } + .arco-theme-overrides .ant-input:hover, .arco-theme-overrides .ant-select:not(.ant-select-disabled):hover .ant-select-selector, .arco-theme-overrides .ant-cascader:hover { background-color: #e5e6eb; border-color: transparent; } + .arco-theme-overrides .ant-input:focus, .arco-theme-overrides .ant-input-focused, .arco-theme-overrides .ant-select-focused .ant-select-selector, .arco-theme-overrides .ant-cascader-focused { background-color: #fff; border: 1px solid #165dff !important; box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2) !important; outline: 0; } + + /* 垂直表单标签样式复刻 */ + .arco-theme-overrides .ant-form-vertical .ant-form-item-label { padding: 0 0 8px; line-height: 1.5715; } + .arco-theme-overrides .ant-form-vertical .ant-form-item-label > label { color: #1d2129; font-weight: 400; height: auto; } + .arco-theme-overrides .ant-form-item-label > label::after { display: none !important; content: "" !important; margin: 0 !important; } + .arco-theme-overrides .ant-form-item { margin-bottom: 24px; } + + /* 卡片样式复刻 */ + .arco-theme-overrides .ant-card { border: none; border-radius: 4px; margin-bottom: 16px; background: transparent; } + .arco-theme-overrides .ant-card-body { padding: 20px 20px 0 20px; background: #fff; } + + /* 标题样式复刻 */ + .arco-theme-overrides .arco-section-title { font-size: 16px; font-weight: 500; color: #1d2129; margin-bottom: 20px; } + + /* 输入框高度统一 */ + .arco-theme-overrides .ant-input, .arco-theme-overrides .ant-select-selector, .arco-theme-overrides .ant-cascader .ant-select-selector { height: 32px !important; min-height: 32px !important; display: flex; align-items: center; padding: 0 12px; } + .arco-theme-overrides .ant-input { padding: 4px 12px; } + .arco-theme-overrides .ant-select-selection-item { line-height: 30px !important; } + + .arco-theme-overrides .ant-breadcrumb { color: #86909c; font-size: 14px; } + .arco-theme-overrides .ant-breadcrumb a { color: #4e5969; } + .arco-theme-overrides .ant-breadcrumb a:hover { color: #165dff; background-color: transparent; } + `), + // 顶部 Header + React.createElement(Header, { + style: { + background: '#fff', + padding: '0 20px', + display: 'flex', + justifyContent: 'space-between', + alignItems: 'center', + borderBottom: '1px solid #e5e6eb', + height: 60, + position: 'fixed', + top: 0, + left: 0, + right: 0, + zIndex: 100 + } + }, + // 左侧 Logo + React.createElement('div', { style: { display: 'flex', alignItems: 'center', gap: 12 } }, + React.createElement('div', { style: { width: 32, height: 32, background: '#165dff', borderRadius: 4, display: 'flex', justifyContent: 'center', alignItems: 'center', color: '#fff', fontWeight: 'bold' } }, 'A'), + React.createElement('div', { style: { fontSize: '20px', fontWeight: '600', color: '#1d2129', letterSpacing: '0.5px' } }, 'Arco Pro') + ), + // 右侧工具栏 + React.createElement('div', { style: { display: 'flex', alignItems: 'center', gap: 20 } }, + React.createElement(Input.Search, { placeholder: '搜索功能', style: { width: 220, borderRadius: 16 } }), + React.createElement(Badge, { dot: true, offset: [-2, 4] }, + React.createElement('span', { style: { color: '#4e5969', cursor: 'pointer', display: 'flex' }, title: '消息通知' }, React.createElement(NoticeIcon, null)) + ), + React.createElement('span', { style: { color: '#4e5969', cursor: 'pointer', display: 'flex' }, title: '设置' }, React.createElement(SettingIcon, null)), + React.createElement(Avatar, { size: 32, src: 'https://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/3ee5f13fb09879ecb5185e440cef6eb9.png~tplv-uwbnlip3yd-webp.webp', style: { cursor: 'pointer' } }) + ) + ), + // 下方主体内容 + React.createElement(Layout, { style: { paddingTop: 60 } }, + // 左侧菜单 Sider + React.createElement(Sider, { + width: 220, + style: { + background: '#fff', + borderRight: '1px solid #e5e6eb', + position: 'fixed', + top: 60, + left: 0, + height: 'calc(100vh - 60px)', + overflowY: 'auto', + zIndex: 99 + } + }, + React.createElement(Menu, { + mode: 'inline', + selectedKeys: [currentMenu], + defaultOpenKeys: ['crm'], + items: menuItems, + onClick: handleMenuClick, + style: { borderRight: 'none', padding: '8px', background: '#fff' } + }) + ), + // 右侧内容 Content + React.createElement(Content, { style: { marginLeft: 220, padding: '16px 20px 60px 20px', minHeight: 'calc(100vh - 60px)', display: 'flex', flexDirection: 'column' } }, + React.createElement('div', { style: { padding: '16px 20px 0 20px', marginBottom: 0, background: '#fff' } }, + React.createElement(Breadcrumb, { + separator: React.createElement('span', { style: { color: '#c9cdd4' } }, '/'), + items: [ + { title: React.createElement(FormIcon, { style: { display: 'inline-flex', alignItems: 'center', fontSize: 14, transform: 'translate(-2px, 1px)' } }) }, + { title: '表单页' }, + { title: React.createElement('span', { style: { color: '#1d2129' } }, '分组表单') } + ] + }), + React.createElement(Title, { level: 4, style: { marginTop: 16, marginBottom: 20, fontWeight: 700, color: '#1d2129', fontSize: 16 } }, '新建供应商') + ), + + React.createElement('div', { style: { padding: '0', display: 'flex', flexDirection: 'column', flex: 1 } }, + React.createElement(Form, { layout: 'vertical' }, + + // 供应商信息分组 + React.createElement(Card, { bordered: false, bodyStyle: { padding: '20px 20px 0 20px' } }, + React.createElement('div', { className: 'arco-section-title' }, '供应商信息'), + React.createElement(Row, { gutter: 24 }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '供应商名称', required: true }, + React.createElement(Input, { placeholder: '请输入供应商名称' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '类型', required: true }, + React.createElement(Select, { placeholder: '请选择类型', options: supplierTypeOptions }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '所属城市' }, + React.createElement(Cascader, { placeholder: '请选择省-市', options: [{ value: 'zhejiang', label: '浙江', children: [{ value: 'hangzhou', label: '杭州' }, { value: 'ningbo', label: '宁波' }] }, { value: 'jiangsu', label: '江苏', children: [{ value: 'nanjing', label: '南京' }] }] }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '所在地址' }, + React.createElement(Input, { placeholder: '请输入所在地址' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '区域' }, + React.createElement(Input, { placeholder: '请输入区域' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '业务负责部门' }, + React.createElement(Input, { placeholder: '请输入业务负责部门' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '业务负责人员' }, + React.createElement(Input, { placeholder: '请输入业务负责人员' }) + ) + ), + React.createElement(Col, { span: 24 }, + React.createElement(Form.Item, { label: '备注' }, + React.createElement(Input.TextArea, { placeholder: '请输入备注', autoSize: { minRows: 3, maxRows: 5 }, style: { height: 'auto', minHeight: 'auto' } }) + ) + ) + ) + ), + + // 联系人信息分组 + React.createElement(Card, { bordered: false, bodyStyle: { padding: '20px 20px 0 20px' } }, + React.createElement('div', { className: 'arco-section-title' }, '联系人信息'), + React.createElement(Row, { gutter: 24 }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '姓名' }, + React.createElement(Input, { placeholder: '请输入姓名' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '手机号' }, + React.createElement(Input, { placeholder: '请输入手机号' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '职位' }, + React.createElement(Input, { placeholder: '请输入职位' }) + ) + ) + ) + ), + + // 付款及开票信息分组 + React.createElement(Card, { bordered: false, bodyStyle: { padding: '20px 20px 0 20px', marginBottom: 16 } }, + React.createElement('div', { className: 'arco-section-title' }, '付款及开票信息'), + React.createElement(Row, { gutter: 24 }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '纳税人识别号' }, + React.createElement(Input, { placeholder: '请输入纳税人识别号' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '注册地址' }, + React.createElement(Input, { placeholder: '请输入注册地址' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '注册电话' }, + React.createElement(Input, { placeholder: '请输入注册电话' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '开户行' }, + React.createElement(Input, { placeholder: '请输入开户行' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '账号' }, + React.createElement(Input, { placeholder: '请输入账号' }) + ) + ) + ) + ) + ) + ) + ) + ), + + // 底部固定操作栏 + React.createElement('div', { + style: { + position: 'fixed', + bottom: 0, + right: 0, + width: 'calc(100% - 220px)', + padding: '16px 20px', + background: '#fff', + borderTop: '1px solid #e5e6eb', + textAlign: 'right', + zIndex: 100 + } + }, + React.createElement(Space, { size: 16 }, + React.createElement(Button, { size: 'large', onClick: function() { message.info('重置成功'); } }, '重置'), + React.createElement(Button, { type: 'primary', size: 'large', onClick: function() { message.success('提交成功'); } }, '提交') + ) + ) + ); +}; + +if (typeof module !== 'undefined' && module.exports) module.exports = Component; \ No newline at end of file diff --git a/ONEOS-web/CRM/维修管理.jsx b/ONEOS-web/CRM/维修管理.jsx new file mode 100644 index 0000000..45508c4 --- /dev/null +++ b/ONEOS-web/CRM/维修管理.jsx @@ -0,0 +1,1034 @@ +// 【重要】必须使用 const Component 作为组件变量名 +// ONEOS-web - CRM 维修单管理(列表 / 新增 / 条件操作,对齐需求脑图) + +function buildSampleMaintenanceRows() { + var plates = [ + '沪A·D12345', + '苏E·F99887', + '浙A·H55660', + '粤B·K33210', + '京C·N88771', + '川A·L55602', + '渝D·P90123', + '津A·Q77889', + '鲁B·R33445', + '豫A·S66778', + '鄂A·T11223', + '湘A·U44556', + '闽D·V88990', + '陕A·W22334', + '辽A·X55667', + '吉A·Y88901', + '黑A·Z11234', + '云A·A99887', + '贵A·B44556', + '桂A·C77889' + ]; + var stations = [ + '羚牛浦东维修中心', + '苏州园区快修站', + '杭州滨江服务站', + '深圳南山维修站', + '北京市朝阳区羚牛氢能示范维修中心(亦庄仓配一体化超长名称用于省略号展示)', + '成都高新南区快修点', + '重庆两江新区服务站', + '天津港保税区维修站', + '青岛胶州湾北岸羚牛合作维修站(冷链车队定点维保单位)', + '郑州航空港区服务中心', + '武汉东湖新技术开发区羚牛授权服务站', + '长沙岳麓山大学城轻型维保点', + '厦门湖里区港口大道综合维修中心', + '西安高新区丈八四路羚牛旗舰店', + '沈阳铁西区装备制造产业带维修站', + '长春汽车经济技术开发区羚牛服务站', + '哈尔滨松北区智慧园区快修站', + '昆明官渡区物流园维修中心', + '贵阳观山湖区羚牛城市服务站', + '南宁青秀区东盟商务区综合维修中心(超长名称测试省略)' + ]; + var stationAddresses = [ + '上海市浦东新区科苑路', + '江苏省苏州市工业园区星海街', + '浙江省杭州市滨江区网商路', + '广东省深圳市南山区科技南十二路', + '北京市朝阳区亦庄经济技术开发区荣华南路', + '四川省成都市高新区天府大道', + '重庆市两江新区金渝大道', + '天津市滨海新区保税区海滨九路', + '山东省青岛市胶州市湾北路', + '河南省郑州市航空港区迎宾大道', + '湖北省武汉市东湖高新区光谷大道', + '湖南省长沙市岳麓区麓山南路', + '福建省厦门市湖里区港中路', + '陕西省西安市高新区丈八四路', + '辽宁省沈阳市铁西区建设大路', + '吉林省长春市汽开区东风大街', + '黑龙江省哈尔滨市松北区世茂大道', + '云南省昆明市官渡区彩云北路', + '贵州省贵阳市观山湖区林城东路', + '广西壮族自治区南宁市青秀区民族大道' + ]; + var dispatchers = [ + '运维-周敏', + '运维-李航', + '运维-王磊', + '运维-赵静', + '运维-陈凯(华东夜班值班组长,负责跨省调度与异常升级)', + '运维-刘洋', + '运维-孙婷', + '运维-马超', + '运维-黄欣', + '运维-林峰', + '运维-何倩', + '运维-邓波', + '运维-罗兵', + '运维-梁雪', + '运维-谢军', + '运维-韩梅', + '运维-冯涛', + '运维-曾丽', + '运维-彭飞', + '运维-丁悦' + ]; + var rows = []; + var month = [4, 4, 4, 4, 3, 3, 3, 2, 2, 2, 1, 1, 1, 5, 5, 5, 6, 6, 6, 6]; + var day = [18, 10, 20, 19, 28, 15, 8, 22, 5, 12, 30, 7, 25, 3, 16, 9, 11, 2, 21, 14]; + var hour = [9, 11, 8, 17, 14, 10, 16, 9, 13, 15, 8, 18, 12, 10, 11, 9, 14, 16, 8, 13]; + var min = [20, 5, 0, 22, 45, 30, 12, 15, 40, 5, 0, 20, 50, 25, 8, 45, 33, 10, 15, 28]; + var statusCycle = ['dispatched', 'in_progress', 'draft', 'draft', 'completed', 'accepted', 'dispatched', 'in_progress', 'draft', 'dispatched', 'in_progress', 'draft', 'completed', 'dispatched', 'in_progress', 'draft', 'dispatched', 'in_progress', 'draft', 'completed']; + var omCycle = ['已通过', '已通过', '待审批', '已驳回', '已通过', '待审批', '已通过', '已通过', '待审批', '已通过', '已通过', '已驳回', '已通过', '待审批', '已通过', '待审批', '已通过', '已通过', '待审批', '已通过']; + for (var i = 0; i < 20; i++) { + var key = String(i + 1); + var st = statusCycle[i]; + var om = omCycle[i]; + var cost = st === 'draft' ? 0 : 1200 + i * 437 + (i % 3) * 890; + var faultCount = i % 4; + var accCount = i % 5 === 0 ? 1 : i % 7 === 2 ? 2 : 0; + var faultTickets = []; + var k; + for (k = 0; k < faultCount; k++) { + var fd = Math.max(1, day[i] - k); + faultTickets.push({ + no: 'GZ-2026' + String(month[i]).padStart(2, '0') + String(fd).padStart(2, '0') + '-' + String(100 + i * 3 + k).padStart(3, '0'), + time: '2026-' + String(month[i]).padStart(2, '0') + '-' + String(fd).padStart(2, '0') + ' ' + String(hour[i]).padStart(2, '0') + ':' + String(min[i]).padStart(2, '0') + ':00', + desc: ['冷却液渗漏', '空压机异响', '制动踏板行程偏长', '仪表报高压互锁', '动力电池温差偏大', '转向助力偶发失效'][k % 6] + }); + } + var accidentTickets = []; + for (k = 0; k < accCount; k++) { + var ad = Math.max(1, day[i] - k - 1); + accidentTickets.push({ + no: 'SG-2026' + String(month[i]).padStart(2, '0') + String(ad).padStart(2, '0') + '-00' + String(k + 1), + time: '2026-' + String(month[i]).padStart(2, '0') + '-' + String(ad).padStart(2, '0') + ' 19:05:00', + desc: ['侧碰右翼子板凹陷', '追尾后保险杠更换', '停车场剐蹭'][k % 3] + }); + } + var lineItems = + cost > 0 + ? [ + { + item: '例行检修项目-' + (i + 1), + partName: ['滤芯', '密封圈', '冷却软管', '传感器'][i % 4], + qty: 1 + (i % 3), + partSource: i % 2 === 0 ? '羚牛' : '维修站', + partCost: 200 + i * 50, + laborCost: 400 + i * 80 + } + ] + : []; + rows.push({ + key: key, + omApprovalStatus: om, + orderStatus: st, + orderTime: '2026-' + String(month[i]).padStart(2, '0') + '-' + String(day[i]).padStart(2, '0') + ' ' + String(hour[i]).padStart(2, '0') + ':' + String(min[i]).padStart(2, '0') + ':00', + plateNo: plates[i], + totalCost: cost, + dispatcher: st === 'draft' ? '—' : dispatchers[i], + stationName: stations[i], + stationAddress: stationAddresses[i], + faultTickets: faultTickets, + accidentTickets: accidentTickets, + lineItems: lineItems + }); + } + return rows; +} + +const Component = function () { + var useState = React.useState; + + var antd = window.antd; + var Table = antd.Table; + var Button = antd.Button; + var Space = antd.Space; + var Input = antd.Input; + var Select = antd.Select; + var DatePicker = antd.DatePicker; + var RangePicker = DatePicker.RangePicker; + var Form = antd.Form; + var Row = antd.Row; + var Col = antd.Col; + var Divider = antd.Divider; + var Breadcrumb = antd.Breadcrumb; + var Menu = antd.Menu; + var Layout = antd.Layout; + var message = antd.message; + var Typography = antd.Typography; + var Avatar = antd.Avatar; + var Badge = antd.Badge; + var Tag = antd.Tag; + var Tooltip = antd.Tooltip; + var Modal = antd.Modal; + var Popconfirm = antd.Popconfirm; + var Checkbox = antd.Checkbox; + + var Header = Layout.Header; + var Content = Layout.Content; + var Sider = Layout.Sider; + var Title = Typography.Title; + var Text = Typography.Text; + + var _currentMenu = useState('crm-maintenance'); + var currentMenu = _currentMenu[0]; + var setCurrentMenu = _currentMenu[1]; + + var _listData = useState(buildSampleMaintenanceRows()); + var listData = _listData[0]; + var setListData = _listData[1]; + + var _viewOpen = useState(false); + var viewOpen = _viewOpen[0]; + var setViewOpen = _viewOpen[1]; + var _viewRecord = useState(null); + var viewRecord = _viewRecord[0]; + var setViewRecord = _viewRecord[1]; + + var _createOpen = useState(false); + var createOpen = _createOpen[0]; + var setCreateOpen = _createOpen[1]; + var _assocFault = useState(false); + var assocFault = _assocFault[0]; + var setAssocFault = _assocFault[1]; + var _assocAccident = useState(false); + var assocAccident = _assocAccident[0]; + var setAssocAccident = _assocAccident[1]; + var _otherItems = useState(''); + var otherItems = _otherItems[0]; + var setOtherItems = _otherItems[1]; + + var _partsLinkOpen = useState(false); + var partsLinkOpen = _partsLinkOpen[0]; + var setPartsLinkOpen = _partsLinkOpen[1]; + var _partsLinkRecord = useState(null); + var partsLinkRecord = _partsLinkRecord[0]; + var setPartsLinkRecord = _partsLinkRecord[1]; + + var orderStatusLabel = function (s) { + var map = { draft: '草稿', dispatched: '已派单', accepted: '已接单', in_progress: '维修中', completed: '已完成' }; + return map[s] || s; + }; + + var orderStatusColor = function (s) { + if (s === 'draft') return 'default'; + if (s === 'dispatched') return 'processing'; + if (s === 'accepted') return 'blue'; + if (s === 'in_progress') return 'warning'; + if (s === 'completed') return 'success'; + return 'default'; + }; + + var omApprovalColor = function (t) { + if (t === '待审批') return 'warning'; + if (t === '已通过') return 'success'; + if (t === '已驳回') return 'error'; + return 'default'; + }; + + var renderTicketTooltip = function (tickets, descLabel) { + if (!tickets || tickets.length === 0) { + return React.createElement('span', { style: { color: '#c9cdd4' } }, '—'); + } + var label = descLabel || '说明'; + var title = React.createElement( + 'div', + { style: { maxWidth: 320, padding: 4 } }, + tickets.map(function (t, i) { + return React.createElement( + 'div', + { + key: i, + style: { + marginBottom: i < tickets.length - 1 ? 10 : 0, + paddingBottom: i < tickets.length - 1 ? 10 : 0, + borderBottom: i < tickets.length - 1 ? '1px solid rgba(255,255,255,0.12)' : 'none' + } + }, + React.createElement('div', { style: { fontWeight: 600, color: '#fff' } }, t.no), + React.createElement('div', { style: { fontSize: 12, opacity: 0.85, marginTop: 4 } }, t.time), + React.createElement('div', { style: { fontSize: 12, marginTop: 4, lineHeight: 1.5 } }, label + ':' + t.desc) + ); + }) + ); + return React.createElement( + Tooltip, + { title: title, placement: 'topLeft', overlayStyle: { maxWidth: 360 } }, + React.createElement( + 'span', + { + className: 'mt-ticket-link', + style: { + color: '#165dff', + cursor: 'pointer', + borderBottom: '1px dashed rgba(22,93,255,0.45)', + display: 'inline-block', + maxWidth: '100%', + overflow: 'hidden', + textOverflow: 'ellipsis', + whiteSpace: 'nowrap', + verticalAlign: 'bottom' + } + }, + tickets.length + ' 条' + ) + ); + }; + + var handleMenuClick = function (e) { + setCurrentMenu(e.key); + if (e.key === 'contract-list') { + message.info('跳转至 合同列表'); + window.location.hash = '合同列表'; + } else if (e.key === 'erp-order') { + message.info('跳转至 ERP 订单管理'); + window.location.hash = '订单管理'; + } else if (e.key === 'asset-overview') { + message.info('跳转至 资产概览'); + window.location.hash = '资产概览'; + } else if (e.key === 'crm-list') { + message.info('跳转至 客户列表'); + window.location.hash = '客户列表'; + } else if (e.key === 'crm-supplier') { + message.info('跳转至 供应商管理'); + window.location.hash = '供应商管理'; + } else if (e.key === 'crm-maintenance') { + window.location.hash = '维修管理'; + } + }; + + var openView = function (record) { + setViewRecord(record); + setViewOpen(true); + }; + + var handleAccept = function (key) { + setListData(function (prev) { + return prev.map(function (r) { + if (r.key !== key) return r; + return Object.assign({}, r, { orderStatus: 'accepted' }); + }); + }); + message.success('已接单'); + }; + + var handleDelete = function (key) { + setListData(function (prev) { + return prev.filter(function (r) { + return r.key !== key; + }); + }); + message.success('已删除草稿'); + }; + + var openPartsLink = function (record) { + setPartsLinkRecord(record); + setPartsLinkOpen(true); + }; + + var submitPartsLink = function () { + message.success('备件关联已提交(运维审核流占位)'); + setPartsLinkOpen(false); + setPartsLinkRecord(null); + }; + + var openCreate = function () { + setAssocFault(false); + setAssocAccident(false); + setOtherItems(''); + setCreateOpen(true); + }; + + var submitCreate = function () { + var newKey = String(Date.now()); + setListData(function (prev) { + return [ + { + key: newKey, + omApprovalStatus: '待审批', + orderStatus: 'draft', + orderTime: new Date().toISOString().slice(0, 19).replace('T', ' '), + plateNo: '(待完善)', + totalCost: 0, + dispatcher: '—', + stationName: '(待指派)', + stationAddress: '(待填写)', + faultTickets: assocFault + ? [{ no: '(关联故障单占位)', time: '-', desc: '请在详情中补充' }] + : [], + accidentTickets: assocAccident + ? [{ no: '(关联事故单占位)', time: '-', desc: '请在详情中补充' }] + : [], + lineItems: otherItems + ? [{ item: '其他维修项', partName: '-', qty: 0, partSource: '维修站', partCost: 0, laborCost: 0, remark: otherItems }] + : [] + } + ].concat(prev); + }); + message.success('已创建草稿维修单'); + setCreateOpen(false); + }; + + var SearchIcon = function () { + return React.createElement( + 'svg', + { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, + React.createElement('path', { + d: 'M33.072 33.071c6.248-6.248 6.248-16.379 0-22.627-6.249-6.249-16.38-6.249-22.628 0-6.248 6.248-6.248 16.379 0 22.627 6.248 6.248 16.38 6.248 22.628 0Zm0 0 8.485 8.485' + }) + ); + }; + var ResetIcon = function () { + return React.createElement( + 'svg', + { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, + React.createElement('path', { d: 'M38.837 18C36.463 12.136 30.715 8 24 8 15.163 8 8 15.163 8 24s7.163 16 16 16c7.455 0 13.72-5.1 15.496-12M40 8v10H30' }) + ); + }; + var PlusIcon = function () { + return React.createElement( + 'svg', + { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, + React.createElement('path', { d: 'M5 24h38M24 5v38' }) + ); + }; + var DownloadIcon = function () { + return React.createElement( + 'svg', + { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, + React.createElement('path', { d: 'm33.072 22.071-9.07 9.071-9.072-9.07M24 5v26m16 4v6H8v-6' }) + ); + }; + var SettingIcon = function () { + return React.createElement( + 'svg', + { viewBox: '0 0 48 48', width: 16, height: 16, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, + React.createElement('path', { + d: 'M18.797 6.732A1 1 0 0 1 19.76 6h8.48a1 1 0 0 1 .964.732l1.285 4.628a1 1 0 0 0 1.213.7l4.651-1.2a1 1 0 0 1 1.116.468l4.24 7.344a1 1 0 0 1-.153 1.2L38.193 23.3a1 1 0 0 0 0 1.402l3.364 3.427a1 1 0 0 1 .153 1.2l-4.24 7.344a1 1 0 0 1-1.116.468l-4.65-1.2a1 1 0 0 0-1.214.7l-1.285 4.628a1 1 0 0 1-.964.732h-8.48a1 1 0 0 1-.963-.732L17.51 36.64a1 1 0 0 0-1.213-.7l-4.65 1.2a1 1 0 0 1-1.116-.468l-4.24-7.344a1 1 0 0 1 .153-1.2L9.809 24.7a1 1 0 0 0 0-1.402l-3.364-3.427a1 1 0 0 1-.153-1.2l4.24-7.344a1 1 0 0 1 1.116-.468l4.65 1.2a1 1 0 0 0 1.213-.7l1.286-4.628Z' + }), + React.createElement('path', { d: 'M30 24a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z' }) + ); + }; + var NoticeIcon = function () { + return React.createElement( + 'svg', + { viewBox: '0 0 48 48', width: 18, height: 18, fill: 'none', stroke: 'currentColor', strokeWidth: 4 }, + React.createElement('path', { d: 'M39 34h3v4H6v-4h3V20.218a15 15 0 0 1 30 0V34ZM24 44a6 6 0 0 1-6-6h12a6 6 0 0 1-6 6Z' }) + ); + }; + var ListIcon = function () { + return React.createElement( + 'svg', + { viewBox: '0 0 48 48', width: 14, height: 14, fill: 'none', stroke: 'currentColor', strokeWidth: 4, strokeLinecap: 'butt', strokeLinejoin: 'miter' }, + React.createElement('path', { d: 'M17 12H42' }), + React.createElement('path', { d: 'M17 24H42' }), + React.createElement('path', { d: 'M17 36H42' }), + React.createElement('path', { d: 'M8 12H9' }), + React.createElement('path', { d: 'M8 24H9' }), + React.createElement('path', { d: 'M8 36H9' }) + ); + }; + + var columns = [ + { + title: '运维审批状态', + dataIndex: 'omApprovalStatus', + key: 'omApprovalStatus', + className: 'mt-col-om', + render: function (t) { + return React.createElement('span', { className: 'mt-cell-inner' }, React.createElement(Tag, { color: omApprovalColor(t) }, t)); + } + }, + { + title: '维修单状态', + dataIndex: 'orderStatus', + key: 'orderStatus', + className: 'mt-col-order', + render: function (s) { + return React.createElement( + 'span', + { className: 'mt-cell-inner' }, + React.createElement(Tag, { color: orderStatusColor(s) }, orderStatusLabel(s)) + ); + } + }, + { title: '时间', dataIndex: 'orderTime', key: 'orderTime', className: 'mt-col-time', ellipsis: true }, + { title: '车牌号', dataIndex: 'plateNo', key: 'plateNo', className: 'mt-col-plate', ellipsis: true }, + { + title: '费用(总计维修费用)', + dataIndex: 'totalCost', + key: 'totalCost', + className: 'mt-col-cost', + ellipsis: true, + render: function (v) { + return v ? '¥ ' + Number(v).toLocaleString() : '—'; + } + }, + { title: '派单发起人', dataIndex: 'dispatcher', key: 'dispatcher', className: 'mt-col-dispatch', ellipsis: true }, + { title: '维修站名称', dataIndex: 'stationName', key: 'stationName', className: 'mt-col-station', ellipsis: true }, + { title: '维修站地址', dataIndex: 'stationAddress', key: 'stationAddress', className: 'mt-col-address', ellipsis: true }, + { + title: '关联故障单号', + key: 'faultTickets', + className: 'mt-col-fault', + render: function (_, record) { + return renderTicketTooltip(record.faultTickets, '故障说明'); + } + }, + { + title: '关联事故单号', + key: 'accidentTickets', + className: 'mt-col-accident', + render: function (_, record) { + return renderTicketTooltip(record.accidentTickets, '事故说明'); + } + }, + { + title: '操作', + key: 'action', + className: 'mt-col-action', + fixed: 'right', + width: 200, + render: function (_, record) { + var nodes = []; + if (record.orderStatus === 'dispatched') { + nodes.push( + React.createElement( + Button, + { + key: 'accept', + type: 'link', + style: { padding: '0 4px' }, + onClick: function () { + handleAccept(record.key); + } + }, + '接单' + ) + ); + } + nodes.push( + React.createElement( + Button, + { + key: 'view', + type: 'link', + style: { padding: '0 4px' }, + onClick: function () { + openView(record); + } + }, + '查看' + ) + ); + if (record.orderStatus === 'in_progress') { + nodes.push( + React.createElement( + Button, + { + key: 'parts', + type: 'link', + style: { padding: '0 4px' }, + onClick: function () { + openPartsLink(record); + } + }, + '备件关联' + ) + ); + } + if (record.orderStatus === 'draft') { + nodes.push( + React.createElement( + Popconfirm, + { + key: 'del', + title: '确认删除该草稿?', + okText: '删除', + cancelText: '取消', + onConfirm: function () { + handleDelete(record.key); + } + }, + React.createElement(Button, { type: 'link', danger: true, style: { padding: '0 4px' } }, '删除') + ) + ); + } + return React.createElement(Space, { size: 0, wrap: false, split: React.createElement('span', { style: { color: '#e5e6eb' } }, '|') }, nodes); + } + } + ]; + + var menuItems = [ + { + key: 'contract', + label: '合同管理', + icon: React.createElement('span', { className: 'anticon' }, '📄'), + children: [{ key: 'contract-list', label: '合同列表' }] + }, + { + key: 'crm', + label: 'CRM 管理', + icon: React.createElement('span', { className: 'anticon' }, '👥'), + children: [ + { key: 'crm-list', label: '客户列表' }, + { key: 'crm-supplier', label: '供应商管理' }, + { key: 'crm-maintenance', label: '维修管理' }, + { key: 'crm-analysis', label: 'CRM 分析' } + ] + }, + { + key: 'erp', + label: 'ERP 订单管理', + icon: React.createElement('span', { className: 'anticon' }, '📦'), + children: [{ key: 'erp-order', label: '订单管理' }] + }, + { + key: 'asset', + label: '资产管理', + icon: React.createElement('span', { className: 'anticon' }, '🚗'), + children: [{ key: 'asset-overview', label: '资产概览' }] + } + ]; + + var formItemLayout = { + labelAlign: 'left', + colon: false, + labelCol: { flex: '0 0 86px' }, + wrapperCol: { flex: '1 1 0' } + }; + + var viewDetailColumns = [ + { title: '维修项', dataIndex: 'item', key: 'item', width: 160 }, + { title: '备件', dataIndex: 'partName', key: 'partName', width: 140 }, + { title: '数量', dataIndex: 'qty', key: 'qty', width: 72 }, + { + title: '备件来源', + dataIndex: 'partSource', + key: 'partSource', + width: 100, + render: function (t) { + return t === '羚牛' ? React.createElement(Tag, { color: 'blue' }, '羚牛') : React.createElement(Tag, null, '维修站'); + } + }, + { + title: '备件费用', + dataIndex: 'partCost', + key: 'partCost', + width: 100, + render: function (v) { + return '¥ ' + Number(v || 0).toLocaleString(); + } + }, + { + title: '人工费用', + dataIndex: 'laborCost', + key: 'laborCost', + width: 100, + render: function (v) { + return '¥ ' + Number(v || 0).toLocaleString(); + } + } + ]; + + var viewModal = React.createElement( + Modal, + { + title: '维修单明细', + open: viewOpen, + width: 920, + onCancel: function () { + setViewOpen(false); + setViewRecord(null); + }, + footer: React.createElement(Button, { onClick: function () { setViewOpen(false); setViewRecord(null); } }, '关闭'), + destroyOnClose: true + }, + viewRecord + ? React.createElement( + Space, + { direction: 'vertical', size: 16, style: { width: '100%' } }, + React.createElement( + Row, + { gutter: 16 }, + React.createElement(Col, { span: 8 }, React.createElement(Text, { type: 'secondary' }, '车牌号')), + React.createElement(Col, { span: 8 }, React.createElement(Text, { type: 'secondary' }, '维修站')), + React.createElement(Col, { span: 8 }, React.createElement(Text, { type: 'secondary' }, '总计费用')) + ), + React.createElement( + Row, + { gutter: 16, style: { marginTop: -8 } }, + React.createElement(Col, { span: 8 }, React.createElement('strong', null, viewRecord.plateNo)), + React.createElement(Col, { span: 8 }, React.createElement('strong', null, viewRecord.stationName)), + React.createElement( + Col, + { span: 8 }, + React.createElement('strong', null, viewRecord.totalCost ? '¥ ' + Number(viewRecord.totalCost).toLocaleString() : '—') + ) + ), + React.createElement(Row, { gutter: 16, style: { marginTop: 8 } }, + React.createElement(Col, { span: 24 }, + React.createElement(Text, { type: 'secondary', style: { display: 'block', marginBottom: 4 } }, '维修站地址'), + React.createElement('strong', null, viewRecord.stationAddress || '—') + ) + ), + React.createElement(Divider, { style: { margin: '8px 0' } }, '维修项 / 备件'), + React.createElement(Table, { + size: 'small', + pagination: false, + columns: viewDetailColumns, + dataSource: (viewRecord.lineItems || []).map(function (r, i) { + return Object.assign({ key: String(i) }, r); + }), + locale: { emptyText: '暂无明细,可在工单推进后补充' } + }) + ) + : null + ); + + var partsLinkModal = React.createElement( + Modal, + { + title: '备件关联(运维提交)', + open: partsLinkOpen, + width: 560, + onCancel: function () { + setPartsLinkOpen(false); + setPartsLinkRecord(null); + }, + onOk: submitPartsLink, + okText: '提交', + cancelText: '取消', + destroyOnClose: true + }, + partsLinkRecord + ? React.createElement( + Space, + { direction: 'vertical', size: 12, style: { width: '100%' } }, + React.createElement(Text, { type: 'secondary' }, + '当前单:' + partsLinkRecord.plateNo + ' · ' + partsLinkRecord.stationName + (partsLinkRecord.stationAddress ? ' · ' + partsLinkRecord.stationAddress : '') + ), + React.createElement( + 'div', + { style: { color: '#4e5969', fontSize: 14, lineHeight: 1.6 } }, + '接入运维提交的备件关联(批次、数量、来源等)。此处为交互占位,提交后走运维审核。' + ) + ) + : null + ); + + var createModal = React.createElement( + Modal, + { + title: '新增维修单', + open: createOpen, + width: 520, + onCancel: function () { + setCreateOpen(false); + }, + onOk: submitCreate, + okText: '创建草稿', + cancelText: '取消', + destroyOnClose: true + }, + React.createElement( + Space, + { direction: 'vertical', size: 20, style: { width: '100%' } }, + React.createElement( + 'div', + null, + React.createElement('div', { style: { marginBottom: 8, color: '#4e5969', fontWeight: 500 } }, '是否关联故障/事故'), + React.createElement( + Space, + { size: 24 }, + React.createElement(Checkbox, { checked: assocFault, onChange: function (e) { setAssocFault(e.target.checked); } }, '关联故障'), + React.createElement(Checkbox, { checked: assocAccident, onChange: function (e) { setAssocAccident(e.target.checked); } }, '关联事故') + ) + ), + React.createElement( + 'div', + null, + React.createElement('div', { style: { marginBottom: 8, color: '#4e5969', fontWeight: 500 } }, '其他维修项'), + React.createElement(Input.TextArea, { + rows: 4, + placeholder: '填写未由故障/事故单覆盖的维修说明', + value: otherItems, + onChange: function (e) { + setOtherItems(e.target.value); + } + }) + ) + ) + ); + + return React.createElement(Layout, { className: 'arco-theme-overrides', style: { minHeight: '100vh', background: '#fff', fontFamily: 'Inter, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif' } }, + React.createElement('style', null, ` + .arco-theme-overrides .ant-btn { border-radius: 4px; box-shadow: none; font-size: 14px; } + .arco-theme-overrides .ant-btn-primary { background-color: #165dff; border-color: #165dff; } + .arco-theme-overrides .ant-btn-primary:hover { background-color: #4080ff; border-color: #4080ff; } + .arco-theme-overrides .ant-btn-default { background-color: #f2f3f5; border-color: transparent; color: #4e5969; } + .arco-theme-overrides .ant-btn-default:hover { background-color: #e5e6eb; border-color: transparent; color: #4e5969; } + .arco-theme-overrides .ant-btn-link { color: #165dff; } + .arco-theme-overrides .ant-btn-link:hover { background-color: transparent; color: #4080ff; } + .arco-theme-overrides .ant-menu-light .ant-menu-item-selected { background-color: #f2f9fe; color: #165dff; } + .arco-theme-overrides .ant-menu-light .ant-menu-item-selected::after { border-right-color: #165dff; } + .arco-theme-overrides .ant-table-thead > tr > th { background-color: #f2f3f5; color: #1d2129; font-weight: 500; padding: 13px 16px; border-bottom: 1px solid #e5e6eb; border-top: none; } + .arco-theme-overrides .ant-table-thead > tr > th::before { display: none !important; } + .arco-theme-overrides .ant-table-tbody > tr > td { border-bottom: 1px solid #e5e6eb; padding: 13px 16px; color: #4e5969; } + .arco-theme-overrides .ant-table-wrapper { border: none; } + .arco-theme-overrides .ant-table { border: none; } + .arco-theme-overrides .ant-table-container { border: none; } + .arco-theme-overrides .ant-table-pagination.ant-pagination { margin: 16px 0 0 0; } + .arco-theme-overrides .ant-card { border: none; border-radius: 4px; } + .arco-theme-overrides .maintenance-table-wrap { width: 100%; overflow-x: auto; } + .arco-theme-overrides .maintenance-table { width: 100%; } + .arco-theme-overrides .maintenance-table .ant-table { table-layout: auto; width: 100% !important; } + .arco-theme-overrides .maintenance-table .ant-table-thead > tr > th:not(.ant-table-selection-column):not(.mt-col-action), + .arco-theme-overrides .maintenance-table .ant-table-tbody > tr > td:not(.ant-table-selection-column):not(.mt-col-action) { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + vertical-align: middle; + } + .arco-theme-overrides .maintenance-table .mt-col-om, + .arco-theme-overrides .maintenance-table .mt-col-order { max-width: 7.5rem; } + .arco-theme-overrides .maintenance-table .mt-col-time { max-width: 11rem; } + .arco-theme-overrides .maintenance-table .mt-col-plate { max-width: 8rem; } + .arco-theme-overrides .maintenance-table .mt-col-cost { max-width: 9.5rem; } + .arco-theme-overrides .maintenance-table .mt-col-dispatch { max-width: min(14rem, 24vw); } + .arco-theme-overrides .maintenance-table .mt-col-station { max-width: min(18rem, 32vw); } + .arco-theme-overrides .maintenance-table .mt-col-address { max-width: min(22rem, 38vw); } + .arco-theme-overrides .maintenance-table .mt-col-fault, + .arco-theme-overrides .maintenance-table .mt-col-accident { max-width: 5.5rem; } + .arco-theme-overrides .maintenance-table .mt-col-action { + min-width: 200px; + width: 200px; + max-width: none !important; + white-space: nowrap !important; + overflow: visible !important; + text-overflow: clip !important; + } + .arco-theme-overrides .maintenance-table .mt-cell-inner { + display: block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + max-width: 100%; + } + .arco-theme-overrides .ant-input, .arco-theme-overrides .ant-select-selector, .arco-theme-overrides .ant-picker { border-radius: 2px; border: 1px solid #e5e6eb; background-color: #fff; transition: all 0.1s cubic-bezier(0, 0, 1, 1); } + .arco-theme-overrides .ant-input:hover, .arco-theme-overrides .ant-select:not(.ant-select-disabled):hover .ant-select-selector, .arco-theme-overrides .ant-picker:hover { background-color: #fff; border-color: #165dff; } + .arco-theme-overrides .ant-input:focus, .arco-theme-overrides .ant-input-focused, .arco-theme-overrides .ant-select-focused .ant-select-selector, .arco-theme-overrides .ant-picker-focused { background-color: #fff; border: 1px solid #165dff !important; box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2) !important; outline: 0; } + .arco-theme-overrides .ant-input-affix-wrapper:focus, .arco-theme-overrides .ant-input-affix-wrapper-focused { background-color: #fff; border-color: #165dff !important; box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2) !important; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-panel-container { border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 1px solid #e5e6eb; background: #fff; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-header { border-bottom: 1px solid #e5e6eb; color: #1d2129; padding: 0 8px; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-content th { color: #86909c; font-weight: 400; font-size: 14px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner { background: #165dff; color: #fff; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner, + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner { background: #165dff; color: #fff; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-in-range::before { background: #e8f3ff; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::before { border: 1px solid transparent; border-radius: 2px; position: relative; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background-color: #165dff; } + .arco-theme-overrides .ant-picker-cell-in-view.ant-picker-cell-today.ant-picker-cell-selected .ant-picker-cell-inner::after { background-color: #fff; } + .arco-theme-overrides .ant-picker-dropdown .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end) .ant-picker-cell-inner { background: #f2f3f5; border-radius: 2px; } + .arco-theme-overrides .ant-picker-cell-inner { border-radius: 2px; font-size: 14px; color: #4e5969; width: 24px; height: 24px; line-height: 24px; } + .arco-theme-overrides .ant-breadcrumb { color: #86909c; font-size: 14px; } + .arco-theme-overrides .ant-breadcrumb a { color: #4e5969; } + .arco-theme-overrides .ant-breadcrumb a:hover { color: #165dff; background-color: transparent; } + .arco-theme-overrides .ant-form-item-label { padding: 0 16px 0 0 !important; line-height: 32px; height: 32px; display: flex; align-items: center; } + .arco-theme-overrides .ant-form-item-control { display: flex; align-items: center; line-height: 32px; min-height: 32px; } + .arco-theme-overrides .ant-form-item-control-input { min-height: 32px; width: 100%; display: flex; align-items: center; } + .arco-theme-overrides .ant-form-item-control-input-content { display: flex; align-items: center; width: 100%; height: 100%; } + .arco-theme-overrides .ant-select { width: 100%; height: 32px; } + .arco-theme-overrides .ant-select-selector { height: 32px !important; min-height: 32px !important; display: flex; align-items: center; width: 100%; padding: 0 12px; } + .arco-theme-overrides .ant-select-multiple .ant-select-selector { padding: 0 4px; align-items: center; } + .arco-theme-overrides .ant-select-selection-item { line-height: 30px !important; margin-top: 0 !important; margin-bottom: 0 !important; } + .arco-theme-overrides .ant-select-selection-overflow { align-items: center; } + .arco-theme-overrides .ant-input { height: 32px; padding: 4px 12px; } + .arco-theme-overrides .ant-picker { height: 32px !important; min-height: 32px !important; display: flex; align-items: center; padding: 4px 12px; width: 100%; } + .arco-theme-overrides .ant-form-item-label > label { color: #4e5969; } + .arco-theme-overrides .ant-form-item-label > label::after { display: none !important; content: "" !important; margin: 0 !important; } + .arco-theme-overrides .ant-select-multiple .ant-select-selection-item { background: #f2f3f5; border: none; border-radius: 2px; } + .arco-theme-overrides .ant-select-multiple.ant-select-show-arrow .ant-select-selection-item { padding-inline-end: 24px; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option { padding-left: 36px; position: relative; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option::before { content: ""; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border: 1px solid #e5e6eb; border-radius: 2px; transition: all 0.1s; background: #fff; box-sizing: border-box; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option-selected::before { background-color: #165dff; border-color: #165dff; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option-selected::after { content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-70%) rotate(45deg); width: 4px; height: 8px; border: 2px solid #fff; border-top: 0; border-left: 0; box-sizing: content-box; z-index: 1; } + .arco-theme-overrides .ant-select-multiple .ant-select-item-option-state { display: none; } + `), + React.createElement(Header, { + style: { + background: '#fff', + padding: '0 20px', + display: 'flex', + justifyContent: 'space-between', + alignItems: 'center', + borderBottom: '1px solid #e5e6eb', + height: 60, + position: 'fixed', + top: 0, + left: 0, + right: 0, + zIndex: 100 + } + }, + React.createElement('div', { style: { display: 'flex', alignItems: 'center', gap: 12 } }, + React.createElement('div', { style: { width: 32, height: 32, background: '#165dff', borderRadius: 4, display: 'flex', justifyContent: 'center', alignItems: 'center', color: '#fff', fontWeight: 'bold' } }, 'A'), + React.createElement('div', { style: { fontSize: '20px', fontWeight: '600', color: '#1d2129', letterSpacing: '0.5px' } }, 'Arco Pro') + ), + React.createElement('div', { style: { display: 'flex', alignItems: 'center', gap: 20 } }, + React.createElement(Input.Search, { placeholder: '搜索功能', style: { width: 220, borderRadius: 16 } }), + React.createElement(Badge, { dot: true, offset: [-2, 4] }, + React.createElement('span', { style: { color: '#4e5969', cursor: 'pointer', display: 'flex' }, title: '消息通知' }, React.createElement(NoticeIcon, null)) + ), + React.createElement('span', { style: { color: '#4e5969', cursor: 'pointer', display: 'flex' }, title: '设置' }, React.createElement(SettingIcon, null)), + React.createElement(Avatar, { size: 32, src: 'https://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/3ee5f13fb09879ecb5185e440cef6eb9.png~tplv-uwbnlip3yd-webp.webp', style: { cursor: 'pointer' } }) + ) + ), + React.createElement(Layout, { style: { paddingTop: 60, background: '#fff' } }, + React.createElement(Sider, { + width: 220, + style: { + background: '#fff', + borderRight: '1px solid #e5e6eb', + position: 'fixed', + top: 60, + left: 0, + height: 'calc(100vh - 60px)', + overflowY: 'auto', + zIndex: 99 + } + }, + React.createElement(Menu, { + mode: 'inline', + selectedKeys: [currentMenu], + defaultOpenKeys: ['crm'], + items: menuItems, + onClick: handleMenuClick, + style: { borderRight: 'none', padding: '8px', background: '#fff' } + }) + ), + React.createElement(Content, { style: { marginLeft: 220, padding: '16px 20px 0 20px', minHeight: 'calc(100vh - 60px)', display: 'flex', flexDirection: 'column', background: '#fff' } }, + React.createElement('div', { style: { padding: '16px 20px 0 20px', marginBottom: 0 } }, + React.createElement(Breadcrumb, { + separator: React.createElement('span', { style: { color: '#c9cdd4' } }, '/'), + items: [ + { title: React.createElement(ListIcon, { style: { display: 'inline-flex', alignItems: 'center', fontSize: 14, transform: 'translate(-2px, 1px)' } }) }, + { title: '列表页' }, + { title: React.createElement('span', { style: { color: '#1d2129' } }, '维修单管理') } + ] + }), + React.createElement(Title, { level: 4, style: { marginTop: 16, marginBottom: 20, fontWeight: 700, color: '#1d2129', fontSize: 16 } }, '维修单管理') + ), + React.createElement('div', { style: { padding: '0', display: 'flex', flexDirection: 'column', flex: 1, background: 'transparent' } }, + React.createElement('div', { style: { padding: '0 20px 0 20px', marginBottom: 0, background: '#fff' } }, + React.createElement(Row, { style: { flexWrap: 'nowrap' } }, + React.createElement(Col, { flex: 1, style: { minWidth: 0, paddingRight: 40 } }, + React.createElement(Form, Object.assign({ layout: 'horizontal' }, formItemLayout), + React.createElement(Row, { gutter: 24, style: { rowGap: 0 } }, + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '车牌号', style: { marginBottom: 16, height: 32 } }, + React.createElement(Input, { placeholder: '请输入车牌号' }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '维修单状态', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + allowClear: true, + placeholder: '全部', + options: [ + { label: '全部', value: '' }, + { label: '草稿', value: 'draft' }, + { label: '已派单', value: 'dispatched' }, + { label: '已接单', value: 'accepted' }, + { label: '维修中', value: 'in_progress' }, + { label: '已完成', value: 'completed' } + ] + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '运维审批', style: { marginBottom: 16, height: 32 } }, + React.createElement(Select, { + allowClear: true, + placeholder: '全部', + options: [ + { label: '全部', value: '' }, + { label: '待审批', value: '待审批' }, + { label: '已通过', value: '已通过' }, + { label: '已驳回', value: '已驳回' } + ] + }) + ) + ), + React.createElement(Col, { span: 8 }, + React.createElement(Form.Item, { label: '时间', style: { marginBottom: 16, height: 32 } }, + React.createElement(RangePicker, { style: { width: '100%' }, placeholder: ['开始', '结束'] }) + ) + ) + ) + ) + ), + React.createElement(Divider, { style: { height: 72, borderLeftColor: 'rgb(229, 230, 235)', borderLeftStyle: 'dashed', marginLeft: 20, marginRight: 20 }, type: 'vertical' }), + React.createElement(Col, { flex: '86px', style: { textAlign: 'right' } }, + React.createElement(Space, { direction: 'vertical', size: 12 }, + React.createElement(Button, { type: 'primary', icon: React.createElement(SearchIcon, null), style: { display: 'flex', alignItems: 'center', gap: 6, justifyContent: 'center' } }, '查询'), + React.createElement(Button, { icon: React.createElement(ResetIcon, null), style: { display: 'flex', alignItems: 'center', gap: 6, justifyContent: 'center' } }, '重置') + ) + ) + ) + ), + React.createElement('div', { style: { padding: '20px 20px 0 20px', display: 'flex', flexDirection: 'column', flex: 1, background: '#fff' } }, + React.createElement(Row, { justify: 'space-between', align: 'middle', style: { marginBottom: 16 } }, + React.createElement(Col, null, + React.createElement(Space, { size: 12 }, + React.createElement(Button, { type: 'primary', icon: React.createElement(PlusIcon, null), style: { display: 'flex', alignItems: 'center', gap: 6 }, onClick: openCreate }, '新建'), + React.createElement(Button, null, '导出') + ) + ), + React.createElement(Col, null, + React.createElement(Button, { style: { padding: '4px 10px', height: 32, display: 'flex', alignItems: 'center', gap: 6, color: '#4e5969' }, title: '下载' }, React.createElement(DownloadIcon, null), React.createElement('span', null, '下载')) + ) + ), + React.createElement( + 'div', + { className: 'maintenance-table-wrap', style: { flex: 1, minHeight: 0 } }, + React.createElement(Table, { + className: 'maintenance-table', + rowSelection: { type: 'checkbox', columnWidth: 48 }, + columns: columns, + dataSource: listData, + pagination: { pageSize: 10, showTotal: function (total) { return '共 ' + total + ' 条'; } }, + tableLayout: 'auto', + style: { width: '100%' }, + scroll: { x: 'max-content' } + }) + ) + ) + ) + ) + ), + viewModal, + partsLinkModal, + createModal + ); +}; + +if (typeof module !== 'undefined' && module.exports) module.exports = Component; \ No newline at end of file diff --git a/ONEOS-web/ERP/订单管理.jsx b/ONEOS-web/ERP/订单管理.jsx new file mode 100644 index 0000000..67530f6 --- /dev/null +++ b/ONEOS-web/ERP/订单管理.jsx @@ -0,0 +1,98 @@ +// 【重要】必须使用 const Component 作为组件变量名 +// ONEOS-web 示例项目 - ERP 订单管理 + +const Component = function () { + var useState = React.useState; + + var antd = window.antd; + var Table = antd.Table; + var Button = antd.Button; + var Card = antd.Card; + var Space = antd.Space; + var Input = antd.Input; + var Breadcrumb = antd.Breadcrumb; + var Menu = antd.Menu; + var Layout = antd.Layout; + var message = antd.message; + var Tag = antd.Tag; + var Header = Layout.Header; + var Content = Layout.Content; + + var _currentMenu = useState('erp'); + var currentMenu = _currentMenu[0]; + var setCurrentMenu = _currentMenu[1]; + + var handleMenuClick = function (e) { + setCurrentMenu(e.key); + if (e.key === 'contract') { + message.info('跳转至 合同列表'); + window.location.hash = '合同列表'; + } else if (e.key === 'crm') { + message.info('跳转至 CRM 客户管理'); + window.location.hash = '客户列表'; + } else if (e.key === 'asset') { + message.info('跳转至 资产概览'); + window.location.hash = '资产概览'; + } + }; + + var columns = [ + { title: '订单编号', dataIndex: 'orderNo', key: 'orderNo' }, + { title: '关联客户', dataIndex: 'customer', key: 'customer' }, + { title: '产品/服务', dataIndex: 'product', key: 'product' }, + { title: '数量', dataIndex: 'quantity', key: 'quantity' }, + { title: '总金额(元)', dataIndex: 'amount', key: 'amount' }, + { title: '状态', dataIndex: 'status', key: 'status', render: function(text) { + var color = text === '已发货' ? 'blue' : text === '已完成' ? 'green' : 'orange'; + return React.createElement(Tag, { color: color }, text); + } }, + { + title: '操作', + key: 'action', + render: function (_, record) { + return React.createElement(Space, null, + React.createElement(Button, { type: 'link', size: 'small', onClick: function() { message.info('查看订单: ' + record.orderNo); } }, '详情'), + React.createElement(Button, { type: 'link', size: 'small', onClick: function() { message.success('更新发货状态'); } }, '更新状态') + ); + } + } + ]; + + var data = [ + { key: '1', orderNo: 'ORD-20260401', customer: '嘉兴某物流公司', product: '氢能重卡租赁(月)', quantity: 5, amount: '150,000.00', status: '待发货' }, + { key: '2', orderNo: 'ORD-20260405', customer: '上海某科技公司', product: '氢燃料补给服务', quantity: 1, amount: '12,000.00', status: '已完成' }, + { key: '3', orderNo: 'ORD-20260410', customer: '杭州某实业公司', product: '氢能轻卡租赁(年)', quantity: 2, amount: '240,000.00', status: '已发货' } + ]; + + var layoutStyle = { minHeight: '100vh', background: '#f5f5f5' }; + var headerStyle = { background: '#fff', padding: '0 24px', display: 'flex', alignItems: 'center', boxShadow: '0 2px 8px rgba(0,0,0,0.06)', zIndex: 1 }; + var logoStyle = { fontSize: '20px', fontWeight: 'bold', color: '#1677ff', marginRight: '48px' }; + + var menuItems = [ + { key: 'contract', label: '合同管理' }, + { key: 'crm', label: 'CRM 客户管理' }, + { key: 'erp', label: 'ERP 订单管理' }, + { key: 'asset', label: '资产管理' } + ]; + + return React.createElement(Layout, { style: layoutStyle }, + React.createElement(Header, { style: headerStyle }, + React.createElement('div', { style: logoStyle }, 'ONEOS 运管平台'), + React.createElement(Menu, { mode: 'horizontal', selectedKeys: [currentMenu], items: menuItems, onClick: handleMenuClick, style: { flex: 1, borderBottom: 'none' } }) + ), + React.createElement(Content, { style: { padding: '24px 48px' } }, + React.createElement(Breadcrumb, { style: { marginBottom: '16px' }, items: [{ title: '系统应用' }, { title: 'ERP' }, { title: '订单管理' }] }), + React.createElement(Card, { title: '业务订单', style: { borderRadius: '8px' } }, + React.createElement('div', { style: { marginBottom: 16, display: 'flex', gap: 16 } }, + React.createElement(Input, { placeholder: '输入订单编号搜索', style: { width: 200 } }), + React.createElement(Button, { type: 'primary' }, '查询'), + React.createElement('div', { style: { flex: 1 } }), + React.createElement(Button, { type: 'primary', onClick: function() { message.info('新建订单(打开抽屉)'); } }, '新建订单') + ), + React.createElement(Table, { columns: columns, dataSource: data, pagination: { pageSize: 10 } }) + ) + ) + ); +}; + +if (typeof module !== 'undefined' && module.exports) module.exports = Component; diff --git a/ONEOS-web/企业台账搭建方案.jsx b/ONEOS-web/企业台账搭建方案.jsx new file mode 100644 index 0000000..8df255e --- /dev/null +++ b/ONEOS-web/企业台账搭建方案.jsx @@ -0,0 +1,1864 @@ +// 【重要】必须使用 const Component 作为组件变量名 +// ONEOS-web · 企业业务总台账搭建方案(交互汇报页) +// 双维:业务总台账(七类业务×近12月业绩/成本/利润)+ 车辆运营明细台账(氢/电/ETC/运维) + +const Component = function () { + const { useState, useMemo, useCallback, useEffect } = React; + const antd = window.antd || {}; + const { Table, Tag, Modal, Button, Space } = antd; + + const C_PRIMARY = '#0f766e'; + const C_PRIMARY_L = '#14b8a6'; + const C_HERO = '#0c1222'; + const C_HERO_ACCENT = '#132337'; + const C_PAGE = '#f1f5f9'; + const C_CARD = '#ffffff'; + const C_TEXT = '#0f172a'; + const C_MUTED = '#64748b'; + const C_LINE = 'rgba(15, 23, 42, 0.08)'; + const C_BLUE = '#2563eb'; + const C_AMBER = '#d97706'; + const C_VIOLET = '#7c3aed'; + const C_ROSE = '#e11d48'; + const FONT = '-apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Segoe UI", sans-serif'; + + const AXHUB_PROTO_URL = 'https://axhub.im/ax11/a57ed3c0b68f7f6a/#g=1'; + const AXHUB_BIZ_LEDGER_URL = 'https://axhub.im/ax11/7587168366793103/?g=1&id=358ccx&p=%E4%B8%9A%E5%8A%A1%E5%8F%B0%E8%B4%A6'; + + /** 统计双维:业务总台账(经营结果) + 车辆运营明细台账(发生明细) */ + const ledgerDimensions = [ + { + id: 'bizTotal', + label: '业务总台账', + color: C_BLUE, + role: '按业务线汇总', + summary: '列表展示七类业务费用总计;每类按月份展示近 12 个月业绩、成本、利润(利润 = 业绩 − 成本)。', + listItems: ['租赁业务', '自营业务', '氢费业务', '电费业务', 'ETC业务', '销售业务', '其他业务'], + }, + { + id: 'vehicleOps', + label: '车辆运营明细台账', + color: C_PRIMARY, + role: '按车辆归集明细', + summary: '记录单车维度的氢费、电费、ETC、运维等发生额;归集后写入业务总台账对应业务线,避免重复录入。', + listItems: ['车辆氢费明细', '电费明细(特来电)', 'ETC 明细', '运维维修/保养/年审等'], + }, + ]; + + /** 业务总台账 · 七类业务口径(列表列与按月汇总规则) */ + const bizTotalLedgerTypes = [ + { + id: 'lease', + label: '租赁业务', + color: C_BLUE, + period: '按月份 · 近 12 个月', + perf: '租金、服务费', + cost: '车辆成本、居间费', + profit: '业绩 − 成本', + drill: '业绩可钻取至业务员 → 项目/合同', + writeBack: '租赁账单、收款确认;车辆成本来自运维/财务分摊', + }, + { + id: 'self', + label: '自营业务', + color: C_VIOLET, + period: '按月份 · 近 12 个月', + perf: '自营明细表 ·「金额」列汇总', + cost: '自营明细中:氢费、ETC 费用、薪资、人工报销、日社保服务费、日轮胎费用、车辆费用', + profit: '业绩 − 成本', + drill: '业绩可钻取至业务员 → 项目', + writeBack: '自营明细 Excel 导入;氢/ETC 可与车辆明细勾稽', + }, + { + id: 'h2', + label: '氢费业务', + color: C_PRIMARY, + period: '按月份 · 近 12 个月', + perf: '氢费营收(客户/业务员分摊)', + cost: '加氢采购成本、站点费用等', + profit: '业绩 − 成本', + drill: '业绩 → 业务员 → 项目', + writeBack: '车辆运营明细 · 车辆氢费明细归集', + }, + { + id: 'apply', + label: '电费业务', + color: C_AMBER, + period: '按月份 · 近 12 个月', + perf: '充电营收(内外部车辆区分)', + cost: '场地、损耗、手续费、内部车成本等', + profit: '业绩 − 成本', + drill: '业绩 → 业务员 → 项目', + writeBack: '车辆运营明细 · 特来电导入电费明细', + }, + { + id: 'etc', + label: 'ETC业务', + color: '#0891b2', + period: '按月份 · 近 12 个月', + perf: '通行等 ETC 营收', + cost: 'ETC 通道/服务成本', + profit: '业绩 − 成本', + drill: '业绩 → 业务员 → 项目', + writeBack: '车辆运营明细 · ETC 供应商抓取', + }, + { + id: 'resale', + label: '销售业务', + color: C_ROSE, + period: '按月份 · 近 12 个月', + perf: '车辆销售合同结算金额', + cost: '销售相关成本', + profit: '业绩 − 成本', + drill: '业绩 → 业务员 → 项目', + writeBack: '销售合同与出库结算', + }, + { + id: 'other', + label: '其他业务', + color: C_MUTED, + period: '按月份 · 近 12 个月', + perf: '其他收入项汇总', + cost: '其他成本项汇总', + profit: '业绩 − 成本', + drill: '按配置是否可钻取', + writeBack: '杂项业务单据', + }, + ]; + + const BIZ_LEDGER_CATS = [ + { key: 'lease', groupTitle: '租赁业务', short: '租赁' }, + { key: 'self', groupTitle: '自营业务', short: '自营' }, + { key: 'h2', groupTitle: '氢费业务', short: '氢费' }, + { key: 'apply', groupTitle: '电费业务', short: '电费' }, + { key: 'etc', groupTitle: 'ETC业务', short: 'ETC' }, + { key: 'resale', groupTitle: '销售业务', short: '销售' }, + { key: 'other', groupTitle: '其他业务', short: '其他' }, + ]; + + const BIZ_LEDGER_SOURCE_MAP = { + lease: '业绩:租金、服务费(租赁账单);成本:车辆成本、居间费;利润 = 业绩 − 成本', + self: '业绩:自营明细「金额」列;成本:氢费、ETC、薪资、人工报销、日社保服务费、日轮胎费、车辆费用;利润 = 业绩 − 成本', + h2: '车辆运营明细 → 车辆氢费明细,按客户/业务员分摊计入氢费业务', + apply: '车辆运营明细 → 特来电电费导入,区分内外部车辆', + etc: '车辆运营明细 → ETC 供应商抓取,按车牌归集', + resale: '销售合同与出库结算', + other: '其他业务单据汇总', + }; + + const fmtBizMoney = (n) => { + if (n === null || n === undefined || n === '') return '—'; + const x = Number(n); + if (Number.isNaN(x) || x === 0) return '—'; + return x.toLocaleString('zh-CN', { minimumFractionDigits: 2, maximumFractionDigits: 2 }); + }; + + const BIZ_LEDGER_MAIN_ROWS = [ + { + key: 'm5', month: 5, monthLabel: '5月', rowType: 'month', + selfPerf: 318520.5, selfCost: 256816.4, selfProfit: 61704.1, + leasePerf: 542180, leaseCost: 328600, leaseProfit: 213580, + resalePerf: 412000, resaleCost: 298000, resaleProfit: 114000, + h2Perf: 128560, h2Cost: 77200, h2Profit: 51360, + applyPerf: 18200, applyCost: 5400, applyProfit: 12800, + etcPerf: 6800, etcCost: 3200, etcProfit: 3600, + otherPerf: 9200, otherCost: 3100, otherProfit: 6100, + }, + { + key: 'm6', month: 6, monthLabel: '6月', rowType: 'month', + selfPerf: 295400, selfCost: 241200, selfProfit: 54200, + leasePerf: 518900, leaseCost: 315200, leaseProfit: 203700, + resalePerf: 380500, resaleCost: 275000, resaleProfit: 105500, + h2Perf: 119800, h2Cost: 71800, h2Profit: 48000, + applyPerf: 16800, applyCost: 5100, applyProfit: 11700, + etcPerf: 6200, etcCost: 2900, etcProfit: 3300, + otherPerf: 8600, otherCost: 2800, otherProfit: 5800, + }, + { + key: 'hint12', month: 0, monthLabel: '…', rowType: 'month', + selfPerf: null, leasePerf: null, resalePerf: null, h2Perf: null, applyPerf: null, etcPerf: null, otherPerf: null, + }, + { + key: 'total', month: 13, monthLabel: '合计', rowType: 'total', + selfPerf: 613920.5, selfCost: 498016.4, selfProfit: 115904.1, + leasePerf: 1061080, leaseCost: 643800, leaseProfit: 417280, + resalePerf: 792500, resaleCost: 573000, resaleProfit: 219500, + h2Perf: 248360, h2Cost: 149000, h2Profit: 99360, + applyPerf: 35000, applyCost: 10500, applyProfit: 24500, + etcPerf: 13000, etcCost: 6100, etcProfit: 6900, + otherPerf: 17800, otherCost: 5900, otherProfit: 11900, + }, + ]; + + const BIZ_SALES_BY_CAT = { + h2: [ + { key: 's1', salesperson: '尚建华', amount: 53915.2 }, + { key: 's2', salesperson: '刘念念', amount: 44926 }, + { key: 's3', salesperson: '谯云', amount: 19284 }, + { key: 's4', salesperson: '董剑煜', amount: 10334.8 }, + ], + lease: [ + { key: 'd1', ym: '2026-05', monthRowSpan: 2, deptName: '业务三部', salesperson: '尚建华', mainPerf: 227715.6, h2PerfCol: 53915.2, elecPerf: 7644, etcPerfCol: 2856, otherAmt: 3864 }, + { key: 'd2', ym: '2026-05', monthRowSpan: 0, deptName: '业务三部', salesperson: '刘念念', mainPerf: 189763, h2PerfCol: 44926, elecPerf: 6370, etcPerfCol: 2380, otherAmt: 3220 }, + ], + self: [ + { key: 'd3', ym: '2026-05', monthRowSpan: 2, deptName: '业务一部', salesperson: '陈思', mainPerf: 133777.4, h2PerfCol: 25872, elecPerf: 3822, etcPerfCol: 1428, otherAmt: 1932 }, + { key: 'd4', ym: '2026-05', monthRowSpan: 0, deptName: '业务一部', salesperson: '周宁', mainPerf: 111481, h2PerfCol: 21560, elecPerf: 3185, etcPerfCol: 1190, otherAmt: 1610 }, + ], + }; + + const BIZ_PROJECT_ROWS = [ + { key: 'p1', projectCode: 'PRJ-2026-001', projectName: '嘉兴冷链城配项目', plateNo: '沪A62261F', amount: 27280, bizDate: '2026-05-08', remark: '—' }, + { key: 'p2', projectCode: 'PRJ-2026-018', projectName: '沪浙干线运输', plateNo: '粤AGP3649', amount: 27280, bizDate: '2026-05-15', remark: '—' }, + { key: 'p3', projectCode: 'PRJ-2026-033', projectName: '园区短驳', plateNo: '苏ED32891', amount: 27280, bizDate: '2026-05-22', remark: '演示' }, + ]; + + const sectionNav = [ + { key: 'hero', label: '汇报总览' }, + { key: 'dimensions', label: '双维统计' }, + { key: 'bizTypes', label: '业务总台账' }, + { key: 'mindmap', label: '车辆明细' }, + { key: 'principles', label: '搭建原则' }, + { key: 'domains', label: '明细搭建' }, + { key: 'workflows', label: '环节样表' }, + { key: 'links', label: '勾稽关系' }, + { key: 'drill', label: '钻取路径' }, + { key: 'samples', label: '样表索引' }, + { key: 'summary', label: '决策要点' }, + ]; + + const kpiStats = [ + { label: '统计维度', value: '2', unit: '类', color: C_PRIMARY }, + { label: '业务总台账', value: '7', unit: '业务线', color: C_BLUE }, + { label: '按月展示', value: '12', unit: '个月', color: C_AMBER }, + { label: '利润公式', value: '绩−成', unit: '统一', color: C_VIOLET }, + ]; + + const renderProtoStatus = (status) => { + if (status === 'done') return 原型已实现; + if (status === 'partial') return 部分实现; + return 待建设; + }; + + /** 各环节:对照 Axhub / web 端原型路径与样表 key */ + const ledgerWorkflows = { + bizTotal: { + color: C_BLUE, + steps: [ + { key: 'businessLedger', name: '业务总台账列表', status: 'done', protoPath: 'web端/数据分析/业务台账.jsx', sampleKey: 'businessLedger', flow: '七类业务 × 近12月业绩/成本/利润;仅业绩可钻取', link: 'Axhub 业务台账' }, + { key: 'leaseRule', name: '租赁业务口径', status: 'done', protoPath: '租赁账单 + 成本分摊', sampleKey: 'leaseRent', flow: '业绩=租金+服务费;成本=车辆成本+居间费' }, + { key: 'selfRule', name: '自营业务口径', status: 'partial', protoPath: '自营明细导入', sampleKey: 'selfImport', flow: '业绩=金额列;成本=氢费/ETC/薪资/报销/日社保/日轮胎/车辆费' }, + ], + }, + lease: { + color: C_BLUE, + steps: [ + { key: 'leaseProfit', name: '租赁·客户利润样表(参考)', status: 'partial', protoPath: '业务总台账·租赁业务列', sampleKey: 'lease', flow: '汇总层见业务总台账;本样表为客户维度参考' }, + { key: 'leaseRent', name: '收入·租赁业务(租金/服务费)', status: 'partial', protoPath: 'web端/财务管理/租赁账单.jsx', sampleKey: 'leaseRent', flow: '合同账单确认后计入收入' }, + { key: 'leaseH2Rollup', name: '收入·氢费(从车辆氢费取)', status: 'done', protoPath: 'web端/台账数据/车辆氢费明细.jsx', sampleKey: 'vehicleH2Detail', flow: '已对账氢费按客户/合同汇总' }, + { key: 'leaseCost', name: '成本·车辆/居间费', status: 'partial', protoPath: '运维台账+财务', sampleKey: 'leaseCost', flow: '车辆成本、居间费分摊至客户' }, + ], + }, + h2: { + color: C_PRIMARY, + steps: [ + { key: 'h2detail', name: '氢费明细·车辆氢费明细', status: 'done', protoPath: 'web端/台账数据/车辆氢费明细.jsx', sampleKey: 'vehicleH2Detail', flow: '待保存 → 保存 → 未对账 → 完成对账 → 已对账' }, + { key: 'h2customer', name: '氢费明细·按客户归集', status: 'done', protoPath: 'web端/数据分析/租赁客户氢费台账.jsx', sampleKey: 'leaseCustomerH2Sum', flow: '按加氢时间合并到对应客户;明细 Tab + 总计 Tab' }, + { key: 'h2station', name: '加氢站账户·站点汇总', status: 'done', protoPath: 'web端/台账数据/氢费采购端汇总报表.jsx', sampleKey: 'h2PurchaseSummary', flow: '应付/已付/未付/开票/余额;金额可钻取' }, + { key: 'h2stationPay', name: '加氢站·已付/充值钻取', status: 'done', protoPath: '氢费采购端汇总报表·钻取弹窗', sampleKey: 'h2PurchasePay', flow: '付款账单、充值明细、余额变更' }, + { key: 'h2custAcct', name: '客户预充值·账户扣款', status: 'partial', protoPath: '能源账户(待统一入口)', sampleKey: 'h2Account', flow: '客户氢费扣款、充值导入、变更记录' }, + ], + }, + electric: { + color: C_AMBER, + steps: [ + { key: 'elecImport', name: '电费明细·特来电导入', status: 'partial', protoPath: '待建:电费明细页', sampleKey: 'electric', flow: '平台导出 CSV/Excel 后导入' }, + { key: 'elecRevenue', name: '营收·外部车/租赁内部车', status: 'partial', protoPath: '—', sampleKey: 'electricRevenue', flow: '区分非库存外部车与租赁内部车' }, + { key: 'elecCost', name: '成本·场地/损耗/手续费/自营内部车', status: 'partial', protoPath: '—', sampleKey: 'electricCost', flow: '成本分拆计入自营或站点' }, + ], + }, + etc: { + color: '#0891b2', + steps: [ + { key: 'etcFetch', name: 'ETC 明细·供应商抓取', status: 'partial', protoPath: '—', sampleKey: 'etc', flow: 'ETC 供应商网站自动扒取' }, + { key: 'etcAcct', name: '客户 ETC 预充值账户', status: 'partial', protoPath: '—', sampleKey: 'etcAccount', flow: '预充值、实时扣费流水' }, + ], + }, + ops: { + color: C_PRIMARY_L, + steps: [ + { key: 'opsRepair', name: '维修明细', status: 'done', protoPath: 'web端/台账数据/车辆维修明细.jsx', sampleKey: 'opsRepair', flow: '待保存 → 确认提交(提交后锁定)' }, + { key: 'opsMaintain', name: '保养明细', status: 'partial', protoPath: '车辆维修明细·类型=保养', sampleKey: 'opsMaintain', flow: '同维修页,类型区分' }, + { key: 'opsAnnual', name: '年审明细', status: 'partial', protoPath: 'web端/运维管理/车辆业务/年审管理.jsx', sampleKey: 'opsAnnual', flow: '年审办理结果回写' }, + { key: 'opsTire', name: '轮胎磨损明细', status: 'partial', protoPath: '—', sampleKey: 'opsTire', flow: '待建专用表或并入运维其他' }, + { key: 'opsOther', name: '其他运维', status: 'partial', protoPath: '—', sampleKey: 'opsOther', flow: '杂项运维费用' }, + ], + }, + safety: { + color: C_ROSE, + steps: [ + { key: 'safetyClaim', name: '保险赔付', status: 'partial', protoPath: 'web端/安全管理/事故管理.jsx', sampleKey: 'safety', flow: '事故过程、责任、赔付金额' }, + ], + }, + self: { + color: C_VIOLET, + steps: [ + { key: 'selfImport', name: '自营明细导入', status: 'partial', protoPath: '—', sampleKey: 'selfImport', flow: 'Excel 导入自营收支' }, + { key: 'selfDriver', name: '司机·工资/社保', status: 'partial', protoPath: '—', sampleKey: 'selfDriver', flow: '人力成本按月' }, + { key: 'selfVehicle', name: '车辆·损耗/运维/氢电ETC', status: 'partial', protoPath: '车辆氢费明细+运维台账', sampleKey: 'self', flow: '氢电 ETC 从对应车辆明细取' }, + ], + }, + }; + + /** 车辆运营明细台账分支(为业务总台账提供明细数据源) */ + const ledgerBranches = [ + { + id: 'h2', + label: '车辆运营·氢费', + color: C_PRIMARY, + tag: '能源', + formula: '明细 → 客户归集 → 账户扣款', + anchor: '加氢时间 · 车牌 · 客户', + listShows: '氢费明细列表、加氢站账户余额、客户预充值账户', + detailShows: '手动录入/导入明细;按加氢时间合并至客户;充值与变更记录', + writeBack: '导入/录入明细;加氢站账户扣款;客户预充值账户扣款', + sampleKey: 'h2', + blocks: [ + { + title: '氢费明细', + nodes: [ + { label: '车辆氢费明细', note: '手动记录 / 导入;现有车辆氢费明细功能' }, + { label: '客户归集', note: '自动按加氢时间合并到对应客户' }, + ], + }, + { + title: '加氢站账户', + nodes: [ + { label: '站点扣款', note: '加氢站产生的氢费从账户直接扣' }, + { label: '充值导入', note: '充值记录导入、变更记录' }, + ], + }, + { + title: '客户预充值', + nodes: [ + { label: '客户扣款', note: '客户氢费从客户账户直接扣' }, + { label: '充值导入', note: '充值记录导入、变更记录' }, + ], + }, + ], + }, + { + id: 'electric', + label: '车辆运营·电费', + color: C_AMBER, + tag: '能源', + formula: '特来电导出 → 导入 → 营收/成本分拆', + anchor: '充电记录 · 车牌 · 内外部车辆', + listShows: '电费明细、营收(外部车/租赁内部车)、成本(场地/损耗/手续费/自营内部车)', + detailShows: '特来电平台导出后导入;区分外部非库存车与内部业务车辆', + writeBack: 'Excel/CSV 导入;归集至业务总台账·电费业务', + sampleKey: 'electric', + blocks: [ + { + title: '电费明细', + nodes: [{ label: '明细导入', note: '特来电平台手动导出后导入' }], + }, + { + title: '营收', + nodes: [ + { label: '外部车辆', note: '非库存车辆' }, + { label: '租赁业务内部车辆', note: '' }, + ], + }, + { + title: '成本', + nodes: [ + { label: '场地租金', note: '' }, + { label: '损耗费', note: '' }, + { label: '手续费', note: '' }, + { label: '自营业务内部车辆', note: '' }, + ], + }, + ], + }, + { + id: 'etc', + label: '车辆运营·ETC', + color: '#0891b2', + tag: '通行', + formula: '供应商抓取 + 客户预充值实时扣', + anchor: 'ETC 账户 · 客户 · 车牌', + listShows: 'ETC 明细、客户 ETC 账户余额、扣费流水', + detailShows: '供应商网站自动扒取;客户可预充值;费用实时扣取记录', + writeBack: '爬取/同步明细;账户充值;归集至租赁与自营台账', + sampleKey: 'etc', + blocks: [ + { + title: 'ETC 明细', + nodes: [{ label: '自动抓取', note: 'ETC 供应商网站自动扒取' }], + }, + { + title: '账户', + nodes: [ + { label: '客户预充值', note: '客户可预充值 ETC 账户' }, + { label: '实时扣费', note: '客户 ETC 费用有记录并实时扣取' }, + ], + }, + ], + }, + { + id: 'ops', + label: '车辆运营·运维', + color: C_PRIMARY_L, + tag: '成本来源', + formula: '多类明细 → 车辆/自营成本', + anchor: '车牌 · 工单号 · 账期', + listShows: '维修、保养、年审、轮胎磨损、其他运维明细', + detailShows: '按类型分表;关联车辆与费用承担方(租赁/自营)', + writeBack: '维修站派单、年审办理、保养记录入库', + sampleKey: 'ops', + blocks: [ + { + title: '明细类型', + nodes: [ + { label: '维修明细', note: '' }, + { label: '保养明细', note: '' }, + { label: '年审明细', note: '' }, + { label: '轮胎磨损明细', note: '' }, + { label: '其他', note: '' }, + ], + }, + ], + }, + { + id: 'safety', + label: '安全台账', + color: C_ROSE, + tag: '风控', + formula: '事故过程 → 责任 → 赔付', + anchor: '事故单号 · 保单', + listShows: '保险赔付记录、责任认定、赔付金额状态', + detailShows: '事故发生过程、责任划分、保险赔付金额与进度', + writeBack: '事故管理结案、保险理赔结果', + sampleKey: 'safety', + blocks: [ + { + title: '保险赔付', + nodes: [ + { label: '事故过程', note: '出现事故时的过程记录' }, + { label: '责任', note: '责任认定' }, + { label: '赔付金额', note: '保险赔付金额' }, + ], + }, + ], + }, + ]; + + const crossLinks = [ + { from: '车辆氢费明细', to: '业务总台账·氢费业务', rule: '按车牌/客户汇总业绩与成本', color: C_PRIMARY }, + { from: '车辆氢费明细', to: '业务总台账·自营业务成本', rule: '自营明细氢费列勾稽', color: C_PRIMARY }, + { from: '车辆电费明细', to: '业务总台账·电费业务', rule: '特来电导入后归集', color: C_AMBER }, + { from: '车辆 ETC 明细', to: '业务总台账·ETC业务', rule: '供应商抓取归集', color: '#0891b2' }, + { from: '运维各类明细', to: '业务总台账·租赁业务成本', rule: '车辆成本、居间相关分摊', color: C_PRIMARY_L }, + { from: '租赁账单', to: '业务总台账·租赁业务业绩', rule: '租金、服务费计入业绩', color: C_BLUE }, + { from: '自营明细导入', to: '业务总台账·自营业务', rule: '金额列=业绩;多列费用=成本', color: C_VIOLET }, + ]; + + const principles = [ + { id: 'two', title: '双维统计', desc: '「业务总台账」看七类业务按月业绩/成本/利润;「车辆运营明细台账」看单车发生额,向上归集,不重复记账。', icon: '维' }, + { id: 'month12', title: '近 12 个月', desc: '业务总台账每类业务按月份展示近 12 个月三列(业绩、成本、利润),并支持年度筛选与合计行。', icon: '月' }, + { id: 'profit', title: '统一利润公式', desc: '各类业务利润均为「业绩 − 成本」;租赁业绩来自租金+服务费,自营业绩来自自营明细金额列。', icon: '利' }, + { id: 'hub', title: '明细归集不上浮重复', desc: '氢/电/ETC 先在车辆运营明细落账,再汇总进业务总台账对应业务线;账户层只管预充值与扣款轨迹。', icon: '枢' }, + ]; + + const drillPaths = [ + { + id: 'd0', + title: '业务部汇总:业绩 → 业务员 → 项目', + scene: '业务台账', + steps: ['年份+业务部', '七类业务×近12月', '业绩/成本/利润', '点击业绩', '业务员', '项目明细'], + color: C_BLUE, + }, + { + id: 'd1', + title: '租赁利润:总览 → 收入项 → 车辆明细', + scene: '租赁台账', + steps: ['租赁台账汇总', '展开收入(租金/氢/电/ETC)', '点击氢费金额', '车辆氢费明细', '加氢订单/导入行'], + color: C_BLUE, + }, + { + id: 'd2', + title: '氢费:明细 → 客户 → 账户', + scene: '氢费台账', + steps: ['氢费明细列表', '按加氢时间归集客户', '客户氢费汇总', '预充值账户余额', '充值/扣款变更记录'], + color: C_PRIMARY, + }, + { + id: 'd3', + title: '电费:导入 → 营收/成本 → 车辆', + scene: '电费台账', + steps: ['特来电导出导入', '电费明细表', '筛选内部/外部车辆', '单车电费', '回写租赁收入·电费'], + color: C_AMBER, + }, + { + id: 'd4', + title: 'ETC:抓取 → 账户 → 实时扣费', + scene: 'ETC 台账', + steps: ['供应商自动扒取', 'ETC 明细', '客户 ETC 账户', '预充值记录', '通行扣费流水'], + color: '#0891b2', + }, + { + id: 'd5', + title: '运维:类型 → 工单 → 车辆成本', + scene: '运维台账', + steps: ['选择明细类型(维修/年审等)', '工单列表', '费用与承担方', '车辆运维成本', '进入租赁/自营成本'], + color: C_PRIMARY_L, + }, + { + id: 'd6', + title: '安全:事故 → 责任 → 赔付', + scene: '安全台账', + steps: ['事故列表', '过程与责任认定', '保险赔付申请', '赔付金额确认', '归档至安全台账'], + color: C_ROSE, + }, + { + id: 'd7', + title: '自营明细 → 业务总台账·自营业务', + scene: '自营明细', + steps: ['自营明细导入', '金额列汇总业绩', '成本列汇总', '业务总台账按月', '利润=业绩−成本'], + color: C_VIOLET, + }, + ]; + + const sampleTables = { + businessLedger: { + title: '业务总台账列表(七类业务 × 近12月)', + protoNote: 'Axhub 业务台账 · web端/数据分析/业务台账.jsx · 租赁/自营口径见「业务总台账」章节', + columns: [], + data: [], + interactive: true, + }, + businessLedgerDrill: { + title: '钻取 · 业务员业绩(第2层)', + protoNote: '氢费/销售/电/ETC:业务员+业绩金额;自营/租赁:部门宽表含氢电ETC列', + columns: [ + { title: '业务员', dataIndex: 'salesperson', width: 88 }, + { title: '业绩金额', dataIndex: 'amount', width: 96, align: 'right' }, + { title: '说明', key: 'hint', render: () => '点击金额 → 项目' }, + ], + data: BIZ_SALES_BY_CAT.h2, + }, + lease: { + title: '租赁台账 · 客户利润汇总', + protoNote: '导图:收入−成本=利润;氢/电/ETC 从车辆明细归集', + columns: [ + { title: '客户', dataIndex: 'cust', width: 140, ellipsis: true }, + { title: '租金', dataIndex: 'rent', width: 88, align: 'right' }, + { title: '服务费', dataIndex: 'svc', width: 88, align: 'right' }, + { title: '氢费收入', dataIndex: 'h2', width: 88, align: 'right' }, + { title: '电费收入', dataIndex: 'elec', width: 88, align: 'right' }, + { title: 'ETC收入', dataIndex: 'etc', width: 88, align: 'right' }, + { title: '车辆成本', dataIndex: 'vcost', width: 88, align: 'right' }, + { title: '居间费', dataIndex: 'broker', width: 80, align: 'right' }, + { title: '利润', dataIndex: 'profit', width: 88, align: 'right' }, + ], + data: [{ key: '1', cust: '上海迅杰物流', rent: '380,000', svc: '40,000', h2: '128,560', elec: '18,200', etc: '6,800', vcost: '260,000', broker: '50,000', profit: '263,560' }], + }, + leaseRent: { + title: '收入 · 租赁业务(租金/服务费)', + columns: [ + { title: '合同号', dataIndex: 'contract', width: 130, ellipsis: true }, + { title: '客户', dataIndex: 'cust', width: 120, ellipsis: true }, + { title: '账期', dataIndex: 'period', width: 88 }, + { title: '租金(元)', dataIndex: 'rent', width: 96, align: 'right' }, + { title: '服务费(元)', dataIndex: 'svc', width: 96, align: 'right' }, + { title: '状态', dataIndex: 'st', width: 80 }, + ], + data: [{ key: '1', contract: 'LNZLHTSH2023071301', cust: '上海迅杰物流', period: '2026-05', rent: '35,000', svc: '5,000', st: '已确认' }], + }, + leaseCost: { + title: '成本 · 车辆成本 / 居间费', + columns: [ + { title: '成本项', dataIndex: 'item', width: 100 }, + { title: '车牌/客户', dataIndex: 'ref', width: 120, ellipsis: true }, + { title: '金额(元)', dataIndex: 'amt', width: 96, align: 'right' }, + { title: '来源台账', dataIndex: 'src', width: 100 }, + ], + data: [ + { key: '1', item: '车辆成本', ref: '浙F06900F', amt: '12,500', src: '运维台账' }, + { key: '2', item: '居间费', ref: '上海迅杰', amt: '8,000', src: '财务录入' }, + ], + }, + vehicleH2Detail: { + title: '车辆氢费明细(原型已实现)', + protoNote: 'web端/台账数据/车辆氢费明细.jsx · 待保存/未对账/已对账', + columns: [ + { title: '状态', dataIndex: 'st', width: 72 }, + { title: '加氢时间', dataIndex: 'time', width: 140 }, + { title: '加氢站', dataIndex: 'station', width: 120, ellipsis: true }, + { title: '客户', dataIndex: 'cust', width: 120, ellipsis: true }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '加氢量', dataIndex: 'kg', width: 72, align: 'right' }, + { title: '加氢单价', dataIndex: 'up', width: 80, align: 'right' }, + { title: '加氢总价', dataIndex: 'amt', width: 88, align: 'right' }, + { title: '承担方式', dataIndex: 'bear', width: 100 }, + { title: '订单号', dataIndex: 'orderNo', width: 110, ellipsis: true }, + ], + data: [ + { key: '1', st: '未对账', time: '2026-05-28 14:20:08', station: '嘉兴港区站', cust: '上海迅杰物流', plate: '浙F06900F', kg: '12.50', up: '70.00', amt: '875.00', bear: '客户承担', orderNo: 'H2260528001' }, + { key: '2', st: '已对账', time: '2026-05-20 09:15:00', station: '平湖站', cust: '上海迅杰物流', plate: '浙F06900F', kg: '10.20', up: '68.00', amt: '693.60', bear: '客户承担', orderNo: 'H2260520008' }, + ], + }, + leaseCustomerH2Detail: { + title: '租赁客户氢费明细 Tab(原型已实现)', + protoNote: 'web端/数据分析/租赁客户氢费台账.jsx', + columns: [ + { title: '业务员', dataIndex: 'sales', width: 80 }, + { title: '客户', dataIndex: 'cust', width: 140, ellipsis: true }, + { title: '日期', dataIndex: 'date', width: 96 }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '加氢数量', dataIndex: 'kg', width: 80, align: 'right' }, + { title: '加氢地点', dataIndex: 'loc', width: 140, ellipsis: true }, + { title: '金额', dataIndex: 'amt', width: 88, align: 'right' }, + ], + data: [{ key: '1', sales: '张明辉', cust: '上海迅杰物流', date: '2026-05-28', plate: '浙F06900F', kg: '12.50', loc: '嘉兴港区加氢站', amt: '875.00' }], + }, + leaseCustomerH2Sum: { + title: '租赁客户氢费总计 Tab(按客户×月)', + columns: [ + { title: '客户', dataIndex: 'cust', width: 180, ellipsis: true }, + { title: '统计月份', dataIndex: 'month', width: 96 }, + { title: '加氢数量合计', dataIndex: 'kg', width: 110, align: 'right' }, + { title: '金额合计', dataIndex: 'amt', width: 110, align: 'right' }, + ], + data: [{ key: '1', cust: '上海迅杰物流有限公司', month: '2026-05', kg: '1,286.50', amt: '128,560.00' }], + }, + h2PurchaseSummary: { + title: '氢费(采购端)汇总报表(原型已实现)', + protoNote: 'web端/台账数据/氢费采购端汇总报表.jsx · 点击金额钻取', + columns: [ + { title: '地区', dataIndex: 'region', width: 80 }, + { title: '加氢站全称', dataIndex: 'station', width: 160, ellipsis: true }, + { title: '结算方式', dataIndex: 'settle', width: 72 }, + { title: '加氢总量', dataIndex: 'kg', width: 88, align: 'right' }, + { title: '应付总金额', dataIndex: 'payable', width: 100, align: 'right' }, + { title: '已付总金额', dataIndex: 'paid', width: 100, align: 'right' }, + { title: '未付总金额', dataIndex: 'unpaid', width: 100, align: 'right' }, + { title: '当前余额', dataIndex: 'bal', width: 96, align: 'right' }, + ], + data: [{ key: '1', region: '浙江嘉兴', station: '嘉兴港区加氢站', settle: '月结', kg: '8,520', payable: '596,400', paid: '520,000', unpaid: '76,400', bal: '12,600' }], + }, + h2PurchasePay: { + title: '钻取 · 已付总金额(账单+付款证明)', + columns: [ + { title: '加氢站', dataIndex: 'station', width: 140, ellipsis: true }, + { title: '账单开始', dataIndex: 'start', width: 96 }, + { title: '账单结束', dataIndex: 'end', width: 96 }, + { title: '应付(元)', dataIndex: 'payable', width: 88, align: 'right' }, + { title: '已付(元)', dataIndex: 'paid', width: 88, align: 'right' }, + { title: '操作', key: 'op', width: 100, render: () => 付款凭据 }, + ], + data: [{ key: '1', station: '嘉兴港区加氢站', start: '2026-05-01', end: '2026-05-31', payable: '76,400', paid: '76,400' }], + }, + h2Account: { + title: '氢费账户 · 加氢站 / 客户预充值', + columns: [ + { title: '账户类型', dataIndex: 'type', width: 100 }, + { title: '主体', dataIndex: 'name', ellipsis: true }, + { title: '余额(元)', dataIndex: 'bal', width: 100, align: 'right' }, + { title: '最近充值', dataIndex: 'topup', width: 100 }, + { title: '操作', key: 'op', width: 120, render: () => 充值/变更 }, + ], + data: [ + { key: '1', type: '加氢站账户', name: '嘉兴港区加氢站', bal: '12,600.00', topup: '2026-05-20' }, + { key: '2', type: '客户预充值', name: '上海迅杰物流', bal: '80,000.00', topup: '2026-05-15' }, + ], + }, + electric: { + title: '电费明细 · 特来电导入(待建页)', + columns: [ + { title: '充电时间', dataIndex: 'time', width: 140 }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '车辆属性', dataIndex: 'attr', width: 120 }, + { title: '电量(kWh)', dataIndex: 'kwh', width: 88, align: 'right' }, + { title: '金额(元)', dataIndex: 'amt', width: 96, align: 'right' }, + { title: '导入批次', dataIndex: 'batch', width: 96 }, + ], + data: [ + { key: '1', time: '2026-05-27 09:10', plate: '浙F06900F', attr: '租赁业务内部车辆', kwh: '86', amt: '172.00', batch: 'TELD-202605' }, + { key: '2', time: '2026-05-26 18:00', plate: '外协-苏E88888', attr: '外部车辆(非库存)', kwh: '40', amt: '80.00', batch: 'TELD-202605' }, + ], + }, + electricRevenue: { + title: '电费台账 · 营收分拆', + columns: [ + { title: '口径', dataIndex: 'type', width: 140 }, + { title: '电量合计', dataIndex: 'kwh', width: 96, align: 'right' }, + { title: '金额(元)', dataIndex: 'amt', width: 96, align: 'right' }, + ], + data: [ + { key: '1', type: '外部车辆(非库存车辆)', kwh: '1,240', amt: '2,480' }, + { key: '2', type: '租赁业务内部车辆', kwh: '5,680', amt: '11,360' }, + ], + }, + electricCost: { + title: '电费台账 · 成本分拆', + columns: [ + { title: '成本项', dataIndex: 'item', width: 120 }, + { title: '金额(元)', dataIndex: 'amt', width: 96, align: 'right' }, + { title: '备注', dataIndex: 'note', ellipsis: true }, + ], + data: [ + { key: '1', item: '场地租金', amt: '18,000', note: '充电场地' }, + { key: '2', item: '损耗费', amt: '2,400', note: '' }, + { key: '3', item: '手续费', amt: '800', note: '' }, + { key: '4', item: '自营业务内部车辆', amt: '4,200', note: '内部用电成本' }, + ], + }, + etc: { + title: 'ETC 明细 · 供应商抓取(待建)', + columns: [ + { title: '通行时间', dataIndex: 'time', width: 140 }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '路段', dataIndex: 'road', ellipsis: true }, + { title: '金额(元)', dataIndex: 'amt', width: 88, align: 'right' }, + { title: '数据来源', dataIndex: 'src', width: 88 }, + ], + data: [{ key: '1', time: '2026-05-28 08:12', plate: '浙F06900F', road: '沪杭高速·嘉兴段', amt: '68.50', src: '自动扒取' }], + }, + etcAccount: { + title: 'ETC · 客户预充值与扣费流水', + columns: [ + { title: '客户', dataIndex: 'cust', width: 140, ellipsis: true }, + { title: '账户余额', dataIndex: 'bal', width: 96, align: 'right' }, + { title: '流水类型', dataIndex: 'type', width: 80 }, + { title: '金额(元)', dataIndex: 'amt', width: 88, align: 'right' }, + { title: '时间', dataIndex: 'time', width: 140 }, + ], + data: [ + { key: '1', cust: '上海迅杰物流', bal: '5,200', type: '预充值', amt: '+10,000', time: '2026-05-01 10:00' }, + { key: '2', cust: '上海迅杰物流', bal: '5,131.5', type: '扣费', amt: '-68.50', time: '2026-05-28 08:12' }, + ], + }, + opsRepair: { + title: '运维 · 维修明细(原型已实现)', + protoNote: 'web端/台账数据/车辆维修明细.jsx', + columns: [ + { title: '状态', dataIndex: 'st', width: 72 }, + { title: '进修日期', dataIndex: 'date', width: 96 }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '类型', dataIndex: 'type', width: 56 }, + { title: '项目/材料', dataIndex: 'item', width: 140, ellipsis: true }, + { title: '含税合计', dataIndex: 'amt', width: 88, align: 'right' }, + ], + data: [{ key: '1', st: '已提交', date: '2026-05-18', plate: '浙F06900F', type: '维修', item: '更换燃料电池冷却泵', amt: '3,200.00' }], + }, + opsMaintain: { + title: '运维 · 保养明细', + columns: [ + { title: '进修日期', dataIndex: 'date', width: 96 }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '保养项目', dataIndex: 'item', ellipsis: true }, + { title: '金额(元)', dataIndex: 'amt', width: 88, align: 'right' }, + ], + data: [{ key: '1', date: '2026-05-10', plate: '沪BDB9161', item: '首保-机油三滤', amt: '1,280.00' }], + }, + opsAnnual: { + title: '运维 · 年审明细', + columns: [ + { title: '年审单号', dataIndex: 'no', width: 120 }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '办理状态', dataIndex: 'st', width: 88 }, + { title: '费用(元)', dataIndex: 'amt', width: 88, align: 'right' }, + { title: '到期日', dataIndex: 'exp', width: 96 }, + ], + data: [{ key: '1', no: 'NS202605008', plate: '沪BDB9161', st: '已完成', amt: '680.00', exp: '2027-06-04' }], + }, + opsTire: { + title: '运维 · 轮胎磨损明细(待建)', + columns: [ + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '轮位', dataIndex: 'pos', width: 72 }, + { title: '磨损描述', dataIndex: 'desc', ellipsis: true }, + { title: '预估费用', dataIndex: 'amt', width: 88, align: 'right' }, + ], + data: [{ key: '1', plate: '浙F06900F', pos: '右后', desc: '花纹深度不足', amt: '2,400.00' }], + }, + opsOther: { + title: '运维 · 其他', + columns: [ + { title: '摘要', dataIndex: 'desc', ellipsis: true }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '金额(元)', dataIndex: 'amt', width: 88, align: 'right' }, + ], + data: [{ key: '1', desc: '拖车救援', plate: '粤AGP9827', amt: '800.00' }], + }, + safety: { + title: '安全 · 保险赔付', + columns: [ + { title: '事故号', dataIndex: 'acc', width: 120 }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '过程摘要', dataIndex: 'proc', width: 160, ellipsis: true }, + { title: '责任', dataIndex: 'duty', width: 72 }, + { title: '赔付金额', dataIndex: 'pay', width: 96, align: 'right' }, + { title: '状态', dataIndex: 'st', width: 80 }, + ], + data: [{ key: '1', acc: 'SG202604012', plate: '粤AGP9827', proc: '追尾,已报保险', duty: '次责', pay: '45,000.00', st: '理赔中' }], + }, + selfImport: { + title: '自营 · 明细导入', + columns: [ + { title: '导入批次', dataIndex: 'batch', width: 100 }, + { title: '业务日期', dataIndex: 'date', width: 96 }, + { title: '科目', dataIndex: 'subj', width: 100 }, + { title: '金额(元)', dataIndex: 'amt', width: 96, align: 'right' }, + ], + data: [{ key: '1', batch: 'ZY-202605', date: '2026-05-31', subj: '运输收入', amt: '120,000.00' }], + }, + selfDriver: { + title: '自营 · 司机工资/社保', + columns: [ + { title: '司机', dataIndex: 'driver', width: 88 }, + { title: '月份', dataIndex: 'month', width: 80 }, + { title: '工资(元)', dataIndex: 'wage', width: 96, align: 'right' }, + { title: '社保(元)', dataIndex: 'ins', width: 96, align: 'right' }, + ], + data: [{ key: '1', driver: '王某某', month: '2026-05', wage: '12,000', ins: '3,200' }], + }, + self: { + title: '自营 · 车辆成本汇总(氢/电/ETC 从车辆取)', + columns: [ + { title: '自营项目', dataIndex: 'proj', width: 120 }, + { title: '损耗成本', dataIndex: 'loss', width: 88, align: 'right' }, + { title: '运维成本', dataIndex: 'ops', width: 88, align: 'right' }, + { title: '氢费', dataIndex: 'h2', width: 80, align: 'right' }, + { title: '电费', dataIndex: 'elec', width: 80, align: 'right' }, + { title: 'ETC', dataIndex: 'etc', width: 80, align: 'right' }, + ], + data: [{ key: '1', proj: '嘉兴自营一队', loss: '12,000', ops: '8,500', h2: '28,600', elec: '6,200', etc: '7,500' }], + }, + h2: { + title: '氢费明细(简表)', + columns: [ + { title: '加氢时间', dataIndex: 'time', width: 140 }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '客户', dataIndex: 'cust', ellipsis: true }, + { title: '加氢量(kg)', dataIndex: 'kg', width: 88, align: 'right' }, + { title: '加氢总价', dataIndex: 'amt', width: 96, align: 'right' }, + ], + data: [{ key: '1', time: '2026-05-28 14:20', plate: '浙F06900F', cust: '上海迅杰物流', kg: '12.5', amt: '875.00' }], + }, + h2Account: { + title: '氢费账户(简表)', + columns: [ + { title: '账户类型', dataIndex: 'type', width: 100 }, + { title: '主体', dataIndex: 'name', ellipsis: true }, + { title: '余额(元)', dataIndex: 'bal', width: 100, align: 'right' }, + ], + data: [ + { key: '1', type: '加氢站账户', name: '嘉兴港区加氢站', bal: '12,600.00' }, + { key: '2', type: '客户预充值', name: '上海迅杰物流', bal: '80,000.00' }, + ], + }, + ops: { + title: '运维台账 · 分类型一览', + columns: [ + { title: '类型', dataIndex: 'type', width: 88 }, + { title: '单号', dataIndex: 'no', width: 120 }, + { title: '车牌', dataIndex: 'plate', width: 100 }, + { title: '金额(元)', dataIndex: 'amt', width: 96, align: 'right' }, + ], + data: [ + { key: '1', type: '维修', no: 'WX202605001', plate: '浙F06900F', amt: '3,200.00' }, + { key: '2', type: '年审', no: 'NS202605008', plate: '沪BDB9161', amt: '680.00' }, + ], + }, + }; + + const sampleCatalog = Object.keys(sampleTables).map((key) => { + const t = sampleTables[key]; + const wfBranch = Object.keys(ledgerWorkflows).find((bid) => (ledgerWorkflows[bid]?.steps || []).some((s) => s.sampleKey === key)); + const branchLabel = wfBranch === 'bizTotal' + ? '业务总台账' + : (ledgerBranches.find((b) => b.id === wfBranch)?.label || '车辆运营明细'); + return { key, title: t.title.replace(/(.*?)/g, '').slice(0, 28), branch: branchLabel, protoNote: t.protoNote }; + }); + + const summaryPoints = [ + '台账从两个维度统计:业务总台账(七类业务按月业绩/成本/利润)与车辆运营明细台账(单车氢/电/ETC/运维发生额)。', + '租赁业务:业绩=租金+服务费,成本=车辆成本+居间费;自营业务:业绩=自营明细金额列,成本=氢费/ETC/薪资/人工报销/日社保/日轮胎/车辆费用。', + '业务总台账列表已对照 Axhub「业务台账」与 web 端业务台账.jsx,支持业绩钻取;车辆明细样表覆盖氢费、运维等已实现模块。', + '氢/电/ETC 先在车辆运营明细落账,再归集至业务总台账对应业务线,避免与租赁/自营口径重复录入。', + ]; + + const [activeSection, setActiveSection] = useState('hero'); + const [activeDomain, setActiveDomain] = useState('h2'); + const [activeBizType, setActiveBizType] = useState('lease'); + const [activeDrill, setActiveDrill] = useState('d0'); + const [navOpen, setNavOpen] = useState(false); + const [sampleOpen, setSampleOpen] = useState(false); + const [sampleKey, setSampleKey] = useState('lease'); + const [drillStep, setDrillStep] = useState(0); + const [expandedMind, setExpandedMind] = useState(() => ledgerBranches.map((b) => b.id)); + const [workflowBranch, setWorkflowBranch] = useState('bizTotal'); + const [workflowStepIdx, setWorkflowStepIdx] = useState(0); + const [bizView, setBizView] = useState('main'); + const [bizCtx, setBizCtx] = useState({ + month: null, + monthLabel: '', + catKey: '', + catLabel: '', + perf: null, + salesperson: '', + amount: null, + deptDisplay: '浙江羚牛氢运(业务三部)', + year: '2026', + }); + + const workflowSteps = useMemo( + () => ledgerWorkflows[workflowBranch]?.steps || [], + [workflowBranch] + ); + const activeWorkflowStep = workflowSteps[workflowStepIdx] || workflowSteps[0]; + const activeWorkflowSample = activeWorkflowStep + ? (sampleTables[activeWorkflowStep.sampleKey] || sampleTables.vehicleH2Detail) + : sampleTables.lease; + + const selectedDomain = useMemo( + () => ledgerBranches.find((d) => d.id === activeDomain) || ledgerBranches[0], + [activeDomain] + ); + const selectedBizType = useMemo( + () => bizTotalLedgerTypes.find((t) => t.id === activeBizType) || bizTotalLedgerTypes[0], + [activeBizType] + ); + const selectedDrill = useMemo( + () => drillPaths.find((d) => d.id === activeDrill) || drillPaths[0], + [activeDrill] + ); + const currentSample = sampleTables[sampleKey] || sampleTables.lease; + + const openSample = useCallback((key) => { + setSampleKey(key); + setSampleOpen(true); + }, []); + + const selectDomain = useCallback((id) => { + setActiveDomain(id); + setWorkflowBranch(id); + setWorkflowStepIdx(0); + const el = document.getElementById('el-section-domains'); + if (el?.scrollIntoView) el.scrollIntoView({ behavior: 'smooth', block: 'start' }); + }, []); + + const toggleMindBranch = useCallback((id) => { + setExpandedMind((prev) => ( + prev.includes(id) ? prev.filter((x) => x !== id) : [...prev, id] + )); + }, []); + + const scrollToSection = useCallback((key) => { + setActiveSection(key); + setNavOpen(false); + const el = document.getElementById(`el-section-${key}`); + if (el?.scrollIntoView) el.scrollIntoView({ behavior: 'smooth', block: 'start' }); + }, []); + + const goWorkflows = useCallback((branchId, stepIdx) => { + setWorkflowBranch(branchId || 'bizTotal'); + setWorkflowStepIdx(stepIdx == null ? 0 : stepIdx); + scrollToSection('workflows'); + }, [scrollToSection]); + + useEffect(() => { + const ids = sectionNav.map((s) => s.key); + const onScroll = () => { + let found = 'hero'; + ids.forEach((id) => { + const node = document.getElementById(`el-section-${id}`); + if (node) { + const rect = node.getBoundingClientRect(); + if (rect.top <= 120) found = id; + } + }); + setActiveSection(found); + }; + window.addEventListener('scroll', onScroll, { passive: true }); + return () => window.removeEventListener('scroll', onScroll); + }, []); + + useEffect(() => { + setDrillStep(0); + }, [activeDrill]); + + useEffect(() => { + setWorkflowStepIdx(0); + }, [workflowBranch]); + + useEffect(() => { + setBizView('main'); + setBizCtx({ + month: null, + monthLabel: '', + catKey: '', + catLabel: '', + perf: null, + salesperson: '', + amount: null, + deptDisplay: '浙江羚牛氢运(业务三部)', + year: '2026', + }); + }, [workflowStepIdx, workflowBranch]); + + const openBizPerfDrill = useCallback((row, catKey) => { + if (row.rowType === 'total' || row.month === 0) return; + const v = row[`${catKey}Perf`]; + if (!v) return; + const cat = BIZ_LEDGER_CATS.find((c) => c.key === catKey); + setBizCtx((p) => ({ + ...p, + month: row.month, + monthLabel: row.monthLabel, + catKey, + catLabel: cat?.groupTitle || catKey, + perf: v, + salesperson: '', + amount: null, + })); + setBizView('sales'); + }, []); + + const openBizProjectDrill = useCallback((salesperson, amount) => { + setBizCtx((p) => ({ ...p, salesperson, amount })); + setBizView('project'); + }, []); + + const renderBizDrillExplain = () => { + if (bizView === 'main') { + return ( +
+
钻取说明 · 汇总层
+

列表口径:七类业务(租赁、自营、氢费、电费、ETC、销售、其他)各展示近 12 个月业绩、成本、利润;利润 = 业绩 − 成本。

+

如何钻取:点击「业绩」列蓝色金额(合计行、省略行不可点)。租赁/自营进入业务员宽表;其余业务进入业务员列表,再点金额看项目。

+

租赁:业绩=租金+服务费,成本=车辆成本+居间费。自营:业绩=自营明细金额列,成本=氢费/ETC/薪资/人工报销/日社保/日轮胎/车辆费用。

+

原型对照:Axhub · 业务台账

+
+ ); + } + if (bizView === 'sales') { + const isSelfLease = bizCtx.catKey === 'self' || bizCtx.catKey === 'lease'; + return ( +
+
+ 钻取说明 · 第 2 层({bizCtx.monthLabel} / {bizCtx.catLabel} / 业绩 {fmtBizMoney(bizCtx.perf)}) +
+ {isSelfLease ? ( +

如何钻取:展示所选业务部下各业务员的主业绩及氢费/电费/ETC/其他列;点击「{bizCtx.catKey === 'lease' ? '租赁' : '自营'}业绩」蓝色金额进入项目明细。

+ ) : ( +

如何钻取:按业务员拆分该单元格业绩;点击「业绩金额」进入项目明细(项目编号、车牌、业务日期)。

+ )} +

数据来源:{BIZ_LEDGER_SOURCE_MAP[bizCtx.catKey] || '业务单据归集'}

+
+ ); + } + return ( +
+
+ 钻取说明 · 第 3 层(业务员 {bizCtx.salesperson}) +
+

展示内容:该业务员在 {bizCtx.catLabel} 下的项目/合同维度业绩构成(项目编号、名称、车牌、金额、业务日期)。

+

数据来源:合同/项目主数据 + 对应业务线结算单;氢费/电/ETC 类项目可关联车辆明细行。

+
+ ); + }; + + const renderBusinessLedgerDrillDemo = () => { + const perfLink = (v, row, catKey) => { + if (row.rowType === 'total' || !v) return fmtBizMoney(v); + return ( + + ); + }; + + const mainColumns = [ + { + title: '月份', + dataIndex: 'monthLabel', + width: 72, + fixed: 'left', + align: 'center', + render: (t, r) => (r.rowType === 'total' ? {t} : t), + }, + ...BIZ_LEDGER_CATS.map((cat) => ({ + title: cat.groupTitle, + align: 'center', + children: [ + { title: '业绩', dataIndex: `${cat.key}Perf`, width: 92, align: 'right', render: (v, row) => perfLink(v, row, cat.key) }, + { title: '成本', dataIndex: `${cat.key}Cost`, width: 92, align: 'right', render: fmtBizMoney }, + { title: '利润', dataIndex: `${cat.key}Profit`, width: 92, align: 'right', render: fmtBizMoney }, + ], + })), + ]; + + const salesSimpleColumns = [ + { title: '业务员', dataIndex: 'salesperson', width: 100 }, + { + title: '业绩金额', + dataIndex: 'amount', + width: 120, + align: 'right', + render: (v, r) => ( + + ), + }, + { title: '说明', key: 'hint', render: () => 点击金额 → 项目明细 }, + ]; + + const isSelfLease = bizCtx.catKey === 'self' || bizCtx.catKey === 'lease'; + const mainTitle = bizCtx.catKey === 'lease' ? '租赁业绩' : '自营业绩'; + const selfLeaseColumns = [ + { title: '月份', dataIndex: 'ym', width: 88, align: 'center', onCell: (r) => ({ rowSpan: r.monthRowSpan }) }, + { title: '业务部门', dataIndex: 'deptName', width: 108 }, + { title: '业务人员', dataIndex: 'salesperson', width: 88 }, + { + title: mainTitle, + dataIndex: 'mainPerf', + width: 112, + align: 'right', + render: (v, r) => ( + v ? ( + + ) : fmtBizMoney(v) + ), + }, + { title: '氢费业绩', dataIndex: 'h2PerfCol', width: 100, align: 'right', render: fmtBizMoney }, + { title: '电费业绩', dataIndex: 'elecPerf', width: 100, align: 'right', render: fmtBizMoney }, + { title: 'ETC业绩', dataIndex: 'etcPerfCol', width: 96, align: 'right', render: fmtBizMoney }, + { title: '其他', dataIndex: 'otherAmt', width: 88, align: 'right', render: fmtBizMoney }, + ]; + + const projectColumns = [ + { title: '项目编号', dataIndex: 'projectCode', width: 120 }, + { title: '项目名称', dataIndex: 'projectName', ellipsis: true }, + { title: '车牌号', dataIndex: 'plateNo', width: 100 }, + { title: '业绩金额', dataIndex: 'amount', width: 108, align: 'right', render: fmtBizMoney }, + { title: '业务日期', dataIndex: 'bizDate', width: 100 }, + { title: '备注', dataIndex: 'remark', width: 72 }, + ]; + + const salesRows = BIZ_SALES_BY_CAT[bizCtx.catKey] || BIZ_SALES_BY_CAT.h2; + + return ( +
+
+
+ + {bizView !== 'main' ? ( + <> + + + + ) : null} + {bizView === 'project' ? ( + <> + + {bizCtx.salesperson} · 项目 + + ) : null} +
+ {bizView !== 'main' ? ( + + ) : null} +
+
+ {bizView === 'main' ? `${bizCtx.year}年 业务部汇总台账` : null} + {bizView === 'sales' && isSelfLease ? `浙江羚牛氢能业务员${bizCtx.catKey === 'lease' ? '租赁' : '自营'}业务汇总(${bizCtx.year}-${String(bizCtx.month).padStart(2, '0')})` : null} + {bizView === 'sales' && !isSelfLease ? `业务员业绩 — ${bizCtx.monthLabel} / ${bizCtx.catLabel}` : null} + {bizView === 'project' ? `项目明细 — ${bizCtx.salesperson} / ${bizCtx.catLabel}` : null} +
+
业务部:{bizCtx.deptDisplay} · 年份 {bizCtx.year} · 按月近 12 个月(演示含省略行)
+ + {renderBizDrillExplain()} + + ); + }; + + const css = ` +*,*::before,*::after{box-sizing:border-box} +.el-plan{font-family:${FONT};color:${C_TEXT};background:${C_PAGE};min-height:100vh;line-height:1.5;-webkit-font-smoothing:antialiased} +.el-nav{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.94);backdrop-filter:saturate(180%) blur(12px);border-bottom:1px solid ${C_LINE}} +.el-nav-inner{max-width:1240px;margin:0 auto;padding:0 20px;height:56px;display:flex;align-items:center;gap:12px} +.el-brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:14px;flex-shrink:0} +.el-brand-mark{width:34px;height:34px;border-radius:10px;background:linear-gradient(135deg,${C_PRIMARY},${C_PRIMARY_L});color:#fff;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:800} +.el-nav-links{display:flex;gap:4px;flex:1;overflow-x:auto;scrollbar-width:none} +.el-nav-link{padding:7px 12px;border-radius:999px;font-size:12px;font-weight:500;color:${C_MUTED};cursor:pointer;border:none;background:transparent;white-space:nowrap} +.el-nav-link:hover{color:${C_TEXT};background:rgba(15,118,110,.08)} +.el-nav-link.is-active{color:${C_PRIMARY};background:rgba(15,118,110,.12);font-weight:700} +.el-nav-toggle{display:none;margin-left:auto;padding:8px 12px;border-radius:8px;border:1px solid ${C_LINE};background:#fff;cursor:pointer;font-size:12px} +.el-hero{position:relative;background:${C_HERO};color:#fff;padding:56px 20px 64px;overflow:hidden} +.el-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse 70% 50% at 80% 10%,rgba(20,184,166,.22),transparent 55%);pointer-events:none} +.el-hero-inner{position:relative;max-width:1240px;margin:0 auto} +.el-hero-tag{display:inline-block;padding:4px 10px;border-radius:999px;font-size:11px;font-weight:700;background:rgba(20,184,166,.15);border:1px solid rgba(45,212,191,.35);color:#5eead4;margin-bottom:14px} +.el-hero-title{font-size:clamp(26px,4.5vw,40px);font-weight:800;line-height:1.2;margin:0 0 12px;max-width:820px} +.el-hero-desc{font-size:clamp(14px,2.2vw,16px);color:rgba(255,255,255,.75);max-width:760px;margin:0 0 20px;line-height:1.65} +.el-hero-actions{display:flex;flex-wrap:wrap;gap:10px} +.el-btn{padding:10px 18px;border-radius:10px;font-size:13px;font-weight:700;cursor:pointer;border:none} +.el-btn-primary{background:linear-gradient(135deg,${C_PRIMARY_L},${C_PRIMARY});color:#fff;box-shadow:0 4px 20px rgba(20,184,166,.35)} +.el-btn-ghost{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.2)} +.el-kpi-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:-32px;position:relative;z-index:2;padding:0 20px;max-width:1240px;margin-left:auto;margin-right:auto} +.el-kpi{background:${C_CARD};border-radius:14px;padding:18px 16px;border:1px solid ${C_LINE};box-shadow:0 8px 30px rgba(15,23,42,.06)} +.el-kpi-val{font-size:26px;font-weight:800} +.el-kpi-unit{font-size:13px;font-weight:600;opacity:.7;margin-left:2px} +.el-kpi-label{font-size:12px;color:${C_MUTED};margin-top:6px} +.el-main{max-width:1240px;margin:0 auto;padding:40px 20px 72px} +.el-section{margin-bottom:52px;scroll-margin-top:72px} +.el-section-head{margin-bottom:22px} +.el-section-tag{font-size:11px;font-weight:800;letter-spacing:.08em;color:${C_PRIMARY};margin-bottom:6px} +.el-section-title{font-size:clamp(20px,3vw,26px);font-weight:800;margin:0 0 8px} +.el-section-desc{font-size:14px;color:${C_MUTED};margin:0;max-width:720px;line-height:1.6} +.el-root-hub{text-align:center;margin-bottom:24px} +.el-root-pill{display:inline-flex;padding:14px 28px;border-radius:16px;background:linear-gradient(135deg,${C_HERO},${C_HERO_ACCENT});color:#fff;font-size:18px;font-weight:800;box-shadow:0 12px 40px rgba(15,23,42,.2)} +.el-mind-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:14px} +.el-mind-card{background:#fff;border:1px solid ${C_LINE};border-radius:14px;overflow:hidden;transition:box-shadow .2s} +.el-mind-card.is-active{box-shadow:0 12px 32px rgba(15,23,42,.1)} +.el-mind-card-head{width:100%;text-align:left;padding:14px 16px;border:none;background:#fff;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:8px} +.el-mind-card-head h4{margin:0;font-size:15px;font-weight:800} +.el-mind-card-body{padding:0 16px 14px;border-top:1px dashed ${C_LINE}} +.el-mind-block{margin-top:12px} +.el-mind-block-title{font-size:11px;font-weight:800;color:${C_MUTED};text-transform:uppercase;letter-spacing:.05em;margin-bottom:8px} +.el-mind-node{display:flex;flex-wrap:wrap;align-items:baseline;gap:6px;padding:8px 10px;border-radius:8px;background:#f8fafc;margin-bottom:6px;font-size:13px} +.el-mind-node-label{font-weight:600} +.el-mind-node-note{font-size:12px;color:${C_MUTED}} +.el-mind-link{font-size:11px;font-weight:700;color:${C_PRIMARY};cursor:pointer;border:none;background:transparent;padding:0} +.el-principle-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px} +.el-principle-card{background:#fff;border:1px solid ${C_LINE};border-radius:14px;padding:18px} +.el-principle-icon{width:40px;height:40px;border-radius:12px;background:rgba(15,118,110,.1);color:${C_PRIMARY};display:flex;align-items:center;justify-content:center;font-weight:800;margin-bottom:12px} +.el-principle-card h4{margin:0 0 8px;font-size:15px;font-weight:800} +.el-principle-card p{margin:0;font-size:13px;color:${C_MUTED};line-height:1.55} +.el-domain-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);gap:18px} +.el-domain-tabs{display:flex;flex-direction:column;gap:8px} +.el-domain-tab{width:100%;text-align:left;padding:12px 14px;border-radius:12px;border:1px solid ${C_LINE};background:#fff;cursor:pointer} +.el-domain-tab.is-active{box-shadow:0 8px 22px rgba(15,23,42,.1);transform:translateX(4px)} +.el-domain-tab-name{font-size:14px;font-weight:700} +.el-domain-tab-formula{font-size:11px;color:${C_MUTED};margin-top:4px} +.el-domain-detail{background:#fff;border:1px solid ${C_LINE};border-radius:16px;padding:22px;position:sticky;top:76px} +.el-domain-meta{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:16px 0} +.el-domain-meta dt{font-size:11px;font-weight:700;color:${C_MUTED};margin-bottom:4px} +.el-domain-meta dd{margin:0;font-size:13px;line-height:1.5} +.el-link-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px} +.el-link-card{background:#fff;border:1px solid ${C_LINE};border-radius:12px;padding:14px 16px;border-left:4px solid ${C_PRIMARY}} +.el-link-arrow{font-size:12px;color:${C_MUTED};margin:6px 0} +.el-link-rule{font-size:13px;font-weight:600;color:${C_TEXT}} +.el-drill-layout{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);gap:18px} +.el-drill-item{padding:14px 16px;border-radius:12px;border:1px solid ${C_LINE};background:#fff;cursor:pointer;margin-bottom:8px} +.el-drill-item.is-active{box-shadow:0 8px 24px rgba(15,23,42,.08)} +.el-drill-panel{background:#fff;border:1px solid ${C_LINE};border-radius:16px;padding:22px} +.el-drill-step{padding:8px 14px;border-radius:999px;font-size:12px;font-weight:600;border:1px solid ${C_LINE};background:#f8fafc;color:${C_MUTED};cursor:pointer;margin:0 6px 8px 0;display:inline-block} +.el-drill-step.is-active{color:#fff;border-color:transparent} +.el-sample-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px} +.el-sample-card{background:#fff;border:1px solid ${C_LINE};border-radius:14px;padding:16px;cursor:pointer} +.el-sample-card:hover{border-color:rgba(15,118,110,.35);box-shadow:0 8px 22px rgba(15,23,42,.06)} +.el-workflow-layout{display:grid;grid-template-columns:minmax(0,280px) minmax(0,1fr);gap:18px;align-items:start} +.el-workflow-steps{display:flex;flex-direction:column;gap:8px;max-height:520px;overflow-y:auto;padding-right:4px} +.el-workflow-step{width:100%;text-align:left;padding:12px 14px;border-radius:12px;border:1px solid ${C_LINE};background:#fff;cursor:pointer} +.el-workflow-step.is-active{box-shadow:0 8px 22px rgba(15,23,42,.1)} +.el-workflow-step-name{font-size:13px;font-weight:700;margin-bottom:4px} +.el-workflow-step-flow{font-size:11px;color:${C_MUTED};line-height:1.45} +.el-workflow-step-path{font-size:10px;color:${C_PRIMARY};margin-top:6px;word-break:break-all} +.el-workflow-preview{background:#fff;border:1px solid ${C_LINE};border-radius:16px;padding:18px;overflow:hidden} +.el-workflow-preview-head{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:10px;margin-bottom:12px} +.el-workflow-preview-title{margin:0;font-size:16px;font-weight:800} +.el-proto-banner{padding:10px 14px;border-radius:10px;background:#eff6ff;border:1px solid #bfdbfe;font-size:12px;color:#1e40af;margin-bottom:12px;line-height:1.5} +.el-dim-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px} +.el-dim-card{background:${C_CARD};border-radius:14px;padding:20px;border:1px solid ${C_LINE};box-shadow:0 1px 3px rgba(15,23,42,.06)} +.el-dim-list{margin:0;padding-left:18px;font-size:13px;line-height:1.7;color:${C_TEXT}} +.el-biz-type-layout{display:grid;grid-template-columns:minmax(140px,200px) 1fr;gap:16px} +@media(max-width:768px){.el-biz-type-layout{grid-template-columns:1fr}} +.el-biz-type-tabs{display:flex;flex-direction:column;gap:6px} +.el-biz-type-tab{text-align:left;padding:10px 12px;border-radius:10px;border:1px solid ${C_LINE};background:#fff;cursor:pointer;font-size:13px;font-weight:600;color:${C_MUTED}} +.el-biz-type-tab.is-active{background:rgba(15,118,110,.08);color:${C_TEXT};font-weight:800} +.el-biz-type-detail{background:${C_CARD};border-radius:14px;padding:20px;border:1px solid ${C_LINE}} +.el-biz-drill-shell{border:1px solid ${C_LINE};border-radius:12px;overflow:hidden;background:#fff} +.el-biz-drill-toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 14px;background:#f8fafc;border-bottom:1px solid ${C_LINE};flex-wrap:wrap} +.el-biz-drill-breadcrumb{display:flex;align-items:center;flex-wrap:wrap;gap:4px;font-size:13px} +.el-biz-crumb{border:none;background:transparent;color:${C_MUTED};cursor:pointer;padding:4px 8px;border-radius:6px;font-size:13px;font-weight:600} +.el-biz-crumb:hover{color:${C_BLUE};background:rgba(37,99,235,.08)} +.el-biz-crumb.is-active{color:${C_BLUE};background:rgba(37,99,235,.12)} +.el-biz-crumb-sep{color:#cbd5e1;font-size:12px} +.el-biz-table-title{text-align:center;font-size:16px;font-weight:800;padding:14px 12px 4px;color:${C_TEXT}} +.el-biz-filter-hint{text-align:center;font-size:12px;color:${C_MUTED};margin-bottom:10px} +.el-biz-ledger-table .ant-table-thead>tr>th{background:#f8fafc!important;font-size:12px} +.el-biz-perf-link{border:none;background:transparent;padding:0;color:${C_BLUE};font-weight:700;cursor:pointer;text-decoration:underline;text-underline-offset:2px;font-variant-numeric:tabular-nums} +.el-biz-perf-link:hover{color:#1d4ed8} +.el-biz-drill-explain{margin:0;padding:14px 16px;background:linear-gradient(180deg,#f0fdf4 0%,#f8fafc 100%);border-top:1px solid ${C_LINE};font-size:13px;line-height:1.65;color:#334155} +.el-biz-drill-explain-title{font-size:12px;font-weight:800;color:${C_PRIMARY};letter-spacing:.04em;margin-bottom:8px;text-transform:uppercase} +.el-biz-drill-explain p{margin:0 0 8px} +.el-biz-drill-explain p:last-child{margin-bottom:0} +.el-biz-drill-explain a{color:${C_PRIMARY};font-weight:600} +.el-summary{background:linear-gradient(135deg,${C_HERO},${C_HERO_ACCENT});border-radius:18px;padding:28px;color:#fff} +.el-summary ul{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:12px} +.el-summary li{font-size:14px;line-height:1.6;color:rgba(255,255,255,.9);display:flex;gap:10px} +.el-summary li::before{content:"✓";color:#5eead4;font-weight:800} +.el-footer{text-align:center;padding:24px;font-size:12px;color:${C_MUTED}} +@media(max-width:1024px){ +.el-principle-grid,.el-kpi-row,.el-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))} +.el-domain-layout,.el-drill-layout,.el-workflow-layout{grid-template-columns:1fr} +.el-domain-detail{position:static} +.el-workflow-steps{max-height:none} +} +@media(max-width:640px){ +.el-nav-toggle{display:block} +.el-nav-links{display:none;position:absolute;top:56px;left:0;right:0;background:#fff;flex-direction:column;padding:12px 16px;border-bottom:1px solid ${C_LINE}} +.el-nav-links.is-open{display:flex} +.el-principle-grid,.el-kpi-row,.el-sample-grid,.el-mind-grid,.el-link-grid{grid-template-columns:1fr} +.el-domain-meta{grid-template-columns:1fr} +} +`; + + return ( +
+ + +
+
+
+ 总账 + 企业台账 · 双维汇报 +
+ + +
+
+ +
+
+ 业务总台账 + 车辆运营明细 · 双维统计 +

ONE-OS 企业业务总台账

+

+ 台账从两个维度统计:业务总台账 + 展示七类业务按月业绩/成本/利润; + 车辆运营明细台账 + 记录单车氢/电/ETC/运维发生额并向上归集。已对照 + {' '} + + Axhub 业务台账 + + {' '} + 与 web 端已实现模块,支持业绩钻取演示。 +

+
+ + + + +
+
+
+ +
+ {kpiStats.map((k) => ( +
+
+ {k.value} + {k.unit} +
+
{k.label}
+
+ ))} +
+ +
+
+
+
TWO DIMENSIONS
+

台账统计的两个维度

+

老板看「业务总台账」掌握各业务线经营结果;财务/运营看「车辆运营明细」掌握单车发生额,二者通过归集规则勾稽。

+
+
+ {ledgerDimensions.map((dim) => ( +
+

{dim.label}

+ {dim.role} +

{dim.summary}

+
    + {dim.listItems.map((item) => ( +
  • {item}
  • + ))} +
+ {dim.id === 'bizTotal' ? ( + + ) : ( + + )} +
+ ))} +
+
+ +
+
+
BUSINESS LEDGER
+

业务总台账 · 七类业务口径

+

列表按月份展示近 12 个月业绩、成本、利润。下列为各类业务的取数规则(租赁、自营已按最新口径固化)。

+
+
+
+ {bizTotalLedgerTypes.map((t) => ( + + ))} +
+
+

{selectedBizType.label}

+

{selectedBizType.period}

+
+
业绩来源
{selectedBizType.perf}
+
成本来源
{selectedBizType.cost}
+
利润计算
{selectedBizType.profit}
+
钻取
{selectedBizType.drill}
+
数据回写
{selectedBizType.writeBack}
+
+ + + {selectedBizType.id === 'lease' ? ( + + ) : null} + {selectedBizType.id === 'self' ? ( + + ) : null} + {['h2', 'apply', 'etc'].includes(selectedBizType.id) ? ( + + ) : null} + +
+
+
+ +
+
+
VEHICLE OPS
+

车辆运营明细台账

+

氢费、电费、ETC、运维等按车牌/客户记录发生明细,归集后写入业务总台账对应业务线,避免重复录入。

+
+
+
车辆运营明细台账
+
+
+ {ledgerBranches.map((branch) => { + const open = expandedMind.includes(branch.id); + return ( +
+ + {open ? ( +
+ {branch.blocks.map((block) => ( +
+
{block.title}
+ {block.nodes.map((node) => ( +
+ {node.label} + {node.note ? {node.note} : null} + {node.linkId ? ( + + ) : null} +
+ ))} +
+ ))} + +
+ ) : null} +
+ ); + })} +
+
+ +
+
+
PRINCIPLES
+

搭建原则(提炼自导图)

+
+
+ {principles.map((p) => ( +
+
{p.icon}
+

{p.title}

+

{p.desc}

+
+ ))} +
+
+ +
+
+
LEDGERS
+

车辆明细域:显示内容与回写

+
+
+
+ {ledgerBranches.map((d) => ( + + ))} +
+
+
+

{selectedDomain.label}

+ {selectedDomain.tag} +
+

{selectedDomain.formula}

+
+
建档锚点
{selectedDomain.anchor}
+
列表展示
{selectedDomain.listShows}
+
详情结构
{selectedDomain.detailShows}
+
数据回写
{selectedDomain.writeBack}
+
+
本域业务环节(对照原型)
+
+ {(ledgerWorkflows[selectedDomain.id]?.steps || []).map((step, idx) => ( +
+
+ {step.name} + {renderProtoStatus(step.status)} +
+
{step.flow}
+
{step.protoPath}
+
+ ))} +
+ + + + +
+
+
+ +
+
+
WORKFLOW SAMPLES
+

各环节台账样表(内嵌预览)

+

+ 先选统计维度:业务总台账(七类业务汇总)或车辆运营明细(单车发生额)。绿色 Tag 为已实现模块。 +

+
+
+ + {ledgerBranches.map((b) => ( + + ))} +
+
+
+ {workflowSteps.map((step, idx) => ( + + ))} +
+
+
+

{activeWorkflowSample.title}

+ + + +
+ {activeWorkflowSample.protoNote ? ( +
+ {activeWorkflowSample.protoNote} + {activeWorkflowStep?.sampleKey === 'businessLedger' ? ( + + {' '} + · + {' '} + 打开 Axhub 业务台账原型 + + ) : null} +
+ ) : activeWorkflowStep?.protoPath ? ( +
原型路径:{activeWorkflowStep.protoPath}
+ ) : null} + {activeWorkflowStep?.sampleKey === 'businessLedger' ? ( + renderBusinessLedgerDrillDemo() + ) : ( +
+ )} + + + + + + +
+
+
DRILL-DOWN
+

钻取路径(业务总账 / 车辆明细)

+

点击步骤序号高亮当前层级,演示「点哪里、看到什么」。

+
+
+
+ {drillPaths.map((path) => ( +
setActiveDrill(path.id)} + onKeyDown={(e) => { if (e.key === 'Enter') setActiveDrill(path.id); }} + > +

{path.title}

+

{path.scene}

+
+ ))} +
+
+

{selectedDrill.title}

+
+ {selectedDrill.steps.map((step, idx) => ( + setDrillStep(idx)} + onKeyDown={(e) => { if (e.key === 'Enter') setDrillStep(idx); }} + > + {idx + 1}. {step} + + ))} +
+

+ 当前层级:{selectedDrill.steps[drillStep]} +

+
+
+
+ +
+
+
SAMPLES
+

样表索引(24+)

+

快速跳转任意样表;与「环节样表」区数据一致。

+
+
+ {sampleCatalog.map((item) => ( +
openSample(item.key)} + onKeyDown={(e) => { if (e.key === 'Enter') openSample(item.key); }} + > + {item.branch} +

{item.title}

+ {item.protoNote ?

{item.protoNote}

: null} +

点击查看 →

+
+ ))} +
+
+ +
+
+

向老板汇报的要点

+
    + {summaryPoints.map((pt) => ( +
  • {pt}
  • + ))} +
+
+
+ + +
+ 双维统计:业务总台账(七类业务)+ 车辆运营明细台账 · 对照 Axhub 与 web 端已实现模块 +
+ + setSampleOpen(false)} + footer={} + width={Math.min(1100, typeof window !== 'undefined' ? window.innerWidth - 32 : 1100)} + centered + destroyOnClose + > + {currentSample.protoNote ? ( +

+ {currentSample.protoNote} + {sampleKey === 'businessLedger' ? ( + + {' '} + · + {' '} + Axhub 业务台账 + + ) : null} +

+ ) : null} + {sampleKey === 'businessLedger' ? ( + renderBusinessLedgerDrillDemo() + ) : ( + <> +

+ 列表层样表;汇总数字需可点击钻取至下行明细(车辆/客户/账户)。字段与 Axhub 原型保持一致处已标注路径。 +

+
+ + )} + + + ); +}; + +export default Component; diff --git a/ONEOS-web/加氢站大屏.jsx b/ONEOS-web/加氢站大屏.jsx new file mode 100644 index 0000000..f734f18 --- /dev/null +++ b/ONEOS-web/加氢站大屏.jsx @@ -0,0 +1,668 @@ +// 【重要】必须使用 const Component 作为组件变量名 +// ONEOS-web - 加氢站数字孪生监控大屏(1920×1080 设计稿级布局,高对比科技风) + +const Component = function () { + var useState = React.useState; + var useEffect = React.useEffect; + + var _now = useState(function () { return new Date(); }); + var now = _now[0]; + var setNow = _now[1]; + + useEffect(function () { + var t = setInterval(function () { setNow(new Date()); }, 1000); + return function () { clearInterval(t); }; + }, []); + + var pad = function (n) { return n < 10 ? '0' + n : '' + n; }; + var timeStr = now.getFullYear() + '-' + pad(now.getMonth() + 1) + '-' + pad(now.getDate()) + ' ' + pad(now.getHours()) + ':' + pad(now.getMinutes()) + ':' + pad(now.getSeconds()); + + var h2PanelTitle = { + margin: 0, + fontSize: 15, + fontWeight: 600, + letterSpacing: '0.06em', + color: '#e8f4ff', + textShadow: '0 0 12px rgba(0, 242, 255, 0.35)', + display: 'flex', + alignItems: 'center', + gap: 8 + }; + + var panelShell = { + background: 'linear-gradient(145deg, rgba(6, 28, 58, 0.88) 0%, rgba(4, 15, 35, 0.92) 100%)', + border: '1px solid rgba(0, 242, 255, 0.22)', + borderRadius: 4, + boxShadow: 'inset 0 0 0 1px rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.45)', + backdropFilter: 'blur(8px)', + overflow: 'hidden', + position: 'relative' + }; + + var panelHead = { + height: 40, + padding: '0 14px', + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + background: 'linear-gradient(90deg, rgba(0, 242, 255, 0.12) 0%, transparent 55%)', + borderBottom: '1px solid rgba(0, 242, 255, 0.15)' + }; + + var kpiCard = function (label, value, unit, sub) { + return React.createElement('div', { + key: label, + style: { + flex: 1, + minWidth: 0, + padding: '12px 16px', + background: 'linear-gradient(180deg, rgba(10, 40, 72, 0.75) 0%, rgba(4, 18, 40, 0.85) 100%)', + border: '1px solid rgba(0, 242, 255, 0.2)', + borderRadius: 4, + position: 'relative', + overflow: 'hidden' + } + }, + React.createElement('div', { style: { position: 'absolute', inset: 0, background: 'radial-gradient(ellipse 80% 50% at 0% 0%, rgba(0,242,255,0.12), transparent 55%)', pointerEvents: 'none' } }), + React.createElement('div', { style: { fontSize: 12, color: '#7a9bb8', marginBottom: 6, letterSpacing: '0.04em' } }, label), + React.createElement('div', { style: { display: 'flex', alignItems: 'baseline', gap: 6 } }, + React.createElement('span', { style: { fontSize: 26, fontWeight: 700, color: '#00f2ff', fontFamily: '"DIN Alternate", "Roboto Mono", monospace', textShadow: '0 0 20px rgba(0,242,255,0.45)' } }, value), + React.createElement('span', { style: { fontSize: 12, color: '#5a8aad' } }, unit) + ), + sub && React.createElement('div', { style: { marginTop: 6, fontSize: 11, color: '#4a7a9c' } }, sub) + ); + }; + + var navItem = function (label, active) { + return React.createElement('div', { + key: label, + style: { + padding: '6px 14px', + fontSize: 12, + color: active ? '#00f2ff' : '#6a8faf', + border: active ? '1px solid rgba(0,242,255,0.5)' : '1px solid transparent', + borderRadius: 2, + background: active ? 'rgba(0,242,255,0.08)' : 'transparent', + cursor: 'pointer', + letterSpacing: '0.05em', + whiteSpace: 'nowrap' + } + }, label); + }; + + var subNavBtn = function (label, icon) { + return React.createElement('div', { + key: label, + style: { + width: 72, + height: 64, + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + justifyContent: 'center', + gap: 6, + background: 'linear-gradient(180deg, rgba(0,40,80,0.5) 0%, rgba(4,20,45,0.8) 100%)', + border: '1px solid rgba(0, 242, 255, 0.18)', + borderRadius: 4, + fontSize: 11, + color: '#9ec8e8', + cursor: 'pointer' + } + }, + React.createElement('div', { style: { width: 28, height: 28, borderRadius: 4, border: '1px solid rgba(0,242,255,0.35)', background: 'rgba(0,242,255,0.06)', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: 14, color: '#00f2ff' } }, icon), + label + ); + }; + + var alarmRows = [ + { t: '10:28:06', lv: '紧急', name: '压缩机出口压力超限', loc: '压缩单元-A' }, + { t: '10:15:42', lv: '一般', name: '储罐液位波动提醒', loc: '储氢区-3#' }, + { t: '09:52:11', lv: '重要', name: '加氢枪通讯短时中断', loc: '加氢岛-2' } + ]; + + return React.createElement('div', { + className: 'h2-station-screen-root', + style: { + width: 1920, + height: 1080, + margin: '0 auto', + position: 'relative', + background: '#040b1a', + color: '#e8f4ff', + fontFamily: '"Inter", "PingFang SC", "Microsoft YaHei", sans-serif', + overflow: 'hidden', + boxSizing: 'border-box', + textRendering: 'geometricPrecision', + WebkitFontSmoothing: 'antialiased' + } + }, + React.createElement('style', null, ` + .h2-station-screen-root * { box-sizing: border-box; } + @keyframes h2-pulse-border { + 0%, 100% { box-shadow: 0 0 0 1px rgba(0,242,255,0.15), 0 0 24px rgba(0,242,255,0.08); } + 50% { box-shadow: 0 0 0 1px rgba(0,242,255,0.35), 0 0 36px rgba(0,242,255,0.15); } + } + .h2-station-screen-root .h2-center-stage { + animation: h2-pulse-border 4s ease-in-out infinite; + } + @keyframes h2-scan { + 0% { transform: translateY(-100%); opacity: 0; } + 10% { opacity: 0.06; } + 90% { opacity: 0.06; } + 100% { transform: translateY(100%); opacity: 0; } + } + .h2-station-screen-root .h2-scanline::after { + content: ''; + position: absolute; + left: 0; right: 0; top: 0; + height: 120px; + background: linear-gradient(180deg, transparent, rgba(0,242,255,0.04), transparent); + animation: h2-scan 8s linear infinite; + pointer-events: none; + } + `), + + /* 背景网格与光晕 */ + React.createElement('div', { + style: { + position: 'absolute', + inset: 0, + backgroundImage: ` + linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px), + linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px) + `, + backgroundSize: '48px 48px', + pointerEvents: 'none' + } + }), + React.createElement('div', { + style: { + position: 'absolute', + width: 900, + height: 900, + left: '50%', + top: '42%', + transform: 'translate(-50%, -50%)', + background: 'radial-gradient(circle, rgba(22, 93, 255, 0.12) 0%, transparent 65%)', + pointerEvents: 'none' + } + }), + + /* 顶栏 */ + React.createElement('header', { + style: { + position: 'absolute', + left: 24, + right: 24, + top: 16, + height: 56, + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + zIndex: 20 + } + }, + React.createElement('div', { style: { fontSize: 13, color: '#7a9bb8', letterSpacing: '0.02em' } }, + timeStr, React.createElement('span', { style: { margin: '0 12px', color: 'rgba(0,242,255,0.35)' } }, '|'), + '24°C 晴', React.createElement('span', { style: { margin: '0 12px', color: 'rgba(0,242,255,0.35)' } }, '|'), + '空气质量:优' + ), + React.createElement('div', { + style: { + fontSize: 28, + fontWeight: 700, + letterSpacing: '0.12em', + color: '#f0f8ff', + textShadow: '0 0 24px rgba(0, 242, 255, 0.55), 0 0 60px rgba(22, 93, 255, 0.35)' + } + }, '加氢站数字孪生监控平台'), + React.createElement('div', { style: { display: 'flex', gap: 8 } }, + ['首页', '三维监控', '设备管理', '告警管理', '运营报表', '系统设置'].map(function (x, i) { + return React.createElement('div', { + key: x, + style: { + padding: '6px 10px', + fontSize: 12, + color: i === 1 ? '#00f2ff' : '#6a8faf', + borderBottom: i === 1 ? '2px solid #00f2ff' : '2px solid transparent' + } + }, x); + }) + ) + ), + + /* KPI 行 */ + React.createElement('div', { + style: { + position: 'absolute', + left: 24, + right: 24, + top: 84, + display: 'flex', + gap: 12, + zIndex: 15 + } + }, + kpiCard('氢气最高压力', '35.0', 'MPa', '设计上限 45 MPa'), + kpiCard('氢气平均温度', '22.5', '°C', '管束区均值'), + kpiCard('储罐液位', '85', '%', '5 座储罐加权'), + kpiCard('瞬时流量', '120', 'Nm³/h', '加氢岛合计'), + kpiCard('H₂ 浓度', '0', 'ppm', '站区环测'), + kpiCard('安全等级', '一级', '', '连续安全运行 337 天') + ), + + /* 左列 */ + React.createElement('aside', { + style: { + position: 'absolute', + left: 24, + top: 168, + width: 400, + bottom: 200, + display: 'flex', + flexDirection: 'column', + gap: 10, + zIndex: 12 + } + }, + React.createElement('div', { style: Object.assign({}, panelShell, { flex: '0 0 auto' }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '站点概况') + ), + React.createElement('div', { style: { padding: '14px 16px', fontSize: 12, lineHeight: 2, color: '#9ec8e8' } }, + React.createElement('div', null, '投运日期:', React.createElement('span', { style: { color: '#00f2ff' } }, '2023-06-18')), + React.createElement('div', null, '接入设备:', React.createElement('span', { style: { color: '#00f2ff' } }, '28'), ' 台'), + React.createElement('div', null, '累计加氢量:', React.createElement('span', { style: { color: '#00f2ff' } }, '385,621'), ' kg'), + React.createElement('div', null, '安全运行:', React.createElement('span', { style: { color: '#00f2ff' } }, '337'), ' 天') + ) + ), + React.createElement('div', { style: Object.assign({}, panelShell, { flex: '1 1 0', minHeight: 0 }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '加氢量统计'), + React.createElement('div', { style: { display: 'flex', gap: 4 } }, navItem('日', true), navItem('月', false), navItem('年', false)) + ), + React.createElement('div', { style: { padding: '8px 12px 4px', fontSize: 11, color: '#5a8aad' } }, '较昨日 ', React.createElement('span', { style: { color: '#52c41a' } }, '+12.5%')), + React.createElement('div', { style: { padding: '0 8px 8px', height: 140 } }, + React.createElement('svg', { width: '100%', height: '100%', viewBox: '0 0 360 120', preserveAspectRatio: 'none' }, + React.createElement('defs', null, + React.createElement('linearGradient', { id: 'h2lg1', x1: '0', y1: '0', x2: '0', y2: '1' }, + React.createElement('stop', { offset: '0%', stopColor: 'rgba(0,242,255,0.45)' }), + React.createElement('stop', { offset: '100%', stopColor: 'rgba(0,242,255,0)' }) + ) + ), + React.createElement('polyline', { fill: 'none', stroke: 'rgba(0,242,255,0.35)', strokeWidth: '1', points: '0,100 360,100' }), + React.createElement('polygon', { fill: 'url(#h2lg1)', points: '0,100 0,70 40,55 80,62 120,40 160,48 200,35 240,50 280,38 320,45 360,30 360,100' }), + React.createElement('polyline', { fill: 'none', stroke: '#00f2ff', strokeWidth: '2', points: '0,70 40,55 80,62 120,40 160,48 200,35 240,50 280,38 320,45 360,30' }) + ) + ) + ), + React.createElement('div', { style: Object.assign({}, panelShell, { flex: '0 0 160px' }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '设备状态统计') + ), + React.createElement('div', { style: { display: 'flex', alignItems: 'center', padding: '8px 16px', gap: 16 } }, + React.createElement('svg', { width: 100, height: 100, viewBox: '0 0 100 100' }, + React.createElement('circle', { cx: 50, cy: 50, r: 38, fill: 'none', stroke: 'rgba(0,242,255,0.15)', strokeWidth: 10 }), + React.createElement('circle', { cx: 50, cy: 50, r: 38, fill: 'none', stroke: '#00f2ff', strokeWidth: 10, strokeDasharray: '80 159', strokeLinecap: 'round', transform: 'rotate(-90 50 50)' }), + React.createElement('circle', { cx: 50, cy: 50, r: 38, fill: 'none', stroke: '#165dff', strokeWidth: 10, strokeDasharray: '50 159', strokeDashoffset: -80, strokeLinecap: 'round', transform: 'rotate(-90 50 50)' }), + React.createElement('text', { x: 50, y: 54, textAnchor: 'middle', fill: '#e8f4ff', fontSize: 14, fontWeight: 700 }, '28') + ), + React.createElement('div', { style: { fontSize: 11, lineHeight: 1.8, color: '#7a9bb8' } }, + React.createElement('div', null, React.createElement('span', { style: { color: '#00f2ff' } }, '●'), ' 运行 22'), + React.createElement('div', null, React.createElement('span', { style: { color: '#165dff' } }, '●'), ' 待机 4'), + React.createElement('div', null, React.createElement('span', { style: { color: '#faad14' } }, '●'), ' 维护 2') + ) + ) + ), + React.createElement('div', { style: Object.assign({}, panelShell, { flex: '0 0 140px' }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '能耗统计'), + React.createElement('div', { style: { display: 'flex', gap: 4 } }, navItem('时', true), navItem('日', false)) + ), + React.createElement('div', { style: { padding: '12px 16px', display: 'flex', alignItems: 'flex-end', gap: 6, height: 88 } }, + [40, 65, 55, 80, 48, 72, 60, 90, 52, 68, 75, 58].map(function (h, i) { + return React.createElement('div', { + key: i, + style: { + flex: 1, + height: h + '%', + background: 'linear-gradient(180deg, #00f2ff 0%, rgba(22,93,255,0.4) 100%)', + borderRadius: 2, + opacity: 0.85 + } + }); + }) + ) + ) + ), + + /* 右列 */ + React.createElement('aside', { + style: { + position: 'absolute', + right: 24, + top: 168, + width: 400, + bottom: 200, + display: 'flex', + flexDirection: 'column', + gap: 10, + zIndex: 12 + } + }, + React.createElement('div', { style: Object.assign({}, panelShell, { flex: '0 0 200px' }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#ff4d4f', borderRadius: 1 } }), '实时报警') + ), + React.createElement('div', { style: { display: 'flex', gap: 8, padding: '8px 12px', fontSize: 11 } }, + React.createElement('span', { style: { color: '#ff4d4f' } }, '紧急 1'), + React.createElement('span', { style: { color: '#faad14' } }, '重要 1'), + React.createElement('span', { style: { color: '#52c41a' } }, '一般 1') + ), + React.createElement('div', { style: { padding: '0 8px 8px', overflow: 'auto', maxHeight: 120 } }, + React.createElement('table', { style: { width: '100%', fontSize: 11, borderCollapse: 'collapse', color: '#9ec8e8' } }, + React.createElement('thead', null, + React.createElement('tr', { style: { color: '#5a8aad' } }, + React.createElement('th', { style: { textAlign: 'left', padding: '4px 4px', borderBottom: '1px solid rgba(0,242,255,0.12)' } }, '时间'), + React.createElement('th', { style: { textAlign: 'left', padding: '4px 4px', borderBottom: '1px solid rgba(0,242,255,0.12)' } }, '级别'), + React.createElement('th', { style: { textAlign: 'left', padding: '4px 4px', borderBottom: '1px solid rgba(0,242,255,0.12)' } }, '事件') + ) + ), + React.createElement('tbody', null, + alarmRows.map(function (r) { + return React.createElement('tr', { key: r.t }, + React.createElement('td', { style: { padding: '6px 4px', borderBottom: '1px solid rgba(255,255,255,0.04)' } }, r.t), + React.createElement('td', { style: { padding: '6px 4px', borderBottom: '1px solid rgba(255,255,255,0.04)', color: r.lv === '紧急' ? '#ff4d4f' : r.lv === '重要' ? '#faad14' : '#52c41a' } }, r.lv), + React.createElement('td', { style: { padding: '6px 4px', borderBottom: '1px solid rgba(255,255,255,0.04)' } }, r.name) + ); + }) + ) + ) + ) + ), + React.createElement('div', { style: Object.assign({}, panelShell, { flex: '0 0 160px' }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '储氢系统监控') + ), + React.createElement('div', { style: { padding: '12px 16px', display: 'flex', gap: 10, alignItems: 'flex-end' } }, + [88, 92, 76, 85, 79].map(function (pct, i) { + return React.createElement('div', { key: i, style: { flex: 1, textAlign: 'center' } }, + React.createElement('div', { style: { height: 72, background: 'rgba(0,30,60,0.6)', borderRadius: 2, position: 'relative', border: '1px solid rgba(0,242,255,0.15)' } }, + React.createElement('div', { style: { position: 'absolute', bottom: 0, left: 2, right: 2, height: pct + '%', background: 'linear-gradient(180deg, #00f2ff, #165dff)', borderRadius: '0 0 2px 2px' } }) + ), + React.createElement('div', { style: { fontSize: 10, marginTop: 4, color: '#6a8faf' } }, (i + 1) + '#') + ); + }) + ), + React.createElement('div', { style: { padding: '0 16px 10px', fontSize: 11, color: '#7a9bb8', display: 'flex', justifyContent: 'space-between' } }, + React.createElement('span', null, '管汇压力 ', React.createElement('b', { style: { color: '#00f2ff' } }, '35.2'), ' MPa'), + React.createElement('span', null, '可用氢量 ', React.createElement('b', { style: { color: '#00f2ff' } }, '4,250'), ' kg') + ) + ), + React.createElement('div', { style: Object.assign({}, panelShell, { flex: '0 0 120px' }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '安全环境监测') + ), + React.createElement('div', { style: { padding: '10px 12px', display: 'grid', gridTemplateColumns: '1fr 1fr 1fr', gap: 8, fontSize: 10 } }, + ['氢浓度', '可燃气体', '温度', '湿度', '风速', '风向'].map(function (lab) { + return React.createElement('div', { key: lab, style: { background: 'rgba(0,40,70,0.4)', padding: '6px 8px', borderRadius: 2, border: '1px solid rgba(0,242,255,0.1)' } }, + React.createElement('div', { style: { color: '#5a8aad' } }, lab), + React.createElement('div', { style: { color: '#52c41a', marginTop: 2 } }, '正常') + ); + }) + ) + ), + React.createElement('div', { style: Object.assign({}, panelShell, { flex: '1 1 0', minHeight: 0 }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '当日关键指标') + ), + React.createElement('div', { style: { display: 'flex', justifyContent: 'space-around', padding: '16px 8px' } }, + [{ v: 78, l: '完成率' }, { v: 92, l: '能效' }, { v: 100, l: '安全' }].map(function (g) { + return React.createElement('div', { key: g.l, style: { textAlign: 'center' } }, + React.createElement('svg', { width: 72, height: 72, viewBox: '0 0 72 72' }, + React.createElement('circle', { cx: 36, cy: 36, r: 30, fill: 'none', stroke: 'rgba(0,242,255,0.12)', strokeWidth: 8 }), + React.createElement('circle', { + cx: 36, cy: 36, r: 30, fill: 'none', stroke: '#00f2ff', strokeWidth: 8, + strokeDasharray: (g.v / 100 * 188) + ' 188', + strokeLinecap: 'round', + transform: 'rotate(-90 36 36)' + }), + React.createElement('text', { x: 36, y: 40, textAnchor: 'middle', fill: '#e8f4ff', fontSize: 14, fontWeight: 700 }, g.v + '%') + ), + React.createElement('div', { style: { fontSize: 11, color: '#7a9bb8', marginTop: 6 } }, g.l) + ); + }) + ) + ) + ), + + /* 中央孪生区 */ + React.createElement('div', { + className: 'h2-center-stage', + style: { + position: 'absolute', + left: 448, + right: 448, + top: 168, + bottom: 288, + borderRadius: 6, + border: '1px solid rgba(0, 242, 255, 0.28)', + background: 'linear-gradient(165deg, rgba(6, 22, 48, 0.92) 0%, rgba(2, 8, 22, 0.96) 100%)', + zIndex: 10, + overflow: 'hidden' + } + }, + React.createElement('div', { className: 'h2-scanline', style: { position: 'absolute', inset: 0, overflow: 'hidden', pointerEvents: 'none' } }), + /* 模拟夜景站场视觉 */ + React.createElement('div', { + style: { + position: 'absolute', + inset: 0, + background: ` + radial-gradient(ellipse 70% 45% at 50% 55%, rgba(0, 80, 120, 0.35) 0%, transparent 60%), + linear-gradient(180deg, #020810 0%, #061a32 40%, #02060c 100%) + ` + } + }), + React.createElement('div', { + style: { + position: 'absolute', + left: '8%', + top: '42%', + width: 120, + height: 48, + border: '1px solid rgba(0,242,255,0.45)', + borderRadius: 4, + background: 'rgba(0,20,40,0.5)', + fontSize: 11, + color: '#00f2ff', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + boxShadow: '0 0 20px rgba(0,242,255,0.2)' + } + }, '制氢单元'), + React.createElement('div', { + style: { + position: 'absolute', + left: '38%', + top: '28%', + width: 100, + height: 44, + border: '1px solid rgba(22,93,255,0.5)', + borderRadius: 4, + background: 'rgba(10,30,60,0.45)', + fontSize: 11, + color: '#7ab6ff', + display: 'flex', + alignItems: 'center', + justifyContent: 'center' + } + }, '压缩系统'), + React.createElement('div', { + style: { + position: 'absolute', + right: '18%', + top: '38%', + width: 110, + height: 52, + border: '1px solid rgba(0,242,255,0.4)', + borderRadius: 4, + background: 'rgba(0,30,55,0.5)', + fontSize: 11, + color: '#00f2ff', + display: 'flex', + alignItems: 'center', + justifyContent: 'center' + } + }, '储氢罐组'), + React.createElement('div', { + style: { + position: 'absolute', + left: '42%', + bottom: '22%', + width: 140, + height: 56, + border: '1px solid rgba(0,242,255,0.55)', + borderRadius: 4, + background: 'rgba(0,40,70,0.55)', + fontSize: 11, + color: '#e8f4ff', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + boxShadow: '0 0 24px rgba(0,242,255,0.25)' + } + }, '加氢岛 · 数字孪生'), + React.createElement('div', { + style: { + position: 'absolute', + right: 16, + top: 16, + width: 56, + height: 56, + borderRadius: '50%', + border: '2px solid rgba(0,242,255,0.35)', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + fontSize: 10, + color: '#7a9bb8' + } + }, 'N'), + React.createElement('div', { + style: { + position: 'absolute', + left: 16, + bottom: 72, + fontSize: 11, + color: 'rgba(0,242,255,0.6)', + letterSpacing: '0.08em' + } + }, '视角:鸟瞰 · LOD 高 · 实时数据叠加'), + React.createElement('div', { + style: { + position: 'absolute', + left: 0, + right: 0, + bottom: 0, + height: 76, + padding: '10px 12px', + background: 'linear-gradient(0deg, rgba(4,12,28,0.95) 0%, transparent 100%)', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + gap: 10 + } + }, + subNavBtn('总览', '◎'), + subNavBtn('压缩', '▣'), + subNavBtn('储氢', '◉'), + subNavBtn('加氢', '⬡'), + subNavBtn('安全', '⚠'), + subNavBtn('能耗', '⌁'), + subNavBtn('管网', '⊞'), + subNavBtn('报表', '≡') + ) + ), + + /* 底栏三图表面板 */ + React.createElement('footer', { + style: { + position: 'absolute', + left: 448, + right: 448, + bottom: 24, + height: 160, + display: 'flex', + gap: 12, + zIndex: 12 + } + }, + React.createElement('div', { style: Object.assign({}, panelShell, { flex: 1 }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '加氢车辆统计') + ), + React.createElement('div', { style: { display: 'flex', alignItems: 'center', padding: '12px 20px', gap: 20 } }, + React.createElement('svg', { width: 100, height: 100, viewBox: '0 0 100 100' }, + React.createElement('circle', { cx: 50, cy: 50, r: 36, fill: 'none', stroke: 'rgba(0,242,255,0.12)', strokeWidth: 14 }), + React.createElement('circle', { cx: 50, cy: 50, r: 36, fill: 'none', stroke: '#00f2ff', strokeWidth: 14, strokeDasharray: '90 226', strokeLinecap: 'round', transform: 'rotate(-90 50 50)' }), + React.createElement('circle', { cx: 50, cy: 50, r: 36, fill: 'none', stroke: '#165dff', strokeWidth: 14, strokeDasharray: '55 226', strokeDashoffset: -90, strokeLinecap: 'round', transform: 'rotate(-90 50 50)' }), + React.createElement('circle', { cx: 50, cy: 50, r: 36, fill: 'none', stroke: '#52c41a', strokeWidth: 14, strokeDasharray: '40 226', strokeDashoffset: -145, strokeLinecap: 'round', transform: 'rotate(-90 50 50)' }) + ), + React.createElement('div', { style: { fontSize: 11, lineHeight: 1.9, color: '#7a9bb8' } }, + React.createElement('div', null, React.createElement('span', { style: { color: '#00f2ff' } }, '●'), ' 重卡 38%'), + React.createElement('div', null, React.createElement('span', { style: { color: '#165dff' } }, '●'), ' 物流 28%'), + React.createElement('div', null, React.createElement('span', { style: { color: '#52c41a' } }, '●'), ' 公交 22%'), + React.createElement('div', null, React.createElement('span', { style: { color: '#8b9bb5' } }, '●'), ' 其他 12%') + ) + ) + ), + React.createElement('div', { style: Object.assign({}, panelShell, { flex: 1.2 }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '累计加氢量趋势') + ), + React.createElement('div', { style: { padding: '8px 12px', height: 108 } }, + React.createElement('svg', { width: '100%', height: '100%', viewBox: '0 0 400 100', preserveAspectRatio: 'none' }, + React.createElement('polyline', { fill: 'none', stroke: 'rgba(0,242,255,0.25)', strokeWidth: '1', points: '0,80 400,80' }), + React.createElement('polyline', { fill: 'none', stroke: '#00f2ff', strokeWidth: '2', points: '0,85 40,78 80,72 120,65 160,58 200,50 240,45 280,38 320,32 360,28 400,22' }), + React.createElement('polyline', { fill: 'none', stroke: 'rgba(122,155,184,0.6)', strokeWidth: '1.5', strokeDasharray: '4 3', points: '0,90 40,88 80,86 120,82 160,78 200,75 240,72 280,68 320,65 360,62 400,58' }) + ) + ), + React.createElement('div', { style: { padding: '0 12px 8px', fontSize: 10, color: '#5a8aad', display: 'flex', gap: 16 } }, + React.createElement('span', null, '━━ 本年累计'), + React.createElement('span', null, '- - 去年同期') + ) + ), + React.createElement('div', { style: Object.assign({}, panelShell, { flex: 1 }) }, + React.createElement('div', { style: panelHead }, + React.createElement('h2', { style: h2PanelTitle }, React.createElement('span', { style: { width: 3, height: 14, background: '#00f2ff', borderRadius: 1 } }), '运行时长统计') + ), + React.createElement('div', { style: { padding: '16px 20px', display: 'flex', flexDirection: 'column', gap: 10, justifyContent: 'center', height: 108 } }, + [ + { n: '加氢系统', p: 92 }, + { n: '压缩系统', p: 88 }, + { n: '冷却循环', p: 76 }, + { n: '站控 PLC', p: 100 } + ].map(function (row) { + return React.createElement('div', { key: row.n, style: { display: 'flex', alignItems: 'center', gap: 10 } }, + React.createElement('div', { style: { width: 72, fontSize: 10, color: '#7a9bb8' } }, row.n), + React.createElement('div', { style: { flex: 1, height: 8, background: 'rgba(0,40,70,0.5)', borderRadius: 4, overflow: 'hidden' } }, + React.createElement('div', { style: { width: row.p + '%', height: '100%', background: 'linear-gradient(90deg, #165dff, #00f2ff)', borderRadius: 4 } }) + ), + React.createElement('div', { style: { width: 36, fontSize: 10, color: '#00f2ff', textAlign: 'right' } }, row.p + '%') + ); + }) + ) + ) + ), + + /* 四角装饰线 */ + React.createElement('div', { style: { position: 'absolute', left: 12, top: 12, width: 48, height: 48, borderLeft: '2px solid #00f2ff', borderTop: '2px solid #00f2ff', opacity: 0.6, pointerEvents: 'none' } }), + React.createElement('div', { style: { position: 'absolute', right: 12, top: 12, width: 48, height: 48, borderRight: '2px solid #00f2ff', borderTop: '2px solid #00f2ff', opacity: 0.6, pointerEvents: 'none' } }), + React.createElement('div', { style: { position: 'absolute', left: 12, bottom: 12, width: 48, height: 48, borderLeft: '2px solid #00f2ff', borderBottom: '2px solid #00f2ff', opacity: 0.6, pointerEvents: 'none' } }), + React.createElement('div', { style: { position: 'absolute', right: 12, bottom: 12, width: 48, height: 48, borderRight: '2px solid #00f2ff', borderBottom: '2px solid #00f2ff', opacity: 0.6, pointerEvents: 'none' } }) + ); +}; + +if (typeof module !== 'undefined' && module.exports) module.exports = Component; diff --git a/ONEOS系统试运行第2日报告-2026年5月27日.md b/ONEOS系统试运行第2日报告-2026年5月27日.md new file mode 100644 index 0000000..98e259f --- /dev/null +++ b/ONEOS系统试运行第2日报告-2026年5月27日.md @@ -0,0 +1,167 @@ +# ONEOS 系统试运行第 2 日报告 + +**报告日期:** 2026 年 5 月 27 日 +**试运行阶段:** 第 2 日 +**编制说明:** 汇总当日问题处置、需求收集及培训建议 + +--- + +## 一、当日概览 + +| 类别 | 数量 | 说明 | +|------|------|------| +| **问题(P0)** | 6 | 影响交还车、合同、车辆、证照等核心流程 | +| **问题(P1)** | 2 | 小程序筛选、E 签宝展示等 | +| **已修复** | 3 | 还车历史报错、停车场匹配、合同型号为空 | +| **处理中** | 4 | 小程序还车筛选、合同审批卡点、帕立安交车数量、导入模板等 | +| **功能优化(已收集)** | 17 项 | 其中 11 项已标记「禅道已发布需求优化」 | + +--- + +## 二、问题清单 + +> **优先级说明:** P0 = 阻塞核心业务;P1 = 影响体验或局部流程,需尽快处理。 + +### P0 — 核心业务阻塞 + +| # | 模块 | 问题摘要 | 影响 | 状态 | +|---|------|----------|------|------| +| 1 | 合同管理 | 迁移数据「审批中」时,审批流节点状态无法同步 | 合同卡在审批节点,需客服逐单协调;建议对「审批状态=审批中」数据批量排查,节点通过后统一改回「审批中」,否则必然产生额外卡点 | **待排查 / 预防** | +| 2 | 合同管理 | 帕立安 18 吨双飞翼进行中合同:迁移后车辆仅显示品牌「现代」、型号为空 | 交还车任务异常:还车任务挂着但交车数量为 0、无法选车 | **部分已修复**(型号已补;**交车数量仍为 0,交车任务无法执行 — 需重点修复**) | +| 3 | 车辆管理 | 绝大多数车辆停车场未正确匹配 | 区域运维无法正常备车、交车 | **已处理**(生亮已完成) | +| 4 | 车辆管理 | 导入模板异常:填写停车场不反写;模板多出未设计字段 | 新增车辆导入易失败,需尽快修正模板与导入逻辑 | **待修复** | +| 5 | 证照管理 | 车辆数据匹配且导入成功,等评时间未更新 | 沪牌车等评时间无法维护 | **待修复** | +| 6 | 还车管理 | 小程序查看还车历史(迁移数据)报错 | 无法查看历史还车记录 | **已修复**(根因:缺少司机培训信息) | + +### P1 — 需尽快跟进 + +| # | 模块 | 问题摘要 | 典型案例 / 根因 | 状态 | +|---|------|----------|-----------------|------| +| 7 | 交还车任务 | 已创建还车任务:Web 有任务,小程序无任务,无法还车 | 粤 AGP2035;小程序筛选 Bug,无法筛出该条 | **修复中** | +| 8 | 交车(小程序) | 交车成功后 E 签宝提车人信息错误显示为「授权人」 | 应显示提车司机姓名、手机号、身份证(已与运维确认) | **待修复** | + +--- + +## 三、问题详情(按模块) + +### 3.1 交还车 + +**【P1】交还车任务 — 小程序无还车任务** +- **现象:** 已在 Web 创建还车任务,小程序侧不可见,无法完成还车。 +- **案例:** 粤 AGP2035。 +- **原因:** 小程序筛选逻辑 Bug。 +- **进展:** 修复中。 + +**【P0】帕立安合同 — 交车数量为 0** +- **现象:** 还车任务存在,交车数量为 0,无法选车,交车任务无法执行。 +- **原因:** 合同迁移时车辆型号为空(仅品牌「现代」)。 +- **进展:** 型号已修复;**交车数量仍为 0 — 当前最高优先级修复项。** + +**【P1】交车 — E 签宝信息展示错误** +- **现象:** 提车人、手机号、身份证显示为「授权人」。 +- **预期:** 显示提车司机姓名、手机号、身份证。 +- **进展:** 待开发修复。 + +**【P0】还车历史 — 迁移数据报错** +- **根因:** 缺少司机培训信息。 +- **进展:** 已修复。 + +--- + +### 3.2 合同管理 + +**【P0】审批中合同 — 审批流不同步** +- **说明:** 迁移数据状态为「审批中」时,工作流节点状态无法正常同步。 +- **建议动作:** + 1. 筛查全部「审批状态 = 审批中」的合同; + 2. 提前联系对应客服,协调各审批节点人工通过; + 3. 通过后统一将合同状态改回「审批中」,避免流程卡点与二次处理。 + +**【P0】帕立安 18 吨双飞翼 — 车辆信息不完整** +- 见上文「交车数量为 0」— 与交还车强关联,需研发重点攻关。 + +--- + +### 3.3 车辆管理 + +**【P0】停车场匹配** +- **影响:** 区域运维备车、交车受阻。 +- **进展:** 已处理完成。 + +**【P0】车辆导入模板** +- **问题 1:** 导入时填写停车场,系统不反写。 +- **问题 2:** 模板含多余字段(非设计范围且未通知变更)。 +- **风险:** 公司批量新增车辆时导入失败。 +- **进展:** 待尽快修改。 + +--- + +### 3.4 证照管理 + +**【P0】等评时间未更新** +- **现象:** 车辆匹配成功、数据已导入,等评时间字段未更新。 +- **影响:** 沪牌车等评时间无法维护。 +- **进展:** 待修复。 + +--- + +## 四、已收集功能优化 + +**排期原则:** 优先处理业务急迫需求(标记 **禅道已发布**);其余在低优先级、开发余量允许时排期。 + +### 4.1 禅道已发布(优先落地) + +| # | 模块 | 优化内容 | +|---|------|----------| +| 1 | 还车 | 还车导出显示还车明细 | +| 2 | 故障管理 | 选择车辆后显示车辆里程 | +| 3 | 交车 / 还车 | 瑕疵、其他等拍照环节支持相册上传 | +| 4 | 交车 / 还车 | 拍照后自动保存至手机相册 | +| 5 | 交车 / 还车 | 被授权人选择后,选择器下方反显手机号码 | +| 6 | 年审 | 等评时间改为选填 | +| 7 | 交车管理 | 实际交车时间精确至分钟 | +| 8 | 车辆管理 | 增加车辆编辑(停车场、运营/车辆状态、登记所有权、运营公司、来源、租赁公司、出厂年份、采购入库时间等);**仅 Admin**,作突发问题临时修复手段 | +| 9 | 交车 | 交车导出显示交车明细 | +| 10 | 能源账户 | 客户新增合同时,若无对应账户则按合同「预付款」「月结算」自动生成;已有账户不重复生成 | +| 11 | 租赁合同 / 提车应收款 / 还车应结款 / 租赁账单 | 审批状态列右侧增加「当前审批人」(工作流当前操作人姓名) | +| 12 | 车辆管理 | 列表「客户名称」后增加「项目名称」 | + +### 4.2 待排期(非禅道已发布) + +| # | 模块 | 优化内容 | +|---|------|----------| +| 1 | 工作台 | 待办点击标题可查看任务详情 | +| 2 | 工作台 | 通知点击弹出卡片查看 | +| 3 | 工作台 | 催办后增加徽标记录点击次数(反馈可见) | +| 4 | 通知消息 | 点击弹出卡片显示通知内容 | +| 5 | 客户管理 / 供应商管理 | 增加保存功能 | + +--- + +## 五、其他留意事项 + +### 培训与流程宣贯(建议) + +部分客服、运维此前未正式使用系统,试运行中暴露较多操作类问题。建议: + +| 建议项 | 内容 | +|--------|------| +| **a. 业务流程培训** | 梳理整体业务流程及分支(如临时/永久替换车操作路径、哪些环节必须走系统、交还车任务入口等),组织专项培训 | +| **b. 备车规则宣贯** | 替换新车需运维提前备车等规则虽已群内同步,但多数运维仍不清楚;建议在 a 的基础上**再加一轮强化培训** | + +--- + +## 六、次日重点跟进 + +| 优先级 | 事项 | 责任方向 | +|--------|------|----------| +| 🔴 最高 | 帕立安合同交车数量为 0,交车任务无法执行 | 研发 | +| 🔴 高 | 车辆导入模板修复(停车场反写 + 字段校正) | 研发 | +| 🔴 高 | 审批中合同批量排查与节点协调 | 客服 + 运营 | +| 🟠 中 | 小程序还车筛选 Bug(粤 AGP2035) | 研发 | +| 🟠 中 | E 签宝提车人信息展示 | 研发 | +| 🟠 中 | 证照等评时间未更新 | 研发 | + +--- + +*本报告根据 2026 年 5 月 27 日试运行反馈整理,后续进展以禅道任务及群内同步为准。* diff --git a/_scripts/generate_customer_rules_docx.py b/_scripts/generate_customer_rules_docx.py new file mode 100644 index 0000000..2e34f80 --- /dev/null +++ b/_scripts/generate_customer_rules_docx.py @@ -0,0 +1,344 @@ +# -*- coding: utf-8 -*- +"""Generate 客户分级与黑名单规则.docx with tables and basic typography.""" +from pathlib import Path + +from docx import Document +from docx.enum.text import WD_ALIGN_PARAGRAPH +from docx.oxml import OxmlElement +from docx.oxml.ns import qn +from docx.shared import Inches, Pt, RGBColor + + +def set_cell_shading(cell, fill: str) -> None: + """fill: hex without # e.g. EAEAEA""" + tc = cell._tc + tcPr = tc.get_or_add_tcPr() + shd = OxmlElement("w:shd") + shd.set(qn("w:fill"), fill) + shd.set(qn("w:val"), "clear") + tcPr.append(shd) + + +def set_table_borders(table) -> None: + tbl = table._tbl + tblPr = tbl.tblPr + if tblPr is None: + tblPr = OxmlElement("w:tblPr") + tbl.insert(0, tblPr) + borders = OxmlElement("w:tblBorders") + for edge in ("top", "left", "bottom", "right", "insideH", "insideV"): + el = OxmlElement(f"w:{edge}") + el.set(qn("w:val"), "single") + el.set(qn("w:sz"), "4") + el.set(qn("w:space"), "0") + el.set(qn("w:color"), "333333") + borders.append(el) + tblPr.append(borders) + + +def add_heading_doc(doc, text: str, level: int) -> None: + p = doc.add_heading(text, level=level) + for run in p.runs: + run.font.name = "PingFang SC" + run._element.rPr.rFonts.set(qn("w:eastAsia"), "PingFang SC") + + +def add_para(doc, text: str, bold: bool = False) -> None: + p = doc.add_paragraph() + run = p.add_run(text) + run.font.name = "PingFang SC" + run._element.rPr.rFonts.set(qn("w:eastAsia"), "PingFang SC") + run.font.size = Pt(10.5) + if bold: + run.bold = True + + +def add_bullet_list(doc, items: list) -> None: + for t in items: + p = doc.add_paragraph(style="List Bullet") + run = p.add_run(t) + run.font.name = "PingFang SC" + run._element.rPr.rFonts.set(qn("w:eastAsia"), "PingFang SC") + run.font.size = Pt(10.5) + + +def add_table(doc, headers: list, rows: list, header_fill: str = "EAEAEA") -> None: + table = doc.add_table(rows=1 + len(rows), cols=len(headers)) + table.style = "Table Grid" + set_table_borders(table) + hdr_cells = table.rows[0].cells + for i, h in enumerate(headers): + hdr_cells[i].text = h + set_cell_shading(hdr_cells[i], header_fill) + for p in hdr_cells[i].paragraphs: + p.alignment = WD_ALIGN_PARAGRAPH.LEFT + for r in p.runs: + r.bold = True + r.font.size = Pt(9.5) + r.font.name = "PingFang SC" + r._element.rPr.rFonts.set(qn("w:eastAsia"), "PingFang SC") + for ri, row in enumerate(rows): + cells = table.rows[ri + 1].cells + for ci, val in enumerate(row): + cells[ci].text = str(val) + for p in cells[ci].paragraphs: + for r in p.runs: + r.font.size = Pt(9.5) + r.font.name = "PingFang SC" + r._element.rPr.rFonts.set(qn("w:eastAsia"), "PingFang SC") + doc.add_paragraph() + + +def main() -> None: + out = Path.home() / "Desktop" / "客户分级与黑名单规则.docx" + doc = Document() + section = doc.sections[0] + section.page_height = Inches(11.69) + section.page_width = Inches(8.27) + section.left_margin = Inches(0.75) + section.right_margin = Inches(0.75) + section.top_margin = Inches(0.85) + section.bottom_margin = Inches(0.85) + + t = doc.add_paragraph() + t.alignment = WD_ALIGN_PARAGRAPH.CENTER + r = t.add_run("客户分级(ABC)、风险标签与黑名单规则") + r.bold = True + r.font.size = Pt(17) + r.font.name = "PingFang SC" + r._element.rPr.rFonts.set(qn("w:eastAsia"), "PingFang SC") + + st = doc.add_paragraph() + st.alignment = WD_ALIGN_PARAGRAPH.CENTER + rr = st.add_run("版本:草案 · 适用于 ToB 合同、收款与开票场景(可按业务微调阈值)") + rr.font.size = Pt(9.5) + rr.font.color.rgb = RGBColor(0x55, 0x55, 0x55) + rr.font.name = "PingFang SC" + rr._element.rPr.rFonts.set(qn("w:eastAsia"), "PingFang SC") + + doc.add_paragraph() + + add_heading_doc(doc, "一、客户分级(ABC)", level=1) + add_heading_doc(doc, "1. 分级目的", level=2) + add_bullet_list( + doc, + [ + "资源投入:授信、账期、折扣、专属服务与响应时效。", + "风控:A 类可放宽流程,C 类收紧合同与收款条款。", + "统计:报表、提成、续约策略分层。", + ], + ) + + add_heading_doc(doc, "2. 维度与计分(建议每年或每季复核)", level=2) + add_table( + doc, + ["维度", "说明", "权重示例"], + [ + ["贡献度", "近 12 个月含税回款、毛利、合同金额", "35%"], + ["履约与回款", "逾期次数、最长逾期天数、DSO", "25%"], + ["合作稳定性", "合作月数、续约、纠纷/索赔次数", "20%"], + ["战略价值", "品牌、标杆案例、增量潜力、独家合作", "20%"], + ], + ) + add_para(doc, "可将各维度标准化为 0–100 分,加权得综合分,再划档;或直接按「硬性门槛 + 一票否决」定级。") + + add_heading_doc(doc, "3. 等级定义与标准(示例)", level=2) + add_table( + doc, + ["等级", "综合分(示例)", "典型特征"], + [ + ["A", "≥ 80", "回款好、贡献高或战略客户;近 12 个月无严重逾期、无未结重大纠纷"], + ["B", "50–79", "正常合作;偶有短逾期已结清;贡献中等"], + ["C", "< 50", "新客观察期、小额长尾、或回款/纠纷问题较多"], + ], + ) + + add_heading_doc(doc, "4. 硬性调整(建议写死规则)", level=2) + add_bullet_list( + doc, + [ + "近 12 个月出现单次逾期 > 60 天或累计逾期 ≥ 3 次:最高不超过 B。", + "存在未结法律诉讼或重大合规调查:暂定为 C,直至结案。", + "新签约 90 天内且无足够交易数据:默认 C 或 B(观察),标签单独标「新客观察」。", + ], + ) + + add_heading_doc(doc, "5. 分级权益与约束(示例)", level=2) + add_table( + doc, + ["项目", "A", "B", "C"], + [ + ["标准账期", "可按合同约定略优", "标准", "缩短或预付比例提高"], + ["授信额度", "可申请较高额度", "中等", "低或零,款到发货"], + ["价格/折扣", "可申请专项政策", "标准政策", "原则上无额外折扣"], + ["合同审批", "可简化部分条款", "标准", "法务/财务加签"], + ["服务响应", "优先 SLA", "标准", "标准(不承诺加急)"], + ], + ) + + add_heading_doc(doc, "二、风险标签", level=1) + add_heading_doc(doc, "1. 设计原则", level=2) + add_bullet_list( + doc, + [ + "标签≠等级:同一客户可有多个标签;黑名单与部分标签可联动自动拦截。", + "来源:系统规则自动打标 + 人工标注;重要标签变更留痕。", + "有效期:部分标签可设过期时间(如「短期资金链紧张」6 个月复核)。", + ], + ) + add_para(doc, "建议字段:标签代码、名称、级别、来源、备注、生效时间。") + + add_heading_doc(doc, "2. 信用与回款", level=2) + add_table( + doc, + ["标签代码", "名称", "级别", "典型触发"], + [ + ["CR-01", "逾期预警", "中", "当前存在逾期或近 6 个月有逾期"], + ["CR-02", "严重拖欠", "高", "逾期 > 30 天未结或历史坏账记录"], + ["CR-03", "频繁改账期", "低", "一年内申请延长账期 ≥ 3 次"], + ], + ) + + add_heading_doc(doc, "3. 合规与法律", level=2) + add_table( + doc, + ["标签代码", "名称", "级别", "典型触发"], + [ + ["CP-01", "资质存疑", "中", "证照过期、抬头与付款主体不一致"], + ["CP-02", "涉诉/仲裁", "高", "与我方或第三方重大未结诉讼"], + ["CP-03", "制裁/高风险地区", "高", "名单筛查命中(按公司合规清单)"], + ], + ) + + add_heading_doc(doc, "4. 经营与履约", level=2) + add_table( + doc, + ["标签代码", "名称", "级别", "典型触发"], + [ + ["OP-01", "频繁争议", "中", "合同争议、扣款争议次数超阈值"], + ["OP-02", "车辆/资产高风险", "中–高", "违章、事故、骗保嫌疑等业务规则(按公司业务定义)"], + ["OP-03", "信息不实", "中", "虚假联系人、空头公司等核实结果"], + ], + ) + + add_heading_doc(doc, "5. 操作与流程", level=2) + add_table( + doc, + ["标签代码", "名称", "级别", "典型触发"], + [ + ["PR-01", "开票异常", "低", "频繁退票、抬头变更异常"], + ["PR-02", "多头签约", "低", "同一实控人多主体分散签约"], + ], + ) + add_para(doc, "级别建议:低 / 中 / 高 / 致命(致命仅建议与黑名单联动)。", bold=True) + + add_heading_doc(doc, "6. 标签与系统行为(示例)", level=2) + add_table( + doc, + ["级别", "建议动作"], + [ + ["低", "仅展示与报表,不拦截"], + ["中", "合同/大额订单增加审批节点;降低默认授信"], + ["高", "禁止新增授信;新合同须法务/财务双签;可限制开票额度"], + ["致命", "与黑名单规则对齐,禁止新业务或仅允许收尾"], + ], + ) + + add_heading_doc(doc, "三、黑名单规则", level=1) + add_heading_doc(doc, "1. 黑名单分级(建议)", level=2) + add_table( + doc, + ["级别", "名称", "含义"], + [ + ["L1", "观察名单", "重点监控,限制部分权限"], + ["L2", "业务冻结", "禁止新签合同、新增订单/车辆,允许履约收尾与收款"], + ["L3", "全面禁止", "禁止新业务;按法务意见处理尾款与争议"], + ], + ) + + add_heading_doc(doc, "2. 进入条件(由风控委员会或授权人最终裁定)", level=2) + add_para(doc, "进入 L2(业务冻结)——示例:", bold=True) + add_bullet_list( + doc, + [ + "恶意拖欠:应付账款逾期 > 90 天且经书面催收无效。", + "欺诈或伪造:伪造资质、虚构交易、骗取发票或补贴等查实。", + "重大违约:单方毁约造成损失达约定金额或内部红线。", + "司法:被列为失信被执行人,或对我方提起恶意诉讼并造成实质风险。", + "合规:命中内外部黑名单库、制裁名单且公司政策要求停止合作。", + ], + ) + add_para(doc, "进入 L3(全面禁止)——示例:", bold=True) + add_bullet_list( + doc, + [ + "L2 情形加重且法务/高管批准。", + "刑事立案或监管机构明确要求终止合作。", + ], + ) + add_para(doc, "进入 L1(观察名单)——示例:", bold=True) + add_bullet_list( + doc, + [ + "连续 2 次逾期 > 15 天。", + "存在未结争议金额超过阈值。", + "高风险标签(如 CP-02、CR-02)未解除超过 90 天。", + ], + ) + + add_heading_doc(doc, "3. 系统与业务规则(落地)", level=2) + add_bullet_list( + doc, + [ + "客户主数据:标记黑名单级别、原因代码、生效日、操作人、附件(催收记录、判决书等)。", + "合同:L2/L3 禁止新建合同;进行中合同可走「例外审批」仅允许极少数变更(如收款账户)。", + "订单/开票:L1 可设单笔限额;L2/L3 禁止新开票或仅允许红冲/收尾类单据(按税务合规)。", + "消息:销售、运营界面显著提示,避免误接单。", + ], + ) + + add_heading_doc(doc, "4. 移出与复议", level=2) + add_bullet_list( + doc, + [ + "L1:满足连续 6 个月无新增逾期、争议结案,由销售发起,财务复核后可移除。", + "L2/L3:须还清欠款或达成书面和解 + 法务/风控签字;L3 须高管或委员会批准。", + "全程保留审计日志;禁止个人擅自移出。", + ], + ) + + add_heading_doc(doc, "5. 与 ABC、标签的联动(建议)", level=2) + add_bullet_list( + doc, + [ + "进入 L2/L3 → 客户等级强制为 C(或显示「黑名单-冻结」覆盖原等级)。", + "标签 CR-02、CP-02、CP-03 在确认后自动建议进入 L1 或触发 L2 审批流。", + "A 类客户进入黑名单须升级审批(防止误伤大客户)。", + ], + ) + + add_heading_doc(doc, "四、模块数据模型提示(可选)", level=1) + add_bullet_list( + doc, + [ + "客户表:abc_level、blacklist_level、blacklist_reason_code、blacklist_since、abc_reviewed_at。", + "客户标签表:多对多,tag_id、source(rule/manual)、severity、expires_at。", + "规则引擎表(可选):规则 ID、条件 JSON、动作(打标 / 调级 / 推审批)。", + ], + ) + + foot = doc.add_paragraph() + rr2 = foot.add_run( + "本文档由 ONE-OS 项目辅助生成,正式使用前请经法务、财务与业务负责人审定阈值与审批链。" + ) + rr2.font.size = Pt(9) + rr2.font.color.rgb = RGBColor(0x44, 0x44, 0x44) + rr2.font.name = "PingFang SC" + rr2._element.rPr.rFonts.set(qn("w:eastAsia"), "PingFang SC") + + doc.save(out) + print(f"Wrote: {out}") + + +if __name__ == "__main__": + main() diff --git a/assets/ppt-fonts/Orbitron-Bold.ttf b/assets/ppt-fonts/Orbitron-Bold.ttf new file mode 100644 index 0000000..84691e8 Binary files /dev/null and b/assets/ppt-fonts/Orbitron-Bold.ttf differ diff --git a/assets/ppt-images/architecture.png b/assets/ppt-images/architecture.png new file mode 100644 index 0000000..603974c Binary files /dev/null and b/assets/ppt-images/architecture.png differ diff --git a/assets/ppt-images/bg-city.png b/assets/ppt-images/bg-city.png new file mode 100644 index 0000000..ce8ba34 Binary files /dev/null and b/assets/ppt-images/bg-city.png differ diff --git a/assets/ppt-images/bg-dataflow.png b/assets/ppt-images/bg-dataflow.png new file mode 100644 index 0000000..5987a1f Binary files /dev/null and b/assets/ppt-images/bg-dataflow.png differ diff --git a/assets/ppt-images/bg-hydrogen.png b/assets/ppt-images/bg-hydrogen.png new file mode 100644 index 0000000..c8a4d9a Binary files /dev/null and b/assets/ppt-images/bg-hydrogen.png differ diff --git a/axhub-make/.axhub/make.json b/axhub-make/.axhub/make.json new file mode 100644 index 0000000..65160b2 --- /dev/null +++ b/axhub-make/.axhub/make.json @@ -0,0 +1,4 @@ +{ + "schemaVersion": 1, + "projectType": "axhub-make" +} diff --git a/axhub-make/.axhub/make/README.md b/axhub-make/.axhub/make/README.md new file mode 100644 index 0000000..957b703 --- /dev/null +++ b/axhub-make/.axhub/make/README.md @@ -0,0 +1,98 @@ +# .axhub/make + +这个目录用于存放 Axhub Make 项目的本地运行数据、项目配置索引,以及技能清单。 + +## 目录职责 + +- `axhub.config.json` + - 项目运行配置。 +- `make.json` + - 项目级元信息。 +- `entries.json` + - 入口扫描结果,通常由程序生成或刷新。 +- `sidebar-tree.json` + - 侧边栏树数据,通常由程序生成或刷新。 +- `.dev-server-info.json` + - 当前开发服务的本地运行信息。 +- `skills/` + - 技能清单目录,包含官方默认清单和当前项目自定义清单。 +- `backups/` + - 建议的维护备份目录,技能相关备份统一放到 `backups/skills//`。 + +## skills 目录规则 + +技能清单统一放在: + +`apps/axhub-make/.axhub/make/skills/` + +当前采用两层规则: + +- 官方默认清单:`*.default.json` +- 用户自定义清单:同名但不带 `.default` + +涉及 4 份 manifest: + +- `skills-manifest.default.json` +- `doc-skills-manifest.default.json` +- `theme-skills-manifest.default.json` +- `install-skills-manifest.default.json` + +对应的自定义文件分别为: + +- `skills-manifest.json` +- `doc-skills-manifest.json` +- `theme-skills-manifest.json` +- `install-skills-manifest.json` + +程序读取顺序固定为: + +1. 先读自定义清单 +2. 若自定义不存在,再回退到 `*.default.json` + +注意事项: + +- 不做 merge,不做覆盖合并,不做深合并。 +- 自定义清单一旦存在,就完整替代对应的默认清单。 +- 官方仓库只维护 `*.default.json`。 +- 用户自定义清单不发布、不随项目更新覆盖。 + +## 技能正文位置 + +技能正文不在这里,官方技能目录位于: + +`apps/axhub-make/skills//` + +常见文件包括: + +- `apps/axhub-make/skills//SKILL.md` +- `apps/axhub-make/skills//references/...` + +如果需要恢复某个官方默认技能: + +1. 先到 `skills/*.default.json` 找回条目 +2. 再到 `apps/axhub-make/skills//` 找回技能正文 +3. 最后按需要补回到当前项目自定义清单中 + +## 维护建议 + +- 修改任何技能清单或技能文档前,先备份。 +- 推荐备份目录:`.axhub/make/backups/skills//` +- 默认备份对象: + - 当前要修改的 manifest 文件 + - 当前要修改的 skill 目录 + +## 不建议直接手改的文件 + +以下文件通常属于运行时或扫描产物,除非明确知道影响,否则不要手动编辑: + +- `entries.json` +- `sidebar-tree.json` +- `.dev-server-info.json` + +## 前端读取入口 + +前端技能清单的读取入口在: + +`apps/prototype-admin/src/index/config/skillManifests.ts` + +如果后续再调整 manifest 路径,必须同步修改这里的 glob 路径。 diff --git a/axhub-make/.axhub/make/skills/doc-skills-manifest.default.json b/axhub-make/.axhub/make/skills/doc-skills-manifest.default.json new file mode 100644 index 0000000..ebc59da --- /dev/null +++ b/axhub-make/.axhub/make/skills/doc-skills-manifest.default.json @@ -0,0 +1,104 @@ +{ + "version": 1, + "generatedAt": "2026-03-28", + "skills": [ + { + "id": "brainstorming", + "title": "Brainstorming", + "titleZh": "头脑风暴", + "description": "用于快速发散想法、明确文档主题与结构方向。", + "defaultSelected": true, + "localPaths": [ + "/skills/third-party/brainstorming/SKILL.md" + ], + "references": [ + "obra/superpowers@brainstorming" + ], + "category": "研究与探索" + }, + { + "id": "deep-research", + "title": "Deep Research", + "titleZh": "深度研究", + "description": "用于系统化收集证据、形成深入研究材料。", + "defaultSelected": false, + "localPaths": [ + "/skills/third-party/deep-research/SKILL.md" + ], + "references": [ + "199-biotechnologies/claude-deep-research-skill@deep-research" + ], + "category": "研究与探索" + }, + { + "id": "anything-to-notebooklm", + "title": "Anything to NotebookLM", + "titleZh": "资料转 NotebookLM", + "description": "将原始素材整理为适合 NotebookLM 使用的输入结构。", + "defaultSelected": false, + "localPaths": [ + "/skills/third-party/anything-to-notebooklm/SKILL.md" + ], + "references": [ + "joeseesun/anything-to-notebooklm@anything-to-notebooklm" + ], + "category": "研究与探索" + }, + { + "id": "prd", + "title": "PRD", + "titleZh": "产品需求文档", + "description": "用于生成或完善 PRD 结构与内容。", + "defaultSelected": false, + "localPaths": [ + "/skills/third-party/prd/SKILL.md" + ], + "references": [ + "https://skills.sh/github/awesome-copilot/prd" + ], + "category": "产品与需求" + }, + { + "id": "product-requirements", + "title": "Product Requirements", + "titleZh": "产品需求", + "description": "用于整理产品目标、范围与需求细节。", + "defaultSelected": false, + "localPaths": [ + "/skills/third-party/product-requirements/SKILL.md" + ], + "references": [ + "https://skills.sh/cexll/myclaude/product-requirements" + ], + "category": "产品与需求" + }, + { + "id": "research", + "title": "Research", + "titleZh": "研究分析", + "description": "用于进行主题研究、资料筛选与结果归纳。", + "defaultSelected": false, + "localPaths": [ + "/skills/third-party/research/SKILL.md" + ], + "references": [ + "https://skills.sh/tavily-ai/skills/research" + ], + "category": "研究与探索" + }, + { + "id": "user-story-writing", + "title": "User Story Writing", + "titleZh": "用户故事编写", + "description": "用于编写清晰可执行的用户故事。", + "defaultSelected": false, + "localPaths": [ + "/skills/third-party/user-story-writing/SKILL.md" + ], + "references": [ + "https://skills.sh/aj-geddes/useful-ai-prompts/user-story-writing" + ], + "category": "产品与需求" + } + ] +} diff --git a/axhub-make/.axhub/make/skills/install-skills-manifest.default.json b/axhub-make/.axhub/make/skills/install-skills-manifest.default.json new file mode 100644 index 0000000..9856107 --- /dev/null +++ b/axhub-make/.axhub/make/skills/install-skills-manifest.default.json @@ -0,0 +1,66 @@ +{ + "version": 3, + "generatedAt": "2026-03-28", + "skills": [ + { + "id": "project-guide", + "titleZh": "项目引导", + "titleEn": "Project Guide", + "description": "不知道从何开始或需要获得开发建议时,执行该技能。AI 会为你评估当前项目状态,并推荐最佳的下一步操作与平台使用技巧。", + "localPath": "/skills/project-guide", + "skillMdPath": "/skills/project-guide/SKILL.md", + "slashCommand": "/project-guide", + "category": "项目管理" + }, + { + "id": "create-workflow", + "titleZh": "创建内容", + "titleEn": "Unified Create", + "description": "想创建任何新内容(如原型、组件、主题或文档)时执行此技能。AI 会引导你完成规范的创建流程,无需手动记忆繁杂的规则。", + "localPath": "/skills/create-workflow", + "skillMdPath": "/skills/create-workflow/SKILL.md", + "slashCommand": "/create-workflow", + "category": "日常工作流" + }, + { + "id": "design-review", + "titleZh": "设计 Review", + "titleEn": "Design Review", + "description": "界面开发完成后,想检查是否符合项目 UI 规范时执行此技能。AI 会帮你找出违规样式并提供修改建议,或帮你将新设计沉淀为主题。", + "localPath": "/skills/design-review", + "skillMdPath": "/skills/design-review/SKILL.md", + "slashCommand": "/design-review", + "category": "日常工作流" + }, + { + "id": "project-memory", + "titleZh": "项目整理", + "titleEn": "Project Memory", + "description": "想整理项目积累的经验时执行此技能。AI 会把近期的代码变更、零散信息和新增逻辑沉淀至说明文档中,以保持项目资产井井有条。", + "localPath": "/skills/project-memory", + "skillMdPath": "/skills/project-memory/SKILL.md", + "slashCommand": "/project-memory", + "category": "日常工作流" + }, + { + "id": "work-summary", + "titleZh": "工作总结", + "titleEn": "Work Summary", + "description": "日常报告编写利器。随时执行该技能来回顾近期的成果,AI 会自动追踪你的代码变更,直接为你生成一份清晰的日报或工作总结。", + "localPath": "/skills/work-summary", + "skillMdPath": "/skills/work-summary/SKILL.md", + "slashCommand": "/work-summary", + "category": "日常工作流" + }, + { + "id": "skills-management", + "titleZh": "技能管理", + "titleEn": "Skills Management", + "description": "管理和维护当前项目的技能库。当你想为团队添加新的自定义技能、修改现有描述或恢复官方默认技能时,执行此技能。", + "localPath": "/skills/skills-management", + "skillMdPath": "/skills/skills-management/SKILL.md", + "slashCommand": "/skills-management", + "category": "项目管理" + } + ] +} diff --git a/axhub-make/.axhub/make/skills/skills-manifest.default.json b/axhub-make/.axhub/make/skills/skills-manifest.default.json new file mode 100644 index 0000000..c166074 --- /dev/null +++ b/axhub-make/.axhub/make/skills/skills-manifest.default.json @@ -0,0 +1,186 @@ +{ + "version": 1, + "generatedAt": "2026-03-28", + "skills": [ + { + "id": "frontend-design", + "title": "Landing & Marketing", + "titleEn": "Landing & Marketing", + "titleZh": "C端展示与落地页", + "description": "使用场景:需要打造高辨识度视觉风格的页面/落地页/展示型界面时;强调创意审美、版式与动效表达,避免模板化“AI 味”。", + "localPaths": [ + "/skills/third-party/frontend-design/SKILL.md" + ], + "sourcePageUrl": "https://skills.sh/anthropics/skills/frontend-design", + "sourceRepoUrl": "https://github.com/anthropics/skills", + "sourcePath": "skills/frontend-design", + "license": null, + "category": "设计与体验" + }, + { + "id": "interface-design", + "title": "Admin & SaaS Interface", + "titleEn": "Admin & SaaS Interface", + "titleZh": "B端后台与SaaS", + "description": "使用场景:后台、SaaS、工具类产品的交互界面设计(仪表盘/设置页/数据界面);强调信息架构与可用性,不用于营销落地页。", + "localPaths": [ + "/skills/third-party/interface-design/SKILL.md" + ], + "sourcePageUrl": "https://skills.sh/dammyjay93/interface-design/interface-design", + "sourceRepoUrl": "https://github.com/Dammyjay93/interface-design", + "sourcePath": ".claude/skills/interface-design", + "license": null, + "category": "设计与体验" + }, + { + "id": "ui-ux-pro-max", + "title": "UI/UX Pro Max", + "titleEn": "UI/UX Pro Max", + "titleZh": "UI/UX 专家指南", + "description": "使用场景:需要快速选型和评审 UI/UX 方案时(色板、字体、图表、无障碍、响应式、性能);更偏规则库与优化清单,而非单一风格生成。", + "localPaths": [ + "/skills/ui-ux-pro-max/SKILL.md" + ], + "sourcePageUrl": "https://skills.sh/nextlevelbuilder/ui-ux-pro-max-skill/ui-ux-pro-max", + "sourceRepoUrl": "https://github.com/nextlevelbuilder/ui-ux-pro-max-skill", + "sourcePath": ".claude/skills/ui-ux-pro-max", + "license": null, + "category": "设计与体验" + }, + { + "id": "implement-design", + "title": "figma-implement-design", + "titleEn": "figma-implement-design", + "titleZh": "Figma 设计实现还原", + "description": "使用场景:拿到 Figma 链接或选中节点后,基于 Figma MCP 进行 1:1 设计还原并输出可落地代码。", + "localPaths": [ + "/skills/third-party/implement-design/SKILL.md" + ], + "sourcePageUrl": "https://skills.sh/figma/mcp-server-guide/implement-design", + "sourceRepoUrl": "https://github.com/figma/mcp-server-guide", + "sourcePath": "skills/implement-design", + "license": null, + "category": "开发与实现" + }, + { + "id": "baoyu-image-gen", + "title": "Baoyu Image Gen", + "titleEn": "Baoyu Image Gen", + "titleZh": "宝玉图像生成", + "description": "使用场景:批量生成视觉素材(插画、封面、背景图等)而非页面结构;支持 OpenAI/Google/DashScope、多比例与参考图生成。", + "localPaths": [ + "/skills/third-party/baoyu-image-gen/SKILL.md" + ], + "sourcePageUrl": "https://skills.sh/jimliu/baoyu-skills/baoyu-image-gen", + "sourceRepoUrl": "https://github.com/jimliu/baoyu-skills", + "sourcePath": "skills/baoyu-image-gen", + "license": null, + "category": "设计与体验" + }, + { + "id": "shadcn-ui", + "title": "shadcn/ui", + "titleEn": "shadcn/ui", + "titleZh": "shadcn 组件体系", + "description": "使用场景:React + Tailwind 项目搭建/扩展 shadcn/ui 组件体系;侧重可访问性、表单模式、主题变量与组件工程化复用。", + "localPaths": [ + "/skills/third-party/shadcn-ui/SKILL.md" + ], + "sourcePageUrl": "https://skills.sh/giuseppe-trisciuoglio/developer-kit/shadcn-ui", + "sourceRepoUrl": "https://github.com/giuseppe-trisciuoglio/developer-kit", + "sourcePath": "plugins/developer-kit-typescript/skills/shadcn-ui", + "license": null, + "category": "开发与实现" + }, + { + "id": "ant-design", + "title": "Ant Design", + "titleEn": "Ant Design", + "titleZh": "Ant Design 企业后台", + "description": "使用场景:企业后台/管理系统采用 antd 6 + Pro + X 时的组件选型与架构决策;强调 token 主题、SSR、CRUD 与 AI 聊天 UI 模式。", + "localPaths": [ + "/skills/third-party/ant-design/SKILL.md" + ], + "sourcePageUrl": "https://skills.sh/ant-design/antd-skill/ant-design", + "sourceRepoUrl": "https://github.com/ant-design/antd-skill", + "sourcePath": "skills/ant-design", + "license": null, + "category": "开发与实现" + }, + { + "id": "stitch-skills", + "title": "Stitch Skills", + "titleEn": "Stitch Skills", + "titleZh": "Stitch 主流程编排", + "description": "使用场景:以 spec.md 驱动 Stitch 设计并确认后再生成代码;统一编排 design-md、stitch-loop、react-components,避免跳过设计 gate。", + "localPaths": [ + "/skills/third-party/stitch-skills/stitch-main-workflow/SKILL.md" + ], + "sourcePageUrl": "https://github.com/google-labs-code/stitch-skills", + "sourceRepoUrl": "https://github.com/google-labs-code/stitch-skills", + "sourcePaths": [ + "skills/design-md", + "skills/react-components", + "skills/stitch-loop" + ], + "license": "Apache-2.0", + "category": "开发与实现" + }, + { + "id": "gemini-cli-uiux", + "title": "Gemini CLI UI/UX", + "titleEn": "Gemini CLI UI/UX", + "titleZh": "Gemini 设计", + "description": "AI 直接调用 Gemini CLI 进行 UI/UX 设计与落地", + "localPaths": [ + "/skills/gemini-cli-uiux/SKILL.md" + ], + "activeTabs": [ + "prototypes" + ], + "license": null, + "category": "开发与实现" + }, + { + "id": "design-bid-proposals", + "title": "Design Bid Proposals", + "titleEn": "Design Bid Proposals", + "titleZh": "设计比稿三案", + "description": "使用场景:在原型或组件新建时默认生成 A 稳健型、B 平衡型、C 突破型三案;严格在 3–6 个未锁死维度上拉开差异,并输出差异对比表与推荐方向。", + "localPaths": [ + "/skills/design-bid-proposals/SKILL.md" + ], + "license": null, + "category": "设计与体验" + }, + { + "id": "pencil-sync-after-prototype-workflow", + "title": "Pencil Sync After Prototype Workflow", + "titleEn": "Pencil Sync After Prototype Workflow", + "titleZh": "原型后置 Pencil 同步", + "description": "使用场景:先完成 spec.md 与 index.tsx 原型实现,再 1:1 回建 Pencil,并要求后续代码、规格与 .pen 强同步。", + "localPaths": [ + "/skills/pencil-sync-after-prototype-workflow/SKILL.md" + ], + "activeTabs": [ + "prototypes" + ], + "license": null, + "category": "开发与实现" + }, + { + "id": "taste-skill", + "title": "Design Taste", + "titleEn": "Design Taste", + "titleZh": "高品质前端设计", + "description": "使用场景:打造高品质、去 AI 味的前端界面;通过设计方差、动效强度、视觉密度三个维度精确控制输出风格,内置反 AI 模板化规则与高端设计灵感库。", + "localPaths": [ + "/skills/third-party/taste-skill/SKILL.md" + ], + "sourceRepoUrl": "https://github.com/Leonxlnx/taste-skill", + "sourcePath": "taste-skill", + "license": null, + "category": "设计与体验" + } + ] +} diff --git a/axhub-make/.axhub/make/skills/theme-skills-manifest.default.json b/axhub-make/.axhub/make/skills/theme-skills-manifest.default.json new file mode 100644 index 0000000..eea5ffe --- /dev/null +++ b/axhub-make/.axhub/make/skills/theme-skills-manifest.default.json @@ -0,0 +1,64 @@ +{ + "version": 1, + "generatedAt": "2026-03-28", + "skills": [ + { + "id": "tailwind-design-system", + "title": "Tailwind Design System", + "titleZh": "Tailwind 设计系统", + "description": "用于基于 Tailwind CSS v4 设计和落地可扩展主题系统,覆盖 token、变量、组件模式与响应式规范。", + "defaultSelected": true, + "localPaths": [ + "/skills/third-party/tailwind-design-system/SKILL.md" + ], + "category": "开发与实现" + }, + { + "id": "theme-factory", + "title": "Theme Factory", + "titleZh": "主题工厂", + "description": "用于快速构建和应用视觉主题方案,包含颜色体系与字体搭配参考,适合主题风格探索与定稿。", + "defaultSelected": false, + "localPaths": [ + "/skills/third-party/theme-factory/SKILL.md" + ], + "category": "设计与体验" + }, + { + "id": "ui-ux-pro-max", + "title": "UI/UX Pro Max", + "titleZh": "UI/UX 专家指南", + "description": "用于补充 UI/UX 规则库与评审清单,覆盖可访问性、色板、排版、交互、响应式与性能优化建议。", + "defaultSelected": false, + "localPaths": [ + "/skills/ui-ux-pro-max/SKILL.md" + ], + "category": "设计与体验" + }, + { + "id": "ui-design-brain", + "title": "UI Design Brain", + "titleZh": "UI 设计大脑", + "description": "用于基于 60+ 真实组件模式与界面最佳实践来辅助主题和界面风格设计,减少通用 AI 模板感。", + "defaultSelected": false, + "localPaths": [ + "/skills/third-party/ui-design-brain/SKILL.md" + ], + "sourceRepoUrl": "https://github.com/carmahhawwari/ui-design-brain", + "sourcePath": ".", + "license": "MIT", + "category": "设计与体验" + }, + { + "id": "gemini-cli-uiux", + "title": "Gemini CLI UI/UX", + "titleZh": "Gemini 设计", + "description": "AI 直接调用 Gemini CLI 进行 UI/UX 设计与落地", + "defaultSelected": false, + "localPaths": [ + "/skills/gemini-cli-uiux/SKILL.md" + ], + "category": "设计与体验" + } + ] +} diff --git a/axhub-make/.gitignore b/axhub-make/.gitignore new file mode 100644 index 0000000..4a156ab --- /dev/null +++ b/axhub-make/.gitignore @@ -0,0 +1,123 @@ +# Dependencies +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +# Build outputs +dist/ +tests/ +vite-plugins/**/*.test.ts +*.tsbuildinfo + +# Vite +.vite/ +vite.config.*.timestamp-* + +# Environment variables +.env +.env.local +.env.*.local +.env.production +.env.development + +# Local configuration (runtime-generated) +.axhub/make/* +!.axhub/make/skills/ +!.axhub/make/README.md +.axhub/make/skills/*.json +!.axhub/make/skills/*.default.json +components.json +.dev-server-info.json +entries.json + +# IDE and editors +.idea/ +.obsidian/ +.claude/ +.trae/ +/.drafts/ +*.swp +*.swo +*~ +.DS_Store +*.sublime-project +*.sublime-workspace + +# OS files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +Desktop.ini + +# Logs +logs/ +*.log + +# Temporary files +*.tmp +*.temp +.cache/ + +# Coverage reports +coverage/ +*.lcov +.nyc_output/ + +# TypeScript +*.tsbuildinfo + +# Optional npm cache directory +.npm +.npm-cache/ + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# parcel-bundler cache +.parcel-cache + +# Next.js +.next/ +out/ + +# Nuxt.js +.nuxt/ + +# Storybook build outputs +storybook-static/ + +# Temporary folders +tmp/ +temp/ + +# Git version management temporary files +.git-versions/ + +# Database files (keep directory structure and initial data) +# assets/database/*.json +# !assets/database/.gitkeep diff --git a/axhub-make/.vscode/launch.json b/axhub-make/.vscode/launch.json new file mode 100644 index 0000000..0f47640 --- /dev/null +++ b/axhub-make/.vscode/launch.json @@ -0,0 +1,21 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Axhub Make (Vite)", + "type": "node-terminal", + "request": "launch", + "command": "npm run dev", + "cwd": "${workspaceFolder}" + }, + ], + "compounds": [ + { + "name": "Dev + Ref Center", + "configurations": [ + "Axhub Make (Vite)", + "Chrome: Ref Center" + ] + } + ] +} diff --git a/axhub-make/.vscode/settings.json b/axhub-make/.vscode/settings.json new file mode 100644 index 0000000..7a73a41 --- /dev/null +++ b/axhub-make/.vscode/settings.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file diff --git a/axhub-make/AGENTS.md b/axhub-make/AGENTS.md new file mode 100644 index 0000000..a4b119e --- /dev/null +++ b/axhub-make/AGENTS.md @@ -0,0 +1,64 @@ + + +# Agents 工作流程说明 + +本项目为目标用户开发原型,需要 Agents 扮演产品经理、 UI/UX设计师和前端开发的复合角色。 + +## 🧭 工作流程 + +### 场景 1:新建或更新原型(主场景) + +| 步骤 | 说明 | 参考文档 | +|------|------|----------| +| ① 阅读规范与资料 | 系统规则 + 用户提供的资料与参考 | — | +| ② 需求对齐(可选) | 用户要求时启动,澄清需求,确认后才继续 | — | +| ③ 原型/组件设计 | 确定布局与视觉方向,产出 `spec.md` | `rules/design-guide.md` | +| ④ 开发与验收 | 根据 spec 实现原型/组件并完成验收 | `rules/development-guide.md` | + +> **复杂原型管理**:优先通过普通原型目录或原型内部模块组织复杂页面,避免依赖特殊命名约定。 + +### 场景 2:资源管理 + +| 步骤 | 说明 | 参考文档 | +|------|------|----------| +| ① 阅读资源规则 | 查看资产目录与已有资源 | `rules/resource-management-guide.md` | +| ② 需求对齐(可选) | 澄清输出目标、范围与位置 | — | +| ③ 新增/更新资源 | 按规范放置、命名与维护 | 按类型分别参考下表 | + +**资源类型与对应文档:** + +| 资源类型 | 目录 | 参考文档 | +|----------|------|----------| +| 项目文档 | `src/docs/` | `rules/documentation-guide.md` | +| 主题 | `src/themes/` | `rules/theme-guide.md` | +| 数据表 | `src/database/` | `src/database/README.md` | +| 文档配图等附属资源 | `src/docs/assets/` | `rules/resource-management-guide.md` | + +## ⚠️ 重要原则 + +1. **文档与代码同步** + - 修改代码时,必须同步更新对应的 `spec.md` 规格文档 + - 修改 `spec.md` 时,必须同步更新对应的代码实现 + +2. **完整阅读文档资料** + - 必须仔细阅读用户提供的所有文档和资料 + - 必须查看上下文中提供的相关规则和参考文件 + +3. **自主完成所有操作** + - 用户不懂开发技术,无法执行任何 CLI 命令 + - 不得省略验收流程 + +4. **积极使用子代理(Sub-agent)** + - 对于批量任务(如同时修改多个文件、批量生成资源)或复杂任务(如涉及多步骤流水线),应主动拆分为独立子任务并分派给子代理并行执行 + +## 项目结构 +``` +├── src/ +│ ├── common/ # 公共类型和工具 +│ ├── components/ # 组件目录 +│ ├── prototypes/ # 原型目录 +│ ├── docs/ # 项目文档 +│ ├── themes/ # 主题配置 +│ └── database/ # 页面可直接消费的数据表 +└── skills/ # 项目技能与工作流 +``` diff --git a/axhub-make/AGENTS.template.md b/axhub-make/AGENTS.template.md new file mode 100644 index 0000000..d5515fd --- /dev/null +++ b/axhub-make/AGENTS.template.md @@ -0,0 +1,64 @@ +{{PROJECT_INFO_SECTION}} + +# Agents 工作流程说明 + +本项目为目标用户开发原型,需要 Agents 扮演产品经理、 UI/UX设计师和前端开发的复合角色。 + +## 🧭 工作流程 + +### 场景 1:新建或更新原型(主场景) + +| 步骤 | 说明 | 参考文档 | +|------|------|----------| +| ① 阅读规范与资料 | 系统规则 + 用户提供的资料与参考 | — | +| ② 需求对齐(可选) | 用户要求时启动,澄清需求,确认后才继续 | — | +| ③ 原型/组件设计 | 确定布局与视觉方向,产出 `spec.md` | `rules/design-guide.md` | +| ④ 开发与验收 | 根据 spec 实现原型/组件并完成验收 | `rules/development-guide.md` | + +> **复杂原型管理**:优先通过普通原型目录或原型内部模块组织复杂页面,避免依赖特殊命名约定。 + +### 场景 2:资源管理 + +| 步骤 | 说明 | 参考文档 | +|------|------|----------| +| ① 阅读资源规则 | 查看资产目录与已有资源 | `rules/resource-management-guide.md` | +| ② 需求对齐(可选) | 澄清输出目标、范围与位置 | — | +| ③ 新增/更新资源 | 按规范放置、命名与维护 | 按类型分别参考下表 | + +**资源类型与对应文档:** + +| 资源类型 | 目录 | 参考文档 | +|----------|------|----------| +| 项目文档 | `src/docs/` | `rules/documentation-guide.md` | +| 主题 | `src/themes/` | `rules/theme-guide.md` | +| 数据表 | `src/database/` | `src/database/README.md` | +| 文档配图等附属资源 | `src/docs/assets/` | `rules/resource-management-guide.md` | + +## ⚠️ 重要原则 + +1. **文档与代码同步** + - 修改代码时,必须同步更新对应的 `spec.md` 规格文档 + - 修改 `spec.md` 时,必须同步更新对应的代码实现 + +2. **完整阅读文档资料** + - 必须仔细阅读用户提供的所有文档和资料 + - 必须查看上下文中提供的相关规则和参考文件 + +3. **自主完成所有操作** + - 用户不懂开发技术,无法执行任何 CLI 命令 + - 不得省略验收流程 + +4. **积极使用子代理(Sub-agent)** + - 对于批量任务(如同时修改多个文件、批量生成资源)或复杂任务(如涉及多步骤流水线),应主动拆分为独立子任务并分派给子代理并行执行 + +## 项目结构 +``` +├── src/ +│ ├── common/ # 公共类型和工具 +│ ├── components/ # 组件目录 +│ ├── prototypes/ # 原型目录 +│ ├── docs/ # 项目文档 +│ ├── themes/ # 主题配置 +│ └── database/ # 页面可直接消费的数据表 +└── skills/ # 项目技能与工作流 +``` diff --git a/axhub-make/CLAUDE.md b/axhub-make/CLAUDE.md new file mode 100644 index 0000000..a4b119e --- /dev/null +++ b/axhub-make/CLAUDE.md @@ -0,0 +1,64 @@ + + +# Agents 工作流程说明 + +本项目为目标用户开发原型,需要 Agents 扮演产品经理、 UI/UX设计师和前端开发的复合角色。 + +## 🧭 工作流程 + +### 场景 1:新建或更新原型(主场景) + +| 步骤 | 说明 | 参考文档 | +|------|------|----------| +| ① 阅读规范与资料 | 系统规则 + 用户提供的资料与参考 | — | +| ② 需求对齐(可选) | 用户要求时启动,澄清需求,确认后才继续 | — | +| ③ 原型/组件设计 | 确定布局与视觉方向,产出 `spec.md` | `rules/design-guide.md` | +| ④ 开发与验收 | 根据 spec 实现原型/组件并完成验收 | `rules/development-guide.md` | + +> **复杂原型管理**:优先通过普通原型目录或原型内部模块组织复杂页面,避免依赖特殊命名约定。 + +### 场景 2:资源管理 + +| 步骤 | 说明 | 参考文档 | +|------|------|----------| +| ① 阅读资源规则 | 查看资产目录与已有资源 | `rules/resource-management-guide.md` | +| ② 需求对齐(可选) | 澄清输出目标、范围与位置 | — | +| ③ 新增/更新资源 | 按规范放置、命名与维护 | 按类型分别参考下表 | + +**资源类型与对应文档:** + +| 资源类型 | 目录 | 参考文档 | +|----------|------|----------| +| 项目文档 | `src/docs/` | `rules/documentation-guide.md` | +| 主题 | `src/themes/` | `rules/theme-guide.md` | +| 数据表 | `src/database/` | `src/database/README.md` | +| 文档配图等附属资源 | `src/docs/assets/` | `rules/resource-management-guide.md` | + +## ⚠️ 重要原则 + +1. **文档与代码同步** + - 修改代码时,必须同步更新对应的 `spec.md` 规格文档 + - 修改 `spec.md` 时,必须同步更新对应的代码实现 + +2. **完整阅读文档资料** + - 必须仔细阅读用户提供的所有文档和资料 + - 必须查看上下文中提供的相关规则和参考文件 + +3. **自主完成所有操作** + - 用户不懂开发技术,无法执行任何 CLI 命令 + - 不得省略验收流程 + +4. **积极使用子代理(Sub-agent)** + - 对于批量任务(如同时修改多个文件、批量生成资源)或复杂任务(如涉及多步骤流水线),应主动拆分为独立子任务并分派给子代理并行执行 + +## 项目结构 +``` +├── src/ +│ ├── common/ # 公共类型和工具 +│ ├── components/ # 组件目录 +│ ├── prototypes/ # 原型目录 +│ ├── docs/ # 项目文档 +│ ├── themes/ # 主题配置 +│ └── database/ # 页面可直接消费的数据表 +└── skills/ # 项目技能与工作流 +``` diff --git a/axhub-make/LICENSE b/axhub-make/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/axhub-make/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/axhub-make/README.md b/axhub-make/README.md new file mode 100644 index 0000000..7951119 --- /dev/null +++ b/axhub-make/README.md @@ -0,0 +1,98 @@ +> [!NOTE] +> Axhub Make 不是“又一个 AI 生成原型工具”。它是一条从 **需求** 到 **文档** 到 **原型** 再到 **交付(Axure / Figma / Html)** 的工作流。 + +# 跳过这个 README 吧 + +读文档的时代已经过去了。直接把下面这行发给你的 Agent: + +``` +阅读这个 README,并告诉我它为什么不只是又一个 AI 生成原型工具: +https://raw.githubusercontent.com/lintendo/Axhub-Make/refs/heads/main/README.md +``` + +# Axhub Make + +一个给 **产品**、**设计师** 和 **AI Agent** 用的原型与文档协作工作流。 + +官网:[https://axhub.im/make/](https://axhub.im/make/) + +你说清楚要什么,Make 会把它变成: + +- 可以跑的交互原型(不是截图,不是 PPT) +- 完整的多类型文档(需求文档、用户故事、规格文档等) +- 可持续复用的资源资产(主题、组件、数据表等) +- 可导出的交付物(Axure / Figma / Html) + +--- + +## 安装 + +统一交给 AI Agent 安装。把下面这段直接发给你的 Agent(Claude Code、TRAE、Cursor 等): + +``` +请根据这里的说明安装并配置 Axhub Make: +https://raw.githubusercontent.com/lintendo/Axhub-Make/refs/heads/main/rules/installation-guide.md +``` + +--- + +## 核心亮点 + +Axhub Make 把「原型生成」变成「可执行工作流」,核心能力如下: + +- 可视化管理原型和文档,不懂开发的产品和设计师也能直接使用 +- 内置 30+ 专业的原型生成与文档协作技能(`skills`) +- 内置项目与资源管理和生成能力,让 AI 持续产出视觉风格一致、逻辑统一的原型和文档 +- 内置记忆系统,通过文档持续沉淀项目记忆,让 AI 越来越懂你和项目 +- 内置 `spec` 驱动的原型生成机制,减少 AI 生成过程中的幻觉和偏题 +- 支持从 Axure、V0、Stitch、AIStudio 以及任意网页导入原型或资源 +- 支持导出到 Axure 或 Figma,完美融入原有工作流 + + +### 三大产物 + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
内容你会在仓库里看到什么为什么重要
原型src/prototypes/用于评审真实交互和业务流程,不再只看静态稿。可通过普通原型目录和原型内部模块组织页面结构
文档src/docs/按专门文档编写流程沉淀信息,支撑协作、评审与复盘
资源src/themes/src/components/src/database/统一管理主题、组件、数据表,保证持续生成的一致性
+ +--- + +## 给 Agent 的入职材料 + +你可以把下面这段直接贴给 Agent,当作“入职说明”: + +``` +你正在 Axhub Make 仓库中工作。 + +请阅读并遵循: +- AGENTS.md(工作流与原则) +- rules/README.md(规则索引与命名体系) + +你必须: +- 以产品经理 + UI/UX 设计师 + 前端工程师的复合角色开展工作 +- 遵循项目的文档编写流程,并维护必要文档 +- 持续实现并维护可运行的原型、文档和可复用资源 +``` diff --git a/axhub-make/admin/assets/AppDialogProvider.css b/axhub-make/admin/assets/AppDialogProvider.css new file mode 100644 index 0000000..b6f5ba3 --- /dev/null +++ b/axhub-make/admin/assets/AppDialogProvider.css @@ -0,0 +1 @@ +/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-space-x-reverse:0}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-amber-50:oklch(98.7% .022 95.277);--color-amber-100:oklch(96.2% .059 95.617);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-300:oklch(87.9% .169 91.605);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-amber-600:oklch(66.6% .179 58.318);--color-amber-700:oklch(55.5% .163 48.998);--color-amber-800:oklch(47.3% .137 46.201);--color-amber-900:oklch(41.4% .112 45.904);--color-amber-950:oklch(27.9% .077 45.635);--color-green-50:oklch(98.2% .018 155.826);--color-green-100:oklch(96.2% .044 156.743);--color-green-300:oklch(87.1% .15 154.449);--color-green-400:oklch(79.2% .209 151.711);--color-green-600:oklch(62.7% .194 149.214);--color-green-700:oklch(52.7% .154 150.069);--color-green-900:oklch(39.3% .095 152.535);--color-green-950:oklch(26.6% .065 152.934);--color-emerald-50:oklch(97.9% .021 166.113);--color-emerald-100:oklch(95% .052 163.051);--color-emerald-200:oklch(90.5% .093 164.15);--color-emerald-300:oklch(84.5% .143 164.978);--color-emerald-500:oklch(69.6% .17 162.48);--color-emerald-600:oklch(59.6% .145 163.225);--color-emerald-700:oklch(50.8% .118 165.612);--color-emerald-800:oklch(43.2% .095 166.913);--color-emerald-900:oklch(37.8% .077 168.94);--color-cyan-500:oklch(71.5% .143 215.221);--color-sky-500:oklch(68.5% .169 237.323);--color-blue-50:oklch(97% .014 254.604);--color-blue-100:oklch(93.2% .032 255.585);--color-blue-200:oklch(88.2% .059 254.128);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-700:oklch(48.8% .243 264.376);--color-blue-900:oklch(37.9% .146 265.522);--color-blue-950:oklch(28.2% .091 267.935);--color-violet-500:oklch(60.6% .25 292.717);--color-pink-500:oklch(65.6% .241 354.308);--color-rose-500:oklch(64.5% .246 16.439);--color-slate-500:oklch(55.4% .046 257.417);--color-slate-950:oklch(12.9% .042 264.695);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--container-sm:24rem;--container-md:28rem;--container-lg:32rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--text-7xl:4.5rem;--text-7xl--line-height:1;--text-8xl:6rem;--text-8xl--line-height:1;--text-9xl:8rem;--text-9xl--line-height:1;--font-weight-thin:100;--font-weight-extralight:200;--font-weight-light:300;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tight:-.025em;--tracking-wide:.025em;--tracking-widest:.1em;--leading-tight:1.25;--leading-snug:1.375;--leading-normal:1.5;--leading-relaxed:1.625;--leading-loose:2;--radius-2xl:1rem;--radius-3xl:1.5rem;--shadow-xs:0 1px 2px 0 #0000000d;--shadow-sm:0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;--shadow-md:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.inset-y-0{inset-block:calc(var(--spacing)*0)}.\!top-6{top:calc(var(--spacing)*6)!important}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-4{top:calc(var(--spacing)*4)}.top-5{top:calc(var(--spacing)*5)}.top-\[50\%\]{top:50%}.right-0{right:calc(var(--spacing)*0)}.right-2{right:calc(var(--spacing)*2)}.right-4{right:calc(var(--spacing)*4)}.right-5{right:calc(var(--spacing)*5)}.right-\[-8px\]{right:-8px}.bottom-0{bottom:calc(var(--spacing)*0)}.left-0{left:calc(var(--spacing)*0)}.left-1\/2{left:50%}.left-2{left:calc(var(--spacing)*2)}.left-\[-8px\]{left:-8px}.left-\[50\%\]{left:50%}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-50{z-index:50}.z-\[100\]{z-index:100}.z-\[120\]{z-index:120}.z-\[2000\]{z-index:2000}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.m-0{margin:calc(var(--spacing)*0)}.-mx-1{margin-inline:calc(var(--spacing)*-1)}.mx-0\.5{margin-inline:calc(var(--spacing)*.5)}.mx-auto{margin-inline:auto}.my-1{margin-block:calc(var(--spacing)*1)}.my-5{margin-block:calc(var(--spacing)*5)}.mt-0{margin-top:calc(var(--spacing)*0)}.mt-0\.5{margin-top:calc(var(--spacing)*.5)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-5{margin-top:calc(var(--spacing)*5)}.mt-6{margin-top:calc(var(--spacing)*6)}.mt-auto{margin-top:auto}.mr-0{margin-right:calc(var(--spacing)*0)}.mr-1\.5{margin-right:calc(var(--spacing)*1.5)}.mr-2{margin-right:calc(var(--spacing)*2)}.mb-0{margin-bottom:calc(var(--spacing)*0)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-1\.5{margin-bottom:calc(var(--spacing)*1.5)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-2\.5{margin-bottom:calc(var(--spacing)*2.5)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.ml-0{margin-left:calc(var(--spacing)*0)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-2{margin-left:calc(var(--spacing)*2)}.ml-7{margin-left:calc(var(--spacing)*7)}.ml-auto{margin-left:auto}.line-clamp-1{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-2{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.\!flex{display:flex!important}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.table{display:table}.aspect-square{aspect-ratio:1}.size-2\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.h-0{height:calc(var(--spacing)*0)}.h-2{height:calc(var(--spacing)*2)}.h-2\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-3\.5{height:calc(var(--spacing)*3.5)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-7{height:calc(var(--spacing)*7)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-11{height:calc(var(--spacing)*11)}.h-12{height:calc(var(--spacing)*12)}.h-14{height:calc(var(--spacing)*14)}.h-16{height:calc(var(--spacing)*16)}.h-48{height:calc(var(--spacing)*48)}.h-\[2px\]{height:2px}.h-\[320px\]{height:320px}.h-\[360px\]{height:360px}.h-\[560px\]{height:560px}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.h-px{height:1px}.max-h-48{max-height:calc(var(--spacing)*48)}.max-h-72{max-height:calc(var(--spacing)*72)}.max-h-96{max-height:calc(var(--spacing)*96)}.max-h-\[80vh\]{max-height:80vh}.max-h-\[140px\]{max-height:140px}.max-h-\[160px\]{max-height:160px}.max-h-\[300px\]{max-height:300px}.max-h-\[calc\(100vh-3rem\)\]{max-height:calc(100vh - 3rem)}.max-h-none{max-height:none}.min-h-0{min-height:calc(var(--spacing)*0)}.min-h-5{min-height:calc(var(--spacing)*5)}.min-h-9{min-height:calc(var(--spacing)*9)}.min-h-\[84px\]{min-height:84px}.min-h-\[96px\]{min-height:96px}.min-h-\[150px\]{min-height:150px}.w-0{width:calc(var(--spacing)*0)}.w-2{width:calc(var(--spacing)*2)}.w-2\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-3\.5{width:calc(var(--spacing)*3.5)}.w-3\/4{width:75%}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-6{width:calc(var(--spacing)*6)}.w-7{width:calc(var(--spacing)*7)}.w-8{width:calc(var(--spacing)*8)}.w-9{width:calc(var(--spacing)*9)}.w-10{width:calc(var(--spacing)*10)}.w-14{width:calc(var(--spacing)*14)}.w-16{width:calc(var(--spacing)*16)}.w-40{width:calc(var(--spacing)*40)}.w-44{width:calc(var(--spacing)*44)}.w-48{width:calc(var(--spacing)*48)}.w-64{width:calc(var(--spacing)*64)}.w-72{width:calc(var(--spacing)*72)}.w-\[240px\]{width:240px}.w-\[280px\]{width:280px}.w-\[calc\(100\%-2rem\)\]{width:calc(100% - 2rem)}.w-\[min\(90vw\,860px\)\]{width:min(90vw,860px)}.w-\[min\(92vw\,520px\)\]{width:min(92vw,520px)}.w-\[min\(92vw\,620px\)\]{width:min(92vw,620px)}.w-\[var\(--radix-popover-trigger-width\)\]{width:var(--radix-popover-trigger-width)}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-max{width:max-content}.w-px{width:1px}.max-w-\[220px\]{max-width:220px}.max-w-\[280px\]{max-width:280px}.max-w-\[340px\]{max-width:340px}.max-w-\[360px\]{max-width:360px}.max-w-\[480px\]{max-width:480px}.max-w-\[520px\]{max-width:520px}.max-w-\[620px\]{max-width:620px}.max-w-\[640px\]{max-width:640px}.max-w-\[760px\]{max-width:760px}.max-w-\[780px\]{max-width:780px}.max-w-\[860px\]{max-width:860px}.max-w-full{max-width:100%}.max-w-lg{max-width:var(--container-lg)}.max-w-md{max-width:var(--container-md)}.max-w-none{max-width:none}.max-w-xs{max-width:var(--container-xs)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\[8rem\]{min-width:8rem}.min-w-\[36px\]{min-width:36px}.min-w-\[76px\]{min-width:76px}.min-w-\[100px\]{min-width:100px}.min-w-\[132px\]{min-width:132px}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.min-w-full{min-width:100%}.flex-1{flex:1}.flex-auto{flex:auto}.flex-initial{flex:0 auto}.flex-none{flex:none}.flex-shrink{flex-shrink:1}.flex-shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.grow-0{flex-grow:0}.basis-0{flex-basis:calc(var(--spacing)*0)}.caption-bottom{caption-side:bottom}.origin-\(--radix-tooltip-content-transform-origin\){transform-origin:var(--radix-tooltip-content-transform-origin)}.origin-center{transform-origin:50%}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-\[-50\%\]{--tw-translate-x:-50%;translate:var(--tw-translate-x)var(--tw-translate-y)}.\!translate-y-0{--tw-translate-y:calc(var(--spacing)*0)!important;translate:var(--tw-translate-x)var(--tw-translate-y)!important}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[-50\%\]{--tw-translate-y:-50%;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[calc\(-50\%_-_2px\)\]{--tw-translate-y: calc(-50% - 2px) ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.rotate-90{rotate:90deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.animate-spin{animation:var(--animate-spin)}.cursor-auto{cursor:auto}.cursor-default{cursor:default}.cursor-move{cursor:move}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.cursor-wait{cursor:wait}.touch-none{touch-action:none}.resize{resize:both}.resize-none{resize:none}.resize-y{resize:vertical}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.grid-cols-\[minmax\(0\,1fr\)_auto_minmax\(0\,1fr\)\]{grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)}.\!flex-col{flex-direction:column!important}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-nowrap{flex-wrap:nowrap}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.content-around{align-content:space-around}.content-between{align-content:space-between}.content-center{align-content:center}.content-end{align-content:flex-end}.content-evenly{align-content:space-evenly}.content-start{align-content:flex-start}.content-stretch{align-content:stretch}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-around{justify-content:space-around}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-evenly{justify-content:space-evenly}.justify-start{justify-content:flex-start}.gap-0{gap:calc(var(--spacing)*0)}.gap-0\.5{gap:calc(var(--spacing)*.5)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-2\.5{gap:calc(var(--spacing)*2.5)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}.gap-24{gap:calc(var(--spacing)*24)}:where(.\!space-y-0>:not(:last-child)){--tw-space-y-reverse:0!important;margin-block-start:calc(calc(var(--spacing)*0)*var(--tw-space-y-reverse))!important;margin-block-end:calc(calc(var(--spacing)*0)*calc(1 - var(--tw-space-y-reverse)))!important}:where(.space-y-0\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*8)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-y-reverse)))}.self-auto{align-self:auto}.self-baseline{align-self:baseline}.self-center{align-self:center}.self-end{align-self:flex-end}.self-start{align-self:flex-start}.self-stretch{align-self:stretch}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-x-scroll{overflow-x:scroll}.overflow-x-visible{overflow-x:visible}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.overflow-y-scroll{overflow-y:scroll}.overflow-y-visible{overflow-y:visible}.overscroll-contain{overscroll-behavior:contain}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.rounded-\[2px\]{border-radius:2px}.rounded-\[4px\]{border-radius:4px}.rounded-\[18px\]{border-radius:18px}.rounded-\[24px\]{border-radius:24px}.rounded-\[32px\]{border-radius:32px}.rounded-\[40px\]{border-radius:40px}.rounded-\[inherit\]{border-radius:inherit}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-none{border-radius:0}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.rounded-xl{border-radius:calc(var(--radius) + 4px)}.rounded-l-none{border-top-left-radius:0;border-bottom-left-radius:0}.rounded-r-none{border-top-right-radius:0;border-bottom-right-radius:0}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-4{border-style:var(--tw-border-style);border-width:4px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-0{border-bottom-style:var(--tw-border-style);border-bottom-width:0}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-none{--tw-border-style:none;border-style:none}.border-amber-200{border-color:var(--color-amber-200)}.border-amber-300\/60{border-color:#ffd23699}@supports (color:color-mix(in lab,red,red)){.border-amber-300\/60{border-color:color-mix(in oklab,var(--color-amber-300)60%,transparent)}}.border-amber-300\/70{border-color:#ffd236b3}@supports (color:color-mix(in lab,red,red)){.border-amber-300\/70{border-color:color-mix(in oklab,var(--color-amber-300)70%,transparent)}}.border-blue-200{border-color:var(--color-blue-200)}.border-border,.border-border\/50{border-color:hsl(var(--border))}@supports (color:color-mix(in lab,red,red)){.border-border\/50{border-color:color-mix(in oklab,hsl(var(--border))50%,transparent)}}.border-border\/60{border-color:hsl(var(--border))}@supports (color:color-mix(in lab,red,red)){.border-border\/60{border-color:color-mix(in oklab,hsl(var(--border))60%,transparent)}}.border-border\/70{border-color:hsl(var(--border))}@supports (color:color-mix(in lab,red,red)){.border-border\/70{border-color:color-mix(in oklab,hsl(var(--border))70%,transparent)}}.border-emerald-200{border-color:var(--color-emerald-200)}.border-emerald-300\/70{border-color:#5ee9b5b3}@supports (color:color-mix(in lab,red,red)){.border-emerald-300\/70{border-color:color-mix(in oklab,var(--color-emerald-300)70%,transparent)}}.border-foreground,.border-foreground\/40{border-color:hsl(var(--foreground))}@supports (color:color-mix(in lab,red,red)){.border-foreground\/40{border-color:color-mix(in oklab,hsl(var(--foreground))40%,transparent)}}.border-foreground\/60{border-color:hsl(var(--foreground))}@supports (color:color-mix(in lab,red,red)){.border-foreground\/60{border-color:color-mix(in oklab,hsl(var(--foreground))60%,transparent)}}.border-input{border-color:hsl(var(--input))}.border-muted-foreground\/40{border-color:hsl(var(--muted-foreground))}@supports (color:color-mix(in lab,red,red)){.border-muted-foreground\/40{border-color:color-mix(in oklab,hsl(var(--muted-foreground))40%,transparent)}}.border-primary,.border-primary\/20{border-color:hsl(var(--primary))}@supports (color:color-mix(in lab,red,red)){.border-primary\/20{border-color:color-mix(in oklab,hsl(var(--primary))20%,transparent)}}.border-primary\/30{border-color:hsl(var(--primary))}@supports (color:color-mix(in lab,red,red)){.border-primary\/30{border-color:color-mix(in oklab,hsl(var(--primary))30%,transparent)}}.border-transparent{border-color:#0000}.border-white\/8{border-color:#ffffff14}@supports (color:color-mix(in lab,red,red)){.border-white\/8{border-color:color-mix(in oklab,var(--color-white)8%,transparent)}}.border-white\/20{border-color:#fff3}@supports (color:color-mix(in lab,red,red)){.border-white\/20{border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.border-t-transparent{border-top-color:#0000}.border-l-transparent{border-left-color:#0000}.bg-accent{background-color:hsl(var(--accent))}.bg-amber-50{background-color:var(--color-amber-50)}.bg-amber-50\/30{background-color:#fffbeb4d}@supports (color:color-mix(in lab,red,red)){.bg-amber-50\/30{background-color:color-mix(in oklab,var(--color-amber-50)30%,transparent)}}.bg-amber-50\/50{background-color:#fffbeb80}@supports (color:color-mix(in lab,red,red)){.bg-amber-50\/50{background-color:color-mix(in oklab,var(--color-amber-50)50%,transparent)}}.bg-amber-50\/60{background-color:#fffbeb99}@supports (color:color-mix(in lab,red,red)){.bg-amber-50\/60{background-color:color-mix(in oklab,var(--color-amber-50)60%,transparent)}}.bg-amber-100{background-color:var(--color-amber-100)}.bg-amber-200{background-color:var(--color-amber-200)}.bg-background{background-color:hsl(var(--background))}.bg-black\/40{background-color:#0006}@supports (color:color-mix(in lab,red,red)){.bg-black\/40{background-color:color-mix(in oklab,var(--color-black)40%,transparent)}}.bg-black\/80{background-color:#000c}@supports (color:color-mix(in lab,red,red)){.bg-black\/80{background-color:color-mix(in oklab,var(--color-black)80%,transparent)}}.bg-blue-50{background-color:var(--color-blue-50)}.bg-blue-50\/50{background-color:#eff6ff80}@supports (color:color-mix(in lab,red,red)){.bg-blue-50\/50{background-color:color-mix(in oklab,var(--color-blue-50)50%,transparent)}}.bg-border,.bg-border\/60{background-color:hsl(var(--border))}@supports (color:color-mix(in lab,red,red)){.bg-border\/60{background-color:color-mix(in oklab,hsl(var(--border))60%,transparent)}}.bg-brand,.bg-brand\/10{background-color:hsl(var(--brand))}@supports (color:color-mix(in lab,red,red)){.bg-brand\/10{background-color:color-mix(in oklab,hsl(var(--brand))10%,transparent)}}.bg-card{background-color:hsl(var(--card))}.bg-destructive,.bg-destructive\/5{background-color:hsl(var(--destructive))}@supports (color:color-mix(in lab,red,red)){.bg-destructive\/5{background-color:color-mix(in oklab,hsl(var(--destructive))5%,transparent)}}.bg-destructive\/10{background-color:hsl(var(--destructive))}@supports (color:color-mix(in lab,red,red)){.bg-destructive\/10{background-color:color-mix(in oklab,hsl(var(--destructive))10%,transparent)}}.bg-emerald-50{background-color:var(--color-emerald-50)}.bg-emerald-50\/30{background-color:#ecfdf54d}@supports (color:color-mix(in lab,red,red)){.bg-emerald-50\/30{background-color:color-mix(in oklab,var(--color-emerald-50)30%,transparent)}}.bg-emerald-50\/70{background-color:#ecfdf5b3}@supports (color:color-mix(in lab,red,red)){.bg-emerald-50\/70{background-color:color-mix(in oklab,var(--color-emerald-50)70%,transparent)}}.bg-emerald-100{background-color:var(--color-emerald-100)}.bg-foreground{background-color:hsl(var(--foreground))}.bg-green-50{background-color:var(--color-green-50)}.bg-green-100{background-color:var(--color-green-100)}.bg-input{background-color:hsl(var(--input))}.bg-muted,.bg-muted\/10{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.bg-muted\/10{background-color:color-mix(in oklab,hsl(var(--muted))10%,transparent)}}.bg-muted\/20{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.bg-muted\/20{background-color:color-mix(in oklab,hsl(var(--muted))20%,transparent)}}.bg-muted\/30{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.bg-muted\/30{background-color:color-mix(in oklab,hsl(var(--muted))30%,transparent)}}.bg-muted\/40{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.bg-muted\/40{background-color:color-mix(in oklab,hsl(var(--muted))40%,transparent)}}.bg-muted\/50{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.bg-muted\/50{background-color:color-mix(in oklab,hsl(var(--muted))50%,transparent)}}.bg-muted\/60{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.bg-muted\/60{background-color:color-mix(in oklab,hsl(var(--muted))60%,transparent)}}.bg-muted\/70{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.bg-muted\/70{background-color:color-mix(in oklab,hsl(var(--muted))70%,transparent)}}.bg-popover{background-color:hsl(var(--popover))}.bg-primary,.bg-primary\/5{background-color:hsl(var(--primary))}@supports (color:color-mix(in lab,red,red)){.bg-primary\/5{background-color:color-mix(in oklab,hsl(var(--primary))5%,transparent)}}.bg-primary\/10{background-color:hsl(var(--primary))}@supports (color:color-mix(in lab,red,red)){.bg-primary\/10{background-color:color-mix(in oklab,hsl(var(--primary))10%,transparent)}}.bg-secondary,.bg-secondary\/40{background-color:hsl(var(--secondary))}@supports (color:color-mix(in lab,red,red)){.bg-secondary\/40{background-color:color-mix(in oklab,hsl(var(--secondary))40%,transparent)}}.bg-slate-950{background-color:var(--color-slate-950)}.bg-success{background-color:hsl(var(--success))}.bg-transparent{background-color:#0000}.bg-warning{background-color:hsl(var(--warning))}.bg-white{background-color:var(--color-white)}.fill-current{fill:currentColor}.fill-foreground{fill:hsl(var(--foreground))}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.object-fill{object-fit:fill}.object-none{object-fit:none}.object-scale-down{object-fit:scale-down}.p-0{padding:calc(var(--spacing)*0)}.p-0\.5{padding:calc(var(--spacing)*.5)}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-2\.5{padding:calc(var(--spacing)*2.5)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-6{padding:calc(var(--spacing)*6)}.p-10{padding:calc(var(--spacing)*10)}.p-\[1px\]{padding:1px}.px-0{padding-inline:calc(var(--spacing)*0)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-2\.5{padding-inline:calc(var(--spacing)*2.5)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-3\.5{padding-inline:calc(var(--spacing)*3.5)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.px-8{padding-inline:calc(var(--spacing)*8)}.py-0{padding-block:calc(var(--spacing)*0)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-2\.5{padding-block:calc(var(--spacing)*2.5)}.py-3{padding-block:calc(var(--spacing)*3)}.py-3\.5{padding-block:calc(var(--spacing)*3.5)}.py-4{padding-block:calc(var(--spacing)*4)}.py-4\.5{padding-block:calc(var(--spacing)*4.5)}.py-6{padding-block:calc(var(--spacing)*6)}.py-8{padding-block:calc(var(--spacing)*8)}.pt-0{padding-top:calc(var(--spacing)*0)}.pt-0\.5{padding-top:calc(var(--spacing)*.5)}.pt-1{padding-top:calc(var(--spacing)*1)}.pt-2{padding-top:calc(var(--spacing)*2)}.pt-3{padding-top:calc(var(--spacing)*3)}.pt-5{padding-top:calc(var(--spacing)*5)}.pr-1{padding-right:calc(var(--spacing)*1)}.pr-2{padding-right:calc(var(--spacing)*2)}.pr-7{padding-right:calc(var(--spacing)*7)}.pb-0{padding-bottom:calc(var(--spacing)*0)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pb-6{padding-bottom:calc(var(--spacing)*6)}.pl-8{padding-left:calc(var(--spacing)*8)}.text-center{text-align:center}.text-justify{text-align:justify}.text-left{text-align:left}.text-right{text-align:right}.align-middle{vertical-align:middle}.align-top{vertical-align:top}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.text-6xl{font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}.text-7xl{font-size:var(--text-7xl);line-height:var(--tw-leading,var(--text-7xl--line-height))}.text-8xl{font-size:var(--text-8xl);line-height:var(--tw-leading,var(--text-8xl--line-height))}.text-9xl{font-size:var(--text-9xl);line-height:var(--tw-leading,var(--text-9xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[12px\]{font-size:12px}.text-\[13px\]{font-size:13px}.text-\[14px\]{font-size:14px}.text-\[15px\]{font-size:15px}.text-\[18px\]{font-size:18px}.text-\[24px\]{font-size:24px}.text-\[28px\]{font-size:28px}.leading-4{--tw-leading:calc(var(--spacing)*4);line-height:calc(var(--spacing)*4)}.leading-5{--tw-leading:calc(var(--spacing)*5);line-height:calc(var(--spacing)*5)}.leading-6{--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6)}.leading-7{--tw-leading:calc(var(--spacing)*7);line-height:calc(var(--spacing)*7)}.leading-\[16px\]{--tw-leading:16px;line-height:16px}.leading-loose{--tw-leading:var(--leading-loose);line-height:var(--leading-loose)}.leading-none{--tw-leading:1;line-height:1}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-snug{--tw-leading:var(--leading-snug);line-height:var(--leading-snug)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-extralight{--tw-font-weight:var(--font-weight-extralight);font-weight:var(--font-weight-extralight)}.font-light{--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.font-thin{--tw-font-weight:var(--font-weight-thin);font-weight:var(--font-weight-thin)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.tracking-widest{--tw-tracking:var(--tracking-widest);letter-spacing:var(--tracking-widest)}.break-normal{overflow-wrap:normal;word-break:normal}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.break-keep{word-break:keep-all}.text-ellipsis{text-overflow:ellipsis}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre{white-space:pre}.whitespace-pre-line{white-space:pre-line}.whitespace-pre-wrap{white-space:pre-wrap}.\!text-white{color:var(--color-white)!important}.text-accent-foreground{color:hsl(var(--accent-foreground))}.text-amber-500{color:var(--color-amber-500)}.text-amber-600{color:var(--color-amber-600)}.text-amber-700{color:var(--color-amber-700)}.text-amber-900{color:var(--color-amber-900)}.text-background{color:hsl(var(--background))}.text-blue-700{color:var(--color-blue-700)}.text-blue-900{color:var(--color-blue-900)}.text-brand{color:hsl(var(--brand))}.text-card-foreground{color:hsl(var(--card-foreground))}.text-current{color:currentColor}.text-cyan-500{color:var(--color-cyan-500)}.text-destructive{color:hsl(var(--destructive))}.text-destructive-foreground{color:hsl(var(--destructive-foreground))}.text-emerald-500{color:var(--color-emerald-500)}.text-emerald-600{color:var(--color-emerald-600)}.text-emerald-700{color:var(--color-emerald-700)}.text-emerald-800{color:var(--color-emerald-800)}.text-emerald-900{color:var(--color-emerald-900)}.text-foreground,.text-foreground\/90{color:hsl(var(--foreground))}@supports (color:color-mix(in lab,red,red)){.text-foreground\/90{color:color-mix(in oklab,hsl(var(--foreground))90%,transparent)}}.text-green-600{color:var(--color-green-600)}.text-green-600\/70{color:#00a544b3}@supports (color:color-mix(in lab,red,red)){.text-green-600\/70{color:color-mix(in oklab,var(--color-green-600)70%,transparent)}}.text-green-700{color:var(--color-green-700)}.text-muted-foreground,.text-muted-foreground\/60{color:hsl(var(--muted-foreground))}@supports (color:color-mix(in lab,red,red)){.text-muted-foreground\/60{color:color-mix(in oklab,hsl(var(--muted-foreground))60%,transparent)}}.text-muted-foreground\/70{color:hsl(var(--muted-foreground))}@supports (color:color-mix(in lab,red,red)){.text-muted-foreground\/70{color:color-mix(in oklab,hsl(var(--muted-foreground))70%,transparent)}}.text-muted-foreground\/75{color:hsl(var(--muted-foreground))}@supports (color:color-mix(in lab,red,red)){.text-muted-foreground\/75{color:color-mix(in oklab,hsl(var(--muted-foreground))75%,transparent)}}.text-muted-foreground\/80{color:hsl(var(--muted-foreground))}@supports (color:color-mix(in lab,red,red)){.text-muted-foreground\/80{color:color-mix(in oklab,hsl(var(--muted-foreground))80%,transparent)}}.text-pink-500{color:var(--color-pink-500)}.text-popover-foreground{color:hsl(var(--popover-foreground))}.text-primary{color:hsl(var(--primary))}.text-primary-foreground{color:hsl(var(--primary-foreground))}.text-rose-500{color:var(--color-rose-500)}.text-secondary-foreground{color:hsl(var(--secondary-foreground))}.text-sky-500{color:var(--color-sky-500)}.text-slate-500{color:var(--color-slate-500)}.text-success-foreground{color:hsl(var(--success-foreground))}.text-violet-500{color:var(--color-violet-500)}.text-warning-foreground{color:hsl(var(--warning-foreground))}.text-white\/90{color:#ffffffe6}@supports (color:color-mix(in lab,red,red)){.text-white\/90{color:color-mix(in oklab,var(--color-white)90%,transparent)}}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.normal-case{text-transform:none}.uppercase{text-transform:uppercase}.italic{font-style:italic}.not-italic{font-style:normal}.line-through{text-decoration-line:line-through}.no-underline{text-decoration-line:none}.underline{text-decoration-line:underline}.underline-offset-4{text-underline-offset:4px}.opacity-0{opacity:0}.opacity-5{opacity:.05}.opacity-10{opacity:.1}.opacity-20{opacity:.2}.opacity-25{opacity:.25}.opacity-30{opacity:.3}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-80{opacity:.8}.opacity-90{opacity:.9}.opacity-95{opacity:.95}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-0{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-1{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-transparent{--tw-ring-color:transparent}.ring-offset-background{--tw-ring-offset-color:hsl(var(--background))}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.invert{--tw-invert:invert(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.sepia{--tw-sepia:sepia(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[color\,box-shadow\]{transition-property:color,box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-shadow{transition-property:box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.animate-in{--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial;animation-name:enter;animation-duration:.15s}.outline-none{--tw-outline-style:none;outline-style:none}.select-all{-webkit-user-select:all;user-select:all}.select-auto{-webkit-user-select:auto;user-select:auto}.select-none{-webkit-user-select:none;user-select:none}.select-text{-webkit-user-select:text;user-select:text}.duration-200{animation-duration:.2s}.duration-300{animation-duration:.3s}.ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)}.fade-in-0{--tw-enter-opacity:0}.running{animation-play-state:running}.zoom-in-95{--tw-enter-scale:.95}@media (hover:hover){.group-hover\:bg-muted\/50:is(:where(.group):hover *){background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.group-hover\:bg-muted\/50:is(:where(.group):hover *){background-color:color-mix(in oklab,hsl(var(--muted))50%,transparent)}}}.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled~*){cursor:not-allowed}.peer-disabled\:opacity-70:is(:where(.peer):disabled~*){opacity:.7}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:text-sm::file-selector-button{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:hsl(var(--foreground))}.placeholder\:text-\[14px\]::placeholder{font-size:14px}.placeholder\:leading-5::placeholder{--tw-leading:calc(var(--spacing)*5);line-height:calc(var(--spacing)*5)}.placeholder\:text-muted-foreground::placeholder{color:hsl(var(--muted-foreground))}.last\:border-b-0:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}@media (hover:hover){.hover\:border-border\/30:hover{border-color:hsl(var(--border))}@supports (color:color-mix(in lab,red,red)){.hover\:border-border\/30:hover{border-color:color-mix(in oklab,hsl(var(--border))30%,transparent)}}.hover\:bg-accent:hover{background-color:hsl(var(--accent))}.hover\:bg-brand\/90:hover{background-color:hsl(var(--brand))}@supports (color:color-mix(in lab,red,red)){.hover\:bg-brand\/90:hover{background-color:color-mix(in oklab,hsl(var(--brand))90%,transparent)}}.hover\:bg-destructive\/90:hover{background-color:hsl(var(--destructive))}@supports (color:color-mix(in lab,red,red)){.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,hsl(var(--destructive))90%,transparent)}}.hover\:bg-muted:hover,.hover\:bg-muted\/30:hover{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.hover\:bg-muted\/30:hover{background-color:color-mix(in oklab,hsl(var(--muted))30%,transparent)}}.hover\:bg-muted\/40:hover{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.hover\:bg-muted\/40:hover{background-color:color-mix(in oklab,hsl(var(--muted))40%,transparent)}}.hover\:bg-muted\/50:hover{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.hover\:bg-muted\/50:hover{background-color:color-mix(in oklab,hsl(var(--muted))50%,transparent)}}.hover\:bg-muted\/60:hover{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.hover\:bg-muted\/60:hover{background-color:color-mix(in oklab,hsl(var(--muted))60%,transparent)}}.hover\:bg-muted\/80:hover{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.hover\:bg-muted\/80:hover{background-color:color-mix(in oklab,hsl(var(--muted))80%,transparent)}}.hover\:bg-primary\/90:hover{background-color:hsl(var(--primary))}@supports (color:color-mix(in lab,red,red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,hsl(var(--primary))90%,transparent)}}.hover\:bg-secondary\/80:hover{background-color:hsl(var(--secondary))}@supports (color:color-mix(in lab,red,red)){.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab,hsl(var(--secondary))80%,transparent)}}.hover\:bg-transparent:hover{background-color:#0000}.hover\:text-accent-foreground:hover{color:hsl(var(--accent-foreground))}.hover\:text-destructive:hover{color:hsl(var(--destructive))}.hover\:text-foreground:hover{color:hsl(var(--foreground))}.hover\:text-muted-foreground:hover{color:hsl(var(--muted-foreground))}.hover\:no-underline:hover{text-decoration-line:none}.hover\:underline:hover{text-decoration-line:underline}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\:border-transparent:focus{border-color:#0000}.focus\:bg-accent:focus{background-color:hsl(var(--accent))}.focus\:text-accent-foreground:focus{color:hsl(var(--accent-foreground))}.focus\:text-destructive:focus{color:hsl(var(--destructive))}.focus\:shadow-none:focus{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-0:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-1:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-ring:focus{--tw-ring-color:hsl(var(--ring))}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:border-transparent:focus-visible{border-color:#0000}.focus-visible\:shadow-none:focus-visible{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-0:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-1:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-ring:focus-visible,.focus-visible\:ring-ring\/40:focus-visible{--tw-ring-color:hsl(var(--ring))}@supports (color:color-mix(in lab,red,red)){.focus-visible\:ring-ring\/40:focus-visible{--tw-ring-color:color-mix(in oklab,hsl(var(--ring))40%,transparent)}}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.active\:border-transparent:active{border-color:#0000}.active\:shadow-none:active{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.active\:ring-0:active{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.active\:outline-none:active{--tw-outline-style:none;outline-style:none}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-60:disabled{opacity:.6}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[disabled\=true\]\:pointer-events-none[data-disabled=true]{pointer-events:none}.data-\[disabled\=true\]\:opacity-50[data-disabled=true]{opacity:.5}.data-\[selected\=true\]\:bg-accent[data-selected=true]{background-color:hsl(var(--accent))}.data-\[selected\=true\]\:bg-muted\/70[data-selected=true]{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.data-\[selected\=true\]\:bg-muted\/70[data-selected=true]{background-color:color-mix(in oklab,hsl(var(--muted))70%,transparent)}}.data-\[selected\=true\]\:text-accent-foreground[data-selected=true]{color:hsl(var(--accent-foreground))}.data-\[selected\=true\]\:text-foreground[data-selected=true]{color:hsl(var(--foreground))}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]{--tw-enter-translate-y:-.5rem}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--tw-translate-x:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]{--tw-enter-translate-x:.5rem}.data-\[side\=right\]\:translate-x-1[data-side=right]{--tw-translate-x:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]{--tw-enter-translate-x:-.5rem}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]{--tw-enter-translate-y:.5rem}.data-\[state\=active\]\:bg-background[data-state=active]{background-color:hsl(var(--background))}.data-\[state\=active\]\:text-foreground[data-state=active]{color:hsl(var(--foreground))}.data-\[state\=active\]\:shadow-none[data-state=active]{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.data-\[state\=active\]\:shadow-sm[data-state=active]{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.data-\[state\=checked\]\:translate-x-4[data-state=checked]{--tw-translate-x:calc(var(--spacing)*4);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=checked\]\:border-primary[data-state=checked]{border-color:hsl(var(--primary))}.data-\[state\=checked\]\:bg-primary[data-state=checked]{background-color:hsl(var(--primary))}.data-\[state\=checked\]\:text-white[data-state=checked]{color:var(--color-white)}.data-\[state\=closed\]\:duration-300[data-state=closed]{--tw-duration:.3s;transition-duration:.3s}.data-\[state\=closed\]\:animate-out[data-state=closed]{--tw-exit-opacity:initial;--tw-exit-scale:initial;--tw-exit-rotate:initial;--tw-exit-translate-x:initial;--tw-exit-translate-y:initial;animation-name:exit;animation-duration:.15s}.data-\[state\=closed\]\:duration-300[data-state=closed]{animation-duration:.3s}.data-\[state\=closed\]\:fade-out-0[data-state=closed]{--tw-exit-opacity:0}.data-\[state\=closed\]\:slide-out-to-bottom[data-state=closed]{--tw-exit-translate-y:100%}.data-\[state\=closed\]\:slide-out-to-left[data-state=closed]{--tw-exit-translate-x:-100%}.data-\[state\=closed\]\:slide-out-to-right[data-state=closed]{--tw-exit-translate-x:100%}.data-\[state\=closed\]\:slide-out-to-top[data-state=closed]{--tw-exit-translate-y:-100%}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{--tw-exit-scale:.95}.data-\[state\=off\]\:\!text-muted-foreground\/60[data-state=off]{color:hsl(var(--muted-foreground))!important}@supports (color:color-mix(in lab,red,red)){.data-\[state\=off\]\:\!text-muted-foreground\/60[data-state=off]{color:color-mix(in oklab,hsl(var(--muted-foreground))60%,transparent)!important}}@media (hover:hover){.data-\[state\=off\]\:hover\:\!text-muted-foreground[data-state=off]:hover{color:hsl(var(--muted-foreground))!important}}.data-\[state\=on\]\:bg-accent[data-state=on]{background-color:hsl(var(--accent))}.data-\[state\=on\]\:\!font-medium[data-state=on]{--tw-font-weight:var(--font-weight-medium)!important;font-weight:var(--font-weight-medium)!important}.data-\[state\=on\]\:\!text-foreground[data-state=on]{color:hsl(var(--foreground))!important}.data-\[state\=on\]\:text-accent-foreground[data-state=on]{color:hsl(var(--accent-foreground))}.data-\[state\=open\]\:bg-accent[data-state=open]{background-color:hsl(var(--accent))}.data-\[state\=open\]\:bg-muted\/60[data-state=open]{background-color:hsl(var(--muted))}@supports (color:color-mix(in lab,red,red)){.data-\[state\=open\]\:bg-muted\/60[data-state=open]{background-color:color-mix(in oklab,hsl(var(--muted))60%,transparent)}}.data-\[state\=open\]\:duration-500[data-state=open]{--tw-duration:.5s;transition-duration:.5s}.data-\[state\=open\]\:animate-in[data-state=open]{--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial;animation-name:enter;animation-duration:.15s}.data-\[state\=open\]\:duration-500[data-state=open]{animation-duration:.5s}.data-\[state\=open\]\:fade-in-0[data-state=open]{--tw-enter-opacity:0}.data-\[state\=open\]\:slide-in-from-bottom[data-state=open]{--tw-enter-translate-y:100%}.data-\[state\=open\]\:slide-in-from-left[data-state=open]{--tw-enter-translate-x:-100%}.data-\[state\=open\]\:slide-in-from-right[data-state=open]{--tw-enter-translate-x:100%}.data-\[state\=open\]\:slide-in-from-top[data-state=open]{--tw-enter-translate-y:-100%}.data-\[state\=open\]\:zoom-in-95[data-state=open]{--tw-enter-scale:.95}.data-\[state\=selected\]\:bg-muted[data-state=selected]{background-color:hsl(var(--muted))}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked]{--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}@media (min-width:40rem){.sm\:\!top-8{top:calc(var(--spacing)*8)!important}.sm\:max-h-\[calc\(100vh-4rem\)\]{max-height:calc(100vh - 4rem)}.sm\:max-w-\[560px\]{max-width:560px}.sm\:max-w-\[620px\]{max-width:620px}.sm\:max-w-\[640px\]{max-width:640px}.sm\:max-w-sm{max-width:var(--container-sm)}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:justify-between{justify-content:space-between}.sm\:justify-end{justify-content:flex-end}:where(.sm\:space-x-0>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*0)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*0)*calc(1 - var(--tw-space-x-reverse)))}:where(.sm\:space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*2)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-x-reverse)))}.sm\:rounded-lg{border-radius:var(--radius)}.sm\:px-7{padding-inline:calc(var(--spacing)*7)}.sm\:pt-6{padding-top:calc(var(--spacing)*6)}.sm\:pb-7{padding-bottom:calc(var(--spacing)*7)}.sm\:text-left{text-align:left}}@media (min-width:48rem){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:opacity-0{opacity:0}@media (hover:hover){.md\:group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}}}@media (min-width:64rem){.lg\:grid-cols-\[minmax\(0\,1fr\)_248px\]{grid-template-columns:minmax(0,1fr) 248px}}.dark\:border-amber-700\/60:is(.dark *){border-color:#b7500099}@supports (color:color-mix(in lab,red,red)){.dark\:border-amber-700\/60:is(.dark *){border-color:color-mix(in oklab,var(--color-amber-700)60%,transparent)}}.dark\:border-amber-700\/70:is(.dark *){border-color:#b75000b3}@supports (color:color-mix(in lab,red,red)){.dark\:border-amber-700\/70:is(.dark *){border-color:color-mix(in oklab,var(--color-amber-700)70%,transparent)}}.dark\:border-amber-800\/40:is(.dark *){border-color:#953d0066}@supports (color:color-mix(in lab,red,red)){.dark\:border-amber-800\/40:is(.dark *){border-color:color-mix(in oklab,var(--color-amber-800)40%,transparent)}}.dark\:border-blue-900:is(.dark *){border-color:var(--color-blue-900)}.dark\:border-blue-900\/40:is(.dark *){border-color:#1c398e66}@supports (color:color-mix(in lab,red,red)){.dark\:border-blue-900\/40:is(.dark *){border-color:color-mix(in oklab,var(--color-blue-900)40%,transparent)}}.dark\:border-green-900\/40:is(.dark *){border-color:#0d542b66}@supports (color:color-mix(in lab,red,red)){.dark\:border-green-900\/40:is(.dark *){border-color:color-mix(in oklab,var(--color-green-900)40%,transparent)}}.dark\:bg-amber-700:is(.dark *){background-color:var(--color-amber-700)}.dark\:bg-amber-900\/30:is(.dark *){background-color:#7b33064d}@supports (color:color-mix(in lab,red,red)){.dark\:bg-amber-900\/30:is(.dark *){background-color:color-mix(in oklab,var(--color-amber-900)30%,transparent)}}.dark\:bg-amber-950\/20:is(.dark *){background-color:#46190133}@supports (color:color-mix(in lab,red,red)){.dark\:bg-amber-950\/20:is(.dark *){background-color:color-mix(in oklab,var(--color-amber-950)20%,transparent)}}.dark\:bg-amber-950\/30:is(.dark *){background-color:#4619014d}@supports (color:color-mix(in lab,red,red)){.dark\:bg-amber-950\/30:is(.dark *){background-color:color-mix(in oklab,var(--color-amber-950)30%,transparent)}}.dark\:bg-blue-950\/30:is(.dark *){background-color:#1624564d}@supports (color:color-mix(in lab,red,red)){.dark\:bg-blue-950\/30:is(.dark *){background-color:color-mix(in oklab,var(--color-blue-950)30%,transparent)}}.dark\:bg-blue-950\/40:is(.dark *){background-color:#16245666}@supports (color:color-mix(in lab,red,red)){.dark\:bg-blue-950\/40:is(.dark *){background-color:color-mix(in oklab,var(--color-blue-950)40%,transparent)}}.dark\:bg-emerald-900\/50:is(.dark *){background-color:#004e3b80}@supports (color:color-mix(in lab,red,red)){.dark\:bg-emerald-900\/50:is(.dark *){background-color:color-mix(in oklab,var(--color-emerald-900)50%,transparent)}}.dark\:bg-green-900\/30:is(.dark *){background-color:#0d542b4d}@supports (color:color-mix(in lab,red,red)){.dark\:bg-green-900\/30:is(.dark *){background-color:color-mix(in oklab,var(--color-green-900)30%,transparent)}}.dark\:bg-green-900\/40:is(.dark *){background-color:#0d542b66}@supports (color:color-mix(in lab,red,red)){.dark\:bg-green-900\/40:is(.dark *){background-color:color-mix(in oklab,var(--color-green-900)40%,transparent)}}.dark\:bg-green-950\/20:is(.dark *){background-color:#032e1533}@supports (color:color-mix(in lab,red,red)){.dark\:bg-green-950\/20:is(.dark *){background-color:color-mix(in oklab,var(--color-green-950)20%,transparent)}}.dark\:text-amber-100:is(.dark *){color:var(--color-amber-100)}.dark\:text-amber-300:is(.dark *){color:var(--color-amber-300)}.dark\:text-amber-400:is(.dark *){color:var(--color-amber-400)}.dark\:text-blue-100:is(.dark *){color:var(--color-blue-100)}.dark\:text-blue-300:is(.dark *){color:var(--color-blue-300)}.dark\:text-emerald-100:is(.dark *){color:var(--color-emerald-100)}.dark\:text-green-300:is(.dark *){color:var(--color-green-300)}.dark\:text-green-400:is(.dark *){color:var(--color-green-400)}.dark\:text-green-400\/70:is(.dark *){color:#05df72b3}@supports (color:color-mix(in lab,red,red)){.dark\:text-green-400\/70:is(.dark *){color:color-mix(in oklab,var(--color-green-400)70%,transparent)}}.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading]{padding-inline:calc(var(--spacing)*2)}.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading]{padding-block:calc(var(--spacing)*1.5)}.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading]{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading]{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading]{color:hsl(var(--muted-foreground))}.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group]{padding-inline:calc(var(--spacing)*2)}.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden])~[cmdk-group]{padding-top:calc(var(--spacing)*0)}.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-4 [cmdk-input-wrapper] svg{height:calc(var(--spacing)*4)}.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-4 [cmdk-input-wrapper] svg{width:calc(var(--spacing)*4)}.\[\&_\[cmdk-input\]\]\:h-11 [cmdk-input]{height:calc(var(--spacing)*11)}.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item]{padding-inline:calc(var(--spacing)*2)}.\[\&_\[cmdk-item\]\]\:py-1\.5 [cmdk-item]{padding-block:calc(var(--spacing)*1.5)}.\[\&_\[cmdk-item\]_svg\]\:h-4 [cmdk-item] svg{height:calc(var(--spacing)*4)}.\[\&_\[cmdk-item\]_svg\]\:w-4 [cmdk-item] svg{width:calc(var(--spacing)*4)}.\[\&_\[data-radix-scroll-area-viewport\]\]\:overflow-x-hidden [data-radix-scroll-area-viewport]{overflow-x:hidden}.\[\&_\[data-radix-scroll-area-viewport\]\>div\]\:\!block [data-radix-scroll-area-viewport]>div{display:block!important}.\[\&_\[data-radix-scroll-area-viewport\]\>div\]\:\!w-full [data-radix-scroll-area-viewport]>div{width:100%!important}.\[\&_\[data-radix-scroll-area-viewport\]\>div\]\:\!min-w-0 [data-radix-scroll-area-viewport]>div{min-width:calc(var(--spacing)*0)!important}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:size-4 svg{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\&_svg\]\:h-3\.5 svg{height:calc(var(--spacing)*3.5)}.\[\&_svg\]\:h-4 svg{height:calc(var(--spacing)*4)}.\[\&_svg\]\:h-6 svg{height:calc(var(--spacing)*6)}.\[\&_svg\]\:h-\[18px\] svg{height:18px}.\[\&_svg\]\:w-3\.5 svg{width:calc(var(--spacing)*3.5)}.\[\&_svg\]\:w-4 svg{width:calc(var(--spacing)*4)}.\[\&_svg\]\:w-6 svg{width:calc(var(--spacing)*6)}.\[\&_svg\]\:w-\[18px\] svg{width:18px}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_tr\]\:border-b tr{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.\[\&_tr\:last-child\]\:border-0 tr:last-child{border-style:var(--tw-border-style);border-width:0}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:calc(var(--spacing)*0)}.\[\&\>\*\]\:self-center>*{align-self:center}.\[\&\>\[data-dialog-close\]\]\:hidden>[data-dialog-close],.\[\&\>\[data-sheet-close\]\]\:hidden>[data-sheet-close]{display:none}.\[\&\>button\[aria-label\=\'关闭\'\]\]\:top-2\.5>button[aria-label=关闭]{top:calc(var(--spacing)*2.5)}.\[\&\>button\[aria-label\=\'关闭\'\]\]\:right-4>button[aria-label=关闭]{right:calc(var(--spacing)*4)}.\[\&\>button\[aria-label\=\'关闭\'\]\]\:h-7>button[aria-label=关闭]{height:calc(var(--spacing)*7)}.\[\&\>button\[aria-label\=\'关闭\'\]\]\:w-7>button[aria-label=关闭]{width:calc(var(--spacing)*7)}.\[\&\>span\]\:line-clamp-1>span{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.\[\&\>svg\]\:ml-auto>svg{margin-left:auto}.\[\&\>svg\]\:h-3\.5>svg{height:calc(var(--spacing)*3.5)}.\[\&\>svg\]\:w-3\.5>svg{width:calc(var(--spacing)*3.5)}.\[\&\>tr\]\:last\:border-b-0>tr:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg{rotate:180deg}}:root{--background:0 0% 100%;--foreground:222.2 47.4% 11.2%;--card:0 0% 100%;--card-foreground:222.2 47.4% 11.2%;--popover:0 0% 100%;--popover-foreground:222.2 47.4% 11.2%;--primary:159 100% 28%;--primary-foreground:0 0% 100%;--brand:159 100% 28%;--brand-foreground:0 0% 100%;--secondary:210 40% 96.1%;--secondary-foreground:222.2 47.4% 11.2%;--muted:210 40% 96.1%;--muted-foreground:215.4 16.3% 46.9%;--accent:210 40% 96.1%;--accent-foreground:222.2 47.4% 11.2%;--success:159 83% 33%;--success-foreground:0 0% 100%;--warning:33 92% 46%;--warning-foreground:210 40% 98%;--info:214 88% 52%;--info-foreground:210 40% 98%;--destructive:0 78% 58%;--destructive-foreground:210 40% 98%;--border:214.3 31.8% 91.4%;--border-strong:214 26% 83%;--input:214.3 31.8% 91.4%;--ring:159 100% 28%;--chart-1:159 83% 33%;--chart-2:214 88% 52%;--chart-3:262 83% 58%;--chart-4:35 92% 55%;--chart-5:198 93% 42%;--surface-page:210 20% 97%;--surface-elevated:0 0% 100%;--device-shell-bg:220 11% 14%;--device-shell-border:220 8% 20%;--device-screen-bg:0 0% 100%;--radius:.625rem;--shadow-xs:0 1px 2px #1018280a;--shadow-sm:0 2px 8px #10182814;--shadow-md:0 10px 30px #1018281f;--ax-font-size-ui:12px;--ax-font-size-caption:11px}.dark{--background:224 71% 4%;--foreground:213 31% 91%;--card:222 39% 10%;--card-foreground:213 31% 91%;--popover:222 39% 10%;--popover-foreground:213 31% 91%;--primary:159 100% 35%;--primary-foreground:0 0% 100%;--brand:159 100% 35%;--brand-foreground:0 0% 100%;--secondary:215 27.9% 16.9%;--secondary-foreground:210 40% 98%;--muted:216 34% 13%;--muted-foreground:217.9 10.6% 64.9%;--accent:216 34% 16%;--accent-foreground:210 40% 98%;--success:159 90% 39%;--success-foreground:0 0% 100%;--warning:39 92% 54%;--warning-foreground:222 47% 11%;--info:214 88% 63%;--info-foreground:222 47% 11%;--destructive:0 74% 45%;--destructive-foreground:210 40% 98%;--border:215 27.9% 16.9%;--border-strong:215 20% 26%;--input:215 27.9% 16.9%;--ring:159 100% 35%;--chart-1:159 90% 39%;--chart-2:214 88% 63%;--chart-3:262 83% 70%;--chart-4:39 92% 62%;--chart-5:198 88% 54%;--surface-page:223 36% 9%;--surface-elevated:222 39% 12%;--device-shell-bg:222 16% 9%;--device-shell-border:217 19% 20%;--device-screen-bg:224 71% 4%;--shadow-xs:0 1px 2px #03050759;--shadow-sm:0 2px 10px #03050773;--shadow-md:0 14px 40px #0305078c}*{box-sizing:border-box}html,body,#root{height:100%}body{background:hsl(var(--background));color:hsl(var(--foreground));-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}.ax-admin-theme h1,.ax-admin-theme h2,.ax-admin-theme h3,.ax-admin-theme h4,.ax-admin-theme h5,.ax-admin-theme h6{margin-top:0}.ax-admin-theme{background:hsl(var(--background));height:100%;color:hsl(var(--foreground))}.ax-admin-theme .ant-menu,.ax-admin-theme .ant-menu .ant-menu-item,.ax-admin-theme .ant-menu .ant-menu-submenu-title,.ax-admin-theme .ant-dropdown-menu{font-size:var(--ax-font-size-ui)}.ax-admin-theme .ant-form-item .ant-form-item-label>label,.ax-admin-theme .ant-form-item .ant-input,.ax-admin-theme .ant-form-item .ant-input-affix-wrapper,.ax-admin-theme .ant-form-item .ant-input-number,.ax-admin-theme .ant-form-item .ant-input-number-input,.ax-admin-theme .ant-form-item .ant-select .ant-select-selector,.ax-admin-theme .ant-form-item .ant-select-selection-item,.ax-admin-theme .ant-form-item .ant-select-selection-placeholder,.ax-admin-theme .ant-select-dropdown .ant-select-item-option-content,.ax-admin-theme .ant-form-item .ant-picker,.ax-admin-theme .ant-form-item .ant-picker-input>input,.ax-admin-theme .ant-form-item .ant-radio-wrapper,.ax-admin-theme .ant-form-item .ant-checkbox-wrapper,.ax-admin-theme .ant-form-item .ant-form-item-explain,.ax-admin-theme .ant-form-item .ant-form-item-extra{font-size:14px}*,:before,:after{border-color:hsl(var(--border))}.ax-inline-rename-input{border:1px solid hsl(var(--border));background:hsl(var(--background));width:100%;min-width:0;height:20px;color:hsl(var(--foreground));line-height:20px;font-size:var(--ax-font-size-ui);border-radius:6px;outline:none;padding:0 6px}.ax-inline-rename-input:focus,.ax-inline-rename-input:focus-visible{border-color:hsl(var(--ring));box-shadow:none!important}.ax-inline-rename-input-title{font-size:14px;font-weight:600;line-height:1}.ax-admin-theme button svg,.ax-admin-theme [role=button] svg{stroke-width:1.8px}.ax-admin-theme button.h-7.w-7,.ax-admin-theme button.h-6.w-6{min-width:auto;padding:0}.ax-admin-theme button[class*=bg-primary],.ax-admin-theme [role=checkbox][data-state=checked],.ax-admin-theme [role=radio][data-state=checked],.ax-admin-theme [role=menuitemcheckbox][data-state=checked],.ax-admin-theme [role=menuitemradio][data-state=checked]{color:hsl(var(--primary-foreground))}.ax-admin-theme :focus-visible{box-shadow:0 0 0 1px hsl(var(--ring));outline:none}.ax-admin-theme button:focus-visible,.ax-admin-theme [role=button]:focus-visible{box-shadow:none}.ax-admin-theme .ax-dialog-content:focus,.ax-admin-theme .ax-dialog-content:focus-visible,.ax-admin-theme [role=dialog]:focus,.ax-admin-theme [role=dialog]:focus-visible{box-shadow:none!important;outline:none!important}.ax-admin-theme [data-radix-popper-content-wrapper]{z-index:2000!important}.ax-scrollarea-hide-chrome>[data-radix-scroll-area-viewport]{scrollbar-width:none;-ms-overflow-style:none}.ax-scrollarea-hide-chrome>[data-radix-scroll-area-viewport]::-webkit-scrollbar{width:0;height:0;display:none}.ax-scrollarea-hide-chrome>:not([data-radix-scroll-area-viewport]){display:none}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0))}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}} diff --git a/axhub-make/admin/assets/Assistant-Bold.woff2 b/axhub-make/admin/assets/Assistant-Bold.woff2 new file mode 100644 index 0000000..751ba1c Binary files /dev/null and b/axhub-make/admin/assets/Assistant-Bold.woff2 differ diff --git a/axhub-make/admin/assets/Assistant-Medium.woff2 b/axhub-make/admin/assets/Assistant-Medium.woff2 new file mode 100644 index 0000000..d5d809a Binary files /dev/null and b/axhub-make/admin/assets/Assistant-Medium.woff2 differ diff --git a/axhub-make/admin/assets/Assistant-Regular.woff2 b/axhub-make/admin/assets/Assistant-Regular.woff2 new file mode 100644 index 0000000..e17d6ec Binary files /dev/null and b/axhub-make/admin/assets/Assistant-Regular.woff2 differ diff --git a/axhub-make/admin/assets/Assistant-SemiBold.woff2 b/axhub-make/admin/assets/Assistant-SemiBold.woff2 new file mode 100644 index 0000000..d17aa74 Binary files /dev/null and b/axhub-make/admin/assets/Assistant-SemiBold.woff2 differ diff --git a/axhub-make/admin/assets/canvas-template-bootstrap.css b/axhub-make/admin/assets/canvas-template-bootstrap.css new file mode 100644 index 0000000..b0557c6 --- /dev/null +++ b/axhub-make/admin/assets/canvas-template-bootstrap.css @@ -0,0 +1 @@ +:root{color-scheme:light;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}html,body,#canvas-root,.canvas-template-shell,.canvas-template-canvas{width:100%;height:100%;min-height:100%;min-width:0}body{margin:0;overflow:hidden;background:#f1f5f9;color:#475569}body.dark{background:#0f172a;color:#94a3b8}.canvas-template-shell{background:inherit}.canvas-template-placeholder,.canvas-template-status,.canvas-template-error{display:flex;align-items:center;justify-content:center;width:100%;height:100%;padding:24px;box-sizing:border-box;font-size:12px;line-height:1.5}.canvas-template-status,.canvas-template-placeholder{color:inherit}.canvas-template-error{color:#dc2626}body.dark .canvas-template-error{color:#fca5a5} diff --git a/axhub-make/admin/assets/canvas-template-bootstrap.js b/axhub-make/admin/assets/canvas-template-bootstrap.js new file mode 100644 index 0000000..f477c00 --- /dev/null +++ b/axhub-make/admin/assets/canvas-template-bootstrap.js @@ -0,0 +1 @@ +import{r as n,j as c,d as R}from"./chunks/vendor-react.js?v=1775123024591";import{I as T}from"./chunks/vendor-excalidraw.js?v=1775123024591";import"./chunks/_commonjsHelpers.js?v=1775123024591";import"./chunks/preload-helper.js?v=1775123024591";import"./chunks/vendor-common.js?v=1775123024591";import"./chunks/_commonjs-dynamic-modules.js?v=1775123024591";const N=1500;function S({canvasName:t,isDarkMode:e}){const[s,i]=n.useState(null),[l,v]=n.useState(null),[I,h]=n.useState(!0),[g,w]=n.useState(""),u=n.useRef(null),d=n.useRef(!1),C=n.useRef(t),f=n.useRef(!1);n.useEffect(()=>{C.current=t,f.current=!1,h(!0),w(""),v(null);let r=!1;return(async()=>{try{const a=await fetch(`/api/canvas/${encodeURIComponent(t)}`);if(r)return;if(!a.ok)throw new Error(`加载画布失败 (${a.status})`);const m=await a.json();if(r)return;v(m),f.current=!0}catch(a){if(r)return;w((a==null?void 0:a.message)||"加载画布失败")}finally{r||h(!1)}})(),()=>{r=!0}},[t]);const E=n.useCallback(async(r,o)=>{if(!d.current){d.current=!0;try{const a=(s==null?void 0:s.getFiles())||{},m={type:"excalidraw",version:2,source:"axhub-make",elements:r,appState:{gridSize:(o==null?void 0:o.gridSize)??null,viewBackgroundColor:(o==null?void 0:o.viewBackgroundColor)??"#ffffff"},files:a};await fetch(`/api/canvas/${encodeURIComponent(C.current)}`,{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify({content:JSON.stringify(m,null,2)})})}catch(a){console.warn("Failed to save canvas:",a)}finally{d.current=!1}}},[s]),j=n.useCallback((r,o)=>{f.current&&(u.current&&clearTimeout(u.current),u.current=setTimeout(()=>{E(r,o)},N))},[E]);return n.useEffect(()=>()=>{u.current&&clearTimeout(u.current)},[]),I?c.jsx("div",{className:"canvas-template-status",children:"加载中..."}):g?c.jsx("div",{className:"canvas-template-error",children:g}):c.jsx("div",{className:"canvas-template-canvas",children:c.jsx(T,{excalidrawAPI:r=>i(r),initialData:l,onChange:j,theme:e?"dark":"light",UIOptions:{canvasActions:{saveAsImage:!0,export:!1}}},t)})}const p="axhub-make-dark-mode";function x(t){var e;return typeof document>"u"?"":((e=document.querySelector(`meta[name="${t}"]`))==null?void 0:e.getAttribute("content"))||""}function y(t){const e=String(t||"").trim();return!e||e.startsWith("{{")?"":e}function b(t){const e=t.match(/^\/canvas\/(.+?)\/?$/);if(!(e!=null&&e[1]))return"";try{return decodeURIComponent(e[1])}catch{return e[1]}}function A(){const t=y(x("axhub-canvas-name"));return t||(typeof window>"u"?"":b(window.location.pathname))}function D(t){const e=y(x("axhub-canvas-title"));if(e)return e;const s=t.replace(/\.excalidraw$/i,"").trim();return s?`${s} - Canvas`:"Canvas"}function M(){try{return localStorage.getItem(p)==="true"}catch{return!1}}function $(){const[t]=n.useState(()=>A()),[e,s]=n.useState(()=>M());return n.useEffect(()=>{const i=l=>{l.key===p&&s(l.newValue==="true")};return window.addEventListener("storage",i),()=>{window.removeEventListener("storage",i)}},[]),n.useEffect(()=>{const i=D(t);document.title=i,document.documentElement.classList.toggle("dark",e),document.body.classList.toggle("dark",e)},[t,e]),c.jsx("div",{className:e?"canvas-template-shell dark":"canvas-template-shell",children:t?c.jsx(S,{canvasName:t,isDarkMode:e}):c.jsx("div",{className:"canvas-template-placeholder",children:"未指定画布"})})}const k=document.getElementById("canvas-root");if(!k)throw new Error("[Canvas Template] 找不到 #canvas-root 元素");const L=R.createRoot(k);L.render(c.jsx($,{})); diff --git a/axhub-make/admin/assets/chunks/AppDialogProvider.js b/axhub-make/admin/assets/chunks/AppDialogProvider.js new file mode 100644 index 0000000..dd31d0e --- /dev/null +++ b/axhub-make/admin/assets/chunks/AppDialogProvider.js @@ -0,0 +1 @@ +import{R as o,j as s}from"./vendor-react.js?v=1775123024591";import{cQ as M,d as U,cR as W,bh as N,cS as y,cT as Q,cU as j,cV as K,cW as X,cX as $,cY as Y,cn as J,bd as T,be as Z,bf as D,bg as ee,ba as te,bi as k,bj as E,bk as se}from"./vendor-common.js?v=1775123024591";const ne="make",re="make",ae="integrationWs",oe="integrationClientId",ie="integrationChannel";function je(t,e){const r=e??(typeof window<"u"?window.location.origin:"http://localhost"),a=new URL(t,r);return a.searchParams.set(ae,"1"),a.searchParams.set(oe,ne),a.searchParams.set(ie,re),a.toString()}function l(...t){return M(U(t))}const le=N("inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-[color,box-shadow] disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 focus-visible:outline-none",{variants:{variant:{default:"bg-primary !text-white shadow-sm hover:bg-primary/90",brand:"bg-brand !text-white shadow-sm hover:bg-brand/90",destructive:"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",outline:"border border-input bg-background hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 px-4 py-2",sm:"h-8 rounded-md px-3 text-xs",lg:"h-10 rounded-md px-6",xl:"h-11 rounded-lg px-8 text-sm",xs:"h-7 rounded-md px-2.5 text-xs",icon:"h-9 w-9","icon-sm":"h-8 w-8","icon-xs":"h-7 w-7","icon-lg":"h-10 w-10"}},defaultVariants:{variant:"default",size:"default"}}),b=o.forwardRef(({className:t,variant:e,size:r,asChild:a=!1,type:d="button",...i},m)=>{const x=a?W:"button";return s.jsx(x,{className:l(le({variant:e,size:r,className:t})),ref:m,type:a?void 0:d,...i})});b.displayName="Button";const de=N("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"),A=o.forwardRef(({className:t,...e},r)=>s.jsx(y,{ref:r,className:l(de(),t),...e}));A.displayName=y.displayName;const ce=({delayDuration:t=0,...e})=>s.jsx(Y,{delayDuration:t,...e}),ue=X,me=$,C=o.forwardRef(({className:t,sideOffset:e=0,arrow:r=!0,arrowClassName:a,children:d,...i},m)=>s.jsx(Q,{children:s.jsxs(j,{ref:m,sideOffset:e,className:l("bg-foreground text-background animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-fit max-w-xs origin-(--radix-tooltip-content-transform-origin) rounded-md px-3 py-1.5 text-xs leading-5 text-left break-words",t),...i,children:[d,r?s.jsx(K,{className:l("bg-foreground fill-foreground z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px]",a)}):null]})}));C.displayName=j.displayName;const I=({className:t,...e})=>s.jsx("div",{className:l("grid gap-2",t),...e});I.displayName="Field";const O=({className:t,...e})=>s.jsx("p",{className:l("text-sm text-muted-foreground",t),...e});O.displayName="FieldDescription";const R=o.forwardRef(({className:t,children:e,hint:r,tooltipClassName:a,...d},i)=>s.jsxs("div",{className:"flex items-center gap-1.5",children:[s.jsx(A,{ref:i,className:l("text-sm font-medium text-foreground",t),...d,children:e}),r?s.jsx(ce,{children:s.jsxs(ue,{children:[s.jsx(me,{asChild:!0,children:s.jsx("button",{type:"button",className:"inline-flex h-4 w-4 items-center justify-center rounded text-muted-foreground hover:text-foreground","aria-label":"字段说明",children:s.jsx(J,{className:"h-3.5 w-3.5"})})}),s.jsx(C,{arrow:!0,className:l("max-w-[360px]",a),children:r})]})}):null]}));R.displayName="FieldLabelWithHint";const fe=se,pe=Z,P=o.forwardRef(({className:t,...e},r)=>s.jsx(T,{ref:r,className:l("fixed inset-0 z-[100] bg-black/40 data-[state=open]:animate-in data-[state=closed]:animate-out",t),...e}));P.displayName=T.displayName;const _=o.forwardRef(({className:t,children:e,...r},a)=>s.jsxs(pe,{children:[s.jsx(P,{}),s.jsxs(D,{ref:a,className:l("ax-dialog-content fixed left-[50%] top-[50%] z-[100] grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg outline-none ring-0 duration-200 focus:outline-none focus:ring-0 focus-visible:outline-none focus-visible:ring-0 data-[state=open]:animate-in data-[state=closed]:animate-out sm:rounded-lg",t),...r,children:[e,s.jsx(ee,{asChild:!0,children:s.jsx(b,{type:"button",variant:"ghost",size:"icon-xs",className:"absolute right-4 top-4","aria-label":"关闭","data-dialog-close":"",children:s.jsx(te,{className:"h-4 w-4"})})})]})]}));_.displayName=D.displayName;const S=({className:t,...e})=>s.jsx("div",{className:l("flex flex-col space-y-1.5 text-center sm:text-left",t),...e});S.displayName="DialogHeader";const z=({className:t,...e})=>s.jsx("div",{className:l("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",t),...e});z.displayName="DialogFooter";const G=o.forwardRef(({className:t,...e},r)=>s.jsx(k,{ref:r,className:l("m-0 text-lg font-semibold leading-none tracking-tight",t),...e}));G.displayName=k.displayName;const V=o.forwardRef(({className:t,...e},r)=>s.jsx(E,{ref:r,className:l("m-0 text-sm text-muted-foreground",t),...e}));V.displayName=E.displayName;const L=o.forwardRef(({className:t,type:e,...r},a)=>s.jsx("input",{type:e,className:l("flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm text-foreground shadow-xs transition-[color,box-shadow] file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40 disabled:cursor-not-allowed disabled:opacity-50",t),ref:a,...r}));L.displayName="Input";const F=o.forwardRef(({className:t,...e},r)=>s.jsx("textarea",{ref:r,className:l("flex min-h-[84px] w-full rounded-md border border-input bg-transparent px-3 py-2 text-sm text-foreground shadow-xs transition-[color,box-shadow] placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/40 disabled:cursor-not-allowed disabled:opacity-50",t),...e}));F.displayName="Textarea";const q=o.createContext(null);let w=0,B=null;function h(){return w+=1,w}function xe(t){return typeof t=="string"?s.jsx("div",{className:"whitespace-pre-line",children:t}):t}function ge(t,e){return t==="destructive"?"bg-destructive/10 text-destructive":e==="prompt"||t==="brand"?"bg-brand/10 text-brand":"bg-muted text-foreground"}function be(t,e){return t==="destructive"?"危险操作":e==="prompt"?"输入信息":t==="brand"?"操作确认":"提示"}function he(t){return t==="destructive"?"destructive":t==="brand"?"brand":"default"}function Te(t){B=t}function De(){return B}function ve(){let t=null;const e=[],r=new Set,a=()=>{r.forEach(n=>n())},d=()=>{t||e.length===0||(t=e.shift()??null)},i=n=>{n(),t=null,d(),a()};return{confirm:n=>new Promise(u=>{e.push({id:h(),kind:"confirm",title:n.title,description:n.description,confirmText:n.confirmText??"确定",cancelText:n.cancelText??"取消",tone:n.tone??"brand",dismissible:n.dismissible??!1,resolve:u}),d(),a()}),alert:n=>new Promise(u=>{e.push({id:h(),kind:"alert",title:n.title,description:n.description,confirmText:n.confirmText??"知道了",tone:n.tone??"brand",dismissible:n.dismissible??!0,resolve:u}),d(),a()}),prompt:n=>new Promise(u=>{e.push({id:h(),kind:"prompt",title:n.title,description:n.description,label:n.label??"名称",placeholder:n.placeholder,defaultValue:n.defaultValue??"",confirmText:n.confirmText??"确认",cancelText:n.cancelText??"取消",tone:n.tone??"brand",dismissible:n.dismissible??!0,validate:n.validate,mode:n.mode??"input",readOnly:n.readOnly??!1,rows:n.rows??8,selectOnOpen:n.selectOnOpen??!1,resolve:u}),d(),a()}),getSnapshot:()=>t,subscribe:n=>(r.add(n),()=>{r.delete(n)}),dismiss:()=>{if(!t||t.dismissible===!1)return;if(t.kind==="confirm"){const u=t;i(()=>u.resolve(!1));return}if(t.kind==="prompt"){const u=t;i(()=>u.resolve(null));return}const n=t;i(()=>n.resolve())},confirmActive:n=>{if(!t)return;if(t.kind==="prompt"){const f=t;i(()=>f.resolve(n));return}if(t.kind==="confirm"){const f=t;i(()=>f.resolve(!0));return}const u=t;i(()=>u.resolve())},cancelActive:()=>{if(t){if(t.kind==="confirm"){const n=t;i(()=>n.resolve(!1));return}if(t.kind==="prompt"){const n=t;i(()=>n.resolve(null))}}}}}function we({controller:t}){const e=o.useSyncExternalStore(t.subscribe,t.getSnapshot,t.getSnapshot),[r,a]=o.useState(""),[d,i]=o.useState(""),m=o.useRef(null),x=o.useRef(null);o.useEffect(()=>{if((e==null?void 0:e.kind)==="prompt"){a(e.defaultValue??""),i("");return}a(""),i("")},[e]),o.useEffect(()=>{if((e==null?void 0:e.kind)!=="prompt")return;const c=e.selectOnOpen,p=e.mode==="textarea"?x.current:m.current;if(!p)return;const H=window.setTimeout(()=>{p.focus(),c&&p.select()},0);return()=>{window.clearTimeout(H)}},[e]);const g=(e==null?void 0:e.tone)??"brand",n=(e==null?void 0:e.kind)==="confirm"||(e==null?void 0:e.kind)==="prompt",u=(e==null?void 0:e.dismissible)===!1,f=o.useCallback(()=>{var c;if(e){if(e.kind==="prompt"){if(!e.readOnly){const p=((c=e.validate)==null?void 0:c.call(e,r))??null;if(p){i(p);return}}t.confirmActive(r);return}t.confirmActive(r)}},[e,t,r]),v=o.useCallback(c=>{a(c.target.value),d&&i("")},[d]);return s.jsx(fe,{open:!!e,onOpenChange:c=>!c&&t.dismiss(),children:e?s.jsx(_,{className:l("w-[min(92vw,520px)] max-w-[520px] overflow-hidden rounded-[24px] border-border bg-card p-0 text-sm shadow-md","data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95 data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95",u&&"[&>[data-dialog-close]]:hidden"),onEscapeKeyDown:c=>{e.dismissible===!1&&c.preventDefault()},onInteractOutside:c=>{e.dismissible===!1&&c.preventDefault()},children:s.jsxs("div",{className:"px-6 pb-6 pt-5 sm:px-7 sm:pb-7 sm:pt-6",children:[s.jsx("div",{className:l("mb-3 inline-flex items-center rounded-full px-3 py-1 text-xs font-semibold",ge(g,e.kind)),children:be(g,e.kind)}),s.jsxs(S,{className:"space-y-2 text-left",children:[s.jsx(G,{className:"text-[24px] font-semibold leading-tight tracking-tight text-foreground",children:e.title}),e.description?s.jsx(V,{className:"text-sm leading-6 text-muted-foreground",children:xe(e.description)}):null]}),e.kind==="prompt"?s.jsx("div",{className:"mt-5",children:s.jsxs(I,{children:[s.jsx(R,{children:e.label}),e.mode==="textarea"?s.jsx(F,{ref:x,value:r,rows:e.rows,readOnly:e.readOnly,placeholder:e.placeholder,className:l(e.readOnly&&"cursor-text resize-y bg-muted/30 font-mono text-xs leading-5"),onChange:v}):s.jsx(L,{ref:m,value:r,readOnly:e.readOnly,placeholder:e.placeholder,onChange:v,onKeyDown:c=>{c.key==="Enter"&&(c.preventDefault(),f())}}),d?s.jsx(O,{className:"text-destructive",children:d}):null]})}):null,s.jsxs(z,{className:"mt-6 flex flex-col-reverse gap-2 sm:flex-row sm:justify-end sm:space-x-0",children:[n?s.jsx(b,{type:"button",variant:"outline",onClick:()=>t.cancelActive(),children:e.cancelText}):null,s.jsx(b,{type:"button",variant:he(g),onClick:f,children:e.confirmText})]})]})}):null})}function ke({children:t}){const[e]=o.useState(()=>ve()),r=o.useMemo(()=>({confirm:e.confirm,alert:e.alert,prompt:e.prompt}),[e]);return s.jsxs(q.Provider,{value:r,children:[t,s.jsx(we,{controller:e})]})}function Ee(){const t=o.useContext(q);if(!t)throw new Error("useAppDialog must be used within AppDialogProvider");return t}export{ke as A,b as B,fe as D,I as F,ne as G,L as I,A as L,F as T,je as a,re as b,l as c,_ as d,S as e,G as f,R as g,O as h,z as i,V as j,ce as k,ue as l,me as m,C as n,De as o,we as p,ve as q,Te as s,Ee as u}; diff --git a/axhub-make/admin/assets/chunks/_commonjs-dynamic-modules.js b/axhub-make/admin/assets/chunks/_commonjs-dynamic-modules.js new file mode 100644 index 0000000..f19d79e --- /dev/null +++ b/axhub-make/admin/assets/chunks/_commonjs-dynamic-modules.js @@ -0,0 +1 @@ +function r(o){throw new Error('Could not dynamically require "'+o+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}export{r as c}; diff --git a/axhub-make/admin/assets/chunks/_commonjsHelpers.js b/axhub-make/admin/assets/chunks/_commonjsHelpers.js new file mode 100644 index 0000000..7e9f0fd --- /dev/null +++ b/axhub-make/admin/assets/chunks/_commonjsHelpers.js @@ -0,0 +1 @@ +var u=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function f(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function l(e){if(e.__esModule)return e;var r=e.default;if(typeof r=="function"){var t=function o(){return this instanceof o?Reflect.construct(r,arguments,this.constructor):r.apply(this,arguments)};t.prototype=r.prototype}else t={};return Object.defineProperty(t,"__esModule",{value:!0}),Object.keys(e).forEach(function(o){var n=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(t,o,n.get?n:{enumerable:!0,get:function(){return e[o]}})}),t}export{f as a,u as c,l as g}; diff --git a/axhub-make/admin/assets/chunks/fills-generator.js b/axhub-make/admin/assets/chunks/fills-generator.js new file mode 100644 index 0000000..16da9d1 --- /dev/null +++ b/axhub-make/admin/assets/chunks/fills-generator.js @@ -0,0 +1,2 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/vendor-common.js","assets/chunks/vendor-react.js","assets/chunks/_commonjsHelpers.js","assets/chunks/preload-helper.js","assets/chunks/_commonjs-dynamic-modules.js"])))=>i.map(i=>d[i]); +import{_ as tt}from"./preload-helper.js?v=1775123024591";const ne=t=>{if(!t)return null;const e=t.match(/([\d\.]+(?:e[+-]?\d+)?)px/i),n=e==null?void 0:e[1];return n?{unit:"PIXELS",value:parseFloat(n)}:null},re=(t,e=0,n=0)=>{if(!t)return null;const r=t.match(/([\d\.]+(?:e[+-]?\d+)?)px/i);if(r){const i=parseFloat(r[1]);return{unit:"PIXELS",value:Math.min(i,1e4)}}const o=t.match(/([\d\.]+(?:e[+-]?\d+)?)%/i);if(o){const i=parseFloat(o[1]),s=Math.max(e,n),l=i/100*s;return{unit:"PIXELS",value:Math.min(l,1e4)}}const a=t.match(/^([\d\.]+(?:e[+-]?\d+)?)$/i);if(a){const i=parseFloat(a[1]);return{unit:"PIXELS",value:Math.min(i,1e4)}}return null};function et(t,e,n){let r=(t+16)/116,o=e/500+r,a=r-n/200;const i=u=>u>.206897?Math.pow(u,3):(u-16/116)/7.787;o=i(o)*95.047,r=i(r)*100,a=i(a)*108.883,o=o/100,r=r/100,a=a/100;let s=o*3.2406+r*-1.5372+a*-.4986,l=o*-.9689+r*1.8758+a*.0415,c=o*.0557+r*-.204+a*1.057;const d=u=>u>.0031308?1.055*Math.pow(u,1/2.4)-.055:12.92*u;return s=d(s),l=d(l),c=d(c),s=Math.max(0,Math.min(1,s)),l=Math.max(0,Math.min(1,l)),c=Math.max(0,Math.min(1,c)),{r:s,g:l,b:c}}const T=t=>Math.max(0,Math.min(1,t)),E=(t,e=null)=>{if(typeof t!="string")return null;const r=t.trim().match(/^([+-]?(?:\d+\.?\d*|\.\d+)(?:e[+-]?\d+)?)(%)?$/i);if(!r)return null;let o=parseFloat(r[1]);if(!Number.isFinite(o))return null;if(r[2]){if(e===null)return null;o=o/100*e}return o},nt=t=>{if(t==null||t==="")return 1;const e=E(t,1);return e===null?null:T(e)},V=t=>{if(typeof t!="string")return null;const e=t.trim(),n=e.endsWith("%"),r=E(e,1);return r===null||!n&&(r<0||r>1)?null:T(r)},rt=t=>{if(typeof t!="string")return null;const n=t.trim().toLowerCase().match(/^([+-]?(?:\d+\.?\d*|\.\d+)(?:e[+-]?\d+)?)(deg|rad|grad|turn)?$/);if(!n)return null;let r=parseFloat(n[1]);if(!Number.isFinite(r))return null;const o=n[2]||"deg";return o==="rad"?r=r*180/Math.PI:o==="grad"?r=r*.9:o==="turn"&&(r=r*360),(r%360+360)%360},Y=t=>{const e=t.split("/");if(e.length>2)return null;const n=e[0].trim().split(/[\s,]+/).filter(Boolean);if(n.length!==3)return null;const r=nt(e[1]?e[1].trim():void 0);return r===null?null:{channels:n,alpha:r}};function ot(t,e,n){const r=n*Math.PI/180;return{L:t,a:e*Math.cos(r),b:e*Math.sin(r)}}function at(t,e,n){const r=t+.3963377774*e+.2158037573*n,o=t-.1055613458*e-.0638541728*n,a=t-.0894841775*e-1.291485548*n,i=r*r*r,s=o*o*o,l=a*a*a;return{r:4.0767416621*i-3.3077115913*s+.2309699292*l,g:-1.2684380046*i+2.6097574011*s-.3413193965*l,b:-.0041960863*i-.7034186147*s+1.707614701*l}}function v(t){return t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055}function z(t,e,n){const r=at(t,e,n);return{r:T(v(r.r)),g:T(v(r.g)),b:T(v(r.b))}}function it(t,e,n){const r=ot(t,e,n);return z(r.L,r.a,r.b)}const st=t=>{const e=t.match(/^oklab\(\s*([^)]+)\s*\)$/i);if(!e)return null;const n=Y(e[1]);if(!n)return null;const r=V(n.channels[0]),o=E(n.channels[1],1),a=E(n.channels[2],1);if(r===null||o===null||a===null)return null;const i=z(r,o,a);return{r:i.r,g:i.g,b:i.b,a:n.alpha}},ct=t=>{const e=t.match(/^oklch\(\s*([^)]+)\s*\)$/i);if(!e)return null;const n=Y(e[1]);if(!n)return null;const r=V(n.channels[0]),o=E(n.channels[1],1),a=rt(n.channels[2]);if(r===null||o===null||a===null)return null;const i=it(r,o,a);return{r:i.r,g:i.g,b:i.b,a:n.alpha}};function j(t){if(!t)return null;const e=t.trim();if(e.toLowerCase()==="transparent")return{r:0,g:0,b:0,a:0};const n=ct(e);if(n)return n;const r=st(e);if(r)return r;const o=e.match(/^lab\(\s*([0-9.]+%?)\s+([+-]?[0-9.]+)\s+([+-]?[0-9.]+)(?:\s*\/\s*([0-9.]+%?))?\s*\)$/i);if(o){const s=parseFloat(o[1]),l=parseFloat(o[2]),c=parseFloat(o[3]);let d=1;if(o[4]){const f=parseFloat(o[4]);d=o[4].includes("%")?f/100:f}const u=et(s,l,c);return{r:u.r,g:u.g,b:u.b,a:d}}const a=e.match(/rgba?\(([\d\.]+),\s*([\d\.]+),\s*([\d\.]+)(?:,\s*([\d\.]+))?\)/);if(a){const[s,l,c,d,u]=a;if(l&&c&&d)return{r:parseInt(l)/255,g:parseInt(c)/255,b:parseInt(d)/255,a:u?parseFloat(u):1}}const i=e.match(/^#([0-9a-f]{3}|[0-9a-f]{6})$/i);if(i){let s=i[1];return s.length===3&&(s=s.split("").map(l=>l+l).join("")),{r:parseInt(s.slice(0,2),16)/255,g:parseInt(s.slice(2,4),16)/255,b:parseInt(s.slice(4,6),16)/255,a:1}}return null}const lt=/^[0-9]+[a-zA-Z%]+?$/,K=t=>{if(!/px$/.test(t)&&t!=="0")return 0;const e=parseFloat(t);return isNaN(e)?0:e},X=t=>t==="0"||lt.test(t),ut=/^(transparent|currentcolor|#[0-9a-f]{3,8}|(?:rgba?|hsla?|hwb|lab|lch|oklab|oklch|color)\([^)]*\))\s+/i,Q=t=>{const e=t.match(ut);if(!e)return t;const n=e[1],r=t.slice(e[0].length).trim();return r?`${r} ${n}`.trim():t},U=t=>{t=Q(t);const e=/\s(?![^(]*\))/,n=t.split(e),r=n.includes("inset"),o=n.slice(-1)[0],a=X(o)?"rgba(0, 0, 0, 1)":o,i=n.filter(u=>u!=="inset").filter(u=>u!==a).map(K),[s=0,l=0,c=0,d=0]=i;return{inset:r,offsetX:s,offsetY:l,blurRadius:c,spreadRadius:d,color:a}},oe=t=>{if(!t||t==="none")return[];const e=[];let n="",r=0;for(let o=0;o{t=Q(t);const e=/\s(?![^(]*\))/,n=t.split(e),r=n.slice(-1)[0],o=X(r)?"rgba(0, 0, 0, 1)":r,a=n.filter(c=>c!==o).map(K),[i=0,s=0,l=0]=a;return{offsetX:i,offsetY:s,blurRadius:l,color:o}},ae=t=>{if(!t||t==="none")return[];const e=[];let n="",r=0;for(let o=0;o{if(!t||t==="none")return[];const e=[],n=/(\w+)\(([^)]+)\)/g;let r;for(;(r=n.exec(t))!==null;){const[,o,a]=r;switch(o){case"blur":const i=parseFloat(a);isNaN(i)||e.push({type:"LAYER_BLUR",radius:i,visible:!0});break;case"brightness":case"contrast":case"saturate":case"hue-rotate":case"invert":case"sepia":case"opacity":e.push({type:"CUSTOM_FILTER",filterType:o,value:parseFloat(a)||1,visible:!0});break}}return e},se=t=>{if(!t||t==="none")return[];const e=[],n=/(\w+)\(([^)]+)\)/g;let r;for(;(r=n.exec(t))!==null;){const[,o,a]=r;if(o==="blur"){const i=parseFloat(a);isNaN(i)||e.push({type:"BACKGROUND_BLUR",radius:i,visible:!0})}}return e},dt={fill:"FILL",contain:"FIT",cover:"CROP","scale-down":"FIT",none:"TILE"},N="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAG0lEQVQImWNgYGD4z8DAwMgABYwMjAxQAKkGBgA66gJx4f4x5QAAAABJRU5ErkJggg==";function ft(t){if(!t||t==="none")return"TILE";if(t==="contain")return"FIT";if(t==="cover")return"CROP";if(t==="auto")return"TILE";const e=t.split(/\s+/);if(e.length>=1){const[n,r]=e;if(n==="100%"&&r==="100%")return"FILL";if(e.length===1)return n==="100%"?"FILL":n==="auto"?"TILE":"CROP";if(e.length>=2){if(r==="auto"&&(n.includes("%")||n.includes("px"))||n==="auto"&&(r.includes("%")||r.includes("px"))||(n.includes("%")||n.includes("px"))&&(r.includes("%")||r.includes("px")))return"CROP";if(n==="auto"&&r==="auto")return"TILE"}}return"FILL"}function gt(t){let e=t.parentElement;for(;e;){const r=getComputedStyle(e).overflow;if(r!=="visible")return r;e=e.parentElement}return"visible"}function ht(t,e){return(e==="hidden"||e==="scroll"||e==="auto")&&(t==="FIT"||t==="TILE")?"CROP":t}function A(t,e,n){let r;if(e==="background")r=ft(t.backgroundSize);else{const a=t.objectFit||"fill";r=dt[a]||"FILL"}const o=gt(n);return ht(r,o)}const mt=({computedStyle:t,el:e})=>{if(e instanceof SVGSVGElement){const n=`data:image/svg+xml,${encodeURIComponent(e.outerHTML.replace(/\s+/g," "))}`,r=A(t,"image",e);return{url:n,type:"IMAGE",scaleMode:r,imageHash:null}}else if(e instanceof HTMLImageElement){const n=e.src;if(n){const r=A(t,"image",e);e.getAttribute("data-from-canvas");const o=n.startsWith("data:"),a={type:"IMAGE",scaleMode:r,imageHash:null};if(o){const i=k(n);i.byteLength>0&&(a.intArr=Array.from(i))}return Object.assign({url:n},a)}else{if(e.getAttribute("data-canvas-tainted")==="true"){const r=A(t,"image",e),o={url:N,type:"IMAGE",scaleMode:r,imageHash:null},a=k(N);return a.byteLength>0&&(o.intArr=Array.from(a)),o}console.warn("⚠️ [getImagePaintWithUrl] IMG 元素没有 src:",e)}}else if(e instanceof HTMLVideoElement){const n=e.poster;if(n){const o={type:"IMAGE",scaleMode:A(t,"image",e),imageHash:null};if(n.startsWith("data:")){const a=k(n);a.byteLength>0&&(o.intArr=Array.from(a))}return Object.assign({url:n},o)}}if(t.backgroundImage&&t.backgroundImage!=="none"){const n=t.backgroundImage.match(/url\(['"]?(.*?)['"]?\)/),r=n==null?void 0:n[1];if(r){if(r.includes(".svg")||r.includes("data:image/svg+xml"))return;const o=A(t,"background",e);return{url:r,type:"IMAGE",scaleMode:o,imageHash:null}}}},O=";base64,";function k(t){try{const e=t.indexOf(O)+O.length,n=t.substring(e);if(!n||n.trim()==="")return console.warn("⚠️ [convertDataURIToBinary] base64 内容为空"),new Uint8Array(0);const r=window.atob(n),o=r.length,a=new Uint8Array(new ArrayBuffer(o));for(let i=0;i{var e;if(typeof window>"u"||!((e=window.location)!=null&&e.origin))return null;try{return`${window.location.origin}/api/export/image-proxy?url=${encodeURIComponent(t)}`}catch{return null}},bt=t=>{var e;if(typeof window>"u"||!((e=window.location)!=null&&e.origin))return!1;try{return new URL(t,document.baseURI).origin!==window.location.origin}catch{return!1}},yt=async t=>{const e=await fetch(t,{method:"GET",mode:"cors"});if(!e.ok)throw new Error(`Image request failed with status ${e.status}`);return await e.blob()};async function C(t){const e=[],n=pt(t);n&&bt(t)&&e.push({url:n,viaProxy:!0}),e.push({url:t,viaProxy:!1});let r=null;for(const o of e)try{const a=await yt(o.url),i=a.type;return i!=="image/png"&&i!=="image/jpeg"?await L(await G(a),i):`data:${i};base64,${await G(a)}`}catch(a){r=a}return console.error("Failed to load image as base64:",r),null}const F=t=>typeof t=="string"&&t.startsWith("data:"),wt=t=>{try{return new URL(t,document.baseURI).href}catch{return t}},At=async t=>{var n,r,o;if(!(typeof globalThis<"u"&&((r=(n=globalThis.chrome)==null?void 0:n.runtime)==null?void 0:r.sendMessage)))return null;try{const a=await Promise.race([globalThis.chrome.runtime.sendMessage({type:"getResourceContent",src:t}),new Promise(l=>setTimeout(()=>l(null),8e3))]);if(!((o=a==null?void 0:a.data)!=null&&o.content))return null;const i=a.data.mimeType||"application/octet-stream",s=a.data.content;if(a.data.base64Encoded){if(i==="image/webp")try{return await L(s,i)}catch{}return`data:${i};base64,${s}`}return typeof s=="string"&&i.includes("svg")?`data:${i};utf8,${encodeURIComponent(s)}`:null}catch{return null}},It=async t=>{if(!t)return t;if(F(t))return await q(t);const e=wt(t),n=await At(e);return n||await C(e)},Tt=t=>{const e=/^data:([^;,]+)/i.exec(t||"");return(e&&e[1]?e[1].toLowerCase():"").trim()},Et=t=>t==="image/png"||t==="image/jpeg"||t==="image/jpg"||t==="image/gif",Lt=t=>new Promise((e,n)=>{const r=new Image,o=setTimeout(()=>n(new Error("Image load timeout")),1e4);r.onload=()=>{clearTimeout(o);try{const a=document.createElement("canvas"),i=a.getContext("2d");if(!i){n(new Error("Failed to get canvas context"));return}a.width=r.width,a.height=r.height,i.drawImage(r,0,0),e(a.toDataURL("image/png"))}catch(a){n(a)}},r.onerror=()=>{clearTimeout(o),n(new Error("Failed to load data URL image"))},r.src=t}),q=async t=>{if(!F(t))return t;const e=Tt(t);if(!e||Et(e)||!e.startsWith("image/"))return t;try{return await Lt(t)}catch{return t}},Mt=t=>{const e=[];if(!t||t==="none")return e;const n=/url\((['"]?)(.*?)\1\)/g;let r;for(;(r=n.exec(t))!==null;){const o=(r[2]||"").trim();o&&e.push({fullMatch:r[0],rawUrl:o})}return e},I=t=>{t.removeAttribute("srcset"),t.removeAttribute("sizes"),t.srcset="",t.sizes="",t.parentElement instanceof HTMLPictureElement&&t.parentElement.querySelectorAll("source").forEach(n=>{n.removeAttribute("srcset"),n.removeAttribute("sizes")})};async function Ct(t){const e=[t,...Array.from(t.querySelectorAll("*"))];for(const n of e){if(!(n instanceof HTMLElement))continue;let r;try{r=window.getComputedStyle(n)}catch{continue}const o=r.backgroundImage;if(!o||o==="none")continue;const a=Mt(o);if(a.length===0)continue;let i=o,s=!1;for(const l of a){const c=await It(l.rawUrl);if(!c||!F(c))continue;const d=`url("${c}")`;i.includes(l.fullMatch)&&(i=i.replace(l.fullMatch,d),s=!0)}s&&n.style.setProperty("background-image",i,"important")}}function G(t){return new Promise((e,n)=>{const r=new FileReader;r.onload=()=>{const a=r.result.split(",")[1];e(a)},r.onerror=n,r.readAsDataURL(t)})}function L(t,e){return new Promise((n,r)=>{const o=new Image,a=setTimeout(()=>{r(new Error("Image load timeout"))},1e4);o.onload=()=>{clearTimeout(a);const s=document.createElement("canvas"),l=s.getContext("2d");if(!l){const c=new Error("Failed to get canvas context");console.error("❌ [imgToPng]",c),r(c);return}s.width=o.width,s.height=o.height;try{l.drawImage(o,0,0);const c=s.toDataURL("image/png");n(c)}catch(c){console.error("❌ [imgToPng] Canvas 绘制失败:",c),r(c)}},o.onerror=s=>{clearTimeout(a),r(new Error(`Failed to load image: ${s.type||"unknown error"}`))};const i=`data:${e};base64,${t}`;o.src=i})}function D(){const t=arguments.length>0?arguments[0]:document,e=arguments.length>1?arguments[1]:void 0,n=e&&typeof e.timeoutMs=="number"?e.timeoutMs:8e3,r=t&&typeof t.querySelectorAll=="function"?t:document;return new Promise(o=>{const a=r.querySelectorAll("img");if(a.length===0){o();return}let i=0;const s=a.length,l=typeof performance<"u"?performance.now():Date.now(),c=new Set,d=()=>{i++,i===s&&o()};a.forEach(u=>{c.add(u);const f=()=>{c.has(u)&&c.delete(u),d()};if(u.complete)f();else{const h=()=>{b(),f()},p=()=>{b(),f()},b=()=>{u.removeEventListener("load",h),u.removeEventListener("error",p),clearTimeout(m)},m=setTimeout(()=>{b(),f()},n);u.addEventListener("load",h,{once:!0}),u.addEventListener("error",p,{once:!0})}}),setTimeout(()=>{if(i!==s){const u=Math.round((typeof performance<"u"?performance.now():Date.now())-l);console.warn("⚠️ [areAllImagesLoaded] timeout, continue anyway",{elapsedMs:u,totalImages:s,remaining:c.size}),o()}},n+50)})}const P=!1,_="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAG0lEQVQImWNgYGD4z8DAwMgABYwMjAxQAKkGBgA66gJx4f4x5QAAAABJRU5ErkJggg==",Rt=(t,e,n)=>{try{const r=document.createElement("canvas"),o=Math.max(1,Math.min(32,Math.round(t)||2)),a=Math.max(1,Math.min(32,Math.round(e)||2));r.width=o,r.height=a;const i=r.getContext("2d");return i?(i.fillStyle=n||"#f0f0f0",i.fillRect(0,0,o,a),r.toDataURL("image/png")):_}catch{return _}};async function xt(t){t.querySelectorAll("canvas").forEach((n,r)=>{try{if(n.width===0||n.height===0)return;const o=window.getComputedStyle(n),a=Rt(n.width,n.height,o.backgroundColor);let i;try{i=n.toDataURL("image/png")}catch{const c=document.createElement("img");c.src=a,c.style.width=n.style.width||n.width+"px",c.style.height=n.style.height||n.height+"px",c.style.backgroundColor="#f0f0f0",c.setAttribute("data-canvas-tainted","true"),c.setAttribute("data-from-canvas","true"),c.setAttribute("alt","Canvas (跨域限制)"),c.setAttribute("data-canvas-width",String(n.width||0)),c.setAttribute("data-canvas-height",String(n.height||0)),c.style.display=o.display,c.style.position=o.position,c.style.objectFit="fill",n.parentNode&&n.parentNode.replaceChild(c,n);return}const s=document.createElement("img");s.src=i||a,s.style.width=n.style.width||n.width+"px",s.style.height=n.style.height||n.height+"px",s.style.display=o.display,s.style.position=o.position,s.style.top=o.top,s.style.left=o.left,s.style.right=o.right,s.style.bottom=o.bottom,s.style.margin=o.margin,s.style.padding=o.padding,n.className&&(s.className=n.className),n.id&&(s.id=n.id),s.setAttribute("data-from-canvas","true"),n.parentNode&&n.parentNode.replaceChild(s,n)}catch(o){console.error(`❌ [convertCanvasToImage] Canvas ${r+1} 转换失败:`,o),console.error("❌ [convertCanvasToImage] 错误堆栈:",o.stack)}})}async function ce(t){try{await xt(t),await Ct(t),await D(t);const e=[],n=t.querySelectorAll("img");for(let r=0;r{try{const s=await q(a);s&&s!==a&&(o.setAttribute("src",s),I(o))}catch{}return!0})();e.push(i);continue}if(a&&!a.startsWith("data")){const i=(async()=>{var s,l,c;try{const d=new URL(a,document.baseURI).href,f=typeof globalThis<"u"&&((l=(s=globalThis.chrome)==null?void 0:s.runtime)==null?void 0:l.sendMessage)?await Promise.race([globalThis.chrome.runtime.sendMessage({type:"getResourceContent",src:d}),new Promise(h=>setTimeout(()=>h(null),8e3))]):null;if((c=f==null?void 0:f.data)!=null&&c.base64Encoded){if(f.data.mimeType!=="image/png"&&f.data.mimeType!=="image/jpeg")try{const h=await L(f.data.content,f.data.mimeType);o.setAttribute("src",h),I(o)}catch{try{const p=`data:${f.data.mimeType};base64,${f.data.content}`;o.setAttribute("src",p),I(o)}catch{}}else{const h=`data:${f.data.mimeType};base64,${f.data.content}`;o.setAttribute("src",h),I(o)}return!0}else{try{const h=await C(d);if(h)return o.setAttribute("src",h),I(o),!0}catch{}return!1}}catch{return!1}})();e.push(i)}}}if(e.length>0)try{const r=new Promise(o=>{setTimeout(()=>{o(new Array(e.length).fill(!1))},3e4)});await Promise.race([Promise.allSettled(e),r])}catch{}await D(t,{timeoutMs:8e3})}catch{}}const $=!1;function vt(){try{return $||!!window.__AXHUB_HTML_TO_FIGMA_DEBUG__||!!window.__AXHUB_FILL_DEBUG__}catch{return $}}function kt(t){return!t||!(t instanceof Element)?{name:"unknown",className:""}:{name:t.tagName.toLowerCase(),id:t.id||"",className:t.className||""}}function Pt(t){if(!t||t==="none")return[];const e=[];let n="",r=0,o=!1,a="";for(let i=0;i0?t[i-1]:"";if((s==='"'||s==="'")&&l!=="\\"&&(o?s===a&&(o=!1,a=""):(o=!0,a=s)),o||(s==="("?r++:s===")"&&r--),s===","&&!o&&r===0){const c=n.trim();c&&e.push(c),n=""}else n+=s}return n.trim()&&e.push(n.trim()),e}function Ft(t){return t?t.split(",").map(e=>e.trim()).filter(Boolean):[]}function Ut(t){switch((t||"").toLowerCase()){case"normal":case"src-over":return"NORMAL";case"multiply":return"MULTIPLY";case"screen":return"SCREEN";case"overlay":return"OVERLAY";case"darken":return"DARKEN";case"lighten":return"LIGHTEN";case"color-dodge":return"COLOR_DODGE";case"color-burn":return"COLOR_BURN";case"hard-light":return"HARD_LIGHT";case"soft-light":return"SOFT_LIGHT";case"difference":return"DIFFERENCE";case"exclusion":return"EXCLUSION";case"hue":return"HUE";case"saturation":return"SATURATION";case"color":return"COLOR";case"luminosity":return"LUMINOSITY";default:return"NORMAL"}}function W(t){if(!t||t==="none"||t==="auto")return"TILE";if(t==="contain")return"FIT";if(t==="cover")return"CROP";const e=t.split(/\s+/);if(e.length>=1){const[n,r]=e;if(n==="100%"&&r==="100%")return"FILL";if(e.length===1)return n==="100%"?"FILL":n==="auto"?"TILE":"CROP";if(e.length>=2){if(r==="auto"&&(n.includes("%")||n.includes("px"))||n==="auto"&&(r.includes("%")||r.includes("px"))||(n.includes("%")||n.includes("px"))&&(r.includes("%")||r.includes("px")))return"CROP";if(n==="auto"&&r==="auto")return"TILE"}}return"FILL"}function Bt(t,e=1){let n=1;if(t.opacity&&t.opacity!==""){const r=parseFloat(t.opacity);isNaN(r)||(n=r)}return e!==void 0&&e!==1&&(n=n*e),n}function Nt(t){if(!t||t==="none")return[];const e=[];let n="",r=0,o=!1,a="";for(let i=0;i0?t[i-1]:"";if((s==='"'||s==="'")&&l!=="\\"&&(o?s===a&&(o=!1,a=""):(o=!0,a=s)),o||(s==="("?r++:s===")"&&r--),s===","&&!o&&r===0){const c=n.trim();c&&e.push(S(c)),n=""}else n+=s}return n.trim()&&e.push(S(n.trim())),e}function S(t){if(t.includes("linear-gradient")||t.includes("radial-gradient")||t.includes("conic-gradient")||t.includes("repeating-linear-gradient")||t.includes("repeating-radial-gradient"))return{type:"gradient",value:t};if(t.includes("url(")){const e=t.match(/url\(['"]?(.*?)['"]?\)/);if(e&&e[1]){const n=e[1];return n.includes(".svg")||n.includes("data:image/svg+xml")?{type:"svg",value:n}:{type:"image",value:n}}}return t.includes("data:image/")&&!t.includes("data:image/svg+xml")?{type:"image",value:t.trim()}:{type:"unknown",value:t}}async function le(t,e=null,n={}){const r=vt(),o=kt(e),{includeImageFills:a=!0,includeBackgroundColor:i=!0,includeComplexBackgrounds:s=!0}=n,l=[];if(s&&Ot(t)){if(r&&console.log("[fills] complex-background-screenshot",{trace:o,backgroundImage:t.backgroundImage,background:t.background}),i&&M(l,t),e)try{const c=await Ht(e,t,{ignoreBackgroundColor:!0});if(c)return l.push(c),r&&console.log("[fills] screenshot-image-added",{trace:o,fillTypes:l.map(d=>d.type)}),l}catch(c){console.error("❌ [generateFillsFromStyles] 复杂背景转换出错:",c)}return l.length===0&&M(l,t),l}if(a&&e){const c=mt({computedStyle:t,el:e});if(c)return l.push(c),l}if(a||s){const c=t.backgroundImage,d=Ft(t.backgroundBlendMode||"");if(c&&c!=="none"){let u=1,f=1;if(e){const p=e.getBoundingClientRect(),b=p.width||1,m=p.height||1;b>=m?(u=1,f=m/b):(u=b/m,f=1)}const h=Nt(c);if(h.length>0){r&&console.log("[fills] parsed-background-layers",{trace:o,backgroundImage:c,layerTypes:h.map(m=>m.type)});const p=Pt(t.backgroundSize||"auto");i&&M(l,t);const b=[];for(let m=h.length-1;m>=0;m--){const y=h[m];let g=null;const R=d.length>0?Ut(d[Math.min(m,d.length-1)]):"NORMAL";if(y.type==="gradient"){const w=Vt(y.value,u,f);w&&(g={...w,blendMode:R})}else if(y.type==="image"){const w=p[m]||p[p.length-1]||"auto",x=W(w);g=await H(y.value,x,null),g&&(g={...g,blendMode:R})}else if(y.type==="svg"){const w=p[m]||p[p.length-1]||"auto",x=W(w);g=await H(y.value,x,null),g&&(g={...g,blendMode:R})}g&&b.push(g)}if(l.push(...b),r){const m=l.some(g=>g.type==="IMAGE"),y=l.some(g=>g.type==="GRADIENT_LINEAR"||g.type==="GRADIENT_RADIAL");console.log("[fills] final-fills",{trace:o,fillTypes:l.map(g=>g.type),hasImageFill:m,hasGradientFill:y})}return l}}}return i&&!$t(t)&&!St(t)&&M(l,t),l}function M(t,e){const n=j(e.backgroundColor);if(n&&n.a>0){const r=Bt(e,n.a),o={type:"SOLID",color:{r:n.r,g:n.g,b:n.b},opacity:r};t.push(o)}}function Ot(t){const e=t.backgroundImage,n=t.background;if(e&&e!=="none"&&e.includes("conic-gradient")||n&&n!=="none"&&n.includes("conic-gradient")||Wt(t))return!0;const r=t.maskImage||t.webkitMaskImage;return!!(r&&r!=="none"||Gt(t)||Dt(t)||_t(t))}function Gt(t){const e={top:t.borderTop,right:t.borderRight,bottom:t.borderBottom,left:t.borderLeft};if(!Object.values(e).some(i=>i&&i!=="none"))return!1;const r={};for(const[i,s]of Object.entries(e))if(s&&s!=="none"){const l=s.match(/^([\d\.]+)px\s*(\w+)\s*(.*)$/);if(l){const[c,d,u,f]=l;r[i]={borderWidth:d,borderType:u,borderColor:f}}}else r[i]={borderWidth:"0",borderType:"none",borderColor:"transparent"};const o=Object.values(r).find(i=>i.borderWidth!=="0");return o?!Object.values(r).every(i=>i.borderWidth===o.borderWidth&&i.borderType===o.borderType&&i.borderColor===o.borderColor):!1}function Dt(t){const e=t.clipPath,n=t.webkitClipPath;return e&&e!=="none"||n&&n!=="none"}function _t(t){const e=t.backgroundImage;if(!e||e==="none")return!1;const n=t.backgroundAttachment;if(n&&n==="fixed")return!0;const r=t.backgroundOrigin;if(r&&r!=="padding-box")return!0;const o=t.backgroundRepeat;if(o&&(o==="repeat-x"||o==="repeat-y"))return!0;const a=t.backgroundPositionX,i=t.backgroundPositionY;if(a&&a!=="0%"&&a!=="left"&&a!=="50%"&&a!=="center"||i&&i!=="0%"&&i!=="top"&&i!=="50%"&&i!=="center")return!0;const c=t.backgroundSize;return!!(c&&c!=="auto"&&c!=="cover"&&c!=="contain"&&c!=="100% 100%"&&c!=="100%"&&(c.includes("px")||c.includes("%")&&!c.startsWith("100%")))}function $t(t){const e=t.backgroundImage,n=t.background;return!!(e&&e!=="none"&&(e.includes("linear-gradient")||e.includes("radial-gradient")||e.includes("conic-gradient")||e.includes("repeating-linear-gradient")||e.includes("repeating-radial-gradient"))||n&&n!=="none"&&(n.includes("linear-gradient")||n.includes("radial-gradient")||n.includes("conic-gradient")||n.includes("repeating-linear-gradient")||n.includes("repeating-radial-gradient")))}function Wt(t){const e=t.backgroundImage,n=t.background;return!!(e&&e!=="none"&&(e.includes("repeating-linear-gradient")||e.includes("repeating-radial-gradient"))||n&&n!=="none"&&(n.includes("repeating-linear-gradient")||n.includes("repeating-radial-gradient")))}function St(t){const e=t.backgroundImage,n=t.background;if(e&&e!=="none"&&(e.includes("url(")||e.includes("data:"))){const r=e.match(/url\(['"]?(.*?)['"]?\)/);if(r&&r[1]){const o=r[1];return!(o.includes(".svg")||o.includes("data:image/svg+xml"))}}if(n&&n!=="none"&&(n.includes("url(")||n.includes("data:"))){const r=n.match(/url\(['"]?(.*?)['"]?\)/);if(r&&r[1]){const o=r[1];return!(o.includes(".svg")||o.includes("data:image/svg+xml"))}}return!1}async function Ht(t,e,n={}){try{const r=t.getBoundingClientRect(),o=4096;if(r.width>o||r.height>o)return null;const{snapdom:a}=await tt(async()=>{const{snapdom:l}=await import("./vendor-common.js?v=1775123024591").then(c=>c.dj);return{snapdom:l}},__vite__mapDeps([0,1,2,3,4])),i=t.cloneNode(!0);i.removeAttribute("id");for(let l=0;l{l.style.visibility="hidden"}),document.body.appendChild(i);const s=await a.toPng(i,{fast:!1,embedFonts:!0,scale:1,dpr:1,width:r.width,height:r.height});return document.body.removeChild(i),!s||!s.src?(console.error("❌ [convertElementToBase64Image] snapdom 返回无效的图片元素"),null):{type:"IMAGE",url:s.src,scaleMode:"FILL",imageHash:null}}catch(r){return console.error("❌ [convertElementToBase64Image] 转换失败:",r),null}}function Vt(t,e=1,n=1){if(!t)return null;const r=t.replace(/\s+/g," ").trim(),o=r.match(/linear-gradient\s*\((.+)\)/i);if(o)return Yt(o[1],e,n);const a=r.match(/radial-gradient\s*\((.+)\)/i);return a?zt(a[1]):(r.match(/conic-gradient\s*\((.+)\)/i),null)}function Yt(t,e=1,n=1){const r=J(t);let o="to bottom",a=[];jt(r[0])?(o=r[0],a=r.slice(1)):a=r;const i=Z(a);return i.length?{type:"GRADIENT_LINEAR",gradientTransform:qt(o,e,n),gradientStops:i,opacity:1,visible:!0,blendMode:"NORMAL"}:null}function zt(t){const e=J(t);let n=[];Kt(e[0])||Xt(e[0])?(e[0],n=e.slice(1)):n=e;const r=Z(n);return r.length?{type:"GRADIENT_RADIAL",gradientTransform:Jt(),gradientStops:r,opacity:1,visible:!0,blendMode:"NORMAL"}:null}function J(t){const e=[];let n=0,r=0;for(let o=0;o{const i=o.trim(),s=i.match(/\s+(\d*\.?\d+%?)\s*$/);let l=i,c;if(s){const u=s[1],f=parseFloat(u);isNaN(f)||(c=u.includes("%")?f/100:f),l=i.substring(0,s.index).trim()}const d=Qt(l);return{position:c,color:d}}),n=e.filter(o=>o.position!==void 0),r=e.filter(o=>o.position===void 0);if(r.length>0&&(n.length===0?e.forEach((o,a)=>{o.position=e.length>1?a/(e.length-1):0}):r.forEach((o,a)=>{const i=e.length;o.position=(n.length+a)/(i-1)})),e.sort((o,a)=>(o.position||0)-(a.position||0)),e.forEach(o=>{o.position=Math.max(0,Math.min(1,o.position||0))}),e.length===1){const o=e[0];e.push({position:1,color:{...o.color}}),e[0].position=0}return e.map(o=>({position:o.position,color:o.color}))}function Qt(t){const e=j(t);return e||{r:0,g:0,b:0,a:1}}function qt(t,e=1,n=1){const r={"to top":0,"to top right":45,"to right top":45,"to right":90,"to bottom right":135,"to right bottom":135,"to bottom":180,"to bottom left":225,"to left bottom":225,"to left":270,"to top left":315,"to left top":315};let o;const a=t.trim().toLowerCase();a.endsWith("deg")?o=parseFloat(a):r[a]!==void 0?o=r[a]:o=180;const i=o*Math.PI/180,s=Math.cos(i),l=Math.sin(i);return[[s,-l,.5],[l,s,.5]]}function Jt(t,e){return[[.5,0,.5],[0,.5,.5]]}function Zt(t){return t?!!(t.includes(".svg")&&!t.includes(".svg?")&&t.split("?")[0].endsWith(".svg")||t.startsWith("data:image/svg+xml")):!1}async function te(t){var e,n;try{let r="",o="image/svg+xml";if(t.startsWith("data:image/svg+xml"))if(t.includes(";base64,")){const s=t.match(/data:image\/svg\+xml;base64,(.+)/);if(s&&s[1])try{r=atob(s[1])}catch{return null}}else{const s=t.match(/data:image\/svg\+xml,(.+)/);s&&s[1]&&(r=decodeURIComponent(s[1]))}else try{const s=new URL(t,document.baseURI).href,c=typeof chrome<"u"&&((e=chrome==null?void 0:chrome.runtime)==null?void 0:e.sendMessage)?await chrome.runtime.sendMessage({type:"getResourceContent",src:s}):null;if((n=c==null?void 0:c.data)!=null&&n.content){if(r=c.data.content,c.data.base64Encoded)try{r=atob(r)}catch{return null}o=c.data.mimeType||"image/svg+xml"}else{const d=await fetch(s,{method:"GET",mode:"cors"});if(!d.ok)throw new Error(`Failed to load SVG: ${d.statusText}`);r=await d.text()}}catch{const l=new URL(t,document.baseURI).href,c=await fetch(l,{method:"GET",mode:"cors"});if(!c.ok)throw new Error(`Failed to load SVG: ${c.statusText}`);r=await c.text()}if(!r)throw new Error("无法获取 SVG 内容");r=r.replace(/\\"/g,'"').replace(/\\\\/g,"");const a=btoa(unescape(encodeURIComponent(r)));return await L(a,o)}catch(r){return console.error("❌ [convertSvgToPng] SVG 转 PNG 失败:",r),t}}async function H(t,e="FILL",n=null){let r=t;const o=(t||"").toLowerCase();if(t!=null&&t.startsWith("data:image/webp")){const a=t.split(";base64,")[1];if(a)try{r=await L(a,"image/webp")}catch{}}else if(/\.(webp)(\?|#|$)/i.test(o))try{const a=await C(t);a&&(r=a)}catch{}if(Zt(r))return{type:"IMAGE",url:await te(r),scaleMode:e,imageHash:n};if(typeof r=="string"&&r&&!r.startsWith("data:"))try{const a=await C(r);a&&(r=a)}catch{}return{type:"IMAGE",url:r,scaleMode:e,imageHash:n}}export{ae as a,ie as b,se as c,re as d,le as e,ne as f,j as g,ce as h,Ot as n,oe as p}; diff --git a/axhub-make/admin/assets/chunks/html-to-axure.js b/axhub-make/admin/assets/chunks/html-to-axure.js new file mode 100644 index 0000000..16e71f2 --- /dev/null +++ b/axhub-make/admin/assets/chunks/html-to-axure.js @@ -0,0 +1,2 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/vendor-common.js","assets/chunks/vendor-react.js","assets/chunks/_commonjsHelpers.js","assets/chunks/preload-helper.js","assets/chunks/_commonjs-dynamic-modules.js"])))=>i.map(i=>d[i]); +import{_ as Yt}from"./preload-helper.js?v=1775123024591";import{h as me,n as xe,g as pe}from"./fills-generator.js?v=1775123024591";function ye(t){return typeof t=="string"?t.trim().toLowerCase():""}function $t(t){return String((t==null?void 0:t.tagName)??"").trim().toUpperCase()}function be(t){const e=t==null?void 0:t.parentElement;return e?e.id==="root"?!0:typeof e.hasAttribute=="function"&&e.hasAttribute("data-page-id"):!1}function Ut(t,e){const n=ye(t);if(n==="body"||n==="html"||n==="document.body"||n==="document.documentelement")return!0;const o=$t(e);return o==="BODY"||o==="HTML"}function we(t,e,n){var r;if(Ut(t,e))return!1;const o=String(n??"").trim().toLowerCase();if(o==="bg"||o==="background")return!0;const s=$t(e).toLowerCase();return!!(o===s&&be(e)&&Number(((r=e==null?void 0:e.children)==null?void 0:r.length)??0)>0)}const Wt="export-overlay-root",ke=new Set(["script","style","noscript","meta","link","title"]),At=new Set(["img","canvas","video"]),Te=new Set(["path","line","polyline","polygon","rect","circle","ellipse"]),Xt=0,et=1,ct=3,jt=0,Qt=1,Ce=2,kt=new Set(["hidden","clip","auto","scroll"]),u=t=>Math.round(t*1e3)/1e3,y=(t,e=0)=>{const n=Number.parseFloat(String(t||""));return Number.isFinite(n)?n:e},Me=()=>{const t=document.documentElement,e=document.body,n=Math.max((t==null?void 0:t.scrollWidth)||0,(t==null?void 0:t.clientWidth)||0,(e==null?void 0:e.scrollWidth)||0,(e==null?void 0:e.clientWidth)||0),o=Math.max((t==null?void 0:t.scrollHeight)||0,(t==null?void 0:t.clientHeight)||0,(e==null?void 0:e.scrollHeight)||0,(e==null?void 0:e.clientHeight)||0);return{width:Math.max(1,u(n)),height:Math.max(1,u(o))}},qt=t=>{if(!t)return!0;const e=t.trim().toLowerCase();return e==="transparent"||e==="rgba(0, 0, 0, 0)"||e==="rgba(0,0,0,0)"},St=t=>{if(!t)return null;const e=t.trim(),n=pe(e);return n?{r:Math.min(1,Math.max(0,Number(n.r)||0)),g:Math.min(1,Math.max(0,Number(n.g)||0)),b:Math.min(1,Math.max(0,Number(n.b)||0)),a:Math.min(1,Math.max(0,Number(n.a)||0))}:null},Ae=t=>{const e=[];let n=0,o=0;for(let r=0;r{var n,o,s;if(!t)return null;const e=((n=t.match(/rgba?\([^)]*\)/i))==null?void 0:n[0])||((o=t.match(/hsla?\([^)]*\)/i))==null?void 0:o[0])||((s=t.match(/#[0-9a-f]{3,8}/i))==null?void 0:s[0])||(/transparent/i.test(t)?"transparent":null);return e?St(e):null},Tt=t=>!t||t==="none"?[]:Ae(t).map(n=>{const o=/\binset\b/i.test(n),s=Se(n)||{r:0,g:0,b:0,a:1},r=n.match(/-?\d*\.?\d+px/gi)||[],i=y(r[0],0),a=y(r[1],0),c=Math.max(0,y(r[2],0)),p=Math.max(0,y(r[3],0));return{color:s,enabled:!0,blur:u(c),offset:{x:u(i),y:u(a)},type:1,shadowType:o?1:0,spread:u(p)}}).filter(n=>n.color),Z=(t,e=!0)=>{const n=St(t);return n?{type:et,enabled:e,color:n}:null},Zt=(t,e=0)=>t?{alignment:e,fill:t}:null,Lt=()=>({hasFixedLeft:!0,hasFixedRight:!1,hasFixedTop:!0,hasFixedBottom:!1,hasFixedWidth:!0,hasFixedHeight:!0}),Le=()=>({hasFixedLeft:!1,hasFixedRight:!1,hasFixedTop:!1,hasFixedBottom:!1,hasFixedWidth:!1,hasFixedHeight:!1}),Ne=t=>{switch((t||"").toLowerCase()){case"center":return 1;case"right":return 2;case"justify":return 3;case"left":default:return 0}},Dt=(t,e=!1)=>{switch(String(t||"").toLowerCase().trim()){case"center":return"center";case"end":case"flex-end":case"right":case"self-end":return"end";case"space-around":case"space-evenly":return"center";case"space-between":return e?"start":"center";case"baseline":case"stretch":case"normal":case"start":case"left":case"flex-start":default:return"start"}},Fe=(t,e=0)=>t==="center"?1:t==="end"?2:t==="start"?0:e,ve=t=>t==="center"?"middle":t==="end"?"bottom":"top",Ie=t=>{if(!String(t.display||"").toLowerCase().trim().includes("flex"))return null;const o=(t.flexDirection||"row").toLowerCase().startsWith("column"),s=Dt(t.justifyContent,!0),r=Dt(t.alignItems,!1),i=o?r:s,a=o?s:r;return{horizontalTextAlign:Fe(i,0),verticalAlign:ve(a)}},He=t=>{const e=Math.max(0,y(t.borderTopWidth,0)),n=Math.max(0,y(t.borderRightWidth,0)),o=Math.max(0,y(t.borderBottomWidth,0)),s=Math.max(0,y(t.borderLeftWidth,0)),r=Math.max(0,y(t.paddingTop,0)),i=Math.max(0,y(t.paddingRight,0)),a=Math.max(0,y(t.paddingBottom,0)),c=Math.max(0,y(t.paddingLeft,0));return{borderTop:e,borderRight:n,borderBottom:o,borderLeft:s,paddingTop:r,paddingRight:i,paddingBottom:a,paddingLeft:c}},Pe=t=>{const e=(t.verticalAlign||"").toLowerCase();return e==="middle"?"middle":e==="bottom"||e==="text-bottom"?"bottom":"top"},Re=(()=>{let t=null;return(e,n,o,s)=>{if(!e)return Math.max(1,u(s));try{if(t||(t=document.createElement("canvas").getContext("2d")),!t)return Math.max(1,u(s));const r=n.fontStyle||"normal",i=n.fontWeight||"400",a=Nt(n.fontFamily);t.font=`${r} ${i} ${o}px ${a}`;const c=t.measureText(e),p=c.actualBoundingBoxAscent,b=c.actualBoundingBoxDescent,d=p+b;if(Number.isFinite(d)&&d>0)return Math.max(1,u(d))}catch{return Math.max(1,u(s))}return Math.max(1,u(s))}})(),Be=(()=>{let t=null;return(e,n,o,s=0)=>{if(!e)return 0;try{if(t||(t=document.createElement("canvas").getContext("2d")),!t)return 0;const r=n.fontStyle||"normal",i=n.fontWeight||"400",a=Nt(n.fontFamily);t.font=`${r} ${i} ${o}px ${a}`;const c=t.measureText(e),p=Number.isFinite(c.width)?c.width:0,b=Math.max(0,e.length-1)*Math.max(0,s),d=p+b;return Math.max(0,u(d))}catch{return 0}}})(),We=t=>{const e=t.textDecorationLine||t.getPropertyValue("text-decoration-line")||t.textDecoration||"",n=String(e).toLowerCase(),o=n.includes("underline"),s=n.includes("line-through");return{underline:o,strikethrough:s}},De=t=>t>=700?"Bold":t>=600?"Semibold":t>=500?"Medium":t<=300?"Light":"Regular",Nt=t=>{var n;return t?(((n=t.split(",")[0])==null?void 0:n.trim())||"Roboto").replace(/^["']|["']$/g,""):"Roboto"},ze=t=>{if(!t||typeof t!="string")return"Roboto";const e=t.split(",").map(s=>s.trim().replace(/^["']|["']$/g,"").trim()).filter(Boolean);if(e.length===0)return"Roboto";const n=[],o=new Set;for(const s of e){const r=s.toLowerCase();o.has(r)||(o.add(r),n.push(s))}return n.join(", ")},Kt=t=>Array.from(t.childNodes).filter(n=>n.nodeType===Node.TEXT_NODE).map(n=>n.textContent||"").join(" ").replace(/\s+/g," ").trim(),Ee=(t,e,n)=>{const o=Array.from(t.childNodes).filter(d=>d.nodeType===Node.TEXT_NODE&&(d.textContent||"").trim().length>0);if(o.length===0)return null;let s=Number.POSITIVE_INFINITY,r=Number.POSITIVE_INFINITY,i=Number.NEGATIVE_INFINITY,a=Number.NEGATIVE_INFINITY,c=!1,p=0,b=0;for(const d of o){const l=document.createRange();l.selectNodeContents(d);const F=l.getClientRects();for(const T of F){if(T.width<=0||T.height<=0)continue;const B=T.left+window.scrollX,C=T.top+window.scrollY,x=T.right+window.scrollX,k=T.bottom+window.scrollY;p+=1,b=Math.max(b,T.width),s=Math.min(s,B),r=Math.min(r,C),i=Math.max(i,x),a=Math.max(a,k),c=!0}}return c?{x:u(s-e),y:u(r-n),width:u(Math.max(0,i-s)),height:u(Math.max(0,a-r)),lineCount:p,maxLineWidth:u(Math.max(0,b))}:null},Ft=t=>t instanceof Element?!!(t.id===Wt||typeof t.closest=="function"&&t.closest(`#${Wt}`)):!1,Ve=t=>{if(!(t instanceof HTMLElement||t instanceof SVGElement))return!1;const e=t.tagName.toLowerCase();if(ke.has(e)||Ft(t))return!1;const n=window.getComputedStyle(t);if(n.display==="none"||n.visibility==="hidden"||y(n.opacity,1)<=0)return!1;const o=t.getBoundingClientRect();return!(o.width<=0||o.height<=0)},ut=(t,e,n)=>{const o=t.getBoundingClientRect(),s=o.left+window.scrollX,r=o.top+window.scrollY;return{x:u(s-e),y:u(r-n),width:u(o.width),height:u(o.height)}},zt=t=>{const e=t.getAttribute("data-label");if(e)return e.slice(0,40);if(t.id)return t.id.slice(0,40);const n=t.getAttribute("aria-label");if(n)return n.slice(0,40);const o=Kt(t);return o?o.slice(0,40):t.tagName.toLowerCase()},Jt=t=>{const e=t.backgroundImage;if(!e||e==="none")return null;const n=e.match(/url\((['"]?)(.*?)\1\)/i);return!n||!n[2]?null:n[2]},_e=t=>{const e=[t.borderTopStyle,t.borderRightStyle,t.borderBottomStyle,t.borderLeftStyle].map(n=>(n||"").toLowerCase()).filter(Boolean);return e.length===0?!1:e.some(n=>n!=="none"&&n!=="solid")},Ge=t=>{const e=t.backgroundImage;if(!e||e==="none")return!1;const n=e.toLowerCase();return n.includes("linear-gradient")||n.includes("radial-gradient")||n.includes("conic-gradient")||n.includes("repeating-linear-gradient")||n.includes("repeating-radial-gradient")?!0:!n.includes("url(")},te=t=>!!(xe(t)||Ge(t)||_e(t)||(t.borderImageSource||"none")!=="none"||(t.filter||"none")!=="none"||(t.backdropFilter||t.webkitBackdropFilter||"none")!=="none"),Oe=async(t,e)=>{try{const n=t.getBoundingClientRect();if(n.width<=0||n.height<=0)return null;const o=4096;if(n.width>o||n.height>o)return null;const{snapdom:s}=await Yt(async()=>{const{snapdom:a}=await import("./vendor-common.js?v=1775123024591").then(c=>c.dj);return{snapdom:a}},__vite__mapDeps([0,1,2,3,4])),r=t.cloneNode(!0);if(!(r instanceof HTMLElement||r instanceof SVGElement))return null;if(r instanceof HTMLElement){r.removeAttribute("id");for(let a=0;a{(a instanceof HTMLElement||a instanceof SVGElement)&&(a.style.visibility="hidden")}),document.body.appendChild(r);const i=await s.toPng(r,{fast:!1,embedFonts:!0,scale:1,dpr:1,width:n.width,height:n.height});return r.remove(),i!=null&&i.src?i.src:null}catch(n){return console.warn("[htmlToAxure] captureElementFillImage failed, fallback to style mapping",n),null}},Ye=async t=>{try{const e=t.getBoundingClientRect();if(e.width<=0||e.height<=0)return null;const n=4096;if(e.width>n||e.height>n)return null;const{snapdom:o}=await Yt(async()=>{const{snapdom:r}=await import("./vendor-common.js?v=1775123024591").then(i=>i.dj);return{snapdom:r}},__vite__mapDeps([0,1,2,3,4])),s=await o.toPng(t,{fast:!1,embedFonts:!0,scale:1,dpr:1,width:e.width,height:e.height});return s!=null&&s.src?s.src:null}catch(e){return console.warn("[htmlToAxure] captureSvgAsPngDataUrl failed",e),null}},$e=(t,e)=>{const n=t.tagName.toLowerCase();if(n==="img")return t.currentSrc||t.src||null;if(n==="video")return t.poster||null;if(n==="canvas")try{return t.toDataURL("image/png")}catch{return null}return Jt(e)},Ue=t=>{if(!t)return t;const e=t.trim(),n=e.indexOf(";base64,");return e.startsWith("data:")&&n>0?e.slice(n+8):e},Et=t=>{let e=0;for(let o=0;o>>0).toString(16).padStart(8,"0");return`${n}${n}${n}${n}${n}`.slice(0,40)},Xe=async t=>{var e;if((e=globalThis.crypto)!=null&&e.subtle)try{const n=new TextEncoder().encode(t),o=await globalThis.crypto.subtle.digest("SHA-1",n);return Array.from(new Uint8Array(o)).map(s=>s.toString(16).padStart(2,"0")).join("")}catch{return Et(t)}return Et(t)},U=({id:t,name:e,rect:n,opacity:o})=>({itemType:Qt,flippedHorizontal:!1,flippedVertical:!1,id:t,name:e,visible:!0,isLocked:!1,isNameDynamic:!1,rotation:0,rect:{location:{x:n.x,y:n.y},size:{width:n.width,height:n.height}},resizingConstraints:Lt(),opacity:o,textAlignment:Xt,textPadding:[],effects:[],textShadows:[],booleanOperation:0,textRotation:0,isMask:!1}),ee=t=>{const e=(b,d)=>{const l=u(Math.max(0,y(b,0))),F=(d||"").toLowerCase();return F==="none"||F==="hidden"?0:l},n=e(t.borderTopWidth,t.borderTopStyle),o=e(t.borderRightWidth,t.borderRightStyle),s=e(t.borderBottomWidth,t.borderBottomStyle),r=e(t.borderLeftWidth,t.borderLeftStyle),i=[n,o,s,r],a=Math.max(...i),c=a>0,p=n>0&&t.borderTopColor||o>0&&t.borderRightColor||s>0&&t.borderBottomColor||r>0&&t.borderLeftColor||t.borderColor;return{hasBorder:c,maxWidth:a,strokeColor:p,border:i}},vt=t=>[u(y(t.borderTopLeftRadius,0)),u(y(t.borderTopRightRadius,0)),u(y(t.borderBottomRightRadius,0)),u(y(t.borderBottomLeftRadius,0))],It=t=>t.some(e=>e>.01),ne=t=>{const e=(t.overflow||"").toLowerCase(),n=(t.overflowX||"").toLowerCase(),o=(t.overflowY||"").toLowerCase();return kt.has(e)||kt.has(n)||kt.has(o)},je=(t,e,n=6)=>Math.abs(t.x-e.x)<=n&&Math.abs(t.y-e.y)<=n&&Math.abs(t.width-e.width)<=n&&Math.abs(t.height-e.height)<=n,lt=(t,e,n,o={})=>{const{includeSelf:s=!1,maxDepth:r=6}=o;let i=0,a=s?t:t.parentElement;for(;a&&i{let s=0,r=t.parentElement;for(;r&&s<4;){const i=lt(r,n,o,{includeSelf:!0,maxDepth:1});if(i&&It(i.corners)&&je(i.rect,e))return{rect:i.rect,corners:i.corners};r=r.parentElement,s+=1}return null},Qe=(t,e,n,o,s)=>{const r=vt(e);if(It(r))return r;const i=re(t,n,o,s);return i!=null&&i.corners?i.corners:r},at=({id:t,name:e,rect:n,corners:o,maskedItems:s})=>({...U({id:t,name:e,rect:n,opacity:1}),type:0,corners:o,border:[0,0,0,0],backgroundFills:[{type:et,enabled:!1,color:{r:1,g:1,b:1,a:1}}],strokes:[],strokePattern:[],strokeThickness:0,effects:[],isMask:!0,maskedScene:{items:s}}),qe=({id:t,name:e,rect:n})=>({...U({id:t,name:e,rect:n,opacity:1}),type:0,corners:[0,0,0,0],border:[0,0,0,0],backgroundFills:[{type:et,enabled:!1,color:{r:1,g:1,b:1,a:1}}],strokes:[],strokePattern:[],strokeThickness:0,effects:[],textShadows:[],isMask:!0,maskedScene:{items:[]}}),Ze=({id:t,name:e,rect:n})=>({id:t,name:e,itemType:jt,visible:!0,isLocked:!1,isNameDynamic:!1,rotation:0,rect:{location:{x:n.x,y:n.y},size:{width:n.width,height:n.height}},resizingConstraints:Lt(),effects:[],isMask:!1,flippedHorizontal:!1,flippedVertical:!1,opacity:1,scene:{items:[]}}),Ct=t=>!t||typeof t!="object"?null:Number(t.itemType)===jt?((!t.scene||!Array.isArray(t.scene.items))&&(t.scene={items:[]}),t.scene.items):t.maskedScene&&Array.isArray(t.maskedScene.items)?t.maskedScene.items:null,Ke=(t,e)=>{const n=t.tagName.toLowerCase();return n==="svg"?!1:!!(At.has(n)||!qt(e.backgroundColor)||e.backgroundImage&&e.backgroundImage!=="none"||Jt(e)||te(e)||ee(e).hasBorder)},Je=(t,e,n,o)=>({itemType:Qt,flippedHorizontal:!1,flippedVertical:!1,id:t,name:"Background",visible:!0,isLocked:!0,isNameDynamic:!1,rotation:0,rect:{location:{x:0,y:0},size:{width:e,height:n}},resizingConstraints:{hasFixedLeft:!0,hasFixedRight:!0,hasFixedTop:!0,hasFixedBottom:!0,hasFixedWidth:!1,hasFixedHeight:!1},strokes:[],strokeThickness:0,strokePattern:[],type:0,backgroundFills:[o],opacity:1,booleanOperation:0,corners:[0,0,0,0],border:[1,1,1,1],textAlignment:Xt,textPadding:[],effects:[],textShadows:[],textRotation:0,isMask:!1}),tn=t=>{const e=window.getComputedStyle(t);return!(e.display==="none"||e.visibility==="hidden"||y(e.opacity,1)<=0)},q=(t,e,n)=>!Number.isFinite(t)||!Number.isFinite(e)||!Number.isFinite(n)||n<=0?0:u((t-e)/n),en=t=>{const e=t.ownerSVGElement;if(!e||typeof e.createSVGPoint!="function")return[];const n=t.getTotalLength,o=t.getPointAtLength;if(typeof n!="function"||typeof o!="function")return[];const s=t.getScreenCTM();if(!s)return[];let r=0;try{r=n.call(t)}catch{return[]}if(!Number.isFinite(r)||r<0)return[];const i=Math.max(2,Math.min(240,Math.ceil(r/6)+1)),a=[];for(let p=0;p.001||Math.abs(b.y-p.y)>.001)&&c.push(p)}return c},nn=t=>{const e=[];if(!t)return e;const n=/([AaCcHhLlMmQqSsTtVvZz])|([+-]?(?:\d*\.\d+|\d+)(?:[eE][+-]?\d+)?)/g;let o=n.exec(t);for(;o;){if(o[1])e.push(o[1]);else if(o[2]){const s=Number.parseFloat(o[2]);Number.isFinite(s)&&e.push(s)}o=n.exec(t)}return e},Vt=(t,e)=>({x:2*e.x-t.x,y:2*e.y-t.y}),_t=(t,e,n)=>({c1:{x:t.x+(e.x-t.x)*2/3,y:t.y+(e.y-t.y)*2/3},c2:{x:n.x+(e.x-n.x)*2/3,y:n.y+(e.y-n.y)*2/3}}),rn=t=>{const e=nn(t),n=[];if(e.length===0)return n;let o=0,s=null,r={x:0,y:0},i={x:0,y:0},a=null,c=null,p=null,b=!1;const d=()=>typeof e[o]=="number",l=()=>{const C=e[o];return typeof C!="number"?null:(o+=1,C)},F=()=>(p||(p={closed:!1,data:[],endDecoration:1,startDecoration:1},n.push(p)),p),T=(C,x=2,k,h)=>{const f=F(),w={type:x,to:{x:C.x,y:C.y}};return k&&(w.lowerHandle={x:k.x,y:k.y}),f.data.push(w),w},B=C=>{const x=F(),k=x.data[x.data.length-1];k&&(k.type=3,k.higherHandle={x:C.x,y:C.y})};for(;ont===null))break;const H={x:x?r.x+h:h,y:x?r.y+f:f},z={x:x?r.x+w:w,y:x?r.y+A:A},X={x:x?r.x+S:S,y:x?r.y+g:g};B(H),T(X,3,z),r=X,a=z,c=null}continue}if(k==="S"){for(;d();){const h=l(),f=l(),w=l(),A=l();if([h,f,w,A].some(z=>z===null))break;const S=a?Vt(a,r):r,g={x:x?r.x+h:h,y:x?r.y+f:f},H={x:x?r.x+w:w,y:x?r.y+A:A};B(S),T(H,3,g),r=H,a=g,c=null}continue}if(k==="Q"){for(;d();){const h=l(),f=l(),w=l(),A=l();if([h,f,w,A].some(z=>z===null))break;const S={x:x?r.x+h:h,y:x?r.y+f:f},g={x:x?r.x+w:w,y:x?r.y+A:A},H=_t(r,S,g);B(H.c1),T(g,3,H.c2),r=g,c=S,a=null}continue}if(k==="T"){for(;d();){const h=l(),f=l();if([h,f].some(g=>g===null))break;const w=c?Vt(c,r):r,A={x:x?r.x+h:h,y:x?r.y+f:f},S=_t(r,w,A);B(S.c1),T(A,3,S.c2),r=A,c=w,a=null}continue}if(k==="A"){for(b=!0;d();){const h=l(),f=l(),w=l(),A=l(),S=l(),g=l(),H=l();if([h,f,w,A,S,g,H].some(X=>X===null))break;const z={x:x?r.x+g:g,y:x?r.y+H:H};T(z,2),r=z}a=null,c=null;continue}s=null}return b?[]:n.filter(C=>Array.isArray(C.data)&&C.data.length>=2)},on=t=>{if(!t)return[];const e=[],n=/[+-]?(?:\d*\.\d+|\d+)(?:[eE][+-]?\d+)?/g;let o=n.exec(t);for(;o;){const r=Number.parseFloat(o[0]);Number.isFinite(r)&&e.push(r),o=n.exec(t)}const s=[];for(let r=0;r+1{if(n<=0||o<=0)return[];const s=.5522847498307936,r={x:t+n,y:e},i={x:t,y:e+o},a={x:t-n,y:e},c={x:t,y:e-o},p={x:t+n,y:e+o*s},b={x:t+n*s,y:e+o},d={x:t-n*s,y:e+o},l={x:t-n,y:e+o*s},F={x:t-n,y:e-o*s},T={x:t-n*s,y:e-o},B={x:t+n*s,y:e-o},C={x:t+n,y:e-o*s};return[{closed:!0,endDecoration:1,startDecoration:1,data:[{type:3,to:r,higherHandle:p},{type:3,to:i,lowerHandle:b,higherHandle:d},{type:3,to:a,lowerHandle:l,higherHandle:F},{type:3,to:c,lowerHandle:T,higherHandle:B},{type:3,to:r,lowerHandle:C}]}]},sn=t=>{const e=t.tagName.toLowerCase();if(e==="path"){const n=t.getAttribute("d")||"";return rn(n)}if(e==="line"){const n=y(t.getAttribute("x1"),0),o=y(t.getAttribute("y1"),0),s=y(t.getAttribute("x2"),0),r=y(t.getAttribute("y2"),0);return[{closed:!1,endDecoration:1,startDecoration:1,data:[{type:2,to:{x:n,y:o}},{type:2,to:{x:s,y:r}}]}]}if(e==="polyline"||e==="polygon"){const n=on(t.getAttribute("points")||"");return n.length<2?[]:[{closed:e==="polygon",endDecoration:1,startDecoration:1,data:n.map(o=>({type:2,to:o}))}]}if(e==="rect"){const n=y(t.getAttribute("x"),0),o=y(t.getAttribute("y"),0),s=y(t.getAttribute("width"),0),r=y(t.getAttribute("height"),0);return s<=0||r<=0?[]:[{closed:!0,endDecoration:1,startDecoration:1,data:[{type:2,to:{x:n,y:o}},{type:2,to:{x:n+s,y:o}},{type:2,to:{x:n+s,y:o+r}},{type:2,to:{x:n,y:o+r}}]}]}if(e==="circle"){const n=y(t.getAttribute("cx"),0),o=y(t.getAttribute("cy"),0),s=y(t.getAttribute("r"),0);return Gt(n,o,s,s)}if(e==="ellipse"){const n=y(t.getAttribute("cx"),0),o=y(t.getAttribute("cy"),0),s=y(t.getAttribute("rx"),0),r=y(t.getAttribute("ry"),0);return Gt(n,o,s,r)}return[]},Mt=(t,e,n)=>{const o=t.createSVGPoint();o.x=n.x,o.y=n.y;const s=o.matrixTransform(e);return{x:s.x,y:s.y}},Ot=(t,e)=>t.map(n=>{const o={type:n.type,to:{x:q(n.to.x,e.left,e.width),y:q(n.to.y,e.top,e.height)}};return n.lowerHandle&&(o.lowerHandle={x:q(n.lowerHandle.x,e.left,e.width),y:q(n.lowerHandle.y,e.top,e.height)}),n.higherHandle&&(o.higherHandle={x:q(n.higherHandle.x,e.left,e.width),y:q(n.higherHandle.y,e.top,e.height)}),o}),an=(t,e,n,o)=>{const s=t.ownerSVGElement;if(!s)return null;const r=t.getScreenCTM();if(!r)return null;const i=t.getBoundingClientRect();if(!Number.isFinite(i.left)||!Number.isFinite(i.top)||i.width<=0&&i.height<=0)return null;const a=window.getComputedStyle(t),c=sn(t);let p=[];if(c.length>0&&(p=c.map(C=>{const x=(C.data||[]).map(k=>{const h=Mt(s,r,k.to),f={type:k.type,to:h};return k.lowerHandle&&(f.lowerHandle=Mt(s,r,k.lowerHandle)),k.higherHandle&&(f.higherHandle=Mt(s,r,k.higherHandle)),f});return x.length<2?null:{closed:!!C.closed,endDecoration:1,startDecoration:1,data:Ot(x,i)}}).filter(Boolean)),p.length===0){const C=en(t);if(C.length<2)return null;p=[{closed:!1,endDecoration:1,startDecoration:1,data:Ot(C.map(x=>({type:2,to:x})),i)}]}const b=Math.max(0,u(y(a.strokeWidth,0))),d=Z(a.stroke,!0),l=a.fill,F=l&&l!=="none"?Z(l,!0):null,T=Math.min(1,Math.max(0,y(a.opacity,1))),B={x:u(i.left+window.scrollX-e),y:u(i.top+window.scrollY-n),width:u(i.width),height:u(i.height)};return{...U({id:o(),name:t.getAttribute("id")||t.getAttribute("data-label")||"Vector",rect:B,opacity:T}),resizingConstraints:Le(),type:2,backgroundFills:F?[F]:[],strokes:d&&b>0?[Zt(d,1)]:[],strokeThickness:d&&b>0?b:0,strokePattern:[],textAlignment:1,paths:p,svgPaths:[]}},cn=(t,e,n,o)=>{const s=ut(t,e,n);if(s.width<=0||s.height<=0)return null;const r=Array.from(Te).join(","),i=t.querySelectorAll(r),a=typeof SVGGeometryElement<"u",c=[];for(const d of i){if(!(d instanceof SVGElement)||d.ownerSVGElement!==t||a&&!(d instanceof SVGGeometryElement)||Ft(d)||!tn(d))continue;const l=an(d,e,n,o);l&&c.push(l)}if(c.length===0)return null;const p=window.getComputedStyle(t),b=Math.min(1,Math.max(0,y(p.opacity,1)));return{...U({id:o(),name:"SVG",rect:s,opacity:b}),type:0,corners:[0,0,0,0],border:[1,1,1,1],backgroundFills:[{type:et,enabled:!1,color:{r:1,g:1,b:1,a:1}}],strokes:[],strokePattern:[],strokeThickness:0,textAlignment:1,isMask:!0,maskedScene:{items:c}}},ln=async(t,e,n,o,s,r)=>{const i=ut(t,n,o);if(i.width<=0||i.height<=0)return null;const a=await Ye(t);if(!a)return null;const c=await r(a);if(!c)return null;const p=Math.min(1,Math.max(0,y(e.opacity,1)));return{...U({id:s(),name:"SVG",rect:i,opacity:p}),type:0,corners:[0,0,0,0],border:[1,1,1,1],backgroundFills:[{type:ct,enabled:!0,image:c,isHash:!0,patternFillType:4,alignment:{horizontal:1,vertical:1}}],strokes:[],strokePattern:[],strokeThickness:0,textAlignment:1}};async function gn(t="body",e={}){const{rootName:n=document.title||"Page",useCustomSize:o=!1,targetWidth:s,targetHeight:r,preserveHierarchy:i=!1,preserveSvgIcons:a=!0}=e||{},c=t instanceof HTMLElement||t instanceof SVGElement?t:document.querySelector(t||"body");if(!c)throw new Error("htmlToAxure: target element not found");try{await me(c)}catch(m){console.warn("[htmlToAxure] convertImagesInPage failed, continue:",m)}const p=c.getBoundingClientRect(),b=p.left+window.scrollX,d=p.top+window.scrollY,l=Ut(t,c),F=Me(),T=o&&Number.isFinite(s)&&s>0?u(s):F.width,B=o&&Number.isFinite(r)&&r>0?u(r):F.height,C={},x=[];let k=10;const h=()=>`1-${k++}`,f=i?new WeakMap:null,w=async m=>{if(!m)return null;let v=m;if(!v.startsWith("data:"))try{v=new URL(v,document.baseURI).href}catch{v=m}const Y=Ue(v),E=await Xe(Y);return C[E]||(C[E]=Y),E},A=(m,v,Y,E)=>{if(!i||!(m instanceof HTMLElement||m instanceof SVGElement)||m===c)return x;const j=f==null?void 0:f.get(m);if(j)return Ct(j)||x;let W=E;if(!W)try{W=window.getComputedStyle(m)}catch{W=null}const _=((W?ne(W):!1)?qe:Ze)({id:h(),name:`${Y||zt(m)}-hierarchy`,rect:v});let P=x;const M=m.parentElement;if(M&&M!==c){const L=f==null?void 0:f.get(M),D=Ct(L);D&&(P=D)}return P.push(_),f==null||f.set(m,_),Ct(_)||P},S=document.createTreeWalker(c,NodeFilter.SHOW_ELEMENT);let g=c;for(;g;){if(g instanceof SVGElement&&g.ownerSVGElement){g=S.nextNode();continue}if(Ve(g)){const m=window.getComputedStyle(g),v=ut(g,b,d);if(v.width>0&&v.height>0){const Y=Math.min(1,Math.max(0,y(m.opacity,1))),E=zt(g),j=g.tagName.toLowerCase(),W=A(g,v,E,m),rt=g===c&&we(t,c,E);if(j==="svg"){if(rt){g=S.nextNode();continue}let P=null;if(a&&(P=cn(g,b,d,h)),P||(P=await ln(g,m,b,d,h,w)),P){const M=i?lt(g,b,d,{includeSelf:!1}):null;if(M){const L=at({id:h(),name:`${E}-svg-clip-mask`,rect:M.rect,corners:M.corners,maskedItems:[P]});W.push(L)}else W.push(P)}g=S.nextNode();continue}if(!rt&&Ke(g,m)){const P=h(),M=ee(m),L=[];let D=!1;if(te(m)){const N=await Oe(g,m);if(N){const R=await w(N);R&&(L.push({type:ct,enabled:!0,image:R,isHash:!0,patternFillType:4,alignment:{horizontal:1,vertical:1}}),D=!0)}}if(!D){const N=$e(g,m);if(N){const st=await w(N);st&&L.push({type:ct,enabled:!0,image:st,isHash:!0,patternFillType:4,alignment:{horizontal:1,vertical:1}})}const R=Z(m.backgroundColor,!0);R&&L.push(R)}const G=vt(m),O=At.has(j)&&!It(G)?re(g,v,b,d):null,ot=At.has(j)?Qe(g,m,v,b,d):G,$={...U({id:P,name:E,rect:v,opacity:Y}),type:0,corners:ot,border:M.border,backgroundFills:L,strokes:[],strokePattern:[],strokeThickness:D?0:M.hasBorder?M.maxWidth:0,effects:Tt(m.boxShadow)};if(!D&&M.hasBorder){const N=Z(M.strokeColor,!0),R=Zt(N,0);R&&($.strokes=[R])}const K=i?lt(g,b,d,{includeSelf:!1}):null;if(K){const N={...$,corners:G},R=at({id:h(),name:`${E}-clip-mask`,rect:K.rect,corners:K.corners,maskedItems:[N]});W.push(R)}else if(O&&L.some(N=>Number(N==null?void 0:N.type)===ct&&(N==null?void 0:N.enabled)!==!1)){const N={...$,corners:G},R=at({id:h(),name:`${E}-mask`,rect:O.rect,corners:O.corners,maskedItems:[N]});W.push(R)}else W.push($)}const _=rt?"":Kt(g);if(_){const P=h(),M=Ee(g,b,d),L=Math.max(1,y(m.fontSize,14)),D=m.lineHeight,G=!!(D&&D!=="normal"),O=G?Math.max(0,y(D,L)):0,ot=G?Math.max(L,O):u(L*1.4),$=Math.max(100,Math.min(900,y(m.fontWeight,400))),K=ze(m.fontFamily),N=Nt(m.fontFamily),R=St(m.color)||{r:0,g:0,b:0,a:1},st=Ne(m.textAlign),J=Ie(m),Q=J?J.horizontalTextAlign:st,{underline:se,strikethrough:ie}=We(m),V=He(m),ae=v.x+V.borderLeft+V.paddingLeft,dt=v.y+V.borderTop+V.paddingTop,ce=Math.max(1,u(v.width-V.borderLeft-V.borderRight-V.paddingLeft-V.paddingRight)),it=Math.max(1,u(v.height-V.borderTop-V.borderBottom-V.paddingTop-V.paddingBottom)),ht=G&&O>L+.5&&Math.abs(O-it)<=2,le=D&&D!=="normal"?Math.max(L,Math.min(ot,L*1.25)):Math.max(L,L*1.2),ue=Re(_,m,L,le),ft=Math.min(it,Math.max(1,ue,ht?O:1)),Ht=J?J.verticalAlign:Pe(m),de=Ht==="middle"||ht;let tt=dt;de?tt=dt+Math.max(0,(it-ft)/2):Ht==="bottom"&&(tt=dt+Math.max(0,it-ft)),tt=u(tt);let I={x:u(ae),y:tt,width:ce,height:ft};M&&M.width>0&&M.height>0&&!ht&&!J&&(I={x:M.x,y:M.y,width:M.width,height:M.height});const gt=y(m.letterSpacing,0),Pt=Be(_,m,L,gt),mt=String(m.whiteSpace||"").toLowerCase(),he=String(m.textWrapMode||m.getPropertyValue("text-wrap-mode")||"").toLowerCase(),fe=mt==="nowrap"||mt==="pre"||mt==="pre-nowrap"||he==="nowrap",ge=((M==null?void 0:M.lineCount)||0)<=1||I.height<=Math.max(L,ot)*1.35;if(Pt>I.width+.5&&(fe||ge)){const bt=Math.max(2,Math.min(12,Math.abs(gt)*2)),Bt=u(Pt+bt),wt=Bt-I.width;wt>0&&(Q===1?I.x=u(I.x-wt/2):Q===2&&(I.x=u(I.x-wt)),I.width=Bt)}const xt=Math.max(1,Math.ceil(I.width)),pt=xt-I.width;pt>0&&(Q===1?I.x=u(I.x-pt/2):Q===2&&(I.x=u(I.x-pt))),I.width=xt;const Rt={...U({id:P,name:_.slice(0,40),rect:I,opacity:Y}),isNameDynamic:!0,type:0,backgroundFills:[],strokes:[],strokePattern:[],strokeThickness:0,textAlignment:Q,effects:Tt(m.textShadow),textShadows:Tt(m.textShadow),text:{paragraphs:[{horizontalAlignment:Q,lineSpacing:G?u(O):0,inlines:[{type:0,text:_,family:K,typeface:`${N} - ${De($)}`,weight:$,size:u(L),textColor:R,style:0,underline:se,strikethrough:ie,characterSpacing:u(gt)}]}]}},yt=i?lt(g,b,d,{includeSelf:!0}):null;if(yt){const bt=at({id:h(),name:`${_.slice(0,24)}-text-clip-mask`,rect:yt.rect,corners:yt.corners,maskedItems:[Rt]});W.push(bt)}else W.push(Rt)}}}g=S.nextNode()}const H=window.getComputedStyle(c).backgroundColor||"rgba(255,255,255,1)",z=Z(H,!qt(H))||Z("rgba(255,255,255,1)",!1),X=h(),nt=l?Je(h(),T,B,z):null,oe={id:X,name:n||"Artboard",itemType:Ce,resizingConstraints:Lt(),isNameDynamic:!1,rect:{location:{x:u(b),y:u(d)},size:{width:T,height:B}},backgroundFill:{type:et,enabled:!1,color:z.color},scene:{items:x},...nt?{backgroundShape:nt}:{}};return{masters:{},imageMap:C,scene:{items:[oe]}}}export{gn as default,gn as htmlToAxure}; diff --git a/axhub-make/admin/assets/chunks/index.js b/axhub-make/admin/assets/chunks/index.js new file mode 100644 index 0000000..438d209 --- /dev/null +++ b/axhub-make/admin/assets/chunks/index.js @@ -0,0 +1,23 @@ +import{c as pe,b as ge}from"./index2.js?v=1775123024591";import{e as Cn,d as Mn,a as On,h as hn,f as Ln,p as bn,g as Gn,s as Pn}from"./index2.js?v=1775123024591";import{dd as Ca,de as Me,df as Ma}from"./vendor-common.js?v=1775123024591";import"./preload-helper.js?v=1775123024591";import"./vendor-react.js?v=1775123024591";import"./_commonjsHelpers.js?v=1775123024591";import"./_commonjs-dynamic-modules.js?v=1775123024591";const Oa="NODE_CHANGES",ha=0,La=0,ba=2104977549,Ga="o2Q6K1C1PVoZCYxz0SD481",Pa=!1,Ua={sessionID:0,localID:1},ka=!1,_a="DESIGN",Va=[],Fa=[{parent:{sessionID:0,localID:1},nodes:[{sessionID:14,localID:100}],pasteIsPartiallyOutsideEnclosingFrame:!1,focusType:"NONE"}],xa=[{guid:{sessionID:0,localID:0},phase:"CREATED",type:"DOCUMENT",name:"Document",visible:!0,opacity:1,transform:{m00:1,m01:0,m02:0,m10:0,m11:1,m12:0},slideThemeMap:{entries:[]}},{guid:{sessionID:0,localID:1},phase:"CREATED",parentIndex:{guid:{sessionID:0,localID:0},position:"!"},type:"CANVAS",name:"Page 1",visible:!0,opacity:1,transform:{m00:1,m01:0,m02:0,m10:0,m11:1,m12:0},backgroundOpacity:1,backgroundEnabled:!0},{guid:{sessionID:14,localID:100},phase:"CREATED",parentIndex:{guid:{sessionID:0,localID:1},position:"!"},type:"ROUNDED_RECTANGLE",name:"Debug Rectangle",visible:!0,opacity:1,size:{x:160,y:96},transform:{m00:1,m01:0,m02:120,m10:0,m11:1,m12:120},horizontalConstraint:"MIN",verticalConstraint:"MIN"}],Ba=[],Ha={type:Oa,sessionID:ha,ackID:La,pasteID:ba,pasteFileKey:Ga,pasteIsPartiallyOutsideEnclosingFrame:Pa,pastePageId:Ua,isCut:ka,pasteEditorType:_a,publishedAssetGuids:Va,clipboardSelectionRegions:Fa,nodeChanges:xa,blobs:Ba},wa=e=>JSON.parse(JSON.stringify(e)),Wa=14,za=0,Ka=1,Xa=100,ze=["PASS_THROUGH","NORMAL","DARKEN","MULTIPLY","LINEAR_BURN","COLOR_BURN","LIGHTEN","SCREEN","LINEAR_DODGE","COLOR_DODGE","OVERLAY","SOFT_LIGHT","HARD_LIGHT","DIFFERENCE","EXCLUSION","HUE","SATURATION","COLOR","LUMINOSITY"],Ya=["STRETCH","FIT","FILL","TILE"],$a=["ORIGINAL","UPPER","LOWER","TITLE","SMALL_CAPS","SMALL_CAPS_FORCED"],ja=["NONE","UNDERLINE","STRIKETHROUGH"],Ja=["NONE","WIDTH_AND_HEIGHT","HEIGHT"],Ke=e=>e&&typeof e=="object"&&"default"in e?Ke(e.default):e,c=(e,a=0)=>{if(typeof e=="number"&&Number.isFinite(e))return e;const l=Number(e);return Number.isFinite(l)?l:a},w=(e,a=1)=>{const l=c(e,a);return l>0?l:a},V=(e,a)=>Number.isFinite(e)?e>1?Math.max(0,Math.min(1,e/255)):Math.max(0,Math.min(1,e)):a,le=(e,a=Wa)=>({sessionID:a,localID:e}),$=(e,a)=>({m00:1,m01:0,m02:e,m10:0,m11:1,m12:a}),N=(e,a,l)=>{if(typeof e!="string")return l;const n=e.toUpperCase();return a.includes(n)?n:l},Oe=(e,a)=>{if(typeof e=="number")return{value:e,units:"PIXELS"};if(!e||typeof e!="object")return{value:a,units:"PIXELS"};const l=(e.units||e.unit||"PIXELS").toString().toUpperCase(),n=l==="PX"?"PIXELS":l==="PERCENT"||l==="%"?"PERCENT":l==="RAW"?"RAW":"PIXELS";return{value:c(e.value,a),units:n}},Te=(e,a)=>{const l=e||{};return{r:V(c(l.r,a.r),a.r),g:V(c(l.g,a.g),a.g),b:V(c(l.b,a.b),a.b),a:V(c(l.a,a.a),a.a)}},te=(e,a)=>{const l=e||{};return{x:c(l.x,a.x),y:c(l.y,a.y)}},ye=(e,a)=>{const l=e||a||{};return{m00:c(l.m00,1),m01:c(l.m01,0),m02:c(l.m02,0),m10:c(l.m10,0),m11:c(l.m11,1),m12:c(l.m12,0)}},he=e=>!e||typeof e!="object"?null:ye(e),Le=e=>{if(!Array.isArray(e)||e.length<2)return null;const a=Array.isArray(e[0])?e[0]:[],l=Array.isArray(e[1])?e[1]:[];return{m00:c(a[0],1),m01:c(a[1],0),m02:c(a[2],0),m10:c(l[0],0),m11:c(l[1],1),m12:c(l[2],0)}},Za=e=>{if(!Array.isArray(e)||e.length<2)return null;const a=te(e[0],{x:0,y:0}),l=te(e[1],{x:1,y:0}),n=te(e[2],{x:0,y:1});return{m00:l.x-a.x,m01:n.x-a.x,m02:a.x,m10:l.y-a.y,m11:n.y-a.y,m12:a.y}},Qa=e=>Array.isArray(e)?e.map(a=>{if(!a||typeof a!="object")return null;const l=Te(a.color,{r:0,g:0,b:0,a:1}),n=V(c(a.position,0),0);return{color:l,position:n}}).filter(Boolean):[],qa=e=>{let a="";for(let l=0;l{if(e instanceof Uint8Array)return e;if(e instanceof ArrayBuffer)return new Uint8Array(e);if(ArrayBuffer.isView(e)&&e.buffer instanceof ArrayBuffer)return new Uint8Array(e.buffer,e.byteOffset,e.byteLength);if(Array.isArray(e)){const a=e.map(l=>c(l,0)&255);return new Uint8Array(a)}if(e&&typeof e=="object"){const a=Object.keys(e).filter(l=>/^\d+$/.test(l)).map(l=>Number(l)).sort((l,n)=>l-n);if(a.length>0){const l=new Uint8Array(a.length);return a.forEach((n,i)=>{l[i]=c(e[String(n)],0)&255}),l}}return null},al=async(e,a,l)=>typeof document>"u"||typeof Blob>"u"||typeof URL>"u"?null:new Promise(n=>{const i=new Blob([e],{type:"image/svg+xml;charset=utf-8"}),t=URL.createObjectURL(i),r=new Image;r.onload=()=>{const s=document.createElement("canvas");s.width=Math.max(1,Math.round(a)),s.height=Math.max(1,Math.round(l));const u=s.getContext("2d");if(!u){URL.revokeObjectURL(t),n(null);return}u.clearRect(0,0,s.width,s.height),u.drawImage(r,0,0,s.width,s.height),URL.revokeObjectURL(t),s.toBlob(async p=>{if(!p){n(null);return}const A=await p.arrayBuffer();n(new Uint8Array(A))},"image/png")},r.onerror=()=>{URL.revokeObjectURL(t),n(null)},r.src=t}),ll=async e=>{const a=el((e==null?void 0:e.intArr)||(e==null?void 0:e.bytes));if(a&&a.byteLength>0)return a;if(typeof(e==null?void 0:e.svg)=="string"&&e.svg.trim()){const l=w(e==null?void 0:e.originalImageWidth,1),n=w(e==null?void 0:e.originalImageHeight,1),i=await al(e.svg,l,n);return i&&i.byteLength>0?i:new TextEncoder().encode(e.svg)}return null},nl=async e=>{var i;if(!((i=crypto==null?void 0:crypto.subtle)!=null&&i.digest))throw new Error("CRYPTO_SUBTLE_UNAVAILABLE");const a=e.byteOffset===0&&e.byteLength===e.buffer.byteLength?e:e.slice(),l=new Uint8Array(a.byteLength);l.set(a);const n=await crypto.subtle.digest("SHA-1",l);return new Uint8Array(n)},il=async(e,a,l="image")=>{const n=await nl(e),i=qa(n),t=a.imageByHashHex.get(i);if(t)return{hash:t.hash,name:l,dataBlob:t.dataBlob};const r=a.blobs.length;a.blobs.push({bytes:e});const s=Array.from(n);return a.imageByHashHex.set(i,{hash:s,dataBlob:r}),{hash:s,name:l,dataBlob:r}},be=async(e,a)=>{if(!Array.isArray(e))return[];const l=[];for(const n of e){if(!n||n.visible===!1)continue;const i=N(n.type,["SOLID","GRADIENT_LINEAR","GRADIENT_RADIAL","GRADIENT_ANGULAR","GRADIENT_DIAMOND","IMAGE"],"SOLID"),t=N(n.blendMode,ze,"NORMAL"),r={type:i,visible:!0,blendMode:t,opacity:V(c(n.opacity,1),1)};if(i==="SOLID"){const s=Te(n.color,{r:0,g:0,b:0,a:1});r.color=s,r.opacity=V(c(n.opacity,s.a),s.a),l.push(r);continue}if(i.startsWith("GRADIENT_")){const s=Qa(n.stops||n.gradientStops);if(s.length===0)continue;const u=he(n.transform)||Le(n.imageTransform)||Za(n.gradientHandlePositions)||ye($(0,0));r.stops=s,r.transform=u,l.push(r);continue}if(i==="IMAGE"){if(!((n==null?void 0:n.intArr)!==void 0||(n==null?void 0:n.bytes)!==void 0||typeof(n==null?void 0:n.svg)=="string"&&n.svg.trim().length>0))continue;const u=await ll(n);if(!u||u.byteLength===0)continue;const p=await il(u,a,typeof(n==null?void 0:n.name)=="string"?n.name:"image");r.image=p,r.imageScaleMode=N(n.imageScaleMode||n.scaleMode,Ya,"FILL"),r.imageShouldColorManage=!0,r.rotation=c(n.rotation,0),r.scale=c(n.scale??n.scalingFactor,1),r.animationFrame=c(n.animationFrame,0);const A=he(n.transform)||Le(n.imageTransform)||ye($(0,0));r.transform=A;const v=c(n.originalImageWidth,0),I=c(n.originalImageHeight,0);v>0&&(r.originalImageWidth=Math.round(v)),I>0&&(r.originalImageHeight=Math.round(I)),l.push(r)}}return l},sl=e=>{if(!Array.isArray(e))return[];const a=[];for(const l of e){if(!l||l.visible===!1)continue;let n=typeof l.type=="string"?l.type.toUpperCase():"";if(n==="LAYER_BLUR"&&(n="FOREGROUND_BLUR"),n==="BACKGROUND_BLUR"&&(n="BACKGROUND_BLUR"),!["INNER_SHADOW","DROP_SHADOW","FOREGROUND_BLUR","BACKGROUND_BLUR"].includes(n))continue;const i=Te(l.color,{r:0,g:0,b:0,a:1}),t=te(l.offset,{x:0,y:0}),r={type:n,visible:!0,color:i,offset:t,radius:c(l.radius,0),blendMode:N(l.blendMode,ze,"NORMAL")};l.spread!==void 0&&(r.spread=c(l.spread,0)),a.push(r)}return a},tl=e=>{const a=(e||"").split(` +`);return{characters:e,lines:a.map(()=>({lineType:"PLAIN",styleId:0,indentationLevel:0,sourceDirectionality:"AUTO",listStartOffset:0,isFirstLineOfList:!1}))}},Ge=e=>`~${e.toString(36).padStart(8,"0")}`,Xe=e=>{const a=typeof(e==null?void 0:e.type)=="string"?e.type.toUpperCase():"",n=(Array.isArray(e==null?void 0:e.children)?e.children:[]).length>0,i=c(e==null?void 0:e.cornerRadius,0)>0||c(e==null?void 0:e.rectangleTopLeftCornerRadius,0)>0||c(e==null?void 0:e.rectangleTopRightCornerRadius,0)>0||c(e==null?void 0:e.rectangleBottomLeftCornerRadius,0)>0||c(e==null?void 0:e.rectangleBottomRightCornerRadius,0)>0||c(e==null?void 0:e.topLeftRadius,0)>0||c(e==null?void 0:e.topRightRadius,0)>0||c(e==null?void 0:e.bottomLeftRadius,0)>0||c(e==null?void 0:e.bottomRightRadius,0)>0;return a==="TEXT"?"TEXT":["FRAME","PAGE","SECTION","COMPONENT","INSTANCE","CANVAS"].includes(a)?"FRAME":a==="GROUP"?"GROUP":a==="ELLIPSE"?"ELLIPSE":a==="LINE"?"LINE":a==="BOOLEAN_OPERATION"?"BOOLEAN_OPERATION":a==="VECTOR"?"VECTOR":a==="STAR"?"STAR":a==="REGULAR_POLYGON"?"REGULAR_POLYGON":a==="SVG"?"RECTANGLE":a==="RECTANGLE"?i?"ROUNDED_RECTANGLE":"RECTANGLE":n?"FRAME":"RECTANGLE"},rl=e=>{const a=typeof e=="string"?e.toUpperCase():"";return["MIN","CENTER","MAX","BASELINE"].includes(a)?a:"MIN"},ul=e=>{const a=typeof e=="string"?e.toUpperCase():"";if(["MIN","CENTER","MAX","BASELINE"].includes(a))return a},Pe=e=>{const a=typeof e=="string"?e.toUpperCase():"";return["MIN","CENTER","MAX","BASELINE","STRETCH","AUTO"].includes(a)?a:"MIN"},ol=e=>{const a=typeof e=="string"?e.toUpperCase():"";return["MIN","CENTER","MAX","SPACE_EVENLY","SPACE_BETWEEN"].includes(a)?a:"MIN"},cl=(e,a="Regular")=>{const l=typeof(e==null?void 0:e.fontStyle)=="string"?e.fontStyle.trim():"";if(l){const t=l[0].toUpperCase()+l.slice(1).toLowerCase();if(t==="Italic"||t==="Regular"||t==="Oblique")return t}const i=c(e==null?void 0:e.fontWeight,400)>=600||String((e==null?void 0:e.fontWeight)||"").toLowerCase()==="bold";return i&&l.toLowerCase()==="italic"?"Bold Italic":i?"Bold":a},ml=e=>{const a=Array.isArray(e==null?void 0:e.fills)?[...e.fills]:[];return(typeof(e==null?void 0:e.type)=="string"?e.type.toUpperCase():"")==="SVG"&&typeof(e==null?void 0:e.svg)=="string"&&e.svg.trim()&&a.unshift({type:"IMAGE",svg:e.svg,imageScaleMode:"FILL",originalImageWidth:w(e.width,1),originalImageHeight:w(e.height,1)}),a},fl=async({layer:e,guid:a,parentGuid:l,position:n,x:i,y:t,ctx:r})=>{var k,_;const s=Xe(e),u=typeof(e==null?void 0:e.name)=="string"&&e.name.trim()?e.name:s,p=(e==null?void 0:e.visible)!==!1,A=V(c(e==null?void 0:e.opacity,1),1),v=w(e==null?void 0:e.width,1),I=w(e==null?void 0:e.height,1),C=await be(ml(e),r),S=await be((e==null?void 0:e.strokes)||[],r),h=sl((e==null?void 0:e.effects)||[]),o={guid:a,phase:"CREATED",parentIndex:{guid:l,position:n},type:s,name:u,visible:p,opacity:A,size:{x:v,y:I},transform:$(i,t),horizontalConstraint:N((e==null?void 0:e.horizontalConstraint)||((k=e==null?void 0:e.constraints)==null?void 0:k.horizontal),["MIN","CENTER","MAX","STRETCH","SCALE","FIXED_MIN","FIXED_MAX"],"MIN"),verticalConstraint:N((e==null?void 0:e.verticalConstraint)||((_=e==null?void 0:e.constraints)==null?void 0:_.vertical),["MIN","CENTER","MAX","STRETCH","SCALE","FIXED_MIN","FIXED_MAX"],"MIN")},E=s!=="GROUP";E&&C.length>0&&(o.fillPaints=C),E&&S.length>0&&(o.strokePaints=S,o.strokeWeight=c(e==null?void 0:e.strokeWeight,1),o.strokeAlign=N(e==null?void 0:e.strokeAlign,["CENTER","INSIDE","OUTSIDE"],"CENTER"),o.strokeJoin=N(e==null?void 0:e.strokeJoin,["MITER","BEVEL","ROUND"],"MITER"),o.strokeCap=N(e==null?void 0:e.strokeCap,["NONE","ROUND","SQUARE"],"NONE"),Array.isArray(e==null?void 0:e.dashPattern)&&e.dashPattern.length>0&&(o.dashPattern=e.dashPattern.map(g=>c(g,0)))),h.length>0&&(o.effects=h);const L=c(e==null?void 0:e.cornerRadius,0);L>0&&(o.cornerRadius=L);const R=c((e==null?void 0:e.rectangleTopLeftCornerRadius)??(e==null?void 0:e.topLeftRadius),0),P=c((e==null?void 0:e.rectangleTopRightCornerRadius)??(e==null?void 0:e.topRightRadius),0),b=c((e==null?void 0:e.rectangleBottomLeftCornerRadius)??(e==null?void 0:e.bottomLeftRadius),0),U=c((e==null?void 0:e.rectangleBottomRightCornerRadius)??(e==null?void 0:e.bottomRightRadius),0);if((R>0||P>0||b>0||U>0)&&(o.rectangleCornerRadiiIndependent=!0,o.rectangleTopLeftCornerRadius=R,o.rectangleTopRightCornerRadius=P,o.rectangleBottomLeftCornerRadius=b,o.rectangleBottomRightCornerRadius=U),s==="FRAME"){(e==null?void 0:e.clipsContent)!==void 0?o.frameMaskDisabled=!e.clipsContent:o.frameMaskDisabled=!1;const g=N(e==null?void 0:e.layoutMode,["NONE","HORIZONTAL","VERTICAL","GRID"],"NONE"),T=g==="GRID"?"HORIZONTAL":g,j=g==="GRID"?(e==null?void 0:e.gridColumnGap)??(e==null?void 0:e.itemSpacing):e==null?void 0:e.itemSpacing,W=(e==null?void 0:e.counterAxisSpacing)??(g==="GRID"?e==null?void 0:e.gridRowGap:void 0);if(T!=="NONE"){if(o.stackMode=T,o.stackSpacing=c(j,0),o.stackWrap=N(e==null?void 0:e.layoutWrap,["NO_WRAP","WRAP"],g==="GRID"?"WRAP":"NO_WRAP"),W!==void 0&&(o.stackCounterSpacing=c(W,0)),o.stackPositioning=N(e==null?void 0:e.layoutPositioning,["AUTO","ABSOLUTE"],"AUTO"),e!=null&&e.primaryAxisAlignItems){const J=ol(e.primaryAxisAlignItems);o.stackJustify=J,o.stackPrimaryAlignItems=J}if(e!=null&&e.counterAxisAlignItems){o.stackAlign=rl(e.counterAxisAlignItems);const J=ul(e.counterAxisAlignItems);J!==void 0&&(o.stackCounterAlignItems=J),o.stackCounterAlign=Pe(e.counterAxisAlignItems)}const F=c(e==null?void 0:e.paddingTop,0),oe=c(e==null?void 0:e.paddingRight,0),ce=c(e==null?void 0:e.paddingBottom,0),Ce=c(e==null?void 0:e.paddingLeft,0);o.stackHorizontalPadding=Ce,o.stackVerticalPadding=F,o.stackPaddingRight=oe,o.stackPaddingBottom=ce,F===oe&&oe===ce&&ce===Ce&&(o.stackPadding=F);const Ra=N(e==null?void 0:e.primaryAxisSizingMode,["FIXED","AUTO"],"FIXED"),Na=N(e==null?void 0:e.counterAxisSizingMode,["FIXED","AUTO"],"FIXED"),me=Ra==="AUTO"?"RESIZE_TO_FIT":"FIXED",fe=Na==="AUTO"?"RESIZE_TO_FIT":"FIXED";T==="HORIZONTAL"?(o.stackWidth=me,o.stackHeight=fe):(o.stackWidth=fe,o.stackHeight=me),o.stackPrimarySizing=me,o.stackCounterSizing=fe}(e==null?void 0:e.layoutGrow)!==void 0&&(o.stackChildPrimaryGrow=c(e.layoutGrow,0)),e!=null&&e.layoutAlign&&(o.stackChildAlignSelf=Pe(e.layoutAlign))}if((e==null?void 0:e.mask)===!0&&(o.mask=!0),s==="TEXT"){const g=typeof(e==null?void 0:e.characters)=="string"?e.characters:typeof(e==null?void 0:e.text)=="string"?e.text:"",T=(e==null?void 0:e.fontName)||{},j=typeof(T==null?void 0:T.family)=="string"?T.family:typeof(e==null?void 0:e.fontFamily)=="string"?e.fontFamily:"Inter",W=typeof(T==null?void 0:T.style)=="string"?T.style:cl(e,"Regular"),F=typeof(T==null?void 0:T.postscript)=="string"?T.postscript:"";o.fontSize=w(e==null?void 0:e.fontSize,16),o.fontName={family:j,style:W,postscript:F},o.textData=tl(g),o.textAlignHorizontal=N(e==null?void 0:e.textAlignHorizontal,["LEFT","CENTER","RIGHT","JUSTIFIED"],"LEFT"),o.textAlignVertical=N(e==null?void 0:e.textAlignVertical,["TOP","CENTER","BOTTOM"],"TOP"),o.lineHeight=Oe(e==null?void 0:e.lineHeight,Math.max(o.fontSize*1.2,1)),o.letterSpacing=Oe(e==null?void 0:e.letterSpacing,0),o.textTracking=c(e==null?void 0:e.textTracking,0),o.textCase=N(e==null?void 0:e.textCase,$a,"ORIGINAL"),o.textDecoration=N(e==null?void 0:e.textDecoration,ja,"NONE"),o.textAutoResize=N(e==null?void 0:e.textAutoResize,Ja,"HEIGHT"),(!Array.isArray(o.fillPaints)||o.fillPaints.length===0)&&(o.fillPaints=[{type:"SOLID",color:{r:0,g:0,b:0,a:1},opacity:1,visible:!0,blendMode:"NORMAL"}])}return o},pl=async e=>{const a=le(za,0),l=le(Ka,0),n={blobs:[],imageByHashHex:new Map},i=[{guid:a,phase:"CREATED",type:"DOCUMENT",name:"Document",visible:!0,opacity:1,transform:$(0,0),slideThemeMap:{entries:[]}},{guid:l,phase:"CREATED",parentIndex:{guid:a,position:"!"},type:"CANVAS",name:"Page 1",visible:!0,opacity:1,transform:$(0,0),backgroundOpacity:1,backgroundEnabled:!0}],t=[];let r=Xa;const s=async(u,p,A,v,I)=>{if(!u||typeof u!="object")return;const C=Array.isArray(u.children)?u.children:[],S=Xe(u),h=c(u.x,0)+v,o=c(u.y,0)+I,E=c(u.width,0),L=c(u.height,0),R=S==="LINE"?E>0||L>0:E>0&&L>0,P=S==="FRAME"||S==="GROUP",b=u.visible!==!1&&(P||S==="TEXT"||R);let U=p,k=h,_=o;if(b){const g=le(r);r+=1;const T=await fl({layer:u,guid:g,parentGuid:p,position:A,x:h,y:o,ctx:n});i.push(T),U=g,k=0,_=0,p.sessionID===l.sessionID&&p.localID===l.localID&&t.push(g)}for(let g=0;g{const e=Ke(Ha);if(!e||!Array.isArray(e.nodeChanges)||e.nodeChanges.length===0)throw new Error("DEBUG_MESSAGE_INVALID");return wa(e)},dl=[{name:"MessageType",line:0,column:0,kind:"ENUM",fields:[{name:"JOIN_START",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"NODE_CHANGES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"USER_CHANGES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"JOIN_END",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SIGNAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"STYLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"STYLE_SET",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"JOIN_START_SKIP_RELOAD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"NOTIFY_SHOULD_UPGRADE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"UPGRADE_DONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"UPGRADE_REFRESH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"SCENE_GRAPH_QUERY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"SCENE_GRAPH_REPLY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"DIFF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"CLIENT_BROADCAST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"JOIN_START_JOURNALED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"STREAM_START",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"STREAM_END",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"INTERACTIVE_SLIDE_CHANGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"RECONNECT_SCENE_GRAPH_QUERY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"RECONNECT_SCENE_GRAPH_REPLY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"JOIN_END_INCREMENTAL_RECONNECT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21},{name:"NODE_STATUS_CHANGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:22}]},{name:"Axis",line:0,column:0,kind:"ENUM",fields:[{name:"X",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"Y",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"Access",line:0,column:0,kind:"ENUM",fields:[{name:"READ_ONLY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"READ_WRITE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"NodePhase",line:0,column:0,kind:"ENUM",fields:[{name:"CREATED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"REMOVED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"WindingRule",line:0,column:0,kind:"ENUM",fields:[{name:"NONZERO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ODD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"NodeType",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"DOCUMENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"CANVAS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"GROUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"FRAME",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"BOOLEAN_OPERATION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"VECTOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"STAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"LINE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"ELLIPSE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"RECTANGLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"REGULAR_POLYGON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"ROUNDED_RECTANGLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"TEXT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"SLICE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"SYMBOL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"INSTANCE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"STICKY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"SHAPE_WITH_TEXT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"CONNECTOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"CODE_BLOCK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"WIDGET",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21},{name:"STAMP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:22},{name:"MEDIA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:23},{name:"HIGHLIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:24},{name:"SECTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:25},{name:"SECTION_OVERLAY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:26},{name:"WASHI_TAPE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:27},{name:"VARIABLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:28},{name:"TABLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:29},{name:"TABLE_CELL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:30},{name:"VARIABLE_SET",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:31},{name:"SLIDE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:32},{name:"ASSISTED_LAYOUT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:33},{name:"INTERACTIVE_SLIDE_ELEMENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:34},{name:"VARIABLE_OVERRIDE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:35},{name:"MODULE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:36},{name:"SLIDE_GRID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:37},{name:"SLIDE_ROW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:38},{name:"RESPONSIVE_SET",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:39},{name:"CODE_COMPONENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:40},{name:"TEXT_PATH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:41}]},{name:"ShapeWithTextType",line:0,column:0,kind:"ENUM",fields:[{name:"SQUARE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ELLIPSE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"DIAMOND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"TRIANGLE_UP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"TRIANGLE_DOWN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"ROUNDED_RECTANGLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"PARALLELOGRAM_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"PARALLELOGRAM_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"ENG_DATABASE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"ENG_QUEUE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"ENG_FILE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"ENG_FOLDER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"TRAPEZOID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"PREDEFINED_PROCESS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"SHIELD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"DOCUMENT_SINGLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"DOCUMENT_MULTIPLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"MANUAL_INPUT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"HEXAGON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"CHEVRON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"PENTAGON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"OCTAGON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21},{name:"STAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:22},{name:"PLUS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:23},{name:"ARROW_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:24},{name:"ARROW_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:25},{name:"SUMMING_JUNCTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:26},{name:"OR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:27},{name:"SPEECH_BUBBLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:28},{name:"INTERNAL_STORAGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:29}]},{name:"BlendMode",line:0,column:0,kind:"ENUM",fields:[{name:"PASS_THROUGH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"NORMAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"DARKEN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"MULTIPLY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"LINEAR_BURN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"COLOR_BURN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"LIGHTEN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"SCREEN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"LINEAR_DODGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"COLOR_DODGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"OVERLAY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"SOFT_LIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"HARD_LIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"DIFFERENCE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"EXCLUSION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"HUE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"SATURATION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"COLOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"LUMINOSITY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18}]},{name:"PaintType",line:0,column:0,kind:"ENUM",fields:[{name:"SOLID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"GRADIENT_LINEAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"GRADIENT_RADIAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"GRADIENT_ANGULAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"GRADIENT_DIAMOND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"IMAGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"EMOJI",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"VIDEO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7}]},{name:"ImageScaleMode",line:0,column:0,kind:"ENUM",fields:[{name:"STRETCH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"FIT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"FILL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"TILE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"EffectType",line:0,column:0,kind:"ENUM",fields:[{name:"INNER_SHADOW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"DROP_SHADOW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"FOREGROUND_BLUR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"BACKGROUND_BLUR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"TextCase",line:0,column:0,kind:"ENUM",fields:[{name:"ORIGINAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"UPPER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"LOWER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"TITLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SMALL_CAPS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"SMALL_CAPS_FORCED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5}]},{name:"TextDecoration",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"UNDERLINE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"STRIKETHROUGH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"TextDecorationStyle",line:0,column:0,kind:"ENUM",fields:[{name:"SOLID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"DOTTED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"WAVY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"LeadingTrim",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CAP_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"NumberUnits",line:0,column:0,kind:"ENUM",fields:[{name:"RAW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"PIXELS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"PERCENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"ConstraintType",line:0,column:0,kind:"ENUM",fields:[{name:"MIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"MAX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"STRETCH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SCALE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"FIXED_MIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"FIXED_MAX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6}]},{name:"StrokeAlign",line:0,column:0,kind:"ENUM",fields:[{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"INSIDE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"OUTSIDE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"StrokeCap",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ROUND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"SQUARE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"ARROW_LINES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"ARROW_EQUILATERAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"DIAMOND_FILLED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"TRIANGLE_FILLED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"HIGHLIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"WASHI_TAPE_1",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"WASHI_TAPE_2",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"WASHI_TAPE_3",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"WASHI_TAPE_4",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"WASHI_TAPE_5",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"WASHI_TAPE_6",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"CIRCLE_FILLED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14}]},{name:"StrokeJoin",line:0,column:0,kind:"ENUM",fields:[{name:"MITER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"BEVEL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"ROUND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"BooleanOperation",line:0,column:0,kind:"ENUM",fields:[{name:"UNION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"INTERSECT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"SUBTRACT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"XOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"TextAlignHorizontal",line:0,column:0,kind:"ENUM",fields:[{name:"LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"JUSTIFIED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"TextAlignVertical",line:0,column:0,kind:"ENUM",fields:[{name:"TOP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"BOTTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"MouseCursor",line:0,column:0,kind:"ENUM",fields:[{name:"DEFAULT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CROSSHAIR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"EYEDROPPER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"HAND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"PAINT_BUCKET",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"PEN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"PENCIL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"MARKER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"ERASER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"HIGHLIGHTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"LASSO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10}]},{name:"VectorMirror",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ANGLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"ANGLE_AND_LENGTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"DashMode",line:0,column:0,kind:"ENUM",fields:[{name:"CLIP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"STRETCH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"ImageType",line:0,column:0,kind:"ENUM",fields:[{name:"PNG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"JPEG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"SVG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"PDF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"ExportConstraintType",line:0,column:0,kind:"ENUM",fields:[{name:"CONTENT_SCALE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CONTENT_WIDTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"CONTENT_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"LayoutGridType",line:0,column:0,kind:"ENUM",fields:[{name:"MIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"STRETCH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"MAX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"LayoutGridPattern",line:0,column:0,kind:"ENUM",fields:[{name:"STRIPES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"GRID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"TextAutoResize",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"WIDTH_AND_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"TextTruncation",line:0,column:0,kind:"ENUM",fields:[{name:"DISABLED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ENDING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"StyleSetType",line:0,column:0,kind:"ENUM",fields:[{name:"PERSONAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"TEAM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"CUSTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"FREQUENCY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"TEMPORARY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"StyleSetContentType",line:0,column:0,kind:"ENUM",fields:[{name:"SOLID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"GRADIENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"IMAGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"StackMode",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"HORIZONTAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"VERTICAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"StackAlign",line:0,column:0,kind:"ENUM",fields:[{name:"MIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"MAX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"BASELINE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"StackCounterAlign",line:0,column:0,kind:"ENUM",fields:[{name:"MIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"MAX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"STRETCH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"AUTO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"BASELINE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5}]},{name:"StackJustify",line:0,column:0,kind:"ENUM",fields:[{name:"MIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"MAX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"SPACE_EVENLY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SPACE_BETWEEN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"StackSize",line:0,column:0,kind:"ENUM",fields:[{name:"FIXED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"RESIZE_TO_FIT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"RESIZE_TO_FIT_WITH_IMPLICIT_SIZE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"StackPositioning",line:0,column:0,kind:"ENUM",fields:[{name:"AUTO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ABSOLUTE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"StackWrap",line:0,column:0,kind:"ENUM",fields:[{name:"NO_WRAP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"WRAP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"StackCounterAlignContent",line:0,column:0,kind:"ENUM",fields:[{name:"AUTO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SPACE_BETWEEN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"ConnectionType",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"INTERNAL_NODE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"URL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"BACK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"CLOSE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"SET_VARIABLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"UPDATE_MEDIA_RUNTIME",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"CONDITIONAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"SET_VARIABLE_MODE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8}]},{name:"InteractionType",line:0,column:0,kind:"ENUM",fields:[{name:"ON_CLICK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"AFTER_TIMEOUT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"MOUSE_IN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"MOUSE_OUT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"ON_HOVER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"MOUSE_DOWN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"MOUSE_UP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"ON_PRESS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"DRAG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"ON_KEY_DOWN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"ON_VOICE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"ON_MEDIA_HIT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"ON_MEDIA_END",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"MOUSE_ENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"MOUSE_LEAVE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15}]},{name:"TransitionType",line:0,column:0,kind:"ENUM",fields:[{name:"INSTANT_TRANSITION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"DISSOLVE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"FADE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"SLIDE_FROM_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SLIDE_FROM_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"SLIDE_FROM_TOP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"SLIDE_FROM_BOTTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"PUSH_FROM_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"PUSH_FROM_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"PUSH_FROM_TOP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"PUSH_FROM_BOTTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"MOVE_FROM_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"MOVE_FROM_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"MOVE_FROM_TOP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"MOVE_FROM_BOTTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"SLIDE_OUT_TO_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"SLIDE_OUT_TO_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"SLIDE_OUT_TO_TOP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"SLIDE_OUT_TO_BOTTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"MOVE_OUT_TO_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"MOVE_OUT_TO_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"MOVE_OUT_TO_TOP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21},{name:"MOVE_OUT_TO_BOTTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:22},{name:"MAGIC_MOVE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:23},{name:"SMART_ANIMATE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:24},{name:"SCROLL_ANIMATE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:25}]},{name:"EasingType",line:0,column:0,kind:"ENUM",fields:[{name:"IN_CUBIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"OUT_CUBIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"INOUT_CUBIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"LINEAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"IN_BACK_CUBIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"OUT_BACK_CUBIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"INOUT_BACK_CUBIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"CUSTOM_CUBIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"SPRING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"GENTLE_SPRING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"CUSTOM_SPRING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"SPRING_PRESET_ONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"SPRING_PRESET_TWO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"SPRING_PRESET_THREE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13}]},{name:"ScrollDirection",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"HORIZONTAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"VERTICAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"BOTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"ScrollContractedState",line:0,column:0,kind:"ENUM",fields:[{name:"EXPANDED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CONTRACTED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"GUID",line:0,column:0,kind:"STRUCT",fields:[{name:"sessionID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"localID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2}]},{name:"Color",line:0,column:0,kind:"STRUCT",fields:[{name:"r",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:1},{name:"g",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"b",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"a",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4}]},{name:"Vector",line:0,column:0,kind:"STRUCT",fields:[{name:"x",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:1},{name:"y",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2}]},{name:"Rect",line:0,column:0,kind:"STRUCT",fields:[{name:"x",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:1},{name:"y",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"w",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"h",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4}]},{name:"ColorStop",line:0,column:0,kind:"STRUCT",fields:[{name:"color",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:1},{name:"position",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2}]},{name:"ColorStopVar",line:0,column:0,kind:"MESSAGE",fields:[{name:"color",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:1},{name:"colorVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:2},{name:"position",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3}]},{name:"Matrix",line:0,column:0,kind:"STRUCT",fields:[{name:"m00",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:1},{name:"m01",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"m02",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"m10",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4},{name:"m11",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:5},{name:"m12",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:6}]},{name:"ParentIndex",line:0,column:0,kind:"STRUCT",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"position",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"Number",line:0,column:0,kind:"STRUCT",fields:[{name:"value",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:1},{name:"units",line:0,column:0,type:"NumberUnits",isArray:!1,isDeprecated:!1,value:2}]},{name:"FontName",line:0,column:0,kind:"STRUCT",fields:[{name:"family",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"style",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"postscript",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"FontVariantNumericFigure",line:0,column:0,kind:"ENUM",fields:[{name:"NORMAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"LINING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"OLDSTYLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"FontVariantNumericSpacing",line:0,column:0,kind:"ENUM",fields:[{name:"NORMAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"PROPORTIONAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"TABULAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"FontVariantNumericFraction",line:0,column:0,kind:"ENUM",fields:[{name:"NORMAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"DIAGONAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"STACKED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"FontVariantCaps",line:0,column:0,kind:"ENUM",fields:[{name:"NORMAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SMALL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"ALL_SMALL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"PETITE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"ALL_PETITE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"UNICASE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"TITLING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6}]},{name:"FontVariantPosition",line:0,column:0,kind:"ENUM",fields:[{name:"NORMAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SUB",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"SUPER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"FontStyle",line:0,column:0,kind:"ENUM",fields:[{name:"NORMAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ITALIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"SemanticWeight",line:0,column:0,kind:"ENUM",fields:[{name:"NORMAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"BOLD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"SemanticItalic",line:0,column:0,kind:"ENUM",fields:[{name:"NORMAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ITALIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"OpenTypeFeature",line:0,column:0,kind:"ENUM",fields:[{name:"PCAP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"C2PC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"CASE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"CPSP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"TITL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"UNIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"ZERO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"SINF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"ORDN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"AFRC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"DNOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"NUMR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"LIGA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"CLIG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"DLIG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"HLIG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"RLIG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"AALT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"CALT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"RCLT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"SALT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"RVRN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21},{name:"VERT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:22},{name:"SWSH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:23},{name:"CSWH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:24},{name:"NALT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:25},{name:"CCMP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:26},{name:"STCH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:27},{name:"HIST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:28},{name:"SIZE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:29},{name:"ORNM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:30},{name:"ITAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:31},{name:"RAND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:32},{name:"DTLS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:33},{name:"FLAC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:34},{name:"MGRK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:35},{name:"SSTY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:36},{name:"KERN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:37},{name:"FWID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:38},{name:"HWID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:39},{name:"HALT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:40},{name:"TWID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:41},{name:"QWID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:42},{name:"PWID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:43},{name:"JUST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:44},{name:"LFBD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:45},{name:"OPBD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:46},{name:"RTBD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:47},{name:"PALT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:48},{name:"PKNA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:49},{name:"LTRA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:50},{name:"LTRM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:51},{name:"RTLA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:52},{name:"RTLM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:53},{name:"ABRV",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:54},{name:"ABVM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:55},{name:"ABVS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:56},{name:"VALT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:57},{name:"VHAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:58},{name:"BLWF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:59},{name:"BLWM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:60},{name:"BLWS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:61},{name:"AKHN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:62},{name:"CJCT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:63},{name:"CFAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:64},{name:"CPCT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:65},{name:"CURS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:66},{name:"DIST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:67},{name:"EXPT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:68},{name:"FALT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:69},{name:"FINA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:70},{name:"FIN2",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:71},{name:"FIN3",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:72},{name:"HALF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:73},{name:"HALN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:74},{name:"HKNA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:75},{name:"HNGL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:76},{name:"HOJO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:77},{name:"INIT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:78},{name:"ISOL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:79},{name:"JP78",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:80},{name:"JP83",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:81},{name:"JP90",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:82},{name:"JP04",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:83},{name:"LJMO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:84},{name:"LOCL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:85},{name:"MARK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:86},{name:"MEDI",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:87},{name:"MED2",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:88},{name:"MKMK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:89},{name:"NLCK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:90},{name:"NUKT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:91},{name:"PREF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:92},{name:"PRES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:93},{name:"VPAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:94},{name:"PSTF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:95},{name:"PSTS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:96},{name:"RKRF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:97},{name:"RPHF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:98},{name:"RUBY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:99},{name:"SMPL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:100},{name:"TJMO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:101},{name:"TNAM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:102},{name:"TRAD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:103},{name:"VATU",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:104},{name:"VJMO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:105},{name:"VKNA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:106},{name:"VKRN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:107},{name:"VRTR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:108},{name:"VRT2",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:109},{name:"SS01",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:110},{name:"SS02",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:111},{name:"SS03",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:112},{name:"SS04",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:113},{name:"SS05",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:114},{name:"SS06",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:115},{name:"SS07",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:116},{name:"SS08",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:117},{name:"SS09",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:118},{name:"SS10",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:119},{name:"SS11",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:120},{name:"SS12",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:121},{name:"SS13",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:122},{name:"SS14",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:123},{name:"SS15",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:124},{name:"SS16",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:125},{name:"SS17",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:126},{name:"SS18",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:127},{name:"SS19",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:128},{name:"SS20",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:129},{name:"CV01",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:130},{name:"CV02",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:131},{name:"CV03",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:132},{name:"CV04",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:133},{name:"CV05",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:134},{name:"CV06",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:135},{name:"CV07",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:136},{name:"CV08",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:137},{name:"CV09",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:138},{name:"CV10",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:139},{name:"CV11",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:140},{name:"CV12",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:141},{name:"CV13",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:142},{name:"CV14",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:143},{name:"CV15",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:144},{name:"CV16",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:145},{name:"CV17",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:146},{name:"CV18",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:147},{name:"CV19",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:148},{name:"CV20",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:149},{name:"CV21",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:150},{name:"CV22",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:151},{name:"CV23",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:152},{name:"CV24",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:153},{name:"CV25",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:154},{name:"CV26",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:155},{name:"CV27",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:156},{name:"CV28",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:157},{name:"CV29",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:158},{name:"CV30",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:159},{name:"CV31",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:160},{name:"CV32",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:161},{name:"CV33",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:162},{name:"CV34",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:163},{name:"CV35",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:164},{name:"CV36",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:165},{name:"CV37",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:166},{name:"CV38",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:167},{name:"CV39",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:168},{name:"CV40",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:169},{name:"CV41",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:170},{name:"CV42",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:171},{name:"CV43",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:172},{name:"CV44",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:173},{name:"CV45",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:174},{name:"CV46",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:175},{name:"CV47",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:176},{name:"CV48",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:177},{name:"CV49",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:178},{name:"CV50",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:179},{name:"CV51",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:180},{name:"CV52",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:181},{name:"CV53",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:182},{name:"CV54",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:183},{name:"CV55",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:184},{name:"CV56",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:185},{name:"CV57",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:186},{name:"CV58",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:187},{name:"CV59",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:188},{name:"CV60",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:189},{name:"CV61",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:190},{name:"CV62",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:191},{name:"CV63",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:192},{name:"CV64",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:193},{name:"CV65",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:194},{name:"CV66",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:195},{name:"CV67",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:196},{name:"CV68",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:197},{name:"CV69",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:198},{name:"CV70",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:199},{name:"CV71",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:200},{name:"CV72",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:201},{name:"CV73",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:202},{name:"CV74",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:203},{name:"CV75",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:204},{name:"CV76",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:205},{name:"CV77",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:206},{name:"CV78",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:207},{name:"CV79",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:208},{name:"CV80",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:209},{name:"CV81",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:210},{name:"CV82",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:211},{name:"CV83",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:212},{name:"CV84",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:213},{name:"CV85",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:214},{name:"CV86",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:215},{name:"CV87",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:216},{name:"CV88",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:217},{name:"CV89",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:218},{name:"CV90",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:219},{name:"CV91",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:220},{name:"CV92",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:221},{name:"CV93",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:222},{name:"CV94",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:223},{name:"CV95",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:224},{name:"CV96",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:225},{name:"CV97",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:226},{name:"CV98",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:227},{name:"CV99",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:228}]},{name:"ExportConstraint",line:0,column:0,kind:"STRUCT",fields:[{name:"type",line:0,column:0,type:"ExportConstraintType",isArray:!1,isDeprecated:!1,value:1},{name:"value",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2}]},{name:"GUIDMapping",line:0,column:0,kind:"STRUCT",fields:[{name:"from",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"to",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2}]},{name:"Blob",line:0,column:0,kind:"STRUCT",fields:[{name:"bytes",line:0,column:0,type:"byte",isArray:!0,isDeprecated:!1,value:1}]},{name:"Image",line:0,column:0,kind:"MESSAGE",fields:[{name:"hash",line:0,column:0,type:"byte",isArray:!0,isDeprecated:!1,value:1},{name:"name",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"dataBlob",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3}]},{name:"Video",line:0,column:0,kind:"MESSAGE",fields:[{name:"hash",line:0,column:0,type:"byte",isArray:!0,isDeprecated:!1,value:1},{name:"s3Url",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"PasteSource",line:0,column:0,kind:"MESSAGE",fields:[{name:"srcFile",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"srcNode",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2}]},{name:"FilterColorAdjust",line:0,column:0,kind:"STRUCT",fields:[{name:"tint",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:1},{name:"shadows",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"highlights",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"detail",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4},{name:"exposure",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:5},{name:"vignette",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:6},{name:"temperature",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:7},{name:"vibrance",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:8}]},{name:"PaintFilterMessage",line:0,column:0,kind:"MESSAGE",fields:[{name:"tint",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:1},{name:"shadows",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"highlights",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"detail",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4},{name:"exposure",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:5},{name:"vignette",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:6},{name:"temperature",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:7},{name:"vibrance",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:8},{name:"contrast",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:9},{name:"brightness",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:10}]},{name:"Paint",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"PaintType",isArray:!1,isDeprecated:!1,value:1},{name:"color",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:2},{name:"opacity",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"visible",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4},{name:"blendMode",line:0,column:0,type:"BlendMode",isArray:!1,isDeprecated:!1,value:5},{name:"stops",line:0,column:0,type:"ColorStop",isArray:!0,isDeprecated:!1,value:6},{name:"transform",line:0,column:0,type:"Matrix",isArray:!1,isDeprecated:!1,value:7},{name:"image",line:0,column:0,type:"Image",isArray:!1,isDeprecated:!1,value:8},{name:"imageThumbnail",line:0,column:0,type:"Image",isArray:!1,isDeprecated:!1,value:9},{name:"animatedImage",line:0,column:0,type:"Image",isArray:!1,isDeprecated:!1,value:16},{name:"animationFrame",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:17},{name:"imageScaleMode",line:0,column:0,type:"ImageScaleMode",isArray:!1,isDeprecated:!1,value:10},{name:"imageShouldColorManage",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:22},{name:"rotation",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:11},{name:"scale",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:12},{name:"filterColorAdjust",line:0,column:0,type:"FilterColorAdjust",isArray:!1,isDeprecated:!1,value:13},{name:"paintFilter",line:0,column:0,type:"PaintFilterMessage",isArray:!1,isDeprecated:!1,value:14},{name:"emojiCodePoints",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:15},{name:"video",line:0,column:0,type:"Video",isArray:!1,isDeprecated:!1,value:18},{name:"originalImageWidth",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:19},{name:"originalImageHeight",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:20},{name:"colorVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:21},{name:"stopsVar",line:0,column:0,type:"ColorStopVar",isArray:!0,isDeprecated:!1,value:23},{name:"thumbHashBase64",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:24},{name:"thumbHash",line:0,column:0,type:"byte",isArray:!0,isDeprecated:!1,value:25}]},{name:"FontMetaData",line:0,column:0,kind:"MESSAGE",fields:[{name:"key",line:0,column:0,type:"FontName",isArray:!1,isDeprecated:!1,value:1},{name:"fontLineHeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"fontDigest",line:0,column:0,type:"byte",isArray:!0,isDeprecated:!1,value:3},{name:"fontStyle",line:0,column:0,type:"FontStyle",isArray:!1,isDeprecated:!1,value:4},{name:"fontWeight",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:5}]},{name:"FontVariation",line:0,column:0,kind:"MESSAGE",fields:[{name:"axisTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"axisName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"value",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3}]},{name:"TextData",line:0,column:0,kind:"MESSAGE",fields:[{name:"characters",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"characterStyleIDs",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:2},{name:"styleOverrideTable",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:3},{name:"lines",line:0,column:0,type:"TextLineData",isArray:!0,isDeprecated:!1,value:12},{name:"layoutVersion",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:8},{name:"fallbackFonts",line:0,column:0,type:"FontName",isArray:!0,isDeprecated:!1,value:10},{name:"minContentHeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:17},{name:"layoutSize",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:4},{name:"baselines",line:0,column:0,type:"Baseline",isArray:!0,isDeprecated:!1,value:5},{name:"glyphs",line:0,column:0,type:"Glyph",isArray:!0,isDeprecated:!1,value:6},{name:"decorations",line:0,column:0,type:"Decoration",isArray:!0,isDeprecated:!1,value:7},{name:"blockquotes",line:0,column:0,type:"Blockquote",isArray:!0,isDeprecated:!1,value:16},{name:"fontMetaData",line:0,column:0,type:"FontMetaData",isArray:!0,isDeprecated:!1,value:9},{name:"hyperlinkBoxes",line:0,column:0,type:"HyperlinkBox",isArray:!0,isDeprecated:!1,value:11},{name:"truncationStartIndex",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:13},{name:"truncatedHeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:14},{name:"logicalIndexToCharacterOffsetMap",line:0,column:0,type:"float",isArray:!0,isDeprecated:!1,value:15},{name:"mentionBoxes",line:0,column:0,type:"MentionBox",isArray:!0,isDeprecated:!1,value:18},{name:"derivedLines",line:0,column:0,type:"DerivedTextLineData",isArray:!0,isDeprecated:!1,value:19}]},{name:"DerivedTextData",line:0,column:0,kind:"MESSAGE",fields:[{name:"layoutSize",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:1},{name:"baselines",line:0,column:0,type:"Baseline",isArray:!0,isDeprecated:!1,value:2},{name:"glyphs",line:0,column:0,type:"Glyph",isArray:!0,isDeprecated:!1,value:3},{name:"decorations",line:0,column:0,type:"Decoration",isArray:!0,isDeprecated:!1,value:4},{name:"blockquotes",line:0,column:0,type:"Blockquote",isArray:!0,isDeprecated:!1,value:5},{name:"fontMetaData",line:0,column:0,type:"FontMetaData",isArray:!0,isDeprecated:!1,value:6},{name:"hyperlinkBoxes",line:0,column:0,type:"HyperlinkBox",isArray:!0,isDeprecated:!1,value:7},{name:"truncationStartIndex",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:8},{name:"truncatedHeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:9},{name:"logicalIndexToCharacterOffsetMap",line:0,column:0,type:"float",isArray:!0,isDeprecated:!1,value:10},{name:"mentionBoxes",line:0,column:0,type:"MentionBox",isArray:!0,isDeprecated:!1,value:11},{name:"derivedLines",line:0,column:0,type:"DerivedTextLineData",isArray:!0,isDeprecated:!1,value:12}]},{name:"HyperlinkBox",line:0,column:0,kind:"MESSAGE",fields:[{name:"bounds",line:0,column:0,type:"Rect",isArray:!1,isDeprecated:!1,value:1},{name:"url",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3},{name:"hyperlinkID",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:4}]},{name:"MentionBox",line:0,column:0,kind:"MESSAGE",fields:[{name:"bounds",line:0,column:0,type:"Rect",isArray:!1,isDeprecated:!1,value:1},{name:"startIndex",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"endIndex",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3},{name:"isValid",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4},{name:"mentionKey",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:5}]},{name:"Baseline",line:0,column:0,kind:"MESSAGE",fields:[{name:"position",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:1},{name:"width",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"lineY",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"lineHeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4},{name:"lineAscent",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:7},{name:"ignoreLeadingTrim",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:8},{name:"firstCharacter",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:5},{name:"endCharacter",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:6}]},{name:"Glyph",line:0,column:0,kind:"MESSAGE",fields:[{name:"commandsBlob",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"position",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:2},{name:"styleID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3},{name:"fontSize",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4},{name:"firstCharacter",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:5},{name:"advance",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:6},{name:"emojiCodePoints",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:7},{name:"emojiImageSet",line:0,column:0,type:"EmojiImageSet",isArray:!1,isDeprecated:!1,value:8},{name:"rotation",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:9}]},{name:"Decoration",line:0,column:0,kind:"MESSAGE",fields:[{name:"rects",line:0,column:0,type:"Rect",isArray:!0,isDeprecated:!1,value:1},{name:"styleID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2}]},{name:"Blockquote",line:0,column:0,kind:"MESSAGE",fields:[{name:"verticalBar",line:0,column:0,type:"Rect",isArray:!1,isDeprecated:!1,value:1},{name:"quoteMarkBounds",line:0,column:0,type:"Rect",isArray:!1,isDeprecated:!1,value:2},{name:"styleID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3}]},{name:"VectorData",line:0,column:0,kind:"MESSAGE",fields:[{name:"vectorNetworkBlob",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"normalizedSize",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:2},{name:"styleOverrideTable",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:3}]},{name:"GUIDPath",line:0,column:0,kind:"MESSAGE",fields:[{name:"guids",line:0,column:0,type:"GUID",isArray:!0,isDeprecated:!1,value:1}]},{name:"SymbolData",line:0,column:0,kind:"MESSAGE",fields:[{name:"symbolID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"symbolOverrides",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:2},{name:"uniformScaleFactor",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3}]},{name:"GUIDPathMapping",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"path",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:2}]},{name:"NodeGenerationData",line:0,column:0,kind:"MESSAGE",fields:[{name:"overrides",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:1},{name:"useFineGrainedSyncing",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:2},{name:"diffOnlyRemovals",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:3}]},{name:"DerivedImmutableFrameData",line:0,column:0,kind:"MESSAGE",fields:[{name:"overrides",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:1},{name:"version",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2}]},{name:"AssetIdMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"AssetIdEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"AssetIdEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"assetKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"assetId",line:0,column:0,type:"AssetId",isArray:!1,isDeprecated:!1,value:2}]},{name:"AssetRef",line:0,column:0,kind:"MESSAGE",fields:[{name:"key",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"version",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"AssetId",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2},{name:"stateGroupId",line:0,column:0,type:"StateGroupId",isArray:!1,isDeprecated:!1,value:3},{name:"styleId",line:0,column:0,type:"StyleId",isArray:!1,isDeprecated:!1,value:4},{name:"symbolId",line:0,column:0,type:"SymbolId",isArray:!1,isDeprecated:!1,value:5},{name:"variableId",line:0,column:0,type:"VariableID",isArray:!1,isDeprecated:!1,value:6},{name:"variableSetId",line:0,column:0,type:"VariableSetID",isArray:!1,isDeprecated:!1,value:7}]},{name:"StateGroupId",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2}]},{name:"StyleId",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2}]},{name:"SymbolId",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2}]},{name:"VariableID",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2}]},{name:"VariableOverrideId",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2}]},{name:"VariableSetID",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2}]},{name:"ModuleId",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2}]},{name:"ResponsiveSetId",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2}]},{name:"ThemeID",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"assetRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:2}]},{name:"ResponsiveTextStyleVariant",line:0,column:0,kind:"MESSAGE",fields:[{name:"minWidth",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:1},{name:"fields",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:2},{name:"variableFontSize",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:3},{name:"variableLineHeight",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:4},{name:"variableLetterSpacing",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:5},{name:"variableParagraphSpacing",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:6}]},{name:"FlappType",line:0,column:0,kind:"ENUM",fields:[{name:"POLL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"EMBED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"FACEPILE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"ALIGNMENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"YOUTUBE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"SlideThemeProps",line:0,column:0,kind:"MESSAGE",fields:[{name:"themeVersion",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"variableSetId",line:0,column:0,type:"VariableSetID",isArray:!1,isDeprecated:!1,value:2},{name:"textStyleIds",line:0,column:0,type:"StyleId",isArray:!0,isDeprecated:!1,value:3},{name:"isTextColorManuallySelected",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4},{name:"isBorderColorManuallySelected",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:5},{name:"subscribedThemeRef",line:0,column:0,type:"AssetRef",isArray:!1,isDeprecated:!1,value:6},{name:"schemaVersion",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:7},{name:"isGeneratedFromDesign",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:8}]},{name:"SlideThemeMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"SlideThemeMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"SlideThemeMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"themeId",line:0,column:0,type:"ThemeID",isArray:!1,isDeprecated:!1,value:1},{name:"themeProps",line:0,column:0,type:"SlideThemeProps",isArray:!1,isDeprecated:!1,value:2}]},{name:"SharedSymbolReference",line:0,column:0,kind:"MESSAGE",fields:[{name:"fileKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"symbolID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"versionHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"guidPathMappings",line:0,column:0,type:"GUIDPathMapping",isArray:!0,isDeprecated:!1,value:4},{name:"bytes",line:0,column:0,type:"byte",isArray:!0,isDeprecated:!1,value:5},{name:"libraryGUIDToSubscribingGUID",line:0,column:0,type:"GUIDMapping",isArray:!0,isDeprecated:!1,value:6},{name:"componentKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:7},{name:"unflatteningMappings",line:0,column:0,type:"GUIDPathMapping",isArray:!0,isDeprecated:!1,value:8},{name:"isUnflattened",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:9}]},{name:"SharedComponentMasterData",line:0,column:0,kind:"MESSAGE",fields:[{name:"componentKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"publishingGUIDPathToTeamLibraryGUID",line:0,column:0,type:"GUIDPathMapping",isArray:!0,isDeprecated:!1,value:2},{name:"isUnflattened",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:3}]},{name:"InstanceOverrideStash",line:0,column:0,kind:"MESSAGE",fields:[{name:"overridePathOfSwappedInstance",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:1},{name:"componentKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"overrides",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:3}]},{name:"InstanceOverrideStashV2",line:0,column:0,kind:"MESSAGE",fields:[{name:"overridePathOfSwappedInstance",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:1},{name:"localSymbolID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"overrides",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:3}]},{name:"Effect",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"EffectType",isArray:!1,isDeprecated:!1,value:1},{name:"color",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:2},{name:"offset",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:3},{name:"radius",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4},{name:"visible",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:5},{name:"blendMode",line:0,column:0,type:"BlendMode",isArray:!1,isDeprecated:!1,value:6},{name:"spread",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:7},{name:"showShadowBehindNode",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:8},{name:"radiusVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:9},{name:"colorVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:10},{name:"spreadVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:11},{name:"xVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:12},{name:"yVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:13}]},{name:"TransitionInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"TransitionType",isArray:!1,isDeprecated:!1,value:1},{name:"duration",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2}]},{name:"PrototypeDeviceType",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"PRESET",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"CUSTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"PRESENTATION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"DeviceRotation",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CCW_90",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"PrototypeDevice",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"PrototypeDeviceType",isArray:!1,isDeprecated:!1,value:1},{name:"size",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:2},{name:"presetIdentifier",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"rotation",line:0,column:0,type:"DeviceRotation",isArray:!1,isDeprecated:!1,value:4}]},{name:"OverlayPositionType",line:0,column:0,kind:"ENUM",fields:[{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"TOP_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"TOP_CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"TOP_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"BOTTOM_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"BOTTOM_CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"BOTTOM_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"MANUAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7}]},{name:"OverlayBackgroundInteraction",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CLOSE_ON_CLICK_OUTSIDE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"OverlayBackgroundType",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SOLID_COLOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"OverlayBackgroundAppearance",line:0,column:0,kind:"MESSAGE",fields:[{name:"backgroundType",line:0,column:0,type:"OverlayBackgroundType",isArray:!1,isDeprecated:!1,value:1},{name:"backgroundColor",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:2}]},{name:"NavigationType",line:0,column:0,kind:"ENUM",fields:[{name:"NAVIGATE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"OVERLAY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"SWAP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"SWAP_STATE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SCROLL_TO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"ExportColorProfile",line:0,column:0,kind:"ENUM",fields:[{name:"DOCUMENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SRGB",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"DISPLAY_P3_V4",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"ExportSettings",line:0,column:0,kind:"MESSAGE",fields:[{name:"suffix",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"imageType",line:0,column:0,type:"ImageType",isArray:!1,isDeprecated:!1,value:2},{name:"constraint",line:0,column:0,type:"ExportConstraint",isArray:!1,isDeprecated:!1,value:3},{name:"svgDataName",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4},{name:"svgIDMode",line:0,column:0,type:"ExportSVGIDMode",isArray:!1,isDeprecated:!1,value:5},{name:"svgOutlineText",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:6},{name:"contentsOnly",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:7},{name:"svgForceStrokeMasks",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:8},{name:"useAbsoluteBounds",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:9},{name:"colorProfile",line:0,column:0,type:"ExportColorProfile",isArray:!1,isDeprecated:!1,value:10},{name:"quality",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:11}]},{name:"ExportSVGIDMode",line:0,column:0,kind:"ENUM",fields:[{name:"IF_NEEDED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ALWAYS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"LayoutGrid",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"LayoutGridType",isArray:!1,isDeprecated:!1,value:1},{name:"axis",line:0,column:0,type:"Axis",isArray:!1,isDeprecated:!1,value:2},{name:"visible",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:3},{name:"numSections",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:4},{name:"offset",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:5},{name:"sectionSize",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:6},{name:"gutterSize",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:7},{name:"color",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:8},{name:"pattern",line:0,column:0,type:"LayoutGridPattern",isArray:!1,isDeprecated:!1,value:9},{name:"numSectionsVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:10},{name:"offsetVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:11},{name:"sectionSizeVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:12},{name:"gutterSizeVar",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:13}]},{name:"Guide",line:0,column:0,kind:"MESSAGE",fields:[{name:"axis",line:0,column:0,type:"Axis",isArray:!1,isDeprecated:!1,value:1},{name:"offset",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3}]},{name:"Path",line:0,column:0,kind:"MESSAGE",fields:[{name:"windingRule",line:0,column:0,type:"WindingRule",isArray:!1,isDeprecated:!1,value:1},{name:"commandsBlob",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"styleID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3}]},{name:"StyleType",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"FILL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"STROKE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"TEXT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"EFFECT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"EXPORT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"GRID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6}]},{name:"SharedStyleReference",line:0,column:0,kind:"MESSAGE",fields:[{name:"styleKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"versionHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"SharedStyleMasterData",line:0,column:0,kind:"MESSAGE",fields:[{name:"styleKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"sortPosition",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"fileKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"ScrollBehavior",line:0,column:0,kind:"ENUM",fields:[{name:"SCROLLS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"FIXED_WHEN_CHILD_OF_SCROLLING_FRAME",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"STICKY_SCROLLS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"ArcData",line:0,column:0,kind:"MESSAGE",fields:[{name:"startingAngle",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:1},{name:"endingAngle",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"innerRadius",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3}]},{name:"SymbolLink",line:0,column:0,kind:"MESSAGE",fields:[{name:"uri",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"displayName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"displayText",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"PluginData",line:0,column:0,kind:"MESSAGE",fields:[{name:"pluginID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"value",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"key",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"PluginRelaunchData",line:0,column:0,kind:"MESSAGE",fields:[{name:"pluginID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"message",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"command",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"isDeleted",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4}]},{name:"MultiplayerFieldVersion",line:0,column:0,kind:"MESSAGE",fields:[{name:"counter",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"sessionID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2}]},{name:"ConnectorMagnet",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"AUTO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"TOP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"BOTTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"CENTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"AUTO_HORIZONTAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"EDGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"ABSOLUTE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9}]},{name:"ConnectorEndpoint",line:0,column:0,kind:"MESSAGE",fields:[{name:"endpointNodeID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"position",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:2},{name:"magnet",line:0,column:0,type:"ConnectorMagnet",isArray:!1,isDeprecated:!1,value:3}]},{name:"ConnectorControlPoint",line:0,column:0,kind:"MESSAGE",fields:[{name:"position",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:1},{name:"axis",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:2}]},{name:"ConnectorTextSection",line:0,column:0,kind:"ENUM",fields:[{name:"MIDDLE_TO_START",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"MIDDLE_TO_END",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"ConnectorOffAxisOffset",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ABOVE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"BELOW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"ConnectorTextMidpoint",line:0,column:0,kind:"MESSAGE",fields:[{name:"section",line:0,column:0,type:"ConnectorTextSection",isArray:!1,isDeprecated:!1,value:1},{name:"offset",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"offAxisOffset",line:0,column:0,type:"ConnectorOffAxisOffset",isArray:!1,isDeprecated:!1,value:3}]},{name:"ConnectorLineStyle",line:0,column:0,kind:"ENUM",fields:[{name:"ELBOWED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"STRAIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"CURVED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"ConnectorType",line:0,column:0,kind:"ENUM",fields:[{name:"MANUAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"DIAGRAM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"AnnotationPropertyType",line:0,column:0,kind:"ENUM",fields:[{name:"FILL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"STROKE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"WIDTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"MIN_WIDTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"MIN_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"MAX_WIDTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"MAX_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"STROKE_WIDTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"CORNER_RADIUS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"EFFECT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"TEXT_STYLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"TEXT_ALIGN_HORIZONTAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"FONT_FAMILY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"FONT_SIZE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"FONT_WEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"LINE_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"LETTER_SPACING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"STACK_SPACING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"STACK_PADDING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"STACK_MODE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"STACK_ALIGNMENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21},{name:"OPACITY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:22},{name:"COMPONENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:23},{name:"FONT_STYLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:24}]},{name:"AnnotationProperty",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"AnnotationPropertyType",isArray:!1,isDeprecated:!1,value:1}]},{name:"Annotation",line:0,column:0,kind:"MESSAGE",fields:[{name:"label",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"properties",line:0,column:0,type:"AnnotationProperty",isArray:!0,isDeprecated:!1,value:2},{name:"labelV2",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"AnnotationMeasurementNodeSide",line:0,column:0,kind:"ENUM",fields:[{name:"TOP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"BOTTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"AnnotationMeasurement",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"fromNode",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"toNode",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3},{name:"fromNodeSide",line:0,column:0,type:"AnnotationMeasurementNodeSide",isArray:!1,isDeprecated:!1,value:4},{name:"toSameSide",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:5},{name:"innerOffsetRelative",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:6},{name:"outerOffsetFixed",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:7},{name:"toNodeStablePath",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:8},{name:"freeText",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:9}]},{name:"LibraryMoveInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"oldKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"pasteFileKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"LibraryMoveHistoryItem",line:0,column:0,kind:"MESSAGE",fields:[{name:"sourceNodeId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"sourceComponentKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"DeveloperRelatedLink",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"fileKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"linkName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"linkUrl",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:4}]},{name:"WidgetPointer",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1}]},{name:"EditInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"timestampIso8601",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"userId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"lastEditedAt",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3},{name:"createdAt",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:4}]},{name:"EditorType",line:0,column:0,kind:"ENUM",fields:[{name:"DESIGN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"WHITEBOARD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"SLIDES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"DEV_HANDOFF",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SITES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"COOPER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5}]},{name:"MaskType",line:0,column:0,kind:"ENUM",fields:[{name:"ALPHA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"OUTLINE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"LUMINANCE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"ModuleType",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SINGLE_NODE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"MULTI_NODE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"SectionStatus",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"BUILD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"COMPLETED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"SectionStatusInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"status",line:0,column:0,type:"SectionStatus",isArray:!1,isDeprecated:!1,value:1},{name:"lastUpdateUnixTimestamp",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"description",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"userId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:4},{name:"prevStatus",line:0,column:0,type:"SectionStatus",isArray:!1,isDeprecated:!1,value:5}]},{name:"NodeChange",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"guidTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:53},{name:"phase",line:0,column:0,type:"NodePhase",isArray:!1,isDeprecated:!1,value:2},{name:"phaseTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:54},{name:"parentIndex",line:0,column:0,type:"ParentIndex",isArray:!1,isDeprecated:!1,value:3},{name:"parentIndexTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:55},{name:"type",line:0,column:0,type:"NodeType",isArray:!1,isDeprecated:!1,value:4},{name:"typeTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:56},{name:"name",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:5},{name:"nameTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:57},{name:"isPublishable",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:174},{name:"description",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:318},{name:"libraryMoveInfo",line:0,column:0,type:"LibraryMoveInfo",isArray:!1,isDeprecated:!1,value:256},{name:"libraryMoveHistory",line:0,column:0,type:"LibraryMoveHistoryItem",isArray:!0,isDeprecated:!1,value:281},{name:"key",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:319},{name:"fileAssetIds",line:0,column:0,type:"AssetIdMap",isArray:!1,isDeprecated:!1,value:383},{name:"styleID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:49},{name:"styleIDTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:101},{name:"isSoftDeletedStyle",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:176},{name:"isNonUpdateable",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:177},{name:"isFillStyle",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:157},{name:"isStrokeStyle",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:161},{name:"isOverrideOverTextStyle",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:376},{name:"styleType",line:0,column:0,type:"StyleType",isArray:!1,isDeprecated:!1,value:163},{name:"styleDescription",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:191},{name:"version",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:171},{name:"sharedStyleMasterData",line:0,column:0,type:"SharedStyleMasterData",isArray:!1,isDeprecated:!1,value:172},{name:"sharedStyleReference",line:0,column:0,type:"SharedStyleReference",isArray:!1,isDeprecated:!1,value:173},{name:"userFacingVersion",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:399},{name:"sortPosition",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:320},{name:"ojansSuperSecretNodeField",line:0,column:0,type:"SharedStyleMasterData",isArray:!1,isDeprecated:!1,value:345},{name:"sevMoonlitLilyData",line:0,column:0,type:"SharedStyleMasterData",isArray:!1,isDeprecated:!1,value:348},{name:"inheritFillStyleID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:158},{name:"inheritStrokeStyleID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:162},{name:"inheritTextStyleID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:167},{name:"inheritExportStyleID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:168},{name:"inheritEffectStyleID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:169},{name:"inheritGridStyleID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:170},{name:"inheritFillStyleIDForStroke",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:185},{name:"styleIdForFill",line:0,column:0,type:"StyleId",isArray:!1,isDeprecated:!1,value:332},{name:"styleIdForStrokeFill",line:0,column:0,type:"StyleId",isArray:!1,isDeprecated:!1,value:333},{name:"styleIdForText",line:0,column:0,type:"StyleId",isArray:!1,isDeprecated:!1,value:334},{name:"styleIdForEffect",line:0,column:0,type:"StyleId",isArray:!1,isDeprecated:!1,value:335},{name:"styleIdForGrid",line:0,column:0,type:"StyleId",isArray:!1,isDeprecated:!1,value:336},{name:"backgroundPaints",line:0,column:0,type:"Paint",isArray:!0,isDeprecated:!1,value:193},{name:"inheritFillStyleIDForBackground",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:194},{name:"isStateGroup",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:225},{name:"stateGroupPropertyValueOrders",line:0,column:0,type:"StateGroupPropertyValueOrder",isArray:!0,isDeprecated:!1,value:238},{name:"sharedSymbolReference",line:0,column:0,type:"SharedSymbolReference",isArray:!1,isDeprecated:!1,value:122},{name:"isSymbolPublishable",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:123},{name:"sharedSymbolMappings",line:0,column:0,type:"GUIDPathMapping",isArray:!0,isDeprecated:!1,value:124},{name:"sharedSymbolVersion",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:126},{name:"sharedComponentMasterData",line:0,column:0,type:"SharedComponentMasterData",isArray:!1,isDeprecated:!1,value:152},{name:"symbolDescription",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:144},{name:"unflatteningMappings",line:0,column:0,type:"GUIDPathMapping",isArray:!0,isDeprecated:!1,value:164},{name:"forceUnflatteningMappings",line:0,column:0,type:"GUIDPathMapping",isArray:!0,isDeprecated:!1,value:228},{name:"publishFile",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:214},{name:"sourceLibraryKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:395},{name:"publishID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:215},{name:"componentKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:216},{name:"isC2",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:217},{name:"publishedVersion",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:218},{name:"originComponentKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:252},{name:"componentPropDefs",line:0,column:0,type:"ComponentPropDef",isArray:!0,isDeprecated:!1,value:266},{name:"componentPropRefs",line:0,column:0,type:"ComponentPropRef",isArray:!0,isDeprecated:!1,value:267},{name:"symbolData",line:0,column:0,type:"SymbolData",isArray:!1,isDeprecated:!1,value:113},{name:"symbolDataTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:114},{name:"derivedSymbolData",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:125},{name:"nestedInstanceResizeEnabled",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:394},{name:"overriddenSymbolID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:143},{name:"componentPropAssignments",line:0,column:0,type:"ComponentPropAssignment",isArray:!0,isDeprecated:!1,value:268},{name:"propsAreBubbled",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:305},{name:"overrideStash",line:0,column:0,type:"InstanceOverrideStash",isArray:!0,isDeprecated:!1,value:248},{name:"overrideStashV2",line:0,column:0,type:"InstanceOverrideStashV2",isArray:!0,isDeprecated:!1,value:250},{name:"guidPath",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:111},{name:"guidPathTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:112},{name:"overrideLevel",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:321},{name:"moduleType",line:0,column:0,type:"ModuleType",isArray:!1,isDeprecated:!1,value:382},{name:"fontSize",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:21},{name:"fontSizeTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:73},{name:"paragraphIndent",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:22},{name:"paragraphIndentTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:74},{name:"paragraphSpacing",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:23},{name:"paragraphSpacingTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:75},{name:"textAlignHorizontal",line:0,column:0,type:"TextAlignHorizontal",isArray:!1,isDeprecated:!1,value:32},{name:"textAlignHorizontalTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:84},{name:"textAlignVertical",line:0,column:0,type:"TextAlignVertical",isArray:!1,isDeprecated:!1,value:33},{name:"textAlignVerticalTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:85},{name:"textCase",line:0,column:0,type:"TextCase",isArray:!1,isDeprecated:!1,value:34},{name:"textCaseTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:86},{name:"textDecoration",line:0,column:0,type:"TextDecoration",isArray:!1,isDeprecated:!1,value:35},{name:"textDecorationTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:87},{name:"lineHeight",line:0,column:0,type:"Number",isArray:!1,isDeprecated:!1,value:40},{name:"lineHeightTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:92},{name:"fontName",line:0,column:0,type:"FontName",isArray:!1,isDeprecated:!1,value:41},{name:"fontNameTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:93},{name:"textData",line:0,column:0,type:"TextData",isArray:!1,isDeprecated:!1,value:42},{name:"textDataTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:94},{name:"derivedTextData",line:0,column:0,type:"DerivedTextData",isArray:!1,isDeprecated:!1,value:359},{name:"fontVariantCommonLigatures",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:127},{name:"fontVariantContextualLigatures",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:128},{name:"fontVariantDiscretionaryLigatures",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:129},{name:"fontVariantHistoricalLigatures",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:130},{name:"fontVariantOrdinal",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:131},{name:"fontVariantSlashedZero",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:132},{name:"fontVariantNumericFigure",line:0,column:0,type:"FontVariantNumericFigure",isArray:!1,isDeprecated:!1,value:133},{name:"fontVariantNumericSpacing",line:0,column:0,type:"FontVariantNumericSpacing",isArray:!1,isDeprecated:!1,value:134},{name:"fontVariantNumericFraction",line:0,column:0,type:"FontVariantNumericFraction",isArray:!1,isDeprecated:!1,value:135},{name:"fontVariantCaps",line:0,column:0,type:"FontVariantCaps",isArray:!1,isDeprecated:!1,value:136},{name:"fontVariantPosition",line:0,column:0,type:"FontVariantPosition",isArray:!1,isDeprecated:!1,value:137},{name:"letterSpacing",line:0,column:0,type:"Number",isArray:!1,isDeprecated:!1,value:165},{name:"fontVersion",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:202},{name:"leadingTrim",line:0,column:0,type:"LeadingTrim",isArray:!1,isDeprecated:!1,value:322},{name:"hangingPunctuation",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:337},{name:"hangingList",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:339},{name:"maxLines",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:351},{name:"responsiveTextStyleVariants",line:0,column:0,type:"ResponsiveTextStyleVariant",isArray:!0,isDeprecated:!1,value:417},{name:"sectionStatus",line:0,column:0,type:"SectionStatus",isArray:!1,isDeprecated:!1,value:352},{name:"sectionStatusInfo",line:0,column:0,type:"SectionStatusInfo",isArray:!1,isDeprecated:!1,value:355},{name:"textUserLayoutVersion",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:203},{name:"textExplicitLayoutVersion",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:396},{name:"toggledOnOTFeatures",line:0,column:0,type:"OpenTypeFeature",isArray:!0,isDeprecated:!1,value:205},{name:"toggledOffOTFeatures",line:0,column:0,type:"OpenTypeFeature",isArray:!0,isDeprecated:!1,value:206},{name:"hyperlink",line:0,column:0,type:"Hyperlink",isArray:!1,isDeprecated:!1,value:223},{name:"mention",line:0,column:0,type:"Mention",isArray:!1,isDeprecated:!1,value:340},{name:"fontVariations",line:0,column:0,type:"FontVariation",isArray:!0,isDeprecated:!1,value:260},{name:"textBidiVersion",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:279},{name:"textTruncation",line:0,column:0,type:"TextTruncation",isArray:!1,isDeprecated:!1,value:280},{name:"hasHadRTLText",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:292},{name:"emojiImageSet",line:0,column:0,type:"EmojiImageSet",isArray:!1,isDeprecated:!1,value:391},{name:"slideThumbnailHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:392},{name:"visible",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:6},{name:"visibleTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:58},{name:"locked",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:7},{name:"lockedTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:59},{name:"opacity",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:8},{name:"opacityTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:60},{name:"blendMode",line:0,column:0,type:"BlendMode",isArray:!1,isDeprecated:!1,value:9},{name:"blendModeTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:61},{name:"size",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:11},{name:"sizeTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:63},{name:"transform",line:0,column:0,type:"Matrix",isArray:!1,isDeprecated:!1,value:12},{name:"transformTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:64},{name:"dashPattern",line:0,column:0,type:"float",isArray:!0,isDeprecated:!1,value:13},{name:"dashPatternTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:65},{name:"mask",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:16},{name:"maskTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:68},{name:"maskIsOutline",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:18},{name:"maskIsOutlineTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:70},{name:"maskType",line:0,column:0,type:"MaskType",isArray:!1,isDeprecated:!1,value:317},{name:"backgroundOpacity",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:19},{name:"backgroundOpacityTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:71},{name:"cornerRadius",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:20},{name:"cornerRadiusTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:72},{name:"strokeWeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:26},{name:"strokeWeightTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:78},{name:"strokeAlign",line:0,column:0,type:"StrokeAlign",isArray:!1,isDeprecated:!1,value:29},{name:"strokeAlignTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:81},{name:"strokeCap",line:0,column:0,type:"StrokeCap",isArray:!1,isDeprecated:!1,value:30},{name:"strokeCapTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:82},{name:"strokeJoin",line:0,column:0,type:"StrokeJoin",isArray:!1,isDeprecated:!1,value:31},{name:"strokeJoinTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:83},{name:"fillPaints",line:0,column:0,type:"Paint",isArray:!0,isDeprecated:!1,value:38},{name:"fillPaintsTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:90},{name:"strokePaints",line:0,column:0,type:"Paint",isArray:!0,isDeprecated:!1,value:39},{name:"strokePaintsTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:91},{name:"effects",line:0,column:0,type:"Effect",isArray:!0,isDeprecated:!1,value:43},{name:"effectsTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:95},{name:"backgroundColor",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:50},{name:"backgroundColorTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:102},{name:"fillGeometry",line:0,column:0,type:"Path",isArray:!0,isDeprecated:!1,value:51},{name:"fillGeometryTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:103},{name:"strokeGeometry",line:0,column:0,type:"Path",isArray:!0,isDeprecated:!1,value:52},{name:"strokeGeometryTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:104},{name:"textDecorationFillPaints",line:0,column:0,type:"Paint",isArray:!0,isDeprecated:!1,value:411},{name:"textDecorationSkipInk",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:412},{name:"textUnderlineOffset",line:0,column:0,type:"Number",isArray:!1,isDeprecated:!1,value:413},{name:"textDecorationThickness",line:0,column:0,type:"Number",isArray:!1,isDeprecated:!1,value:415},{name:"textDecorationStyle",line:0,column:0,type:"TextDecorationStyle",isArray:!1,isDeprecated:!1,value:416},{name:"rectangleTopLeftCornerRadius",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:145},{name:"rectangleTopRightCornerRadius",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:146},{name:"rectangleBottomLeftCornerRadius",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:147},{name:"rectangleBottomRightCornerRadius",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:148},{name:"rectangleCornerRadiiIndependent",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:149},{name:"rectangleCornerToolIndependent",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:150},{name:"proportionsConstrained",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:151},{name:"targetAspectRatio",line:0,column:0,type:"OptionalVector",isArray:!1,isDeprecated:!1,value:423},{name:"useAbsoluteBounds",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:258},{name:"borderTopHidden",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:287},{name:"borderBottomHidden",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:288},{name:"borderLeftHidden",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:289},{name:"borderRightHidden",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:290},{name:"bordersTakeSpace",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:294},{name:"borderTopWeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:295},{name:"borderBottomWeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:296},{name:"borderLeftWeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:297},{name:"borderRightWeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:298},{name:"borderStrokeWeightsIndependent",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:299},{name:"horizontalConstraint",line:0,column:0,type:"ConstraintType",isArray:!1,isDeprecated:!1,value:28},{name:"horizontalConstraintTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:80},{name:"stackMode",line:0,column:0,type:"StackMode",isArray:!1,isDeprecated:!1,value:105},{name:"stackModeTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:106},{name:"stackSpacing",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:107},{name:"stackSpacingTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:108},{name:"stackPadding",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:109},{name:"stackPaddingTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:110},{name:"stackCounterAlign",line:0,column:0,type:"StackCounterAlign",isArray:!1,isDeprecated:!1,value:120},{name:"stackJustify",line:0,column:0,type:"StackJustify",isArray:!1,isDeprecated:!1,value:121},{name:"stackAlign",line:0,column:0,type:"StackAlign",isArray:!1,isDeprecated:!1,value:208},{name:"stackHorizontalPadding",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:209},{name:"stackVerticalPadding",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:210},{name:"stackWidth",line:0,column:0,type:"StackSize",isArray:!1,isDeprecated:!1,value:211},{name:"stackHeight",line:0,column:0,type:"StackSize",isArray:!1,isDeprecated:!1,value:212},{name:"stackPrimarySizing",line:0,column:0,type:"StackSize",isArray:!1,isDeprecated:!1,value:229},{name:"stackPrimaryAlignItems",line:0,column:0,type:"StackJustify",isArray:!1,isDeprecated:!1,value:230},{name:"stackCounterAlignItems",line:0,column:0,type:"StackAlign",isArray:!1,isDeprecated:!1,value:231},{name:"stackChildPrimaryGrow",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:232},{name:"stackPaddingRight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:233},{name:"stackPaddingBottom",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:234},{name:"stackChildAlignSelf",line:0,column:0,type:"StackCounterAlign",isArray:!1,isDeprecated:!1,value:236},{name:"stackPositioning",line:0,column:0,type:"StackPositioning",isArray:!1,isDeprecated:!1,value:269},{name:"stackReverseZIndex",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:271},{name:"stackWrap",line:0,column:0,type:"StackWrap",isArray:!1,isDeprecated:!1,value:323},{name:"stackCounterSpacing",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:324},{name:"minSize",line:0,column:0,type:"OptionalVector",isArray:!1,isDeprecated:!1,value:325},{name:"maxSize",line:0,column:0,type:"OptionalVector",isArray:!1,isDeprecated:!1,value:326},{name:"stackCounterAlignContent",line:0,column:0,type:"StackCounterAlignContent",isArray:!1,isDeprecated:!1,value:343},{name:"sortedMovingChildIndices",line:0,column:0,type:"int",isArray:!0,isDeprecated:!1,value:406},{name:"isSnakeGameBoard",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:344},{name:"transitionNodeID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:139},{name:"prototypeStartNodeID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:140},{name:"prototypeBackgroundColor",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:141},{name:"transitionInfo",line:0,column:0,type:"TransitionInfo",isArray:!1,isDeprecated:!1,value:153},{name:"transitionType",line:0,column:0,type:"TransitionType",isArray:!1,isDeprecated:!1,value:154},{name:"transitionDuration",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:155},{name:"easingType",line:0,column:0,type:"EasingType",isArray:!1,isDeprecated:!1,value:156},{name:"transitionPreserveScroll",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:181},{name:"connectionType",line:0,column:0,type:"ConnectionType",isArray:!1,isDeprecated:!1,value:182},{name:"connectionURL",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:183},{name:"prototypeDevice",line:0,column:0,type:"PrototypeDevice",isArray:!1,isDeprecated:!1,value:184},{name:"interactionType",line:0,column:0,type:"InteractionType",isArray:!1,isDeprecated:!1,value:187},{name:"transitionTimeout",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:188},{name:"interactionMaintained",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:189},{name:"interactionDuration",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:190},{name:"destinationIsOverlay",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:192},{name:"transitionShouldSmartAnimate",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:207},{name:"prototypeInteractions",line:0,column:0,type:"PrototypeInteraction",isArray:!0,isDeprecated:!1,value:226},{name:"prototypeStartingPoint",line:0,column:0,type:"PrototypeStartingPoint",isArray:!1,isDeprecated:!1,value:249},{name:"pluginData",line:0,column:0,type:"PluginData",isArray:!0,isDeprecated:!1,value:204},{name:"pluginRelaunchData",line:0,column:0,type:"PluginRelaunchData",isArray:!0,isDeprecated:!1,value:219},{name:"connectorStart",line:0,column:0,type:"ConnectorEndpoint",isArray:!1,isDeprecated:!1,value:242},{name:"connectorEnd",line:0,column:0,type:"ConnectorEndpoint",isArray:!1,isDeprecated:!1,value:243},{name:"connectorLineStyle",line:0,column:0,type:"ConnectorLineStyle",isArray:!1,isDeprecated:!1,value:244},{name:"connectorStartCap",line:0,column:0,type:"StrokeCap",isArray:!1,isDeprecated:!1,value:245},{name:"connectorEndCap",line:0,column:0,type:"StrokeCap",isArray:!1,isDeprecated:!1,value:246},{name:"connectorControlPoints",line:0,column:0,type:"ConnectorControlPoint",isArray:!0,isDeprecated:!1,value:253},{name:"connectorTextMidpoint",line:0,column:0,type:"ConnectorTextMidpoint",isArray:!1,isDeprecated:!1,value:255},{name:"connectorType",line:0,column:0,type:"ConnectorType",isArray:!1,isDeprecated:!1,value:373},{name:"annotations",line:0,column:0,type:"Annotation",isArray:!0,isDeprecated:!1,value:369},{name:"measurements",line:0,column:0,type:"AnnotationMeasurement",isArray:!0,isDeprecated:!1,value:384},{name:"shapeWithTextType",line:0,column:0,type:"ShapeWithTextType",isArray:!1,isDeprecated:!1,value:241},{name:"shapeUserHeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:247},{name:"derivedImmutableFrameData",line:0,column:0,type:"DerivedImmutableFrameData",isArray:!1,isDeprecated:!1,value:254},{name:"derivedImmutableFrameDataVersion",line:0,column:0,type:"MultiplayerFieldVersion",isArray:!1,isDeprecated:!1,value:338},{name:"nodeGenerationData",line:0,column:0,type:"NodeGenerationData",isArray:!1,isDeprecated:!1,value:240},{name:"codeBlockLanguage",line:0,column:0,type:"CodeBlockLanguage",isArray:!1,isDeprecated:!1,value:259},{name:"linkPreviewData",line:0,column:0,type:"LinkPreviewData",isArray:!1,isDeprecated:!1,value:278},{name:"shapeTruncates",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:282},{name:"sectionContentsHidden",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:283},{name:"videoPlayback",line:0,column:0,type:"VideoPlayback",isArray:!1,isDeprecated:!1,value:300},{name:"stampData",line:0,column:0,type:"StampData",isArray:!1,isDeprecated:!1,value:301},{name:"sectionPresetInfo",line:0,column:0,type:"SectionPresetInfo",isArray:!1,isDeprecated:!1,value:370},{name:"platformShapeDefinition",line:0,column:0,type:"PlatformShapeDefinition",isArray:!1,isDeprecated:!1,value:409},{name:"widgetSyncedState",line:0,column:0,type:"MultiplayerMap",isArray:!1,isDeprecated:!1,value:273},{name:"widgetSyncCursor",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:274},{name:"widgetDerivedSubtreeCursor",line:0,column:0,type:"WidgetDerivedSubtreeCursor",isArray:!1,isDeprecated:!1,value:275},{name:"widgetCachedAncestor",line:0,column:0,type:"WidgetPointer",isArray:!1,isDeprecated:!1,value:276},{name:"widgetInputBehavior",line:0,column:0,type:"WidgetInputBehavior",isArray:!1,isDeprecated:!1,value:285},{name:"widgetTooltip",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:286},{name:"widgetHoverStyle",line:0,column:0,type:"WidgetHoverStyle",isArray:!1,isDeprecated:!1,value:291},{name:"isWidgetStickable",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:293},{name:"shouldHideCursorsOnWidgetHover",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:360},{name:"widgetMetadata",line:0,column:0,type:"WidgetMetadata",isArray:!1,isDeprecated:!1,value:262},{name:"widgetEvents",line:0,column:0,type:"WidgetEvent",isArray:!0,isDeprecated:!1,value:263},{name:"widgetPropertyMenuItems",line:0,column:0,type:"WidgetPropertyMenuItem",isArray:!0,isDeprecated:!1,value:265},{name:"widgetInputTextNodeType",line:0,column:0,type:"WidgetInputTextNodeType",isArray:!1,isDeprecated:!1,value:401},{name:"tableRowPositions",line:0,column:0,type:"TableRowColumnPositionMap",isArray:!1,isDeprecated:!1,value:308},{name:"tableColumnPositions",line:0,column:0,type:"TableRowColumnPositionMap",isArray:!1,isDeprecated:!1,value:309},{name:"tableRowHeights",line:0,column:0,type:"TableRowColumnSizeMap",isArray:!1,isDeprecated:!1,value:310},{name:"tableColumnWidths",line:0,column:0,type:"TableRowColumnSizeMap",isArray:!1,isDeprecated:!1,value:311},{name:"interactiveSlideConfigData",line:0,column:0,type:"MultiplayerMap",isArray:!1,isDeprecated:!1,value:371},{name:"interactiveSlideParticipantData",line:0,column:0,type:"MultiplayerMap",isArray:!1,isDeprecated:!1,value:372},{name:"flappType",line:0,column:0,type:"FlappType",isArray:!1,isDeprecated:!1,value:402},{name:"slideSpeakerNotes",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:389},{name:"isSkippedSlide",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:410},{name:"themeID",line:0,column:0,type:"ThemeID",isArray:!1,isDeprecated:!1,value:379},{name:"slideThemeData",line:0,column:0,type:"SlideThemeData",isArray:!1,isDeprecated:!1,value:381},{name:"slideThemeMap",line:0,column:0,type:"SlideThemeMap",isArray:!1,isDeprecated:!1,value:390},{name:"slideTemplateFileKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:393},{name:"diagramParentId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:363},{name:"layoutRoot",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:362},{name:"layoutPosition",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:364},{name:"diagramLayoutRuleType",line:0,column:0,type:"DiagramLayoutRuleType",isArray:!1,isDeprecated:!1,value:366},{name:"diagramParentIndex",line:0,column:0,type:"DiagramParentIndex",isArray:!1,isDeprecated:!1,value:367},{name:"diagramLayoutPaused",line:0,column:0,type:"DiagramLayoutPaused",isArray:!1,isDeprecated:!1,value:368},{name:"isPageDivider",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:380},{name:"internalEnumForTest",line:0,column:0,type:"InternalEnumForTest",isArray:!1,isDeprecated:!1,value:251},{name:"internalDataForTest",line:0,column:0,type:"InternalDataForTest",isArray:!1,isDeprecated:!1,value:257},{name:"count",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:10},{name:"countTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:62},{name:"autoRename",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:14},{name:"autoRenameTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:66},{name:"backgroundEnabled",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:15},{name:"backgroundEnabledTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:67},{name:"exportContentsOnly",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:17},{name:"exportContentsOnlyTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:69},{name:"starInnerScale",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:24},{name:"starInnerScaleTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:76},{name:"miterLimit",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:25},{name:"miterLimitTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:77},{name:"textTracking",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:27},{name:"textTrackingTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:79},{name:"booleanOperation",line:0,column:0,type:"BooleanOperation",isArray:!1,isDeprecated:!1,value:36},{name:"booleanOperationTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:88},{name:"verticalConstraint",line:0,column:0,type:"ConstraintType",isArray:!1,isDeprecated:!1,value:37},{name:"verticalConstraintTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:89},{name:"handleMirroring",line:0,column:0,type:"VectorMirror",isArray:!1,isDeprecated:!1,value:44},{name:"handleMirroringTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:96},{name:"exportSettings",line:0,column:0,type:"ExportSettings",isArray:!0,isDeprecated:!1,value:45},{name:"exportSettingsTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:97},{name:"textAutoResize",line:0,column:0,type:"TextAutoResize",isArray:!1,isDeprecated:!1,value:46},{name:"textAutoResizeTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:98},{name:"layoutGrids",line:0,column:0,type:"LayoutGrid",isArray:!0,isDeprecated:!1,value:47},{name:"layoutGridsTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:99},{name:"vectorData",line:0,column:0,type:"VectorData",isArray:!1,isDeprecated:!1,value:48},{name:"vectorDataTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:100},{name:"frameMaskDisabled",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:115},{name:"frameMaskDisabledTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:116},{name:"resizeToFit",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:117},{name:"resizeToFitTag",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:118},{name:"exportBackgroundDisabled",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:119},{name:"guides",line:0,column:0,type:"Guide",isArray:!0,isDeprecated:!1,value:138},{name:"internalOnly",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:142},{name:"scrollDirection",line:0,column:0,type:"ScrollDirection",isArray:!1,isDeprecated:!1,value:159},{name:"cornerSmoothing",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:160},{name:"scrollOffset",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:166},{name:"exportTextAsSVGText",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:175},{name:"scrollContractedState",line:0,column:0,type:"ScrollContractedState",isArray:!1,isDeprecated:!1,value:178},{name:"contractedSize",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:179},{name:"fixedChildrenDivider",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:180},{name:"scrollBehavior",line:0,column:0,type:"ScrollBehavior",isArray:!1,isDeprecated:!1,value:186},{name:"arcData",line:0,column:0,type:"ArcData",isArray:!1,isDeprecated:!1,value:195},{name:"derivedSymbolDataLayoutVersion",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:196},{name:"navigationType",line:0,column:0,type:"NavigationType",isArray:!1,isDeprecated:!1,value:197},{name:"overlayPositionType",line:0,column:0,type:"OverlayPositionType",isArray:!1,isDeprecated:!1,value:198},{name:"overlayRelativePosition",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:199},{name:"overlayBackgroundInteraction",line:0,column:0,type:"OverlayBackgroundInteraction",isArray:!1,isDeprecated:!1,value:200},{name:"overlayBackgroundAppearance",line:0,column:0,type:"OverlayBackgroundAppearance",isArray:!1,isDeprecated:!1,value:201},{name:"overrideKey",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:213},{name:"containerSupportsFillStrokeAndCorners",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:220},{name:"stackCounterSizing",line:0,column:0,type:"StackSize",isArray:!1,isDeprecated:!1,value:221},{name:"containersSupportFillStrokeAndCorners",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:222},{name:"keyTrigger",line:0,column:0,type:"KeyTrigger",isArray:!1,isDeprecated:!1,value:224},{name:"voiceEventPhrase",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:227},{name:"ancestorPathBeforeDeletion",line:0,column:0,type:"GUID",isArray:!0,isDeprecated:!1,value:235},{name:"symbolLinks",line:0,column:0,type:"SymbolLink",isArray:!0,isDeprecated:!1,value:237},{name:"textListData",line:0,column:0,type:"TextListData",isArray:!1,isDeprecated:!1,value:239},{name:"detachOpticalSizeFromFontSize",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:261},{name:"listSpacing",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:264},{name:"embedData",line:0,column:0,type:"EmbedData",isArray:!1,isDeprecated:!1,value:270},{name:"richMediaData",line:0,column:0,type:"RichMediaData",isArray:!1,isDeprecated:!1,value:272},{name:"renderedSyncedState",line:0,column:0,type:"MultiplayerMap",isArray:!1,isDeprecated:!1,value:277},{name:"simplifyInstancePanels",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:284},{name:"accessibleHTMLTag",line:0,column:0,type:"HTMLTag",isArray:!1,isDeprecated:!1,value:302},{name:"ariaRole",line:0,column:0,type:"ARIARole",isArray:!1,isDeprecated:!1,value:303},{name:"accessibleLabel",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:304},{name:"variableData",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:306},{name:"variableConsumptionMap",line:0,column:0,type:"VariableDataMap",isArray:!1,isDeprecated:!1,value:307},{name:"variableModeBySetMap",line:0,column:0,type:"VariableModeBySetMap",isArray:!1,isDeprecated:!1,value:316},{name:"variableSetModes",line:0,column:0,type:"VariableSetMode",isArray:!0,isDeprecated:!1,value:312},{name:"variableSetID",line:0,column:0,type:"VariableSetID",isArray:!1,isDeprecated:!1,value:313},{name:"variableResolvedType",line:0,column:0,type:"VariableResolvedDataType",isArray:!1,isDeprecated:!1,value:314},{name:"variableDataValues",line:0,column:0,type:"VariableDataValues",isArray:!1,isDeprecated:!1,value:315},{name:"variableTokenName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:350},{name:"variableScopes",line:0,column:0,type:"VariableScope",isArray:!0,isDeprecated:!1,value:353},{name:"codeSyntax",line:0,column:0,type:"CodeSyntaxMap",isArray:!1,isDeprecated:!1,value:358},{name:"pasteSource",line:0,column:0,type:"PasteSource",isArray:!1,isDeprecated:!1,value:388},{name:"pageType",line:0,column:0,type:"EditorType",isArray:!1,isDeprecated:!1,value:397},{name:"backingVariableSetId",line:0,column:0,type:"VariableSetID",isArray:!1,isDeprecated:!1,value:377},{name:"backingVariableId",line:0,column:0,type:"VariableIdOrVariableOverrideId",isArray:!1,isDeprecated:!1,value:378},{name:"isCollectionExtendable",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:385},{name:"rootVariableKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:386},{name:"handoffStatusMap",line:0,column:0,type:"HandoffStatusMap",isArray:!1,isDeprecated:!1,value:361},{name:"agendaPositionMap",line:0,column:0,type:"AgendaPositionMap",isArray:!1,isDeprecated:!1,value:327},{name:"agendaMetadataMap",line:0,column:0,type:"AgendaMetadataMap",isArray:!1,isDeprecated:!1,value:328},{name:"migrationStatus",line:0,column:0,type:"MigrationStatus",isArray:!1,isDeprecated:!1,value:329},{name:"isSoftDeleted",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:330},{name:"editInfo",line:0,column:0,type:"EditInfo",isArray:!1,isDeprecated:!1,value:331},{name:"colorProfile",line:0,column:0,type:"ColorProfile",isArray:!1,isDeprecated:!1,value:341},{name:"detachedSymbolId",line:0,column:0,type:"SymbolId",isArray:!1,isDeprecated:!1,value:342},{name:"childReadingDirection",line:0,column:0,type:"ChildReadingDirection",isArray:!1,isDeprecated:!1,value:346},{name:"readingIndex",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:347},{name:"documentColorProfile",line:0,column:0,type:"DocumentColorProfile",isArray:!1,isDeprecated:!1,value:349},{name:"developerRelatedLinks",line:0,column:0,type:"DeveloperRelatedLink",isArray:!0,isDeprecated:!1,value:354},{name:"slideActiveThemeLibKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:356},{name:"ariaAttributes",line:0,column:0,type:"ARIAAttributesMap",isArray:!1,isDeprecated:!1,value:357},{name:"editScopeInfo",line:0,column:0,type:"EditScopeInfo",isArray:!1,isDeprecated:!1,value:365},{name:"semanticWeight",line:0,column:0,type:"SemanticWeight",isArray:!1,isDeprecated:!1,value:374},{name:"semanticItalic",line:0,column:0,type:"SemanticItalic",isArray:!1,isDeprecated:!1,value:375},{name:"isResponsiveSet",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:387},{name:"defaultResponsiveSetId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:398},{name:"responsiveSetSettings",line:0,column:0,type:"ResponsiveSetSettings",isArray:!1,isDeprecated:!1,value:400},{name:"areSlidesManuallyIndented",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:403},{name:"behaviors",line:0,column:0,type:"NodeBehaviors",isArray:!1,isDeprecated:!1,value:404},{name:"sourceCode",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:414},{name:"cmsSelector",line:0,column:0,type:"CMSSelector",isArray:!1,isDeprecated:!1,value:419},{name:"cmsConsumptionMap",line:0,column:0,type:"CMSConsumptionMap",isArray:!1,isDeprecated:!1,value:420},{name:"aiEditedNodeChangeFieldNumbers",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:405},{name:"aiEditScopeLabel",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:408},{name:"firstDraftData",line:0,column:0,type:"FirstDraftData",isArray:!1,isDeprecated:!1,value:407},{name:"firstDraftKitElementData",line:0,column:0,type:"FirstDraftKitElementData",isArray:!1,isDeprecated:!1,value:418},{name:"cooperRevertData",line:0,column:0,type:"CooperRevertData",isArray:!1,isDeprecated:!1,value:421},{name:"hubFileAttribution",line:0,column:0,type:"HubFileAttribution",isArray:!1,isDeprecated:!1,value:422}]},{name:"ResponsiveSetSettings",line:0,column:0,kind:"MESSAGE",fields:[{name:"title",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"description",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"scalingMode",line:0,column:0,type:"ResponsiveScalingMode",isArray:!1,isDeprecated:!1,value:3},{name:"scalingMinFontSize",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4},{name:"scalingMaxFontSize",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:5},{name:"scalingMinLayoutWidth",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:6},{name:"scalingMaxLayoutWidth",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:7},{name:"lang",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:8},{name:"faviconHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:9},{name:"socialImageHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:10},{name:"googleAnalyticsID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:11},{name:"blockSearchIndexing",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:12},{name:"customCodeHeadStart",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:13},{name:"customCodeHeadEnd",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:14},{name:"customCodeBodyStart",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:15},{name:"customCodeBodyEnd",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:16},{name:"faviconID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:17},{name:"socialImageID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:18}]},{name:"ResponsiveScalingMode",line:0,column:0,kind:"ENUM",fields:[{name:"REFLOW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SCALE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"CMSSelector",line:0,column:0,kind:"MESSAGE",fields:[{name:"cmsCollectionId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"filterCriteria",line:0,column:0,type:"CMSFilterCritera",isArray:!1,isDeprecated:!1,value:2},{name:"sorts",line:0,column:0,type:"CMSSelectorSort",isArray:!0,isDeprecated:!1,value:3},{name:"limit",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:4}]},{name:"CMSFilterCritera",line:0,column:0,kind:"MESSAGE",fields:[{name:"matchType",line:0,column:0,type:"CMSFilterCriteriaMatchType",isArray:!1,isDeprecated:!1,value:1},{name:"filters",line:0,column:0,type:"CMSSelectorFilter",isArray:!0,isDeprecated:!1,value:2}]},{name:"CMSFilterCriteriaMatchType",line:0,column:0,kind:"ENUM",fields:[{name:"MATCH_ALL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"MATCH_ANY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"CMSSelectorFilter",line:0,column:0,kind:"MESSAGE",fields:[{name:"cmsFieldId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"op",line:0,column:0,type:"CMSSelectorFilterOperator",isArray:!1,isDeprecated:!1,value:2},{name:"comparisonValue",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"CMSSelectorFilterOperator",line:0,column:0,kind:"ENUM",fields:[{name:"EQUALS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0}]},{name:"CMSSelectorSort",line:0,column:0,kind:"MESSAGE",fields:[{name:"cmsFieldId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"orderBy",line:0,column:0,type:"CMSFieldOrderBy",isArray:!1,isDeprecated:!1,value:2}]},{name:"CMSFieldOrderBy",line:0,column:0,kind:"ENUM",fields:[{name:"ASCENDING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"DESCENDING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"CMSConsumptionMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"CMSConsumptionMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"CMSConsumptionMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"consumptionField",line:0,column:0,type:"CMSConsumptionField",isArray:!1,isDeprecated:!1,value:1},{name:"cmsFieldId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"CMSConsumptionField",line:0,column:0,kind:"ENUM",fields:[{name:"MISSING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"TEXT_DATA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"HubFileAttribution",line:0,column:0,kind:"MESSAGE",fields:[{name:"hubFileId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"hubFileName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"CooperRevertData",line:0,column:0,kind:"MESSAGE",fields:[{name:"originalValues",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:1}]},{name:"VideoPlayback",line:0,column:0,kind:"MESSAGE",fields:[{name:"autoplay",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:1},{name:"mediaLoop",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:2},{name:"muted",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:3}]},{name:"MediaAction",line:0,column:0,kind:"ENUM",fields:[{name:"PLAY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"PAUSE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"TOGGLE_PLAY_PAUSE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"MUTE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"UNMUTE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"TOGGLE_MUTE_UNMUTE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"SKIP_FORWARD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"SKIP_BACKWARD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"SKIP_TO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8}]},{name:"WidgetHoverStyle",line:0,column:0,kind:"MESSAGE",fields:[{name:"fillPaints",line:0,column:0,type:"Paint",isArray:!0,isDeprecated:!1,value:1},{name:"strokePaints",line:0,column:0,type:"Paint",isArray:!0,isDeprecated:!1,value:2},{name:"opacity",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"areFillPaintsSet",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4},{name:"areStrokePaintsSet",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:5},{name:"isOpacitySet",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:6}]},{name:"WidgetDerivedSubtreeCursor",line:0,column:0,kind:"MESSAGE",fields:[{name:"sessionID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"counter",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2}]},{name:"MultiplayerMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"MultiplayerMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"MultiplayerMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"key",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"value",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"VariableDataMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"VariableDataMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"VariableDataMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeField",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"variableData",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:2},{name:"variableField",line:0,column:0,type:"VariableField",isArray:!1,isDeprecated:!1,value:3}]},{name:"VariableField",line:0,column:0,kind:"ENUM",fields:[{name:"MISSING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CORNER_RADIUS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"PARAGRAPH_SPACING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"PARAGRAPH_INDENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"STROKE_WEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"STACK_SPACING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"STACK_PADDING_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"STACK_PADDING_TOP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"STACK_PADDING_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"STACK_PADDING_BOTTOM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"VISIBLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"TEXT_DATA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"WIDTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"RECTANGLE_TOP_LEFT_CORNER_RADIUS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"RECTANGLE_TOP_RIGHT_CORNER_RADIUS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"RECTANGLE_BOTTOM_LEFT_CORNER_RADIUS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"RECTANGLE_BOTTOM_RIGHT_CORNER_RADIUS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"BORDER_TOP_WEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"BORDER_BOTTOM_WEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"BORDER_LEFT_WEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"BORDER_RIGHT_WEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21},{name:"VARIANT_PROPERTIES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:22},{name:"STACK_COUNTER_SPACING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:23},{name:"MIN_WIDTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:24},{name:"MAX_WIDTH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:25},{name:"MIN_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:26},{name:"MAX_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:27},{name:"FONT_FAMILY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:28},{name:"FONT_STYLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:29},{name:"FONT_VARIATIONS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:30},{name:"OPACITY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:31},{name:"FONT_SIZE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:32},{name:"LETTER_SPACING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:34},{name:"LINE_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:36}]},{name:"VariableModeBySetMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"VariableModeBySetMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"VariableModeBySetMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"variableSetID",line:0,column:0,type:"VariableSetID",isArray:!1,isDeprecated:!1,value:1},{name:"variableModeID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2}]},{name:"CodeSyntaxMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"CodeSyntaxMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"CodeSyntaxMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"platform",line:0,column:0,type:"CodeSyntaxPlatform",isArray:!1,isDeprecated:!1,value:1},{name:"value",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"TableRowColumnPositionMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"TableRowColumnPositionMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"TableRowColumnPositionMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"position",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"TableRowColumnSizeMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"TableRowColumnSizeMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"TableRowColumnSizeMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"size",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2}]},{name:"AgendaPositionMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"AgendaPositionMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"AgendaPositionMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"position",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"AgendaItemType",line:0,column:0,kind:"ENUM",fields:[{name:"NODE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"BLOCK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"AgendaMetadataMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"AgendaMetadataMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"AgendaMetadataMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"data",line:0,column:0,type:"AgendaMetadata",isArray:!1,isDeprecated:!1,value:2}]},{name:"AgendaMetadata",line:0,column:0,kind:"MESSAGE",fields:[{name:"name",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"type",line:0,column:0,type:"AgendaItemType",isArray:!1,isDeprecated:!1,value:2},{name:"targetNodeID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3},{name:"timerInfo",line:0,column:0,type:"AgendaTimerInfo",isArray:!1,isDeprecated:!1,value:4},{name:"voteInfo",line:0,column:0,type:"AgendaVoteInfo",isArray:!1,isDeprecated:!1,value:5},{name:"musicInfo",line:0,column:0,type:"AgendaMusicInfo",isArray:!1,isDeprecated:!1,value:6}]},{name:"AgendaTimerInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"timerLength",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1}]},{name:"AgendaVoteInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"voteCount",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1}]},{name:"AgendaMusicInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"songID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"startTimeMs",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2}]},{name:"DiagramLayoutRuleType",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"TREE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"DiagramParentIndex",line:0,column:0,kind:"STRUCT",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"position",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"DiagramLayoutPaused",line:0,column:0,kind:"ENUM",fields:[{name:"NO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"YES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"ComponentPropRef",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeField",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"defID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"zombieFallbackName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"componentPropNodeField",line:0,column:0,type:"ComponentPropNodeField",isArray:!1,isDeprecated:!1,value:4},{name:"isDeleted",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:5}]},{name:"ComponentPropNodeField",line:0,column:0,kind:"ENUM",fields:[{name:"VISIBLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"TEXT_DATA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"OVERRIDDEN_SYMBOL_ID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"INHERIT_FILL_STYLE_ID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"ComponentPropAssignment",line:0,column:0,kind:"MESSAGE",fields:[{name:"defID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"value",line:0,column:0,type:"ComponentPropValue",isArray:!1,isDeprecated:!1,value:2},{name:"varValue",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:3},{name:"legacyDerivedTextData",line:0,column:0,type:"DerivedTextData",isArray:!1,isDeprecated:!1,value:4}]},{name:"ComponentPropDef",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"name",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"initialValue",line:0,column:0,type:"ComponentPropValue",isArray:!1,isDeprecated:!1,value:3},{name:"sortPosition",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:4},{name:"parentPropDefId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:5},{name:"type",line:0,column:0,type:"ComponentPropType",isArray:!1,isDeprecated:!1,value:6},{name:"isDeleted",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:7},{name:"preferredValues",line:0,column:0,type:"ComponentPropPreferredValues",isArray:!1,isDeprecated:!1,value:8},{name:"varValue",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:9}]},{name:"ComponentPropValue",line:0,column:0,kind:"MESSAGE",fields:[{name:"boolValue",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:1},{name:"textValue",line:0,column:0,type:"TextData",isArray:!1,isDeprecated:!1,value:2},{name:"guidValue",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3},{name:"floatValue",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4}]},{name:"ComponentPropType",line:0,column:0,kind:"ENUM",fields:[{name:"BOOL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"TEXT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"COLOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"INSTANCE_SWAP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"NUMBER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5}]},{name:"ComponentPropPreferredValues",line:0,column:0,kind:"MESSAGE",fields:[{name:"stringValues",line:0,column:0,type:"string",isArray:!0,isDeprecated:!1,value:1},{name:"instanceSwapValues",line:0,column:0,type:"InstanceSwapPreferredValue",isArray:!0,isDeprecated:!1,value:2}]},{name:"InstanceSwapPreferredValue",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"InstanceSwapPreferredValueType",isArray:!1,isDeprecated:!1,value:1},{name:"key",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"InstanceSwapPreferredValueType",line:0,column:0,kind:"ENUM",fields:[{name:"COMPONENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"STATE_GROUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"WidgetEvent",line:0,column:0,kind:"ENUM",fields:[{name:"MOUSE_DOWN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CLICK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"TEXT_EDIT_END",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"ATTACHED_STICKABLES_CHANGED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"STUCK_STATUS_CHANGED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"WidgetInputBehavior",line:0,column:0,kind:"ENUM",fields:[{name:"WRAP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"TRUNCATE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"MULTILINE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"WidgetMetadata",line:0,column:0,kind:"MESSAGE",fields:[{name:"pluginID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"pluginVersionID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"widgetName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"WidgetPropertyMenuItemType",line:0,column:0,kind:"ENUM",fields:[{name:"ACTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SEPARATOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"COLOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"DROPDOWN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"COLOR_SELECTOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"TOGGLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"LINK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6}]},{name:"WidgetPropertyMenuSelectorOption",line:0,column:0,kind:"MESSAGE",fields:[{name:"option",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"tooltip",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"WidgetInputTextNodeType",line:0,column:0,kind:"ENUM",fields:[{name:"WIDGET_CONTROLLED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"RICH_TEXT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"WidgetPropertyMenuItem",line:0,column:0,kind:"MESSAGE",fields:[{name:"propertyName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"tooltip",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"itemType",line:0,column:0,type:"WidgetPropertyMenuItemType",isArray:!1,isDeprecated:!1,value:3},{name:"icon",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:4},{name:"options",line:0,column:0,type:"WidgetPropertyMenuSelectorOption",isArray:!0,isDeprecated:!1,value:5},{name:"selectedOption",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:6},{name:"isToggled",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:7},{name:"href",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:8},{name:"allowCustomColor",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:9}]},{name:"CodeBlockLanguage",line:0,column:0,kind:"ENUM",fields:[{name:"TYPESCRIPT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CPP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"RUBY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"CSS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"JAVASCRIPT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"HTML",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"JSON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"GRAPHQL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"PYTHON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"GO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"SQL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"SWIFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"KOTLIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"RUST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"BASH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"PLAINTEXT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15}]},{name:"InternalEnumForTest",line:0,column:0,kind:"ENUM",fields:[{name:"OLD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"InternalDataForTest",line:0,column:0,kind:"MESSAGE",fields:[{name:"testFieldA",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:1}]},{name:"StateGroupPropertyValueOrder",line:0,column:0,kind:"MESSAGE",fields:[{name:"property",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"values",line:0,column:0,type:"string",isArray:!0,isDeprecated:!1,value:2}]},{name:"TextListData",line:0,column:0,kind:"MESSAGE",fields:[{name:"listID",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:1},{name:"bulletType",line:0,column:0,type:"BulletType",isArray:!1,isDeprecated:!1,value:2},{name:"indentationLevel",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:3},{name:"lineNumber",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:4}]},{name:"BulletType",line:0,column:0,kind:"ENUM",fields:[{name:"ORDERED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"UNORDERED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"INDENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"NO_LIST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"TextLineData",line:0,column:0,kind:"MESSAGE",fields:[{name:"lineType",line:0,column:0,type:"LineType",isArray:!1,isDeprecated:!1,value:1},{name:"styleId",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:10},{name:"indentationLevel",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:2},{name:"sourceDirectionality",line:0,column:0,type:"SourceDirectionality",isArray:!1,isDeprecated:!1,value:9},{name:"directionality",line:0,column:0,type:"Directionality",isArray:!1,isDeprecated:!1,value:3},{name:"directionalityIntent",line:0,column:0,type:"DirectionalityIntent",isArray:!1,isDeprecated:!1,value:4},{name:"downgradeStyleId",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:5},{name:"consistencyStyleId",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:6},{name:"listStartOffset",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:7},{name:"isFirstLineOfList",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:8}]},{name:"DerivedTextLineData",line:0,column:0,kind:"MESSAGE",fields:[{name:"directionality",line:0,column:0,type:"Directionality",isArray:!1,isDeprecated:!1,value:1}]},{name:"LineType",line:0,column:0,kind:"ENUM",fields:[{name:"PLAIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ORDERED_LIST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"UNORDERED_LIST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"BLOCKQUOTE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"HEADER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"SourceDirectionality",line:0,column:0,kind:"ENUM",fields:[{name:"AUTO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"LTR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"RTL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"Directionality",line:0,column:0,kind:"ENUM",fields:[{name:"LTR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"RTL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"DirectionalityIntent",line:0,column:0,kind:"ENUM",fields:[{name:"IMPLICIT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"EXPLICIT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"PrototypeInteraction",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"event",line:0,column:0,type:"PrototypeEvent",isArray:!1,isDeprecated:!1,value:2},{name:"actions",line:0,column:0,type:"PrototypeAction",isArray:!0,isDeprecated:!1,value:3},{name:"isDeleted",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4},{name:"stateManagementVersion",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:5}]},{name:"PrototypeEvent",line:0,column:0,kind:"MESSAGE",fields:[{name:"interactionType",line:0,column:0,type:"InteractionType",isArray:!1,isDeprecated:!1,value:1},{name:"interactionMaintained",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:2},{name:"interactionDuration",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"keyTrigger",line:0,column:0,type:"KeyTrigger",isArray:!1,isDeprecated:!1,value:4},{name:"voiceEventPhrase",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:5},{name:"transitionTimeout",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:6},{name:"mediaHitTime",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:7}]},{name:"PrototypeVariableTarget",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"VariableID",isArray:!1,isDeprecated:!1,value:1},{name:"nodeFieldAlias",line:0,column:0,type:"NodeFieldAlias",isArray:!1,isDeprecated:!1,value:2}]},{name:"ConditionalActions",line:0,column:0,kind:"MESSAGE",fields:[{name:"actions",line:0,column:0,type:"PrototypeAction",isArray:!0,isDeprecated:!1,value:1},{name:"condition",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:2}]},{name:"PrototypeAction",line:0,column:0,kind:"MESSAGE",fields:[{name:"transitionNodeID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"transitionType",line:0,column:0,type:"TransitionType",isArray:!1,isDeprecated:!1,value:2},{name:"transitionDuration",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"easingType",line:0,column:0,type:"EasingType",isArray:!1,isDeprecated:!1,value:4},{name:"transitionTimeout",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:5},{name:"transitionShouldSmartAnimate",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:6},{name:"connectionType",line:0,column:0,type:"ConnectionType",isArray:!1,isDeprecated:!1,value:7},{name:"connectionURL",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:8},{name:"overlayRelativePosition",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:9},{name:"navigationType",line:0,column:0,type:"NavigationType",isArray:!1,isDeprecated:!1,value:10},{name:"transitionPreserveScroll",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:11},{name:"easingFunction",line:0,column:0,type:"float",isArray:!0,isDeprecated:!1,value:12},{name:"extraScrollOffset",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:13},{name:"targetVariableID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:14},{name:"targetVariableValue",line:0,column:0,type:"VariableAnyValue",isArray:!1,isDeprecated:!1,value:15},{name:"mediaAction",line:0,column:0,type:"MediaAction",isArray:!1,isDeprecated:!1,value:16},{name:"transitionResetVideoPosition",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:17},{name:"openUrlInNewTab",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:18},{name:"targetVariable",line:0,column:0,type:"PrototypeVariableTarget",isArray:!1,isDeprecated:!1,value:19},{name:"targetVariableData",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:20},{name:"mediaSkipToTime",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:21},{name:"mediaSkipByAmount",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:22},{name:"conditions",line:0,column:0,type:"VariableData",isArray:!0,isDeprecated:!1,value:23},{name:"conditionalActions",line:0,column:0,type:"ConditionalActions",isArray:!0,isDeprecated:!1,value:24},{name:"transitionResetScrollPosition",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:25},{name:"transitionResetInteractiveComponents",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:26},{name:"targetVariableSetID",line:0,column:0,type:"VariableSetID",isArray:!1,isDeprecated:!1,value:27},{name:"targetVariableModeID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:28},{name:"targetVariableSetKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:29}]},{name:"PrototypeStartingPoint",line:0,column:0,kind:"MESSAGE",fields:[{name:"name",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"description",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"position",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"TriggerDevice",line:0,column:0,kind:"ENUM",fields:[{name:"KEYBOARD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"UNKNOWN_CONTROLLER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"XBOX_ONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"PS4",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SWITCH_PRO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"KeyTrigger",line:0,column:0,kind:"MESSAGE",fields:[{name:"keyCodes",line:0,column:0,type:"int",isArray:!0,isDeprecated:!1,value:1},{name:"triggerDevice",line:0,column:0,type:"TriggerDevice",isArray:!1,isDeprecated:!1,value:2}]},{name:"Hyperlink",line:0,column:0,kind:"MESSAGE",fields:[{name:"url",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2}]},{name:"MentionSource",line:0,column:0,kind:"ENUM",fields:[{name:"DEFAULT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"COPY_DUPLICATE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"Mention",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"mentionedUserId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"mentionedByUserId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"fileKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:4},{name:"source",line:0,column:0,type:"MentionSource",isArray:!1,isDeprecated:!1,value:5},{name:"mentionedUserIdInt",line:0,column:0,type:"uint64",isArray:!1,isDeprecated:!1,value:6},{name:"mentionedByUserIdInt",line:0,column:0,type:"uint64",isArray:!1,isDeprecated:!1,value:7}]},{name:"EmbedData",line:0,column:0,kind:"MESSAGE",fields:[{name:"url",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"srcUrl",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"title",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"thumbnailUrl",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:4},{name:"width",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:5},{name:"height",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:6},{name:"embedType",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:7},{name:"thumbnailImageHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:8},{name:"faviconImageHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:9},{name:"provider",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:10},{name:"originalText",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:11},{name:"description",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:12},{name:"embedVersionId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:13}]},{name:"StampData",line:0,column:0,kind:"MESSAGE",fields:[{name:"userId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"votingSessionId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"stampedByUserId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"LinkPreviewData",line:0,column:0,kind:"MESSAGE",fields:[{name:"url",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"title",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"provider",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"description",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:4},{name:"thumbnailImageHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:5},{name:"faviconImageHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:6},{name:"thumbnailImageWidth",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:7},{name:"thumbnailImageHeight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:8}]},{name:"Viewport",line:0,column:0,kind:"MESSAGE",fields:[{name:"canvasSpaceBounds",line:0,column:0,type:"Rect",isArray:!1,isDeprecated:!1,value:1},{name:"pixelPreview",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:2},{name:"pixelDensity",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"canvasGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:4}]},{name:"Mouse",line:0,column:0,kind:"MESSAGE",fields:[{name:"cursor",line:0,column:0,type:"MouseCursor",isArray:!1,isDeprecated:!1,value:1},{name:"canvasSpaceLocation",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:2},{name:"canvasSpaceSelectionBox",line:0,column:0,type:"Rect",isArray:!1,isDeprecated:!1,value:3},{name:"canvasGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:4},{name:"cursorHiddenReason",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:5}]},{name:"Click",line:0,column:0,kind:"STRUCT",fields:[{name:"id",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"point",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:2}]},{name:"ScrollPosition",line:0,column:0,kind:"STRUCT",fields:[{name:"node",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"scrollOffset",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:2}]},{name:"TriggeredOverlay",line:0,column:0,kind:"STRUCT",fields:[{name:"overlayGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"hotspotGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"swapGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3}]},{name:"TriggeredOverlayData",line:0,column:0,kind:"MESSAGE",fields:[{name:"overlayGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"hotspotGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"swapGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3},{name:"prototypeInteractionGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:4},{name:"hotspotBlueprintId",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:5}]},{name:"TriggeredSetVariableActionData",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeForFindingTopmostScreenId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"targetVariableId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"targetVariableData",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"resolvedVariableModes",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:4}]},{name:"TriggeredSetVariableModeActionData",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeForFindingTopmostScreenId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"targetVariableSetKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"targetVariableModeId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"targetVariableSetId",line:0,column:0,type:"VariableSetID",isArray:!1,isDeprecated:!1,value:4}]},{name:"VideoStateChangeData",line:0,column:0,kind:"MESSAGE",fields:[{name:"targetNodeId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"isPlaying",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:2},{name:"isPlayingSound",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:3},{name:"currentTimes",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:4},{name:"actionTakenTimestamp",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:5}]},{name:"EmbeddedPrototypeData",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"sessionId",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2}]},{name:"PresentedState",line:0,column:0,kind:"MESSAGE",fields:[{name:"baseScreenID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"overlays",line:0,column:0,type:"TriggeredOverlayData",isArray:!0,isDeprecated:!1,value:2}]},{name:"TransitionDirection",line:0,column:0,kind:"ENUM",fields:[{name:"FORWARD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"REVERSE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"TopLevelPlaybackChange",line:0,column:0,kind:"MESSAGE",fields:[{name:"oldState",line:0,column:0,type:"PresentedState",isArray:!1,isDeprecated:!1,value:1},{name:"newState",line:0,column:0,type:"PresentedState",isArray:!1,isDeprecated:!1,value:2},{name:"hotspotBlueprintID",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:3},{name:"interactionID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:4},{name:"isHotspotInNewPresentedState",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:5},{name:"direction",line:0,column:0,type:"TransitionDirection",isArray:!1,isDeprecated:!1,value:6},{name:"instanceStablePath",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:7}]},{name:"InstanceStateChange",line:0,column:0,kind:"MESSAGE",fields:[{name:"stateID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"interactionID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"hotspotStablePath",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:3},{name:"instanceStablePath",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:4},{name:"phase",line:0,column:0,type:"PlaybackChangePhase",isArray:!1,isDeprecated:!1,value:5}]},{name:"TextCursor",line:0,column:0,kind:"MESSAGE",fields:[{name:"selectionBox",line:0,column:0,type:"Rect",isArray:!1,isDeprecated:!1,value:1},{name:"canvasGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"textNodeGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3}]},{name:"TextSelection",line:0,column:0,kind:"MESSAGE",fields:[{name:"selectionBoxes",line:0,column:0,type:"Rect",isArray:!0,isDeprecated:!1,value:1},{name:"canvasGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"textNodeGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3},{name:"textSelectionRange",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:4},{name:"textNodeOrContainingIfGuid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:5},{name:"tableCellRowId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:6},{name:"tableCellColId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:7}]},{name:"PlaybackChangePhase",line:0,column:0,kind:"ENUM",fields:[{name:"INITIATED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ABORTED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"COMMITTED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"PlaybackChangeKeyframe",line:0,column:0,kind:"MESSAGE",fields:[{name:"phase",line:0,column:0,type:"PlaybackChangePhase",isArray:!1,isDeprecated:!1,value:1},{name:"progress",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"timestamp",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3}]},{name:"StateMapping",line:0,column:0,kind:"MESSAGE",fields:[{name:"stablePath",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:1},{name:"lastTopLevelChange",line:0,column:0,type:"TopLevelPlaybackChange",isArray:!1,isDeprecated:!1,value:2},{name:"lastTopLevelChangeStatus",line:0,column:0,type:"PlaybackChangeKeyframe",isArray:!1,isDeprecated:!1,value:3},{name:"timestamp",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4}]},{name:"ScrollMapping",line:0,column:0,kind:"MESSAGE",fields:[{name:"blueprintID",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:1},{name:"overlayIndex",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"scrollOffset",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:3}]},{name:"PlaybackUpdate",line:0,column:0,kind:"MESSAGE",fields:[{name:"lastTopLevelChange",line:0,column:0,type:"TopLevelPlaybackChange",isArray:!1,isDeprecated:!1,value:1},{name:"lastTopLevelChangeStatus",line:0,column:0,type:"PlaybackChangeKeyframe",isArray:!1,isDeprecated:!1,value:2},{name:"scrollMappings",line:0,column:0,type:"ScrollMapping",isArray:!0,isDeprecated:!1,value:3},{name:"timestamp",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4},{name:"pointerLocation",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:5},{name:"isTopLevelFrameChange",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:6},{name:"stateMappings",line:0,column:0,type:"StateMapping",isArray:!0,isDeprecated:!1,value:7}]},{name:"ChatMessage",line:0,column:0,kind:"MESSAGE",fields:[{name:"text",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"previousText",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"VoiceMetadata",line:0,column:0,kind:"MESSAGE",fields:[{name:"connectedCallId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1}]},{name:"AprilFunCursor",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"trailEnabled",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:2}]},{name:"Heartbeat",line:0,column:0,kind:"ENUM",fields:[{name:"FOREGROUND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"BACKGROUND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"UserChange",line:0,column:0,kind:"MESSAGE",fields:[{name:"sessionID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"connected",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:2},{name:"name",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"color",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:4},{name:"imageURL",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:5},{name:"viewport",line:0,column:0,type:"Viewport",isArray:!1,isDeprecated:!1,value:6},{name:"mouse",line:0,column:0,type:"Mouse",isArray:!1,isDeprecated:!1,value:7},{name:"selection",line:0,column:0,type:"GUID",isArray:!0,isDeprecated:!1,value:8},{name:"observing",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:9},{name:"deviceName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:10},{name:"recentClicks",line:0,column:0,type:"Click",isArray:!0,isDeprecated:!1,value:11},{name:"scrollPositions",line:0,column:0,type:"ScrollPosition",isArray:!0,isDeprecated:!1,value:12},{name:"triggeredOverlays",line:0,column:0,type:"TriggeredOverlay",isArray:!0,isDeprecated:!1,value:13},{name:"userID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:14},{name:"lastTriggeredHotspot",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:15},{name:"lastTriggeredPrototypeInteractionID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:16},{name:"triggeredOverlaysData",line:0,column:0,type:"TriggeredOverlayData",isArray:!0,isDeprecated:!1,value:17},{name:"playbackUpdates",line:0,column:0,type:"PlaybackUpdate",isArray:!0,isDeprecated:!1,value:18},{name:"chatMessage",line:0,column:0,type:"ChatMessage",isArray:!1,isDeprecated:!1,value:19},{name:"voiceMetadata",line:0,column:0,type:"VoiceMetadata",isArray:!1,isDeprecated:!1,value:20},{name:"canWrite",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:21},{name:"highFiveStatus",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:22},{name:"instanceStateChanges",line:0,column:0,type:"InstanceStateChange",isArray:!0,isDeprecated:!1,value:23},{name:"textCursor",line:0,column:0,type:"TextCursor",isArray:!1,isDeprecated:!1,value:24},{name:"textSelection",line:0,column:0,type:"TextSelection",isArray:!1,isDeprecated:!1,value:25},{name:"connectedAtTimeS",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:26},{name:"focusOnTextCursor",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:27},{name:"heartbeat",line:0,column:0,type:"Heartbeat",isArray:!1,isDeprecated:!1,value:28},{name:"triggeredSetVariableActionData",line:0,column:0,type:"TriggeredSetVariableActionData",isArray:!0,isDeprecated:!1,value:29},{name:"videoStateChangeData",line:0,column:0,type:"VideoStateChangeData",isArray:!0,isDeprecated:!1,value:30},{name:"clientID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:31},{name:"focusedSlideId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:32},{name:"triggeredSetVariableModeActionData",line:0,column:0,type:"TriggeredSetVariableModeActionData",isArray:!0,isDeprecated:!1,value:33},{name:"aprilFunCursor",line:0,column:0,type:"AprilFunCursor",isArray:!1,isDeprecated:!1,value:34},{name:"embeddedPrototypeData",line:0,column:0,type:"EmbeddedPrototypeData",isArray:!0,isDeprecated:!1,value:35},{name:"activeSlidesEmbeddablePrototype",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:36}]},{name:"InteractiveSlideElementChange",line:0,column:0,kind:"MESSAGE",fields:[{name:"userID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"anonymousUserID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"nodeID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3},{name:"responseData",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:4}]},{name:"NodeStatusChange",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeIds",line:0,column:0,type:"GUID",isArray:!0,isDeprecated:!1,value:1},{name:"statusInfo",line:0,column:0,type:"SectionStatusInfo",isArray:!1,isDeprecated:!1,value:2}]},{name:"SceneGraphQueryBehavior",line:0,column:0,kind:"ENUM",fields:[{name:"DEFAULT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CONTAINING_PAGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"PLUGIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"SceneGraphQuery",line:0,column:0,kind:"MESSAGE",fields:[{name:"startingNode",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"depth",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"behavior",line:0,column:0,type:"SceneGraphQueryBehavior",isArray:!1,isDeprecated:!1,value:3}]},{name:"NodeChangesMetadata",line:0,column:0,kind:"MESSAGE",fields:[{name:"blobsFieldOffset",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1}]},{name:"CursorReaction",line:0,column:0,kind:"MESSAGE",fields:[{name:"imageUrl",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1}]},{name:"TimerInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"isPaused",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:1},{name:"timeRemainingMs",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"totalTimeMs",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3},{name:"timerID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:4},{name:"setBy",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:5},{name:"songID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:6},{name:"lastReceivedSongTimestampMs",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:7},{name:"songUUID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:8}]},{name:"MusicInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"isPaused",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:1},{name:"messageID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"songID",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"lastReceivedSongTimestampMs",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:4},{name:"isStopped",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:5}]},{name:"PresenterNomination",line:0,column:0,kind:"MESSAGE",fields:[{name:"sessionID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"isCancelled",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:2}]},{name:"PresenterInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"sessionID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"nomination",line:0,column:0,type:"PresenterNomination",isArray:!1,isDeprecated:!1,value:2}]},{name:"ClientBroadcast",line:0,column:0,kind:"MESSAGE",fields:[{name:"sessionID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"cursorReaction",line:0,column:0,type:"CursorReaction",isArray:!1,isDeprecated:!1,value:2},{name:"timer",line:0,column:0,type:"TimerInfo",isArray:!1,isDeprecated:!1,value:3},{name:"presenter",line:0,column:0,type:"PresenterInfo",isArray:!1,isDeprecated:!1,value:4},{name:"prototypePresenter",line:0,column:0,type:"PresenterInfo",isArray:!1,isDeprecated:!1,value:5},{name:"music",line:0,column:0,type:"MusicInfo",isArray:!1,isDeprecated:!1,value:6}]},{name:"Message",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"MessageType",isArray:!1,isDeprecated:!1,value:1},{name:"sessionID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"ackID",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3},{name:"nodeChanges",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:4},{name:"userChanges",line:0,column:0,type:"UserChange",isArray:!0,isDeprecated:!1,value:5},{name:"interactiveSlideElementChange",line:0,column:0,type:"InteractiveSlideElementChange",isArray:!1,isDeprecated:!1,value:32},{name:"nodeStatusChange",line:0,column:0,type:"NodeStatusChange",isArray:!1,isDeprecated:!1,value:36},{name:"blobs",line:0,column:0,type:"Blob",isArray:!0,isDeprecated:!1,value:6},{name:"blobBaseIndex",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:30},{name:"signalName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:7},{name:"access",line:0,column:0,type:"Access",isArray:!1,isDeprecated:!1,value:8},{name:"styleSetName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:9},{name:"styleSetType",line:0,column:0,type:"StyleSetType",isArray:!1,isDeprecated:!1,value:10},{name:"styleSetContentType",line:0,column:0,type:"StyleSetContentType",isArray:!1,isDeprecated:!1,value:11},{name:"pasteID",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:12},{name:"pasteOffset",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:13},{name:"pasteFileKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:14},{name:"signalPayload",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:15},{name:"sceneGraphQueries",line:0,column:0,type:"SceneGraphQuery",isArray:!0,isDeprecated:!1,value:16},{name:"nodeChangesMetadata",line:0,column:0,type:"NodeChangesMetadata",isArray:!1,isDeprecated:!1,value:17},{name:"fileVersion",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:18},{name:"pasteIsPartiallyOutsideEnclosingFrame",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:19},{name:"pastePageId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:20},{name:"isCut",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:21},{name:"localUndoStack",line:0,column:0,type:"Message",isArray:!0,isDeprecated:!1,value:22},{name:"localRedoStack",line:0,column:0,type:"Message",isArray:!0,isDeprecated:!1,value:23},{name:"broadcasts",line:0,column:0,type:"ClientBroadcast",isArray:!0,isDeprecated:!1,value:24},{name:"reconnectSequenceNumber",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:25},{name:"pasteBranchSourceFileKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:26},{name:"pasteEditorType",line:0,column:0,type:"EditorType",isArray:!1,isDeprecated:!1,value:27},{name:"postSyncActions",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:28},{name:"publishedAssetGuids",line:0,column:0,type:"GUID",isArray:!0,isDeprecated:!1,value:29},{name:"dirtyFromInitialLoad",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:31},{name:"clipboardSelectionRegions",line:0,column:0,type:"ClipboardSelectionRegion",isArray:!0,isDeprecated:!1,value:33},{name:"encodedOffsetsIndex",line:0,column:0,type:"EncodedOffsetsIndex",isArray:!1,isDeprecated:!1,value:34},{name:"hasRepeatingContent",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:35}]},{name:"EncodedOffsetsIndex",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeChangesFieldOffset",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"nodeChangesFieldLength",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"blobsFieldOffset",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3},{name:"nodeChangeOffsets",line:0,column:0,type:"GUIDAndEncodedOffset",isArray:!0,isDeprecated:!1,value:4}]},{name:"GUIDAndEncodedOffset",line:0,column:0,kind:"STRUCT",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"offset",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2}]},{name:"DiffChunk",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeChanges",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:1},{name:"phase",line:0,column:0,type:"NodePhase",isArray:!1,isDeprecated:!1,value:2},{name:"displayNode",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:3},{name:"canvasId",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:4},{name:"canvasName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:5},{name:"canvasIsInternal",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:6},{name:"chunksAffectingThisChunk",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:7},{name:"basisParentHierarchy",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:8},{name:"parentHierarchy",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:9},{name:"basisParentHierarchyGuids",line:0,column:0,type:"GUID",isArray:!0,isDeprecated:!1,value:10},{name:"parentHierarchyGuids",line:0,column:0,type:"GUID",isArray:!0,isDeprecated:!1,value:11}]},{name:"DiffType",line:0,column:0,kind:"ENUM",fields:[{name:"BRANCHING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"NODE_CHANGES_ONLY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"DiffPayload",line:0,column:0,kind:"MESSAGE",fields:[{name:"nodeChanges",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:1},{name:"blobs",line:0,column:0,type:"Blob",isArray:!0,isDeprecated:!1,value:2},{name:"diffChunks",line:0,column:0,type:"DiffChunk",isArray:!0,isDeprecated:!1,value:3},{name:"diffBasis",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:4},{name:"basisParentNodeChanges",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:5},{name:"parentNodeChanges",line:0,column:0,type:"NodeChange",isArray:!0,isDeprecated:!1,value:6},{name:"diffType",line:0,column:0,type:"DiffType",isArray:!1,isDeprecated:!1,value:7}]},{name:"RichMediaType",line:0,column:0,kind:"ENUM",fields:[{name:"ANIMATED_IMAGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"VIDEO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"RichMediaData",line:0,column:0,kind:"MESSAGE",fields:[{name:"mediaHash",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"richMediaType",line:0,column:0,type:"RichMediaType",isArray:!1,isDeprecated:!1,value:2}]},{name:"VariableDataType",line:0,column:0,kind:"ENUM",fields:[{name:"BOOLEAN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"FLOAT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"STRING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"ALIAS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"COLOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"EXPRESSION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"MAP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"SYMBOL_ID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"FONT_STYLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"TEXT_DATA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"INVALID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"NODE_FIELD_ALIAS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11}]},{name:"VariableResolvedDataType",line:0,column:0,kind:"ENUM",fields:[{name:"BOOLEAN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"FLOAT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"STRING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"COLOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"MAP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"SYMBOL_ID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"FONT_STYLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"TEXT_DATA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8}]},{name:"VariableAnyValue",line:0,column:0,kind:"MESSAGE",fields:[{name:"boolValue",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:1},{name:"textValue",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"floatValue",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"alias",line:0,column:0,type:"VariableID",isArray:!1,isDeprecated:!1,value:4},{name:"colorValue",line:0,column:0,type:"Color",isArray:!1,isDeprecated:!1,value:5},{name:"expressionValue",line:0,column:0,type:"Expression",isArray:!1,isDeprecated:!1,value:6},{name:"mapValue",line:0,column:0,type:"VariableMap",isArray:!1,isDeprecated:!1,value:7},{name:"symbolIdValue",line:0,column:0,type:"SymbolId",isArray:!1,isDeprecated:!1,value:8},{name:"fontStyleValue",line:0,column:0,type:"VariableFontStyle",isArray:!1,isDeprecated:!1,value:9},{name:"textDataValue",line:0,column:0,type:"TextData",isArray:!1,isDeprecated:!1,value:10},{name:"nodeFieldAliasValue",line:0,column:0,type:"NodeFieldAlias",isArray:!1,isDeprecated:!1,value:11}]},{name:"ExpressionFunction",line:0,column:0,kind:"ENUM",fields:[{name:"ADDITION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SUBTRACTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"RESOLVE_VARIANT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"MULTIPLY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"DIVIDE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"EQUALS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"NOT_EQUAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"LESS_THAN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"LESS_THAN_OR_EQUAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"GREATER_THAN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"GREATER_THAN_OR_EQUAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"AND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"OR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"NOT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"STRINGIFY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"TERNARY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"VAR_MODE_LOOKUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"NEGATE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"IS_TRUTHY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18}]},{name:"Expression",line:0,column:0,kind:"MESSAGE",fields:[{name:"expressionFunction",line:0,column:0,type:"ExpressionFunction",isArray:!1,isDeprecated:!1,value:1},{name:"expressionArguments",line:0,column:0,type:"VariableData",isArray:!0,isDeprecated:!1,value:2}]},{name:"VariableMapValue",line:0,column:0,kind:"MESSAGE",fields:[{name:"key",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"value",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:2}]},{name:"VariableMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"values",line:0,column:0,type:"VariableMapValue",isArray:!0,isDeprecated:!1,value:1}]},{name:"VariableFontStyle",line:0,column:0,kind:"MESSAGE",fields:[{name:"asString",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:1},{name:"asFloat",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:2},{name:"asVariations",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:3}]},{name:"NodeFieldAlias",line:0,column:0,kind:"MESSAGE",fields:[{name:"stablePathToNode",line:0,column:0,type:"GUIDPath",isArray:!1,isDeprecated:!1,value:1},{name:"nodeField",line:0,column:0,type:"NodeFieldAliasType",isArray:!1,isDeprecated:!1,value:2},{name:"indexOrKey",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"NodeFieldAliasType",line:0,column:0,kind:"ENUM",fields:[{name:"MISSING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"COMPONENT_PROP_ASSIGNMENTS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"VariableData",line:0,column:0,kind:"MESSAGE",fields:[{name:"value",line:0,column:0,type:"VariableAnyValue",isArray:!1,isDeprecated:!1,value:1},{name:"dataType",line:0,column:0,type:"VariableDataType",isArray:!1,isDeprecated:!1,value:2},{name:"resolvedDataType",line:0,column:0,type:"VariableResolvedDataType",isArray:!1,isDeprecated:!1,value:3}]},{name:"VariableSetMode",line:0,column:0,kind:"MESSAGE",fields:[{name:"id",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"name",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"sortPosition",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3}]},{name:"VariableDataValues",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"VariableDataValuesEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"VariableDataValuesEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"modeID",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"variableData",line:0,column:0,type:"VariableData",isArray:!1,isDeprecated:!1,value:2}]},{name:"VariableScope",line:0,column:0,kind:"ENUM",fields:[{name:"ALL_SCOPES",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"TEXT_CONTENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"CORNER_RADIUS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"WIDTH_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"GAP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"ALL_FILLS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"FRAME_FILL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"SHAPE_FILL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"TEXT_FILL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"STROKE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"STROKE_FLOAT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"EFFECT_FLOAT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"EFFECT_COLOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"OPACITY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"FONT_STYLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"FONT_FAMILY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"FONT_SIZE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"LINE_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"LETTER_SPACING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"PARAGRAPH_SPACING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"PARAGRAPH_INDENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"FONT_VARIATIONS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21}]},{name:"CodeSyntaxPlatform",line:0,column:0,kind:"ENUM",fields:[{name:"WEB",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ANDROID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"iOS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"OptionalVector",line:0,column:0,kind:"MESSAGE",fields:[{name:"value",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:1}]},{name:"HTMLTag",line:0,column:0,kind:"ENUM",fields:[{name:"AUTO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"ARTICLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"SECTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"NAV",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"ASIDE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"H1",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"H2",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"H3",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"H4",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"H5",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"H6",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"HGROUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"HEADER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"FOOTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"ADDRESS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"P",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"HR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"PRE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"BLOCKQUOTE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"OL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"UL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"MENU",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21},{name:"LI",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:22},{name:"DL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:23},{name:"DT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:24},{name:"DD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:25},{name:"FIGURE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:26},{name:"FIGCAPTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:27},{name:"MAIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:28},{name:"DIV",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:29},{name:"A",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:30},{name:"EM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:31},{name:"STRONG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:32},{name:"SMALL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:33},{name:"S",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:34},{name:"CITE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:35},{name:"Q",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:36},{name:"DFN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:37},{name:"ABBR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:38},{name:"RUBY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:39},{name:"RT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:40},{name:"RP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:41},{name:"DATA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:42},{name:"TIME",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:43},{name:"CODE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:44},{name:"VAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:45},{name:"SAMP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:46},{name:"KBD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:47},{name:"SUB",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:48},{name:"SUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:49},{name:"I",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:50},{name:"B",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:51},{name:"U",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:52},{name:"MARK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:53},{name:"BDI",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:54},{name:"BDO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:55},{name:"SPAN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:56},{name:"BR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:57},{name:"WBR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:58},{name:"PICTURE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:59},{name:"SOURCE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:60},{name:"IMG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:61},{name:"FORM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:62},{name:"LABEL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:63},{name:"INPUT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:64},{name:"BUTTON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:65},{name:"SELECT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:66},{name:"DATALIST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:67},{name:"OPTGROUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:68},{name:"OPTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:69},{name:"TEXTAREA",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:70},{name:"OUTPUT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:71},{name:"PROGRESS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:72},{name:"METER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:73},{name:"FIELDSET",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:74},{name:"LEGEND",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:75},{name:"VIDEO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:76}]},{name:"ARIARole",line:0,column:0,kind:"ENUM",fields:[{name:"AUTO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:52},{name:"APPLICATION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:30},{name:"BANNER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:67},{name:"COMPLEMENTARY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:68},{name:"CONTENTINFO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:69},{name:"FORM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:70},{name:"MAIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:71},{name:"NAVIGATION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:72},{name:"REGION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:73},{name:"SEARCH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:74},{name:"SEPARATOR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:13},{name:"ARTICLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:31},{name:"COLUMNHEADER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:35},{name:"DEFINITION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:36},{name:"DIRECTORY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:38},{name:"DOCUMENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:39},{name:"GROUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:44},{name:"HEADING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:45},{name:"IMG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:46},{name:"LIST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:48},{name:"LISTITEM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:49},{name:"MATH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:50},{name:"NOTE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:53},{name:"PRESENTATION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:55},{name:"ROW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:56},{name:"ROWGROUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:57},{name:"ROWHEADER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:58},{name:"TABLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:62},{name:"TOOLBAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:65},{name:"BUTTON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"CHECKBOX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"GRIDCELL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"LINK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"MENUITEM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"MENUITEMCHECKBOX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"MENUITEMRADIO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"OPTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8},{name:"PROGRESSBAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:9},{name:"RADIO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:10},{name:"SCROLLBAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:11},{name:"SLIDER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:14},{name:"SPINBUTTON",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:15},{name:"TAB",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:17},{name:"TABPANEL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:18},{name:"TEXTBOX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:19},{name:"TREEITEM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:20},{name:"COMBOBOX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:21},{name:"GRID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:22},{name:"LISTBOX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:23},{name:"MENU",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:24},{name:"MENUBAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:25},{name:"RADIOGROUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:26},{name:"TABLIST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:27},{name:"TREE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:28},{name:"TREEGRID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:29},{name:"TOOLTIP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:66},{name:"ALERT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:75},{name:"LOG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:76},{name:"MARQUEE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:77},{name:"STATUS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:78},{name:"TIMER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:79},{name:"ALERTDIALOG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:80},{name:"DIALOG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:81},{name:"SEARCHBOX",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:12},{name:"SWITCH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:16},{name:"BLOCKQUOTE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:32},{name:"CAPTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:33},{name:"CELL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:34},{name:"DELETION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:37},{name:"EMPHASIS",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:40},{name:"FEED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:41},{name:"FIGURE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:42},{name:"GENERIC",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:43},{name:"INSERTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:47},{name:"METER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:51},{name:"PARAGRAPH",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:54},{name:"STRONG",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:59},{name:"SUBSCRIPT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:60},{name:"SUPERSCRIPT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:61},{name:"TERM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:63},{name:"TIME",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:64},{name:"IMAGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:82},{name:"HEADING_1",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:83},{name:"HEADING_2",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:84},{name:"HEADING_3",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:85},{name:"HEADING_4",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:86},{name:"HEADING_5",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:87},{name:"HEADING_6",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:88},{name:"HEADER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:89},{name:"FOOTER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:90},{name:"SIDEBAR",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:91},{name:"SECTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:92},{name:"MAINCONTENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:93},{name:"TABLE_CELL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:94},{name:"WIDGET",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:95}]},{name:"MigrationStatus",line:0,column:0,kind:"MESSAGE",fields:[{name:"dsdCleanup",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:1}]},{name:"NodeFieldMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"NodeFieldMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"NodeFieldMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"field",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"lastModifiedSequenceNumber",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:3}]},{name:"ColorProfile",line:0,column:0,kind:"ENUM",fields:[{name:"SRGB",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"DISPLAY_P3",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"DocumentColorProfile",line:0,column:0,kind:"ENUM",fields:[{name:"LEGACY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"SRGB",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"DISPLAY_P3",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"ChildReadingDirection",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"LEFT_TO_RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"RIGHT_TO_LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"ARIAAttributeAnyValue",line:0,column:0,kind:"MESSAGE",fields:[{name:"boolValue",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:1},{name:"stringValue",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"floatValue",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"intValue",line:0,column:0,type:"int",isArray:!1,isDeprecated:!1,value:4},{name:"stringArrayValue",line:0,column:0,type:"string",isArray:!0,isDeprecated:!1,value:5}]},{name:"ARIAAttributeDataType",line:0,column:0,kind:"ENUM",fields:[{name:"BOOLEAN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"STRING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"FLOAT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"INT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"STRING_LIST",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"ARIAAttributeData",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"ARIAAttributeDataType",isArray:!1,isDeprecated:!1,value:1},{name:"value",line:0,column:0,type:"ARIAAttributeAnyValue",isArray:!1,isDeprecated:!1,value:2}]},{name:"ARIAAttributesMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"ARIAAttributesMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"ARIAAttributesMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"attribute",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"value",line:0,column:0,type:"ARIAAttributeData",isArray:!1,isDeprecated:!1,value:2}]},{name:"HandoffStatusMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"guid",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"handoffStatus",line:0,column:0,type:"SectionStatusInfo",isArray:!1,isDeprecated:!1,value:2}]},{name:"HandoffStatusMap",line:0,column:0,kind:"MESSAGE",fields:[{name:"entries",line:0,column:0,type:"HandoffStatusMapEntry",isArray:!0,isDeprecated:!1,value:1}]},{name:"EditScopeInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"editScopeStacks",line:0,column:0,type:"EditScopeStack",isArray:!0,isDeprecated:!1,value:1},{name:"snapshots",line:0,column:0,type:"EditScopeSnapshot",isArray:!0,isDeprecated:!1,value:2}]},{name:"EditScopeSnapshot",line:0,column:0,kind:"MESSAGE",fields:[{name:"frames",line:0,column:0,type:"EditScopeStack",isArray:!0,isDeprecated:!1,value:1},{name:"nodeChangeFieldNumbers",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:2}]},{name:"EditScopeStack",line:0,column:0,kind:"MESSAGE",fields:[{name:"stack",line:0,column:0,type:"EditScope",isArray:!0,isDeprecated:!1,value:1}]},{name:"EditScope",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"EditScopeType",isArray:!1,isDeprecated:!1,value:1},{name:"label",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"editorType",line:0,column:0,type:"EditorType",isArray:!1,isDeprecated:!1,value:3}]},{name:"EditScopeType",line:0,column:0,kind:"ENUM",fields:[{name:"INVALID",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"TEST_SETUP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"USER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"PLUGIN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SYSTEM",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4},{name:"REST_API",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:5},{name:"ONBOARDING",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:6},{name:"AUTOSAVE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:7},{name:"AI",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:8}]},{name:"SectionPresetState",line:0,column:0,kind:"ENUM",fields:[{name:"INSERTED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"USER_EDITED",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"EmojiImageSet",line:0,column:0,kind:"ENUM",fields:[{name:"APPLE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"NOTO",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"SelectionRegionFocusType",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"PRIMARY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"SECONDARY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"SectionPresetInfo",line:0,column:0,kind:"MESSAGE",fields:[{name:"shelfId",line:0,column:0,type:"uint64",isArray:!1,isDeprecated:!1,value:1},{name:"templateId",line:0,column:0,type:"uint64",isArray:!1,isDeprecated:!1,value:2},{name:"templateName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"state",line:0,column:0,type:"SectionPresetState",isArray:!1,isDeprecated:!1,value:4}]},{name:"ClipboardSelectionRegion",line:0,column:0,kind:"MESSAGE",fields:[{name:"parent",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:1},{name:"nodes",line:0,column:0,type:"GUID",isArray:!0,isDeprecated:!1,value:2},{name:"enclosingFrameOffset",line:0,column:0,type:"Vector",isArray:!1,isDeprecated:!1,value:3},{name:"pasteIsPartiallyOutsideEnclosingFrame",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4},{name:"focusType",line:0,column:0,type:"SelectionRegionFocusType",isArray:!1,isDeprecated:!1,value:5}]},{name:"FirstDraftKitType",line:0,column:0,kind:"ENUM",fields:[{name:"LOCAL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"LIBRARY",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"FirstDraftKit",line:0,column:0,kind:"MESSAGE",fields:[{name:"key",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"type",line:0,column:0,type:"FirstDraftKitType",isArray:!1,isDeprecated:!1,value:2}]},{name:"FirstDraftData",line:0,column:0,kind:"MESSAGE",fields:[{name:"generationId",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"kit",line:0,column:0,type:"FirstDraftKit",isArray:!1,isDeprecated:!1,value:2}]},{name:"FirstDraftKitElementType",line:0,column:0,kind:"ENUM",fields:[{name:"NONE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"BUILDING_BLOCK",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"GROUPED_COMPONENT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"FirstDraftKitElementData",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"FirstDraftKitElementType",isArray:!1,isDeprecated:!1,value:1}]},{name:"PlatformShapeProperty",line:0,column:0,kind:"ENUM",fields:[{name:"FILL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"STROKE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"TEXT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"PlatformShapeBehaviorType",line:0,column:0,kind:"ENUM",fields:[{name:"SHAPE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:0},{name:"CONTAINER",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1}]},{name:"PlatformShapePropertyMapEntry",line:0,column:0,kind:"MESSAGE",fields:[{name:"property",line:0,column:0,type:"PlatformShapeProperty",isArray:!1,isDeprecated:!1,value:1},{name:"nodePaths",line:0,column:0,type:"GUIDPath",isArray:!0,isDeprecated:!1,value:2}]},{name:"PlatformShapeDefinition",line:0,column:0,kind:"MESSAGE",fields:[{name:"propertyMapEntries",line:0,column:0,type:"PlatformShapePropertyMapEntry",isArray:!0,isDeprecated:!1,value:1},{name:"behaviorType",line:0,column:0,type:"PlatformShapeBehaviorType",isArray:!1,isDeprecated:!1,value:2}]},{name:"NodeBehaviors",line:0,column:0,kind:"MESSAGE",fields:[{name:"link",line:0,column:0,type:"LinkBehavior",isArray:!1,isDeprecated:!1,value:1},{name:"appear",line:0,column:0,type:"AppearBehavior",isArray:!1,isDeprecated:!1,value:2},{name:"hover",line:0,column:0,type:"HoverBehavior",isArray:!1,isDeprecated:!1,value:3},{name:"press",line:0,column:0,type:"PressBehavior",isArray:!1,isDeprecated:!1,value:4},{name:"focus",line:0,column:0,type:"FocusBehavior",isArray:!1,isDeprecated:!1,value:5},{name:"scrollParallax",line:0,column:0,type:"ScrollParallaxBehavior",isArray:!1,isDeprecated:!1,value:6},{name:"scrollTransform",line:0,column:0,type:"ScrollTransformBehavior",isArray:!1,isDeprecated:!1,value:7}]},{name:"BehaviorTransition",line:0,column:0,kind:"MESSAGE",fields:[{name:"easingType",line:0,column:0,type:"EasingType",isArray:!1,isDeprecated:!1,value:1},{name:"easingFunction",line:0,column:0,type:"float",isArray:!0,isDeprecated:!1,value:2},{name:"transitionDuration",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"delay",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4}]},{name:"AppearBehaviorTrigger",line:0,column:0,kind:"ENUM",fields:[{name:"PAGE_LOAD",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"THIS_LAYER_IN_VIEW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"OTHER_LAYER_IN_VIEW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"SCROLL_DIRECTION",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"RelativeDirection",line:0,column:0,kind:"ENUM",fields:[{name:"UP",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"DOWN",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"LEFT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3},{name:"RIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:4}]},{name:"LinkBehaviorType",line:0,column:0,kind:"ENUM",fields:[{name:"URL",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"PAGE",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2}]},{name:"LinkBehavior",line:0,column:0,kind:"MESSAGE",fields:[{name:"type",line:0,column:0,type:"LinkBehaviorType",isArray:!1,isDeprecated:!1,value:1},{name:"url",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"page",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3},{name:"openInNewWindow",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4}]},{name:"AppearBehavior",line:0,column:0,kind:"MESSAGE",fields:[{name:"trigger",line:0,column:0,type:"AppearBehaviorTrigger",isArray:!1,isDeprecated:!1,value:1},{name:"direction",line:0,column:0,type:"RelativeDirection",isArray:!1,isDeprecated:!1,value:2},{name:"otherLayer",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:3},{name:"enterTransition",line:0,column:0,type:"BehaviorTransition",isArray:!1,isDeprecated:!1,value:4},{name:"enterState",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:5},{name:"exitTransition",line:0,column:0,type:"BehaviorTransition",isArray:!1,isDeprecated:!1,value:6},{name:"exitState",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:7},{name:"playsOnce",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:8}]},{name:"HoverBehavior",line:0,column:0,kind:"MESSAGE",fields:[{name:"transition",line:0,column:0,type:"BehaviorTransition",isArray:!1,isDeprecated:!1,value:1},{name:"state",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:2}]},{name:"PressBehavior",line:0,column:0,kind:"MESSAGE",fields:[{name:"transition",line:0,column:0,type:"BehaviorTransition",isArray:!1,isDeprecated:!1,value:1},{name:"state",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:2}]},{name:"FocusBehavior",line:0,column:0,kind:"MESSAGE",fields:[{name:"transition",line:0,column:0,type:"BehaviorTransition",isArray:!1,isDeprecated:!1,value:1},{name:"state",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:2}]},{name:"ScrollParallaxBehavior",line:0,column:0,kind:"MESSAGE",fields:[{name:"axis",line:0,column:0,type:"ScrollDirection",isArray:!1,isDeprecated:!1,value:1},{name:"speed",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2},{name:"relativeToPage",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:3}]},{name:"ScrollTransformBehaviorTrigger",line:0,column:0,kind:"ENUM",fields:[{name:"PAGE_HEIGHT",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:1},{name:"THIS_LAYER_IN_VIEW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:2},{name:"OTHER_LAYER_IN_VIEW",line:0,column:0,type:null,isArray:!1,isDeprecated:!1,value:3}]},{name:"ScrollTransformBehavior",line:0,column:0,kind:"MESSAGE",fields:[{name:"trigger",line:0,column:0,type:"ScrollTransformBehaviorTrigger",isArray:!1,isDeprecated:!1,value:1},{name:"otherLayer",line:0,column:0,type:"GUID",isArray:!1,isDeprecated:!1,value:2},{name:"transition",line:0,column:0,type:"BehaviorTransition",isArray:!1,isDeprecated:!1,value:3},{name:"fromState",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:4},{name:"toState",line:0,column:0,type:"NodeChange",isArray:!1,isDeprecated:!1,value:5}]},{name:"VariableIdOrVariableOverrideId",line:0,column:0,kind:"MESSAGE",fields:[{name:"variableId",line:0,column:0,type:"VariableID",isArray:!1,isDeprecated:!1,value:1},{name:"variableOverrideId",line:0,column:0,type:"VariableOverrideId",isArray:!1,isDeprecated:!1,value:2}]},{name:"IndexFontVariationAxis",line:0,column:0,kind:"STRUCT",fields:[{name:"tag",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"name",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"min",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"max",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:4},{name:"defaultValue",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:5}]},{name:"IndexFontVariationAxisValue",line:0,column:0,kind:"STRUCT",fields:[{name:"tag",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"value",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:2}]},{name:"IndexFontStyle",line:0,column:0,kind:"MESSAGE",fields:[{name:"name",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"postscript",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2},{name:"weight",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:3},{name:"italic",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:4},{name:"stretch",line:0,column:0,type:"float",isArray:!1,isDeprecated:!1,value:5},{name:"variationAxisValues",line:0,column:0,type:"IndexFontVariationAxisValue",isArray:!0,isDeprecated:!1,value:6}]},{name:"IndexFontFile",line:0,column:0,kind:"MESSAGE",fields:[{name:"filename",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"version",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:2},{name:"family",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:3},{name:"styles",line:0,column:0,type:"IndexFontStyle",isArray:!0,isDeprecated:!1,value:4},{name:"variationAxes",line:0,column:0,type:"IndexFontVariationAxis",isArray:!0,isDeprecated:!1,value:5},{name:"useFontOpticalSize",line:0,column:0,type:"bool",isArray:!1,isDeprecated:!1,value:6}]},{name:"IndexFamilyRename",line:0,column:0,kind:"STRUCT",fields:[{name:"oldFamily",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"newFamily",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"IndexStyleRename",line:0,column:0,kind:"STRUCT",fields:[{name:"oldStyle",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"newStyle",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]},{name:"IndexFamilyStylesRename",line:0,column:0,kind:"STRUCT",fields:[{name:"familyName",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:1},{name:"styleRenames",line:0,column:0,type:"IndexStyleRename",isArray:!0,isDeprecated:!1,value:2}]},{name:"IndexRenames",line:0,column:0,kind:"STRUCT",fields:[{name:"family",line:0,column:0,type:"IndexFamilyRename",isArray:!0,isDeprecated:!1,value:1},{name:"style",line:0,column:0,type:"IndexFamilyStylesRename",isArray:!0,isDeprecated:!1,value:2}]},{name:"IndexEmojiSequence",line:0,column:0,kind:"STRUCT",fields:[{name:"codepoints",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:1}]},{name:"IndexEmojis",line:0,column:0,kind:"STRUCT",fields:[{name:"revision",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"sizes",line:0,column:0,type:"uint",isArray:!0,isDeprecated:!1,value:2},{name:"sequences",line:0,column:0,type:"IndexEmojiSequence",isArray:!0,isDeprecated:!1,value:3}]},{name:"FontIndex",line:0,column:0,kind:"MESSAGE",fields:[{name:"schemaVersion",line:0,column:0,type:"uint",isArray:!1,isDeprecated:!1,value:1},{name:"files",line:0,column:0,type:"IndexFontFile",isArray:!0,isDeprecated:!1,value:2},{name:"renames",line:0,column:0,type:"IndexRenames",isArray:!1,isDeprecated:!1,value:3},{name:"emojis",line:0,column:0,type:"IndexEmojis",isArray:!1,isDeprecated:!1,value:4}]},{name:"SlideThemeData",line:0,column:0,kind:"MESSAGE",fields:[{name:"themeID",line:0,column:0,type:"ThemeID",isArray:!1,isDeprecated:!1,value:1},{name:"version",line:0,column:0,type:"string",isArray:!1,isDeprecated:!1,value:2}]}],Al={package:null,definitions:dl},Dl=e=>{const a=e==null?void 0:e.definitions;return Array.isArray(a)?a:a&&typeof a=="object"?Object.values(a):[]},Ie=e=>{if(!e||typeof e!="object")throw new Error("SCHEMA_INVALID_OBJECT");const a=Dl(e);if(a.length===0)throw new Error("SCHEMA_DEFINITIONS_EMPTY");let l=0,n=0;for(const i of a){if(!i||typeof i!="object"){l+=1;continue}(i.kind===void 0||i.kind===null)&&(l+=1),i.type!==void 0&&i.type!==null&&(n+=1)}if(l>0)throw new Error("SCHEMA_DEFINITION_KIND_INVALID");return{definitionCount:a.length,definitionKindMissingCount:l,definitionTypePresentCount:n}},Ye="figma-clipboard-protocol-v1";let ne=null;const vl=()=>{const e=Al;return Ie(e),e},$e=()=>Ye,Re=()=>ne||(ne={schema:vl(),protocolVersion:Ye},ne),Y="fig-kiwi",je=75,El=2147483647,Sl=()=>{const e=Math.trunc(Date.now()%El);return e>0?e:1},Je=e=>{let a="";for(let n=0;nJe(new TextEncoder().encode(e)),Tl=e=>JSON.parse(JSON.stringify(e)),Il=new Set(["fileKey","pasteFileKey","originFileKey","imageHash"]),de=e=>{if(!e||typeof e!="object")return;if(Array.isArray(e)){for(const l of e)de(l);return}const a=e;for(const l of Object.keys(a)){if(Il.has(l)||l.endsWith("FileKey")){delete a[l];continue}if(l==="url"&&typeof a[l]=="string"&&typeof a.type=="string"&&a.type.toUpperCase()==="IMAGE"){delete a[l];continue}de(a[l])}},Rl=e=>{if(new TextDecoder().decode(e.slice(0,Y.length))!==Y)throw new Error("KIWI_ARCHIVE_PRELUDE_INVALID");const l=new DataView(e.buffer,e.byteOffset,e.byteLength),n=l.getUint32(Y.length,!0),i=[];let t=Y.length+4;for(;t+4<=e.byteLength;){const r=l.getUint32(t,!0);if(t+=4,t+r>e.byteLength)throw new Error("KIWI_ARCHIVE_FILE_BOUNDS_INVALID");i.push(e.slice(t,t+r)),t+=r}return{version:n,files:i}},Ze=e=>{if((e==null?void 0:e.type)!=="NODE_CHANGES")throw new Error("MESSAGE_TYPE_UNSUPPORTED");if(!Array.isArray(e==null?void 0:e.nodeChanges)||e.nodeChanges.length===0)throw new Error("MESSAGE_NODE_CHANGES_MISSING")},Nl=e=>{const a=Rl(e);if(a.version!==je)throw new Error("KIWI_ARCHIVE_VERSION_MISMATCH");if(a.files.length<2)throw new Error("KIWI_ARCHIVE_FILE_COUNT_INVALID");const l=pe.decodeMessage(Ma(a.files[1]));Ze(l)},Cl=e=>{const a=Y.length+4,l=e.reduce((s,u)=>s+4+u.byteLength,a),n=new Uint8Array(l),i=new DataView(n.buffer);let r=new TextEncoder().encodeInto(Y,n).written;i.setUint32(r,je,!0),r+=4;for(const s of e)i.setUint32(r,s.byteLength,!0),r+=4,n.set(s,r),r+=s.byteLength;return n},Ml=({meta:e,schema:a,message:l})=>{var u;Ze(l);const n=Ca(a);if(typeof((u=pe)==null?void 0:u.encodeMessage)!="function")throw new Error("SCHEMA_ENCODER_MISSING");const i=pe.encodeMessage(l),t=Cl([Me(n),Me(i)]);Nl(t);const r=gl(JSON.stringify(e)),s=Je(t);return``},Ol=e=>` + + + + + + + ${e} + + + + `,Qe=async({layers:e,fileKey:a,message:l})=>{const{schema:n}=Re(),i=Sl(),t=l?Tl(l):await pl(e||[]);return t&&typeof t=="object"&&(t.pasteID=i,de(t)),Ml({meta:{pasteID:i,dataType:"scene"},schema:n,message:t})},Ne=async({layers:e,fileKey:a,message:l})=>{var r;if(!((r=navigator==null?void 0:navigator.clipboard)!=null&&r.write))throw new Error("CLIPBOARD_WRITE_UNAVAILABLE");if(typeof ClipboardItem>"u")throw new Error("CLIPBOARD_ITEM_UNAVAILABLE");const n=await Qe({layers:e,fileKey:a,message:l}),i=Ol(n),t=new ClipboardItem({"text/html":new Blob([i],{type:"text/html"})});await navigator.clipboard.write([t])},qe=["FRAME","GROUP","RECTANGLE","LINE","TEXT","SVG"],Ae=["SOLID","GRADIENT_LINEAR","GRADIENT_RADIAL","GRADIENT_ANGULAR","GRADIENT_DIAMOND","IMAGE"],ea=["INNER_SHADOW","DROP_SHADOW","FOREGROUND_BLUR","BACKGROUND_BLUR"],aa=["NONE","HORIZONTAL","VERTICAL"],la=["NO_WRAP","WRAP"],re=["FIXED","AUTO"],na=["MIN","CENTER","MAX","SPACE_BETWEEN"],ia=["MIN","CENTER","MAX","BASELINE"],sa=["MIN","CENTER","MAX","STRETCH","INHERIT"],ta=["AUTO","ABSOLUTE"],ra=["MIN","CENTER","MAX","STRETCH","SCALE","FIXED_MIN","FIXED_MAX"],ua=["MIN","CENTER","MAX","STRETCH","SCALE","FIXED_MIN","FIXED_MAX"],oa=["STRETCH","FIT","FILL","TILE"],ca=["LEFT","CENTER","RIGHT","JUSTIFIED"],ma=["TOP","CENTER","BOTTOM"],fa=["ORIGINAL","UPPER","LOWER","TITLE","SMALL_CAPS","SMALL_CAPS_FORCED"],pa=["NONE","UNDERLINE","STRIKETHROUGH"],ya=["NONE","WIDTH_AND_HEIGHT","HEIGHT"],D="Roboto",Ue={"-apple-system":D,blinkmacsystemfont:D,"system-ui":D,"ui-sans-serif":D,"segoe ui":D,"helvetica neue":D,helvetica:D,"open sans":D,lato:D,montserrat:D,poppins:D,"source sans pro":D,"noto sans":D,"sans-serif":D,sans:D,serif:"Times New Roman","ui-serif":"Times New Roman",monospace:"Courier New","ui-monospace":"Courier New"},ie={roboto:"Roboto",inter:"Inter",arial:"Arial","times new roman":"Times New Roman","courier new":"Courier New"},z=["Roboto","Inter","Arial","Helvetica Neue","Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Times New Roman","Courier New"],ke={"-apple-system":["SF Pro Text","SF Pro Display","Helvetica Neue","Roboto","Arial"],blinkmacsystemfont:["SF Pro Text","SF Pro Display","Helvetica Neue","Roboto","Arial"],"system-ui":["SF Pro Text","Segoe UI","Roboto","Helvetica Neue","Arial"],"ui-sans-serif":["Roboto","Arial","Helvetica Neue","Segoe UI"],"sans-serif":["Roboto","Arial","Helvetica Neue","Segoe UI"],sans:["Roboto","Arial","Helvetica Neue","Segoe UI"],serif:["Times New Roman","Georgia"],"ui-serif":["Times New Roman","Georgia"],monospace:["Courier New","Consolas","Menlo"],"ui-monospace":["Courier New","Consolas","Menlo"]},ue=e=>e.replace(/^['"]+|['"]+$/g,"").trim().replace(/\s+/g," "),hl=e=>{if(!e)return null;const a=new Map;for(const l of e){if(typeof l!="string")continue;const n=ue(l);if(!n)continue;const i=n.toLowerCase();a.has(i)||a.set(i,n)}return a.size>0?a:null},Z=(e,a)=>{for(const l of e){const n=ue(l);if(!n)continue;const i=a.get(n.toLowerCase());if(i)return i}return null},Ll=()=>{const e=globalThis;return!!(e.__AXHUB_FONT_FALLBACK_DEBUG__||e.__AXHUB_FONT_DEBUG__)},K=(e,a)=>{if(Ll())try{console.debug("[font-fallback]",e,a)}catch{}},bl=(e,a=null)=>{if(typeof e!="string"){if(a){const t=Z(z,a)||D;return K("non-string-family -> local fallback order",{fontFamily:e,chosen:t,fallbackOrder:z}),t}return K("non-string-family -> safe fallback",{fontFamily:e,chosen:D}),D}const l=e.split(",").map(t=>ue(t)).filter(Boolean);if(l.length===0){if(a){const t=Z(z,a)||D;return K("empty-family-tokens -> local fallback order",{fontFamily:e,chosen:t,fallbackOrder:z}),t}return K("empty-family-tokens -> safe fallback",{fontFamily:e,chosen:D}),D}const n=l[0],i=n.toLowerCase();if(a){const t=ie[i];if(t){const p=a.get(t.toLowerCase());if(p)return p}const r=a.get(i);if(r)return r;const s=ke[i];if(s){const p=Z(s,a);if(p)return p}for(const p of l.slice(1)){const A=p.toLowerCase(),v=ie[A];if(v){const S=a.get(v.toLowerCase());if(S)return S}const I=a.get(A);if(I)return I;const C=ke[A];if(C){const S=Z(C,a);if(S)return S}}const u=Z(z,a)||D;return K("no-token-matched -> local fallback order",{fontFamily:e,tokens:l,primaryToken:n,chosen:u,fallbackOrder:z}),u}return ie[i]?ie[i]:Ue[i]?Ue[i]:(K("no-lookup-no-mapping -> safe fallback",{fontFamily:e,tokens:l,chosen:D}),D)},m={nodeType:"RECTANGLE",nodeName:"RECTANGLE",geometry:{x:0,y:0,width:1,height:1,rotation:0,opacity:1},paint:{type:"SOLID",visible:!0,imageScaleMode:"FILL",opacity:1},text:{characters:"",fontFamily:D,fontStyle:"Regular",fontSize:16,textAlignHorizontal:"LEFT",textAlignVertical:"TOP",textDecoration:"NONE",textCase:"ORIGINAL",textAutoResize:"HEIGHT",lineHeightUnit:"PIXELS"},layout:{mode:"NONE",wrap:"NO_WRAP",primaryAxisSizingMode:"FIXED",counterAxisSizingMode:"FIXED",primaryAxisAlignItems:"MIN",counterAxisAlignItems:"MIN",layoutAlign:"INHERIT",layoutPositioning:"AUTO"},constraints:{horizontal:"MIN",vertical:"MIN"}},Gl=new Set(["PAGE","SECTION","INSTANCE","COMPONENT","CANVAS"]),d=(e,a=0)=>{const l=typeof e=="number"?e:Number(e);return Number.isFinite(l)?l:a},q=(e,a=1)=>{const l=d(e,a);return l>0?l:a},X=(e,a=0)=>{if(typeof e=="string"){const l=Number.parseFloat(e);if(Number.isFinite(l))return l}return d(e,a)},x=(e,a=1)=>{const l=d(e,a);return l>1?Math.max(0,Math.min(1,l/255)):Math.max(0,Math.min(1,l))},M=(e,a,l)=>{if(typeof e!="string")return l;const n=e.toUpperCase();return a.includes(n)?n:l},Pl=(e,a)=>{const l=typeof e=="string"?e.toUpperCase():"";return qe.includes(l)?l:Gl.has(l)||a?"FRAME":l==="ELLIPSE"||l==="VECTOR"||l==="BOOLEAN_OPERATION"||l==="STAR"||l==="REGULAR_POLYGON"?"RECTANGLE":m.nodeType},De=e=>{if(!e||typeof e!="object")return null;const a=e;return{r:x(a.r,0),g:x(a.g,0),b:x(a.b,0),a:x(a.a,1)}},da=e=>{if(!e||typeof e!="object")return null;const a=e;return{x:d(a.x,0),y:d(a.y,0)}},_e=(e,a=0)=>{if(typeof e=="number")return{value:e,unit:"PIXELS"};if(!e||typeof e!="object")return{value:a,unit:"PIXELS"};const l=e,n=String(l.unit||l.units||"PIXELS").toUpperCase();return{value:d(l.value,a),unit:n==="PERCENT"||n==="%"?"PERCENT":n==="RAW"?"RAW":"PIXELS"}},Ve=e=>{if(!e||typeof e!="object")return null;const a=e,l=M(a.type,Ae,m.paint.type),n={type:l,visible:a.visible!==!1,blendMode:typeof a.blendMode=="string"?a.blendMode:void 0,opacity:a.opacity===void 0?void 0:x(a.opacity,1)};if(l==="SOLID")return{...n,type:l,color:De(a.color)||void 0};if(l==="IMAGE"){const i=a.imageTransform;let t;if(Array.isArray(i)&&i.length>=2){const r=Array.isArray(i[0])?i[0]:[],s=Array.isArray(i[1])?i[1]:[];t={m00:d(r[0],1),m01:d(r[1],0),m02:d(r[2],0),m10:d(s[0],0),m11:d(s[1],1),m12:d(s[2],0)}}else if(a.transform&&typeof a.transform=="object"){const r=a.transform;t={m00:d(r.m00,1),m01:d(r.m01,0),m02:d(r.m02,0),m10:d(r.m10,0),m11:d(r.m11,1),m12:d(r.m12,0)}}return{...n,type:l,svg:typeof a.svg=="string"?a.svg:void 0,intArr:a.intArr,bytes:a.bytes,originalImageWidth:a.originalImageWidth===void 0?void 0:q(a.originalImageWidth,1),originalImageHeight:a.originalImageHeight===void 0?void 0:q(a.originalImageHeight,1),imageScaleMode:M(a.imageScaleMode||a.scaleMode,oa,m.paint.imageScaleMode),transform:t,rotation:a.rotation===void 0?void 0:d(a.rotation,0),scale:a.scale===void 0&&a.scalingFactor===void 0?void 0:d(a.scale??a.scalingFactor,1)}}return{...n,type:l,gradientStops:Array.isArray(a.gradientStops)?a.gradientStops.map(i=>{if(!i||typeof i!="object")return null;const t=i,r=De(t.color);return r?{color:r,position:x(t.position,0)}:null}).filter(i=>!!i):void 0,gradientHandlePositions:Array.isArray(a.gradientHandlePositions)?a.gradientHandlePositions.map(i=>da(i)).filter(i=>!!i):void 0}},Ul=e=>{if(!Array.isArray(e))return;const a=e.map(l=>{if(!l||typeof l!="object")return null;const n=l,i=typeof n.type=="string"?n.type.toUpperCase():"",t=i==="LAYER_BLUR"?"FOREGROUND_BLUR":i==="BACKGROUND_BLUR"?"BACKGROUND_BLUR":i;return ea.includes(t)?{type:t,visible:n.visible!==!1,radius:d(n.radius,0),color:De(n.color)||void 0,offset:da(n.offset)||void 0,blendMode:typeof n.blendMode=="string"?n.blendMode:void 0,spread:n.spread===void 0?void 0:d(n.spread,0)}:null}).filter(l=>l!==null);return a.length>0?a:void 0},kl=e=>{const a=e.split(` +`);return{characters:e,lines:a.map(()=>({lineType:"PLAIN",styleId:0,indentationLevel:0,sourceDirectionality:"AUTO",listStartOffset:0,isFirstLineOfList:!1}))}},ve=e=>{if(typeof e!="string")return"Regular";const a=e.trim().toLowerCase().replace(/\s+/g," ");if(!a)return"Regular";let l=!1,n=!1;if(a==="normal"||a==="regular"||a==="book"||a==="roman")return"Regular";(a.includes("italic")||a.includes("oblique"))&&(n=!0),(a.includes("bold")||a.includes("semibold")||a.includes("demibold"))&&(l=!0);const i=Number(a);return Number.isFinite(i)&&i>=700&&(l=!0),l&&n?"Bold Italic":l?"Bold":n?"Italic":"Regular"},_l=(e,a,l)=>{let n=ve(l);const i=typeof e=="number"?e:Number(e);(e==="bold"||Number.isFinite(i)&&i>=700)&&(n=n==="Italic"?"Bold Italic":"Bold");const r=typeof a=="string"?a.toLowerCase():"";return(r==="italic"||r==="oblique")&&(n=n==="Bold"?"Bold Italic":"Italic"),n},Aa=(e,a,l,n=null)=>{const i=Array.isArray(e.children)?e.children:[],t=Pl(e.type,i.length>0),r=typeof e.name=="string"&&e.name.trim().length>0?e.name:t,s={type:t,name:r,x:d(e.x,m.geometry.x),y:d(e.y,m.geometry.y),width:q(e.width,m.geometry.width),height:q(e.height,m.geometry.height),visible:e.visible!==!1};e.opacity!==void 0&&(s.opacity=x(e.opacity,m.geometry.opacity)),e.rotation!==void 0&&(s.rotation=d(e.rotation,m.geometry.rotation)),typeof e.blendMode=="string"&&(s.blendMode=e.blendMode.toUpperCase()),e.clipsContent!==void 0&&(s.clipsContent=!!e.clipsContent);const u=Array.isArray(e.fills)?e.fills.map(E=>Ve(E)).filter(Boolean):[];u.length>0&&(s.fills=u);const p=Array.isArray(e.strokes)?e.strokes.map(E=>Ve(E)).filter(Boolean):[];p.length>0&&(s.strokes=p),e.strokeWeight!==void 0&&(s.strokeWeight=d(e.strokeWeight,1)),typeof e.strokeAlign=="string"&&(s.strokeAlign=e.strokeAlign.toUpperCase()),typeof e.strokeCap=="string"&&(s.strokeCap=e.strokeCap.toUpperCase()),typeof e.strokeJoin=="string"&&(s.strokeJoin=e.strokeJoin.toUpperCase()),Array.isArray(e.dashPattern)&&e.dashPattern.length>0&&(s.dashPattern=e.dashPattern.map(E=>d(E,0)));const A=Ul(e.effects);A&&(s.effects=A);const v=e,I=e.cornerRadius!==void 0?X(e.cornerRadius,0):X(v.borderRadius,0);I>0&&(s.cornerRadius=I),e.rectangleCornerRadiiIndependent!==void 0&&(s.rectangleCornerRadiiIndependent=!!e.rectangleCornerRadiiIndependent);const C=X(e.rectangleTopLeftCornerRadius??v.topLeftRadius,0),S=X(e.rectangleTopRightCornerRadius??v.topRightRadius,0),h=X(e.rectangleBottomLeftCornerRadius??v.bottomLeftRadius,0),o=X(e.rectangleBottomRightCornerRadius??v.bottomRightRadius,0);if((C>0||S>0||h>0||o>0)&&(s.rectangleTopLeftCornerRadius=C,s.rectangleTopRightCornerRadius=S,s.rectangleBottomLeftCornerRadius=h,s.rectangleBottomRightCornerRadius=o,e.rectangleCornerRadiiIndependent!==void 0?s.rectangleCornerRadiiIndependent=!!e.rectangleCornerRadiiIndependent:s.rectangleCornerRadiiIndependent=!0),e.horizontalConstraint!==void 0&&(s.horizontalConstraint=M(e.horizontalConstraint,ra,m.constraints.horizontal)),e.verticalConstraint!==void 0&&(s.verticalConstraint=M(e.verticalConstraint,ua,m.constraints.vertical)),e.layoutMode!==void 0&&(s.layoutMode=M(e.layoutMode,aa,m.layout.mode)),e.layoutWrap!==void 0&&(s.layoutWrap=M(e.layoutWrap,la,m.layout.wrap)),e.primaryAxisSizingMode!==void 0&&(s.primaryAxisSizingMode=M(e.primaryAxisSizingMode,re,m.layout.primaryAxisSizingMode)),e.counterAxisSizingMode!==void 0&&(s.counterAxisSizingMode=M(e.counterAxisSizingMode,re,m.layout.counterAxisSizingMode)),e.primaryAxisAlignItems!==void 0&&(s.primaryAxisAlignItems=M(e.primaryAxisAlignItems,na,m.layout.primaryAxisAlignItems)),e.counterAxisAlignItems!==void 0&&(s.counterAxisAlignItems=M(e.counterAxisAlignItems,ia,m.layout.counterAxisAlignItems)),e.layoutAlign!==void 0&&(s.layoutAlign=M(e.layoutAlign,sa,m.layout.layoutAlign)),e.layoutPositioning!==void 0&&(s.layoutPositioning=M(e.layoutPositioning,ta,m.layout.layoutPositioning)),e.layoutGrow!==void 0&&(s.layoutGrow=d(e.layoutGrow,0)),e.itemSpacing!==void 0&&(s.itemSpacing=d(e.itemSpacing,0)),e.counterAxisSpacing!==void 0&&(s.counterAxisSpacing=d(e.counterAxisSpacing,0)),e.paddingLeft!==void 0&&(s.paddingLeft=d(e.paddingLeft,0)),e.paddingRight!==void 0&&(s.paddingRight=d(e.paddingRight,0)),e.paddingTop!==void 0&&(s.paddingTop=d(e.paddingTop,0)),e.paddingBottom!==void 0&&(s.paddingBottom=d(e.paddingBottom,0)),s.type==="TEXT"){const E=typeof e.characters=="string"?e.characters:"";typeof e.characters!="string"&&l.push(`${a}: TEXT.characters invalid, fallback to empty string`);const R=e.fontName&&typeof e.fontName=="object"?e.fontName:{};s.characters=E,s.textData=kl(E),s.fontSize=q(e.fontSize,m.text.fontSize);const P=typeof e.fontFamily=="string"?e.fontFamily:"",b=typeof R.family=="string"?R.family:P||m.text.fontFamily,U=ve(typeof R.style=="string"?R.style:m.text.fontStyle),k=bl(b,n),_=_l(e.fontWeight,e.fontStyle,U),g=typeof R.postscript=="string"?R.postscript:"",j=ue(b).toLowerCase()===k.toLowerCase(),W=ve(R.style)===_,F=!!g&&!n&&j&&W;s.fontName={family:k,style:_,postscript:F?g:""},s.textAlignHorizontal=M(e.textAlignHorizontal,ca,m.text.textAlignHorizontal),s.textAlignVertical=M(e.textAlignVertical,ma,m.text.textAlignVertical),s.textDecoration=M(e.textDecoration,pa,m.text.textDecoration),s.textCase=M(e.textCase,fa,m.text.textCase),s.textAutoResize=M(e.textAutoResize,ya,m.text.textAutoResize),s.lineHeight=_e(e.lineHeight,Math.max(s.fontSize*1.2,1)),s.letterSpacing=_e(e.letterSpacing,0),s.textTracking=d(e.textTracking,0)}return s.type==="SVG"&&typeof e.svg=="string"&&e.svg.trim().length>0&&(s.svg=e.svg),Array.isArray(e.children)&&(s.children=e.children.map((E,L)=>!E||typeof E!="object"?(l.push(`${a}.children.${L}: child is not an object, skipped`),null):Aa(E,`${a}.children.${L}`,l,n)).filter(E=>!!E)),s},Da=(e,a="root",l={})=>{const n=[];if(!e||typeof e!="object")return{valid:!1,diagnostics:[`${a}: node is not an object`]};const i=hl(l.availableFontFamilies),t=Aa(e,a,n,i);return{valid:n.length===0,normalizedNode:t,diagnostics:n}},va=(e,a={})=>{const l=[];if(!Array.isArray(e))return{valid:!1,diagnostics:["layers must be an array"],normalizedNodes:[]};const n=[];return e.forEach((i,t)=>{const r=Da(i,`root.${t}`,a);l.push(...r.diagnostics),r.normalizedNode&&n.push(r.normalizedNode)}),{valid:l.length===0,diagnostics:l,normalizedNodes:n}},Vl=5*60*1e3;let se=null,Fe=!1;const Fl=async()=>{var a;if(se&&se.expiresAt>Date.now())return se.families;const e=(a=globalThis==null?void 0:globalThis.chrome)==null?void 0:a.fontSettings;if(!e||typeof e.getFontList!="function"){Fe||(Fe=!0,console.warn("[KiwiCopy] chrome.fontSettings.getFontList unavailable; skipping local font matching."));return}try{const l=await e.getFontList();if(!Array.isArray(l))return;const n=new Set;for(const t of l){if(!t||typeof t!="object")continue;const r=typeof t.fontId=="string"?t.fontId.trim():"",s=typeof t.displayName=="string"?t.displayName.trim():"";r&&n.add(r),s&&n.add(s)}const i=Array.from(n);return se={expiresAt:Date.now()+Vl,families:i},i}catch(l){console.warn("[KiwiCopy] Failed to read local font list:",l);return}},Ea=(e,a)=>{if(!e||typeof e!="object"||!a||typeof a!="object")return;const l=typeof a.type=="string"?a.type.toUpperCase():"";if(l==="FRAME"||l==="GROUP"){const n=["layoutMode","layoutWrap","primaryAxisSizingMode","counterAxisSizingMode","primaryAxisAlignItems","counterAxisAlignItems","layoutAlign","layoutPositioning","layoutGrow","itemSpacing","counterAxisSpacing","gridColumnCount","gridColumnGap","gridRowGap","paddingLeft","paddingRight","paddingTop","paddingBottom"];for(const i of n)a[i]!==void 0&&(e[i]=a[i])}if(e.type==="TEXT"&&a.type==="TEXT"&&a.fontName&&typeof a.fontName=="object"&&(e.fontName=a.fontName,typeof e.fontFamily=="string"&&(e.fontFamily=a.fontName.family||e.fontFamily),typeof e.fontStyle=="string"&&(e.fontStyle=a.fontName.style||e.fontStyle)),Array.isArray(e.children)&&Array.isArray(a.children)){const n=Math.min(e.children.length,a.children.length);for(let i=0;i{if(!Array.isArray(e)||!Array.isArray(a))return e;const l=Math.min(e.length,a.length);for(let n=0;n{const a=$e(),l=Re();Ie(l.schema);const n=await Fl(),i=va(e,{availableFontFamilies:n});i.diagnostics.length>0&&console.warn("[KiwiCopy] Standard node contract diagnostics (font-only merge):",i.diagnostics.slice(0,20));const t=xl(e,i.normalizedNodes);return await Ne({layers:t}),{mode:"clipboard",protocolVersion:a}},Hl=async()=>{const e=$e(),a=Re();Ie(a.schema);const l=yl();return await Ne({message:l}),{mode:"clipboard",protocolVersion:e}},wl=new Set(["FRAME","GROUP","RECTANGLE","LINE","TEXT","SVG"]),Wl=new Set(["PAGE","SECTION","INSTANCE","COMPONENT","CANVAS"]),y=(e,a=0)=>{const l=typeof e=="number"?e:Number(e);return Number.isFinite(l)?l:a},ee=(e,a=1)=>{const l=y(e,a);return l>0?l:a},B=(e,a=1)=>{const l=y(e,a);return l>1?Math.max(0,Math.min(1,l/255)):Math.max(0,Math.min(1,l))},Ee=e=>{if(!e||typeof e!="object")return null;const a=B(e.r,0),l=B(e.g,0),n=B(e.b,0),i=B(e.a,1);return{r:a,g:l,b:n,a:i}},Sa=e=>!e||typeof e!="object"?null:{x:y(e.x,0),y:y(e.y,0)},zl=(e,a)=>{const l=typeof e=="string"?e.toUpperCase():"";return wl.has(l)?l:Wl.has(l)||a?"FRAME":"RECTANGLE"},xe=(e,a=0)=>{if(typeof e=="number")return{value:e,unit:"PIXELS"};if(!e||typeof e!="object")return{value:a,unit:"PIXELS"};const l=(e.unit||e.units||"PIXELS").toString().toUpperCase(),n=l==="PERCENT"||l==="%"?"PERCENT":l==="RAW"?"RAW":"PIXELS";return{value:y(e.value,a),unit:n}},Kl=e=>{if(!e||typeof e!="object")return null;const a=typeof e.type=="string"?e.type.toUpperCase():"SOLID",l={type:a,visible:e.visible!==!1};e.blendMode&&(l.blendMode=e.blendMode),e.opacity!==void 0&&(l.opacity=B(e.opacity,1));const n=Ee(e.color);if(n&&(l.color=n),Array.isArray(e.gradientStops)&&(l.gradientStops=e.gradientStops.map(i=>{const t=Ee(i==null?void 0:i.color);return t?{color:t,position:B(i==null?void 0:i.position,0)}:null}).filter(Boolean)),Array.isArray(e.gradientHandlePositions)&&(l.gradientHandlePositions=e.gradientHandlePositions.map(i=>Sa(i)).filter(Boolean)),a==="IMAGE"){const i=typeof e.imageScaleMode=="string"?e.imageScaleMode:typeof e.scaleMode=="string"?e.scaleMode:void 0,t=e.transform??e.imageTransform,r=e.scale??e.scalingFactor;if(typeof e.svg=="string"&&e.svg.trim().length>0&&(l.svg=e.svg),e.intArr!==void 0&&(l.intArr=e.intArr),e.bytes!==void 0&&(l.bytes=e.bytes),e.originalImageWidth!==void 0&&(l.originalImageWidth=ee(e.originalImageWidth,1)),e.originalImageHeight!==void 0&&(l.originalImageHeight=ee(e.originalImageHeight,1)),i&&(l.imageScaleMode=i.toUpperCase()),Array.isArray(t)&&t.length===2){const s=t[0]||[],u=t[1]||[];l.transform={m00:y(s[0],1),m01:y(s[1],0),m02:y(s[2],0),m10:y(u[0],0),m11:y(u[1],1),m12:y(u[2],0)}}else t&&typeof t=="object"&&(l.transform={m00:y(t.m00,1),m01:y(t.m01,0),m02:y(t.m02,0),m10:y(t.m10,0),m11:y(t.m11,1),m12:y(t.m12,0)});typeof e.rotation=="number"&&(l.rotation=y(e.rotation,0)),r!==void 0&&(l.scale=y(r,1))}return l},Be=e=>{if(!Array.isArray(e))return;const a=e.map(l=>Kl(l)).filter(Boolean);return a.length>0?a:void 0},Xl=e=>{if(!e||typeof e!="object")return null;let l=typeof e.type=="string"?e.type.toUpperCase():"";if(l==="LAYER_BLUR"&&(l="FOREGROUND_BLUR"),l==="BACKGROUND_BLUR"&&(l="BACKGROUND_BLUR"),!["INNER_SHADOW","DROP_SHADOW","FOREGROUND_BLUR","BACKGROUND_BLUR"].includes(l))return null;const n={type:l,visible:e.visible!==!1,radius:y(e.radius,0)},i=Ee(e.color);i&&(n.color=i);const t=Sa(e.offset);return t&&(n.offset=t),e.blendMode&&(n.blendMode=e.blendMode),e.spread!==void 0&&(n.spread=y(e.spread,0)),n},Yl=e=>{if(!Array.isArray(e))return;const a=e.map(l=>Xl(l)).filter(Boolean);return a.length>0?a:void 0},$l=e=>{const a=e.split(` +`);return{characters:e,lines:a.map(()=>({lineType:"PLAIN",styleId:0,indentationLevel:0,sourceDirectionality:"AUTO",listStartOffset:0,isFirstLineOfList:!1}))}},jl=e=>{const a=typeof e=="string"?e.toUpperCase():"";return a==="UNDERLINE"||a==="STRIKETHROUGH"?a:"NONE"},Jl=e=>{const a=typeof e=="string"?e.toUpperCase():"";return a==="UPPER"||a==="LOWER"||a==="TITLE"||a==="SMALL_CAPS"||a==="SMALL_CAPS_FORCED"?a:"ORIGINAL"},ga=(e,a,l,n)=>{var L;if(!e||typeof e!="object")return a.push(`${n}: 非对象图层已忽略`),null;const i=Array.isArray(e.children)?e.children:[],t=zl(e.type,i.length>0),r=typeof e.name=="string"&&e.name.trim().length>0?e.name:t,s={type:t,name:r,x:y(e.x,0),y:y(e.y,0),width:ee(e.width,1),height:ee(e.height,1),visible:e.visible!==!1};e.opacity!==void 0&&(s.opacity=B(e.opacity,1)),e.rotation!==void 0&&(s.rotation=y(e.rotation,0)),e.blendMode&&typeof e.blendMode=="string"&&(s.blendMode=e.blendMode.toUpperCase()),e.clipsContent!==void 0&&(s.clipsContent=!!e.clipsContent);const u=Be(e.fills);u&&(s.fills=u);const p=Be(e.strokes);p&&(s.strokes=p),e.strokeWeight!==void 0&&(s.strokeWeight=y(e.strokeWeight,1)),e.strokeAlign&&typeof e.strokeAlign=="string"&&(s.strokeAlign=e.strokeAlign.toUpperCase()),e.strokeCap&&typeof e.strokeCap=="string"&&(s.strokeCap=e.strokeCap.toUpperCase()),e.strokeJoin&&typeof e.strokeJoin=="string"&&(s.strokeJoin=e.strokeJoin.toUpperCase()),Array.isArray(e.dashPattern)&&e.dashPattern.length>0&&(s.dashPattern=e.dashPattern.map(R=>y(R,0)));const A=Yl(e.effects);A&&(s.effects=A),e.cornerRadius!==void 0&&(s.cornerRadius=y(e.cornerRadius,0));const v=y(e.rectangleTopLeftCornerRadius??e.topLeftRadius,0),I=y(e.rectangleTopRightCornerRadius??e.topRightRadius,0),C=y(e.rectangleBottomLeftCornerRadius??e.bottomLeftRadius,0),S=y(e.rectangleBottomRightCornerRadius??e.bottomRightRadius,0);(v>0||I>0||C>0||S>0)&&(s.rectangleCornerRadiiIndependent=!0,s.rectangleTopLeftCornerRadius=v,s.rectangleTopRightCornerRadius=I,s.rectangleBottomLeftCornerRadius=C,s.rectangleBottomRightCornerRadius=S),e.horizontalConstraint&&typeof e.horizontalConstraint=="string"&&(s.horizontalConstraint=e.horizontalConstraint.toUpperCase()),e.verticalConstraint&&typeof e.verticalConstraint=="string"&&(s.verticalConstraint=e.verticalConstraint.toUpperCase());const h=e.constraints;if(h&&typeof h=="object"&&(!s.horizontalConstraint&&typeof h.horizontal=="string"&&(s.horizontalConstraint=h.horizontal.toUpperCase()),!s.verticalConstraint&&typeof h.vertical=="string"&&(s.verticalConstraint=h.vertical.toUpperCase())),e.layoutMode&&typeof e.layoutMode=="string"&&(s.layoutMode=e.layoutMode.toUpperCase()),e.layoutWrap&&typeof e.layoutWrap=="string"&&(s.layoutWrap=e.layoutWrap.toUpperCase()),e.primaryAxisSizingMode&&typeof e.primaryAxisSizingMode=="string"&&(s.primaryAxisSizingMode=e.primaryAxisSizingMode.toUpperCase()),e.counterAxisSizingMode&&typeof e.counterAxisSizingMode=="string"&&(s.counterAxisSizingMode=e.counterAxisSizingMode.toUpperCase()),e.primaryAxisAlignItems&&typeof e.primaryAxisAlignItems=="string"&&(s.primaryAxisAlignItems=e.primaryAxisAlignItems.toUpperCase()),e.counterAxisAlignItems&&typeof e.counterAxisAlignItems=="string"&&(s.counterAxisAlignItems=e.counterAxisAlignItems.toUpperCase()),e.layoutAlign&&typeof e.layoutAlign=="string"&&(s.layoutAlign=e.layoutAlign.toUpperCase()),e.layoutPositioning&&typeof e.layoutPositioning=="string"&&(s.layoutPositioning=e.layoutPositioning.toUpperCase()),e.layoutGrow!==void 0&&(s.layoutGrow=y(e.layoutGrow,0)),e.itemSpacing!==void 0&&(s.itemSpacing=y(e.itemSpacing,0)),e.paddingLeft!==void 0&&(s.paddingLeft=y(e.paddingLeft,0)),e.paddingRight!==void 0&&(s.paddingRight=y(e.paddingRight,0)),e.paddingTop!==void 0&&(s.paddingTop=y(e.paddingTop,0)),e.paddingBottom!==void 0&&(s.paddingBottom=y(e.paddingBottom,0)),t==="TEXT"){const R=typeof e.characters=="string"?e.characters:typeof e.text=="string"?e.text:"";R||a.push(`${n}: 文本节点缺少 characters,已使用空字符串`),s.characters=R,s.textData=$l(R),e.fontSize!==void 0&&(s.fontSize=ee(e.fontSize,16));const P=typeof e.fontFamily=="string"?e.fontFamily:"Inter",b=typeof e.fontStyle=="string"?e.fontStyle:"Regular",U=typeof e.fontPostScriptName=="string"?e.fontPostScriptName:typeof((L=e.fontName)==null?void 0:L.postscript)=="string"?e.fontName.postscript:"";s.fontName={family:P,style:b,postscript:U},e.textAlignHorizontal&&typeof e.textAlignHorizontal=="string"&&(s.textAlignHorizontal=e.textAlignHorizontal.toUpperCase()),e.textAlignVertical&&typeof e.textAlignVertical=="string"&&(s.textAlignVertical=e.textAlignVertical.toUpperCase()),s.textDecoration=jl(e.textDecoration),s.textCase=Jl(e.textCase),e.textAutoResize&&typeof e.textAutoResize=="string"&&(s.textAutoResize=e.textAutoResize.toUpperCase()),e.lineHeight!==void 0&&(s.lineHeight=xe(e.lineHeight,Math.max((s.fontSize||16)*1.2,1))),e.letterSpacing!==void 0&&(s.letterSpacing=xe(e.letterSpacing,0)),e.textTracking!==void 0&&(s.textTracking=y(e.textTracking,0)),l.textCount+=1}t==="SVG"&&(typeof e.svg=="string"&&e.svg.trim().length>0?(s.svg=e.svg,l.svgCount+=1):(a.push(`${n}: SVG 节点缺少 svg 内容,降级为 RECTANGLE`),s.type="RECTANGLE",delete s.svg)),s.type==="FRAME"&&(l.frameCount+=1);const o=[];i.forEach((R,P)=>{const b=ga(R,a,l,`${n}.${P}`);b&&o.push(b)}),o.length>0&&(s.children=o);const E=Da(s,n);return E.diagnostics.length>0&&a.push(...E.diagnostics),E.normalizedNode||null},Dn=e=>{const a=[],l={inputCount:Array.isArray(e)?e.length:0,outputCount:0,textCount:0,svgCount:0,frameCount:0};if(!Array.isArray(e))return a.push("输入 layers 不是数组"),{layers:[],diagnostics:a,stats:l};const n=e.map((i,t)=>ga(i,a,l,`root.${t}`)).filter(i=>!!i);return l.outputCount=n.length,{layers:n,diagnostics:a,stats:l}},Zl=new Set(["PAGE","SECTION","INSTANCE","COMPONENT","CANVAS"]),G=e=>!!e&&typeof e=="object"&&!Array.isArray(e),f=(e,a=0)=>{const l=typeof e=="number"?e:Number(e);return Number.isFinite(l)?l:a},ae=(e,a=1)=>{const l=f(e,a);return l>0?l:a},H=(e,a=1)=>{const l=f(e,a);return l>1?Math.max(0,Math.min(1,l/255)):Math.max(0,Math.min(1,l))},O=(e,a,l)=>{if(typeof e!="string")return l;const n=e.toUpperCase();return a.includes(n)?n:l},Ql=(e,a,l,n)=>{const i=typeof e=="string"?e.toUpperCase():"";return qe.includes(i)?i:Zl.has(i)||a?(n.push(`${l}: unsupported-node-type '${i||"UNKNOWN"}' -> fallback FRAME`),"FRAME"):i==="ELLIPSE"||i==="VECTOR"||i==="BOOLEAN_OPERATION"||i==="STAR"||i==="REGULAR_POLYGON"?(n.push(`${l}: unsupported-node-type '${i}' -> fallback RECTANGLE`),"RECTANGLE"):(n.push(`${l}: malformed-node-type -> fallback RECTANGLE`),m.nodeType)},Se=e=>G(e)?{r:H(e.r,0),g:H(e.g,0),b:H(e.b,0),a:H(e.a,1)}:null,Ta=e=>G(e)?{x:f(e.x,0),y:f(e.y,0)}:null,He=(e,a=0)=>{if(typeof e=="number")return{value:e,unit:"PIXELS"};if(!G(e))return{value:a,unit:"PIXELS"};const l=String(e.unit??e.units??"PIXELS").toUpperCase(),n=l==="PERCENT"||l==="%"?"PERCENT":l==="RAW"?"RAW":"PIXELS";return{value:f(e.value,a),unit:n}},ql=e=>{if(Array.isArray(e)&&e.length>=2){const a=Array.isArray(e[0])?e[0]:[],l=Array.isArray(e[1])?e[1]:[];return{m00:f(a[0],1),m01:f(a[1],0),m02:f(a[2],0),m10:f(l[0],0),m11:f(l[1],1),m12:f(l[2],0)}}if(G(e))return{m00:f(e.m00,1),m01:f(e.m01,0),m02:f(e.m02,0),m10:f(e.m10,0),m11:f(e.m11,1),m12:f(e.m12,0)}},en=(e,a,l)=>{if(!G(e))return l.push(`${a}: malformed-paint skipped`),null;const n=typeof e.type=="string"?e.type.toUpperCase():"",i=O(e.type,Ae,m.paint.type);Ae.includes(n)||l.push(`${a}: unsupported-paint-type '${n||"UNKNOWN"}' -> fallback ${i}`);const t={type:i,visible:e.visible!==!1,blendMode:typeof e.blendMode=="string"?e.blendMode:void 0,opacity:e.opacity===void 0?void 0:H(e.opacity,1)};if(i==="SOLID")return{...t,type:i,color:Se(e.color)||void 0};if(i==="IMAGE"){const u=G(e.dimensions)?e.dimensions:void 0,p=e.originalImageWidth??e.width??(u==null?void 0:u.width)??(u==null?void 0:u.w),A=e.originalImageHeight??e.height??(u==null?void 0:u.height)??(u==null?void 0:u.h);return typeof e.svg=="string"||e.intArr!==void 0||e.bytes!==void 0||l.push(`${a}: malformed-image-paint missing image payload fields`),{...t,type:i,svg:typeof e.svg=="string"?e.svg:void 0,intArr:e.intArr,bytes:e.bytes,originalImageWidth:p===void 0?void 0:ae(p,1),originalImageHeight:A===void 0?void 0:ae(A,1),imageScaleMode:O(e.imageScaleMode??e.scaleMode,oa,m.paint.imageScaleMode),transform:ql(e.transform??e.imageTransform),rotation:e.rotation===void 0?void 0:f(e.rotation,0),scale:e.scale===void 0&&e.scalingFactor===void 0?void 0:f(e.scale??e.scalingFactor,1)}}const r=Array.isArray(e.gradientStops)?e.gradientStops.map(u=>{if(!G(u))return l.push(`${a}: malformed-gradient-stop skipped`),null;const p=Se(u.color);return p?{color:p,position:H(u.position,0)}:(l.push(`${a}: malformed-gradient-stop color skipped`),null)}).filter(u=>!!u):void 0,s=Array.isArray(e.gradientHandlePositions)?e.gradientHandlePositions.map(u=>Ta(u)).filter(u=>!!u):void 0;return{...t,type:i,gradientStops:r,gradientHandlePositions:s}},we=(e,a,l)=>{if(!Array.isArray(e))return;const n=e.map((i,t)=>en(i,`${a}.${t}`,l)).filter(i=>!!i);return n.length>0?n:void 0},an=(e,a,l)=>{if(!Array.isArray(e))return;const n=e.map((i,t)=>{if(!G(i))return l.push(`${a}.${t}: malformed-effect skipped`),null;const r=typeof i.type=="string"?i.type.toUpperCase():"",s=r==="LAYER_BLUR"?"FOREGROUND_BLUR":r==="BACKGROUND_BLUR"?"BACKGROUND_BLUR":r;return ea.includes(s)?{type:s,visible:i.visible!==!1,radius:f(i.radius,0),color:Se(i.color)||void 0,offset:Ta(i.offset)||void 0,blendMode:typeof i.blendMode=="string"?i.blendMode:void 0,spread:i.spread===void 0?void 0:f(i.spread,0)}:(l.push(`${a}.${t}: unsupported-effect-type '${r||"UNKNOWN"}' skipped`),null)}).filter(i=>!!i);return n.length>0?n:void 0},ln=e=>{const a=e.split(` +`);return{characters:e,lines:a.map(()=>({lineType:"PLAIN",styleId:0,indentationLevel:0,sourceDirectionality:"AUTO",listStartOffset:0,isFirstLineOfList:!1}))}},nn=(e,a,l,n)=>{const i=typeof a.characters=="string"?a.characters:typeof a.text=="string"?a.text:"";typeof a.characters!="string"&&typeof a.text!="string"&&n.push(`${l}: malformed-text missing characters/text -> fallback empty string`);const t=G(a.fontName)?a.fontName:void 0;e.characters=i,e.textData=ln(i),e.fontSize=ae(a.fontSize,m.text.fontSize),e.fontName={family:typeof(t==null?void 0:t.family)=="string"?t.family:typeof a.fontFamily=="string"?a.fontFamily:m.text.fontFamily,style:typeof(t==null?void 0:t.style)=="string"?t.style:typeof a.fontStyle=="string"?a.fontStyle:m.text.fontStyle,postscript:typeof(t==null?void 0:t.postscript)=="string"?t.postscript:typeof a.fontPostScriptName=="string"?a.fontPostScriptName:""},e.textAlignHorizontal=O(a.textAlignHorizontal,ca,m.text.textAlignHorizontal),e.textAlignVertical=O(a.textAlignVertical,ma,m.text.textAlignVertical),e.textDecoration=O(a.textDecoration,pa,m.text.textDecoration),e.textCase=O(a.textCase,fa,m.text.textCase),e.textAutoResize=O(a.textAutoResize,ya,m.text.textAutoResize),e.lineHeight=He(a.lineHeight,Math.max(e.fontSize*1.2,1)),e.letterSpacing=He(a.letterSpacing,0),e.textTracking=f(a.textTracking,0)},sn=(e,a)=>{const l=G(a.constraints)?a.constraints:void 0,i=(typeof a.layoutMode=="string"?a.layoutMode.trim().toUpperCase():void 0)==="GRID",t=a.horizontalConstraint??(l==null?void 0:l.horizontal),r=a.verticalConstraint??(l==null?void 0:l.vertical);t!==void 0&&(e.horizontalConstraint=O(t,ra,m.constraints.horizontal)),r!==void 0&&(e.verticalConstraint=O(r,ua,m.constraints.vertical)),a.layoutMode!==void 0&&(e.layoutMode=i?"HORIZONTAL":O(a.layoutMode,aa,m.layout.mode)),a.layoutWrap!==void 0?e.layoutWrap=O(a.layoutWrap,la,m.layout.wrap):i&&(e.layoutWrap="WRAP"),a.primaryAxisSizingMode!==void 0&&(e.primaryAxisSizingMode=O(a.primaryAxisSizingMode,re,m.layout.primaryAxisSizingMode)),a.counterAxisSizingMode!==void 0&&(e.counterAxisSizingMode=O(a.counterAxisSizingMode,re,m.layout.counterAxisSizingMode)),a.primaryAxisAlignItems!==void 0&&(e.primaryAxisAlignItems=O(a.primaryAxisAlignItems,na,m.layout.primaryAxisAlignItems)),a.counterAxisAlignItems!==void 0&&(e.counterAxisAlignItems=O(a.counterAxisAlignItems,ia,m.layout.counterAxisAlignItems)),a.layoutAlign!==void 0&&(e.layoutAlign=O(a.layoutAlign,sa,m.layout.layoutAlign)),a.layoutPositioning!==void 0&&(e.layoutPositioning=O(a.layoutPositioning,ta,m.layout.layoutPositioning)),a.layoutGrow!==void 0&&(e.layoutGrow=f(a.layoutGrow,0)),i?(a.gridColumnGap!==void 0?e.itemSpacing=f(a.gridColumnGap,0):a.itemSpacing!==void 0&&(e.itemSpacing=f(a.itemSpacing,0)),a.gridRowGap!==void 0?e.counterAxisSpacing=f(a.gridRowGap,0):a.counterAxisSpacing!==void 0&&(e.counterAxisSpacing=f(a.counterAxisSpacing,0))):(a.itemSpacing!==void 0&&(e.itemSpacing=f(a.itemSpacing,0)),a.counterAxisSpacing!==void 0&&(e.counterAxisSpacing=f(a.counterAxisSpacing,0))),a.paddingLeft!==void 0&&(e.paddingLeft=f(a.paddingLeft,0)),a.paddingRight!==void 0&&(e.paddingRight=f(a.paddingRight,0)),a.paddingTop!==void 0&&(e.paddingTop=f(a.paddingTop,0)),a.paddingBottom!==void 0&&(e.paddingBottom=f(a.paddingBottom,0))},Ia=(e,a,l,n)=>{if(!G(e))return l.push(`${a}: malformed-node skipped`),null;const i=Array.isArray(e.children)?e.children:[],t=Ql(e.type,i.length>0,a,l),r=typeof e.name=="string"&&e.name.trim().length>0?e.name:t,s={type:t,name:r,x:f(e.x,m.geometry.x),y:f(e.y,m.geometry.y),width:ae(e.width,m.geometry.width),height:ae(e.height,m.geometry.height),visible:e.visible!==!1};e.opacity!==void 0&&(s.opacity=H(e.opacity,m.geometry.opacity)),e.rotation!==void 0&&(s.rotation=f(e.rotation,m.geometry.rotation)),typeof e.blendMode=="string"&&(s.blendMode=e.blendMode.toUpperCase()),e.clipsContent!==void 0&&(s.clipsContent=!!e.clipsContent),s.fills=we(e.fills,`${a}.fills`,l),s.strokes=we(e.strokes,`${a}.strokes`,l),e.strokeWeight!==void 0&&(s.strokeWeight=f(e.strokeWeight,1)),typeof e.strokeAlign=="string"&&(s.strokeAlign=e.strokeAlign.toUpperCase()),typeof e.strokeCap=="string"&&(s.strokeCap=e.strokeCap.toUpperCase()),typeof e.strokeJoin=="string"&&(s.strokeJoin=e.strokeJoin.toUpperCase()),Array.isArray(e.dashPattern)&&e.dashPattern.length>0&&(s.dashPattern=e.dashPattern.map(I=>f(I,0))),s.effects=an(e.effects,`${a}.effects`,l),e.cornerRadius!==void 0&&(s.cornerRadius=f(e.cornerRadius,0));const u=f(e.rectangleTopLeftCornerRadius??e.topLeftRadius,0),p=f(e.rectangleTopRightCornerRadius??e.topRightRadius,0),A=f(e.rectangleBottomLeftCornerRadius??e.bottomLeftRadius,0),v=f(e.rectangleBottomRightCornerRadius??e.bottomRightRadius,0);if((u>0||p>0||A>0||v>0)&&(s.rectangleCornerRadiiIndependent=!0,s.rectangleTopLeftCornerRadius=u,s.rectangleTopRightCornerRadius=p,s.rectangleBottomLeftCornerRadius=A,s.rectangleBottomRightCornerRadius=v),sn(s,e),t==="TEXT"&&nn(s,e,a,l),t==="SVG"&&(typeof e.svg=="string"&&e.svg.trim().length>0?s.svg=e.svg:l.push(`${a}: malformed-svg-node missing svg payload`)),Array.isArray(e.children)){const I=e.children.map((C,S)=>Ia(C,`${a}.children.${S}`,l,n)).filter(C=>!!C);I.length>0&&(s.children=I)}else e.children!==void 0&&l.push(`${a}: malformed-children ignored`);return n.nodeTypeCounts[t]+=1,s},We=e=>{const a=new Set,l=[];return e.forEach(n=>{a.has(n)||(a.add(n),l.push(n))}),l},vn=(e,a={})=>{const l=[],n={inputCount:Array.isArray(e)?e.length:0,outputCount:0,warningCount:0,nodeTypeCounts:{FRAME:0,GROUP:0,RECTANGLE:0,LINE:0,TEXT:0,SVG:0}},i=typeof a.rootPath=="string"&&a.rootPath.trim()?a.rootPath:"root";if(!Array.isArray(e))return l.push(`${i}: malformed-layer-payload expected array`),{nodes:[],diagnostics:l,valid:!1,stats:{...n,warningCount:l.length}};const t=e.map((A,v)=>Ia(A,`${i}.${v}`,l,n)).filter(A=>!!A),r=We(l);if(!(a.validateContract!==!1))return n.outputCount=t.length,n.warningCount=r.length,{nodes:t,diagnostics:r,valid:r.length===0,stats:n};const u=va(t),p=We([...r,...u.diagnostics]);return n.outputCount=u.normalizedNodes.length,n.warningCount=p.length,{nodes:u.normalizedNodes,diagnostics:p,valid:u.valid,stats:n}},En=async e=>({skipped:!1,data:await Qe(e)}),Sn=async e=>ge()?{skipped:!1,data:await Ne(e)}:{skipped:!0,reason:"clipboard_unavailable"},gn=async e=>ge()?{skipped:!1,data:await Bl(e)}:{skipped:!0,reason:"clipboard_unavailable"},Tn=async()=>ge()?{skipped:!1,data:await Hl()}:{skipped:!0,reason:"clipboard_unavailable"};var tn=(e=>(e[e.Solid=1]="Solid",e[e.Gradient=2]="Gradient",e[e.Image=3]="Image",e))(tn||{}),rn=(e=>(e[e.Group=0]="Group",e[e.Layer=1]="Layer",e[e.Artboard=2]="Artboard",e))(rn||{});function un(e){for(const a of e){if(!a||typeof a!="object")continue;if(Number(a.itemType)===2)return!0}return!1}function on(e){if(typeof e!="string")return null;let a=e.trim();if(!a)return null;if(a.startsWith("```")&&(a=a.replace(/^```[a-zA-Z]*\s*/u,"").replace(/\s*```$/u,"").trim()),a=a.replace(/^\uFEFF/u,""),!a.startsWith("{")&&!a.startsWith("[")){const l=a.split(/\r?\n/u);for(;l.length>0;){const n=l[0].trim();if(!n||n.startsWith("//")){l.shift();continue}break}a=l.join(` +`).trim()}if(!a.startsWith("{")&&!a.startsWith("["))return null;try{return JSON.parse(a)}catch{return null}}function cn(e){var l;if(!e||typeof e!="object")return!1;const a=(l=e==null?void 0:e.scene)==null?void 0:l.items;return!Array.isArray(a)||a.length===0?!1:un(a)}function Q(e,a=new Set){if(e==null)return null;const l=on(e);if(l!==null)return Q(l,a);if(cn(e))return e;if(typeof e!="object"||a.has(e))return null;if(a.add(e),Array.isArray(e)){for(const i of e){const t=Q(i,a);if(t)return t}return null}const n=["result","data","payload","value","document","doc","axure"];for(const i of n)if(i in e){const t=Q(e[i],a);if(t)return t}for(const i of Object.values(e)){const t=Q(i,a);if(t)return t}return null}function In(e){if(!Array.isArray(e))return null;const a=e.map(l=>l&&typeof l=="object"&&"result"in l?l.result:l);return Q(a)}export{tn as FillType,rn as ItemType,ia as STANDARD_COUNTER_AXIS_ALIGN,m as STANDARD_FIGMA_CONTRACT_FALLBACKS,ea as STANDARD_FIGMA_EFFECT_TYPES,qe as STANDARD_FIGMA_NODE_TYPES,Ae as STANDARD_FIGMA_PAINT_TYPES,ra as STANDARD_HORIZONTAL_CONSTRAINTS,oa as STANDARD_IMAGE_SCALE_MODES,sa as STANDARD_LAYOUT_ALIGN,aa as STANDARD_LAYOUT_MODES,ta as STANDARD_LAYOUT_POSITIONING,re as STANDARD_LAYOUT_SIZING,la as STANDARD_LAYOUT_WRAP,na as STANDARD_PRIMARY_AXIS_ALIGN,ca as STANDARD_TEXT_ALIGN_HORIZONTAL,ma as STANDARD_TEXT_ALIGN_VERTICAL,ya as STANDARD_TEXT_AUTO_RESIZE,fa as STANDARD_TEXT_CASE,pa as STANDARD_TEXT_DECORATION,ua as STANDARD_VERTICAL_CONSTRAINTS,Qe as buildKiwiClipboardFragment,yl as buildKiwiDebugRectangleMessage,pl as buildKiwiMessageFromLayers,vn as convertLayersToStandardFigmaNodes,Hl as copyDebugRectangleToFigmaWithKiwi,Ne as copyLayersToFigmaClipboard,Bl as copyToFigmaWithKiwi,Q as extractAxurePayload,$e as getProtocolVersion,Cn as hasChromeRuntime,ge as hasClipboardEnvironment,Mn as hasDomEnvironment,On as htmlToAxure,hn as htmlToFigma,cn as isValidAxurePayload,Re as loadFigmaProtocolAssets,Dn as mapLayersToCompleteFigmaNodes,In as normalizeAxurePayloadFromFrameResults,Ln as processWithOriginalLogic,bn as processWithSnapDOMImplementation,En as safeBuildKiwiClipboardFragment,Tn as safeCopyDebugRectangleToFigmaWithKiwi,Sn as safeCopyLayersToFigmaClipboard,gn as safeCopyToFigmaWithKiwi,Gn as safeHtmlToAxure,Pn as safeHtmlToFigma,Da as validateAndNormalizeStandardFigmaNode,Ie as validateFigmaSchema,va as validateStandardFigmaLayerPayload}; diff --git a/axhub-make/admin/assets/chunks/index2.js b/axhub-make/admin/assets/chunks/index2.js new file mode 100644 index 0000000..a32136b --- /dev/null +++ b/axhub-make/admin/assets/chunks/index2.js @@ -0,0 +1,2 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/index4.js","assets/chunks/fills-generator.js","assets/chunks/preload-helper.js","assets/chunks/html-to-axure.js"])))=>i.map(i=>d[i]); +import{dg as v}from"./vendor-common.js?v=1775123024591";import{_ as f}from"./preload-helper.js?v=1775123024591";const s=()=>typeof window<"u"&&typeof document<"u",y=()=>typeof navigator<"u"&&!!navigator.clipboard&&typeof navigator.clipboard.write=="function"&&typeof ClipboardItem<"u",S=()=>{var r;return typeof globalThis<"u"&&typeof globalThis.chrome<"u"&&!!((r=globalThis.chrome)!=null&&r.runtime)},l={};l.ByteBuffer=v;l.MessageType={0:"JOIN_START",1:"NODE_CHANGES",2:"USER_CHANGES",3:"JOIN_END",4:"SIGNAL",5:"STYLE",6:"STYLE_SET",7:"JOIN_START_SKIP_RELOAD",8:"NOTIFY_SHOULD_UPGRADE",9:"UPGRADE_DONE",10:"UPGRADE_REFRESH",11:"SCENE_GRAPH_QUERY",12:"SCENE_GRAPH_REPLY",13:"DIFF",14:"CLIENT_BROADCAST",15:"JOIN_START_JOURNALED",16:"STREAM_START",17:"STREAM_END",18:"INTERACTIVE_SLIDE_CHANGE",19:"RECONNECT_SCENE_GRAPH_QUERY",20:"RECONNECT_SCENE_GRAPH_REPLY",21:"JOIN_END_INCREMENTAL_RECONNECT",22:"NODE_STATUS_CHANGE",JOIN_START:0,NODE_CHANGES:1,USER_CHANGES:2,JOIN_END:3,SIGNAL:4,STYLE:5,STYLE_SET:6,JOIN_START_SKIP_RELOAD:7,NOTIFY_SHOULD_UPGRADE:8,UPGRADE_DONE:9,UPGRADE_REFRESH:10,SCENE_GRAPH_QUERY:11,SCENE_GRAPH_REPLY:12,DIFF:13,CLIENT_BROADCAST:14,JOIN_START_JOURNALED:15,STREAM_START:16,STREAM_END:17,INTERACTIVE_SLIDE_CHANGE:18,RECONNECT_SCENE_GRAPH_QUERY:19,RECONNECT_SCENE_GRAPH_REPLY:20,JOIN_END_INCREMENTAL_RECONNECT:21,NODE_STATUS_CHANGE:22};l.Axis={0:"X",1:"Y",X:0,Y:1};l.Access={0:"READ_ONLY",1:"READ_WRITE",READ_ONLY:0,READ_WRITE:1};l.NodePhase={0:"CREATED",1:"REMOVED",CREATED:0,REMOVED:1};l.WindingRule={0:"NONZERO",1:"ODD",NONZERO:0,ODD:1};l.NodeType={0:"NONE",1:"DOCUMENT",2:"CANVAS",3:"GROUP",4:"FRAME",5:"BOOLEAN_OPERATION",6:"VECTOR",7:"STAR",8:"LINE",9:"ELLIPSE",10:"RECTANGLE",11:"REGULAR_POLYGON",12:"ROUNDED_RECTANGLE",13:"TEXT",14:"SLICE",15:"SYMBOL",16:"INSTANCE",17:"STICKY",18:"SHAPE_WITH_TEXT",19:"CONNECTOR",20:"CODE_BLOCK",21:"WIDGET",22:"STAMP",23:"MEDIA",24:"HIGHLIGHT",25:"SECTION",26:"SECTION_OVERLAY",27:"WASHI_TAPE",28:"VARIABLE",29:"TABLE",30:"TABLE_CELL",31:"VARIABLE_SET",32:"SLIDE",33:"ASSISTED_LAYOUT",34:"INTERACTIVE_SLIDE_ELEMENT",35:"VARIABLE_OVERRIDE",36:"MODULE",37:"SLIDE_GRID",38:"SLIDE_ROW",39:"RESPONSIVE_SET",40:"CODE_COMPONENT",41:"TEXT_PATH",NONE:0,DOCUMENT:1,CANVAS:2,GROUP:3,FRAME:4,BOOLEAN_OPERATION:5,VECTOR:6,STAR:7,LINE:8,ELLIPSE:9,RECTANGLE:10,REGULAR_POLYGON:11,ROUNDED_RECTANGLE:12,TEXT:13,SLICE:14,SYMBOL:15,INSTANCE:16,STICKY:17,SHAPE_WITH_TEXT:18,CONNECTOR:19,CODE_BLOCK:20,WIDGET:21,STAMP:22,MEDIA:23,HIGHLIGHT:24,SECTION:25,SECTION_OVERLAY:26,WASHI_TAPE:27,VARIABLE:28,TABLE:29,TABLE_CELL:30,VARIABLE_SET:31,SLIDE:32,ASSISTED_LAYOUT:33,INTERACTIVE_SLIDE_ELEMENT:34,VARIABLE_OVERRIDE:35,MODULE:36,SLIDE_GRID:37,SLIDE_ROW:38,RESPONSIVE_SET:39,CODE_COMPONENT:40,TEXT_PATH:41};l.ShapeWithTextType={0:"SQUARE",1:"ELLIPSE",2:"DIAMOND",3:"TRIANGLE_UP",4:"TRIANGLE_DOWN",5:"ROUNDED_RECTANGLE",6:"PARALLELOGRAM_RIGHT",7:"PARALLELOGRAM_LEFT",8:"ENG_DATABASE",9:"ENG_QUEUE",10:"ENG_FILE",11:"ENG_FOLDER",12:"TRAPEZOID",13:"PREDEFINED_PROCESS",14:"SHIELD",15:"DOCUMENT_SINGLE",16:"DOCUMENT_MULTIPLE",17:"MANUAL_INPUT",18:"HEXAGON",19:"CHEVRON",20:"PENTAGON",21:"OCTAGON",22:"STAR",23:"PLUS",24:"ARROW_LEFT",25:"ARROW_RIGHT",26:"SUMMING_JUNCTION",27:"OR",28:"SPEECH_BUBBLE",29:"INTERNAL_STORAGE",SQUARE:0,ELLIPSE:1,DIAMOND:2,TRIANGLE_UP:3,TRIANGLE_DOWN:4,ROUNDED_RECTANGLE:5,PARALLELOGRAM_RIGHT:6,PARALLELOGRAM_LEFT:7,ENG_DATABASE:8,ENG_QUEUE:9,ENG_FILE:10,ENG_FOLDER:11,TRAPEZOID:12,PREDEFINED_PROCESS:13,SHIELD:14,DOCUMENT_SINGLE:15,DOCUMENT_MULTIPLE:16,MANUAL_INPUT:17,HEXAGON:18,CHEVRON:19,PENTAGON:20,OCTAGON:21,STAR:22,PLUS:23,ARROW_LEFT:24,ARROW_RIGHT:25,SUMMING_JUNCTION:26,OR:27,SPEECH_BUBBLE:28,INTERNAL_STORAGE:29};l.BlendMode={0:"PASS_THROUGH",1:"NORMAL",2:"DARKEN",3:"MULTIPLY",4:"LINEAR_BURN",5:"COLOR_BURN",6:"LIGHTEN",7:"SCREEN",8:"LINEAR_DODGE",9:"COLOR_DODGE",10:"OVERLAY",11:"SOFT_LIGHT",12:"HARD_LIGHT",13:"DIFFERENCE",14:"EXCLUSION",15:"HUE",16:"SATURATION",17:"COLOR",18:"LUMINOSITY",PASS_THROUGH:0,NORMAL:1,DARKEN:2,MULTIPLY:3,LINEAR_BURN:4,COLOR_BURN:5,LIGHTEN:6,SCREEN:7,LINEAR_DODGE:8,COLOR_DODGE:9,OVERLAY:10,SOFT_LIGHT:11,HARD_LIGHT:12,DIFFERENCE:13,EXCLUSION:14,HUE:15,SATURATION:16,COLOR:17,LUMINOSITY:18};l.PaintType={0:"SOLID",1:"GRADIENT_LINEAR",2:"GRADIENT_RADIAL",3:"GRADIENT_ANGULAR",4:"GRADIENT_DIAMOND",5:"IMAGE",6:"EMOJI",7:"VIDEO",SOLID:0,GRADIENT_LINEAR:1,GRADIENT_RADIAL:2,GRADIENT_ANGULAR:3,GRADIENT_DIAMOND:4,IMAGE:5,EMOJI:6,VIDEO:7};l.ImageScaleMode={0:"STRETCH",1:"FIT",2:"FILL",3:"TILE",STRETCH:0,FIT:1,FILL:2,TILE:3};l.EffectType={0:"INNER_SHADOW",1:"DROP_SHADOW",2:"FOREGROUND_BLUR",3:"BACKGROUND_BLUR",INNER_SHADOW:0,DROP_SHADOW:1,FOREGROUND_BLUR:2,BACKGROUND_BLUR:3};l.TextCase={0:"ORIGINAL",1:"UPPER",2:"LOWER",3:"TITLE",4:"SMALL_CAPS",5:"SMALL_CAPS_FORCED",ORIGINAL:0,UPPER:1,LOWER:2,TITLE:3,SMALL_CAPS:4,SMALL_CAPS_FORCED:5};l.TextDecoration={0:"NONE",1:"UNDERLINE",2:"STRIKETHROUGH",NONE:0,UNDERLINE:1,STRIKETHROUGH:2};l.TextDecorationStyle={0:"SOLID",1:"DOTTED",2:"WAVY",SOLID:0,DOTTED:1,WAVY:2};l.LeadingTrim={0:"NONE",1:"CAP_HEIGHT",NONE:0,CAP_HEIGHT:1};l.NumberUnits={0:"RAW",1:"PIXELS",2:"PERCENT",RAW:0,PIXELS:1,PERCENT:2};l.ConstraintType={0:"MIN",1:"CENTER",2:"MAX",3:"STRETCH",4:"SCALE",5:"FIXED_MIN",6:"FIXED_MAX",MIN:0,CENTER:1,MAX:2,STRETCH:3,SCALE:4,FIXED_MIN:5,FIXED_MAX:6};l.StrokeAlign={0:"CENTER",1:"INSIDE",2:"OUTSIDE",CENTER:0,INSIDE:1,OUTSIDE:2};l.StrokeCap={0:"NONE",1:"ROUND",2:"SQUARE",3:"ARROW_LINES",4:"ARROW_EQUILATERAL",5:"DIAMOND_FILLED",6:"TRIANGLE_FILLED",7:"HIGHLIGHT",8:"WASHI_TAPE_1",9:"WASHI_TAPE_2",10:"WASHI_TAPE_3",11:"WASHI_TAPE_4",12:"WASHI_TAPE_5",13:"WASHI_TAPE_6",14:"CIRCLE_FILLED",NONE:0,ROUND:1,SQUARE:2,ARROW_LINES:3,ARROW_EQUILATERAL:4,DIAMOND_FILLED:5,TRIANGLE_FILLED:6,HIGHLIGHT:7,WASHI_TAPE_1:8,WASHI_TAPE_2:9,WASHI_TAPE_3:10,WASHI_TAPE_4:11,WASHI_TAPE_5:12,WASHI_TAPE_6:13,CIRCLE_FILLED:14};l.StrokeJoin={0:"MITER",1:"BEVEL",2:"ROUND",MITER:0,BEVEL:1,ROUND:2};l.BooleanOperation={0:"UNION",1:"INTERSECT",2:"SUBTRACT",3:"XOR",UNION:0,INTERSECT:1,SUBTRACT:2,XOR:3};l.TextAlignHorizontal={0:"LEFT",1:"CENTER",2:"RIGHT",3:"JUSTIFIED",LEFT:0,CENTER:1,RIGHT:2,JUSTIFIED:3};l.TextAlignVertical={0:"TOP",1:"CENTER",2:"BOTTOM",TOP:0,CENTER:1,BOTTOM:2};l.MouseCursor={0:"DEFAULT",1:"CROSSHAIR",2:"EYEDROPPER",3:"HAND",4:"PAINT_BUCKET",5:"PEN",6:"PENCIL",7:"MARKER",8:"ERASER",9:"HIGHLIGHTER",10:"LASSO",DEFAULT:0,CROSSHAIR:1,EYEDROPPER:2,HAND:3,PAINT_BUCKET:4,PEN:5,PENCIL:6,MARKER:7,ERASER:8,HIGHLIGHTER:9,LASSO:10};l.VectorMirror={0:"NONE",1:"ANGLE",2:"ANGLE_AND_LENGTH",NONE:0,ANGLE:1,ANGLE_AND_LENGTH:2};l.DashMode={0:"CLIP",1:"STRETCH",CLIP:0,STRETCH:1};l.ImageType={0:"PNG",1:"JPEG",2:"SVG",3:"PDF",PNG:0,JPEG:1,SVG:2,PDF:3};l.ExportConstraintType={0:"CONTENT_SCALE",1:"CONTENT_WIDTH",2:"CONTENT_HEIGHT",CONTENT_SCALE:0,CONTENT_WIDTH:1,CONTENT_HEIGHT:2};l.LayoutGridType={0:"MIN",1:"CENTER",2:"STRETCH",3:"MAX",MIN:0,CENTER:1,STRETCH:2,MAX:3};l.LayoutGridPattern={0:"STRIPES",1:"GRID",STRIPES:0,GRID:1};l.TextAutoResize={0:"NONE",1:"WIDTH_AND_HEIGHT",2:"HEIGHT",NONE:0,WIDTH_AND_HEIGHT:1,HEIGHT:2};l.TextTruncation={0:"DISABLED",1:"ENDING",DISABLED:0,ENDING:1};l.StyleSetType={0:"PERSONAL",1:"TEAM",2:"CUSTOM",3:"FREQUENCY",4:"TEMPORARY",PERSONAL:0,TEAM:1,CUSTOM:2,FREQUENCY:3,TEMPORARY:4};l.StyleSetContentType={0:"SOLID",1:"GRADIENT",2:"IMAGE",SOLID:0,GRADIENT:1,IMAGE:2};l.StackMode={0:"NONE",1:"HORIZONTAL",2:"VERTICAL",NONE:0,HORIZONTAL:1,VERTICAL:2};l.StackAlign={0:"MIN",1:"CENTER",2:"MAX",3:"BASELINE",MIN:0,CENTER:1,MAX:2,BASELINE:3};l.StackCounterAlign={0:"MIN",1:"CENTER",2:"MAX",3:"STRETCH",4:"AUTO",5:"BASELINE",MIN:0,CENTER:1,MAX:2,STRETCH:3,AUTO:4,BASELINE:5};l.StackJustify={0:"MIN",1:"CENTER",2:"MAX",3:"SPACE_EVENLY",4:"SPACE_BETWEEN",MIN:0,CENTER:1,MAX:2,SPACE_EVENLY:3,SPACE_BETWEEN:4};l.StackSize={0:"FIXED",1:"RESIZE_TO_FIT",2:"RESIZE_TO_FIT_WITH_IMPLICIT_SIZE",FIXED:0,RESIZE_TO_FIT:1,RESIZE_TO_FIT_WITH_IMPLICIT_SIZE:2};l.StackPositioning={0:"AUTO",1:"ABSOLUTE",AUTO:0,ABSOLUTE:1};l.StackWrap={0:"NO_WRAP",1:"WRAP",NO_WRAP:0,WRAP:1};l.StackCounterAlignContent={0:"AUTO",1:"SPACE_BETWEEN",AUTO:0,SPACE_BETWEEN:1};l.ConnectionType={0:"NONE",1:"INTERNAL_NODE",2:"URL",3:"BACK",4:"CLOSE",5:"SET_VARIABLE",6:"UPDATE_MEDIA_RUNTIME",7:"CONDITIONAL",8:"SET_VARIABLE_MODE",NONE:0,INTERNAL_NODE:1,URL:2,BACK:3,CLOSE:4,SET_VARIABLE:5,UPDATE_MEDIA_RUNTIME:6,CONDITIONAL:7,SET_VARIABLE_MODE:8};l.InteractionType={0:"ON_CLICK",1:"AFTER_TIMEOUT",2:"MOUSE_IN",3:"MOUSE_OUT",4:"ON_HOVER",5:"MOUSE_DOWN",6:"MOUSE_UP",7:"ON_PRESS",8:"NONE",9:"DRAG",10:"ON_KEY_DOWN",11:"ON_VOICE",12:"ON_MEDIA_HIT",13:"ON_MEDIA_END",14:"MOUSE_ENTER",15:"MOUSE_LEAVE",ON_CLICK:0,AFTER_TIMEOUT:1,MOUSE_IN:2,MOUSE_OUT:3,ON_HOVER:4,MOUSE_DOWN:5,MOUSE_UP:6,ON_PRESS:7,NONE:8,DRAG:9,ON_KEY_DOWN:10,ON_VOICE:11,ON_MEDIA_HIT:12,ON_MEDIA_END:13,MOUSE_ENTER:14,MOUSE_LEAVE:15};l.TransitionType={0:"INSTANT_TRANSITION",1:"DISSOLVE",2:"FADE",3:"SLIDE_FROM_LEFT",4:"SLIDE_FROM_RIGHT",5:"SLIDE_FROM_TOP",6:"SLIDE_FROM_BOTTOM",7:"PUSH_FROM_LEFT",8:"PUSH_FROM_RIGHT",9:"PUSH_FROM_TOP",10:"PUSH_FROM_BOTTOM",11:"MOVE_FROM_LEFT",12:"MOVE_FROM_RIGHT",13:"MOVE_FROM_TOP",14:"MOVE_FROM_BOTTOM",15:"SLIDE_OUT_TO_LEFT",16:"SLIDE_OUT_TO_RIGHT",17:"SLIDE_OUT_TO_TOP",18:"SLIDE_OUT_TO_BOTTOM",19:"MOVE_OUT_TO_LEFT",20:"MOVE_OUT_TO_RIGHT",21:"MOVE_OUT_TO_TOP",22:"MOVE_OUT_TO_BOTTOM",23:"MAGIC_MOVE",24:"SMART_ANIMATE",25:"SCROLL_ANIMATE",INSTANT_TRANSITION:0,DISSOLVE:1,FADE:2,SLIDE_FROM_LEFT:3,SLIDE_FROM_RIGHT:4,SLIDE_FROM_TOP:5,SLIDE_FROM_BOTTOM:6,PUSH_FROM_LEFT:7,PUSH_FROM_RIGHT:8,PUSH_FROM_TOP:9,PUSH_FROM_BOTTOM:10,MOVE_FROM_LEFT:11,MOVE_FROM_RIGHT:12,MOVE_FROM_TOP:13,MOVE_FROM_BOTTOM:14,SLIDE_OUT_TO_LEFT:15,SLIDE_OUT_TO_RIGHT:16,SLIDE_OUT_TO_TOP:17,SLIDE_OUT_TO_BOTTOM:18,MOVE_OUT_TO_LEFT:19,MOVE_OUT_TO_RIGHT:20,MOVE_OUT_TO_TOP:21,MOVE_OUT_TO_BOTTOM:22,MAGIC_MOVE:23,SMART_ANIMATE:24,SCROLL_ANIMATE:25};l.EasingType={0:"IN_CUBIC",1:"OUT_CUBIC",2:"INOUT_CUBIC",3:"LINEAR",4:"IN_BACK_CUBIC",5:"OUT_BACK_CUBIC",6:"INOUT_BACK_CUBIC",7:"CUSTOM_CUBIC",8:"SPRING",9:"GENTLE_SPRING",10:"CUSTOM_SPRING",11:"SPRING_PRESET_ONE",12:"SPRING_PRESET_TWO",13:"SPRING_PRESET_THREE",IN_CUBIC:0,OUT_CUBIC:1,INOUT_CUBIC:2,LINEAR:3,IN_BACK_CUBIC:4,OUT_BACK_CUBIC:5,INOUT_BACK_CUBIC:6,CUSTOM_CUBIC:7,SPRING:8,GENTLE_SPRING:9,CUSTOM_SPRING:10,SPRING_PRESET_ONE:11,SPRING_PRESET_TWO:12,SPRING_PRESET_THREE:13};l.ScrollDirection={0:"NONE",1:"HORIZONTAL",2:"VERTICAL",3:"BOTH",NONE:0,HORIZONTAL:1,VERTICAL:2,BOTH:3};l.ScrollContractedState={0:"EXPANDED",1:"CONTRACTED",EXPANDED:0,CONTRACTED:1};l.decodeGUID=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.sessionID=r.readVarUint(),e.localID=r.readVarUint(),e};l.encodeGUID=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.sessionID;if(t!=null)e.writeVarUint(t);else throw new Error('Missing required field "sessionID"');var t=r.localID;if(t!=null)e.writeVarUint(t);else throw new Error('Missing required field "localID"');if(n)return e.toUint8Array()};l.decodeColor=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.r=r.readVarFloat(),e.g=r.readVarFloat(),e.b=r.readVarFloat(),e.a=r.readVarFloat(),e};l.encodeColor=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.r;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "r"');var t=r.g;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "g"');var t=r.b;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "b"');var t=r.a;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "a"');if(n)return e.toUint8Array()};l.decodeVector=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.x=r.readVarFloat(),e.y=r.readVarFloat(),e};l.encodeVector=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.x;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "x"');var t=r.y;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "y"');if(n)return e.toUint8Array()};l.decodeRect=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.x=r.readVarFloat(),e.y=r.readVarFloat(),e.w=r.readVarFloat(),e.h=r.readVarFloat(),e};l.encodeRect=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.x;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "x"');var t=r.y;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "y"');var t=r.w;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "w"');var t=r.h;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "h"');if(n)return e.toUint8Array()};l.decodeColorStop=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.color=this.decodeColor(r),e.position=r.readVarFloat(),e};l.encodeColorStop=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.color;if(t!=null)this.encodeColor(t,e);else throw new Error('Missing required field "color"');var t=r.position;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "position"');if(n)return e.toUint8Array()};l.decodeColorStopVar=function(r){var e={};for(r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r));;)switch(r.readVarUint()){case 0:return e;case 1:e.color=this.decodeColor(r);break;case 2:e.colorVar=this.decodeVariableData(r);break;case 3:e.position=r.readVarFloat();break;default:throw new Error("Attempted to parse invalid message")}};l.encodeColorStopVar=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.color;t!=null&&(e.writeVarUint(1),this.encodeColor(t,e));var t=r.colorVar;t!=null&&(e.writeVarUint(2),this.encodeVariableData(t,e));var t=r.position;if(t!=null&&(e.writeVarUint(3),e.writeVarFloat(t)),e.writeVarUint(0),n)return e.toUint8Array()};l.decodeMatrix=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.m00=r.readVarFloat(),e.m01=r.readVarFloat(),e.m02=r.readVarFloat(),e.m10=r.readVarFloat(),e.m11=r.readVarFloat(),e.m12=r.readVarFloat(),e};l.encodeMatrix=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.m00;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "m00"');var t=r.m01;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "m01"');var t=r.m02;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "m02"');var t=r.m10;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "m10"');var t=r.m11;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "m11"');var t=r.m12;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "m12"');if(n)return e.toUint8Array()};l.decodeParentIndex=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.guid=this.decodeGUID(r),e.position=r.readString(),e};l.encodeParentIndex=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.guid;if(t!=null)this.encodeGUID(t,e);else throw new Error('Missing required field "guid"');var t=r.position;if(t!=null)e.writeString(t);else throw new Error('Missing required field "position"');if(n)return e.toUint8Array()};l.decodeNumber=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.value=r.readVarFloat(),e.units=this.NumberUnits[r.readVarUint()],e};l.encodeNumber=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.value;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "value"');var t=r.units;if(t!=null){var i=this.NumberUnits[t];if(i===void 0)throw new Error("Invalid value "+JSON.stringify(t)+' for enum "NumberUnits"');e.writeVarUint(i)}else throw new Error('Missing required field "units"');if(n)return e.toUint8Array()};l.decodeFontName=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.family=r.readString(),e.style=r.readString(),e.postscript=r.readString(),e};l.encodeFontName=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.family;if(t!=null)e.writeString(t);else throw new Error('Missing required field "family"');var t=r.style;if(t!=null)e.writeString(t);else throw new Error('Missing required field "style"');var t=r.postscript;if(t!=null)e.writeString(t);else throw new Error('Missing required field "postscript"');if(n)return e.toUint8Array()};l.FontVariantNumericFigure={0:"NORMAL",1:"LINING",2:"OLDSTYLE",NORMAL:0,LINING:1,OLDSTYLE:2};l.FontVariantNumericSpacing={0:"NORMAL",1:"PROPORTIONAL",2:"TABULAR",NORMAL:0,PROPORTIONAL:1,TABULAR:2};l.FontVariantNumericFraction={0:"NORMAL",1:"DIAGONAL",2:"STACKED",NORMAL:0,DIAGONAL:1,STACKED:2};l.FontVariantCaps={0:"NORMAL",1:"SMALL",2:"ALL_SMALL",3:"PETITE",4:"ALL_PETITE",5:"UNICASE",6:"TITLING",NORMAL:0,SMALL:1,ALL_SMALL:2,PETITE:3,ALL_PETITE:4,UNICASE:5,TITLING:6};l.FontVariantPosition={0:"NORMAL",1:"SUB",2:"SUPER",NORMAL:0,SUB:1,SUPER:2};l.FontStyle={0:"NORMAL",1:"ITALIC",NORMAL:0,ITALIC:1};l.SemanticWeight={0:"NORMAL",1:"BOLD",NORMAL:0,BOLD:1};l.SemanticItalic={0:"NORMAL",1:"ITALIC",NORMAL:0,ITALIC:1};l.OpenTypeFeature={0:"PCAP",1:"C2PC",2:"CASE",3:"CPSP",4:"TITL",5:"UNIC",6:"ZERO",7:"SINF",8:"ORDN",9:"AFRC",10:"DNOM",11:"NUMR",12:"LIGA",13:"CLIG",14:"DLIG",15:"HLIG",16:"RLIG",17:"AALT",18:"CALT",19:"RCLT",20:"SALT",21:"RVRN",22:"VERT",23:"SWSH",24:"CSWH",25:"NALT",26:"CCMP",27:"STCH",28:"HIST",29:"SIZE",30:"ORNM",31:"ITAL",32:"RAND",33:"DTLS",34:"FLAC",35:"MGRK",36:"SSTY",37:"KERN",38:"FWID",39:"HWID",40:"HALT",41:"TWID",42:"QWID",43:"PWID",44:"JUST",45:"LFBD",46:"OPBD",47:"RTBD",48:"PALT",49:"PKNA",50:"LTRA",51:"LTRM",52:"RTLA",53:"RTLM",54:"ABRV",55:"ABVM",56:"ABVS",57:"VALT",58:"VHAL",59:"BLWF",60:"BLWM",61:"BLWS",62:"AKHN",63:"CJCT",64:"CFAR",65:"CPCT",66:"CURS",67:"DIST",68:"EXPT",69:"FALT",70:"FINA",71:"FIN2",72:"FIN3",73:"HALF",74:"HALN",75:"HKNA",76:"HNGL",77:"HOJO",78:"INIT",79:"ISOL",80:"JP78",81:"JP83",82:"JP90",83:"JP04",84:"LJMO",85:"LOCL",86:"MARK",87:"MEDI",88:"MED2",89:"MKMK",90:"NLCK",91:"NUKT",92:"PREF",93:"PRES",94:"VPAL",95:"PSTF",96:"PSTS",97:"RKRF",98:"RPHF",99:"RUBY",100:"SMPL",101:"TJMO",102:"TNAM",103:"TRAD",104:"VATU",105:"VJMO",106:"VKNA",107:"VKRN",108:"VRTR",109:"VRT2",110:"SS01",111:"SS02",112:"SS03",113:"SS04",114:"SS05",115:"SS06",116:"SS07",117:"SS08",118:"SS09",119:"SS10",120:"SS11",121:"SS12",122:"SS13",123:"SS14",124:"SS15",125:"SS16",126:"SS17",127:"SS18",128:"SS19",129:"SS20",130:"CV01",131:"CV02",132:"CV03",133:"CV04",134:"CV05",135:"CV06",136:"CV07",137:"CV08",138:"CV09",139:"CV10",140:"CV11",141:"CV12",142:"CV13",143:"CV14",144:"CV15",145:"CV16",146:"CV17",147:"CV18",148:"CV19",149:"CV20",150:"CV21",151:"CV22",152:"CV23",153:"CV24",154:"CV25",155:"CV26",156:"CV27",157:"CV28",158:"CV29",159:"CV30",160:"CV31",161:"CV32",162:"CV33",163:"CV34",164:"CV35",165:"CV36",166:"CV37",167:"CV38",168:"CV39",169:"CV40",170:"CV41",171:"CV42",172:"CV43",173:"CV44",174:"CV45",175:"CV46",176:"CV47",177:"CV48",178:"CV49",179:"CV50",180:"CV51",181:"CV52",182:"CV53",183:"CV54",184:"CV55",185:"CV56",186:"CV57",187:"CV58",188:"CV59",189:"CV60",190:"CV61",191:"CV62",192:"CV63",193:"CV64",194:"CV65",195:"CV66",196:"CV67",197:"CV68",198:"CV69",199:"CV70",200:"CV71",201:"CV72",202:"CV73",203:"CV74",204:"CV75",205:"CV76",206:"CV77",207:"CV78",208:"CV79",209:"CV80",210:"CV81",211:"CV82",212:"CV83",213:"CV84",214:"CV85",215:"CV86",216:"CV87",217:"CV88",218:"CV89",219:"CV90",220:"CV91",221:"CV92",222:"CV93",223:"CV94",224:"CV95",225:"CV96",226:"CV97",227:"CV98",228:"CV99",PCAP:0,C2PC:1,CASE:2,CPSP:3,TITL:4,UNIC:5,ZERO:6,SINF:7,ORDN:8,AFRC:9,DNOM:10,NUMR:11,LIGA:12,CLIG:13,DLIG:14,HLIG:15,RLIG:16,AALT:17,CALT:18,RCLT:19,SALT:20,RVRN:21,VERT:22,SWSH:23,CSWH:24,NALT:25,CCMP:26,STCH:27,HIST:28,SIZE:29,ORNM:30,ITAL:31,RAND:32,DTLS:33,FLAC:34,MGRK:35,SSTY:36,KERN:37,FWID:38,HWID:39,HALT:40,TWID:41,QWID:42,PWID:43,JUST:44,LFBD:45,OPBD:46,RTBD:47,PALT:48,PKNA:49,LTRA:50,LTRM:51,RTLA:52,RTLM:53,ABRV:54,ABVM:55,ABVS:56,VALT:57,VHAL:58,BLWF:59,BLWM:60,BLWS:61,AKHN:62,CJCT:63,CFAR:64,CPCT:65,CURS:66,DIST:67,EXPT:68,FALT:69,FINA:70,FIN2:71,FIN3:72,HALF:73,HALN:74,HKNA:75,HNGL:76,HOJO:77,INIT:78,ISOL:79,JP78:80,JP83:81,JP90:82,JP04:83,LJMO:84,LOCL:85,MARK:86,MEDI:87,MED2:88,MKMK:89,NLCK:90,NUKT:91,PREF:92,PRES:93,VPAL:94,PSTF:95,PSTS:96,RKRF:97,RPHF:98,RUBY:99,SMPL:100,TJMO:101,TNAM:102,TRAD:103,VATU:104,VJMO:105,VKNA:106,VKRN:107,VRTR:108,VRT2:109,SS01:110,SS02:111,SS03:112,SS04:113,SS05:114,SS06:115,SS07:116,SS08:117,SS09:118,SS10:119,SS11:120,SS12:121,SS13:122,SS14:123,SS15:124,SS16:125,SS17:126,SS18:127,SS19:128,SS20:129,CV01:130,CV02:131,CV03:132,CV04:133,CV05:134,CV06:135,CV07:136,CV08:137,CV09:138,CV10:139,CV11:140,CV12:141,CV13:142,CV14:143,CV15:144,CV16:145,CV17:146,CV18:147,CV19:148,CV20:149,CV21:150,CV22:151,CV23:152,CV24:153,CV25:154,CV26:155,CV27:156,CV28:157,CV29:158,CV30:159,CV31:160,CV32:161,CV33:162,CV34:163,CV35:164,CV36:165,CV37:166,CV38:167,CV39:168,CV40:169,CV41:170,CV42:171,CV43:172,CV44:173,CV45:174,CV46:175,CV47:176,CV48:177,CV49:178,CV50:179,CV51:180,CV52:181,CV53:182,CV54:183,CV55:184,CV56:185,CV57:186,CV58:187,CV59:188,CV60:189,CV61:190,CV62:191,CV63:192,CV64:193,CV65:194,CV66:195,CV67:196,CV68:197,CV69:198,CV70:199,CV71:200,CV72:201,CV73:202,CV74:203,CV75:204,CV76:205,CV77:206,CV78:207,CV79:208,CV80:209,CV81:210,CV82:211,CV83:212,CV84:213,CV85:214,CV86:215,CV87:216,CV88:217,CV89:218,CV90:219,CV91:220,CV92:221,CV93:222,CV94:223,CV95:224,CV96:225,CV97:226,CV98:227,CV99:228};l.decodeExportConstraint=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.type=this.ExportConstraintType[r.readVarUint()],e.value=r.readVarFloat(),e};l.encodeExportConstraint=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var i=r.type;if(i!=null){var t=this.ExportConstraintType[i];if(t===void 0)throw new Error("Invalid value "+JSON.stringify(i)+' for enum "ExportConstraintType"');e.writeVarUint(t)}else throw new Error('Missing required field "type"');var i=r.value;if(i!=null)e.writeVarFloat(i);else throw new Error('Missing required field "value"');if(n)return e.toUint8Array()};l.decodeGUIDMapping=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.from=this.decodeGUID(r),e.to=this.decodeGUID(r),e};l.encodeGUIDMapping=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.from;if(t!=null)this.encodeGUID(t,e);else throw new Error('Missing required field "from"');var t=r.to;if(t!=null)this.encodeGUID(t,e);else throw new Error('Missing required field "to"');if(n)return e.toUint8Array()};l.decodeBlob=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.bytes=r.readByteArray(),e};l.encodeBlob=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.bytes;if(t!=null)e.writeByteArray(t);else throw new Error('Missing required field "bytes"');if(n)return e.toUint8Array()};l.decodeImage=function(r){var e={};for(r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r));;)switch(r.readVarUint()){case 0:return e;case 1:e.hash=r.readByteArray();break;case 2:e.name=r.readString();break;case 3:e.dataBlob=r.readVarUint();break;default:throw new Error("Attempted to parse invalid message")}};l.encodeImage=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.hash;t!=null&&(e.writeVarUint(1),e.writeByteArray(t));var t=r.name;t!=null&&(e.writeVarUint(2),e.writeString(t));var t=r.dataBlob;if(t!=null&&(e.writeVarUint(3),e.writeVarUint(t)),e.writeVarUint(0),n)return e.toUint8Array()};l.decodeVideo=function(r){var e={};for(r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r));;)switch(r.readVarUint()){case 0:return e;case 1:e.hash=r.readByteArray();break;case 2:e.s3Url=r.readString();break;default:throw new Error("Attempted to parse invalid message")}};l.encodeVideo=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.hash;t!=null&&(e.writeVarUint(1),e.writeByteArray(t));var t=r.s3Url;if(t!=null&&(e.writeVarUint(2),e.writeString(t)),e.writeVarUint(0),n)return e.toUint8Array()};l.decodePasteSource=function(r){var e={};for(r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r));;)switch(r.readVarUint()){case 0:return e;case 1:e.srcFile=r.readString();break;case 2:e.srcNode=this.decodeGUID(r);break;default:throw new Error("Attempted to parse invalid message")}};l.encodePasteSource=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.srcFile;t!=null&&(e.writeVarUint(1),e.writeString(t));var t=r.srcNode;if(t!=null&&(e.writeVarUint(2),this.encodeGUID(t,e)),e.writeVarUint(0),n)return e.toUint8Array()};l.decodeFilterColorAdjust=function(r){var e={};return r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r)),e.tint=r.readVarFloat(),e.shadows=r.readVarFloat(),e.highlights=r.readVarFloat(),e.detail=r.readVarFloat(),e.exposure=r.readVarFloat(),e.vignette=r.readVarFloat(),e.temperature=r.readVarFloat(),e.vibrance=r.readVarFloat(),e};l.encodeFilterColorAdjust=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.tint;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "tint"');var t=r.shadows;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "shadows"');var t=r.highlights;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "highlights"');var t=r.detail;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "detail"');var t=r.exposure;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "exposure"');var t=r.vignette;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "vignette"');var t=r.temperature;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "temperature"');var t=r.vibrance;if(t!=null)e.writeVarFloat(t);else throw new Error('Missing required field "vibrance"');if(n)return e.toUint8Array()};l.decodePaintFilterMessage=function(r){var e={};for(r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r));;)switch(r.readVarUint()){case 0:return e;case 1:e.tint=r.readVarFloat();break;case 2:e.shadows=r.readVarFloat();break;case 3:e.highlights=r.readVarFloat();break;case 4:e.detail=r.readVarFloat();break;case 5:e.exposure=r.readVarFloat();break;case 6:e.vignette=r.readVarFloat();break;case 7:e.temperature=r.readVarFloat();break;case 8:e.vibrance=r.readVarFloat();break;case 9:e.contrast=r.readVarFloat();break;case 10:e.brightness=r.readVarFloat();break;default:throw new Error("Attempted to parse invalid message")}};l.encodePaintFilterMessage=function(r,e){var n=!e;n&&(e=new this.ByteBuffer);var t=r.tint;t!=null&&(e.writeVarUint(1),e.writeVarFloat(t));var t=r.shadows;t!=null&&(e.writeVarUint(2),e.writeVarFloat(t));var t=r.highlights;t!=null&&(e.writeVarUint(3),e.writeVarFloat(t));var t=r.detail;t!=null&&(e.writeVarUint(4),e.writeVarFloat(t));var t=r.exposure;t!=null&&(e.writeVarUint(5),e.writeVarFloat(t));var t=r.vignette;t!=null&&(e.writeVarUint(6),e.writeVarFloat(t));var t=r.temperature;t!=null&&(e.writeVarUint(7),e.writeVarFloat(t));var t=r.vibrance;t!=null&&(e.writeVarUint(8),e.writeVarFloat(t));var t=r.contrast;t!=null&&(e.writeVarUint(9),e.writeVarFloat(t));var t=r.brightness;if(t!=null&&(e.writeVarUint(10),e.writeVarFloat(t)),e.writeVarUint(0),n)return e.toUint8Array()};l.decodePaint=function(r){var e={};for(r instanceof this.ByteBuffer||(r=new this.ByteBuffer(r));;)switch(r.readVarUint()){case 0:return e;case 1:e.type=this.PaintType[r.readVarUint()];break;case 2:e.color=this.decodeColor(r);break;case 3:e.opacity=r.readVarFloat();break;case 4:e.visible=!!r.readByte();break;case 5:e.blendMode=this.BlendMode[r.readVarUint()];break;case 6:for(var t=r.readVarUint(),i=e.stops=Array(t),n=0;nawait f(()=>import("./index4.js?v=1775123024591"),__vite__mapDeps([0,1,2])),c=async()=>await f(()=>import("./html-to-axure.js?v=1775123024591"),__vite__mapDeps([3,2,1])),w=async(r="body",e)=>(await u()).htmlToFigma(r,e),T=async(r,e)=>(await u()).processWithSnapDOMImplementation(r,e),I=async(r,e)=>(await u()).processWithOriginalLogic(r,e),V=async(r="body",e)=>(await c()).htmlToAxure(r,e),p=async(r="body",e)=>s()?{skipped:!1,data:await w(r,e)}:{skipped:!0,reason:"dom_unavailable"},E=async(r="body",e)=>s()?{skipped:!1,data:await V(r,e)}:{skipped:!0,reason:"dom_unavailable"};export{V as a,y as b,l as c,s as d,S as e,I as f,E as g,w as h,T as p,p as s}; diff --git a/axhub-make/admin/assets/chunks/index3.js b/axhub-make/admin/assets/chunks/index3.js new file mode 100644 index 0000000..eaef8e3 --- /dev/null +++ b/axhub-make/admin/assets/chunks/index3.js @@ -0,0 +1,460 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/index.js","assets/chunks/index2.js","assets/chunks/vendor-common.js","assets/chunks/vendor-react.js","assets/chunks/_commonjsHelpers.js","assets/chunks/preload-helper.js","assets/chunks/_commonjs-dynamic-modules.js"])))=>i.map(i=>d[i]); +import{i as mt,D as zt,f as Wi,W as Rr,a as Ut,b as En,u as Xi,n as Pr,p as Yi,c as ji,P as Ji,d as Qi,e as Zi,g as es,s as Mr,h as ts,j as ns}from"./use-feedback-bridge.js?v=1775123024591";import{j as Re,R as de,c as rs}from"./vendor-react.js?v=1775123024591";import{N as os,O as is,C as ss,A as as}from"./vendor-antd.js?v=1775123024591";import{_ as cs}from"./preload-helper.js?v=1775123024591";const ls=2,Ke="[WebEditorV2]",_r="__mcp_web_editor_v2_host__",Xo="__mcp_web_editor_v2_overlay__",Yo="__mcp_web_editor_v2_ui__",us=2147483647,Me={hover:"#008F5D",selected:"#008F5D",selectionBorder:"#008F5D",dragGhost:"rgba(0, 143, 93, 0.22)",insertionLine:"#008F5D",guideLine:"rgba(0, 143, 93, 0.72)",distanceLabelBg:"rgba(18, 18, 18, 0.94)",distanceLabelBorder:"rgba(0, 143, 93, 0.24)",distanceLabelText:"rgba(255, 255, 255, 0.98)"},ds=5,fs=3,hs=6,ms=2,gs=30,Lr=300,ps=1,ys=1,bs=1,ws=4,Ss='600 11px system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif',Es=6,vs=3,Ts=4,Cs=8,vn=15,xs=40;function at(t){return t&&typeof t=="object"?t:null}function ct(t){if(typeof t=="string")return t.trim()||void 0}function en(t){if(typeof t=="number"&&Number.isFinite(t))return t;const e=Number.parseInt(String(t),10);return Number.isFinite(e)?e:void 0}function tn(t){if(!t)return;if(typeof t=="function"){const n=t;return ct(n.displayName)??ct(n.name)}const e=at(t);if(e)return ct(e.displayName)??ct(e.name)}function As(t){let e=t;for(let n=0;n0?o:void 0,column:s!==void 0&&Number.isFinite(s)&&s>0?s:void 0}}function Ns(t){try{let e=t;for(let n=0;n=1&&i<=31||i===127||s===0&&i>=48&&i<=57||s===1&&i>=48&&i<=57&&o===45){r+=`\\${i.toString(16)} `;continue}if(s===0&&n===1&&i===45){r+=`\\${e.charAt(s)}`;continue}i>=48&&i<=57||i>=65&&i<=90||i>=97&&i<=122||i===45||i===95?r+=e.charAt(s):r+=`\\${e.charAt(s)}`}return r}function fr(t){var n;const e=(n=t.getRootNode)==null?void 0:n.call(t);return e instanceof ShadowRoot?e:document}function wn(t,e){try{return t.querySelector(e)}catch{return null}}function Ve(t,e){try{return t.querySelectorAll(e).length===1}catch{return!1}}function Jo(t,e){var o;const n=(o=t.id)==null?void 0:o.trim();if(!n)return null;const r=`#${nt(n)}`;return Ve(e,r)?r:null}function Ks(t,e,n){var s;const r=[];if(n<=0)return r;const o=t.tagName.toLowerCase();for(const i of Ls){if(r.length>=n)break;const a=(s=t.getAttribute(i))==null?void 0:s.trim();if(!a)continue;const l=`[${i}="${nt(a)}"]`;if(Ve(e,l)){r.push(l);continue}const m=`${o}${l}`;Ve(e,m)&&r.push(m)}return r}function Hs(t,e,n){const r=[];if(n<=0)return r;const o=t.tagName.toLowerCase(),s=Array.from(t.classList).filter(l=>l&&/^[a-zA-Z_][a-zA-Z0-9_-]*$/.test(l)).slice(0,Fs);if(s.length===0)return r;const i=new Map;for(const l of s){if(r.length>=n)return r;const m=`.${nt(l)}`,P=Ve(e,m);i.set(l,P),P&&r.push(m)}for(const l of s){if(r.length>=n)return r;if(i.get(l)===!0)continue;const m=`${o}.${nt(l)}`;Ve(e,m)&&r.push(m)}const a=Math.min(s.length,Ds);for(let l=0;l=n)return r;const P=s[l],L=s[m],S=`.${nt(P)}.${nt(L)}`;if(Ve(e,S)){r.push(S);continue}const R=`${o}${S}`;Ve(e,R)&&r.push(R)}if(a>=3&&r.lengthS.tagName===r.tagName);if(L.length>1){const S=L.indexOf(r)+1;a+=`:nth-of-type(${S})`}if(n.unshift(a),r=l,!l&&m===e)break}const s=n.join(" > ");return o?`body > ${s}`:s||"*"}function Us(t,e,n){const r=[];let o=e;for(let s=0;o&&o!==t&&sS.tagName===o.tagName);if(L.length>1){const S=L.indexOf(o)+1;a+=`:nth-of-type(${S})`}if(r.unshift(a),!l){if(m===n)break;break}o=l}return o!==t?null:r.join(" > ")||null}function Os(t,e){var o;const n=Jo(t,e);if(n)return n;const r=t.tagName.toLowerCase();for(const s of Bs){const i=(o=t.getAttribute(s))==null?void 0:o.trim();if(!i)continue;const a=`[${s}="${nt(i)}"]`;if(Ve(e,a))return a;const l=`${r}${a}`;if(Ve(e,l))return l}return null}function qs(t,e){let n=t.parentElement;for(let r=0;n&&r0?e:void 0}function Vs(t,e){return t.replace(/\s+/g," ").trim().slice(0,e)}function Qo(t){var i,a;const e=[],n=((i=t.tagName)==null?void 0:i.toLowerCase())??"unknown";e.push(n);const r=(a=t.id)==null?void 0:a.trim();r&&e.push(`id=${r}`);const o=Array.from(t.classList).slice(0,_s);o.length>0&&e.push(`class=${o.join(".")}`);const s=Vs(t.textContent??"",Ms);return s&&e.push(`text=${s}`),e.join("|")}function zs(t){const e=[];let n=t;for(;n;){const r=n.parentElement;if(r){const i=Array.from(r.children).indexOf(n);i>=0&&e.unshift(i),n=r;continue}const o=n.parentNode;if(o instanceof ShadowRoot||o instanceof Document){const i=Array.from(o.children).indexOf(n);i>=0&&e.unshift(i)}break}return e}function Zo(t,e={}){const n=e.root??fr(t),r=Math.max(1,e.maxCandidates??Zn),o=[],s=(m,P=r)=>{if(!m||o.length>=P)return;const L=m.trim();!L||o.includes(L)||o.push(L)},i=r>=Zn?qs(t,n):null,a=1+(i?1:0),l=Math.max(1,r-a);s(Jo(t,n),l);for(const m of Ks(t,n,l-o.length))s(m,l);for(const m of Hs(t,n,l-o.length))s(m,l);return s($s(t,n)),s(i),o.slice(0,r)}function Ws(t,e={}){return Zo(t,e)[0]??""}function Se(t){const e=fr(t),n=Ps(t)??void 0;return{selectors:Zo(t,{root:e,maxCandidates:Zn}),fingerprint:Qo(t),path:zs(t),shadowHostChain:Gs(t),debugSource:n}}function Dr(t,e){try{return t.querySelectorAll(e).length===1}catch{return!1}}function Xs(t,e){const n=Qo(t),r=e.split("|"),o=n.split("|");if(r[0]!==o[0])return!1;const s=r.find(a=>a.startsWith("id=")),i=o.find(a=>a.startsWith("id="));return!(s&&s!==i)}function we(t,e=document){var o,s;let n=e;if((o=t.frameChain)!=null&&o.length)for(const i of t.frameChain){const a=wn(n,i);if(!(a instanceof HTMLIFrameElement))return null;const l=a.contentDocument;if(!l)return null;n=l}let r=n;if((s=t.shadowHostChain)!=null&&s.length)for(const i of t.shadowHostChain){if(!Dr(r,i))return null;const a=wn(r,i);if(!a)return null;const l=a.shadowRoot;if(!l)return null;r=l}for(const i of t.selectors){if(!Dr(r,i))continue;const a=wn(r,i);if(a&&!(t.fingerprint&&!Xs(a,t.fingerprint)))return a}return null}function Oe(t){var o,s;const e=t.selectors.join("|"),n=((o=t.shadowHostChain)==null?void 0:o.join(">"))??"";return`frame:${((s=t.frameChain)==null?void 0:s.join(">"))??""}|shadow:${n}|sel:${e}`}const Br=new WeakMap,Fr=new WeakMap;let Ys=0,js=0,Fn;const Js=["data-testid","data-test-id","data-test","data-qa","data-cy","name","aria-label","title","alt"],It=48,Qs=64;function In(t){return(t!=null&&t.tagName?String(t.tagName):"").toLowerCase().trim()||"unknown"}function Qe(t){return typeof t=="string"?t.trim():""}function Zs(t){return String(t??"").replace(/\s+/g," ").trim()}function ht(t,e){const n=String(t??"");return n.length<=e?n:n.slice(0,Math.max(0,e-1)).trimEnd()+"…"}function ea(){if(Fn!==void 0)return Fn;let t="";try{const e=window.frameElement;if(e instanceof HTMLIFrameElement){const n=In(e),r=Qe(e.id||e.getAttribute("id"));if(r)t=`${n}#${r}`;else{const o=Qe(e.name||e.getAttribute("name"));if(o)t=`${n}[name="${ht(o,It)}"]`;else{const s=Qe(e.getAttribute("src")||e.src);t=s?`${n}[src="${ht(s,It)}"]`:n}}}}catch{t=""}return Fn=t,t}function ta(t){const e=Fr.get(t);if(e)return e;const n=In(t),r=Qe(t.id||t.getAttribute("id")),o=r?`${n}#${r}`:`${n}_h${++js}`;return Fr.set(t,o),o}function ei(t,e){var i;const n=typeof ShadowRoot<"u",r=typeof Element<"u",o=[];let s=t;for(;;){let a;try{a=(i=s.getRootNode)==null?void 0:i.call(s)}catch{a=null}if(!n||!(a instanceof ShadowRoot))break;const l=a.host;if(!r||!(l instanceof Element))break;o.unshift(ta(l)),s=l}return o.length>0?o.join(">"):""}function na(t){for(const e of Js){const n=Qe(t.getAttribute(e));if(n)return{attr:e,value:n}}return null}function Ne(t,e){const n=Br.get(t);if(n)return n;const r=In(t),o=Qe(t.id||t.getAttribute("id")),s=o?`${r}#${o}`:`${r}_${++Ys}`,i=[],a=ea();a&&i.push(`frame:${a}`);const l=ei(t);l&&i.push(`shadow:${l}`),i.push(s);const m=i.join("|");return Br.set(t,m),m}function ti(t){const e=In(t),n=typeof HTMLInputElement<"u",r=typeof HTMLIFrameElement<"u",o=Qe(t.id||t.getAttribute("id"));if(o)return`${e}#${o}`;const s=na(t);if(s)return`${e}[${s.attr}="${ht(s.value,It)}"]`;const i=Qe(t.getAttribute("role"));if(i)return`${e}[role="${ht(i,It)}"]`;if(n&&t instanceof HTMLInputElement){const l=Qe(t.getAttribute("type")||t.type);if(l&&l!=="text")return`${e}[type="${ht(l,It)}"]`;const m=Qe(t.getAttribute("placeholder")||t.placeholder);if(m)return`${e}[placeholder="${ht(m,It)}"]`}if(r&&t instanceof HTMLIFrameElement){const l=Qe(t.getAttribute("src")||t.src);if(l)return`${e}[src="${ht(l,It)}"]`}const a=Zs(t.textContent??"");return a?`${e}("${ht(a,Qs)}")`:e}function bt(t,e){const n=ti(t),r=ei(t);return r?`${r} >> ${n}`:n}const Kr=96,Hr=64,ra=new Set(["style","text","class"]);function er(t){return String(t??"").trim()}function Ot(t){return String(t??"").trim()}function $r(t){return String(t??"").replace(/\s+/g," ").trim()}function Tn(t,e){const n=String(t??"");return n.length<=e?n:n.slice(0,Math.max(0,e-1)).trimEnd()+"…"}function Ur(t){const e=[],n=new Set;for(const r of t??[]){const o=String(r??"").trim();o&&(n.has(o)||(n.add(o),e.push(o)))}return e}function oa(t){if(typeof document>"u")return null;try{return we(t)}catch{return null}}function ia(t,e){let n="";const r=er(t.fingerprint);if(r){const l=r.split("|").map(S=>S.trim()).filter(Boolean),m=l[0]??"element",P=l.find(S=>S.startsWith("id=")),L=P?P.slice(3).trim():"";n=L?`${m}#${L}`:m}else Array.isArray(t.selectors)&&t.selectors.length>0?n=Tn(er(t.selectors[0]),Hr)||"element":n=Tn(e,Hr)||"element";const o=[],s=(t.frameChain??[]).join(">").trim(),i=(t.shadowHostChain??[]).join(">").trim();s&&o.push(s),i&&o.push(i);const a=o.length?`${o.join(">")} >> ${n}`:n;return{label:n,fullLabel:a}}function sa(t,e){const n=oa(t);return n?{label:ti(n),fullLabel:bt(n,t.shadowHostChain)}:ia(t,e)}function aa(t,e,n){return Number(t)+Number(e)+Number(n)>1?"mixed":t?"style":e?"text":n?"class":"mixed"}function ca(t){const e=new Map,n=new Map,r=new Map;for(const L of t){if(L.type!=="style")continue;const S=L.before.styles??{},R=L.before.computedStyles??{},I=L.after.styles??{},h=new Set([...Object.keys(S),...Object.keys(I)]);for(const T of h){const x=String(T??"").trim();if(!x)continue;const B=Ot(S[x]),K=Ot(R[x]),_=B||K,v=Ot(I[x]);e.has(x)||(e.set(x,B),n.set(x,_)),r.set(x,v)}}if(e.size===0&&r.size===0)return null;const o={},s={},i=new Set([...e.keys(),...r.keys()]);for(const L of i){const S=e.get(L)??"",R=r.get(L)??"";if(S===R)continue;const I=n.get(L)??S;o[L]=I,s[L]=R}const a=Array.from(new Set([...Object.keys(o),...Object.keys(s)])).sort();if(a.length===0)return null;let l=0,m=0,P=0;for(const L of a){const S=Ot(o[L]),R=Ot(s[L]);!S&&R?l+=1:S&&!R?m+=1:P+=1}return{before:o,after:s,added:l,removed:m,modified:P,details:a}}function la(t){let e,n;for(const s of t)s.type==="text"&&(e===void 0&&(e=String(s.before.text??"")),n=String(s.after.text??""));if(e===void 0||n===void 0||e===n)return null;const r=Tn($r(e),Kr),o=Tn($r(n),Kr);return{before:e,after:n,beforePreview:r,afterPreview:o}}function ua(t){let e,n;for(const m of t)m.type==="class"&&(e||(e=Ur(m.before.classes)),n=Ur(m.after.classes));if(!e||!n)return null;const r=new Set(e),o=new Set(n),s=Array.from(o).filter(m=>!r.has(m)).sort(),i=Array.from(r).filter(m=>!o.has(m)).sort();if(s.length===0&&i.length===0)return null;const a=Array.from(r).sort(),l=Array.from(o).sort();return{before:a,after:l,added:s,removed:i}}function tt(t){var o;const e=t.map((s,i)=>({tx:s,index:i}));e.sort((s,i)=>{const a=Number(s.tx.timestamp??0),l=Number(i.tx.timestamp??0);return a!==l?a-l:s.index-i.index});const n=new Map;for(const{tx:s}of e){if(!ra.has(s.type))continue;const i=er(s.elementKey);let a;if(i)a=i;else try{a=Oe(s.targetLocator)}catch{a=`unknown:${s.id}`}const l=n.get(a);l?l.push(s):n.set(a,[s])}const r=[];for(const[s,i]of n.entries()){if(i.length===0)continue;const a=i[i.length-1],l=((o=a.after)==null?void 0:o.locator)??a.targetLocator,m=ca(i),P=la(i),L=ua(i),S=m!==null,R=P!==null,I=L!==null;if(!S&&!R&&!I)continue;const{label:h,fullLabel:T}=sa(l,s),x={elementKey:s,locator:l};m&&(x.styleChanges={before:m.before,after:m.after}),P&&(x.textChange={before:P.before,after:P.after}),L&&(x.classChanges={before:L.before,after:L.after});const B={};m&&(B.style={added:m.added,removed:m.removed,modified:m.modified,details:m.details}),P&&(B.text={beforePreview:P.beforePreview,afterPreview:P.afterPreview}),L&&(B.class={added:L.added,removed:L.removed});const K=i.reduce((v,H)=>{const q=Number(H.timestamp??0);return Number.isFinite(q)?Math.max(v,q):v},0),_=aa(S,R,I);r.push({elementKey:s,label:h,fullLabel:T,locator:l,type:_,changes:B,transactionIds:i.map(v=>v.id),netEffect:x,updatedAt:K,debugSource:l.debugSource})}return r.sort((s,i)=>i.updatedAt-s.updatedAt||s.label.localeCompare(i.label)),r}function _e(t,e=0){const n=Number(t);return Number.isFinite(n)?n:e}function tr(t,e,n){return n30?"…":""}」`}function Xt(t,e){var s,i,a,l;if(!si(e))return null;const n=String(e.dataset[fa]??"").trim()||String(((s=t.activeTextAnnotation)==null?void 0:s.id)??"").trim();if(!n)return null;const r=((i=t.activeTextAnnotation)==null?void 0:i.id)===n?t.activeTextAnnotation:((a=t.textAnnotationManager)==null?void 0:a.getAnnotations().get(n))??null;if(r){const m=(l=r.sourceElement)!=null&&l.isConnected?r.sourceElement:null;return{elementKey:r.id,locator:m?Se(m):ha(r.selectedText),label:ai(r.selectedText),sourceElement:m}}const o=t.editMetaByKey.get(n)??null;return o?{elementKey:o.elementKey,locator:o.locator,label:o.label,sourceElement:null}:null}const wt={genieAgent:null,genieAwake:!1,designAdjustmentTool:null,styleDesignEnabled:!1,darkMode:!1},ma=new Set(["claude","codex","gemini","opencode"]),ga=new Set(["figma","axure","pencil"]);function Or(t){return typeof t=="string"?t.trim().toLowerCase():""}function Lt(t){if(!t||typeof t!="object")return{...wt};const e=t,n=Or(e.genieAgent),r=Or(e.designAdjustmentTool);return{genieAgent:ma.has(n)?n:null,genieAwake:!!e.genieAwake,designAdjustmentTool:ga.has(r)?r:null,styleDesignEnabled:e.styleDesignEnabled===void 0?wt.styleDesignEnabled:!!e.styleDesignEnabled,darkMode:!!e.darkMode}}function nn(t,e){return e!=="text-annotation"?t:{...t,designAdjustmentTool:null,styleDesignEnabled:!1}}function qr(t){return mt()?{...t,designAdjustmentTool:null,styleDesignEnabled:!1}:t}const Cn={alt:!1,shift:!1,ctrl:!1,meta:!1},pa=5e3;function ya(){const t="web-editor-v2";if(typeof crypto<"u"&&typeof crypto.randomUUID=="function")return`${t}-${crypto.randomUUID()}`;const e=Math.random().toString(36).slice(2,10);return`${t}-${Date.now().toString(36)}-${e}`}function ba(t={}){var e,n,r,o,s;return{ui:{breadcrumbs:!0,propertyPanel:!0,showCopyPromptAction:!0,...t.ui??{}},host:{getResourceContext:((e=t.host)==null?void 0:e.getResourceContext)??(()=>null),buildCopyPrompt:((n=t.host)==null?void 0:n.buildCopyPrompt)??void 0},genieBridge:{enabled:!1,enableContextAppend:!0,targetOrigin:"*",preferCurrentSession:!1,apiBaseUrl:"",integrationChannel:"",targetClientId:"",externalClientId:ya(),apiKey:"",probeOnStart:!0,probeTimeoutMs:pa,projectPath:"",provider:"codex",onRequestWake:async()=>{},...t.genieBridge??{}},promptContext:{workspacePaths:((r=t.promptContext)==null?void 0:r.workspacePaths)??[],relatedFiles:((o=t.promptContext)==null?void 0:o.relatedFiles)??[],extraContext:((s=t.promptContext)==null?void 0:s.extraContext)??[]},integrationWs:{enabled:!1,apiBaseUrl:"",channel:"",clientId:"",sessionId:"",pageUrl:"",apiKey:"",...t.integrationWs??{}},interactionProfile:t.interactionProfile??"design"}}function wa(){return{active:!1,shadowHost:null,canvasOverlay:null,handlesController:null,parentSelectController:null,eventController:null,positionTracker:null,selectionEngine:null,dragReorderController:null,transactionManager:null,breadcrumbs:null,propertyPanel:null,tokensService:null,perfMonitor:null,perfHotkeyCleanup:null,annotationShortcutCleanup:null,hoveredElement:null,pendingHoverTransition:!1,selectedElement:null,selectionAnchor:null,annotationEntryMode:"bubble-card",annotationShortcutSettings:{...zt},annotationShortcutDialogOpen:!1,propertyPanelPosition:null,uiResizeCleanup:null,editMetaByKey:new Map,processedEditTimestampsByKey:new Map,pendingMarkerAnchors:new Map,markerLayer:null,changeMarkersVisible:!0,selectionChromeVisible:!0,promptCardVisible:!1,uiSettings:{...wt},genieConversationByScopeKey:new Map,genieTaskByElementKey:new Map,genieTaskByRequestId:new Map,externalEditingTaskByElementKey:new Map,textAnnotationManager:null,textAnnotationTargetElement:null,activeTextAnnotation:null}}function Sa(t){t.editMetaByKey.clear(),t.processedEditTimestampsByKey.clear(),t.pendingMarkerAnchors.clear(),t.markerLayer=null,t.hoveredElement=null,t.selectedElement=null,t.selectionAnchor=null,t.pendingHoverTransition=!1,t.annotationShortcutDialogOpen=!1,t.promptCardVisible=!1,t.genieConversationByScopeKey.clear(),t.genieTaskByElementKey.clear(),t.genieTaskByRequestId.clear(),t.externalEditingTaskByElementKey.clear(),t.textAnnotationTargetElement=null,t.activeTextAnnotation=null}function Ea(t){t.shadowHost=null,t.canvasOverlay=null,t.handlesController=null,t.parentSelectController=null,t.eventController=null,t.positionTracker=null,t.selectionEngine=null,t.dragReorderController=null,t.transactionManager=null,t.breadcrumbs=null,t.propertyPanel=null,t.tokensService=null,t.perfMonitor=null,t.perfHotkeyCleanup=null,t.annotationShortcutCleanup=null,t.uiResizeCleanup=null,t.markerLayer=null,t.hoveredElement=null,t.selectedElement=null,t.selectionAnchor=null,t.pendingHoverTransition=!1,t.annotationShortcutDialogOpen=!1,t.promptCardVisible=!1,t.genieConversationByScopeKey.clear(),t.genieTaskByElementKey.clear(),t.genieTaskByRequestId.clear(),t.externalEditingTaskByElementKey.clear(),t.textAnnotationManager=null,t.textAnnotationTargetElement=null,t.activeTextAnnotation=null,t.pendingMarkerAnchors.clear(),t.editMetaByKey.clear(),t.processedEditTimestampsByKey.clear()}function va(t,e){const n=t.processedEditTimestampsByKey.get(e);return Number.isFinite(Number(n))?Number(n):null}function Ta(t,e,n){const r=va(t,e);if(r===null)return!1;const o=Number(n??0);return Number.isFinite(o)?o<=r:!1}function kn(t,e){return e.filter(n=>{const r=String(n.elementKey??Oe(n.targetLocator)).trim();return r?!Ta(t,r,Number(n.timestamp??0)):!0})}function Ca(t,e){return e?t.filter(n=>n.elementKey!==e):t.slice()}function xa(t){const{state:e}=t;function n(N){return String(N??"").replace(/\r\n/g,` +`)}function r(N){var E;if(!N)return"";const b=(N.selectors??[]).map(O=>String(O??"").trim()).filter(Boolean);return b.length>0?b.join(" | "):(E=N.path)!=null&&E.length?N.path.join(">"):""}function o(N){let b=N instanceof HTMLElement?N:null;for(;b&&b!==document.body;){try{const E=window.getComputedStyle(b).position;if(E==="fixed"||E==="sticky")return!0}catch{return!1}b=b.parentElement}return!1}function s(N,b,E){const O=o(N),d=N instanceof HTMLElement?N.getBoundingClientRect():null,M=d&&Number.isFinite(d.left)&&Number.isFinite(b)?b-d.left:void 0,j=d&&Number.isFinite(d.top)&&Number.isFinite(E)?E-d.top:void 0;return ri({clientX:b,clientY:E,scrollX:window.scrollX,scrollY:window.scrollY,viewportWidth:window.innerWidth,isFixed:O,offsetX:M,offsetY:j})}function i(N){if(!(N instanceof HTMLElement))return null;const b=N.getBoundingClientRect();return!Number.isFinite(b.left)||!Number.isFinite(b.top)?null:s(N,b.left+b.width/2,b.top+Math.min(18,Math.max(10,b.height/2)))}function a(N,b,E){const O=e.editMetaByKey.get(N);if(O)return O.locator=b,O.label=E,O;const d={elementKey:N,locator:b,label:E,note:"",images:[],anchor:null,dirtySince:null,changeKinds:[],styleSummaryLines:[],textSummary:null,classSummaryLines:[]};return e.editMetaByKey.set(N,d),d}function l(N){if(!N)return null;const b=Xt(e,N);if(b)return e.editMetaByKey.get(b.elementKey)??a(b.elementKey,b.locator,b.label);if(si(N))return null;const E=Se(N),O=Ne(N,E.shadowHostChain);return e.editMetaByKey.get(O)??a(O,E,bt(N,E.shadowHostChain))}function m(N){return oi(N,{scrollX:window.scrollX,scrollY:window.scrollY,viewportWidth:window.innerWidth})}function P(N,b){var O;let E=we(N);if(!E||!E.isConnected){const d=(O=e.activeTextAnnotation)==null?void 0:O.sourceElement;d&&d.isConnected&&(E=d)}if(E&&E.isConnected){const d=E instanceof HTMLElement?E.getBoundingClientRect():null,M=Number(b==null?void 0:b.offsetX),j=Number(b==null?void 0:b.offsetY);if(d&&Number.isFinite(d.left)&&Number.isFinite(d.top)&&Number.isFinite(M)&&Number.isFinite(j)){const ee=Math.min(Math.max(0,M),Math.max(0,d.width)),oe=Math.min(Math.max(0,j),Math.max(0,d.height));return s(E,d.left+ee,d.top+oe)}return b?i(E)??b:i(E)}return b}function L(N,b){if(b)return s(N,b.clientX,b.clientY);const E=Se(N),O=Ne(N,E.shadowHostChain),d=e.editMetaByKey.get(O);return e.pendingMarkerAnchors.get(O)??null??(d==null?void 0:d.anchor)??i(N)}function S(N){return String(N??"").trim()||"已清除"}function R(N,b){const O=Array.from(new Set([...Object.keys(N??{}),...Object.keys(b??{})])).map(d=>String(d??"").trim()).filter(Boolean).sort((d,M)=>d.localeCompare(M)).map(d=>{const M=String((N==null?void 0:N[d])??"").trim(),j=String((b==null?void 0:b[d])??"").trim();return M&&j?`样式 ${d}: ${M} -> ${j}`:j?`样式 ${d}: ${j}`:`样式 ${d}: 已清除(原值 ${S(M)})`});return O.length<=5?O:[...O.slice(0,5),`还有 ${O.length-5} 项样式修改...`]}function I(N){const b=[],E=n(N.note).trim();return E?b.push(E):N.images.length>0?b.push(`已附加 ${N.images.length} 张参考图片`):N.changeKinds.length>0?b.push(`已修改:${N.changeKinds.join(" / ")}`):b.push("已记录修改"),N.textSummary&&b.push(N.textSummary),N.styleSummaryLines.length>0&&b.push(...N.styleSummaryLines),N.classSummaryLines.length>0&&b.push(...N.classSummaryLines),b}function h(N){const b=e.editMetaByKey.get(N);!b||n(b.note).trim()||b.images.length>0||b.dirtySince===null&&(b.changeKinds.length>0||e.editMetaByKey.delete(N))}function T(){const N=e.markerLayer;if(!N)return;if(!e.changeMarkersVisible||e.promptCardVisible){N.hidden=!0,N.replaceChildren();return}const b=Array.from(e.editMetaByKey.values()).filter(M=>M.dirtySince!==null&&M.anchor).sort((M,j)=>{const ee=Number(M.dirtySince??0),oe=Number(j.dirtySince??0);return ee!==oe?ee-oe:M.label.localeCompare(j.label)}),E=(()=>{if(e.annotationEntryMode!=="bubble-card")return null;const M=e.selectedElement;if(!M||!M.isConnected)return null;const j=Se(M);return Ne(M,j.shadowHostChain)})(),O=Ca(b,E);if(N.hidden=O.length===0,O.length===0){N.replaceChildren();return}const d=O.map((M,j)=>{const ee=P(M.locator,M.anchor);if(!ee)return null;const oe=m(ee),ie=document.createElement("div");ie.className="we-change-marker",ie.style.left=`${oe.left}px`,ie.style.top=`${oe.top}px`,ie.textContent=String(j+1),ie.setAttribute("role","button"),ie.tabIndex=0,ie.setAttribute("aria-label",`定位到 ${M.label}`);const me=document.createElement("div");me.className="we-change-marker__tooltip";const ce=document.createElement("span");ce.className="we-change-marker__label",ce.textContent=M.label;const pe=document.createElement("div");pe.className="we-change-marker__details";for(const ae of I(M)){const V=document.createElement("span");V.className="we-change-marker__note",V.textContent=ae,pe.append(V)}const ge=()=>{var V;const ae=we(M.locator);!ae||!ae.isConnected||(V=t.onSelectMarkedElement)==null||V.call(t,ae,ee)};return ie.addEventListener("click",ae=>{ae.preventDefault(),ae.stopPropagation(),ge()}),ie.addEventListener("keydown",ae=>{ae.key!=="Enter"&&ae.key!==" "||(ae.preventDefault(),ae.stopPropagation(),ge())}),me.append(ce,pe),ie.append(me),ie}).filter(M=>M!==null);N.replaceChildren(...d)}function x(){var O,d;const N=e.transactionManager;if(!N){T();return}const b=tt(kn(e,N.getUndoStack())),E=new Set;for(const M of b){const j=M.elementKey;e.processedEditTimestampsByKey.delete(j),E.add(j);const ee=a(j,M.netEffect.locator,M.fullLabel||M.label);ee.locator=M.netEffect.locator,ee.label=M.fullLabel||M.label,ee.dirtySince===null&&(ee.dirtySince=Number(M.updatedAt??Date.now()));const oe=[];M.netEffect.textChange&&oe.push("text"),M.netEffect.styleChanges&&oe.push("style"),M.netEffect.classChanges&&oe.push("class"),ee.changeKinds=oe,ee.styleSummaryLines=R((O=M.netEffect.styleChanges)==null?void 0:O.before,(d=M.netEffect.styleChanges)==null?void 0:d.after),ee.textSummary=M.changes.text?`文本:${M.changes.text.beforePreview} -> ${M.changes.text.afterPreview}`:null,ee.classSummaryLines=M.changes.class?[...M.changes.class.added.length>0?[`类名新增:${M.changes.class.added.join(", ")}`]:[],...M.changes.class.removed.length>0?[`类名移除:${M.changes.class.removed.join(", ")}`]:[]]:[];const ie=e.pendingMarkerAnchors.get(j)??null;if(ie)ee.anchor=ie;else if(!ee.anchor){const me=we(M.netEffect.locator);ee.anchor=me?i(me):null}e.pendingMarkerAnchors.delete(j)}for(const M of e.editMetaByKey.values())if(!E.has(M.elementKey)){if(n(M.note).trim()){if(M.dirtySince===null&&(M.dirtySince=Date.now()),!M.anchor){const j=we(M.locator);M.anchor=j?i(j):null}M.changeKinds=[],M.styleSummaryLines=[],M.textSummary=null,M.classSummaryLines=[];continue}M.dirtySince=null,M.changeKinds=[],M.anchor=null,M.styleSummaryLines=[],M.textSummary=null,M.classSummaryLines=[]}for(const M of Array.from(e.editMetaByKey.keys()))h(M);T()}function B(N){var M;if(!N||!N.isConnected)return;const b=Se(N),E=Ne(N,b.shadowHostChain),O=Date.now(),d=a(E,b,bt(N,b.shadowHostChain));d.locator=b,d.label=bt(N,b.shadowHostChain),d.note="",d.images=[],d.dirtySince=null,d.changeKinds=[],d.anchor=null,d.styleSummaryLines=[],d.textSummary=null,d.classSummaryLines=[],e.processedEditTimestampsByKey.set(E,O),e.pendingMarkerAnchors.delete(E),e.selectedElement===N&&(e.selectionAnchor=null),h(E),t.scheduleCacheWrite(),(M=e.propertyPanel)==null||M.refresh(),T()}function K(N,b){const E=l(N);if(!E)return;E.note=n(b);const O=e.pendingMarkerAnchors.get(E.elementKey);if(O)E.anchor=O,e.pendingMarkerAnchors.delete(E.elementKey);else if(!E.anchor&&n(E.note).trim()){const d=N&&N.isConnected?N:we(E.locator);E.anchor=d?i(d):null}n(E.note).trim()?E.dirtySince===null&&(E.dirtySince=Date.now()):E.changeKinds.length===0&&E.images.length===0&&(E.dirtySince=null,E.anchor=null,E.styleSummaryLines=[],E.textSummary=null,E.classSummaryLines=[]),h(E.elementKey),t.scheduleCacheWrite(),T()}function _(N){var b;return((b=l(N))==null?void 0:b.images.slice())??[]}function v(N,b){const E=l(N);if(!E)return;E.images=b.map(d=>({...d}));const O=e.pendingMarkerAnchors.get(E.elementKey);if(O)E.anchor=O,e.pendingMarkerAnchors.delete(E.elementKey);else if(!E.anchor&&E.images.length>0){const d=N&&N.isConnected?N:we(E.locator);E.anchor=d?i(d):null}E.images.length>0?E.dirtySince===null&&(E.dirtySince=Date.now()):!n(E.note).trim()&&E.changeKinds.length===0&&(E.dirtySince=null,E.anchor=null,E.styleSummaryLines=[],E.textSummary=null,E.classSummaryLines=[]),h(E.elementKey),t.scheduleCacheWrite(),T()}function H(){var N;e.editMetaByKey.clear(),e.processedEditTimestampsByKey.clear(),e.pendingMarkerAnchors.clear(),e.selectionAnchor=null,t.scheduleCacheWrite(),T(),(N=t.onStatusChange)==null||N.call(t)}function q(){var N;return((N=l(e.selectedElement??e.textAnnotationTargetElement))==null?void 0:N.note)??""}function Y(N,b={}){var E,O;e.changeMarkersVisible=N,b.persist!==!1&&(t.persistMarkerVisibility(N),t.scheduleCacheWrite()),(E=e.propertyPanel)==null||E.refresh(),T(),(O=t.onStatusChange)==null||O.call(t)}function F(){return Array.from(e.editMetaByKey.values()).filter(b=>b.dirtySince!==null).sort((b,E)=>Number(b.dirtySince??0)-Number(E.dirtySince??0)).map((b,E)=>({selector:r(b.locator),label:b.label,note:b.note,changeKinds:b.changeKinds.slice(),marker:b.anchor?{index:E+1,clientX:b.anchor.clientX,clientY:b.anchor.clientY,documentX:b.anchor.documentX,documentY:b.anchor.documentY,isFixed:b.anchor.isFixed}:null}))}function A(N,b){const E=Se(N),O=Ne(N,E.shadowHostChain),d=L(N,b);e.selectionAnchor=d,e.pendingMarkerAnchors.clear(),d&&e.pendingMarkerAnchors.set(O,d);const M=e.editMetaByKey.get(O);M&&d&&(M.anchor=d,T())}function X(){e.selectionAnchor=null,e.pendingMarkerAnchors.size!==0&&(e.pendingMarkerAnchors.clear(),T())}return{normalizeNote:n,getOrCreateEditMeta:a,getMetaForElement:l,rememberSelectionAnchor:A,clearPendingSelectionAnchor:X,renderChangeMarkers:T,syncEditMetaWithTransactions:x,setNoteForElement:K,getImagesForElement:_,setImagesForElement:v,markElementEditsHandled:B,clearAllEditMeta:H,getSelectedElementNote:q,setChangeMarkersVisible:Y,buildModifiedElementsContext:F}}const Aa=3e3,Kn=5e3,Ia=3e5,Gr=5,ka=1500,Vr=3,Na=8e3,Ra=6e3,zr=6e3,Wr="/api/assistant/runtime",Pa="/health",Xr="@axhub/genie",Ma="make",ci="make",li="Genie 页面未在线,请先打开对应 Genie 页面。",ui="Genie 连接配置不完整。",Yr="Genie 连接未建立,请稍后重试。",_a="Genie 执行配置不完整。",jr="[WebEditorV2][GenieBridge]",La=10,Da=24*60*60*1e3,Ba=1800,Fa=3e3,Ka=new Set(["SESSION_NOT_FOUND","INVALID_SESSION","AGENT_SESSION_NOT_FOUND","ACTIVE_SESSION_NOT_FOUND"]);function it(t){const e=Math.random().toString(36).slice(2,10);return`${t}_${Date.now().toString(36)}_${e}`}function qt(t,e){return typeof t!="number"||!Number.isFinite(t)||t<=0?e:Math.max(100,Math.round(t))}function Ae(t){return typeof t=="string"?t.trim():""}function Rt(t){const e=Ae(t);if(!e)return"";try{return new URL(e).toString().replace(/\/+$/u,"")}catch{return""}}function di(...t){const e=[],n=new Set;for(const r of t){const o=Ae(r);!o||n.has(o)||(n.add(o),e.push(o))}return e}function fi(...t){if(typeof window>"u")return"";try{const e=new URL(window.location.href);for(const n of t){const r=Ae(e.searchParams.get(n));if(r)return r}}catch{}return""}function Ha(t,e){var o;const n=Ae((o=t==null?void 0:t.service)==null?void 0:o.id),r=Ae((e==null?void 0:e.get("X-App-Identifier"))??(e==null?void 0:e.get("x-app-identifier")));return n===Xr||r===Xr}function $a(t){return(Array.isArray(t==null?void 0:t.items)?t.items:[]).map(n=>{if(!xn(n))return null;const r=Ae(n.channel),o=Ae(n.clientId);return!r||!o?null:{channel:r,clientId:o,sessionId:Ae(n.sessionId)||null,pageUrl:Ae(n.pageUrl)||null,lastSeenAt:rr(n.lastSeenAt,0),connectedAt:rr(n.connectedAt,0),capabilities:Array.isArray(n.capabilities)?n.capabilities.map(s=>Ae(s)).filter(Boolean):[]}}).filter(n=>n!==null)}function Ua(t,e){for(const o of e){const s=t.find(i=>i.clientId===o);if(s)return s}const n=t.slice().sort((o,s)=>{const i=Math.max(o.lastSeenAt,o.connectedAt);return Math.max(s.lastSeenAt,s.connectedAt)-i}),r=n.find(o=>o.clientId===ci);return r||(n.length===1,n[0]??null)}function Jr(t){return di(t,fi("genieIntegrationChannel","integrationChannel"),Ma)}function Qr(t){return di(t,fi("genieTargetClientId","integrationClientId"),ci)}function nr(t,e){const n=String(t??"").trim();if(!n)throw new Error(ui);const r=new URL(n);r.protocol=r.protocol==="https:"?"wss:":"ws:",r.pathname=`${r.pathname.replace(/\/+$/,"")}/agent/ws`;const o=String(e??"").trim();return o?r.searchParams.set("apiKey",o):r.searchParams.delete("apiKey"),r.toString()}function xn(t){return!!t&&typeof t=="object"}function Oa(t,e){const n=t.payload;if(!n||typeof n!="object")return!1;const r=n.frontend;if(!xn(r))return!1;const o=r.connected;if(typeof o=="boolean")return o;const s=r.clients;return Array.isArray(s)?s.some(i=>xn(i)?i.clientId===e:!1):!1}function qa(t,e){if(t==="FRONTEND_NOT_ONLINE")return li;const n=typeof e=="string"?e.trim():"";return n||(typeof t=="string"&&t.trim()?`Genie 集成失败:${t.trim()}`:"Genie 集成失败,请稍后重试。")}function Hn(t){const e=typeof t=="string"?t.trim():"";return e||"Genie 执行失败,请稍后重试。"}function $n(t){var e,n;return typeof t.errorCode=="string"&&t.errorCode.trim()?t.errorCode.trim():typeof((e=t.payload)==null?void 0:e.code)=="string"&&t.payload.code.trim()?t.payload.code.trim():typeof((n=t.result)==null?void 0:n.errorCode)=="string"&&t.result.errorCode.trim()?t.result.errorCode.trim():null}function Xe(t,e={}){const n=new Error(t);return n.code=e.code,n.silentToast=e.silentToast,n}function Zr(t){return!!(t&&typeof t=="object"&&"silentToast"in t&&t.silentToast)}function Ga(t,e){var s;if(typeof window<"u")try{const a=((s=new URL(window.location.href).searchParams.get("axhubDisplayName"))==null?void 0:s.trim())??"";if(a)return a}catch{}const n=String(t??"").trim();if(n){const i=n.split("/").filter(Boolean).pop()??"";if(i)return i}const r=String(e??"").trim();return r?(r.split("/").filter(Boolean).pop()??"").replace(/\.[^/.]+$/u,""):""}function rr(t,e=0){if(typeof t=="number"&&Number.isFinite(t))return t;if(typeof t=="string"&&t.trim()){const n=Date.parse(t);if(Number.isFinite(n))return n}return e}function eo(t){if(!xn(t))return null;const e=typeof t.sessionId=="string"?t.sessionId.trim():"",n=typeof t.provider=="string"?t.provider.trim():"",r=typeof t.phase=="string"?t.phase.trim():"";return!e||!n||!r?null:{sessionId:e,provider:n,phase:r,isLoading:!!t.isLoading,canAbortSession:!!t.canAbortSession,hasPendingApproval:!!t.hasPendingApproval,updatedAt:rr(t.updatedAt,Date.now()),subscriptionKey:typeof t.subscriptionKey=="string"&&t.subscriptionKey.trim()?t.subscriptionKey.trim():null}}function Va(t){let e=!1,n=!1,r=!1,o=!1,s=null,i=null,a=null,l=null,m=null,P=null,L=0,S=0,R=null;const I=new Map,h=new Map,T=new Map,x=new Map,B=new Map,K=new Map,{state:_}=t;let v=Rt(t.bridgeOptions.apiBaseUrl);const H=Ae(t.bridgeOptions.apiKey);let q=!!t.bridgeOptions.enabled;const Y=Ae(t.bridgeOptions.externalClientId);let F=Ae(t.bridgeOptions.integrationChannel),A=Ae(t.bridgeOptions.projectPath);const X=t.bridgeOptions.provider,N=t.bridgeOptions.probeOnStart,b=t.bridgeOptions.probeTimeoutMs;let E=Ae(t.bridgeOptions.targetClientId);q=q||!!(v&&F&&E);function O(){const f=r;o!==f&&(o=f,W())}function d(f){const c=Rt(f.apiBaseUrl??v),w=Ae(f.integrationChannel??F),z=Ae(f.targetClientId??E);v=c,F=w,E=z,q=q||!!(v&&F&&E)}async function M(f){var z;if(typeof window>"u"||typeof fetch!="function")return{apiBaseUrl:"",projectPath:""};const c=f?Wr:`${Wr}?autoStart=false`;let w="";try{const ne=await fetch(c,{method:"GET"});if(ne.ok){const Q=await ne.json().catch(()=>null),he=Ae((z=Q==null?void 0:Q.health)==null?void 0:z.status),Ce=Rt(Q==null?void 0:Q.apiBaseUrl);if(w=Ae(Q==null?void 0:Q.projectPath),Ce&&(he==="ready"||f))return{apiBaseUrl:Ce,projectPath:w}}}catch{}try{const ne=await fetch(Pa,{method:"GET"});if(!ne.ok)return{apiBaseUrl:"",projectPath:w};const Q=await ne.json().catch(()=>null);return!Q||!Ha(Q,ne.headers)||Q.status!=="ok"?{apiBaseUrl:"",projectPath:w}:{apiBaseUrl:new URL("/api",window.location.origin).toString().replace(/\/+$/u,""),projectPath:w}}catch{return{apiBaseUrl:"",projectPath:w}}}async function j(f,c){const w=Rt(f),z=Ae(c);if(!w||!z||typeof window>"u"||typeof WebSocket>"u")return[];const ne=qt(b,Ra);return new Promise(Q=>{let he=null,Ce=!1,Fe=null,Ie=null;const Pe=(be=[])=>{if(!Ce){if(Ce=!0,he){he.onopen=null,he.onmessage=null,he.onerror=null,he.onclose=null;try{he.close()}catch{}}Q(be)}},$=window.setTimeout(()=>{Pe([])},ne);try{he=new WebSocket(nr(w,H))}catch{window.clearTimeout($),Pe([]);return}he.onopen=()=>{Fe=it("genie_discover_connect");try{he==null||he.send(JSON.stringify({type:"integration.connect",requestId:Fe,payload:{role:"external-client",channel:z,clientId:Y,capabilities:["presence.query","editor.query"]}}))}catch{window.clearTimeout($),Pe([])}},he.onmessage=be=>{let xe=null;try{xe=JSON.parse(be.data)}catch{return}if(xe!=null&&xe.type){if(xe.type==="integration.connected"&&xe.requestId===Fe){Ie=it("genie_discover_clients");try{he==null||he.send(JSON.stringify({type:"integration.editor.clients.list",requestId:Ie,payload:{channel:z}}))}catch{window.clearTimeout($),Pe([])}return}if(xe.type==="integration.editor.clients.result"&&xe.requestId===Ie){window.clearTimeout($),Pe($a(xe.payload));return}xe.type==="integration.error"&&xe.requestId===Ie&&(window.clearTimeout($),Pe([]))}},he.onerror=()=>{window.clearTimeout($),Pe([])},he.onclose=()=>{window.clearTimeout($),Pe([])}})}async function ee(f){const c=Jr(F),w=Qr(E);for(const z of c){const ne=await j(f,z);if(ne.length===0)continue;const Q=Ua(ne,w);if(Q)return Q}return null}async function oe(f){const c=Rt(v);if(!c)return!1;const w=await ee(c);if(!w)return!1;const z=Ae(w.channel),ne=Ae(w.clientId);return!z||!ne||!(z!==F||ne!==E)?!1:(d({apiBaseUrl:c,integrationChannel:z,targetClientId:ne}),!0)}async function ie(f){if(R)return R;R=(async()=>{const c=await M(f.autoStartRuntime),w=Rt(v)||c.apiBaseUrl;if(!A&&c.projectPath&&(A=c.projectPath),!w)return!1;const z=await ee(w);if(q&&v&&F&&E)return z&&d({apiBaseUrl:w,integrationChannel:Ae(z.channel),targetClientId:Ae(z.clientId)}),!0;const ne=Ae(z==null?void 0:z.channel)||Jr(F)[0]||"",Q=Ae(z==null?void 0:z.clientId)||Qr(E)[0]||"";return d({apiBaseUrl:w,integrationChannel:ne,targetClientId:Q}),q&&!!(v&&F&&E)})();try{return await R}finally{R=null}}async function me(){if(Nn()){const w=ce();w&&!K.has(w)&&await pe(w);return}const f=await M(!1);!A&&f.projectPath&&(A=f.projectPath);const c=ce();c&&await pe(c)}function ce(){return String(_.uiSettings.genieAgent??X??"codex").trim()}async function pe(f){if(!f||!v)return;const w=`${String(v).replace(/\/+$/u,"")}/session-core/providers/${encodeURIComponent(f)}`;try{const z=typeof AbortController<"u"?new AbortController:null,ne=z&&typeof window<"u"?window.setTimeout(()=>z.abort(),Fa):void 0,Q=await fetch(w,{method:"GET",...z?{signal:z.signal}:{}});if(ne!==void 0&&(typeof window<"u"?window:globalThis).clearTimeout(ne),!Q.ok){J("Provider availability check returned non-OK",{provider:f,status:Q.status});return}let he=null;try{he=await Q.json()}catch{return}he&&K.set(f,{installed:he.installed!==!1,installHint:typeof he.installHint=="string"?he.installHint.trim():void 0,checkedAt:Date.now()})}catch(z){J("Provider availability check failed (graceful degradation)",{provider:f,error:z instanceof Error?z.message:String(z)})}}function ge(f){const c=K.get(f);if(!c||c.installed)return;const w=c.installHint?` +安装命令:${c.installHint}`:"";throw Xe(`当前选择的 AI 工具(${f})不可用,请确认已安装或切换其他工具。${w}`,{code:"PROVIDER_NOT_AVAILABLE"})}function ae(){return String(t.summaries.resolveTargetPath()??"").trim()||(typeof window<"u"?String(window.location.pathname??"").trim():"")||"unknown"}function V(){const f=ae();return["web-editor-v2",String(A??"").trim()||"unknown-project",f].join("::")}function p(f){const c=String(ce()??"").trim()||"unknown";return[V(),c,String(F??"").trim()||"unknown-channel",String(E??"").trim()||"unknown-client"].join("::")}function u(f){return _.genieConversationByScopeKey.get(f)??null}function k(f){const c=V(),w=p(),z=u(c)??(w!==c?u(w):null);return z?z.scopeKey===c?z:{...z,scopeKey:c}:null}function y(){return k()}function D(){return g(y())}function U(f){const c=u(f);if(!c){t.persistence.clearGenieConversationState(f);return}t.persistence.writeGenieConversationState(f,c)}function C(f,c){return c?(_.genieConversationByScopeKey.set(f,c),U(f),fe(),c):(_.genieConversationByScopeKey.delete(f),t.persistence.clearGenieConversationState(f),fe(),null)}function g(f){return!(f!=null&&f.sessionId)||f.invalidated||f.sentCount>=La?!1:Number.isFinite(f.expiresAt)&&f.expiresAt>Date.now()}function G(f,c){const w=u(f),z=Date.now(),ne=Number.isFinite(Number(c.createdAt))?Number(c.createdAt):(w==null?void 0:w.createdAt)??z,Q=Number.isFinite(Number(c.lastUsedAt))?Number(c.lastUsedAt):(w==null?void 0:w.lastUsedAt)??ne,he={scopeKey:f,sessionId:String(c.sessionId??(w==null?void 0:w.sessionId)??"").trim(),provider:typeof c.provider=="string"&&c.provider.trim()?c.provider.trim():(w==null?void 0:w.provider)??null,projectPath:typeof c.projectPath=="string"&&c.projectPath.trim()?c.projectPath.trim():(w==null?void 0:w.projectPath)??(String(A??"").trim()||null),createdAt:ne,lastUsedAt:Q,sentCount:Math.max(0,Math.floor(Number(c.sentCount??(w==null?void 0:w.sentCount)??0))),expiresAt:Number.isFinite(Number(c.expiresAt))?Number(c.expiresAt):ne+Da,invalidated:typeof c.invalidated=="boolean"?c.invalidated:(w==null?void 0:w.invalidated)??!1,sessionPath:typeof c.sessionPath=="string"&&c.sessionPath.trim()?c.sessionPath.trim():c.sessionPath===null?null:(w==null?void 0:w.sessionPath)??null,sessionUrl:typeof c.sessionUrl=="string"&&c.sessionUrl.trim()?c.sessionUrl.trim():c.sessionUrl===null?null:(w==null?void 0:w.sessionUrl)??null};return C(f,he)}function se(f,c){}function J(f,c){if(c===void 0){console.warn(`${jr} ${f}`);return}console.warn(`${jr} ${f}`,c)}function W(){var f;(f=t.onAvailabilityChange)==null||f.call(t,o)}function Z(f){n!==f&&(n=f,W())}function re(f){r!==f&&(r=f,O())}function fe(){var f,c,w;(f=_.breadcrumbs)==null||f.refresh(),(c=_.propertyPanel)==null||c.refresh(),(w=_.positionTracker)==null||w.forceUpdate(!0)}function ue(f){const c=String(f??"").trim();if(!c)return;const w=B.get(c);w!==void 0&&(window.clearTimeout(w),B.delete(c))}function Ee(f){ue(f);const c=Ge(f).filter(z=>z.status==="completed"&&!z.dismissed);if(c.length===0)return;const w=Date.now();for(const z of c)Kt({...z,dismissed:!0,updatedAt:w,lastEventAt:z.lastEventAt})}function Te(f){const c=String(f??"").trim();if(!c)return;const w=Ge(c);if(w.length===0||w.some(ne=>ne.dismissed||ne.status!=="completed")){ue(c);return}if(B.has(c))return;const z=window.setTimeout(()=>{Ee(c)},Ba);B.set(c,z)}function De(f){const c=Array.from(_.genieTaskByElementKey.values()).filter(w=>w.scopeKey===f&&!w.dismissed&&He(w)&&typeof w.sessionId=="string"&&w.sessionId.trim().length>0&&typeof w.provider=="string"&&w.provider.trim().length>0).map(w=>({scopeKey:w.scopeKey,elementKey:w.elementKey,locator:w.locator,label:w.label,requestId:w.requestId,sessionId:w.sessionId,sessionPath:w.sessionPath,sessionUrl:w.sessionUrl,provider:w.provider,status:w.status,message:w.message,startedAt:w.startedAt,updatedAt:w.updatedAt,dismissed:w.dismissed,recoveryPending:w.recoveryPending,lastEventAt:w.lastEventAt,errorCode:w.errorCode}));t.persistence.writeGenieTaskStates(f,c)}function We(f){if(!f){x.clear(),W();return}x.set(f.requestId,f),W()}function Ue(f,c){const w=x.get(f);if(!w)return null;const z={...w,...c};return x.set(f,z),W(),z}function te(f){const c=x.get(f)??null;return c?(x.delete(f),W(),c):null}function le(f){return!!(f&&!f.dismissed)}function ye(f){if(!f)return null;const c=_.externalEditingTaskByElementKey.get(f)??null;return le(c)?c:null}function ke(f){return qe(f)??ye(f)}function ve(f){if(!f||!f.isConnected)return null;const c=Xt(_,f);if(c)return ke(c.elementKey);const w=Se(f),z=Ne(f,w.shadowHostChain);return ke(z)}function qe(f){if(!f)return null;const c=_.genieTaskByElementKey.get(f)??null;return c!=null&&c.dismissed?null:c}function Et(f){return f?_.genieTaskByRequestId.get(f)??Array.from(_.genieTaskByElementKey.values()).find(c=>c.requestId===f)??null:null}function Ge(f){return f?Array.from(_.genieTaskByElementKey.values()).filter(c=>c.requestId===f).sort((c,w)=>c.startedAt-w.startedAt):[]}function Nt(f){if(!f)return;const c=Array.from(_.genieTaskByElementKey.values()).find(w=>w.requestId===f);if(c){_.genieTaskByRequestId.set(f,c);return}_.genieTaskByRequestId.delete(f)}function Ze(f){const c=Xt(_,f);if(c)return{elementKey:c.elementKey,locator:c.locator,label:c.label};const w=Se(f),z=Ne(f,w.shadowHostChain),ne=bt(f,w.shadowHostChain);return{elementKey:z,locator:w,label:ne}}function Yt(f){return f.flatMap(c=>t.changes.getImagesForElement(c).slice(0,3).map(w=>({name:w.name,data:w.data,mimeType:w.mimeType,size:w.size})))}function He(f){return(f==null?void 0:f.status)==="pending"||(f==null?void 0:f.status)==="created"}function pr(f){return!f||f.dismissed?!1:He(f)||f.status==="error"}function yr(f,c){var ne;if(!f||!f.isConnected)return!1;const w=typeof ShadowRoot<"u";let z=f;for(;z;){if(z===c)return!0;const Q=(ne=z.getRootNode)==null?void 0:ne.call(z);w&&Q instanceof ShadowRoot&&Q.host instanceof Element&&Q.host!==z?z=Q.host:z=z.parentElement}return!1}function br(f){var ne,Q,he,Ce,Fe,Ie;if(!pr(f))return;let c=null;try{c=we(f.locator)}catch{c=null}if(!(c!=null&&c.isConnected))return;const w=_.selectedElement;w&&w!==c&&yr(w,c)&&(_.selectedElement=c,(ne=_.positionTracker)==null||ne.setSelectionElement(c),(Q=_.breadcrumbs)==null||Q.setTarget(c),(he=_.propertyPanel)==null||he.setTarget(c),(Ce=_.handlesController)==null||Ce.setTarget(c),(Fe=_.parentSelectController)==null||Fe.setTarget(c));const z=_.hoveredElement;z&&z!==c&&yr(z,c)&&(_.hoveredElement=null,(Ie=_.positionTracker)==null||Ie.setHoverElement(null))}function Ti(f){var z;if(!f||!f.isConnected)return null;const c=typeof ShadowRoot<"u";let w=f;for(;w;){const ne=ve(w);if(pr(ne))return w;const Q=(z=w.getRootNode)==null?void 0:z.call(w);c&&Q instanceof ShadowRoot&&Q.host instanceof Element&&Q.host!==w?w=Q.host:w=w.parentElement}return f}function Ci(f){var z;const c=typeof ShadowRoot<"u";let w=f;for(;w;){const ne=ve(w);if(He(ne)&&!(ne!=null&&ne.dismissed))return!0;const Q=(z=w.getRootNode)==null?void 0:z.call(w);c&&Q instanceof ShadowRoot&&Q.host instanceof Element&&Q.host!==w?w=Q.host:w=w.parentElement}return!1}function Kt(f,c={}){const w=_.genieTaskByElementKey.get(f.elementKey);return _.genieTaskByElementKey.set(f.elementKey,f),_.genieTaskByRequestId.set(f.requestId,f),w&&w.requestId!==f.requestId&&Nt(w.requestId),c.clearPreviousRequestId&&c.clearPreviousRequestId!==f.requestId&&Nt(c.clearPreviousRequestId),br(f),De(f.scopeKey),fe(),Te(f.requestId),f}function wr(f){var z;const c=Ge(f);if(c.length===0)return null;for(const ne of c)((z=_.genieTaskByElementKey.get(ne.elementKey))==null?void 0:z.requestId)===f&&_.genieTaskByElementKey.delete(ne.elementKey);const w=Array.from(new Set(c.map(ne=>ne.scopeKey)));Nt(f);for(const ne of w)De(ne);return fe(),ue(f),c[0]??null}function ot(f,c){const w=Ge(f);if(w.length===0)return null;let z=null;for(const ne of w){const Q=c.requestId??ne.requestId,he={...ne,...c,requestId:Q,updatedAt:Number.isFinite(Number(c.updatedAt))?Number(c.updatedAt):Date.now(),lastEventAt:Number.isFinite(Number(c.lastEventAt))?Number(c.lastEventAt):ne.lastEventAt},Ce=Kt(he,{clearPreviousRequestId:Q!==ne.requestId?ne.requestId:null});z||(z=Ce)}return z}function xi(f){const c=ve(f);!c||He(c)||c.dismissed||Kt({...c,dismissed:!0,updatedAt:Date.now(),lastEventAt:c.lastEventAt})}function Ai(){const f=new Map;for(const c of Array.from(_.genieTaskByElementKey.values()).filter(le))f.set(c.elementKey,c);for(const c of Array.from(_.externalEditingTaskByElementKey.values()).filter(le))f.has(c.elementKey)||f.set(c.elementKey,c);return Array.from(f.values()).sort((c,w)=>c.startedAt-w.startedAt)}function Ii(f){return f?{provider:typeof f.provider=="string"&&f.provider.trim()?f.provider.trim():null,sessionId:typeof f.sessionId=="string"&&f.sessionId.trim()?f.sessionId.trim():null,requestId:typeof f.requestId=="string"&&f.requestId.trim()?f.requestId.trim():null}:null}function ki(f,c){if(!(f!=null&&f.isConnected))return null;const w=Ze(f),z=Ii(c),ne=_.externalEditingTaskByElementKey.get(w.elementKey)??null,Q=Date.now(),he=String(ce()||"").trim()||null,Ce={scopeKey:V(),elementKey:w.elementKey,locator:w.locator,label:w.label,requestId:(z==null?void 0:z.requestId)??(ne==null?void 0:ne.requestId)??`external_editing_${w.elementKey}`,sessionId:(z==null?void 0:z.sessionId)??(ne==null?void 0:ne.sessionId)??null,sessionPath:null,sessionUrl:null,provider:(z==null?void 0:z.provider)??(ne==null?void 0:ne.provider)??he,status:"created",message:"AI 编辑中",startedAt:(ne==null?void 0:ne.startedAt)??Q,updatedAt:Q,dismissed:!1,recovery:"live",recoveryPending:!1,lastEventAt:Q,errorCode:null,origin:"external-editing",taskRef:z};return _.externalEditingTaskByElementKey.set(w.elementKey,Ce),br(Ce),fe(),Ce}function Ni(f,c){if(!(f!=null&&f.isConnected))return!1;const w=Ze(f),z=_.externalEditingTaskByElementKey.delete(w.elementKey);return z&&(t.changes.markElementEditsHandled(f),fe()),z}function vt(){return q&&String(v).trim().length>0&&String(F).trim().length>0&&String(E).trim().length>0}function Nn(){return String(A).trim().length>0&&ce().length>0}function Rn(){if(!vt())throw new Error(ui);if(!n||!s||s.readyState!==WebSocket.OPEN)throw new Error(Yr)}function Ri(){if(Rn(),!o)throw new Error(li)}function Pi(){if(Rn(),!Nn())throw new Error(_a)}function Mi(f){return f.isLoading?{taskStatus:"created",recovery:"snapshot",message:"Genie 正在修改"}:f.phase==="completed"?{taskStatus:"completed",recovery:"snapshot",message:"Genie 修改完成"}:{taskStatus:"error",recovery:"snapshot",message:f.phase==="aborted"?"已中断":"Genie 修改失败"}}function Sr(f){!He(f)||!f.requestId||x.set(f.requestId,{requestId:f.requestId,scopeKey:f.scopeKey,provider:f.provider,sessionId:f.sessionId,sessionPath:f.sessionPath,sessionUrl:f.sessionUrl,abortRequestId:null,interruptRequested:!1,elementKey:f.elementKey,locator:f.locator,label:f.label})}function _i(){const f=new Map;for(const c of _.genieTaskByRequestId.values()){if(c.dismissed||!He(c)||!c.recoveryPending||typeof c.sessionId!="string"||!c.sessionId.trim()||typeof c.provider!="string"||!c.provider.trim())continue;const w=c.sessionId.trim(),z=c.provider.trim(),ne=`${z}::${w}`,Q=f.get(ne);if(Q){Q.taskRequestIds.push(c.requestId);continue}f.set(ne,{sessionId:w,provider:z,taskRequestIds:[c.requestId]})}return Array.from(f.values())}function Li(){const f=_i();if(f.length===0||!s||s.readyState!==WebSocket.OPEN){f.length,f.length;return}for(const c of f){const w=it("genie_agent_state_query");c.sessionId,c.provider,c.taskRequestIds,Tt({type:"agent.state.query",requestId:w,payload:{sessionId:c.sessionId,provider:c.provider}});const z=window.setTimeout(()=>{const ne=I.get(w);if(ne){I.delete(w);for(const Q of ne.taskRequestIds){const he=wr(Q);he&&(J("Dropped restored Genie task after state sync timeout",{requestId:Q,sessionId:he.sessionId,scopeKey:he.scopeKey}),te(Q))}}},Na);I.set(w,{...c,timeoutId:z})}}function Di(f,c){if(!s||s.readyState!==WebSocket.OPEN){J("Skipping Genie state subscribe because socket is not open",{sessionId:f,provider:c});return}const w=it("genie_agent_state_subscribe");h.set(w,{sessionId:f,provider:c}),Tt({type:"agent.state.subscribe",requestId:w,payload:{sessionId:f,provider:c}})}function Er(f,c){const w=Mi(f),z=c!=null&&c.length?c:Array.from(_.genieTaskByRequestId.values()).filter(Q=>!Q.dismissed&&He(Q)&&Q.sessionId===f.sessionId&&Q.provider===f.provider).map(Q=>Q.requestId),ne=[];for(const Q of z){const he=ot(Q,{provider:f.provider,status:w.taskStatus,message:w.message,updatedAt:f.updatedAt,recovery:w.recovery,recoveryPending:!1,lastEventAt:f.updatedAt,errorCode:f.phase==="aborted"?"GENIE_ABORTED":null});he&&(ne.push(he),w.taskStatus==="pending"||w.taskStatus==="created"?Sr(he):te(he.requestId))}return f.sessionId,f.provider,f.phase,f.updatedAt,ne.map(Q=>Q.requestId),ne}function vr(f,c){if(!f||!c||!Ka.has(c))return;const w=u(f.scopeKey);w!=null&&w.sessionId&&C(f.scopeKey,{...w,invalidated:!0})}function Tr(f){const c=String(f??"").trim();if(!c)return;const w=u(c);w!=null&&w.sessionId&&C(c,{...w,invalidated:!0})}function Cr(f,c){const w=Ge(f);if(w.length!==0){for(const z of w){const ne=we(z.locator);ne!=null&&ne.isConnected&&t.changes.markElementEditsHandled(ne)}t.persistence.flushPendingWrite()}}function Bi(){const f=V(),c=p(),w=t.persistence.readGenieConversationState(f)??(c!==f?t.persistence.readGenieConversationState(c):null);w&&(C(f,{...w,scopeKey:f}),c!==f&&t.persistence.clearGenieConversationState(c),w.sessionId,w.provider,w.sentCount,w.expiresAt,w.invalidated,void 0),t.persistence.pruneExpiredGenieTaskStates(f);const z=t.persistence.readGenieTaskStates(f),ne=z.length===0&&c!==f?t.persistence.readGenieTaskStates(c):[];z.length+ne.length,[...z,...ne].map(Q=>({requestId:Q.requestId,sessionId:Q.sessionId,provider:Q.provider,status:Q.status}));for(const Q of[...z,...ne]){if(!He(Q)||typeof Q.sessionId!="string"||Q.sessionId.trim().length===0||typeof Q.provider!="string"||Q.provider.trim().length===0){J("Skipping persisted Genie task restore",{requestId:Q.requestId,sessionId:Q.sessionId,provider:Q.provider,status:Q.status,reason:"task-not-running-or-missing-session"});continue}let he=Q.elementKey,Ce=Q.locator,Fe=Q.label;try{const Pe=we(Q.locator);if(Pe!=null&&Pe.isConnected){const $=Ze(Pe);he=$.elementKey,Ce=$.locator,Fe=$.label}}catch{}const Ie={...Q,scopeKey:f,elementKey:he,locator:Ce,label:Fe,recovery:"storage",recoveryPending:He(Q)};Kt(Ie),He(Ie)&&Sr(Ie),Ie.requestId,Ie.sessionId,Ie.provider,Ie.status,Ie.recoveryPending,Ie.elementKey}}function Ht(){l!==null&&(window.clearTimeout(l),l=null)}function jt(){m!==null&&(window.clearTimeout(m),m=null)}function xr(){P!==null&&(window.clearTimeout(P),P=null)}function Pn(f){const c=T.get(f);c&&(window.clearTimeout(c.timeoutId),T.delete(f))}function $t(f,c,w){const z=T.get(f);z&&(window.clearTimeout(z.timeoutId),T.delete(f),w==="FRONTEND_NOT_ONLINE"&&re(!1),z.reject(typeof c=="string"?Xe(c):c))}function Jt(f){const c=T.get(f);c&&(window.clearTimeout(c.timeoutId),T.delete(f),c.resolve())}function Ar(f){for(const[c,w]of T.entries())window.clearTimeout(w.timeoutId),w.reject(Xe(f)),T.delete(c)}function Mn(f,c,w,z="等待 Genie 响应超时,请稍后重试。",ne={}){return new Promise((Q,he)=>{const Ce=window.setTimeout(()=>{T.delete(f),he(Xe(z))},c);T.set(f,{kind:w,resolve:Q,reject:he,timeoutId:Ce,timeoutMessage:z,...ne})})}function Tt(f){if(!s||s.readyState!==WebSocket.OPEN)throw new Error(Yr);s.send(JSON.stringify(f))}function Ir(){if(!(!e||!vt()||P!==null)){if(L>=Gr){J("Reconnect aborted: retry limit reached",{attempts:L,maxAttempts:Gr,integrationChannel:F,targetClientId:E});return}L+=1,P=window.setTimeout(()=>{P=null,Zt()},Aa)}}function _n(){S=0,jt()}function Qt(f){if(!(!e||!vt()||m!==null)&&!(!s||s.readyState!==WebSocket.OPEN)){if(S>=Vr){J("Probe retry aborted: retry limit reached",{reason:f,attempts:S,maxAttempts:Vr,integrationChannel:F,targetClientId:E});return}S+=1,m=window.setTimeout(()=>{m=null,oe().catch(()=>!1).then(()=>{Ln()})},ka)}}function Fi(f){if(s===f){J("Socket closed",{integrationChannel:F,targetClientId:E}),s=null,i=null,a=null;for(const{timeoutId:c}of I.values())window.clearTimeout(c);I.clear(),h.clear(),Ht(),jt(),Z(!1),re(!1);for(const c of Array.from(x.keys())){const w=Et(c);!w||!He(w)||ot(c,{recoveryPending:!0,recovery:"storage",updatedAt:Date.now()})}We(null),Ar("Genie 连接已断开,请稍后重试。"),Ir()}}function Ki(f){var z,ne,Q,he,Ce,Fe,Ie,Pe;let c=null;try{c=JSON.parse(f.data)}catch{J("Received non-JSON WS message",f.data);return}if(!(c!=null&&c.type))return;if(c.type==="integration.connected"){L=0,_n(),Z(!0),c.requestId,c.requestId===i&&N&&Ln(),Li();return}if(c.type==="integration.pong"){if(c.requestId!==a)return;a=null,Ht();const $=Oa(c,E);c.requestId,re($),$?_n():Qt("frontend_offline");return}if(c.type==="integration.presence"){const $=c.payload;if(!$||$.channel!==F||$.clientId!==E)return;$.event==="frontend-online"?(_n(),re(!0)):$.event==="frontend-offline"&&re(!1);return}if(c.type==="integration.ack"&&c.requestId){c.requestId,c.payload,Jt(c.requestId);return}if(c.type==="agent.state.snapshot"&&c.requestId){const $=I.get(c.requestId);if(!$)return;window.clearTimeout($.timeoutId),I.delete(c.requestId);const be=eo(c.payload);if(!be)return;c.requestId,$.sessionId,$.provider,$.taskRequestIds,Er(be,$.taskRequestIds),be.isLoading&&Di($.sessionId,$.provider);return}if(c.type==="agent.state.subscribed"&&c.requestId){if(!h.has(c.requestId))return;c.requestId,h.delete(c.requestId);return}if(c.type==="agent.state.changed"){const $=eo(c.payload);if(!$)return;Er($);return}if(c.type==="agent.error"&&c.requestId){const $=I.get(c.requestId);if($){window.clearTimeout($.timeoutId),I.delete(c.requestId),J("State sync query rejected by Genie",{requestId:c.requestId,sessionId:$.sessionId,provider:$.provider,error:c.error,errorCode:$n(c)});for(const xe of $.taskRequestIds)wr(xe)&&te(xe);return}const be=h.get(c.requestId);if(be){h.delete(c.requestId),J("State sync subscribe rejected by Genie",{requestId:c.requestId,sessionId:be.sessionId,provider:be.provider,error:c.error,errorCode:$n(c)});return}}const w=c.requestId?T.get(c.requestId):void 0;if(c.type==="agent.accepted"&&(w==null?void 0:w.kind)==="agent-run"){const $=Ue(c.requestId??"",{provider:typeof c.provider=="string"&&c.provider.trim()?c.provider:((z=x.get(c.requestId??""))==null?void 0:z.provider)??ce()});ot(c.requestId??"",{status:"pending",provider:($==null?void 0:$.provider)??ce(),message:"Genie 准备中",recovery:"live",recoveryPending:!1,lastEventAt:Date.now(),errorCode:null}),$!=null&&$.sessionId&&Cr(c.requestId??""),w.acceptedNotified||(w.acceptedNotified=!0);return}if(c.type==="agent.session.created"&&(w==null?void 0:w.kind)==="agent-run"){const $=Ue(c.requestId??"",{provider:typeof c.provider=="string"&&c.provider.trim()?c.provider:((ne=x.get(c.requestId??""))==null?void 0:ne.provider)??ce(),sessionId:typeof c.sessionId=="string"&&c.sessionId.trim()?c.sessionId:null,sessionPath:typeof c.sessionPath=="string"&&c.sessionPath.trim()?c.sessionPath:null,sessionUrl:typeof c.sessionUrl=="string"&&c.sessionUrl.trim()?c.sessionUrl:null});ot(c.requestId??"",{status:"created",provider:($==null?void 0:$.provider)??ce(),sessionId:($==null?void 0:$.sessionId)??null,sessionPath:($==null?void 0:$.sessionPath)??null,sessionUrl:($==null?void 0:$.sessionUrl)??null,message:"Genie 正在修改",recovery:"live",recoveryPending:!1,lastEventAt:Date.now(),errorCode:null}),$!=null&&$.scopeKey&&$.sessionId&&G($.scopeKey,{sessionId:$.sessionId,provider:$.provider,projectPath:A,createdAt:Date.now(),lastUsedAt:Date.now(),sentCount:Math.max(1,((Q=u($.scopeKey))==null?void 0:Q.sentCount)??0),sessionPath:$.sessionPath,sessionUrl:$.sessionUrl,invalidated:!1}),Cr(c.requestId??""),w.sessionCreatedNotified||(w.sessionCreatedNotified=!0);return}if(c.type==="agent.completed"&&(w==null?void 0:w.kind)==="agent-run"&&c.requestId){const $=te(c.requestId),be=ot(c.requestId,{status:"completed",provider:typeof c.provider=="string"&&c.provider.trim()?c.provider:($==null?void 0:$.provider)??ce(),sessionId:typeof c.sessionId=="string"&&c.sessionId.trim()?c.sessionId:typeof((he=c.result)==null?void 0:he.sessionId)=="string"&&c.result.sessionId.trim()?c.result.sessionId:($==null?void 0:$.sessionId)??null,sessionPath:typeof c.sessionPath=="string"&&c.sessionPath.trim()?c.sessionPath:typeof((Ce=c.result)==null?void 0:Ce.sessionPath)=="string"&&c.result.sessionPath.trim()?c.result.sessionPath:($==null?void 0:$.sessionPath)??null,sessionUrl:typeof c.sessionUrl=="string"&&c.sessionUrl.trim()?c.sessionUrl:typeof((Fe=c.result)==null?void 0:Fe.sessionUrl)=="string"&&c.result.sessionUrl.trim()?c.result.sessionUrl:($==null?void 0:$.sessionUrl)??null,message:"Genie 修改完成",recovery:"live",recoveryPending:!1,lastEventAt:Date.now(),errorCode:null});$!=null&&$.scopeKey&&(be!=null&&be.sessionId)&&G($.scopeKey,{sessionId:be.sessionId,provider:be.provider,projectPath:A,createdAt:((Ie=u($.scopeKey))==null?void 0:Ie.createdAt)??be.startedAt,lastUsedAt:Date.now(),sentCount:Math.max(1,((Pe=u($.scopeKey))==null?void 0:Pe.sentCount)??0),sessionPath:be.sessionPath,sessionUrl:be.sessionUrl,invalidated:!1}),t.feedback.toast("success","Genie 已完成执行"),Jt(c.requestId);return}if(c.type==="agent.aborted"&&(w==null?void 0:w.kind)==="agent-run"&&c.requestId){const $=te(c.requestId),be=!!($!=null&&$.interruptRequested),xe=$==null?void 0:$.abortRequestId,et=ot(c.requestId,{status:"error",sessionId:typeof c.sessionId=="string"&&c.sessionId.trim()?c.sessionId:($==null?void 0:$.sessionId)??null,sessionPath:($==null?void 0:$.sessionPath)??null,sessionUrl:($==null?void 0:$.sessionUrl)??null,message:"已中断",recovery:"live",recoveryPending:!1,lastEventAt:Date.now(),errorCode:"GENIE_ABORTED"});vr(et,null),Tr(($==null?void 0:$.scopeKey)??(et==null?void 0:et.scopeKey)??null),xe&&Jt(xe),$t(c.requestId,be?Xe("Genie 任务已中断。",{code:"GENIE_ABORTED",silentToast:!0}):"Genie 任务已中断。");return}if(c.type==="agent.error"&&(w==null?void 0:w.kind)==="agent-run"&&c.requestId){const $=te(c.requestId),be=$n(c),xe=ot(c.requestId,{status:"error",provider:typeof c.provider=="string"&&c.provider.trim()?c.provider:($==null?void 0:$.provider)??ce(),sessionId:typeof c.sessionId=="string"&&c.sessionId.trim()?c.sessionId:($==null?void 0:$.sessionId)??null,sessionPath:($==null?void 0:$.sessionPath)??null,sessionUrl:($==null?void 0:$.sessionUrl)??null,message:Hn(c.error),recovery:"live",recoveryPending:!1,lastEventAt:Date.now(),errorCode:be});vr(xe,be),$t(c.requestId,Hn(c.error));return}if(c.type==="agent.aborted"&&(w==null?void 0:w.kind)==="agent-abort"&&c.requestId){const $=w.linkedRunRequestId,be=$?te($):null;if(Jt(c.requestId),be&&t.feedback.toast("info","已中断 Genie 执行"),$){const xe=ot($,{status:"error",sessionId:typeof c.sessionId=="string"&&c.sessionId.trim()?c.sessionId:(be==null?void 0:be.sessionId)??null,sessionPath:(be==null?void 0:be.sessionPath)??null,sessionUrl:(be==null?void 0:be.sessionUrl)??null,message:"已中断",recovery:"live",recoveryPending:!1,lastEventAt:Date.now(),errorCode:"GENIE_ABORTED"});Tr((be==null?void 0:be.scopeKey)??(xe==null?void 0:xe.scopeKey)??null),$t($,Xe("Genie 任务已中断。",{code:"GENIE_ABORTED",silentToast:!0}))}return}if(c.type==="agent.error"&&(w==null?void 0:w.kind)==="agent-abort"&&c.requestId){const $=w.linkedRunRequestId;$&&Ue($,{abortRequestId:null,interruptRequested:!1}),$t(c.requestId,Hn(c.error));return}if(c.type==="integration.error"){const $=c.payload,be=qa($==null?void 0:$.code,$==null?void 0:$.message);J("Received integration error",{requestId:c.requestId,code:$==null?void 0:$.code,message:be,payload:$}),c.requestId===a&&(a=null,Ht(),re(!1),Qt(String(($==null?void 0:$.code)??"integration_error"))),c.requestId&&$t(c.requestId,be,$==null?void 0:$.code)}}function Zt(){if(!e||!vt()||s)return;let f;try{const c=nr(v,H);f=new WebSocket(c)}catch(c){re(!1),Ir(),J("Failed to create Genie bridge socket",c);return}s=f,f.onopen=()=>{if(s===f){xr(),L=0,i=it("genie_connect");try{Tt({type:"integration.connect",requestId:i,payload:{role:"external-client",channel:F,clientId:Y,capabilities:["presence.query","context.push","prompt.push"]}})}catch(c){J("Failed to send integration.connect",c),f.close()}}},f.onmessage=Ki,f.onerror=()=>{J("Socket error",{integrationChannel:F,targetClientId:E}),Z(!1),re(!1)},f.onclose=()=>{Fi(f)}}async function Ln(){if(!e||!vt())return;const f=it("genie_probe"),c=qt(b,Kn);a=f,Ht();try{Tt({type:"integration.ping",requestId:f,payload:{channel:F,targetClientId:E}})}catch(w){J("Failed to send availability probe",w),a=null,re(!1),Qt("send_failed");return}l=window.setTimeout(()=>{a===f&&(J("Availability probe timed out",{requestId:f,timeoutMs:c,integrationChannel:F,targetClientId:E}),a=null,re(!1),Qt("timeout"))},c)}function Dn(){e=!1,R=null,xr(),Ht(),jt(),a=null,i=null;for(const c of B.values())window.clearTimeout(c);B.clear();for(const{timeoutId:c}of I.values())window.clearTimeout(c);I.clear(),h.clear(),L=0,S=0,Ar("Genie bridge 已停止。"),We(null);const f=s;s=null,f&&(f.onopen=null,f.onmessage=null,f.onerror=null,f.onclose=null,f.close()),Z(!1),re(!1)}function kr(){Z(!1),re(!1),I.clear(),h.clear(),L=0,S=0,jt()}async function Hi(){var w,z;return await((z=(w=t.bridgeOptions).onRequestWake)==null?void 0:z.call(w)),!await ie({autoStartRuntime:!0})||(Dn(),e=!0,kr(),typeof window>"u"||typeof WebSocket>"u")?!1:(Zt(),await $i(zr)?!0:(Dn(),!1))}async function $i(f){if(n&&s&&s.readyState===WebSocket.OPEN)return!0;if(typeof window>"u")return!1;const c=Date.now()+qt(f,zr);return await new Promise(w=>{const z=()=>{if(n&&s&&s.readyState===WebSocket.OPEN){w(!0);return}if(!e||Date.now()>=c){w(!1);return}window.setTimeout(z,120)};z()})}function Ui(){if(e){N&&(s==null?void 0:s.readyState)===WebSocket.OPEN&&Ln();return}if(e=!0,kr(),typeof window>"u"||typeof WebSocket>"u"){J("Bridge start skipped",{hasWindow:typeof window<"u",hasWebSocket:typeof WebSocket<"u"});return}if(vt()){Zt();return}ie({autoStartRuntime:!1}).then(f=>{if(e){if(!f){J("Bridge start skipped",{hasRequiredConfig:vt(),enabled:q,apiBaseUrl:v,integrationChannel:F,targetClientId:E});return}Zt()}})}function Oi(f){const c=t.summaries.resolveCurrentFilePath(),w=t.summaries.resolveTargetPath(),z=(()=>{var he;if(!f)return[];const ne=Xt(_,f);if(ne)return[{tag:((he=ne.sourceElement)==null?void 0:he.tagName.toLowerCase())??"text-selection",selector:t.summaries.formatSelectorPath(ne.locator),label:ne.label}];const Q=Se(f);return[{tag:f.tagName.toLowerCase(),selector:t.summaries.formatSelectorPath(Q),label:t.summaries.formatElementLabelFromLocator(Q)}]})();return{version:"1",systemContext:"",currentFile:{path:c,displayName:Ga(w,c)},selectedElements:z,extensions:{source:"web-editor-v2",pageUrl:typeof window<"u"?window.location.href:"",targetPath:w,webEditorV2:{selectedElementNote:t.changes.getSelectedElementNote(),modifiedElements:t.changes.buildModifiedElementsContext(),markersVisible:t.state.changeMarkersVisible},updatedAt:new Date().toISOString()}}}async function qi(f){if(q)try{f.tagName,Ri();const c=it("genie_context"),w=Oi(f),z=Mn(c,qt(b,Kn),"integration");try{Tt({type:"integration.context.update",requestId:c,payload:{channel:F,targetClientId:E,mode:"append",context:w}})}catch(ne){throw Pn(c),ne}await z,t.feedback.toast("success","已添加到 Genie 对话。")}catch(c){const w=c instanceof Error?c.message:String(c);J("Failed to send selected element context",{message:w,integrationChannel:F,targetClientId:E}),t.feedback.toast("error",`添加到 Genie 对话失败:${w}`)}}async function Nr(f,c){var w,z,ne;if(q)try{const Q=Array.from(new Set(f.filter(Le=>!!(Le!=null&&Le.isConnected))));if(Q.length===0)throw Xe("目标元素已失效,请重新选择后再试。");const he=String(c??""),Ce=Q.map(Le=>Ze(Le));if(Ce.length===0)throw Xe("当前没有可发送到 Genie 的编辑元素。");const Fe=Yt(Q),Ie=V(),Pe=k(),$=g(Pe)?Pe:null,be=String(($==null?void 0:$.provider)??ce()).trim(),xe=($==null?void 0:$.sessionId)??null,et=Date.now();Ce.length,Ce.map(Le=>Le.elementKey),he.length,Nn()||await me(),Pi(),ge(be);const Ct=it("genie_agent_run"),zi=Mn(Ct,Ia,"agent-run","等待 Genie 执行完成超时,请稍后查看 Genie 会话。");for(const Le of Ce){const Bn=qe(Le.elementKey);Kt({scopeKey:Ie,elementKey:Le.elementKey,locator:Le.locator,label:Le.label,requestId:Ct,sessionId:xe,sessionPath:($==null?void 0:$.sessionPath)??null,sessionUrl:($==null?void 0:$.sessionUrl)??null,provider:be,status:"pending",message:"Genie 准备中",startedAt:et,updatedAt:et,dismissed:!1,recovery:"live",recoveryPending:!1,lastEventAt:et,errorCode:null},{clearPreviousRequestId:(Bn==null?void 0:Bn.requestId)??null})}We({requestId:Ct,scopeKey:Ie,provider:be,sessionId:xe,sessionPath:($==null?void 0:$.sessionPath)??null,sessionUrl:($==null?void 0:$.sessionUrl)??null,abortRequestId:null,interruptRequested:!1,elementKey:((w=Ce[0])==null?void 0:w.elementKey)??"",locator:((z=Ce[0])==null?void 0:z.locator)??Se(Q[0]),label:((ne=Ce[0])==null?void 0:ne.label)??""});try{Tt({type:"agent.run",requestId:Ct,payload:{projectPath:A,provider:be,...xe?{sessionId:xe}:{},message:he,...Fe.length>0?{images:Fe}:{},stream:!1}}),$&&G(Ie,{sessionId:$.sessionId,provider:be,projectPath:A,createdAt:$.createdAt,lastUsedAt:et,sentCount:$.sentCount+1,expiresAt:$.expiresAt,sessionPath:$.sessionPath,sessionUrl:$.sessionUrl,invalidated:!1})}catch(Le){throw Pn(Ct),te(Ct),ot(Ct,{status:"error",message:Le instanceof Error?Le.message:String(Le),recovery:"live",recoveryPending:!1,lastEventAt:Date.now()}),Le}await zi}catch(Q){const he=Q instanceof Error?Q.message:String(Q);throw Zr(Q)||J("Failed to send prompt to Genie",{message:he,integrationChannel:F,targetClientId:E}),Zr(Q)||t.feedback.toast("error",`发送到 Genie 失败:${he}`),Q}}async function Gi(f,c){await Nr([f],c)}async function Vi(f){if(!q)return;const c=ve(f);if(!c)throw Xe("当前元素没有可中断的 Genie 执行。");const w=x.get(c.requestId)??null;if(!w)throw Xe("当前没有可中断的 Genie 执行。");if(!w.sessionId)throw Xe("Genie 对话尚未创建,暂时无法中断,请稍后再试。");if(w.abortRequestId)return;Rn();const z=it("genie_agent_abort"),ne=Mn(z,qt(b,Kn),"agent-abort","等待 Genie 中断超时,请稍后查看 Genie 会话。",{linkedRunRequestId:w.requestId});Ue(w.requestId,{abortRequestId:z,interruptRequested:!0});try{Tt({type:"agent.abort",requestId:z,payload:{sessionId:w.sessionId,provider:w.provider??ce()}})}catch(Q){throw Pn(z),Ue(w.requestId,{abortRequestId:null,interruptRequested:!1}),Q}try{await ne}catch(Q){const he=Q instanceof Error?Q.message:String(Q);throw J("Failed to interrupt Genie prompt run",{message:he,integrationChannel:F,targetClientId:E}),t.feedback.toast("error",`中断 Genie 执行失败:${he}`),Q}}return{start:Ui,stop:Dn,requestWake:Hi,isConnected(){return n},isAvailable(){return o},getDebugInfo(){return{apiBaseUrl:v,integrationChannel:F,targetClientId:E,provider:ce()}},getCurrentConversationState:y,hasReusableConversation:D,getElementTaskState:ve,getVisibleTaskStates:Ai,getTaskStateByElementKey:ke,resolveSelectableElement:Ti,isElementInteractionLocked:Ci,dismissElementTaskState:xi,setExternalEditingState:ki,clearExternalEditingState:Ni,canInterruptElementTask(f){const c=ve(f);if(!c)return!1;const w=x.get(c.requestId)??null;return!!(w&&w.sessionId&&!w.abortRequestId)},interruptElementTask:Vi,handleSendSelectionToGenie:qi,handleSendPromptToGenieForElements:Nr,handleSendPromptToGenieForElement:Gi,rehydratePersistedGenieState:Bi}}const za=3e3,Wa=100,Xa=["editor.snapshot","editor.nodes.list","editor.node.screenshot","editor.context-images","editor.editing.set"];class $e extends Error{constructor(e,n){super(n),this.code=e}}function Ye(t){return typeof t=="string"&&t.trim().length>0}function Ya(t="editor_integration"){return typeof crypto<"u"&&typeof crypto.randomUUID=="function"?`${t}_${crypto.randomUUID()}`:`${t}_${Date.now()}_${Math.random().toString(36).slice(2,10)}`}function ja(t){if(!t||typeof t!="object")return null;const e=t;return{provider:Ye(e.provider)?e.provider.trim():null,sessionId:Ye(e.sessionId)?e.sessionId.trim():null,requestId:Ye(e.requestId)?e.requestId.trim():null}}function Ja(t){if(t==null)return[];if(!Array.isArray(t))throw new $e("INVALID_PAYLOAD","status must be an array of strings");const e=t.map(r=>String(r??"").trim()).filter(Boolean),n=new Set(["dirty","handled","editing","completed","error","pending-dispatch"]);for(const r of e)if(!n.has(r))throw new $e("INVALID_PAYLOAD",`Unknown status alias: ${r}`);return e}function Qa(t){if(t==null||t==="")return Wa;const e=Number(t);if(!Number.isInteger(e)||e<=0)throw new $e("INVALID_PAYLOAD","limit must be a positive integer");return e}function Za(t){if(t instanceof $e)return t;const e=t instanceof Error?t.message:String(t);return e.startsWith("NOT_FOUND:")?new $e("NOT_FOUND",e.replace(/^NOT_FOUND:\s*/,"")):e.startsWith("NOT_IMPLEMENTED:")?new $e("NOT_IMPLEMENTED",e.replace(/^NOT_IMPLEMENTED:\s*/,"")):new $e("INTERNAL_ERROR",e||"Unknown integration failure")}function ec(t,e){return e==="dirty"?t.changeState==="dirty":e==="handled"?t.changeState==="handled":e==="editing"?t.taskState==="editing":e==="completed"?t.taskState==="completed":e==="error"?t.taskState==="error":t.changeState==="dirty"&&t.taskState==="idle"}function tc(t){const{apiBaseUrl:e,apiKey:n,channel:r,clientId:o,enabled:s}=t.integrationWsOptions;let i=!1,a=null,l=null;function m(){return s&&Ye(e)&&Ye(r)&&Ye(o)}function P(){l!==null&&(window.clearTimeout(l),l=null)}function L(){!i||l!==null||!m()||(l=window.setTimeout(()=>{l=null,H()},za))}function S(F){if(!a||a.readyState!==WebSocket.OPEN)throw new $e("INTERNAL_ERROR","Integration WebSocket is not connected");a.send(JSON.stringify(F))}function R(F,A,X){S({type:"integration.error",requestId:F,payload:{code:A,message:X}})}function I(F,A){const X=Ye(F.channel)?F.channel.trim():"",N=Ye(F.targetClientId)?F.targetClientId.trim():"";if(!X||!N)throw new $e("INVALID_PAYLOAD","payload.channel and payload.targetClientId are required");if(X!==r||N!==o)throw new $e("INVALID_TARGET","Message target does not match this frontend page");if(!A)throw new $e("INVALID_PAYLOAD","requestId is required")}async function h(F){const A=String(F.requestId??"").trim(),X=F.payload??{};I(X,A),S({type:"integration.editor.snapshot.result",requestId:A,payload:t.getEditedSnapshotPayload()})}async function T(F){const A=String(F.requestId??"").trim(),X=F.payload??{};I(X,A);const N=Ja(X.status),b=Ye(X.elementKey)?X.elementKey.trim():null,E=Qa(X.limit),d=t.listEditorNodes().filter(M=>b&&M.elementKey!==b?!1:N.length===0?!0:N.some(j=>ec(M,j)));S({type:"integration.editor.nodes.result",requestId:A,payload:{items:d.slice(0,E),total:d.length,filters:{status:N,elementKey:b,limit:E}}})}async function x(F){const A=String(F.requestId??"").trim(),X=F.payload??{};I(X,A);const N=Ye(X.elementKey)?X.elementKey.trim():"";if(!N)throw new $e("INVALID_PAYLOAD","payload.elementKey is required");S({type:"integration.editor.node.screenshot.result",requestId:A,payload:await t.getNodeScreenshotPayload(N)})}async function B(F){const A=String(F.requestId??"").trim(),X=F.payload??{};I(X,A),S({type:"integration.editor.context-images.result",requestId:A,payload:t.getContextImagesPayload()})}async function K(F){const A=String(F.requestId??"").trim(),X=F.payload??{};I(X,A);const N=Ye(X.elementKey)?X.elementKey.trim():"";if(!N)throw new $e("INVALID_PAYLOAD","payload.elementKey is required");const b=X.state;if(b!=="editing"&&b!=="idle")throw new $e("INVALID_PAYLOAD","payload.state must be editing or idle");S({type:"integration.editor.editing.result",requestId:A,payload:await t.setNodeEditingState(N,b,ja(X.taskRef),A)})}async function _(F){try{if(F.type==="integration.editor.snapshot.get"){await h(F);return}if(F.type==="integration.editor.nodes.list"){await T(F);return}if(F.type==="integration.editor.node.screenshot.get"){await x(F);return}if(F.type==="integration.editor.context-images.get"){await B(F);return}F.type==="integration.editor.editing.set"&&await K(F)}catch(A){const X=String(F.requestId??"").trim();if(!X)return;const N=Za(A);R(X,N.code,N.message)}}function v(F){let A=null;try{A=JSON.parse(F.data)}catch{return}A!=null&&A.type&&A.type!=="integration.connected"&&_(A)}function H(){if(!i||a||!m())return;let F;try{F=new WebSocket(nr(e,n))}catch{L();return}a=F,F.onopen=()=>{try{S({type:"integration.connect",requestId:Ya("integration_connect"),payload:{role:"frontend-page",channel:r.trim(),clientId:o.trim(),pageUrl:t.getPageUrl(),sessionId:t.getSessionId(),capabilities:[...Xa]}})}catch{F.close()}},F.onmessage=v,F.onerror=()=>{},F.onclose=()=>{a===F&&(a=null),L()}}function q(){i=!1,P();const F=a;a=null,F&&(F.onopen=null,F.onmessage=null,F.onerror=null,F.onclose=null,F.close())}function Y(){i||(i=!0,!(typeof window>"u"||typeof WebSocket>"u"||!m())&&H())}return{start:Y,stop:q}}function nc(t){const{state:e,genieBridge:n}=t;function r(){var _;const h=e.selectionAnchor;if(!h)return null;const T=e.selectedElement,x=(_=e.activeTextAnnotation)==null?void 0:_.sourceElement,B=T&&T.isConnected?T:x&&x.isConnected?x:null,K=B instanceof HTMLElement?B.getBoundingClientRect():null;return da(h,{liveRect:K,scrollX:window.scrollX,scrollY:window.scrollY,viewportWidth:window.innerWidth})}function o(){return r()}function s(h){var B,K;h&&n.isElementInteractionLocked(h)&&(h=null);const T=e.hoveredElement;e.hoveredElement=h;const x=T!==null&&h!==null&&T!==h;e.pendingHoverTransition=x,(B=e.positionTracker)==null||B.setHoverElement(h),(K=e.positionTracker)==null||K.forceUpdate()}function i(h,T,x){var K,_,v,H,q,Y,F,A;if(n.isElementInteractionLocked(h))return;t.changes.rememberSelectionAnchor(h,x),e.selectedElement=h,e.hoveredElement=null,(K=e.positionTracker)==null||K.setHoverElement(null),(_=e.positionTracker)==null||_.setSelectionElement(h),(v=e.positionTracker)==null||v.forceUpdate(),(H=e.breadcrumbs)==null||H.setTarget(h),(q=e.propertyPanel)==null||q.setTarget(h),(Y=e.handlesController)==null||Y.setTarget(h),(F=e.parentSelectController)==null||F.setTarget(h),(A=t.onStatusChange)==null||A.call(t);const B=T.alt?" (Alt: drill-up)":"";console.log(`${t.logPrefix} Selected${B}:`,h.tagName,h)}function a(){var h,T,x,B,K,_,v,H,q,Y,F,A,X,N,b,E,O,d;if(!e.selectedElement&&e.activeTextAnnotation){t.changes.clearPendingSelectionAnchor(),e.selectionAnchor=null,e.activeTextAnnotation=null,(h=e.canvasOverlay)==null||h.setTextHighlightRects(null),(T=e.textAnnotationManager)==null||T.clearActiveHighlight(),e.textAnnotationTargetElement&&delete e.textAnnotationTargetElement.dataset.weTextAnnotationId,(x=e.positionTracker)==null||x.setSelectionElement(null),(B=e.positionTracker)==null||B.forceUpdate(),(K=e.breadcrumbs)==null||K.setTarget(null),(_=e.breadcrumbs)==null||_.setAnchorRect(null),(v=e.propertyPanel)==null||v.setTarget(null),(H=e.propertyPanel)==null||H.refresh(),(q=e.handlesController)==null||q.setTarget(null),(Y=e.parentSelectController)==null||Y.setTarget(null),(F=t.onStatusChange)==null||F.call(t),console.log(`${t.logPrefix} Deselected`);return}e.selectedElement=null,t.changes.clearPendingSelectionAnchor(),(A=e.positionTracker)==null||A.setSelectionElement(null),(X=e.positionTracker)==null||X.forceUpdate(),(N=e.breadcrumbs)==null||N.setTarget(null),(b=e.propertyPanel)==null||b.setTarget(null),(E=e.handlesController)==null||E.setTarget(null),(O=e.parentSelectController)==null||O.setTarget(null),(d=t.onStatusChange)==null||d.call(t),console.log(`${t.logPrefix} Deselected`)}function l(h){var A,X,N;const T=o(),x=!!e.activeTextAnnotation;(A=e.breadcrumbs)==null||A.setAnchorRect(x?T:h.selection??T);const B=e.pendingHoverTransition;if(e.pendingHoverTransition=!1,!e.canvasOverlay)return;const K=!!e.selectedElement&&e.hoveredElement===e.selectedElement,_=!e.selectionChromeVisible,v=_||K?null:h.hover,H=_||x?null:h.selection,q=n.isElementInteractionLocked(e.selectedElement),Y=!_&&H&&q?"ai-editing":"default",F=_||e.annotationEntryMode==="bubble-card"||q?null:h.selection;e.canvasOverlay.setHoverRect(v,{animate:B}),e.canvasOverlay.setSelectionEffect(Y),e.canvasOverlay.setSelectionRect(H),e.canvasOverlay.setEditingRects(null),(X=e.handlesController)==null||X.setSelectionRect(F),(N=e.parentSelectController)==null||N.setSelectionRect(H),t.changes.renderChangeMarkers(),e.canvasOverlay.render()}function m(h){var K,_,v,H,q;const{action:T,undoCount:x,redoCount:B}=h;console.log(`${t.logPrefix} Transaction: ${T} (undo: ${x}, redo: ${B})`),t.changes.syncEditMetaWithTransactions(),(K=e.propertyPanel)==null||K.setHistory(x,B),(_=e.breadcrumbs)==null||_.refresh(),(T==="undo"||T==="redo")&&((v=e.propertyPanel)==null||v.refresh()),(H=e.positionTracker)==null||H.forceUpdate(!0),t.persistence.scheduleWrite(),(q=t.onStatusChange)==null||q.call(t)}function P(h="bubble-card"){var T,x;e.annotationEntryMode=h,(x=(T=e.propertyPanel)==null?void 0:T.enterAnnotationInput)==null||x.call(T,h)}function L(h){var B;const T=e.selectedElement;let x=T&&T.isConnected?T:null;return!x&&h&&(x=((B=e.selectionEngine)==null?void 0:B.findBestTarget(h.clientX,h.clientY,Cn))??null),x=n.resolveSelectableElement(x),!x||!x.isConnected?!1:(e.selectedElement!==x&&i(x,Cn,h),P("bubble-card"),!0)}function S(){var B,K,_,v,H,q,Y,F,A,X,N,b,E,O,d,M,j,ee;const h=!!e.selectedElement,T=!!e.activeTextAnnotation;if(!h&&!T&&!e.selectionAnchor)return;const x=()=>{if(typeof t.changes.getMetaForElement!="function"||typeof t.changes.normalizeNote!="function"||typeof t.changes.setNoteForElement!="function")return;const oe=e.textAnnotationTargetElement??null,ie=t.changes.getMetaForElement(oe),me=!!(ie&&(t.changes.normalizeNote(ie.note).trim()||ie.images.length>0||ie.changeKinds.length>0));oe&&!me&&t.changes.setNoteForElement(oe,"")};e.eventController?(e.eventController.setMode("hover"),e.selectedElement?a():(x(),t.changes.clearPendingSelectionAnchor(),e.selectionAnchor=null,e.activeTextAnnotation=null,(B=e.canvasOverlay)==null||B.setTextHighlightRects(null),(K=e.textAnnotationManager)==null||K.clearActiveHighlight(),e.textAnnotationTargetElement&&delete e.textAnnotationTargetElement.dataset.weTextAnnotationId,(_=e.breadcrumbs)==null||_.setTarget(null),(v=e.breadcrumbs)==null||v.setAnchorRect(null),(H=e.propertyPanel)==null||H.setTarget(null),(q=e.propertyPanel)==null||q.refresh(),(Y=e.handlesController)==null||Y.setTarget(null),(F=e.parentSelectController)==null||F.setTarget(null),(A=t.onStatusChange)==null||A.call(t))):e.selectedElement?a():(x(),t.changes.clearPendingSelectionAnchor(),e.selectionAnchor=null,e.activeTextAnnotation=null,(X=e.canvasOverlay)==null||X.setTextHighlightRects(null),(N=e.textAnnotationManager)==null||N.clearActiveHighlight(),e.textAnnotationTargetElement&&delete e.textAnnotationTargetElement.dataset.weTextAnnotationId,(b=e.breadcrumbs)==null||b.setTarget(null),(E=e.breadcrumbs)==null||E.setAnchorRect(null),(O=e.propertyPanel)==null||O.setTarget(null),(d=e.propertyPanel)==null||d.refresh(),(M=e.handlesController)==null||M.setTarget(null),(j=e.parentSelectController)==null||j.setTarget(null),(ee=t.onStatusChange)==null||ee.call(t)),console.log(`${t.logPrefix} Selection cleared`)}async function R(h){var B,K;const T=String(h??"").trim();if(!T)return{success:!1,error:"elementKey is required"};const x=e.transactionManager;if(!x)return{success:!1,error:"Transaction manager not ready"};try{const _=kn(e,x.getUndoStack()),H=tt(_).find(b=>b.elementKey===T);if(!H)return{success:!1,error:"Element not found in current changes"};const q=we(H.locator);if(!q||!q.isConnected)return{success:!1,error:"Failed to locate element for revert"};const Y={};let F=!1;const A=H.netEffect.classChanges;if(A){const b=Array.isArray(A.before)?A.before:[],E=(()=>{try{const M=q.classList;if(M&&typeof M[Symbol.iterator]=="function")return Array.from(M).filter(Boolean)}catch{}return(q.getAttribute("class")??"").split(/\s+/).map(M=>M.trim()).filter(Boolean)})();x.recordClass(q,E,b)&&(Y.class=!0,F=!0)}const X=H.netEffect.textChange;if(X){const b=String(X.before??""),E=q.textContent??"";E!==b&&(q.textContent=b,x.recordText(q,E,b)&&(Y.text=!0,F=!0))}const N=H.netEffect.styleChanges;if(N){const b=N.before??{},E=N.after??{},O=Array.from(new Set([...Object.keys(b),...Object.keys(E)])).map(d=>String(d??"").trim()).filter(Boolean);if(O.length>0){const d=x.beginMultiStyle(q,O);d&&(d.set(b),d.commit({merge:!1})&&(Y.style=!0,F=!0))}}return F?((B=e.propertyPanel)==null||B.refresh(),(K=t.onStatusChange)==null||K.call(t),{success:!0,reverted:Y}):{success:!1,error:"No changes were reverted"}}catch(_){return console.error(`${t.logPrefix} Revert element failed:`,_),{success:!1,error:_ instanceof Error?_.message:String(_)}}}function I(h,T){var O,d,M,j,ee,oe,ie,me,ce,pe,ge,ae,V;const x=h.id,B=(O=h.sourceElement)!=null&&O.isConnected?h.sourceElement:null,K=h.boundingRect,_=Number.isFinite(K.left)&&Number.isFinite(K.top)&&Number.isFinite(K.width)&&Number.isFinite(K.height),v=_?K.left+K.width/2:T.clientX,H=_?K.top+K.height/2:T.clientY,q=B&&"getBoundingClientRect"in B&&typeof B.getBoundingClientRect=="function"?B.getBoundingClientRect():null,Y=q&&Number.isFinite(q.left)&&Number.isFinite(q.width)?v-q.left:void 0,F=q&&Number.isFinite(q.top)&&Number.isFinite(q.height)?H-q.top:void 0,A=B?Se(B):{selectors:[],fingerprint:h.selectedText.slice(0,80),path:[]},X=ai(h.selectedText),N=t.changes.getOrCreateEditMeta(x,A,X),b=ri({clientX:v,clientY:H,scrollX:window.scrollX,scrollY:window.scrollY,viewportWidth:window.innerWidth,isFixed:!1,offsetX:Y,offsetY:F});e.selectedElement=null,e.selectionAnchor=b,e.hoveredElement=null,e.activeTextAnnotation=h,(d=e.positionTracker)==null||d.setSelectionElement(B),N.anchor=b;const E=e.textAnnotationTargetElement;E?(E.dataset.weTextAnnotationId=h.id,E.style.left=`${Math.round(v)}px`,E.style.top=`${Math.round(H)}px`,(M=e.breadcrumbs)==null||M.setTarget(null),(j=e.propertyPanel)==null||j.setTarget(null),(ee=e.breadcrumbs)==null||ee.setTarget(E),(oe=e.propertyPanel)==null||oe.setTarget(E)):((ie=e.breadcrumbs)==null||ie.setTarget(null),(me=e.propertyPanel)==null||me.setTarget(null)),(ce=e.breadcrumbs)==null||ce.setAnchorRect(h.boundingRect),(pe=e.handlesController)==null||pe.setTarget(null),(ge=e.parentSelectController)==null||ge.setTarget(null),P("bubble-card"),(ae=e.propertyPanel)==null||ae.refresh(),(V=t.onStatusChange)==null||V.call(t),console.log(`${t.logPrefix} Text annotation:`,h.selectedText.slice(0,50))}return{handleHover:s,handleSelect:i,handleDeselect:a,handlePositionUpdate:l,handleTransactionChange:m,enterAnnotationInput:P,enterAnnotationFromTrigger:L,enterTextAnnotation:I,clearSelection:S,revertElement:R}}class ze{constructor(){this.disposed=!1,this.disposers=[]}get isDisposed(){return this.disposed}add(e){if(this.disposed){try{e()}catch{}return}this.disposers.push(e)}listen(e,n,r,o){e.addEventListener(n,r,o),this.add(()=>e.removeEventListener(n,r,o))}observeResize(e,n,r){const o=new ResizeObserver(n);return o.observe(e,r),this.add(()=>o.disconnect()),o}observeMutation(e,n,r){const o=new MutationObserver(n);return o.observe(e,r),this.add(()=>o.disconnect()),o}requestAnimationFrame(e){const n=requestAnimationFrame(e);let r=!1;const o=()=>{r||(r=!0,cancelAnimationFrame(n))};return this.add(o),o}dispose(){if(!this.disposed){this.disposed=!0;for(let e=this.disposers.length-1;e>=0;e--)try{this.disposers[e]()}catch{}this.disposers.length=0}}}const rc=` + :host { + all: initial; + + /* Shared overlay tokens */ + --we-surface-bg: #0a0a0a; + + /* Border colors */ + --we-border-subtle: rgba(255, 255, 255, 0.08); + + /* Text colors */ + --we-text-primary: rgba(255, 255, 255, 0.94); + --we-text-secondary: rgba(255, 255, 255, 0.72); + --we-text-muted: #a1a1aa; + + /* Shared chrome */ + --we-shadow-panel: 0 20px 54px rgba(0, 0, 0, 0.42), 0 6px 20px rgba(0, 0, 0, 0.28); + --we-shadow-glow: 0 0 22px rgba(0, 143, 93, 0.18); + --we-editor-surface-dark: #121212; + --we-editor-surface-elevated-dark: #161616; + --we-editor-surface-muted-dark: #18181b; + --we-editor-surface-interactive-dark: #1d1d1f; + --we-editor-border-dark: rgba(255, 255, 255, 0.08); + --we-editor-border-strong-dark: rgba(255, 255, 255, 0.12); + --we-editor-text-primary-dark: rgba(255, 255, 255, 0.94); + --we-editor-text-secondary-dark: rgba(255, 255, 255, 0.72); + --we-editor-text-muted-dark: #a1a1aa; + --we-brand-primary: #008f5d; + --we-brand-accent: #00d68f; + --we-brand-sleeping: #71717a; + + --we-radius-panel: 16px; + --we-radius-control: 12px; + --we-radius-pill: 999px; + + /* Focus ring */ + --we-focus-ring: rgba(0, 214, 143, 0.24); + } + + *, + *::before, + *::after { + box-sizing: border-box; + } + + /* Overlay container - for Canvas and visual feedback */ + #${Xo} { + position: fixed; + inset: 0; + pointer-events: none; + contain: layout style; + } + + /* ========================================================================== + * Resize Handles (Phase 4.9) + * ========================================================================== */ + + /* Handles layer - covers viewport, pass-through by default */ + .we-handles-layer { + position: absolute; + inset: 0; + pointer-events: none; + contain: layout style paint; + } + + /* Selection frame - positioned by selection rect */ + .we-selection-frame { + position: absolute; + top: 0; + left: 0; + width: 0; + height: 0; + transform: translate3d(0, 0, 0); + pointer-events: none; + will-change: transform, width, height; + } + + .we-parent-corner { + position: absolute; + width: 7px; + height: 7px; + margin: 0; + padding: 0; + border: 0; + background: transparent; + pointer-events: auto; + display: block; + cursor: pointer; + user-select: none; + touch-action: manipulation; + z-index: 7; + } + + .we-parent-corner[data-hidden="true"] { + display: none; + } + + .we-parent-corner:focus-visible { + outline: none; + } + + .we-parent-corner__chrome { + width: 100%; + height: 100%; + border-radius: 2px; + display: block; + opacity: 0.82; + transition: opacity 140ms ease, box-shadow 140ms ease; + } + + /* Individual resize handle */ + .we-resize-handle { + position: absolute; + width: 8px; + height: 8px; + border-radius: 2px; + background: #ffffff; + border: 1px solid ${Me.selectionBorder}; + box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9), 0 0 0 2px rgba(0, 214, 143, 0.18), + 0 8px 20px rgba(0, 0, 0, 0.18); + pointer-events: auto; + touch-action: none; + user-select: none; + transition: background-color 0.1s ease, border-color 0.1s ease, transform 0.1s ease, + box-shadow 0.1s ease; + } + + .we-resize-handle:hover { + background: #ffffff; + border-color: ${Me.selectionBorder}; + box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.98), 0 0 0 3px rgba(0, 214, 143, 0.22), + 0 10px 24px rgba(0, 0, 0, 0.2); + transform: translate(-50%, -50%) scale(1.15); + } + + .we-resize-handle:active { + transform: translate(-50%, -50%) scale(1.0); + } + + /* Handle positions - all use translate(-50%, -50%) as base */ + .we-resize-handle[data-dir="n"] { left: 50%; top: 0; transform: translate(-50%, -50%); cursor: ns-resize; } + .we-resize-handle[data-dir="s"] { left: 50%; top: 100%; transform: translate(-50%, -50%); cursor: ns-resize; } + .we-resize-handle[data-dir="e"] { left: 100%; top: 50%; transform: translate(-50%, -50%); cursor: ew-resize; } + .we-resize-handle[data-dir="w"] { left: 0; top: 50%; transform: translate(-50%, -50%); cursor: ew-resize; } + .we-resize-handle[data-dir="nw"] { left: 0; top: 0; transform: translate(-50%, -50%); cursor: nwse-resize; } + .we-resize-handle[data-dir="ne"] { left: 100%; top: 0; transform: translate(-50%, -50%); cursor: nesw-resize; } + .we-resize-handle[data-dir="sw"] { left: 0; top: 100%; transform: translate(-50%, -50%); cursor: nesw-resize; } + .we-resize-handle[data-dir="se"] { left: 100%; top: 100%; transform: translate(-50%, -50%); cursor: nwse-resize; } + + /* Size HUD - shows W×H while resizing */ + .we-size-hud { + position: absolute; + left: 50%; + top: 0; + transform: translate(-50%, calc(-100% - 8px)); + padding: 3px 8px; + font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; + font-size: 11px; + font-weight: 600; + line-height: 1.2; + color: rgba(255, 255, 255, 0.98); + background: rgba(18, 18, 18, 0.94); + border: 1px solid rgba(0, 214, 143, 0.2); + border-radius: 999px; + pointer-events: none; + user-select: none; + white-space: nowrap; + box-shadow: var(--we-shadow-glow), 0 8px 20px rgba(0, 0, 0, 0.24); + backdrop-filter: blur(4px); + -webkit-backdrop-filter: blur(4px); + } + + /* ========================================================================== + * Performance HUD (Phase 5.3) + * ========================================================================== */ + + .we-perf-hud { + position: fixed; + left: 12px; + bottom: 12px; + padding: 8px 10px; + border-radius: 16px; + background: rgba(18, 18, 18, 0.86); + border: 1px solid rgba(255, 255, 255, 0.08); + color: rgba(255, 255, 255, 0.96); + font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; + font-size: 12px; + line-height: 1.25; + pointer-events: none; + user-select: none; + white-space: nowrap; + z-index: 10; + box-shadow: var(--we-shadow-panel); + backdrop-filter: blur(6px); + -webkit-backdrop-filter: blur(6px); + font-variant-numeric: tabular-nums; + } + + .we-perf-hud-line + .we-perf-hud-line { + margin-top: 4px; + } + + /* UI container - for panels and controls */ + /* Position below toolbar: 16px (toolbar top) + 40px (toolbar height) + 8px (gap) = 64px */ + #${Yo} { + position: fixed; + inset: 0; + top: 32px; + right: 16px; + pointer-events: none; + z-index: 10020; + font-family: "Inter", "SF Pro Display", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; + font-size: 11px; + line-height: 1.4; + color: var(--we-text-primary); + -webkit-font-smoothing: antialiased; + } + + /* ========================================================================== + Breadcrumbs (Phase 2.2) - Anchored to selection element + ========================================================================== */ + .we-breadcrumbs { + position: fixed; + /* left/top set dynamically via JS based on selection rect */ + left: 16px; + top: 72px; + width: auto; + max-width: min(600px, calc(100vw - 400px)); + display: flex; + align-items: center; + gap: 2px; + padding: 4px 6px; + background: var(--we-surface-bg); + border: 1px solid var(--we-border-subtle); + border-radius: var(--we-radius-panel); + box-shadow: var(--we-shadow-panel); + pointer-events: auto; + user-select: none; + overflow-x: auto; + white-space: nowrap; + scrollbar-width: none; + z-index: 5; + color: var(--we-text-primary); + } + + .we-breadcrumbs[data-hidden="true"] { + display: none; + } + + .we-breadcrumbs[data-position="bottom"] { + top: auto; + bottom: 72px; + } + + .we-breadcrumbs::-webkit-scrollbar { + display: none; + } + + .we-crumb { + display: inline-flex; + align-items: center; + max-width: 220px; + padding: 4px 8px; + border-radius: var(--we-radius-control); + border: none; + background: transparent; + color: var(--we-text-secondary); + font-size: 12px; + font-weight: 500; + line-height: 1.2; + cursor: pointer; + overflow: hidden; + text-overflow: ellipsis; + transition: all 0.15s ease; + } + + .we-crumb-send-btn { + display: inline-flex; + align-items: center; + justify-content: center; + width: 24px; + height: 24px; + border: none; + border-radius: var(--we-radius-control); + background: rgba(0, 143, 93, 0.1); + color: #008F5D; + cursor: pointer; + transition: background 0.15s ease, transform 0.15s ease; + flex: 0 0 auto; + } + + .we-crumb-send-btn svg { + width: 14px; + height: 14px; + display: block; + } + + .we-crumb-send-btn:hover { + background: rgba(0, 143, 93, 0.16); + transform: translateY(-1px); + } + + .we-crumb-send-btn:focus-visible { + outline: none; + box-shadow: 0 0 0 2px var(--we-focus-ring); + } + + .we-crumb:hover { + background: rgba(0, 143, 93, 0.08); + color: var(--we-text-primary); + } + + .we-crumb:active { + background: rgba(0, 143, 93, 0.12); + } + + .we-crumb:focus-visible { + outline: none; + box-shadow: 0 0 0 2px var(--we-focus-ring); + } + + .we-crumb--current { + background: rgba(0, 143, 93, 0.1); + color: #008F5D; + font-weight: 600; + } + + .we-crumb-sep { + display: inline-flex; + align-items: center; + justify-content: center; + width: 14px; + flex: 0 0 auto; + color: var(--we-text-muted); + font-size: 12px; + } + + .we-crumb-sep--shadow { + color: var(--we-text-secondary); + } + + .we-change-markers { + position: fixed; + inset: 0; + pointer-events: none; + z-index: 9996; + } + + .we-change-marker { + position: fixed; + transform: translate(-50%, -50%); + width: 22px; + height: 22px; + border-radius: 999px; + background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); + color: #ffffff; + display: inline-flex; + align-items: center; + justify-content: center; + font-size: 11px; + font-weight: 700; + line-height: 1; + letter-spacing: -0.02em; + box-shadow: + 0 8px 18px rgba(15, 23, 42, 0.22), + 0 0 0 2px rgba(255, 255, 255, 0.95); + pointer-events: auto; + cursor: pointer; + transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease; + } + + .we-change-marker:hover, + .we-change-marker:focus-visible { + transform: translate(-50%, -50%) scale(1.06); + box-shadow: + 0 10px 22px rgba(15, 23, 42, 0.28), + 0 0 0 2px rgba(255, 255, 255, 0.95), + 0 0 0 5px rgba(0, 143, 93, 0.18); + outline: none; + } + + .we-change-marker__tooltip { + position: absolute; + left: 50%; + top: calc(100% + 8px); + transform: translateX(-50%); + width: min(280px, calc(100vw - 32px)); + max-width: min(280px, calc(100vw - 32px)); + padding: 8px 10px; + border-radius: 10px; + background: rgba(15, 23, 42, 0.96); + color: rgba(255, 255, 255, 0.92); + box-shadow: 0 12px 24px rgba(15, 23, 42, 0.22); + opacity: 0; + pointer-events: none; + transition: opacity 0.12s ease, transform 0.12s ease; + } + + .we-change-marker:hover .we-change-marker__tooltip, + .we-change-marker:focus-visible .we-change-marker__tooltip { + opacity: 1; + transform: translateX(-50%) translateY(0); + } + + .we-change-marker__details { + display: flex; + flex-direction: column; + gap: 4px; + margin-top: 4px; + } + + .we-change-marker__label { + display: block; + font-size: 10px; + font-weight: 500; + line-height: 1.35; + color: rgba(255, 255, 255, 0.58); + } + + .we-change-marker__note { + display: block; + font-size: 12px; + font-weight: 700; + line-height: 1.5; + color: rgba(255, 255, 255, 0.96); + white-space: pre-wrap; + word-break: break-word; + } + + /* ========================================================================== + * Global Hidden Rule + * Ensures [hidden] attribute always hides elements, even when they have + * explicit display values (flex, inline-flex, etc.) + * ========================================================================== */ + [hidden] { + display: none !important; + } +`;function lt(t,e,n){t.style.setProperty(e,n,"important")}function oc(t={}){const e=new ze;let n=null;const r=document.getElementById(_r);if(r)try{r.remove()}catch{}const o=document.createElement("div");o.id=_r,o.setAttribute("data-mcp-web-editor","v2"),lt(o,"position","fixed"),lt(o,"inset","0"),lt(o,"z-index",String(us)),lt(o,"pointer-events","none"),lt(o,"background","transparent"),mt()?lt(o,"contain","none"):(lt(o,"contain","layout style paint"),lt(o,"isolation","isolate"));const s=o.attachShadow({mode:"open"}),i=document.createElement("style");i.textContent=rc,s.append(i);const a=document.createElement("div");a.id=Xo;const l=document.createElement("div");l.id=Yo,s.append(a,l),(document.documentElement??document.body).append(o),e.add(()=>o.remove()),n={host:o,shadowRoot:s,overlayRoot:a,uiRoot:l};const P=["pointerdown","pointerup","pointermove","pointerenter","pointerleave","mousedown","mouseup","mousemove","mouseenter","mouseleave","click","dblclick","contextmenu","keydown","keyup","keypress","wheel","touchstart","touchmove","touchend","touchcancel","focus","blur","input","change"],L=I=>{I.stopPropagation()};for(const I of P)e.listen(l,I,L),e.listen(a,I,L);const S=I=>{if(!(I instanceof Node))return!1;if(I===o)return!0;const h=typeof I.getRootNode=="function"?I.getRootNode():null;return h instanceof ShadowRoot&&h.host===o};return{getElements:()=>n,isOverlayElement:S,isEventFromUi:I=>{try{if(typeof I.composedPath=="function")return I.composedPath().some(h=>S(h))}catch{}return S(I.target)},dispose:()=>{n=null,e.dispose()}}}const ic=110,sc=40;function ac(t){return t.status==="completed"?{accent:"#16a34a",border:"rgba(34, 197, 94, 0.78)",glow:"rgba(34, 197, 94, 0.28)",background:"rgba(34, 197, 94, 0.12)",text:"已完成"}:t.status==="error"?{accent:"#ef4444",border:"rgba(239, 68, 68, 0.78)",glow:"rgba(239, 68, 68, 0.24)",background:"rgba(239, 68, 68, 0.12)",text:t.message.trim()==="已中断"?"已中断":"失败"}:{accent:Me.selectionBorder,border:Me.selectionBorder,glow:"rgba(0, 143, 93, 0.22)",background:"rgba(255, 255, 255, 0.22)",text:"修改中"}}function cc(t){const{tasks:e}=t;t.renderTick,t.onDismissTask;const n=e.map(r=>{const o=we(r.locator);if(!o||!o.isConnected||!(o instanceof HTMLElement))return null;const s=o.getBoundingClientRect();if(!Number.isFinite(s.left)||!Number.isFinite(s.top)||!Number.isFinite(s.width)||!Number.isFinite(s.height)||s.width<=0||s.height<=0)return null;const i=ac(r),a=window.getComputedStyle(o),l=a.borderRadius&&a.borderRadius!=="0px"?a.borderRadius:"inherit",m=r.status==="pending"||r.status==="created",P=s.width>ic&&s.height>sc,L=Math.max(48,Math.min(88,Math.round(s.height*.28)));return Re.jsxs("div",{style:{position:"fixed",left:s.left,top:s.top,width:s.width,height:s.height,borderRadius:l,overflow:"hidden",pointerEvents:m?"auto":"none",zIndex:10024},children:[Re.jsx("div",{style:{position:"absolute",inset:0,borderRadius:"inherit",border:m?`2px solid ${Me.selectionBorder}`:`1px solid ${i.border}`,boxShadow:m?"none":`0 0 0 1px ${i.border}, 0 12px 30px ${i.glow}`,background:i.background,backdropFilter:m?"blur(2px)":"blur(1px)"}}),m?Re.jsx("div",{style:{position:"absolute",inset:0,overflow:"hidden",borderRadius:"inherit"},children:Re.jsx("div",{className:"we-runtime-genie-task__scanner",style:{"--we-runtime-genie-task-accent":i.accent,"--we-runtime-genie-task-scan-size":`${L}px`}})}):null,P?Re.jsx("div",{style:{position:"absolute",inset:0,display:"flex",alignItems:"center",justifyContent:"center",color:i.accent,fontSize:14,fontWeight:500,lineHeight:1.2,letterSpacing:"0.02em",whiteSpace:"nowrap",pointerEvents:"none",textShadow:`0 1px 6px ${i.glow}`},children:Re.jsx("span",{children:i.text})}):null]},`${r.elementKey}:${r.requestId}`)}).filter(Boolean);return n.length===0?null:Re.jsx(Re.Fragment,{children:n})}function to(t,e,n){return!n&&t.dirty?{saved:e,draft:t.draft,dirty:t.draft!==e}:{saved:e,draft:e,dirty:!1}}function lc(){const t=de.useRef(null);return de.useEffect(()=>{const e=n=>{!Number.isFinite(n.clientX)||!Number.isFinite(n.clientY)||(t.current={clientX:n.clientX,clientY:n.clientY})};return window.addEventListener("pointermove",e,!0),window.addEventListener("mousemove",e,!0),window.addEventListener("pointerdown",e,!0),window.addEventListener("mousedown",e,!0),()=>{window.removeEventListener("pointermove",e,!0),window.removeEventListener("mousemove",e,!0),window.removeEventListener("pointerdown",e,!0),window.removeEventListener("mousedown",e,!0)}},[]),t}function uc(t){var I;const{propertyPanelOptions:e,setToolMinimized:n}=t,r=de.useRef(!1),o=de.useRef(new Set),s=de.useRef(new Set),i=de.useRef(null),a=de.useRef(!1),l=de.useRef(((I=e==null?void 0:e.getChangeMarkersVisible)==null?void 0:I.call(e))??!0),m=de.useCallback(()=>{var h;(h=e==null?void 0:e.onToggleSelectionMode)==null||h.call(e,!r.current&&!a.current&&o.current.size===0&&s.current.size===0)},[e]),P=de.useCallback(()=>!r.current&&!a.current&&o.current.size===0&&s.current.size===0,[]),L=de.useCallback((h,T)=>{if(i.current!==null&&(window.clearTimeout(i.current),i.current=null),T){o.current.add(h),m();return}if(o.current.delete(h),o.current.size>0){m();return}i.current=window.setTimeout(()=>{i.current=null,m()},80)},[m]),S=de.useCallback((h,T)=>{T?s.current.add(h):s.current.delete(h),m()},[m]),R=de.useCallback(h=>{var T,x,B,K,_,v;r.current!==h&&(r.current=h,h?(s.current.clear(),l.current=((T=e==null?void 0:e.getChangeMarkersVisible)==null?void 0:T.call(e))??!0,(x=e==null?void 0:e.onRequestClose)==null||x.call(e),(B=e==null?void 0:e.onChangeMarkersVisible)==null||B.call(e,!1,{persist:!1}),(K=e==null?void 0:e.onSelectionChromeVisibleChange)==null||K.call(e,!1)):(a.current=!1,(_=e==null?void 0:e.onChangeMarkersVisible)==null||_.call(e,l.current,{persist:!1}),(v=e==null?void 0:e.onSelectionChromeVisibleChange)==null||v.call(e,!0)),m(),n(h),mt()&&Wi())},[e,n,m]);return de.useEffect(()=>()=>{i.current!==null&&window.clearTimeout(i.current)},[]),{toolMinimizedRef:r,selectionHoverOwnersRef:o,selectionInteractionLockOwnersRef:s,selectionRestoreTimerRef:i,selectionNeedsExplicitReactivateRef:a,markerVisibilityBeforeMinimizeRef:l,syncSelectionModeAvailability:m,isSelectionModeActive:P,handlePanelHoverSelectionSuppressedChange:h=>L("panel",h),handlePromptHoverSelectionSuppressedChange:h=>L("prompt",h),handlePanelSelectionInteractionLockChange:h=>S("panel",h),handlePromptSelectionInteractionLockChange:h=>S("prompt",h),handleToolMinimizedChange:R}}function Un(t){return t instanceof HTMLElement?t.closest('input, textarea, select, button, [contenteditable=""], [contenteditable="true"]')instanceof HTMLElement?!0:t.isContentEditable:!1}function no(t){return String(t??"").replace(/\r\n/g,` +`).trim()}function ro(){if(typeof window>"u"||window.parent===window)return!1;try{return window.parent.location.origin===window.location.origin}catch{return!1}}function On(t){return t?t.tagName==="IFRAME":!1}const _t=3;function dc(){return typeof crypto<"u"&&typeof crypto.randomUUID=="function"?crypto.randomUUID():`img_${Date.now().toString(36)}_${Math.random().toString(36).slice(2,8)}`}function fc(t){const e=String(t??"").trim().toLowerCase();if(!e.startsWith("image/"))return"png";const n=e.slice(6).replace(/[^a-z0-9+.-]/g,"");return n?n==="jpeg"?"jpg":n==="svg+xml"?"svg":n:"png"}function hc(t,e,n){const r=String(t??"").trim();return r||`clipboard-image-${n+1}.${fc(e)}`}function mc(t){return new Promise((e,n)=>{const r=new FileReader;r.onerror=()=>n(r.error??new Error("blob-read-failed")),r.onload=()=>e(String(r.result??"")),r.readAsDataURL(t)})}async function hi(t,e=0,n){const r=String(t.type??"").trim()||"image/png";return{id:dc(),name:hc("name"in t&&typeof t.name=="string"?t.name:n,r,e),data:await mc(t),mimeType:r,size:Number(t.size??0),createdAt:Date.now()}}async function mi(t){if(!t)return[];const e=Array.from(t).filter(n=>n.kind==="file"&&String(n.type??"").startsWith("image/")).map(n=>n.getAsFile()).filter(n=>!!n);return Promise.all(e.map((n,r)=>hi(n,r)))}async function gc(t){if(!(t!=null&&t.length))return[];const e=await Promise.all(t.flatMap(n=>n.types.filter(r=>String(r??"").startsWith("image/")).map(async r=>({blob:await n.getType(r),type:r}))));return Promise.all(e.map(({blob:n},r)=>hi(n,r)))}function pc(t,e,n=_t){const r=t.slice(0,n),o=Math.max(0,n-r.length),s=e.slice(0,o);return{images:[...r,...s],acceptedCount:s.length,droppedCount:Math.max(0,e.length-s.length)}}function oo(t,e){return[String(t??"").trim(),String(e.mimeType??"").trim(),String(Number(e.size??0)),String(e.data??"").slice(0,96)].join("::")}const io=450;function yc(t){const{propertyPanelOptions:e,currentTargetRef:n,latestPointerPositionRef:r,isSelectionModeActive:o,selectionNeedsExplicitReactivateRef:s,onApplyImagesToElement:i}=t,a=de.useRef({hotkeyCount:0,pasteEventCount:0,tryApplyCount:0,lastResult:"idle",lastTextPreview:""}),l=de.useRef(new Map);return de.useEffect(()=>(window[Rr]={getState:()=>{var m,P,L,S,R,I,h,T,x,B,K;return{hasSameOriginParentWindow:ro(),isSelectionModeActive:o(),selectionNeedsExplicitReactivate:s.current,currentTargetTag:((m=n.current)==null?void 0:m.tagName)??null,currentTargetText:((S=(L=(P=n.current)==null?void 0:P.textContent)==null?void 0:L.trim())==null?void 0:S.slice(0,60))??null,hoveredElementTag:((I=(R=e==null?void 0:e.getHoveredElement)==null?void 0:R.call(e))==null?void 0:I.tagName)??null,hoveredElementText:((B=(x=(T=(h=e==null?void 0:e.getHoveredElement)==null?void 0:h.call(e))==null?void 0:T.textContent)==null?void 0:x.trim())==null?void 0:B.slice(0,60))??null,latestPointerPosition:r.current,pasteDebug:a.current,frameElementTag:((K=window.frameElement)==null?void 0:K.tagName)??null,frameElementTabIndex:On(window.frameElement)?window.frameElement.getAttribute("tabindex"):null,hasParentBridgeCleanup:On(window.frameElement)&&typeof window.frameElement[Ut]=="function"}}},()=>{delete window[Rr]}),[n,o,r,e,s]),de.useEffect(()=>{if(!(e!=null&&e.onAiNoteChange)||!e.getAiNote||!e.getHoveredElement)return;const{onAiNoteChange:m,getAiNote:P,getHoveredElement:L,onRememberSelectionAnchor:S}=e,R=ro(),I=W=>{const Z=[],re=ue=>{ue&&(Z.includes(ue)||Z.push(ue))};re(W),re(window);let fe=W;for(;;){let ue;try{ue=fe.parent}catch{break}if(!ue||ue===fe)break;try{if(ue.location.origin!==window.location.origin)break}catch{break}re(ue),fe=ue}return Z},h=async W=>{var re;const Z=I(W);for(const fe of Z){const ue=(re=fe.navigator)==null?void 0:re.clipboard;if(ue!=null&&ue.readText)try{const Ee=await ue.readText();if(typeof Ee=="string")return Ee}catch{continue}}throw new Error("clipboard-read-failed")},T=async W=>{var re;const Z=I(W);for(const fe of Z){const ue=(re=fe.navigator)==null?void 0:re.clipboard;if(ue!=null&&ue.read)try{const Ee=await ue.read(),Te=await gc(Ee);if(Te.length>0)return Te}catch{continue}}return[]},x=W=>W?!!(W.closest(`[${En}="true"]`)||W.closest('[data-we-selection-lock-root="true"]')):!1,B=W=>!(!W||!W.isConnected||Un(W)||x(W)),K=()=>{try{const W=document.querySelectorAll(":hover");if(W.length===0)return null;const Z=W.item(W.length-1);return Z&&B(Z)?Z:null}catch{return null}},_=()=>{const W=L();if(B(W))return W;const Z=r.current;if(Z){const ue=document.elementFromPoint(Z.clientX,Z.clientY);if(B(ue))return ue}const re=K();if(re)return re;const fe=document.activeElement;return fe instanceof Element&&B(fe)?fe:null},v=W=>{a.current.tryApplyCount+=1,a.current.lastTextPreview=String(W??"").slice(0,80);const Z=no(W),re=n.current,fe=o(),ue=_();if(re)return a.current.lastResult="blocked:current-target",!1;if(!fe)return a.current.lastResult="blocked:selection-inactive",!1;if(!Z)return a.current.lastResult="blocked:empty-text",!1;if(!(ue!=null&&ue.isConnected))return a.current.lastResult="blocked:no-hovered-element",!1;if(no(P(ue)))return a.current.lastResult="blocked:existing-note",!1;const Te=r.current;return Te?S==null||S(ue,Te):S==null||S(ue),a.current.lastResult="applied",a.current.lastTextPreview=Z.slice(0,80),m(ue,Z),!0},H=W=>{l.current.forEach((Z,re)=>{W-Z>io&&l.current.delete(re)})},q=async W=>{a.current.tryApplyCount+=1;const Z=n.current,re=o(),fe=_();if(Z)return a.current.lastResult="blocked:current-target",!1;if(!re)return a.current.lastResult="blocked:selection-inactive",!1;if(!W.length)return a.current.lastResult="blocked:empty-images",!1;if(!(fe!=null&&fe.isConnected))return a.current.lastResult="blocked:no-hovered-element",!1;if(!i)return a.current.lastResult="blocked:no-image-handler",!1;const ue=Se(fe),Ee=Ne(fe,ue.shadowHostChain),Te=Date.now();H(Te);const De=W.filter(te=>{const le=oo(Ee,te),ye=l.current.get(le);return!(typeof ye=="number"&&Te-ye<=io)});if(!De.length)return a.current.lastResult="blocked:duplicate-image",!1;const We=r.current;We?S==null||S(fe,We):S==null||S(fe);const Ue=await i(fe,De);return Ue.acceptedCount<=0?(a.current.lastResult="blocked:image-limit",!1):(De.slice(0,Ue.acceptedCount).forEach(te=>{l.current.set(oo(Ee,te),Te)}),a.current.lastResult="applied:image",!0)},Y=(W,Z)=>W instanceof Element&&Un(W)?!0:Un(Z.activeElement),F=(W,Z)=>{var fe;if(a.current.pasteEventCount+=1,W.defaultPrevented)return;if(Y(W.target,Z)){a.current.lastResult="blocked:editable-focus";return}const re=((fe=W.clipboardData)==null?void 0:fe.getData("text/plain"))??"";(async()=>{var Ee;const ue=await mi((Ee=W.clipboardData)==null?void 0:Ee.items);ue.length>0&&await q(ue),re.trim()&&v(re)})()},A=async(W,Z,re)=>{if(a.current.hotkeyCount+=1,!((W.metaKey||W.ctrlKey)&&!W.altKey&&(String(W.key).toLowerCase()==="v"||W.code==="KeyV"))){a.current.lastResult="blocked:not-paste-hotkey";return}if(Y(W.target,re)){a.current.lastResult="blocked:editable-focus";return}try{const ue=await T(Z);if(ue.length>0){await q(ue);return}const Ee=await h(Z);if(!v(Ee))return}catch{a.current.lastResult="blocked:clipboard-read-failed"}},X=W=>{A(W,window,document)},N=W=>{F(W,document)};if(document.addEventListener("paste",N,!0),window.addEventListener("keydown",X,!0),!R)return()=>{document.removeEventListener("paste",N,!0),window.removeEventListener("keydown",X,!0)};const b=window.parent,E=b.document,O=window.frameElement,d=On(O)?O:null,M=[];{let W=window;for(;;){let Z;try{Z=W.parent}catch{break}if(!Z||Z===W)break;try{if(Z.location.origin!==window.location.origin)break}catch{break}M.push(Z),W=Z}}if(!d)return()=>{document.removeEventListener("paste",N,!0),window.removeEventListener("keydown",X,!0)};let j=!1,ee=null;const oe=[],ie=d.hasAttribute("tabindex"),me=d.getAttribute("tabindex"),ce=()=>!o()||n.current?!1:E.activeElement!==d,pe=()=>!(j||window.parent!==b||window.frameElement!==d||!d.isConnected||d.contentWindow!==window),ge=()=>{if(!j){for(j=!0,ee==null||ee.disconnect(),ee=null;oe.length>0;){const W=oe.pop();W==null||W()}E.removeEventListener("paste",k,!0),b.removeEventListener("keydown",u,!0),b.removeEventListener("pointermove",U,!0),b.removeEventListener("mousemove",U,!0),b.removeEventListener("focus",g,!0),d.removeEventListener("pointermove",D,!0),d.removeEventListener("mousemove",D,!0),d.removeEventListener("pointerenter",y,!0),d.removeEventListener("mouseenter",y,!0),window.removeEventListener("pointermove",C,!0),window.removeEventListener("focus",G,!0),document.removeEventListener("visibilitychange",se),b.removeEventListener("pagehide",ge),window.removeEventListener("pagehide",ge),window.removeEventListener("beforeunload",ge),document.removeEventListener("paste",N,!0),window.removeEventListener("keydown",X,!0),d[Ut]===ge&&delete d[Ut],ie?me!==null&&d.setAttribute("tabindex",me):d.removeAttribute("tabindex")}},ae=()=>pe()?!0:(ge(),!1),V=()=>{if(ae()&&ce()){try{ie||d.setAttribute("tabindex","-1"),d.focus({preventScroll:!0})}catch{return}try{window.focus()}catch{}}},p=W=>{if(!ae()||!o()||n.current)return;const Z=d.getBoundingClientRect(),re=W.clientX-Z.left,fe=W.clientY-Z.top;if(!Number.isFinite(re)||!Number.isFinite(fe)||re<0||fe<0||re>Z.width||fe>Z.height)return;const ue=window.document.elementFromPoint(re,fe)??window.document.body;if(!ue)return;try{const Te=new PointerEvent("pointermove",{bubbles:!0,cancelable:!0,composed:!0,clientX:re,clientY:fe,pointerId:1,pointerType:"mouse",isPrimary:!0});ue.dispatchEvent(Te),window.document.dispatchEvent(Te),window.dispatchEvent(Te)}catch{}const Ee=new MouseEvent("mousemove",{bubbles:!0,cancelable:!0,composed:!0,clientX:re,clientY:fe,view:window});ue.dispatchEvent(Ee),window.document.dispatchEvent(Ee),window.dispatchEvent(Ee)},u=W=>{ae()&&(V(),A(W,window,document))},k=W=>{ae()&&F(W,E)},y=()=>{V()},D=W=>{p(W),V()},U=W=>{W.target===d&&(p(W),V())},C=()=>{V()},g=()=>{V()},G=()=>{V()},se=()=>{document.visibilityState==="visible"&&V()},J=d[Ut];return typeof J=="function"&&J(),d[Ut]=ge,ee=new MutationObserver(()=>{ae()}),ee.observe(E.documentElement,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["src"]}),V(),E.addEventListener("paste",k,!0),b.addEventListener("keydown",u,!0),M.filter(W=>W!==b).forEach(W=>{const Z=W.document,re=ue=>{ae()&&F(ue,Z)},fe=ue=>{ae()&&(V(),A(ue,window,document))};Z.addEventListener("paste",re,!0),W.addEventListener("keydown",fe,!0),oe.push(()=>{Z.removeEventListener("paste",re,!0),W.removeEventListener("keydown",fe,!0)})}),b.addEventListener("pointermove",U,!0),b.addEventListener("mousemove",U,!0),b.addEventListener("focus",g,!0),d.addEventListener("pointermove",D,!0),d.addEventListener("mousemove",D,!0),d.addEventListener("pointerenter",y,!0),d.addEventListener("mouseenter",y,!0),window.addEventListener("pointermove",C,!0),window.addEventListener("focus",G,!0),document.addEventListener("visibilitychange",se),b.addEventListener("pagehide",ge),window.addEventListener("pagehide",ge),window.addEventListener("beforeunload",ge),ge},[n,o,r,i,e]),a}function so(t){return typeof Element<"u"&&t instanceof Element}function bc(t){const{event:e,selectionInteractionLockOwnersRef:n,selectionHoverOwnersRef:r,selectionNeedsExplicitReactivateRef:o,syncSelectionModeAvailability:s}=t;if(n.current.size===0&&!o.current)return!1;const i=typeof e.composedPath=="function"?e.composedPath():[];return i.some(m=>so(m)&&(m.hasAttribute(En)||m.closest(`[${En}="true"]`)))||i.some(m=>so(m)&&(m.getAttribute("data-we-selection-lock-root")==="true"||m.closest('[data-we-selection-lock-root="true"]')))?!1:(e.preventDefault(),r.current.clear(),n.current.clear(),o.current=!1,s(),!0)}function wc(t){const{selectionInteractionLockOwnersRef:e,selectionHoverOwnersRef:n,selectionNeedsExplicitReactivateRef:r,syncSelectionModeAvailability:o}=t;de.useEffect(()=>{const s=i=>{bc({event:i,selectionInteractionLockOwnersRef:e,selectionHoverOwnersRef:n,selectionNeedsExplicitReactivateRef:r,syncSelectionModeAvailability:o})};return window.addEventListener("pointerdown",s,!0),()=>{window.removeEventListener("pointerdown",s,!0)}},[n,e,r,o])}function Sc(t,e,n){const r=Number.isFinite(t.selectionStart??NaN)?t.selectionStart??e.length:e.length,o=Number.isFinite(t.selectionEnd??NaN)?t.selectionEnd??e.length:e.length;return e.slice(0,r)+n+e.slice(o)}function Ec(t){var We,Ue;const{propertyPanelOptions:e,breadcrumbsOptions:n,propertyPanelRef:r,breadcrumbsRef:o,onThemeModeChange:s}=t,i=((We=e==null?void 0:e.getUiMode)==null?void 0:We.call(e))??(e==null?void 0:e.initialUiMode)??"bubble-card",a=(e==null?void 0:e.interactionProfile)??"design",[l,m]=de.useState(null),[P,L]=de.useState(null),[S,R]=de.useState(i),[I,h]=de.useState(!1),[T,x]=de.useState(()=>{var te;return qr(nn(Lt(((te=e==null?void 0:e.getUiSettings)==null?void 0:te.call(e))??wt),a))}),[B,K]=de.useState(()=>{var te;return nn(Lt(((te=e==null?void 0:e.getUiSettings)==null?void 0:te.call(e))??wt),a).genieAwake?"awake":"sleeping"}),[_,v]=de.useState({savedNote:"",draftNote:"",noteDirty:!1}),[H,q]=de.useState({savedText:"",draftText:"",textDirty:!1}),[Y,F]=de.useState({images:[]}),A=de.useRef(null),X=de.useRef(i),N=de.useRef(_),b=de.useRef(H),E=de.useRef(Y),O=lc(),d=uc({propertyPanelOptions:e,setToolMinimized:h});Xi(),de.useEffect(()=>{N.current=_},[_]),de.useEffect(()=>{b.current=H},[H]),de.useEffect(()=>{E.current=Y},[Y]),de.useEffect(()=>{var le;const te=(le=e==null?void 0:e.getUiMode)==null?void 0:le.call(e);!te||X.current===te||(X.current=te,R(te))}),de.useEffect(()=>{s==null||s(T.darkMode?"dark":"light")},[s,T.darkMode]),de.useEffect(()=>{const te=T.genieAwake?"awake":"sleeping";K(le=>le===te?le:te)},[T.genieAwake]),de.useEffect(()=>{d.toolMinimizedRef.current=I},[d.toolMinimizedRef,I]);const M=de.useMemo(()=>({getCurrentTask:te=>{var le,ye;return((le=e==null?void 0:e.getElementGenieTaskState)==null?void 0:le.call(e,te))??((ye=n==null?void 0:n.getElementGenieTaskState)==null?void 0:ye.call(n,te))??null},getVisibleTasks:()=>{var te,le;return((te=e==null?void 0:e.getVisibleElementGenieTaskStates)==null?void 0:te.call(e))??((le=n==null?void 0:n.getVisibleElementGenieTaskStates)==null?void 0:le.call(n))??[]},dismissTask:te=>{var le,ye;(le=e==null?void 0:e.dismissElementGenieTaskState)==null||le.call(e,te),(ye=n==null?void 0:n.dismissElementGenieTaskState)==null||ye.call(n,te)}}),[n,e]),[j,ee]=de.useState(0);de.useEffect(()=>{let te="";const le=window.setInterval(()=>{const ye=M.getVisibleTasks(),ke=ye.map(ve=>[ve.elementKey,ve.requestId,ve.status,ve.sessionId??"",ve.updatedAt,ve.dismissed?"1":"0"].join(":")).join("|");(ye.length>0||ke!==te)&&ee(ve=>ve+1),te=ke},120);return()=>{window.clearInterval(le)}},[M]);const oe=de.useCallback((te,le)=>{var ke;const ye=((ke=e==null?void 0:e.getAiNote)==null?void 0:ke.call(e,te))??"";v(ve=>{const qe=to({saved:ve.savedNote,draft:ve.draftNote,dirty:ve.noteDirty},ye,le);return{savedNote:qe.saved,draftNote:qe.draft,noteDirty:qe.dirty}})},[e]),ie=de.useCallback((te,le)=>{var ve,qe;const ke=((ve=e==null?void 0:e.canEditText)==null?void 0:ve.call(e,te))??!1?((qe=e==null?void 0:e.getTextValue)==null?void 0:qe.call(e,te))??"":"";q(Et=>{const Ge=to({saved:Et.savedText,draft:Et.draftText,dirty:Et.textDirty},ke,le);return{savedText:Ge.saved,draftText:Ge.draft,textDirty:Ge.dirty}})},[e]),me=de.useCallback(te=>{var le;F({images:(((le=e==null?void 0:e.getAiNoteImages)==null?void 0:le.call(e,te))??[]).slice(0,_t)})},[e]),ce=de.useCallback(async te=>{const le=te??A.current;if(!le||!(e!=null&&e.onAiNoteChange)||!N.current.noteDirty)return!1;const ye=N.current.draftNote;return await e.onAiNoteChange(le,ye),A.current===le&&v({savedNote:ye,draftNote:ye,noteDirty:!1}),!0},[e]),pe=de.useCallback(async te=>{var ke;const le=te??A.current;if(!le||!(e!=null&&e.onTextValueChange)||!(((ke=e==null?void 0:e.canEditText)==null?void 0:ke.call(e,le))??!1)||!b.current.textDirty)return!1;const ye=b.current.draftText;return await e.onTextValueChange(le,ye),A.current===le&&q({savedText:ye,draftText:ye,textDirty:!1}),!0},[e]),ge=de.useCallback(te=>{if(A.current===te)return;const le=A.current;le&&N.current.noteDirty&&ce(le),le&&b.current.textDirty&&pe(le),A.current=te,m(te),(!te||!te.isConnected)&&L(null),d.selectionNeedsExplicitReactivateRef.current=!!(te&&!d.toolMinimizedRef.current),d.syncSelectionModeAvailability(),oe(te,!0),ie(te,!0),me(te)},[ce,pe,d,me,oe,ie]),ae=de.useCallback(te=>{L(te)},[]),V=de.useCallback(te=>{var le,ye;X.current!==te&&(X.current=te,R(te),(le=e==null?void 0:e.onUiModeChange)==null||le.call(e,te),(ye=e==null?void 0:e.onSelectionChromeVisibleChange)==null||ye.call(e,!d.toolMinimizedRef.current))},[e,d.toolMinimizedRef]),p=de.useCallback(()=>{oe(A.current,!1),ie(A.current,!1),me(A.current)},[me,oe,ie]),u=de.useCallback(te=>{var ye;const le=qr(nn(Lt(te),a));x(le),(ye=e==null?void 0:e.onUiSettingsChange)==null||ye.call(e,le)},[a,e]),k=de.useCallback(te=>{K(te),x(le=>{var ve;const ye=te==="awake";if(le.genieAwake===ye)return le;const ke=nn(Lt({...le,genieAwake:ye}),a);return(ve=e==null?void 0:e.onUiSettingsChange)==null||ve.call(e,ke),ke})},[a,e]),y=M.getCurrentTask(l),D=(y==null?void 0:y.status)==="pending"||(y==null?void 0:y.status)==="created",U=!!(e!=null&&e.onAiNoteChange),C=!!(l&&((Ue=e==null?void 0:e.canEditText)!=null&&Ue.call(e,l))&&(e!=null&&e.onTextValueChange)&&!D),g=de.useCallback(te=>{v(le=>({...le,draftNote:te,noteDirty:te!==le.savedNote}))},[]),G=de.useCallback(()=>{v(te=>({...te,draftNote:te.savedNote,noteDirty:!1}))},[]),se=de.useCallback(async()=>{await ce()},[ce]),J=de.useCallback(te=>{q(le=>({...le,draftText:te,textDirty:te!==le.savedText}))},[]),W=de.useCallback(()=>{q(te=>({...te,draftText:te.savedText,textDirty:!1}))},[]),Z=de.useCallback(async()=>{await pe()},[pe]),re=de.useCallback(async te=>{const le=A.current;if(!le||!(e!=null&&e.onAiNoteImagesChange))return;const ye=te.slice(0,_t);await e.onAiNoteImagesChange(le,ye),A.current===le&&F({images:ye.slice()})},[e]),fe=de.useCallback(async te=>{const le=E.current.images.filter(ye=>ye.id!==te);await re(le)},[re]),ue=de.useCallback(async(te,le)=>{var ve;if(!le.length||!(e!=null&&e.onAiNoteImagesChange))return{acceptedCount:0,droppedCount:0};if(e.getGenieBridgeConnected&&!e.getGenieBridgeConnected())return Pr("info","Genie 未启动,暂不支持粘贴标注图片。"),{acceptedCount:0,droppedCount:le.length};const ye=(((ve=e.getAiNoteImages)==null?void 0:ve.call(e,te))??[]).slice(0,_t),ke=pc(ye,le,_t);return await e.onAiNoteImagesChange(te,ke.images),A.current===te&&F({images:ke.images.slice()}),ke.droppedCount>0&&Pr("info",`最多允许 ${_t} 张图片,已忽略多余图片。`),{acceptedCount:ke.acceptedCount,droppedCount:ke.droppedCount}},[e]),Ee=de.useCallback(te=>{var Ge,Nt;const le=A.current;if(!le||!(e!=null&&e.onAiNoteImagesChange))return;const ye=(Ge=te.clipboardData)==null?void 0:Ge.items;if(!(ye!=null&&ye.length)||!Array.from(ye).some(Ze=>Ze.kind==="file"&&String(Ze.type??"").startsWith("image/")))return;const ve=((Nt=te.clipboardData)==null?void 0:Nt.getData("text/plain"))??"",qe=te.target instanceof HTMLTextAreaElement?te.target:null,Et=N.current.draftNote;te.preventDefault(),te.stopPropagation(),(async()=>{const Ze=await mi(ye);if(Ze.length){if(qe&&ve){const Yt=Sc(qe,Et,ve);v(He=>({...He,draftNote:Yt,noteDirty:Yt!==He.savedNote}))}await ue(le,Ze)}})()},[ue,e]),Te=de.useCallback(async()=>{var ye;const te=A.current;!te||!(e!=null&&e.onClearCurrentElementEdits)||!await e.onClearCurrentElementEdits(te)||(oe(te,!0),ie(te,!0),me(te),(ye=e.onDismissSelection)==null||ye.call(e))},[e,me,oe,ie]),De=de.useMemo(()=>{if(e!=null&&e.onSendCurrentElementPromptToGenie)return async te=>{var le;await pe(te),await ce(te),await((le=e.onSendCurrentElementPromptToGenie)==null?void 0:le.call(e,te))}},[ce,pe,e]);return yc({propertyPanelOptions:e,currentTargetRef:A,latestPointerPositionRef:O,isSelectionModeActive:d.isSelectionModeActive,selectionNeedsExplicitReactivateRef:d.selectionNeedsExplicitReactivateRef,onApplyImagesToElement:ue}),wc({selectionInteractionLockOwnersRef:d.selectionInteractionLockOwnersRef,selectionHoverOwnersRef:d.selectionHoverOwnersRef,selectionNeedsExplicitReactivateRef:d.selectionNeedsExplicitReactivateRef,syncSelectionModeAvailability:d.syncSelectionModeAvailability}),Re.jsxs("div",{style:Yi,children:[Re.jsx("style",{children:ji}),Re.jsx(cc,{tasks:M.getVisibleTasks(),onDismissTask:M.dismissTask,renderTick:j}),n?Re.jsx(Ji,{ref:o,options:n,currentTarget:l,anchorRect:P,uiMode:S,interactionProfile:a,designAdjustmentTool:T.designAdjustmentTool,toolMinimized:I,propertyPanelEnabled:!!e,styleDesignEnabled:T.styleDesignEnabled,genieVisualState:B,onSendCurrentElementPromptToGenie:De,getGenieBridgeConnected:e==null?void 0:e.getGenieBridgeConnected,getHasReusableGenieConversation:e==null?void 0:e.getHasReusableGenieConversation,getSendCurrentElementPromptToGenieBlockReason:e==null?void 0:e.getSendCurrentElementPromptToGenieBlockReason,canExportSelectionToDesignTool:e==null?void 0:e.canExportSelectionToDesignTool,onExportSelectionToDesignTool:e==null?void 0:e.onExportSelectionToDesignTool,getExportSelectionToDesignToolBlockReason:e==null?void 0:e.getExportSelectionToDesignToolBlockReason,onHoverSelectionSuppressedChange:d.handlePromptHoverSelectionSuppressedChange,onSelectionInteractionLockChange:d.handlePromptSelectionInteractionLockChange,onUiModeChange:V,onTargetChange:ge,onAnchorRectChange:ae,onPromptCardVisibleChange:e==null?void 0:e.onPromptCardVisibleChange,canEditText:C,images:Y.images,onImagesChange:re,onRemoveImage:fe,onNotePasteCapture:Ee,savedText:H.savedText,draftText:H.draftText,textDirty:H.textDirty,onTextDraftChange:J,onCancelText:W,onConfirmText:Z,canEditNote:U,savedNote:_.savedNote,draftNote:_.draftNote,noteDirty:_.noteDirty,onDraftChange:g,onClearCurrentElementEdits:Te,onCancelNote:G,onConfirmNote:se,onDismissSelection:e==null?void 0:e.onDismissSelection}):null,e?Re.jsx(Qi,{ref:r,options:e,currentTarget:l,uiMode:S,toolMinimized:I,uiSettings:T,interactionProfile:a,genieVisualState:B,onGenieVisualStateChange:k,onUiSettingsChange:u,onHoverSelectionSuppressedChange:d.handlePanelHoverSelectionSuppressedChange,onSelectionInteractionLockChange:d.handlePanelSelectionInteractionLockChange,onUiModeChange:V,onToolMinimizedChange:d.handleToolMinimizedChange,onTargetChange:ge,onRefreshNoteState:p,canEditText:C,images:Y.images,onImagesChange:re,onRemoveImage:fe,onNotePasteCapture:Ee,savedText:H.savedText,draftText:H.draftText,textDirty:H.textDirty,onTextDraftChange:J,onCancelText:W,onConfirmText:Z,canEditNote:U,savedNote:_.savedNote,draftNote:_.draftNote,noteDirty:_.noteDirty,onDraftChange:g,onClearCurrentElementEdits:Te,onCancelNote:G,onConfirmNote:se,onDismissSelection:e==null?void 0:e.onDismissSelection}):null]})}function ao(t){const e=[];return{runOrQueue(n){const r=t();if(r){n(r);return}e.push(n)},flush(){const n=t();if(n)for(;e.length>0;){const r=e.shift();r==null||r(n)}}}}function vc(t){const e={position:t.container.style.position,inset:t.container.style.inset,top:t.container.style.top,right:t.container.style.right,bottom:t.container.style.bottom,left:t.container.style.left,width:t.container.style.width,height:t.container.style.height,pointerEvents:t.container.style.pointerEvents};t.container.style.position="fixed",t.container.style.inset="0",t.container.style.top="0",t.container.style.right="0",t.container.style.bottom="0",t.container.style.left="0",t.container.style.width="auto",t.container.style.height="auto",t.container.style.pointerEvents="none";const n=document.createElement("div");n.style.position="fixed",n.style.pointerEvents="none",n.style.background="transparent",mt()?(n.style.top="0",n.style.left="0",n.style.width="0",n.style.height="0",n.style.overflow="visible"):n.style.inset="0",t.container.append(n);const r=rs(n),o=de.createRef(),s=de.createRef();let i=!1;const a=()=>{i||(i=!0,r.unmount(),n.remove(),t.container.style.position=e.position,t.container.style.inset=e.inset,t.container.style.top=e.top,t.container.style.right=e.right,t.container.style.bottom=e.bottom,t.container.style.left=e.left,t.container.style.width=e.width,t.container.style.height=e.height,t.container.style.pointerEvents=e.pointerEvents)},l=t.propertyPanelOptions?ao(()=>o.current):null,m=t.breadcrumbsOptions?ao(()=>s.current):null;function P(){const L=de.useMemo(()=>os(),[]),S=de.useRef(null),[R,I]=de.useState(()=>{var h,T,x;return(x=(T=(h=t.propertyPanelOptions)==null?void 0:h.getUiSettings)==null?void 0:T.call(h))!=null&&x.darkMode?"dark":"light"});return de.useEffect(()=>{l==null||l.flush(),m==null||m.flush()}),Re.jsx(is,{cache:L,container:t.shadowRoot,children:Re.jsx(ss,{componentSize:"small",getPopupContainer:()=>S.current??t.container,theme:Zi(R),children:Re.jsx(as,{children:Re.jsxs("div",{style:{position:"fixed",inset:0,pointerEvents:"none",...es(R)},children:[Re.jsx(Ec,{propertyPanelOptions:t.propertyPanelOptions,breadcrumbsOptions:t.breadcrumbsOptions,propertyPanelRef:o,breadcrumbsRef:s,onThemeModeChange:I}),Re.jsx("div",{ref:S,[En]:"true"})]})})})})}return r.render(Re.jsx(P,{})),{propertyPanel:l?{setTarget(L){l.runOrQueue(S=>S.setTarget(L))},setTab(L){l.runOrQueue(S=>S.setTab(L))},getTab(){var L;return((L=o.current)==null?void 0:L.getTab())??"design"},refresh(){l.runOrQueue(L=>L.refresh())},setHistory(L,S){l.runOrQueue(R=>R.setHistory(L,S))},getPosition(){var L;return((L=o.current)==null?void 0:L.getPosition())??null},setPosition(L){l.runOrQueue(S=>S.setPosition(L))},enterAnnotationInput(L){l.runOrQueue(S=>{var R;return(R=S.enterAnnotationInput)==null?void 0:R.call(S,L)})},dispose:a}:null,breadcrumbs:m?{setTarget(L){m.runOrQueue(S=>S.setTarget(L))},setAnchorRect(L){m.runOrQueue(S=>S.setAnchorRect(L))},refresh(){m.runOrQueue(L=>L.refresh())},dispose:a}:null,dispose:a}}const co="data-mcp-canvas",lo="overlay",Tc=100,Cc=2600,qn={hover:{strokeColor:Me.hover,fillColor:`${Me.hover}15`,lineWidth:2,dashPattern:[6,4]},selection:{strokeColor:Me.selected,fillColor:"transparent",lineWidth:2,dashPattern:[]},dragGhost:{strokeColor:Me.selectionBorder,fillColor:Me.dragGhost,lineWidth:2,dashPattern:[8,6]}};function uo(t){return Number.isFinite(t)&&t>0}function Pt(t){return t?Number.isFinite(t.left)&&Number.isFinite(t.top)&&uo(t.width)&&uo(t.height):!1}function rn(t){return t?Number.isFinite(t.x1)&&Number.isFinite(t.y1)&&Number.isFinite(t.x2)&&Number.isFinite(t.y2):!1}function on(t,e,n){return Number.isFinite(t)?Math.min(n,Math.max(e,t)):e}function fo(t){return 1-Math.pow(1-t,3)}function sn(t,e,n){return t+(e-t)*n}function ho(t,e,n){return{left:sn(t.left,e.left,n),top:sn(t.top,e.top,n),width:sn(t.width,e.width,n),height:sn(t.height,e.height,n)}}function mo(t,e,n,r,o,s){const i=Math.max(0,Math.min(s,Math.min(r,o)/2));t.moveTo(e+i,n),t.arcTo(e+r,n,e+r,n+o,i),t.arcTo(e+r,n+o,e,n+o,i),t.arcTo(e,n+o,e,n,i),t.arcTo(e,n,e+r,n,i),t.closePath()}function xc(t){const{container:e}=t,n=new ze,r=e.querySelector(`canvas[${co}="${lo}"]`);r&&r.remove();const o=document.createElement("canvas");o.setAttribute(co,lo),o.setAttribute("aria-hidden","true"),Object.assign(o.style,{position:"absolute",inset:"0",width:"100%",height:"100%",pointerEvents:"none",display:"block"}),e.append(o),n.add(()=>o.remove());const s=o.getContext("2d",{alpha:!0,desynchronized:!0});if(!s)throw n.dispose(),new Error(`${Ke} Failed to get canvas 2D context`);const i=s;let a=null,l=null,m=null,P="default",L=null,S=null,R=null,I=null,h=null,T=null,x=1,B=1,K=1,_=!0,v=null;function H(){const y=document.createElement("div");y.setAttribute("data-we-ai-selection-effect","true"),Object.assign(y.style,{position:"absolute",pointerEvents:"none",display:"none",overflow:"hidden",borderRadius:"0",border:`2px solid ${Me.selected}`,boxShadow:"none",backdropFilter:"blur(2px)",WebkitBackdropFilter:"blur(2px)",background:"rgba(255, 255, 255, 0.22)",zIndex:"1"});const D=document.createElement("div");Object.assign(D.style,{position:"absolute",left:"0",top:"0",width:"100%",height:"72px",background:"linear-gradient(to bottom, rgba(0, 143, 93, 0), rgba(0, 143, 93, 0.08) 28%, rgba(0, 143, 93, 0.18) 50%, rgba(0, 143, 93, 0.08) 72%, rgba(0, 143, 93, 0))",display:"flex",alignItems:"center",justifyContent:"center",willChange:"transform"});const U=document.createElement("div");return Object.assign(U.style,{width:"100%",height:"1px",background:"rgba(0, 143, 93, 0.62)",boxShadow:"0 0 12px rgba(0, 143, 93, 0.58)"}),D.append(U),y.append(D),e.append(y),{root:y,sweep:D,animation:null,animationKey:""}}const q=[];n.add(()=>{var y;for(const D of q)(y=D.animation)==null||y.cancel(),D.root.remove()});function Y(y){var D;for(;q.lengthy;){const U=q.pop();if(!U)break;(D=U.animation)==null||D.cancel(),U.root.remove()}}function F(){v!==null&&(cancelAnimationFrame(v),v=null)}n.add(F);function A(){v!==null||n.isDisposed||(v=requestAnimationFrame(()=>{v=null,oe()}))}function X(){const y=Math.max(1,window.devicePixelRatio||1),D=Math.max(1,x),U=Math.max(1,B),C=Math.round(D*y),g=Math.round(U*y);return o.width!==C||o.height!==g||Math.abs(K-y)>.001?(K=y,o.width=C,o.height=g,i.setTransform(K,0,0,K,0,0),i.lineJoin="round",i.lineCap="round",!0):!1}function N(){X(),i.clearRect(0,0,x,B)}function b(y,D){if(!Pt(y))return;const U=Math.round(y.width),C=Math.round(y.height);if(U<=0||C<=0)return;const g=Math.round(y.left)+.5,G=Math.round(y.top)+.5;i.save(),i.lineWidth=D.lineWidth,i.strokeStyle=D.strokeColor,i.fillStyle=D.fillColor,i.setLineDash(D.dashPattern),i.beginPath(),i.rect(g,G,U,C),i.fill(),i.stroke(),i.restore()}function E(){var D;const y=[];if(P==="ai-editing"&&Pt(m)&&y.push(m),L!=null&&L.length)for(const U of L)Pt(U)&&y.push(U);if(Y(y.length),y.length===0){for(const U of q)U.root.style.display="none",(D=U.animation)==null||D.pause();return}y.forEach((U,C)=>{var Z;const g=q[C],G=Math.max(1,Math.round(U.width)),se=Math.max(1,Math.round(U.height)),J=Math.max(48,Math.min(88,Math.round(se*.28)));g.root.style.display="block",g.root.style.left=`${Math.round(U.left)}px`,g.root.style.top=`${Math.round(U.top)}px`,g.root.style.width=`${G}px`,g.root.style.height=`${se}px`,g.sweep.style.height=`${J}px`;const W=`${se}:${J}`;(g.animationKey!==W||!g.animation)&&((Z=g.animation)==null||Z.cancel(),g.animationKey=W,g.animation=g.sweep.animate([{transform:`translateY(-${J}px)`},{transform:`translateY(${se}px)`}],{duration:Cc,iterations:1/0,easing:"linear"})),g.animation.play()})}function O(y){if(!rn(y))return;i.save(),i.lineWidth=fs,i.strokeStyle=Me.insertionLine,i.setLineDash([]),i.lineCap="round";const D=Math.round(y.x1)+.5,U=Math.round(y.y1)+.5,C=Math.round(y.x2)+.5,g=Math.round(y.y2)+.5;i.beginPath(),i.moveTo(D,U),i.lineTo(C,g),i.stroke(),i.restore()}function d(y){if(!(!y||y.length===0)){i.save(),i.lineWidth=ps,i.strokeStyle=Me.guideLine,i.setLineDash([]),i.lineCap="round",i.beginPath();for(const D of y){if(!rn(D))continue;const U=Math.round(D.x1)+.5,C=Math.round(D.y1)+.5,g=Math.round(D.x2)+.5,G=Math.round(D.y2)+.5;i.moveTo(U,C),i.lineTo(g,G)}i.stroke(),i.restore()}}function M(y){if(!y||y.length===0)return;i.save(),i.lineWidth=bs,i.strokeStyle=Me.guideLine,i.setLineDash([]),i.lineCap="round";const D=ws;i.beginPath();for(const U of y){const C=U.line;if(!rn(C))continue;const g=Math.round(C.x1)+.5,G=Math.round(C.y1)+.5,se=Math.round(C.x2)+.5,J=Math.round(C.y2)+.5;i.moveTo(g,G),i.lineTo(se,J),U.axis==="x"?(i.moveTo(g,G-D),i.lineTo(g,G+D),i.moveTo(se,J-D),i.lineTo(se,J+D)):(i.moveTo(g-D,G),i.lineTo(g+D,G),i.moveTo(se-D,J),i.lineTo(se+D,J))}i.stroke(),i.font=Ss,i.textAlign="center",i.textBaseline="middle";for(const U of y){const C=U.line;if(!rn(C))continue;const g=i.measureText(U.text),G=g.width,se=Number.isFinite(g.actualBoundingBoxAscent)?g.actualBoundingBoxAscent:8,J=Number.isFinite(g.actualBoundingBoxDescent)?g.actualBoundingBoxDescent:3,W=se+J,Z=Math.ceil(G+Es*2),re=Math.ceil(W+vs*2),fe=(C.x1+C.x2)/2,ue=(C.y1+C.y2)/2,Ee=Cs;let Te=fe-Z/2,De=ue-re/2;U.axis==="x"?(De=ue-re/2-Ee,De<0&&(De=ue+Ee-re/2)):(Te=fe+Ee-Z/2,Te+Z>x&&(Te=fe-Ee-Z/2));const We=Math.max(2,x-Z-2),Ue=Math.max(2,B-re-2);Te=on(Te,2,We),De=on(De,2,Ue),i.save(),i.fillStyle=Me.distanceLabelBg,i.strokeStyle=Me.distanceLabelBorder,i.lineWidth=1,i.beginPath(),mo(i,Te,De,Z,re,Ts),i.fill(),i.stroke(),i.fillStyle=Me.distanceLabelText,i.fillText(U.text,Te+Z/2,De+re/2),i.restore()}i.restore()}function j(y){if(!(!y||y.length===0)){i.save(),i.fillStyle=`${Me.selected}25`,i.strokeStyle="transparent";for(const D of y){if(!Pt(D))continue;const U=Math.round(D.left),C=Math.round(D.top),g=Math.round(D.width),G=Math.round(D.height);i.beginPath(),mo(i,U,C,g,G,2),i.fill()}i.restore()}}function ee(){n.isDisposed||(_=!0,A())}function oe(){if(n.isDisposed||!_)return;F(),_=!1;const y=performance.now();let D=a;if(l){const U=y-l.startTime,C=on(U/l.durationMs,0,1),g=fo(C);D=ho(l.start,l.end,g),C>=1?l=null:_=!0}N(),j(T),b(D,qn.hover),P!=="ai-editing"&&b(m,qn.selection),b(S,qn.dragGhost),O(R),d(I),M(h),E(),_&&A()}function ie(y,D){if(!((D==null?void 0:D.animate)===!0)){l=null,a=y,ee();return}const C=performance.now();let g=a;if(l){const G=C-l.startTime,se=on(G/l.durationMs,0,1),J=fo(se);g=ho(l.start,l.end,J)}if(!Pt(g)||!Pt(y)){l=null,a=y,ee();return}l={start:{...g},end:{...y},startTime:C,durationMs:Tc},a=y,ee()}function me(y){m=y,E(),ee()}function ce(y){P!==y&&(P=y,E(),ee())}function pe(y){L=y&&y.length>0?y:null,E(),ee()}function ge(y){S=y,ee()}function ae(y){R=y,ee()}function V(y){I=y&&y.length>0?y:null,ee()}function p(y){h=y&&y.length>0?y:null,ee()}function u(y){T=y&&y.length>0?y:null,ee()}function k(){a=null,l=null,m=null,P="default",L=null,T=null,E(),S=null,R=null,I=null,h=null,ee()}try{const y=e.getBoundingClientRect();x=Math.max(1,y.width),B=Math.max(1,y.height)}catch(y){console.warn(`${Ke} Initial size measurement failed:`,y)}return n.observeResize(e,y=>{const D=y[0],U=D==null?void 0:D.contentRect;if(!U)return;const C=Math.max(1,U.width),g=Math.max(1,U.height);Math.abs(C-x)<.5&&Math.abs(g-B)<.5||(x=C,B=g,ee())}),ee(),{canvas:o,markDirty:ee,render:oe,clear:k,setHoverRect:ie,setSelectionRect:me,setSelectionEffect:ce,setEditingRects:pe,setTextHighlightRects:u,setDragGhostRect:ge,setInsertionLine:ae,setGuideLines:V,setDistanceLabels:p,dispose:()=>n.dispose()}}function Be(t){return typeof t=="number"&&Number.isFinite(t)}function mr(t){return t?Be(t.left)&&Be(t.top)&&Be(t.width)&&Be(t.height)&&t.width>.5&&t.height>.5:!1}function Gn(t){try{const e=t.getBoundingClientRect(),n={left:e.left,top:e.top,width:e.width,height:e.height};return mr(n)?n:null}catch{return null}}function je(t){return t.left+t.width}function Je(t){return t.top+t.height}function Dt(t){return t.left+t.width/2}function Bt(t){return t.top+t.height/2}function gi(t,e){switch(e){case"left":return t.left;case"center":return Dt(t);case"right":return je(t)}}function pi(t,e){switch(e){case"top":return t.top;case"middle":return Bt(t);case"bottom":return Je(t)}}function go(){return{x:[],y:[]}}function Ac(t){const e=t.parentElement;if(!e)return go();const n=Gn(t),r=n?Dt(n):0,o=n?Bt(n):0,s=e.children,i=s.length;let a=-1;for(let h=0;h=0,B=Th.distanceSquared-T.distanceSquared);const S=l.slice(0,gs),R=[],I=[];for(const{rect:h}of S)R.push({type:"left",value:h.left,source:"sibling",sourceRect:h}),R.push({type:"center",value:Dt(h),source:"sibling",sourceRect:h}),R.push({type:"right",value:je(h),source:"sibling",sourceRect:h}),I.push({type:"top",value:h.top,source:"sibling",sourceRect:h}),I.push({type:"middle",value:Bt(h),source:"sibling",sourceRect:h}),I.push({type:"bottom",value:Je(h),source:"sibling",sourceRect:h});return{x:R,y:I}}function Ic(){const t=Math.max(1,window.innerWidth||1),e=Math.max(1,window.innerHeight||1);return{x:[{type:"left",value:0,source:"viewport"},{type:"center",value:t/2,source:"viewport"},{type:"right",value:t,source:"viewport"}],y:[{type:"top",value:0,source:"viewport"},{type:"middle",value:e/2,source:"viewport"},{type:"bottom",value:e,source:"viewport"}]}}function kc(...t){const e=[],n=[];for(const r of t)e.push(...r.x),n.push(...r.y);return{x:e,y:n}}function or(t,e,n,r,o){const s=t.left,i=je(t);if(e==="left"){if(n==="right"){const a=r-s;return!Be(a)||ao)continue;const P=or(t,e,a.type,a.value,s);if(!P)continue;(!i||mo)continue;const P=ir(t,e,a.type,a.value,s);if(!P)continue;(!i||mo+s||!B)&&(R=null)}if(R){const T=or(S,l,R.type,R.value,i);T&&(S=T)}else{const T=Nc(S,l,r.x,P,o,i);T&&(R={type:T.anchor.type,value:T.anchor.value,source:T.anchor.source,sourceRect:T.anchor.sourceRect??null},S=T.snappedRect)}}else R=null;if(m){if(I)if(!L.includes(I.type))I=null;else{const T=pi(S,I.type),x=Math.abs(I.value-T),B=ir(S,m,I.type,I.value,i);(x>o+s||!B)&&(I=null)}if(I){const T=ir(S,m,I.type,I.value,i);T&&(S=T)}else{const T=Rc(S,m,r.y,L,o,i);T&&(I={type:T.anchor.type,value:T.anchor.value,source:T.anchor.source,sourceRect:T.anchor.sourceRect??null},S=T.snappedRect)}}else I=null;const h=Pc(S,R,I,a);return{snappedRect:S,guideLines:h,lockX:R,lockY:I}}function ut(t,e){return Be(t)&&t>0&&t>=e}function dt(t){const e=Math.round(t);return`${Object.is(e,-0)?0:e}px`}function po(t,e,n){return Be(t)?Math.min(n,Math.max(e,t)):e}function _c(t){const{rect:e,lockX:n,lockY:r,viewport:o,minGapPx:s}=t;if(!mr(e))return[];const i=Be(o.width)?Math.max(1,o.width):1,a=Be(o.height)?Math.max(1,o.height):1,l=Math.max(0,s),m=[];if(n&&n.source==="sibling"&&n.sourceRect){const P=n.sourceRect,L=e.top-Je(P),S=P.top-Je(e);ut(L,l)?m.push({kind:"sibling",axis:"y",value:Math.round(L),text:dt(L),line:{x1:n.value,y1:Je(P),x2:n.value,y2:e.top}}):ut(S,l)&&m.push({kind:"sibling",axis:"y",value:Math.round(S),text:dt(S),line:{x1:n.value,y1:Je(e),x2:n.value,y2:P.top}})}if(r&&r.source==="sibling"&&r.sourceRect){const P=r.sourceRect,L=e.left-je(P),S=P.left-je(e);ut(L,l)?m.push({kind:"sibling",axis:"x",value:Math.round(L),text:dt(L),line:{x1:je(P),y1:r.value,x2:e.left,y2:r.value}}):ut(S,l)&&m.push({kind:"sibling",axis:"x",value:Math.round(S),text:dt(S),line:{x1:je(e),y1:r.value,x2:P.left,y2:r.value}})}if(n&&n.source==="viewport"){const P=po(Bt(e),0,a),L=e.left,S=i-je(e),R=()=>ut(L,l)?(m.push({kind:"viewport",axis:"x",value:Math.round(L),text:dt(L),line:{x1:0,y1:P,x2:e.left,y2:P}}),!0):!1,I=()=>ut(S,l)?(m.push({kind:"viewport",axis:"x",value:Math.round(S),text:dt(S),line:{x1:je(e),y1:P,x2:i,y2:P}}),!0):!1;n.type==="center"?(R(),I()):n.type==="left"?R()||I():I()||R()}if(r&&r.source==="viewport"){const P=po(Dt(e),0,i),L=e.top,S=a-Je(e),R=()=>ut(L,l)?(m.push({kind:"viewport",axis:"y",value:Math.round(L),text:dt(L),line:{x1:P,y1:0,x2:P,y2:e.top}}),!0):!1,I=()=>ut(S,l)?(m.push({kind:"viewport",axis:"y",value:Math.round(S),text:dt(S),line:{x1:P,y1:Je(e),x2:P,y2:a}}),!0):!1;r.type==="middle"?(R(),I()):r.type==="top"?R()||I():I()||R()}return m}const Gt=1,Lc=3,Dc=["nw","n","ne","e","se","s","sw","w"],Bc={n:"ns-resize",s:"ns-resize",e:"ew-resize",w:"ew-resize",ne:"nesw-resize",sw:"nesw-resize",nw:"nwse-resize",se:"nwse-resize"};function an(t){return typeof t=="number"&&Number.isFinite(t)}function cn(t){return t?an(t.left)&&an(t.top)&&an(t.width)&&an(t.height)&&t.width>.5&&t.height>.5:!1}function ln(t,e){return Number.isFinite(t)?ti.remove());const a=document.createElement("div");a.className="we-selection-frame",a.hidden=!0,i.append(a);const l=document.createElement("div");l.className="we-size-hud",l.hidden=!0,a.append(l);const m=new Map;for(const d of Dc){const M=document.createElement("div");M.className="we-resize-handle",M.dataset.dir=d,M.tabIndex=-1,a.append(M),m.set(d,M)}let P=null,L=null,S=null,R=null;function I(){R!==null&&(cancelAnimationFrame(R),R=null)}e.add(I);function h(d){if(!(!!P&&cn(d))){a.hidden=!0;return}a.hidden=!1,a.style.transform=`translate3d(${d.left}px, ${d.top}px, 0)`,a.style.width=`${d.width}px`,a.style.height=`${d.height}px`}function T(d){if(!d){l.hidden=!0,l.textContent="";return}l.hidden=!1,l.textContent=d}function x(d){document.body.style.cursor=d.prevBodyCursor,document.body.style.userSelect=d.prevBodyUserSelect}function B(d){const M=S;if(M){if(I(),S=null,M.tx)try{M.tx.rollback()}catch(j){console.warn(`${Ke} Resize rollback failed:`,j)}try{x(M)}catch{}try{r.setGuideLines(null),r.setDistanceLabels(null),r.render()}catch{}T(null),h(L);try{s.forceUpdate()}catch{}d&&console.log(`${Ke} Resize cancelled (${d})`)}}function K(){const d=S;if(d){if(I(),S=null,d.tx)try{d.tx.commit({merge:!1})}catch(M){console.warn(`${Ke} Resize commit failed:`,M);try{d.tx.rollback()}catch{}}try{x(d)}catch{}try{r.setGuideLines(null),r.setDistanceLabels(null),r.render()}catch{}T(null);try{s.forceUpdate()}catch{}}}function _(){R!==null||e.isDisposed||(R=requestAnimationFrame(()=>{R=null,v()}))}function v(){const d=S;if(!d)return;if(!d.target.isConnected){B("target_disconnected");return}const M=d.lastClientX-d.startClientX,j=d.lastClientY-d.startClientY;if(!d.hasPassedThreshold){if(Math.hypot(M,j)0,C=D.length>0;if(U||d.hadGuidesLastFrame||C||d.hadDistanceLabelsLastFrame){try{r.setGuideLines(U?y.guideLines:null),r.setDistanceLabels(C?D:null),r.render()}catch{}d.hadGuidesLastFrame=U,d.hadDistanceLabelsLastFrame=C}oe=ge.width,ie=ge.height}const ae=ge.left-d.startRect.left,V=ge.top-d.startRect.top;h(ge),T(`${Math.round(ge.width)} × ${Math.round(ge.height)}`);const p={};if(d.affectsWidth){const u=wo(oe,d.extras.horizontalExtras,d.extras.boxSizing);p.width=ft(u)}if(d.affectsHeight){const u=wo(ie,d.extras.verticalExtras,d.extras.boxSizing);p.height=ft(u)}d.mode==="absolute"||d.mode==="fixed"?(d.affectsWidth&&(p.left=ft(d.startPosX+ae),p.right=""),d.affectsHeight&&(p.top=ft(d.startPosY+V),p.bottom="")):d.mode==="relative"?(d.affectsWidth&&d.hasWest&&(p.left=ft(d.startPosX+ae)),d.affectsHeight&&d.hasNorth&&(p.top=ft(d.startPosY+V))):(d.affectsWidth&&d.hasWest&&(p["margin-left"]=ft(d.startPosX+ae)),d.affectsHeight&&d.hasNorth&&(p["margin-top"]=ft(d.startPosY+V)));try{ee.set(p)}catch(u){console.warn(`${Ke} Resize preview apply failed:`,u),B("apply_failed")}}function H(d,M,j){if(e.isDisposed||j.button!==0)return;const ee=P;if(!ee||!ee.isConnected)return;S&&B("restart");const oe=yi(ee);if(!oe)return;const ie=oe.getPropertyValue("transform").trim();if(ie&&ie!=="none"){console.warn(`${Ke} Resize handles do not support transformed elements yet`);return}const me=oe.getPropertyValue("position"),ce=Fc(me),pe=yo(d),ge=bo(d),ae=pe||Vn(d),V=ge||zn(d),p=oe.getPropertyValue("margin-left").trim().toLowerCase(),u=oe.getPropertyValue("margin-top").trim().toLowerCase(),k=gt(p)??0,y=gt(u)??0;if(ce==="static"){if(pe&&p==="auto"){console.warn(`${Ke} Resize from west is disabled when margin-left is auto`);return}if(ge&&u==="auto"){console.warn(`${Ke} Resize from north is disabled when margin-top is auto`);return}}const D=cn(L)?L:Kc(ee);if(!D||!cn(D))return;const U=[];ae&&(U.push("width"),ce==="absolute"||ce==="fixed"?U.push("left","right"):ce==="relative"?pe&&U.push("left"):pe&&U.push("margin-left")),V&&(U.push("height"),ce==="absolute"||ce==="fixed"?U.push("top","bottom"):ce==="relative"?ge&&U.push("top"):ge&&U.push("margin-top"));let C=null,g=0,G=0;ce==="absolute"?(C=$c(ee),g=ae?D.left-k-C.originX+C.scrollLeft:0,G=V?D.top-y-C.originY+C.scrollTop:0):ce==="fixed"?(C={originX:0,originY:0,scrollLeft:0,scrollTop:0},g=ae?D.left-k:0,G=V?D.top-y:0):ce==="relative"?(g=ae&&pe?gt(oe.getPropertyValue("left"))??0:0,G=V&&ge?gt(oe.getPropertyValue("top"))??0:0):(g=ae&&pe?k:0,G=V&&ge?y:0);const se=Hc(oe),J=document.body.style.cursor,W=document.body.style.userSelect;S={pointerId:j.pointerId,dir:d,handleEl:M,target:ee,mode:ce,properties:U,tx:null,hasPassedThreshold:!1,affectsWidth:ae,affectsHeight:V,hasWest:pe,hasNorth:ge,anchors:null,lockX:null,lockY:null,hadGuidesLastFrame:!1,hadDistanceLabelsLastFrame:!1,startClientX:j.clientX,startClientY:j.clientY,lastClientX:j.clientX,lastClientY:j.clientY,startRect:D,startPosX:g,startPosY:G,absOrigin:C,extras:se,prevBodyCursor:J,prevBodyUserSelect:W};try{M.setPointerCapture(j.pointerId)}catch{}document.body.style.cursor=Bc[d],document.body.style.userSelect="none",dn(j),h(D),_()}function q(d){const M=S;M&&d.pointerId===M.pointerId&&(dn(d),M.lastClientX=d.clientX,M.lastClientY=d.clientY,_())}function Y(d){const M=S;M&&d.pointerId===M.pointerId&&(dn(d),M.lastClientX=d.clientX,M.lastClientY=d.clientY,K())}function F(d){const M=S;M&&d.pointerId===M.pointerId&&(dn(d),B(d.type))}function A(d){S&&d.key==="Escape"&&(d.preventDefault(),d.stopImmediatePropagation(),d.stopPropagation(),B("escape"))}function X(){S&&B("blur")}function N(){S&&document.visibilityState!=="visible"&&B("visibilitychange")}for(const[d,M]of m)e.listen(M,"pointerdown",j=>H(d,M,j)),e.listen(M,"pointermove",q),e.listen(M,"pointerup",Y),e.listen(M,"pointercancel",F),e.listen(M,"lostpointercapture",F);e.listen(document,"keydown",A,{capture:!0}),e.listen(window,"blur",X),e.listen(document,"visibilitychange",N);function b(d){e.isDisposed||(S&&B("target_change"),d instanceof HTMLElement&&d.isConnected?P=d:P=null,h(L))}function E(d){if(!e.isDisposed){if(L=cn(d)?d:null,!P||!P.isConnected){a.hidden=!0;return}if(S&&!L){B("rect_lost");return}S||h(L)}}function O(){B("dispose"),P=null,L=null,e.dispose()}return h(null),{setTarget:b,setSelectionRect:E,dispose:O}}const So=0,Oc=88,qc=56;function Gc(t,e){return!t||!e?!1:t.width>=Oc&&t.height>=qc}function Vc(t){return{left:t.left+So,top:t.top+So}}function zc(t){const e=new ze;let n=null,r=null,o=null;const s=document.createElement("button");s.type="button",s.className="we-parent-corner",s.dataset.hidden="true",s.setAttribute("aria-label","选择上级"),s.title="选择上级";const i=document.createElement("span");i.className="we-parent-corner__chrome",i.style.background=Me.selectionBorder,s.append(i),t.container.append(s),e.add(()=>s.remove());const a=m=>{m.preventDefault(),m.stopPropagation()};s.addEventListener("pointerdown",a),s.addEventListener("click",m=>{a(m);const P=o;!P||!P.isConnected||t.onSelectParent(P)}),e.add(()=>{s.removeEventListener("pointerdown",a)});function l(){if(o=n&&n.isConnected?t.getParentCandidate(n):null,!Gc(r,!!o)||!r){s.dataset.hidden="true";return}const P=Vc(r);s.style.left=`${P.left}px`,s.style.top=`${P.top}px`,s.dataset.hidden="false"}return{setTarget(m){n=m,l()},setSelectionRect(m){r=m,l()},dispose(){e.dispose()}}}const Wc=8,Xc=6,Yc=60,pt=.5,jc=new Set(["A","BUTTON","INPUT","SELECT","TEXTAREA","LABEL","SUMMARY","DETAILS"]),Jc=new Set(["button","link","checkbox","radio","switch","tab","menuitem","option","combobox","textbox"]),Qc=new Set(["DIV","SPAN","SECTION","ARTICLE","MAIN","HEADER","FOOTER","NAV","ASIDE"]);function rt(t){const e=Number.parseFloat(t);return Number.isFinite(e)?e:0}function Zc(t){const e=t.trim().toLowerCase();if(e==="transparent")return!0;const n=e.match(/^rgba?\((.+)\)$/);if(n){const o=n[1].split(",").map(s=>s.trim());if(o.length>=4){const s=Number.parseFloat(o[3]);return Number.isFinite(s)&&s<=.01}return!1}const r=e.match(/^hsla?\((.+)\)$/);if(r){const o=r[1].split(",").map(s=>s.trim());if(o.length>=4){const s=Number.parseFloat(o[3]);return Number.isFinite(s)&&s<=.01}return!1}return!1}function el(t){var e;for(const n of Array.from(t.childNodes))if(n.nodeType===Node.TEXT_NODE&&((e=n.textContent)!=null&&e.trim()))return!0;return!1}function Vt(t){var e;if(t.parentElement)return t.parentElement;try{const n=(e=t.getRootNode)==null?void 0:e.call(t);if(n instanceof ShadowRoot)return n.host}catch{}return null}function Eo(t,e){if(!Number.isFinite(t)||!Number.isFinite(e))return[];try{if(typeof document.elementsFromPoint=="function")return document.elementsFromPoint(t,e)}catch{}const n=document.elementFromPoint(t,e);return n?[n]:[]}function Wn(){const t=Math.max(1,window.innerWidth||1),e=Math.max(1,window.innerHeight||1);return t*e}function vo(t){try{const e=t.getBoundingClientRect();return!Number.isFinite(e.left)||!Number.isFinite(e.top)||!Number.isFinite(e.width)||!Number.isFinite(e.height)?null:e}catch{return null}}function To(t,e){return t.display==="none"||t.visibility==="hidden"||t.visibility==="collapse"||rt(t.opacity)<=.01||t.contentVisibility==="hidden"||e.width<=pt||e.height<=pt}function Co(t,e){let n=0;const r=[];(!Zc(e.backgroundColor)||e.backgroundImage!=="none")&&(n+=2,r.push("visual:background:+2")),[rt(e.borderTopWidth),rt(e.borderRightWidth),rt(e.borderBottomWidth),rt(e.borderLeftWidth)].some(a=>a>pt)&&(e.borderTopStyle!=="none"||e.borderRightStyle!=="none"||e.borderBottomStyle!=="none"||e.borderLeftStyle!=="none")&&(n+=3,r.push("visual:border:+3")),e.boxShadow&&e.boxShadow!=="none"&&(n+=2,r.push("visual:shadow:+2")),e.outlineStyle!=="none"&&rt(e.outlineWidth)>pt&&(n+=1,r.push("visual:outline:+1"));const i=t.tagName.toUpperCase();return(i==="IMG"||i==="VIDEO"||i==="CANVAS"||i==="SVG")&&(n+=2,r.push("visual:media:+2")),t instanceof SVGElement&&i!=="SVG"&&(n-=1,r.push("visual:svg-sub:-1")),{points:n,reasons:r}}function xo(t,e){var i;let n=0;const r=[],o=t.tagName.toUpperCase();jc.has(o)&&(n+=6,r.push(`type:${o.toLowerCase()}:+6`));const s=((i=t.getAttribute("role"))==null?void 0:i.toLowerCase())??"";return s&&Jc.has(s)&&(n+=4,r.push(`role:${s}:+4`)),t instanceof HTMLAnchorElement&&t.href&&(n+=2,r.push("attr:href:+2")),t instanceof HTMLElement&&(t.isContentEditable&&(n+=5,r.push("attr:contenteditable:+5")),t.tabIndex>=0&&(n+=2,r.push("focusable:+2"))),e.cursor==="pointer"&&(n+=2,r.push("cursor:pointer:+2")),{points:n,reasons:r}}function tl(t,e){let n=0;const r=[],o=t.width*t.height;if(!Number.isFinite(o)||o<=0)return n-=6,r.push("size:invalid:-6"),{points:n,reasons:r};t.width<4||t.height<4?(n-=6,r.push("size:tiny:-6")):o<16*16?(n-=4,r.push("size:small:-4")):o<44*44&&(n-=1,r.push("size:below-tap-target:-1"));const s=e>0?o/e:0;return s>.85?(n-=8,r.push("size:huge:-8")):s>.6&&(n-=4,r.push("size:very-large:-4")),{points:n,reasons:r}}function nl(t){return rt(t.paddingTop)>pt||rt(t.paddingRight)>pt||rt(t.paddingBottom)>pt||rt(t.paddingLeft)>pt}function Ao(t,e,n,r){if(e.display==="contents")return!0;if(r>0)return!1;const o=t.tagName.toUpperCase();return!(!Qc.has(o)||t.children.length!==1||el(t)||n>0||nl(e))}function Io(t,e){return t.hitOrder!==e.hitOrder?t.hitOrder-e.hitOrder:t.depthFromHit-e.depthFromHit}function rl(t){const e=new ze,{isOverlayElement:n}=t;function r(S,R,I){if(!S.isConnected||n(S))return null;const h=S.tagName.toUpperCase();if(h==="HTML"||h==="BODY")return null;const T=vo(S);if(!T)return null;let x=R.get(S);if(x||(x=window.getComputedStyle(S),R.set(S,x)),To(x,T))return null;const B=[];let K=0;const _=xo(S,x);K+=_.points,B.push(..._.reasons);const v=Co(S,x);K+=v.points,B.push(...v.reasons);const H=tl(T,I);K+=H.points,B.push(...H.reasons);const q=Ao(S,x,v.points,_.points);q&&(K-=8,B.push("wrapperOnly:-8")),h==="SPAN"&&_.points===0&&v.points===0&&(K-=2,B.push("inline:span:-2"));const Y=T.width*T.height,F=I>0?Y/I:0;return x.position==="fixed"&&F>.3&&(K-=2,B.push("position:fixed-large:-2")),{element:S,score:K,reasons:B,wrapperOnly:q}}function o(S,R){const I=Eo(S,R);if(I.length===0)return[];const h=new Map;function T(v,H){if(n(v)||h.size>=Yc&&!h.has(v))return;const q=h.get(v);(!q||Io(H,q)<0)&&h.set(v,H)}const x=Math.min(I.length,Wc);for(let v=0;vH.score!==v.score?H.score-v.score:Io(v,H)),_.map(({hitOrder:v,depthFromHit:H,...q})=>q)}function s(S){let R=Vt(S);if(!R)return null;const I=new Map;for(;R;){if(n(R))return null;const h=R.tagName.toUpperCase();if(h==="HTML"||h==="BODY")return null;const T=vo(R);if(!T){R=Vt(R);continue}let x=I.get(R);if(x||(x=window.getComputedStyle(R),I.set(R,x)),To(x,T)){R=Vt(R);continue}const B=xo(R,x),K=Co(R,x);if(!Ao(R,x,K.points,B.points))return R;R=Vt(R)}return null}function i(S,R,I){var x;const T=((x=o(S,R)[0])==null?void 0:x.element)??null;return T?I.alt?s(T)??T:T:null}function a(S){try{const R=typeof S.composedPath=="function"?S.composedPath():null;if(!Array.isArray(R)||R.length===0)return[];const I=[];for(const h of R){if(!(h instanceof Element)||n(h))continue;const T=h.tagName.toUpperCase();T==="HTML"||T==="BODY"||I.push(h)}return I}catch{return[]}}function l(S){const R=S,I=typeof R.clientX=="number"?R.clientX:Number.NaN,h=typeof R.clientY=="number"?R.clientY:Number.NaN;return!Number.isFinite(I)||!Number.isFinite(h)?null:{x:I,y:h}}const m=32;function P(S){const R=Wn(),I=new Map,h=Math.min(S.length,m);for(let T=0;Te.dispose()}}const ko=50,sr="axhub-web-editor-text-annotation",No="axhub-web-editor-text-annotation-style";function ol(t){let e=2166136261;for(let n=0;n>>0).toString(16).padStart(8,"0")}function il(t,e){return`text-ann::${ol(t+"||"+e)}`}function bi(t){const e=[];let n=t instanceof Element?t:t.parentElement;for(;n&&n!==document.body;){if(n instanceof Element){e.unshift(n.tagName.toLowerCase());const r=sl(n);if(r&&r!=="inline"&&r!=="inline-block")break}n=n.parentNode}return e}function sl(t){try{return window.getComputedStyle(t).display}catch{return null}}function al(t){const e=[],n=s=>{let i=s.textContent??"";if(s===t.startContainer&&(i=i.slice(t.startOffset)),s===t.endContainer){const a=s===t.startContainer?t.endOffset-t.startOffset:t.endOffset;i=i.slice(0,a)}i=i.replace(/\s+/g," "),i&&e.push({text:i,tags:bi(s)})};if(t.commonAncestorContainer instanceof Text)return n(t.commonAncestorContainer),e;const r=document.createTreeWalker(t.commonAncestorContainer,NodeFilter.SHOW_TEXT,{acceptNode(s){return t.intersectsNode(s)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_REJECT}});let o=r.nextNode();for(;o;)n(o),o=r.nextNode();return e}function Ro(t,e){try{const n=t.commonAncestorContainer,r=n instanceof Element?n:n.parentElement;if(!r)return"";const o=r.textContent??"",s=t.toString(),i=o.indexOf(s);if(i<0)return"";if(e==="before"){const a=Math.max(0,i-ko);return o.slice(a,i).replace(/\s+/g," ").trim()}else{const a=i+s.length;return o.slice(a,a+ko).replace(/\s+/g," ").trim()}}catch{return""}}function wi(t){return{left:t.left,top:t.top,width:t.width,height:t.height}}function cl(t){const e=[];for(let n=0;ne(G))}catch{}return e(g.target)}function A(g){h!=="interaction"&&(t.allowNativeTextSelection||(g.cancelable&&g.preventDefault(),g.stopImmediatePropagation(),g.stopPropagation()))}function X(g){return{alt:g.altKey,shift:g.shiftKey,ctrl:g.ctrlKey,meta:g.metaKey}}function N(g){return g instanceof PointerEvent?g.pointerId:0}function b(g){return!(I&&!(g instanceof PointerEvent))}function E(g,G){try{if(typeof g.composedPath=="function")return g.composedPath().some(J=>J===G)}catch{}const se=g.target;return se instanceof Node&&G.contains(se)}function O(){x=null,B=null,K=!1}function d(g){if(h==="dragging"){O();try{S==null||S({reason:g})}catch{}_=!0,ce("selecting")}}function M(g,G,se){if(h==="dragging"&&!(B===null||B!==g)){O();try{L==null||L({pointerId:g,clientX:G,clientY:se})}catch{}_=!0,ce("selecting")}}function j(g,G){if(!Number.isFinite(g)||!Number.isFinite(G))return null;const se=document.elementFromPoint(g,G);if(!se||e(se))return null;const J=s?s(se):se;return!J||e(J)||((l==null?void 0:l(J))??!1)?null:J}function ee(g,G,se,J){if(!Number.isFinite(G)||!Number.isFinite(se))return null;if(i){const W=i(G,se,J,g);return W&&e(W)||W&&((l==null?void 0:l(W))??!1)?null:W}return j(G,se)}function oe(){Y!==null&&(cancelAnimationFrame(Y),Y=null)}R.add(oe);function ie(g=!1){if(Y=null,R.isDisposed||h!=="hover"&&h!=="selecting"||!v)return;const G=j(H,q);!g&&G===T||(T=G,n(G))}function me(g=!1){Y===null&&(R.isDisposed||(Y=requestAnimationFrame(()=>{ie(g)})))}function ce(g){if(R.isDisposed||h===g)return;const G=h;if(h=g,G==="selecting"&&g!=="selecting"&&(x=null),g==="interaction"&&G!=="interaction"&&(oe(),T&&(T=null,n(null))),G==="dragging"&&g!=="dragging"){const se=!_;if(_=!1,O(),se)try{S==null||S({reason:"mode_change"})}catch{}}else _=!1;G==="hover"&&g!=="hover"&&(oe(),T?(T=null,n(null)):T=null),g==="hover"&&G!=="hover"&&(T=null,O(),o(),v&&me(!0))}function pe(g){if(F(g)){h==="hover"&&T!==null&&(T=null,n(null));return}if(A(g),!t.allowNativeTextSelection){if(H=g.clientX,q=g.clientY,v=!0,h==="dragging"&&b(g)){const G=N(g),se=g instanceof PointerEvent;if(K!==se)return;B!==null&&G===B&&(P==null||P({pointerId:G,clientX:g.clientX,clientY:g.clientY}));return}if(ae&&mt()){const G=g.clientX-ae.clientX,se=g.clientY-ae.clientY;Math.hypot(G,se)>=ge&&(ae=null)}if(h==="selecting"&&x&&b(g)){const G=N(g);if(G!==x.pointerId)return;const se=g instanceof PointerEvent;if(x.isPointerEventOrigin!==se)return;const J=g.clientX-x.startClientX,W=g.clientY-x.startClientY,Z=mt()?12:ds;if(Math.hypot(J,W){if(h==="dragging")try{S==null||S({reason:"dispose"})}catch{}O()}),{getMode:()=>h,setMode:ce,dispose:()=>R.dispose()}}const fn={passive:!0},bl=.5,Mo={childList:!0,subtree:!0};function wl(t){return t?t.parentNode?t.parentNode:t instanceof ShadowRoot?t.host:null:null}function Sl(t){if(!t)return[window,document];const e=new Set;let n=t;for(;n;)(n instanceof Element||n instanceof ShadowRoot||n instanceof Document)&&e.add(n),n=wl(n);return e.add(window),e.add(document),Array.from(e)}function El(t){const{left:e,top:n,width:r,height:o}=t;return!Number.isFinite(e)||!Number.isFinite(n)||!Number.isFinite(r)||!Number.isFinite(o)?null:{left:e,top:n,width:Math.max(0,r),height:Math.max(0,o)}}function hn(t,e){return Math.abs(t-e){i=null,I()}))}let m=new ze;n.add(()=>m.dispose());function P(){var q;m.dispose(),m=new ze;const K=o;if(!K)return;m.observeResize(K,()=>{n.isDisposed||o===K&&l()});const _=()=>{n.isDisposed||o===K&&l()},v=(q=K.getRootNode)==null?void 0:q.call(K);v instanceof ShadowRoot&&m.observeMutation(v,_,Mo);const H=document.body??document.documentElement;H&&m.observeMutation(H,_,Mo);for(const Y of Sl(K))m.listen(Y,"scroll",_,fn)}function L(K){return K&&K.isConnected?K:null}function S(K){if(!K)return null;try{return El(K.getBoundingClientRect())}catch{return null}}function R(){const K=L(r),_=L(o);if(r&&!K&&(r=null),o&&!_&&(o=null,P()),K&&_&&K===_){const v=S(K);return{hover:v,selection:v}}return{hover:S(K),selection:S(_)}}function I(){if(n.isDisposed)return;const K=R();vl(K,s)||(s=K,e(K))}function h(){!r&&!o&&!s.hover&&!s.selection||l()}n.listen(window,"scroll",h,fn),n.listen(document,"scroll",h,{...fn,capture:!0}),n.listen(window,"resize",h,fn);function T(K){n.isDisposed||r!==K&&(r=K,l())}function x(K){n.isDisposed||o!==K&&(o=K,P(),l())}function B(K){if(!n.isDisposed){if(a(),K){const _=R();s=_,e(_);return}I()}}return{setHoverElement:T,setSelectionElement:x,forceUpdate:B,dispose:()=>n.dispose()}}const Cl=100,xl=800,Al={capture:!0,passive:!1};function yt(t){const e=t.trim();return e?e.startsWith("--")?e:e.includes("-")?e.toLowerCase():e.replace(/[A-Z]/g,n=>`-${n.toLowerCase()}`).toLowerCase():""}function An(t){const n=t.style;return!n||typeof n.getPropertyValue!="function"||typeof n.setProperty!="function"||typeof n.removeProperty!="function"?null:n}function mn(t,e){const n=yt(e);return n?t.getPropertyValue(n).trim():""}function Lo(t,e){if(typeof window>"u"||typeof window.getComputedStyle!="function")return"";const n=yt(e);if(!n)return"";try{return window.getComputedStyle(t).getPropertyValue(n).trim()}catch{return""}}function Wt(t,e,n){const r=yt(e);if(!r)return;const o=n.trim();o?t.setProperty(r,o):t.removeProperty(r)}function Si(t,e){if(!e)return;const n=An(t);if(n)for(const[r,o]of Object.entries(e))Wt(n,r,o)}function Sn(t){const e=[],n=new Set;for(const r of t??[]){const o=String(r??"").trim();o&&(n.has(o)||(n.add(o),e.push(o)))}return e}function Do(t,e){if(t.length!==e.length)return!1;for(let n=0;nn.trim()).filter(Boolean)}catch{return[]}}function Ei(t,e){const r=Sn(e).join(" ").trim();try{r?t.setAttribute("class",r):t.removeAttribute("class")}catch{}}function kl(t){const e=An(t);if(!e)return;const n={};for(let r=0;r0?n:void 0}function Bo(t){const e=String(t??"").trim();if(!e)return null;try{const n=document.createElement("template");n.innerHTML=e;const r=n.content.firstElementChild;return!r||n.content.childElementCount!==1?null:r}catch{return null}}function Nl(t){try{t.removeAttribute("id");const e=t.querySelectorAll("[id]");for(const n of Array.from(e))n.removeAttribute("id")}catch{}}function Fo(t,e,n){if(!t.isConnected)return!1;let r=null;if(n.anchorLocator){const o=we(n.anchorLocator);o&&o.parentElement===t&&(r=n.anchorPosition==="before"?o:o.nextSibling)}if(!r){const o=Array.from(t.children),s=Math.max(0,Math.min(n.insertIndex,o.length));r=o[s]??null}try{return t.insertBefore(e,r),!0}catch{return!1}}function ar(t,e,n){const r=t.parentElement;if(!r)return null;const o=String(e||"div").toLowerCase(),s=document.createElement(o);n&&Si(s,n);try{return r.insertBefore(s,t),s.appendChild(t),s}catch{return null}}function cr(t){const e=t.parentElement;if(!e||t.childElementCount!==1)return null;const n=t.firstElementChild;if(!n)return null;try{return e.insertBefore(n,t),t.remove(),n}catch{return null}}function Rl(t){const e=t.parentElement;if(!e)return null;const r=Array.from(e.children).indexOf(t);return r<0?null:{parentLocator:Se(e),insertIndex:r+1,anchorLocator:Se(t),anchorPosition:"after"}}let Ko=0;function xt(t){return Ko+=1,`tx_${t.toString(36)}_${Ko.toString(36)}`}function vi(t,e,n,r,o,s,i){const a={locator:e,styles:n};return i&&Object.keys(i).length>0&&(a.computedStyles=i),{id:t,type:"style",targetLocator:e,elementKey:s,before:a,after:{locator:e,styles:r},timestamp:o,merged:!1}}function Ho(t,e,n,r,o,s,i,a){const l=yt(n),m=a&&a.trim()?{[l]:a}:void 0;return vi(t,e,{[l]:r},{[l]:o},s,i,m)}function Pl(t,e,n,r,o,s){return{id:t,type:"text",targetLocator:e,elementKey:s,before:{locator:e,text:n},after:{locator:e,text:r},timestamp:o,merged:!1}}function Ml(t,e,n,r,o,s,i){return{id:t,type:"class",targetLocator:n,elementKey:i,before:{locator:e,classes:r},after:{locator:n,classes:o},timestamp:s,merged:!1}}function _l(t,e,n,r,o,s){return{id:t,type:"move",targetLocator:n,elementKey:s,before:{locator:e},after:{locator:n},moveData:r,timestamp:o,merged:!1}}function gn(t,e,n,r,o,s,i){return{id:t,type:"structure",targetLocator:e,elementKey:i,before:{locator:n},after:{locator:r},structureData:o,timestamp:s,merged:!1}}function At(t){var n;const e=(n=t.tagName)==null?void 0:n.toUpperCase();return e==="HTML"||e==="BODY"||e==="HEAD"}function kt(t){var n;const e=(n=t.tagName)==null?void 0:n.toUpperCase();return e==="HTML"||e==="HEAD"}function lr(t){var n;const e=(n=t.tagName)==null?void 0:n.toUpperCase();return e==="HTML"||e==="BODY"||e==="HEAD"}function Xn(t){const e=t.parentElement;if(!e)return null;const r=Array.from(e.children).indexOf(t);if(r<0)return null;const o=Se(e),s=t.nextElementSibling;if(s)return{parentLocator:o,insertIndex:r,anchorLocator:Se(s),anchorPosition:"before"};const i=t.previousElementSibling;return i?{parentLocator:o,insertIndex:r,anchorLocator:Se(i),anchorPosition:"after"}:{parentLocator:o,insertIndex:r,anchorPosition:"before"}}function Ll(t,e){var i,a;if(!t.isConnected||lr(t))return!1;const n=we(e.parentLocator);if(!n||!n.isConnected)return!1;const r=(i=t.getRootNode)==null?void 0:i.call(t),o=(a=n.getRootNode)==null?void 0:a.call(n);if(r&&o&&r!==o||t===n||t.contains(n))return!1;let s=null;if(e.anchorLocator){const l=we(e.anchorLocator);l&&l!==t&&l.parentElement===n&&(s=e.anchorPosition==="before"?l:l.nextSibling,s===t&&(s=t.nextSibling))}if(!s){const l=Array.from(n.children),m=l.indexOf(t);m!==-1&&l.splice(m,1);const P=Math.max(0,Math.min(e.insertIndex,l.length));s=l[P]??null}try{return n.insertBefore(t,s),!0}catch{return!1}}function ur(t){const e=new Set;if(t.before.styles)for(const n of Object.keys(t.before.styles))e.add(n);if(t.after.styles)for(const n of Object.keys(t.after.styles))e.add(n);return e.size===1?Array.from(e)[0]:null}function Dl(t,e,n){if(t.type!=="style"||e.type!=="style"||Math.abs(e.timestamp-t.timestamp)>n||Oe(t.targetLocator)!==Oe(e.targetLocator))return!1;const r=ur(t),o=ur(e);return!(!r||!o||r!==o)}function Bl(t,e){var o;const n=ur(t);if(!n)return!1;const r=(o=e.after.styles)==null?void 0:o[n];return r===void 0?!1:(t.after.styles||(t.after.styles={}),t.after.styles[n]=r,t.timestamp=e.timestamp,t.merged=!0,!0)}function Fl(t,e){var o,s;const n=t.structureData;if(!n)return!1;const r=e==="redo";switch(n.action){case"wrap":{if(r){const l=we(t.before.locator)??we(t.targetLocator)??we(t.after.locator);if(!l||!l.isConnected||At(l))return!1;const m=l.parentElement;if(!m||!m.isConnected||kt(m))return!1;const P=ar(l,n.wrapperTag??"div",n.wrapperStyles);if(!P||!P.isConnected)return!1;const L=Se(P);return t.after.locator=L,t.targetLocator=L,!0}const i=we(t.after.locator)??we(t.targetLocator);if(!i||!i.isConnected||At(i))return!1;const a=cr(i);return!a||!a.isConnected?!1:(t.before.locator=Se(a),!0)}case"unwrap":{if(r){const m=we(t.before.locator)??((o=we(t.after.locator))==null?void 0:o.parentElement)??((s=we(t.targetLocator))==null?void 0:s.parentElement);if(!m||!m.isConnected||At(m))return!1;const P=cr(m);if(!P||!P.isConnected)return!1;const L=Se(P);return t.after.locator=L,t.targetLocator=L,!0}const i=we(t.after.locator)??we(t.targetLocator);if(!i||!i.isConnected||At(i))return!1;const a=i.parentElement;if(!a||!a.isConnected||kt(a))return!1;const l=ar(i,n.wrapperTag??"div",n.wrapperStyles);return!l||!l.isConnected?!1:(t.before.locator=Se(l),!0)}case"delete":{if(r){const m=we(t.before.locator)??we(t.targetLocator);return!m||!m.isConnected||At(m)?!1:(m.remove(),!0)}if(!n.position||!n.html)return!1;const i=we(n.position.parentLocator);if(!i||!i.isConnected||kt(i))return!1;const a=Bo(n.html);if(!a||!Fo(i,a,n.position))return!1;const l=Se(a);return t.before.locator=l,t.targetLocator=l,!0}case"duplicate":{if(r){if(!n.position||!n.html)return!1;const a=we(n.position.parentLocator);if(!a||!a.isConnected||kt(a))return!1;const l=Bo(n.html);if(!l||!Fo(a,l,n.position))return!1;const m=Se(l);return t.after.locator=m,t.targetLocator=m,!0}const i=we(t.after.locator)??we(t.targetLocator);return!i||!i.isConnected||At(i)?!1:(i.remove(),!0)}default:return!1}}function $o(t,e){if(t.type==="move"){const o=t.moveData;if(!o)return!1;const s=e==="undo"?t.after.locator:t.before.locator,i=e==="undo"?t.before.locator:t.after.locator,a=we(s)??we(i)??we(t.targetLocator);if(!a)return!1;const l=e==="undo"?o.from:o.to;return Ll(a,l)}if(t.type==="class"){const o=e==="undo"?t.after.locator:t.before.locator,s=e==="undo"?t.before.locator:t.after.locator,i=we(o)??we(s)??we(t.targetLocator);if(!i)return!1;const a=e==="undo"?t.before:t.after,l=Array.isArray(a.classes)?a.classes:[];return Ei(i,l),!0}if(t.type==="structure")return Fl(t,e);if(t.type!=="style"&&t.type!=="text")return!0;const n=we(t.targetLocator);if(!n)return!1;const r=e==="undo"?t.before:t.after;return t.type==="style"?(Si(n,r.styles),!0):(t.type==="text"&&(n.textContent=r.text??""),!0)}function Kl(t={}){const e=new ze,n=Math.max(1,t.maxHistory??Cl),r=Math.max(0,t.mergeWindowMs??xl),o=t.now??(()=>Date.now()),s=[],i=[];function a(A,X){var N;(N=t.onChange)==null||N.call(t,{action:A,transaction:X,undoCount:s.length,redoCount:i.length})}function l(){s.length>n&&s.splice(0,s.length-n)}function m(A,X){const N=i.length>0;if(N&&(i.length=0),!N&&X&&s.length>0){const b=s[s.length-1];if(Dl(b,A,r)&&Bl(b,A)){a("merge",b);return}}s.push(A),l(),a("push",A)}function P(A,X,N,b,E){if(e.isDisposed)return null;const O=yt(X);if(!O)return null;const d=N.trim(),M=b.trim();if(d===M)return null;const j=xt(o()),ee=Ho(j,A,O,d,M,o());return m(ee,(E==null?void 0:E.merge)!==!1),ee}function L(A,X,N){if(e.isDisposed)return null;const b=String(X??""),E=String(N??"");if(b===E)return null;const O=Se(A),d=o(),M=xt(d),j=Ne(A,O.shadowHostChain),ee=Pl(M,O,b,E,d,j);return m(ee,!1),ee}function S(A,X,N){if(e.isDisposed||!A.isConnected)return null;const b=Sn(Il(A)),E=Sn(X),O=Sn(N),d=Do(E,b)?E:b;if(Do(d,O))return null;const M=o(),j=xt(M),ee=Se(A),oe=Ne(A,ee.shadowHostChain);Ei(A,O);const ie=Se(A),me=Ml(j,ee,ie,d,O,M,oe);return m(me,!1),me}function R(A,X){if(e.isDisposed||!A.isConnected||At(A))return null;const N=X==null?void 0:X.action,b=o(),E=xt(b);if(N==="wrap"){const O=A.parentElement;if(!O||!O.isConnected||kt(O))return null;const d=Se(A),M=ar(A,X.wrapperTag??"div",X.wrapperStyles);if(!M||!M.isConnected)return null;const j=Se(M),ee=Ne(M,j.shadowHostChain),oe={action:"wrap",wrapperTag:X.wrapperTag??"div",wrapperStyles:X.wrapperStyles},ie=gn(E,j,d,j,oe,b,ee);return m(ie,!1),ie}if(N==="unwrap"){const O=A,d=O.parentElement;if(!d||!d.isConnected||kt(d)||O.childElementCount!==1)return null;const M=Se(O),j=O.tagName.toLowerCase(),ee=kl(O),oe=cr(O);if(!oe||!oe.isConnected)return null;const ie=Se(oe),me=Ne(oe,ie.shadowHostChain),pe=gn(E,ie,M,ie,{action:"unwrap",wrapperTag:j,wrapperStyles:ee},b,me);return m(pe,!1),pe}if(N==="delete"){const O=Xn(A);if(!O)return null;const d=String(A.outerHTML??"").trim();if(!d)return null;const M=Se(A),j=Ne(A,M.shadowHostChain),ee=O.parentLocator;try{A.remove()}catch{return null}const ie=gn(E,M,M,ee,{action:"delete",position:O,html:d},b,j);return m(ie,!1),ie}if(N==="duplicate"){const O=A.parentElement;if(!O||!O.isConnected||kt(O))return null;const d=Rl(A);if(!d)return null;const M=Se(A),j=A.cloneNode(!0);Nl(j);try{O.insertBefore(j,A.nextSibling)}catch{return null}const ee=String(j.outerHTML??"").trim();if(!ee)return null;const oe=Se(j),ie=Ne(j,oe.shadowHostChain),ce=gn(E,oe,M,oe,{action:"duplicate",position:d,html:ee},b,ie);return m(ce,!1),ce}return null}function I(A){if(e.isDisposed||!A.isConnected||lr(A))return null;const X=Xn(A);if(!X)return null;const N=o(),b=xt(N),E=Se(A);let O=!1;function d(j){if(O||e.isDisposed||(O=!0,!j.isConnected)||lr(j))return null;const ee=Xn(j);if(!ee)return null;const oe=Oe(X.parentLocator)===Oe(ee.parentLocator),ie=X.insertIndex===ee.insertIndex,me=X.anchorPosition===ee.anchorPosition,ce=!X.anchorLocator&&!ee.anchorLocator||X.anchorLocator&&ee.anchorLocator&&Oe(X.anchorLocator)===Oe(ee.anchorLocator);if(oe&&ie&&ce&&me)return null;const pe=Se(j),ge=Ne(j,pe.shadowHostChain),V=_l(b,E,pe,{from:X,to:ee},o(),ge);return m(V,!1),V}function M(){O||e.isDisposed||(O=!0)}return{id:b,beforeLocator:E,from:X,commit:d,cancel:M}}function h(A,X){if(e.isDisposed)return null;const N=An(A);if(!N)return null;const b=N,E=yt(X);if(!E)return null;const O=Se(A),d=mn(b,E),M=Lo(A,E),j=xt(o()),ee=Ne(A,O.shadowHostChain);let oe=!1;function ie(pe){oe||e.isDisposed||Wt(b,E,pe)}function me(pe){if(oe||e.isDisposed)return null;oe=!0;const ge=mn(b,E);if(ge===d)return null;const ae=Ho(j,O,E,d,ge,o(),ee,M);return m(ae,(pe==null?void 0:pe.merge)!==!1),ae}function ce(){oe||e.isDisposed||(oe=!0,Wt(b,E,d),a("rollback",null))}return{id:j,property:E,targetLocator:O,set:ie,commit:me,rollback:ce}}function T(A,X){if(e.isDisposed)return null;const N=An(A);if(!N)return null;const b=N,E=Array.from(new Set(X.map(ae=>yt(String(ae))).filter(ae=>!!ae)));if(E.length===0)return null;const O=new Set(E),d=Se(A),M=o(),j=xt(M),ee=Ne(A,d.shadowHostChain),oe={},ie={};for(const ae of E)oe[ae]=mn(b,ae),ie[ae]=Lo(A,ae);let me=!1;function ce(ae){if(!(me||e.isDisposed))for(const[V,p]of Object.entries(ae)){const u=yt(V);!u||!O.has(u)||Wt(b,u,String(p??""))}}function pe(ae){if(me||e.isDisposed)return null;me=!0;const V={},p={},u={};for(const y of E){const D=oe[y]??"",U=mn(b,y);if(U===D)continue;V[y]=D,p[y]=U;const C=ie[y]??"";C.trim()&&(u[y]=C)}if(Object.keys(V).length===0)return null;const k=vi(j,d,V,p,o(),ee,u);return m(k,(ae==null?void 0:ae.merge)===!0),k}function ge(){if(!(me||e.isDisposed)){me=!0;for(const ae of E)Wt(b,ae,oe[ae]??"");a("rollback",null)}}return{id:j,properties:E,targetLocator:d,set:ce,commit:pe,rollback:ge}}function x(A,X,N,b){const E=h(A,X);return E?(E.set(N),E.commit(b)):null}function B(){var N;if(e.isDisposed)return null;const A=s.pop();return A?$o(A,"undo")?(i.push(A),a("undo",A),A):(s.push(A),(N=t.onApplyError)==null||N.call(t,new Error(`Failed to locate element for undo: ${A.id}`)),null):null}function K(){var N;if(e.isDisposed)return null;const A=i.pop();return A?$o(A,"redo")?(s.push(A),l(),a("redo",A),A):(i.push(A),(N=t.onApplyError)==null||N.call(t,new Error(`Failed to locate element for redo: ${A.id}`)),null):null}function _(){return s.length>0}function v(){return i.length>0}function H(){return s.slice()}function q(){return i.slice()}function Y(){s.length=0,i.length=0,a("clear",null)}t.enableKeyBindings&&e.listen(window,"keydown",A=>{var b;if((b=t.isEventFromEditorUi)!=null&&b.call(t,A)||!(A.metaKey||A.ctrlKey)||A.altKey)return;const N=A.key.toLowerCase();N==="z"?(A.shiftKey?K():B(),A.preventDefault(),A.stopPropagation(),A.stopImmediatePropagation()):N==="y"&&(K(),A.preventDefault(),A.stopPropagation(),A.stopImmediatePropagation())},Al);function F(){s.length=0,i.length=0,e.dispose()}return{beginStyle:h,beginMultiStyle:T,beginMove:I,applyStyle:x,recordStyle:P,recordText:L,recordClass:S,applyStructure:R,undo:B,redo:K,canUndo:_,canRedo:v,getUndoStack:H,getRedoStack:q,clear:Y,dispose:F}}function Yn(t){return typeof t=="number"&&Number.isFinite(t)}function Hl(t){return t/(1024*1024)}function Uo(t,e){const n=Hl(t);return Number.isFinite(n)?n.toFixed(e):"N/A"}function $l(){try{const e=performance.memory;if(!e)return null;const n=e.usedJSHeapSize,r=e.jsHeapSizeLimit,o=e.totalJSHeapSize;return!Yn(n)||!Yn(r)||!Yn(o)?null:{usedJSHeapSize:n,totalJSHeapSize:o,jsHeapSizeLimit:r}}catch{return null}}function Ul(t){const e=new ze,n=t.container,r=Math.max(100,Math.floor(t.fpsUiIntervalMs)),o=Math.max(250,Math.floor(t.memorySampleIntervalMs)),s=document.createElement("div");s.className="we-perf-hud",s.hidden=!0,s.setAttribute("aria-hidden","true");const i=document.createElement("div");i.className="we-perf-hud-line",i.textContent="FPS: --";const a=document.createElement("div");a.className="we-perf-hud-line",a.textContent="Heap: --",s.append(i,a),n.append(s),e.add(()=>s.remove());let l=!1,m=null,P=0,L=0,S=0,R=i.textContent??"",I=a.textContent??"";function h(){m!==null&&(cancelAnimationFrame(m),m=null)}e.add(h);function T(Y,F,A){if(A==="fps"){if(F===R)return;R=F}else{if(F===I)return;I=F}Y.textContent=F}function x(){const Y=$l();if(!Y){T(a,"Heap: N/A","heap");return}const F=Uo(Y.usedJSHeapSize,1),A=Uo(Y.jsHeapSizeLimit,0);T(a,`Heap: ${F} / ${A} MB`,"heap")}function B(Y){P=0,L=Y,S=Y-o,T(i,"FPS: --","fps"),x()}function K(){e.isDisposed||l&&m===null&&document.visibilityState==="visible"&&(m=requestAnimationFrame(_))}function _(Y){if(m=null,e.isDisposed||!l||document.visibilityState!=="visible")return;P+=1;const F=Y-L;if(F>=r){const A=F>0?P*1e3/F:0,X=Math.max(0,Math.round(A));T(i,`FPS: ${X}`,"fps"),P=0,L=Y}Y-S>=o&&(S=Y,x()),K()}function v(){if(l){if(document.visibilityState!=="visible"){h();return}B(performance.now()),K()}}e.listen(document,"visibilitychange",v);function H(Y){if(l!==Y){if(l=Y,!l){s.hidden=!0,h();return}s.hidden=!1,document.visibilityState==="visible"&&(B(performance.now()),K())}}function q(){return H(!l),l}return{isEnabled:()=>l,setEnabled:H,toggle:q,dispose:()=>{l=!1,s.hidden=!0,e.dispose()}}}const Ol=50,ql=8;function Gl(t={}){const e=Math.max(1,Math.floor(t.maxDeclarationsPerToken??Ol)),n=Math.max(0,Math.floor(t.maxInlineDepth??ql));function r(S){try{return S.cssRules}catch{return null}}function o(S){var R,I;if(S.disabled)return!1;try{const h=((I=(R=S.media)==null?void 0:R.mediaText)==null?void 0:I.trim())??"";return!h||h.toLowerCase()==="all"?!0:window.matchMedia(h).matches}catch{return!0}}function s(S,R){var T;const I=typeof S.href=="string"?S.href:void 0;if(I){const x=((T=I.split("/").pop())==null?void 0:T.split("?")[0])??I;return{url:I,label:x}}const h=S.ownerNode;return(h==null?void 0:h.nodeType)===Node.ELEMENT_NODE?{label:`<${h.tagName.toLowerCase()} #${R}>`}:{label:``}}function i(S,R){var I,h;try{const T=((h=(I=S.media)==null?void 0:I.mediaText)==null?void 0:h.trim())??"";return!T||T.toLowerCase()==="all"?!0:window.matchMedia(T).matches}catch(T){return R.push(`Failed to evaluate @media: ${String(T)}`),!1}}function a(S,R){var I;try{const h=((I=S.conditionText)==null?void 0:I.trim())??"";return!h||typeof(CSS==null?void 0:CSS.supports)!="function"?!0:CSS.supports(h)}catch(h){return R.push(`Failed to evaluate @supports: ${String(h)}`),!1}}function l(S){const R=[],I=Number((S==null?void 0:S.length)??0);for(let h=0;h=e||(F.push({...Y,order:B++}),h.set(Y.name,F),x++)}function _(Y,F){var A,X,N;for(const b of Array.from(Y)){if(T++,b.type===CSSRule.IMPORT_RULE){const O=b,d=O.styleSheet;if(d&&!F.visited.has(d)){try{const ee=((X=(A=O.media)==null?void 0:A.mediaText)==null?void 0:X.trim())??"";if(ee&&ee.toLowerCase()!=="all"&&!window.matchMedia(ee).matches)continue}catch{}if(!o(d))continue;const M=r(d),j=s(d,F.sheetIndex);if(!M){I.push(`Skipped @import (cross-origin): ${j.url??j.label}`);continue}F.visited.add(d);try{_(M,{...F,source:j})}finally{F.visited.delete(d)}}continue}if(b.type===CSSRule.MEDIA_RULE){i(b,I)&&_(b.cssRules,F);continue}if(b.type===CSSRule.SUPPORTS_RULE){a(b,I)&&_(b.cssRules,F);continue}if(b.type===CSSRule.STYLE_RULE){const O=b,d=String(O.selectorText??"").trim()||void 0,M=l(O.style);for(const j of M)K({name:j.name,value:j.value,important:j.important,origin:"rule",rootType:R,styleSheet:F.source,selectorText:d});continue}const E=b;if((N=E.cssRules)!=null&&N.length)try{_(E.cssRules,F)}catch{}}}const v=S,H=[];try{for(const Y of Array.from(v.styleSheets??[]))Y instanceof CSSStyleSheet&&H.push(Y)}catch{}try{const Y=Array.from(v.adoptedStyleSheets??[]);for(const F of Y)F instanceof CSSStyleSheet&&H.push(F)}catch{}for(let Y=0;Y=0?S.slice(0,R):S).trim(),h=R>=0?S.slice(R+1).trim():"";if(!I.startsWith("--"))return null;const T=I;return h?{name:T,fallback:h}:{name:T}}function o(l){var R;const m=[],P=String(l??""),L=/var\(\s*(--[\w-]+)/g;let S;for(;S=L.exec(P);){const I=(R=S[1])==null?void 0:R.trim();I!=null&&I.startsWith("--")&&m.push(I)}return m}function s(l,m){try{return window.getComputedStyle(l).getPropertyValue(m).trim()}catch{return""}}function i(l,m){const P=s(l,m);return{token:m,computedValue:P,availability:P?"available":"unset"}}function a(l,m,P,L={}){const S=n(m,L.fallback),R=e&&L.preview?"probe":"computed";let I;return R==="computed"&&L.preview&&(I=s(l,m)||void 0),{token:m,cssProperty:P,cssValue:S,resolvedValue:I,method:R}}return{formatCssVar:n,parseCssVar:r,extractCssVarNames:o,readComputedValue:s,resolveToken:i,resolveTokenForProperty:a}}function zl(t={}){const e=new ze,n=t.now??(()=>performance.now()),r=Math.max(0,Math.floor(t.cacheMaxAgeMs??0)),o=t.observeHead!==!1,s=!!t.observeShadowRoots,i=Math.max(0,Math.floor(t.maxInlineDepth??8)),a=t.detector??Gl(t.detectorOptions),l=t.resolver??Vl(t.resolverOptions),m=new WeakMap,P=new WeakSet,L=new Set;function S(b){return b instanceof ShadowRoot?"shadow":"document"}function R(b,E){const O={root:b,rootType:S(b),reason:E,timestamp:n()};for(const d of L)try{d(O)}catch{}}function I(b){var E;try{const O=(E=b.getRootNode)==null?void 0:E.call(b);return O instanceof ShadowRoot?O:b.ownerDocument??document}catch{return b.ownerDocument??document}}function h(b){if(P.has(b))return;if(P.add(b),b instanceof ShadowRoot){if(!s)return;e.observeMutation(b,()=>x(b,"shadow_mutation"),{childList:!0,subtree:!0,characterData:!0,attributes:!0});return}if(!o)return;const E=b.head;E&&e.observeMutation(E,()=>x(b,"head_mutation"),{childList:!0,subtree:!0,characterData:!0,attributes:!0})}function T(b){const E=m.get(b);if(E)if(r>0)if(n()-E.collectedAt>=r)x(b,"ttl");else return E.index;else return E.index;const O=a.collectRootIndex(b);return m.set(b,{index:O,collectedAt:n()}),O}function x(b,E="manual"){m.delete(b),R(b,E)}function B(b,E){const O=[...E].sort((d,M)=>d.order-M.order);return{name:b,kind:"unknown",declarations:O}}function K(b,E={}){h(b);const O=T(b),d=[];for(const[M,j]of O.tokens)d.push(B(M,j));return E.sortByName!==!1&&d.sort((M,j)=>M.name.localeCompare(j.name)),{tokens:d,warnings:O.warnings,stats:O.stats}}function _(b,E={}){const O=I(b);h(O);const d=T(O),M=new Set;for(const ie of d.tokens.keys())M.add(ie);if(E.includeInlineAncestors!==!1){const ie=E.inlineMaxDepth??i,me=a.collectInlineTokenNames(b,{maxDepth:ie});for(const ce of me)M.add(ce)}const ee=[];let oe=null;try{oe=window.getComputedStyle(b)}catch{}if(oe)for(const ie of M){let me="";try{me=oe.getPropertyValue(ie).trim()}catch{}if(!me)continue;const ce=d.tokens.get(ie)??[];ee.push({token:B(ie,ce),computedValue:me})}return E.sortByName!==!1&&ee.sort((ie,me)=>ie.token.name.localeCompare(me.token.name)),{tokens:ee,warnings:d.warnings,stats:d.stats}}function v(b,E){return l.resolveToken(b,E)}function H(b,E,O,d){return l.resolveTokenForProperty(b,E,O,d)}function q(b,E){return l.formatCssVar(b,E)}function Y(b){return l.parseCssVar(b)}function F(b){return l.extractCssVarNames(b)}function A(b,E,O,d,M){const j=q(d,M==null?void 0:M.fallback);return b.applyStyle(E,O,j,{merge:M==null?void 0:M.merge})}function X(b){return L.add(b),()=>L.delete(b)}function N(){L.clear(),e.dispose()}return{getRootTokens:K,getContextTokens:_,resolveToken:v,resolveTokenForProperty:H,formatCssVar:q,parseCssVar:Y,extractCssVarNames:F,invalidateRoot:x,onInvalidation:X,applyTokenToStyle:A,dispose:N}}let Wl=async()=>cs(()=>import("./index.js?v=1775123024591"),__vite__mapDeps([0,1,2,3,4,5,6]));function gr(t){return t instanceof HTMLElement&&t.isConnected}function Xl(t){if(!gr(t))return"当前没有可导出的元素"}function Yl(t){var e,n;for(const r of[t.getAttribute("data-axhub-display-name"),t.getAttribute("aria-label"),t.getAttribute("data-page-id"),t.getAttribute("data-component-id"),t.id,t.getAttribute("data-testid")]){if(typeof r!="string")continue;const o=r.trim();if(o)return o}return((n=(e=t.tagName)==null?void 0:e.toUpperCase)==null?void 0:n.call(e))||"FRAME"}async function jl(t){if(!navigator.clipboard||typeof navigator.clipboard.writeText!="function")throw new Error("当前环境不支持文本复制,请检查浏览器剪贴板权限后重试。");await navigator.clipboard.writeText(JSON.stringify(t))}async function Jl(t,e){if(!gr(e))throw new Error("当前没有可导出的元素。");const n=Yl(e),{htmlToAxure:r,htmlToFigma:o,safeCopyToFigmaWithKiwi:s}=await Wl();if(t==="figma"||t==="pencil"){const a=await o(e,{rootName:n,enableAutoLayout:!0}),l=await s({layers:Array.isArray(a)?a:[]});if(l.skipped)throw l.reason==="clipboard_unavailable"?new Error("当前环境不支持剪贴板写入,请检查浏览器权限后重试。"):new Error(`导出到 ${t} 失败。`);return}const i=await r(e,{rootName:n,preserveHierarchy:!1,preserveSvgIcons:!0});await jl(i)}function Ql(t){const{state:e,options:n,services:r,onStatusChange:o}=t;function s(){const I=Array.from(e.editMetaByKey.values()).filter(x=>x.dirtySince!==null||String(x.note??"").trim()||Array.isArray(x.images)&&x.images.length>0).sort((x,B)=>Number(B.dirtySince??0)-Number(x.dirtySince??0)),h=[],T=new Set;for(const x of I)try{const B=we(x.locator);B!=null&&B.isConnected&&!T.has(B)&&(T.add(B),h.push(B))}catch{}return h}function i(I){var T;const h=s();return h.length>0?h:I!=null&&I.isConnected?[I]:(T=e.selectedElement)!=null&&T.isConnected?[e.selectedElement]:[]}function a(I){var h;return I!=null&&I.isConnected?I:(h=e.selectedElement)!=null&&h.isConnected?e.selectedElement:s()[0]??null}function l(I){console.error(`${Ke} Transaction apply error:`,I)}function m(){var I,h,T,x,B,K,_,v,H,q,Y,F,A,X,N,b,E;(I=r.integrationWs)==null||I.stop(),r.genieBridge.stop(),(h=e.uiResizeCleanup)==null||h.call(e),e.uiResizeCleanup=null,(T=e.propertyPanel)==null||T.dispose(),e.propertyPanel=null,(x=e.tokensService)==null||x.dispose(),e.tokensService=null,(B=e.breadcrumbs)==null||B.dispose(),e.breadcrumbs=null,(K=e.eventController)==null||K.dispose(),e.eventController=null,(_=e.annotationShortcutCleanup)==null||_.call(e),e.annotationShortcutCleanup=null,e.textAnnotationTargetElement&&(e.textAnnotationTargetElement.remove(),e.textAnnotationTargetElement=null),(v=e.dragReorderController)==null||v.dispose(),e.dragReorderController=null,(H=e.handlesController)==null||H.dispose(),e.handlesController=null,(q=e.parentSelectController)==null||q.dispose(),e.parentSelectController=null,(Y=e.transactionManager)==null||Y.dispose(),e.transactionManager=null,(F=e.positionTracker)==null||F.dispose(),e.positionTracker=null,(A=e.selectionEngine)==null||A.dispose(),e.selectionEngine=null,(X=e.perfHotkeyCleanup)==null||X.call(e),e.perfHotkeyCleanup=null,(N=e.perfMonitor)==null||N.dispose(),e.perfMonitor=null,(b=e.canvasOverlay)==null||b.dispose(),e.canvasOverlay=null,(E=e.shadowHost)==null||E.dispose(),e.shadowHost=null,Ea(e)}function P(){const I=T=>{if(T.repeat||!(T.metaKey||T.ctrlKey)||!T.shiftKey||T.altKey||(T.key||"").toLowerCase()!=="p")return;const K=e.perfMonitor;K&&(K.toggle(),T.preventDefault(),T.stopPropagation(),T.stopImmediatePropagation())},h={capture:!0,passive:!1};window.addEventListener("keydown",I,h),e.perfHotkeyCleanup=()=>{window.removeEventListener("keydown",I,h)}}function L(){let I=null,h=null;const T=()=>{e.propertyPanel&&e.propertyPanelPosition&&e.propertyPanel.setPosition(e.propertyPanelPosition)},x=()=>{!e.active||I!==null||(I=window.requestAnimationFrame(()=>{I=null,T()}))},B=()=>{!e.active||h!==null||(h=window.requestAnimationFrame(()=>{h=null,r.changes.renderChangeMarkers()}))},K=typeof(document==null?void 0:document.addEventListener)=="function";window.addEventListener("resize",x,{passive:!0}),window.addEventListener("resize",B,{passive:!0}),window.addEventListener("scroll",B,{passive:!0,capture:!0}),K&&document.addEventListener("scroll",B,{passive:!0,capture:!0}),e.uiResizeCleanup=()=>{window.removeEventListener("resize",x),window.removeEventListener("resize",B),window.removeEventListener("scroll",B,!0),K&&document.removeEventListener("scroll",B,!0),I!==null&&(window.cancelAnimationFrame(I),I=null),h!==null&&(window.cancelAnimationFrame(h),h=null)},T()}function S(){var I;if(e.active){console.log(`${Ke} Already active`);return}try{Sa(e),e.shadowHost=oc({});const h=e.shadowHost.getElements();if(!(h!=null&&h.overlayRoot))throw new Error("Shadow host overlayRoot not available");const T=()=>{e.changeMarkersVisible||(e.changeMarkersVisible=!0,r.persistence.setMarkerVisibility(!0))};e.changeMarkersVisible=r.persistence.readMarkerVisibility(),T(),e.annotationShortcutSettings=r.persistence.readAnnotationShortcutSettings(),e.uiSettings=r.persistence.readUiSettings();const x=document.createElement("div");x.className="we-change-markers",x.hidden=!0,h.uiRoot.append(x),e.markerLayer=x,e.canvasOverlay=xc({container:h.overlayRoot}),e.perfMonitor=Ul({container:h.overlayRoot,fpsUiIntervalMs:500,memorySampleIntervalMs:1e3}),P();const B=n.interactionProfile==="text-annotation";if(B){const K=document.createElement("div");K.setAttribute(ii,"true"),K.setAttribute("aria-hidden","true"),Object.assign(K.style,{position:"fixed",left:"0px",top:"0px",width:"1px",height:"1px",opacity:"0",pointerEvents:"none",userSelect:"none"}),h.overlayRoot.append(K),e.textAnnotationTargetElement=K,e.textAnnotationManager=fl({isOverlayElement:e.shadowHost.isOverlayElement}),e.selectionEngine=null}else e.selectionEngine=rl({isOverlayElement:e.shadowHost.isOverlayElement}),e.textAnnotationManager=null,e.textAnnotationTargetElement=null;if(e.positionTracker=Tl({onPositionUpdate:r.interaction.handlePositionUpdate}),e.annotationShortcutCleanup=null,e.transactionManager=Kl({enableKeyBindings:!0,isEventFromEditorUi:K=>{var _;return!!((_=e.shadowHost)!=null&&_.isEventFromUi(K))},onChange:r.interaction.handleTransactionChange,onApplyError:l}),r.persistence.restoreCachedChanges(),r.genieBridge.rehydratePersistedGenieState(),T(),r.persistence.persistFromTransactions(),e.handlesController=Uc({container:h.overlayRoot,canvasOverlay:e.canvasOverlay,transactionManager:e.transactionManager,positionTracker:e.positionTracker}),e.parentSelectController=zc({container:h.overlayRoot,getParentCandidate:K=>{var _;return((_=e.selectionEngine)==null?void 0:_.getParentCandidate(K))??null},onSelectParent:K=>{const _=K.getBoundingClientRect(),v=Number.isFinite(_.left)?_.left+_.width/2:void 0,H=Number.isFinite(_.top)?_.top+Math.min(18,Math.max(10,_.height/2)):void 0;r.interaction.handleSelect(K,{alt:!1,shift:!1,ctrl:!1,meta:!1},v!==void 0&&H!==void 0?{clientX:v,clientY:H}:void 0)}}),e.eventController=yl({isOverlayElement:e.shadowHost.isOverlayElement,allowNativeTextSelection:B,onHover:B?()=>{}:r.interaction.handleHover,onSelect:B?()=>{}:K=>r.interaction.handleSelect(K.element,K.modifiers,{clientX:K.clientX,clientY:K.clientY}),onDeselect:r.interaction.handleDeselect,resolveTargetForHover:B?void 0:K=>r.genieBridge.resolveSelectableElement(K),findTargetForSelect:B?void 0:(K,_,v,H)=>{var Y;const q=((Y=e.selectionEngine)==null?void 0:Y.findBestTargetFromEvent(H,v))??null;return r.genieBridge.resolveSelectableElement(q)},getSelectedElement:()=>e.selectedElement,isElementInteractionLocked:K=>r.genieBridge.isElementInteractionLocked(K)}),B&&e.textAnnotationManager){const K=e.textAnnotationManager;let _=null;const v=()=>{_!==null&&window.clearTimeout(_),_=window.setTimeout(()=>{var X,N;_=null;const H=K.commitSelection();if(!H)return;e.activeTextAnnotation=H;const q=K.setActiveHighlight(H);(X=e.canvasOverlay)==null||X.setTextHighlightRects(q?null:H.clientRects),(N=e.canvasOverlay)==null||N.render();const Y=H.boundingRect,F=Y.left+Y.width/2,A=Y.top;r.interaction.enterTextAnnotation(H,{clientX:F,clientY:A})},10)};window.addEventListener("pointerup",v,{capture:!0}),window.addEventListener("mouseup",v,{capture:!0}),e.annotationShortcutCleanup=()=>{_!==null&&(window.clearTimeout(_),_=null),window.removeEventListener("pointerup",v,{capture:!0}),window.removeEventListener("mouseup",v,{capture:!0})}}if(n.ui.propertyPanel?e.tokensService=zl():e.tokensService=null,n.ui.propertyPanel||n.ui.breadcrumbs){const K=v=>{if(!v.isConnected)return;const H=v.getBoundingClientRect(),q=Number.isFinite(H.left)?H.left+H.width/2:void 0,Y=Number.isFinite(H.top)?H.top+Math.min(18,Math.max(10,H.height/2)):void 0;r.interaction.handleSelect(v,{alt:!1,shift:!1,ctrl:!1,meta:!1},q!==void 0&&Y!==void 0?{clientX:q,clientY:Y}:void 0)},_=vc({container:h.uiRoot,shadowRoot:h.shadowRoot,breadcrumbsOptions:n.ui.breadcrumbs?{container:h.uiRoot,dock:"top",onSelect:K,getGenieBridgeAvailable:()=>r.genieBridge.isAvailable(),getElementGenieTaskState:v=>r.genieBridge.getElementTaskState(v),getVisibleElementGenieTaskStates:()=>r.genieBridge.getVisibleTaskStates(),dismissElementGenieTaskState:v=>r.genieBridge.dismissElementTaskState(v),onSendToGenie:n.genieBridge.enableContextAppend?v=>{v.isConnected&&r.genieBridge.handleSendSelectionToGenie(v)}:void 0,getElementStyleSummaryLines:v=>{var H;return((H=r.changes.getMetaForElement(v))==null?void 0:H.styleSummaryLines)??[]},onSelectParent:v=>{var q;const H=((q=e.selectionEngine)==null?void 0:q.getParentCandidate(v))??null;H&&K(H)}}:null,propertyPanelOptions:n.ui.propertyPanel?{container:h.uiRoot,transactionManager:e.transactionManager,tokensService:e.tokensService??void 0,initialPosition:e.propertyPanelPosition,initialUiMode:e.annotationEntryMode,onPositionChange:v=>{e.propertyPanelPosition=v},getUiMode:()=>e.annotationEntryMode,onUiModeChange:v=>{var H;e.annotationEntryMode=v,(H=e.positionTracker)==null||H.forceUpdate(!0),r.changes.renderChangeMarkers()},getAnnotationShortcutSettings:()=>e.annotationShortcutSettings,onAnnotationShortcutSettingsChange:v=>{e.annotationShortcutSettings=v,r.persistence.setAnnotationShortcutSettings(v)},getUiSettings:()=>e.uiSettings,interactionProfile:n.interactionProfile,onUiSettingsChange:v=>{e.uiSettings=v,r.persistence.setUiSettings(v)},onAnnotationShortcutDialogOpenChange:v=>{e.annotationShortcutDialogOpen=v},onUndo:()=>{var v;return(v=e.transactionManager)==null?void 0:v.undo()},onRedo:()=>{var v;return(v=e.transactionManager)==null?void 0:v.redo()},onCopyPrompt:r.localActions.handleCopyPrompt,onWakeGenie:async()=>{try{return await r.genieBridge.requestWake()}catch(v){const H=v instanceof Error?v.message:String(v);return H&&r.feedback.toast("warning",H),!1}},onSendPromptToGenie:async v=>{var Y;const H=i(v);if(H.length===0)throw new Error("当前没有可发送到 Genie 的编辑元素。");const q=r.genieBridge.hasReusableConversation()?r.summaries.buildAppendSaveRunPrompt():r.summaries.buildSaveRunPrompt();try{await r.genieBridge.handleSendPromptToGenieForElements(H,q)}finally{(Y=e.positionTracker)==null||Y.forceUpdate(!0)}},onSendCurrentElementPromptToGenie:async v=>{var q;if(!(v!=null&&v.isConnected))throw new Error("当前元素已失效,请重新选择后再试。");const H=r.genieBridge.hasReusableConversation()?r.summaries.buildAppendSaveRunPromptForElement(v):r.summaries.buildSaveRunPromptForElement(v);if(!H)throw new Error("当前元素没有可发送到 Genie 的编辑。");try{await r.genieBridge.handleSendPromptToGenieForElement(v,H)}finally{(q=e.positionTracker)==null||q.forceUpdate(!0)}},onAbortSendPromptToGenie:v=>{const H=a(v);if(!H)throw new Error("当前没有可中断的 Genie 编辑元素。");return r.genieBridge.interruptElementTask(H)},onRequestClose:r.interaction.clearSelection,onClearEdits:r.localActions.handleClearEdits,onClearCurrentElementEdits:async v=>{const H=await r.localActions.handleClearElementEdits(v);return H&&r.genieBridge.dismissElementTaskState(v),H},getCopyPromptBlockReason:r.summaries.getCopyPromptBlockReason,showCopyPromptAction:n.ui.showCopyPromptAction,getGenieBridgeAvailable:()=>r.genieBridge.isAvailable(),getGenieBridgeConnected:()=>r.genieBridge.isConnected(),getCanAbortSendPromptToGenie:v=>r.genieBridge.canInterruptElementTask(a(v)),getHasReusableGenieConversation:()=>r.genieBridge.hasReusableConversation(),getElementGenieTaskState:v=>r.genieBridge.getElementTaskState(v),getVisibleElementGenieTaskStates:()=>r.genieBridge.getVisibleTaskStates(),dismissElementGenieTaskState:v=>r.genieBridge.dismissElementTaskState(v),getSendPromptToGenieBlockReason:v=>i(v).length===0?"当前没有可发送到 Genie 的编辑元素":r.summaries.getSaveRunPromptBlockReason(),getSendCurrentElementPromptToGenieBlockReason:v=>v!=null&&v.isConnected?r.summaries.getSaveRunPromptForElementBlockReason(v):"当前元素已失效,请重新选择后再试。",canExportSelectionToDesignTool:(v,H)=>{const q=a(H);return gr(q)},onExportSelectionToDesignTool:async(v,H)=>{const q=a(H);if(!q)throw new Error("当前没有可导出的元素。");try{await Jl(v,q),r.feedback.toast("success",`已导出到 ${v}`)}catch(Y){const F=Y instanceof Error?Y.message:String(Y);r.feedback.toast("error",F||`导出到 ${v} 失败`)}},getExportSelectionToDesignToolBlockReason:(v,H)=>{const q=a(H);return q?r.genieBridge.isElementInteractionLocked(q)?"当前元素正在由 Genie 更新":Xl(q):"当前没有可导出的元素"},canEditText:v=>r.textSession.isEditable(v),getTextValue:v=>r.textSession.getText(v),onTextValueChange:(v,H)=>{r.textSession.commitText(v,H)},getAiNote:v=>{var H;return((H=r.changes.getMetaForElement(v))==null?void 0:H.note)??""},getAiNoteImages:v=>r.changes.getImagesForElement(v),getHoveredElement:()=>e.hoveredElement,onRememberSelectionAnchor:(v,H)=>{r.changes.rememberSelectionAnchor(v,H)},onAiNoteChange:(v,H)=>{var q;r.changes.setNoteForElement(v,H),(q=e.positionTracker)==null||q.forceUpdate(!0)},onAiNoteImagesChange:(v,H)=>{var q;r.changes.setImagesForElement(v,H),(q=e.positionTracker)==null||q.forceUpdate(!0)},onDismissSelection:r.interaction.clearSelection,getChangeMarkersVisible:()=>e.changeMarkersVisible,onChangeMarkersVisible:r.changes.setChangeMarkersVisible,getModifiedElementCount:()=>Array.from(e.editMetaByKey.values()).filter(v=>v.dirtySince!==null).length,onSelectionChromeVisibleChange:v=>{var H,q,Y,F,A,X;e.selectionChromeVisible=v,v?(X=e.positionTracker)==null||X.forceUpdate(!0):((H=e.canvasOverlay)==null||H.setHoverRect(null),(q=e.canvasOverlay)==null||q.setSelectionEffect("default"),(Y=e.canvasOverlay)==null||Y.setSelectionRect(null),(F=e.canvasOverlay)==null||F.render(),(A=e.handlesController)==null||A.setSelectionRect(null)),o==null||o()},onPromptCardVisibleChange:v=>{var H;e.promptCardVisible!==v&&(e.promptCardVisible=v,r.changes.renderChangeMarkers(),(H=e.positionTracker)==null||H.forceUpdate(!0),o==null||o())},onToggleSelectionMode:v=>{var H,q;if(v){const Y=e.selectedElement,F=!!Y&&Y.isConnected;(H=e.eventController)==null||H.setMode(F?"selecting":"hover")}else(q=e.eventController)==null||q.setMode("interaction")}}:null});e.breadcrumbs=_.breadcrumbs,e.propertyPanel=_.propertyPanel}else e.breadcrumbs=null,e.propertyPanel=null;e.propertyPanel&&(e.propertyPanel.setHistory(e.transactionManager.getUndoStack().length,e.transactionManager.getRedoStack().length),e.propertyPanel.refresh()),r.changes.renderChangeMarkers(),L(),e.active=!0,r.genieBridge.start(),(I=r.integrationWs)==null||I.start(),o==null||o(),console.log(`${Ke} Started`)}catch(h){m(),e.active=!1,o==null||o(),console.error(`${Ke} Failed to start:`,h)}}function R(){if(e.active){e.active=!1;try{r.persistence.flushPendingWrite(),m(),o==null||o(),console.log(`${Ke} Stopped`)}catch(I){console.error(`${Ke} Error during cleanup:`,I),m(),o==null||o()}}}return{start:S,stop:R}}function Zl(t){async function e(){var i,a,l;const o=t.summaries.buildCopyPrompt(),s=(a=(i=t.summaries).getCopyPromptFilteredNotice)==null?void 0:a.call(i);if(!o){t.feedback.toast("info","你好像还没有修改任何内容哦。");return}try{(l=navigator.clipboard)!=null&&l.writeText?await navigator.clipboard.writeText(o):await t.feedback.prompt({title:"请手动复制以下内容",content:s?`浏览器未提供剪贴板权限,请手动复制下面的内容。 + +提示:${s}`:"浏览器未提供剪贴板权限,请手动复制下面的内容。",label:"待复制内容",defaultValue:o,confirmText:"知道了",multiline:!0,readOnly:!0,rows:12,selectOnOpen:!0}),t.feedback.toast("success",s?`已复制到剪贴板。${s}`:"已复制到剪贴板。")}catch{await t.feedback.prompt({title:"请手动复制以下内容",content:s?`自动复制失败,请手动复制下面的内容。 + +提示:${s}`:"自动复制失败,请手动复制下面的内容。",label:"待复制内容",defaultValue:o,confirmText:"知道了",multiline:!0,readOnly:!0,rows:12,selectOnOpen:!0}),t.feedback.toast("error","自动复制失败(已提供手动复制)。")}}async function n(o={}){var i,a;const s=t.state.transactionManager;if(s&&!(!o.skipConfirm&&!await t.feedback.confirm({title:"清空全部编辑",content:"确定要清空所有待修改内容吗?已保存的修改不受影响。",confirmText:"清空",cancelText:"取消",confirmTone:"primary"}))){for(;s.canUndo();)s.undo();s.clear(),t.changes.clearAllEditMeta(),t.persistence.clearStorage(),(i=t.state.propertyPanel)==null||i.refresh(),(a=t.onStatusChange)==null||a.call(t)}}async function r(o){var P,L;if(!o||!o.isConnected)return!1;const s=t.changes.getMetaForElement(o),i=!!t.changes.normalizeNote((s==null?void 0:s.note)??"").trim(),a=!!(s!=null&&s.images.length),l=!!(s!=null&&s.changeKinds.length),m=!!(s&&s.dirtySince!==null&&!l);if(s!=null&&s.changeKinds.some(S=>S==="style"||S==="class"),!i&&!a&&!l&&!m)return t.feedback.toast("info","当前项没有可清空的待修改内容。"),!1;if(l&&s){const S=await t.interaction.revertElement(s.elementKey);if(!S.success)return await t.feedback.alert({title:"清空编辑",content:`清空失败:${S.error??"无法回退该元素修改。"}`,confirmText:"知道了"}),!1}return i&&t.changes.setNoteForElement(o,""),a&&t.changes.setImagesForElement(o,[]),s&&t.changes.markElementEditsHandled(o),(P=t.state.propertyPanel)==null||P.refresh(),t.feedback.toast("success","已清空当前编辑。"),(L=t.onStatusChange)==null||L.call(t),!0}return{handleCopyPrompt:e,handleClearEdits:n,handleClearElementEdits:r}}const Oo=4,eu="web-editor-v2-cache:",tu="web-editor-v2-markers:",nu="web-editor-v2-annotation-shortcuts:",qo="web-editor-v2-ui-settings",ru="web-editor-v2-genie-conversation:",ou="web-editor-v2-genie-tasks:";function iu(t){const{state:e,changes:n}=t,r=t.getResourceContext??(()=>null),o=t.interactionProfile??"design";let s=null,i=!1;function a(V){var p;try{const u=r(),k=(p=u==null?void 0:u.meta)==null?void 0:p[V];return typeof k=="string"?k.trim():""}catch{return""}}function l(V){const u=String(V??"").trim().replace(/\\/g,"/").match(/^src\/(components|prototypes|themes)\/([^/]+)/);return u?`${u[1]}/${u[2]}`:""}function m(){try{const p=r(),u=String((p==null?void 0:p.path)??"").trim()||a("targetPath")||l(a("currentFilePath"));if(u)return u}catch{}if(typeof window>"u")return null;const V=window.location.pathname.match(/\/(components|prototypes)\/([^/]+)/);return V?`${V[1]}/${V[2]}`:null}function P(){const V=a("storageScope")||a("currentFilePath")||a("docPath")||m();return V||(typeof window>"u"?null:String(window.location.pathname??"").trim()||null)}function L(){if(typeof window>"u")return null;const V=P()??"",p=String(V??"").trim();return p?`${eu}${p}`:null}function S(){if(typeof window>"u")return null;const V=L();if(!V)return null;try{const p=window.localStorage.getItem(V);if(!p)return null;const u=JSON.parse(p);return!u||![1,2,3,Oo].includes(Number(u.version??0))||!Array.isArray(u.entries)?null:u}catch{return null}}function R(){if(typeof window>"u")return null;const V=P()??"",p=String(V??"").trim();return p?`${tu}${p}`:null}function I(){var u;if(typeof window>"u")return!0;const V=(u=S())==null?void 0:u.showMarkers;if(typeof V=="boolean")return V;const p=R();if(!p)return!0;try{const k=window.localStorage.getItem(p);if(k==="false")return!1;if(k==="true")return!0}catch{}return!0}function h(){if(typeof window>"u")return null;const V=P()??"",p=String(V??"").trim();return p?`${nu}${p}`:null}function T(V){if(typeof window>"u")return null;try{const p=window.localStorage.getItem(V);return p?JSON.parse(p):null}catch{return null}}function x(V,p){if(!(typeof window>"u"))try{window.localStorage.setItem(V,JSON.stringify(p))}catch{}}function B(V){if(!(typeof window>"u"))try{window.localStorage.removeItem(V)}catch{}}function K(V){return`${ru}${V}`}function _(V){return`${ou}${V}`}function v(V){if(!V||typeof V!="object")return null;const p=V,u=String(p.scopeKey??"").trim(),k=String(p.sessionId??"").trim();if(!u||!k)return null;const y=Number(p.createdAt??0),D=Number(p.lastUsedAt??y),U=Math.max(0,Math.floor(Number(p.sentCount??0))),C=Number(p.expiresAt??y);return{scopeKey:u,sessionId:k,provider:typeof p.provider=="string"&&p.provider.trim()?p.provider.trim():null,projectPath:typeof p.projectPath=="string"&&p.projectPath.trim()?p.projectPath.trim():null,createdAt:Number.isFinite(y)?y:0,lastUsedAt:Number.isFinite(D)?D:Number.isFinite(y)?y:0,sentCount:Number.isFinite(U)?U:0,expiresAt:Number.isFinite(C)?C:0,invalidated:!!p.invalidated,sessionPath:typeof p.sessionPath=="string"&&p.sessionPath.trim()?p.sessionPath.trim():null,sessionUrl:typeof p.sessionUrl=="string"&&p.sessionUrl.trim()?p.sessionUrl.trim():null}}function H(V){if(!V||typeof V!="object")return null;const p=V,u=String(p.scopeKey??"").trim(),k=String(p.requestId??"").trim();if(!u||!k||!p.locator)return null;const y=p.status;if(y!=="pending"&&y!=="created"&&y!=="completed"&&y!=="error")return null;const D=Number(p.startedAt??0),U=Number(p.updatedAt??D),C=Number(p.lastEventAt??U);return{scopeKey:u,elementKey:String(p.elementKey??"").trim()||Oe(p.locator),locator:p.locator,label:String(p.label??"").trim(),requestId:k,sessionId:typeof p.sessionId=="string"&&p.sessionId.trim()?p.sessionId.trim():null,sessionPath:typeof p.sessionPath=="string"&&p.sessionPath.trim()?p.sessionPath.trim():null,sessionUrl:typeof p.sessionUrl=="string"&&p.sessionUrl.trim()?p.sessionUrl.trim():null,provider:typeof p.provider=="string"&&p.provider.trim()?p.provider.trim():null,status:y,message:String(p.message??"").trim(),startedAt:Number.isFinite(D)?D:0,updatedAt:Number.isFinite(U)?U:Number.isFinite(D)?D:0,dismissed:!!p.dismissed,recoveryPending:!!p.recoveryPending,lastEventAt:Number.isFinite(C)?C:Number.isFinite(U)?U:0,errorCode:typeof p.errorCode=="string"&&p.errorCode.trim()?p.errorCode.trim():null}}function q(V){if(typeof window>"u")return;const p=R();if(p)try{window.localStorage.setItem(p,V?"true":"false")}catch{}}function Y(){if(typeof window>"u")return{...zt};const V=h();if(!V)return{...zt};try{const p=window.localStorage.getItem(V);return p?Mr(JSON.parse(p)):{...zt}}catch{return{...zt}}}function F(V){if(typeof window>"u")return;const p=h();if(p)try{window.localStorage.setItem(p,JSON.stringify(Mr(V)))}catch{}}function A(){if(typeof window>"u")return{...wt};try{const V=window.localStorage.getItem(qo);return V?Lt(JSON.parse(V)):{...wt}}catch{return{...wt}}}function X(V){if(!(typeof window>"u"))try{window.localStorage.setItem(qo,JSON.stringify(Lt(V)))}catch{}}function N(V){const p=String(V??"").trim();return p?v(T(K(p))):null}function b(V,p){const u=String(V??"").trim();if(!u)return;const k=v(p);if(!k){B(K(u));return}x(K(u),k)}function E(V){const p=String(V??"").trim();p&&B(K(p))}function O(V){const p=String(V??"").trim();if(!p)return[];const u=T(_(p));return Array.isArray(u)?u.map(k=>H(k)).filter(k=>k?!k.dismissed&&(k.status==="pending"||k.status==="created")&&typeof k.sessionId=="string"&&k.sessionId.trim().length>0&&typeof k.provider=="string"&&k.provider.trim().length>0:!1):[]}function d(V,p){const u=String(V??"").trim();if(!u)return;const k=Array.isArray(p)?p.map(y=>H(y)).filter(y=>y?!y.dismissed&&(y.status==="pending"||y.status==="created")&&typeof y.sessionId=="string"&&y.sessionId.trim().length>0&&typeof y.provider=="string"&&y.provider.trim().length>0:!1):[];if(k.length===0){B(_(u));return}x(_(u),k)}function M(V){const p=String(V??"").trim();p&&d(p,O(p))}function j(V){if(typeof window>"u")return;const p=L();if(p)try{if(!V||V.length===0){window.localStorage.removeItem(p);return}const u={version:Oo,path:P()??window.location.pathname??"",updatedAt:Date.now(),showMarkers:e.changeMarkersVisible,entries:V};window.localStorage.setItem(p,JSON.stringify(u))}catch{}}function ee(){var U;const V=e.transactionManager;if(!V)return Array.from(e.editMetaByKey.values()).filter(C=>C.note||C.anchor).map(C=>({elementKey:C.elementKey,label:C.label,locator:C.locator,note:C.note||void 0,marker:C.anchor?{...C.anchor,dirtySince:C.dirtySince}:null}));const u=kn(e,V.getUndoStack()).slice().map((C,g)=>({tx:C,index:g}));u.sort((C,g)=>{const G=Number(C.tx.timestamp??0),se=Number(g.tx.timestamp??0);return G!==se?G-se:C.index-g.index});const k=new Map;for(const{tx:C}of u){if(C.type!=="style"&&C.type!=="text")continue;const g=C.elementKey?String(C.elementKey):Oe(C.targetLocator),G=k.get(g),se=((U=C.after)==null?void 0:U.locator)??C.targetLocator,J=G??{locator:se,styleBefore:{},styleAfter:{},textBefore:void 0,textAfter:void 0};if(J.locator=se,C.type==="style"){const W=C.before.styles??{},Z=C.after.styles??{},re=new Set([...Object.keys(W),...Object.keys(Z)]);for(const fe of re){const ue=String(fe??"").trim();ue&&(ue in J.styleBefore||(J.styleBefore[ue]=String(W[ue]??"").trim()),J.styleAfter[ue]=String(Z[ue]??"").trim())}}C.type==="text"&&(J.textBefore===void 0&&(J.textBefore=String(C.before.text??"")),J.textAfter=String(C.after.text??"")),G||k.set(g,J)}const y=[],D=new Set;for(const C of k.values()){const g={locator:C.locator};let G;const se=we(C.locator);se?G=Ne(se,C.locator.shadowHostChain):G=Oe(C.locator);const J={},W={},Z=new Set([...Object.keys(C.styleBefore),...Object.keys(C.styleAfter)]);for(const fe of Z){const ue=String(C.styleBefore[fe]??"").trim(),Ee=String(C.styleAfter[fe]??"").trim();ue!==Ee&&(J[fe]=ue,W[fe]=Ee)}(Object.keys(J).length>0||Object.keys(W).length>0)&&(g.styleChanges={before:J,after:W}),C.textBefore!==void 0&&C.textAfter!==void 0&&C.textBefore!==C.textAfter&&(g.textChange={before:C.textBefore,after:C.textAfter});const re=G?e.editMetaByKey.get(G):null;re!=null&&re.elementKey&&(g.elementKey=re.elementKey),re!=null&&re.label&&(g.label=re.label),re!=null&&re.note&&(g.note=re.note),re!=null&&re.anchor&&(g.marker={...re.anchor,dirtySince:re.dirtySince}),!(!g.textChange&&!g.styleChanges&&!g.note)&&(y.push(g),G&&D.add(G))}for(const C of e.editMetaByKey.values())D.has(C.elementKey)||C.note&&y.push({elementKey:C.elementKey,label:C.label,locator:C.locator,note:C.note||void 0,marker:C.anchor?{...C.anchor,dirtySince:C.dirtySince}:null});return y}function oe(){i||j(ee())}function ie(){s!==null&&(window.clearTimeout(s),s=null),oe()}function me(){i||(s!==null&&window.clearTimeout(s),s=window.setTimeout(()=>{s=null,oe()},120))}function ce(V){const p=e.transactionManager;if(p)for(const u of V){const k=String(u.elementKey??"").trim();if(o==="text-annotation"&&!k&&!!u.note&&!!u.marker&&!u.textChange&&!u.styleChanges)continue;const D=we(u.locator);if(!D||!D.isConnected)continue;const U=k||Ne(D,u.locator.shadowHostChain),C=String(u.label??"").trim()||bt(D,u.locator.shadowHostChain),g=n.getOrCreateEditMeta(U,u.locator,C);if(g.locator=u.locator,g.label=C,g.note=n.normalizeNote(u.note??g.note),g.anchor=u.marker?hr(u.marker)??g.anchor:g.anchor,u.marker&&Number.isFinite(Number(u.marker.dirtySince))&&(g.dirtySince=Number(u.marker.dirtySince)),u.styleChanges){const G=u.styleChanges.after??{},se=u.styleChanges.before??{};for(const J of Object.keys(G)){const W=String(G[J]??""),Z=String(se[J]??""),re=D.style;re&&(W.trim()?re.setProperty(J,W.trim()):re.removeProperty(J)),p.recordStyle(u.locator,J,Z,W,{merge:!1})}}if(u.textChange){const G=String(u.textChange.before??""),se=String(u.textChange.after??"");G!==se&&D instanceof HTMLElement&&(D.textContent=se,p.recordText(D,G,se))}}}function pe(){var p;if(typeof window>"u")return;const V=S();if(!(!V||V.entries.length===0)){i=!0;try{typeof V.showMarkers=="boolean"?(e.changeMarkersVisible=V.showMarkers,q(V.showMarkers)):e.changeMarkersVisible=I(),ce(V.entries)}finally{i=!1}(p=e.propertyPanel)==null||p.refresh(),n.syncEditMetaWithTransactions(),oe()}}function ge(V){var k;const p=ee();if(p.length===0){j([]);return}const u=[];for(const y of p){const D={locator:y.locator};y.elementKey&&(D.elementKey=y.elementKey),y.label&&(D.label=y.label),y.note&&(D.note=y.note),y.marker&&(D.marker=y.marker),V==="text"?y.styleChanges&&(D.styleChanges=y.styleChanges):y.textChange&&(D.textChange=y.textChange),!(!D.textChange&&!D.styleChanges)&&u.push(D)}i=!0;try{(k=e.transactionManager)==null||k.clear(),ce(u)}finally{i=!1}j(u)}function ae(){j([])}return{readMarkerVisibility:I,setMarkerVisibility:q,readAnnotationShortcutSettings:Y,setAnnotationShortcutSettings:F,readUiSettings:A,setUiSettings:X,readGenieConversationState:N,writeGenieConversationState:b,clearGenieConversationState:E,readGenieTaskStates:O,writeGenieTaskStates:d,pruneExpiredGenieTaskStates:M,scheduleWrite:me,persistFromTransactions:oe,flushPendingWrite:ie,restoreCachedChanges:pe,clearCachedChanges:ge,clearStorage:ae}}function pn(t){return String(t??"").replace(/\r\n/g,` +`).trim()}function Ft(t){return String(t??"").replace(/\s+/g," ").trim()}function St(t){return String(t??"").trim()}function jn(t){const e=[],n=new Set;for(const r of t){const o=St(r);!o||n.has(o)||(n.add(o),e.push(o))}return e}function Mt(t,e){var r;const n=(r=t==null?void 0:t.meta)==null?void 0:r[e];return typeof n=="string"?n.trim():""}function su(t){const n=St(t).replace(/\\/g,"/").match(/^src\/(components|prototypes|themes)\/([^/]+)/);return n?`${n[1]}/${n[2]}`:""}function yn(t,e){const n=e(t.parentLocator)||"unknown-parent",r=t.anchorLocator?e(t.anchorLocator):"",o=t.anchorLocator&&r?`, anchor: ${r} (${t.anchorPosition??"after"})`:"";return`${n} @index ${t.insertIndex}${o}`}function dr(t){if(!t)return null;try{return we(t)}catch{return null}}function au(t,e=""){var i,a,l,m;const n=dr(t);if(n)return n.tagName.toLowerCase();const r=(i=St(t.fingerprint).split("|")[0])==null?void 0:i.trim();if(r)return r.toLowerCase();const o=(l=(a=(t.selectors??[]).map(P=>St(P)).find(Boolean))==null?void 0:a.match(/^[a-zA-Z][\w-]*/))==null?void 0:l[0];if(o)return o.toLowerCase();const s=(m=St(e).match(/^[a-zA-Z][\w-]*/))==null?void 0:m[0];return s?s.toLowerCase():""}function cu(t){return t?t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement?Ft(t.value):Ft(t.textContent):""}function Go(t){return St(t)||"(unset)"}function Vo(t){return Ft(t)||"(empty)"}function zo(t){return(t??[]).map(n=>St(n)).filter(Boolean).join(" ")||"(empty)"}function Wo(t){if(!(t!=null&&t.file))return"";const e=[t.file,t.line,t.column].filter(r=>r!=null&&r!=="").join(":"),n=t.componentName?` (${t.componentName})`:"";return`${e}${n}`}function lu(t,e){return{workspacePaths:jn([e??"",...(t==null?void 0:t.workspacePaths)??[]]),relatedFiles:jn((t==null?void 0:t.relatedFiles)??[]),extraContext:jn((t==null?void 0:t.extraContext)??[])}}function Jn(t,e,n){if(n.length!==0){t.push(`- ${e}:`);for(const r of n)t.push(` - ${r}`)}}function uu(t){const{state:e,buildCopyPromptOverride:n}=t,r=lu(t.promptContext,t.projectPath),o=t.getResourceContext??(()=>null);function s(){if(typeof window>"u")return"";try{const p=new URL(window.location.href);p.searchParams.delete("editor");const u=p.searchParams.toString();return p.search=u?`?${u}`:"",p.toString()}catch{return window.location.href.replace(/([?&])editor=webEditorV2(&)?/,(p,u,k)=>u==="?"&&k?"?":"").replace(/\?$/,"")}}function i(){var p;return((p=e.transactionManager)==null?void 0:p.getUndoStack())??[]}function a(){return kn(e,i())}function l(p){if(!p||!p.isConnected)return"";const u=Xt(e,p);if(u)return u.elementKey;const k=Se(p);return Ne(p,k.shadowHostChain)}function m(){const p=S(),u=St(p==null?void 0:p.path)||Mt(p,"targetPath")||su(Mt(p,"currentFilePath"));if(u)return u;if(typeof window>"u")return null;const k=window.location.pathname.match(/\/(components|prototypes)\/([^/]+)/);return k?`${k[1]}/${k[2]}`:null}function P(){const p=S(),u=Mt(p,"currentFilePath")||Mt(p,"docPath");if(u)return u;const k=m();return k?`src/${k}/index.tsx`:""}function L(){const p=S(),u=Mt(p,"prototypeFilePath");if(u)return u;const k=m();return!k||k.startsWith("themes/")?"":`src/${k}/index.tsx`}function S(){try{return o()??null}catch{return null}}function R(p){var k;if(!p)return"";const u=(p.selectors??[]).map(y=>String(y??"").trim()).filter(Boolean);return u.length>0?u.join(" | "):(k=p.path)!=null&&k.length?p.path.join(">"):""}function I(p){const u=dr(p);if(u)return bt(u,p.shadowHostChain);const k=R(p);return k||"element"}function h(p){var D;const u=p.map((U,C)=>({tx:U,index:C}));u.sort((U,C)=>{const g=Number(U.tx.timestamp??0),G=Number(C.tx.timestamp??0);return g!==G?g-G:U.index-C.index});const k=new Map;for(const{tx:U}of u){if(U.type!=="move"||!U.moveData)continue;const C=U.elementKey?String(U.elementKey):Oe(U.targetLocator),g=((D=U.after)==null?void 0:D.locator)??U.targetLocator,G=k.get(C);G?(G.locator=g,G.to=U.moveData.to,G.updatedAt=Number(U.timestamp??0)):k.set(C,{locator:g,from:U.moveData.from,to:U.moveData.to,updatedAt:Number(U.timestamp??0)})}const y=Array.from(k.entries()).map(([U,C])=>({elementKey:U,label:I(C.locator),locator:C.locator,selectorPath:R(C.locator),from:C.from,to:C.to,updatedAt:C.updatedAt}));return y.sort((U,C)=>C.updatedAt-U.updatedAt||U.label.localeCompare(C.label)),y}function T(p){return h(p).map(({elementKey:u,...k})=>k)}function x(){if(!e.transactionManager)return[];const u=tt(a()),k=[],y=new Set;for(const D of u){const U=D.netEffect.textChange;if(!U)continue;const C=Ft(U.before),g=Ft(U.after);if(!C||!g||C===g)continue;const G=`${C}=>${g}`;y.has(G)||(y.add(G),k.push({before:C,after:g}))}return k}function B(){var k,y;const p=tt(a()),u=[];for(const D of p){const U=D.netEffect.styleChanges;if(!U)continue;const C=((y=(k=D.netEffect.locator.selectors)==null?void 0:k.find(G=>String(G??"").trim()))==null?void 0:y.trim())??"";if(!C)continue;const g=Object.entries(U.after??{}).filter(([,G])=>String(G??"").trim()!=="").map(([G,se])=>` ${G}: ${String(se)};`);g.length!==0&&u.push(`${C} { +${g.join(` +`)} +}`)}return u.join(` + +`)}function K(){return{cssText:B()}}function _(p){return Array.from(e.editMetaByKey.values()).map(u=>({elementKey:String(u.elementKey),label:u.label,locator:u.locator,note:pn(u.note),dirtySince:Number(u.dirtySince??0)})).filter(u=>!!u.note&&!p.has(u.elementKey)).sort((u,k)=>k.dirtySince-u.dirtySince||u.label.localeCompare(k.label))}function v(p){return Array.from(e.editMetaByKey.values()).map(u=>({elementKey:String(u.elementKey),label:u.label,locator:u.locator,note:pn(u.note),imageCount:Array.isArray(u.images)?u.images.length:0,dirtySince:Number(u.dirtySince??0)})).filter(u=>!p.has(u.elementKey)&&(!!u.note||u.imageCount>0)).sort((u,k)=>k.dirtySince-u.dirtySince||u.label.localeCompare(k.label))}function H(p,u={}){const k=dr(p),y=cu(k)||q(u.fallbackText);return{tagName:au(p,u.fallbackLabel??""),currentText:y}}function q(p){return Ft(p)}function Y(p,u){const k=u.includePageUrl?s():"",y=u.includeTargetPath?m()??"":"";p.push("任务上下文:"),k&&p.push(`- 页面地址: ${k}`),y&&p.push(`- 页面路径: ${y}`),u.currentFilePath&&p.push(`- 当前实现文件: ${u.currentFilePath}`),u.prototypeFilePath&&p.push(`- 对应原型文件: ${u.prototypeFilePath}`),Jn(p,"工作区路径",r.workspacePaths),Jn(p,"补充相关文件",r.relatedFiles),Jn(p,"补充上下文",r.extraContext)}function F(p){p.push("全局约束:"),p.push("- 只把“执行修改”字段当作真实改动指令。"),p.push("- “当前元素文本”“元素定位”“可能相关文件”只用于帮助定位,不表示要把代码改成这些内容。"),p.push("- 未在“执行修改”中明确写出的文本内容、标签类型、层级结构和其他样式,不要主动改动。")}function A(p,u){const k=H(u.locator,{fallbackLabel:u.fallbackLabel,fallbackText:u.fallbackText}),y=R(u.locator);p.push(`- 修改项 ${u.index}`),k.tagName&&p.push(` - 当前元素标签: ${k.tagName}`),k.currentText&&p.push(` - 当前元素文本: ${k.currentText}`),y&&p.push(` - 元素定位: ${y}`),u.debugFileHint&&p.push(` - 可能相关文件: ${u.debugFileHint}`);for(const D of u.actions)p.push(` - 执行修改: ${D}`);u.note&&p.push(` - 补充要求: ${u.note}`)}function X(p,u){const{annotation:k}=u;if(p.push(`- 标注项 ${u.index}`),p.push(` - 标注文本: 「${k.selectedText}」`),k.contextBefore&&p.push(` - 文本前文: "...${k.contextBefore}"`),k.contextAfter&&p.push(` - 文本后文: "${k.contextAfter}..."`),k.tagPath.length>0&&p.push(` - 标签路径: ${k.tagPath.join(" > ")}`),k.segments.length>1){p.push(" - 跨标签片段:");for(const y of k.segments)p.push(` - [${y.tags.join(" > ")}]: "${y.text}"`)}u.note&&p.push(` - 补充要求: ${u.note}`)}function N(p){return p.startsWith("text-ann::")}function b(p){var u,k;return((u=e.activeTextAnnotation)==null?void 0:u.id)===p?e.activeTextAnnotation:((k=e.textAnnotationManager)==null?void 0:k.getAnnotations().get(p))??null}function E(p){const u=[],k=p.netEffect.textChange;k&&u.push(`文本内容 "${Vo(k.before)}" -> "${Vo(k.after)}"`);const y=p.netEffect.classChanges;y&&u.push(`class "${zo(y.before)}" -> "${zo(y.after)}"`);const D=p.netEffect.styleChanges;if(D){const U=new Set([...Object.keys(D.before??{}),...Object.keys(D.after??{})]);for(const C of Array.from(U).sort()){const g=String((D.before??{})[C]??"").trim(),G=String((D.after??{})[C]??"").trim();g!==G&&u.push(`样式 ${C}: "${Go(g)}" -> "${Go(G)}"`)}}return u}function O(){var se,J,W;const p=a(),u=tt(p),k=T(p),y=_(new Set(u.map(Z=>String(Z.elementKey))));if(u.length===0&&y.length===0&&k.length===0)return"";const D=P(),U=L(),C=D.toLowerCase().endsWith(".md")||Mt(S(),"docType")!=="",g=[];C?g.push("请根据以下 Markdown 文档预览上的标注,在代码库中完成对应更新。"):g.push("请根据以下所见即所得修改,在代码中实现同样的改动。"),g.push(""),Y(g,{includePageUrl:!0,includeTargetPath:!0,currentFilePath:D,prototypeFilePath:U}),g.push(""),C?(g.push("全局约束:"),g.push("- 当前操作对象是 Markdown 文档预览,不是页面源码 DOM。"),g.push(`- 所有标注都要优先落实到文档文件 ${D||"(unknown)"}。`),U&&g.push(`- 如果标注暴露出文案、结构或交互与原型不一致,也要同步更新 ${U}。`),g.push("- 未明确指出的内容不要擅自改写。"),g.push(""),g.push("标注列表:")):(F(g),g.push(""),g.push("修改列表:"));let G=1;for(const Z of u){const re=pn(((se=e.editMetaByKey.get(Z.elementKey))==null?void 0:se.note)??""),fe=E(Z);fe.length===0&&re&&fe.push("根据补充要求调整当前元素"),A(g,{index:G,locator:Z.netEffect.locator,fallbackLabel:Z.fullLabel||Z.label,fallbackText:((J=Z.netEffect.textChange)==null?void 0:J.after)??((W=Z.netEffect.textChange)==null?void 0:W.before)??"",debugFileHint:Wo(Z.debugSource),actions:fe,note:re}),G+=1}for(const Z of y){const re=N(Z.elementKey)?b(Z.elementKey):null;re?X(g,{index:G,annotation:re,note:Z.note}):A(g,{index:G,locator:Z.locator,fallbackLabel:Z.label,actions:["根据补充要求调整当前元素"],note:Z.note}),G+=1}if(k.length>0){g.push(""),g.push("结构移动列表:");for(const Z of k)A(g,{index:G,locator:Z.locator,fallbackLabel:Z.label,actions:[`结构位置: ${yn(Z.from,R)} -> ${yn(Z.to,R)}`]}),G+=1}return g.push(""),g.push("输出要求:"),C?(g.push("- 优先说明修改了哪些文档文件;若同步了原型,也一并列出。"),g.push("- 给出关键改动摘要,以及仍需人工验证的差异点。")):(g.push("- 给出需要修改的文件列表与具体代码改动。"),g.push("- 如果无法定位文件,请说明缺失了哪些关键信息。")),g.join(` +`)}function d(){return Array.from(e.editMetaByKey.values()).filter(p=>p.dirtySince!==null).map(p=>({elementKey:p.elementKey,locator:p.locator,label:p.label,note:p.note,imageCount:p.images.length,changeKinds:p.changeKinds.slice()}))}function M(){const p=O();return p?{resource:S(),modifiedElements:d(),textChanges:x(),styleChanges:K(),taskContext:{pageUrl:s(),targetPath:m()??"",currentFilePath:P(),prototypeFilePath:L()},defaultPrompt:p}:null}function j(){const p=O();if(!p)return"";if(n)try{const u=M();if(u)return n(u)}catch(u){console.warn("[GenieEditor] Host buildCopyPrompt failed, falling back to default:",u)}return p}function ee(){const p=a(),u=tt(p),k=new Set(u.map(U=>String(U.elementKey))),y=_(k);return u.some(U=>{const C=e.editMetaByKey.get(U.elementKey);return((C==null?void 0:C.images.length)??0)>0})||y.some(U=>{var C;return(((C=e.editMetaByKey.get(U.elementKey))==null?void 0:C.images.length)??0)>0})?"不支持标注图片,已过滤。":void 0}function oe(p){var G,se;const{summaries:u,annotationOnlyMetas:k,moveSummaries:y}=p,D=p.mode??"initial";if(u.length===0&&k.length===0&&y.length===0)return"";const U=P(),C=[];D==="append"?(C.push("请在同一个已存在的 Genie 会话中继续执行以下代码修改任务。"),C.push("续写要求:"),C.push("- 这是一次追加消息,前文上下文、已完成修改和已有计划都已经存在。"),C.push("- 只基于本次新增的节点信息和补充要求继续执行,不要重复总结整个页面或重复前文计划。"),C.push("- 如果本次要求与前文不一致,以本次消息为准,并直接调整代码。"),C.push("- 优先复用你刚刚已经定位到的文件与实现上下文,直接继续修改。"),C.push("- 不需要重复输出完整修改说明,除非真的被阻塞。"),C.push("- 如需回复,只用 1-2 句话说明这次追加改动涉及的文件和核心变化。")):(C.push("请直接执行以下代码修改任务。"),C.push("执行要求:"),C.push("- 这是直接执行任务,通常不可与用户交互。"),C.push("- 在保证准确的前提下,不需要说明你计划,尽快完成修改。"),C.push("- 完成后回复完成即可,不需要说明修改的内容。"),C.push("- 只有真正阻塞时,才简短说明缺失信息。")),C.push(""),Y(C,{includePageUrl:!0,includeTargetPath:!0,currentFilePath:U,prototypeFilePath:L()}),C.push(""),F(C),C.push(""),C.push("修改列表:");let g=1;for(const J of u){const W=e.editMetaByKey.get(J.elementKey),Z=pn((W==null?void 0:W.note)??""),re=E(J);re.length===0&&Z&&re.push("根据补充要求调整当前元素"),((W==null?void 0:W.images.length)??0)>0&&re.push("请结合附带图片调整当前元素"),A(C,{index:g,locator:J.netEffect.locator,fallbackLabel:J.fullLabel||J.label,fallbackText:((G=J.netEffect.textChange)==null?void 0:G.after)??((se=J.netEffect.textChange)==null?void 0:se.before)??"",debugFileHint:Wo(J.debugSource),actions:re,note:Z}),g+=1}for(const J of k){const W=N(J.elementKey)?b(J.elementKey):null;if(W)X(C,{index:g,annotation:W,note:J.note});else{const Z=J.imageCount>0?["请结合附带图片调整当前元素"]:["根据补充要求调整当前元素"];A(C,{index:g,locator:J.locator,fallbackLabel:J.label,actions:Z,note:J.note})}g+=1}if(y.length>0){C.push(""),C.push("结构移动列表:");for(const J of y)A(C,{index:g,locator:J.locator,fallbackLabel:J.label,actions:[`结构位置: ${yn(J.from,R)} -> ${yn(J.to,R)}`]}),g+=1}return C.join(` +`)}function ie(){const p=a(),u=tt(p),k=T(p),y=v(new Set(u.map(D=>String(D.elementKey))));return oe({mode:"initial",summaries:u,annotationOnlyMetas:y,moveSummaries:k})}function me(){const p=a(),u=tt(p),k=T(p),y=v(new Set(u.map(D=>String(D.elementKey))));return oe({mode:"append",summaries:u,annotationOnlyMetas:y,moveSummaries:k})}function ce(p){const u=l(p);if(!u)return"";const k=a(),y=tt(k).filter(C=>String(C.elementKey)===u),D=v(new Set(y.map(C=>String(C.elementKey)))).filter(C=>C.elementKey===u),U=h(k).filter(C=>C.elementKey===u).map(({elementKey:C,...g})=>g);return oe({mode:"initial",summaries:y,annotationOnlyMetas:D,moveSummaries:U})}function pe(p){const u=l(p);if(!u)return"";const k=a(),y=tt(k).filter(C=>String(C.elementKey)===u),D=v(new Set(y.map(C=>String(C.elementKey)))).filter(C=>C.elementKey===u),U=h(k).filter(C=>C.elementKey===u).map(({elementKey:C,...g})=>g);return oe({mode:"append",summaries:y,annotationOnlyMetas:D,moveSummaries:U})}function ge(){const p=a();for(const u of p){if(u.type==="structure")return"暂不支持应用结构操作";if(u.type!=="style"&&u.type!=="text"&&u.type!=="class"&&u.type!=="move")return`暂不支持应用 "${u.type}" 事务`}if(!j())return"没有可生成 prompt 的更改"}function ae(){const p=a();for(const u of p){if(u.type==="structure")return"暂不支持执行结构操作";if(u.type!=="style"&&u.type!=="text"&&u.type!=="class"&&u.type!=="move")return`暂不支持执行 "${u.type}" 事务`}if(!ie())return"当前没有可发送到 Genie 的编辑元素"}function V(p){if(!p||!p.isConnected)return"当前元素已失效,请重新选择后再试。";const u=l(p);if(!u)return"当前元素已失效,请重新选择后再试。";for(const k of a())if(String(k.elementKey??Oe(k.targetLocator)).trim()===u){if(k.type==="structure")return"暂不支持执行当前元素的结构操作";if(k.type!=="style"&&k.type!=="text"&&k.type!=="class"&&k.type!=="move")return`暂不支持执行当前元素的 "${k.type}" 事务`}if(!ce(p))return"当前元素没有可发送到 Genie 的编辑"}return{resolveTargetPath:m,resolveCurrentFilePath:P,resolvePrototypeFilePath:L,resolveResourceContext:S,formatSelectorPath:R,formatElementLabelFromLocator:I,collectTextChanges:x,collectStyleCss:B,collectStyleChanges:K,collectMoveSummaries:T,buildSaveRunPrompt:ie,buildAppendSaveRunPrompt:me,buildSaveRunPromptForElement:ce,buildAppendSaveRunPromptForElement:pe,buildCopyPrompt:j,getCopyPromptContext:M,getCopyPromptFilteredNotice:ee,getCopyPromptBlockReason:ge,getSaveRunPromptBlockReason:ae,getSaveRunPromptForElementBlockReason:V}}function bn(t){return String(t??"").replace(/\r\n?/g,` +`).replace(/\n+/g," ").replace(/\s+/g," ").trim()}function Qn(t){return!(!(t instanceof HTMLElement)||t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement||t.childElementCount>0)}function du(t){const{state:e}=t;function n(r,o){var l,m,P,L;if(!Qn(r)||!r.isConnected)return!1;const s=r.textContent??"",i=bn(s),a=bn(o);return e.selectedElement!==r&&t.ensureSelected(r,Cn),i===a?!1:(r.textContent=a,(l=e.transactionManager)==null||l.recordText(r,s,a),(m=e.positionTracker)==null||m.forceUpdate(!0),e.selectedElement===r&&((P=e.breadcrumbs)==null||P.setTarget(r),(L=e.propertyPanel)==null||L.refresh()),console.log(`${t.logPrefix} Text edit committed`),!0)}return{isEditable:Qn,normalizeText:bn,getText(r){return Qn(r)?bn(r.textContent??""):""},commitText:n}}function pu(t={}){const e=ba(t),n=wa(),r=new Set,o=uu({state:n,promptContext:e.promptContext,projectPath:e.genieBridge.projectPath,getResourceContext:e.host.getResourceContext,buildCopyPromptOverride:e.host.buildCopyPrompt}),s=ts({getUiRoot:()=>{var u,k;return((k=(u=n.shadowHost)==null?void 0:u.getElements())==null?void 0:k.uiRoot)??null}});let i=null,a=null,l=null,m=!1;function P(){const u=n.selectedElement;if(!u||!u.isConnected)return null;const k=Se(u),y=Ne(u,k.shadowHostChain),D=u.id?`${u.tagName.toLowerCase()}#${u.id}`:u.tagName.toLowerCase();return{elementKey:y,locator:k,label:D,fullLabel:bt(u,k.shadowHostChain),tagName:u.tagName.toLowerCase(),updatedAt:Date.now()}}function L(){const u=n.transactionManager;return{undoCount:(u==null?void 0:u.getUndoStack().length)??0,redoCount:(u==null?void 0:u.getRedoStack().length)??0}}function S(){return Array.from(n.editMetaByKey.values()).filter(u=>u.dirtySince!==null).sort((u,k)=>Number(u.dirtySince??0)-Number(k.dirtySince??0)).map(u=>({elementKey:u.elementKey,locator:u.locator,label:u.label,note:u.note,imageCount:u.images.length,changeKinds:u.changeKinds.slice()}))}function R(){return o.collectTextChanges()}function I(){return o.collectStyleChanges()}function h(){var k,y;let u=null;try{u=((y=(k=e.host).getResourceContext)==null?void 0:y.call(k))??null}catch{u=null}return{resource:u,selectedElement:P(),modifiedElements:S(),textChanges:R(),styleChanges:I()}}function T(){var C;const u=P(),k=(l==null?void 0:l.getCurrentConversationState())??null,y=(l==null?void 0:l.getElementTaskState(n.selectedElement))??null,D=(l==null?void 0:l.getVisibleTaskStates())??[],U=((C=l==null?void 0:l.getDebugInfo)==null?void 0:C.call(l))??null;return{available:(l==null?void 0:l.isAvailable())??!1,connected:(l==null?void 0:l.isConnected())??!1,bridgeConfig:U,selectedElementKey:(u==null?void 0:u.elementKey)??null,currentConversation:k?{scopeKey:k.scopeKey,sessionId:k.sessionId,provider:k.provider,invalidated:k.invalidated,sentCount:k.sentCount,expiresAt:k.expiresAt,sessionUrl:k.sessionUrl}:null,hasReusableConversation:(l==null?void 0:l.hasReusableConversation())??!1,currentElementTask:y?{elementKey:y.elementKey,status:y.status,sessionId:y.sessionId,provider:y.provider,message:y.message,updatedAt:y.updatedAt}:null,visibleTasks:D.map(g=>({elementKey:g.elementKey,status:g.status,sessionId:g.sessionId,provider:g.provider,message:g.message,updatedAt:g.updatedAt}))}}function x(){const u=P(),k=R(),y=I(),D=S().length,{undoCount:U,redoCount:C}=L();return{active:n.active,hasSelection:u!==null,selectedElement:u,undoCount:U,redoCount:C,modifiedCount:D,hasTextChanges:k.length>0,hasStyleChanges:!!y.cssText,hasModifiedElements:D>0}}function B(u){return u?{provider:typeof u.provider=="string"&&u.provider.trim()?u.provider.trim():null,sessionId:typeof u.sessionId=="string"&&u.sessionId.trim()?u.sessionId.trim():null,requestId:typeof u.requestId=="string"&&u.requestId.trim()?u.requestId.trim():null}:null}function K(u){return u==="pending"||u==="created"?"editing":u==="completed"?"completed":u==="error"?"error":"idle"}function _(u){var D,U,C,g,G,se;const k=P();if((k==null?void 0:k.elementKey)===u&&((D=n.selectedElement)!=null&&D.isConnected))return n.selectedElement;const y=((U=n.editMetaByKey.get(u))==null?void 0:U.locator)??((g=(C=l==null?void 0:l.getTaskStateByElementKey)==null?void 0:C.call(l,u))==null?void 0:g.locator)??((G=n.externalEditingTaskByElementKey.get(u))==null?void 0:G.locator)??((se=n.genieTaskByElementKey.get(u))==null?void 0:se.locator)??null;if(!y)return null;try{const J=we(y);return J!=null&&J.isConnected?J:null}catch{return null}}function v(){const u=new Set([...n.editMetaByKey.keys(),...n.processedEditTimestampsByKey.keys(),...n.genieTaskByElementKey.keys(),...n.externalEditingTaskByElementKey.keys()]);return Array.from(u).map(y=>{var ue,Ee,Te;const D=n.editMetaByKey.get(y)??null,U=((ue=l==null?void 0:l.getTaskStateByElementKey)==null?void 0:ue.call(l,y))??n.externalEditingTaskByElementKey.get(y)??n.genieTaskByElementKey.get(y)??null,C=n.processedEditTimestampsByKey.get(y),g=Number.isFinite(Number(C))?Number(C):null,G=!!String((D==null?void 0:D.note)??"").trim(),se=!!(D!=null&&D.images.length),J=Number.isFinite(Number(D==null?void 0:D.dirtySince))?Number(D==null?void 0:D.dirtySince):null,W=J!==null&&(g===null||J>g),Z=G||se||W?"dirty":g!==null?"handled":"clean",re=(D==null?void 0:D.label)??(U==null?void 0:U.label)??(((Ee=P())==null?void 0:Ee.elementKey)===y?(Te=P())==null?void 0:Te.fullLabel:null)??y,fe=K(U==null?void 0:U.status);return{elementKey:y,label:re,changeState:Z,taskState:fe,hasNote:G,hasImages:se,changeKinds:(D==null?void 0:D.changeKinds.slice())??[],dirtySince:J,lastHandledAt:g}}).sort((y,D)=>{const U=Math.max(Number(y.dirtySince??0),Number(y.lastHandledAt??0)),C=Math.max(Number(D.dirtySince??0),Number(D.lastHandledAt??0));return U!==C?C-U:y.label.localeCompare(D.label)})}function H(){const u=h(),k={clean:0,dirty:0,handled:0,editing:0,completed:0,error:0},y=v();for(const D of y)k[D.changeState]+=1,(D.taskState==="editing"||D.taskState==="completed"||D.taskState==="error")&&(k[D.taskState]+=1);return{...u,statusSummary:{active:x().active,modifiedCount:y.filter(D=>D.changeState!=="clean").length,nodeStateCounts:k}}}function q(){return{items:Array.from(n.editMetaByKey.values()).flatMap(k=>k.images.map(y=>({id:y.id,name:y.name,data:y.data,mimeType:y.mimeType,createdAt:y.createdAt,source:"prompt-context"}))).sort((k,y)=>k.createdAt-y.createdAt)}}async function Y(u){const k=_(u);if(!k)throw new Error(`NOT_FOUND: Element not found for key: ${u}`);const y=await ns(k,u);return{elementKey:u,image:y,mimeType:"image/png",width:y.width,height:y.height}}async function F(u,k,y){const D=_(u);if(!D)throw new Error(`NOT_FOUND: Element not found for key: ${u}`);if(!(l!=null&&l.setExternalEditingState)||!l.clearExternalEditingState)throw new Error("NOT_IMPLEMENTED: External editing state control is unavailable");k==="editing"?l.setExternalEditingState(D,y):l.clearExternalEditingState(D,y),A();const U=B(y);return{elementKey:u,state:k,applied:!0,...U?{taskRef:U}:{}}}function A(){const u=x();for(const k of r)try{k(u)}catch(y){console.error("[GenieEditor] Status listener failed:",y)}}const X=xa({state:n,scheduleCacheWrite:()=>i==null?void 0:i.scheduleWrite(),persistMarkerVisibility:u=>i==null?void 0:i.setMarkerVisibility(u),onSelectMarkedElement:(u,k)=>{var y;u.isConnected&&((y=n.eventController)==null||y.setMode("selecting"),a==null||a.handleSelect(u,Cn,{clientX:k.clientX,clientY:k.clientY}))},onStatusChange:A}),N=du({state:n,ensureSelected:(u,k)=>{a==null||a.handleSelect(u,k)},logPrefix:"[WebEditorV2]"});i=iu({state:n,changes:X,getResourceContext:e.host.getResourceContext,interactionProfile:e.interactionProfile}),l=Va({state:n,changes:X,feedback:s,persistence:i,summaries:o,bridgeOptions:e.genieBridge,onAvailabilityChange:()=>{var u,k;(u=n.breadcrumbs)==null||u.refresh(),(k=n.propertyPanel)==null||k.refresh()}});const b=tc({integrationWsOptions:e.integrationWs,getPageUrl:()=>typeof window>"u"?e.integrationWs.pageUrl||null:String(e.integrationWs.pageUrl||window.location.href||"").trim()||null,getSessionId:()=>{var k;const u=String(e.integrationWs.sessionId??"").trim();return u||(((k=l==null?void 0:l.getCurrentConversationState())==null?void 0:k.sessionId)??null)},getEditedSnapshotPayload:H,listEditorNodes:v,getContextImagesPayload:q,getNodeScreenshotPayload:Y,setNodeEditingState:async(u,k,y)=>F(u,k,y)});a=nc({state:n,changes:X,persistence:i,textSession:N,genieBridge:l,logPrefix:"[WebEditorV2]",onStatusChange:A});const E=Zl({state:n,feedback:s,changes:X,interaction:a,summaries:o,persistence:i,onStatusChange:A}),d=Ql({state:n,options:e,services:{feedback:s,summaries:o,changes:X,persistence:i,textSession:N,interaction:a,genieBridge:l,integrationWs:b,localActions:E},onStatusChange:A});function M(){m||d.start()}function j(){m||d.stop()}function ee(){return m?!1:(n.active?j():M(),n.active)}function oe(){return{active:n.active,version:ls}}function ie(u){return r.add(u),u(x()),()=>{r.delete(u)}}function me(){m||(a==null||a.clearSelection(),A())}function ce(){m||(i==null||i.clearCachedChanges("text"),A())}function pe(){m||(i==null||i.clearCachedChanges("style"),A())}async function ge(u){if(m)return!1;const k=n.editMetaByKey.get(u);if(!k)return!1;let y=null;try{y=we(k.locator)}catch{y=null}if(!(y!=null&&y.isConnected))return!1;const D=await E.handleClearElementEdits(y);return A(),D}async function ae(){m||(await E.handleClearEdits({skipConfirm:!0}),A())}async function V(u){if(m)return{success:!1,error:"Genie Editor instance has been destroyed."};if(!a)return{success:!1,error:"Genie Editor interaction service is not ready."};const k=await a.revertElement(u);return A(),k}function p(){m||(m=!0,d.stop(),r.clear())}return{start:M,stop:j,destroy:p,toggle:ee,getState:oe,getStatus:x,subscribeStatus:ie,getSelectedElement:P,getModifiedElements:S,getTextChanges:R,getStyleChanges:I,getEditedSnapshot:h,getDebugState:T,getHistoryCounts:L,revertElement:V,clearSelection:me,acknowledgeSavedTextChanges:ce,acknowledgeSavedStyleChanges:pe,clearElementEdits:ge,clearAllEdits:ae}}export{pu as c}; diff --git a/axhub-make/admin/assets/chunks/index4.js b/axhub-make/admin/assets/chunks/index4.js new file mode 100644 index 0000000..8a8f25e --- /dev/null +++ b/axhub-make/admin/assets/chunks/index4.js @@ -0,0 +1,18 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/vendor-common.js","assets/chunks/vendor-react.js","assets/chunks/_commonjsHelpers.js","assets/chunks/preload-helper.js","assets/chunks/_commonjs-dynamic-modules.js"])))=>i.map(i=>d[i]); +import{g as O,p as bt,a as st,b as Lt,c as Tt,d as P,e as Y,f as k,n as Ct,h as It}from"./fills-generator.js?v=1775123024591";import{_ as Rt}from"./preload-helper.js?v=1775123024591";const yt=t=>{for(const n of Array.from(t.querySelectorAll("use")))try{const e=n.href.baseVal,i=document.querySelector(e);i&&(n.outerHTML=i.innerHTML)}catch(e){console.warn("Error querying tag href",e)}},At=["display","visibility","opacity","fill","fillOpacity","fillRule","stroke","strokeWidth","strokeLinecap","strokeLinejoin","strokeOpacity","strokeDasharray","strokeDashoffset","fontFamily","fontSize","fontWeight","fontStyle","textAnchor","dominantBaseline","transform","filter","mixBlendMode","color"];function _t(t){const n=t.style,e=[];for(const o of At){const s=n[o];if(s&&s.trim()!==""){const a=o.replace(/([A-Z])/g,"-$1").toLowerCase();o==="fill"&&(s==="rgb(0, 0, 0)"||s==="black")||o==="stroke"&&s==="none"||o==="strokeWidth"&&s==="1px"||o==="opacity"&&s==="1"||o==="display"&&s==="block"||o==="visibility"&&s==="visible"||e.push(`${a}:${s}`)}}return e.join(";")}function Mt(t){const n=t.outerHTML.length;function e(o){const s=_t(o);o.removeAttribute("style"),s&&o.setAttribute("style",s);for(const a of o.children)e(a)}return e(t),(t.outerHTML.length/n*100).toFixed(1),t.outerHTML}async function Nt(t){try{const n=t.cloneNode(!0);return Mt(n)}catch(n){return console.warn("⚠️ [SVG压缩] 样式清理失败,使用原始SVG:",n),t.outerHTML}}function Ft(t){if(!(t instanceof SVGSVGElement))throw new Error("需要传入一个 元素");const n=t.getBoundingClientRect();return{x:n.left,y:n.top,width:n.width,height:n.height}}const St=async t=>{const n=Ft(t);return{type:"SVG",svg:await Nt(t),x:Math.round(n.x),y:Math.round(n.y),width:Math.round(n.width),height:Math.round(n.height)}};function Ht(t){const n=t.getBoundingClientRect();return{...n,documentX:n.left+window.scrollX,documentY:n.top+window.scrollY,left:n.left,top:n.top,right:n.right,bottom:n.bottom,width:n.width,height:n.height,x:n.x,y:n.y}}const at=({computedStyle:t,element:n=null})=>{let e=0,i=0;if(n){const d=n.getBoundingClientRect();e=d.width,i=d.height}const o=P(t.borderTopLeftRadius,e,i),s=P(t.borderTopRightRadius,e,i),a=P(t.borderBottomRightRadius,e,i),r=P(t.borderBottomLeftRadius,e,i);return Object.assign(Object.assign(Object.assign(Object.assign({},o?{topLeftRadius:o.value}:{}),s?{topRightRadius:s.value}:{}),a?{bottomRightRadius:a.value}:{}),r?{bottomLeftRadius:r.value}:{})},Ot=t=>{if(!t)return!1;const n=O(t);return n?(typeof n.a=="number"?n.a:1)>0:!1},Dt=({borderWidth:t,borderType:n,borderColor:e})=>t&&t!=="0"&&n!=="none"&&Ot(e);function Gt(t){const n={top:t.borderTop,right:t.borderRight,bottom:t.borderBottom,left:t.borderLeft};if(!Object.values(n).some(a=>a&&a!=="none"))return{consistent:!1,borderInfo:null};const i={};for(const[a,r]of Object.entries(n))if(r&&r!=="none"){const l=r.match(/^([\d\.]+)px\s*(\w+)\s*(.*)$/);if(l){const[d,f,u,p]=l;i[a]={borderWidth:f,borderType:u,borderColor:p}}}else i[a]={borderWidth:"0",borderType:"none",borderColor:"transparent"};const o=Object.values(i).find(a=>a.borderWidth!=="0");return o?{consistent:Object.values(i).every(a=>a.borderWidth===o.borderWidth&&a.borderType===o.borderType&&a.borderColor===o.borderColor),borderInfo:o}:{consistent:!1,borderInfo:null}}const Bt=({computedStyle:t})=>{if(t.border&&t.border!=="none"){const i=t.border.match(/^([\d\.]+)px\s*(\w+)\s*(.*)$/);if(i){const[o,s,a,r]=i;if(Dt({borderWidth:s,borderType:a,borderColor:r})){const l=O(r);if(l)return{strokes:[{type:"SOLID",color:{r:l.r,b:l.b,g:l.g},opacity:typeof l.a=="number"?l.a:1}],strokeWeight:Math.round(parseFloat(s))}}}}const{consistent:n,borderInfo:e}=Gt(t);if(n&&e){const i=O(e.borderColor);if(i)return{strokes:[{type:"SOLID",color:{r:i.r,b:i.b,g:i.g},opacity:typeof i.a=="number"?i.a:1}],strokeWeight:Math.round(parseFloat(e.borderWidth))}}return null},Z=t=>t?{r:t.r,g:t.g,b:t.b,a:t.a!==void 0?t.a:1}:null,J=t=>{const n=t.mixBlendMode;return{normal:"NORMAL",multiply:"MULTIPLY",screen:"SCREEN",overlay:"OVERLAY",darken:"DARKEN",lighten:"LIGHTEN","color-dodge":"COLOR_DODGE","color-burn":"COLOR_BURN","hard-light":"HARD_LIGHT","soft-light":"SOFT_LIGHT",difference:"DIFFERENCE",exclusion:"EXCLUSION",hue:"HUE",saturation:"SATURATION",color:"COLOR",luminosity:"LUMINOSITY"}[n]||"NORMAL"},vt=({computedStyle:t})=>{const n=[];return t.boxShadow&&t.boxShadow!=="none"&&bt(t.boxShadow).forEach(i=>{const o=O(i.color);if(o){const s=Z(o),a=J(t);i.inset?n.push({type:"INNER_SHADOW",color:s,offset:{x:i.offsetX,y:i.offsetY},radius:i.blurRadius,spread:i.spreadRadius||0,visible:!0,blendMode:a}):n.push({type:"DROP_SHADOW",color:s,offset:{x:i.offsetX,y:i.offsetY},radius:i.blurRadius,spread:i.spreadRadius||0,visible:!0,blendMode:a})}}),t.textShadow&&t.textShadow!=="none"&&st(t.textShadow).forEach(i=>{const o=O(i.color);if(o){const s=Z(o),a=J(t);n.push({type:"DROP_SHADOW",color:s,offset:{x:i.offsetX,y:i.offsetY},radius:i.blurRadius,spread:0,visible:!0,blendMode:a})}}),t.filter&&t.filter!=="none"&&Lt(t.filter).forEach(i=>{i.type==="LAYER_BLUR"&&n.push({type:"LAYER_BLUR",radius:i.radius,visible:!0})}),t.backdropFilter&&t.backdropFilter!=="none"&&Tt(t.backdropFilter).forEach(i=>{i.type==="BACKGROUND_BLUR"&&n.push({type:"BACKGROUND_BLUR",radius:i.radius,visible:!0})}),n.length>0?n:void 0};function kt(t){const n=t.zIndex;return n==="auto"||n===""||isNaN(parseInt(n))?0:parseInt(n)}function Wt(t){return t.parentElement?Array.from(t.parentElement.children).indexOf(t):0}function z(t,n,e,i){if(!n||!e||!i)return;const o=kt(e),s=Wt(n),a=n.parentElement;t._sortingCache={zIndex:o,elementIndex:s,parentElement:a,originalElement:n}}function Pt(t,n){const e=t._sortingCache,i=n._sortingCache;return!e||!i?(console.warn("⚠️ [compareLayers] 图层缺少排序缓存,跳过排序"),0):e.parentElement===i.parentElement&&e.zIndex!==i.zIndex?e.zIndex-i.zIndex:0}function Ut(t){if(!t||t.length<=1)return t;const n=t.map((e,i)=>({layer:e,originalIndex:i}));return n.sort((e,i)=>{const o=e.layer._sortingCache,s=i.layer._sortingCache;if(!o||!s)return e.originalIndex-i.originalIndex;const a=Pt(e.layer,i.layer);return a!==0?a:e.originalIndex-i.originalIndex}),n.map(e=>e.layer)}function Vt(t){if(!t||!Array.isArray(t))return console.warn("⚠️ [cleanLayersSortingCache] layers 不是数组"),t;const n=e=>(!e||typeof e!="object"||(e._sortingCache&&delete e._sortingCache,e.children&&Array.isArray(e.children)&&e.children.forEach(i=>n(i))),e);return t.forEach(e=>n(e)),t}function zt(t){if(!t||!Array.isArray(t))return console.warn("⚠️ [cleanLayersDebugProperties] layers 不是数组"),t;const n=e=>(!e||typeof e!="object"||(e._sortingCache&&delete e._sortingCache,e._debug&&delete e._debug,e._tempRef&&delete e._tempRef,e.children&&Array.isArray(e.children)&&e.children.forEach(i=>n(i))),e);return t.forEach(e=>n(e)),t}function ct(t){return!t||!Array.isArray(t)?t:Ut(t).map(i=>i&&typeof i=="object"&&i.children&&Array.isArray(i.children)?{...i,children:ct(i.children)}:i)}function $(t){const n=ct(t);return Vt(n)}const Xt=t=>typeof t=="symbol"?null:JSON.parse(JSON.stringify(t));function jt(t,n,e){const i=e.parentElement;if(!i)return;const o=window.getComputedStyle(i),s=o.display;if(!(s==="flex"||s==="inline-flex"||s==="grid"||s==="inline-grid"))return;if((parseFloat(n.flexGrow)||0)>0){t.layoutGrow=1;const f=o.flexDirection||"row";(s==="flex"||s==="inline-flex")&&(f==="row"||f==="row-reverse"?(t.layoutSizingHorizontal="FILL",t.layoutSizingVertical="HUG"):(t.layoutSizingHorizontal="HUG",t.layoutSizingVertical="FILL"))}const l=n.alignSelf||"auto";l==="stretch"?t.layoutAlign="STRETCH":l!=="auto"&&(t.layoutAlign="INHERIT");const d=n.position;(d==="absolute"||d==="fixed")&&(t.layoutPositioning="ABSOLUTE")}const lt=t=>{if(typeof t!="string")return"";const n=t.split(",").map(o=>o.trim().replace(/^['"]+|['"]+$/g,"").trim()).filter(Boolean);if(n.length===0)return"";const e=[],i=new Set;for(const o of n){const s=o.toLowerCase();i.has(s)||(i.add(s),e.push(o))}return e.join(", ")},Yt=t=>{if(!Array.isArray(t)||t.length===0)return 0;const n=t.filter(o=>o&&o.width>0&&o.height>0).sort((o,s)=>o.top-s.top);if(n.length===0)return 0;const e=[],i=1;for(const o of n)e.some(s=>Math.abs(s-o.top)<=i)||e.push(o.top);return e.length},$t=(t,n)=>{const e=/[\r\n]/.test(t||"");return n>1&&!e?"HEIGHT":"WIDTH_AND_HEIGHT"},qt=async({node:t})=>{const e=(t.textContent||"").replace(/\s+/g," "),i=e.trim();if(!Jt(i))return;if(t.parentElement){const s=t.nodeType===Node.TEXT_NODE?t.parentElement:t;if(!s||s.nodeType!==Node.ELEMENT_NODE||tn(s))return;const a=document.createRange();a.selectNode(t);const r=Array.from(a.getClientRects()),l=Xt(a.getBoundingClientRect());if(a.detach(),!Qt(l))return;const d=Yt(r),f=$t(i,d),u={x:Math.round(l.left),y:Math.round(l.top),type:"TEXT",characters:e,width:Math.max(1,Math.round(l.width)),height:Math.round(l.height),textAutoResize:f},p=window.getComputedStyle(s);let g;if(p.length>0)g=await Kt(u,p,s);else{const c=getComputedStyle(s);g=await Zt(u,c,s)}if(g){const c=getComputedStyle(s);z(g,t,c,l),jt(g,c,s)}return g}};async function Kt(t,n,e){const i={...t};if(dt(n)){const r=await Y(n,e,{includeImageFills:!1,includeBackgroundColor:!0,includeComplexBackgrounds:!0});r.length>0&&(i.fills=r)}else if(n.color){const r=O(n.color);r&&(i.fills=[{type:"SOLID",color:{r:r.r,g:r.g,b:r.b},opacity:r.a||1}])}if((!i.fills||i.fills.length===0)&&(i.fills=[{type:"SOLID",color:{r:0,g:0,b:0},opacity:1}]),n.opacity&&(i.opacity=parseFloat(n.opacity)),n.fontFamily){const r=lt(n.fontFamily);r&&(i.fontFamily=r)}if(n.fontSize){const r=parseFloat(n.fontSize);isNaN(r)||(i.fontSize=Math.round(r))}if(n.fontWeight&&(i.fontWeight=Math.round(n.fontWeight)),n.textAlign){const r=n.textAlign;["left","center","right","justified"].includes(r)&&(i.textAlignHorizontal=r.toUpperCase())}if(["left","center","right","justified"].includes(n.textAlign)&&(i.textAlignHorizontal=n.textAlign.toUpperCase()),n.textDecoration){const r=n.textDecoration;r.includes("underline")?i.textDecoration="UNDERLINE":r.includes("line-through")&&(i.textDecoration="STRIKETHROUGH")}if(ut(e,n)&&n.lineHeight&&n.lineHeight!=="normal"){const r=parseFloat(n.fontSize),l=n.lineHeight==="normal"?r*1.2:parseFloat(n.lineHeight);if(!gt({fontSize:r,lineHeightPx:l,measuredHeight:t.height,text:i.characters||e.textContent||"",tagName:e.tagName,whiteSpace:n.whiteSpace||"normal"})){const f=k(n.lineHeight);f&&(i.lineHeight=f)}}if(n.letterSpacing&&n.letterSpacing!=="normal"){const r=k(n.letterSpacing);r&&(i.letterSpacing=r)}const a=ft(n);return a.length>0&&(i.effects=a),i}function dt(t){const n=t.background&&(t.background.includes("linear-gradient")||t.background.includes("radial-gradient")||t.background.includes("conic-gradient")),e=t.backgroundClip==="text"||t.webkitBackgroundClip==="text",i=t.backgroundImage&&(t.backgroundImage.includes("linear-gradient")||t.backgroundImage.includes("radial-gradient")||t.backgroundImage.includes("conic-gradient"));return n&&e||i&&e}function ft(t){const n=[];return t.textShadow&&t.textShadow!=="none"&&st(t.textShadow).forEach(i=>{const o=O(i.color);if(o){const s={r:o.r,g:o.g,b:o.b,a:o.a||1};n.push({type:"DROP_SHADOW",color:s,offset:{x:i.offsetX,y:i.offsetY},radius:i.blurRadius,spread:0,visible:!0,blendMode:"NORMAL"})}}),n}async function Zt(t,n,e){if(dt(n)){const c=await Y(n,e,{includeImageFills:!1,includeBackgroundColor:!0,includeComplexBackgrounds:!0});c.length>0&&(t.fills=c)}else if(n.color){const c=O(n.color);c&&(t.fills=[{type:"SOLID",color:{r:c.r,g:c.g,b:c.b},opacity:c.a||1}])}(!t.fills||t.fills.length===0)&&(t.fills=[{type:"SOLID",color:{r:0,g:0,b:0,a:1},opacity:1}]);const o=k(n.letterSpacing);o&&(t.letterSpacing=o);const s=ut(e,n),a=parseFloat(n.fontSize),r=n.lineHeight==="normal"?a*1.2:parseFloat(n.lineHeight),l=gt({fontSize:a,lineHeightPx:r,measuredHeight:t.height,text:t.characters||e.textContent||"",tagName:e.tagName,whiteSpace:n.whiteSpace||"normal"}),d=s&&!l?k(n.lineHeight):null;d&&(t.lineHeight=d);const{textTransform:f}=n;switch(f){case"uppercase":{t.textCase="UPPER";break}case"lowercase":{t.textCase="LOWER";break}case"capitalize":{t.textCase="TITLE";break}}const u=k(n.fontSize);if(u&&(t.fontSize=Math.round(u.value)),n.fontFamily){const c=lt(n.fontFamily);c&&(t.fontFamily=c)}["underline","strikethrough"].includes(n.textDecoration)&&(t.textDecoration=n.textDecoration.toUpperCase()),["left","center","right","justified"].includes(n.textAlign)&&(t.textAlignHorizontal=n.textAlign.toUpperCase());const p=ft(n);p.length>0&&(t.effects=p);const g=at({computedStyle:n,element:e});return Object.assign(t,g),t}function Jt(t){return!(!t||t.length===0||/^\s+$/.test(t))}function Qt(t){return!(t.width<=0||t.height<=0||t.height<3||t.width<.5||t.width>1e4||t.height>1e4)}function tn(t){if(["SCRIPT","STYLE","NOSCRIPT","META","LINK","TITLE","HEAD","HTML","BODY","FRAMESET","FRAME","IFRAME"].includes(t.tagName))return!0;const e=window.getComputedStyle(t);return e.display==="none"||e.visibility==="hidden"||t.children.length===0&&(!t.textContent||t.textContent.trim().length===0)}function ut(t,n){const e=t.tagName.toUpperCase(),i=n||getComputedStyle(t);if(e==="BUTTON"||e==="INPUT"||e==="SELECT"||e==="TEXTAREA")return!1;const o=t.textContent;if(!o||o.trim().length===0||!o.includes(` +`)&&i.whiteSpace!=="normal"&&i.whiteSpace!=="pre-wrap"||i.display==="inline-flex"||i.display==="flex")return!1;const a=parseFloat(i.fontSize);if(Number.isNaN(a))return!1;const r=i.lineHeight==="normal"?a*1.2:parseFloat(i.lineHeight);return!(Number.isNaN(r)||Math.abs(r-a)<1)}function gt(t){const{fontSize:n,lineHeightPx:e,measuredHeight:i,text:o,tagName:s,whiteSpace:a}=t,r=(s||"").toUpperCase();if(r==="BUTTON"||r==="INPUT"||r==="SELECT"||r==="TEXTAREA")return!0;if(!n||!e||!i)return!1;const l=!o.includes(` +`)&&a!=="pre-wrap",d=e/n,f=i/e;return!!(l&&(d>2.5&&f<.7||d>2&&f<.9))}function ht(t){if(!t||!(t instanceof Element))return"";if(typeof t.getAttribute=="function"){const e=t.getAttribute("class");if(typeof e=="string")return e.trim()}const n=t.className;return typeof n=="string"?n.trim():n&&typeof n.baseVal=="string"?n.baseVal.trim():n&&typeof n.animVal=="string"?n.animVal.trim():""}function Q(t,n){if(!t||!(t instanceof Element))return;const e=typeof n=="string"?n.trim():"";if(e){t.setAttribute("class",e);return}t.removeAttribute("class")}function nn(t){if(!t)return!1;const n=t.overflow,e=t.overflowX,i=t.overflowY;return n==="hidden"||n==="clip"||e==="hidden"||e==="clip"||i==="hidden"||i==="clip"}function tt(t,n,e,i=!1){var I;if(!t||t.length===0)return null;if(t.length===1)return t[0];const o=t.find(w=>w&&w.type==="RECTANGLE"&&w._sortingCache&&w._sortingCache.originalElement===e)||null,s=t.some(w=>w&&w._sortingCache&&w._sortingCache.originalElement),a=$(t);let r=1/0,l=1/0,d=-1/0,f=-1/0;if(a.forEach(w=>{w.x!==void 0&&w.y!==void 0&&(r=Math.min(r,w.x),l=Math.min(l,w.y),d=Math.max(d,w.x+(w.width||0)),f=Math.max(f,w.y+(w.height||0)))}),r===1/0||l===1/0)return a[0];const u=i?"FRAME":"GROUP";let p=!1;if(i&&e)try{const w=window.getComputedStyle(e),x=w.overflowX,m=w.overflowY,b=w.overflow;p=x==="hidden"||m==="hidden"||b==="hidden"||x==="clip"||m==="clip"||b==="clip"}catch{p=!1}const g={type:u,name:n||u,x:r,y:l,width:d-r,height:f-l,children:[],clipsContent:p};let c=-1;const h=o||(s?null:a[0]);if(h&&h.type==="RECTANGLE"&&i){const w=h.width||0,x=h.height||0,m=g.width,b=g.height,C=((I=e==null?void 0:e.getBoundingClientRect)==null?void 0:I.call(e))||null,R=!!C&&Math.abs(h.width-C.width)<=2&&Math.abs(h.height-C.height)<=2&&Math.abs(h.x-C.x)<=2&&Math.abs(h.y-C.y)<=2,L=!!o&&h===o;Math.abs(h.x-r)<1&&Math.abs(h.y-l)<1&&Math.abs(w-m)<1&&Math.abs(x-b)<1&&(L||R)&&(c=0,h.fills&&(g.fills=h.fills),h.strokes&&(g.strokes=h.strokes),h.strokeWeight&&(g.strokeWeight=h.strokeWeight),h.strokeAlign&&(g.strokeAlign=h.strokeAlign),h.effects&&(g.effects=h.effects),h.opacity!==void 0&&(g.opacity=h.opacity),h.blendMode&&(g.blendMode=h.blendMode),h.cornerRadius!==void 0&&(g.cornerRadius=h.cornerRadius),h.topLeftRadius!==void 0&&(g.topLeftRadius=h.topLeftRadius),h.topRightRadius!==void 0&&(g.topRightRadius=h.topRightRadius),h.bottomLeftRadius!==void 0&&(g.bottomLeftRadius=h.bottomLeftRadius),h.bottomRightRadius!==void 0&&(g.bottomRightRadius=h.bottomRightRadius))}if(g.children=a.filter((w,x)=>x!==c).map(w=>w.x!==void 0&&w.y!==void 0?{...w,x:w.x-r,y:w.y-l}:w),e){const w=e.getBoundingClientRect();z(g,e,e.style,w)}return g}async function nt(t){const n=[],e=o=>(o||"").replace(/\s+/g," ").trim(),i=new Set;for(let o=0;os.display==="none"||s.visibility==="hidden"||s.opacity==="0",i=s=>{if(!s||typeof s!="object")return!1;if(typeof s.hasAttribute=="function"){if(s.hasAttribute("hidden"))return!0;const a=s.getAttribute("aria-hidden");if(typeof a=="string"&&a.toLowerCase()==="true")return!0}return!!(s.classList&&(s.classList.contains("is-hidden")||s.classList.contains("hidden")||s.classList.contains("ant-table-measure-row")))};if(e(t)||i(n))return!0;let o=n==null?void 0:n.parentElement;for(;o;){const s=getComputedStyle(o);if(e(s)||i(o)||s.overflow!=="visible"&&o.getBoundingClientRect().height<1)return!0;o=o.parentElement}return!1}function pt(t,n){if(n.backgroundClip==="text"||n.webkitBackgroundClip==="text")return!1;const e=n.backgroundColor!=="rgba(0, 0, 0, 0)"&&n.backgroundColor!=="transparent"||n.borderWidth!=="0px"&&n.borderWidth!==""||n.boxShadow!=="none"&&n.boxShadow!==""||n.borderRadius!=="0px"&&n.borderRadius!==""||n.opacity!=="1"&&n.opacity!==""||n.transform!=="none"&&n.transform!==""&&n.transform!=="matrix(1, 0, 0, 1, 0, 0)"||n.filter!=="none"&&n.filter!==""||n.backdropFilter!=="none"&&n.backdropFilter!=="",i=n.padding!=="0px"&&n.padding!==""||n.margin!=="0px"&&n.margin!==""||n.width!=="auto"&&n.width!==""||n.height!=="auto"&&n.height!=="",o=n.backgroundImage!=="none"&&n.backgroundImage!=="";return e||i||o}function on(t){function n(e){if(e.nodeType!==Node.ELEMENT_NODE&&e.nodeType!==Node.TEXT_NODE)return null;const i=e.shadowRoot?Array.from(e.shadowRoot.childNodes):[],s=[...Array.from(e.childNodes),...i];return{type:e.nodeType===Node.ELEMENT_NODE?"element":"text",el:e,children:s.map(a=>n(a)).filter(Boolean)}}return n(t)}function v(t,n=!1){const e=t.tagName.toLowerCase();if(n&&t.hasAttribute("data-label")){const s=t.getAttribute("data-label");if(s&&s.trim())return`${e}.${s.trim()}`}if(t.id&&t.id.trim())return`${e}.${t.id.trim()}`;const i=ht(t),o=i?i.split(/\s+/)[0]:null;return o?`${e}.${o}`:e}async function rn(t,n=!1,e=!1){const i=[];if(t instanceof SVGSVGElement){if(t.id!=="snapdom-injected-svg"){const f=await St(t);i.push(f)}return i}else if(t instanceof SVGElement)return i;if(t.parentElement instanceof HTMLPictureElement&&t instanceof HTMLSourceElement||t instanceof HTMLPictureElement)return i;const o=window.getComputedStyle(t),s=["absolute","fixed"].includes(o.position),a=e&&nn(o);if(en(o,t))return i;let r=!1;if(pt(t,o)?r=!0:r=(t instanceof HTMLImageElement||t instanceof HTMLVideoElement)&&o.display!=="none",r){const f=Ht(t);if(f.width>=1&&f.height>=1){const u=await Y(o,t),p=o.borderWidth!=="0px"&&o.borderWidth!=="",g=o.boxShadow!=="none"&&o.boxShadow!=="",c=o.borderRadius!=="0px"&&o.borderRadius!=="",h=o.opacity!=="1"&&o.opacity!=="",I=o.transform!=="none"&&o.transform!=="",w=(parseFloat(o.paddingTop)||0)>0||(parseFloat(o.paddingRight)||0)>0||(parseFloat(o.paddingBottom)||0)>0||(parseFloat(o.paddingLeft)||0)>0||(parseFloat(o.paddingInlineStart)||0)>0||(parseFloat(o.paddingInlineEnd)||0)>0||(parseFloat(o.paddingBlockStart)||0)>0||(parseFloat(o.paddingBlockEnd)||0)>0;if(u.length===0&&!p&&!g&&!c&&!h&&!I&&!w){const R=await nt(t);return i.push(...R),i.length>1?[tt(i,v(t,n),t,e)]:i}const x={type:"RECTANGLE",name:v(t,n),x:Math.round(f.left),y:Math.round(f.top),width:Math.round(f.width),height:Math.round(f.height),fills:u};if(s&&(x.layoutPositioning="ABSOLUTE"),z(x,t,o,f),!Ct(o)){const R=Bt({computedStyle:o});R&&Object.assign(x,R)}(t instanceof HTMLImageElement||t instanceof HTMLVideoElement||t instanceof SVGSVGElement)&&(x.name=v(t,n));const b=vt({computedStyle:o});b&&(x.effects=b);const C=at({computedStyle:o,element:t});Object.assign(x,C),i.push(x)}}const d=await nt(t);if(i.push(...d),i.length>1){const f=tt(i,v(t,n),t,e);if(s&&f&&(f.layoutPositioning="ABSOLUTE"),(parseFloat(o.flexGrow)||0)>0&&!a){f.layoutGrow=1;const p=t.parentElement?window.getComputedStyle(t.parentElement).display:"",g=t.parentElement?window.getComputedStyle(t.parentElement).flexDirection:"";(p==="flex"||p==="inline-flex")&&(g==="row"||g==="row-reverse"?(f.layoutSizingHorizontal="FILL",f.layoutSizingVertical="HUG"):(f.layoutSizingHorizontal="HUG",f.layoutSizingVertical="FILL"))}return[f]}if(i.length===1&&(s&&(i[0].layoutPositioning="ABSOLUTE"),(parseFloat(o.flexGrow)||0)>0&&!a)){i[0].layoutGrow=1;const u=t.parentElement?window.getComputedStyle(t.parentElement).display:"",p=t.parentElement?window.getComputedStyle(t.parentElement).flexDirection:"";(u==="flex"||u==="inline-flex")&&(p==="row"||p==="row-reverse"?(i[0].layoutSizingHorizontal="FILL",i[0].layoutSizingVertical="HUG"):(i[0].layoutSizingHorizontal="HUG",i[0].layoutSizingVertical="FILL"))}return i}const M=!1;function sn(t){try{if(t&&t!==document.body&&t!==document.documentElement){const w=t.getBoundingClientRect(),x=t.scrollWidth,m=t.scrollHeight,b=t.clientWidth,C=t.clientHeight,R=Math.max(w.width,x,b),L=Math.max(w.height,m,C);if(R>0&&L>0)return{width:R,height:L}}const n=document.documentElement.scrollWidth,e=document.documentElement.scrollHeight,i=document.body.scrollWidth,o=document.body.scrollHeight,s=t?t.querySelectorAll("*"):document.querySelectorAll("body *");let a=0,r=0,l=1/0,d=1/0;s.forEach(w=>{if(w.offsetParent===null)return;const x=w.getBoundingClientRect();if(x.width===0&&x.height===0)return;const m=x.left+window.scrollX,b=x.top+window.scrollY,C=x.right+window.scrollX,R=x.bottom+window.scrollY;C>0&&R>0&&(a=Math.max(a,C),r=Math.max(r,R),l=Math.min(l,m),d=Math.min(d,b))});const f=document.body.getBoundingClientRect(),u=f.width,p=f.height,g=a-(l===1/0?0:l),c=r-(d===1/0?0:d),h=Math.max(n,i,g,u),I=Math.max(e,o,c,p);if(h<=0||I<=0)throw new Error("主要方法计算出无效尺寸");return{width:h,height:I}}catch{const e=window.innerWidth,i=window.innerHeight,o=document.documentElement.clientWidth,s=document.documentElement.clientHeight,a=document.body.clientWidth,r=document.body.clientHeight,l=Math.max(e,o,a),d=Math.max(i,s,r);return{width:l,height:d}}}async function an(t={}){const{targetElement:n,filter:e}=t;try{const i=n||document.body,o=sn(i),s=o.width,a=o.height,{snapdom:r}=await Rt(async()=>{const{snapdom:b}=await import("./vendor-common.js?v=1775123024591").then(C=>C.dj);return{snapdom:b}},__vite__mapDeps([0,1,2,3,4])),l=i.querySelectorAll("img"),d=Array.from(l).filter(b=>b.src.startsWith("data:")),f=Date.now(),u=await r.toBlob(i,{fast:!0,embedFonts:!0,scale:1,dpr:1,format:"svg",filter:typeof e=="function"?e:void 0}),p=Date.now()-f,g=await u.text(),h=new DOMParser().parseFromString(g,"image/svg+xml"),I=h.documentElement;if(I.tagName.toLowerCase()!=="svg")throw console.error("❌ [generatePageSvg] 解析的不是有效的 SVG:",I.tagName),new Error("解析的SVG无效");const w=I.getAttribute("width"),x=I.getAttribute("height"),m=I.getAttribute("viewBox");return{svgBlob:u,svgText:g,svgDoc:h,svgRoot:I,pageWidth:s,pageHeight:a}}catch(i){throw console.error("❌ [generatePageSvg] SVG生成失败:",i),console.error("❌ [generatePageSvg] 错误堆栈:",i.stack),i}}function cn(t){try{const n=t.svgRoot.cloneNode(!0);n.style.cssText=` + position: absolute; + left: 0; + top: 0; + z-index: 999999; + pointer-events: none; + `,n.id="snapdom-injected-svg";let e=document.getElementById("snapdom-shadow-host");return e||(e=document.createElement("div"),e.id="snapdom-shadow-host",e.style.cssText=` + position: fixed; + left: 0; + top: 0; + width: 0; + height: 0; + z-index: 999999; + pointer-events: none; + `,e.attachShadow({mode:"open"}),document.body.appendChild(e)),(e.shadowRoot||e.attachShadow({mode:"open"})).appendChild(n),n}catch(n){throw console.error("❌ [SnapDOM] SVG注入失败:",n),n}}function et(){try{const t=document.getElementById("snapdom-shadow-host");if(t){t.remove();return}}catch(t){console.warn("⚠️ [SnapDOM] SVG清理失败:",t)}}function V(){var t;try{return!!globalThis.__AXHUB_AUTO_LAYOUT_DEBUG__||((t=globalThis.localStorage)==null?void 0:t.getItem("__AXHUB_AUTO_LAYOUT_DEBUG__"))==="1"}catch{return!!globalThis.__AXHUB_AUTO_LAYOUT_DEBUG__}}function S(t,n,e,i){if(!V())return;const o=e[0],s=o?window.getComputedStyle(o):null;console.group(`🚫 [AutoLayout DENIED] ${i}`),console.log("Container:",{tagName:t.tagName,className:t.className,id:t.id}),console.log("Container CSS:",{display:n.display,flexDirection:n.flexDirection,flexWrap:n.flexWrap,gap:n.gap,rowGap:n.rowGap,columnGap:n.columnGap,gridTemplateColumns:n.gridTemplateColumns,gridTemplateRows:n.gridTemplateRows,position:n.position}),console.log("Children count:",e.length),o&&(console.log("First child:",{tagName:o.tagName,className:o.className}),console.log("First child CSS:",{display:s.display,position:s.position,marginTop:s.marginTop,marginRight:s.marginRight,marginBottom:s.marginBottom,marginLeft:s.marginLeft,paddingTop:s.paddingTop,paddingRight:s.paddingRight,paddingBottom:s.paddingBottom,paddingLeft:s.paddingLeft})),console.log("DOM structure:",t.outerHTML.substring(0,200)+"..."),console.groupEnd()}const A={LESS_THAN_TWO_VISIBLE_CHILDREN:"LESS_THAN_TWO_VISIBLE_CHILDREN",OUT_OF_FLOW_CHILD:"OUT_OF_FLOW_CHILD",CHILDREN_OVERLAP:"CHILDREN_OVERLAP",GRID_TEMPLATE_AREAS:"GRID_TEMPLATE_AREAS",EXPLICIT_GRID_PLACEMENT:"EXPLICIT_GRID_PLACEMENT",IMPLICIT_GRID_FIXED_DIMS:"IMPLICIT_GRID_FIXED_DIMS",FLEX_WRAP_WITH_CHILD_MARGINS:"FLEX_WRAP_WITH_CHILD_MARGINS",VISUAL_ORDER_MISMATCH:"VISUAL_ORDER_MISMATCH",NEGATIVE_MARGIN_USED:"NEGATIVE_MARGIN_USED",MARGIN_VARIANCE_HIGH:"MARGIN_VARIANCE_HIGH",TRANSFORM_LAYOUT_HACK:"TRANSFORM_LAYOUT_HACK"};function ln(t,n,e){const i=[],o=[],s=[];for(const m of e){const b=m.getBoundingClientRect(),C=window.getComputedStyle(m);C.display!=="none"&&C.visibility!=="hidden"&&b.width>0&&b.height>0&&s.push({element:m,rect:b,style:C})}const a=n.display;if((a==="flex"||a==="inline-flex"||a==="grid"||a==="inline-grid")&&V()&&console.log("🔍 [AutoLayout] Checking container:",{tagName:t.tagName,className:t.className,display:a,flexWrap:n.flexWrap,gap:n.gap,childrenCount:s.length}),s.length<2){if(s.length===0)return S(t,n,s.map(b=>b.element),A.LESS_THAN_TWO_VISIBLE_CHILDREN),i.push(A.LESS_THAN_TWO_VISIBLE_CHILDREN),{deny:!0,reasons:i,warnings:o};const m=it(n,a,s);if(!m.hasValue)return S(t,n,s.map(b=>b.element),A.LESS_THAN_TWO_VISIBLE_CHILDREN),i.push(A.LESS_THAN_TWO_VISIBLE_CHILDREN),{deny:!0,reasons:i,warnings:o};V()&&console.log("✅ [AutoLayout] Single child with valuable layout properties allowed:",{tagName:t.tagName,className:t.className,display:a,reasons:m.reasons})}if(s.length===2&&!it(n,a,s).hasValue)return S(t,n,s.map(b=>b.element),"TWO_CHILDREN_NO_LAYOUT_VALUE"),i.push("TWO_CHILDREN_NO_LAYOUT_VALUE"),{deny:!0,reasons:i,warnings:o};let r=!1,l=!1,d=!1,f=!1;const u=n.flexWrap||"nowrap",p=(a==="flex"||a==="inline-flex")&&(u==="wrap"||u==="wrap-reverse"),g=n.gap||"0px",c=parseFloat(n.rowGap)||0,h=parseFloat(n.columnGap)||0,I=g!=="0px"&&g!=="normal"||c>0||h>0,w=p&&!I;for(const{style:m}of s){if(!r&&(m.position==="absolute"||m.position==="fixed")&&(r=!0),!l&&gn(m)&&(l=!0),!d){const b=m.transform;b&&b!=="none"&&b.includes("translate")&&(d=!0)}if(w&&!f){const b=parseFloat(m.marginBottom)||0,C=parseFloat(m.marginTop)||0,R=parseFloat(m.marginLeft)||0,L=parseFloat(m.marginRight)||0,T=parseFloat(m.marginInlineStart)||0,_=parseFloat(m.marginInlineEnd)||0,E=parseFloat(m.marginBlockStart)||0,y=parseFloat(m.marginBlockEnd)||0;(b>1||C>1||R>1||L>1||T>1||_>1||E>1||y>1)&&(f=!0)}if(r&&l&&d&&(!w||f))break}if(r)return S(t,n,s.map(m=>m.element),A.OUT_OF_FLOW_CHILD),i.push(A.OUT_OF_FLOW_CHILD),{deny:!0,reasons:i,warnings:o};if(dn(s))return S(t,n,s.map(m=>m.element),A.CHILDREN_OVERLAP),i.push(A.CHILDREN_OVERLAP),{deny:!0,reasons:i,warnings:o};if(f)return S(t,n,s.map(m=>m.element),A.FLEX_WRAP_WITH_CHILD_MARGINS),i.push(A.FLEX_WRAP_WITH_CHILD_MARGINS),{deny:!0,reasons:i,warnings:o};if(a==="grid"||a==="inline-grid"){const m=n.gridTemplateAreas;if(m&&m!=="none")return S(t,n,s.map(_=>_.element),A.GRID_TEMPLATE_AREAS),i.push(A.GRID_TEMPLATE_AREAS),{deny:!0,reasons:i,warnings:o};if(s.some(({style:_})=>{const E=_.gridRowStart,y=_.gridColumnStart;return E&&E!=="auto"||y&&y!=="auto"}))return S(t,n,s.map(_=>_.element),A.EXPLICIT_GRID_PLACEMENT),i.push(A.EXPLICIT_GRID_PLACEMENT),{deny:!0,reasons:i,warnings:o};const C=n.gridTemplateColumns,R=n.gridTemplateRows,L=C&&C!=="none"?C.split(" ").filter(_=>_.trim()).length:0,T=R&&R!=="none"?R.split(" ").filter(_=>_.trim()).length:0;(L>1||T>1)&&s.length>=6&&o.push(`${A.IMPLICIT_GRID_FIXED_DIMS}: container appears to be an implicit grid with cols=${L}, rows=${T}`)}if(!un(s))return S(t,n,s.map(m=>m.element),A.VISUAL_ORDER_MISMATCH),i.push(A.VISUAL_ORDER_MISMATCH),{deny:!0,reasons:i,warnings:o};if(l)return S(t,n,s.map(m=>m.element),A.NEGATIVE_MARGIN_USED),i.push(A.NEGATIVE_MARGIN_USED),{deny:!0,reasons:i,warnings:o};const x=hn(s);return x.relativeStdDev>1.2&&x.mean>0&&o.push(`${A.MARGIN_VARIANCE_HIGH}: mean=${x.mean.toFixed(2)}, relStdDev=${x.relativeStdDev.toFixed(2)}`),d?(S(t,n,s.map(m=>m.element),A.TRANSFORM_LAYOUT_HACK),i.push(A.TRANSFORM_LAYOUT_HACK),{deny:!0,reasons:i,warnings:o}):((a==="flex"||a==="inline-flex"||a==="grid"||a==="inline-grid")&&V()&&console.log("✅ [AutoLayout] ALLOWED:",t.className||t.tagName),{deny:!1,reasons:i,warnings:o})}function it(t,n,e){const i=[],o=n==="flex"||n==="inline-flex",s=n==="grid"||n==="inline-grid";if(o){const c=t.justifyContent||"normal",h=t.alignItems||"normal";c!=="normal"&&c!=="flex-start"&&c!=="start"&&i.push(`justify-content: ${c}`),h!=="normal"&&h!=="stretch"&&i.push(`align-items: ${h}`)}if(s){const c=t.justifyItems||"normal",h=t.alignItems||"normal",I=t.justifyContent||"normal";c!=="normal"&&c!=="stretch"&&c!=="legacy"&&i.push(`justify-items: ${c}`),h!=="normal"&&h!=="stretch"&&i.push(`align-items: ${h}`),I!=="normal"&&I!=="start"&&i.push(`justify-content: ${I}`)}const a=t.gap||"0px",r=parseFloat(t.rowGap)||0,l=parseFloat(t.columnGap)||0;a!=="0px"&&a!=="normal"?i.push(`gap: ${a}`):(r>0||l>0)&&i.push(`row-gap: ${r}px, column-gap: ${l}px`);const d=parseFloat(t.paddingTop)||0,f=parseFloat(t.paddingRight)||0,u=parseFloat(t.paddingBottom)||0,p=parseFloat(t.paddingLeft)||0;if(d+f+u+p>8&&i.push(`padding: ${d}/${f}/${u}/${p}`),o){const c=t.flexDirection||"row";(c==="column"||c==="column-reverse")&&i.push(`flex-direction: ${c}`)}if(o){const c=t.flexWrap||"nowrap";(c==="wrap"||c==="wrap-reverse")&&i.push(`flex-wrap: ${c}`)}if(s){const c=t.gridTemplateColumns||"none",h=t.gridTemplateRows||"none";c!=="none"&&i.push(`grid-template-columns: ${c}`),h!=="none"&&i.push(`grid-template-rows: ${h}`)}return o&&e.length>0&&e.some(({style:h})=>(parseFloat(h.flexGrow)||0)>0)&&i.push("child has flex-grow"),e.length>0&&e.some(({style:h})=>(h.alignSelf||"auto")!=="auto")&&i.push("child has align-self"),{hasValue:i.length>0,reasons:i}}function dn(t,n=1){const e=t.map(i=>i.rect);for(let i=0;ir.rect),e=Math.max(...n.map(r=>r.x+r.width))-Math.min(...n.map(r=>r.x)),i=Math.max(...n.map(r=>r.y+r.height))-Math.min(...n.map(r=>r.y)),o=e>=i,a=t.map((r,l)=>({idx:l,rect:r.rect})).slice().sort((r,l)=>Math.abs(r.rect.y-l.rect.y)>4?r.rect.y-l.rect.y:r.rect.x-l.rect.x);for(let r=0;ru.rect),e=Math.max(...n.map(u=>u.x+u.width))-Math.min(...n.map(u=>u.x)),i=Math.max(...n.map(u=>u.y+u.height))-Math.min(...n.map(u=>u.y)),o=e>=i,a=t.map((u,p)=>({idx:p,rect:u.rect})).sort((u,p)=>Math.abs(u.rect.y-p.rect.y)>4?u.rect.y-p.rect.y:u.rect.x-p.rect.x),r=[];for(let u=0;uu+p,0)/r.length,d=Math.sqrt(r.reduce((u,p)=>u+Math.pow(p-l,2),0)/r.length),f=l===0?d>0?1/0:0:d/Math.abs(l);return{mean:l,stdDev:d,relativeStdDev:f}}function pn(){var t;try{return!!globalThis.__AXHUB_AUTO_LAYOUT_DEBUG__||((t=globalThis.localStorage)==null?void 0:t.getItem("__AXHUB_AUTO_LAYOUT_DEBUG__"))==="1"}catch{return!!globalThis.__AXHUB_AUTO_LAYOUT_DEBUG__}}function G(t,n){pn()&&console.debug(`[AutoLayout] ${t}`,n)}function W(t){return{tagName:t==null?void 0:t.tagName,id:t==null?void 0:t.id,className:t==null?void 0:t.className}}function mt(t,n){return n}function mn(t,n){if(!t||!n)return!1;const i=mt(t,n).display;return i==="flex"||i==="inline-flex"||i==="grid"||i==="inline-grid"}function wn(t){switch(t.flexDirection||"row"){case"column":case"column-reverse":return"VERTICAL";case"row":case"row-reverse":default:return"HORIZONTAL"}}function En(t){if(typeof t!="string")return[];const n=[];let e="",i=0,o=0;for(const a of t){if(a==="("){i+=1,e+=a;continue}if(a===")"){i=Math.max(0,i-1),e+=a;continue}if(a==="["){o+=1,e+=a;continue}if(a==="]"){o=Math.max(0,o-1),e+=a;continue}if(/\s/.test(a)&&i===0&&o===0){const r=e.trim();r&&n.push(r),e="";continue}e+=a}const s=e.trim();return s&&n.push(s),n}function xn(t){if(typeof t!="string")return-1;let n=0,e=0;for(let i=0;iNumber(o)).filter(o=>Number.isFinite(o)).sort((o,s)=>o-s);if(e.length===0)return[];const i=[e[0]];for(let o=1;on&&i.push(s)}return i}function Ln(t){var l;if(!t||!t.children||t.children.length===0)return null;const n=[],e=[],i=Array.from(t.children).filter(d=>d instanceof HTMLElement);for(const d of i)try{const f=window.getComputedStyle(d);if(f.display==="none"||f.visibility==="hidden"||f.position==="absolute"||f.position==="fixed")continue;const u=d.getBoundingClientRect();if(u.width<=.5||u.height<=.5)continue;n.push(u),e.length<12&&e.push({tagName:d.tagName,id:d.id,className:d.className,left:u.left,top:u.top,width:u.width,height:u.height})}catch{}if(n.length===0)return null;const o=ot(n.map(d=>d.left)),s=ot(n.map(d=>d.top)),a=o.length,r=s.length;return G("grid-infer-from-children",{element:W(t),childCount:((l=t==null?void 0:t.children)==null?void 0:l.length)||0,inFlowRenderableChildCount:n.length,leftClusters:o,topClusters:s,inferredColumns:a,inferredRows:r,sampledChildren:e}),a<=0&&r<=0?null:{gridColumns:Math.max(1,a||1),gridRows:Math.max(1,r||1),inFlowChildCount:n.length}}function Tn(t,n){const e=n.gridTemplateRows||"none",i=n.gridTemplateColumns||"none",o=(n.gridAutoFlow||"row").toLowerCase(),s=X(e),a=X(i),r=Ln(t);G("grid-explicit-vs-inferred",{element:W(t),templateRows:e,templateColumns:i,gridAutoFlow:o,explicitRowCount:s,explicitColumnCount:a,inferredGrid:r});const l=!Number.isFinite(a);if(o.includes("column")||o.includes("dense")||l&&(!r||r.gridColumns<=1))return G("grid-fallback-linear",{element:W(t),reason:l?"UNRESOLVED_COLUMN_TRACKS":"UNSUPPORTED_AUTO_FLOW",gridAutoFlow:o,templateRows:e,templateColumns:i,rowCount:s,columnCount:a,inferredGrid:r}),{layoutMode:"VERTICAL"};const f=Number.isFinite(a)?Number(a):0,u=Number.isFinite(s)?Number(s):0;let p=f>0?f:0,g=u>0?u:0;if(r&&(p<=0&&(p=r.gridColumns),g<=0&&p>0)){const c=Number(r.inFlowChildCount),h=Number.isFinite(c)&&c>0?Math.ceil(c/p):0;h>0?g=h:r.gridRows>0&&f<=0&&(g=r.gridRows)}if(p>1){const c=g>0?g:void 0;return G("grid-final-resolved",{element:W(t),explicitColumns:f,explicitRows:u,inferredGrid:r,resolvedColumns:p,resolvedRows:g}),{layoutMode:"GRID",gridColumns:p,gridRows:c}}return{layoutMode:"VERTICAL"}}function Cn(t){switch(t){case"flex-start":case"start":return{align:"MIN",needsEdgePadding:!1,edgePaddingRatio:0};case"center":return{align:"CENTER",needsEdgePadding:!1,edgePaddingRatio:0};case"flex-end":case"end":return{align:"MAX",needsEdgePadding:!1,edgePaddingRatio:0};case"space-between":return{align:"SPACE_BETWEEN",needsEdgePadding:!1,edgePaddingRatio:0};case"space-around":return{align:"SPACE_BETWEEN",needsEdgePadding:!0,edgePaddingRatio:.5};case"space-evenly":return{align:"SPACE_BETWEEN",needsEdgePadding:!0,edgePaddingRatio:1};default:return{align:"MIN",needsEdgePadding:!1,edgePaddingRatio:0}}}function In(t){switch(t){case"flex-start":case"start":return"MIN";case"center":return"CENTER";case"flex-end":case"end":return"MAX";case"baseline":return"BASELINE";case"stretch":return"MIN";default:return"MIN"}}function Rn(t){switch(t){case"start":case"flex-start":case"self-start":return"MIN";case"center":return"CENTER";case"end":case"flex-end":case"self-end":return"MAX";case"left":return"MIN";case"right":return"MAX";case"stretch":return"MIN";default:return"MIN"}}function U(...t){for(const n of t){const e=parseFloat(n);if(Number.isFinite(e))return e}return 0}function yn(t,n){if(!t||!t.children||t.children.length<2)return 0;const e=Array.from(t.children).filter(r=>r instanceof HTMLElement);if(e.length<2)return 0;const i=e.filter(r=>{try{const l=window.getComputedStyle(r);return l.display!=="none"&&l.position!=="absolute"&&l.position!=="fixed"}catch{return!1}});if(i.length<2)return 0;const o=[];for(let r=0;r.5&&o.push(p)}if(o.length===0)return 0;const s=o[0];return o.every(r=>Math.abs(r-s)<=.5)?s:Math.max(...o)}function An(t,n,e){const i=n.gap;if(i&&i!=="normal"&&i!=="0px"){const o=i.split(" ");return o.length===2?parseFloat(e==="HORIZONTAL"?o[1]:o[0])||0:parseFloat(i)||0}if(e==="HORIZONTAL"){const o=n.columnGap||n.gridColumnGap,s=parseFloat(o)||0;if(s>0)return s}else{const o=n.rowGap||n.gridRowGap,s=parseFloat(o)||0;if(s>0)return s}return yn(t,e)}function _n(t,n){const e=t.gap;if(e&&e!=="normal"&&e!=="0px"){const i=e.split(" ");return i.length===2?parseFloat(n==="HORIZONTAL"?i[0]:i[1])||0:parseFloat(e)||0}if(n==="HORIZONTAL"){const i=t.rowGap||t.gridRowGap;return parseFloat(i)||0}else{const i=t.columnGap||t.gridColumnGap;return parseFloat(i)||0}}function Mn(t){const n=parseFloat(t.paddingTop)||parseFloat(t.paddingBlockStart)||0,e=parseFloat(t.paddingRight)||parseFloat(t.paddingInlineEnd)||0,i=parseFloat(t.paddingBottom)||parseFloat(t.paddingBlockEnd)||0,o=parseFloat(t.paddingLeft)||parseFloat(t.paddingInlineStart)||0;return{paddingTop:n,paddingRight:e,paddingBottom:i,paddingLeft:o}}function Nn(t){const n=t.flexWrap||"nowrap";return n==="wrap"||n==="wrap-reverse"?"WRAP":"NO_WRAP"}function Fn(t,n){const e=mt(t,n);if(!mn(t,n))return null;const i=Array.from(t.children).filter(L=>L instanceof HTMLElement),o=ln(t,e,i);if(o.deny)return G("denied",{element:{tagName:t==null?void 0:t.tagName,id:t==null?void 0:t.id,className:t==null?void 0:t.className},reasons:o.reasons,warnings:o.warnings,display:e.display,justifyContent:e.justifyContent,alignItems:e.alignItems,gap:e.gap}),null;const s=e.display,a=s==="grid"||s==="inline-grid";let r,l,d;if(a){const L=Tn(t,e);r=L.layoutMode,l=L.gridColumns,d=L.gridRows,G("grid-config-selected",{element:W(t),gridConfig:L,templateRows:e.gridTemplateRows,templateColumns:e.gridTemplateColumns,gridAutoFlow:e.gridAutoFlow})}else r=wn(e);const f=An(t,e,r),u=_n(e,r),p=Mn(e),g=e.justifyContent||"flex-start",c=e.alignItems||"stretch",h=e.justifyItems||"",I=Cn(g),w=I.align;let x=In(c);if(h&&h!=="legacy"&&h!=="normal"&&(x=Rn(h)),I.needsEdgePadding&&f>0){const L=f*I.edgePaddingRatio;r==="HORIZONTAL"?(p.paddingLeft+=L,p.paddingRight+=L):r==="VERTICAL"&&(p.paddingTop+=L,p.paddingBottom+=L)}const m=r==="GRID"?void 0:a?"WRAP":Nn(e);let b="AUTO",C="AUTO";if(r==="HORIZONTAL"){const L=e.width;L&&L!=="auto"&&(L.includes("%")&&parseFloat(L)===100||L.includes("px"))&&(b="FIXED");const T=e.height;T&&T!=="auto"&&T.includes("px")&&(C="FIXED")}else if(r==="VERTICAL"){const L=e.height;L&&L!=="auto"&&(L.includes("%")&&parseFloat(L)===100||L.includes("px"))&&(b="FIXED");const T=e.width;T&&T!=="auto"&&T.includes("px")&&(C="FIXED")}const R={layoutMode:r,primaryAxisSizingMode:b,counterAxisSizingMode:C,primaryAxisAlignItems:w,counterAxisAlignItems:x,itemSpacing:f,...p,layoutPositioning:"AUTO"};if(m!==void 0&&(R.layoutWrap=m,m==="WRAP"&&(R.counterAxisSpacing=u||0)),r==="GRID"&&l){R.gridColumnCount=l,Number.isFinite(d)&&d>0&&(R.gridRowCount=d);const L=parseFloat(e.rowGap||e.gridRowGap)||0,T=parseFloat(e.columnGap||e.gridColumnGap)||0;R.gridColumnGap=T,R.gridRowGap=L}return G("mapped",{element:{tagName:t==null?void 0:t.tagName,id:t==null?void 0:t.id,className:t==null?void 0:t.className},display:e.display,result:R}),R}const rt="export-overlay-root";function Sn(t){return t instanceof Element?!!(t.id===rt||typeof t.closest=="function"&&t.closest(`#${rt}`)):!1}function wt(t){if(!(t instanceof Element))return!1;try{const n=window.getComputedStyle(t),e=n.overflowX,i=n.overflowY,o=n.overflow;return e==="hidden"||i==="hidden"||o==="hidden"||e==="clip"||i==="clip"||o==="clip"}catch{return!1}}function Hn(t){if(!(t instanceof Element))return!1;const n=t.tagName;return n==="BODY"||n==="HTML"}function On(t,n){if(!t||!n||!(n instanceof Element))return;const e=r=>typeof r=="string"&&r.trim()==="auto",i=r=>{switch(r.toLowerCase()){case"stretch":return"STRETCH";case"center":return"CENTER";case"flex-end":case"end":case"self-end":return"MAX";case"flex-start":case"start":case"self-start":return"MIN";default:return null}},o=r=>{const l=parseFloat(r);return Number.isFinite(l)?l:null},s=(r,l,d=1.5)=>Math.abs(r-l)<=d,a=(r,l,d,f)=>{if(!r||!l||!d||!f)return null;const u=l.display;if(u!=="flex"&&u!=="inline-flex")return null;const p=l.flexDirection||"row",g=p==="row"||p==="row-reverse",c=g?r.marginBlockStart||r.marginTop:r.marginInlineStart||r.marginLeft,h=g?r.marginBlockEnd||r.marginBottom:r.marginInlineEnd||r.marginRight,I=e(c),w=e(h);if(I&&w)return"CENTER";if(I)return"MAX";if(w)return"MIN";const x=o(c),m=o(h);if(x===null||m===null||x<.5&&m<.5)return null;const b=f.getBoundingClientRect(),C=d.getBoundingClientRect(),R=g?C.height:C.width,L=g?b.height:b.width,T=o(g?l.paddingTop:l.paddingLeft)||0,_=o(g?l.paddingBottom:l.paddingRight)||0,E=o(g?l.borderTopWidth:l.borderLeftWidth)||0,y=o(g?l.borderBottomWidth:l.borderRightWidth)||0,N=L-T-_-E-y;if(!Number.isFinite(N)||N<=1)return null;const H=R+x+m;return s(N,H,2.5)?x>.5&&m>.5&&s(x,m,1.5)?"CENTER":x>.5&&m<=1.5?"MAX":m>.5&&x<=1.5?"MIN":null:null};try{const r=window.getComputedStyle(n),l=n.parentElement,d=l?window.getComputedStyle(l):null;if((parseFloat(r.flexGrow)||0)>0&&(t.layoutGrow=1,d)){const g=d.display,c=d.flexDirection||"row";(g==="flex"||g==="inline-flex")&&(c==="row"||c==="row-reverse"?(t.layoutSizingHorizontal="FILL",t.layoutSizingVertical=t.layoutSizingVertical||"HUG"):(t.layoutSizingHorizontal=t.layoutSizingHorizontal||"HUG",t.layoutSizingVertical="FILL"))}const u=r.alignSelf||"auto",p=i(u);if(p)t.layoutAlign=p;else{const g=a(r,d,n,l);g&&(t.layoutAlign=g)}}catch{}}function Dn(t,n,e,i=null,o=!1,s=!1){var _;if(!t||t.length===0)return null;const r=typeof window<"u"&&(window.__AXHUB_HTML_TO_FIGMA_DEBUG__||window.__AXHUB_FRAME_DEBUG__)?(...E)=>{console.log("[frame-build]",...E)}:()=>{};if(r("start createFrameFromLayers",{elementName:n,layerCount:t.length,hasAutoLayoutProps:!!i,forceCreateFrame:s,firstLayer:t[0]?{type:t[0].type,name:t[0].name,width:t[0].width,height:t[0].height}:null,sortedAlready:!1}),t.length===1&&!i&&!s)return t[0];const l=t.find(E=>E&&E.type==="RECTANGLE"&&E._sortingCache&&E._sortingCache.originalElement===e)||null,d=t.some(E=>E&&E._sortingCache&&E._sortingCache.originalElement),f=$(t),u=f.filter(E=>E.layoutPositioning!=="ABSOLUTE"&&E.layoutPositioning!=="FIXED"),p=u.length>0?u:f,g=E=>{let y=Number.POSITIVE_INFINITY,N=Number.POSITIVE_INFINITY,H=Number.NEGATIVE_INFINITY,D=Number.NEGATIVE_INFINITY,B=0;for(const F of E)typeof F.x=="number"&&typeof F.y=="number"&&typeof F.width=="number"&&typeof F.height=="number"&&(y=Math.min(y,F.x),N=Math.min(N,F.y),H=Math.max(H,F.x+F.width),D=Math.max(D,F.y+F.height),B+=1);return B===0?null:{x:y,y:N,width:H-y,height:D-N}};let c=null;const h=[];if(l)c=l;else if(!d){for(const E of f)if(E.type==="RECTANGLE"&&!c){c=E;break}}const I=!!c&&!!l&&c===l;let w,x,m,b;if(c&&!I){const E=g(p),y=(_=e==null?void 0:e.getBoundingClientRect)==null?void 0:_.call(e);if(E){const N=c.width>=E.width*.9,H=c.height>=E.height*.9,D=c.x<=E.x+1,B=c.y<=E.y+1,F=c.x+c.width>=E.x+E.width-1,Et=c.y+c.height>=E.y+E.height-1,xt=c.width*c.height>=E.width*E.height*.8,q=!!y&&Math.abs(c.width-y.width)<=2&&Math.abs(c.height-y.height)<=2&&Math.abs(c.x-y.x)<=2&&Math.abs(c.y-y.y)<=2,K=N&&H&&D&&B&&F&&Et&&xt;r("background coverage check",{elementName:n,bgName:c.name,bgSize:{w:c.width,h:c.height},bounds:E,isCovering:K,matchesElementRect:q}),!q&&!(!y&&K)&&(r("background rejected, fallback to element bounding rect",{elementName:n,bgName:c.name}),c=null)}}if(c){w=c.x,x=c.y,m=c.width,b=c.height,r("use backgroundLayer as frame basis",{elementName:n,frameX:w,frameY:x,frameWidth:m,frameHeight:b,bgName:c.name,bgType:c.type});for(const E of f)E!==c&&h.push(E)}else{const E=e.getBoundingClientRect();if(w=E.x,x=E.y,m=E.width,b=E.height,Hn(e)){const y=g(p);if(y){const N=Math.min(w,y.x),H=Math.min(x,y.y),D=Math.max(w+m,y.x+y.width),B=Math.max(x+b,y.y+y.height);w=N,x=H,m=D-N,b=B-H}}r("use element bounding rect as frame basis",{elementName:n,frameX:w,frameY:x,frameWidth:m,frameHeight:b}),h.push(...f)}let C=h.map(E=>E.x!==void 0&&E.y!==void 0?{...E,x:E.x-w,y:E.y-x}:E);const R=wt(e),L=o?"FRAME":"GROUP",T={type:L,name:n||L,x:w,y:x,width:m,height:b,clipsContent:R,children:[]};if(r("frameLayer created",{name:T.name,x:T.x,y:T.y,width:T.width,height:T.height,childCount:C.length,hasBackground:!!c}),c){const E=c.fills&&c.fills.some(y=>y.type==="IMAGE");r("background layer detected",{elementName:n,hasImageFill:E,backgroundFillTypes:Array.isArray(c.fills)?c.fills.map(y=>y.type):[],enableAutoLayout:o}),!o&&E?(r("GROUP mode with image fill, keeping background as separate layer",{elementName:n,bgName:c.name}),C.unshift({...c,x:0,y:0})):(c.fills&&c.fills.length>0&&(T.fills=c.fills),c.strokes&&(T.strokes=c.strokes),c.strokeWeight!==void 0&&(T.strokeWeight=c.strokeWeight),c.strokeAlign!==void 0&&(T.strokeAlign=c.strokeAlign),c.cornerRadius!==void 0&&(T.cornerRadius=c.cornerRadius),c.topLeftRadius!==void 0&&(T.topLeftRadius=c.topLeftRadius,T.topRightRadius=c.topRightRadius,T.bottomLeftRadius=c.bottomLeftRadius,T.bottomRightRadius=c.bottomRightRadius),c.effects&&c.effects.length>0&&(T.effects=c.effects),c.opacity!==void 0&&c.opacity!==1&&(T.opacity=c.opacity))}else o&&(T.fills=[{type:"SOLID",color:{r:1,g:1,b:1},opacity:0}]);if(T.children=C,i&&Object.assign(T,i),On(T,e),e){const E=e.getBoundingClientRect();z(T,e,e.style,E)}return T}const Gn=async(t,n)=>{const{useFrames:e,rootName:i,isAxure:o,widgetId:s,enableAutoLayout:a=!0}=n,r=ht(t),l="figma-target-element";try{await It(t),t.classList.add(l);const d=await an({targetElement:t,filter:g=>!Sn(g)}),f=cn(d);let u=f.querySelector(`.${l}`);u||(u=f.querySelector("body")),u||(u=f);const p=await Bn(u,{useFrames:e,rootName:i,isAxure:o,widgetId:s,size:{width:d.pageWidth,height:d.pageHeight},isSnapdomProcessing:!0,enableAutoLayout:a});return et(),Q(t,r),p}catch(d){console.error("❌ [processWithSnapDOM] SnapDOM 方案失败:",d),Q(t,r);try{et()}catch{}return null}};async function j(t,n=!1,e=!1,i=!0){const o=[];if(!t)return o;if(t.type==="element"){const s=await rn(t.el,e,i);if(t.el instanceof SVGSVGElement&&t.el.id!=="snapdom-injected-svg")return s;const a=wt(t.el);let r=!1,l=null,d=null,f=!1;try{if(d=window.getComputedStyle(t.el),i){const c=Fn(t.el,d);c!==null&&(l=c,r=!0)}const g=d.display;t.children&&t.children.length>2&&g&&!["inline","inline-block","inline-flex","inline-grid"].includes(g)&&(f=!0)}catch{}let u=!1;if(t.children&&t.children.length>0){const g=d||(()=>{try{return window.getComputedStyle(t.el)}catch{return t.el.style}})();try{u=pt(t.el,g)}catch{}}if(!d&&t.children&&t.children.length>0&&(f=!0),(n||a||r||u||f)&&i){const g=[];for(const h of t.children){const I=await j(h,n||r,e,i);g.push(...I)}const c=[...s,...g];if(c.length>0){const h=Dn(c,v(t.el,e),t.el,l,i,a);h&&o.push(h)}return o}else o.push(...s)}if(!n)for(const s of t.children){const a=await j(s,n,e,i);o.push(...a)}return o}const Bn=async(t,n)=>{const{useFrames:e,rootName:i,size:o,isAxure:s=!1,widgetId:a,enableAutoLayout:r=!0}=n;yt(t);const l=on(t),d=await j(l,e,s,r),f=$(d),u={type:"FRAME",name:i||"FRAME",widgetId:a||null,width:o.width||Math.round(t.scrollWidth),height:o.height||Math.round(t.scrollHeight),x:0,y:0,children:f};return zt([u])};async function Un(t="body",n){const{useFrames:e,useFrame:i,rootName:o,isAxure:s=!1,widgetId:a,enableAutoLayout:r=!0}=n||{},l=typeof e=="boolean"?e:!!i,d=t instanceof HTMLElement?t:document.querySelector(t||"body");return d?Gn(d,{useFrames:l,rootName:o,isAxure:s,widgetId:a,enableAutoLayout:r}):[]}export{Un as htmlToFigma,Bn as processWithOriginalLogic,Gn as processWithSnapDOMImplementation}; diff --git a/axhub-make/admin/assets/chunks/preload-helper.js b/axhub-make/admin/assets/chunks/preload-helper.js new file mode 100644 index 0000000..fd83d50 --- /dev/null +++ b/axhub-make/admin/assets/chunks/preload-helper.js @@ -0,0 +1 @@ +const h="modulepreload",E=function(i){return"/"+i},a={},y=function(u,s,v){let c=Promise.resolve();if(s&&s.length>0){document.getElementsByTagName("link");const e=document.querySelector("meta[property=csp-nonce]"),t=(e==null?void 0:e.nonce)||(e==null?void 0:e.getAttribute("nonce"));c=Promise.allSettled(s.map(r=>{if(r=E(r),r in a)return;a[r]=!0;const o=r.endsWith(".css"),d=o?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${r}"]${d}`))return;const n=document.createElement("link");if(n.rel=o?"stylesheet":h,o||(n.as="script"),n.crossOrigin="",n.href=r,t&&n.setAttribute("nonce",t),document.head.appendChild(n),o)return new Promise((f,m)=>{n.addEventListener("load",f),n.addEventListener("error",()=>m(new Error(`Unable to preload CSS for ${r}`)))})}))}function l(e){const t=new Event("vite:preloadError",{cancelable:!0});if(t.payload=e,window.dispatchEvent(t),!t.defaultPrevented)throw e}return c.then(e=>{for(const t of e||[])t.status==="rejected"&&l(t.reason);return u().catch(l)})};export{y as _}; diff --git a/axhub-make/admin/assets/chunks/spec-template-vendor.js b/axhub-make/admin/assets/chunks/spec-template-vendor.js new file mode 100644 index 0000000..d66e780 --- /dev/null +++ b/axhub-make/admin/assets/chunks/spec-template-vendor.js @@ -0,0 +1,15 @@ +var je=Object.defineProperty;var Ze=(e,t,n)=>t in e?je(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var U=(e,t,n)=>Ze(e,typeof t!="symbol"?t+"":t,n);import{M as qe,l as Ke,a as Ye,b as Je,c as Qe,_ as X,d as S,m as ue,g as et,h as tt}from"./vendor-common.js?v=1775123024591";import{R as a,r as x}from"./vendor-react.js?v=1775123024591";import{d as nt,C as Te,F as ot,K as Ce,a as fe,u as st,i as rt,b as at,c as it,f as ct,g as lt,m as we,e as V,_ as se,T as K,R as dt,h as mt,j as ut,k as pt,l as ft,n as gt,o as ht,p as Ct,q as $t,D as yt,r as xt,s as kt,t as Et,v as It,B as Rt,w as bt,S as St}from"./vendor-antd.js?v=1775123024591";const H={escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeTest:/[&<>"']/,notSpaceStart:/^\S*/,endingNewline:/\n$/,escapeReplace:/[&<>"']/g,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,completeFencedCode:/^ {0,3}(`{3,}|~{3,})([\s\S]*?)\n {0,3}\1[ \n\t]*$/},vt={"&":"&","<":"<",">":">",'"':""","'":"'"},Ie=e=>vt[e];function Re(e,t){if(t){if(H.escapeTest.test(e))return e.replace(H.escapeReplace,Ie)}else if(H.escapeTestNoEncode.test(e))return e.replace(H.escapeReplaceNoEncode,Ie);return e}class Tt{constructor(t={}){U(this,"options");U(this,"markdownInstance");const{markedConfig:n={}}=t;this.options=t,this.markdownInstance=new qe,this.configureLinkRenderer(),this.configureParagraphRenderer(),this.configureCodeRenderer(),this.markdownInstance.use(n)}configureLinkRenderer(){if(!this.options.openLinksInNewTab)return;const t={link({href:n,title:o,tokens:s}){const r=this.parser.parseInline(s),c=o?` title="${o}"`:"";return`${r}`}};this.markdownInstance.use({renderer:t})}configureParagraphRenderer(){const{paragraphTag:t}=this.options;if(!t)return;const n={paragraph({tokens:o}){return`<${t}>${this.parser.parseInline(o)} +`}};this.markdownInstance.use({renderer:n})}configureCodeRenderer(){const t={code({text:n,raw:o,lang:s,escaped:r,codeBlockStyle:c}){var d;const i=(d=(s||"").match(H.notSpaceStart))==null?void 0:d[0],l=`${n.replace(H.endingNewline,"")} +`,m=c==="indented"||H.completeFencedCode.test(o)?"done":"loading",p=r?l:Re(l,!0),f=i?` class="language-${Re(i)}"`:"";return`
${p}
+`}};this.markdownInstance.use({renderer:t})}parse(t){return this.markdownInstance.parse(t)}}const wt=a.memo(e=>{const{text:t,animationConfig:n}=e,{fadeDuration:o=200,easing:s="ease-in-out"}=n||{},[r,c]=x.useState([]),i=x.useRef("");x.useEffect(()=>{if(t===i.current)return;if(!(i.current&&t.indexOf(i.current)===0)){c([t]),i.current=t;return}const u=t.slice(i.current.length);u&&(c(m=>[...m,u]),i.current=t)},[t]);const l=x.useMemo(()=>({animation:`x-markdown-fade-in ${o}ms ${s} forwards`}),[o,s]);return a.createElement(a.Fragment,null,r.map((u,m)=>a.createElement("span",{style:l,key:`animation-text-${m}`},u)))}),oe=class oe{constructor(t){U(this,"options");this.options=t}detectUnclosedTags(t){var c;const n=new Set,o=[],s=/<\/?([a-zA-Z][a-zA-Z0-9-]*)(?:\s[^>]*)?>/g;let r=s.exec(t);for(;r!==null;){const[i,l]=r,u=i.startsWith("");if((c=this.options.components)!=null&&c[l.toLowerCase()])if(u){const p=o.lastIndexOf(l.toLowerCase());p!==-1&&o.splice(p,1)}else m||o.push(l.toLowerCase());r=s.exec(t)}return o.forEach(i=>{n.add(i)}),n}configureDOMPurify(){const t=Object.keys(this.options.components||{}),n=this.options.dompurifyConfig||{},o=Array.isArray(n.ADD_TAGS)?n.ADD_TAGS:[],s=Array.isArray(n.ADD_ATTR)?n.ADD_ATTR:[];return{...n,ADD_TAGS:Array.from(new Set([...t,...o])),ADD_ATTR:Array.from(new Set(["target","rel",...s]))}}createReplaceElement(t,n){const{enableAnimation:o,animationConfig:s}=this.options.streaming||{};return r=>{var $,h,k;const c=`x-markdown-component-${n.current++}`,i=r.type==="text"&&r.data&&oe.NON_WHITESPACE_REGEX.test(r.data),l=($=r.parent)==null?void 0:$.name,u=l&&((h=this.options.components)==null?void 0:h[l]);if(o&&i&&!u)return a.createElement(wt,{text:r.data,key:c,animationConfig:s});if(!("name"in r))return;const{name:p,attribs:f,children:d}=r,g=(k=this.options.components)==null?void 0:k[p];if(g){const E=t!=null&&t.has(p)?"loading":"done",y={domNode:r,streamStatus:E,key:c,...f,...f.disabled!==void 0&&{disabled:!0},...f.checked!==void 0&&{checked:!0}},b=[y.className,y.classname,y.class].filter(Boolean).join(" ").trim();if(y.className=b||"",p==="code"){const{"data-block":O="false","data-state":P="done"}=f||{};y.block=O==="true",y.streamStatus=P==="loading"?"loading":"done"}return d&&(y.children=this.processChildren(d,t,n)),a.createElement(g,y)}}}processChildren(t,n,o){return Ke.domToReact(t,{replace:this.createReplaceElement(n,o)})}processHtml(t){const n=this.detectUnclosedTags(t),o={current:0},s=this.configureDOMPurify(),r=Ye.sanitize(t,s);return Je(r,{replace:this.createReplaceElement(n,o)})}render(t){return this.processHtml(t)}};U(oe,"NON_WHITESPACE_REGEX",/[^\r\n\s]+/);let ge=oe,I=function(e){return e.Text="text",e.Link="link",e.Image="image",e.Html="html",e.Emphasis="emphasis",e.List="list",e.Table="table",e}({});const Mt=/^(`{3,}|~{3,})/,W={image:[/^!\[[^\]\r\n]{0,1000}$/,/^!\[[^\r\n]{0,1000}\]\(*[^)\r\n]{0,1000}$/],link:[/^\[[^\]\r\n]{0,1000}$/,/^\[[^\r\n]{0,1000}\]\(*[^)\r\n]{0,1000}$/],html:[/^<\/$/,/^<\/?[a-zA-Z][a-zA-Z0-9-]{0,100}[^>\r\n]{0,1000}$/],commonEmphasis:[/^(\*{1,3}|_{1,3})(?!\s)(?!.*\1$)[^\r\n]{0,1000}$/],list:[/^[-+*]\s{0,3}$/,/^[-+*]\s{1,3}(\*{1,3}|_{1,3})(?!\s)(?!.*\1$)[^\r\n]{0,1000}$/]},Nt=e=>{if(e.includes(` + +`))return!1;const t=e.split(` +`);if(t.length<=1)return!0;const[n,o]=t,s=n.trim();if(!/^\|.*\|$/.test(s))return!1;const c=o.trim().split("|").map(l=>l.trim()).filter(Boolean),i=/^:?-+:?$/;return c.every((l,u)=>u===c.length-1&&l===":"||i.test(l))},Me={[I.Link]:{tokenType:I.Link,isStartOfToken:e=>e.startsWith("["),isStreamingValid:e=>W.link.some(t=>t.test(e))},[I.Image]:{tokenType:I.Image,isStartOfToken:e=>e.startsWith("!"),isStreamingValid:e=>W.image.some(t=>t.test(e))},[I.Html]:{tokenType:I.Html,isStartOfToken:e=>e.startsWith("<"),isStreamingValid:e=>W.html.some(t=>t.test(e))},[I.Emphasis]:{tokenType:I.Emphasis,isStartOfToken:e=>e.startsWith("*")||e.startsWith("_"),isStreamingValid:e=>W.commonEmphasis.some(t=>t.test(e))},[I.List]:{tokenType:I.List,isStartOfToken:e=>/^[-+*]/.test(e),isStreamingValid:e=>W.list.some(t=>t.test(e))},[I.Table]:{tokenType:I.Table,isStartOfToken:e=>e.startsWith("|"),isStreamingValid:Nt}},Pt=(e,t)=>{const n=Me[t];if(!n)return;const{token:o,pending:s}=e;if(o===I.Text&&n.isStartOfToken(s)){e.token=t;return}o===t&&!n.isStreamingValid(s)&&he(e)},be=Object.values(Me).map(e=>({tokenType:e.tokenType,recognize:t=>Pt(t,e.tokenType)})),pe=()=>({pending:"",token:I.Text,processedLength:0,completeMarkdown:""}),he=e=>{e.pending&&(e.completeMarkdown+=e.pending,e.pending=""),e.token=I.Text},At=e=>{const t=e.split(` +`);let n=!1,o="",s=0;for(const r of t){const i=(r.endsWith("\r")?r.slice(0,-1):r).match(Mt);if(i){const l=i[1],u=l[0],m=l.length;n?u===o&&m>=s&&(n=!1,o="",s=0):(n=!0,o=u,s=m)}}return n},Lt=e=>{let t="";for(let n=0;n=55296&&o<=56319?n+1=56320&&e.charCodeAt(n+1)<=57343&&(t+=e[n]+e[n+1],n++):(o<56320||o>57343)&&(t+=e[n])}return t},Dt=e=>{try{return encodeURIComponent(e)}catch(t){return t instanceof URIError?encodeURIComponent(Lt(e)):""}},zt=(e,t)=>{const{streaming:n,components:o={}}=t||{},{hasNextChunk:s=!1,incompleteMarkdownComponentMap:r}=n||{},[c,i]=x.useState(""),l=x.useRef(pe()),u=x.useCallback(p=>{const{token:f,pending:d}=p;if(f===I.Text||f===I.Image&&d==="!")return;if(f===I.Table&&d.split(` +`).length>2)return d;const $=(r||{})[f]||`incomplete-${f}`,h=Dt(d);return o!=null&&o[$]?`<${$} data-raw="${h}" />`:void 0},[r,o]),m=x.useCallback(p=>{if(!p){i(""),l.current=pe();return}const f=l.current.completeMarkdown+l.current.pending;p.startsWith(f)||(l.current=pe());const d=l.current,g=p.slice(d.processedLength);if(!g)return;d.processedLength+=g.length;const $=At(p);for(const k of g){if(d.pending+=k,$){he(d);continue}if(d.token===I.Text)for(const E of be)E.recognize(d);else{const E=be.find(y=>y.tokenType===d.token);E==null||E.recognize(d)}d.token===I.Text&&he(d)}const h=u(d);i(d.completeMarkdown+(h||""))},[u]);return x.useEffect(()=>{if(typeof e!="string"){console.error(`X-Markdown: input must be string, not ${typeof e}.`),i("");return}s?m(e):i(e)},[e,s,m]),c},yn=a.memo(e=>{const{streaming:t,config:n,components:o,paragraphTag:s,content:r,children:c,rootClassName:i,className:l,style:u,openLinksInNewTab:m,dompurifyConfig:p}=e,f=Qe("x-markdown",i,l),d=zt(r||c||"",{streaming:t,components:o}),g=x.useMemo(()=>new Tt({markedConfig:n,paragraphTag:s,openLinksInNewTab:m}),[n,s,m]),$=x.useMemo(()=>new ge({components:o,dompurifyConfig:p,streaming:t}),[o,p,t]),h=x.useMemo(()=>d?g.parse(d):"",[d,g]);return d?a.createElement("div",{className:f,style:u},$.render(h)):null});function Xt(e,t){return x.useImperativeHandle(e,()=>{const n=t(),{nativeElement:o}=n;return new Proxy(o,{get(s,r){return n[r]?n[r]:Reflect.get(s,r)}})})}const Ne=a.createContext({}),Ot={classNames:{},styles:{},className:"",style:{},shortcutKeys:{}},Pe=e=>{const t=a.useContext(Ne);return a.useMemo(()=>({...Ot,...t[e]}),[t[e]])},Ae=x.createContext(void 0),D={locale:"en",Conversations:{create:"New chat"},Sender:{stopLoading:"Stop loading",speechRecording:"Speech recording"},Actions:{feedbackLike:"Like",feedbackDislike:"Dislike",audio:"Play audio",audioRunning:"Audio playing",audioError:"Playback error",audioLoading:"Loading audio"},Bubble:{editableOk:"OK",editableCancel:"Cancel"},Mermaid:{zoomIn:"Zoom in",zoomOut:"Zoom out",zoomReset:"Reset",download:"Download",code:"Code",image:"Image"}},re=(e,t)=>{const n=x.useContext(Ae),o=x.useMemo(()=>{var i;const r=t||(D==null?void 0:D[e])||((i=nt)==null?void 0:i[e]),c=(n==null?void 0:n[e])??{};return{...typeof r=="function"?r():r,...c||{}}},[e,t,n]),s=x.useMemo(()=>{const r=n==null?void 0:n.locale;return n!=null&&n.exist&&!r?D.locale:r},[n]);return[o,s]},Ht="internalMark",Ft=e=>{const{locale:t={},children:n,_ANT_MARK__:o}=e,s=x.useMemo(()=>({...t,exist:!0}),[t]);return x.createElement(Ae.Provider,{value:s},n)};function z(){const{getPrefixCls:e,direction:t,csp:n,iconPrefixCls:o,theme:s}=a.useContext(Te.ConfigContext);return{theme:s,getPrefixCls:e,direction:t,csp:n,iconPrefixCls:o}}const xn=e=>{const{actions:t,attachments:n,bubble:o,conversations:s,prompts:r,sender:c,suggestion:i,thoughtChain:l,welcome:u,fileCard:m,think:p,theme:f,locale:d,children:g,mermaid:$,codeHighlighter:h,...k}=e,E=a.useMemo(()=>({actions:t,attachments:n,bubble:o,conversations:s,prompts:r,sender:c,suggestion:i,thoughtChain:l,fileCard:m,think:p,mermaid:$,codeHighlighter:h,welcome:u}),[t,n,o,s,r,c,i,l,u,$,p,m,h]);let y=g;return d&&(y=a.createElement(Ft,{locale:d,_ANT_MARK__:Ht},y)),a.createElement(Ne.Provider,{value:E},a.createElement(Te,X({},k,{theme:f,locale:d}),y))},j=1e3,Z=4,ne=140,Se=ne/2,ee=250,ve=500,te=.8;function _t({className:e}){const[t]=re("Sender",D.Sender);return a.createElement("svg",{color:"currentColor",viewBox:`0 0 ${j} ${j}`,xmlns:"http://www.w3.org/2000/svg",className:e},a.createElement("title",null,t.speechRecording),Array.from({length:Z}).map((n,o)=>{const s=(j-ne*Z)/(Z-1),r=o*(s+ne),c=j/2-ee/2,i=j/2-ve/2;return a.createElement("rect",{fill:"currentColor",rx:Se,ry:Se,height:ee,width:ne,x:r,y:c,key:o},a.createElement("animate",{attributeName:"height",values:`${ee}; ${ve}; ${ee}`,keyTimes:"0; 0.5; 1",dur:`${te}s`,begin:`${te/Z*o}s`,repeatCount:"indefinite"}),a.createElement("animate",{attributeName:"y",values:`${c}; ${i}; ${c}`,keyTimes:"0; 0.5; 1",dur:`${te}s`,begin:`${te/Z*o}s`,repeatCount:"indefinite"}))}))}const Bt=e=>({animationDuration:e,animationFillMode:"both"}),Gt=e=>({animationDuration:e,animationFillMode:"both"}),Le=(e,t,n,o,s=!1)=>{const r=s?"&":"";return{[` + ${r}${e}-enter, + ${r}${e}-appear + `]:{...Bt(o),animationPlayState:"paused"},[`${r}${e}-leave`]:{...Gt(o),animationPlayState:"paused"},[` + ${r}${e}-enter${e}-enter-active, + ${r}${e}-appear${e}-appear-active + `]:{animationName:t,animationPlayState:"running"},[`${r}${e}-leave${e}-leave-active`]:{animationName:n,animationPlayState:"running",pointerEvents:"none"}}},Ut=new Ce("antXFadeInLeft",{"0%":{maskPosition:"100% 0"},"100%":{maskPosition:"0% 0%"}}),Vt=new Ce("antXFadeIn",{"0%":{opacity:0},"100%":{opacity:1}}),De=new Ce("antFadeOut",{"0%":{opacity:1},"100%":{opacity:0}}),Wt=(e,t=!1)=>{const{antCls:n}=e,o=`${n}-x-fade-left`,s=t?"&":"";return[{[e.componentCls]:{...Le(o,Ut,De,"1s",t),[`${s}${o}-enter,${s}${o}-appear`]:{transitionProperty:"mask-position",animationTimingFunction:"linear",maskImage:`linear-gradient(90deg, ${e.colorTextBase} 33%, ${new ot(e.colorTextBase).setA(0)} 66%)`,maskSize:"300% 100%",maskPosition:"100% 0%"},[`${s}${o}-leave`]:{animationTimingFunction:"linear"}}}]},jt=(e,t=!1)=>{const{antCls:n}=e,o=`${n}-x-fade`,s=t?"&":"";return[{[e.componentCls]:{...Le(o,Vt,De,"1.2s",t),[`${s}${o}-enter,${s}${o}-appear`]:{opacity:0},[`${s}${o}-leave`]:{animationTimingFunction:"linear"}}}]},Zt="2.1.2",qt=it(fe.defaultAlgorithm),Kt={screenXS:!0,screenXSMin:!0,screenXSMax:!0,screenSM:!0,screenSMMin:!0,screenSMMax:!0,screenMD:!0,screenMDMin:!0,screenMDMax:!0,screenLG:!0,screenLGMin:!0,screenLGMax:!0,screenXL:!0,screenXLMin:!0,screenXLMax:!0,screenXXL:!0,screenXXLMin:!0},ze=(e,t,n)=>{const o=n.getDerivativeToken(e),{override:s,...r}=t;let c={...o,override:s};return c=ct(c),r&&Object.entries(r).forEach(([i,l])=>{const{theme:u,...m}=l;let p=m;u&&(p=ze({...c,...m},{override:m},u)),c[i]=p}),c};function Yt(){const{token:e,hashed:t,theme:n,override:o,cssVar:s}=a.useContext(fe._internalContext),r={prefix:(s==null?void 0:s.prefix)||"ant",key:(s==null?void 0:s.key)||"css-var-root"},c=n||qt,[i,l,u]=st(c,[fe.defaultSeed,e],{salt:`${Zt}-${t||""}`,override:o,getComputedToken:ze,cssVar:{...r,unitless:at,ignore:rt,preserve:Kt}});return[c,u,t?l:"",i,r]}const{genStyleHooks:Xe}=lt({usePrefix:()=>{const{getPrefixCls:e,iconPrefixCls:t}=z();return{iconPrefixCls:t,rootPrefixCls:e()}},useToken:()=>{const[e,t,n,o,s]=Yt();return{theme:e,realToken:t,hashId:n,token:o,cssVar:s}},useCSP:()=>{const{csp:e}=z();return e??{}},layer:{name:"antdx",dependencies:["antd"]}}),Jt=e=>{const{componentCls:t}=e,n=`${t}-audio`;return{[n]:{[`&${n}-rtl`]:{direction:"rtl"},[`${n}-recording-icon`]:{width:e.fontSize,height:e.fontSize}}}},Qt=e=>{const{componentCls:t}=e,n=`${t}-copy`;return{[t]:{[`&${n}-rtl`]:{direction:"rtl"},[`${n}-copy`]:{fontSize:"inherit",[`&:not(${t}-copy-success)`]:{color:"inherit!important"}}}}},en=e=>{const{componentCls:t}=e,n=`${t}-feedback`;return{[t]:{[`&${n}-rtl`]:{direction:"rtl"}}}},tn=e=>{const{componentCls:t,antCls:n,calc:o}=e;return{[t]:{[`&${t}-rtl`]:{direction:"rtl"},[`${n}-pagination-item-link`]:{width:e.controlHeightSM},[`${t}-variant-outlined`]:{paddingInline:V(o(e.paddingXXS).add(1).equal()),paddingBlock:e.paddingXXS,borderRadius:e.borderRadius,border:`${V(e.lineWidth)} ${e.lineType}, ${e.colorBorderSecondary}`},[`${t}-variant-filled`]:{paddingInline:V(o(e.paddingXXS).add(1).equal()),paddingBlock:e.paddingXXS,borderRadius:e.borderRadius,backgroundColor:e.colorBorderSecondary,[`${t}-item`]:{paddingInline:V(o(e.paddingXXS).add(1).equal()),paddingBlock:e.paddingXXS,"&:hover":{color:e.colorTextSecondary,background:"transparent"}}},[`${t}-list-danger`]:{color:e.colorError},[`&${t}-item,${t}-item`]:{cursor:"pointer",fontSize:e.fontSize,paddingInline:V(o(e.paddingXXS).add(1).equal()),paddingBlock:e.paddingXXS,borderRadius:e.borderRadiusSM,height:e.controlHeightSM,boxSizing:"border-box",display:"inline-flex",alignItems:"center",justifyContent:"center",lineHeight:e.lineHeight,transition:`all ${e.motionDurationMid} ${e.motionEaseInOut}`,[`${t}-icon`]:{display:"inline-flex",alignItems:"center",justifyContent:"center",fontSize:e.fontSize},"&:hover":{background:e.colorBgTextHover}},[`&${t}-list,${t}-list`]:{display:"inline-flex",flexDirection:"row",alignItems:"center",color:e.colorText,gap:e.paddingXS}}}},nn=()=>({}),Y=Xe("Actions",e=>{const t=we(e,{});return[tn(t),Qt(t),en(t),Jt(t),Wt(t),jt(t)]},nn);let L=function(e){return e.LOADING="loading",e.ERROR="error",e.RUNNING="running",e.DEFAULT="default",e}({});const Oe=e=>{const{status:t="default",defaultIcon:n,runningIcon:o,label:s,className:r,classNames:c={},styles:i={},style:l,prefixCls:u,rootClassName:m,...p}=e,f=se(p,{attr:!0,aria:!0,data:!0}),{direction:d,getPrefixCls:g}=z(),$=g("actions",u),[h,k]=Y($),E=`${$}-button-item`,y=S(E,h,k,m,r,c.root,$,`${$}-item`,{[`${E}-rtl`]:d==="rtl",[`${c[t]}`]:c[t]}),b={[L.LOADING]:a.createElement(mt,null),[L.ERROR]:a.createElement(dt,null),[L.RUNNING]:o,[L.DEFAULT]:n},O=t&&b[t]?b[t]:n;return a.createElement(K,{title:s},a.createElement("div",X({},f,{className:y,style:{...l,...i.root,...i==null?void 0:i[t]}}),O))},on=e=>{const{status:t=L.DEFAULT,className:n,style:o,prefixCls:s,rootClassName:r,classNames:c={},styles:i={},...l}=e,{direction:u,getPrefixCls:m}=z(),p=m("actions",s),[f,d]=Y(p),g=`${p}-audio`,$=S(p,g,f,d,r,n,c.root,{[`${g}-rtl`]:u==="rtl",[`${g}-${t}`]:t}),[h]=re("Actions",D.Actions),k={[L.LOADING]:h.audioLoading,[L.ERROR]:h.audioError,[L.RUNNING]:h.audioRunning,[L.DEFAULT]:h.audio};return a.createElement(Oe,X({label:t?k[t]:"",style:o,styles:i,classNames:{...c,root:$},status:t,defaultIcon:a.createElement(ut,null),runningIcon:a.createElement(_t,{className:`${g}-recording-icon`})},l))},{Text:sn}=pt,rn=e=>{const{text:t="",icon:n,className:o,style:s,prefixCls:r,rootClassName:c,classNames:i={},styles:l={},...u}=e,m=se(u,{attr:!0,aria:!0,data:!0}),{direction:p,getPrefixCls:f}=z(),d=f("actions",r),[g,$]=Y(d),h=`${d}-copy`,k=S(d,`${d}-item`,g,$,c,o,i.root,{[`${h}-rtl`]:p==="rtl"});return a.createElement(sn,X({},m,{className:k,style:{...s,...l.root},prefixCls:h,copyable:{text:t,icon:n}}))};var w=function(e){return e.like="like",e.dislike="dislike",e.default="default",e}(w||{});const an=e=>{const{value:t="default",onChange:n,className:o,style:s,classNames:r={},styles:c={},prefixCls:i,rootClassName:l,...u}=e,m=se(u,{attr:!0,aria:!0,data:!0}),[p]=re("Actions",D.Actions),{direction:f,getPrefixCls:d}=z(),g=d("actions",i),[$,h]=Y(g),k=`${g}-feedback`,E=S(g,k,$,h,l,r.root,`${g}-list`,o,{[`${k}-rtl`]:f==="rtl"}),y=()=>n==null?void 0:n(t===w.dislike?w.default:w.dislike);return a.createElement("div",X({},m,{className:E,style:{...s,...c.root}}),[w.default,w.like].includes(t)&&a.createElement(K,{key:`like_${t}`,title:p.feedbackLike},a.createElement("span",{onClick:()=>n==null?void 0:n(t===w.like?w.default:w.like),style:{...c.like,...t==="like"?c.liked:{}},className:S(`${k}-item`,`${g}-item`,`${k}-item-like`,r.like,{[`${r.liked}`]:r.liked&&t==="like",[`${k}-item-like-active`]:t==="like"})},t===w.like?a.createElement(ft,null):a.createElement(gt,null))),[w.default,w.dislike].includes(t)&&a.createElement(K,{key:`dislike_${t}`,title:p.feedbackDislike},a.createElement("span",{onClick:y,style:{...c.dislike,...t==="dislike"?c.disliked:{}},className:S(`${k}-item`,`${g}-item`,`${k}-item-dislike`,r.dislike,{[`${r.disliked}`]:r.disliked&&t==="dislike",[`${k}-item-dislike-active`]:t==="dislike"})},t===w.dislike?a.createElement(ht,null):a.createElement(Ct,null))))},$e=a.createContext(null),q=(e,t)=>{const n=e[0];for(const o of t){if(!o)return null;if(o.key===n){if(e.length===1)return o;if(o.subItems)return q(e.slice(1),o==null?void 0:o.subItems)}}return null},cn=e=>{const{onClick:t,item:n,dropdownProps:o={}}=e,{prefixCls:s,classNames:r={},styles:c={}}=a.useContext($e)||{},{subItems:i=[],triggerSubMenuAction:l="hover"}=n,u=(n==null?void 0:n.icon)??a.createElement($t,null),m={items:i,onClick:({key:p,keyPath:f,domEvent:d})=>{var g,$,h;if((g=q(f,i))!=null&&g.onItemClick){(h=($=q(f,i))==null?void 0:$.onItemClick)==null||h.call($,q(f,i));return}t==null||t({key:p,keyPath:[...f,(n==null?void 0:n.key)||""],domEvent:d,item:q(f,i)})}};return a.createElement(yt,X({menu:m,trigger:[l]},o,{className:S(`${s}-dropdown`,r.itemDropdown,o==null?void 0:o.className),styles:{root:c.itemDropdown,...o==null?void 0:o.styles}}),a.createElement("div",{className:S(`${s}-item`,`${s}-sub-item`,r==null?void 0:r.item),style:c==null?void 0:c.item},a.createElement("div",{className:`${s}-icon`},u)))},ln=e=>{const{item:t,onClick:n,dropdownProps:o={}}=e,{prefixCls:s,classNames:r={},styles:c={}}=a.useContext($e)||{},i=a.useId(),l=(t==null?void 0:t.key)||i;return t?t.actionRender?typeof t.actionRender=="function"?t.actionRender(t):t.actionRender:t.subItems?a.createElement(cn,{key:l,item:t,onClick:n,dropdownProps:o}):a.createElement("div",{className:S(`${s}-item`,r.item,{[`${s}-list-danger`]:t==null?void 0:t.danger}),style:c.item,onClick:u=>{if(t!=null&&t.onItemClick){t.onItemClick(t);return}n==null||n({key:l,item:t,keyPath:[l],domEvent:u})},key:l},a.createElement(K,{title:t.label},a.createElement("div",{className:`${s}-icon`},t==null?void 0:t.icon))):null},dn=a.forwardRef((e,t)=>{const{items:n=[],onClick:o,dropdownProps:s={},fadeIn:r,fadeInLeft:c,variant:i="borderless",prefixCls:l,classNames:u={},rootClassName:m="",className:p="",styles:f={},style:d={},...g}=e,$=se(g,{attr:!0,aria:!0,data:!0}),{getPrefixCls:h,direction:k}=z(),E=h("actions",l),y=Pe("actions"),[b,O]=Y(E),P=h(),ae=r||c?`${P}-x-fade${c?"-left":""}`:"",ie=S(E,y.className,y.classNames.root,m,p,u.root,O,b,{[`${E}-rtl`]:k==="rtl"}),A={...y.style,...f.root,...d},J=a.useRef(null);return Xt(t,()=>({nativeElement:J.current})),a.createElement(xt,{motionName:ae},({className:ce},N)=>a.createElement("div",X({ref:kt(J,N)},$,{className:ie,style:A}),a.createElement($e.Provider,{value:{prefixCls:E,classNames:{item:S(y.classNames.item,u.item),itemDropdown:S(y.classNames.itemDropdown,u.itemDropdown)},styles:{item:{...y.styles.item,...f.item},itemDropdown:{...y.styles.itemDropdown,...f.itemDropdown}}}},a.createElement("div",{className:S(`${E}-list`,`${E}-variant-${i}`,ce)},n.map((Q,le)=>a.createElement(ln,{item:Q,onClick:o,dropdownProps:s,key:Q.key||le}))))))}),B=dn;B.Feedback=an;B.Copy=rn;B.Item=Oe;B.Audio=on;const mn=e=>{const{componentCls:t}=e;return{[t]:{[`${t}-header`]:{display:"flex",alignItems:"center",justifyContent:"space-between",background:e.colorBgTitle,color:e.colorTextTitle,padding:e.paddingSM,borderStartStartRadius:e.borderRadius,borderStartEndRadius:e.borderRadius},[`${t}-graph`]:{display:"flex",alignItems:"center",justifyContent:"center",border:`1px solid ${e.colorBgTitle}`,borderTop:"none",padding:e.paddingSM,background:e.colorBgContainer,overflow:"auto",borderEndEndRadius:e.borderRadius,borderEndStartRadius:e.borderRadius,height:"400px"},[`${t}-graph-hidden`]:{display:"none"},[`${t}-graph svg`]:{maxWidth:"100%",maxHeight:"100%",height:"auto",width:"auto"},[`${t}-code`]:{borderEndEndRadius:e.borderRadius,borderEndStartRadius:e.borderRadius,borderBottom:`1px solid ${e.colorBgTitle}`,borderInlineStart:`1px solid ${e.colorBgTitle}`,borderInlineEnd:`1px solid ${e.colorBgTitle}`,background:e.colorBgContainer,paddingInline:e.paddingSM,paddingBlock:e.paddingSM,overflow:"auto",height:"400px","pre,code":{whiteSpace:"pre",fontSize:e.fontSize,fontFamily:e.fontFamilyCode,lineHeight:2,borderRadius:0,border:"none"},"code[class*='language-'],pre[class*='language-']":{background:"none"}},[`&${t}-rtl`]:{direction:"rtl"}}}},un=e=>({colorBgTitle:e.colorFillContent,colorBorderCode:e.colorBorderSecondary,colorBorderGraph:e.colorBorderSecondary,colorTextTitle:e.colorText}),pn=Xe("Mermaid",e=>{const t=we(e,{});return[mn(t)]},un);var M=function(e){return e.Code="code",e.Image="image",e}(M||{});let fn=0;const kn=a.memo(e=>{var xe,ke;const{prefixCls:t,className:n,style:o,classNames:s={},styles:r={},header:c,children:i,highlightProps:l,onRenderTypeChange:u}=e,[m,p]=x.useState(M.Image),[f,d]=x.useState(1),[g,$]=x.useState({x:0,y:0}),[h,k]=x.useState(!1),[E,y]=x.useState({x:0,y:0}),b=x.useRef(null),O=`mermaid-${fn++}-${(i==null?void 0:i.length)||0}`;x.useEffect(()=>{ue.initialize({startOnLoad:!1,securityLevel:"strict",theme:"default",fontFamily:"monospace"})},[]);const[P]=re("Mermaid",D.Mermaid),{getPrefixCls:ae,direction:ie}=z(),A=ae("mermaid",t),[J,ce]=pn(A),N=Pe("mermaid"),Q=S(A,N.className,(xe=N.classNames)==null?void 0:xe.root,n,s.root,J,ce,{[`${A}-rtl`]:ie==="rtl"}),le=et(async()=>{if(!(!i||!b.current||m===M.Code))try{if(!await ue.parse(i,{suppressErrors:!0}))throw new Error("Invalid Mermaid syntax");const T=i.replace(/[`\s]+$/g,""),{svg:R}=await ue.render(O,T,b.current);b.current.innerHTML=R}catch{}},100);x.useEffect(()=>{m===M.Code&&b.current?b.current.innerHTML="":le()},[i,m]),x.useEffect(()=>{const C=b.current;if(!C||m!==M.Image)return;let T=0;const R=v=>{v.preventDefault(),v.stopPropagation();const F=Date.now();if(F-T<16)return;T=F;const G=v.deltaY>0?-.1:.1;d(_=>Math.max(.5,Math.min(3,_+G)))};return C.addEventListener("wheel",R,{passive:!1}),()=>{C.removeEventListener("wheel",R)}},[m]),x.useEffect(()=>{if(b.current&&m===M.Image){const C=b.current.querySelector("svg");C&&(C.style.transform=`scale(${f}) translate(${g.x}px, ${g.y}px)`,C.style.transformOrigin="center",C.style.transition=h?"none":"transform 0.1s ease-out",C.style.cursor=h?"grabbing":"grab")}},[f,g,m,h]);const He=C=>{m===M.Image&&(C.preventDefault(),k(!0),y({x:C.clientX,y:C.clientY}))},Fe=C=>{if(!h||m!==M.Image)return;C.preventDefault();const T=C.clientX-E.x,R=C.clientY-E.y;$(v=>({x:v.x+T/f,y:v.y+R/f})),y({x:C.clientX,y:C.clientY})},ye=()=>{k(!1)},_e=()=>{d(1),$({x:0,y:0})};if(!i)return null;const Be=async()=>{var Ee;const C=(Ee=b.current)==null?void 0:Ee.querySelector("svg");if(!C)return;const T=new XMLSerializer().serializeToString(C),R=document.createElement("canvas"),v=R.getContext("2d");if(!v)return;const{width:F,height:G}=C.getBoundingClientRect(),_=window.devicePixelRatio||1;R.width=F*_,R.height=G*_,R.style.width=`${F}px`,R.style.height=`${G}px`,v.scale(_,_);const de=new Image;de.onload=()=>{v.drawImage(de,0,0,F,G);const me=document.createElement("a");me.download=`${Date.now()}.png`,me.href=R.toDataURL("image/png",1),me.click()},de.src=`data:image/svg+xml;charset=utf-8,${encodeURIComponent(T)}`},Ge=()=>{d(C=>Math.min(C+.2,3))},Ue=()=>{d(C=>Math.max(C-.2,.5))},Ve=()=>{var T,R;if(c===null)return null;if(c)return c;const C=m===M.Image?[{key:"zoomIn",icon:a.createElement(Et,null),label:P.zoomIn,onItemClick:Ge},{key:"zoomOut",icon:a.createElement(It,null),label:P.zoomOut,onItemClick:Ue},{key:"zoomReset",actionRender:()=>a.createElement(K,{title:P.zoomReset},a.createElement(Rt,{type:"text",size:"small",onClick:_e},P.zoomReset))},{key:"download",icon:a.createElement(bt,null),label:P.download,onItemClick:Be}]:[{key:"copy",actionRender:()=>a.createElement(B.Copy,{text:i})}];return a.createElement("div",{className:S(`${A}-header`,(T=N.classNames)==null?void 0:T.header,s==null?void 0:s.header),style:{...(R=N.styles)==null?void 0:R.header,...r.header}},a.createElement(St,{options:[{label:P.image,value:M.Image},{label:P.code,value:M.Code}],value:m,onChange:v=>{p(v),u==null||u(v)}}),a.createElement(B,{items:C}))},We=()=>{var C,T,R,v;return a.createElement(a.Fragment,null,a.createElement("div",{className:S(`${A}-graph`,(C=N.classNames)==null?void 0:C.graph,m===M.Code&&`${A}-graph-hidden`,s==null?void 0:s.graph),style:{...(T=N.styles)==null?void 0:T.graph,...r.graph},ref:b,onMouseDown:He,onMouseMove:Fe,onMouseUp:ye,onMouseLeave:ye}),m===M.Code?a.createElement("div",{className:S(`${A}-code`,(R=N.classNames)==null?void 0:R.code,s==null?void 0:s.code),style:{...(v=N.styles)==null?void 0:v.code,...r.code}},a.createElement(tt,X({customStyle:{padding:0,background:"transparent"},language:"mermaid",wrapLines:!0},l),i.replace(/\n$/,""))):null)};return a.createElement("div",{className:Q,style:{...o,...N.style,...(ke=N.styles)==null?void 0:ke.root,...r.root}},Ve(),We())}),En={locale:"zh-cn",Conversations:{create:"新对话"},Sender:{stopLoading:"停止请求",speechRecording:"正在录音"},Actions:{feedbackLike:"喜欢",feedbackDislike:"不喜欢",audio:"播放语音",audioRunning:"语音播放中",audioError:"播放出错了",audioLoading:"正在加载语音"},Bubble:{editableOk:"确认",editableCancel:"取消"},Mermaid:{zoomIn:"放大",zoomOut:"缩小",zoomReset:"重置",download:"下载",code:"代码",image:"图片"}};export{kn as M,xn as X,yn as a,En as l}; diff --git a/axhub-make/admin/assets/chunks/use-feedback-bridge.js b/axhub-make/admin/assets/chunks/use-feedback-bridge.js new file mode 100644 index 0000000..df44999 --- /dev/null +++ b/axhub-make/admin/assets/chunks/use-feedback-bridge.js @@ -0,0 +1,299 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/vendor-export.js","assets/chunks/_commonjsHelpers.js"])))=>i.map(i=>d[i]); +import{R as s,c as Br,j as n,a as Ar}from"./vendor-react.js?v=1775123024591";import{P as Z,z as bn,M as kt,A as _o,B as re,h as jn,T as Mo,U as Lr,V as Nt,W as Dr,X as zr,Y as xn,Z as Bo,$ as Ao,a0 as eo,E as Or,a1 as we,S as Vt,a2 as Lo,a3 as at,a4 as Hr,a5 as Wr,a6 as Gr,a7 as Fr,G as De,a8 as Nr,a9 as $r,aa as Do,ab as zo,ac as sn,ad as Vr,H as to,ae as Yr,af as Ur,ag as Xr,ah as no,ai as Kr}from"./vendor-antd.js?v=1775123024591";import{_ as qr}from"./preload-helper.js?v=1775123024591";import{db as Ke,dc as ee}from"./vendor-common.js?v=1775123024591";const Zr=500,oo={enabled:!1,middleClickEnabled:!1,shortcuts:[null,null]},Qr=new Set(["Shift","Alt","Control","Meta"]);function yn(t){if(typeof t!="string")return null;const e=t.trim();return e?e==="Ctrl"?"Control":e==="Command"||e==="Cmd"?"Meta":Qr.has(e)?e:null:null}function Jr(t){return t==="Control"?"Ctrl":t==="Meta"?"Command":t??"未设置"}function cn(t){const e=Array.isArray(t==null?void 0:t.shortcuts)?t==null?void 0:t.shortcuts:[];return{enabled:!!(t!=null&&t.enabled),middleClickEnabled:!!(t!=null&&t.middleClickEnabled),shortcuts:[yn(e[0]),yn(e[1])]}}function ei(t,e){return t.enabled===e.enabled&&t.middleClickEnabled===e.middleClickEnabled&&t.shortcuts[0]===e.shortcuts[0]&&t.shortcuts[1]===e.shortcuts[1]}let wt=null;function ue(){if(wt!==null)return wt;if(typeof window>"u"||typeof navigator>"u")return wt=!1,!1;const t="ontouchstart"in window||navigator.maxTouchPoints!=null&&navigator.maxTouchPoints>0,e=window.innerWidth<=768;return wt=t&&e,wt}function el(){if(typeof document>"u")return;const t=document.body;if(!t)return;const e=t.style.transform;t.style.transform="translateZ(0)",requestAnimationFrame(()=>{t.style.transform=e||""})}let Oo=null;function ro(t){Oo=t}function St(){return Oo}const Ho=s.forwardRef((t,e)=>{const[r,o]=s.useState(t.defaultValue??""),[i,l]=s.useState(""),a=s.useRef(null);s.useImperativeHandle(e,()=>({getValue:()=>r,setError:c=>{l(c)},focus:c=>{const d=a.current;d&&(d.focus(),c&&d.select())}}),[r]);const g=c=>{o(c.target.value),i&&l("")},f=t.multiline?s.createElement(Z.TextArea,{ref:c=>{var d;a.current=((d=c==null?void 0:c.resizableTextArea)==null?void 0:d.textArea)??null},value:r,rows:t.rows??8,readOnly:t.readOnly,placeholder:t.placeholder,onChange:g}):s.createElement(Z,{ref:c=>{a.current=(c==null?void 0:c.input)??null},value:r,readOnly:t.readOnly,placeholder:t.placeholder,onChange:g});return s.createElement("div",{style:{display:"grid",gap:10}},t.content?s.createElement("div",{style:{whiteSpace:"pre-line"}},t.content):null,t.label?s.createElement("div",{style:{fontSize:12,fontWeight:600,color:"rgba(0,0,0,0.88)"}},t.label):null,f,i?s.createElement("div",{style:{fontSize:12,color:"#ff4d4f"}},i):null)});Ho.displayName="PromptDialogContent";function dn(t){if(t)return t;if(typeof document<"u")return document.body;throw new Error("No dialog container available")}function ti(t,e){const r=document.createElement("div");t.appendChild(r);const o=Br(r);return new Promise(i=>{const l=s.createRef(),a=()=>{window.setTimeout(()=>{o.unmount(),r.remove()},0)},g=c=>{i(c),a()},f=()=>s.createElement(_o,null,s.createElement(kt,{open:!0,title:e.title,okText:e.confirmText,cancelText:e.cancelText,centered:!0,closable:!0,maskClosable:!0,destroyOnHidden:!0,zIndex:2147483647,cancelButtonProps:e.cancelText?void 0:{style:{display:"none"}},onOk:async()=>{var d,m,u,b;const c=((d=l.current)==null?void 0:d.getValue())??e.defaultValue??"";if(!e.readOnly){const S=((m=e.validate)==null?void 0:m.call(e,c))??null;if(S)return(u=l.current)==null||u.setError(S),(b=l.current)==null||b.focus(!!e.selectOnOpen),Promise.reject()}g(c)},onCancel:()=>{g(null)}},s.createElement(Ho,{ref:l,content:e.content,label:e.label,defaultValue:e.defaultValue,placeholder:e.placeholder,readOnly:e.readOnly,multiline:e.multiline,rows:e.rows})));o.render(s.createElement(f)),window.setTimeout(()=>{var c;(c=l.current)==null||c.focus(!!e.selectOnOpen)},0)})}function tl(t){function e(l){if(typeof window>"u")return Promise.resolve(!!l.cancelText);const a=t.getUiRoot(),g=dn(a);return new Promise(f=>{let c=!1;const d=u=>{c||(c=!0,f(u))},m=St();if(m){m.confirm({title:l.title,content:l.content,okText:l.confirmText,cancelText:l.cancelText,okType:l.confirmTone==="primary"?"primary":"default",getContainer:()=>g,onOk:()=>d(!0),onCancel:()=>d(!1)});return}kt.confirm({title:l.title,content:l.content,okText:l.confirmText,cancelText:l.cancelText,okType:l.confirmTone==="primary"?"primary":"default",centered:!0,closable:!0,maskClosable:!0,getContainer:()=>g,onOk:()=>d(!0),onCancel:()=>d(!1)})})}function r(l){if(typeof window>"u")return Promise.resolve();const a=t.getUiRoot(),g=dn(a);return new Promise(f=>{const c=St();if(c){c.alert({title:l.title,content:l.content,okText:l.confirmText,okType:l.confirmTone==="primary"?"primary":"default",getContainer:()=>g,onOk:f});return}kt.confirm({title:l.title,content:l.content,okText:l.confirmText,okType:l.confirmTone==="primary"?"primary":"default",centered:!0,closable:!0,maskClosable:!0,getContainer:()=>g,cancelButtonProps:{style:{display:"none"}},onOk:f})})}function o(l){if(typeof window>"u")return Promise.resolve(l.defaultValue??null);const a=t.getUiRoot(),g=dn(a),f=St();return f?new Promise(c=>{f.prompt({title:l.title,content:l.content,label:l.label,defaultValue:l.defaultValue,placeholder:l.placeholder,okText:l.confirmText,cancelText:l.cancelText,readOnly:l.readOnly,multiline:l.multiline,rows:l.rows,selectOnOpen:l.selectOnOpen,validate:l.validate,getContainer:()=>g,onOk:d=>c(d),onCancel:()=>c(null)})}):ti(g,l)}function i(l,a){if(!(typeof window>"u"))try{const g=t.getUiRoot(),f=St();if(g&&f){f.message({type:l,content:a});return}g&&bn.config({getContainer:()=>g}),bn.open({type:l,content:a})}catch{}}return{confirm:e,alert:r,prompt:o,toast:i}}const ni=12,oi=12,Yt=268,ri=20,ii=24,lt=16,Lt=24,wn=280,io=104,Wo="编辑当前文本",Go="填写本元素的修改需求",Dt=16,En=10040,ai=10,un=8,li=28,it=44,pn=251,$t=44,si=36,te="data-we-popup-root",Fo=15,ci=1.8,ao=28,nl="__WEB_EDITOR_V2_PASTE_DEBUG__",No="#008F5D",$o="#00A36A",Vo="#007A4F",Yo="rgba(0, 143, 93, 0.16)",Uo="rgba(0, 143, 93, 0.28)",di="rgba(0, 143, 93, 0.28)",Xo="#00D68F",ui="#A1A1AA",pi="#71717A",ol="__webEditorV2ParentPasteBridgeCleanup__",gi={accent:No,accentBright:Xo,accentHover:$o,accentActive:Vo,accentSoft:Yo,accentRing:Uo,surface:"#FFFFFF",surfaceElevated:"#FFFFFF",surfaceMuted:"#FAFAFA",surfaceInteractive:"#F4F4F5",surfaceOverlay:"rgba(255, 255, 255, 0.96)",border:"rgba(39, 39, 42, 0.10)",borderStrong:"rgba(39, 39, 42, 0.16)",divider:"rgba(228, 228, 231, 0.95)",textPrimary:"#18181B",textSecondary:"#3F3F46",textMuted:"#A1A1AA",textSleeping:"#A1A1AA",textSleepingStrong:"#71717A",textDanger:"#DC2626",hoverSubtle:"rgba(244, 244, 245, 1)",hoverGhost:"rgba(15, 23, 42, 0.035)",toolbarShellBorder:"rgba(228, 228, 231, 0.80)",toolbarShellInset:"inset 0 1px 0 rgba(255, 255, 255, 0.88)",toolbarGlow:"0 0 20px -5px rgba(0, 143, 93, 0.20)",shadow:"0 24px 60px rgba(15, 23, 42, 0.14), 0 8px 24px rgba(15, 23, 42, 0.08)",shadowCompact:"0 18px 38px rgba(15, 23, 42, 0.14), 0 6px 16px rgba(15, 23, 42, 0.08)",overlayCloseBackground:"rgba(255, 255, 255, 0.94)"},fi={accent:No,accentBright:Xo,accentHover:$o,accentActive:Vo,accentSoft:Yo,accentRing:Uo,surface:"#121212",surfaceElevated:"#161616",surfaceMuted:"#18181B",surfaceInteractive:"#27272A",surfaceOverlay:"rgba(18, 18, 18, 0.96)",border:"rgba(255, 255, 255, 0.08)",borderStrong:"rgba(255, 255, 255, 0.12)",divider:"rgba(39, 39, 42, 0.95)",textPrimary:"rgba(255, 255, 255, 0.94)",textSecondary:"#D4D4D8",textMuted:"#A1A1AA",textSleeping:ui,textSleepingStrong:pi,textDanger:"#ff7875",hoverSubtle:"rgba(39, 39, 42, 0.80)",hoverGhost:"rgba(255, 255, 255, 0.04)",toolbarShellBorder:"rgba(39, 39, 42, 0.82)",toolbarShellInset:"inset 0 1px 0 rgba(255, 255, 255, 0.02)",toolbarGlow:"0 0 20px -5px rgba(0, 143, 93, 0.15)",shadow:"0 18px 48px rgba(0, 0, 0, 0.42), 0 4px 18px rgba(0, 0, 0, 0.28)",shadowCompact:"0 16px 32px rgba(0, 0, 0, 0.36), 0 4px 14px rgba(0, 0, 0, 0.22)",overlayCloseBackground:"rgba(18, 18, 18, 0.92)"};function X(t){return`var(${t})`}const h={accent:X("--we-editor-accent"),accentSoft:X("--we-editor-accent-soft"),accentRing:X("--we-editor-accent-ring"),surface:X("--we-editor-surface"),surfaceElevated:X("--we-editor-surface-elevated"),surfaceMuted:X("--we-editor-surface-muted"),surfaceInteractive:X("--we-editor-surface-interactive"),surfaceOverlay:X("--we-editor-surface-overlay"),border:X("--we-editor-border"),borderStrong:X("--we-editor-border-strong"),divider:X("--we-editor-divider"),textPrimary:X("--we-editor-text-primary"),textSecondary:X("--we-editor-text-secondary"),textMuted:X("--we-editor-text-muted"),textSleepingStrong:X("--we-editor-text-sleeping-strong"),textDanger:X("--we-editor-text-danger"),hoverSubtle:X("--we-editor-hover-subtle"),hoverGhost:X("--we-editor-hover-ghost"),toolbarShellBorder:X("--we-editor-toolbar-shell-border"),toolbarShellInset:X("--we-editor-toolbar-shell-inset"),toolbarGlow:X("--we-editor-toolbar-glow"),shadow:X("--we-editor-shadow"),shadowCompact:X("--we-editor-shadow-compact")};function Ko(t){return t==="dark"?fi:gi}function rl(t){const e=Ko(t);return{"--we-editor-accent":e.accent,"--we-editor-accent-bright":e.accentBright,"--we-editor-accent-hover":e.accentHover,"--we-editor-accent-active":e.accentActive,"--we-editor-accent-soft":e.accentSoft,"--we-editor-accent-ring":e.accentRing,"--we-editor-surface":e.surface,"--we-editor-surface-elevated":e.surfaceElevated,"--we-editor-surface-muted":e.surfaceMuted,"--we-editor-surface-interactive":e.surfaceInteractive,"--we-editor-surface-overlay":e.surfaceOverlay,"--we-editor-border":e.border,"--we-editor-border-strong":e.borderStrong,"--we-editor-divider":e.divider,"--we-editor-text-primary":e.textPrimary,"--we-editor-text-secondary":e.textSecondary,"--we-editor-text-muted":e.textMuted,"--we-editor-text-sleeping":e.textSleeping,"--we-editor-text-sleeping-strong":e.textSleepingStrong,"--we-editor-text-danger":e.textDanger,"--we-editor-hover-subtle":e.hoverSubtle,"--we-editor-hover-ghost":e.hoverGhost,"--we-editor-toolbar-shell-border":e.toolbarShellBorder,"--we-editor-toolbar-shell-inset":e.toolbarShellInset,"--we-editor-toolbar-glow":e.toolbarGlow,"--we-editor-shadow":e.shadow,"--we-editor-shadow-compact":e.shadowCompact,"--we-editor-overlay-close-background":e.overlayCloseBackground}}function il(t){const e=Ko(t);return{token:{colorPrimary:e.accent,colorInfo:e.accent,colorSuccess:e.accent,colorLink:e.accent,colorPrimaryHover:e.accentHover,colorPrimaryActive:e.accentActive,colorPrimaryBorder:e.accent,colorPrimaryBorderHover:e.accentHover,colorPrimaryBg:e.accentSoft,colorPrimaryBgHover:"rgba(0, 143, 93, 0.22)",borderRadius:8,fontSize:11,fontSizeSM:11,colorBgBase:e.surface,colorBgContainer:e.surfaceElevated,colorBgElevated:e.surfaceElevated,colorFill:t==="dark"?"rgba(255, 255, 255, 0.08)":"rgba(15, 23, 42, 0.06)",colorFillSecondary:e.surfaceMuted,colorFillTertiary:e.surfaceInteractive,colorText:e.textPrimary,colorTextSecondary:e.textSecondary,colorTextTertiary:e.textMuted,colorBorder:e.border,colorBorderSecondary:e.borderStrong,colorTextPlaceholder:e.textMuted,colorSplit:e.border,boxShadowSecondary:e.shadow,colorIcon:e.textSecondary,colorIconHover:e.textPrimary,controlOutline:e.accentSoft,controlOutlineWidth:2,controlHeight:32,controlHeightSM:28},components:{Button:{borderRadius:12,paddingInlineSM:8,controlHeightSM:28,defaultShadow:"none",primaryShadow:"none",dangerShadow:"none",textTextColor:e.textPrimary,textHoverBg:e.hoverSubtle,defaultBg:e.surfaceMuted,defaultColor:e.textPrimary,defaultBorderColor:e.border,defaultHoverBg:e.surfaceInteractive,defaultHoverColor:e.textPrimary,defaultHoverBorderColor:e.borderStrong},Collapse:{contentBg:"transparent",headerBg:"transparent",borderlessContentBg:"transparent",contentPadding:"0 0 8px",borderlessContentPadding:"0 0 8px"},Input:{colorBgContainer:e.surfaceMuted,activeBg:e.surfaceInteractive,hoverBg:e.surfaceInteractive,activeBorderColor:e.accent,hoverBorderColor:e.borderStrong,activeShadow:`0 0 0 2px ${e.accentSoft}`},InputNumber:{colorBgContainer:e.surfaceMuted,activeBg:e.surfaceInteractive,hoverBg:e.surfaceInteractive,activeBorderColor:e.accent,hoverBorderColor:e.borderStrong,activeShadow:`0 0 0 2px ${e.accentSoft}`},Select:{optionSelectedBg:e.accentSoft,optionActiveBg:e.hoverSubtle,selectorBg:e.surfaceMuted,activeBorderColor:e.accent,hoverBorderColor:e.borderStrong},Segmented:{trackBg:e.surfaceMuted,itemSelectedBg:e.surfaceInteractive,itemSelectedColor:e.textPrimary},Slider:{colorPrimary:e.accent,handleSize:8,railBg:t==="dark"?"rgba(255, 255, 255, 0.12)":"rgba(15, 23, 42, 0.12)",railHoverBg:t==="dark"?"rgba(255, 255, 255, 0.18)":"rgba(15, 23, 42, 0.18)",trackBg:e.accent,trackHoverBg:e.accentHover},ColorPicker:{colorPrimary:e.accent},Dropdown:{colorBgElevated:e.surfaceElevated,colorText:e.textPrimary,colorTextDescription:e.textSecondary,controlItemBgHover:e.hoverSubtle,controlItemBgActive:e.accentSoft,borderRadiusLG:16},Modal:{contentBg:e.surfaceElevated,headerBg:e.surfaceElevated,titleColor:e.textPrimary,titleFontSize:14,borderRadiusLG:18},Tooltip:{colorBgSpotlight:t==="dark"?"#050608":"#0F172A",colorTextLightSolid:"#FFFFFF"},Popover:{colorBgElevated:e.surfaceElevated,colorText:e.textPrimary}}}}const al={position:"fixed",inset:0,pointerEvents:"none",zIndex:10020},gn={position:"absolute",zIndex:10008,top:ii,right:lt,width:Yt,maxWidth:"calc(100vw - 32px)",display:"flex",flexDirection:"column",borderRadius:ri,background:h.surface,border:`1px solid ${h.border}`,boxShadow:h.shadow,pointerEvents:"auto",overflow:"hidden"},mi={position:"relative",flex:1,minHeight:0,overflowY:"auto",overflowX:"hidden",padding:"2px 14px 10px",display:"flex",flexDirection:"column",gap:2,scrollbarWidth:"none",msOverflowStyle:"none"},hi=` + @keyframes we-runtime-genie-spin { + from { transform: rotate(0deg); } + to { transform: rotate(360deg); } + } + + @keyframes we-runtime-genie-task-scan { + 0% { + top: calc(-1 * var(--we-runtime-genie-task-scan-size, 88px)); + opacity: 0; + } + 12% { + opacity: 1; + } + 100% { + top: 100%; + opacity: 0; + } + } + + .we-runtime-prop-panel__body { + display: flex; + flex-direction: column; + gap: 4px; + color: ${h.textPrimary}; + } + + .we-runtime-prop-panel__collapse.ant-collapse { + background: transparent; + } + + .we-runtime-prop-panel__collapse.ant-collapse > .ant-collapse-item { + border-bottom: 1px solid ${h.divider}; + } + + .we-runtime-prop-panel__collapse.ant-collapse > .ant-collapse-item:last-child { + border-bottom: 0; + } + + .we-runtime-prop-panel__collapse.ant-collapse + > .ant-collapse-item + > .ant-collapse-header + { + padding: 10px 0 8px; + align-items: center; + } + + .we-runtime-prop-panel__collapse.ant-collapse + > .ant-collapse-item + > .ant-collapse-header + .ant-collapse-expand-icon { + color: ${h.textMuted}; + } + + .we-runtime-prop-panel__collapse.ant-collapse + > .ant-collapse-item + > .ant-collapse-header + .ant-collapse-header-text { + font-size: 12px; + font-weight: 600; + color: ${h.textPrimary}; + } + + .we-runtime-prop-panel__collapse.ant-collapse > .ant-collapse-item > .ant-collapse-content { + background: transparent; + border-top: 0; + } + + .we-runtime-prop-panel__body .ant-input, + .we-runtime-prop-panel__body .ant-input-affix-wrapper, + .we-runtime-prop-panel__body .ant-input-number, + .we-runtime-prop-panel__body .ant-select-selector { + background: ${h.surfaceMuted}; + border-color: ${h.border}; + box-shadow: none; + } + + .we-runtime-prop-panel__body .ant-input:hover, + .we-runtime-prop-panel__body .ant-input-number:hover, + .we-runtime-prop-panel__body .ant-select:hover .ant-select-selector { + border-color: ${h.borderStrong}; + background: ${h.surfaceInteractive}; + } + + .we-runtime-prop-panel__body .ant-input:focus, + .we-runtime-prop-panel__body .ant-input-focused, + .we-runtime-prop-panel__body .ant-input-number-focused, + .we-runtime-prop-panel__body .ant-select-focused .ant-select-selector { + background: ${h.surfaceInteractive}; + } + + .we-runtime-prop-panel__body .ant-segmented { + background: ${h.surfaceMuted}; + padding: 2px; + border-radius: 10px; + } + + .we-runtime-prop-panel__body .ant-segmented-item { + min-height: 28px; + display: flex; + align-items: stretch; + justify-content: center; + } + + .we-runtime-prop-panel__body .ant-segmented-item-selected { + box-shadow: inset 0 0 0 1px ${h.borderStrong}; + border-radius: 8px; + } + + .we-runtime-prop-panel__body .ant-segmented-item-label { + width: 100%; + min-height: 28px; + display: inline-flex; + align-items: center; + justify-content: center; + line-height: 1.2; + text-align: center; + } + + .we-runtime-prop-panel__body .ant-slider { + margin-block: 4px; + } + + .we-runtime-prop-panel__body .ant-btn.ant-btn-text { + padding-inline: 6px; + color: ${h.textSecondary}; + } + + .we-runtime-prop-panel__body .ant-btn.ant-btn-text:hover { + color: ${h.textPrimary}; + background: ${h.hoverGhost}; + } + + .we-runtime-prop-panel__body .ant-empty-description { + color: ${h.textSecondary}; + } + + .we-runtime-prop-panel__body .ant-color-picker-trigger { + align-items: center; + } + + .we-runtime-prop-panel__body .we-runtime-prop-panel__unit-input { + width: 100%; + } + + .we-runtime-prop-panel__body .we-runtime-prop-panel__unit-input-amount { + text-align: left; + font-variant-numeric: tabular-nums; + } + + .we-runtime-prop-panel__body .we-runtime-prop-panel__unit-input .ant-select.ant-select-sm, + .we-runtime-prop-panel__body .we-runtime-prop-panel__unit-input .ant-input.ant-input-sm { + min-width: 0; + } + + .we-runtime-prop-panel__unit-select-popup { + min-width: 76px !important; + } + + .we-runtime-prop-panel__unit-select-popup .ant-select-item-option-content, + .we-runtime-prop-panel__unit-select-popup .ant-select-item { + white-space: nowrap; + } + + .we-runtime-prop-panel__body .ant-input-number-input, + .we-runtime-prop-panel__body .ant-select-selection-item, + .we-runtime-prop-panel__body .ant-select-selection-placeholder, + .we-runtime-prop-panel__body .ant-input, + .we-runtime-prop-panel__body textarea { + color: ${h.textPrimary}; + } + + .we-runtime-prop-panel__body .ant-select, + .we-runtime-prop-panel__body .ant-input-number, + .we-runtime-prop-panel__body .ant-input, + .we-runtime-prop-panel__body .ant-input-affix-wrapper { + width: 100%; + min-width: 0; + } + + .we-runtime-prop-panel__body .ant-select .ant-select-arrow { + color: ${h.textMuted}; + } + + .we-runtime-prop-panel__body .ant-switch { + background: ${h.borderStrong}; + flex: 0 0 auto; + } + + .we-runtime-prop-panel__body .ant-switch.ant-switch-checked { + background: ${h.accent}; + } + + .we-runtime-prop-panel__drag-handle { + cursor: grab; + } + + .we-runtime-prop-panel__drag-handle[data-dragging="true"] { + cursor: grabbing !important; + } + + .we-runtime-toolbar__spinner { + position: absolute; + inset: -150%; + animation: we-runtime-genie-spin linear infinite; + } + + .we-runtime-genie-task__scanner { + position: absolute; + left: 0; + right: 0; + height: var(--we-runtime-genie-task-scan-size, 88px); + top: calc(-1 * var(--we-runtime-genie-task-scan-size, 88px)); + display: flex; + align-items: center; + justify-content: center; + background: linear-gradient( + 180deg, + transparent 0%, + color-mix(in srgb, var(--we-runtime-genie-task-accent) 14%, transparent) 38%, + color-mix(in srgb, var(--we-runtime-genie-task-accent) 20%, transparent) 50%, + color-mix(in srgb, var(--we-runtime-genie-task-accent) 14%, transparent) 62%, + transparent 100% + ); + animation: we-runtime-genie-task-scan 2.8s linear infinite; + } + + .we-runtime-genie-task__scanner::after { + content: ""; + width: 100%; + height: 1px; + background: color-mix(in srgb, var(--we-runtime-genie-task-accent) 72%, white); + box-shadow: 0 0 14px color-mix(in srgb, var(--we-runtime-genie-task-accent) 64%, transparent); + } +`,ll=` + [${te}="true"] { + position: fixed; + inset: 0; + pointer-events: none; + z-index: ${En}; + } + + [${te}="true"] > * { + pointer-events: auto; + } + + [${te}="true"] .ant-dropdown, + [${te}="true"] .ant-dropdown-menu, + [${te}="true"] .ant-dropdown-menu-submenu, + [${te}="true"] .ant-dropdown-menu-item, + [${te}="true"] .ant-dropdown-menu-submenu-title, + [${te}="true"] .ant-dropdown-menu-title-content, + [${te}="true"] .ant-dropdown-menu-item-icon, + [${te}="true"] .ant-dropdown-menu-submenu-arrow, + [${te}="true"] .ant-dropdown-menu-item a { + color: ${h.textPrimary} !important; + } + + [${te}="true"] .ant-dropdown-menu, + [${te}="true"] .ant-dropdown .ant-dropdown-menu { + background: ${h.surfaceElevated} !important; + border: 1px solid ${h.border} !important; + box-shadow: ${h.shadow} !important; + } + + [${te}="true"] .ant-dropdown-menu-item-disabled, + [${te}="true"] .ant-dropdown-menu-item-disabled .ant-dropdown-menu-title-content { + color: ${h.textMuted} !important; + } +`,lo={position:"fixed",zIndex:En+10,width:wn,maxWidth:"calc(100vw - 24px)",padding:10,borderRadius:14,background:h.surfaceOverlay,border:`1px solid ${h.border}`,color:h.textPrimary,boxShadow:h.shadow,pointerEvents:"auto",isolation:"isolate",display:"flex",flexDirection:"column",gap:8},bi="/api/export/image-proxy",xi=80;function so(t){return Number.isFinite(t)?Math.max(1,Math.round(t)):1}function yi(t){return String(t??"").trim().replace(/[^a-zA-Z0-9._-]+/g,"-")||"element"}function wi(){return new Promise(t=>{requestAnimationFrame(()=>t())})}async function vi(t=2){const e=Math.max(1,Math.floor(t));for(let r=0;r"u"||!((e=window.location)!=null&&e.origin))return null;try{const r=new URL(t,document.baseURI).href,o=new URL(r);return!/^https?:$/i.test(o.protocol)||o.origin===window.location.origin?null:`${window.location.origin}${bi}?url=${encodeURIComponent(r)}`}catch{return null}}function qo(t){const e=[];if(!t||t==="none")return e;const r=/url\((['"]?)(.*?)\1\)/g;let o=null;for(;(o=r.exec(t))!==null;){const i=String(o[2]||"").trim();i&&e.push(i)}return e}function Si(t){try{return new URL(t,document.baseURI).href}catch{return null}}function Ci(t){const e=String(t??"").trim().toLowerCase();if(!e||e==="transparent"||e==="rgba(0, 0, 0, 0)"||e==="rgba(0,0,0,0)"||e==="hsla(0, 0%, 0%, 0)"||e==="hsla(0,0%,0%,0)")return!0;if(e.startsWith("#")){const l=e.slice(1);return l.length===4?l[3]==="0":l.length===8?l.slice(6)==="00":!1}const r=e.match(/^[a-z]+\((.+)\)$/);if(!r)return!1;const o=r[1].split(",").map(l=>l.trim()).filter(Boolean);if(o.length<4)return!1;const i=Number.parseFloat(o[3].replace("%",""));return Number.isFinite(i)?(o[3].includes("%"),i<=0):!1}function Ti(t){let e=t;for(;e;){const r=window.getComputedStyle(e);if(!Ci(r.backgroundColor))return r.backgroundColor;e=e.parentElement}}function ki(t){const e=t.getBoundingClientRect();let r=e.width,o=e.height;return t instanceof HTMLElement&&(r=Math.max(r,t.scrollWidth,t.clientWidth,t.offsetWidth),o=Math.max(o,t.scrollHeight,t.clientHeight,t.offsetHeight)),{width:so(r),height:so(o)}}function ji(t){const e=[];return[t,...Array.from(t.querySelectorAll("*"))].forEach(o=>{if(o instanceof HTMLImageElement){const m=o.getAttribute("src"),u=o.currentSrc||m,b=u?vn(u):null;if(!u||!b)return;const S=o.getAttribute("srcset"),T=o.getAttribute("sizes");o.setAttribute("src",b),o.removeAttribute("srcset"),o.removeAttribute("sizes"),e.push(()=>{m!==null?o.setAttribute("src",m):o.removeAttribute("src"),S!==null?o.setAttribute("srcset",S):o.removeAttribute("srcset"),T!==null?o.setAttribute("sizes",T):o.removeAttribute("sizes")});return}if(!(o instanceof HTMLElement))return;const i=o.style.backgroundImage,l=window.getComputedStyle(o).backgroundImage,a=i||l,g=qo(a);if(g.length===0)return;let f=a,c=!1;if(g.forEach(m=>{const u=vn(m);if(!u)return;const b=`url("${u}")`;f=f.replace(`url(${m})`,b).replace(`url('${m}')`,b).replace(`url("${m}")`,b),c=!0}),!c||f===a)return;const d=o.style.backgroundImage;o.style.setProperty("background-image",f,"important"),e.push(()=>{d?o.style.backgroundImage=d:o.style.removeProperty("background-image")})}),()=>{for(let o=e.length-1;o>=0;o-=1)e[o]()}}function co(t){return typeof t.decode=="function"?t.decode().catch(()=>{}):Promise.resolve()}async function Ei(t){const e=[t,...Array.from(t.querySelectorAll("img"))].filter(r=>r instanceof HTMLImageElement);await Promise.all(e.map(async r=>{if(r.complete){r.naturalWidth>0&&await co(r);return}await new Promise(o=>{const i=()=>{r.removeEventListener("load",l),r.removeEventListener("error",l)},l=()=>{i(),o()};r.addEventListener("load",l,{once:!0}),r.addEventListener("error",l,{once:!0})}),await co(r)}))}async function Ri(t){await new Promise(e=>{const r=new Image;r.decoding="async",r.loading="eager";const o=()=>{r.onload=null,r.onerror=null},i=()=>{o(),e()};r.onload=i,r.onerror=i,r.src=t,r.complete&&i()})}async function Pi(t){const e=new Set;[t,...Array.from(t.querySelectorAll("*"))].forEach(o=>{if(!(o instanceof HTMLElement))return;const i=window.getComputedStyle(o).backgroundImage;qo(i).forEach(l=>{const a=vn(l)??Si(l);a&&e.add(a)})}),await Promise.all(Array.from(e).map(o=>Ri(o)))}async function Ii(){if(!(typeof document>"u"||!("fonts"in document)))try{await document.fonts.ready}catch{}}async function _i(t){await Promise.all([Ii(),Ei(t),Pi(t)]),await vi(2),await new Promise(e=>window.setTimeout(e,xi))}async function Mi(t,e){if(!(t instanceof HTMLElement||t instanceof SVGElement))throw new Error("当前元素不支持截图。");const r=await qr(()=>import("./vendor-export.js?v=1775123024591").then(d=>d.i),__vite__mapDeps([0,1])),{width:o,height:i}=ki(t),l=Ti(t),a=Math.max(1,Math.min(2,window.devicePixelRatio||2)),g=ji(t),c={boxSizing:window.getComputedStyle(t).boxSizing||"border-box"};try{await _i(t);const d=await r.toPng(t,{width:o,height:i,canvasWidth:o,canvasHeight:i,pixelRatio:a,skipAutoScale:!0,backgroundColor:l,skipFonts:!1,cacheBust:!1,includeQueryParams:!0,style:c});return{name:`${yi(e)}.png`,data:d,width:o,height:i}}finally{g()}}const uo=En+5,Bi=.85,fn=120,Ai=16,Rn=12,Li="rgba(7, 10, 18, 0.18)",Di="rgba(18, 18, 18, 0.92)",zi="rgba(255, 255, 255, 0.10)";function Oi(t,e,r){try{const o=t.getBoundingClientRect();if(!o.width||!o.height)return null;const i=t.cloneNode(!0),l=window.getComputedStyle(t),a=["font-family","font-size","font-weight","line-height","letter-spacing","color","background","background-color","background-image","border","border-radius","box-shadow","padding","margin","text-align","display","flex-direction","align-items","justify-content","gap","overflow","white-space","text-overflow","text-decoration","opacity"];for(const u of a){const b=l.getPropertyValue(u);b&&i.style.setProperty(u,b)}i.style.pointerEvents="none",i.style.userSelect="none",i.style.margin="0";const g=Math.min(1,e/o.width,r/o.height),f=o.width*g,c=o.height*g,d=document.createElement("div");d.style.width=`${f}px`,d.style.height=`${c}px`,d.style.overflow="hidden",d.style.borderRadius=`${Rn}px`,d.style.position="relative";const m=document.createElement("div");return m.style.width=`${o.width}px`,m.style.height=`${o.height}px`,m.style.transform=`scale(${g})`,m.style.transformOrigin="top left",m.style.pointerEvents="none",m.appendChild(i),d.appendChild(m),{node:d,cleanup:()=>{d.remove()}}}catch{return null}}async function Hi(t,e,r){try{const o=t.getBoundingClientRect();if(!o.width||!o.height)return null;const i=await Mi(t,"selected-element-preview"),l=Math.min(1,e/i.width,r/i.height),a=i.width*l,g=i.height*l,f=document.createElement("div");f.style.width=`${a}px`,f.style.height=`${g}px`,f.style.overflow="hidden",f.style.borderRadius=`${Rn}px`,f.style.position="relative";const c=document.createElement("img");return c.src=i.data,c.alt="selected element preview",c.width=Math.max(1,Math.round(a)),c.height=Math.max(1,Math.round(g)),c.style.width=`${a}px`,c.style.height=`${g}px`,c.style.display="block",c.style.objectFit="contain",c.style.pointerEvents="none",c.style.userSelect="none",f.appendChild(c),{node:f,cleanup:()=>{c.src="",f.remove()}}}catch{return null}}function Wi(t){const{currentTarget:e,promptVisible:r,promptCardTop:o,onDismiss:i}=t,l=s.useRef(null),[a,g]=s.useState(!1),f=s.useRef(0),c=ue()&&r&&!!e;return s.useEffect(()=>{c&&(f.current=Date.now())},[c]),s.useEffect(()=>{if(!c){g(!1);return}const d=requestAnimationFrame(()=>g(!0));return()=>cancelAnimationFrame(d)},[c]),s.useEffect(()=>{const d=l.current;if(!d||!e||!c){d&&(d.innerHTML="");return}const m=window.innerWidth*Bi;let u=!1,b=null;return d.innerHTML="",(async()=>{const S=await Hi(e,m,fn)??Oi(e,m,fn);if(!S){u||(d.innerHTML="");return}if(u){S.cleanup();return}b=S.cleanup,d.innerHTML="",d.appendChild(S.node)})(),()=>{u=!0,b==null||b(),d&&(d.innerHTML="")}},[e,c]),c?n.jsxs(n.Fragment,{children:[n.jsx("div",{"data-mobile-selection-overlay":"true",[te]:"true",style:{position:"fixed",inset:0,zIndex:uo,background:Li,opacity:a?1:0,transition:"opacity 200ms ease-out",pointerEvents:"auto",touchAction:"none",backdropFilter:"blur(3px)",WebkitBackdropFilter:"blur(3px)",WebkitTapHighlightColor:"transparent"},onPointerDown:d=>{d.preventDefault(),d.stopPropagation(),!(Date.now()-f.current<500)&&(i==null||i())},onClick:d=>{d.preventDefault(),d.stopPropagation()}}),n.jsxs("div",{"data-mobile-selection-thumbnail":"true",style:{position:"fixed",zIndex:uo+1,left:"50%",top:Math.max(8,o-Ai),transform:`translateX(-50%) translateY(calc(-100%)) ${a?"translateY(0px)":"translateY(8px)"}`,maxWidth:"calc(100vw - 32px)",maxHeight:fn,padding:8,background:Di,border:`1px solid ${zi}`,borderRadius:Rn+4,boxShadow:"0 8px 32px rgba(0, 0, 0, 0.36)",pointerEvents:"none",opacity:a?1:0,transition:"opacity 250ms ease-out, transform 250ms ease-out",display:"flex",alignItems:"center",justifyContent:"center"},children:[n.jsx("div",{style:{position:"absolute",top:-24,left:"50%",transform:"translateX(-50%)",fontSize:11,fontWeight:600,color:"rgba(255, 255, 255, 0.72)",whiteSpace:"nowrap",pointerEvents:"none",opacity:a?1:0,transition:"opacity 300ms ease-out 100ms"},children:"当前选中元素"}),n.jsx("div",{ref:l})]})]}):null}function Gi(){return typeof window<"u"&&window.visualViewport&&Number.isFinite(window.visualViewport.height)?window.visualViewport.height:typeof window<"u"?window.innerHeight:0}function Fi(t){const{anchorRect:e,cardWidth:r,cardHeight:o,viewportWidth:i,viewportHeight:l,propertyPanelEnabled:a,safePaddingPx:g=12,propertyPanelWidth:f=268,propertyPanelRight:c=16,anchorGapPx:d=12}=t;if(ue()){const E=Gi(),B=8,L=B,_=Math.max(B,E-o-B);return{left:Math.round(L),top:Math.round(_)}}const m=a?i-(f+c+g):i-g,u=Math.min(i-g-r,m-r),b=e.left+e.width/2,S=Math.min(u,Math.max(g,b-r/2)),T=e.top+e.height+d,k=e.top-d-o,I=l-T-g=g?k:T,D=Math.min(l-g-o,Math.max(g,I));return{left:Math.round(S),top:Math.round(D)}}function Ni(t){return`导出到 ${t}`}function $i(t){var l,a;const{tool:e}=t;if(!e)return{visible:!1,disabled:!0,title:"",label:""};const r=Ni(e),o=((l=t.canExportSelectionToDesignTool)==null?void 0:l.call(t,e,t.currentTarget))??!0;if(!t.onExportSelectionToDesignTool||o===!1)return{visible:!1,disabled:!0,title:r,label:r};const i=(a=t.getExportSelectionToDesignToolBlockReason)==null?void 0:a.call(t,e,t.currentTarget);return{visible:t.uiMode==="bubble-card"&&!t.toolMinimized,disabled:!t.currentTarget||!!i,title:i??r,label:r}}function Vi(t){const{tool:e,currentTarget:r,onExportSelectionToDesignTool:o}=t;return!e||!r||!r.isConnected||!o?!1:(o(e,r),!0)}function Sn(t){return t?"Genie 正在修改":"Genie 正在启动"}function Yi(t){var e;return t.uiMode==="bubble-card"&&!t.toolMinimized&&!!t.currentTarget&&!!t.onSendToGenie&&!!(((e=t.getGenieBridgeAvailable)==null?void 0:e.call(t))??!1)}function Ui(t){const{currentTarget:e,onSendToGenie:r}=t;return!e||!e.isConnected||!r?!1:(r(e),!0)}function Xi(t){var k,M;const e=!!(((k=t.getGenieBridgeConnected)==null?void 0:k.call(t))??!1),r=!!t.pageTaskRunning,o=!!t.pageTaskSessionReady,i=!!t.currentTaskRunning,l=!!t.currentTaskSessionReady,a=!!t.hasReusableConversation,g=a||r&&o,f=r&&!g,c=t.visualState==="awake"&&(e||r)?"awake":"sleeping",d=t.waking?"waking":r?"working":c,m=(M=t.getSendPromptToGenieBlockReason)==null?void 0:M.call(t),u=!t.toolMinimized&&(d==="awake"||d==="working"),b=m??(e?g?"继续追加到当前 Genie 对话":f?Sn(!1):"发送给 Genie":"Genie 连接未建立,请稍后重试。"),S=i?t.canInterrupt?"停止 Genie 修改":Sn(l):"停止 Genie 修改";return{robotState:d,robotDisabled:d==="working"||d==="waking",robotLoading:d==="waking",robotTitle:d==="working"?"正在为你修改":d==="waking"?"正在唤醒 Genie":d==="awake"?"Genie 已苏醒":"唤醒 Genie",sendVisible:u,sendDisabled:!t.onSendPromptToGenie||!e||f||!!m,sendLoading:!!t.sending,sendTitle:b,sendRequiresConfirm:!a&&!r,interruptVisible:u,interruptDisabled:!i||!t.canInterrupt||!!t.interrupting,interruptLoading:!!t.interrupting,interruptTitle:S}}function Ki(t){var d,m;const e=!!(((d=t.getGenieBridgeConnected)==null?void 0:d.call(t))??!1),r=!!t.pageTaskRunning,o=!!t.pageTaskSessionReady;t.currentTaskRunning;const l=!!t.hasReusableConversation||r&&o,a=r&&!l,g=t.visualState==="awake"&&(e||r)?"awake":"sleeping",f=(m=t.getSendCurrentElementPromptToGenieBlockReason)==null?void 0:m.call(t),c=f??(e?l?"继续追加到当前 Genie 对话":a?Sn(!1):"发送给 Genie":"Genie 连接未建立,请稍后重试。");return{visible:g==="awake",disabled:!t.onSendCurrentElementPromptToGenie||!e||a||!!f,loading:!!t.sending,title:c,requiresConfirm:!1}}async function qi(t){const{currentTarget:e,onConfirmText:r,onConfirmNote:o,onDismissSelection:i,onSendCurrentElementPromptToGenie:l}=t;return!e||!l?!1:(await r(),await o(),i==null||i(),await l(e),!0)}const Zi={neutral:{color:h.textPrimary},accent:{color:h.accent,background:"rgba(0, 143, 93, 0.14)"},danger:{color:h.textDanger,background:"rgba(255, 120, 117, 0.12)"},dark:{color:h.textPrimary}};function Zo(t){const{children:e,size:r=Fo,strokeWidth:o=ci}=t;return n.jsx("svg",{width:r,height:r,viewBox:"0 0 16 16",fill:"none","aria-hidden":"true",style:{display:"block"},children:n.jsx("g",{stroke:"currentColor",strokeWidth:o,strokeLinecap:"round",strokeLinejoin:"round",children:e})})}function Ut(){return n.jsx(Zo,{children:n.jsx("path",{d:"M8 2.5l1.4 4.1L13.5 8l-4.1 1.4L8 13.5 6.6 9.4 2.5 8l4.1-1.4L8 2.5z"})})}function Cn(){return n.jsxs(Zo,{children:[n.jsx("path",{d:"M4.5 4.5l7 7"}),n.jsx("path",{d:"M11.5 4.5l-7 7"})]})}function Qo(t){const{title:e,children:r,disabled:o}=t;return n.jsx(Mo,{title:e,children:n.jsx("span",{style:{display:"inline-flex"},children:s.cloneElement(r,{disabled:o})})})}function Ie(t){const{title:e,icon:r,onClick:o,disabled:i,loading:l,tone:a="neutral",style:g}=t,[f,c]=s.useState(!1),d=Zi[a],u=ue()?Math.max(ao,36):ao;return n.jsx(Qo,{title:e,disabled:i,children:n.jsx(re,{size:"small",type:"text","aria-label":e,icon:l?n.jsx(jn,{spin:!0}):r,disabled:i,onClick:o,onMouseEnter:()=>c(!0),onMouseLeave:()=>c(!1),danger:a==="danger",style:{width:u,minWidth:u,height:u,padding:0,fontSize:Fo,borderRadius:999,display:"inline-flex",alignItems:"center",justifyContent:"center",border:"none",boxShadow:"none",touchAction:"manipulation",color:i?h.textMuted:d.color??h.textPrimary,background:i?"transparent":f?d.background??h.hoverSubtle:"transparent",transition:"background-color 220ms ease, color 220ms ease, transform 220ms ease",...g}})})}function Pe(t){const{title:e,icon:r,awake:o,disabled:i=!1,loading:l=!1,onClick:a,ariaLabel:g}=t,[f,c]=s.useState(!1),m=ue()?36:32,u=i?o?h.textMuted:h.textSleepingStrong:o?h.textSecondary:h.textSleepingStrong,b=f&&!i?o?h.hoverSubtle:h.hoverGhost:"transparent",S=h.textPrimary;return n.jsx(Qo,{title:e,disabled:i,children:n.jsx("button",{type:"button","aria-label":g??e,disabled:i,onClick:a,onMouseEnter:()=>c(!0),onMouseLeave:()=>c(!1),style:{width:m,minWidth:m,height:m,padding:0,border:"none",borderRadius:999,background:b,color:f&&!i?S:u,display:"inline-flex",alignItems:"center",justifyContent:"center",cursor:i?"not-allowed":"pointer",touchAction:"manipulation",transition:"background-color 220ms ease, color 220ms ease, transform 220ms ease",transform:f&&!i?"translateY(-0.5px)":"translateY(0)"},children:n.jsx("span",{style:{display:"inline-flex",alignItems:"center",justifyContent:"center"},children:l?n.jsx(jn,{spin:!0}):r})})})}function Qi(t){const{awake:e,children:r,dragHandleRef:o,fullWidth:i=!1,style:l}=t,a=h.toolbarShellBorder,g=h.toolbarShellInset,f=e?h.toolbarGlow:h.shadowCompact;return n.jsxs("div",{ref:o,className:"we-runtime-prop-panel__drag-handle",style:{position:"relative",display:"inline-flex",alignItems:"center",height:$t,boxSizing:"border-box",borderRadius:999,padding:1,overflow:"visible",boxShadow:f,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",transition:"box-shadow 260ms ease, transform 220ms ease",...l},children:[n.jsx("div",{style:{position:"absolute",inset:0,borderRadius:999,background:a}}),n.jsx(Ke,{children:e?n.jsxs(ee.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},transition:{duration:.8},style:{position:"absolute",inset:0,zIndex:0,overflow:"hidden",borderRadius:999},children:[n.jsx("div",{className:"we-runtime-toolbar__spinner",style:{background:"conic-gradient(from 0deg, transparent 0deg 320deg, rgba(0, 143, 93, 0.4) 360deg)",animationDuration:"6s"}}),n.jsx("div",{className:"we-runtime-toolbar__spinner",style:{background:"conic-gradient(from 0deg, transparent 0deg 320deg, rgba(0, 143, 93, 0.18) 360deg)",animationDuration:"8s",animationDirection:"reverse"}})]},"toolbar-ring"):null}),n.jsx("div",{style:{position:"relative",zIndex:1,display:"flex",alignItems:"center",gap:4,width:i?"100%":void 0,height:"100%",minHeight:"100%",boxSizing:"border-box",borderRadius:999,padding:"4px 6px",background:h.surface,boxShadow:g,minWidth:i?0:"unset"},children:r})]})}function zt(t){return(t==null?void 0:t.status)==="pending"||(t==null?void 0:t.status)==="created"}function Ji(t){return(t==null?void 0:t.status)==="completed"||(t==null?void 0:t.status)==="error"}function Jo(t){var c,d,m;const e=((c=t.getElementGenieTaskState)==null?void 0:c.call(t,t.currentTarget))??null,r=((d=t.getVisibleElementGenieTaskStates)==null?void 0:d.call(t))??[],o=r.some(u=>zt(u)),i=!!(zt(e)&&((e==null?void 0:e.status)==="created"||e!=null&&e.sessionId)),l=r.some(u=>zt(u)&&(u.status==="created"||!!u.sessionId)),a=!!(((m=t.getHasReusableGenieConversation)==null?void 0:m.call(t))??!1),g=t.getGenieBridgeConnected?!!t.getGenieBridgeConnected():!0,f=o||t.visualState==="awake"&&(g||a)?"awake":"sleeping";return{currentTask:e,currentTaskRunning:zt(e),currentTaskSessionReady:i,currentTaskTerminal:Ji(e),pageTaskRunning:o,pageTaskSessionReady:l,hasReusableConversation:a,effectiveVisualState:f}}const vt=28,ea=220,ta=160,mn=12;function er(t){const{images:e,onRemoveImage:r}=t,[o,i]=s.useState(null);return e.length===0?null:n.jsx("div",{style:{display:"flex",alignItems:"center",gap:8,flexWrap:"wrap"},children:e.map(l=>{const a=o===l.id;return n.jsxs("div",{onMouseEnter:()=>i(l.id),onMouseLeave:()=>i(g=>g===l.id?null:g),style:{position:"relative",width:vt,height:vt},children:[a?n.jsx("div",{style:{position:"absolute",left:"50%",bottom:vt+10,transform:"translateX(-50%)",width:ea,height:ta,padding:8,borderRadius:mn,background:h.surface,border:`1px solid ${h.borderStrong}`,boxShadow:h.shadow,display:"flex",alignItems:"center",justifyContent:"center",zIndex:2},children:n.jsx("img",{src:l.data,alt:l.name,style:{width:"100%",height:"100%",objectFit:"contain",borderRadius:mn,background:h.surfaceMuted}})}):null,n.jsx("button",{type:"button",onClick:()=>{a&&r(l.id)},style:{width:vt,height:vt,borderRadius:mn,overflow:"hidden",border:`1px solid ${a?h.borderStrong:h.border}`,background:a?h.surfaceElevated:h.surfaceMuted,padding:0,cursor:a?"pointer":"default",display:"flex",alignItems:"center",justifyContent:"center",boxShadow:a?h.shadow:"none"},children:a?n.jsx(Lr,{style:{fontSize:12,color:h.textPrimary}}):n.jsx("img",{src:l.data,alt:l.name,style:{width:"100%",height:"100%",objectFit:"cover"}})})]},l.id)})})}function na(t){return t.replace(/^样式\s+/u,"").trim()}function oa(t,e=2){const r=t.map(a=>na(String(a??""))).filter(Boolean);if(r.length<=e)return r;const o=r.slice(0,e),i=r.length-e,l=r[r.length-1]??"";return l.startsWith("还有 ")?[...o.slice(0,Math.max(0,e-1)),l]:[...o,`还有 ${i} 项样式修改...`]}const sl=s.forwardRef(function(e,r){var Ve;const{options:o,currentTarget:i,anchorRect:l,uiMode:a,interactionProfile:g,designAdjustmentTool:f,toolMinimized:c,propertyPanelEnabled:d,styleDesignEnabled:m,genieVisualState:u,onSendCurrentElementPromptToGenie:b,getGenieBridgeConnected:S,getHasReusableGenieConversation:T,getSendCurrentElementPromptToGenieBlockReason:k,canExportSelectionToDesignTool:M,onExportSelectionToDesignTool:I,getExportSelectionToDesignToolBlockReason:D,onHoverSelectionSuppressedChange:E,onSelectionInteractionLockChange:B,onUiModeChange:L,onTargetChange:_,onAnchorRectChange:F,onPromptCardVisibleChange:j,canEditText:C,savedText:z,draftText:J,textDirty:je,onTextDraftChange:ct,onCancelText:qe,onConfirmText:pe,images:ve,onRemoveImage:Ee,onNotePasteCapture:ze,canEditNote:Oe,draftNote:Me,noteDirty:y,onDraftChange:w,onClearCurrentElementEdits:$,onCancelNote:ge,onConfirmNote:le,onDismissSelection:Q}=e,be=s.useRef(null),se=s.useRef(null),Se=s.useRef(null),[dt,ut]=s.useState(null),[ce,pt]=s.useState(null),[Be,gt]=s.useState(!1),[,qt]=s.useState(0);s.useImperativeHandle(r,()=>({setTarget(x){_(x)},setAnchorRect(x){F(x)},refresh(){qt(x=>x+1)}}),[F,_]);const jt=s.useCallback(()=>{var q,oe;const x=(q=se.current)==null?void 0:q.querySelector("input");if(!(x instanceof HTMLInputElement)||x.disabled)return!1;const A=document.activeElement;A instanceof HTMLElement&&A!==x&&!((oe=se.current)!=null&&oe.contains(A))&&A.blur(),x.focus({preventScroll:!0});try{x.setSelectionRange(x.value.length,x.value.length)}catch{}return!0},[]),Ae=s.useCallback(()=>{var oe,de;const x=(oe=Se.current)==null?void 0:oe.querySelector("textarea");if(!(x instanceof HTMLTextAreaElement)||x.disabled)return!1;const A=document.activeElement;A instanceof HTMLElement&&A!==x&&!((de=Se.current)!=null&&de.contains(A))&&A.blur(),x.focus({preventScroll:!0});const q=x.value.length;try{x.setSelectionRange(q,q)}catch{}return!0},[]),He=s.useCallback((x=6)=>{let A=0,q=x;const oe=()=>{var Re,Ye;const de=(Re=Se.current)==null?void 0:Re.querySelector("textarea");if(de instanceof HTMLTextAreaElement&&!de.disabled){if(document.activeElement===de)return;Ae()}else{const bt=(Ye=se.current)==null?void 0:Ye.querySelector("input");if(!(C&&bt instanceof HTMLInputElement&&!bt.disabled)||document.activeElement===bt)return;jt()}q-=1,q>0&&(A=window.requestAnimationFrame(oe))};return A=window.requestAnimationFrame(oe),()=>{A&&window.cancelAnimationFrame(A)}},[C,jt,Ae]),ie=!!(i&&l&&!c&&a==="bubble-card");s.useLayoutEffect(()=>{if(!ie){pt(null);return}const x=be.current;if(!x)return;const A=()=>{const oe=x.getBoundingClientRect();if(!Number.isFinite(oe.width)||!Number.isFinite(oe.height))return;const de={width:Math.max(wn,Math.round(oe.width)),height:Math.max(io,Math.round(oe.height))};pt(Re=>Re&&Re.width===de.width&&Re.height===de.height?Re:de)};if(A(),typeof ResizeObserver>"u")return;const q=new ResizeObserver(()=>A());return q.observe(x),()=>q.disconnect()},[C,Me,J,ve.length,ie,d]);const[Et,ft]=s.useState(0);s.useEffect(()=>{if(!ue())return;const x=window.visualViewport;if(!x)return;const A=()=>ft(q=>q+1);return x.addEventListener("resize",A),()=>x.removeEventListener("resize",A)},[]);const ye=s.useMemo(()=>{if(!i||!l||c||a!=="bubble-card")return null;const x=ue()?Math.max(200,window.innerWidth-16):(ce==null?void 0:ce.width)??wn;return Fi({anchorRect:l,cardWidth:x,cardHeight:(ce==null?void 0:ce.height)??io,viewportWidth:window.innerWidth,viewportHeight:window.innerHeight,propertyPanelEnabled:d,safePaddingPx:oi,propertyPanelWidth:Yt,propertyPanelRight:lt,anchorGapPx:ni})},[l,i,ce,d,c,a,Et]),ae=!!(i&&ye&&ce&&!c&&a==="bubble-card");s.useEffect(()=>(j==null||j(ae),()=>j==null?void 0:j(!1)),[j,ae]),s.useEffect(()=>{if(!ae||!i||c||a!=="bubble-card")return;if(!ue())return He();const x=window.setTimeout(()=>{He(10)},260);return()=>{window.clearTimeout(x)}},[i,He,ae,c,a]),s.useEffect(()=>{if(!ae||a!=="bubble-card")return;const x=A=>{const q=be.current;!q||!(A.target instanceof Node)||q.contains(A.target)&&(A.preventDefault(),A.stopPropagation())};return window.addEventListener("wheel",x,{capture:!0,passive:!1}),()=>{window.removeEventListener("wheel",x,!0)}},[ae,a]);const We=s.useCallback(async()=>{var A;await le();const x=(A=Se.current)==null?void 0:A.querySelector("textarea");x instanceof HTMLTextAreaElement&&x.blur(),Q==null||Q()},[le,Q]),Ze=s.useCallback(()=>{var A;ge();const x=(A=Se.current)==null?void 0:A.querySelector("textarea");x instanceof HTMLTextAreaElement&&x.blur(),Q==null||Q()},[ge,Q]),mt=s.useCallback(async()=>{var A;await pe(),await le();const x=document.activeElement;x instanceof HTMLElement&&((A=be.current)!=null&&A.contains(x))&&x.blur(),Q==null||Q()},[le,pe,Q]);s.useEffect(()=>{ut(o.container.querySelector(`[${te}="true"]`))},[o.container]),s.useEffect(()=>{ae||(E(!1),B(!1))},[E,B,ae]),s.useEffect(()=>()=>{E(!1),B(!1)},[E,B]);const Zt=Yi({currentTarget:i,uiMode:a,toolMinimized:c,onSendToGenie:o.onSendToGenie,getGenieBridgeAvailable:o.getGenieBridgeAvailable}),Le=$i({tool:f,currentTarget:i,uiMode:a,toolMinimized:c,onExportSelectionToDesignTool:I,canExportSelectionToDesignTool:M,getExportSelectionToDesignToolBlockReason:D}),Rt=g==="text-annotation",{currentTask:V,currentTaskRunning:fe,currentTaskTerminal:Qt,pageTaskRunning:Qe,pageTaskSessionReady:Jt,hasReusableConversation:Ge,effectiveVisualState:Je}=Jo({currentTarget:i,visualState:u,getElementGenieTaskState:o.getElementGenieTaskState,getVisibleElementGenieTaskStates:o.getVisibleElementGenieTaskStates,getHasReusableGenieConversation:T,getGenieBridgeConnected:S});(V==null?void 0:V.sessionUrl)??(V!=null&&V.sessionId&&`${V.sessionId}`);const ht=oa(((Ve=o.getElementStyleSummaryLines)==null?void 0:Ve.call(o,i))??[]),Fe=y||je,et=(()=>{const x=k==null?void 0:k(i);if(!(x==="当前元素没有可发送给 Genie 的编辑"&&Fe))return x})(),tt=Ki({visualState:Je,sending:Be,pageTaskRunning:Qe,pageTaskSessionReady:Jt,currentTaskRunning:fe,onSendCurrentElementPromptToGenie:b,getGenieBridgeConnected:S,getSendCurrentElementPromptToGenieBlockReason:()=>et,hasReusableConversation:Ge});s.useEffect(()=>{Be&&fe&&Ge&>(!1)},[fe,Ge,Be]);const Ne=s.useCallback(async()=>{gt(!0);try{await qi({currentTarget:i,onConfirmText:pe,onConfirmNote:le,onDismissSelection:Q,onSendCurrentElementPromptToGenie:b})}catch{}finally{gt(!1)}},[i,le,pe,Q,b]),nt=s.useCallback(x=>{if(!x.nativeEvent.isComposing){if(x.key==="Enter"){if(ue())return;if(x.metaKey||x.ctrlKey){x.preventDefault(),x.stopPropagation(),Ne();return}x.preventDefault(),x.stopPropagation(),We();return}x.key==="Escape"&&(x.preventDefault(),x.stopPropagation(),Ze())}},[Ze,Ne,We]);if(!ie||!i||!ye||c||a!=="bubble-card")return n.jsx("div",{ref:be,style:{...lo,visibility:"hidden"}});const $e=i,en=C&&z.trim().length>0,Ce=n.jsxs("div",{ref:be,"data-we-selection-lock-root":"true",style:{...lo,left:ye.left,top:ye.top,visibility:ae?"visible":"hidden",...ue()?{width:"calc(100vw - 16px)",maxWidth:"calc(100vw - 16px)",borderRadius:16}:{}},onPointerDownCapture:()=>B(!0),onFocusCapture:()=>B(!0),onPointerEnter:()=>E(!0),onPointerLeave:()=>E(!1),children:[n.jsx("style",{children:` + .we-runtime-prompt-card__textarea textarea, + .we-runtime-prompt-card__textarea textarea:disabled { + color: ${h.textPrimary} !important; + -webkit-text-fill-color: ${h.textPrimary} !important; + } + + .we-runtime-prompt-card__textarea textarea::placeholder { + color: ${h.textMuted} !important; + -webkit-text-fill-color: ${h.textMuted} !important; + } + + .we-runtime-prompt-card__textarea .ant-input-clear-icon { + color: ${h.textSecondary} !important; + opacity: 1 !important; + background: ${h.surfaceInteractive}; + border-radius: 999px; + } + + .we-runtime-prompt-card__textarea .ant-input-clear-icon:hover { + color: ${h.textPrimary} !important; + background: ${h.surfaceElevated}; + } + + .we-runtime-prompt-card__textarea .ant-input-clear-icon svg { + fill: currentColor; + } + `}),n.jsxs("div",{style:{display:"flex",alignItems:"center",gap:2},children:[Zt?n.jsx(Ie,{title:"添加到 Genie 对话",icon:n.jsx(Ut,{}),tone:"dark",disabled:!i||fe,onClick:()=>{Ui({currentTarget:$e,onSendToGenie:o.onSendToGenie})}}):null,tt.visible?n.jsx(Ie,{title:tt.title,icon:n.jsx(Nt,{}),tone:"accent",loading:tt.loading,disabled:tt.disabled,onClick:()=>{Ne()}}):null,d&&m&&!Rt?n.jsx(Ie,{title:"样式编辑",icon:n.jsx(Dr,{}),tone:"dark",onClick:()=>L("panel-note")}):null,Le.visible&&!Rt?n.jsx(Ie,{title:Le.title,icon:n.jsx(zr,{}),tone:"dark",disabled:Le.disabled,onClick:()=>{Vi({tool:f,currentTarget:$e,onExportSelectionToDesignTool:I})}}):null,n.jsx(Ie,{title:"清空编辑",icon:n.jsx(xn,{}),tone:"dark",disabled:!i||fe,onClick:()=>{$()}}),n.jsx("div",{style:{flex:1}}),n.jsx(Ie,{title:"关闭",icon:n.jsx(Cn,{}),tone:"dark",onClick:()=>{var x;if(Qt&&i){(x=o.dismissElementGenieTaskState)==null||x.call(o,i);return}mt()}})]}),n.jsxs("div",{ref:Se,onFocusCapture:x=>{x.target instanceof HTMLInputElement||x.target instanceof HTMLTextAreaElement||window.requestAnimationFrame(()=>{He(3)})},onPointerDownCapture:()=>{window.requestAnimationFrame(()=>{He(3)})},style:{display:"flex",flexDirection:"column",gap:8},children:[en?n.jsx("div",{ref:se,children:n.jsx(Z,{value:J,allowClear:!0,placeholder:Wo,size:"small",style:{borderRadius:12,minHeight:32,background:h.surfaceMuted,borderColor:h.borderStrong,boxShadow:"none",color:h.textPrimary},onChange:x=>{ct(x.target.value)},onPressEnter:x=>{if(ue()){x.preventDefault(),x.stopPropagation();return}x.preventDefault(),x.stopPropagation(),pe()},onKeyDown:x=>{x.key==="Escape"&&(x.preventDefault(),x.stopPropagation(),qe())},onBlur:()=>{je&&pe()}})}):null,n.jsx(Z.TextArea,{className:"we-runtime-prompt-card__textarea",value:Me,disabled:!Oe,allowClear:!0,autoSize:{minRows:1,maxRows:4},placeholder:Go,styles:{textarea:{color:h.textPrimary,background:"transparent",padding:"10px 12px",fontSize:12.5,lineHeight:1.55,caretColor:h.textPrimary}},style:{borderRadius:12,background:h.surfaceMuted,borderColor:h.borderStrong,boxShadow:"none"},onChange:x=>{w(x.target.value)},onPasteCapture:ze,onKeyDown:nt,onBlur:x=>{var q;const A=x.relatedTarget;A instanceof Node&&((q=Se.current)!=null&&q.contains(A))||y&&le()}}),n.jsx(er,{images:ve,onRemoveImage:x=>{Ee(x)}}),ht.length>0?n.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:4,padding:"8px 10px",borderRadius:12,background:"rgba(255, 255, 255, 0.04)",border:`1px solid ${h.border}`},children:[n.jsx("span",{style:{fontSize:11,fontWeight:600,lineHeight:1.4,color:h.textSecondary},children:"样式编辑"}),ht.map(x=>n.jsx("span",{style:{fontSize:11,lineHeight:1.45,color:h.textMuted,wordBreak:"break-word"},children:x},x))]}):null,V?n.jsxs("div",{style:{display:"flex",alignItems:"flex-start",gap:6,padding:"2px 4px 0",marginTop:-2},children:[V.status==="completed"?n.jsx(Bo,{style:{color:"#22c55e",fontSize:13,marginTop:3}}):V.status==="error"?n.jsx(Ao,{style:{color:"#ef4444",fontSize:13,marginTop:3}}):n.jsx("div",{style:{marginTop:2},children:n.jsx(Ut,{})}),n.jsxs("div",{style:{display:"flex",flexDirection:"column",flex:1,minWidth:0,overflow:"hidden"},children:[n.jsx("span",{style:{fontSize:12,fontWeight:500,color:V.status==="error"?"#ef4444":h.textPrimary},children:V.status==="pending"?"Genie 准备中":V.status==="created"?"Genie 正在修改":V.status==="completed"?"Genie 修改完成":"Genie 修改失败"}),V.message?n.jsxs("span",{style:{fontSize:11,lineHeight:1.5,color:h.textMuted,wordBreak:"break-word",marginTop:1},children:[V.message,V.sessionId?` · Session ${V.sessionId}`:""]}):null]})]}):null]})]}),Pt=n.jsx(Wi,{currentTarget:i,promptVisible:ae,promptCardTop:(ye==null?void 0:ye.top)??0,onDismiss:()=>{mt()}});return dt?Ar.createPortal(n.jsxs(n.Fragment,{children:[Pt,Ce]}),dt):n.jsxs(n.Fragment,{children:[Pt,Ce]})});function Pn(t){return t==="dark"?{activeColor:"#00d68f",inactiveColor:"#71717a",activeBackground:"rgba(0, 143, 93, 0.10)",activeInsetShadow:"inset 0 0 8px rgba(0, 143, 93, 0.10)",sleepingHoverBackground:"rgba(39, 39, 42, 0.50)",sleepingHoverShadow:"inset 0 0 8px rgba(255, 255, 255, 0.03)"}:{activeColor:"#008f5d",inactiveColor:"#a1a1aa",activeBackground:"rgba(0, 143, 93, 0.05)",activeInsetShadow:"inset 0 0 8px rgba(0, 143, 93, 0.05)",sleepingHoverBackground:"#f4f4f5",sleepingHoverShadow:"inset 0 0 8px rgba(15, 23, 42, 0.03)"}}function Ct(t,e,r){return Math.min(r,Math.max(e,t))}function ra(t){const{state:e,themeMode:r,hovered:o,mousePos:i,dragVelocity:l,size:a}=t,[g,f]=s.useState(!1),c=e!=="sleeping",d=e==="working",m=e==="dragging",{activeColor:u,inactiveColor:b}=Pn(r);s.useEffect(()=>{if(!c){f(!1);return}let L=!1;const _=window.setInterval(()=>{L||Math.random()<=.3||(f(!0),window.setTimeout(()=>{L||f(!1)},150),Math.random()>.5&&window.setTimeout(()=>{L||(f(!0),window.setTimeout(()=>{L||f(!1)},150))},250))},3e3);return()=>{L=!0,window.clearInterval(_)}},[c]);const S=c?m?7:d?6:g?.5:o?7.5:6:2,T=c?m?8:g?12:9:11;let k=c&&o&&!m?i.x*2.5:0,M=c&&o&&!m?i.y*2.5:0;m&&(k=Ct(l.x/120,-6,6),M=Ct(l.y/120,-4,4));const I=T+M,D=m?Ct(-l.x/14,-60,60):0,E=c?u:b,B=Math.max(20,Math.round(a*.56));return n.jsxs(ee.svg,{width:B,height:B,viewBox:"0 0 24 24","aria-hidden":"true","data-genie-face-state":e,style:{position:"relative",zIndex:1,overflow:"visible",display:"block",pointerEvents:"none"},animate:c?{y:[0,-2.5,0,2.5,0],rotate:[0,-3,0,3,0]}:{y:0,rotate:0},transition:{duration:3,repeat:1/0,ease:"easeInOut"},children:[n.jsx(ee.rect,{initial:!1,animate:m?{x:4+k,y:I-3,width:6,height:8,rx:3,rotate:D*.2,fill:u}:d?{x:4+k,y:I-2,width:6,height:6,rx:3,rotate:0,fill:u}:{x:(c?5:4)+k,y:I,width:c?o?4.5:4:5,height:S,rx:c?2:1,rotate:0,fill:E},transition:{type:"spring",stiffness:400,damping:25},style:{transformOrigin:"center"}}),n.jsx(ee.rect,{initial:!1,animate:m?{x:14+k,y:I-3,width:6,height:8,rx:3,rotate:D*.2,fill:u}:d?{x:14+k,y:I-2,width:6,height:6,rx:3,rotate:0,fill:u}:{x:15+k,y:I,width:c?o?4.5:4:5,height:S,rx:c?2:1,rotate:0,fill:E},transition:{type:"spring",stiffness:400,damping:25},style:{transformOrigin:"center"}}),n.jsx(Ke,{children:c?n.jsxs(ee.g,{initial:{opacity:0},animate:{opacity:1,transition:{duration:.4}},exit:{opacity:0,transition:{duration:.4,delay:.1}},children:[n.jsxs(ee.g,{animate:m?{rotate:D}:d?{rotate:[-2,2,-2]}:{rotate:[-4,6,-4]},transition:m?{type:"spring",stiffness:200,damping:10}:d?{duration:.1,repeat:1/0}:{duration:3.5,repeat:1/0,ease:"easeInOut"},style:{transformOrigin:"11px -6px"},children:[n.jsx(ee.path,{initial:{d:"M 11 -6 C 15 -10 21 -8 24 -2"},animate:m?{d:"M 11 -6 Q 7 -16 4 -24"}:d?{d:"M 11 -6 Q 8 -16 5 -26"}:{d:"M 11 -6 C 11 -16 15 -24 22 -26"},exit:{d:"M 11 -6 C 15 -10 21 -8 24 -2"},transition:{duration:.3,ease:"easeInOut"},stroke:u,strokeWidth:"2",fill:"none",strokeLinecap:"round"}),n.jsx(ee.circle,{initial:{cx:24,cy:-2},animate:m?{cx:4,cy:-24}:d?{cx:5,cy:-26}:{cx:22,cy:-26},exit:{cx:24,cy:-2},transition:{duration:.3,ease:"easeInOut"},r:"1.5",fill:u}),n.jsx(Ke,{children:d?n.jsx(ee.circle,{initial:{cx:5,cy:-26,r:1,opacity:.8},animate:{r:8,opacity:0},exit:{opacity:0},transition:{duration:.6,repeat:1/0,ease:"easeOut"},fill:"none",stroke:u,strokeWidth:"1.5"}):null})]}),n.jsxs(ee.g,{animate:m?{rotate:D}:d?{rotate:[-2,2,-2]}:{rotate:[-3,5,-3]},transition:m?{type:"spring",stiffness:200,damping:10}:d?{duration:.1,repeat:1/0,delay:.05}:{duration:3.5,repeat:1/0,ease:"easeInOut",delay:.2},style:{transformOrigin:"13px -5px"},children:[n.jsx(ee.path,{initial:{d:"M 13 -5 C 17 -8 23 -5 26 2"},animate:m?{d:"M 13 -5 Q 17 -15 20 -23"}:d?{d:"M 13 -5 Q 16 -15 19 -25"}:{d:"M 13 -5 C 13 -12 18 -18 26 -19"},exit:{d:"M 13 -5 C 17 -8 23 -5 26 2"},transition:{duration:.3,ease:"easeInOut"},stroke:u,strokeWidth:"2",fill:"none",strokeLinecap:"round"}),n.jsx(ee.circle,{initial:{cx:26,cy:2},animate:m?{cx:20,cy:-23}:d?{cx:19,cy:-25}:{cx:26,cy:-19},exit:{cx:26,cy:2},transition:{duration:.3,ease:"easeInOut"},r:"1.5",fill:u}),n.jsx(Ke,{children:d?n.jsx(ee.circle,{initial:{cx:19,cy:-25,r:1,opacity:.8},animate:{r:8,opacity:0},exit:{opacity:0},transition:{duration:.6,repeat:1/0,ease:"easeOut",delay:.2},fill:"none",stroke:u,strokeWidth:"1.5"}):null})]})]},"hair-tennae"):null}),n.jsx(Ke,{children:c&&!g&&!d&&!m?n.jsxs(n.Fragment,{children:[n.jsx(ee.circle,{initial:{opacity:0,scale:0},animate:{opacity:.5,scale:1},exit:{opacity:0,scale:0},cx:"3",cy:"14",r:"2",fill:u}),n.jsx(ee.circle,{initial:{opacity:0,scale:0},animate:{opacity:.5,scale:1},exit:{opacity:0,scale:0},cx:"21",cy:"14",r:"2",fill:u})]}):null})]})}function ia(t){const{inactiveColor:e}=Pn(t.themeMode);return n.jsx("div",{"aria-hidden":"true",style:{position:"absolute",inset:0,pointerEvents:"none",overflow:"visible"},children:[0,1,2].map(r=>n.jsx(ee.div,{style:{position:"absolute",top:0,right:0,fontSize:10,fontWeight:700,color:e,lineHeight:1},initial:{opacity:0,y:0,x:0,scale:.5},animate:{opacity:[0,1,0],y:-10-r*6,x:5+r*4,scale:[.5,1,1.2]},transition:{duration:3,repeat:1/0,delay:r*1,ease:"easeOut"},children:"z"},r))})}function aa(t){const{state:e,size:r=36,disabled:o=!1,loading:i=!1,title:l=e==="awake"?"Genie 已苏醒":"唤醒 Genie",themeMode:a="light",dragVelocity:g={x:0,y:0},onClick:f}=t,[c,d]=s.useState(!1),[m,u]=s.useState({x:0,y:0}),b=a==="dark",S=e!=="sleeping",T=e==="working",k=Pn(a),M=s.useCallback(E=>{if(!S||o||e==="dragging")return;const B=E.currentTarget.getBoundingClientRect(),L=Ct((E.clientX-B.left)/B.width*2-1,-1,1),_=Ct((E.clientY-B.top)/B.height*2-1,-1,1);u({x:L,y:_})},[o,S,e]),I=S?k.activeBackground:c?k.sleepingHoverBackground:"transparent",D=S?k.activeInsetShadow:c?k.sleepingHoverShadow:"none";return n.jsxs("button",{type:"button","aria-label":l,title:l,disabled:o,"data-we-no-drag":"true","data-genie-state":e,"data-theme":a,onClick:f,onMouseEnter:()=>d(!0),onMouseLeave:()=>{d(!1),u({x:0,y:0})},onMouseMove:M,style:{position:"relative",display:"inline-flex",alignItems:"center",justifyContent:"center",width:r,height:r,padding:0,border:"none",borderRadius:999,background:I,boxShadow:D,color:S?k.activeColor:k.inactiveColor,cursor:o?"default":"pointer",transition:"transform 220ms ease, box-shadow 240ms ease, background-color 240ms ease",overflow:"visible",outline:"none",pointerEvents:"auto",touchAction:"manipulation",WebkitTapHighlightColor:"transparent",userSelect:"none"},children:[n.jsx(Ke,{children:S?n.jsxs(n.Fragment,{children:[n.jsx(ee.div,{initial:{opacity:0,scale:.8},animate:{opacity:1,scale:1},exit:{opacity:0,scale:.8},transition:{duration:.5},style:{position:"absolute",inset:0,borderRadius:999,background:"rgba(0, 143, 93, 0.20)",filter:"blur(12px)",pointerEvents:"none"}},"genie-face-glow"),T?n.jsx(ee.div,{"data-genie-working-ring":"true",initial:{opacity:.8,scale:1},animate:{opacity:0,scale:1.6},exit:{opacity:0},transition:{duration:1.5,repeat:1/0,ease:"easeOut"},style:{position:"absolute",inset:0,borderRadius:999,border:`1px solid ${b?"rgba(0, 214, 143, 0.40)":"rgba(0, 143, 93, 0.35)"}`,pointerEvents:"none"}},"genie-working-ring"):null]}):null}),i?n.jsx(jn,{spin:!0,style:{position:"relative",zIndex:1,fontSize:Math.max(16,Math.round(r*.42)),color:k.activeColor}}):n.jsxs(n.Fragment,{children:[n.jsx(ra,{state:e,themeMode:a,hovered:c,mousePos:m,dragVelocity:g,size:r}),n.jsx(Ke,{children:S?null:n.jsx(ia,{themeMode:a})})]})]})}const ke={capture:!0,passive:!1},po=.12,la=220,go={capture:!0},sa=["button","input","textarea","select","option","label","a[href]",'[role="button"]','[role="switch"]','[role="menuitem"]','[data-we-no-drag="true"]',".ant-btn",".ant-switch",".ant-select",".ant-input",".ant-input-affix-wrapper"].join(", ");function Ot(t){t.cancelable&&t.preventDefault(),t.stopImmediatePropagation(),t.stopPropagation()}function Tn(t,e,r){if(!Number.isFinite(t))return e;const o=Math.min(e,r),i=Math.max(e,r);return Math.min(i,Math.max(o,t))}function ca(t,e,r,o){const i=Number.isFinite(r)?Math.max(0,r):0,l=Math.max(i,o.width-i-e.width),a=Math.max(i,o.height-i-e.height);return{left:Tn(t.left,i,l),top:Tn(t.top,i,a)}}function fo(t){return{left:Math.round(t.left),top:Math.round(t.top)}}function da(t){return 1-(1-Tn(t,0,1))**3}function mo(t,e){return Math.round(t.left)===Math.round(e.left)&&Math.round(t.top)===Math.round(e.top)}function ua(t,e,r){if(!r||!(t instanceof Element)||t===e)return!1;const o=t.closest(sa);return o?typeof e.contains=="function"?e.contains(o):!0:!1}function ho(t){const{handleEl:e,targetEl:r,onPositionChange:o,clampMargin:i}=t,l=Math.max(0,t.moveThresholdPx??3),a=l*l,g=Math.max(80,t.settleDurationMs??la);let f=null,c=!1,d=null,m=null,u=!1;function b(y){var w;u!==y&&(u=y,(w=t.onDragStateChange)==null||w.call(t,y))}function S(y){var w;(w=t.onDragMetricsChange)==null||w.call(t,y)}function T(y){const w=document.documentElement,$=document.body;if(y){d||(d={documentCursor:w.style.cursor,bodyCursor:$.style.cursor}),w.style.cursor="grabbing",$.style.cursor="grabbing";return}d&&(w.style.cursor=d.documentCursor,$.style.cursor=d.bodyCursor,d=null)}function k(){window.removeEventListener("pointermove",qe,ke),window.removeEventListener("pointerup",pe,ke),window.removeEventListener("pointercancel",ve,ke),window.removeEventListener("keydown",Ee,ke),window.removeEventListener("blur",ze,ke),document.removeEventListener("visibilitychange",Oe)}function M(){!f||f.rafId===null||(window.cancelAnimationFrame(f.rafId),f.rafId=null)}function I(y){try{e.releasePointerCapture(y)}catch{}}function D(){return{width:window.innerWidth,height:window.innerHeight}}function E(y){return{width:y.targetWidth,height:y.targetHeight}}function B(y,w){return ca(w,E(y),i,D())}function L(y){const w=fo(y);m&&mo(m,w)||(m=w,o(w))}function _(y=!0){f&&(M(),k(),I(f.pointerId),e.dataset.dragging="false",T(!1),b(!1),y&&S({velocityX:0,velocityY:0}),f=null)}function F(){!f||f.rafId!==null||(f.rafId=window.requestAnimationFrame(ct))}function j(y,w){const $=f;$&&($.targetPosition=B($,{left:y-$.offsetX,top:w-$.offsetY}),F())}function C(y){if(y.phase="settling",y.settleStartedAt=performance.now(),y.settleFrom={...y.currentPosition},y.settleTo=B(y,{left:y.currentPosition.left+y.velocityX*po,top:y.currentPosition.top+y.velocityY*po}),mo(y.settleFrom,y.settleTo)){L(y.settleTo),_();return}F()}function z(){const y=f;y&&(M(),L(y.startPosition),_())}function J(){const y=w=>{Ot(w)};e.addEventListener("click",y,{capture:!0,once:!0}),window.setTimeout(()=>{e.removeEventListener("click",y,{capture:!0})},300)}function je(y){const w=f;if(!(!w||w.pointerId!==y||w.activated)){w.activated=!0,w.phase="dragging",e.dataset.dragging="true",b(!0),T(!0);try{e.setPointerCapture(y)}catch{}F()}}function ct(y){const w=f;if(w){if(w.rafId=null,w.phase==="dragging"){w.currentPosition={...w.targetPosition},L(w.currentPosition);return}if(w.phase==="settling"&&w.settleStartedAt!==null&&w.settleFrom&&w.settleTo){const $=(y-w.settleStartedAt)/g,ge=da($);w.currentPosition={left:w.settleFrom.left+(w.settleTo.left-w.settleFrom.left)*ge,top:w.settleFrom.top+(w.settleTo.top-w.settleFrom.top)*ge},L(w.currentPosition),$<1?F():(L(w.settleTo),_())}}}function qe(y){const w=f;if(!w||y.pointerId!==w.pointerId)return;if(!w.activated){const be=y.clientX-w.startClientX,se=y.clientY-w.startClientY;if(be*be+se*se0?"pending":"dragging",rafId:null,settleStartedAt:null,settleFrom:null,settleTo:null},S({velocityX:0,velocityY:0}),e.dataset.dragging="false",a===0&&je(y.pointerId),window.addEventListener("pointermove",qe,ke),window.addEventListener("pointerup",pe,ke),window.addEventListener("pointercancel",ve,ke),window.addEventListener("keydown",Ee,ke),window.addEventListener("blur",ze,ke),document.addEventListener("visibilitychange",Oe)}return e.dataset.dragging="false",e.addEventListener("pointerdown",Me,go),()=>{c=!0,e.removeEventListener("pointerdown",Me,go),_()}}function bo(t,e,r){if(!Number.isFinite(t))return e;const o=Math.min(e,r),i=Math.max(e,r);return Math.min(i,Math.max(o,t))}function tr(t){const{position:e,size:r,viewport:o}=t,i=Number.isFinite(t.margin)?Math.max(0,t.margin):0,l=Math.max(i,o.width-i-r.width),a=Math.max(i,o.height-i-r.height);return{left:Math.round(bo(e.left,i,l)),top:Math.round(bo(e.top,i,a))}}function pa(t){const{actionRect:e,floatingPosition:r,viewport:o,panelWidth:i,panelRight:l,panelBottom:a,compactSize:g,compactWidth:f,compactHeight:c,margin:d,headerPaddingX:m,headerPaddingY:u,controlSize:b}=t,S=Math.max(0,f??g),T=Math.max(0,c),k=(r==null?void 0:r.left)??o.width-l-i,M=(r==null?void 0:r.top)??o.height-a-T,I=e?{left:e.left+(e.width-S)/2,top:e.top+(e.height-T)/2}:{left:k+i-m-S,top:M+u+(b-T)/2};return tr({position:I,size:{width:S,height:T},viewport:o,margin:d})}const ga=[{value:"block",label:"块级"},{value:"flex",label:"弹性"},{value:"grid",label:"网格"},{value:"inline-block",label:"内联块"},{value:"none",label:"隐藏"}],fa=[{value:"static",label:"默认"},{value:"relative",label:"相对定位"},{value:"absolute",label:"绝对定位"},{value:"fixed",label:"固定定位"},{value:"sticky",label:"粘性定位"}],ma=[{value:"row",label:"横向"},{value:"column",label:"纵向"},{value:"row-reverse",label:"横向反转"},{value:"column-reverse",label:"纵向反转"}],ha=[{value:"nowrap",label:"不换行"},{value:"wrap",label:"换行"},{value:"wrap-reverse",label:"反向换行"}],ba=[{value:"flex-start",label:"起始"},{value:"center",label:"居中"},{value:"flex-end",label:"末尾"},{value:"space-between",label:"两端对齐"},{value:"space-around",label:"环绕"},{value:"space-evenly",label:"均分"}],xa=[{value:"stretch",label:"拉伸"},{value:"flex-start",label:"起始"},{value:"center",label:"居中"},{value:"flex-end",label:"末尾"},{value:"baseline",label:"基线"}],ya=[{value:"left",label:"左"},{value:"center",label:"中"},{value:"right",label:"右"},{value:"justify",label:"两端"}],wa=[{value:"none",label:"无"},{value:"solid",label:"实线"},{value:"dashed",label:"虚线"},{value:"dotted",label:"点线"},{value:"double",label:"双线"}],va=[{value:"300",label:"300"},{value:"400",label:"400"},{value:"500",label:"500"},{value:"600",label:"600"},{value:"700",label:"700"},{value:"800",label:"800"}],Sa=h.textPrimary,nr=h.textSecondary,xo=h.textMuted,yo=h.textMuted,ne={display:"grid",gridTemplateColumns:"minmax(0, 1fr) minmax(0, 1fr)",columnGap:6,rowGap:8},Ca={display:"flex",flexDirection:"column",gap:4},Ta={display:"grid",gridTemplateColumns:"minmax(0, 1fr)",gap:10},or={fontSize:10,fontWeight:600,color:nr,lineHeight:1.2},_e={display:"flex",flexDirection:"column",gap:6,paddingTop:2},rr={display:"grid",gridTemplateColumns:"32px minmax(0, 1fr) auto auto",gap:4,alignItems:"center"},wo={display:"flex",flexDirection:"column",gap:6},vo={display:"inline-flex",alignItems:"center",gap:6,flexShrink:0},ka={width:"100%"},ja={width:"100%",minWidth:0},Ea={flex:"0 0 60%",width:"60%",minWidth:0},Ra={flex:"0 0 60%",width:"60%",minWidth:0},Pa={width:"40%",minWidth:0,flex:"0 0 40%"},Ia={width:"40%",minWidth:0,flex:"0 0 40%"};function _a(t){const{target:e,transactionManager:r,tokensService:o,disabled:i,refreshKey:l,onRefreshRequest:a}=t,[g,f]=s.useState(["spacing","layout","typography"]),c=s.useMemo(()=>e?Fa(e):null,[e,l]);if(!e||!c)return n.jsx(eo,{image:eo.PRESENTED_IMAGE_SIMPLE,description:"请选择一个元素后开始编辑。",style:{marginTop:8,padding:"12px 0 4px"}});const d={target:e,transactionManager:r,tokensService:o,disabled:i,onRefreshRequest:a};return n.jsx("div",{className:"we-runtime-prop-panel__body",children:n.jsx(Or,{className:"we-runtime-prop-panel__collapse",size:"small",bordered:!1,activeKey:g,onChange:m=>{const u=Array.isArray(m)?m.map(String):[String(m)];f(u)},items:[{key:"spacing",label:"间距",children:n.jsx(Ba,{...d,snapshot:c})},{key:"layout",label:"布局",children:n.jsx(Aa,{...d,snapshot:c})},{key:"size",label:"尺寸",children:n.jsx(Ma,{...d,snapshot:c})},{key:"background",label:"背景",children:n.jsx(Oa,{...d,snapshot:c})},{key:"typography",label:"文字",children:n.jsx(Da,{...d,snapshot:c})},{key:"border",label:"边框",children:n.jsx(Ha,{...d,snapshot:c})},{key:"position",label:"定位",children:n.jsx(La,{...d,snapshot:c})},{key:"effects",label:"阴影",children:n.jsx(Wa,{...d,snapshot:c})},{key:"appearance",label:"透明度",children:n.jsx(za,{...d,snapshot:c})}]})})}function Ma(t){const{snapshot:e,target:r,transactionManager:o,disabled:i,onRefreshRequest:l}=t,[a,g]=s.useState(e.width),[f,c]=s.useState(e.height),[d,m]=s.useState(e.minWidth),[u,b]=s.useState(e.minHeight),[S,T]=s.useState(e.maxWidth),[k,M]=s.useState(e.maxHeight),[I,D]=s.useState(Gt(e.width)),[E,B]=s.useState(Gt(e.height)),[L,_]=s.useState(()=>Co(e)),F=s.useRef(r),j=s.useMemo(()=>Co(e),[e.maxHeight,e.maxWidth,e.minHeight,e.minWidth]),C=s.useCallback((z,J)=>{P(o,r,z,N(J),l)},[l,r,o]);return s.useEffect(()=>{g(e.width),c(e.height),m(e.minWidth),b(e.minHeight),T(e.maxWidth),M(e.maxHeight),D(Gt(e.width)),B(Gt(e.height))},[e.height,e.maxHeight,e.maxWidth,e.minHeight,e.minWidth,e.width]),s.useEffect(()=>{if(F.current!==r){F.current=r,_(j);return}j&&_(!0)},[j,r]),n.jsxs("div",{style:_e,children:[n.jsxs("div",{style:Ta,children:[n.jsx(U,{label:"宽度",children:n.jsxs("div",{style:wo,children:[n.jsx(Kt,{value:a,disabled:i||I!=="fixed",placeholder:"自动 / 320px / 100%",onChange:g,onCommit:z=>C("width",z)}),n.jsx(Vt,{size:"small",block:!0,value:I,disabled:i,options:[{value:"fixed",label:"固定"},{value:"fit",label:"适配"},{value:"fill",label:"填充"}],onChange:z=>{const J=String(z);D(J),C("width",J==="fixed"?a:J==="fit"?"fit-content":J==="fill"?"100%":a)}})]})}),n.jsx(U,{label:"高度",children:n.jsxs("div",{style:wo,children:[n.jsx(Kt,{value:f,disabled:i||E!=="fixed",placeholder:"自动 / 240px",onChange:c,onCommit:z=>C("height",z)}),n.jsx(Vt,{size:"small",block:!0,value:E,disabled:i,options:[{value:"fixed",label:"固定"},{value:"fit",label:"适配"},{value:"fill",label:"填充"}],onChange:z=>{const J=String(z);B(J),C("height",J==="fixed"?f:J==="fit"?"fit-content":J==="fill"?"100%":f)}})]})})]}),n.jsx(Xt,{title:"尺寸约束",action:n.jsx(Ga,{expanded:L,disabled:i,onClick:()=>_(z=>!z)}),children:L?n.jsxs(n.Fragment,{children:[n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"最小宽度",value:d,disabled:i,placeholder:"0px",onChange:m,onCommit:z=>C("min-width",z)}),n.jsx(O,{label:"最小高度",value:u,disabled:i,placeholder:"0px",onChange:b,onCommit:z=>C("min-height",z)})]}),n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"最大宽度",value:S,disabled:i,placeholder:"无 / 1280px",onChange:T,onCommit:z=>C("max-width",z)}),n.jsx(O,{label:"最大高度",value:k,disabled:i,placeholder:"无 / 720px",onChange:M,onCommit:z=>C("max-height",z)})]})]}):null})]})}function Ba(t){const{snapshot:e,target:r,transactionManager:o,disabled:i,onRefreshRequest:l}=t,[a,g]=s.useState({marginTop:e.marginTop,marginRight:e.marginRight,marginBottom:e.marginBottom,marginLeft:e.marginLeft,paddingTop:e.paddingTop,paddingRight:e.paddingRight,paddingBottom:e.paddingBottom,paddingLeft:e.paddingLeft}),[f,c]=s.useState({margin:!1,padding:!1}),d=s.useCallback((u,b)=>{P(o,r,u,N(b),l)},[l,r,o]),m=s.useCallback((u,b)=>{const S=N(b),T=o.beginMultiStyle(r,u);T?(T.set({[u[0]]:S,[u[1]]:S}),T.commit({merge:!0})):(P(o,r,u[0],S,l),P(o,r,u[1],S,l)),l==null||l()},[l,r,o]);return s.useEffect(()=>{g({marginTop:e.marginTop,marginRight:e.marginRight,marginBottom:e.marginBottom,marginLeft:e.marginLeft,paddingTop:e.paddingTop,paddingRight:e.paddingRight,paddingBottom:e.paddingBottom,paddingLeft:e.paddingLeft})},[e.marginBottom,e.marginLeft,e.marginRight,e.marginTop,e.paddingBottom,e.paddingLeft,e.paddingRight,e.paddingTop]),n.jsxs("div",{style:_e,children:[n.jsx(Xt,{title:"外边距",action:n.jsx(So,{expanded:f.margin,disabled:i,onClick:()=>c(u=>({...u,margin:!u.margin}))}),children:f.margin?n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"上",value:a.marginTop,disabled:i,onChange:u=>g(b=>({...b,marginTop:u})),onCommit:u=>d("margin-top",u)}),n.jsx(O,{label:"右",value:a.marginRight,disabled:i,onChange:u=>g(b=>({...b,marginRight:u})),onCommit:u=>d("margin-right",u)}),n.jsx(O,{label:"下",value:a.marginBottom,disabled:i,onChange:u=>g(b=>({...b,marginBottom:u})),onCommit:u=>d("margin-bottom",u)}),n.jsx(O,{label:"左",value:a.marginLeft,disabled:i,onChange:u=>g(b=>({...b,marginLeft:u})),onCommit:u=>d("margin-left",u)})]}):n.jsxs("div",{style:ne,children:[n.jsx(Ht,{label:"水平",value:a.marginLeft===a.marginRight?a.marginLeft:"",mixed:a.marginLeft!==a.marginRight,disabled:i,onChange:u=>g(b=>({...b,marginLeft:u,marginRight:u})),onCommit:u=>m(["margin-left","margin-right"],u)}),n.jsx(Ht,{label:"垂直",value:a.marginTop===a.marginBottom?a.marginTop:"",mixed:a.marginTop!==a.marginBottom,disabled:i,onChange:u=>g(b=>({...b,marginTop:u,marginBottom:u})),onCommit:u=>m(["margin-top","margin-bottom"],u)})]})}),n.jsx(Xt,{title:"内边距",action:n.jsx(So,{expanded:f.padding,disabled:i,onClick:()=>c(u=>({...u,padding:!u.padding}))}),children:f.padding?n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"上",value:a.paddingTop,disabled:i,onChange:u=>g(b=>({...b,paddingTop:u})),onCommit:u=>d("padding-top",u)}),n.jsx(O,{label:"右",value:a.paddingRight,disabled:i,onChange:u=>g(b=>({...b,paddingRight:u})),onCommit:u=>d("padding-right",u)}),n.jsx(O,{label:"下",value:a.paddingBottom,disabled:i,onChange:u=>g(b=>({...b,paddingBottom:u})),onCommit:u=>d("padding-bottom",u)}),n.jsx(O,{label:"左",value:a.paddingLeft,disabled:i,onChange:u=>g(b=>({...b,paddingLeft:u})),onCommit:u=>d("padding-left",u)})]}):n.jsxs("div",{style:ne,children:[n.jsx(Ht,{label:"水平",value:a.paddingLeft===a.paddingRight?a.paddingLeft:"",mixed:a.paddingLeft!==a.paddingRight,disabled:i,onChange:u=>g(b=>({...b,paddingLeft:u,paddingRight:u})),onCommit:u=>m(["padding-left","padding-right"],u)}),n.jsx(Ht,{label:"垂直",value:a.paddingTop===a.paddingBottom?a.paddingTop:"",mixed:a.paddingTop!==a.paddingBottom,disabled:i,onChange:u=>g(b=>({...b,paddingTop:u,paddingBottom:u})),onCommit:u=>m(["padding-top","padding-bottom"],u)})]})})]})}function Aa(t){const{snapshot:e,target:r,transactionManager:o,disabled:i,onRefreshRequest:l}=t,[a,g]=s.useState(e.display||"block"),[f,c]=s.useState(e.flexDirection||"row"),[d,m]=s.useState(e.flexWrap||"nowrap"),[u,b]=s.useState(e.justifyContent||"flex-start"),[S,T]=s.useState(e.alignItems||"stretch"),[k,M]=s.useState(e.gap),[I,D]=s.useState(e.rowGap),[E,B]=s.useState(e.columnGap),[L,_]=s.useState(e.gridTemplateColumns),[F,j]=s.useState(e.gridTemplateRows);return s.useEffect(()=>{g(e.display||"block"),c(e.flexDirection||"row"),m(e.flexWrap||"nowrap"),b(e.justifyContent||"flex-start"),T(e.alignItems||"stretch"),M(e.gap),D(e.rowGap),B(e.columnGap),_(e.gridTemplateColumns),j(e.gridTemplateRows)},[e.alignItems,e.columnGap,e.display,e.flexDirection,e.flexWrap,e.gap,e.gridTemplateColumns,e.gridTemplateRows,e.justifyContent,e.rowGap]),n.jsxs("div",{style:_e,children:[n.jsx(U,{label:"显示",children:n.jsx(we,{value:a||"block",options:ga,disabled:i,onChange:C=>{g(C),P(o,r,"display",C,l)}})}),a==="flex"?n.jsxs(n.Fragment,{children:[n.jsxs("div",{style:ne,children:[n.jsx(U,{label:"方向",children:n.jsx(we,{value:f||"row",options:ma,disabled:i,onChange:C=>{c(C),P(o,r,"flex-direction",C,l)}})}),n.jsx(U,{label:"换行",children:n.jsx(we,{value:d||"nowrap",options:ha,disabled:i,onChange:C=>{m(C),P(o,r,"flex-wrap",C,l)}})})]}),n.jsxs("div",{style:ne,children:[n.jsx(U,{label:"主轴对齐",children:n.jsx(we,{value:u||"flex-start",options:ba,disabled:i,onChange:C=>{b(C),P(o,r,"justify-content",C,l)}})}),n.jsx(U,{label:"交叉轴对齐",children:n.jsx(we,{value:S||"stretch",options:xa,disabled:i,onChange:C=>{T(C),P(o,r,"align-items",C,l)}})})]})]}):null,a==="grid"?n.jsxs("div",{style:ne,children:[n.jsx(U,{label:"列模板",children:n.jsx(Z,{value:L,disabled:i,placeholder:"repeat(3, minmax(0, 1fr))",onChange:C=>_(C.target.value),onBlur:()=>P(o,r,"grid-template-columns",L,l),onPressEnter:()=>P(o,r,"grid-template-columns",L,l)})}),n.jsx(U,{label:"行模板",children:n.jsx(Z,{value:F,disabled:i,placeholder:"auto auto",onChange:C=>j(C.target.value),onBlur:()=>P(o,r,"grid-template-rows",F,l),onPressEnter:()=>P(o,r,"grid-template-rows",F,l)})})]}):null,a==="flex"||a==="grid"?n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"间距",value:k,disabled:i,onChange:M,onCommit:C=>P(o,r,"gap",N(C),l)}),n.jsx(O,{label:"行间距",value:I,disabled:i,onChange:D,onCommit:C=>P(o,r,"row-gap",N(C),l)}),n.jsx(O,{label:"列间距",value:E,disabled:i,onChange:B,onCommit:C=>P(o,r,"column-gap",N(C),l)})]}):null]})}function La(t){const{snapshot:e,target:r,transactionManager:o,disabled:i,onRefreshRequest:l}=t,[a,g]=s.useState(e.position||"static"),[f,c]=s.useState(e.top),[d,m]=s.useState(e.right),[u,b]=s.useState(e.bottom),[S,T]=s.useState(e.left),[k,M]=s.useState(e.zIndex),[I,D]=s.useState(e.transform);return s.useEffect(()=>{g(e.position||"static"),c(e.top),m(e.right),b(e.bottom),T(e.left),M(e.zIndex),D(e.transform)},[e.bottom,e.left,e.position,e.right,e.top,e.transform,e.zIndex]),n.jsxs("div",{style:_e,children:[n.jsx(U,{label:"定位",children:n.jsx(we,{size:"small",value:a||"static",options:fa,disabled:i,onChange:E=>{g(E),P(o,r,"position",E,l)}})}),n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"上",value:f,disabled:i||a==="static",placeholder:"自动",onChange:c,onCommit:E=>P(o,r,"top",N(E),l)}),n.jsx(O,{label:"右",value:d,disabled:i||a==="static",placeholder:"自动",onChange:m,onCommit:E=>P(o,r,"right",N(E),l)}),n.jsx(O,{label:"下",value:u,disabled:i||a==="static",placeholder:"自动",onChange:b,onCommit:E=>P(o,r,"bottom",N(E),l)}),n.jsx(O,{label:"左",value:S,disabled:i||a==="static",placeholder:"自动",onChange:T,onCommit:E=>P(o,r,"left",N(E),l)})]}),n.jsxs("div",{style:ne,children:[n.jsx(U,{label:"层级",children:n.jsx(Z,{size:"small",value:k,disabled:i,placeholder:"0",onChange:E=>M(E.target.value),onBlur:()=>P(o,r,"z-index",k.trim(),l),onPressEnter:()=>P(o,r,"z-index",k.trim(),l)})}),n.jsx(U,{label:"变换",children:n.jsx(Z,{size:"small",value:I,disabled:i,placeholder:"translateX(8px) scale(1)",onChange:E=>D(E.target.value),onBlur:()=>P(o,r,"transform",I.trim(),l),onPressEnter:()=>P(o,r,"transform",I.trim(),l)})})]})]})}function Da(t){const{snapshot:e,target:r,transactionManager:o,tokensService:i,disabled:l,onRefreshRequest:a}=t,[g,f]=s.useState(e.fontFamily),[c,d]=s.useState(e.fontSize),[m,u]=s.useState(e.fontWeight||"400"),[b,S]=s.useState(e.lineHeight),[T,k]=s.useState(e.letterSpacing),[M,I]=s.useState(e.textAlign||"left"),[D,E]=s.useState(e.textDecorationLine||"none"),[B,L]=s.useState(e.color);return s.useEffect(()=>{f(e.fontFamily),d(e.fontSize),u(e.fontWeight||"400"),S(e.lineHeight),k(e.letterSpacing),I(e.textAlign||"left"),E(e.textDecorationLine||"none"),L(e.color)},[e.color,e.fontFamily,e.fontSize,e.fontWeight,e.letterSpacing,e.lineHeight,e.textAlign,e.textDecorationLine]),n.jsxs("div",{style:_e,children:[n.jsx(U,{label:"字体家族",children:n.jsx(Z,{value:g,disabled:l,placeholder:"Inter, sans-serif",onChange:_=>f(_.target.value),onBlur:()=>P(o,r,"font-family",g.trim(),a),onPressEnter:()=>P(o,r,"font-family",g.trim(),a)})}),n.jsxs("div",{style:ne,children:[n.jsx(U,{label:"字重",children:n.jsx(we,{value:m||"400",options:va,disabled:l,onChange:_=>{u(_),P(o,r,"font-weight",_,a)}})}),n.jsx(O,{label:"字号",value:c,disabled:l,onChange:d,onCommit:_=>P(o,r,"font-size",N(_),a)})]}),n.jsx(In,{label:"文字颜色",value:B,disabled:l,target:r,tokensService:i,transactionManager:o,property:"color",onRefreshRequest:a,onValueChange:L}),n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"行高",value:b,disabled:l,placeholder:"1.5 / 24px",onChange:S,onCommit:_=>P(o,r,"line-height",_.trim(),a)}),n.jsx(O,{label:"字间距",value:T,disabled:l,onChange:k,onCommit:_=>P(o,r,"letter-spacing",N(_),a)})]}),n.jsx(U,{label:"对齐",children:n.jsx(Vt,{size:"small",block:!0,value:M||"left",disabled:l,options:ya,onChange:_=>{const F=String(_);I(F),P(o,r,"text-align",F,a)}})}),n.jsx(U,{label:"文本装饰",children:n.jsx(Vt,{size:"small",block:!0,value:D||"none",disabled:l,options:[{value:"none",label:"无"},{value:"underline",label:"下划线"},{value:"line-through",label:"删除线"},{value:"overline",label:"上划线"}],onChange:_=>{const F=String(_);E(F),P(o,r,"text-decoration-line",F,a)}})})]})}function za(t){const{snapshot:e,target:r,transactionManager:o,disabled:i,onRefreshRequest:l}=t,[a,g]=s.useState(jo(e.opacity));return s.useEffect(()=>{g(jo(e.opacity))},[e.opacity]),n.jsx("div",{style:_e,children:n.jsx(U,{label:"透明度",children:n.jsxs("div",{style:{display:"grid",gridTemplateColumns:"1fr 72px",gap:10,alignItems:"center"},children:[n.jsx(Hr,{min:0,max:100,value:a,disabled:i,onChange:f=>g(hn(f)),onChangeComplete:f=>P(o,r,"opacity",String((hn(f)/100).toFixed(2)).replace(/\.?0+$/,""),l)}),n.jsx(Wr,{min:0,max:100,addonAfter:"%",value:a,disabled:i,onChange:f=>g(hn(f)),onBlur:()=>P(o,r,"opacity",String((a/100).toFixed(2)).replace(/\.?0+$/,""),l)})]})})})}function Oa(t){const{snapshot:e,target:r,transactionManager:o,tokensService:i,disabled:l,onRefreshRequest:a}=t,g=e.backgroundImage==="none"?"":e.backgroundImage,f=st(g)?g:e.backgroundColor,[c,d]=s.useState(f);return s.useEffect(()=>{const m=e.backgroundImage==="none"?"":e.backgroundImage;d(st(m)?m:e.backgroundColor)},[e.backgroundColor,e.backgroundImage]),n.jsx("div",{style:_e,children:n.jsx(U,{label:"背景填充",children:n.jsxs("div",{style:rr,children:[n.jsx(Lo,{mode:["single","gradient"],value:c?Ua(c):void 0,allowClear:!0,disabled:l,showText:!1,onChange:(m,u)=>{d(u),Wt(o,r,u,a)},onClear:()=>{d(""),Wt(o,r,"",a)}}),n.jsx(Z,{value:c,disabled:l,placeholder:"#008F5D / linear-gradient(...)",onChange:m=>d(m.target.value),onBlur:()=>{const m=c.trim();d(m),Wt(o,r,m,a)},onPressEnter:()=>{const m=c.trim();d(m),Wt(o,r,m,a)}}),i&&!st(c)?n.jsx(ir,{target:r,property:"background-color",disabled:l,currentValue:c,tokensService:i,transactionManager:o,onApplied:a,onValueChange:d}):null]})})})}function Ha(t){const{snapshot:e,target:r,transactionManager:o,tokensService:i,disabled:l,onRefreshRequest:a}=t,[g,f]=s.useState(e.borderStyle||"none"),[c,d]=s.useState(Ro(e)),[m,u]=s.useState(e.borderWidth),[b,S]=s.useState({top:e.borderTopWidth,right:e.borderRightWidth,bottom:e.borderBottomWidth,left:e.borderLeftWidth}),[T,k]=s.useState(e.borderColor),[M,I]=s.useState(Eo(e)),[D,E]=s.useState(e.borderRadius),[B,L]=s.useState({tl:e.borderTopLeftRadius,tr:e.borderTopRightRadius,br:e.borderBottomRightRadius,bl:e.borderBottomLeftRadius});s.useEffect(()=>{f(e.borderStyle||"none"),d(Ro(e)),u(e.borderWidth),S({top:e.borderTopWidth,right:e.borderRightWidth,bottom:e.borderBottomWidth,left:e.borderLeftWidth}),k(e.borderColor),I(Eo(e)),E(e.borderRadius),L({tl:e.borderTopLeftRadius,tr:e.borderTopRightRadius,br:e.borderBottomRightRadius,bl:e.borderBottomLeftRadius})},[e.borderBottomLeftRadius,e.borderBottomRightRadius,e.borderBottomWidth,e.borderColor,e.borderLeftWidth,e.borderRadius,e.borderRightWidth,e.borderStyle,e.borderTopLeftRadius,e.borderTopRightRadius,e.borderTopWidth,e.borderWidth]);const _=s.useCallback(j=>{const C=N(j),z=o.beginMultiStyle(r,["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"]);z?(z.set({"border-top-left-radius":C,"border-top-right-radius":C,"border-bottom-right-radius":C,"border-bottom-left-radius":C}),z.commit({merge:!0})):P(o,r,"border-radius",C,a),a==null||a()},[a,r,o]),F=s.useCallback(j=>{const C=N(j),z=o.beginMultiStyle(r,["border-top-width","border-right-width","border-bottom-width","border-left-width"]);z?(z.set({"border-top-width":C,"border-right-width":C,"border-bottom-width":C,"border-left-width":C}),z.commit({merge:!0})):P(o,r,"border-width",C,a),a==null||a()},[a,r,o]);return n.jsxs("div",{style:_e,children:[n.jsx(U,{label:"边框类型",children:n.jsx(we,{value:g||"none",options:wa,disabled:l,onChange:j=>{f(j),P(o,r,"border-style",j,a)}})}),n.jsx(U,{label:"边框宽度",action:n.jsxs("span",{style:vo,children:[n.jsx("span",{style:{fontSize:11,color:xo},children:"联动"}),n.jsx(at,{size:"small",checked:c,onChange:d})]}),children:c?n.jsx(Z,{value:m,disabled:l,placeholder:"1px",onChange:j=>u(j.target.value),onBlur:()=>F(m),onPressEnter:()=>F(m)}):n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"上",value:b.top,disabled:l,onChange:j=>S(C=>({...C,top:j})),onCommit:j=>P(o,r,"border-top-width",N(j),a)}),n.jsx(O,{label:"右",value:b.right,disabled:l,onChange:j=>S(C=>({...C,right:j})),onCommit:j=>P(o,r,"border-right-width",N(j),a)}),n.jsx(O,{label:"下",value:b.bottom,disabled:l,onChange:j=>S(C=>({...C,bottom:j})),onCommit:j=>P(o,r,"border-bottom-width",N(j),a)}),n.jsx(O,{label:"左",value:b.left,disabled:l,onChange:j=>S(C=>({...C,left:j})),onCommit:j=>P(o,r,"border-left-width",N(j),a)})]})}),n.jsx(In,{label:"边框颜色",value:T,disabled:l,target:r,tokensService:i,transactionManager:o,property:"border-color",onRefreshRequest:a,onValueChange:k}),n.jsx(U,{label:"圆角",action:n.jsxs("span",{style:vo,children:[n.jsx("span",{style:{fontSize:11,color:xo},children:"联动"}),n.jsx(at,{size:"small",checked:M,onChange:I})]}),children:M?n.jsx(Z,{value:D,disabled:l,placeholder:"12px",onChange:j=>E(j.target.value),onBlur:()=>_(D),onPressEnter:()=>_(D)}):n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"左上",value:B.tl,disabled:l,onChange:j=>L(C=>({...C,tl:j})),onCommit:j=>P(o,r,"border-top-left-radius",N(j),a)}),n.jsx(O,{label:"右上",value:B.tr,disabled:l,onChange:j=>L(C=>({...C,tr:j})),onCommit:j=>P(o,r,"border-top-right-radius",N(j),a)}),n.jsx(O,{label:"右下",value:B.br,disabled:l,onChange:j=>L(C=>({...C,br:j})),onCommit:j=>P(o,r,"border-bottom-right-radius",N(j),a)}),n.jsx(O,{label:"左下",value:B.bl,disabled:l,onChange:j=>L(C=>({...C,bl:j})),onCommit:j=>P(o,r,"border-bottom-left-radius",N(j),a)})]})})]})}function Wa(t){const{snapshot:e,target:r,transactionManager:o,disabled:i,onRefreshRequest:l}=t,a=s.useMemo(()=>kn(e.boxShadow),[e.boxShadow]),[g,f]=s.useState(a.color),[c,d]=s.useState(a.x),[m,u]=s.useState(a.y),[b,S]=s.useState(a.blur),[T,k]=s.useState(a.spread),[M,I]=s.useState(e.boxShadow==="none"?"":e.boxShadow);s.useEffect(()=>{const E=kn(e.boxShadow);f(E.color),d(E.x),u(E.y),S(E.blur),k(E.spread),I(e.boxShadow==="none"?"":e.boxShadow)},[e.boxShadow]);const D=s.useCallback(()=>{const E=lr({color:g,x:c,y:m,blur:b,spread:T});I(E==="none"?"":E),P(o,r,"box-shadow",E,l)},[l,b,g,T,c,m,r,o]);return n.jsxs("div",{style:_e,children:[n.jsx(In,{label:"阴影颜色",value:g,disabled:i,target:r,transactionManager:o,property:"box-shadow-color",tokensService:void 0,onRefreshRequest:l,onValueChange:f}),n.jsxs("div",{style:ne,children:[n.jsx(O,{label:"横向",value:c,disabled:i,onChange:d,onCommit:()=>D()}),n.jsx(O,{label:"纵向",value:m,disabled:i,onChange:u,onCommit:()=>D()}),n.jsx(O,{label:"模糊",value:b,disabled:i,onChange:S,onCommit:()=>D()}),n.jsx(O,{label:"扩散",value:T,disabled:i,onChange:k,onCommit:()=>D()})]}),n.jsx(Xt,{title:"高级阴影",children:n.jsx(Z.TextArea,{autoSize:{minRows:2,maxRows:5},value:M,disabled:i,placeholder:"0 8px 24px rgba(15, 23, 42, 0.16)",onChange:E=>I(E.target.value),onBlur:()=>P(o,r,"box-shadow",M.trim()||"none",l)})})]})}function U(t){return n.jsxs("div",{style:Ca,children:[n.jsxs("div",{style:{...or,display:"flex",alignItems:"center",justifyContent:"space-between",gap:8},children:[n.jsx("span",{children:t.label}),t.action]}),t.children]})}function Xt(t){return n.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:4},children:[n.jsxs("div",{style:{...or,fontSize:9,letterSpacing:"0.08em",textTransform:"uppercase",display:"flex",alignItems:"center",justifyContent:"space-between",gap:8},children:[n.jsx("span",{children:t.title}),t.action]}),t.children]})}function So(t){const{expanded:e,disabled:r,onClick:o}=t,i=e?"聚合编辑":"逐项编辑";return n.jsx(Mo,{title:i,children:n.jsx(re,{type:"text",size:"small",disabled:r,"aria-label":i,icon:e?n.jsx(Gr,{}):n.jsx(Fr,{}),onClick:o})})}function Ga(t){const{expanded:e,disabled:r,onClick:o}=t,i=e?"隐藏最小值和最大值":"显示最小值和最大值";return n.jsx(re,{type:"text",size:"small",disabled:r,"aria-label":i,onClick:o,style:{paddingInline:4,color:nr},children:n.jsxs("span",{style:{display:"inline-flex",alignItems:"center",gap:6},children:[n.jsx("span",{children:"Min Max"}),e?n.jsx(Nr,{style:{fontSize:10}}):n.jsx($r,{style:{fontSize:10}})]})})}function O(t){return n.jsx(U,{label:t.label,children:n.jsx(Kt,{value:t.value,disabled:t.disabled,placeholder:t.placeholder??"0px",onChange:t.onChange,onCommit:t.onCommit})})}function Ht(t){return n.jsx(U,{label:t.label,children:n.jsx(Kt,{value:t.value,disabled:t.disabled,placeholder:t.mixed?"混合":"0px",onChange:t.onChange,onCommit:e=>{t.mixed&&!e.trim()||t.onCommit(e)}})})}function Kt(t){var f;const e=s.useMemo(()=>Ya(t.value),[t.value]);if(e.kind==="raw")return n.jsx(Z,{size:"small",style:ja,value:t.value,disabled:t.disabled,placeholder:t.placeholder,onChange:c=>t.onChange(c.target.value),onBlur:()=>t.onCommit(t.value),onPressEnter:()=>t.onCommit(t.value)});const r=[{value:"px",label:"px"},{value:"%",label:"%"},{value:"vw",label:"vw"},{value:"vh",label:"vh"},{value:"em",label:"em"},{value:"rem",label:"rem"},{value:"auto",label:"自动"},{value:"none",label:"无"}],o=e.unit==="auto"||e.unit==="none",i=((f=r.find(c=>c.value===e.unit))==null?void 0:f.label)??e.unit,l=o?i:t.placeholder,a=o?Ra:Ea,g=o?Ia:Pa;return n.jsxs(De.Compact,{block:!0,className:"we-runtime-prop-panel__unit-input",style:ka,children:[n.jsx(Z,{className:"we-runtime-prop-panel__unit-input-amount",size:"small",style:a,value:o?"":e.amount,disabled:t.disabled||o,inputMode:"decimal",placeholder:l,onChange:c=>t.onChange(Po(c.target.value,e.unit)),onBlur:()=>t.onCommit(t.value),onPressEnter:()=>t.onCommit(t.value)}),n.jsx(we,{className:"we-runtime-prop-panel__unit-input-unit",size:"small",disabled:t.disabled,value:e.unit,style:g,popupMatchSelectWidth:76,classNames:{popup:{root:"we-runtime-prop-panel__unit-select-popup"}},options:r,onChange:c=>{const d=Po(e.amount,c);t.onChange(d),t.onCommit(d)}})]})}function In(t){const{label:e,value:r,property:o,target:i,transactionManager:l,tokensService:a,disabled:g,onRefreshRequest:f,onValueChange:c}=t,d=(a==null?void 0:a.parseCssVar(r.trim()))??null,m=d?(a==null?void 0:a.resolveToken(i,d.name).computedValue)??"":r,u=s.useCallback(b=>{if(o==="box-shadow-color"){const S=R(i,"box-shadow"),T=kn(S),k=lr({...T,color:b});c(b),P(l,i,"box-shadow",k,f);return}c(b),P(l,i,o,b,f)},[f,c,o,i,l]);return n.jsx(U,{label:e,children:n.jsxs("div",{style:rr,children:[n.jsx(Lo,{value:Va(m)?m:"#ffffff",disabled:g,showText:!1,onChange:(b,S)=>{const T=S||b.toCssString();u(T)}}),n.jsx(Z,{value:r,disabled:g,placeholder:"#008F5D / var(--color-primary)",onChange:b=>c(b.target.value),onBlur:()=>u(r.trim()),onPressEnter:()=>u(r.trim())}),a?n.jsx(ir,{target:i,property:o,disabled:g,currentValue:r,tokensService:a,transactionManager:l,onApplied:f,onValueChange:c}):null,d&&a?n.jsx(re,{size:"small",disabled:g,onClick:()=>{const b=a.resolveToken(i,d.name).computedValue.trim();c(b),P(l,i,o,b,f)},children:"解绑"}):null]})})}function ir(t){const{target:e,property:r,currentValue:o,disabled:i,tokensService:l,transactionManager:a,onApplied:g,onValueChange:f}=t,[c,d]=s.useState(!1),[m,u]=s.useState(""),b=s.useMemo(()=>l.getContextTokens(e).tokens.filter(T=>T.computedValue.trim()!==""),[e,l]),S=s.useMemo(()=>{const T=m.trim().toLowerCase();return T?b.filter(k=>{const M=k.token.name.toLowerCase(),I=k.computedValue.toLowerCase();return M.includes(T)||I.includes(T)}):b},[m,b]);return n.jsx(Do,{trigger:["click"],open:c,onOpenChange:d,content:n.jsxs("div",{style:{width:280,display:"flex",flexDirection:"column",gap:8},children:[n.jsx(Z,{size:"small",value:m,placeholder:"搜索设计令牌",onChange:T=>u(T.target.value)}),n.jsx("div",{style:{display:"flex",flexDirection:"column",gap:6,maxHeight:280,overflowY:"auto"},children:S.length>0?S.map(T=>n.jsx(re,{size:"small",style:{justifyContent:"space-between",height:"auto",paddingBlock:6},onClick:()=>{const k=T.token.name;l.applyTokenToStyle(a,e,r,k,{merge:!0}),f(l.formatCssVar(k)),g==null||g(),d(!1),u("")},children:n.jsxs(De,{direction:"vertical",size:0,style:{alignItems:"flex-start"},children:[n.jsx("span",{style:{fontSize:11,fontWeight:600,color:Sa},children:T.token.name}),n.jsx("span",{style:{fontSize:10,color:yo},children:T.computedValue})]})},T.token.name)):n.jsx("div",{style:{fontSize:11,color:yo},children:"没有匹配到设计令牌。"})}),o?n.jsxs(re,{size:"small",type:"text",onClick:()=>{f(o),u("")},children:["当前值: ",o]}):null]}),children:n.jsx(re,{size:"small",icon:n.jsx(zo,{}),disabled:i})})}function Fa(t){return{width:R(t,"width"),height:R(t,"height"),minWidth:R(t,"min-width"),minHeight:R(t,"min-height"),maxWidth:R(t,"max-width"),maxHeight:R(t,"max-height"),marginTop:R(t,"margin-top"),marginRight:R(t,"margin-right"),marginBottom:R(t,"margin-bottom"),marginLeft:R(t,"margin-left"),paddingTop:R(t,"padding-top"),paddingRight:R(t,"padding-right"),paddingBottom:R(t,"padding-bottom"),paddingLeft:R(t,"padding-left"),display:R(t,"display"),flexDirection:R(t,"flex-direction"),flexWrap:R(t,"flex-wrap"),justifyContent:R(t,"justify-content"),alignItems:R(t,"align-items"),gap:R(t,"gap"),rowGap:R(t,"row-gap"),columnGap:R(t,"column-gap"),gridTemplateColumns:R(t,"grid-template-columns"),gridTemplateRows:R(t,"grid-template-rows"),position:R(t,"position"),top:R(t,"top"),right:R(t,"right"),bottom:R(t,"bottom"),left:R(t,"left"),zIndex:R(t,"z-index"),transform:R(t,"transform"),fontFamily:R(t,"font-family"),fontSize:R(t,"font-size"),fontWeight:R(t,"font-weight"),lineHeight:R(t,"line-height"),letterSpacing:R(t,"letter-spacing"),textAlign:R(t,"text-align"),textDecorationLine:R(t,"text-decoration-line")||R(t,"text-decoration"),color:R(t,"color"),backgroundColor:R(t,"background-color"),backgroundImage:R(t,"background-image"),borderStyle:R(t,"border-style"),borderWidth:R(t,"border-width"),borderTopWidth:R(t,"border-top-width"),borderRightWidth:R(t,"border-right-width"),borderBottomWidth:R(t,"border-bottom-width"),borderLeftWidth:R(t,"border-left-width"),borderColor:R(t,"border-color"),borderRadius:R(t,"border-radius"),borderTopLeftRadius:R(t,"border-top-left-radius"),borderTopRightRadius:R(t,"border-top-right-radius"),borderBottomRightRadius:R(t,"border-bottom-right-radius"),borderBottomLeftRadius:R(t,"border-bottom-left-radius"),opacity:R(t,"opacity"),overflow:R(t,"overflow"),boxShadow:R(t,"box-shadow")}}function R(t,e){const r=Na(t,e);return r||$a(t,e)}function Na(t,e){try{return t.style.getPropertyValue(e).trim()}catch{return""}}function $a(t,e){try{return window.getComputedStyle(t).getPropertyValue(e).trim()}catch{return""}}function P(t,e,r,o,i){t.applyStyle(e,r,o,{merge:!0}),i==null||i()}function Wt(t,e,r,o){const i=r.trim(),l=st(i)?"":i||"",a=st(i)?i:"none",g=t.beginMultiStyle(e,["background-color","background-image"]);g?(g.set({"background-color":l,"background-image":a}),g.commit({merge:!0})):(t.applyStyle(e,"background-color",l,{merge:!0}),t.applyStyle(e,"background-image",a,{merge:!0})),o==null||o()}function Gt(t){const e=t.trim().toLowerCase();return e==="100%"?"fill":!e||e==="auto"||e.includes("fit-content")?"fit":"fixed"}function Co(t){return!To(t.minWidth)||!To(t.minHeight)||!ko(t.maxWidth)||!ko(t.maxHeight)}function To(t){const e=ar(t);return e===""||e==="0"||e==="0px"||e==="auto"}function ko(t){const e=ar(t);return e===""||e==="none"||e==="auto"}function ar(t){return t.trim().toLowerCase()}function jo(t){const e=Number.parseFloat(t);return Number.isFinite(e)?Math.max(0,Math.min(100,Math.round(e*100))):100}function hn(t){if(typeof t=="number"&&Number.isFinite(t))return t;if(typeof t=="string"){const e=Number.parseFloat(t);if(Number.isFinite(e))return e}return 0}function Eo(t){return t.borderTopLeftRadius===t.borderTopRightRadius&&t.borderTopLeftRadius===t.borderBottomRightRadius&&t.borderTopLeftRadius===t.borderBottomLeftRadius}function Ro(t){return t.borderTopWidth===t.borderRightWidth&&t.borderTopWidth===t.borderBottomWidth&&t.borderTopWidth===t.borderLeftWidth}function kn(t){const e=t.trim();if(!e||e==="none")return{color:"rgba(15, 23, 42, 0.18)",x:"0px",y:"8px",blur:"24px",spread:"0px"};const r=e.split(/,(?![^(]*\))/)[0].replace(/\binset\b/g,"").trim(),o=r.match(/(rgba?\([^)]+\)|hsla?\([^)]+\)|#[0-9a-fA-F]{3,8}|transparent|currentColor|black|white)/i),i=(o==null?void 0:o[0])??"rgba(15, 23, 42, 0.18)",a=(o?r.replace(o[0],"").trim():r).match(/-?(?:\d+|\d*\.\d+)(?:px|rem|em|%)?/g)??[];return{color:i,x:a[0]??"0px",y:a[1]??"8px",blur:a[2]??"24px",spread:a[3]??"0px"}}function lr(t){const e=[N(t.x)||"0px",N(t.y)||"0px",N(t.blur)||"0px",N(t.spread)||"0px",t.color.trim()||"rgba(15, 23, 42, 0.18)"];return e.every(r=>r==="0px"||r==="rgba(15, 23, 42, 0.18)")?"0px 0px 0px 0px rgba(15, 23, 42, 0.18)":e.join(" ")}function Va(t){const e=t.trim();return!e||e.startsWith("var(")?!1:typeof CSS<"u"&&typeof CSS.supports=="function"?CSS.supports("color",e):!0}function st(t){const e=t.trim().toLowerCase();return e.includes("linear-gradient(")||e.includes("radial-gradient(")||e.includes("conic-gradient(")}function Ya(t){const e=t.trim();if(!e)return{kind:"unit",amount:"",unit:"px"};if(e==="auto"||e==="none")return{kind:"unit",amount:"",unit:e};const r=e.match(/^(-?(?:\d+|\d*\.\d+))(px|%|vw|vh|em|rem)$/i);return r?{kind:"unit",amount:r[1],unit:r[2].toLowerCase()}:/^-?(?:\d+|\d*\.\d+)$/.test(e)?{kind:"unit",amount:e,unit:"px"}:{kind:"raw"}}function Po(t,e){if(e==="auto"||e==="none")return e;const r=t.trim();return r?`${r}${e}`:""}function Ua(t){if(!st(t))return t||"#ffffff";const e=t.match(/\((.*)\)/);if(!e)return"#ffffff";const i=e[1].split(/,(?![^(]*\))/).map(l=>l.trim()).filter(Boolean).filter(l=>/#|rgb|hsl/i.test(l)).map((l,a,g)=>{const f=l.split(/\s+/),c=f[0],d=f.find(b=>b.endsWith("%")),m=g.length===1?100:Math.round(a/(g.length-1)*100),u=d?Number.parseFloat(d):m;return c?{color:c,percent:u}:null}).filter(l=>!!l);return i.length>0?i:"#ffffff"}function N(t){const e=t.trim();return e?/^-?(?:\d+|\d*\.\d+)$/.test(e)?`${e}px`:/^-?\d+\.$/.test(e)?`${e.slice(0,-1)}px`:e:""}const Tt={fontSize:11,color:h.textMuted,lineHeight:1.4},Io={appearance:"none",display:"flex",flexDirection:"column",alignItems:"flex-start",gap:6,width:"100%",minHeight:88,padding:"12px 14px",borderRadius:12,border:`1px solid ${h.border}`,background:h.surfaceMuted,textAlign:"left",cursor:"pointer",font:"inherit"},Xa=s.forwardRef(function(e,r){const{label:o,value:i,capturing:l,onActivate:a,onCapture:g,onCancelCapture:f,onClear:c}=e;return n.jsxs("button",{ref:r,type:"button",style:{...Io,border:l?`1px solid ${h.accentRing}`:Io.border,boxShadow:l?`0 0 0 3px ${h.accentSoft}`:"none"},onClick:a,onKeyDown:d=>{if(d.key==="Escape"){d.preventDefault(),f();return}const m=yn(d.key);m&&(d.preventDefault(),d.stopPropagation(),g(m))},children:[n.jsx("span",{style:{fontSize:12,fontWeight:600,color:h.textSecondary},children:o}),n.jsx("span",{style:{fontSize:18,fontWeight:600,color:h.textPrimary},children:l?"按下修饰键…":Jr(i)}),n.jsx("span",{style:Tt,children:l?"仅支持 Shift / Alt / Ctrl / Command,按 Esc 取消。":"点击后录入一个修饰键。"}),i?n.jsx("span",{style:{...Tt,color:h.accent},onClick:d=>{d.stopPropagation(),c()},children:"清空"}):null]})});function Ft(t,e){const r=St();if(r){r.message({type:t,content:e});return}bn.open({type:t,content:e})}const cl=s.forwardRef(function(e,r){var Vn,Yn,Un,Xn,Kn,qn,Zn;const{options:o,currentTarget:i,uiMode:l,toolMinimized:a,uiSettings:g,interactionProfile:f,genieVisualState:c,onGenieVisualStateChange:d,onUiSettingsChange:m,onHoverSelectionSuppressedChange:u,onSelectionInteractionLockChange:b,onUiModeChange:S,onToolMinimizedChange:T,onTargetChange:k,onRefreshNoteState:M,canEditText:I,draftText:D,textDirty:E,onTextDraftChange:B,onCancelText:L,onConfirmText:_,images:F,onRemoveImage:j,onNotePasteCapture:C,canEditNote:z,draftNote:J,noteDirty:je,onDraftChange:ct,onClearCurrentElementEdits:qe,onConfirmNote:pe,onDismissSelection:ve}=e,Ee=s.useRef(null),ze=s.useRef(null),Oe=s.useRef(null),Me=s.useRef(null),y=s.useRef(null),w=s.useRef(null),$=s.useRef(null),ge=s.useRef(null),le=s.useRef(null),Q=s.useRef([]),be=s.useRef(null),se=s.useRef(null),Se=s.useRef(i),dt=s.useRef("design"),ut=s.useRef(null),ce=s.useRef(o.initialPosition??null),pt=s.useRef(l),[Be,gt]=s.useState(0),[qt,jt]=s.useState(0),[Ae,He]=s.useState(Math.max(0,((Vn=o.getModifiedElementCount)==null?void 0:Vn.call(o))??0)),[ie,Et]=s.useState(!1),[ft,ye]=s.useState(!1),[ae,We]=s.useState(!1),[Ze,mt]=s.useState(!1),[Zt,Le]=s.useState(!1),[Rt,V]=s.useState(!1),[fe,Qt]=s.useState(null),[Qe,Jt]=s.useState(o.initialPosition??null),[Ge,Je]=s.useState(!1),[ht,Fe]=s.useState({velocityX:0,velocityY:0}),[et,tt]=s.useState(()=>({width:window.innerWidth,height:window.innerHeight})),[Ne,nt]=s.useState(null),[$e,en]=s.useState(!1),[Ce,Pt]=s.useState(((Yn=o.getAnnotationShortcutSettings)==null?void 0:Yn.call(o))??{...oo}),[Ve,x]=s.useState(null),[A,q]=s.useState(0),[oe,de]=s.useState(null),[Re,Ye]=s.useState(!1),[bt,tn]=s.useState(!1);Se.current=i;const{currentTask:W,currentTaskRunning:Ue,currentTaskSessionReady:cr,currentTaskTerminal:dr,pageTaskRunning:It,pageTaskSessionReady:ur,hasReusableConversation:nn,effectiveVisualState:on}=Jo({currentTarget:i,visualState:c,getElementGenieTaskState:o.getElementGenieTaskState,getVisibleElementGenieTaskStates:o.getVisibleElementGenieTaskStates,getHasReusableGenieConversation:o.getHasReusableGenieConversation,getGenieBridgeConnected:o.getGenieBridgeConnected}),_n=!!(i&&((Un=o.getCanAbortSendPromptToGenie)!=null&&Un.call(o,i))),Mn=!!(ft&&W&&oe&&W.elementKey===oe);s.useEffect(()=>{ft&&Ue&&nn&&(ye(!1),de(null))},[Ue,ft,nn]);const _t=s.useCallback(()=>{var p;se.current!==null&&(window.cancelAnimationFrame(se.current),se.current=null);try{(p=be.current)==null||p.disconnect()}catch{}be.current=null},[]),Xe=s.useCallback(()=>{q(p=>p+1)},[]),Bn=s.useCallback(()=>{se.current===null&&(se.current=window.requestAnimationFrame(()=>{se.current=null,Xe()}))},[Xe]),An=s.useCallback(p=>{if(_t(),!p||!p.isConnected||typeof MutationObserver>"u")return;const v=new MutationObserver(()=>{Se.current===p&&Bn()});try{v.observe(p,{attributes:!0,attributeFilter:["style"]}),be.current=v}catch{try{v.disconnect()}catch{}}},[_t,Bn]),Mt=s.useCallback((p,v)=>{const H=Ee.current,G=H==null?void 0:H.getBoundingClientRect(),K=(v==null?void 0:v.width)??(G==null?void 0:G.width)??(a?pn:Yt),he=(v==null?void 0:v.height)??(G==null?void 0:G.height)??(a?$t:l==="panel-note"?680:72);return tr({position:p,size:{width:K,height:he},viewport:et,margin:Dt})},[a,l,et]),Ln=s.useCallback(p=>{ut.current=p?Mt(p,{width:pn,height:$t}):null,Qt(ut.current)},[Mt]),ot=s.useCallback(p=>{var v;ce.current=p?Mt(p):null,Jt(ce.current),(v=o.onPositionChange)==null||v.call(o,ce.current)},[Mt,o]),Te=s.useCallback(()=>{var p;He(Math.max(0,((p=o.getModifiedElementCount)==null?void 0:p.call(o))??0))},[o]),Dn=s.useCallback(async p=>{if(p){Et(!0);try{await p()}finally{Et(!1),Te()}}},[Te]),rn=s.useCallback(async()=>{if(o.onSendPromptToGenie){Le(!1),V(!1),ye(!0),de((W==null?void 0:W.elementKey)??null),We(!1);try{await o.onSendPromptToGenie(i)}catch{}finally{ye(!1),We(!1),Le(!1),V(!1),de(null),Te()}}},[W==null?void 0:W.elementKey,i,o,Te]),zn=s.useCallback(async()=>{if(o.onAbortSendPromptToGenie){V(!1),We(!0);try{await o.onAbortSendPromptToGenie(i)}catch{}finally{We(!1)}}},[i,o]),xt=s.useCallback(()=>{nt(null),T(!1)},[T]),an=s.useCallback(()=>{nt(null),T(!0)},[T]);s.useEffect(()=>{const p=v=>{if(v.key!=="\\")return;const H=/Mac|iPhone|iPad|iPod/i.test(navigator.platform);(H?v.metaKey:v.ctrlKey)&&(v.shiftKey||v.altKey||H&&v.ctrlKey||!H&&v.metaKey||(v.preventDefault(),v.stopPropagation(),a?xt():an()))};return document.addEventListener("keydown",p,!0),()=>document.removeEventListener("keydown",p,!0)},[a,xt,an]);const rt=s.useCallback(()=>{var p;en(!1),x(null),(p=o.onAnnotationShortcutDialogOpenChange)==null||p.call(o,!1)},[o]),yt=s.useMemo(()=>{const[p,v]=Ce.shortcuts;return p&&v&&p===v?"两个快捷键不能配置为同一个修饰键。":""},[Ce.shortcuts]),me=!a&&f!=="text-annotation"&&g.styleDesignEnabled&&l==="panel-note"&&!!i,On=on==="awake",pr=g.darkMode?"dark":"light";s.useEffect(()=>{(f==="text-annotation"||!g.styleDesignEnabled)&&l==="panel-note"&&S("bubble-card")},[f,S,l,g.styleDesignEnabled]);const gr=s.useCallback(async()=>{if(!(Ze||It)){if(On){d("sleeping");return}if(!o.onWakeGenie){Ft("warning","当前环境未配置 Genie 唤醒能力。");return}mt(!0);try{if(await o.onWakeGenie()!==!0){Ft("warning","服务未启动,无法唤醒 Genie");return}d("awake")}catch{}finally{mt(!1)}}},[On,Ze,d,o,It]),Bt=s.useCallback(p=>{Pt(v=>cn(p(v)))},[]),fr=s.useCallback(()=>{var H,G;if(yt)return;const p=cn(Ce),v=cn(((H=o.getAnnotationShortcutSettings)==null?void 0:H.call(o))??oo);ei(p,v)||(G=o.onAnnotationShortcutSettingsChange)==null||G.call(o,p),rt()},[rt,o,Ce,yt]);s.useEffect(()=>{const p=Ee.current;if(!p)return;Je(!1),Fe({velocityX:0,velocityY:0});const v=K=>{var Qn,Jn;if(a||!me){nt(null),Ln(K);return}const he=((Qn=ce.current)==null?void 0:Qn.top)??((Jn=Ee.current)==null?void 0:Jn.getBoundingClientRect().top)??K.top;ot({left:K.left,top:he})};if(a){const K=w.current;return K?ho({handleEl:K,targetEl:p,clampMargin:Dt,onPositionChange:v,moveThresholdPx:ue()?8:3,onDragStateChange:he=>{Je(he),he||Fe({velocityX:0,velocityY:0})}}):void 0}const H=[Oe.current,Me.current,y.current].filter(K=>!!K);if(H.length===0)return;const G=H.map(K=>ho({handleEl:K,targetEl:p,clampMargin:Dt,onPositionChange:v,moveThresholdPx:ue()?8:3,ignoreInteractiveChildren:!0,onDragStateChange:he=>{Je(he),he||Fe({velocityX:0,velocityY:0})},onDragMetricsChange:he=>{Fe(he)}}));return()=>{Je(!1),Fe({velocityX:0,velocityY:0}),G.forEach(K=>K())}},[ot,Ln,me,a]),s.useEffect(()=>{pt.current!=="panel-note"&&l==="panel-note"&&ot(null),pt.current=l},[ot,l]),s.useEffect(()=>{const p=()=>{tt({width:window.innerWidth,height:window.innerHeight})};return window.addEventListener("resize",p),()=>{window.removeEventListener("resize",p)}},[]),s.useEffect(()=>{const p=v=>{const H=ze.current;if(!H||l!=="panel-note")return;const G=H.getBoundingClientRect(),K=v.clientX>=G.left&&v.clientX<=G.right,he=v.clientY>=G.top&&v.clientY<=G.bottom;!K||!he||H.scrollHeight<=H.clientHeight||(H.scrollTop+=v.deltaY,v.cancelable&&v.preventDefault(),v.stopPropagation())};return window.addEventListener("wheel",p,{capture:!0,passive:!1}),()=>{window.removeEventListener("wheel",p,{capture:!0})}},[l]),s.useEffect(()=>(An(i),()=>{_t()}),[An,i,_t]),s.useEffect(()=>{Xe()},[i,Xe]),s.useEffect(()=>()=>{var p;(p=o.onAnnotationShortcutDialogOpenChange)==null||p.call(o,!1)},[o]);const Hn=s.useCallback(()=>{var v;const p=(v=ge.current)==null?void 0:v.querySelector("input");if(!(p instanceof HTMLInputElement)||p.disabled)return!1;p.focus({preventScroll:!0});try{p.setSelectionRange(p.value.length,p.value.length)}catch{}return!0},[]),Wn=s.useCallback(()=>{var v;const p=(v=le.current)==null?void 0:v.querySelector("textarea");if(!(p instanceof HTMLTextAreaElement)||p.disabled)return!1;p.focus({preventScroll:!0});try{p.setSelectionRange(p.value.length,p.value.length)}catch{}return!0},[]);s.useEffect(()=>{if(a||l!=="panel-note")return;const p=window.requestAnimationFrame(()=>{Wn()||I&&Hn()});return()=>{window.cancelAnimationFrame(p)}},[I,i,Wn,Hn,a,l]);const Gn=s.useCallback(async()=>{var v;await pe();const p=(v=le.current)==null?void 0:v.querySelector("textarea");p instanceof HTMLTextAreaElement&&p.blur(),ve==null||ve()},[pe,ve]);s.useEffect(()=>{a&&u(!1)},[u,a]),s.useEffect(()=>{a&&b(!1)},[b,a]),s.useEffect(()=>{a&&(Le(!1),V(!1),Ye(!1))},[a]),s.useEffect(()=>()=>{u(!1),b(!1)},[u,b]),s.useEffect(()=>{Te()},[Te]),s.useEffect(()=>{a&&$e&&rt()},[rt,$e,a]),s.useLayoutEffect(()=>{if(a)return;const p=()=>{var H;const v=(H=$.current)==null?void 0:H.getBoundingClientRect();v&&nt(G=>{const K={left:v.left,top:v.top,width:v.width,height:v.height};return G&&G.left===K.left&&G.top===K.top&&G.width===K.width&&G.height===K.height?G:K})};return p(),window.addEventListener("resize",p),()=>{window.removeEventListener("resize",p)}},[ie,i,Ae,Qe,qt,$e,fe,a,l,Be]),s.useEffect(()=>{if(Ve===null)return;const p=Q.current[Ve];if(!p)return;const v=window.requestAnimationFrame(()=>{p.focus({preventScroll:!0})});return()=>{window.cancelAnimationFrame(v)}},[Ve]),s.useImperativeHandle(r,()=>({setTarget(p){k(p)},setTab(p){dt.current=p},getTab(){return dt.current},refresh(){M(),Xe(),Te()},setHistory(p,v){gt(Math.max(0,Math.floor(p))),jt(Math.max(0,Math.floor(v))),Te()},getPosition(){return me?ce.current:ut.current},setPosition(p){ot(p)},enterAnnotationInput(p="bubble-card"){a&&xt(),S(p),M()}}),[ot,M,k,S,Xe,xt,me,Te,a]);const Fn=(Xn=o.getCopyPromptBlockReason)==null?void 0:Xn.call(o),mr=!o.onCopyPrompt||!!Fn,Y=Xi({toolMinimized:a,visualState:on,waking:Ze,sending:Mn,interrupting:ae,hasReusableConversation:nn,pageTaskRunning:It,pageTaskSessionReady:ur,currentTaskRunning:Ue,currentTaskSessionReady:cr,canInterrupt:_n,onSendPromptToGenie:o.onSendPromptToGenie,getGenieBridgeConnected:o.getGenieBridgeConnected,getSendPromptToGenieBlockReason:()=>{var p;return(p=o.getSendPromptToGenieBlockReason)==null?void 0:p.call(o,i)}}),hr=_n,xe=Y.robotState==="awake"||Y.robotState==="working",br=Ge&&xe?"dragging":Y.robotState==="waking"?on:Y.robotState,At=(W==null?void 0:W.sessionUrl)??(W!=null&&W.sessionId?`/session/${W.sessionId}`:""),xr=s.useCallback(()=>{At&&window.open(At,"_blank","noopener,noreferrer")},[At]),yr=s.useCallback(()=>{!i||!o.dismissElementGenieTaskState||o.dismissElementGenieTaskState(i)},[i,o]),wr=W?n.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:10,padding:"12px 14px",borderRadius:18,border:W.status==="error"?"1px solid rgba(239, 68, 68, 0.24)":W.status==="completed"?"1px solid rgba(34, 197, 94, 0.24)":"1px solid rgba(0, 143, 93, 0.22)",background:W.status==="error"?"rgba(127, 29, 29, 0.14)":W.status==="completed"?"rgba(20, 83, 45, 0.14)":"rgba(0, 143, 93, 0.08)",boxShadow:"inset 0 1px 0 rgba(255, 255, 255, 0.03)"},children:[n.jsxs("div",{style:{display:"flex",alignItems:"center",gap:8},children:[W.status==="completed"?n.jsx(Bo,{style:{color:"#22c55e"}}):W.status==="error"?n.jsx(Ao,{style:{color:"#ef4444"}}):n.jsx(Ut,{}),n.jsx("span",{style:{fontSize:12,fontWeight:700,color:h.textPrimary},children:W.status==="pending"?"Genie 准备中":W.status==="created"?"Genie 正在修改":W.status==="completed"?"Genie 修改完成":"Genie 修改失败"})]}),n.jsxs("span",{style:{fontSize:12,lineHeight:1.6,color:h.textSecondary},children:[W.message,W.sessionId?` · Session ${W.sessionId}`:""]}),n.jsxs(De,{size:8,wrap:!0,children:[Ue?n.jsx(re,{size:"small",danger:!0,icon:n.jsx(sn,{}),disabled:!hr||ae,loading:ae,onClick:()=>{zn()},children:"中断"}):null,W.status==="error"?n.jsx(re,{size:"small",icon:n.jsx(Vr,{}),disabled:Y.sendDisabled||ie,onClick:()=>{rn()},children:"重试"}):null,At?n.jsx(re,{size:"small",icon:n.jsx(zo,{}),onClick:xr,children:"打开会话"}):null,dr?n.jsx(re,{size:"small",icon:n.jsx(Cn,{}),onClick:yr,children:"关闭提示"}):null]})]}):null,Nn=s.useMemo(()=>pa({actionRect:Ne,floatingPosition:fe,viewport:et,panelWidth:Yt,panelRight:lt,panelBottom:Lt,compactSize:it,compactWidth:a?it:pn,compactHeight:a?it:$t,margin:Dt,headerPaddingX:ai,headerPaddingY:un,controlSize:li}),[Ne,fe,a,et]),ln=ue()&&!a&&l==="bubble-card"&&!!i,vr=a?{...fe||Ne?{left:Nn.left,top:Nn.top,right:"auto",bottom:"auto"}:{right:lt,bottom:Lt,top:"auto"},position:"absolute",zIndex:gn.zIndex,width:it,height:it,maxWidth:it,borderRadius:999,pointerEvents:"auto",overflow:"visible",border:"none",background:"transparent",boxShadow:"none"}:me?{...gn,maxHeight:l==="panel-note"?"calc(100vh - 48px)":void 0,...ln?{pointerEvents:"none",opacity:0}:{},...Qe?{left:Qe.left,top:Qe.top,right:"auto",bottom:"auto"}:{right:lt,bottom:Lt,top:"auto"}}:{...gn,width:"fit-content",height:"auto",maxWidth:"calc(100vw - 32px)",border:"none",background:"transparent",boxShadow:"none",pointerEvents:ln?"none":"auto",overflow:"visible",opacity:ln?0:1,...fe?{left:fe.left,top:fe.top,right:"auto",bottom:"auto"}:{right:lt,bottom:Lt,top:"auto"}},Sr=o.showCopyPromptAction!==!1&&!xe?n.jsx(Pe,{title:Fn??"复制 Prompt",icon:n.jsx(to,{}),awake:xe,disabled:ie||mr,onClick:()=>{Dn(o.onCopyPrompt)}}):null,$n=ie||Y.sendDisabled,Cr=ie||Y.interruptDisabled,Tr=Y.sendVisible?Y.sendRequiresConfirm?$n?n.jsx(Pe,{title:Y.sendTitle,icon:n.jsx(Nt,{}),awake:xe,loading:Y.sendLoading,disabled:!0}):n.jsx(no,{title:"让 Genie 修改",description:"确认后 Genie 会根据你的编辑修改当前页面。",arrow:{pointAtCenter:!0},open:Zt,onOpenChange:p=>{Ue||Le(p)},okText:"开始修改",cancelText:"取消",okButtonProps:{loading:Mn},onConfirm:()=>rn(),children:n.jsx("span",{style:{display:"inline-flex"},children:n.jsx(Pe,{title:Y.sendTitle,icon:n.jsx(Nt,{}),awake:xe,loading:Y.sendLoading})})}):n.jsx(Pe,{title:Y.sendTitle,icon:n.jsx(Nt,{}),awake:xe,loading:Y.sendLoading,disabled:$n,onClick:()=>{rn()}}):null,kr=Y.interruptVisible?Cr?n.jsx(Pe,{title:Y.interruptTitle,icon:n.jsx(sn,{}),awake:xe,loading:Y.interruptLoading,disabled:!0}):n.jsx(no,{title:"停止 Genie 修改",description:"确认后 Genie 会停止当前修改。",arrow:{pointAtCenter:!0},open:Rt,onOpenChange:p=>{ae||V(p)},okText:"确认停止",cancelText:"取消",okButtonProps:{danger:!0,loading:Y.interruptLoading},onConfirm:()=>zn(),children:n.jsx("span",{style:{display:"inline-flex"},children:n.jsx(Pe,{title:Y.interruptTitle,icon:n.jsx(sn,{}),awake:xe,loading:Y.interruptLoading})})}):null,jr=ie||It||Ue||Ae<=0||!o.onClearEdits,Er=n.jsx(Pe,{title:"清空全部编辑",icon:n.jsx(xn,{}),awake:xe,disabled:jr,onClick:()=>{Dn(()=>{var p;return(p=o.onClearEdits)==null?void 0:p.call(o)})}}),Rr=[{key:"genie-agent",label:"执行 agent",control:n.jsx(we,{allowClear:!0,placeholder:"默认",value:g.genieAgent??void 0,options:[{value:"claude",label:"Claude"},{value:"codex",label:"Codex"},{value:"gemini",label:"Gemini"},{value:"opencode",label:"OpenCode"}],onChange:p=>{m({...g,genieAgent:p??null})},style:{width:124}})},...f==="text-annotation"?[]:[{key:"design-tool",label:"微调工具",control:n.jsx(we,{allowClear:!0,placeholder:"未设置",value:g.designAdjustmentTool??void 0,options:[{value:"figma",label:"Figma"},{value:"axure",label:"Axure"},{value:"pencil",label:"Pencil"}],onChange:p=>{m({...g,designAdjustmentTool:p??null})},style:{width:124}})},{key:"style-design",label:"样式编辑",control:n.jsx(at,{checked:g.styleDesignEnabled,onChange:p=>{m({...g,styleDesignEnabled:p})}})}],{key:"install-skill",label:"AI 处理 skills",control:n.jsxs(re,{type:"text",size:"small",style:{padding:"0 4px",color:h.textSecondary,fontSize:13,width:56,display:"inline-flex",alignItems:"center",justifyContent:"center",gap:4},onClick:async()=>{const p=["请帮忙安装自动处理技能。","","技能源文件路径:skills/genie-editor-cli-workflow/","","请根据你的常规技能安装规则,将 skills/genie-editor-cli-workflow/ 目录下的所有文件(包括 SKILL.md 和 references/ 文件夹)安装到当前项目中。"].join(` +`);try{await navigator.clipboard.writeText(p),Ft("success","已复制安装提示词")}catch{Ft("error","复制失败")}Ye(!1)},children:[n.jsx("span",{children:"安装"}),n.jsx(to,{style:{fontSize:13}})]})},{key:"keyboard-shortcuts",label:"快捷键",control:n.jsxs(re,{type:"text",size:"small",style:{padding:"0 4px",color:h.textSecondary,fontSize:13,width:56,display:"inline-flex",alignItems:"center",justifyContent:"center",gap:4},onClick:()=>{tn(!0),Ye(!1)},children:[n.jsx("span",{children:"查看"}),n.jsx("span",{style:{fontSize:13,fontFamily:"inherit"},children:"⌘"})]})},{key:"dark-mode",label:"暗黑模式",control:n.jsx(at,{checked:g.darkMode,onChange:p=>{m({...g,darkMode:p})}})}].filter(p=>ue()?p.key==="genie-agent"||p.key==="dark-mode":!0),Pr=n.jsx(De,{direction:"vertical",size:12,onPointerDownCapture:p=>p.stopPropagation(),style:{width:238},children:Rr.map(p=>n.jsxs(Yr,{align:"center",justify:"space-between",gap:12,children:[n.jsx("span",{style:{fontSize:13,color:h.textPrimary,whiteSpace:"nowrap",flex:"0 0 auto"},children:p.label}),n.jsx("div",{style:{display:"inline-flex",alignItems:"center",justifyContent:"flex-end",flex:"0 0 auto"},children:p.control})]},p.key))}),Ir=n.jsx(Do,{trigger:"click",placement:"bottomRight",open:ie?!1:Re,onOpenChange:p=>{ie||Ye(p)},arrow:!1,content:Pr,children:n.jsx("span",{style:{display:"inline-flex"},children:n.jsx(Pe,{title:"设置",icon:n.jsx(Kr,{}),awake:xe,disabled:ie})})}),_r=n.jsx(Qi,{awake:xe,dragHandleRef:Oe,fullWidth:me,style:{alignSelf:me?"stretch":"flex-start",width:me?"calc(100% - 16px)":"fit-content",maxWidth:me?"calc(100% - 16px)":"calc(100% - 8px)",margin:me?"6px 8px 8px":"0"},children:n.jsxs("div",{style:{display:"flex",alignItems:"center",justifyContent:me?"space-between":"flex-start",gap:8,width:me?"100%":"auto",minWidth:0},children:[n.jsxs(De,{size:4,children:[n.jsx("div",{style:{display:"inline-flex",alignItems:"center"},children:n.jsx(aa,{state:br,size:si,title:Y.robotTitle,disabled:Y.robotDisabled,loading:Y.robotLoading,themeMode:pr,dragVelocity:{x:ht.velocityX,y:ht.velocityY},onClick:()=>{gr()}})}),Tr,kr]}),n.jsxs(De,{size:4,children:[n.jsx("div",{style:{width:1,height:18,marginInline:6,background:h.divider,borderRadius:999,flex:"0 0 auto"}}),Sr,Er,Ir,n.jsx("div",{ref:$,style:{display:"inline-flex"},children:n.jsx(Pe,{title:"关闭工具",icon:n.jsx(Cn,{}),awake:xe,onClick:an})})]})]})}),Mr=n.jsxs("button",{className:"we-runtime-prop-panel__minimized-trigger we-runtime-prop-panel__drag-handle",ref:w,type:"button","aria-label":"开启编辑",title:"开启编辑",onClick:xt,style:{position:"absolute",inset:0,width:"100%",height:"100%",overflow:"visible",border:"none",background:"transparent",color:h.textPrimary,display:"inline-flex",alignItems:"center",justifyContent:"center",borderRadius:999,touchAction:"none",pointerEvents:a?"auto":"none",opacity:a?1:0,transform:a?"scale(1)":"scale(0.9)",transition:"opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease"},children:[n.jsx("span",{"aria-hidden":"true",style:{position:"absolute",inset:0,borderRadius:999,background:h.toolbarShellBorder,boxShadow:h.shadowCompact}}),n.jsx("span",{"aria-hidden":"true",style:{position:"absolute",inset:1,borderRadius:999,background:h.surface,boxShadow:h.toolbarShellInset}}),n.jsx("span",{style:{position:"relative",zIndex:1,width:32,height:32,display:"inline-flex",alignItems:"center",justifyContent:"center",color:h.textSecondary,transition:"background-color 220ms ease, color 220ms ease, transform 220ms ease"},children:n.jsx(Ut,{})}),Ae>0?n.jsx("span",{style:{position:"absolute",top:-6,right:-6,minWidth:18,height:18,paddingInline:5,borderRadius:999,background:h.accent,color:"#FFFFFF",fontSize:10,fontWeight:700,lineHeight:"18px",boxShadow:`0 6px 14px ${di}`,pointerEvents:"none",zIndex:2},children:Ae>99?"99+":Ae}):null]});return n.jsxs("div",{ref:Ee,"data-we-selection-lock-root":"true",style:{...vr,transition:Ge?"none":"left 220ms cubic-bezier(0.2, 0.8, 0.2, 1), top 220ms cubic-bezier(0.2, 0.8, 0.2, 1), width 220ms cubic-bezier(0.2, 0.8, 0.2, 1), height 220ms cubic-bezier(0.2, 0.8, 0.2, 1), max-height 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease, border-radius 220ms ease, border-color 220ms ease, background-color 220ms ease",willChange:Ge?"left, top":void 0},onPointerDownCapture:()=>{b(!0)},onFocusCapture:()=>{b(!0)},onPointerEnter:()=>{a||u(!0)},onPointerLeave:()=>u(!1),children:[n.jsx("style",{children:hi}),me?n.jsxs("div",{ref:ze,style:mi,"aria-hidden":!1,children:[n.jsxs("div",{ref:Me,className:"we-runtime-prop-panel__drag-handle",style:{display:"flex",alignItems:"center",justifyContent:"space-between",gap:8,padding:`${Math.max(4,un-2)}px 0 ${Math.max(4,un-3)}px`,borderBottom:`1px solid ${h.divider}`,marginBottom:8},children:[n.jsxs(De,{size:8,wrap:!0,style:{rowGap:6},children:[n.jsx(Ie,{title:Be>0?`撤销 (${Be})`:"撤销",icon:n.jsx(Ur,{}),tone:"dark",disabled:ie||Be<=0||!o.onUndo,onClick:()=>{var p;return(p=o.onUndo)==null?void 0:p.call(o)}}),n.jsx(Ie,{title:"清空当前编辑",icon:n.jsx(xn,{}),tone:"dark",disabled:!i||Ue,onClick:()=>{qe()}})]}),n.jsx(De,{size:8,wrap:!0,style:{rowGap:6},children:n.jsx(Ie,{title:"简易模式",icon:n.jsx(Xr,{}),tone:"dark",onClick:()=>S("bubble-card")})})]}),n.jsx("div",{ref:y,className:"we-runtime-prop-panel__drag-handle","aria-hidden":"true",style:{display:"flex",alignItems:"center",width:"100%",height:14,marginBottom:4,cursor:"grab"}}),n.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:8,padding:"8px 0 6px"},onPointerDownCapture:p=>p.stopPropagation(),children:[wr,I?n.jsx("div",{ref:ge,children:n.jsx(Z,{value:D,allowClear:!0,placeholder:Wo,style:{borderRadius:8,background:h.surfaceMuted,borderColor:h.border,color:h.textPrimary,boxShadow:"none"},onChange:p=>{B(p.target.value)},onPressEnter:p=>{p.preventDefault(),_()},onKeyDown:p=>{p.key==="Escape"&&(p.preventDefault(),p.stopPropagation(),L())},onBlur:()=>{E&&_()}})}):null,n.jsxs("div",{ref:le,children:[n.jsx(Z.TextArea,{value:J,disabled:!i||!z,allowClear:!0,rows:2,style:{borderRadius:8,background:h.surfaceMuted,borderColor:h.border,color:h.textPrimary,boxShadow:"none"},placeholder:Go,onChange:p=>{ct(p.target.value)},onPasteCapture:C,onPressEnter:p=>{p.preventDefault(),Gn()},onKeyDown:p=>{p.key==="Escape"&&(p.preventDefault(),Gn())},onBlur:p=>{var H;const v=p.relatedTarget;v instanceof Node&&((H=le.current)!=null&&H.contains(v))||je&&pe()}}),F.length>0?n.jsx("div",{style:{marginTop:8},children:n.jsx(er,{images:F,onRemoveImage:p=>{j(p)}})}):null]})]}),n.jsx(_a,{target:i,transactionManager:o.transactionManager,tokensService:o.tokensService,disabled:ie,refreshKey:A,onRefreshRequest:()=>{Xe(),Te()}})]}):null,a?Mr:_r,n.jsx(kt,{title:"语音快捷键",open:$e,centered:!0,getContainer:!1,maskClosable:!0,onCancel:rt,footer:[n.jsx(re,{onClick:rt,children:"取消"},"cancel"),n.jsx(re,{type:"primary",disabled:!!yt,onClick:fr,children:"保存"},"save")],children:n.jsxs("div",{style:{display:"flex",flexDirection:"column",gap:16},children:[n.jsxs("div",{style:{display:"flex",alignItems:"center",justifyContent:"space-between",gap:12,padding:"12px 0"},children:[n.jsxs("div",{children:[n.jsx("div",{style:{fontSize:13,fontWeight:600,color:h.textPrimary},children:"启用语音快捷键"}),n.jsx("div",{style:Tt,children:"开启后才会响应长按修饰键和鼠标中键。"})]}),n.jsx(at,{checked:Ce.enabled,onChange:p=>{Bt(v=>({...v,enabled:p}))}})]}),n.jsxs("div",{style:{display:"flex",alignItems:"center",justifyContent:"space-between",gap:12,padding:"12px 0",borderTop:`1px solid ${h.border}`,borderBottom:`1px solid ${h.border}`},children:[n.jsxs("div",{children:[n.jsx("div",{style:{fontSize:13,fontWeight:600,color:h.textPrimary},children:"启用鼠标中键监听"}),n.jsx("div",{style:Tt,children:"鼠标中键单击会直接进入标注气泡卡片。"})]}),n.jsx(at,{checked:Ce.middleClickEnabled,onChange:p=>{Bt(v=>({...v,middleClickEnabled:p}))}})]}),n.jsx("div",{style:{display:"grid",gridTemplateColumns:"1fr 1fr",gap:12},children:[0,1].map(p=>n.jsx(Xa,{ref:v=>{Q.current[p]=v},label:`快捷键 ${p+1}`,value:Ce.shortcuts[p]??null,capturing:Ve===p,onActivate:()=>x(p),onCapture:v=>{Bt(H=>{const G=[...H.shortcuts];return G[p]=v,{...H,shortcuts:G}}),x(null)},onCancelCapture:()=>x(null),onClear:()=>{Bt(v=>{const H=[...v.shortcuts];return H[p]=null,{...v,shortcuts:H}})}},p))}),n.jsxs("div",{style:Tt,children:["仅支持 Shift / Alt / Ctrl / Command,长按 ",Zr,"ms 触发。"]}),yt?n.jsx("div",{style:{fontSize:12,color:h.textDanger},children:yt}):null]})}),n.jsx(kt,{title:"快捷键",open:bt,centered:!0,getContainer:!1,maskClosable:!0,onCancel:()=>tn(!1),footer:[n.jsx(re,{type:"primary",onClick:()=>tn(!1),children:"知道了"},"close")],children:n.jsx("div",{style:{display:"flex",flexDirection:"column",gap:0},children:[{keys:[`${(Kn=navigator.platform)!=null&&Kn.includes("Mac")?"⌘":"Ctrl"} + \\`],label:"开启 / 关闭工具",desc:"在任意状态下切换编辑工具的展开与收起,等同于工具栏的关闭和展开按钮"},{keys:["Enter","Esc"],label:"保存并关闭气泡卡片",desc:"在气泡卡片的输入框中按下,保存当前标注内容并关闭卡片"},{keys:[`${(qn=navigator.platform)!=null&&qn.includes("Mac")?"⌘":"Ctrl"} + Enter`],label:"快捷执行并关闭",desc:"保存当前标注并立即发送给 Genie 执行,同时关闭气泡卡片"},{keys:[`${(Zn=navigator.platform)!=null&&Zn.includes("Mac")?"⌘":"Ctrl"} + V`],label:"粘贴图片或文案",desc:"Genie 开启时,在气泡卡片或待选框中可直接粘贴图片和文案"}].map(p=>n.jsxs("div",{style:{display:"flex",alignItems:"flex-start",justifyContent:"space-between",gap:16,padding:"14px 0",borderBottom:`1px solid ${h.border}`},children:[n.jsxs("div",{style:{flex:1,minWidth:0},children:[n.jsx("div",{style:{fontSize:13,fontWeight:600,color:h.textPrimary},children:p.label}),n.jsx("div",{style:{fontSize:12,color:h.textMuted,marginTop:2},children:p.desc})]}),n.jsx("div",{style:{display:"flex",gap:4,flexShrink:0,alignItems:"center",paddingTop:2},children:p.keys.map(v=>n.jsx("kbd",{style:{display:"inline-block",padding:"2px 8px",fontSize:12,fontFamily:"system-ui, -apple-system, sans-serif",fontWeight:500,lineHeight:"20px",color:h.textPrimary,background:h.surfaceMuted,border:`1px solid ${h.border}`,borderRadius:6,whiteSpace:"nowrap"},children:v},v))})]},p.label))})})]})}),sr=s.forwardRef((t,e)=>{const[r,o]=s.useState(t.defaultValue??""),[i,l]=s.useState(""),a=s.useRef(null);s.useImperativeHandle(e,()=>({getValue:()=>r,setError:c=>{l(c)},focus:c=>{const d=a.current;d&&(d.focus(),c&&d.select())}}),[r]);const g=c=>{o(c.target.value),i&&l("")},f=t.multiline?s.createElement(Z.TextArea,{ref:c=>{var d;a.current=((d=c==null?void 0:c.resizableTextArea)==null?void 0:d.textArea)??null},value:r,rows:t.rows??8,readOnly:t.readOnly,placeholder:t.placeholder,onChange:g}):s.createElement(Z,{ref:c=>{a.current=(c==null?void 0:c.input)??null},value:r,readOnly:t.readOnly,placeholder:t.placeholder,onChange:g});return s.createElement("div",{style:{display:"grid",gap:10}},t.content?s.createElement("div",{style:{whiteSpace:"pre-line"}},t.content):null,t.label?s.createElement("div",{style:{fontSize:12,fontWeight:600,color:"rgba(0,0,0,0.88)"}},t.label):null,f,i?s.createElement("div",{style:{fontSize:12,color:"#ff4d4f"}},i):null)});sr.displayName="PromptBridgeContent";function dl(){const t=_o.useApp();s.useEffect(()=>(ro({confirm:({title:e,content:r,okText:o,cancelText:i,okType:l,getContainer:a,onOk:g,onCancel:f})=>{t.modal.confirm({title:e,content:r,okText:o,cancelText:i,okType:l,centered:!0,closable:!0,maskClosable:!0,getContainer:a,onOk:g,onCancel:f})},alert:({title:e,content:r,okText:o,okType:i,getContainer:l,onOk:a})=>{t.modal.confirm({title:e,content:r,okText:o,okType:i,centered:!0,closable:!0,maskClosable:!0,getContainer:l,cancelButtonProps:{style:{display:"none"}},onOk:a})},prompt:({title:e,content:r,label:o,defaultValue:i,placeholder:l,okText:a,cancelText:g,readOnly:f,multiline:c,rows:d,selectOnOpen:m,validate:u,getContainer:b,onOk:S,onCancel:T})=>{const k=s.createRef(),M=t.modal.confirm({title:e,content:s.createElement(sr,{ref:k,content:r,label:o,defaultValue:i,placeholder:l,readOnly:f,multiline:c,rows:d}),okText:a,cancelText:g,centered:!0,closable:!0,maskClosable:!0,getContainer:b,cancelButtonProps:g?void 0:{style:{display:"none"}},onOk:()=>{var D,E,B;const I=((D=k.current)==null?void 0:D.getValue())??i??"";if(!f){const L=(u==null?void 0:u(I))??null;if(L)return(E=k.current)==null||E.setError(L),(B=k.current)==null||B.focus(!!m),Promise.reject()}S(I)},onCancel:T});return window.setTimeout(()=>{var I;(I=k.current)==null||I.focus(!!m)},0),M},message:({type:e,content:r})=>{t.message.open({type:e,content:r,duration:2})}}),()=>{ro(null)}),[t])}export{oo as D,aa as G,sl as P,nl as W,ol as a,te as b,ll as c,cl as d,il as e,el as f,rl as g,tl as h,ue as i,Mi as j,Ft as n,al as p,cn as s,dl as u}; diff --git a/axhub-make/admin/assets/chunks/vendor-antd.js b/axhub-make/admin/assets/chunks/vendor-antd.js new file mode 100644 index 0000000..764c358 --- /dev/null +++ b/axhub-make/admin/assets/chunks/vendor-antd.js @@ -0,0 +1,276 @@ +var uy=Object.defineProperty;var dy=(e,t,n)=>t in e?uy(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;var le=(e,t,n)=>dy(e,typeof t!="symbol"?t+"":t,n);import{r as i,R as N,$ as fy,a as Vn,c as my}from"./vendor-react.js?v=1775123024591";import{r as Ir,e as xt,f as Uo,s as Kd,i as Yd,j as py,k as Qd,n as gy,u as hy,o as In,q as Pn,t as fg,v as mg,w as Ve,x as Fo,y as Zt,z as St,A as Au,B as tr,d as z,C as by,D as Oi,E as Ai,F as Et,G as vy,H as yy,I as $y,J as Zr,K as pg,L as zu,N as Cy,O as Sy,P as Hn,Q as ua,R as Ko,S as Yt,T as gg}from"./vendor-common.js?v=1775123024591";import{g as xy,a as wy}from"./_commonjsHelpers.js?v=1775123024591";function We(e){const t=i.useRef(e);return t.current=e,i.useCallback((...r)=>{var o;return(o=t.current)==null?void 0:o.call(t,...r)},[])}function Ot(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}const Zd=Ot()?i.useLayoutEffect:i.useEffect,nt=(e,t)=>{const n=i.useRef(!0);Zd(()=>e(n.current),t),Zd(()=>(n.current=!1,()=>{n.current=!0}),[])},Ks=(e,t)=>{nt(n=>{if(!n)return e()},t)},si=e=>{const t=i.useRef(!1),[n,r]=i.useState(e);i.useEffect(()=>(t.current=!1,()=>{t.current=!0}),[]);function o(s,a){a&&t.current||r(s)}return[n,o]};function bt(e,t){const[n,r]=i.useState(e),o=t!==void 0?t:n;return nt(s=>{s||r(t)},[t]),[o,r]}function po(e,t,n){const r=i.useRef({});return(!("value"in r.current)||n(r.current.condition,t))&&(r.current.value=e(),r.current.condition=t),r.current.value}const Ey=Symbol.for("react.element"),Iy=Symbol.for("react.transitional.element"),Py=Symbol.for("react.fragment");function hg(e){return e&&typeof e=="object"&&(e.$$typeof===Ey||e.$$typeof===Iy)&&e.type===Py}const Ry=Number(i.version.split(".")[0]),My=(e,t)=>{typeof e=="function"?e(t):typeof e=="object"&&e&&"current"in e&&(e.current=t)},Ft=(...e)=>{const t=e.filter(Boolean);return t.length<=1?t[0]:n=>{e.forEach(r=>{My(r,n)})}},qn=(...e)=>po(()=>Ft(...e),e,(t,n)=>t.length!==n.length||t.every((r,o)=>r!==n[o])),dr=e=>{var n,r;if(!e)return!1;if(Bu(e)&&Ry>=19)return!0;const t=Ir.isMemo(e)?e.type.type:e.type;return!(typeof t=="function"&&!((n=t.prototype)!=null&&n.render)&&t.$$typeof!==Ir.ForwardRef||typeof e=="function"&&!((r=e.prototype)!=null&&r.render)&&e.$$typeof!==Ir.ForwardRef)};function Bu(e){return i.isValidElement(e)&&!hg(e)}const Ny=e=>Bu(e)&&dr(e),Gn=e=>{if(e&&Bu(e)){const t=e;return t.props.propertyIsEnumerable("ref")?t.props.ref:t.ref}return null};function xn(e,t){let n=e;for(let r=0;r"u"?Object.keys:Reflect.ownKeys;function vg(e,t={}){const{prepareArray:n}=t,r=n||(()=>[]);let o=Jd(e[0]);return e.forEach(s=>{function a(l,c){const u=new Set(c),d=xn(s,l),f=Array.isArray(d);if(f||Ty(d)){if(!u.has(d)){u.add(d);const m=xn(o,l);f?o=gn(o,l,r(m,d)):(!m||typeof m!="object")&&(o=gn(o,l,Jd(d))),Oy(d).forEach(p=>{Object.getOwnPropertyDescriptor(d,p).enumerable&&a([...l,p],u)})}}else o=gn(o,l,d)}a([])}),o}function Jr(...e){return vg(e)}let il={};const Ay=e=>{};function zy(e,t){}function By(e,t){}function Ly(){il={}}function yg(e,t,n){!t&&!il[n]&&(e(!1,n),il[n]=!0)}function Pt(e,t){yg(zy,e,t)}function Hy(e,t){yg(By,e,t)}Pt.preMessage=Ay;Pt.resetWarned=Ly;Pt.noteOnce=Hy;function yt(e,t){const n=Object.assign({},e);return Array.isArray(t)&&t.forEach(r=>{delete n[r]}),n}function Vt(e,t={}){let n=[];return N.Children.forEach(e,r=>{r==null&&!t.keepEmpty||(Array.isArray(r)?n=n.concat(Vt(r)):hg(r)&&r.props?n=n.concat(Vt(r.props.children,t)):n.push(r))}),n}const Dy=i.createContext({});function lo(e){return e instanceof HTMLElement||e instanceof SVGElement}function co(e){return e&&typeof e=="object"&&lo(e.nativeElement)?e.nativeElement:lo(e)?e:null}const al=i.createContext(null);function Fy({children:e,onBatchResize:t}){const n=i.useRef(0),r=i.useRef([]),o=i.useContext(al),s=i.useCallback((a,l,c)=>{n.current+=1;const u=n.current;r.current.push({size:a,element:l,data:c}),Promise.resolve().then(()=>{u===n.current&&(t==null||t(r.current),r.current=[])}),o==null||o(a,l,c)},[t,o]);return i.createElement(al.Provider,{value:s},e)}const nr=new Map;function _y(e){e.forEach(t=>{var r;const{target:n}=t;(r=nr.get(n))==null||r.forEach(o=>o(n))})}let da;function $g(){return da||(da=new ResizeObserver(_y)),da}function ky(e,t){nr.has(e)||(nr.set(e,new Set),$g().observe(e)),nr.get(e).add(t)}function Vy(e,t){nr.has(e)&&(nr.get(e).delete(t),nr.get(e).size||($g().unobserve(e),nr.delete(e)))}function Cg(e,t,n,r){const o=i.useRef({width:-1,height:-1,offsetWidth:-1,offsetHeight:-1}),s=We(l=>{const{width:c,height:u}=l.getBoundingClientRect(),{offsetWidth:d,offsetHeight:f}=l,m=Math.floor(c),p=Math.floor(u);if(o.current.width!==m||o.current.height!==p||o.current.offsetWidth!==d||o.current.offsetHeight!==f){const g={width:m,height:p,offsetWidth:d,offsetHeight:f};o.current=g;const h=d===Math.round(c)?c:d,b=f===Math.round(u)?u:f,$={...g,offsetWidth:h,offsetHeight:b};r==null||r($,l),Promise.resolve().then(()=>{n==null||n($,l)})}}),a=typeof t=="function";i.useEffect(()=>{const l=a?t():t;return l&&e&&ky(l,s),()=>{l&&Vy(l,s)}},[e,a?0:t])}function Wy(e,t){const{children:n,disabled:r,onResize:o,data:s}=e,a=i.useRef(null),l=i.useContext(al),c=typeof n=="function",u=c?n(a):n,d=!c&&i.isValidElement(u)&&dr(u),f=d?Gn(u):null,m=qn(f,a),p=()=>co(a.current);return i.useImperativeHandle(t,()=>p()),Cg(!r,p,o,(g,h)=>{l==null||l(g,h,s)}),d?i.cloneElement(u,{ref:m}):u}const jy=i.forwardRef(Wy);function ll(){return ll=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const a=(o==null?void 0:o.key)||`${qy}-${s}`;return i.createElement(jy,ll({},e,{key:a,ref:s===0?t:void 0}),o)})}const Fn=i.forwardRef(Gy);Fn.Collection=Fy;let Sg=e=>+setTimeout(e,16),xg=e=>clearTimeout(e);typeof window<"u"&&"requestAnimationFrame"in window&&(Sg=e=>window.requestAnimationFrame(e),xg=e=>window.cancelAnimationFrame(e));let ef=0;const Lu=new Map;function wg(e){Lu.delete(e)}const Ke=(e,t=1)=>{ef+=1;const n=ef;function r(o){if(o===0)wg(n),e();else{const s=Sg(()=>{r(o-1)});Lu.set(n,s)}}return r(t),n};Ke.cancel=e=>{const t=Lu.get(e);return wg(e),xg(t)};function tf(e){let t=null;const n=o=>()=>{t=null,e.apply(void 0,xt(o))},r=(...o)=>{t===null&&(t=Ke(n(o)))};return r.cancel=()=>{Ke.cancel(t),t=null},r}const Yo="ant",zi="anticon",Xy=["outlined","borderless","filled","underlined"],Uy=(e,t)=>t||(e?`${Yo}-${e}`:Yo),je=i.createContext({getPrefixCls:Uy,iconPrefixCls:zi}),{Consumer:t8}=je,nf={};function dt(e){const t=i.useContext(je),{getPrefixCls:n,direction:r,getPopupContainer:o,renderEmpty:s}=t,a=t[e];return{classNames:nf,styles:nf,...a,getPrefixCls:n,direction:r,getPopupContainer:o,renderEmpty:s}}function cl(e,t){if(!e)return!1;if(e.contains)return e.contains(t);let n=t;for(;n;){if(n===e)return!0;n=n.parentNode}return!1}const rf="data-rc-order",of="data-rc-priority",Ky="rc-util-key",ul=new Map;function Eg({mark:e}={}){return e?e.startsWith("data-")?e:`data-${e}`:Ky}function Bi(e){return e.attachTo?e.attachTo:document.querySelector("head")||document.body}function Yy(e){return e==="queue"?"prependQueue":e?"prepend":"append"}function Hu(e){return Array.from((ul.get(e)||e).children).filter(t=>t.tagName==="STYLE")}function Ig(e,t={}){if(!Ot())return null;const{csp:n,prepend:r,priority:o=0}=t,s=Yy(r),a=s==="prependQueue",l=document.createElement("style");l.setAttribute(rf,s),a&&o&&l.setAttribute(of,`${o}`),n!=null&&n.nonce&&(l.nonce=n==null?void 0:n.nonce),l.innerHTML=e;const c=Bi(t),{firstChild:u}=c;if(r){if(a){const d=(t.styles||Hu(c)).filter(f=>{if(!["prepend","prependQueue"].includes(f.getAttribute(rf)))return!1;const m=Number(f.getAttribute(of)||0);return o>=m});if(d.length)return c.insertBefore(l,d[d.length-1].nextSibling),l}c.insertBefore(l,u)}else c.appendChild(l);return l}function Pg(e,t={}){let{styles:n}=t;return n||(n=Hu(Bi(t))),n.find(r=>r.getAttribute(Eg(t))===e)}function Or(e,t={}){const n=Pg(e,t);n&&Bi(t).removeChild(n)}function Qy(e,t){const n=ul.get(e);if(!n||!cl(document,n)){const r=Ig("",t),{parentNode:o}=r;ul.set(e,o),e.removeChild(r)}}function sr(e,t,n={}){var c,u,d;const r=Bi(n),o=Hu(r),s={...n,styles:o};Qy(r,s);const a=Pg(t,s);if(a)return(c=s.csp)!=null&&c.nonce&&a.nonce!==((u=s.csp)==null?void 0:u.nonce)&&(a.nonce=(d=s.csp)==null?void 0:d.nonce),a.innerHTML!==e&&(a.innerHTML=e),a;const l=Ig(e,s);return l.setAttribute(Eg(s),t),l}function ar(e,t,n=!1){const r=new Set;function o(s,a,l=1){const c=r.has(s);if(Pt(!c,"Warning: There may be circular references"),c)return!1;if(s===a)return!0;if(n&&l>1)return!1;r.add(s);const u=l+1;if(Array.isArray(s)){if(!Array.isArray(a)||s.length!==a.length)return!1;for(let d=0;do(s[f],a[f],u))}return!1}return o(e,t)}const Zy="%";function dl(e){return e.join(Zy)}let sf=0;class Jy{constructor(t){le(this,"instanceId");le(this,"cache",new Map);le(this,"updateTimes",new Map);le(this,"extracted",new Set);this.instanceId=t}get(t){return this.opGet(dl(t))}opGet(t){return this.cache.get(t)||null}update(t,n){return this.opUpdate(dl(t),n)}opUpdate(t,n){const r=this.cache.get(t),o=n(r);o===null?(this.cache.delete(t),this.updateTimes.delete(t)):(this.cache.set(t,o),this.updateTimes.set(t,sf),sf+=1)}}const e1={},Du="data-token-hash",_n="data-css-hash",Dn="__cssinjs_instance__";function Rg(){const e=Math.random().toString(12).slice(2);if(typeof document<"u"&&document.head&&document.body){const t=document.body.querySelectorAll(`style[${_n}]`)||[],{firstChild:n}=document.head;Array.from(t).forEach(o=>{o[Dn]||(o[Dn]=e),o[Dn]===e&&document.head.insertBefore(o,n)});const r={};Array.from(document.querySelectorAll(`style[${_n}]`)).forEach(o=>{var a;const s=o.getAttribute(_n);r[s]?o[Dn]===e&&((a=o.parentNode)==null||a.removeChild(o)):r[s]=!0})}return new Jy(e)}const Ar=i.createContext({hashPriority:"low",cache:Rg(),defaultCache:!0,autoPrefix:!1}),n8=e=>{const{children:t,...n}=e,r=i.useContext(Ar),o=po(()=>{const s={...r};Object.keys(n).forEach(c=>{const u=n[c];n[c]!==void 0&&(s[c]=u)});const{cache:a,transformers:l=[]}=n;return s.cache=s.cache||Rg(),s.defaultCache=!a&&r.defaultCache,l.includes(e1)&&(s.autoPrefix=!0),s},[r,n],(s,a)=>!ar(s[0],a[0],!0)||!ar(s[1],a[1],!0));return i.createElement(Ar.Provider,{value:o},t)};function t1(e,t){if(e.length!==t.length)return!1;for(let n=0;n{var s;r?r=(s=r==null?void 0:r.map)==null?void 0:s.get(o):r=void 0}),r!=null&&r.value&&n&&(r.value[1]=this.cacheCallTimes++),r==null?void 0:r.value}get(t){var n;return(n=this.internalGet(t,!0))==null?void 0:n[0]}has(t){return!!this.internalGet(t)}set(t,n){if(!this.has(t)){if(this.size()+1>oo.MAX_CACHE_SIZE+oo.MAX_CACHE_OFFSET){const[o]=this.keys.reduce((s,a)=>{const[,l]=s;return this.internalGet(a)[1]{if(s===t.length-1)r.set(o,{value:[n,this.cacheCallTimes++]});else{const a=r.get(o);a?a.map||(a.map=new Map):r.set(o,{map:new Map}),r=r.get(o).map}})}deleteByPath(t,n){var s;const r=t.get(n[0]);if(n.length===1)return r.map?t.set(n[0],{map:r.map}):t.delete(n[0]),(s=r.value)==null?void 0:s[0];const o=this.deleteByPath(r.map,n.slice(1));return(!r.map||r.map.size===0)&&!r.value&&t.delete(n[0]),o}delete(t){if(this.has(t))return this.keys=this.keys.filter(n=>!t1(n,t)),this.deleteByPath(this.cache,t)}};le(oo,"MAX_CACHE_SIZE",20),le(oo,"MAX_CACHE_OFFSET",5);let fl=oo,af=0;class Mg{constructor(t){le(this,"derivatives");le(this,"id");this.derivatives=Array.isArray(t)?t:[t],this.id=af,t.length===0&&(t.length>0,void 0),af+=1}getDerivativeToken(t){return this.derivatives.reduce((n,r)=>r(t,n),void 0)}}const fa=new fl;function ml(e){const t=Array.isArray(e)?e:[e];return fa.has(t)||fa.set(t,new Mg(t)),fa.get(t)}const n1=new WeakMap,ma={};function r1(e,t){let n=n1;for(let r=0;r{const r=e[n];t+=n,r instanceof Mg?t+=r.id:r&&typeof r=="object"?t+=_o(r):t+=r}),t=Uo(t),lf.set(e,t)),t}function o1(e,t){return Uo(`${t}_${_o(e)}`)}const pl=Ot();function K(e){return typeof e=="number"?`${e}px`:e}function Ng(e){const{hashCls:t,hashPriority:n="low"}=e||{};if(!t)return"";const r=`.${t}`;return n==="low"?`:where(${r})`:r}const s1=e=>e!=null,Pr=(e,t="")=>`--${t?`${t}-`:""}${e}`.replace(/([a-z0-9])([A-Z])/g,"$1-$2").replace(/([A-Z]+)([A-Z][a-z0-9]+)/g,"$1-$2").replace(/([a-z])([A-Z0-9])/g,"$1-$2").toLowerCase(),i1=(e,t,n)=>{const{hashCls:r,hashPriority:o="low",scope:s}=n||{};if(!Object.keys(e).length)return"";const a=`${Ng({hashCls:r,hashPriority:o})}.${t}`,l=[s].flat().filter(Boolean);return`${l.length?l.map(u=>`${a}.${u}`).join(", "):a}{${Object.entries(e).map(([u,d])=>`${u}:${d};`).join("")}}`},Tg=(e,t,n)=>{const{hashCls:r,hashPriority:o="low",prefix:s,unitless:a,ignore:l,preserve:c}=n||{},u={},d={};return Object.entries(e).forEach(([f,m])=>{if(c!=null&&c[f])d[f]=m;else if((typeof m=="string"||typeof m=="number")&&!(l!=null&&l[f])){const p=Pr(f,s);u[p]=typeof m=="number"&&!(a!=null&&a[f])?`${m}px`:String(m),d[f]=`var(${p})`}}),[d,i1(u,t,{scope:n==null?void 0:n.scope,hashCls:r,hashPriority:o})]},Ts=new Map;function Fu(e,t,n,r,o){const{cache:s}=i.useContext(Ar),a=[e,...t],l=dl(a),c=f=>{s.opUpdate(l,m=>{const[p=0,g]=m||[void 0,void 0],b=g||n(),$=[p,b];return f?f($):$})};i.useMemo(()=>{c()},[l]);const d=s.opGet(l)[1];return i.useInsertionEffect(()=>(c(([f,m])=>[f+1,m]),Ts.has(l)||(o==null||o(d),Ts.set(l,!0),Promise.resolve().then(()=>{Ts.delete(l)})),()=>{s.opUpdate(l,f=>{const[m=0,p]=f||[];return m-1===0?(r==null||r(p,!1),Ts.delete(l),null):[m-1,p]})}),[l]),d}const a1={},l1="css",vr=new Map;function c1(e){vr.set(e,(vr.get(e)||0)+1)}function u1(e,t){typeof document<"u"&&document.querySelectorAll(`style[${Du}="${e}"]`).forEach(r=>{var o;r[Dn]===t&&((o=r.parentNode)==null||o.removeChild(r))})}const d1=-1;function f1(e,t){vr.set(e,(vr.get(e)||0)-1);const n=new Set;vr.forEach((r,o)=>{r<=0&&n.add(o)}),vr.size-n.size>d1&&n.forEach(r=>{u1(r,t),vr.delete(r)})}const m1=(e,t,n,r)=>{let s={...n.getDerivativeToken(e),...t};return r&&(s=r(s)),s},p1="token";function g1(e,t,n){const{cache:{instanceId:r},container:o,hashPriority:s}=i.useContext(Ar),{salt:a="",override:l=a1,formatToken:c,getComputedToken:u,cssVar:d}=n,f=r1(()=>Object.assign({},...t),t),m=_o(f),p=_o(l),g=_o(d);return Fu(p1,[a,e.id,m,p,g],()=>{const b=u?u(f,l,e):m1(f,l,e,c),$={...b},y=`${a}_${d.prefix}`,v=Uo(y),C=`${l1}-${v}`;$._tokenKey=o1($,y);const[S,x]=Tg(b,d.key,{prefix:d.prefix,ignore:d.ignore,unitless:d.unitless,preserve:d.preserve,hashPriority:s,hashCls:d.hashed?C:void 0});return S._hashId=v,c1(d.key),[S,C,$,x,d.key]},([,,,,b])=>{f1(b,r)},([,,,b,$])=>{if(!b)return;const y=sr(b,Uo(`css-var-${$}`),{mark:_n,prepend:"queue",attachTo:o,priority:-999});y[Dn]=r,y.setAttribute(Du,$)})}const cf="data-ant-cssinjs-cache-path",Og="_FILE_STYLE__";let Rr,Ag=!0;function h1(){var e;if(!Rr&&(Rr={},Ot())){const t=document.createElement("div");t.className=cf,t.style.position="fixed",t.style.visibility="hidden",t.style.top="-9999px",document.body.appendChild(t);let n=getComputedStyle(t).content||"";n=n.replace(/^"/,"").replace(/"$/,""),n.split(";").forEach(o=>{const[s,a]=o.split(":");Rr[s]=a});const r=document.querySelector(`style[${cf}]`);r&&(Ag=!1,(e=r.parentNode)==null||e.removeChild(r)),document.body.removeChild(t)}}function b1(e){return h1(),!!Rr[e]}function v1(e){const t=Rr[e];let n=null;if(t&&Ot())if(Ag)n=Og;else{const r=document.querySelector(`style[${_n}="${Rr[e]}"]`);r?n=r.innerHTML:delete Rr[e]}return[n,t]}const y1="_skip_check_",zg="_multi_value_";function pa(e,t){return(t?Kd(Yd(e),py([gy,Qd])):Kd(Yd(e),Qd)).replace(/\{%%%\:[^;];}/g,";")}function $1(e){return typeof e=="object"&&e&&(y1 in e||zg in e)}function uf(e,t,n="high"){if(!t)return e;const r=Ng({hashCls:t,hashPriority:n});return e.split(",").map(s=>{var u;const a=s.trim().split(/\s+/);let l=a[0]||"";const c=((u=l.match(/^\w+/))==null?void 0:u[0])||"";return l=`${c}${r}${l.slice(c.length)}`,[l,...a.slice(1)].join(" ")}).join(",")}const gl=(e,t={},{root:n,injectHash:r,parentSelectors:o}={root:!0,parentSelectors:[]})=>{const{hashId:s,layer:a,path:l,hashPriority:c,transformers:u=[],linters:d=[]}=t;let f="",m={};function p(b){const $=b.getName(s);if(!m[$]){const[y]=gl(b.style,t,{root:!1,parentSelectors:o});m[$]=`@keyframes ${b.getName(s)}${y}`}}function g(b,$=[]){return b.forEach(y=>{Array.isArray(y)?g(y,$):y&&$.push(y)}),$}return g(Array.isArray(e)?e:[e]).forEach(b=>{const $=typeof b=="string"&&!n?{}:b;if(typeof $=="string")f+=`${$} +`;else if($._keyframe)p($);else{const y=u.reduce((v,C)=>{var S;return((S=C==null?void 0:C.visit)==null?void 0:S.call(C,v))||v},$);Object.keys(y).forEach(v=>{const C=y[v];if(typeof C=="object"&&C&&(v!=="animationName"||!C._keyframe)&&!$1(C)){let S=!1,x=v.trim(),w=!1;(n||r)&&s?x.startsWith("@")?S=!0:x==="&"?x=uf("",s,c):x=uf(v,s,c):n&&!s&&(x==="&"||x==="")&&(x="",w=!0);const[I,E]=gl(C,t,{root:w,injectHash:S,parentSelectors:[...o,x]});m={...m,...E},f+=`${x}${I}`}else{let S=function(w,I){const E=w.replace(/[A-Z]/g,P=>`-${P.toLowerCase()}`);let R=I;!hy[w]&&typeof R=="number"&&R!==0&&(R=`${R}px`),w==="animationName"&&(I!=null&&I._keyframe)&&(p(I),R=I.getName(s)),f+=`${E}:${R};`};const x=(C==null?void 0:C.value)??C;typeof C=="object"&&(C!=null&&C[zg])&&Array.isArray(x)?x.forEach(w=>{S(v,w)}):s1(x)&&S(v,x)}})}}),n?a&&(f&&(f=`@layer ${a.name} {${f}}`),a.dependencies&&(m[`@layer ${a.name}`]=a.dependencies.map(b=>`@layer ${b}, ${a.name};`).join(` +`))):f=`{${f}}`,[f,m]};function Bg(e,t){return Uo(`${e.join("%")}${t}`)}const C1="style";function Qo(e,t){const{path:n,hashId:r,layer:o,nonce:s,clientOnly:a,order:l=0}=e,{mock:c,hashPriority:u,container:d,transformers:f,linters:m,cache:p,layer:g,autoPrefix:h}=i.useContext(Ar),b=[r||""];g&&b.push("layer"),b.push(...n);let $=pl;Fu(C1,b,()=>{const y=b.join("|");if(b1(y)){const[I,E]=v1(y);if(I)return[I,E,{},a,l]}const v=t(),[C,S]=gl(v,{hashId:r,hashPriority:u,layer:g?o:void 0,path:n.join("-"),transformers:f,linters:m}),x=pa(C,h||!1),w=Bg(b,x);return[x,w,S,a,l]},(y,v)=>{const[,C]=y;v&&pl&&Or(C,{mark:_n,attachTo:d})},y=>{const[v,C,S,,x]=y;if($&&v!==Og){const w={mark:_n,prepend:g?!1:"queue",attachTo:d,priority:x},I=typeof s=="function"?s():s;I&&(w.csp={nonce:I});const E=[],R=[];Object.keys(S).forEach(M=>{M.startsWith("@layer")?E.push(M):R.push(M)}),E.forEach(M=>{sr(pa(S[M],h||!1),`_layer-${M}`,{...w,prepend:!0})});const P=sr(v,C,w);P[Dn]=p.instanceId,R.forEach(M=>{sr(pa(S[M],h||!1),`_effect-${M}`,w)})}})}const S1="cssVar",Lg=(e,t)=>{const{key:n,prefix:r,unitless:o,ignore:s,token:a,hashId:l,scope:c}=e,{cache:{instanceId:u},container:d,hashPriority:f}=i.useContext(Ar),{_tokenKey:m}=a,p=Array.isArray(c)?c.join("@@"):c,g=[...e.path,n,p,m];return Fu(S1,g,()=>{const b=t(),[$,y]=Tg(b,n,{prefix:r,unitless:o,ignore:s,scope:c,hashPriority:f,hashCls:l}),v=Bg(g,y);return[$,y,v,n]},([,,b])=>{pl&&Or(b,{mark:_n,attachTo:d})},([,b,$])=>{if(!b)return;const y=sr(b,$,{mark:_n,prepend:"queue",attachTo:d,priority:-999});y[Dn]=u,y.setAttribute(Du,n)})};class et{constructor(t,n){le(this,"name");le(this,"style");le(this,"_keyframe",!0);this.name=t,this.style=n}getName(t=""){return t?`${t}-${this.name}`:this.name}}function _r(e){return e.notSplit=!0,e}_r(["borderTop","borderBottom"]),_r(["borderTop"]),_r(["borderBottom"]),_r(["borderLeft","borderRight"]),_r(["borderLeft"]),_r(["borderRight"]);var x1=In(function e(){Pn(this,e)}),Hg="CALC_UNIT",w1=new RegExp(Hg,"g");function ga(e){return typeof e=="number"?"".concat(e).concat(Hg):e}var E1=function(e){fg(n,e);var t=mg(n);function n(r,o){var s;Pn(this,n),s=t.call(this),Ve(Fo(s),"result",""),Ve(Fo(s),"unitlessCssVar",void 0),Ve(Fo(s),"lowPriority",void 0);var a=Zt(r);return s.unitlessCssVar=o,r instanceof n?s.result="(".concat(r.result,")"):a==="number"?s.result=ga(r):a==="string"&&(s.result=r),s}return In(n,[{key:"add",value:function(o){return o instanceof n?this.result="".concat(this.result," + ").concat(o.getResult()):(typeof o=="number"||typeof o=="string")&&(this.result="".concat(this.result," + ").concat(ga(o))),this.lowPriority=!0,this}},{key:"sub",value:function(o){return o instanceof n?this.result="".concat(this.result," - ").concat(o.getResult()):(typeof o=="number"||typeof o=="string")&&(this.result="".concat(this.result," - ").concat(ga(o))),this.lowPriority=!0,this}},{key:"mul",value:function(o){return this.lowPriority&&(this.result="(".concat(this.result,")")),o instanceof n?this.result="".concat(this.result," * ").concat(o.getResult(!0)):(typeof o=="number"||typeof o=="string")&&(this.result="".concat(this.result," * ").concat(o)),this.lowPriority=!1,this}},{key:"div",value:function(o){return this.lowPriority&&(this.result="(".concat(this.result,")")),o instanceof n?this.result="".concat(this.result," / ").concat(o.getResult(!0)):(typeof o=="number"||typeof o=="string")&&(this.result="".concat(this.result," / ").concat(o)),this.lowPriority=!1,this}},{key:"getResult",value:function(o){return this.lowPriority||o?"(".concat(this.result,")"):this.result}},{key:"equal",value:function(o){var s=this,a=o||{},l=a.unit,c=!0;return typeof l=="boolean"?c=l:Array.from(this.unitlessCssVar).some(function(u){return s.result.includes(u)})&&(c=!1),this.result=this.result.replace(w1,c?"px":""),typeof this.lowPriority<"u"?"calc(".concat(this.result,")"):this.result}}]),n}(x1),I1=function(t,n){var r=E1;return function(o){return new r(o,n)}},df=function(t,n){return"".concat([n,t.replace(/([A-Z]+)([A-Z][a-z]+)/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2")].filter(Boolean).join("-"))};function ff(e,t,n,r){var o=St({},t[e]);if(r!=null&&r.deprecatedTokens){var s=r.deprecatedTokens;s.forEach(function(l){var c=Au(l,2),u=c[0],d=c[1];if(o!=null&&o[u]||o!=null&&o[d]){var f;(f=o[d])!==null&&f!==void 0||(o[d]=o==null?void 0:o[u])}})}var a=St(St({},n),o);return Object.keys(a).forEach(function(l){a[l]===t[l]&&delete a[l]}),a}var Dg=typeof CSSINJS_STATISTIC<"u",hl=!0;function rt(){for(var e=arguments.length,t=new Array(e),n=0;n1e4){var r=Date.now();this.lastAccessBeat.forEach(function(o,s){r-o>N1&&(n.map.delete(s),n.lastAccessBeat.delete(s))}),this.accessBeat=0}}}]),e}(),gf=new T1;function O1(e,t){return N.useMemo(function(){var n=gf.get(t);if(n)return n;var r=e();return gf.set(t,r),r},t)}var A1=function(){return{}};function z1(e){var t=e.useCSP,n=t===void 0?A1:t,r=e.useToken,o=e.usePrefix,s=e.getResetStyles,a=e.getCommonStyle,l=e.getCompUnitless;function c(m,p,g,h){var b=Array.isArray(m)?m[0]:m;function $(I){return"".concat(String(b)).concat(I.slice(0,1).toUpperCase()).concat(I.slice(1))}var y=(h==null?void 0:h.unitless)||{},v=typeof l=="function"?l(m):{},C=St(St({},v),{},Ve({},$("zIndexPopup"),!0));Object.keys(y).forEach(function(I){C[$(I)]=y[I]});var S=St(St({},h),{},{unitless:C,prefixToken:$}),x=d(m,p,g,S),w=u(b,g,S);return function(I){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:I,R=x(I,E),P=h==null?void 0:h.extraCssVarPrefixCls,M=typeof P=="function"?P({prefixCls:I,rootCls:E}):P,O=w(M!=null&&M.length?[E].concat(tr(M)):E);return[R,O]}}function u(m,p,g){var h=g.unitless,b=g.prefixToken,$=g.ignore;return function(y){var v=r(),C=v.cssVar,S=v.realToken;return Lg({path:[m],prefix:C.prefix,key:C.key,unitless:h,ignore:$,token:S,scope:y},function(){var x=pf(m,S,p),w=ff(m,S,x,{deprecatedTokens:g==null?void 0:g.deprecatedTokens});return x&&Object.keys(x).forEach(function(I){w[b(I)]=w[I],delete w[I]}),w}),C==null?void 0:C.key}}function d(m,p,g){var h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},b=Array.isArray(m)?m:[m,m],$=Au(b,1),y=$[0],v=b.join("-"),C=e.layer||{name:"antd"};return function(S){var x=arguments.length>1&&arguments[1]!==void 0?arguments[1]:S,w=r(),I=w.theme,E=w.realToken,R=w.hashId,P=w.token,M=w.cssVar,O=w.zeroRuntime,A=i.useMemo(function(){return O},[]);if(A)return R;var T=o(),F=T.rootPrefixCls,H=T.iconPrefixCls,L=n(),B="css",D=O1(function(){var U=new Set;return Object.keys(h.unitless||{}).forEach(function(j){U.add(Pr(j,M.prefix)),U.add(Pr(j,df(y,M.prefix)))}),I1(B,U)},[B,y,M==null?void 0:M.prefix]),k=M1(),W=k.max,_=k.min,X={theme:I,token:P,hashId:R,nonce:function(){return L.nonce},clientOnly:h.clientOnly,layer:C,order:h.order||-999};return typeof s=="function"&&Qo(St(St({},X),{},{clientOnly:!1,path:["Shared",F]}),function(){return s(P,{prefix:{rootPrefixCls:F,iconPrefixCls:H},csp:L})}),Qo(St(St({},X),{},{path:[v,S,H]}),function(){if(h.injectStyle===!1)return[];var U=R1(P),j=U.token,V=U.flush,G=pf(y,E,g),te=".".concat(S),ee=ff(y,E,G,{deprecatedTokens:h.deprecatedTokens});G&&Zt(G)==="object"&&Object.keys(G).forEach(function(ue){G[ue]="var(".concat(Pr(ue,df(y,M.prefix)),")")});var ne=rt(j,{componentCls:te,prefixCls:S,iconCls:".".concat(H),antCls:".".concat(F),calc:D,max:W,min:_},G),Y=p(ne,{hashId:R,prefixCls:S,rootPrefixCls:F,iconPrefixCls:H});V(y,ee);var se=typeof a=="function"?a(ne,S,x,h.resetFont):null;return[h.resetStyle===!1?null:se,Y]}),R}}function f(m,p,g){var h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},b=d(m,p,g,St({resetStyle:!1,order:-998},h)),$=function(v){var C=v.prefixCls,S=v.rootCls,x=S===void 0?C:S;return b(C,x),null};return $}return{genStyleHooks:c,genSubStyleComponent:f,genComponentStyleHook:d}}const Tn=["blue","purple","cyan","green","magenta","pink","red","orange","yellow","volcano","geekblue","lime","gold"];function Ys(e){return(e+8)/e}function B1(e){const t=Array.from({length:10}).map((n,r)=>{const o=r-1,s=e*Math.E**(o/5),a=r>1?Math.floor(s):Math.ceil(s);return Math.floor(a/2)*2});return t[1]=e,t.map(n=>({size:n,lineHeight:Ys(n)}))}const L1="6.3.0",_u={blue:"#1677FF",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#EB2F96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911"},Zo={..._u,colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff4d4f",colorInfo:"#1677ff",colorLink:"",colorTextBase:"",colorBgBase:"",fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, +'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', +'Noto Color Emoji'`,fontFamilyCode:"'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInBack:"cubic-bezier(0.71, -0.46, 0.88, 0.6)",motionEaseInQuint:"cubic-bezier(0.755, 0.05, 0.855, 0.06)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:6,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:!1,motion:!0},H1={aliceblue:"9ehhb",antiquewhite:"9sgk7",aqua:"1ekf",aquamarine:"4zsno",azure:"9eiv3",beige:"9lhp8",bisque:"9zg04",black:"0",blanchedalmond:"9zhe5",blue:"73",blueviolet:"5e31e",brown:"6g016",burlywood:"8ouiv",cadetblue:"3qba8",chartreuse:"4zshs",chocolate:"87k0u",coral:"9yvyo",cornflowerblue:"3xael",cornsilk:"9zjz0",crimson:"8l4xo",cyan:"1ekf",darkblue:"3v",darkcyan:"rkb",darkgoldenrod:"776yz",darkgray:"6mbhl",darkgreen:"jr4",darkgrey:"6mbhl",darkkhaki:"7ehkb",darkmagenta:"5f91n",darkolivegreen:"3bzfz",darkorange:"9yygw",darkorchid:"5z6x8",darkred:"5f8xs",darksalmon:"9441m",darkseagreen:"5lwgf",darkslateblue:"2th1n",darkslategray:"1ugcv",darkslategrey:"1ugcv",darkturquoise:"14up",darkviolet:"5rw7n",deeppink:"9yavn",deepskyblue:"11xb",dimgray:"442g9",dimgrey:"442g9",dodgerblue:"16xof",firebrick:"6y7tu",floralwhite:"9zkds",forestgreen:"1cisi",fuchsia:"9y70f",gainsboro:"8m8kc",ghostwhite:"9pq0v",goldenrod:"8j4f4",gold:"9zda8",gray:"50i2o",green:"pa8",greenyellow:"6senj",grey:"50i2o",honeydew:"9eiuo",hotpink:"9yrp0",indianred:"80gnw",indigo:"2xcoy",ivory:"9zldc",khaki:"9edu4",lavenderblush:"9ziet",lavender:"90c8q",lawngreen:"4vk74",lemonchiffon:"9zkct",lightblue:"6s73a",lightcoral:"9dtog",lightcyan:"8s1rz",lightgoldenrodyellow:"9sjiq",lightgray:"89jo3",lightgreen:"5nkwg",lightgrey:"89jo3",lightpink:"9z6wx",lightsalmon:"9z2ii",lightseagreen:"19xgq",lightskyblue:"5arju",lightslategray:"4nwk9",lightslategrey:"4nwk9",lightsteelblue:"6wau6",lightyellow:"9zlcw",lime:"1edc",limegreen:"1zcxe",linen:"9shk6",magenta:"9y70f",maroon:"4zsow",mediumaquamarine:"40eju",mediumblue:"5p",mediumorchid:"79qkz",mediumpurple:"5r3rv",mediumseagreen:"2d9ip",mediumslateblue:"4tcku",mediumspringgreen:"1di2",mediumturquoise:"2uabw",mediumvioletred:"7rn9h",midnightblue:"z980",mintcream:"9ljp6",mistyrose:"9zg0x",moccasin:"9zfzp",navajowhite:"9zest",navy:"3k",oldlace:"9wq92",olive:"50hz4",olivedrab:"472ub",orange:"9z3eo",orangered:"9ykg0",orchid:"8iu3a",palegoldenrod:"9bl4a",palegreen:"5yw0o",paleturquoise:"6v4ku",palevioletred:"8k8lv",papayawhip:"9zi6t",peachpuff:"9ze0p",peru:"80oqn",pink:"9z8wb",plum:"8nba5",powderblue:"6wgdi",purple:"4zssg",rebeccapurple:"3zk49",red:"9y6tc",rosybrown:"7cv4f",royalblue:"2jvtt",saddlebrown:"5fmkz",salmon:"9rvci",sandybrown:"9jn1c",seagreen:"1tdnb",seashell:"9zje6",sienna:"6973h",silver:"7ir40",skyblue:"5arjf",slateblue:"45e4t",slategray:"4e100",slategrey:"4e100",snow:"9zke2",springgreen:"1egv",steelblue:"2r1kk",tan:"87yx8",teal:"pds",thistle:"8ggk8",tomato:"9yqfb",turquoise:"2j4r4",violet:"9b10u",wheat:"9ld4j",white:"9zldr",whitesmoke:"9lhpx",yellow:"9zl6o",yellowgreen:"61fzm"},Nt=Math.round;function ha(e,t){const n=e.replace(/^[^(]*\((.*)/,"$1").replace(/\).*/,"").match(/\d*\.?\d+%?/g)||[],r=n.map(o=>parseFloat(o));for(let o=0;o<3;o+=1)r[o]=t(r[o]||0,n[o]||"",o);return n[3]?r[3]=n[3].includes("%")?r[3]/100:r[3]:r[3]=1,r}const hf=(e,t,n)=>n===0?e:e/100;function Ro(e,t){const n=t||255;return e>n?n:e<0?0:e}let gt=class Fg{constructor(t){le(this,"isValid",!0);le(this,"r",0);le(this,"g",0);le(this,"b",0);le(this,"a",1);le(this,"_h");le(this,"_hsl_s");le(this,"_hsv_s");le(this,"_l");le(this,"_v");le(this,"_max");le(this,"_min");le(this,"_brightness");function n(r){return r[0]in t&&r[1]in t&&r[2]in t}if(t)if(typeof t=="string"){let o=function(s){return r.startsWith(s)};const r=t.trim();if(/^#?[A-F\d]{3,8}$/i.test(r))this.fromHexString(r);else if(o("rgb"))this.fromRgbString(r);else if(o("hsl"))this.fromHslString(r);else if(o("hsv")||o("hsb"))this.fromHsvString(r);else{const s=H1[r.toLowerCase()];s&&this.fromHexString(parseInt(s,36).toString(16).padStart(6,"0"))}}else if(t instanceof Fg)this.r=t.r,this.g=t.g,this.b=t.b,this.a=t.a,this._h=t._h,this._hsl_s=t._hsl_s,this._hsv_s=t._hsv_s,this._l=t._l,this._v=t._v;else if(n("rgb"))this.r=Ro(t.r),this.g=Ro(t.g),this.b=Ro(t.b),this.a=typeof t.a=="number"?Ro(t.a,1):1;else if(n("hsl"))this.fromHsl(t);else if(n("hsv"))this.fromHsv(t);else throw new Error("@ant-design/fast-color: unsupported input "+JSON.stringify(t))}setR(t){return this._sc("r",t)}setG(t){return this._sc("g",t)}setB(t){return this._sc("b",t)}setA(t){return this._sc("a",t,1)}setHue(t){const n=this.toHsv();return n.h=t,this._c(n)}getLuminance(){function t(s){const a=s/255;return a<=.03928?a/12.92:Math.pow((a+.055)/1.055,2.4)}const n=t(this.r),r=t(this.g),o=t(this.b);return .2126*n+.7152*r+.0722*o}getHue(){if(typeof this._h>"u"){const t=this.getMax()-this.getMin();t===0?this._h=0:this._h=Nt(60*(this.r===this.getMax()?(this.g-this.b)/t+(this.g"u"){const t=this.getMax()-this.getMin();t===0?this._hsv_s=0:this._hsv_s=t/this.getMax()}return this._hsv_s}getHSLSaturation(){if(typeof this._hsl_s>"u"){const t=this.getMax()-this.getMin();if(t===0)this._hsl_s=0;else{const n=this.getLightness();this._hsl_s=t/255/(1-Math.abs(2*n-1))}}return this._hsl_s}getLightness(){return typeof this._l>"u"&&(this._l=(this.getMax()+this.getMin())/510),this._l}getValue(){return typeof this._v>"u"&&(this._v=this.getMax()/255),this._v}getBrightness(){return typeof this._brightness>"u"&&(this._brightness=(this.r*299+this.g*587+this.b*114)/1e3),this._brightness}darken(t=10){const n=this.getHue(),r=this.getSaturation();let o=this.getLightness()-t/100;return o<0&&(o=0),this._c({h:n,s:r,l:o,a:this.a})}lighten(t=10){const n=this.getHue(),r=this.getSaturation();let o=this.getLightness()+t/100;return o>1&&(o=1),this._c({h:n,s:r,l:o,a:this.a})}mix(t,n=50){const r=this._c(t),o=n/100,s=l=>(r[l]-this[l])*o+this[l],a={r:Nt(s("r")),g:Nt(s("g")),b:Nt(s("b")),a:Nt(s("a")*100)/100};return this._c(a)}tint(t=10){return this.mix({r:255,g:255,b:255,a:1},t)}shade(t=10){return this.mix({r:0,g:0,b:0,a:1},t)}onBackground(t){const n=this._c(t),r=this.a+n.a*(1-this.a),o=s=>Nt((this[s]*this.a+n[s]*n.a*(1-this.a))/r);return this._c({r:o("r"),g:o("g"),b:o("b"),a:r})}isDark(){return this.getBrightness()<128}isLight(){return this.getBrightness()>=128}equals(t){return this.r===t.r&&this.g===t.g&&this.b===t.b&&this.a===t.a}clone(){return this._c(this)}toHexString(){let t="#";const n=(this.r||0).toString(16);t+=n.length===2?n:"0"+n;const r=(this.g||0).toString(16);t+=r.length===2?r:"0"+r;const o=(this.b||0).toString(16);if(t+=o.length===2?o:"0"+o,typeof this.a=="number"&&this.a>=0&&this.a<1){const s=Nt(this.a*255).toString(16);t+=s.length===2?s:"0"+s}return t}toHsl(){return{h:this.getHue(),s:this.getHSLSaturation(),l:this.getLightness(),a:this.a}}toHslString(){const t=this.getHue(),n=Nt(this.getHSLSaturation()*100),r=Nt(this.getLightness()*100);return this.a!==1?`hsla(${t},${n}%,${r}%,${this.a})`:`hsl(${t},${n}%,${r}%)`}toHsv(){return{h:this.getHue(),s:this.getHSVSaturation(),v:this.getValue(),a:this.a}}toRgb(){return{r:this.r,g:this.g,b:this.b,a:this.a}}toRgbString(){return this.a!==1?`rgba(${this.r},${this.g},${this.b},${this.a})`:`rgb(${this.r},${this.g},${this.b})`}toString(){return this.toRgbString()}_sc(t,n,r){const o=this.clone();return o[t]=Ro(n,r),o}_c(t){return new this.constructor(t)}getMax(){return typeof this._max>"u"&&(this._max=Math.max(this.r,this.g,this.b)),this._max}getMin(){return typeof this._min>"u"&&(this._min=Math.min(this.r,this.g,this.b)),this._min}fromHexString(t){const n=t.replace("#","");function r(o,s){return parseInt(n[o]+n[s||o],16)}n.length<6?(this.r=r(0),this.g=r(1),this.b=r(2),this.a=n[3]?r(3)/255:1):(this.r=r(0,1),this.g=r(2,3),this.b=r(4,5),this.a=n[6]?r(6,7)/255:1)}fromHsl({h:t,s:n,l:r,a:o}){const s=(t%360+360)%360;if(this._h=s,this._hsl_s=n,this._l=r,this.a=typeof o=="number"?o:1,n<=0){const p=Nt(r*255);this.r=p,this.g=p,this.b=p;return}let a=0,l=0,c=0;const u=s/60,d=(1-Math.abs(2*r-1))*n,f=d*(1-Math.abs(u%2-1));u>=0&&u<1?(a=d,l=f):u>=1&&u<2?(a=f,l=d):u>=2&&u<3?(l=d,c=f):u>=3&&u<4?(l=f,c=d):u>=4&&u<5?(a=f,c=d):u>=5&&u<6&&(a=d,c=f);const m=r-d/2;this.r=Nt((a+m)*255),this.g=Nt((l+m)*255),this.b=Nt((c+m)*255)}fromHsv({h:t,s:n,v:r,a:o}){const s=(t%360+360)%360;this._h=s,this._hsv_s=n,this._v=r,this.a=typeof o=="number"?o:1;const a=Nt(r*255);if(this.r=a,this.g=a,this.b=a,n<=0)return;const l=s/60,c=Math.floor(l),u=l-c,d=Nt(r*(1-n)*255),f=Nt(r*(1-n*u)*255),m=Nt(r*(1-n*(1-u))*255);switch(c){case 0:this.g=m,this.b=d;break;case 1:this.r=f,this.b=d;break;case 2:this.r=d,this.b=m;break;case 3:this.r=d,this.g=f;break;case 4:this.r=m,this.g=d;break;case 5:default:this.g=d,this.b=f;break}}fromHsvString(t){const n=ha(t,hf);this.fromHsv({h:n[0],s:n[1],v:n[2],a:n[3]})}fromHslString(t){const n=ha(t,hf);this.fromHsl({h:n[0],s:n[1],l:n[2],a:n[3]})}fromRgbString(t){const n=ha(t,(r,o)=>o.includes("%")?Nt(r/100*255):r);this.r=n[0],this.g=n[1],this.b=n[2],this.a=n[3]}};const Os=2,bf=.16,D1=.05,F1=.05,_1=.15,_g=5,kg=4,k1=[{index:7,amount:15},{index:6,amount:25},{index:5,amount:30},{index:5,amount:45},{index:5,amount:65},{index:5,amount:85},{index:4,amount:90},{index:3,amount:95},{index:2,amount:97},{index:1,amount:98}];function vf(e,t,n){let r;return Math.round(e.h)>=60&&Math.round(e.h)<=240?r=n?Math.round(e.h)-Os*t:Math.round(e.h)+Os*t:r=n?Math.round(e.h)+Os*t:Math.round(e.h)-Os*t,r<0?r+=360:r>=360&&(r-=360),r}function yf(e,t,n){if(e.h===0&&e.s===0)return e.s;let r;return n?r=e.s-bf*t:t===kg?r=e.s+bf:r=e.s+D1*t,r>1&&(r=1),n&&t===_g&&r>.1&&(r=.1),r<.06&&(r=.06),Math.round(r*100)/100}function $f(e,t,n){let r;return n?r=e.v+F1*t:r=e.v-_1*t,r=Math.max(0,Math.min(1,r)),Math.round(r*100)/100}function Li(e,t={}){const n=[],r=new gt(e),o=r.toHsv();for(let s=_g;s>0;s-=1){const a=new gt({h:vf(o,s,!0),s:yf(o,s,!0),v:$f(o,s,!0)});n.push(a)}n.push(r);for(let s=1;s<=kg;s+=1){const a=new gt({h:vf(o,s),s:yf(o,s),v:$f(o,s)});n.push(a)}return t.theme==="dark"?k1.map(({index:s,amount:a})=>new gt(t.backgroundColor||"#141414").mix(n[s],a).toHexString()):n.map(s=>s.toHexString())}const ba={red:"#F5222D",volcano:"#FA541C",orange:"#FA8C16",gold:"#FAAD14",yellow:"#FADB14",lime:"#A0D911",green:"#52C41A",cyan:"#13C2C2",blue:"#1677FF",geekblue:"#2F54EB",purple:"#722ED1",magenta:"#EB2F96",grey:"#666666"},bl=["#fff1f0","#ffccc7","#ffa39e","#ff7875","#ff4d4f","#f5222d","#cf1322","#a8071a","#820014","#5c0011"];bl.primary=bl[5];const vl=["#fff2e8","#ffd8bf","#ffbb96","#ff9c6e","#ff7a45","#fa541c","#d4380d","#ad2102","#871400","#610b00"];vl.primary=vl[5];const yl=["#fff7e6","#ffe7ba","#ffd591","#ffc069","#ffa940","#fa8c16","#d46b08","#ad4e00","#873800","#612500"];yl.primary=yl[5];const ii=["#fffbe6","#fff1b8","#ffe58f","#ffd666","#ffc53d","#faad14","#d48806","#ad6800","#874d00","#613400"];ii.primary=ii[5];const $l=["#feffe6","#ffffb8","#fffb8f","#fff566","#ffec3d","#fadb14","#d4b106","#ad8b00","#876800","#614700"];$l.primary=$l[5];const Cl=["#fcffe6","#f4ffb8","#eaff8f","#d3f261","#bae637","#a0d911","#7cb305","#5b8c00","#3f6600","#254000"];Cl.primary=Cl[5];const Sl=["#f6ffed","#d9f7be","#b7eb8f","#95de64","#73d13d","#52c41a","#389e0d","#237804","#135200","#092b00"];Sl.primary=Sl[5];const xl=["#e6fffb","#b5f5ec","#87e8de","#5cdbd3","#36cfc9","#13c2c2","#08979c","#006d75","#00474f","#002329"];xl.primary=xl[5];const wl=["#e6f4ff","#bae0ff","#91caff","#69b1ff","#4096ff","#1677ff","#0958d9","#003eb3","#002c8c","#001d66"];wl.primary=wl[5];const El=["#f0f5ff","#d6e4ff","#adc6ff","#85a5ff","#597ef7","#2f54eb","#1d39c4","#10239e","#061178","#030852"];El.primary=El[5];const Il=["#f9f0ff","#efdbff","#d3adf7","#b37feb","#9254de","#722ed1","#531dab","#391085","#22075e","#120338"];Il.primary=Il[5];const Pl=["#fff0f6","#ffd6e7","#ffadd2","#ff85c0","#f759ab","#eb2f96","#c41d7f","#9e1068","#780650","#520339"];Pl.primary=Pl[5];const Rl=["#a6a6a6","#999999","#8c8c8c","#808080","#737373","#666666","#404040","#1a1a1a","#000000","#000000"];Rl.primary=Rl[5];const va={red:bl,volcano:vl,orange:yl,gold:ii,yellow:$l,lime:Cl,green:Sl,cyan:xl,blue:wl,geekblue:El,purple:Il,magenta:Pl,grey:Rl};function Vg(e,{generateColorPalettes:t,generateNeutralColorPalettes:n}){const{colorSuccess:r,colorWarning:o,colorError:s,colorInfo:a,colorPrimary:l,colorBgBase:c,colorTextBase:u}=e,d=t(l),f=t(r),m=t(o),p=t(s),g=t(a),h=n(c,u),b=e.colorLink||e.colorInfo,$=t(b),y=new gt(p[1]).mix(new gt(p[3]),50).toHexString(),v={};return Tn.forEach(C=>{const S=e[C];if(S){const x=t(S);v[`${C}Hover`]=x[5],v[`${C}Active`]=x[7]}}),{...h,colorPrimaryBg:d[1],colorPrimaryBgHover:d[2],colorPrimaryBorder:d[3],colorPrimaryBorderHover:d[4],colorPrimaryHover:d[5],colorPrimary:d[6],colorPrimaryActive:d[7],colorPrimaryTextHover:d[8],colorPrimaryText:d[9],colorPrimaryTextActive:d[10],colorSuccessBg:f[1],colorSuccessBgHover:f[2],colorSuccessBorder:f[3],colorSuccessBorderHover:f[4],colorSuccessHover:f[4],colorSuccess:f[6],colorSuccessActive:f[7],colorSuccessTextHover:f[8],colorSuccessText:f[9],colorSuccessTextActive:f[10],colorErrorBg:p[1],colorErrorBgHover:p[2],colorErrorBgFilledHover:y,colorErrorBgActive:p[3],colorErrorBorder:p[3],colorErrorBorderHover:p[4],colorErrorHover:p[5],colorError:p[6],colorErrorActive:p[7],colorErrorTextHover:p[8],colorErrorText:p[9],colorErrorTextActive:p[10],colorWarningBg:m[1],colorWarningBgHover:m[2],colorWarningBorder:m[3],colorWarningBorderHover:m[4],colorWarningHover:m[4],colorWarning:m[6],colorWarningActive:m[7],colorWarningTextHover:m[8],colorWarningText:m[9],colorWarningTextActive:m[10],colorInfoBg:g[1],colorInfoBgHover:g[2],colorInfoBorder:g[3],colorInfoBorderHover:g[4],colorInfoHover:g[4],colorInfo:g[6],colorInfoActive:g[7],colorInfoTextHover:g[8],colorInfoText:g[9],colorInfoTextActive:g[10],colorLinkHover:$[4],colorLink:$[6],colorLinkActive:$[7],...v,colorBgMask:new gt("#000").setA(.45).toRgbString(),colorWhite:"#fff"}}const V1=e=>{let t=e,n=e,r=e,o=e;return e<6&&e>=5?t=e+1:e<16&&e>=6?t=e+2:e>=16&&(t=16),e<7&&e>=5?n=4:e<8&&e>=7?n=5:e<14&&e>=8?n=6:e<16&&e>=14?n=7:e>=16&&(n=8),e<6&&e>=2?r=1:e>=6&&(r=2),e>4&&e<8?o=4:e>=8&&(o=6),{borderRadius:e,borderRadiusXS:r,borderRadiusSM:n,borderRadiusLG:t,borderRadiusOuter:o}};function W1(e){const{motionUnit:t,motionBase:n,borderRadius:r,lineWidth:o}=e;return{motionDurationFast:`${(n+t).toFixed(1)}s`,motionDurationMid:`${(n+t*2).toFixed(1)}s`,motionDurationSlow:`${(n+t*3).toFixed(1)}s`,lineWidthBold:o+1,...V1(r)}}const j1=e=>{const{controlHeight:t}=e;return{controlHeightSM:t*.75,controlHeightXS:t*.5,controlHeightLG:t*1.25}},q1=e=>{const t=B1(e),n=t.map(d=>d.size),r=t.map(d=>d.lineHeight),o=n[1],s=n[0],a=n[2],l=r[1],c=r[0],u=r[2];return{fontSizeSM:s,fontSize:o,fontSizeLG:a,fontSizeXL:n[3],fontSizeHeading1:n[6],fontSizeHeading2:n[5],fontSizeHeading3:n[4],fontSizeHeading4:n[3],fontSizeHeading5:n[2],lineHeight:l,lineHeightLG:u,lineHeightSM:c,fontHeight:Math.round(l*o),fontHeightLG:Math.round(u*a),fontHeightSM:Math.round(c*s),lineHeightHeading1:r[6],lineHeightHeading2:r[5],lineHeightHeading3:r[4],lineHeightHeading4:r[3],lineHeightHeading5:r[2]}};function G1(e){const{sizeUnit:t,sizeStep:n}=e;return{sizeXXL:t*(n+8),sizeXL:t*(n+4),sizeLG:t*(n+2),sizeMD:t*(n+1),sizeMS:t*n,size:t*n,sizeSM:t*(n-1),sizeXS:t*(n-2),sizeXXS:t*(n-3)}}const fn=(e,t)=>new gt(e).setA(t).toRgbString(),kr=(e,t)=>new gt(e).darken(t).toHexString(),X1=e=>{const t=Li(e);return{1:t[0],2:t[1],3:t[2],4:t[3],5:t[4],6:t[5],7:t[6],8:t[4],9:t[5],10:t[6]}},U1=(e,t)=>{const n=e||"#fff",r=t||"#000";return{colorBgBase:n,colorTextBase:r,colorText:fn(r,.88),colorTextSecondary:fn(r,.65),colorTextTertiary:fn(r,.45),colorTextQuaternary:fn(r,.25),colorFill:fn(r,.15),colorFillSecondary:fn(r,.06),colorFillTertiary:fn(r,.04),colorFillQuaternary:fn(r,.02),colorBgSolid:fn(r,1),colorBgSolidHover:fn(r,.75),colorBgSolidActive:fn(r,.95),colorBgLayout:kr(n,4),colorBgContainer:kr(n,0),colorBgElevated:kr(n,0),colorBgSpotlight:fn(r,.85),colorBgBlur:"transparent",colorBorder:kr(n,15),colorBorderDisabled:kr(n,15),colorBorderSecondary:kr(n,6)}};function ku(e){ba.pink=ba.magenta,va.pink=va.magenta;const t=Object.keys(_u).map(n=>{const r=e[n]===ba[n]?va[n]:Li(e[n]);return Array.from({length:10},()=>1).reduce((o,s,a)=>(o[`${n}-${a+1}`]=r[a],o[`${n}${a+1}`]=r[a],o),{})}).reduce((n,r)=>(n={...n,...r},n),{});return{...e,...t,...Vg(e,{generateColorPalettes:X1,generateNeutralColorPalettes:U1}),...q1(e.fontSize),...G1(e),...j1(e),...W1(e)}}const Wg=ml(ku),ai={token:Zo,override:{override:Zo},hashed:!0},Vu=N.createContext(ai);function ya(e){return e>=0&&e<=255}function zo(e,t){const{r:n,g:r,b:o,a:s}=new gt(e).toRgb();if(s<1)return e;const{r:a,g:l,b:c}=new gt(t).toRgb();for(let u=.01;u<=1;u+=.01){const d=Math.round((n-a*(1-u))/u),f=Math.round((r-l*(1-u))/u),m=Math.round((o-c*(1-u))/u);if(ya(d)&&ya(f)&&ya(m))return new gt({r:d,g:f,b:m,a:Math.round(u*100)/100}).toRgbString()}return new gt({r:n,g:r,b:o,a:1}).toRgbString()}function K1(e){const{override:t,...n}=e,r={...t};Object.keys(Zo).forEach(p=>{delete r[p]});const o={...n,...r},s=480,a=576,l=768,c=992,u=1200,d=1600,f=1920;if(o.motion===!1){const p="0s";o.motionDurationFast=p,o.motionDurationMid=p,o.motionDurationSlow=p}return{...o,colorFillContent:o.colorFillSecondary,colorFillContentHover:o.colorFill,colorFillAlter:o.colorFillQuaternary,colorBgContainerDisabled:o.colorFillTertiary,colorBorderBg:o.colorBgContainer,colorSplit:zo(o.colorBorderSecondary,o.colorBgContainer),colorTextPlaceholder:o.colorTextQuaternary,colorTextDisabled:o.colorTextQuaternary,colorTextHeading:o.colorText,colorTextLabel:o.colorTextSecondary,colorTextDescription:o.colorTextTertiary,colorTextLightSolid:o.colorWhite,colorHighlight:o.colorError,colorBgTextHover:o.colorFillSecondary,colorBgTextActive:o.colorFill,colorIcon:o.colorTextTertiary,colorIconHover:o.colorText,colorErrorOutline:zo(o.colorErrorBg,o.colorBgContainer),colorWarningOutline:zo(o.colorWarningBg,o.colorBgContainer),fontSizeIcon:o.fontSizeSM,lineWidthFocus:o.lineWidth*3,lineWidth:o.lineWidth,controlOutlineWidth:o.lineWidth*2,controlInteractiveSize:o.controlHeight/2,controlItemBgHover:o.colorFillTertiary,controlItemBgActive:o.colorPrimaryBg,controlItemBgActiveHover:o.colorPrimaryBgHover,controlItemBgActiveDisabled:o.colorFill,controlTmpOutline:o.colorFillQuaternary,controlOutline:zo(o.colorPrimaryBg,o.colorBgContainer),lineType:o.lineType,borderRadius:o.borderRadius,borderRadiusXS:o.borderRadiusXS,borderRadiusSM:o.borderRadiusSM,borderRadiusLG:o.borderRadiusLG,fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:o.sizeXXS,paddingXS:o.sizeXS,paddingSM:o.sizeSM,padding:o.size,paddingMD:o.sizeMD,paddingLG:o.sizeLG,paddingXL:o.sizeXL,paddingContentHorizontalLG:o.sizeLG,paddingContentVerticalLG:o.sizeMS,paddingContentHorizontal:o.sizeMS,paddingContentVertical:o.sizeSM,paddingContentHorizontalSM:o.size,paddingContentVerticalSM:o.sizeXS,marginXXS:o.sizeXXS,marginXS:o.sizeXS,marginSM:o.sizeSM,margin:o.size,marginMD:o.sizeMD,marginLG:o.sizeLG,marginXL:o.sizeXL,marginXXL:o.sizeXXL,boxShadow:` + 0 6px 16px 0 rgba(0, 0, 0, 0.08), + 0 3px 6px -4px rgba(0, 0, 0, 0.12), + 0 9px 28px 8px rgba(0, 0, 0, 0.05) + `,boxShadowSecondary:` + 0 6px 16px 0 rgba(0, 0, 0, 0.08), + 0 3px 6px -4px rgba(0, 0, 0, 0.12), + 0 9px 28px 8px rgba(0, 0, 0, 0.05) + `,boxShadowTertiary:` + 0 1px 2px 0 rgba(0, 0, 0, 0.03), + 0 1px 6px -1px rgba(0, 0, 0, 0.02), + 0 2px 4px 0 rgba(0, 0, 0, 0.02) + `,screenXS:s,screenXSMin:s,screenXSMax:a-1,screenSM:a,screenSMMin:a,screenSMMax:l-1,screenMD:l,screenMDMin:l,screenMDMax:c-1,screenLG:c,screenLGMin:c,screenLGMax:u-1,screenXL:u,screenXLMin:u,screenXLMax:d-1,screenXXL:d,screenXXLMin:d,screenXXLMax:f-1,screenXXXL:f,screenXXXLMin:f,boxShadowPopoverArrow:"2px 2px 5px rgba(0, 0, 0, 0.05)",boxShadowCard:` + 0 1px 2px -2px ${new gt("rgba(0, 0, 0, 0.16)").toRgbString()}, + 0 3px 6px 0 ${new gt("rgba(0, 0, 0, 0.12)").toRgbString()}, + 0 5px 12px 4px ${new gt("rgba(0, 0, 0, 0.09)").toRgbString()} + `,boxShadowDrawerRight:` + -6px 0 16px 0 rgba(0, 0, 0, 0.08), + -3px 0 6px -4px rgba(0, 0, 0, 0.12), + -9px 0 28px 8px rgba(0, 0, 0, 0.05) + `,boxShadowDrawerLeft:` + 6px 0 16px 0 rgba(0, 0, 0, 0.08), + 3px 0 6px -4px rgba(0, 0, 0, 0.12), + 9px 0 28px 8px rgba(0, 0, 0, 0.05) + `,boxShadowDrawerUp:` + 0 6px 16px 0 rgba(0, 0, 0, 0.08), + 0 3px 6px -4px rgba(0, 0, 0, 0.12), + 0 9px 28px 8px rgba(0, 0, 0, 0.05) + `,boxShadowDrawerDown:` + 0 -6px 16px 0 rgba(0, 0, 0, 0.08), + 0 -3px 6px -4px rgba(0, 0, 0, 0.12), + 0 -9px 28px 8px rgba(0, 0, 0, 0.05) + `,boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)",...r}}const jg={lineHeight:!0,lineHeightSM:!0,lineHeightLG:!0,lineHeightHeading1:!0,lineHeightHeading2:!0,lineHeightHeading3:!0,lineHeightHeading4:!0,lineHeightHeading5:!0,opacityLoading:!0,fontWeightStrong:!0,zIndexPopupBase:!0,zIndexBase:!0,opacityImage:!0},Y1={motionBase:!0,motionUnit:!0},Q1={screenXS:!0,screenXSMin:!0,screenXSMax:!0,screenSM:!0,screenSMMin:!0,screenSMMax:!0,screenMD:!0,screenMDMin:!0,screenMDMax:!0,screenLG:!0,screenLGMin:!0,screenLGMax:!0,screenXL:!0,screenXLMin:!0,screenXLMax:!0,screenXXL:!0,screenXXLMin:!0},qg=(e,t,n)=>{const r=n.getDerivativeToken(e),{override:o,...s}=t;let a={...r,override:o};return a=K1(a),s&&Object.entries(s).forEach(([l,c])=>{const{theme:u,...d}=c;let f=d;u&&(f=qg({...a,...d},{override:d},u)),a[l]=f}),a};function jt(){const{token:e,hashed:t,theme:n,override:r,cssVar:o,zeroRuntime:s}=N.useContext(Vu),a={prefix:(o==null?void 0:o.prefix)??"ant",key:(o==null?void 0:o.key)??"css-var-root"},l=`${L1}-${t||""}`,c=n||Wg,[u,d,f]=g1(c,[Zo,e],{salt:l,override:r,getComputedToken:qg,cssVar:{...a,unitless:jg,ignore:Y1,preserve:Q1}});return[c,f,t?d:"",u,a,!!s]}const Wn={overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"},Ct=(e,t=!1)=>({boxSizing:"border-box",margin:0,padding:0,color:e.colorText,fontSize:e.fontSize,lineHeight:e.lineHeight,listStyle:"none",fontFamily:t?"inherit":e.fontFamily}),go=()=>({display:"inline-flex",alignItems:"center",color:"inherit",fontStyle:"normal",lineHeight:0,textAlign:"center",textTransform:"none",verticalAlign:"-0.125em",textRendering:"optimizeLegibility","-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale","> *":{lineHeight:1},svg:{display:"inline-block"}}),li=()=>({"&::before":{display:"table",content:'""'},"&::after":{display:"table",clear:"both",content:'""'}}),Z1=e=>({a:{color:e.colorLink,textDecoration:e.linkDecoration,backgroundColor:"transparent",outline:"none",cursor:"pointer",transition:`color ${e.motionDurationSlow}`,"-webkit-text-decoration-skip":"objects","&:hover":{color:e.colorLinkHover},"&:active":{color:e.colorLinkActive},"&:active, &:hover":{textDecoration:e.linkHoverDecoration,outline:0},"&:focus":{textDecoration:e.linkFocusDecoration,outline:0},"&[disabled]":{color:e.colorTextDisabled,cursor:"not-allowed"}}}),J1=(e,t,n,r)=>{const o=`[class^="${t}"], [class*=" ${t}"]`,s=n?`.${n}`:o,a={boxSizing:"border-box","&::before, &::after":{boxSizing:"border-box"}};let l={};return r!==!1&&(l={fontFamily:e.fontFamily,fontSize:e.fontSize}),{[s]:{...l,...a,[o]:a}}},ho=(e,t)=>({outline:`${K(e.lineWidthFocus)} solid ${e.colorPrimaryBorder}`,outlineOffset:t??1,transition:["outline-offset","outline"].map(n=>`${n} 0s`).join(", ")}),bn=(e,t)=>({"&:focus-visible":ho(e,t)}),Gg=e=>({[`.${e}`]:{...go(),[`.${e} .${e}-icon`]:{display:"block"}}}),Xg=e=>({color:e.colorLink,textDecoration:e.linkDecoration,outline:"none",cursor:"pointer",transition:`all ${e.motionDurationSlow}`,border:0,padding:0,background:"none",userSelect:"none",...bn(e),"&:hover":{color:e.colorLinkHover,textDecoration:e.linkHoverDecoration},"&:focus":{color:e.colorLinkHover,textDecoration:e.linkFocusDecoration},"&:active":{color:e.colorLinkActive,textDecoration:e.linkHoverDecoration}}),{genStyleHooks:at,genComponentStyleHook:e$,genSubStyleComponent:Ug}=z1({usePrefix:()=>{const{getPrefixCls:e,iconPrefixCls:t}=i.useContext(je);return{rootPrefixCls:e(),iconPrefixCls:t}},useToken:()=>{const[e,t,n,r,o,s]=jt();return{theme:e,realToken:t,hashId:n,token:r,cssVar:o,zeroRuntime:s}},useCSP:()=>{const{csp:e}=i.useContext(je);return e??{}},getResetStyles:(e,t)=>{const n=Z1(e);return[n,{"&":n},Gg((t==null?void 0:t.prefix.iconPrefixCls)??zi)]},getCommonStyle:J1,getCompUnitless:()=>jg}),At=(e,t)=>{const n=`--${e.replace(/\./g,"")}-${t}-`;return[s=>`${n}${s}`,(s,a)=>a?`var(${n}${s}, ${a})`:`var(${n}${s})`]};function t$(e,t){return Tn.reduce((n,r)=>{const o=e[`${r}1`],s=e[`${r}3`],a=e[`${r}6`],l=e[`${r}7`];return{...n,...t(r,{lightColor:o,lightBorderColor:s,darkColor:a,textColor:l})}},{})}const n$=(e,t)=>(jt(),Qo({hashId:"",path:["ant-design-icons",e],nonce:()=>t==null?void 0:t.nonce,layer:{name:"antd"}},()=>Gg(e))),r$=e=>{const{componentCls:t}=e;return{[t]:{position:"fixed",zIndex:e.zIndexPopup}}},o$=e=>({zIndexPopup:e.zIndexBase+10}),s$=at("Affix",r$,o$);function As(e){return e!==window?e.getBoundingClientRect():{top:0,bottom:window.innerHeight}}function Cf(e,t,n){if(n!==void 0&&Math.round(t.top)>Math.round(e.top)-n)return n+t.top}function Sf(e,t,n){if(n!==void 0&&Math.round(t.bottom)typeof window<"u"?window:null,wf=0,Ef=1,a$=N.forwardRef((e,t)=>{const{style:n,offsetTop:r,offsetBottom:o,prefixCls:s,className:a,rootClassName:l,children:c,target:u,onChange:d,onTestUpdatePosition:f,...m}=e,{getPrefixCls:p,className:g,style:h}=dt("affix"),{getTargetContainer:b}=N.useContext(je),$=p("affix",s),[y,v]=N.useState(!1),[C,S]=N.useState(),[x,w]=N.useState(),I=N.useRef(wf),E=N.useRef(null),R=N.useRef(null),P=N.useRef(null),M=N.useRef(null),O=N.useRef(null),A=u??b??i$,T=o===void 0&&r===void 0?0:r,F=()=>{if(I.current!==Ef||!M.current||!P.current||!A)return;const j=A();if(j){const V={status:wf},G=As(P.current);if(G.top===0&&G.left===0&&G.width===0&&G.height===0)return;const te=As(j),ee=Cf(G,te,T),ne=Sf(G,te,o);ee!==void 0?(V.affixStyle={position:"fixed",top:ee,width:G.width,height:G.height},V.placeholderStyle={width:G.width,height:G.height}):ne!==void 0&&(V.affixStyle={position:"fixed",bottom:ne,width:G.width,height:G.height},V.placeholderStyle={width:G.width,height:G.height}),V.lastAffix=!!V.affixStyle,y!==V.lastAffix&&(d==null||d(V.lastAffix)),I.current=V.status,S(V.affixStyle),w(V.placeholderStyle),v(V.lastAffix)}},H=()=>{I.current=Ef,F()},L=tf(()=>{H()}),B=tf(()=>{if(A&&C){const j=A();if(j&&P.current){const V=As(j),G=As(P.current),te=Cf(G,V,T),ee=Sf(G,V,o);if(te!==void 0&&C.top===te||ee!==void 0&&C.bottom===ee)return}}H()}),D=()=>{const j=A==null?void 0:A();j&&(xf.forEach(V=>{var G;R.current&&((G=E.current)==null||G.removeEventListener(V,R.current)),j==null||j.addEventListener(V,B)}),E.current=j,R.current=B)},k=()=>{const j=A==null?void 0:A();xf.forEach(V=>{var G;j==null||j.removeEventListener(V,B),R.current&&((G=E.current)==null||G.removeEventListener(V,R.current))}),L.cancel(),B.cancel()};N.useImperativeHandle(t,()=>({updatePosition:L})),N.useEffect(()=>(O.current=setTimeout(D),()=>{O.current&&(clearTimeout(O.current),O.current=null),k()}),[]),N.useEffect(()=>(D(),()=>k()),[u,C,y,r,o]),N.useEffect(()=>{L()},[u,r,o]);const[W,_]=s$($),X=z(l,W,$,_),U=z({[X]:C});return N.createElement(Fn,{onResize:L},N.createElement("div",{style:{...h,...n},className:z(a,g),ref:P,...m},C&&N.createElement("div",{style:x,"aria-hidden":"true"}),N.createElement("div",{className:U,ref:M,style:C},N.createElement(Fn,{onResize:L},c))))});var l$={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm193.5 301.7l-210.6 292a31.8 31.8 0 01-51.7 0L318.5 484.9c-3.8-5.3 0-12.7 6.5-12.7h46.9c10.2 0 19.9 4.9 25.9 13.3l71.2 98.8 157.2-218c6-8.3 15.6-13.3 25.9-13.3H699c6.5 0 10.3 7.4 6.5 12.7z"}}]},name:"check-circle",theme:"filled"};const c$={aliceblue:"9ehhb",antiquewhite:"9sgk7",aqua:"1ekf",aquamarine:"4zsno",azure:"9eiv3",beige:"9lhp8",bisque:"9zg04",black:"0",blanchedalmond:"9zhe5",blue:"73",blueviolet:"5e31e",brown:"6g016",burlywood:"8ouiv",cadetblue:"3qba8",chartreuse:"4zshs",chocolate:"87k0u",coral:"9yvyo",cornflowerblue:"3xael",cornsilk:"9zjz0",crimson:"8l4xo",cyan:"1ekf",darkblue:"3v",darkcyan:"rkb",darkgoldenrod:"776yz",darkgray:"6mbhl",darkgreen:"jr4",darkgrey:"6mbhl",darkkhaki:"7ehkb",darkmagenta:"5f91n",darkolivegreen:"3bzfz",darkorange:"9yygw",darkorchid:"5z6x8",darkred:"5f8xs",darksalmon:"9441m",darkseagreen:"5lwgf",darkslateblue:"2th1n",darkslategray:"1ugcv",darkslategrey:"1ugcv",darkturquoise:"14up",darkviolet:"5rw7n",deeppink:"9yavn",deepskyblue:"11xb",dimgray:"442g9",dimgrey:"442g9",dodgerblue:"16xof",firebrick:"6y7tu",floralwhite:"9zkds",forestgreen:"1cisi",fuchsia:"9y70f",gainsboro:"8m8kc",ghostwhite:"9pq0v",goldenrod:"8j4f4",gold:"9zda8",gray:"50i2o",green:"pa8",greenyellow:"6senj",grey:"50i2o",honeydew:"9eiuo",hotpink:"9yrp0",indianred:"80gnw",indigo:"2xcoy",ivory:"9zldc",khaki:"9edu4",lavenderblush:"9ziet",lavender:"90c8q",lawngreen:"4vk74",lemonchiffon:"9zkct",lightblue:"6s73a",lightcoral:"9dtog",lightcyan:"8s1rz",lightgoldenrodyellow:"9sjiq",lightgray:"89jo3",lightgreen:"5nkwg",lightgrey:"89jo3",lightpink:"9z6wx",lightsalmon:"9z2ii",lightseagreen:"19xgq",lightskyblue:"5arju",lightslategray:"4nwk9",lightslategrey:"4nwk9",lightsteelblue:"6wau6",lightyellow:"9zlcw",lime:"1edc",limegreen:"1zcxe",linen:"9shk6",magenta:"9y70f",maroon:"4zsow",mediumaquamarine:"40eju",mediumblue:"5p",mediumorchid:"79qkz",mediumpurple:"5r3rv",mediumseagreen:"2d9ip",mediumslateblue:"4tcku",mediumspringgreen:"1di2",mediumturquoise:"2uabw",mediumvioletred:"7rn9h",midnightblue:"z980",mintcream:"9ljp6",mistyrose:"9zg0x",moccasin:"9zfzp",navajowhite:"9zest",navy:"3k",oldlace:"9wq92",olive:"50hz4",olivedrab:"472ub",orange:"9z3eo",orangered:"9ykg0",orchid:"8iu3a",palegoldenrod:"9bl4a",palegreen:"5yw0o",paleturquoise:"6v4ku",palevioletred:"8k8lv",papayawhip:"9zi6t",peachpuff:"9ze0p",peru:"80oqn",pink:"9z8wb",plum:"8nba5",powderblue:"6wgdi",purple:"4zssg",rebeccapurple:"3zk49",red:"9y6tc",rosybrown:"7cv4f",royalblue:"2jvtt",saddlebrown:"5fmkz",salmon:"9rvci",sandybrown:"9jn1c",seagreen:"1tdnb",seashell:"9zje6",sienna:"6973h",silver:"7ir40",skyblue:"5arjf",slateblue:"45e4t",slategray:"4e100",slategrey:"4e100",snow:"9zke2",springgreen:"1egv",steelblue:"2r1kk",tan:"87yx8",teal:"pds",thistle:"8ggk8",tomato:"9yqfb",turquoise:"2j4r4",violet:"9b10u",wheat:"9ld4j",white:"9zldr",whitesmoke:"9lhpx",yellow:"9zl6o",yellowgreen:"61fzm"},Tt=Math.round;function $a(e,t){const n=e.replace(/^[^(]*\((.*)/,"$1").replace(/\).*/,"").match(/\d*\.?\d+%?/g)||[],r=n.map(o=>parseFloat(o));for(let o=0;o<3;o+=1)r[o]=t(r[o]||0,n[o]||"",o);return n[3]?r[3]=n[3].includes("%")?r[3]/100:r[3]:r[3]=1,r}const If=(e,t,n)=>n===0?e:e/100;function Mo(e,t){const n=t||255;return e>n?n:e<0?0:e}class eo{constructor(t){le(this,"isValid",!0);le(this,"r",0);le(this,"g",0);le(this,"b",0);le(this,"a",1);le(this,"_h");le(this,"_s");le(this,"_l");le(this,"_v");le(this,"_max");le(this,"_min");le(this,"_brightness");function n(r){return r[0]in t&&r[1]in t&&r[2]in t}if(t)if(typeof t=="string"){let o=function(s){return r.startsWith(s)};const r=t.trim();if(/^#?[A-F\d]{3,8}$/i.test(r))this.fromHexString(r);else if(o("rgb"))this.fromRgbString(r);else if(o("hsl"))this.fromHslString(r);else if(o("hsv")||o("hsb"))this.fromHsvString(r);else{const s=c$[r.toLowerCase()];s&&this.fromHexString(parseInt(s,36).toString(16).padStart(6,"0"))}}else if(t instanceof eo)this.r=t.r,this.g=t.g,this.b=t.b,this.a=t.a,this._h=t._h,this._s=t._s,this._l=t._l,this._v=t._v;else if(n("rgb"))this.r=Mo(t.r),this.g=Mo(t.g),this.b=Mo(t.b),this.a=typeof t.a=="number"?Mo(t.a,1):1;else if(n("hsl"))this.fromHsl(t);else if(n("hsv"))this.fromHsv(t);else throw new Error("@ant-design/fast-color: unsupported input "+JSON.stringify(t))}setR(t){return this._sc("r",t)}setG(t){return this._sc("g",t)}setB(t){return this._sc("b",t)}setA(t){return this._sc("a",t,1)}setHue(t){const n=this.toHsv();return n.h=t,this._c(n)}getLuminance(){function t(s){const a=s/255;return a<=.03928?a/12.92:Math.pow((a+.055)/1.055,2.4)}const n=t(this.r),r=t(this.g),o=t(this.b);return .2126*n+.7152*r+.0722*o}getHue(){if(typeof this._h>"u"){const t=this.getMax()-this.getMin();t===0?this._h=0:this._h=Tt(60*(this.r===this.getMax()?(this.g-this.b)/t+(this.g"u"){const t=this.getMax()-this.getMin();t===0?this._s=0:this._s=t/this.getMax()}return this._s}getLightness(){return typeof this._l>"u"&&(this._l=(this.getMax()+this.getMin())/510),this._l}getValue(){return typeof this._v>"u"&&(this._v=this.getMax()/255),this._v}getBrightness(){return typeof this._brightness>"u"&&(this._brightness=(this.r*299+this.g*587+this.b*114)/1e3),this._brightness}darken(t=10){const n=this.getHue(),r=this.getSaturation();let o=this.getLightness()-t/100;return o<0&&(o=0),this._c({h:n,s:r,l:o,a:this.a})}lighten(t=10){const n=this.getHue(),r=this.getSaturation();let o=this.getLightness()+t/100;return o>1&&(o=1),this._c({h:n,s:r,l:o,a:this.a})}mix(t,n=50){const r=this._c(t),o=n/100,s=l=>(r[l]-this[l])*o+this[l],a={r:Tt(s("r")),g:Tt(s("g")),b:Tt(s("b")),a:Tt(s("a")*100)/100};return this._c(a)}tint(t=10){return this.mix({r:255,g:255,b:255,a:1},t)}shade(t=10){return this.mix({r:0,g:0,b:0,a:1},t)}onBackground(t){const n=this._c(t),r=this.a+n.a*(1-this.a),o=s=>Tt((this[s]*this.a+n[s]*n.a*(1-this.a))/r);return this._c({r:o("r"),g:o("g"),b:o("b"),a:r})}isDark(){return this.getBrightness()<128}isLight(){return this.getBrightness()>=128}equals(t){return this.r===t.r&&this.g===t.g&&this.b===t.b&&this.a===t.a}clone(){return this._c(this)}toHexString(){let t="#";const n=(this.r||0).toString(16);t+=n.length===2?n:"0"+n;const r=(this.g||0).toString(16);t+=r.length===2?r:"0"+r;const o=(this.b||0).toString(16);if(t+=o.length===2?o:"0"+o,typeof this.a=="number"&&this.a>=0&&this.a<1){const s=Tt(this.a*255).toString(16);t+=s.length===2?s:"0"+s}return t}toHsl(){return{h:this.getHue(),s:this.getSaturation(),l:this.getLightness(),a:this.a}}toHslString(){const t=this.getHue(),n=Tt(this.getSaturation()*100),r=Tt(this.getLightness()*100);return this.a!==1?`hsla(${t},${n}%,${r}%,${this.a})`:`hsl(${t},${n}%,${r}%)`}toHsv(){return{h:this.getHue(),s:this.getSaturation(),v:this.getValue(),a:this.a}}toRgb(){return{r:this.r,g:this.g,b:this.b,a:this.a}}toRgbString(){return this.a!==1?`rgba(${this.r},${this.g},${this.b},${this.a})`:`rgb(${this.r},${this.g},${this.b})`}toString(){return this.toRgbString()}_sc(t,n,r){const o=this.clone();return o[t]=Mo(n,r),o}_c(t){return new this.constructor(t)}getMax(){return typeof this._max>"u"&&(this._max=Math.max(this.r,this.g,this.b)),this._max}getMin(){return typeof this._min>"u"&&(this._min=Math.min(this.r,this.g,this.b)),this._min}fromHexString(t){const n=t.replace("#","");function r(o,s){return parseInt(n[o]+n[s||o],16)}n.length<6?(this.r=r(0),this.g=r(1),this.b=r(2),this.a=n[3]?r(3)/255:1):(this.r=r(0,1),this.g=r(2,3),this.b=r(4,5),this.a=n[6]?r(6,7)/255:1)}fromHsl({h:t,s:n,l:r,a:o}){if(this._h=t%360,this._s=n,this._l=r,this.a=typeof o=="number"?o:1,n<=0){const m=Tt(r*255);this.r=m,this.g=m,this.b=m}let s=0,a=0,l=0;const c=t/60,u=(1-Math.abs(2*r-1))*n,d=u*(1-Math.abs(c%2-1));c>=0&&c<1?(s=u,a=d):c>=1&&c<2?(s=d,a=u):c>=2&&c<3?(a=u,l=d):c>=3&&c<4?(a=d,l=u):c>=4&&c<5?(s=d,l=u):c>=5&&c<6&&(s=u,l=d);const f=r-u/2;this.r=Tt((s+f)*255),this.g=Tt((a+f)*255),this.b=Tt((l+f)*255)}fromHsv({h:t,s:n,v:r,a:o}){this._h=t%360,this._s=n,this._v=r,this.a=typeof o=="number"?o:1;const s=Tt(r*255);if(this.r=s,this.g=s,this.b=s,n<=0)return;const a=t/60,l=Math.floor(a),c=a-l,u=Tt(r*(1-n)*255),d=Tt(r*(1-n*c)*255),f=Tt(r*(1-n*(1-c))*255);switch(l){case 0:this.g=f,this.b=u;break;case 1:this.r=d,this.b=u;break;case 2:this.r=u,this.b=f;break;case 3:this.r=u,this.g=d;break;case 4:this.r=f,this.g=u;break;case 5:default:this.g=u,this.b=d;break}}fromHsvString(t){const n=$a(t,If);this.fromHsv({h:n[0],s:n[1],v:n[2],a:n[3]})}fromHslString(t){const n=$a(t,If);this.fromHsl({h:n[0],s:n[1],l:n[2],a:n[3]})}fromRgbString(t){const n=$a(t,(r,o)=>o.includes("%")?Tt(r/100*255):r);this.r=n[0],this.g=n[1],this.b=n[2],this.a=n[3]}}const zs=2,Pf=.16,u$=.05,d$=.05,f$=.15,Kg=5,Yg=4,m$=[{index:7,amount:15},{index:6,amount:25},{index:5,amount:30},{index:5,amount:45},{index:5,amount:65},{index:5,amount:85},{index:4,amount:90},{index:3,amount:95},{index:2,amount:97},{index:1,amount:98}];function Rf(e,t,n){let r;return Math.round(e.h)>=60&&Math.round(e.h)<=240?r=n?Math.round(e.h)-zs*t:Math.round(e.h)+zs*t:r=n?Math.round(e.h)+zs*t:Math.round(e.h)-zs*t,r<0?r+=360:r>=360&&(r-=360),r}function Mf(e,t,n){if(e.h===0&&e.s===0)return e.s;let r;return n?r=e.s-Pf*t:t===Yg?r=e.s+Pf:r=e.s+u$*t,r>1&&(r=1),n&&t===Kg&&r>.1&&(r=.1),r<.06&&(r=.06),Math.round(r*100)/100}function Nf(e,t,n){let r;return n?r=e.v+d$*t:r=e.v-f$*t,r=Math.max(0,Math.min(1,r)),Math.round(r*100)/100}function p$(e,t={}){const n=[],r=new eo(e),o=r.toHsv();for(let s=Kg;s>0;s-=1){const a=new eo({h:Rf(o,s,!0),s:Mf(o,s,!0),v:Nf(o,s,!0)});n.push(a)}n.push(r);for(let s=1;s<=Yg;s+=1){const a=new eo({h:Rf(o,s),s:Mf(o,s),v:Nf(o,s)});n.push(a)}return t.theme==="dark"?m$.map(({index:s,amount:a})=>new eo(t.backgroundColor||"#141414").mix(n[s],a).toHexString()):n.map(s=>s.toHexString())}const Ml=["#e6f4ff","#bae0ff","#91caff","#69b1ff","#4096ff","#1677ff","#0958d9","#003eb3","#002c8c","#001d66"];Ml.primary=Ml[5];const Hi=i.createContext({});function g$(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}function h$(e,t){if(!e)return!1;if(e.contains)return e.contains(t);let n=t;for(;n;){if(n===e)return!0;n=n.parentNode}return!1}const Tf="data-rc-order",Of="data-rc-priority",b$="rc-util-key",Nl=new Map;function Qg({mark:e}={}){return e?e.startsWith("data-")?e:`data-${e}`:b$}function Wu(e){return e.attachTo?e.attachTo:document.querySelector("head")||document.body}function v$(e){return e==="queue"?"prependQueue":e?"prepend":"append"}function ju(e){return Array.from((Nl.get(e)||e).children).filter(t=>t.tagName==="STYLE")}function Zg(e,t={}){if(!g$())return null;const{csp:n,prepend:r,priority:o=0}=t,s=v$(r),a=s==="prependQueue",l=document.createElement("style");l.setAttribute(Tf,s),a&&o&&l.setAttribute(Of,`${o}`),n!=null&&n.nonce&&(l.nonce=n==null?void 0:n.nonce),l.innerHTML=e;const c=Wu(t),{firstChild:u}=c;if(r){if(a){const d=(t.styles||ju(c)).filter(f=>{if(!["prepend","prependQueue"].includes(f.getAttribute(Tf)))return!1;const m=Number(f.getAttribute(Of)||0);return o>=m});if(d.length)return c.insertBefore(l,d[d.length-1].nextSibling),l}c.insertBefore(l,u)}else c.appendChild(l);return l}function y$(e,t={}){let{styles:n}=t;return n||(n=ju(Wu(t))),n.find(r=>r.getAttribute(Qg(t))===e)}function $$(e,t){const n=Nl.get(e);if(!n||!h$(document,n)){const r=Zg("",t),{parentNode:o}=r;Nl.set(e,o),e.removeChild(r)}}function C$(e,t,n={}){var c,u,d;const r=Wu(n),o=ju(r),s={...n,styles:o};$$(r,s);const a=y$(t,s);if(a)return(c=s.csp)!=null&&c.nonce&&a.nonce!==((u=s.csp)==null?void 0:u.nonce)&&(a.nonce=(d=s.csp)==null?void 0:d.nonce),a.innerHTML!==e&&(a.innerHTML=e),a;const l=Zg(e,s);return l.setAttribute(Qg(s),t),l}function Jg(e){var t;return(t=e==null?void 0:e.getRootNode)==null?void 0:t.call(e)}function S$(e){return Jg(e)instanceof ShadowRoot}function x$(e){return S$(e)?Jg(e):null}let Tl={};const w$=e=>{};function E$(e,t){}function I$(e,t){}function P$(){Tl={}}function eh(e,t,n){!t&&!Tl[n]&&(e(!1,n),Tl[n]=!0)}function Di(e,t){eh(E$,e,t)}function R$(e,t){eh(I$,e,t)}Di.preMessage=w$;Di.resetWarned=P$;Di.noteOnce=R$;function M$(e){return e.replace(/-(.)/g,(t,n)=>n.toUpperCase())}function N$(e,t){Di(e,`[@ant-design/icons] ${t}`)}function Af(e){return typeof e=="object"&&typeof e.name=="string"&&typeof e.theme=="string"&&(typeof e.icon=="object"||typeof e.icon=="function")}function zf(e={}){return Object.keys(e).reduce((t,n)=>{const r=e[n];switch(n){case"class":t.className=r,delete t.class;break;default:delete t[n],t[M$(n)]=r}return t},{})}function Ol(e,t,n){return n?N.createElement(e.tag,{key:t,...zf(e.attrs),...n},(e.children||[]).map((r,o)=>Ol(r,`${t}-${e.tag}-${o}`))):N.createElement(e.tag,{key:t,...zf(e.attrs)},(e.children||[]).map((r,o)=>Ol(r,`${t}-${e.tag}-${o}`)))}function th(e){return p$(e)[0]}function nh(e){return e?Array.isArray(e)?e:[e]:[]}const T$=` +.anticon { + display: inline-flex; + align-items: center; + color: inherit; + font-style: normal; + line-height: 0; + text-align: center; + text-transform: none; + vertical-align: -0.125em; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.anticon > * { + line-height: 1; +} + +.anticon svg { + display: inline-block; + vertical-align: inherit; +} + +.anticon::before { + display: none; +} + +.anticon .anticon-icon { + display: block; +} + +.anticon[tabindex] { + cursor: pointer; +} + +.anticon-spin::before, +.anticon-spin { + display: inline-block; + -webkit-animation: loadingCircle 1s infinite linear; + animation: loadingCircle 1s infinite linear; +} + +@-webkit-keyframes loadingCircle { + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes loadingCircle { + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +`,O$=e=>{const{csp:t,prefixCls:n,layer:r}=i.useContext(Hi);let o=T$;n&&(o=o.replace(/anticon/g,n)),r&&(o=`@layer ${r} { +${o} +}`),i.useEffect(()=>{const s=e.current,a=x$(s);C$(o,"@ant-design-icons",{prepend:!r,csp:t,attachTo:a})},[])},ko={primaryColor:"#333",secondaryColor:"#E6E6E6",calculated:!1};function A$({primaryColor:e,secondaryColor:t}){ko.primaryColor=e,ko.secondaryColor=t||th(e),ko.calculated=!!t}function z$(){return{...ko}}const bo=e=>{const{icon:t,className:n,onClick:r,style:o,primaryColor:s,secondaryColor:a,...l}=e,c=i.useRef(null);let u=ko;if(s&&(u={primaryColor:s,secondaryColor:a||th(s)}),O$(c),N$(Af(t),`icon should be icon definiton, but got ${t}`),!Af(t))return null;let d=t;return d&&typeof d.icon=="function"&&(d={...d,icon:d.icon(u.primaryColor,u.secondaryColor)}),Ol(d.icon,`svg-${d.name}`,{className:n,onClick:r,style:o,"data-icon":d.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true",...l,ref:c})};bo.displayName="IconReact";bo.getTwoToneColors=z$;bo.setTwoToneColors=A$;function rh(e){const[t,n]=nh(e);return bo.setTwoToneColors({primaryColor:t,secondaryColor:n})}function B$(){const e=bo.getTwoToneColors();return e.calculated?[e.primaryColor,e.secondaryColor]:e.primaryColor}function Al(){return Al=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{className:n,icon:r,spin:o,rotate:s,tabIndex:a,onClick:l,twoToneColor:c,...u}=e,{prefixCls:d="anticon",rootClassName:f}=i.useContext(Hi),m=z(f,d,{[`${d}-${r.name}`]:!!r.name,[`${d}-spin`]:!!o||r.name==="loading"},n);let p=a;p===void 0&&l&&(p=-1);const g=s?{msTransform:`rotate(${s}deg)`,transform:`rotate(${s}deg)`}:void 0,[h,b]=nh(c);return i.createElement("span",Al({role:"img","aria-label":r.name},u,{ref:t,tabIndex:p,onClick:l,className:m}),i.createElement(bo,{icon:r,primaryColor:h,secondaryColor:b,style:g}))});Ye.getTwoToneColor=B$;Ye.setTwoToneColor=rh;function zl(){return zl=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,zl({},e,{ref:t,icon:l$})),qu=i.forwardRef(L$);var H$={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm127.98 274.82h-.04l-.08.06L512 466.75 384.14 338.88c-.04-.05-.06-.06-.08-.06a.12.12 0 00-.07 0c-.03 0-.05.01-.09.05l-45.02 45.02a.2.2 0 00-.05.09.12.12 0 000 .07v.02a.27.27 0 00.06.06L466.75 512 338.88 639.86c-.05.04-.06.06-.06.08a.12.12 0 000 .07c0 .03.01.05.05.09l45.02 45.02a.2.2 0 00.09.05.12.12 0 00.07 0c.02 0 .04-.01.08-.05L512 557.25l127.86 127.87c.04.04.06.05.08.05a.12.12 0 00.07 0c.03 0 .05-.01.09-.05l45.02-45.02a.2.2 0 00.05-.09.12.12 0 000-.07v-.02a.27.27 0 00-.05-.06L557.25 512l127.87-127.86c.04-.04.05-.06.05-.08a.12.12 0 000-.07c0-.03-.01-.05-.05-.09l-45.02-45.02a.2.2 0 00-.09-.05.12.12 0 00-.07 0z"}}]},name:"close-circle",theme:"filled"};function Bl(){return Bl=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Bl({},e,{ref:t,icon:H$})),is=i.forwardRef(D$);var F$={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M799.86 166.31c.02 0 .04.02.08.06l57.69 57.7c.04.03.05.05.06.08a.12.12 0 010 .06c0 .03-.02.05-.06.09L569.93 512l287.7 287.7c.04.04.05.06.06.09a.12.12 0 010 .07c0 .02-.02.04-.06.08l-57.7 57.69c-.03.04-.05.05-.07.06a.12.12 0 01-.07 0c-.03 0-.05-.02-.09-.06L512 569.93l-287.7 287.7c-.04.04-.06.05-.09.06a.12.12 0 01-.07 0c-.02 0-.04-.02-.08-.06l-57.69-57.7c-.04-.03-.05-.05-.06-.07a.12.12 0 010-.07c0-.03.02-.05.06-.09L454.07 512l-287.7-287.7c-.04-.04-.05-.06-.06-.09a.12.12 0 010-.07c0-.02.02-.04.06-.08l57.7-57.69c.03-.04.05-.05.07-.06a.12.12 0 01.07 0c.03 0 .05.02.09.06L512 454.07l287.7-287.7c.04-.04.06-.05.09-.06a.12.12 0 01.07 0z"}}]},name:"close",theme:"outlined"};function Ll(){return Ll=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Ll({},e,{ref:t,icon:F$})),Br=i.forwardRef(_$);var k$={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm-32 232c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V296zm32 440a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"exclamation-circle",theme:"filled"};function Hl(){return Hl=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Hl({},e,{ref:t,icon:k$})),as=i.forwardRef(V$);var W$={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm32 664c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V456c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272zm-32-344a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"info-circle",theme:"filled"};function Dl(){return Dl=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Dl({},e,{ref:t,icon:W$})),Gu=i.forwardRef(j$),oh=i.createContext({});function q$({children:e,...t}){return i.createElement(oh.Provider,{value:t},e)}function G$(e){const[,t]=i.useReducer(s=>s+1,0),n=i.useRef(e),r=We(()=>n.current),o=We(s=>{n.current=typeof s=="function"?s(n.current):s,t()});return[r,o]}const Ln="none",Bs="appear",Ls="enter",Hs="leave",Bf="none",Sn="prepare",to="start",no="active",Xu="end",sh="prepared";function Lf(e,t){const n={};return n[e.toLowerCase()]=t.toLowerCase(),n[`Webkit${e}`]=`webkit${t}`,n[`Moz${e}`]=`moz${t}`,n[`ms${e}`]=`MS${t}`,n[`O${e}`]=`o${t.toLowerCase()}`,n}function X$(e,t){const n={animationend:Lf("Animation","AnimationEnd"),transitionend:Lf("Transition","TransitionEnd")};return e&&("AnimationEvent"in t||delete n.animationend.animation,"TransitionEvent"in t||delete n.transitionend.transition),n}const U$=X$(Ot(),typeof window<"u"?window:{});let ih={};Ot()&&({style:ih}=document.createElement("div"));const Ds={};function ah(e){if(Ds[e])return Ds[e];const t=U$[e];if(t){const n=Object.keys(t),r=n.length;for(let o=0;or[1].toUpperCase());return e[n]}return`${e}-${t}`}const Y$=e=>{const t=i.useRef();function n(o){o&&(o.removeEventListener(Df,e),o.removeEventListener(Hf,e))}function r(o){t.current&&t.current!==o&&n(t.current),o&&o!==t.current&&(o.addEventListener(Df,e),o.addEventListener(Hf,e),t.current=o)}return i.useEffect(()=>()=>{n(t.current),t.current=null},[]),[r,n]},uh=Ot()?i.useLayoutEffect:i.useEffect,Q$=()=>{const e=i.useRef(null);function t(){Ke.cancel(e.current)}function n(r,o=2){t();const s=Ke(()=>{o<=1?r({isCanceled:()=>s!==e.current}):n(r,o-1)});e.current=s}return i.useEffect(()=>()=>{t()},[]),[n,t]},Z$=[Sn,to,no,Xu],J$=[Sn,sh],dh=!1,eC=!0;function fh(e){return e===no||e===Xu}const tC=(e,t,n)=>{const[r,o]=si(Bf),[s,a]=Q$();function l(){o(Sn,!0)}const c=t?J$:Z$;return uh(()=>{if(r!==Bf&&r!==Xu){const u=c.indexOf(r),d=c[u+1],f=n(r);f===dh?o(d,!0):d&&s(m=>{function p(){m.isCanceled()||o(d,!0)}f===!0?p():Promise.resolve(f).then(p)})}},[e,r]),i.useEffect(()=>()=>{a()},[]),[l,r]};function nC(e,t,n,{motionEnter:r=!0,motionAppear:o=!0,motionLeave:s=!0,motionDeadline:a,motionLeaveImmediately:l,onAppearPrepare:c,onEnterPrepare:u,onLeavePrepare:d,onAppearStart:f,onEnterStart:m,onLeaveStart:p,onAppearActive:g,onEnterActive:h,onLeaveActive:b,onAppearEnd:$,onEnterEnd:y,onLeaveEnd:v,onVisibleChanged:C}){const[S,x]=si(),[w,I]=G$(Ln),[E,R]=si(null),P=w(),M=i.useRef(!1),O=i.useRef(null);function A(){return n()}const T=i.useRef(!1);function F(){I(Ln),R(null,!0)}const H=We(V=>{const G=w();if(G===Ln)return;const te=A();if(V&&!V.deadline&&V.target!==te)return;const ee=T.current;let ne;G===Bs&&ee?ne=$==null?void 0:$(te,V):G===Ls&&ee?ne=y==null?void 0:y(te,V):G===Hs&&ee&&(ne=v==null?void 0:v(te,V)),ee&&ne!==!1&&F()}),[L]=Y$(H),B=V=>{switch(V){case Bs:return{[Sn]:c,[to]:f,[no]:g};case Ls:return{[Sn]:u,[to]:m,[no]:h};case Hs:return{[Sn]:d,[to]:p,[no]:b};default:return{}}},D=i.useMemo(()=>B(P),[P]),[k,W]=tC(P,!e,V=>{var G;if(V===Sn){const te=D[Sn];return te?te(A()):dh}return W in D&&R(((G=D[W])==null?void 0:G.call(D,A(),null))||null),W===no&&P!==Ln&&(L(A()),a>0&&(clearTimeout(O.current),O.current=setTimeout(()=>{H({deadline:!0})},a))),W===sh&&F(),eC}),_=fh(W);T.current=_;const X=i.useRef(null);uh(()=>{if(M.current&&X.current===t)return;x(t);const V=M.current;M.current=!0;let G;!V&&t&&o&&(G=Bs),V&&t&&r&&(G=Ls),(V&&!t&&s||!V&&l&&!t&&s)&&(G=Hs);const te=B(G);G&&(e||te[Sn])?(I(G),k()):I(Ln),X.current=t},[t]),i.useEffect(()=>{(P===Bs&&!o||P===Ls&&!r||P===Hs&&!s)&&I(Ln)},[o,r,s]),i.useEffect(()=>()=>{M.current=!1,clearTimeout(O.current)},[]);const U=i.useRef(!1);i.useEffect(()=>{S&&(U.current=!0),S!==void 0&&P===Ln&&((U.current||S)&&(C==null||C(S)),U.current=!0)},[S,P]);let j=E;return D[Sn]&&W===to&&(j={transition:"none",...j}),[w,W,j,S??t]}function rC(e){let t=e;typeof e=="object"&&({transitionSupport:t}=e);function n(o,s){return!!(o.motionName&&t&&s!==!1)}const r=i.forwardRef((o,s)=>{const{visible:a=!0,removeOnLeave:l=!0,forceRender:c,children:u,motionName:d,leavedClassName:f,eventProps:m}=o,{motion:p}=i.useContext(oh),g=n(o,p),h=i.useRef();function b(){return co(h.current)}const[$,y,v,C]=nC(g,a,b,o),S=$(),x=i.useRef(C);C&&(x.current=!0);const w=i.useMemo(()=>{const R={};return Object.defineProperties(R,{nativeElement:{enumerable:!0,get:b},inMotion:{enumerable:!0,get:()=>()=>$()!==Ln},enableMotion:{enumerable:!0,get:()=>()=>g}}),R},[]);i.useImperativeHandle(s,()=>w,[]);let I;const E={...m,visible:a};if(!u)I=null;else if(S===Ln)C?I=u({...E},h):!l&&x.current&&f?I=u({...E,className:f},h):c||!l&&!f?I=u({...E,style:{display:"none"}},h):I=null;else{let R;y===Sn?R="prepare":fh(y)?R="active":y===to&&(R="start");const P=Ff(d,`${S}-${R}`);I=u({...E,className:z(Ff(d,S),{[P]:P&&R,[d]:typeof d=="string"}),style:v},h)}return i.isValidElement(I)&&dr(I)&&(Gn(I)||(I=i.cloneElement(I,{ref:h}))),I});return r.displayName="CSSMotion",r}const un=rC(K$),Fl="add",_l="keep",kl="remove",Ca="removed";function oC(e){let t;return e&&typeof e=="object"&&"key"in e?t=e:t={key:e},{...t,key:String(t.key)}}function Vl(e=[]){return e.map(oC)}function sC(e=[],t=[]){let n=[],r=0;const o=t.length,s=Vl(e),a=Vl(t);s.forEach(u=>{let d=!1;for(let f=r;f({...p,status:Fl}))),r=f),n.push({...m,status:_l}),r+=1,d=!0;break}}d||n.push({...u,status:kl})}),r({...u,status:Fl}))));const l={};return n.forEach(({key:u})=>{l[u]=(l[u]||0)+1}),Object.keys(l).filter(u=>l[u]>1).forEach(u=>{n=n.filter(({key:d,status:f})=>d!==u||f!==kl),n.forEach(d=>{d.key===u&&(d.status=_l)})}),n}function Wl(){return Wl=Object.assign?Object.assign.bind():function(e){for(var t=1;t{this.setState(a=>({keyEntities:a.keyEntities.map(c=>c.key!==s?c:{...c,status:Ca})}),()=>{const{keyEntities:a}=this.state;a.filter(({status:c})=>c!==Ca).length===0&&this.props.onAllRemoved&&this.props.onAllRemoved()})})}static getDerivedStateFromProps({keys:s},{keyEntities:a}){const l=Vl(s);return{keyEntities:sC(a,l).filter(u=>{const d=a.find(({key:f})=>u.key===f);return!(d&&d.status===Ca&&u.status===kl)})}}render(){const{keyEntities:s}=this.state,{component:a,children:l,onVisibleChanged:c,onAllRemoved:u,...d}=this.props,f=a||i.Fragment,m={};return iC.forEach(p=>{m[p]=d[p],delete d[p]}),delete d.keys,i.createElement(f,d,s.map(({status:p,...g},h)=>{const b=p===Fl||p===_l;return i.createElement(t,Wl({},m,{key:g.key,visible:b,eventProps:g,onVisibleChanged:$=>{c==null||c($,{key:g.key}),$||this.removeKey(g.key)}}),($,y)=>l({...$,index:h},y))}))}}return le(n,"defaultProps",{component:"div"}),n}const lC=aC(),cC=`accept acceptCharset accessKey action allowFullScreen allowTransparency + alt async autoComplete autoFocus autoPlay capture cellPadding cellSpacing challenge + charSet checked classID className colSpan cols content contentEditable contextMenu + controls coords crossOrigin data dateTime default defer dir disabled download draggable + encType form formAction formEncType formMethod formNoValidate formTarget frameBorder + headers height hidden high href hrefLang htmlFor httpEquiv icon id inputMode integrity + is keyParams keyType kind label lang list loop low manifest marginHeight marginWidth max maxLength media + mediaGroup method min minLength multiple muted name noValidate nonce open + optimum pattern placeholder poster preload radioGroup readOnly rel required + reversed role rowSpan rows sandbox scope scoped scrolling seamless selected + shape size sizes span spellCheck src srcDoc srcLang srcSet start step style + summary tabIndex target title type useMap value width wmode wrap`,uC=`onCopy onCut onPaste onCompositionEnd onCompositionStart onCompositionUpdate onKeyDown + onKeyPress onKeyUp onFocus onBlur onChange onInput onSubmit onClick onContextMenu onDoubleClick + onDrag onDragEnd onDragEnter onDragExit onDragLeave onDragOver onDragStart onDrop onMouseDown + onMouseEnter onMouseLeave onMouseMove onMouseOut onMouseOver onMouseUp onSelect onTouchCancel + onTouchEnd onTouchMove onTouchStart onScroll onWheel onAbort onCanPlay onCanPlayThrough + onDurationChange onEmptied onEncrypted onEnded onError onLoadedData onLoadedMetadata + onLoadStart onPause onPlay onPlaying onProgress onRateChange onSeeked onSeeking onStalled onSuspend onTimeUpdate onVolumeChange onWaiting onLoad onError`,dC=`${cC} ${uC}`.split(/[\s\n]+/),fC="aria-",mC="data-";function _f(e,t){return e.indexOf(t)===0}function cn(e,t=!1){let n;t===!1?n={aria:!0,data:!0,attr:!0}:t===!0?n={aria:!0}:n={...t};const r={};return Object.keys(e).forEach(o=>{(n.aria&&(o==="role"||_f(o,fC))||n.data&&_f(o,mC)||n.attr&&dC.includes(o))&&(r[o]=e[o])}),r}const pC={items_per_page:"/ page",jump_to:"Go to",jump_to_confirm:"confirm",page:"Page",prev_page:"Previous Page",next_page:"Next Page",prev_5:"Previous 5 Pages",next_5:"Next 5 Pages",prev_3:"Previous 3 Pages",next_3:"Next 3 Pages",page_size:"Page Size"};var gC={yearFormat:"YYYY",dayFormat:"D",cellMeridiemFormat:"A",monthBeforeYear:!0};function Jo(e){"@babel/helpers - typeof";return Jo=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Jo(e)}function kf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),n.push.apply(n,r)}return n}function Vf(e){for(var t=1;tZs.reduce((e,t)=>({...e,...t}),jn.Modal);function $C(e){if(e){const t={...e};return Zs.push(t),Qs=jf(),()=>{Zs=Zs.filter(n=>n!==t),Qs=jf()}}Qs={...jn.Modal}}function gh(){return Qs}const Uu=i.createContext(void 0),dn=(e,t)=>{const n=i.useContext(Uu),r=i.useMemo(()=>{const s=t||jn[e],a=(n==null?void 0:n[e])??{};return{...typeof s=="function"?s():s,...a||{}}},[e,t,n]),o=i.useMemo(()=>{const s=n==null?void 0:n.locale;return n!=null&&n.exist&&!s?jn.locale:s},[n]);return[r,o]},CC="internalMark",SC=e=>{const{locale:t={},children:n,_ANT_MARK__:r}=e;i.useEffect(()=>$C(t==null?void 0:t.Modal),[t]);const o=i.useMemo(()=>({...t,exist:!0}),[t]);return i.createElement(Uu.Provider,{value:o},n)};function qf(...e){const t={};return e.forEach(n=>{n&&Object.keys(n).forEach(r=>{n[r]!==void 0&&(t[r]=n[r])})}),t}const vn=e=>e!=null,ci=e=>{if(!e)return;const{closable:t,closeIcon:n}=e;return{closable:t,closeIcon:n}},hh={},Gf=(e,t)=>{if(!e&&(e===!1||t===!1||t===null))return!1;if(e===void 0&&t===void 0)return null;let n={closeIcon:typeof t!="boolean"&&t!==null?t:void 0};return e&&typeof e=="object"&&(n={...n,...e}),n},xC=(e,t,n)=>e===!1?!1:e?qf(n,t,e):t===!1?!1:t?qf(n,t):n.closable?n:!1,wC=(e,t,n)=>{const{closeIconRender:r}=t,{closeIcon:o,...s}=e;let a=o;const l=cn(s,!0);return vn(a)&&(r&&(a=r(a)),a=N.isValidElement(a)?N.cloneElement(a,{"aria-label":n,...a.props,...l}):N.createElement("span",{"aria-label":n,...l},a)),[a,l]},bh=(e,t,n=hh,r="Close")=>{const o=Gf(e==null?void 0:e.closable,e==null?void 0:e.closeIcon),s=Gf(t==null?void 0:t.closable,t==null?void 0:t.closeIcon),a={closeIcon:N.createElement(Br,null),...n},l=xC(o,s,a),c=typeof l!="boolean"?!!(l!=null&&l.disabled):!1;if(l===!1)return[!1,null,c,{}];const[u,d]=wC(l,a,r);return[!0,u,c,d]},EC=(e,t,n=hh)=>{const[r]=dn("global",jn.global);return N.useMemo(()=>bh(e,t,{closeIcon:N.createElement(Br,null),...n},r.close),[e,t,n,r.close])},IC=()=>N.useReducer(e=>e+1,0),jl=(e,t)=>{let n={};return e&&typeof e=="object"&&(n=e),typeof e=="boolean"&&(n={enabled:e}),n.closable===void 0&&t!==void 0&&(n.closable=t),n},PC=(e,t,n,r)=>i.useMemo(()=>{const o=jl(e,r),s=jl(t),a={blur:!1,...s,...o,closable:o.closable??r??s.closable??!0},l=a.blur?`${n}-mask-blur`:void 0;return[a.enabled!==!1,{mask:l},!!a.closable]},[e,t,n,r]),Fi=(e,...t)=>{const n=e||{};return t.filter(Boolean).reduce((r,o)=>(Object.keys(o||{}).forEach(s=>{const a=n[s],l=o[s];if(a&&typeof a=="object")if(l&&typeof l=="object")r[s]=Fi(a,r[s],l);else{const{_default:c}=a;c&&(r[s]=r[s]||{},r[s][c]=z(r[s][c],l))}else r[s]=z(r[s],l)}),r),{})},RC=(e,...t)=>i.useMemo(()=>Fi.apply(void 0,[e].concat(t)),[e].concat(t)),Ku=(...e)=>e.filter(Boolean).reduce((t,n={})=>(Object.keys(n).forEach(r=>{t[r]={...t[r],...n[r]}}),t),{}),MC=(...e)=>i.useMemo(()=>Ku.apply(void 0,e),[].concat(e)),ql=(e,t)=>{const n={...e};return Object.keys(t).forEach(r=>{if(r!=="_default"){const o=t[r],s=n[r]||{};n[r]=o?ql(s,o):s}}),n},rr=(e,t)=>typeof e=="function"?e(t):e,pt=(e,t,n,r)=>{const o=e.map(c=>c?rr(c,n):void 0),s=t.map(c=>c?rr(c,n):void 0),a=RC.apply(void 0,[r].concat(xt(o))),l=MC.apply(void 0,xt(s));return i.useMemo(()=>r?[ql(a,r),ql(l,r)]:[a,l],[a,l,r])},Xf=e=>e==="horizontal"||e==="vertical",vo=(e,t,n)=>i.useMemo(()=>{const r=Xf(e);let o;return r?o=e:typeof t=="boolean"?o=t?"vertical":"horizontal":o=Xf(n)?n:"horizontal",[o,o==="vertical"]},[n,e,t]),NC=()=>{const[e,t]=i.useState([]),n=i.useCallback(r=>(t(o=>[].concat(xt(o),[r])),()=>{t(o=>o.filter(s=>s!==r))}),[]);return[e,n]},_i=N.createContext(void 0),Jn=100,TC=10,Yu=Jn*TC,vh={Modal:Jn,Drawer:Jn,Popover:Jn,Popconfirm:Jn,Tooltip:Jn,Tour:Jn,FloatButton:Jn},OC={SelectLike:50,Dropdown:50,DatePicker:50,Menu:50,ImagePreview:1},AC=e=>e in vh,ls=(e,t)=>{const[,n]=jt(),r=N.useContext(_i),o=AC(e);let s;if(t!==void 0)s=[t,t];else{let a=r??0;o?a+=(r?0:n.zIndexPopupBase)+vh[e]:a+=OC[e],s=[r===void 0?t:a,a]}return s};function Gl(e){return vn(e)&&e===e.window}const yh=e=>{var n;if(typeof window>"u")return 0;let t=0;return Gl(e)?t=e.pageYOffset:e instanceof Document?t=e.documentElement.scrollTop:(e instanceof HTMLElement||e)&&(t=e.scrollTop),e&&!Gl(e)&&typeof t!="number"&&(t=(n=(e.ownerDocument??e).documentElement)==null?void 0:n.scrollTop),t};function zC(e,t,n,r){const o=n-t;return e/=r/2,e<1?o/2*e*e*e+t:o/2*((e-=2)*e*e+2)+t}function BC(e,t={}){const{getContainer:n=()=>window,callback:r,duration:o=450}=t,s=n(),a=yh(s),l=Date.now();let c;const u=()=>{const f=Date.now()-l,m=zC(f>o?o:f,a,e,o);Gl(s)?s.scrollTo(window.pageXOffset,m):s instanceof Document||s.constructor.name==="HTMLDocument"?s.documentElement.scrollTop=m:s.scrollTop=m,f{Ke.cancel(c)}}const _t=e=>`${e}-css-var`,LC=i.createContext(void 0),$h=i.createContext(null);let HC=!1;function DC(e){return HC}const Uf=[];function FC(e,t){const[n]=i.useState(()=>Ot()?document.createElement("div"):null),r=i.useRef(!1),o=i.useContext($h),[s,a]=i.useState(Uf),l=o||(r.current?void 0:d=>{a(f=>[d,...f])});function c(){n.parentElement||document.body.appendChild(n),r.current=!0}function u(){var d;(d=n.parentElement)==null||d.removeChild(n),r.current=!1}return nt(()=>(e?o?o(c):c():u(),u),[e]),nt(()=>{s.length&&(s.forEach(d=>d()),a(Uf))},[s]),[n,l]}function _C(e){const t=`rc-scrollbar-measure-${Math.random().toString(36).substring(7)}`,n=document.createElement("div");n.id=t;const r=n.style;r.position="absolute",r.left="0",r.top="0",r.width="100px",r.height="100px",r.overflow="scroll";let o,s;if(e){const c=getComputedStyle(e);r.scrollbarColor=c.scrollbarColor,r.scrollbarWidth=c.scrollbarWidth;const u=getComputedStyle(e,"::-webkit-scrollbar"),d=parseInt(u.width,10),f=parseInt(u.height,10);try{const m=d?`width: ${u.width};`:"",p=f?`height: ${u.height};`:"";sr(` +#${t}::-webkit-scrollbar { +${m} +${p} +}`,t)}catch(m){console.error(m),o=d,s=f}}document.body.appendChild(n);const a=e&&o&&!isNaN(o)?o:n.offsetWidth-n.clientWidth,l=e&&s&&!isNaN(s)?s:n.offsetHeight-n.clientHeight;return document.body.removeChild(n),Or(t),{width:a,height:l}}function Ch(e){return typeof document>"u"||!e||!(e instanceof Element)?{width:0,height:0}:_C(e)}function kC(){return document.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth}const VC=`rc-util-locker-${Date.now()}`;let Kf=0;function WC(e){const t=!!e,[n]=i.useState(()=>(Kf+=1,`${VC}_${Kf}`));nt(()=>{if(t){const r=Ch(document.body).width,o=kC();sr(` +html body { + overflow-y: hidden; + ${o?`width: calc(100% - ${r}px);`:""} +}`,n)}else Or(n);return()=>{Or(n)}},[t,n])}function jC(){return{...fy}.useId}let Yf=0;const Qf=jC(),Xn=Qf?function(t){const n=Qf();return t||n}:function(t){const[n,r]=i.useState("ssr-id");return i.useEffect(()=>{const o=Yf;Yf+=1,r(`rc_unique_${o}`)},[]),t||n};let Cr=[];const qC=200;let Sh=0;const xh=e=>{if(e.key==="Escape"&&!e.isComposing){if(Date.now()-Sh=0;r-=1)Cr[r].onEsc({top:r===n-1,event:e})}},wh=()=>{Sh=Date.now()};function GC(){window.addEventListener("keydown",xh),window.addEventListener("compositionend",wh)}function XC(){Cr.length===0&&(window.removeEventListener("keydown",xh),window.removeEventListener("compositionend",wh))}function UC(e,t){const n=Xn(),r=We(t),o=()=>{Cr.find(a=>a.id===n)||Cr.push({id:n,onEsc:r})},s=()=>{Cr=Cr.filter(a=>a.id!==n)};i.useMemo(()=>{e?o():e||s()},[e]),i.useEffect(()=>{if(e)return o(),GC(),()=>{s(),XC()}},[e])}const Zf=e=>e===!1?!1:!Ot()||!e?null:typeof e=="string"?document.querySelector(e):typeof e=="function"?e():e,Qu=i.forwardRef((e,t)=>{const{open:n,autoLock:r,getContainer:o,debug:s,autoDestroy:a=!0,children:l,onEsc:c}=e,[u,d]=i.useState(n),f=u||n;i.useEffect(()=>{(a||n)&&d(n)},[n,a]);const[m,p]=i.useState(()=>Zf(o));i.useEffect(()=>{const S=Zf(o);p(()=>S??null)});const[g,h]=FC(f&&!m),b=m??g;WC(r&&n&&Ot()&&(b===g||b===document.body)),UC(n,c);let $=null;l&&dr(l)&&t&&($=Gn(l));const y=qn($,t);if(!f||!Ot()||m===void 0)return null;const v=b===!1||DC();let C=l;return t&&(C=i.cloneElement(l,{ref:y})),i.createElement($h.Provider,{value:h},v?C:Vn.createPortal(C,b))});function Eh(e){var t;return(t=e==null?void 0:e.getRootNode)==null?void 0:t.call(e)}function KC(e){return Eh(e)instanceof ShadowRoot}function Xl(e){return KC(e)?Eh(e):null}function YC(e){const{prefixCls:t,align:n,arrow:r,arrowPos:o}=e,{className:s,content:a,style:l}=r||{},{x:c=0,y:u=0}=o,d=i.useRef(null);if(!n||!n.points)return null;const f={position:"absolute"};if(n.autoArrow!==!1){const m=n.points[0],p=n.points[1],g=m[0],h=m[1],b=p[0],$=p[1];g===b||!["t","b"].includes(g)?f.top=u:g==="t"?f.top=0:f.bottom=0,h===$||!["l","r"].includes(h)?f.left=c:h==="l"?f.left=0:f.right=0}return i.createElement("div",{ref:d,className:z(`${t}-arrow`,s),style:{...f,...l}},a)}function Ul(){return Ul=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement("div",{style:{zIndex:r},className:z(`${t}-mask`,a&&`${t}-mobile-mask`,l)})):null}const ZC=i.memo(({children:e})=>e,(e,t)=>t.cache);function Ih(e,t,n,r,o,s,a,l){var d;const c="auto",u=e?{}:{left:"-1000vw",top:"-1000vh",right:c,bottom:c};if(!e&&(t||!n)){const{points:f}=r,m=r.dynamicInset||((d=r._experimental)==null?void 0:d.dynamicInset),p=m&&f[0][1]==="r",g=m&&f[0][0]==="b";p?(u.right=o,u.left=c):(u.left=a,u.right=c),g?(u.bottom=s,u.top=c):(u.top=l,u.bottom=c)}return u}function Kl(){return Kl=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{onEsc:n,popup:r,className:o,prefixCls:s,style:a,target:l,onVisibleChanged:c,open:u,keepDom:d,fresh:f,onClick:m,mask:p,arrow:g,arrowPos:h,align:b,motion:$,maskMotion:y,mobile:v,forceRender:C,getPopupContainer:S,autoDestroy:x,portal:w,children:I,zIndex:E,onMouseEnter:R,onMouseLeave:P,onPointerEnter:M,onPointerDownCapture:O,ready:A,offsetX:T,offsetY:F,offsetR:H,offsetB:L,onAlign:B,onPrepare:D,onResize:k,stretch:W,targetWidth:_,targetHeight:X}=e,U=typeof r=="function"?r():r,j=u||d,V=!!v,[G,te,ee]=i.useMemo(()=>v?[v.mask,v.maskMotion,v.motion]:[p,y,$],[v,p,y,$]),ne=(S==null?void 0:S.length)>0,[Y,se]=i.useState(!S||!ne);nt(()=>{!Y&&ne&&l&&se(!0)},[Y,ne,l]);const ue=We((Z,J)=>{k==null||k(Z,J),B()}),q=Ih(V,A,u,b,H,L,T,F);if(!Y)return null;const oe={};return W&&(W.includes("height")&&X?oe.height=X:W.includes("minHeight")&&X&&(oe.minHeight=X),W.includes("width")&&_?oe.width=_:W.includes("minWidth")&&_&&(oe.minWidth=_)),u||(oe.pointerEvents="none"),i.createElement(w,{open:C||j,getContainer:S&&(()=>S(l)),autoDestroy:x,onEsc:n},i.createElement(QC,{prefixCls:s,open:u,zIndex:E,mask:G,motion:te,mobile:V}),i.createElement(Fn,{onResize:ue,disabled:!u},Z=>i.createElement(un,Kl({motionAppear:!0,motionEnter:!0,motionLeave:!0,removeOnLeave:!1,forceRender:C,leavedClassName:`${s}-hidden`},ee,{onAppearPrepare:D,onEnterPrepare:D,visible:u,onVisibleChanged:J=>{var ae;(ae=$==null?void 0:$.onVisibleChanged)==null||ae.call($,J),c(J)}}),({className:J,style:ae},we)=>{const de=z(s,J,o,{[`${s}-mobile`]:V});return i.createElement("div",{ref:Ft(Z,t,we),className:de,style:{"--arrow-x":`${h.x||0}px`,"--arrow-y":`${h.y||0}px`,...q,...oe,...ae,boxSizing:"border-box",zIndex:E,...a},onMouseEnter:R,onMouseLeave:P,onPointerEnter:M,onClick:m,onPointerDownCapture:O},g&&i.createElement(YC,{prefixCls:s,arrow:g,arrowPos:h,align:b}),i.createElement(ZC,{cache:!u&&!f},U))})),I)}),ui=i.createContext(null),Rh=i.createContext(null);function Jf(e){return e?Array.isArray(e)?e:[e]:[]}function JC(e,t,n){return i.useMemo(()=>{const r=Jf(t??e),o=Jf(n??e),s=new Set(r),a=new Set(o);return s.has("hover")&&!s.has("click")&&s.add("touch"),a.has("hover")&&!a.has("click")&&a.add("touch"),[s,a]},[e,t,n])}const Zu=e=>{if(!e)return!1;if(e instanceof Element){if(e.offsetParent)return!0;if(e.getBBox){const{width:t,height:n}=e.getBBox();if(t||n)return!0}if(e.getBoundingClientRect){const{width:t,height:n}=e.getBoundingClientRect();if(t||n)return!0}}return!1};function eS(e=[],t=[],n){const r=(o,s)=>o[s]||"";return n?r(e,0)===r(t,0):r(e,0)===r(t,0)&&r(e,1)===r(t,1)}function Mh(e,t,n,r){var a;const{points:o}=n,s=Object.keys(e);for(let l=0;lr.includes(l))&&t.push(n),n=n.parentElement}return t}function es(e,t=1){return Number.isNaN(e)?t:e}function No(e){return es(parseFloat(e),0)}function em(e,t){const n={...e};return(t||[]).forEach(r=>{if(r instanceof HTMLBodyElement||r instanceof HTMLHtmlElement)return;const{overflow:o,overflowClipMargin:s,borderTopWidth:a,borderBottomWidth:l,borderLeftWidth:c,borderRightWidth:u}=cs(r).getComputedStyle(r),d=r.getBoundingClientRect(),{offsetHeight:f,clientHeight:m,offsetWidth:p,clientWidth:g}=r,h=No(a),b=No(l),$=No(c),y=No(u),v=es(Math.round(d.width/p*1e3)/1e3),C=es(Math.round(d.height/f*1e3)/1e3),S=(p-g-$-y)*v,x=(f-m-h-b)*C,w=h*C,I=b*C,E=$*v,R=y*v;let P=0,M=0;if(o==="clip"){const H=No(s);P=H*v,M=H*C}const O=d.x+E-P,A=d.y+w-M,T=O+d.width+2*P-E-R-S,F=A+d.height+2*M-w-I-x;n.left=Math.max(n.left,O),n.top=Math.max(n.top,A),n.right=Math.min(n.right,T),n.bottom=Math.min(n.bottom,F)}),n}function tm(e,t=0){const n=`${t}`,r=n.match(/^(.*)\%$/);return r?e*(parseFloat(r[1])/100):parseFloat(n)}function nm(e,t){const[n,r]=t||[];return[tm(e.width,n),tm(e.height,r)]}function rm(e=""){return[e[0],e[1]]}function Vr(e,t){const n=t[0],r=t[1];let o,s;return n==="t"?s=e.y:n==="b"?s=e.y+e.height:s=e.y+e.height/2,r==="l"?o=e.x:r==="r"?o=e.x+e.width:o=e.x+e.width/2,{x:o,y:s}}function Qn(e,t){const n={t:"b",b:"t",l:"r",r:"l"},r=[...e];return r[t]=n[e[t]]||"c",r}function om(e){return e.join("")}function Nh(e,t,n,r,o,s,a,l){const[c,u]=i.useState({ready:!1,offsetX:0,offsetY:0,offsetR:0,offsetB:0,arrowX:0,arrowY:0,scaleX:1,scaleY:1,align:o[r]||{}}),d=i.useRef(0),f=i.useMemo(()=>!t||l?[]:Yl(t),[t]),m=i.useRef({});e||(()=>{m.current={}})();const g=We(()=>{var $,y;if(t&&n&&e&&!l){let ke=function(Ue,Lt,zt=oe){const fr=T.x+Ue,mr=T.y+Lt,Ns=fr+U,Gd=mr+X,aa=Math.max(fr,zt.left),la=Math.max(mr,zt.top),ca=Math.min(Ns,zt.right),Le=Math.min(Gd,zt.bottom);return Math.max(0,(ca-aa)*(Le-la))},xe=function(){Q=T.y+$e,pe=Q+X,ie=T.x+re,he=ie+U};const v=t,C=v.ownerDocument,S=cs(v),{position:x}=S.getComputedStyle(v),w=v.style.left,I=v.style.top,E=v.style.right,R=v.style.bottom,P=v.style.overflow,M={...o[r],...s},O=C.createElement("div");($=v.parentElement)==null||$.appendChild(O),O.style.left=`${v.offsetLeft}px`,O.style.top=`${v.offsetTop}px`,O.style.position=x,O.style.height=`${v.offsetHeight}px`,O.style.width=`${v.offsetWidth}px`,v.style.left="0",v.style.top="0",v.style.right="auto",v.style.bottom="auto",v.style.overflow="hidden";let A;if(Array.isArray(n))A={x:n[0],y:n[1],width:0,height:0};else{const Ue=n.getBoundingClientRect();Ue.x=Ue.x??Ue.left,Ue.y=Ue.y??Ue.top,A={x:Ue.x,y:Ue.y,width:Ue.width,height:Ue.height}}const T=v.getBoundingClientRect(),{height:F,width:H}=S.getComputedStyle(v);T.x=T.x??T.left,T.y=T.y??T.top;const{clientWidth:L,clientHeight:B,scrollWidth:D,scrollHeight:k,scrollTop:W,scrollLeft:_}=C.documentElement,X=T.height,U=T.width,j=A.height,V=A.width,G={left:0,top:0,right:L,bottom:B},te={left:-_,top:-W,right:D-_,bottom:k-W};let{htmlRegion:ee}=M;const ne="visible",Y="visibleFirst";ee!=="scroll"&&ee!==Y&&(ee=ne);const se=ee===Y,ue=em(te,f),q=em(G,f),oe=ee===ne?q:ue,Z=se?q:oe;v.style.left="auto",v.style.top="auto",v.style.right="0",v.style.bottom="0";const J=v.getBoundingClientRect();v.style.left=w,v.style.top=I,v.style.right=E,v.style.bottom=R,v.style.overflow=P,(y=v.parentElement)==null||y.removeChild(O);const ae=es(Math.round(U/parseFloat(H)*1e3)/1e3),we=es(Math.round(X/parseFloat(F)*1e3)/1e3);if(ae===0||we===0||lo(n)&&!Zu(n))return;const{offset:de,targetOffset:ge}=M;let[be,me]=nm(T,de);const[Ne,Ae]=nm(A,ge);A.x-=Ne,A.y-=Ae;const[Ee,ze]=M.points||[],Re=rm(ze),ve=rm(Ee),fe=Vr(A,Re),Ce=Vr(T,ve),He={...M};let Ie=[ve,Re],re=fe.x-Ce.x+be,$e=fe.y-Ce.y+me;const De=ke(re,$e),ot=ke(re,$e,q),qe=Vr(A,["t","l"]),ft=Vr(T,["t","l"]),Qe=Vr(A,["b","r"]),st=Vr(T,["b","r"]),lt=M.overflow||{},{adjustX:Se,adjustY:Be,shiftX:Pe,shiftY:ye}=lt,ce=Ue=>typeof Ue=="boolean"?Ue:Ue>=0;let Q,pe,ie,he;xe();const Te=ce(Be),Fe=ve[0]===Re[0];if(Te&&ve[0]==="t"&&(pe>Z.bottom||m.current.bt)){let Ue=$e;Fe?Ue-=X-j:Ue=qe.y-st.y-me;const Lt=ke(re,Ue),zt=ke(re,Ue,q);Lt>De||Lt===De&&(!se||zt>=ot)?(m.current.bt=!0,$e=Ue,me=-me,Ie=[Qn(Ie[0],0),Qn(Ie[1],0)]):m.current.bt=!1}if(Te&&ve[0]==="b"&&(QDe||Lt===De&&(!se||zt>=ot)?(m.current.tb=!0,$e=Ue,me=-me,Ie=[Qn(Ie[0],0),Qn(Ie[1],0)]):m.current.tb=!1}const Je=ce(Se),tt=ve[1]===Re[1];if(Je&&ve[1]==="l"&&(he>Z.right||m.current.rl)){let Ue=re;tt?Ue-=U-V:Ue=qe.x-st.x-be;const Lt=ke(Ue,$e),zt=ke(Ue,$e,q);Lt>De||Lt===De&&(!se||zt>=ot)?(m.current.rl=!0,re=Ue,be=-be,Ie=[Qn(Ie[0],1),Qn(Ie[1],1)]):m.current.rl=!1}if(Je&&ve[1]==="r"&&(ieDe||Lt===De&&(!se||zt>=ot)?(m.current.lr=!0,re=Ue,be=-be,Ie=[Qn(Ie[0],1),Qn(Ie[1],1)]):m.current.lr=!1}He.points=[om(Ie[0]),om(Ie[1])],xe();const Ze=Pe===!0?0:Pe;typeof Ze=="number"&&(ieq.right&&(re-=he-q.right-be,A.x>q.right-Ze&&(re+=A.x-q.right+Ze)));const Mt=ye===!0?0:ye;typeof Mt=="number"&&(Qq.bottom&&($e-=pe-q.bottom-me,A.y>q.bottom-Mt&&($e+=A.y-q.bottom+Mt)));const qt=T.x+re,mt=qt+U,Ge=T.y+$e,Oe=Ge+X,_e=A.x,Xe=_e+V,it=A.y,ht=it+j,It=Math.max(qt,_e),$t=Math.min(mt,Xe),Xt=(It+$t)/2-qt,kt=Math.max(Ge,it),Dr=Math.min(Oe,ht),Eo=(kt+Dr)/2-Ge;a==null||a(t,He);let Io=J.right-T.x-(re+T.width),Po=J.bottom-T.y-($e+T.height);ae===1&&(re=Math.floor(re),Io=Math.floor(Io)),we===1&&($e=Math.floor($e),Po=Math.floor(Po));const ia={ready:!0,offsetX:re/ae,offsetY:$e/we,offsetR:Io/ae,offsetB:Po/we,arrowX:Xt/ae,arrowY:Eo/we,scaleX:ae,scaleY:we,align:He};u(ia)}}),h=()=>{d.current+=1;const $=d.current;Promise.resolve().then(()=>{d.current===$&&g()})},b=()=>{u($=>({...$,ready:!1}))};return nt(b,[r]),nt(()=>{e||b()},[e]),[c.ready,c.offsetX,c.offsetY,c.offsetR,c.offsetB,c.arrowX,c.arrowY,c.scaleX,c.scaleY,c.align,h]}function Th(){const e=i.useRef(null),t=()=>{e.current&&(clearTimeout(e.current),e.current=null)},n=(r,o)=>{t(),o===0?r():e.current=setTimeout(()=>{r()},o*1e3)};return i.useEffect(()=>()=>{t()},[]),n}function tS(e,t,n,r,o){nt(()=>{if(e&&t&&n){let f=function(){r(),o()};const s=t,a=n,l=Yl(s),c=Yl(a),u=cs(a),d=new Set([u,...l,...c]);return d.forEach(m=>{m.addEventListener("scroll",f,{passive:!0})}),u.addEventListener("resize",f,{passive:!0}),r(),()=>{d.forEach(m=>{m.removeEventListener("scroll",f),u.removeEventListener("resize",f)})}}},[e,t,n])}function nS(e,t,n,r,o,s,a,l){const c=i.useRef(e);c.current=e;const u=i.useRef(!1);i.useEffect(()=>{if(t&&r&&(!o||s)){const f=()=>{u.current=!1},m=h=>{var b,$;c.current&&!a((($=(b=h.composedPath)==null?void 0:b.call(h))==null?void 0:$[0])||h.target)&&!u.current&&l(!1)},p=cs(r);p.addEventListener("pointerdown",f,!0),p.addEventListener("mousedown",m,!0),p.addEventListener("contextmenu",m,!0);const g=Xl(n);return g&&(g.addEventListener("mousedown",m,!0),g.addEventListener("contextmenu",m,!0)),()=>{p.removeEventListener("pointerdown",f,!0),p.removeEventListener("mousedown",m,!0),p.removeEventListener("contextmenu",m,!0),g&&(g.removeEventListener("mousedown",m,!0),g.removeEventListener("contextmenu",m,!0))}}},[t,n,r,o,s]);function d(){u.current=!0}return d}function rS(){const[e,t]=N.useState(null),[n,r]=N.useState(!1),[o,s]=N.useState(!1),a=N.useRef(null),l=We(u=>{u===!1?(a.current=null,r(!1)):o&&n?a.current=u:(r(!0),t(u),a.current=null,n||s(!0))}),c=We(u=>{u?(s(!1),a.current&&(t(a.current),a.current=null)):(s(!1),a.current=null)});return[l,n,e,c]}function Ql(){return Ql=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:t,isMobile:n,ready:r,open:o,align:s,offsetR:a,offsetB:l,offsetX:c,offsetY:u,arrowPos:d,popupSize:f,motion:m,uniqueContainerClassName:p,uniqueContainerStyle:g}=e,h=`${t}-unique-container`,[b,$]=N.useState(!1),y=Ih(n,r,o,s,a,l,c,u),v=N.useRef(y);r&&(v.current=y);const C={};return f&&(C.width=f.width,C.height=f.height),N.createElement(un,Ql({motionAppear:!0,motionEnter:!0,motionLeave:!0,removeOnLeave:!1,leavedClassName:`${h}-hidden`},m,{visible:o,onVisibleChanged:S=>{$(S)}}),({className:S,style:x})=>{const w=z(h,S,p,{[`${h}-visible`]:b});return N.createElement("div",{className:w,style:{"--arrow-x":`${(d==null?void 0:d.x)||0}px`,"--arrow-y":`${(d==null?void 0:d.y)||0}px`,...v.current,...C,...x,...g}})})},sS=({children:e,postTriggerProps:t})=>{const[n,r,o,s]=rS(),a=i.useMemo(()=>!o||!t?o:t(o),[o,t]),[l,c]=i.useState(null),[u,d]=i.useState(null),f=i.useRef(null),m=We(L=>{f.current=L,lo(L)&&l!==L&&c(L)}),p=i.useRef(null),g=Th(),h=We((L,B)=>{p.current=B,g(()=>{n(L)},L.delay)}),b=L=>{g(()=>{var B;(B=p.current)!=null&&B.call(p)||n(!1)},L)},$=We(L=>{s(L)}),[y,v,C,S,x,w,I,,,E,R]=Nh(r,l,a==null?void 0:a.target,a==null?void 0:a.popupPlacement,(a==null?void 0:a.builtinPlacements)||{},a==null?void 0:a.popupAlign,void 0,!1),P=i.useMemo(()=>{var B;if(!a)return"";const L=Mh(a.builtinPlacements||{},a.prefixCls||"",E,!1);return z(L,(B=a.getPopupClassNameFromAlign)==null?void 0:B.call(a,E))},[E,a==null?void 0:a.getPopupClassNameFromAlign,a==null?void 0:a.builtinPlacements,a==null?void 0:a.prefixCls]),M=i.useMemo(()=>({show:h,hide:b}),[]);i.useEffect(()=>{R()},[a==null?void 0:a.target]);const O=We(()=>(R(),Promise.resolve())),A=i.useRef({}),T=i.useContext(ui),F=i.useMemo(()=>({registerSubPopup:(L,B)=>{A.current[L]=B,T==null||T.registerSubPopup(L,B)}}),[T]),H=a==null?void 0:a.prefixCls;return i.createElement(Rh.Provider,{value:M},e,a&&i.createElement(ui.Provider,{value:F},i.createElement(Ph,{ref:m,portal:Qu,onEsc:a.onEsc,prefixCls:H,popup:a.popup,className:z(a.popupClassName,P,`${H}-unique-controlled`),style:a.popupStyle,target:a.target,open:r,keepDom:!0,fresh:!0,autoDestroy:!1,onVisibleChanged:$,ready:y,offsetX:v,offsetY:C,offsetR:S,offsetB:x,onAlign:R,onPrepare:O,onResize:L=>d({width:L.offsetWidth,height:L.offsetHeight}),arrowPos:{x:w,y:I},align:E,zIndex:a.zIndex,mask:a.mask,arrow:a.arrow,motion:a.popupMotion,maskMotion:a.maskMotion,getPopupContainer:a.getPopupContainer},i.createElement(oS,{prefixCls:H,isMobile:!1,ready:y,open:r,align:E,offsetR:S,offsetB:x,offsetX:v,offsetY:C,arrowPos:{x:w,y:I},popupSize:u,motion:a.popupMotion,uniqueContainerClassName:z(a.uniqueContainerClassName,P),uniqueContainerStyle:a.uniqueContainerStyle}))))};function iS(e=Qu){return i.forwardRef((n,r)=>{const{prefixCls:o="rc-trigger-popup",children:s,action:a="hover",showAction:l,hideAction:c,popupVisible:u,defaultPopupVisible:d,onOpenChange:f,afterOpenChange:m,onPopupVisibleChange:p,afterPopupVisibleChange:g,mouseEnterDelay:h,mouseLeaveDelay:b=.1,focusDelay:$,blurDelay:y,mask:v,maskClosable:C=!0,getPopupContainer:S,forceRender:x,autoDestroy:w,popup:I,popupClassName:E,uniqueContainerClassName:R,uniqueContainerStyle:P,popupStyle:M,popupPlacement:O,builtinPlacements:A={},popupAlign:T,zIndex:F,stretch:H,getPopupClassNameFromAlign:L,fresh:B,unique:D,alignPoint:k,onPopupClick:W,onPopupAlign:_,arrow:X,popupMotion:U,maskMotion:j,mobile:V,...G}=n,te=w||!1,ee=u===void 0,ne=!!V,Y=i.useRef({}),se=i.useContext(ui),ue=i.useMemo(()=>({registerSubPopup:(Le,ct)=>{Y.current[Le]=ct,se==null||se.registerSubPopup(Le,ct)}}),[se]),q=i.useContext(Rh),oe=Xn(),[Z,J]=i.useState(null),ae=i.useRef(null),we=We(Le=>{ae.current=Le,lo(Le)&&Z!==Le&&J(Le),se==null||se.registerSubPopup(oe,Le)}),[de,ge]=i.useState(null),be=i.useRef(null),me=We(Le=>{const ct=co(Le);lo(ct)&&de!==ct&&(ge(ct),be.current=ct)}),Ne={},Ae=We(Le=>{var Ht,Fr;const ct=de;return(ct==null?void 0:ct.contains(Le))||((Ht=Xl(ct))==null?void 0:Ht.host)===Le||Le===ct||(Z==null?void 0:Z.contains(Le))||((Fr=Xl(Z))==null?void 0:Fr.host)===Le||Le===Z||Object.values(Y.current).some(pr=>(pr==null?void 0:pr.contains(Le))||Le===pr)}),Ee=X?{...X!==!0?X:{}}:null,[ze,Re]=bt(d||!1,u),ve=ze||!1,fe=i.useMemo(()=>{const Le=typeof s=="function"?s({open:ve}):s;return i.Children.only(Le)},[s,ve]),Ce=(fe==null?void 0:fe.props)||{},He=We(()=>ve),Ie=We((Le=0)=>({popup:I,target:de,delay:Le,prefixCls:o,popupClassName:E,uniqueContainerClassName:R,uniqueContainerStyle:P,popupStyle:M,popupPlacement:O,builtinPlacements:A,popupAlign:T,zIndex:F,mask:v,maskClosable:C,popupMotion:U,maskMotion:j,arrow:Ee,getPopupContainer:S,getPopupClassNameFromAlign:L,id:oe,onEsc:ot}));nt(()=>{q&&D&&de&&!ee&&!se&&(ve?q.show(Ie(h),He):q.hide(b))},[ve,de]);const re=i.useRef(ve);re.current=ve;const $e=We(Le=>{Vn.flushSync(()=>{ve!==Le&&(Re(Le),f==null||f(Le),p==null||p(Le))})}),ke=Th(),De=(Le,ct=0)=>{if(u!==void 0){ke(()=>{$e(Le)},ct);return}if(q&&D&&ee&&!se){Le?q.show(Ie(ct),He):q.hide(ct);return}ke(()=>{$e(Le)},ct)};function ot({top:Le}){Le&&De(!1)}const[qe,ft]=i.useState(!1);nt(Le=>{(!Le||ve)&&ft(!0)},[ve]);const[Qe,st]=i.useState(null),[lt,Se]=i.useState(null),Be=Le=>{Se([Le.clientX,Le.clientY])},[Pe,ye,ce,Q,pe,ie,he,xe,Te,Fe,Je]=Nh(ve,Z,k&<!==null?lt:de,O,A,T,_,ne),[tt,Ze]=JC(a,l,c),Mt=tt.has("click"),qt=Ze.has("click")||Ze.has("contextMenu"),mt=We(()=>{qe||Je()});tS(ve,de,Z,mt,()=>{re.current&&k&&qt&&De(!1)}),nt(()=>{mt()},[lt,O]),nt(()=>{ve&&!(A!=null&&A[O])&&mt()},[JSON.stringify(T)]);const Oe=i.useMemo(()=>{const Le=Mh(A,o,Fe,k);return z(Le,L==null?void 0:L(Fe))},[Fe,L,A,o,k]);i.useImperativeHandle(r,()=>({nativeElement:be.current,popupElement:ae.current,forceAlign:mt}));const[_e,Xe]=i.useState(0),[it,ht]=i.useState(0),It=()=>{if(H&&de){const Le=de.getBoundingClientRect();Xe(Le.width),ht(Le.height)}},$t=()=>{It(),mt()},Gt=Le=>{ft(!1),Je(),m==null||m(Le),g==null||g(Le)},Xt=()=>new Promise(Le=>{It(),st(()=>Le)});nt(()=>{Qe&&(Je(),Qe(),st(null))},[Qe]);function kt(Le,ct,Ht,Fr,pr){Ne[Le]=(Xd,...cy)=>{var Ud;(!pr||!pr())&&(Fr==null||Fr(Xd),De(ct,Ht)),(Ud=Ce[Le])==null||Ud.call(Ce,Xd,...cy)}}const Dr=tt.has("touch"),Ut=Ze.has("touch"),Eo=i.useRef(!1);(Dr||Ut)&&(Ne.onTouchStart=(...Le)=>{var ct;Eo.current=!0,re.current&&Ut?De(!1):!re.current&&Dr&&De(!0),(ct=Ce.onTouchStart)==null||ct.call(Ce,...Le)}),(Mt||qt)&&(Ne.onClick=(Le,...ct)=>{var Ht;re.current&&qt?De(!1):!re.current&&Mt&&(Be(Le),De(!0)),(Ht=Ce.onClick)==null||Ht.call(Ce,Le,...ct),Eo.current=!1});const Io=nS(ve,qt||Ut,de,Z,v,C,Ae,De),Po=tt.has("hover"),ia=Ze.has("hover");let Ue,Lt;const zt=()=>Eo.current;if(Po){const Le=ct=>{Be(ct)};kt("onMouseEnter",!0,h,Le,zt),kt("onPointerEnter",!0,h,Le,zt),Ue=ct=>{(ve||qe)&&(Z!=null&&Z.contains(ct.target))&&De(!0,h)},k&&(Ne.onMouseMove=ct=>{var Ht;(Ht=Ce.onMouseMove)==null||Ht.call(Ce,ct)})}ia&&(kt("onMouseLeave",!1,b,void 0,zt),kt("onPointerLeave",!1,b,void 0,zt),Lt=()=>{De(!1,b)}),tt.has("focus")&&kt("onFocus",!0,$),Ze.has("focus")&&kt("onBlur",!1,y),tt.has("contextMenu")&&(Ne.onContextMenu=(Le,...ct)=>{var Ht;re.current&&Ze.has("contextMenu")?De(!1):(Be(Le),De(!0)),Le.preventDefault(),(Ht=Ce.onContextMenu)==null||Ht.call(Ce,Le,...ct)});const fr=i.useRef(!1);fr.current||(fr.current=x||ve||qe);const mr={...Ce,...Ne},Ns={};["onContextMenu","onClick","onMouseDown","onTouchStart","onMouseEnter","onMouseLeave","onFocus","onBlur"].forEach(Le=>{G[Le]&&(Ns[Le]=(...ct)=>{var Ht;(Ht=mr[Le])==null||Ht.call(mr,...ct),G[Le](...ct)})});const aa={x:ie,y:he};Cg(ve,de,$t);const la=qn(me,Gn(fe)),ca=i.cloneElement(fe,{...mr,...Ns,ref:la});return i.createElement(i.Fragment,null,ca,fr.current&&(!q||!D)&&i.createElement(ui.Provider,{value:ue},i.createElement(Ph,{portal:e,ref:we,prefixCls:o,popup:I,className:z(E,!ne&&Oe),style:M,target:de,onMouseEnter:Ue,onMouseLeave:Lt,onPointerEnter:Ue,zIndex:F,open:ve,keepDom:qe,fresh:B,onClick:W,onPointerDownCapture:Io,mask:v,motion:U,maskMotion:j,onVisibleChanged:Gt,onPrepare:Xt,forceRender:x,autoDestroy:te,getPopupContainer:S,onEsc:ot,align:Fe,arrow:Ee,arrowPos:aa,ready:Pe,offsetX:ye,offsetY:ce,offsetR:Q,offsetB:pe,onAlign:mt,stretch:H,targetWidth:_e/xe,targetHeight:it/Te,mobile:V})))})}const ki=iS(Qu);function Oh(e){return e&&N.isValidElement(e)&&e.type===N.Fragment}const aS=(e,t,n)=>N.isValidElement(e)?N.cloneElement(e,typeof n=="function"?n(e.props||{}):n):t;function Wt(e,t){return aS(e,e,t)}const lS=({children:e})=>{const{getPrefixCls:t}=N.useContext(je),n=t();return N.isValidElement(e)?N.createElement(un,{visible:!0,motionName:`${n}-fade`,motionAppear:!0,motionEnter:!0,motionLeave:!1,removeOnLeave:!1},({style:r,className:o})=>Wt(e,s=>({className:z(s.className,o),style:{...s.style,...r}}))):e},Fs=[null,null];function cS(e){if(Fs[0]!==e){const t={};Object.keys(e).forEach(n=>{t[n]={...e[n],dynamicInset:!1}}),Fs[0]=e,Fs[1]=t}return Fs[1]}const Ah=({children:e})=>{const t=n=>{const{id:r,builtinPlacements:o,popup:s}=n,a=typeof s=="function"?s():s,l=cS(o);return{...n,getPopupContainer:null,arrow:!1,popup:N.createElement(lS,{key:r},a),builtinPlacements:l}};return N.createElement(sS,{postTriggerProps:t},e)},yn=i.createContext(!1),zh=({children:e,disabled:t})=>{const n=i.useContext(yn);return i.createElement(yn.Provider,{value:t??n},e)},uo=i.createContext(void 0),uS=({children:e,size:t})=>{const n=i.useContext(uo);return i.createElement(uo.Provider,{value:t||n},e)};function dS(){const e=i.useContext(yn),t=i.useContext(uo);return{componentDisabled:e,componentSize:t}}function fS(e,t,n){const r=e||{},o=r.inherit===!1||!t?{...ai,hashed:(t==null?void 0:t.hashed)??ai.hashed,cssVar:t==null?void 0:t.cssVar}:t,s=i.useId();return po(()=>{var u;if(!e)return t;const a={...o.components};Object.keys(e.components||{}).forEach(d=>{a[d]={...a[d],...e.components[d]}});const l=`css-var-${s.replace(/:/g,"")}`,c={prefix:n==null?void 0:n.prefixCls,...o.cssVar,...r.cssVar,key:((u=r.cssVar)==null?void 0:u.key)||l};return{...o,...r,token:{...o.token,...r.token},components:a,cssVar:c}},[r,o],(a,l)=>a.some((c,u)=>{const d=l[u];return!ar(c,d,!0)}))}const sm=i.createContext(!0);function mS(e){const t=i.useContext(sm),{children:n}=e,[,r]=jt(),{motion:o}=r,s=i.useRef(!1);return s.current||(s.current=t!==o),s.current?i.createElement(sm.Provider,{value:o},i.createElement(q$,{motion:o},n)):n}const pS=()=>null,gS=({iconPrefixCls:e,csp:t})=>(n$(e,t),null),hS=["getTargetContainer","getPopupContainer","renderEmpty","input","pagination","form","select","button"];let di,Bh,Lh,Hh;function Sa(){return di||Yo}function bS(){return Bh||zi}const vS=e=>{const{prefixCls:t,iconPrefixCls:n,theme:r,holderRender:o}=e;t!==void 0&&(di=t),n!==void 0&&(Bh=n),"holderRender"in e&&(Hh=o),r&&(Lh=r)},Dh=()=>({getPrefixCls:(e,t)=>t||(e?`${Sa()}-${e}`:Sa()),getIconPrefixCls:bS,getRootPrefixCls:()=>di||Sa(),getTheme:()=>Lh,holderRender:Hh}),yS=e=>{const{children:t,csp:n,autoInsertSpaceInButton:r,alert:o,affix:s,anchor:a,app:l,form:c,locale:u,componentSize:d,direction:f,space:m,splitter:p,virtual:g,dropdownMatchSelectWidth:h,popupMatchSelectWidth:b,popupOverflow:$,legacyLocale:y,parentContext:v,iconPrefixCls:C,theme:S,componentDisabled:x,segmented:w,statistic:I,spin:E,calendar:R,carousel:P,cascader:M,collapse:O,typography:A,checkbox:T,descriptions:F,divider:H,drawer:L,skeleton:B,steps:D,image:k,layout:W,list:_,mentions:X,modal:U,progress:j,result:V,slider:G,breadcrumb:te,masonry:ee,menu:ne,pagination:Y,input:se,textArea:ue,otp:q,empty:oe,badge:Z,radio:J,rate:ae,ribbon:we,switch:de,transfer:ge,avatar:be,message:me,tag:Ne,table:Ae,card:Ee,cardMeta:ze,tabs:Re,timeline:ve,timePicker:fe,upload:Ce,notification:He,tree:Ie,colorPicker:re,datePicker:$e,rangePicker:ke,flex:De,wave:ot,dropdown:qe,warning:ft,tour:Qe,tooltip:st,popover:lt,popconfirm:Se,qrcode:Be,floatButton:Pe,floatButtonGroup:ye,variant:ce,inputNumber:Q,treeSelect:pe,watermark:ie}=e,he=i.useCallback((_e,Xe)=>{const{prefixCls:it}=e;if(Xe)return Xe;const ht=it||v.getPrefixCls("");return _e?`${ht}-${_e}`:ht},[v.getPrefixCls,e.prefixCls]),xe=C||v.iconPrefixCls||zi,Te=n||v.csp,Fe=fS(S,v.theme,{prefixCls:he("")}),Je={csp:Te,autoInsertSpaceInButton:r,alert:o,affix:s,anchor:a,app:l,locale:u||y,direction:f,space:m,splitter:p,virtual:g,popupMatchSelectWidth:b??h,popupOverflow:$,getPrefixCls:he,iconPrefixCls:xe,theme:Fe,segmented:w,statistic:I,spin:E,calendar:R,carousel:P,cascader:M,collapse:O,typography:A,checkbox:T,descriptions:F,divider:H,drawer:L,skeleton:B,steps:D,image:k,input:se,textArea:ue,otp:q,layout:W,list:_,mentions:X,modal:U,progress:j,result:V,slider:G,breadcrumb:te,masonry:ee,menu:ne,pagination:Y,empty:oe,badge:Z,radio:J,rate:ae,ribbon:we,switch:de,transfer:ge,avatar:be,message:me,tag:Ne,table:Ae,card:Ee,cardMeta:ze,tabs:Re,timeline:ve,timePicker:fe,upload:Ce,notification:He,tree:Ie,colorPicker:re,datePicker:$e,rangePicker:ke,flex:De,wave:ot,dropdown:qe,warning:ft,tour:Qe,tooltip:st,popover:lt,popconfirm:Se,qrcode:Be,floatButton:Pe,floatButtonGroup:ye,variant:ce,inputNumber:Q,treeSelect:pe,watermark:ie},tt={...v};Object.keys(Je).forEach(_e=>{Je[_e]!==void 0&&(tt[_e]=Je[_e])}),hS.forEach(_e=>{const Xe=e[_e];Xe&&(tt[_e]=Xe)}),typeof r<"u"&&(tt.button={autoInsertSpace:r,...tt.button});const Ze=po(()=>tt,tt,(_e,Xe)=>{const it=Object.keys(_e),ht=Object.keys(Xe);return it.length!==ht.length||it.some(It=>_e[It]!==Xe[It])}),{layer:Mt}=i.useContext(Ar),qt=i.useMemo(()=>({prefixCls:xe,csp:Te,layer:Mt?"antd":void 0}),[xe,Te,Mt]);let mt=i.createElement(i.Fragment,null,i.createElement(gS,{iconPrefixCls:xe,csp:Te}),i.createElement(pS,{dropdownMatchSelectWidth:h}),t);const Ge=i.useMemo(()=>{var _e,Xe,it,ht;return Jr(((_e=jn.Form)==null?void 0:_e.defaultValidateMessages)||{},((it=(Xe=Ze.locale)==null?void 0:Xe.Form)==null?void 0:it.defaultValidateMessages)||{},((ht=Ze.form)==null?void 0:ht.validateMessages)||{},(c==null?void 0:c.validateMessages)||{})},[Ze,c==null?void 0:c.validateMessages]);Object.keys(Ge).length>0&&(mt=i.createElement(LC.Provider,{value:Ge},mt)),u&&(mt=i.createElement(SC,{locale:u,_ANT_MARK__:CC},mt)),mt=i.createElement(Hi.Provider,{value:qt},mt),d&&(mt=i.createElement(uS,{size:d},mt)),mt=i.createElement(mS,null,mt),st!=null&&st.unique&&(mt=i.createElement(Ah,null,mt));const Oe=i.useMemo(()=>{const{algorithm:_e,token:Xe,components:it,cssVar:ht,...It}=Fe||{},$t=_e&&(!Array.isArray(_e)||_e.length>0)?ml(_e):Wg,Gt={};Object.entries(it||{}).forEach(([kt,Dr])=>{const Ut={...Dr};"algorithm"in Ut&&(Ut.algorithm===!0?Ut.theme=$t:(Array.isArray(Ut.algorithm)||typeof Ut.algorithm=="function")&&(Ut.theme=ml(Ut.algorithm)),delete Ut.algorithm),Gt[kt]=Ut});const Xt={...Zo,...Xe};return{...It,theme:$t,token:Xt,components:Gt,override:{override:Xt,...Gt},cssVar:ht}},[Fe]);return S&&(mt=i.createElement(Vu.Provider,{value:Oe},mt)),Ze.warning&&(mt=i.createElement(Dy.Provider,{value:Ze.warning},mt)),x!==void 0&&(mt=i.createElement(zh,{disabled:x},mt)),i.createElement(je.Provider,{value:Ze},mt)},An=e=>{const t=i.useContext(je),n=i.useContext(Uu);return i.createElement(yS,{parentContext:t,legacyLocale:n,...e})};An.ConfigContext=je;An.SizeContext=uo;An.config=vS;An.useConfig=dS;Object.defineProperty(An,"SizeContext",{get:()=>uo});const Fh=i.createContext(void 0),_h=e=>{const{href:t,title:n,prefixCls:r,children:o,className:s,target:a,replace:l}=e,c=i.useContext(Fh),{registerLink:u,unregisterLink:d,scrollTo:f,onClick:m,activeLink:p,direction:g,classNames:h,styles:b}=c||{};i.useEffect(()=>(u==null||u(t),()=>{d==null||d(t)}),[t]);const $=w=>{if(m==null||m(w,{title:n,href:t}),f==null||f(t),w.defaultPrevented)return;if(t.startsWith("http://")||t.startsWith("https://")){l&&(w.preventDefault(),window.location.replace(t));return}w.preventDefault();const E=l?"replaceState":"pushState";window.history[E](null,"",t)},{getPrefixCls:y}=i.useContext(je),v=y("anchor",r),C=p===t,S=z(`${v}-link`,s,h==null?void 0:h.item,{[`${v}-link-active`]:C}),x=z(`${v}-link-title`,h==null?void 0:h.itemTitle,{[`${v}-link-title-active`]:C});return i.createElement("div",{className:S,style:b==null?void 0:b.item},i.createElement("a",{className:x,style:b==null?void 0:b.itemTitle,href:t,title:typeof n=="string"?n:"",target:a,onClick:$},n),g!=="horizontal"?o:null)},$S=e=>{const{componentCls:t,holderOffsetBlock:n,motionDurationSlow:r,lineWidthBold:o,colorPrimary:s,lineType:a,colorSplit:l,calc:c}=e;return{[`${t}-wrapper`]:{marginBlockStart:c(n).mul(-1).equal(),paddingBlockStart:n,[t]:{...Ct(e),position:"relative",paddingInlineStart:o,[`${t}-link`]:{paddingBlock:e.linkPaddingBlock,paddingInline:`${K(e.linkPaddingInlineStart)} 0`,"&-title":{...Wn,position:"relative",display:"block",marginBlockEnd:e.anchorTitleBlock,color:e.colorText,transition:`all ${e.motionDurationSlow}`,"&:only-child":{marginBlockEnd:0}},[`&-active > ${t}-link-title`]:{color:e.colorPrimary},[`${t}-link`]:{paddingBlock:e.anchorPaddingBlockSecondary}}},[`&:not(${t}-wrapper-horizontal)`]:{[t]:{"&::before":{position:"absolute",insetInlineStart:0,top:0,height:"100%",borderInlineStart:`${K(o)} ${a} ${l}`,content:'" "'},[`${t}-ink`]:{position:"absolute",insetInlineStart:0,display:"none",transform:"translateY(-50%)",transition:`top ${r} ease-in-out`,width:o,backgroundColor:s,[`&${t}-ink-visible`]:{display:"inline-block"}}}},[`${t}-fixed ${t}-ink ${t}-ink`]:{display:"none"}}}},CS=e=>{const{componentCls:t,motionDurationSlow:n,lineWidthBold:r,colorPrimary:o}=e;return{[`${t}-wrapper-horizontal`]:{position:"relative","&::before":{position:"absolute",left:{_skip_check_:!0,value:0},right:{_skip_check_:!0,value:0},bottom:0,borderBottom:`${K(e.lineWidth)} ${e.lineType} ${e.colorSplit}`,content:'" "'},[t]:{overflowX:"scroll",position:"relative",display:"flex",scrollbarWidth:"none","&::-webkit-scrollbar":{display:"none"},[`${t}-link:first-of-type`]:{paddingInline:0},[`${t}-ink`]:{position:"absolute",bottom:0,transition:["left","width"].map(s=>`${s} ${n} ease-in-out`).join(", "),height:r,backgroundColor:o}}}}},SS=e=>({linkPaddingBlock:e.paddingXXS,linkPaddingInlineStart:e.padding}),xS=at("Anchor",e=>{const{fontSize:t,fontSizeLG:n,paddingXXS:r,calc:o}=e,s=rt(e,{holderOffsetBlock:r,anchorPaddingBlockSecondary:o(r).div(2).equal(),anchorTitleBlock:o(t).div(14).mul(3).equal(),anchorBallSize:o(n).div(2).equal()});return[$S(s),CS(s)]},SS);function wS(){return window}function im(e,t){if(!e.getClientRects().length)return 0;const n=e.getBoundingClientRect();return n.width||n.height?t===window?n.top-e.ownerDocument.documentElement.clientTop:n.top-t.getBoundingClientRect().top:n.top}const am=/#([\S ]+)$/,ES=e=>{const{rootClassName:t,prefixCls:n,className:r,style:o,offsetTop:s,affix:a=!0,showInkInFixed:l=!1,children:c,items:u,direction:d="vertical",bounds:f,targetOffset:m,onClick:p,onChange:g,getContainer:h,getCurrentAnchor:b,replace:$,classNames:y,styles:v}=e,[C,S]=i.useState([]),[x,w]=i.useState(null),I=i.useRef(x),E=i.useRef(null),R=i.useRef(null),P=i.useRef(!1),M=i.useRef(null),{direction:O,getPrefixCls:A,className:T,style:F,classNames:H,styles:L}=dt("anchor"),{getTargetContainer:B}=i.useContext(je),D=A("anchor",n),k=_t(D),[W,_]=xS(D,k),X=h??B??wS,U=JSON.stringify(C),j=We(me=>{C.includes(me)||S(Ne=>[].concat(xt(Ne),[me]))}),V=We(me=>{C.includes(me)&&S(Ne=>Ne.filter(Ae=>Ae!==me))}),G=()=>{var Ne;const me=(Ne=E.current)==null?void 0:Ne.querySelector(`.${D}-link-title-active`);if(me&&R.current){const{style:Ae}=R.current,Ee=d==="horizontal";Ae.top=Ee?"":`${me.offsetTop+me.clientHeight/2}px`,Ae.height=Ee?"":`${me.clientHeight}px`,Ae.left=Ee?`${me.offsetLeft}px`:"",Ae.width=Ee?`${me.clientWidth}px`:"",Ee&&by(me,{scrollMode:"if-needed",block:"nearest"})}},te=(me,Ne=0,Ae=5)=>{const Ee=[],ze=X();return me.forEach(Re=>{const ve=am.exec(Re==null?void 0:Re.toString());if(!ve)return;const fe=document.getElementById(ve[1]);if(fe){const Ce=im(fe,ze);Ce<=Ne+Ae&&Ee.push({link:Re,top:Ce})}}),Ee.length?Ee.reduce((ve,fe)=>fe.top>ve.top?fe:ve).link:""},ee=We(me=>{if(I.current===me)return;const Ne=typeof b=="function"?b(me):me;w(Ne),I.current=Ne,g==null||g(me)}),ne=i.useCallback(()=>{if(P.current)return;const me=te(C,m!==void 0?m:s||0,f);ee(me)},[C,m,s,f]),Y=i.useCallback(me=>{var Ce;const Ne=I.current;ee(me);const Ae=am.exec(me);if(!Ae)return;const Ee=document.getElementById(Ae[1]);if(!Ee)return;if(P.current){if(Ne===me)return;(Ce=M.current)==null||Ce.call(M)}const ze=X(),Re=yh(ze),ve=im(Ee,ze);let fe=Re+ve;fe-=m!==void 0?m:s||0,P.current=!0,M.current=BC(fe,{getContainer:X,callback(){P.current=!1}})},[m,s]),se={...e,direction:d},[ue,q]=pt([H,y],[L,v],{props:se}),oe=z(W,_,k,t,`${D}-wrapper`,{[`${D}-wrapper-horizontal`]:d==="horizontal",[`${D}-rtl`]:O==="rtl"},r,T,ue.root),Z=z(D,{[`${D}-fixed`]:!a&&!l}),J=z(`${D}-ink`,ue.indicator,{[`${D}-ink-visible`]:x}),ae={maxHeight:s?`calc(100vh - ${s}px)`:"100vh",...q.root,...F,...o},we=me=>Array.isArray(me)?me.map(Ne=>i.createElement(_h,{replace:$,...Ne,key:Ne.key},d==="vertical"&&we(Ne.children))):null,de=i.createElement("div",{ref:E,className:oe,style:ae},i.createElement("div",{className:Z},i.createElement("span",{className:J,ref:R,style:q.indicator}),"items"in e?we(u):c));i.useEffect(()=>{const me=X();return ne(),me==null||me.addEventListener("scroll",ne),()=>{me==null||me.removeEventListener("scroll",ne)}},[U]),i.useEffect(()=>{typeof b=="function"&&ee(b(I.current||""))},[b]),i.useEffect(()=>{G()},[d,b,U,x]);const ge=i.useMemo(()=>({registerLink:j,unregisterLink:V,scrollTo:Y,activeLink:x,onClick:p,direction:d,classNames:ue,styles:q}),[x,p,Y,d,q,ue]),be=a&&typeof a=="object"?a:void 0;return i.createElement(Fh.Provider,{value:ge},a?i.createElement(a$,{offsetTop:s,target:X,...be},de):de)},IS=ES;IS.Link=_h;const Me={BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,CAPS_LOCK:20,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46,N:78,P:80,META:91,WIN_KEY_RIGHT:92,CONTEXT_MENU:93,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,SEMICOLON:186,EQUALS:187,WIN_KEY:224};function fi(){return fi=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:n,style:r,className:o,duration:s=4.5,showProgress:a,pauseOnHover:l=!0,eventKey:c,content:u,closable:d,props:f,onClick:m,onNoticeClose:p,times:g,hovering:h}=e,[b,$]=i.useState(!1),[y,v]=i.useState(0),[C,S]=i.useState(0),x=h||b,w=typeof s=="number"?s:0,I=w>0&&a,E=()=>{p(c)},R=T=>{(T.key==="Enter"||T.code==="Enter"||T.keyCode===Me.ENTER)&&E()};i.useEffect(()=>{if(!x&&w>0){const T=Date.now()-C,F=setTimeout(()=>{E()},w*1e3-C);return()=>{l&&clearTimeout(F),S(Date.now()-T)}}},[w,x,g]),i.useEffect(()=>{if(!x&&I&&(l||C===0)){const T=performance.now();let F;const H=()=>{cancelAnimationFrame(F),F=requestAnimationFrame(L=>{const B=L+C-T,D=Math.min(B/(w*1e3),1);v(D*100),D<1&&H()})};return H(),()=>{l&&cancelAnimationFrame(F)}}},[w,C,x,I,g]);const P=i.useMemo(()=>typeof d=="object"&&d!==null?d:{},[d]),M=cn(P,!0),O=100-(!y||y<0?0:y>100?100:y),A=`${n}-notice`;return i.createElement("div",fi({},f,{ref:t,className:z(A,o,{[`${A}-closable`]:d}),style:r,onMouseEnter:T=>{var F;$(!0),(F=f==null?void 0:f.onMouseEnter)==null||F.call(f,T)},onMouseLeave:T=>{var F;$(!1),(F=f==null?void 0:f.onMouseLeave)==null||F.call(f,T)},onClick:m}),i.createElement("div",{className:`${A}-content`},u),d&&i.createElement("button",fi({className:`${A}-close`,onKeyDown:R,"aria-label":"Close"},M,{onClick:T=>{T.preventDefault(),T.stopPropagation(),E()}}),P.closeIcon??"x"),I&&i.createElement("progress",{className:`${A}-progress`,max:"100",value:O},O+"%"))}),Vh=N.createContext({}),Wh=({children:e,classNames:t})=>N.createElement(Vh.Provider,{value:{classNames:t}},e),lm=8,cm=3,um=16,PS=e=>{const t={offset:lm,threshold:cm,gap:um};return e&&typeof e=="object"&&(t.offset=e.offset??lm,t.threshold=e.threshold??cm,t.gap=e.gap??um),[!!e,t]};function mi(){return mi=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{configList:t,placement:n,prefixCls:r,className:o,style:s,motion:a,onAllNoticeRemoved:l,onNoticeClose:c,stack:u}=e,{classNames:d}=i.useContext(Vh),f=i.useRef({}),[m,p]=i.useState(null),[g,h]=i.useState([]),b=t.map(w=>({config:w,key:String(w.key)})),[$,{offset:y,threshold:v,gap:C}]=PS(u),S=$&&(g.length>0||b.length<=v),x=typeof a=="function"?a(n):a;return i.useEffect(()=>{$&&g.length>1&&h(w=>w.filter(I=>b.some(({key:E})=>I===E)))},[g,b,$]),i.useEffect(()=>{var w,I;$&&f.current[(w=b[b.length-1])==null?void 0:w.key]&&p(f.current[(I=b[b.length-1])==null?void 0:I.key])},[b,$]),N.createElement(lC,mi({key:n,className:z(r,`${r}-${n}`,d==null?void 0:d.list,o,{[`${r}-stack`]:!!$,[`${r}-stack-expanded`]:S}),style:s,keys:b,motionAppear:!0},x,{onAllRemoved:()=>{l(n)}}),({config:w,className:I,style:E,index:R},P)=>{var W,_,X,U;const{key:M,times:O}=w,A=String(M),{className:T,style:F,classNames:H,styles:L,...B}=w,D=b.findIndex(j=>j.key===A),k={};if($){const j=b.length-1-(D>-1?D:R-1),V=n==="top"||n==="bottom"?"-50%":"0";if(j>0){k.height=S?(W=f.current[A])==null?void 0:W.offsetHeight:m==null?void 0:m.offsetHeight;let G=0;for(let ne=0;neh(j=>j.includes(A)?j:[...j,A]),onMouseLeave:()=>h(j=>j.filter(V=>V!==A))},N.createElement(kh,mi({},B,{ref:j=>{D>-1?f.current[A]=j:delete f.current[A]},prefixCls:r,classNames:H,styles:L,className:z(T,d==null?void 0:d.notice),style:F,times:O,key:M,eventKey:M,onNoticeClose:c,hovering:$&&g.length>0})))})},MS=i.forwardRef((e,t)=>{const{prefixCls:n="rc-notification",container:r,motion:o,maxCount:s,className:a,style:l,onAllRemoved:c,stack:u,renderNotifications:d}=e,[f,m]=i.useState([]),p=v=>{var I;const C=f.find(E=>E.key===v),S=C==null?void 0:C.closable,x=S&&typeof S=="object"?S:{},{onClose:w}=x;w==null||w(),(I=C==null?void 0:C.onClose)==null||I.call(C),m(E=>E.filter(R=>R.key!==v))};i.useImperativeHandle(t,()=>({open:v=>{m(C=>{var I;let S=[...C];const x=S.findIndex(E=>E.key===v.key),w={...v};return x>=0?(w.times=(((I=C[x])==null?void 0:I.times)||0)+1,S[x]=w):(w.times=0,S.push(w)),s>0&&S.length>s&&(S=S.slice(-s)),S})},close:v=>{p(v)},destroy:()=>{m([])}}));const[g,h]=i.useState({});i.useEffect(()=>{const v={};f.forEach(C=>{const{placement:S="topRight"}=C;S&&(v[S]=v[S]||[],v[S].push(C))}),Object.keys(g).forEach(C=>{v[C]=v[C]||[]}),h(v)},[f]);const b=v=>{h(C=>{const S={...C};return(S[v]||[]).length||delete S[v],S})},$=i.useRef(!1);if(i.useEffect(()=>{Object.keys(g).length>0?$.current=!0:$.current&&(c==null||c(),$.current=!1)},[g]),!r)return null;const y=Object.keys(g);return Vn.createPortal(i.createElement(i.Fragment,null,y.map(v=>{const C=g[v],S=i.createElement(RS,{key:v,configList:C,placement:v,prefixCls:n,className:a==null?void 0:a(v),style:l==null?void 0:l(v),motion:o,onNoticeClose:p,onAllNoticeRemoved:b,stack:u});return d?d(S,{prefixCls:n,key:v}):S})),r)}),NS=()=>document.body;let dm=0;function TS(...e){const t={};return e.forEach(n=>{n&&Object.keys(n).forEach(r=>{const o=n[r];o!==void 0&&(t[r]=o)})}),t}function jh(e={}){const{getContainer:t=NS,motion:n,prefixCls:r,maxCount:o,className:s,style:a,onAllRemoved:l,stack:c,renderNotifications:u,...d}=e,[f,m]=i.useState(),p=i.useRef(),g=i.createElement(MS,{container:f,ref:p,prefixCls:r,motion:n,maxCount:o,className:s,style:a,onAllRemoved:l,stack:c,renderNotifications:u}),[h,b]=i.useState([]),$=We(v=>{const C=TS(d,v);(C.key===null||C.key===void 0)&&(C.key=`rc-notification-${dm}`,dm+=1),b(S=>[...S,{type:"open",config:C}])}),y=i.useMemo(()=>({open:$,close:v=>{b(C=>[...C,{type:"close",key:v}])},destroy:()=>{b(v=>[...v,{type:"destroy"}])}}),[]);return i.useEffect(()=>{m(t())}),i.useEffect(()=>{if(p.current&&h.length){h.forEach(S=>{switch(S.type){case"open":p.current.open(S.config);break;case"close":p.current.close(S.key);break;case"destroy":p.current.destroy();break}});let v,C;b(S=>((v!==S||!C)&&(v=S,C=S.filter(x=>!h.includes(x))),C))}},[h]),[y,g]}var OS={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"}}]},name:"loading",theme:"outlined"};function Zl(){return Zl=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Zl({},e,{ref:t,icon:OS})),us=i.forwardRef(AS),zS=e=>{const{componentCls:t,iconCls:n,boxShadow:r,colorText:o,colorSuccess:s,colorError:a,colorWarning:l,colorInfo:c,fontSizeLG:u,motionEaseInOutCirc:d,motionDurationSlow:f,marginXS:m,paddingXS:p,borderRadiusLG:g,zIndexPopup:h,contentPadding:b,contentBg:$}=e,y=`${t}-notice`,v=new et("MessageMoveIn",{"0%":{padding:0,transform:"translateY(-100%)",opacity:0},"100%":{padding:p,transform:"translateY(0)",opacity:1}}),C=new et("MessageMoveOut",{"0%":{maxHeight:e.height,padding:p,opacity:1},"100%":{maxHeight:0,padding:0,opacity:0}}),S={padding:p,textAlign:"center",[`${t}-custom-content`]:{display:"flex",alignItems:"center"},[`${t}-custom-content > ${n}`]:{marginInlineEnd:m,fontSize:u},[`${y}-content`]:{display:"inline-block",padding:b,background:$,borderRadius:g,boxShadow:r,pointerEvents:"all"},[`${t}-success > ${n}`]:{color:s},[`${t}-error > ${n}`]:{color:a},[`${t}-warning > ${n}`]:{color:l},[`${t}-info > ${n}, + ${t}-loading > ${n}`]:{color:c}};return[{[t]:{...Ct(e),color:o,position:"fixed",top:m,width:"100%",pointerEvents:"none",zIndex:h,[`${t}-move-up`]:{animationFillMode:"forwards"},[` + ${t}-move-up-appear, + ${t}-move-up-enter + `]:{animationName:v,animationDuration:f,animationPlayState:"paused",animationTimingFunction:d},[` + ${t}-move-up-appear${t}-move-up-appear-active, + ${t}-move-up-enter${t}-move-up-enter-active + `]:{animationPlayState:"running"},[`${t}-move-up-leave`]:{animationName:C,animationDuration:f,animationPlayState:"paused",animationTimingFunction:d},[`${t}-move-up-leave${t}-move-up-leave-active`]:{animationPlayState:"running"},"&-rtl":{direction:"rtl",span:{direction:"rtl"}}}},{[t]:{[`${y}-wrapper`]:{...S}}},{[`${t}-notice-pure-panel`]:{...S,padding:0,textAlign:"start"}}]},BS=e=>({zIndexPopup:e.zIndexPopupBase+Yu+10,contentBg:e.colorBgElevated,contentPadding:`${(e.controlHeightLG-e.fontSize*e.lineHeight)/2}px ${e.paddingSM}px`}),qh=at("Message",e=>{const t=rt(e,{height:150});return zS(t)},BS),LS={info:i.createElement(Gu,null),success:i.createElement(qu,null),error:i.createElement(is,null),warning:i.createElement(as,null),loading:i.createElement(us,null)},Gh=e=>{const{prefixCls:t,type:n,icon:r,children:o,classNames:s,styles:a}=e,l=r||n&&LS[n],c=Wt(l,u=>{const d={...u==null?void 0:u.style,...a==null?void 0:a.icon};return{className:z(u.className,s==null?void 0:s.icon),style:d}});return i.createElement("div",{className:z(`${t}-custom-content`,`${t}-${n}`)},c,i.createElement("span",{className:s==null?void 0:s.content,style:a==null?void 0:a.content},o))},HS=e=>{const{prefixCls:t,className:n,style:r,type:o,icon:s,content:a,classNames:l,styles:c,...u}=e,{getPrefixCls:d,className:f,style:m,classNames:p,styles:g}=dt("message"),h=t||d("message"),b=_t(h),[$,y]=qh(h,b),[v,C]=pt([p,l],[g,c],{props:e});return i.createElement(kh,{...u,prefixCls:h,className:z(f,v.root,n,$,`${h}-notice-pure-panel`,y,b),style:{...C.root,...m,...r},eventKey:"pure",duration:null,content:i.createElement(Gh,{prefixCls:h,type:o,icon:s,classNames:v,styles:C},a)})};function DS(e,t){return{motionName:t??`${e}-move-up`}}function Ju(e){let t;const n=new Promise(o=>{t=e(()=>{o(!0)})}),r=()=>{t==null||t()};return r.then=(o,s)=>n.then(o,s),r.promise=n,r}const FS=8,_S=3,kS=({children:e,prefixCls:t})=>{const n=_t(t),[r,o]=qh(t,n);return i.createElement(Wh,{classNames:{list:z(r,o,n)}},e)},VS=(e,{prefixCls:t,key:n})=>i.createElement(kS,{prefixCls:t,key:n},e),WS=i.forwardRef((e,t)=>{const{top:n,prefixCls:r,getContainer:o,maxCount:s,duration:a=_S,rtl:l,transitionName:c,onAllRemoved:u,pauseOnHover:d=!0}=e,{getPrefixCls:f,direction:m,getPopupContainer:p}=dt("message"),{message:g}=i.useContext(je),h=r||f("message"),b=()=>({left:"50%",transform:"translateX(-50%)",top:n??FS}),$=()=>z({[`${h}-rtl`]:l??m==="rtl"}),y=()=>DS(h,c),[v,C]=pt([e==null?void 0:e.classNames,g==null?void 0:g.classNames],[e==null?void 0:e.styles,g==null?void 0:g.styles],{props:e}),[S,x]=jh({prefixCls:h,style:b,className:$,motion:y,closable:!1,duration:a,getContainer:()=>(o==null?void 0:o())||(p==null?void 0:p())||document.body,maxCount:s,onAllRemoved:u,renderNotifications:VS,pauseOnHover:d});return i.useImperativeHandle(t,()=>({...S,prefixCls:h,message:g,classNames:v,styles:C})),x});let fm=0;function Xh(e){const t=i.useRef(null);return[i.useMemo(()=>{const r=c=>{var u;(u=t.current)==null||u.close(c)},o=c=>{if(!t.current){const k=()=>{};return k.then=()=>{},k}const{open:u,prefixCls:d,message:f,classNames:m,styles:p}=t.current,g=(f==null?void 0:f.className)||{},h=(f==null?void 0:f.style)||{},b=(f==null?void 0:f.classNames)||{},$=(f==null?void 0:f.styles)||{},y=`${d}-notice`,{content:v,icon:C,type:S,key:x,className:w,style:I,onClose:E,classNames:R={},styles:P={},...M}=c;let O=x;vn(O)||(fm+=1,O=`antd-message-${fm}`);const A={...e,...c},T=rr(b,{props:A}),F=rr(R,{props:A}),H=rr($,{props:A}),L=rr(P,{props:A}),B=Fi(void 0,T,F,m),D=Ku(H,L,p);return Ju(k=>(u({...M,key:O,content:i.createElement(Gh,{prefixCls:d,type:S,icon:C,classNames:B,styles:D},v),placement:"top",className:z({[`${y}-${S}`]:S},w,g,B.root),style:{...D.root,...h,...I},onClose:()=>{E==null||E(),k()}}),()=>{r(O)}))},a={open:o,destroy:c=>{var u;c!==void 0?r(c):(u=t.current)==null||u.destroy()}};return["info","success","warning","error","loading"].forEach(c=>{const u=(d,f,m)=>{let p;d&&typeof d=="object"&&"content"in d?p=d:p={content:d};let g,h;typeof f=="function"?h=f:(g=f,h=m);const b={onClose:h,duration:g,...p,type:c};return o(b)};a[c]=u}),a},[]),i.createElement(WS,{key:"message-holder",...e,ref:t})]}function Uh(e){return Xh(e)}const pi="__rc_react_root__";function ed(e,t){const n=t[pi]||my(t);n.render(e),t[pi]=n}async function Kh(e){return Promise.resolve().then(()=>{var t;(t=e[pi])==null||t.unmount(),delete e[pi]})}const xa=()=>({height:0,opacity:0}),mm=e=>{const{scrollHeight:t}=e;return{height:t,opacity:1}},jS=e=>({height:e?e.offsetHeight:0}),wa=(e,t)=>(t==null?void 0:t.deadline)===!0||t.propertyName==="height",Yh=(e=Yo)=>({motionName:`${e}-motion-collapse`,onAppearStart:xa,onEnterStart:xa,onAppearActive:mm,onEnterActive:mm,onLeaveStart:jS,onLeaveActive:xa,onAppearEnd:wa,onEnterEnd:wa,onLeaveEnd:wa,motionDeadline:500}),lr=(e,t,n)=>n!==void 0?n:`${e}-${t}`,qS=e=>{const{componentCls:t,colorPrimary:n,motionDurationSlow:r,motionEaseInOut:o,motionEaseOutCirc:s,antCls:a}=e,[,l]=At(a,"wave");return{[t]:{position:"absolute",background:"transparent",pointerEvents:"none",boxSizing:"border-box",color:l("color",n),boxShadow:"0 0 0 0 currentcolor",opacity:.2,"&.wave-motion-appear":{transition:["box-shadow 0.4s","opacity 2s"].map(c=>`${c} ${s}`).join(","),"&-active":{boxShadow:"0 0 0 6px currentcolor",opacity:0},"&.wave-quick":{transition:["box-shadow","opacity"].map(c=>`${c} ${r} ${o}`).join(",")}}}}},GS=e$("Wave",qS),Qh=`${Yo}-wave-target`;function pm(e){return e&&typeof e=="string"&&e!=="#fff"&&e!=="#ffffff"&&e!=="rgb(255, 255, 255)"&&e!=="rgba(255, 255, 255, 1)"&&!/rgba\((?:\d*, ){3}0\)/.test(e)&&e!=="transparent"&&e!=="canvastext"}function XS(e,t=null){const n=getComputedStyle(e),{borderTopColor:r,borderColor:o,backgroundColor:s}=n;return t&&pm(n[t])?n[t]:[r,o,s].find(pm)??null}function Ea(e){return Number.isNaN(e)?0:e}const US=e=>{const{className:t,target:n,component:r,colorSource:o}=e,s=i.useRef(null),{getPrefixCls:a}=i.useContext(je),l=a(),[c]=At(l,"wave"),[u,d]=i.useState(null),[f,m]=i.useState([]),[p,g]=i.useState(0),[h,b]=i.useState(0),[$,y]=i.useState(0),[v,C]=i.useState(0),[S,x]=i.useState(!1),w={left:p,top:h,width:$,height:v,borderRadius:f.map(R=>`${R}px`).join(" ")};u&&(w[c("color")]=u);function I(){const R=getComputedStyle(n);d(XS(n,o));const P=R.position==="static",{borderLeftWidth:M,borderTopWidth:O}=R;g(P?n.offsetLeft:Ea(-Number.parseFloat(M))),b(P?n.offsetTop:Ea(-Number.parseFloat(O))),y(n.offsetWidth),C(n.offsetHeight);const{borderTopLeftRadius:A,borderTopRightRadius:T,borderBottomLeftRadius:F,borderBottomRightRadius:H}=R;m([A,T,H,F].map(L=>Ea(Number.parseFloat(L))))}if(i.useEffect(()=>{if(n){const R=Ke(()=>{I(),x(!0)});let P;return typeof ResizeObserver<"u"&&(P=new ResizeObserver(I),P.observe(n)),()=>{Ke.cancel(R),P==null||P.disconnect()}}},[n]),!S)return null;const E=(r==="Checkbox"||r==="Radio")&&(n==null?void 0:n.classList.contains(Qh));return i.createElement(un,{visible:!0,motionAppear:!0,motionName:"wave-motion",motionDeadline:5e3,onAppearEnd:(R,P)=>{var M;if(P.deadline||P.propertyName==="opacity"){const O=(M=s.current)==null?void 0:M.parentElement;Kh(O).then(()=>{O==null||O.remove()})}return!1}},({className:R},P)=>i.createElement("div",{ref:Ft(s,P),className:z(t,R,{"wave-quick":E}),style:w}))},KS=(e,t)=>{var o;const{component:n}=t;if(n==="Checkbox"&&!((o=e.querySelector("input"))!=null&&o.checked))return;const r=document.createElement("div");r.style.position="absolute",r.style.left="0px",r.style.top="0px",e==null||e.insertBefore(r,e==null?void 0:e.firstChild),ed(i.createElement(US,{...t,target:e}),r)},YS=(e,t,n,r)=>{const{wave:o}=i.useContext(je),[,s,a]=jt(),l=We(d=>{const f=e.current;if(o!=null&&o.disabled||!f)return;const m=f.querySelector(`.${Qh}`)||f,{showEffect:p}=o||{};(p||KS)(m,{className:t,token:s,component:n,event:d,hashId:a,colorSource:r})}),c=i.useRef(null);return i.useEffect(()=>()=>{Ke.cancel(c.current)},[]),d=>{Ke.cancel(c.current),c.current=Ke(()=>{l(d)})}},Zh=e=>{const{children:t,disabled:n,component:r,colorSource:o}=e,{getPrefixCls:s}=i.useContext(je),a=i.useRef(null),l=s("wave"),c=GS(l),u=YS(a,z(l,c),r,o);if(N.useEffect(()=>{const f=a.current;if(!f||f.nodeType!==window.Node.ELEMENT_NODE||n)return;const m=p=>{!Zu(p.target)||!f.getAttribute||f.getAttribute("disabled")||f.disabled||f.className.includes("disabled")&&!f.className.includes("disabled:")||f.getAttribute("aria-disabled")==="true"||f.className.includes("-leave")||u(p)};return f.addEventListener("click",m,!0),()=>{f.removeEventListener("click",m,!0)}},[n]),!N.isValidElement(t))return t??null;const d=dr(t)?Ft(Gn(t),a):a;return Wt(t,{ref:d})},Jt=e=>{const t=N.useContext(uo);return N.useMemo(()=>e?typeof e=="string"?e??t:typeof e=="function"?e(t):t:t,[e,t])},QS=e=>{const{componentCls:t}=e;return{[t]:{display:"inline-flex","&-block":{display:"flex",width:"100%"},"&-vertical":{flexDirection:"column"},"&-rtl":{direction:"rtl"}}}},ZS=at(["Space","Compact"],e=>[QS(e)],()=>({}),{resetStyle:!1}),Vi=i.createContext(null),Un=(e,t)=>{const n=i.useContext(Vi),r=i.useMemo(()=>{if(!n)return"";const{compactDirection:o,isFirstItem:s,isLastItem:a}=n,l=o==="vertical"?"-vertical-":"-";return z(`${e}-compact${l}item`,{[`${e}-compact${l}first-item`]:s,[`${e}-compact${l}last-item`]:a,[`${e}-compact${l}item-rtl`]:t==="rtl"})},[e,t,n]);return{compactSize:n==null?void 0:n.compactSize,compactDirection:n==null?void 0:n.compactDirection,compactItemClassnames:r}},JS=e=>{const{children:t}=e;return i.createElement(Vi.Provider,{value:null},t)},ex=e=>{const{children:t,...n}=e;return i.createElement(Vi.Provider,{value:i.useMemo(()=>n,[n])},t)},td=e=>{const{getPrefixCls:t,direction:n}=i.useContext(je),{size:r,direction:o,orientation:s,block:a,prefixCls:l,className:c,rootClassName:u,children:d,vertical:f,...m}=e,[p,g]=vo(s,f,o),h=Jt(x=>r??x),b=t("space-compact",l),[$]=ZS(b),y=z(b,$,{[`${b}-rtl`]:n==="rtl",[`${b}-block`]:a,[`${b}-vertical`]:g},c,u),v=i.useContext(Vi),C=Vt(d),S=i.useMemo(()=>C.map((x,w)=>{const I=(x==null?void 0:x.key)||`${b}-item-${w}`;return i.createElement(ex,{key:I,compactSize:h,compactDirection:p,isFirstItem:w===0&&(!v||(v==null?void 0:v.isFirstItem)),isLastItem:w===C.length-1&&(!v||(v==null?void 0:v.isLastItem))},x)}),[C,v,p,h,b]);return C.length===0?null:i.createElement("div",{className:y,...m},S)},Jh=i.createContext(void 0),tx=e=>{const{getPrefixCls:t,direction:n}=i.useContext(je),{prefixCls:r,size:o,className:s,...a}=e,l=t("btn-group",r),[,,c]=jt(),u=i.useMemo(()=>{switch(o){case"large":return"lg";case"small":return"sm";default:return""}},[o]),d=z(l,{[`${l}-${u}`]:u,[`${l}-rtl`]:n==="rtl"},s,c);return i.createElement(Jh.Provider,{value:o},i.createElement("div",{...a,className:d}))},gm=/^[\u4E00-\u9FA5]{2}$/,Jl=gm.test.bind(gm);function nd(e){return e==="danger"?{danger:!0}:{type:e}}function hm(e){return typeof e=="string"}function Ia(e){return e==="text"||e==="link"}function nx(e,t,n,r){if(!vn(e)||e==="")return;const o=t?" ":"";return typeof e!="string"&&typeof e!="number"&&hm(e.type)&&Jl(e.props.children)?Wt(e,s=>{const a=z(s.className,r)||void 0,l={...n,...s.style};return{...s,children:s.children.split("").join(o),className:a,style:l}}):hm(e)?N.createElement("span",{className:r,style:n},Jl(e)?e.split("").join(o):e):Oh(e)?N.createElement("span",{className:r,style:n},e):Wt(e,s=>({...s,className:z(s.className,r)||void 0,style:{...s.style,...n}}))}function rx(e,t,n,r){let o=!1;const s=[];return N.Children.forEach(e,a=>{const l=typeof a,c=l==="string"||l==="number";if(o&&c){const u=s.length-1,d=s[u];s[u]=`${d}${a}`}else s.push(a);o=c}),N.Children.map(s,a=>nx(a,t,n,r))}["default","primary","danger"].concat(xt(Tn));const e0=i.forwardRef((e,t)=>{const{className:n,style:r,children:o,prefixCls:s}=e,a=z(`${s}-icon`,n);return N.createElement("span",{ref:t,className:a,style:r},o)}),bm=i.forwardRef((e,t)=>{const{prefixCls:n,className:r,style:o,iconClassName:s}=e,a=z(`${n}-loading-icon`,r);return N.createElement(e0,{prefixCls:n,className:a,style:o,ref:t},N.createElement(us,{className:s}))}),Pa=()=>({width:0,opacity:0,transform:"scale(0)"}),Ra=e=>({width:e.scrollWidth,opacity:1,transform:"scale(1)"}),ox=e=>{const{prefixCls:t,loading:n,existIcon:r,className:o,style:s,mount:a}=e,l=!!n;return r?N.createElement(bm,{prefixCls:t,className:o,style:s}):N.createElement(un,{visible:l,motionName:`${t}-loading-icon-motion`,motionAppear:!a,motionEnter:!a,motionLeave:!a,removeOnLeave:!0,onAppearStart:Pa,onAppearActive:Ra,onEnterStart:Pa,onEnterActive:Ra,onLeaveStart:Ra,onLeaveActive:Pa},({className:c,style:u},d)=>{const f={...s,...u};return N.createElement(bm,{prefixCls:t,className:z(o,c),style:f,ref:d})})},vm=(e,t)=>({[`> span, > ${e}`]:{"&:not(:last-child)":{[`&, & > ${e}`]:{"&:not(:disabled)":{borderInlineEndColor:t}}},"&:not(:first-child)":{[`&, & > ${e}`]:{"&:not(:disabled)":{borderInlineStartColor:t}}}}}),sx=e=>{const{componentCls:t,fontSize:n,lineWidth:r,groupBorderColor:o,colorErrorHover:s}=e;return{[`${t}-group`]:[{position:"relative",display:"inline-flex",[`> span, > ${t}`]:{"&:not(:last-child)":{[`&, & > ${t}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},"&:not(:first-child)":{marginInlineStart:e.calc(r).mul(-1).equal(),[`&, & > ${t}`]:{borderStartStartRadius:0,borderEndStartRadius:0}}},[t]:{position:"relative",zIndex:1,"&:hover, &:focus, &:active":{zIndex:2},"&[disabled]":{zIndex:0}},[`${t}-icon-only`]:{fontSize:n}},vm(`${t}-primary`,o),vm(`${t}-danger`,s)]}},Ma=e=>Math.round(Number(e||0)),ix=e=>{if(e instanceof gt)return e;if(e&&typeof e=="object"&&"h"in e&&"b"in e){const{b:t,...n}=e;return{...n,v:t}}return typeof e=="string"&&/hsb/.test(e)?e.replace(/hsb/,"hsv"):e};class wn extends gt{constructor(t){super(ix(t))}toHsbString(){const t=this.toHsb(),n=Ma(t.s*100),r=Ma(t.b*100),o=Ma(t.h),s=t.a,a=`hsb(${o}, ${n}%, ${r}%)`,l=`hsba(${o}, ${n}%, ${r}%, ${s.toFixed(s===0?0:2)})`;return s===1?a:l}toHsb(){const{v:t,...n}=this.toHsv();return{...n,b:t,a:this.a}}}const ax="rc-color-picker",so=e=>e instanceof wn?e:new wn(e),lx=so("#1677ff"),t0=e=>{const{offset:t,targetRef:n,containerRef:r,color:o,type:s}=e,{width:a,height:l}=r.current.getBoundingClientRect(),{width:c,height:u}=n.current.getBoundingClientRect(),d=c/2,f=u/2,m=(t.x+d)/a,p=1-(t.y+f)/l,g=o.toHsb(),h=m,b=(t.x+d)/a*360;if(s)switch(s){case"hue":return so({...g,h:b<=0?0:b});case"alpha":return so({...g,a:h<=0?0:h})}return so({h:g.h,s:m<=0?0:m,b:p>=1?1:p,a:g.a})},n0=(e,t)=>{const n=e.toHsb();switch(t){case"hue":return{x:n.h/360*100,y:50};case"alpha":return{x:e.a*100,y:50};default:return{x:n.s*100,y:(1-n.b)*100}}},rd=({color:e,prefixCls:t,className:n,style:r,innerClassName:o,innerStyle:s,onClick:a})=>{const l=`${t}-color-block`;return N.createElement("div",{className:z(l,n),style:r,onClick:a},N.createElement("div",{className:z(`${l}-inner`,o),style:{background:e,...s}}))};function cx(e){const t="touches"in e?e.touches[0]:e,n=document.documentElement.scrollLeft||document.body.scrollLeft||window.pageXOffset,r=document.documentElement.scrollTop||document.body.scrollTop||window.pageYOffset;return{pageX:t.pageX-n,pageY:t.pageY-r}}function r0(e){const{targetRef:t,containerRef:n,direction:r,onDragChange:o,onDragChangeComplete:s,calculate:a,color:l,disabledDrag:c}=e,[u,d]=i.useState({x:0,y:0}),f=i.useRef(null),m=i.useRef(null);i.useEffect(()=>{d(a())},[l]),i.useEffect(()=>()=>{document.removeEventListener("mousemove",f.current),document.removeEventListener("mouseup",m.current),document.removeEventListener("touchmove",f.current),document.removeEventListener("touchend",m.current),f.current=null,m.current=null},[]);const p=$=>{const{pageX:y,pageY:v}=cx($),{x:C,y:S,width:x,height:w}=n.current.getBoundingClientRect(),{width:I,height:E}=t.current.getBoundingClientRect(),R=I/2,P=E/2,M=Math.max(0,Math.min(y-C,x))-R,O=Math.max(0,Math.min(v-S,w))-P,A={x:M,y:r==="x"?u.y:O};if(I===0&&E===0||I!==E)return!1;o==null||o(A)},g=$=>{$.preventDefault(),p($)},h=$=>{$.preventDefault(),document.removeEventListener("mousemove",f.current),document.removeEventListener("mouseup",m.current),document.removeEventListener("touchmove",f.current),document.removeEventListener("touchend",m.current),f.current=null,m.current=null,s==null||s()};return[u,$=>{document.removeEventListener("mousemove",f.current),document.removeEventListener("mouseup",m.current),!c&&(p($),document.addEventListener("mousemove",g),document.addEventListener("mouseup",h),document.addEventListener("touchmove",g),document.addEventListener("touchend",h),f.current=g,m.current=h)}]}const o0=({size:e="default",color:t,prefixCls:n})=>N.createElement("div",{className:z(`${n}-handler`,{[`${n}-handler-sm`]:e==="small"}),style:{backgroundColor:t}}),s0=({children:e,style:t,prefixCls:n})=>N.createElement("div",{className:`${n}-palette`,style:{position:"relative",...t}},e),i0=i.forwardRef((e,t)=>{const{children:n,x:r,y:o}=e;return N.createElement("div",{ref:t,style:{position:"absolute",left:`${r}%`,top:`${o}%`,zIndex:1,transform:"translate(-50%, -50%)"}},n)}),ux=({color:e,onChange:t,prefixCls:n,onChangeComplete:r,disabled:o})=>{const s=i.useRef(),a=i.useRef(),l=i.useRef(e),c=We(f=>{const m=t0({offset:f,targetRef:a,containerRef:s,color:e});l.current=m,t(m)}),[u,d]=r0({color:e,containerRef:s,targetRef:a,calculate:()=>n0(e),onDragChange:c,onDragChangeComplete:()=>r==null?void 0:r(l.current),disabledDrag:o});return N.createElement("div",{ref:s,className:`${n}-select`,onMouseDown:d,onTouchStart:d},N.createElement(s0,{prefixCls:n},N.createElement(i0,{x:u.x,y:u.y,ref:a},N.createElement(o0,{color:e.toRgbString(),prefixCls:n})),N.createElement("div",{className:`${n}-saturation`,style:{backgroundColor:`hsl(${e.toHsb().h},100%, 50%)`,backgroundImage:"linear-gradient(0deg, #000, transparent),linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0))"}})))},dx=(e,t)=>{const[n,r]=bt(e,t);return[i.useMemo(()=>so(n),[n]),r]},fx=({colors:e,children:t,direction:n="to right",type:r,prefixCls:o})=>{const s=i.useMemo(()=>e.map((a,l)=>{let c=so(a);return r==="alpha"&&l===e.length-1&&(c=new wn(c.setA(1))),c.toRgbString()}).join(","),[e,r]);return N.createElement("div",{className:`${o}-gradient`,style:{position:"absolute",inset:0,background:`linear-gradient(${n}, ${s})`}},t)},mx=e=>{const{prefixCls:t,colors:n,disabled:r,onChange:o,onChangeComplete:s,color:a,type:l}=e,c=i.useRef(null),u=i.useRef(null),d=i.useRef(a),f=$=>l==="hue"?$.getHue():$.a*100,m=We($=>{const y=t0({offset:$,targetRef:u,containerRef:c,color:a,type:l});d.current=y,o(f(y))}),[p,g]=r0({color:a,targetRef:u,containerRef:c,calculate:()=>n0(a,l),onDragChange:m,onDragChangeComplete(){s(f(d.current))},direction:"x",disabledDrag:r}),h=N.useMemo(()=>{if(l==="hue"){const $=a.toHsb();return $.s=1,$.b=1,$.a=1,new wn($)}return a},[a,l]),b=N.useMemo(()=>n.map($=>`${$.color} ${$.percent}%`),[n]);return N.createElement("div",{ref:c,className:z(`${t}-slider`,`${t}-slider-${l}`),onMouseDown:g,onTouchStart:g},N.createElement(s0,{prefixCls:t},N.createElement(i0,{x:p.x,y:p.y,ref:u},N.createElement(o0,{size:"small",color:h.toHexString(),prefixCls:t})),N.createElement(fx,{colors:b,type:l,prefixCls:t})))};function px(e){return i.useMemo(()=>{const{slider:t}=e||{};return[t||mx]},[e])}function Vo(){return Vo=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{value:n,defaultValue:r,prefixCls:o=ax,onChange:s,onChangeComplete:a,className:l,style:c,panelRender:u,disabledAlpha:d=!1,disabled:f=!1,components:m}=e,[p]=px(m),[g,h]=dx(r||lx,n),b=i.useMemo(()=>g.setA(1).toRgbString(),[g]),$=(P,M)=>{n||h(P),s==null||s(P,M)},y=P=>new wn(g.setHue(P)),v=P=>new wn(g.setA(P/100)),C=P=>{$(y(P),{type:"hue",value:P})},S=P=>{$(v(P),{type:"alpha",value:P})},x=P=>{a&&a(y(P))},w=P=>{a&&a(v(P))},I=z(`${o}-panel`,l,{[`${o}-panel-disabled`]:f}),E={prefixCls:o,disabled:f,color:g},R=N.createElement(N.Fragment,null,N.createElement(ux,Vo({onChange:$},E,{onChangeComplete:a})),N.createElement("div",{className:`${o}-slider-container`},N.createElement("div",{className:z(`${o}-slider-group`,{[`${o}-slider-group-disabled-alpha`]:d})},N.createElement(p,Vo({},E,{type:"hue",colors:gx,min:0,max:359,value:g.getHue(),onChange:C,onChangeComplete:x})),!d&&N.createElement(p,Vo({},E,{type:"alpha",colors:[{percent:0,color:"rgba(255, 0, 4, 0)"},{percent:100,color:b}],min:0,max:100,value:g.a*100,onChange:S,onChangeComplete:w}))),N.createElement(rd,{color:g.toRgbString(),prefixCls:o})));return N.createElement("div",{className:I,style:c,ref:t},typeof u=="function"?u(R):R)}),Bo=(e,t)=>(e==null?void 0:e.replace(/[^0-9a-f]/gi,"").slice(0,t?8:6))||"",bx=(e,t)=>e?Bo(e,t):"";let an=function(){function e(t){var r;if(Ai(this,e),this.cleared=!1,t instanceof e){this.metaColor=t.metaColor.clone(),this.colors=(r=t.colors)==null?void 0:r.map(o=>({color:new e(o.color),percent:o.percent})),this.cleared=t.cleared;return}const n=Array.isArray(t);n&&t.length?(this.colors=t.map(({color:o,percent:s})=>({color:new e(o),percent:s})),this.metaColor=new wn(this.colors[0].color.metaColor)):this.metaColor=new wn(n?"":t),(!t||n&&!this.colors)&&(this.metaColor=this.metaColor.setA(0),this.cleared=!0)}return Oi(e,[{key:"toHsb",value:function(){return this.metaColor.toHsb()}},{key:"toHsbString",value:function(){return this.metaColor.toHsbString()}},{key:"toHex",value:function(){return bx(this.toHexString(),this.metaColor.a<1)}},{key:"toHexString",value:function(){return this.metaColor.toHexString()}},{key:"toRgb",value:function(){return this.metaColor.toRgb()}},{key:"toRgbString",value:function(){return this.metaColor.toRgbString()}},{key:"isGradient",value:function(){return!!this.colors&&!this.cleared}},{key:"getColors",value:function(){return this.colors||[{color:this,percent:0}]}},{key:"toCssString",value:function(){const{colors:n}=this;return n?`linear-gradient(90deg, ${n.map(o=>`${o.color.toRgbString()} ${o.percent}%`).join(", ")})`:this.metaColor.toRgbString()}},{key:"equals",value:function(n){return!n||this.isGradient()!==n.isGradient()?!1:this.isGradient()?this.colors.length===n.colors.length&&this.colors.every((r,o)=>{const s=n.colors[o];return r.percent===s.percent&&r.color.equals(s.color)}):this.toHexString()===n.toHexString()}}])}();var vx={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"}}]},name:"right",theme:"outlined"};function ec(){return ec=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,ec({},e,{ref:t,icon:vx})),a0=i.forwardRef(yx),$x=N.forwardRef((e,t)=>{const{prefixCls:n,forceRender:r,className:o,style:s,children:a,isActive:l,role:c,classNames:u,styles:d}=e,[f,m]=N.useState(l||r);return N.useEffect(()=>{(r||l)&&m(!0)},[r,l]),f?N.createElement("div",{ref:t,className:z(`${n}-panel`,{[`${n}-panel-active`]:l,[`${n}-panel-inactive`]:!l},o),style:s,role:c},N.createElement("div",{className:z(`${n}-body`,u==null?void 0:u.body),style:d==null?void 0:d.body},a)):null}),l0=N.forwardRef((e,t)=>{const{showArrow:n=!0,headerClass:r,isActive:o,onItemClick:s,forceRender:a,className:l,classNames:c={},styles:u={},prefixCls:d,collapsible:f,accordion:m,panelKey:p,extra:g,header:h,expandIcon:b,openMotion:$,destroyOnHidden:y,children:v,...C}=e,S=f==="disabled",x=g!=null&&typeof g!="boolean",w={onClick:()=>{s==null||s(p)},onKeyDown:O=>{(O.key==="Enter"||O.keyCode===Me.ENTER||O.which===Me.ENTER)&&(s==null||s(p))},role:m?"tab":"button","aria-expanded":o,"aria-disabled":S,tabIndex:S?-1:0},I=typeof b=="function"?b(e):N.createElement("i",{className:"arrow"}),E=I&&N.createElement("div",Et({className:z(`${d}-expand-icon`,c==null?void 0:c.icon),style:u==null?void 0:u.icon},["header","icon"].includes(f)?w:{}),I),R=z(`${d}-item`,{[`${d}-item-active`]:o,[`${d}-item-disabled`]:S},l),M={className:z(r,`${d}-header`,{[`${d}-collapsible-${f}`]:!!f},c==null?void 0:c.header),style:u==null?void 0:u.header,...["header","icon"].includes(f)?{}:w};return N.createElement("div",Et({},C,{ref:t,className:R}),N.createElement("div",M,n&&E,N.createElement("span",Et({className:z(`${d}-title`,c==null?void 0:c.title),style:u==null?void 0:u.title},f==="header"?w:{}),h),x&&N.createElement("div",{className:`${d}-extra`},g)),N.createElement(un,Et({visible:o,leavedClassName:`${d}-panel-hidden`},$,{forceRender:a,removeOnLeave:y}),({className:O,style:A},T)=>N.createElement($x,{ref:T,prefixCls:d,className:O,classNames:c,style:A,styles:u,isActive:o,forceRender:a,role:m?"tabpanel":void 0},v)))});function c0(e,t,n){if(!e||!t)return e||t;const r=Array.from(new Set([...Object.keys(e),...Object.keys(t)])),o={};return r.forEach(s=>{o[s]=n(e[s],t[s])}),o}function Cx(e,t){return c0(e,t,(n,r)=>z(n,r))}function Sx(e,t){return c0(e,t,(n,r)=>({...n,...r}))}const xx=(e,t)=>{const{prefixCls:n,accordion:r,collapsible:o,destroyOnHidden:s,onItemClick:a,activeKey:l,openMotion:c,expandIcon:u,classNames:d,styles:f}=t;return e.map((m,p)=>{const{children:g,label:h,key:b,collapsible:$,onItemClick:y,destroyOnHidden:v,classNames:C,styles:S,...x}=m,w=String(b??p),I=$??o,E=v??s,R=M=>{I!=="disabled"&&(a(M),y==null||y(M))};let P=!1;return r?P=l[0]===w:P=l.indexOf(w)>-1,N.createElement(l0,Et({},x,{classNames:Cx(d,C),styles:Sx(f,S),prefixCls:n,key:w,panelKey:w,isActive:P,accordion:r,openMotion:c,expandIcon:u,header:h,collapsible:I,onItemClick:R,destroyOnHidden:E}),g)})},wx=(e,t,n)=>{if(!e)return null;const{prefixCls:r,accordion:o,collapsible:s,destroyOnHidden:a,onItemClick:l,activeKey:c,openMotion:u,expandIcon:d,classNames:f,styles:m}=n,p=e.key||String(t),{header:g,headerClass:h,destroyOnHidden:b,collapsible:$,onItemClick:y}=e.props;let v=!1;o?v=c[0]===p:v=c.indexOf(p)>-1;const C=$??s,S=w=>{C!=="disabled"&&(l(w),y==null||y(w))},x={key:p,panelKey:p,header:g,headerClass:h,classNames:f,styles:m,isActive:v,prefixCls:r,destroyOnHidden:b??a,openMotion:u,accordion:o,children:e.props.children,onItemClick:S,expandIcon:d,collapsible:C};return typeof e.type=="string"?e:(Object.keys(x).forEach(w=>{typeof x[w]>"u"&&delete x[w]}),N.cloneElement(e,x))};function Ex(e,t,n){return Array.isArray(e)?xx(e,n):Vt(t).map((r,o)=>wx(r,o,n))}function ym(e){let t=e;if(!Array.isArray(t)){const n=typeof t;t=n==="number"||n==="string"?[t]:[]}return t.map(n=>String(n))}const Ix=N.forwardRef((e,t)=>{const{prefixCls:n="rc-collapse",destroyOnHidden:r=!1,style:o,accordion:s,className:a,children:l,collapsible:c,openMotion:u,expandIcon:d,activeKey:f,defaultActiveKey:m,onChange:p,items:g,classNames:h,styles:b}=e,$=z(n,a),[y,v]=bt(m,f),C=ym(y),S=We(I=>{const E=ym(I);v(E),p==null||p(E)}),x=I=>{S(s?C[0]===I?[]:[I]:C.includes(I)?C.filter(E=>E!==I):[...C,I])};Pt(!l,"[rc-collapse] `children` will be removed in next major version. Please use `items` instead.");const w=Ex(g,l,{prefixCls:n,accordion:s,openMotion:u,expandIcon:d,collapsible:c,destroyOnHidden:r,onItemClick:x,activeKey:C,classNames:h,styles:b});return N.createElement("div",Et({ref:t,className:$,style:o,role:s?"tablist":void 0},cn(e,{aria:!0,data:!0})),w)}),od=Object.assign(Ix,{Panel:l0}),{Panel:r8}=od,Px=i.forwardRef((e,t)=>{const{getPrefixCls:n}=i.useContext(je),{prefixCls:r,className:o,showArrow:s=!0}=e,a=n("collapse",r),l=z({[`${a}-no-arrow`]:!s},o);return i.createElement(od.Panel,{ref:t,...e,prefixCls:a,className:l})}),u0=e=>{const{componentCls:t,antCls:n,motionDurationMid:r,motionEaseInOut:o}=e;return{[t]:{[`${n}-motion-collapse-legacy`]:{overflow:"hidden","&-active":{transition:`${["height","opacity"].map(s=>`${s} ${r} ${o}`).join(", ")} !important`}},[`${n}-motion-collapse`]:{overflow:"hidden",transition:`${["height","opacity"].map(s=>`${s} ${r} ${o}`).join(", ")} !important`}}}},Rx=e=>({animationDuration:e,animationFillMode:"both"}),Mx=e=>({animationDuration:e,animationFillMode:"both"}),Wi=(e,t,n,r,o=!1)=>{const s=o?"&":"";return{[` + ${s}${e}-enter, + ${s}${e}-appear + `]:{...Rx(r),animationPlayState:"paused"},[`${s}${e}-leave`]:{...Mx(r),animationPlayState:"paused"},[` + ${s}${e}-enter${e}-enter-active, + ${s}${e}-appear${e}-appear-active + `]:{animationName:t,animationPlayState:"running"},[`${s}${e}-leave${e}-leave-active`]:{animationName:n,animationPlayState:"running",pointerEvents:"none"}}},Nx=new et("antFadeIn",{"0%":{opacity:0},"100%":{opacity:1}}),Tx=new et("antFadeOut",{"0%":{opacity:1},"100%":{opacity:0}}),d0=(e,t=!1)=>{const{antCls:n}=e,r=`${n}-fade`,o=t?"&":"";return[Wi(r,Nx,Tx,e.motionDurationMid,t),{[` + ${o}${r}-enter, + ${o}${r}-appear + `]:{opacity:0,animationTimingFunction:"linear"},[`${o}${r}-leave`]:{animationTimingFunction:"linear"}}]},Ox=new et("antMoveDownIn",{"0%":{transform:"translate3d(0, 100%, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),Ax=new et("antMoveDownOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(0, 100%, 0)",transformOrigin:"0 0",opacity:0}}),zx=new et("antMoveLeftIn",{"0%":{transform:"translate3d(-100%, 0, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),Bx=new et("antMoveLeftOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(-100%, 0, 0)",transformOrigin:"0 0",opacity:0}}),Lx=new et("antMoveRightIn",{"0%":{transform:"translate3d(100%, 0, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),Hx=new et("antMoveRightOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(100%, 0, 0)",transformOrigin:"0 0",opacity:0}}),Dx=new et("antMoveUpIn",{"0%":{transform:"translate3d(0, -100%, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),Fx=new et("antMoveUpOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(0, -100%, 0)",transformOrigin:"0 0",opacity:0}}),_x={"move-up":{inKeyframes:Dx,outKeyframes:Fx},"move-down":{inKeyframes:Ox,outKeyframes:Ax},"move-left":{inKeyframes:zx,outKeyframes:Bx},"move-right":{inKeyframes:Lx,outKeyframes:Hx}},gi=(e,t)=>{const{antCls:n}=e,r=`${n}-${t}`,{inKeyframes:o,outKeyframes:s}=_x[t];return[Wi(r,o,s,e.motionDurationMid),{[` + ${r}-enter, + ${r}-appear + `]:{opacity:0,animationTimingFunction:e.motionEaseOutCirc},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInOutCirc}}]},sd=new et("antSlideUpIn",{"0%":{transform:"scaleY(0.8)",transformOrigin:"0% 0%",opacity:0},"100%":{transform:"scaleY(1)",transformOrigin:"0% 0%",opacity:1}}),id=new et("antSlideUpOut",{"0%":{transform:"scaleY(1)",transformOrigin:"0% 0%",opacity:1},"100%":{transform:"scaleY(0.8)",transformOrigin:"0% 0%",opacity:0}}),ad=new et("antSlideDownIn",{"0%":{transform:"scaleY(0.8)",transformOrigin:"100% 100%",opacity:0},"100%":{transform:"scaleY(1)",transformOrigin:"100% 100%",opacity:1}}),ld=new et("antSlideDownOut",{"0%":{transform:"scaleY(1)",transformOrigin:"100% 100%",opacity:1},"100%":{transform:"scaleY(0.8)",transformOrigin:"100% 100%",opacity:0}}),kx=new et("antSlideLeftIn",{"0%":{transform:"scaleX(0.8)",transformOrigin:"0% 0%",opacity:0},"100%":{transform:"scaleX(1)",transformOrigin:"0% 0%",opacity:1}}),Vx=new et("antSlideLeftOut",{"0%":{transform:"scaleX(1)",transformOrigin:"0% 0%",opacity:1},"100%":{transform:"scaleX(0.8)",transformOrigin:"0% 0%",opacity:0}}),Wx=new et("antSlideRightIn",{"0%":{transform:"scaleX(0.8)",transformOrigin:"100% 0%",opacity:0},"100%":{transform:"scaleX(1)",transformOrigin:"100% 0%",opacity:1}}),jx=new et("antSlideRightOut",{"0%":{transform:"scaleX(1)",transformOrigin:"100% 0%",opacity:1},"100%":{transform:"scaleX(0.8)",transformOrigin:"100% 0%",opacity:0}}),qx={"slide-up":{inKeyframes:sd,outKeyframes:id},"slide-down":{inKeyframes:ad,outKeyframes:ld},"slide-left":{inKeyframes:kx,outKeyframes:Vx},"slide-right":{inKeyframes:Wx,outKeyframes:jx}},cr=(e,t)=>{const{antCls:n}=e,r=`${n}-${t}`,{inKeyframes:o,outKeyframes:s}=qx[t];return[Wi(r,o,s,e.motionDurationMid),{[` + ${r}-enter, + ${r}-appear + `]:{transform:"scale(0)",transformOrigin:"0% 0%",opacity:0,animationTimingFunction:e.motionEaseOutQuint,"&-prepare":{transform:"scale(1)"}},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInQuint}}]},Gx=new et("antZoomIn",{"0%":{transform:"scale(0.2)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),Xx=new et("antZoomOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.2)",opacity:0}}),$m=new et("antZoomBigIn",{"0%":{transform:"scale(0.8)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),Cm=new et("antZoomBigOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.8)",opacity:0}}),Ux=new et("antZoomUpIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 0%"}}),Kx=new et("antZoomUpOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 0%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0}}),Yx=new et("antZoomLeftIn",{"0%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"0% 50%"}}),Qx=new et("antZoomLeftOut",{"0%":{transform:"scale(1)",transformOrigin:"0% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0}}),Zx=new et("antZoomRightIn",{"0%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"100% 50%"}}),Jx=new et("antZoomRightOut",{"0%":{transform:"scale(1)",transformOrigin:"100% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0}}),ew=new et("antZoomDownIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 100%"}}),tw=new et("antZoomDownOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 100%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0}}),nw={zoom:{inKeyframes:Gx,outKeyframes:Xx},"zoom-big":{inKeyframes:$m,outKeyframes:Cm},"zoom-big-fast":{inKeyframes:$m,outKeyframes:Cm},"zoom-left":{inKeyframes:Yx,outKeyframes:Qx},"zoom-right":{inKeyframes:Zx,outKeyframes:Jx},"zoom-up":{inKeyframes:Ux,outKeyframes:Kx},"zoom-down":{inKeyframes:ew,outKeyframes:tw}},ds=(e,t)=>{const{antCls:n}=e,r=`${n}-${t}`,{inKeyframes:o,outKeyframes:s}=nw[t];return[Wi(r,o,s,t==="zoom-big-fast"?e.motionDurationFast:e.motionDurationMid),{[` + ${r}-enter, + ${r}-appear + `]:{transform:"scale(0)",opacity:0,animationTimingFunction:e.motionEaseOutCirc,"&-prepare":{transform:"none"}},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInOutCirc}}]},rw=e=>{const{componentCls:t,contentBg:n,padding:r,headerBg:o,headerPadding:s,collapseHeaderPaddingSM:a,collapseHeaderPaddingLG:l,collapsePanelBorderRadius:c,lineWidth:u,lineType:d,colorBorder:f,colorText:m,colorTextHeading:p,colorTextDisabled:g,fontSizeLG:h,lineHeight:b,lineHeightLG:$,marginSM:y,paddingSM:v,paddingLG:C,paddingXS:S,motionDurationSlow:x,fontSizeIcon:w,contentPadding:I,fontHeight:E,fontHeightLG:R}=e,P=`${K(u)} ${d} ${f}`;return{[t]:{...Ct(e),backgroundColor:o,border:P,borderRadius:c,"&-rtl":{direction:"rtl"},[`& > ${t}-item`]:{borderBottom:P,"&:first-child":{[` + &, + & > ${t}-header`]:{borderRadius:`${K(c)} ${K(c)} 0 0`}},"&:last-child":{[` + &, + & > ${t}-header`]:{borderRadius:`0 0 ${K(c)} ${K(c)}`}},[`> ${t}-header`]:{position:"relative",display:"flex",flexWrap:"nowrap",alignItems:"flex-start",padding:s,color:p,lineHeight:b,cursor:"pointer",transition:`all ${x}, visibility 0s`,...bn(e),[`> ${t}-title`]:{flex:"auto"},[`${t}-expand-icon`]:{height:E,display:"flex",alignItems:"center",marginInlineEnd:y},[`${t}-arrow`]:{...go(),fontSize:w,transition:`transform ${x}`,svg:{transition:`transform ${x}`}},[`${t}-title`]:{marginInlineEnd:"auto"}},[`${t}-collapsible-header`]:{cursor:"default",[`${t}-title`]:{flex:"none",cursor:"pointer"},[`${t}-expand-icon`]:{cursor:"pointer"}},[`${t}-collapsible-icon`]:{cursor:"unset",[`${t}-expand-icon`]:{cursor:"pointer"}}},[`${t}-panel`]:{color:m,backgroundColor:n,borderTop:P,[`& > ${t}-body`]:{padding:I},"&-hidden":{display:"none"}},"&-small":{[`> ${t}-item`]:{[`> ${t}-header`]:{padding:a,paddingInlineStart:S,[`> ${t}-expand-icon`]:{marginInlineStart:e.calc(v).sub(S).equal()}},[`> ${t}-panel > ${t}-body`]:{padding:v}}},"&-large":{[`> ${t}-item`]:{fontSize:h,lineHeight:$,[`> ${t}-header`]:{padding:l,paddingInlineStart:r,[`> ${t}-expand-icon`]:{height:R,marginInlineStart:e.calc(C).sub(r).equal()}},[`> ${t}-panel > ${t}-body`]:{padding:C}}},[`${t}-item:last-child`]:{borderBottom:0,[`> ${t}-panel`]:{borderRadius:`0 0 ${K(c)} ${K(c)}`}},[`& ${t}-item-disabled > ${t}-header`]:{"\n &,\n & > .arrow\n ":{color:g,cursor:"not-allowed"}},[`&${t}-icon-placement-end`]:{[`& > ${t}-item`]:{[`> ${t}-header`]:{[`${t}-expand-icon`]:{order:1,marginInlineEnd:0,marginInlineStart:y}}}}}}},ow=e=>{const{componentCls:t}=e,n=`> ${t}-item > ${t}-header ${t}-arrow`;return{[`${t}-rtl`]:{[n]:{transform:"rotate(180deg)"}}}},sw=e=>{const{componentCls:t,headerBg:n,borderlessContentPadding:r,borderlessContentBg:o,colorBorder:s}=e;return{[`${t}-borderless`]:{backgroundColor:n,border:0,[`> ${t}-item`]:{borderBottom:`1px solid ${s}`},[` + > ${t}-item:last-child, + > ${t}-item:last-child ${t}-header + `]:{borderRadius:0},[`> ${t}-item:last-child`]:{borderBottom:0},[`> ${t}-item > ${t}-panel`]:{backgroundColor:o,borderTop:0},[`> ${t}-item > ${t}-panel > ${t}-body`]:{padding:r}}}},iw=e=>{const{componentCls:t,paddingSM:n}=e;return{[`${t}-ghost`]:{backgroundColor:"transparent",border:0,[`> ${t}-item`]:{borderBottom:0,[`> ${t}-panel`]:{backgroundColor:"transparent",border:0,[`> ${t}-body`]:{paddingBlock:n}}}}}},aw=e=>({headerPadding:`${e.paddingSM}px ${e.padding}px`,headerBg:e.colorFillAlter,contentPadding:`${e.padding}px 16px`,contentBg:e.colorBgContainer,borderlessContentPadding:`${e.paddingXXS}px 16px ${e.padding}px`,borderlessContentBg:"transparent"}),lw=at("Collapse",e=>{const t=rt(e,{collapseHeaderPaddingSM:`${K(e.paddingXS)} ${K(e.paddingSM)}`,collapseHeaderPaddingLG:`${K(e.padding)} ${K(e.paddingLG)}`,collapsePanelBorderRadius:e.borderRadiusLG});return[rw(t),sw(t),iw(t),ow(t),u0(t)]},aw),cw=i.forwardRef((e,t)=>{const{getPrefixCls:n,direction:r,expandIcon:o,className:s,style:a,classNames:l,styles:c}=dt("collapse"),{prefixCls:u,className:d,rootClassName:f,style:m,bordered:p=!0,ghost:g,size:h,expandIconPlacement:b,expandIconPosition:$,children:y,destroyInactivePanel:v,destroyOnHidden:C,expandIcon:S,classNames:x,styles:w}=e,I=Jt(W=>h??W??"middle"),E=n("collapse",u),R=n(),[P,M]=lw(E),O=b??$??"start",A={...e,size:I,bordered:p,expandIconPlacement:O},[T,F]=pt([l,x],[c,w],{props:A}),H=S??o,L=i.useCallback((W={})=>{const _=typeof H=="function"?H(W):i.createElement(a0,{rotate:W.isActive?r==="rtl"?-90:90:void 0,"aria-label":W.isActive?"expanded":"collapsed"});return Wt(_,X=>({className:z(X.className,`${E}-arrow`)}))},[H,E,r]),B=z(`${E}-icon-placement-${O}`,{[`${E}-borderless`]:!p,[`${E}-rtl`]:r==="rtl",[`${E}-ghost`]:!!g,[`${E}-${I}`]:I!=="middle"},s,d,f,P,M,T.root),D=i.useMemo(()=>({...Yh(R),motionAppear:!1,leavedClassName:`${E}-panel-hidden`}),[R,E]),k=i.useMemo(()=>y?Vt(y).map(W=>W):null,[y]);return i.createElement(od,{ref:t,openMotion:D,...yt(e,["rootClassName"]),expandIcon:L,prefixCls:E,className:B,style:{...F.root,...a,...m},classNames:T,styles:F,destroyOnHidden:C??v},k)}),uw=Object.assign(cw,{Panel:Px}),Bt=e=>e instanceof an?e:new an(e),Js=e=>Math.round(Number(e||0)),cd=e=>Js(e.toHsb().a*100),ei=(e,t)=>{const n=e.toRgb();if(!n.r&&!n.g&&!n.b){const r=e.toHsb();return r.a=1,Bt(r)}return n.a=1,Bt(n)},f0=(e,t)=>{const n=[{percent:0,color:e[0].color}].concat(xt(e),[{percent:100,color:e[e.length-1].color}]);for(let r=0;re.map(t=>(t.colors=t.colors.map(Bt),t)),m0=(e,t)=>{const{r:n,g:r,b:o,a:s}=e.toRgb(),a=new wn(e.toRgbString()).onBackground(t).toHsv();return s<=.5?a.v>.5:n*.299+r*.587+o*.114>192},Sm=(e,t)=>`panel-${e.key??t}`,fw=({prefixCls:e,presets:t,value:n,onChange:r})=>{const[o]=dn("ColorPicker"),[,s]=jt(),a=i.useMemo(()=>dw(t),[t]),l=`${e}-presets`,c=i.useMemo(()=>a.reduce((f,m,p)=>{const{defaultOpen:g=!0}=m;return g&&f.push(Sm(m,p)),f},[]),[a]),u=f=>{r==null||r(f)},d=a.map((f,m)=>{var p;return{key:Sm(f,m),label:N.createElement("div",{className:`${l}-label`},f==null?void 0:f.label),children:N.createElement("div",{className:`${l}-items`},Array.isArray(f==null?void 0:f.colors)&&((p=f.colors)==null?void 0:p.length)>0?f.colors.map((g,h)=>{const b=Bt(g);return N.createElement(rd,{key:`preset-${h}-${g.toHexString()}`,color:b.toCssString(),prefixCls:e,className:z(`${l}-color`,{[`${l}-color-checked`]:g.toCssString()===(n==null?void 0:n.toCssString()),[`${l}-color-bright`]:m0(g,s.colorBgElevated)}),onClick:()=>u(g)})}):N.createElement("span",{className:`${l}-empty`},o.presetEmpty))}});return N.createElement("div",{className:l},N.createElement(uw,{defaultActiveKey:c,ghost:!0,items:d}))},p0=e=>{const{paddingInline:t,onlyIconSize:n,borderColorDisabled:r}=e;return rt(e,{buttonPaddingHorizontal:t,buttonPaddingVertical:0,buttonIconOnlyFontSize:n,colorBorderDisabled:r})},g0=e=>{const t=e.contentFontSize??e.fontSize,n=e.contentFontSizeSM??e.fontSize,r=e.contentFontSizeLG??e.fontSizeLG,o=e.contentLineHeight??Ys(t),s=e.contentLineHeightSM??Ys(n),a=e.contentLineHeightLG??Ys(r),l=m0(new an(e.colorBgSolid),"#fff")?"#000":"#fff",c=Tn.reduce((f,m)=>({...f,[`${m}ShadowColor`]:`0 ${K(e.controlOutlineWidth)} 0 ${zo(e[`${m}1`],e.colorBgContainer)}`}),{}),u=e.colorBgContainerDisabled,d=e.colorBgContainerDisabled;return{...c,fontWeight:400,iconGap:e.marginXS,defaultShadow:`0 ${e.controlOutlineWidth}px 0 ${e.controlTmpOutline}`,primaryShadow:`0 ${e.controlOutlineWidth}px 0 ${e.controlOutline}`,dangerShadow:`0 ${e.controlOutlineWidth}px 0 ${e.colorErrorOutline}`,primaryColor:e.colorTextLightSolid,dangerColor:e.colorTextLightSolid,borderColorDisabled:e.colorBorderDisabled,defaultGhostColor:e.colorBgContainer,ghostBg:"transparent",defaultGhostBorderColor:e.colorBgContainer,paddingInline:e.paddingContentHorizontal-e.lineWidth,paddingInlineLG:e.paddingContentHorizontal-e.lineWidth,paddingInlineSM:8-e.lineWidth,onlyIconSize:"inherit",onlyIconSizeSM:"inherit",onlyIconSizeLG:"inherit",groupBorderColor:e.colorPrimaryHover,linkHoverBg:"transparent",textTextColor:e.colorText,textTextHoverColor:e.colorText,textTextActiveColor:e.colorText,textHoverBg:e.colorFillTertiary,defaultColor:e.colorText,defaultBg:e.colorBgContainer,defaultBorderColor:e.colorBorder,defaultBorderColorDisabled:e.colorBorder,defaultHoverBg:e.colorBgContainer,defaultHoverColor:e.colorPrimaryHover,defaultHoverBorderColor:e.colorPrimaryHover,defaultActiveBg:e.colorBgContainer,defaultActiveColor:e.colorPrimaryActive,defaultActiveBorderColor:e.colorPrimaryActive,solidTextColor:l,contentFontSize:t,contentFontSizeSM:n,contentFontSizeLG:r,contentLineHeight:o,contentLineHeightSM:s,contentLineHeightLG:a,paddingBlock:Math.max((e.controlHeight-t*o)/2-e.lineWidth,0),paddingBlockSM:Math.max((e.controlHeightSM-n*s)/2-e.lineWidth,0),paddingBlockLG:Math.max((e.controlHeightLG-r*a)/2-e.lineWidth,0),defaultBgDisabled:u,dashedBgDisabled:d}},mw=e=>{const{componentCls:t,antCls:n,lineWidth:r}=e,[o,s]=At(n,"btn");return{[t]:[{[o("border-width")]:r,[o("border-color")]:"#000",[o("border-color-hover")]:s("border-color"),[o("border-color-active")]:s("border-color"),[o("border-color-disabled")]:s("border-color"),[o("border-style")]:"solid",[o("text-color")]:"#000",[o("text-color-hover")]:s("text-color"),[o("text-color-active")]:s("text-color"),[o("text-color-disabled")]:s("text-color"),[o("bg-color")]:"#ddd",[o("bg-color-hover")]:s("bg-color"),[o("bg-color-active")]:s("bg-color"),[o("bg-color-disabled")]:e.colorBgContainerDisabled,[o("bg-color-container")]:e.colorBgContainer,[o("shadow")]:"none"},{border:[s("border-width"),s("border-style"),s("border-color")].join(" "),color:s("text-color"),backgroundColor:s("bg-color"),[`&:not(:disabled):not(${t}-disabled)`]:{"&:hover":{border:[s("border-width"),s("border-style"),s("border-color-hover")].join(" "),color:s("text-color-hover"),backgroundColor:s("bg-color-hover")},"&:active":{border:[s("border-width"),s("border-style"),s("border-color-active")].join(" "),color:s("text-color-active"),backgroundColor:s("bg-color-active")}}},{[`&${t}-variant-solid`]:{[o("solid-bg-color")]:s("color-base"),[o("solid-bg-color-hover")]:s("color-hover"),[o("solid-bg-color-active")]:s("color-active"),[o("border-color")]:"transparent",[o("text-color")]:e.colorTextLightSolid,[o("bg-color")]:s("solid-bg-color"),[o("bg-color-hover")]:s("solid-bg-color-hover"),[o("bg-color-active")]:s("solid-bg-color-active"),boxShadow:s("shadow")},[`&${t}-variant-outlined, &${t}-variant-dashed`]:{[o("border-color")]:s("color-base"),[o("border-color-hover")]:s("color-hover"),[o("border-color-active")]:s("color-active"),[o("bg-color")]:s("bg-color-container"),[o("text-color")]:s("color-base"),[o("text-color-hover")]:s("color-hover"),[o("text-color-active")]:s("color-active"),boxShadow:s("shadow")},[`&${t}-variant-dashed`]:{[o("border-style")]:"dashed",[o("bg-color-disabled")]:e.dashedBgDisabled},[`&${t}-variant-filled`]:{[o("border-color")]:"transparent",[o("text-color")]:s("color-base"),[o("bg-color")]:s("color-light"),[o("bg-color-hover")]:s("color-light-hover"),[o("bg-color-active")]:s("color-light-active")},[`&${t}-variant-text, &${t}-variant-link`]:{[o("border-color")]:"transparent",[o("text-color")]:s("color-base"),[o("text-color-hover")]:s("color-hover"),[o("text-color-active")]:s("color-active"),[o("bg-color")]:"transparent",[o("bg-color-hover")]:"transparent",[o("bg-color-active")]:"transparent",[`&:disabled, &${e.componentCls}-disabled`]:{background:"transparent",borderColor:"transparent"}},[`&${t}-variant-text`]:{[o("bg-color-hover")]:s("color-light"),[o("bg-color-active")]:s("color-light-active")}},{[`&${t}-variant-link`]:{[o("color-base")]:e.colorLink,[o("color-hover")]:e.colorLinkHover,[o("color-active")]:e.colorLinkActive,[o("bg-color-hover")]:e.linkHoverBg},[`&${t}-color-primary`]:{[o("color-base")]:e.colorPrimary,[o("color-hover")]:e.colorPrimaryHover,[o("color-active")]:e.colorPrimaryActive,[o("color-light")]:e.colorPrimaryBg,[o("color-light-hover")]:e.colorPrimaryBgHover,[o("color-light-active")]:e.colorPrimaryBorder,[o("shadow")]:e.primaryShadow,[`&${t}-variant-solid`]:{[o("text-color")]:e.primaryColor,[o("text-color-hover")]:s("text-color"),[o("text-color-active")]:s("text-color")}},[`&${t}-color-dangerous`]:{[o("color-base")]:e.colorError,[o("color-hover")]:e.colorErrorHover,[o("color-active")]:e.colorErrorActive,[o("color-light")]:e.colorErrorBg,[o("color-light-hover")]:e.colorErrorBgFilledHover,[o("color-light-active")]:e.colorErrorBgActive,[o("shadow")]:e.dangerShadow,[`&${t}-variant-solid`]:{[o("text-color")]:e.dangerColor,[o("text-color-hover")]:s("text-color"),[o("text-color-active")]:s("text-color")}},[`&${t}-color-default`]:{[o("solid-bg-color")]:e.colorBgSolid,[o("solid-bg-color-hover")]:e.colorBgSolidHover,[o("solid-bg-color-active")]:e.colorBgSolidActive,[o("color-base")]:e.defaultBorderColor,[o("color-hover")]:e.defaultHoverBorderColor,[o("color-active")]:e.defaultActiveBorderColor,[o("color-light")]:e.colorFillTertiary,[o("color-light-hover")]:e.colorFillSecondary,[o("color-light-active")]:e.colorFill,[o("text-color")]:e.defaultColor,[o("text-color-hover")]:e.defaultHoverColor,[o("text-color-active")]:e.defaultActiveColor,[o("shadow")]:e.defaultShadow,[`&${t}-variant-outlined`]:{[o("bg-color-disabled")]:e.defaultBgDisabled},[`&${t}-variant-solid`]:{[o("text-color")]:e.solidTextColor,[o("text-color-hover")]:s("text-color"),[o("text-color-active")]:s("text-color")},[`&${t}-variant-filled, &${t}-variant-text`]:{[o("text-color-hover")]:s("text-color"),[o("text-color-active")]:s("text-color")},[`&${t}-variant-outlined, &${t}-variant-dashed`]:{[o("text-color")]:e.defaultColor,[o("text-color-hover")]:e.defaultHoverColor,[o("text-color-active")]:e.defaultActiveColor,[o("bg-color-container")]:e.defaultBg,[o("bg-color-hover")]:e.defaultHoverBg,[o("bg-color-active")]:e.defaultActiveBg},[`&${t}-variant-text`]:{[o("text-color")]:e.textTextColor,[o("text-color-hover")]:e.textTextHoverColor,[o("text-color-active")]:e.textTextActiveColor,[o("bg-color-hover")]:e.textHoverBg},[`&${t}-background-ghost`]:{[`&${t}-variant-outlined, &${t}-variant-dashed`]:{[o("text-color")]:e.defaultGhostColor,[o("border-color")]:e.defaultGhostBorderColor}}}},Tn.map(a=>{const l=e[`${a}6`],c=e[`${a}1`],u=e[`${a}Hover`],d=e[`${a}2`],f=e[`${a}3`],m=e[`${a}Active`],p=e[`${a}ShadowColor`];return{[`&${t}-color-${a}`]:{[o("color-base")]:l,[o("color-hover")]:u,[o("color-active")]:m,[o("color-light")]:c,[o("color-light-hover")]:d,[o("color-light-active")]:f,[o("shadow")]:p}}}),{[`&:disabled, &${e.componentCls}-disabled`]:{cursor:"not-allowed",borderColor:e.colorBorderDisabled,background:s("bg-color-disabled"),color:e.colorTextDisabled,boxShadow:"none"}},{[`&${t}-background-ghost`]:{[o("bg-color")]:e.ghostBg,[o("bg-color-hover")]:e.ghostBg,[o("bg-color-active")]:e.ghostBg,[o("shadow")]:"none",[`&${t}-variant-outlined, &${t}-variant-dashed`]:{[o("bg-color-hover")]:e.ghostBg,[o("bg-color-active")]:e.ghostBg}}}]}},pw=e=>{const{componentCls:t,iconCls:n,fontWeight:r,opacityLoading:o,motionDurationSlow:s,motionEaseInOut:a,iconGap:l,calc:c}=e;return{[t]:{outline:"none",position:"relative",display:"inline-flex",gap:l,alignItems:"center",justifyContent:"center",fontWeight:r,whiteSpace:"nowrap",textAlign:"center",backgroundImage:"none",cursor:"pointer",transition:`all ${e.motionDurationMid} ${e.motionEaseInOut}`,userSelect:"none",touchAction:"manipulation","&:disabled > *":{pointerEvents:"none"},[`${t}-icon > svg`]:go(),"> a":{color:"currentColor"},"&:not(:disabled)":bn(e),[`&${t}-two-chinese-chars::first-letter`]:{letterSpacing:"0.34em"},[`&${t}-two-chinese-chars > *:not(${n})`]:{marginInlineEnd:"-0.34em",letterSpacing:"0.34em"},[`&${t}-icon-only`]:{paddingInline:0,[`&${t}-compact-item`]:{flex:"none"}},[`&${t}-loading`]:{opacity:o,cursor:"default"},[`${t}-loading-icon`]:{transition:["width","opacity","margin"].map(u=>`${u} ${s} ${a}`).join(",")},[`&:not(${t}-icon-end)`]:{[`${t}-loading-icon-motion`]:{"&-appear-start, &-enter-start":{marginInlineEnd:c(l).mul(-1).equal()},"&-appear-active, &-enter-active":{marginInlineEnd:0},"&-leave-start":{marginInlineEnd:0},"&-leave-active":{marginInlineEnd:c(l).mul(-1).equal()}}},"&-icon-end":{flexDirection:"row-reverse",[`${t}-loading-icon-motion`]:{"&-appear-start, &-enter-start":{marginInlineStart:c(l).mul(-1).equal()},"&-appear-active, &-enter-active":{marginInlineStart:0},"&-leave-start":{marginInlineStart:0},"&-leave-active":{marginInlineStart:c(l).mul(-1).equal()}}}}}},gw=e=>({minWidth:e.controlHeight,paddingInline:0,borderRadius:"50%"}),ud=(e,t="")=>{const{componentCls:n,controlHeight:r,fontSize:o,borderRadius:s,buttonPaddingHorizontal:a,iconCls:l,buttonPaddingVertical:c,buttonIconOnlyFontSize:u}=e;return[{[t]:{fontSize:o,height:r,padding:`${K(c)} ${K(a)}`,borderRadius:s,[`&${n}-icon-only`]:{width:r,[l]:{fontSize:u}}}},{[`${n}${n}-circle${t}`]:gw(e)},{[`${n}${n}-round${t}`]:{borderRadius:e.controlHeight,[`&:not(${n}-icon-only)`]:{paddingInline:e.buttonPaddingHorizontal}}}]},hw=e=>{const t=rt(e,{fontSize:e.contentFontSize});return ud(t,e.componentCls)},bw=e=>{const t=rt(e,{controlHeight:e.controlHeightSM,fontSize:e.contentFontSizeSM,padding:e.paddingXS,buttonPaddingHorizontal:e.paddingInlineSM,buttonPaddingVertical:0,borderRadius:e.borderRadiusSM,buttonIconOnlyFontSize:e.onlyIconSizeSM});return ud(t,`${e.componentCls}-sm`)},vw=e=>{const t=rt(e,{controlHeight:e.controlHeightLG,fontSize:e.contentFontSizeLG,buttonPaddingHorizontal:e.paddingInlineLG,buttonPaddingVertical:0,borderRadius:e.borderRadiusLG,buttonIconOnlyFontSize:e.onlyIconSizeLG});return ud(t,`${e.componentCls}-lg`)},yw=e=>{const{componentCls:t}=e;return{[t]:{[`&${t}-block`]:{width:"100%"}}}},$w=at("Button",e=>{const t=p0(e);return[pw(t),hw(t),bw(t),vw(t),yw(t),mw(t),sx(t)]},g0,{unitless:{fontWeight:!0,contentLineHeight:!0,contentLineHeightSM:!0,contentLineHeightLG:!0}});function Cw(e,t,n,r){const{focusElCls:o,focus:s,borderElCls:a}=n,l=a?"> *":"",c=["hover",s?"focus":null,"active"].filter(Boolean).map(u=>`&:${u} ${l}`).join(",");return{[`&-item:not(${t}-last-item)`]:{marginInlineEnd:e.calc(e.lineWidth).mul(-1).equal()},[`&-item:not(${r}-status-success)`]:{zIndex:2},"&-item":{[c]:{zIndex:3},...o?{[`&${o}`]:{zIndex:3}}:{},[`&[disabled] ${l}`]:{zIndex:0}}}}function Sw(e,t,n){const{borderElCls:r}=n,o=r?`> ${r}`:"";return{[`&-item:not(${t}-first-item):not(${t}-last-item) ${o}`]:{borderRadius:0},[`&-item:not(${t}-last-item)${t}-first-item`]:{[`& ${o}, &${e}-sm ${o}, &${e}-lg ${o}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`&-item:not(${t}-first-item)${t}-last-item`]:{[`& ${o}, &${e}-sm ${o}, &${e}-lg ${o}`]:{borderStartStartRadius:0,borderEndStartRadius:0}}}}function yo(e,t={focus:!0}){const{componentCls:n}=e,{componentCls:r}=t,o=r||n,s=`${o}-compact`;return{[s]:{...Cw(e,s,t,o),...Sw(o,s,t)}}}function xw(e,t,n){return{[`&-item:not(${t}-last-item)`]:{marginBottom:e.calc(e.lineWidth).mul(-1).equal()},[`&-item:not(${n}-status-success)`]:{zIndex:2},"&-item":{"&:hover,&:focus,&:active":{zIndex:3},"&[disabled]":{zIndex:0}}}}function ww(e,t){return{[`&-item:not(${t}-first-item):not(${t}-last-item)`]:{borderRadius:0},[`&-item${t}-first-item:not(${t}-last-item)`]:{[`&, &${e}-sm, &${e}-lg`]:{borderEndEndRadius:0,borderEndStartRadius:0}},[`&-item${t}-last-item:not(${t}-first-item)`]:{[`&, &${e}-sm, &${e}-lg`]:{borderStartStartRadius:0,borderStartEndRadius:0}}}}function Ew(e){const t=`${e.componentCls}-compact-vertical`;return{[t]:{...xw(e,t,e.componentCls),...ww(e.componentCls,t)}}}const Iw=e=>{const{antCls:t,componentCls:n,lineWidth:r,calc:o,colorBgContainer:s}=e,a=`${n}-variant-solid:not([disabled])`,l=o(r).mul(-1).equal(),[c,u]=At(t,"btn"),d=f=>({[`${n}-compact${f?"-vertical":""}-item`]:{[c("compact-connect-border-color")]:u("bg-color-hover"),[`&${a}`]:{transition:"none",[`& + ${a}:before`]:[{position:"absolute",backgroundColor:u("compact-connect-border-color"),content:'""'},f?{top:l,insetInline:l,height:r}:{insetBlock:l,insetInlineStart:l,width:r}],"&:hover:before":{display:"none"}}}});return[d(),d(!0),{[`${a}${n}-color-default`]:{[c("compact-connect-border-color")]:`color-mix(in srgb, ${u("bg-color-hover")} 75%, ${s})`}}]},Pw=Ug(["Button","compact"],e=>{const t=p0(e);return[yo(t),Ew(t),Iw(t)]},g0);function Rw(e){if(typeof e=="object"&&e){let t=e==null?void 0:e.delay;return t=!Number.isNaN(t)&&typeof t=="number"?t:0,{loading:t<=0,delay:t}}return{loading:!!e,delay:0}}const Mw={default:["default","outlined"],primary:["primary","solid"],dashed:["default","dashed"],link:["link","link"],text:["default","text"]},Nw=N.forwardRef((e,t)=>{const{_skipSemantic:n,loading:r=!1,prefixCls:o,color:s,variant:a,type:l,danger:c=!1,shape:u,size:d,disabled:f,className:m,rootClassName:p,children:g,icon:h,iconPosition:b,iconPlacement:$,ghost:y=!1,block:v=!1,htmlType:C="button",classNames:S,styles:x,style:w,autoInsertSpace:I,autoFocus:E,...R}=e,P=Vt(g),M=l||"default",{getPrefixCls:O,direction:A,autoInsertSpace:T,className:F,style:H,classNames:L,styles:B,loadingIcon:D,shape:k,color:W,variant:_}=dt("button"),X=u||k||"default",[U,j]=i.useMemo(()=>{if(s&&a)return[s,a];if(l||c){const ye=Mw[M]||[];return c?["danger",ye[1]]:ye}return W&&_?[W,_]:["default","outlined"]},[s,a,l,c,W,_,M]),[V,G]=i.useMemo(()=>y&&j==="solid"?[U,"outlined"]:[U,j],[U,j,y]),te=V==="danger",ee=te?"dangerous":V,ne=I??T??!0,Y=O("btn",o),[se,ue]=$w(Y),q=i.useContext(yn),oe=f??q,Z=i.useContext(Jh),J=i.useMemo(()=>Rw(r),[r]),[ae,we]=i.useState(J.loading),[de,ge]=i.useState(!1),be=i.useRef(null),me=qn(t,be),Ne=P.length===1&&!h&&!Ia(G),Ae=i.useRef(!0);N.useEffect(()=>(Ae.current=!1,()=>{Ae.current=!0}),[]),nt(()=>{let ye=null;J.delay>0?ye=setTimeout(()=>{ye=null,we(!0)},J.delay):we(J.loading);function ce(){ye&&(clearTimeout(ye),ye=null)}return ce},[J.delay,J.loading]),i.useEffect(()=>{if(!be.current||!ne)return;const ye=be.current.textContent||"";Ne&&Jl(ye)?de||ge(!0):de&&ge(!1)}),i.useEffect(()=>{E&&be.current&&be.current.focus()},[]);const Ee=N.useCallback(ye=>{var ce;if(ae||oe){ye.preventDefault();return}(ce=e.onClick)==null||ce.call(e,("href"in e,ye))},[e.onClick,ae,oe]),{compactSize:ze,compactItemClassnames:Re}=Un(Y,A),ve={large:"lg",small:"sm",middle:void 0,medium:void 0},fe=Jt(ye=>d??ze??Z??ye),Ce=fe?ve[fe]??"":"",He=ae?"loading":h,Ie=$??b??"start",re=yt(R,["navigate"]),$e={...e,type:M,color:V,variant:G,danger:te,shape:X,size:fe,disabled:oe,loading:ae,iconPlacement:Ie},[ke,De]=pt([n?void 0:L,S],[n?void 0:B,x],{props:$e}),ot=z(Y,se,ue,{[`${Y}-${X}`]:X!=="default"&&X!=="square"&&X,[`${Y}-${M}`]:M,[`${Y}-dangerous`]:c,[`${Y}-color-${ee}`]:ee,[`${Y}-variant-${G}`]:G,[`${Y}-${Ce}`]:Ce,[`${Y}-icon-only`]:!g&&g!==0&&!!He,[`${Y}-background-ghost`]:y&&!Ia(G),[`${Y}-loading`]:ae,[`${Y}-two-chinese-chars`]:de&&ne&&!ae,[`${Y}-block`]:v,[`${Y}-rtl`]:A==="rtl",[`${Y}-icon-end`]:Ie==="end"},Re,m,p,F,ke.root),qe={...De.root,...H,...w},ft={className:ke.icon,style:De.icon},Qe=ye=>N.createElement(e0,{prefixCls:Y,...ft},ye),st=N.createElement(ox,{existIcon:!!h,prefixCls:Y,loading:ae,mount:Ae.current,...ft}),lt=r&&typeof r=="object"&&r.icon||D;let Se;h&&!ae?Se=Qe(h):r&<?Se=Qe(lt):Se=st;const Be=vn(g)?rx(g,Ne&&ne,De.content,ke.content):null;if(re.href!==void 0)return N.createElement("a",{...re,className:z(ot,{[`${Y}-disabled`]:oe}),href:oe?void 0:re.href,style:qe,onClick:Ee,ref:me,tabIndex:oe?-1:0,"aria-disabled":oe},Se,Be);let Pe=N.createElement("button",{...R,type:C,className:ot,style:qe,onClick:Ee,disabled:oe,ref:me},Se,Be,Re&&N.createElement(Pw,{prefixCls:Y}));return Ia(G)||(Pe=N.createElement(Zh,{component:"Button",disabled:ae},Pe)),Pe}),On=Nw;On.Group=tx;On.__ANT_BUTTON=!0;const Na=e=>typeof(e==null?void 0:e.then)=="function",dd=e=>{const{type:t,children:n,prefixCls:r,buttonProps:o,close:s,autoFocus:a,emitEvent:l,isSilent:c,quitOnNullishReturnValue:u,actionFn:d}=e,f=i.useRef(!1),m=i.useRef(null),[p,g]=si(!1),h=(...y)=>{s==null||s(...y)};i.useEffect(()=>{let y=null;return a&&(y=setTimeout(()=>{var v;(v=m.current)==null||v.focus({preventScroll:!0})})),()=>{y&&clearTimeout(y)}},[a]);const b=y=>{Na(y)&&(g(!0),y.then((...v)=>{g(!1,!0),h.apply(void 0,v),f.current=!1},v=>{if(g(!1,!0),f.current=!1,!(c!=null&&c()))return Promise.reject(v)}))},$=y=>{if(f.current)return;if(f.current=!0,!d){h();return}let v;if(l){if(v=d(y),u&&!Na(v)){f.current=!1,h(y);return}}else if(d.length)v=d(s),f.current=!1;else if(v=d(),!Na(v)){h();return}b(v)};return i.createElement(On,{...nd(t),onClick:$,loading:p,prefixCls:r,...o,ref:m},n)},fs=N.createContext({}),{Provider:h0}=fs,xm=()=>{const{autoFocusButton:e,cancelButtonProps:t,cancelTextLocale:n,isSilent:r,mergedOkCancel:o,rootPrefixCls:s,close:a,onCancel:l,onConfirm:c,onClose:u}=i.useContext(fs);return o?N.createElement(dd,{isSilent:r,actionFn:l,close:(...d)=>{a==null||a(...d),c==null||c(!1),u==null||u()},autoFocus:e==="cancel",buttonProps:t,prefixCls:`${s}-btn`},n):null},wm=()=>{const{autoFocusButton:e,close:t,isSilent:n,okButtonProps:r,rootPrefixCls:o,okTextLocale:s,okType:a,onConfirm:l,onOk:c,onClose:u}=i.useContext(fs);return N.createElement(dd,{isSilent:n,type:a||"primary",actionFn:c,close:(...d)=>{t==null||t(...d),l==null||l(!0),u==null||u()},autoFocus:e==="ok",buttonProps:r,prefixCls:`${o}-btn`},s)},b0=i.createContext(null);let Tw=!1;function Ow(e){return Tw}const Em=[];function Aw(e,t){const[n]=i.useState(()=>Ot()?document.createElement("div"):null),r=i.useRef(!1),o=i.useContext(b0),[s,a]=i.useState(Em),l=o||(r.current?void 0:d=>{a(f=>[d,...f])});function c(){n.parentElement||document.body.appendChild(n),r.current=!0}function u(){var d;(d=n.parentElement)==null||d.removeChild(n),r.current=!1}return nt(()=>(e?o?o(c):c():u(),u),[e]),nt(()=>{s.length&&(s.forEach(d=>d()),a(Em))},[s]),[n,l]}function zw(){return document.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth}const Bw=`rc-util-locker-${Date.now()}`;let Im=0;function Lw(e){const t=!!e,[n]=i.useState(()=>(Im+=1,`${Bw}_${Im}`));nt(()=>{if(t){const r=Ch(document.body).width,o=zw();sr(` +html body { + overflow-y: hidden; + ${o?`width: calc(100% - ${r}px);`:""} +}`,n)}else Or(n);return()=>{Or(n)}},[t,n])}let Zn=[];function Hw(e,t){const n=Xn(),r=We(o=>{if(o.key==="Escape"&&!o.isComposing){const s=Zn[Zn.length-1]===n;t==null||t({top:s,event:o})}});i.useMemo(()=>{e&&!Zn.includes(n)?Zn.push(n):e||(Zn=Zn.filter(o=>o!==n))},[e,n]),i.useEffect(()=>{if(e)return window.addEventListener("keydown",r),()=>{Zn=Zn.filter(o=>o!==n),window.removeEventListener("keydown",r)}},[e,n])}const Pm=e=>e===!1?!1:!Ot()||!e?null:typeof e=="string"?document.querySelector(e):typeof e=="function"?e():e,Dw=i.forwardRef((e,t)=>{const{open:n,autoLock:r,getContainer:o,debug:s,autoDestroy:a=!0,children:l,onEsc:c}=e,[u,d]=i.useState(n),f=u||n;i.useEffect(()=>{(a||n)&&d(n)},[n,a]);const[m,p]=i.useState(()=>Pm(o));i.useEffect(()=>{const S=Pm(o);p(()=>S??null)});const[g,h]=Aw(f&&!m),b=m??g;Lw(r&&n&&Ot()&&(b===g||b===document.body)),Hw(n,c);let $=null;l&&dr(l)&&t&&($=Gn(l));const y=qn($,t);if(!f||!Ot()||m===void 0)return null;const v=b===!1||Ow();let C=l;return t&&(C=i.cloneElement(l,{ref:y})),i.createElement(b0.Provider,{value:h},v?C:Vn.createPortal(C,b))}),v0=i.createContext({});function Rm(e,t,n){let r=t;return!r&&n&&(r=`${e}-${n}`),r}function Mm(e,t){let n=e[`page${t?"Y":"X"}Offset`];const r=`scroll${t?"Top":"Left"}`;if(typeof n!="number"){const o=e.document;n=o.documentElement[r],typeof n!="number"&&(n=o.body[r])}return n}function Fw(e){const t=e.getBoundingClientRect(),n={left:t.left,top:t.top},r=e.ownerDocument,o=r.defaultView||r.parentWindow;return n.left+=Mm(o),n.top+=Mm(o,!0),n}function Nm(e,t=!1){if(Zu(e)){const n=e.nodeName.toLowerCase(),r=["input","select","textarea","button"].includes(n)||e.isContentEditable||n==="a"&&!!e.getAttribute("href"),o=e.getAttribute("tabindex"),s=Number(o);let a=null;return o&&!Number.isNaN(s)?a=s:r&&a===null&&(a=0),r&&e.disabled&&(a=null),a!==null&&(a>=0||t&&a<0)}return!1}function fd(e,t=!1){const n=[...e.querySelectorAll("*")].filter(r=>Nm(r,t));return Nm(e,t)&&n.unshift(e),n}function md(e,t){if(!e)return;e.focus(t);const{cursor:n}=t||{};if(n&&(e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement)){const r=e.value.length;switch(n){case"start":e.setSelectionRange(0,0);break;case"end":e.setSelectionRange(r,r);break;default:e.setSelectionRange(0,r)}}}let io=null,er=[];const tc=new Map,pd=new Map;function gd(){return er[er.length-1]}function _w(e){const t=gd();if(e&&t){let n;for(const[o,s]of tc.entries())if(s===t){n=o;break}const r=pd.get(n);return!!r&&(r===e||r.contains(e))}return!1}function kw(e){const{activeElement:t}=document;return e===t||e.contains(t)}function Ta(){const e=gd(),{activeElement:t}=document;if(!_w(t))if(e&&!kw(e)){const n=fd(e),r=n.includes(io)?io:n[0];r==null||r.focus({preventScroll:!0})}else io=t}function Tm(e){if(e.key==="Tab"){const{activeElement:t}=document,n=gd(),r=fd(n),o=r[r.length-1];e.shiftKey&&t===r[0]?io=o:!e.shiftKey&&t===o&&(io=r[0])}}function Vw(e,t){return e&&(tc.set(t,e),er=er.filter(n=>n!==e),er.push(e),window.addEventListener("focusin",Ta),window.addEventListener("keydown",Tm,!0),Ta()),()=>{io=null,er=er.filter(n=>n!==e),tc.delete(t),pd.delete(t),er.length===0&&(window.removeEventListener("focusin",Ta),window.removeEventListener("keydown",Tm,!0))}}function Ww(e,t){const n=Xn();return i.useEffect(()=>{if(e){const o=t();if(o)return Vw(o,n)}},[e,n]),[o=>{o&&pd.set(n,o)}]}const jw=i.memo(({children:e})=>e,(e,{shouldUpdate:t})=>!t);function hi(){return hi=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:n,className:r,style:o,title:s,ariaId:a,footer:l,closable:c,closeIcon:u,onClose:d,children:f,bodyStyle:m,bodyProps:p,modalRender:g,onMouseDown:h,onMouseUp:b,holderRef:$,visible:y,forceRender:v,width:C,height:S,classNames:x,styles:w,isFixedPos:I,focusTrap:E}=e,{panel:R}=N.useContext(v0),P=i.useRef(null),M=qn($,R,P),[O]=Ww(y&&I&&E!==!1,()=>P.current);N.useImperativeHandle(t,()=>({focus:()=>{var W;(W=P.current)==null||W.focus({preventScroll:!0})}}));const A={};C!==void 0&&(A.width=C),S!==void 0&&(A.height=S);const T=l?N.createElement("div",{className:z(`${n}-footer`,x==null?void 0:x.footer),style:{...w==null?void 0:w.footer}},l):null,F=s?N.createElement("div",{className:z(`${n}-header`,x==null?void 0:x.header),style:{...w==null?void 0:w.header}},N.createElement("div",{className:z(`${n}-title`,x==null?void 0:x.title),id:a,style:{...w==null?void 0:w.title}},s)):null,H=i.useMemo(()=>typeof c=="object"&&c!==null?c:c?{closeIcon:u??N.createElement("span",{className:`${n}-close-x`})}:{},[c,u,n]),L=cn(H,!0),B=typeof c=="object"&&c.disabled,D=c?N.createElement("button",hi({type:"button",onClick:d,"aria-label":"Close"},L,{className:`${n}-close`,disabled:B}),H.closeIcon):null,k=N.createElement("div",{className:z(`${n}-container`,x==null?void 0:x.container),style:w==null?void 0:w.container},D,F,N.createElement("div",hi({className:z(`${n}-body`,x==null?void 0:x.body),style:{...m,...w==null?void 0:w.body}},p),f),T);return N.createElement("div",{key:"dialog-element",role:"dialog","aria-labelledby":s?a:null,"aria-modal":"true",ref:M,style:{...o,...A},className:z(n,r),onMouseDown:h,onMouseUp:b,tabIndex:-1,onFocus:W=>{O(W.target)}},N.createElement(jw,{shouldUpdate:y||v},g?g(k):k))});function nc(){return nc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:n,title:r,style:o,className:s,visible:a,forceRender:l,destroyOnHidden:c,motionName:u,ariaId:d,onVisibleChanged:f,mousePosition:m}=e,p=i.useRef(null),g=i.useRef(null);i.useImperativeHandle(t,()=>({...g.current,inMotion:p.current.inMotion,enableMotion:p.current.enableMotion}));const[h,b]=i.useState(),$={};h&&($.transformOrigin=h);function y(){var C;if(!((C=p.current)!=null&&C.nativeElement))return;const v=Fw(p.current.nativeElement);b(m&&(m.x||m.y)?`${m.x-v.left}px ${m.y-v.top}px`:"")}return i.createElement(un,{visible:a,onVisibleChanged:f,onAppearPrepare:y,onEnterPrepare:y,forceRender:l,motionName:u,removeOnLeave:c,ref:p},({className:v,style:C},S)=>i.createElement(y0,nc({},e,{ref:g,title:r,ariaId:d,prefixCls:n,holderRef:S,style:{...C,...o,...$},className:z(s,v)})))});function rc(){return rc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:t,style:n,visible:r,maskProps:o,motionName:s,className:a}=e;return i.createElement(un,{key:"mask",visible:r,motionName:s,leavedClassName:`${t}-mask-hidden`},({className:l,style:c},u)=>i.createElement("div",rc({ref:u,style:{...c,...n},className:z(`${t}-mask`,l,a)},o)))};function Wo(){return Wo=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:t="rc-dialog",zIndex:n,visible:r=!1,focusTriggerAfterClose:o=!0,wrapStyle:s,wrapClassName:a,wrapProps:l,onClose:c,afterOpenChange:u,afterClose:d,transitionName:f,animation:m,closable:p=!0,mask:g=!0,maskTransitionName:h,maskAnimation:b,maskClosable:$=!0,maskStyle:y,maskProps:v,rootClassName:C,rootStyle:S,classNames:x,styles:w}=e,I=i.useRef(null),E=i.useRef(null),R=i.useRef(null),[P,M]=i.useState(r),[O,A]=i.useState(!1),T=Xn();function F(){cl(E.current,document.activeElement)||(I.current=document.activeElement)}function H(){var U;cl(E.current,document.activeElement)||(U=R.current)==null||U.focus()}function L(){if(M(!1),g&&I.current&&o){try{I.current.focus({preventScroll:!0})}catch{}I.current=null}P&&(d==null||d())}function B(U){U?H():L(),u==null||u(U)}function D(U){c==null||c(U)}const k=i.useRef(!1);let W=null;$&&(W=U=>{E.current===U.target&&k.current&&D(U)});function _(U){k.current=U.target===E.current}i.useEffect(()=>{if(r){if(k.current=!1,M(!0),F(),E.current){const U=getComputedStyle(E.current);A(U.position==="fixed")}}else P&&R.current.enableMotion()&&!R.current.inMotion()&&L()},[r]);const X={zIndex:n,...s,...w==null?void 0:w.wrapper,display:P?null:"none"};return i.createElement("div",Wo({className:z(`${t}-root`,C),style:S},cn(e,{data:!0})),i.createElement(Gw,{prefixCls:t,visible:g&&r,motionName:Rm(t,h,b),style:{zIndex:n,...y,...w==null?void 0:w.mask},maskProps:v,className:x==null?void 0:x.mask}),i.createElement("div",Wo({className:z(`${t}-wrap`,a,x==null?void 0:x.wrapper),ref:E,onClick:W,onMouseDown:_,style:X},l),i.createElement(qw,Wo({},e,{isFixedPos:O,ref:R,closable:p,ariaId:T,prefixCls:t,visible:r&&P,onClose:D,onVisibleChanged:B,motionName:Rm(t,f,m)}))))};function oc(){return oc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{visible:t,getContainer:n,forceRender:r,destroyOnHidden:o=!1,afterClose:s,closable:a,panelRef:l,keyboard:c=!0,onClose:u}=e,[d,f]=i.useState(t),m=i.useMemo(()=>({panel:l}),[l]),p=({top:g,event:h})=>{if(g&&c){h.stopPropagation(),u==null||u(h);return}};return i.useEffect(()=>{t&&f(!0)},[t]),!r&&o&&!d?null:i.createElement(v0.Provider,{value:m},i.createElement(Dw,{open:t||r||d,onEsc:p,autoDestroy:!1,getContainer:n,autoLock:t||d},i.createElement(Xw,oc({},e,{destroyOnHidden:o,afterClose:()=>{const g=a&&typeof a=="object"?a:{},{afterClose:h}=g||{};h==null||h(),s==null||s(),f(!1)}}))))},Sr="RC_FORM_INTERNAL_HOOKS",vt=()=>{Pt(!1,"Can not find FormContext. Please make sure you wrap Field under Form.")},fo=i.createContext({getFieldValue:vt,getFieldsValue:vt,getFieldError:vt,getFieldWarning:vt,getFieldsError:vt,isFieldsTouched:vt,isFieldTouched:vt,isFieldValidating:vt,isFieldsValidating:vt,resetFields:vt,setFields:vt,setFieldValue:vt,setFieldsValue:vt,validateFields:vt,submit:vt,getInternalHooks:()=>(vt(),{dispatch:vt,initEntityValue:vt,registerField:vt,useSubscribe:vt,setInitialValues:vt,destroyForm:vt,setCallbacks:vt,registerWatch:vt,getFields:vt,setValidateMessages:vt,setPreserve:vt,getInitialValue:vt})}),bi=i.createContext(null);function sc(e){return e==null?[]:Array.isArray(e)?e:[e]}function Kw(e){return e&&!!e._init}function ic(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",tel:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var ac=ic(),Yw=/%[sdj%]/g,Qw=function(){};function lc(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function ln(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r=s)return l;switch(l){case"%s":return String(n[o++]);case"%d":return Number(n[o++]);case"%j":try{return JSON.stringify(n[o++])}catch{return"[Circular]"}break;default:return l}});return a}return e}function Zw(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"||e==="tel"}function Rt(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Zw(t)&&typeof e=="string"&&!e)}function Jw(e,t,n){var r=[],o=0,s=e.length;function a(l){r.push.apply(r,tr(l||[])),o++,o===s&&n(r)}e.forEach(function(l){t(l,a)})}function Om(e,t,n){var r=0,o=e.length;function s(a){if(a&&a.length){n(a);return}var l=r;r=r+1,lt.max?o.push(ln(s.messages[f].max,t.fullField,t.max)):l&&c&&(dt.max)&&o.push(ln(s.messages[f].range,t.fullField,t.min,t.max))},$0=function(t,n,r,o,s,a){t.required&&(!r.hasOwnProperty(t.field)||Rt(n,a||t.type))&&o.push(ln(s.messages.required,t.fullField))},_s;const aE=function(){if(_s)return _s;var e="[a-fA-F\\d:]",t=function(x){return x&&x.includeBoundaries?"(?:(?<=\\s|^)(?=".concat(e,")|(?<=").concat(e,")(?=\\s|$))"):""},n="(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}",r="[a-fA-F\\d]{1,4}",o=["(?:".concat(r,":){7}(?:").concat(r,"|:)"),"(?:".concat(r,":){6}(?:").concat(n,"|:").concat(r,"|:)"),"(?:".concat(r,":){5}(?::").concat(n,"|(?::").concat(r,"){1,2}|:)"),"(?:".concat(r,":){4}(?:(?::").concat(r,"){0,1}:").concat(n,"|(?::").concat(r,"){1,3}|:)"),"(?:".concat(r,":){3}(?:(?::").concat(r,"){0,2}:").concat(n,"|(?::").concat(r,"){1,4}|:)"),"(?:".concat(r,":){2}(?:(?::").concat(r,"){0,3}:").concat(n,"|(?::").concat(r,"){1,5}|:)"),"(?:".concat(r,":){1}(?:(?::").concat(r,"){0,4}:").concat(n,"|(?::").concat(r,"){1,6}|:)"),"(?::(?:(?::".concat(r,"){0,5}:").concat(n,"|(?::").concat(r,"){1,7}|:))")],s="(?:%[0-9a-zA-Z]{1,})?",a="(?:".concat(o.join("|"),")").concat(s),l=new RegExp("(?:^".concat(n,"$)|(?:^").concat(a,"$)")),c=new RegExp("^".concat(n,"$")),u=new RegExp("^".concat(a,"$")),d=function(x){return x&&x.exact?l:new RegExp("(?:".concat(t(x)).concat(n).concat(t(x),")|(?:").concat(t(x)).concat(a).concat(t(x),")"),"g")};d.v4=function(S){return S&&S.exact?c:new RegExp("".concat(t(S)).concat(n).concat(t(S)),"g")},d.v6=function(S){return S&&S.exact?u:new RegExp("".concat(t(S)).concat(a).concat(t(S)),"g")};var f="(?:(?:[a-z]+:)?//)",m="(?:\\S+(?::\\S*)?@)?",p=d.v4().source,g=d.v6().source,h="(?:(?:[a-z\\u00a1-\\uffff0-9][-_]*)*[a-z\\u00a1-\\uffff0-9]+)",b="(?:\\.(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)*",$="(?:\\.(?:[a-z\\u00a1-\\uffff]{2,}))",y="(?::\\d{2,5})?",v='(?:[/?#][^\\s"]*)?',C="(?:".concat(f,"|www\\.)").concat(m,"(?:localhost|").concat(p,"|").concat(g,"|").concat(h).concat(b).concat($,")").concat(y).concat(v);return _s=new RegExp("(?:^".concat(C,"$)"),"i"),_s};var Oa={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,tel:/^(\+[0-9]{1,3}[-\s\u2011]?)?(\([0-9]{1,4}\)[-\s\u2011]?)?([0-9]+[-\s\u2011]?)*[0-9]+$/,hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},Lo={integer:function(t){return Lo.number(t)&&parseInt(t,10)===t},float:function(t){return Lo.number(t)&&!Lo.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch{return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return Zt(t)==="object"&&!Lo.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&t.length<=320&&!!t.match(Oa.email)},tel:function(t){return typeof t=="string"&&t.length<=32&&!!t.match(Oa.tel)},url:function(t){return typeof t=="string"&&t.length<=2048&&!!t.match(aE())},hex:function(t){return typeof t=="string"&&!!t.match(Oa.hex)}},lE=function(t,n,r,o,s){if(t.required&&n===void 0){$0(t,n,r,o,s);return}var a=["integer","float","array","regexp","object","method","email","tel","number","date","url","hex"],l=t.type;a.indexOf(l)>-1?Lo[l](n)||o.push(ln(s.messages.types[l],t.fullField,t.type)):l&&Zt(n)!==t.type&&o.push(ln(s.messages.types[l],t.fullField,t.type))},cE=function(t,n,r,o,s){(/^\s+$/.test(n)||n==="")&&o.push(ln(s.messages.whitespace,t.fullField))};const ut={required:$0,whitespace:cE,type:lE,range:iE,enum:oE,pattern:sE};var uE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n)&&!t.required)return r();ut.required(t,n,o,a,s)}r(a)},dE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(n==null&&!t.required)return r();ut.required(t,n,o,a,s,"array"),n!=null&&(ut.type(t,n,o,a,s),ut.range(t,n,o,a,s))}r(a)},fE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n)&&!t.required)return r();ut.required(t,n,o,a,s),n!==void 0&&ut.type(t,n,o,a,s)}r(a)},mE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n,"date")&&!t.required)return r();if(ut.required(t,n,o,a,s),!Rt(n,"date")){var c;n instanceof Date?c=n:c=new Date(n),ut.type(t,c,o,a,s),c&&ut.range(t,c.getTime(),o,a,s)}}r(a)},pE="enum",gE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n)&&!t.required)return r();ut.required(t,n,o,a,s),n!==void 0&&ut[pE](t,n,o,a,s)}r(a)},hE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n)&&!t.required)return r();ut.required(t,n,o,a,s),n!==void 0&&(ut.type(t,n,o,a,s),ut.range(t,n,o,a,s))}r(a)},bE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n)&&!t.required)return r();ut.required(t,n,o,a,s),n!==void 0&&(ut.type(t,n,o,a,s),ut.range(t,n,o,a,s))}r(a)},vE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n)&&!t.required)return r();ut.required(t,n,o,a,s),n!==void 0&&ut.type(t,n,o,a,s)}r(a)},yE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(n===""&&(n=void 0),Rt(n)&&!t.required)return r();ut.required(t,n,o,a,s),n!==void 0&&(ut.type(t,n,o,a,s),ut.range(t,n,o,a,s))}r(a)},$E=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n)&&!t.required)return r();ut.required(t,n,o,a,s),n!==void 0&&ut.type(t,n,o,a,s)}r(a)},CE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n,"string")&&!t.required)return r();ut.required(t,n,o,a,s),Rt(n,"string")||ut.pattern(t,n,o,a,s)}r(a)},SE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n)&&!t.required)return r();ut.required(t,n,o,a,s),Rt(n)||ut.type(t,n,o,a,s)}r(a)},xE=function(t,n,r,o,s){var a=[],l=Array.isArray(n)?"array":Zt(n);ut.required(t,n,o,a,s,l),r(a)},wE=function(t,n,r,o,s){var a=[],l=t.required||!t.required&&o.hasOwnProperty(t.field);if(l){if(Rt(n,"string")&&!t.required)return r();ut.required(t,n,o,a,s,"string"),Rt(n,"string")||(ut.type(t,n,o,a,s),ut.range(t,n,o,a,s),ut.pattern(t,n,o,a,s),t.whitespace===!0&&ut.whitespace(t,n,o,a,s))}r(a)},ks=function(t,n,r,o,s){var a=t.type,l=[],c=t.required||!t.required&&o.hasOwnProperty(t.field);if(c){if(Rt(n,a)&&!t.required)return r();ut.required(t,n,o,l,s,a),Rt(n,a)||ut.type(t,n,o,l,s)}r(l)};const jo={string:wE,method:vE,number:yE,boolean:fE,regexp:SE,integer:bE,float:hE,array:dE,object:$E,enum:gE,pattern:CE,date:mE,url:ks,hex:ks,email:ks,tel:ks,required:xE,any:uE};var ms=function(){function e(t){Pn(this,e),Ve(this,"rules",null),Ve(this,"_messages",ac),this.define(t)}return In(e,[{key:"define",value:function(n){var r=this;if(!n)throw new Error("Cannot configure a schema with no rules");if(Zt(n)!=="object"||Array.isArray(n))throw new Error("Rules must be an object");this.rules={},Object.keys(n).forEach(function(o){var s=n[o];r.rules[o]=Array.isArray(s)?s:[s]})}},{key:"messages",value:function(n){return n&&(this._messages=Bm(ic(),n)),this._messages}},{key:"validate",value:function(n){var r=this,o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:function(){},a=n,l=o,c=s;if(typeof l=="function"&&(c=l,l={}),!this.rules||Object.keys(this.rules).length===0)return c&&c(null,a),Promise.resolve(a);function u(g){var h=[],b={};function $(v){if(Array.isArray(v)){var C;h=(C=h).concat.apply(C,tr(v))}else h.push(v)}for(var y=0;y0&&arguments[0]!==void 0?arguments[0]:[],I=Array.isArray(w)?w:[w];!l.suppressWarning&&I.length&&e.warning("async-validator:",I),I.length&&b.message!==void 0&&b.message!==null&&(I=[].concat(b.message));var E=I.map(zm(b,a));if(l.first&&E.length)return p[b.field]=1,h(E);if(!$)h(E);else{if(b.required&&!g.value)return b.message!==void 0?E=[].concat(b.message).map(zm(b,a)):l.error&&(E=[l.error(b,ln(l.messages.required,b.field))]),h(E);var R={};b.defaultField&&Object.keys(g.value).map(function(O){R[O]=b.defaultField}),R=St(St({},R),g.rule.fields);var P={};Object.keys(R).forEach(function(O){var A=R[O],T=Array.isArray(A)?A:[A];P[O]=T.map(y.bind(null,O))});var M=new e(P);M.messages(l.messages),g.rule.options&&(g.rule.options.messages=l.messages,g.rule.options.error=l.error),M.validate(g.value,g.rule.options||l,function(O){var A=[];E&&E.length&&A.push.apply(A,tr(E)),O&&O.length&&A.push.apply(A,tr(O)),h(A.length?A:null)})}}var C;if(b.asyncValidator)C=b.asyncValidator(b,g.value,v,g.source,l);else if(b.validator){try{C=b.validator(b,g.value,v,g.source,l)}catch(w){var S,x;(S=(x=console).error)===null||S===void 0||S.call(x,w),l.suppressValidatorError||setTimeout(function(){throw w},0),v(w.message)}C===!0?v():C===!1?v(typeof b.message=="function"?b.message(b.fullField||b.field):b.message||"".concat(b.fullField||b.field," fails")):C instanceof Array?v(C):C instanceof Error&&v(C.message)}C&&C.then&&C.then(function(){return v()},function(w){return v(w)})},function(g){u(g)},a)}},{key:"getType",value:function(n){if(n.type===void 0&&n.pattern instanceof RegExp&&(n.type="pattern"),typeof n.validator!="function"&&n.type&&!jo.hasOwnProperty(n.type))throw new Error(ln("Unknown rule type %s",n.type));return n.type||"string"}},{key:"getValidationMethod",value:function(n){if(typeof n.validator=="function")return n.validator;var r=Object.keys(n),o=r.indexOf("message");return o!==-1&&r.splice(o,1),r.length===1&&r[0]==="required"?jo.required:jo[this.getType(n)]||void 0}}]),e}();Ve(ms,"register",function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");jo[t]=n});Ve(ms,"warning",Qw);Ve(ms,"messages",ac);Ve(ms,"validators",jo);const Kt="'${name}' is not a valid ${type}",C0={default:"Validation error on field '${name}'",required:"'${name}' is required",enum:"'${name}' must be one of [${enum}]",whitespace:"'${name}' cannot be empty",date:{format:"'${name}' is invalid for format date",parse:"'${name}' could not be parsed as date",invalid:"'${name}' is invalid date"},types:{string:Kt,method:Kt,array:Kt,object:Kt,number:Kt,date:Kt,boolean:Kt,integer:Kt,float:Kt,regexp:Kt,email:Kt,tel:Kt,url:Kt,hex:Kt},string:{len:"'${name}' must be exactly ${len} characters",min:"'${name}' must be at least ${min} characters",max:"'${name}' cannot be longer than ${max} characters",range:"'${name}' must be between ${min} and ${max} characters"},number:{len:"'${name}' must equal ${len}",min:"'${name}' cannot be less than ${min}",max:"'${name}' cannot be greater than ${max}",range:"'${name}' must be between ${min} and ${max}"},array:{len:"'${name}' must be exactly ${len} in length",min:"'${name}' cannot be less than ${min} in length",max:"'${name}' cannot be greater than ${max} in length",range:"'${name}' must be between ${min} and ${max} in length"},pattern:{mismatch:"'${name}' does not match pattern ${pattern}"}},Lm=ms;function EE(e,t){return e.replace(/\\?\$\{\w+\}/g,n=>{if(n.startsWith("\\"))return n.slice(1);const r=n.slice(2,-1);return t[r]})}const Hm="CODE_LOGIC_ERROR";async function cc(e,t,n,r,o){const s={...n};if(delete s.ruleIndex,Lm.warning=()=>{},s.validator){const m=s.validator;s.validator=(...p)=>{try{return m(...p)}catch(g){return console.error(g),Promise.reject(Hm)}}}let a=null;s&&s.type==="array"&&s.defaultField&&(a=s.defaultField,delete s.defaultField);const l=new Lm({[e]:[s]}),c=Jr(C0,r.validateMessages);l.messages(c);let u=[];try{await Promise.resolve(l.validate({[e]:t},{...r}))}catch(m){m.errors&&(u=m.errors.map(({message:p},g)=>{const h=p===Hm?c.default:p;return i.isValidElement(h)?i.cloneElement(h,{key:`error_${g}`}):h}))}if(!u.length&&a&&Array.isArray(t)&&t.length>0)return(await Promise.all(t.map((p,g)=>cc(`${e}.${g}`,p,a,r,o)))).reduce((p,g)=>[...p,...g],[]);const d={...n,name:e,enum:(n.enum||[]).join(", "),...o};return u.map(m=>typeof m=="string"?EE(m,d):m)}function IE(e,t,n,r,o,s){const a=e.join("."),l=n.map((u,d)=>{const f=u.validator,m={...u,ruleIndex:d};return f&&(m.validator=(p,g,h)=>{let b=!1;const y=f(p,g,(...v)=>{Promise.resolve().then(()=>{Pt(!b,"Your validator function has already return a promise. `callback` will be ignored."),b||h(...v)})});b=y&&typeof y.then=="function"&&typeof y.catch=="function",Pt(b,"`callback` is deprecated. Please return a promise instead."),b&&y.then(()=>{h()}).catch(v=>{h(v||" ")})}),m}).sort(({warningOnly:u,ruleIndex:d},{warningOnly:f,ruleIndex:m})=>!!u==!!f?d-m:u?1:-1);let c;if(o===!0)c=new Promise(async(u,d)=>{for(let f=0;fcc(a,t,d,r,s).then(f=>({errors:f,rule:d})));c=(o?RE(u):PE(u)).then(d=>Promise.reject(d))}return c.catch(u=>u),c}async function PE(e){return Promise.all(e).then(t=>[].concat(...t))}async function RE(e){let t=0;return new Promise(n=>{e.forEach(r=>{r.then(o=>{o.errors.length&&n([o]),t+=1,t===e.length&&n([])})})})}function wt(e){return sc(e)}function Dm(e,t){let n={};return t.forEach(r=>{const o=xn(e,r);n=gn(n,r,o)}),n}function ao(e,t,n=!1){return e&&e.some(r=>vi(t,r,n))}function vi(e,t,n=!1){return!e||!t||!n&&e.length!==t.length?!1:t.every((r,o)=>e[o]===r)}function ME(e,t){if(e===t)return!0;if(!e&&t||e&&!t||!e||!t||typeof e!="object"||typeof t!="object")return!1;const n=Object.keys(e),r=Object.keys(t);return[...new Set([...n,...r])].every(s=>{const a=e[s],l=t[s];return typeof a=="function"&&typeof l=="function"?!0:a===l})}function NE(e,...t){const n=t[0];return n&&n.target&&typeof n.target=="object"&&e in n.target?n.target[e]:n}function Fm(e,t,n){const{length:r}=e;if(t<0||t>=r||n<0||n>=r)return e;const o=e[t],s=t-n;return s>0?[...e.slice(0,n),o,...e.slice(n,t),...e.slice(t+1,r)]:s<0?[...e.slice(0,t),...e.slice(t+1,n+1),o,...e.slice(n+1,r)]:e}function uc(){return uc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{preserve:n,isListField:r,name:o}=this.props;this.cancelRegisterFunc&&this.cancelRegisterFunc(r,n,wt(o)),this.cancelRegisterFunc=null});le(this,"getNamePath",()=>{const{name:n,fieldContext:r}=this.props,{prefixName:o=[]}=r;return n!==void 0?[...o,...n]:[]});le(this,"getRules",()=>{const{rules:n=[],fieldContext:r}=this.props;return n.map(o=>typeof o=="function"?o(r):o)});le(this,"refresh",()=>{this.mounted&&this.setState(({resetCount:n})=>({resetCount:n+1}))});le(this,"metaCache",null);le(this,"triggerMetaEvent",n=>{const{onMetaChange:r}=this.props;if(r){const o={...this.getMeta(),destroy:n};ar(this.metaCache,o)||r(o),this.metaCache=o}else this.metaCache=null});le(this,"onStoreChange",(n,r,o)=>{const{shouldUpdate:s,dependencies:a=[],onReset:l}=this.props,{store:c}=o,u=this.getNamePath(),d=this.getValue(n),f=this.getValue(c),m=r&&ao(r,u);switch(o.type==="valueUpdate"&&o.source==="external"&&!ar(d,f)&&(this.touched=!0,this.dirty=!0,this.validatePromise=null,this.errors=gr,this.warnings=To,this.triggerMetaEvent()),o.type){case"reset":if(!r||m){this.touched=!1,this.dirty=!1,this.validatePromise=void 0,this.errors=gr,this.warnings=To,this.triggerMetaEvent(),l==null||l(),this.refresh();return}break;case"remove":{if(s&&Aa(s,n,c,d,f,o)){this.reRender();return}break}case"setField":{const{data:p}=o;if(m){"touched"in p&&(this.touched=p.touched),"validating"in p&&!("originRCField"in p)&&(this.validatePromise=p.validating?Promise.resolve([]):null),"errors"in p&&(this.errors=p.errors||gr),"warnings"in p&&(this.warnings=p.warnings||To),this.dirty=!0,this.triggerMetaEvent(),this.reRender();return}else if("value"in p&&ao(r,u,!0)){this.reRender();return}if(s&&!u.length&&Aa(s,n,c,d,f,o)){this.reRender();return}break}case"dependenciesUpdate":{if(a.map(wt).some(g=>ao(o.relatedFields,g))){this.reRender();return}break}default:if(m||(!a.length||u.length||s)&&Aa(s,n,c,d,f,o)){this.reRender();return}break}s===!0&&this.reRender()});le(this,"validateRules",n=>{const r=this.getNamePath(),o=this.getValue(),{triggerName:s,validateOnly:a=!1}=n||{},l=Promise.resolve().then(async()=>{if(!this.mounted)return[];const{validateFirst:c=!1,messageVariables:u,validateDebounce:d}=this.props;let f=this.getRules();if(s&&(f=f.filter(p=>p).filter(p=>{const{validateTrigger:g}=p;return g?sc(g).includes(s):!0})),d&&s&&(await new Promise(p=>{setTimeout(p,d)}),this.validatePromise!==l))return[];const m=IE(r,o,f,n,c,u);return m.catch(p=>p).then((p=gr)=>{var g;if(this.validatePromise===l){this.validatePromise=null;const h=[],b=[];(g=p.forEach)==null||g.call(p,({rule:{warningOnly:$},errors:y=gr})=>{$?b.push(...y):h.push(...y)}),this.errors=h,this.warnings=b,this.triggerMetaEvent(),this.reRender()}}),m});return a||(this.validatePromise=l,this.dirty=!0,this.errors=gr,this.warnings=To,this.triggerMetaEvent(),this.reRender()),l});le(this,"isFieldValidating",()=>!!this.validatePromise);le(this,"isFieldTouched",()=>this.touched);le(this,"isFieldDirty",()=>{if(this.dirty||this.props.initialValue!==void 0)return!0;const{fieldContext:n}=this.props,{getInitialValue:r}=n.getInternalHooks(Sr);return r(this.getNamePath())!==void 0});le(this,"getErrors",()=>this.errors);le(this,"getWarnings",()=>this.warnings);le(this,"isListField",()=>this.props.isListField);le(this,"isList",()=>this.props.isList);le(this,"isPreserve",()=>this.props.preserve);le(this,"getMeta",()=>(this.prevValidating=this.isFieldValidating(),{touched:this.isFieldTouched(),validating:this.prevValidating,errors:this.errors,warnings:this.warnings,name:this.getNamePath(),validated:this.validatePromise===null}));le(this,"getOnlyChild",n=>{if(typeof n=="function"){const o=this.getMeta();return{...this.getOnlyChild(n(this.getControlled(),o,this.props.fieldContext)),isFunction:!0}}const r=Vt(n);return r.length!==1||!i.isValidElement(r[0])?{child:r,isFunction:!1}:{child:r[0],isFunction:!1}});le(this,"getValue",n=>{const{getFieldsValue:r}=this.props.fieldContext,o=this.getNamePath();return xn(n||r(!0),o)});le(this,"getControlled",(n={})=>{const{name:r,trigger:o="onChange",validateTrigger:s,getValueFromEvent:a,normalize:l,valuePropName:c="value",getValueProps:u,fieldContext:d}=this.props,f=s!==void 0?s:d.validateTrigger,m=this.getNamePath(),{getInternalHooks:p,getFieldsValue:g}=d,{dispatch:h}=p(Sr),b=this.getValue(),$=u||(x=>({[c]:x})),y=n[o],v=r!==void 0?$(b):{},C={...n,...v};return C[o]=(...x)=>{this.touched=!0,this.dirty=!0,this.triggerMetaEvent();let w;a?w=a(...x):w=NE(c,...x),l&&(w=l(w,b,g(!0))),w!==b&&h({type:"updateValue",namePath:m,value:w}),y&&y(...x)},sc(f||[]).forEach(x=>{const w=C[x];C[x]=(...I)=>{w&&w(...I);const{rules:E}=this.props;E&&E.length&&h({type:"validateField",namePath:m,triggerName:x})}}),C});if(n.fieldContext){const{getInternalHooks:r}=n.fieldContext,{initEntityValue:o}=r(Sr);o(this)}}componentDidMount(){const{shouldUpdate:n,fieldContext:r}=this.props;if(this.mounted=!0,r){const{getInternalHooks:o}=r,{registerField:s}=o(Sr);this.cancelRegisterFunc=s(this)}n===!0&&this.reRender()}componentWillUnmount(){this.cancelRegister(),this.triggerMetaEvent(!0),this.mounted=!1}reRender(){this.mounted&&this.forceUpdate()}render(){const{resetCount:n}=this.state,{children:r}=this.props,{child:o,isFunction:s}=this.getOnlyChild(r);let a;return s?a=o:i.isValidElement(o)?a=i.cloneElement(o,this.getControlled(o.props)):(Pt(!o,"`children` of Field is not validate ReactElement."),a=o),i.createElement(i.Fragment,{key:n},a)}}le(S0,"contextType",fo);function x0({name:e,...t}){const n=i.useContext(fo),r=i.useContext(bi),o=e!==void 0?wt(e):void 0,s=t.isListField??!!r;let a="keep";return s||(a=`_${(o||[]).join("_")}`),i.createElement(S0,uc({key:a,name:o,isListField:s},t,{fieldContext:n}))}function TE({name:e,initialValue:t,children:n,rules:r,validateTrigger:o,isListField:s}){const a=i.useContext(fo),l=i.useContext(bi),u=i.useRef({keys:[],id:0}).current,d=i.useMemo(()=>[...wt(a.prefixName)||[],...wt(e)],[a.prefixName,e]),f=i.useMemo(()=>({...a,prefixName:d}),[a,d]),m=i.useMemo(()=>({getKey:g=>{const h=d.length,b=g[h];return[u.keys[b],g.slice(h+1)]}}),[u,d]);if(typeof n!="function")return Pt(!1,"Form.List only accepts function as children."),null;const p=(g,h,{source:b})=>b==="internal"?!1:g!==h;return i.createElement(bi.Provider,{value:m},i.createElement(fo.Provider,{value:f},i.createElement(x0,{name:[],shouldUpdate:p,rules:r,validateTrigger:o,initialValue:t,isList:!0,isListField:s??!!l},({value:g=[],onChange:h},b)=>{const{getFieldValue:$}=a,y=()=>$(d||[])||[],v={add:(S,x)=>{const w=y();x>=0&&x<=w.length?(u.keys=[...u.keys.slice(0,x),u.id,...u.keys.slice(x)],h([...w.slice(0,x),S,...w.slice(x)])):(u.keys=[...u.keys,u.id],h([...w,S])),u.id+=1},remove:S=>{const x=y(),w=new Set(Array.isArray(S)?S:[S]);w.size<=0||(u.keys=u.keys.filter((I,E)=>!w.has(E)),h(x.filter((I,E)=>!w.has(E))))},move(S,x){if(S===x)return;const w=y();S<0||S>=w.length||x<0||x>=w.length||(u.keys=Fm(u.keys,S,x),h(Fm(w,S,x)))}};let C=g||[];return Array.isArray(C)||(C=[]),n(C.map((S,x)=>{let w=u.keys[x];return w===void 0&&(u.keys[x]=u.id,w=u.keys[x],u.id+=1),{name:x,key:w,isListField:!0}}),v,b)})))}function OE(e){let t=!1,n=e.length;const r=[];return e.length?new Promise((o,s)=>{e.forEach((a,l)=>{a.catch(c=>(t=!0,c)).then(c=>{n-=1,r[l]=c,!(n>0)&&(t&&s(r),o(r))})})}):Promise.resolve([])}const dc="__@field_split__";function Vs(e){return e.map(t=>`${typeof t}:${t}`).join(dc)}class jr{constructor(){le(this,"kvs",new Map)}set(t,n){this.kvs.set(Vs(t),n)}get(t){return this.kvs.get(Vs(t))}getAsPrefix(t){const n=Vs(t),r=n+dc,o=[],s=this.kvs.get(n);return s!==void 0&&o.push(s),this.kvs.forEach((a,l)=>{l.startsWith(r)&&o.push(a)}),o}update(t,n){const r=this.get(t),o=n(r);o?this.set(t,o):this.delete(t)}delete(t){this.kvs.delete(Vs(t))}map(t){return[...this.kvs.entries()].map(([n,r])=>{const o=n.split(dc);return t({key:o.map(s=>{const[,a,l]=s.match(/^([^:]*):(.*)$/);return a==="number"?Number(l):l}),value:r})})}toJSON(){const t={};return this.map(({key:n,value:r})=>(t[n.join(".")]=r,null)),t}}const AE=e=>{const t=new MessageChannel;t.port1.onmessage=e,t.port2.postMessage(null)};class zE{constructor(t){le(this,"namePathList",[]);le(this,"taskId",0);le(this,"watcherList",new Set);le(this,"form");this.form=t}register(t){return this.watcherList.add(t),()=>{this.watcherList.delete(t)}}notify(t){t.forEach(n=>{this.namePathList.every(r=>!vi(r,n))&&this.namePathList.push(n)}),this.doBatch()}doBatch(){this.taskId+=1;const t=this.taskId;AE(()=>{if(t===this.taskId&&this.watcherList.size){const n=this.form.getForm(),r=n.getFieldsValue(),o=n.getFieldsValue(!0);this.watcherList.forEach(s=>{s(r,o,this.namePathList)}),this.namePathList=[]}})}}class BE{constructor(t){le(this,"formHooked",!1);le(this,"forceRootUpdate");le(this,"subscribable",!0);le(this,"store",{});le(this,"fieldEntities",[]);le(this,"initialValues",{});le(this,"callbacks",{});le(this,"validateMessages",null);le(this,"preserve",null);le(this,"lastValidatePromise",null);le(this,"watcherCenter",new zE(this));le(this,"getForm",()=>({getFieldValue:this.getFieldValue,getFieldsValue:this.getFieldsValue,getFieldError:this.getFieldError,getFieldWarning:this.getFieldWarning,getFieldsError:this.getFieldsError,isFieldsTouched:this.isFieldsTouched,isFieldTouched:this.isFieldTouched,isFieldValidating:this.isFieldValidating,isFieldsValidating:this.isFieldsValidating,resetFields:this.resetFields,setFields:this.setFields,setFieldValue:this.setFieldValue,setFieldsValue:this.setFieldsValue,validateFields:this.validateFields,submit:this.submit,_init:!0,getInternalHooks:this.getInternalHooks}));le(this,"getInternalHooks",t=>t===Sr?(this.formHooked=!0,{dispatch:this.dispatch,initEntityValue:this.initEntityValue,registerField:this.registerField,useSubscribe:this.useSubscribe,setInitialValues:this.setInitialValues,destroyForm:this.destroyForm,setCallbacks:this.setCallbacks,setValidateMessages:this.setValidateMessages,getFields:this.getFields,setPreserve:this.setPreserve,getInitialValue:this.getInitialValue,registerWatch:this.registerWatch}):(Pt(!1,"`getInternalHooks` is internal usage. Should not call directly."),null));le(this,"useSubscribe",t=>{this.subscribable=t});le(this,"prevWithoutPreserves",null);le(this,"setInitialValues",(t,n)=>{var r;if(this.initialValues=t||{},n){let o=Jr(t,this.store);(r=this.prevWithoutPreserves)==null||r.map(({key:s})=>{o=gn(o,s,xn(t,s))}),this.prevWithoutPreserves=null,this.updateStore(o)}});le(this,"destroyForm",t=>{if(t)this.updateStore({});else{const n=new jr;this.getFieldEntities(!0).forEach(r=>{this.isMergedPreserve(r.isPreserve())||n.set(r.getNamePath(),!0)}),this.prevWithoutPreserves=n}});le(this,"getInitialValue",t=>{const n=xn(this.initialValues,t);return t.length?Jr(n):n});le(this,"setCallbacks",t=>{this.callbacks=t});le(this,"setValidateMessages",t=>{this.validateMessages=t});le(this,"setPreserve",t=>{this.preserve=t});le(this,"registerWatch",t=>this.watcherCenter.register(t));le(this,"notifyWatch",(t=[])=>{this.watcherCenter.notify(t)});le(this,"timeoutId",null);le(this,"warningUnhooked",()=>{});le(this,"updateStore",t=>{this.store=t});le(this,"getFieldEntities",(t=!1)=>t?this.fieldEntities.filter(n=>n.getNamePath().length):this.fieldEntities);le(this,"getFieldsMap",(t=!1)=>{const n=new jr;return this.getFieldEntities(t).forEach(r=>{const o=r.getNamePath();n.set(o,r)}),n});le(this,"getFieldEntitiesForNamePathList",(t,n=!1)=>{if(!t)return this.getFieldEntities(!0);const r=this.getFieldsMap(!0);return n?t.flatMap(o=>{const s=wt(o),a=r.getAsPrefix(s);return a.length?a:[{INVALIDATE_NAME_PATH:s}]}):t.map(o=>{const s=wt(o);return r.get(s)||{INVALIDATE_NAME_PATH:wt(o)}})});le(this,"getFieldsValue",(t,n)=>{this.warningUnhooked();let r,o;if(t===!0||Array.isArray(t)?(r=t,o=n):t&&typeof t=="object"&&(o=t.filter),r===!0&&!o)return this.store;const s=this.getFieldEntitiesForNamePathList(Array.isArray(r)?r:null,!0),a=[],l=[];s.forEach(u=>{var f;const d=u.INVALIDATE_NAME_PATH||u.getNamePath();if((f=u.isList)!=null&&f.call(u)){l.push(d);return}if(!o)a.push(d);else{const m="getMeta"in u?u.getMeta():null;o(m)&&a.push(d)}});let c=Dm(this.store,a.map(wt));return l.forEach(u=>{xn(c,u)||(c=gn(c,u,[]))}),c});le(this,"getFieldValue",t=>{this.warningUnhooked();const n=wt(t);return xn(this.store,n)});le(this,"getFieldsError",t=>(this.warningUnhooked(),this.getFieldEntitiesForNamePathList(t).map((r,o)=>r&&!r.INVALIDATE_NAME_PATH?{name:r.getNamePath(),errors:r.getErrors(),warnings:r.getWarnings()}:{name:wt(t[o]),errors:[],warnings:[]})));le(this,"getFieldError",t=>{this.warningUnhooked();const n=wt(t);return this.getFieldsError([n])[0].errors});le(this,"getFieldWarning",t=>{this.warningUnhooked();const n=wt(t);return this.getFieldsError([n])[0].warnings});le(this,"isFieldsTouched",(...t)=>{this.warningUnhooked();const[n,r]=t;let o,s=!1;t.length===0?o=null:t.length===1?Array.isArray(n)?(o=n.map(wt),s=!1):(o=null,s=n):(o=n.map(wt),s=r);const a=this.getFieldEntities(!0),l=f=>f.isFieldTouched();if(!o)return s?a.every(f=>l(f)||f.isList()):a.some(l);const c=new jr;o.forEach(f=>{c.set(f,[])}),a.forEach(f=>{const m=f.getNamePath();o.forEach(p=>{p.every((g,h)=>m[h]===g)&&c.update(p,g=>[...g,f])})});const u=f=>f.some(l),d=c.map(({value:f})=>f);return s?d.every(u):d.some(u)});le(this,"isFieldTouched",t=>(this.warningUnhooked(),this.isFieldsTouched([t])));le(this,"isFieldsValidating",t=>{this.warningUnhooked();const n=this.getFieldEntities();if(!t)return n.some(o=>o.isFieldValidating());const r=t.map(wt);return n.some(o=>{const s=o.getNamePath();return ao(r,s)&&o.isFieldValidating()})});le(this,"isFieldValidating",t=>(this.warningUnhooked(),this.isFieldsValidating([t])));le(this,"resetWithFieldInitialValue",(t={})=>{const n=new jr,r=this.getFieldEntities(!0);r.forEach(a=>{const{initialValue:l}=a.props,c=a.getNamePath();if(l!==void 0){const u=n.get(c)||new Set;u.add({entity:a,value:l}),n.set(c,u)}});const o=a=>{a.forEach(l=>{const{initialValue:c}=l.props;if(c!==void 0){const u=l.getNamePath();if(this.getInitialValue(u)!==void 0)Pt(!1,`Form already set 'initialValues' with path '${u.join(".")}'. Field can not overwrite it.`);else{const f=n.get(u);if(f&&f.size>1)Pt(!1,`Multiple Field with path '${u.join(".")}' set 'initialValue'. Can not decide which one to pick.`);else if(f){const m=this.getFieldValue(u);!l.isListField()&&(!t.skipExist||m===void 0)&&this.updateStore(gn(this.store,u,[...f][0].value))}}}})};let s;t.entities?s=t.entities:t.namePathList?(s=[],t.namePathList.forEach(a=>{const l=n.get(a);l&&s.push(...[...l].map(c=>c.entity))})):s=r,o(s)});le(this,"resetFields",t=>{this.warningUnhooked();const n=this.store;if(!t){this.updateStore(Jr(this.initialValues)),this.resetWithFieldInitialValue(),this.notifyObservers(n,null,{type:"reset"}),this.notifyWatch();return}const r=t.map(wt);r.forEach(o=>{const s=this.getInitialValue(o);this.updateStore(gn(this.store,o,s))}),this.resetWithFieldInitialValue({namePathList:r}),this.notifyObservers(n,r,{type:"reset"}),this.notifyWatch(r)});le(this,"setFields",t=>{this.warningUnhooked();const n=this.store,r=[];t.forEach(o=>{const{name:s,...a}=o,l=wt(s);r.push(l),"value"in a&&this.updateStore(gn(this.store,l,a.value)),this.notifyObservers(n,[l],{type:"setField",data:o})}),this.notifyWatch(r)});le(this,"getFields",()=>this.getFieldEntities(!0).map(r=>{const o=r.getNamePath(),a={...r.getMeta(),name:o,value:this.getFieldValue(o)};return Object.defineProperty(a,"originRCField",{value:!0}),a}));le(this,"initEntityValue",t=>{const{initialValue:n}=t.props;if(n!==void 0){const r=t.getNamePath();xn(this.store,r)===void 0&&this.updateStore(gn(this.store,r,n))}});le(this,"isMergedPreserve",t=>(t!==void 0?t:this.preserve)??!0);le(this,"registerField",t=>{this.fieldEntities.push(t);const n=t.getNamePath();if(this.notifyWatch([n]),t.props.initialValue!==void 0){const r=this.store;this.resetWithFieldInitialValue({entities:[t],skipExist:!0}),this.notifyObservers(r,[t.getNamePath()],{type:"valueUpdate",source:"internal"})}return(r,o,s=[])=>{if(this.fieldEntities=this.fieldEntities.filter(a=>a!==t),!this.isMergedPreserve(o)&&(!r||s.length>1)){const a=r?void 0:this.getInitialValue(n);if(n.length&&this.getFieldValue(n)!==a&&this.fieldEntities.every(l=>!vi(l.getNamePath(),n))){const l=this.store;this.updateStore(gn(l,n,a,!0)),this.notifyObservers(l,[n],{type:"remove"}),this.triggerDependenciesUpdate(l,n)}}this.notifyWatch([n])}});le(this,"dispatch",t=>{switch(t.type){case"updateValue":{const{namePath:n,value:r}=t;this.updateValue(n,r);break}case"validateField":{const{namePath:n,triggerName:r}=t;this.validateFields([n],{triggerName:r});break}}});le(this,"notifyObservers",(t,n,r)=>{if(this.subscribable){const o={...r,store:this.getFieldsValue(!0)};this.getFieldEntities().forEach(({onStoreChange:s})=>{s(t,n,o)})}else this.forceRootUpdate()});le(this,"triggerDependenciesUpdate",(t,n)=>{const r=this.getDependencyChildrenFields(n);return r.length&&this.validateFields(r),this.notifyObservers(t,r,{type:"dependenciesUpdate",relatedFields:[n,...r]}),r});le(this,"updateValue",(t,n)=>{const r=wt(t),o=this.store;this.updateStore(gn(this.store,r,n)),this.notifyObservers(o,[r],{type:"valueUpdate",source:"internal"}),this.notifyWatch([r]);const s=this.triggerDependenciesUpdate(o,r),{onValuesChange:a}=this.callbacks;if(a){const l=this.getFieldsMap(!0).get(r),c=Dm(this.store,[r]),u=this.getFieldsValue(),d=vg([u,c],{prepareArray:f=>l!=null&&l.isList()?[]:[...f||[]]});a(c,d)}this.triggerOnFieldsChange([r,...s])});le(this,"setFieldsValue",t=>{this.warningUnhooked();const n=this.store;if(t){const r=Jr(this.store,t);this.updateStore(r)}this.notifyObservers(n,null,{type:"valueUpdate",source:"external"}),this.notifyWatch()});le(this,"setFieldValue",(t,n)=>{this.setFields([{name:t,value:n,errors:[],warnings:[],touched:!0}])});le(this,"getDependencyChildrenFields",t=>{const n=new Set,r=[],o=new jr;this.getFieldEntities().forEach(a=>{const{dependencies:l}=a.props;(l||[]).forEach(c=>{const u=wt(c);o.update(u,(d=new Set)=>(d.add(a),d))})});const s=a=>{(o.get(a)||new Set).forEach(c=>{if(!n.has(c)){n.add(c);const u=c.getNamePath();c.isFieldDirty()&&u.length&&(r.push(u),s(u))}})};return s(t),r});le(this,"triggerOnFieldsChange",(t,n)=>{const{onFieldsChange:r}=this.callbacks;if(r){const o=this.getFields();if(n){const a=new jr;n.forEach(({name:l,errors:c})=>{a.set(l,c)}),o.forEach(l=>{l.errors=a.get(l.name)||l.errors})}const s=o.filter(({name:a})=>ao(t,a));s.length&&r(s,o)}});le(this,"validateFields",(t,n)=>{this.warningUnhooked();let r,o;Array.isArray(t)||typeof t=="string"||typeof n=="string"?(r=t,o=n):o=t;const s=!!r,a=s?r.map(wt):[],l=[...a],c=[],u=String(Date.now()),d=new Set,{recursive:f,dirty:m}=o||{};this.getFieldEntities(!0).forEach(b=>{const $=b.getNamePath();if(s||((!b.isList()||!a.some(y=>vi(y,$,!0)))&&l.push($),a.push($)),!(!b.props.rules||!b.props.rules.length)&&!(m&&!b.isFieldDirty())&&(d.add($.join(u)),!s||ao(a,$,f))){const y=b.validateRules({validateMessages:{...C0,...this.validateMessages},...o});c.push(y.then(()=>({name:$,errors:[],warnings:[]})).catch(v=>{var x;const C=[],S=[];return(x=v.forEach)==null||x.call(v,({rule:{warningOnly:w},errors:I})=>{w?S.push(...I):C.push(...I)}),C.length?Promise.reject({name:$,errors:C,warnings:S}):{name:$,errors:C,warnings:S}}))}});const p=OE(c);this.lastValidatePromise=p,p.catch(b=>b).then(b=>{const $=b.map(({name:y})=>y);this.notifyObservers(this.store,$,{type:"validateFinish"}),this.triggerOnFieldsChange($,b)});const g=p.then(()=>this.lastValidatePromise===p?Promise.resolve(this.getFieldsValue(l)):Promise.reject([])).catch(b=>{var v,C;const $=b.filter(S=>S&&S.errors.length),y=(C=(v=$[0])==null?void 0:v.errors)==null?void 0:C[0];return Promise.reject({message:y,values:this.getFieldsValue(a),errorFields:$,outOfDate:this.lastValidatePromise!==p})});g.catch(b=>b);const h=a.filter(b=>d.has(b.join(u)));return this.triggerOnFieldsChange(h),g});le(this,"submit",()=>{this.warningUnhooked(),this.validateFields().then(t=>{const{onFinish:n}=this.callbacks;if(n)try{n(t)}catch(r){console.error(r)}}).catch(t=>{const{onFinishFailed:n}=this.callbacks;n&&n(t)})});this.forceRootUpdate=t}}function w0(e){const t=i.useRef(null),[,n]=i.useState({});if(!t.current)if(e)t.current=e;else{const r=()=>{n({})},o=new BE(r);t.current=o.getForm()}return[t.current]}const fc=i.createContext({triggerFormChange:()=>{},triggerFormFinish:()=>{},registerForm:()=>{},unregisterForm:()=>{}}),LE=({validateMessages:e,onFormChange:t,onFormFinish:n,children:r})=>{const o=i.useContext(fc),s=i.useRef({});return i.createElement(fc.Provider,{value:{...o,validateMessages:{...o.validateMessages,...e},triggerFormChange:(a,l)=>{t&&t(a,{changedFields:l,forms:s.current}),o.triggerFormChange(a,l)},triggerFormFinish:(a,l)=>{n&&n(a,{values:l,forms:s.current}),o.triggerFormFinish(a,l)},registerForm:(a,l)=>{a&&(s.current={...s.current,[a]:l}),o.registerForm(a,l)},unregisterForm:a=>{const l={...s.current};delete l[a],s.current=l,o.unregisterForm(a)}}},r)};function mc(){return mc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const b=i.useRef(null),$=i.useContext(fc),[y]=w0(r),{useSubscribe:v,setInitialValues:C,setCallbacks:S,setValidateMessages:x,setPreserve:w,destroyForm:I}=y.getInternalHooks(Sr);i.useImperativeHandle(h,()=>({...y,nativeElement:b.current})),i.useEffect(()=>($.registerForm(e,y),()=>{$.unregisterForm(e)}),[$,y,e]),x({...$.validateMessages,...l}),S({onValuesChange:u,onFieldsChange:(T,...F)=>{$.triggerFormChange(e,T),d&&d(T,...F)},onFinish:T=>{$.triggerFormFinish(e,T),f&&f(T)},onFinishFailed:m}),w(o);const E=i.useRef(null);C(t,!E.current),E.current||(E.current=!0),i.useEffect(()=>()=>I(p),[]);let R;const P=typeof s=="function";if(P){const T=y.getFieldsValue(!0);R=s(T,y)}else R=s;v(!P);const M=i.useRef(null);i.useEffect(()=>{ME(M.current||[],n||[])||y.setFields(n||[]),M.current=n},[n,y]);const O=i.useMemo(()=>({...y,validateTrigger:c}),[y,c]),A=i.createElement(bi.Provider,{value:null},i.createElement(fo.Provider,{value:O},R));return a===!1?A:i.createElement(a,mc({},g,{ref:b,onSubmit:T=>{T.preventDefault(),T.stopPropagation(),y.submit()},onReset:T=>{var F;T.preventDefault(),y.resetFields(),(F=g.onReset)==null||F.call(g,T)}}),A)};function za(e){try{return JSON.stringify(e)}catch{return Math.random()}}function DE(...e){const[t,n={}]=e,r=Kw(n)?{form:n}:n,o=r.form,[s,a]=i.useState(()=>typeof t=="function"?t({}):void 0),l=i.useMemo(()=>za(s),[s]),c=i.useRef(l);c.current=l;const u=i.useContext(fo),d=o||u,f=d&&d._init,{getFieldsValue:m,getInternalHooks:p}=d,{registerWatch:g}=p(Sr),h=We(($,y)=>{const v=r.preserve?y??m(!0):$??m(),C=typeof t=="function"?t(v):xn(v,wt(t));za(s)!==za(C)&&a(C)}),b=typeof t=="function"?t:JSON.stringify(t);return i.useEffect(()=>{f&&h()},[f,b]),i.useEffect(()=>f?g((y,v)=>{h(y,v)}):void 0,[f]),s}const FE=i.forwardRef(HE),ps=FE;ps.FormProvider=LE;ps.Field=x0;ps.List=TE;ps.useForm=w0;ps.useWatch=DE;const $n=i.createContext({}),_E=({children:e,status:t,override:n})=>{const r=i.useContext($n),o=i.useMemo(()=>{const s={...r};return n&&delete s.isFormItemInput,t&&(delete s.status,delete s.hasFeedback,delete s.feedbackIcon),s},[t,n,r]);return i.createElement($n.Provider,{value:o},e)},kE=i.createContext(void 0),ur=e=>{const{space:t,form:n,children:r}=e;if(!vn(r))return null;let o=r;return n&&(o=N.createElement(_E,{override:!0,status:!0},o)),t&&(o=N.createElement(JS,null,o)),o},VE=e=>{if(Ot()&&window.document.documentElement){const t=Array.isArray(e)?e:[e],{documentElement:n}=window.document;return t.some(r=>r in n.style)}return!1};function _m(e,t){return VE(e)}const WE=()=>Ot()&&window.document.documentElement;function jE(e,t,n){return i.useMemo(()=>({...{trap:t??!0,focusTriggerAfterClose:n??!0},...e}),[e,t,n])}const ji=e=>{const{prefixCls:t,className:n,style:r,size:o,shape:s}=e,a=z({[`${t}-lg`]:o==="large",[`${t}-sm`]:o==="small"}),l=z({[`${t}-circle`]:s==="circle",[`${t}-square`]:s==="square",[`${t}-round`]:s==="round"}),c=i.useMemo(()=>typeof o=="number"?{width:o,height:o,lineHeight:`${o}px`}:{},[o]);return i.createElement("span",{className:z(t,a,l,n),style:{...c,...r}})},qE=new et("ant-skeleton-loading",{"0%":{backgroundPosition:"100% 50%"},"100%":{backgroundPosition:"0 50%"}}),hd=e=>({height:e,lineHeight:K(e)}),ir=e=>({width:e,...hd(e)}),GE=e=>({background:e.skeletonLoadingBackground,backgroundSize:"400% 100%",animationName:qE,animationDuration:e.skeletonLoadingMotionDuration,animationTimingFunction:"ease",animationIterationCount:"infinite"}),Ba=(e,t)=>({width:t(e).mul(5).equal(),minWidth:t(e).mul(5).equal(),...hd(e)}),XE=e=>{const{skeletonAvatarCls:t,gradientFromColor:n,controlHeight:r,controlHeightLG:o,controlHeightSM:s}=e;return{[t]:{display:"inline-block",verticalAlign:"top",background:n,...ir(r)},[`${t}${t}-circle`]:{borderRadius:"50%"},[`${t}${t}-lg`]:{...ir(o)},[`${t}${t}-sm`]:{...ir(s)}}},UE=e=>{const{controlHeight:t,borderRadiusSM:n,skeletonInputCls:r,controlHeightLG:o,controlHeightSM:s,gradientFromColor:a,calc:l}=e;return{[r]:{display:"inline-block",verticalAlign:"top",background:a,borderRadius:n,...Ba(t,l)},[`${r}-lg`]:{...Ba(o,l)},[`${r}-sm`]:{...Ba(s,l)}}},E0=e=>{const{gradientFromColor:t,borderRadiusSM:n,imageSizeBase:r,calc:o}=e;return{display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"middle",background:t,borderRadius:n,...ir(o(r).mul(2).equal())}},KE=e=>({[e.skeletonNodeCls]:{...E0(e)}}),YE=e=>{const{skeletonImageCls:t,imageSizeBase:n,calc:r}=e;return{[t]:{...E0(e),[`${t}-path`]:{fill:"#bfbfbf"},[`${t}-svg`]:{...ir(n),maxWidth:r(n).mul(4).equal(),maxHeight:r(n).mul(4).equal()},[`${t}-svg${t}-svg-circle`]:{borderRadius:"50%"}},[`${t}${t}-circle`]:{borderRadius:"50%"}}},La=(e,t,n)=>{const{skeletonButtonCls:r}=e;return{[`${n}${r}-circle`]:{width:t,minWidth:t,borderRadius:"50%"},[`${n}${r}-round`]:{borderRadius:t}}},Ha=(e,t)=>({width:t(e).mul(2).equal(),minWidth:t(e).mul(2).equal(),...hd(e)}),QE=e=>{const{borderRadiusSM:t,skeletonButtonCls:n,controlHeight:r,controlHeightLG:o,controlHeightSM:s,gradientFromColor:a,calc:l}=e;return{[n]:{display:"inline-block",verticalAlign:"top",background:a,borderRadius:t,width:l(r).mul(2).equal(),minWidth:l(r).mul(2).equal(),...Ha(r,l)},...La(e,r,n),[`${n}-lg`]:{...Ha(o,l)},...La(e,o,`${n}-lg`),[`${n}-sm`]:{...Ha(s,l)},...La(e,s,`${n}-sm`)}},ZE=e=>{const{componentCls:t,skeletonAvatarCls:n,skeletonTitleCls:r,skeletonParagraphCls:o,skeletonButtonCls:s,skeletonInputCls:a,skeletonNodeCls:l,skeletonImageCls:c,controlHeight:u,controlHeightLG:d,controlHeightSM:f,gradientFromColor:m,padding:p,marginSM:g,borderRadius:h,titleHeight:b,blockRadius:$,paragraphLiHeight:y,controlHeightXS:v,paragraphMarginTop:C}=e;return{[t]:{display:"table",width:"100%",[`${t}-header`]:{display:"table-cell",paddingInlineEnd:p,verticalAlign:"top",[n]:{display:"inline-block",verticalAlign:"top",background:m,...ir(u)},[`${n}-circle`]:{borderRadius:"50%"},[`${n}-lg`]:{...ir(d)},[`${n}-sm`]:{...ir(f)}},[`${t}-section`]:{display:"table-cell",width:"100%",verticalAlign:"top",[r]:{width:"100%",height:b,background:m,borderRadius:$,[`+ ${o}`]:{marginBlockStart:f}},[o]:{padding:0,"> li":{width:"100%",height:y,listStyle:"none",background:m,borderRadius:$,"+ li":{marginBlockStart:v}}},[`${o}> li:last-child:not(:first-child):not(:nth-child(2))`]:{width:"61%"}},[`&-round ${t}-section`]:{[`${r}, ${o} > li`]:{borderRadius:h}}},[`${t}-with-avatar ${t}-section`]:{[r]:{marginBlockStart:g,[`+ ${o}`]:{marginBlockStart:C}}},[`${t}${t}-element`]:{display:"inline-block",width:"auto",...QE(e),...XE(e),...UE(e),...KE(e),...YE(e)},[`${t}${t}-block`]:{width:"100%",[s]:{width:"100%"},[a]:{width:"100%"}},[`${t}${t}-active`]:{[` + ${r}, + ${o} > li, + ${n}, + ${s}, + ${a}, + ${l}, + ${c} + `]:{...GE(e)}}}},JE=e=>{const{colorFillContent:t,colorFill:n}=e,r=t,o=n;return{color:r,colorGradientEnd:o,gradientFromColor:r,gradientToColor:o,titleHeight:e.controlHeight/2,blockRadius:e.borderRadiusSM,paragraphMarginTop:e.marginLG+e.marginXXS,paragraphLiHeight:e.controlHeight/2}},gs=at("Skeleton",e=>{const{componentCls:t,calc:n}=e,r=rt(e,{skeletonAvatarCls:`${t}-avatar`,skeletonTitleCls:`${t}-title`,skeletonParagraphCls:`${t}-paragraph`,skeletonButtonCls:`${t}-button`,skeletonInputCls:`${t}-input`,skeletonNodeCls:`${t}-node`,skeletonImageCls:`${t}-image`,imageSizeBase:n(e.controlHeight).mul(1.5).equal(),borderRadius:100,skeletonLoadingBackground:`linear-gradient(90deg, ${e.gradientFromColor} 25%, ${e.gradientToColor} 37%, ${e.gradientFromColor} 63%)`,skeletonLoadingMotionDuration:"1.4s"});return ZE(r)},JE,{deprecatedTokens:[["color","gradientFromColor"],["colorGradientEnd","gradientToColor"]]}),e2=e=>{const{prefixCls:t,className:n,classNames:r,rootClassName:o,active:s,style:a,styles:l,shape:c="circle",size:u="default",...d}=e,{getPrefixCls:f}=i.useContext(je),m=f("skeleton",t),[p,g]=gs(m),h=z(m,`${m}-element`,{[`${m}-active`]:s},r==null?void 0:r.root,n,o,p,g);return i.createElement("div",{className:h,style:l==null?void 0:l.root},i.createElement(ji,{prefixCls:`${m}-avatar`,className:r==null?void 0:r.content,style:{...l==null?void 0:l.content,...a},shape:c,size:u,...d}))},t2=e=>{const{prefixCls:t,className:n,rootClassName:r,classNames:o,active:s,style:a,styles:l,block:c=!1,size:u="default",...d}=e,{getPrefixCls:f}=i.useContext(je),m=f("skeleton",t),[p,g]=gs(m),h=z(m,`${m}-element`,{[`${m}-active`]:s,[`${m}-block`]:c},o==null?void 0:o.root,n,r,p,g);return i.createElement("div",{className:h,style:l==null?void 0:l.root},i.createElement(ji,{prefixCls:`${m}-button`,className:o==null?void 0:o.content,style:{...l==null?void 0:l.content,...a},size:u,...d}))},I0=e=>{const{prefixCls:t,className:n,classNames:r,rootClassName:o,internalClassName:s,style:a,styles:l,active:c,children:u}=e,{getPrefixCls:d}=i.useContext(je),f=d("skeleton",t),[m,p]=gs(f),g=z(f,`${f}-element`,{[`${f}-active`]:c},m,r==null?void 0:r.root,n,o,p);return i.createElement("div",{className:g,style:l==null?void 0:l.root},i.createElement("div",{className:z(r==null?void 0:r.content,s||`${f}-node`),style:{...l==null?void 0:l.content,...a}},u))},n2=e=>{const{getPrefixCls:t}=i.useContext(je),n=t("skeleton",e.prefixCls);return i.createElement(I0,{...e,internalClassName:`${n}-image`},i.createElement("svg",{viewBox:"0 0 1098 1024",xmlns:"http://www.w3.org/2000/svg",className:`${n}-image-svg`},i.createElement("title",null,"Image placeholder"),i.createElement("path",{d:"M365.7 329.1q0 45.8-32 77.7t-77.7 32-77.7-32-32-77.7 32-77.6 77.7-32 77.7 32 32 77.6M951 548.6v256H146.3V694.9L329 512l91.5 91.4L713 311zm54.8-402.3H91.4q-7.4 0-12.8 5.4T73 164.6v694.8q0 7.5 5.5 12.9t12.8 5.4h914.3q7.5 0 12.9-5.4t5.4-12.9V164.6q0-7.5-5.4-12.9t-12.9-5.4m91.4 18.3v694.8q0 37.8-26.8 64.6t-64.6 26.9H91.4q-37.7 0-64.6-26.9T0 859.4V164.6q0-37.8 26.8-64.6T91.4 73h914.3q37.8 0 64.6 26.9t26.8 64.6",className:`${n}-image-path`})))},r2=e=>{const{prefixCls:t,className:n,classNames:r,rootClassName:o,active:s,block:a,style:l,styles:c,size:u="default",...d}=e,{getPrefixCls:f}=i.useContext(je),m=f("skeleton",t),[p,g]=gs(m),h=z(m,`${m}-element`,{[`${m}-active`]:s,[`${m}-block`]:a},r==null?void 0:r.root,n,o,p,g);return i.createElement("div",{className:h,style:c==null?void 0:c.root},i.createElement(ji,{prefixCls:`${m}-input`,className:r==null?void 0:r.content,style:{...c==null?void 0:c.content,...l},size:u,...d}))},o2=(e,t)=>{const{width:n,rows:r=2}=t;if(Array.isArray(n))return n[e];if(r-1===e)return n},s2=e=>{const{prefixCls:t,className:n,style:r,rows:o=0}=e,s=Array.from({length:o}).map((a,l)=>i.createElement("li",{key:l,style:{width:o2(l,e)}}));return i.createElement("ul",{className:z(t,n),style:r},s)},i2=({prefixCls:e,className:t,width:n,style:r})=>i.createElement("h3",{className:z(e,t),style:{width:n,...r}});function Da(e){return e&&typeof e=="object"?e:{}}function a2(e,t){return e&&!t?{size:"large",shape:"square"}:{size:"large",shape:"circle"}}function l2(e,t){return!e&&t?{width:"38%"}:e&&t?{width:"50%"}:{}}function c2(e,t){const n={};return(!e||!t)&&(n.width="61%"),!e&&t?n.rows=3:n.rows=2,n}const $o=e=>{const{prefixCls:t,loading:n,className:r,rootClassName:o,classNames:s,style:a,styles:l,children:c,avatar:u=!1,title:d=!0,paragraph:f=!0,active:m,round:p}=e,{getPrefixCls:g,direction:h,className:b,style:$,classNames:y,styles:v}=dt("skeleton"),C=g("skeleton",t),[S,x]=gs(C),w={...e,avatar:u,title:d,paragraph:f},[I,E]=pt([y,s],[v,l],{props:w});if(n||!("loading"in e)){const R=!!u,P=!!d,M=!!f;let O;if(R){const F={className:I.avatar,prefixCls:`${C}-avatar`,...a2(P,M),...Da(u),style:E.avatar};O=i.createElement("div",{className:z(I.header,`${C}-header`),style:E.header},i.createElement(ji,{...F}))}let A;if(P||M){let F;if(P){const L={className:I.title,prefixCls:`${C}-title`,...l2(R,M),...Da(d),style:E.title};F=i.createElement(i2,{...L})}let H;if(M){const L={className:I.paragraph,prefixCls:`${C}-paragraph`,...c2(R,P),...Da(f),style:E.paragraph};H=i.createElement(s2,{...L})}A=i.createElement("div",{className:z(I.section,`${C}-section`),style:E.section},F,H)}const T=z(C,{[`${C}-with-avatar`]:R,[`${C}-active`]:m,[`${C}-rtl`]:h==="rtl",[`${C}-round`]:p},I.root,b,r,o,S,x);return i.createElement("div",{className:T,style:{...E.root,...$,...a}},O,A)}return c??null};$o.Button=t2;$o.Avatar=e2;$o.Input=r2;$o.Image=n2;$o.Node=I0;function km(){}const u2=i.createContext({add:km,remove:km});function d2(e){const t=i.useContext(u2),n=i.useRef(null);return We(o=>{if(o){const s=e?o.querySelector(e):o;s&&(t.add(s),n.current=s)}else t.remove(n.current)})}const Vm=()=>{const{cancelButtonProps:e,cancelTextLocale:t,onCancel:n}=i.useContext(fs);return N.createElement(On,{onClick:n,...e},t)},Wm=()=>{const{confirmLoading:e,okButtonProps:t,okType:n,okTextLocale:r,onOk:o}=i.useContext(fs);return N.createElement(On,{...nd(n),loading:e,onClick:o,...t},r)};function P0(e,t){return N.createElement("span",{className:`${e}-close-x`},t||N.createElement(Br,{className:`${e}-close-icon`}))}const R0=e=>{const{okText:t,okType:n="primary",cancelText:r,confirmLoading:o,onOk:s,onCancel:a,okButtonProps:l,cancelButtonProps:c,footer:u}=e,[d]=dn("Modal",gh()),f=t||(d==null?void 0:d.okText),m=r||(d==null?void 0:d.cancelText),p=N.useMemo(()=>({confirmLoading:o,okButtonProps:l,cancelButtonProps:c,okTextLocale:f,cancelTextLocale:m,okType:n,onOk:s,onCancel:a}),[o,l,c,f,m,n,s,a]);let g;return typeof u=="function"||typeof u>"u"?(g=N.createElement(N.Fragment,null,N.createElement(Vm,null),N.createElement(Wm,null)),typeof u=="function"&&(g=u(g,{OkBtn:Wm,CancelBtn:Vm})),g=N.createElement(h0,{value:p},g)):g=u,N.createElement(zh,{disabled:!1},g)},f2=e=>{const{componentCls:t}=e;return{[t]:{display:"flex",flexFlow:"row wrap",minWidth:0,"&::before, &::after":{display:"flex"},"&-no-wrap":{flexWrap:"nowrap"},"&-start":{justifyContent:"flex-start"},"&-center":{justifyContent:"center"},"&-end":{justifyContent:"flex-end"},"&-space-between":{justifyContent:"space-between"},"&-space-around":{justifyContent:"space-around"},"&-space-evenly":{justifyContent:"space-evenly"},"&-top":{alignItems:"flex-start"},"&-middle":{alignItems:"center"},"&-bottom":{alignItems:"flex-end"}}}},m2=e=>{const{componentCls:t}=e;return{[t]:{position:"relative",maxWidth:"100%",minHeight:1}}},p2=(e,t)=>{const{componentCls:n,gridColumns:r,antCls:o}=e,[s,a]=At(o,"grid"),[,l]=At(o,"col"),c={};for(let u=r;u>=0;u--)u===0?(c[`${n}${t}-${u}`]={display:"none"},c[`${n}-push-${u}`]={insetInlineStart:"auto"},c[`${n}-pull-${u}`]={insetInlineEnd:"auto"},c[`${n}${t}-push-${u}`]={insetInlineStart:"auto"},c[`${n}${t}-pull-${u}`]={insetInlineEnd:"auto"},c[`${n}${t}-offset-${u}`]={marginInlineStart:0},c[`${n}${t}-order-${u}`]={order:0}):(c[`${n}${t}-${u}`]=[{[s("display")]:"block",display:"block"},{display:a("display"),flex:`0 0 ${u/r*100}%`,maxWidth:`${u/r*100}%`}],c[`${n}${t}-push-${u}`]={insetInlineStart:`${u/r*100}%`},c[`${n}${t}-pull-${u}`]={insetInlineEnd:`${u/r*100}%`},c[`${n}${t}-offset-${u}`]={marginInlineStart:`${u/r*100}%`},c[`${n}${t}-order-${u}`]={order:u});return c[`${n}${t}-flex`]={flex:l(`${t.replace(/-/,"")}-flex`)},c},pc=(e,t)=>p2(e,t),g2=(e,t,n)=>({[`@media (min-width: ${K(t)})`]:{...pc(e,n)}}),h2=()=>({}),b2=()=>({});at("Grid",f2,h2);const M0=e=>({xs:e.screenXSMin,sm:e.screenSMMin,md:e.screenMDMin,lg:e.screenLGMin,xl:e.screenXLMin,xxl:e.screenXXLMin});at("Grid",e=>{const t=rt(e,{gridColumns:24}),n=M0(t);return delete n.xs,[m2(t),pc(t,""),pc(t,"-xs"),Object.keys(n).map(r=>g2(t,n[r],`-${r}`)).reduce((r,o)=>({...r,...o}),{})]},b2);function jm(e){return{position:e,inset:0}}const v2=e=>{const{componentCls:t,antCls:n}=e;return[{[`${t}-root`]:{[`${t}${n}-zoom-enter, ${t}${n}-zoom-appear`]:{transform:"none",opacity:0,animationDuration:e.motionDurationSlow,userSelect:"none"},[`${t}${n}-zoom-leave ${t}-container`]:{pointerEvents:"none"},[`${t}-mask`]:{...jm("fixed"),zIndex:e.zIndexPopupBase,height:"100%",backgroundColor:e.colorBgMask,pointerEvents:"none",[`&${t}-mask-blur`]:{backdropFilter:"blur(4px)"},[`${t}-hidden`]:{display:"none"}},[`${t}-wrap`]:{...jm("fixed"),zIndex:e.zIndexPopupBase,overflow:"auto",outline:0,WebkitOverflowScrolling:"touch"}}},{[`${t}-root`]:d0(e)}]},y2=e=>{const{componentCls:t,motionDurationMid:n}=e;return[{[`${t}-root`]:{[`${t}-wrap-rtl`]:{direction:"rtl"},[`${t}-centered`]:{textAlign:"center","&::before":{display:"inline-block",width:0,height:"100%",verticalAlign:"middle",content:'""'},[t]:{top:0,display:"inline-block",paddingBottom:0,textAlign:"start",verticalAlign:"middle"}},[`@media (max-width: ${e.screenSMMax}px)`]:{[t]:{maxWidth:"calc(100vw - 16px)",margin:`${K(e.marginXS)} auto`},[`${t}-centered`]:{[t]:{flex:1}}}}},{[t]:{...Ct(e),pointerEvents:"none",position:"relative",top:100,width:"auto",maxWidth:`calc(100vw - ${K(e.calc(e.margin).mul(2).equal())})`,margin:"0 auto","&:focus-visible":{borderRadius:e.borderRadiusLG,...ho(e)},[`${t}-title`]:{margin:0,color:e.titleColor,fontWeight:e.fontWeightStrong,fontSize:e.titleFontSize,lineHeight:e.titleLineHeight,wordWrap:"break-word"},[`${t}-container`]:{position:"relative",backgroundColor:e.contentBg,backgroundClip:"padding-box",border:0,borderRadius:e.borderRadiusLG,boxShadow:e.boxShadow,pointerEvents:"auto",padding:e.contentPadding},[`${t}-close`]:{position:"absolute",top:e.calc(e.modalHeaderHeight).sub(e.modalCloseBtnSize).div(2).equal(),insetInlineEnd:e.calc(e.modalHeaderHeight).sub(e.modalCloseBtnSize).div(2).equal(),zIndex:e.calc(e.zIndexPopupBase).add(10).equal(),padding:0,color:e.modalCloseIconColor,fontWeight:e.fontWeightStrong,lineHeight:1,textDecoration:"none",background:"transparent",borderRadius:e.borderRadiusSM,width:e.modalCloseBtnSize,height:e.modalCloseBtnSize,border:0,outline:0,cursor:"pointer",transition:["color","background-color"].map(r=>`${r} ${n}`).join(", "),"&-x":{display:"flex",fontSize:e.fontSizeLG,fontStyle:"normal",lineHeight:K(e.modalCloseBtnSize),justifyContent:"center",textTransform:"none",textRendering:"auto"},"&:disabled":{pointerEvents:"none"},"&:hover":{color:e.modalCloseIconHoverColor,backgroundColor:e.colorBgTextHover,textDecoration:"none"},"&:active":{backgroundColor:e.colorBgTextActive},...bn(e)},[`${t}-header`]:{color:e.colorText,background:e.headerBg,borderRadius:`${K(e.borderRadiusLG)} ${K(e.borderRadiusLG)} 0 0`,marginBottom:e.headerMarginBottom,padding:e.headerPadding,borderBottom:e.headerBorderBottom},[`${t}-body`]:{fontSize:e.fontSize,lineHeight:e.lineHeight,wordWrap:"break-word",padding:e.bodyPadding,[`${t}-body-skeleton`]:{width:"100%",height:"100%",display:"flex",justifyContent:"center",alignItems:"center",margin:`${K(e.margin)} auto`}},[`${t}-footer`]:{textAlign:"end",background:e.footerBg,marginTop:e.footerMarginTop,padding:e.footerPadding,borderTop:e.footerBorderTop,borderRadius:e.footerBorderRadius,[`> ${e.antCls}-btn + ${e.antCls}-btn`]:{marginInlineStart:e.marginXS}},[`${t}-open`]:{overflow:"hidden"}}},{[`${t}-pure-panel`]:{top:"auto",padding:0,display:"flex",flexDirection:"column",[`${t}-container, + ${t}-body, + ${t}-confirm-body-wrapper`]:{display:"flex",flexDirection:"column",flex:"auto"},[`${t}-confirm-body`]:{marginBottom:"auto"}}}]},$2=e=>{const{componentCls:t}=e;return{[`${t}-root`]:{[`${t}-wrap-rtl`]:{direction:"rtl",[`${t}-confirm-body`]:{direction:"rtl"}}}}},C2=e=>{const{componentCls:t}=e,n=M0(e),r={...n};delete r.xs;const o=`--${t.replace(".","")}-`,s=Object.keys(r).map(a=>({[`@media (min-width: ${K(r[a])})`]:{width:`var(${o}${a}-width)`}}));return{[`${t}-root`]:{[t]:[].concat(xt(Object.keys(n).map((a,l)=>{const c=Object.keys(n)[l-1];return c?{[`${o}${a}-width`]:`var(${o}${c}-width)`}:null})),[{width:`var(${o}xs-width)`}],xt(s))}}},N0=e=>{const t=e.padding,n=e.fontSizeHeading5,r=e.lineHeightHeading5;return rt(e,{modalHeaderHeight:e.calc(e.calc(r).mul(n).equal()).add(e.calc(t).mul(2).equal()).equal(),modalFooterBorderColorSplit:e.colorSplit,modalFooterBorderStyle:e.lineType,modalFooterBorderWidth:e.lineWidth,modalCloseIconColor:e.colorIcon,modalCloseIconHoverColor:e.colorIconHover,modalCloseBtnSize:e.controlHeight,modalConfirmIconSize:e.fontHeight,modalTitleHeight:e.calc(e.titleFontSize).mul(e.titleLineHeight).equal()})},T0=e=>({footerBg:"transparent",headerBg:"transparent",titleLineHeight:e.lineHeightHeading5,titleFontSize:e.fontSizeHeading5,contentBg:e.colorBgElevated,titleColor:e.colorTextHeading,contentPadding:e.wireframe?0:`${K(e.paddingMD)} ${K(e.paddingContentHorizontalLG)}`,headerPadding:e.wireframe?`${K(e.padding)} ${K(e.paddingLG)}`:0,headerBorderBottom:e.wireframe?`${K(e.lineWidth)} ${e.lineType} ${e.colorSplit}`:"none",headerMarginBottom:e.wireframe?0:e.marginXS,bodyPadding:e.wireframe?e.paddingLG:0,footerPadding:e.wireframe?`${K(e.paddingXS)} ${K(e.padding)}`:0,footerBorderTop:e.wireframe?`${K(e.lineWidth)} ${e.lineType} ${e.colorSplit}`:"none",footerBorderRadius:e.wireframe?`0 0 ${K(e.borderRadiusLG)} ${K(e.borderRadiusLG)}`:0,footerMarginTop:e.wireframe?0:e.marginSM,confirmBodyPadding:e.wireframe?`${K(e.padding*2)} ${K(e.padding*2)} ${K(e.paddingLG)}`:0,confirmIconMarginInlineEnd:e.wireframe?e.margin:e.marginSM,confirmBtnsMarginTop:e.wireframe?e.marginLG:e.marginSM,mask:!0}),O0=at("Modal",e=>{const t=N0(e);return[y2(t),$2(t),v2(t),ds(t,"zoom"),C2(t)]},T0,{unitless:{titleLineHeight:!0}});let gc;const S2=e=>{gc={x:e.pageX,y:e.pageY},setTimeout(()=>{gc=null},100)};WE()&&document.documentElement.addEventListener("click",S2,!0);const A0=e=>{const{prefixCls:t,className:n,rootClassName:r,open:o,wrapClassName:s,centered:a,getContainer:l,style:c,width:u=520,footer:d,classNames:f,styles:m,children:p,loading:g,confirmLoading:h,zIndex:b,mousePosition:$,onOk:y,onCancel:v,okButtonProps:C,cancelButtonProps:S,destroyOnHidden:x,destroyOnClose:w,panelRef:I=null,closable:E,mask:R,modalRender:P,maskClosable:M,focusTriggerAfterClose:O,focusable:A,...T}=e,{getPopupContainer:F,getPrefixCls:H,direction:L,className:B,style:D,classNames:k,styles:W,centered:_,cancelButtonProps:X,okButtonProps:U,mask:j}=dt("modal"),{modal:V}=i.useContext(je),[G,te]=i.useMemo(()=>typeof E=="boolean"?[void 0,void 0]:[E==null?void 0:E.afterClose,E==null?void 0:E.onClose],[E]),ee=H("modal",t),ne=H(),[Y,se,ue]=PC(R,j,ee,M),q=jE(A,Y,O),oe=qe=>{h||(v==null||v(qe),te==null||te())},Z=qe=>{y==null||y(qe),te==null||te()},J=_t(ee),[ae,we]=O0(ee,J),de=z(s,{[`${ee}-centered`]:a??_,[`${ee}-wrap-rtl`]:L==="rtl"}),ge=d!==null&&!g?i.createElement(R0,{...e,okButtonProps:{...U,...C},onOk:Z,cancelButtonProps:{...X,...S},onCancel:oe}):null,[be,me,Ne,Ae]=EC(ci(e),ci(V),{closable:!0,closeIcon:i.createElement(Br,{className:`${ee}-close-icon`}),closeIconRender:qe=>P0(ee,qe)}),Ee=be?{disabled:Ne,closeIcon:me,afterClose:G,...Ae}:!1,ze=P?qe=>i.createElement("div",{className:`${ee}-render`},P(qe)):void 0,Re=`.${ee}-${P?"render":"container"}`,ve=d2(Re),fe=Ft(I,ve),[Ce,He]=ls("Modal",b),Ie={...e,width:u,panelRef:I,focusTriggerAfterClose:q.focusTriggerAfterClose,focusable:q,mask:Y,maskClosable:ue,zIndex:Ce},[re,$e]=pt([k,f,se],[W,m],{props:Ie}),[ke,De]=i.useMemo(()=>u&&typeof u=="object"?[void 0,u]:[u,void 0],[u]),ot=i.useMemo(()=>{const qe={};return De&&Object.keys(De).forEach(ft=>{const Qe=De[ft];Qe!==void 0&&(qe[`--${ee}-${ft}-width`]=typeof Qe=="number"?`${Qe}px`:Qe)}),qe},[ee,De]);return i.createElement(ur,{form:!0,space:!0},i.createElement(_i.Provider,{value:He},i.createElement(Uw,{width:ke,...T,zIndex:Ce,getContainer:l===void 0?F:l,prefixCls:ee,rootClassName:z(ae,r,we,J,re.root),rootStyle:$e.root,footer:ge,visible:o,mousePosition:$??gc,onClose:oe,closable:Ee,closeIcon:me,transitionName:lr(ne,"zoom",e.transitionName),maskTransitionName:lr(ne,"fade",e.maskTransitionName),mask:Y,maskClosable:ue,className:z(ae,n,B),style:{...D,...c,...ot},classNames:{...re,wrapper:z(re.wrapper,de)},styles:$e,panelRef:fe,destroyOnHidden:x??w,modalRender:ze,focusTriggerAfterClose:q.focusTriggerAfterClose,focusTrap:q.trap},g?i.createElement($o,{active:!0,title:!1,paragraph:{rows:4},className:`${ee}-body-skeleton`}):p)))},x2=e=>{const{componentCls:t,titleFontSize:n,titleLineHeight:r,modalConfirmIconSize:o,fontSize:s,lineHeight:a,modalTitleHeight:l,fontHeight:c,confirmBodyPadding:u}=e,d=`${t}-confirm`;return{[d]:{"&-rtl":{direction:"rtl"},[`${e.antCls}-modal-header`]:{display:"none"},[`${d}-body-wrapper`]:{...li()},[`&${t} ${t}-body`]:{padding:u},[`${d}-body`]:{display:"flex",flexWrap:"nowrap",alignItems:"start",[`> ${e.iconCls}`]:{flex:"none",fontSize:o,marginInlineEnd:e.confirmIconMarginInlineEnd,marginTop:e.calc(e.calc(c).sub(o).equal()).div(2).equal()},[`&-has-title > ${e.iconCls}`]:{marginTop:e.calc(e.calc(l).sub(o).equal()).div(2).equal()}},[`${d}-paragraph`]:{display:"flex",flexDirection:"column",flex:"auto",rowGap:e.marginXS,maxWidth:`calc(100% - ${K(e.marginSM)})`},[`${e.iconCls} + ${d}-paragraph`]:{maxWidth:`calc(100% - ${K(e.calc(e.modalConfirmIconSize).add(e.marginSM).equal())})`},[`${d}-title`]:{color:e.colorTextHeading,fontWeight:e.fontWeightStrong,fontSize:n,lineHeight:r},[`${d}-container`]:{color:e.colorText,fontSize:s,lineHeight:a},[`${d}-btns`]:{textAlign:"end",marginTop:e.confirmBtnsMarginTop,[`${e.antCls}-btn + ${e.antCls}-btn`]:{marginBottom:0,marginInlineStart:e.marginXS}}},[`${d}-error ${d}-body > ${e.iconCls}`]:{color:e.colorError},[`${d}-warning ${d}-body > ${e.iconCls}, + ${d}-confirm ${d}-body > ${e.iconCls}`]:{color:e.colorWarning},[`${d}-info ${d}-body > ${e.iconCls}`]:{color:e.colorInfo},[`${d}-success ${d}-body > ${e.iconCls}`]:{color:e.colorSuccess}}},w2=Ug(["Modal","confirm"],e=>{const t=N0(e);return x2(t)},T0,{order:-1e3}),z0=e=>{const{prefixCls:t,icon:n,okText:r,cancelText:o,confirmPrefixCls:s,type:a,okCancel:l,footer:c,locale:u,autoFocusButton:d,focusable:f,...m}=e;let p=n;if(!n&&n!==null)switch(a){case"info":p=i.createElement(Gu,null);break;case"success":p=i.createElement(qu,null);break;case"error":p=i.createElement(is,null);break;default:p=i.createElement(as,null)}const g=l??a==="confirm",h=i.useMemo(()=>{const R=(f==null?void 0:f.autoFocusButton)||d;return R||R===null?R:"ok"},[d,f==null?void 0:f.autoFocusButton]),[b]=dn("Modal"),$=u||b,y=r||(g?$==null?void 0:$.okText:$==null?void 0:$.justOkText),v=o||($==null?void 0:$.cancelText),{closable:C}=m,{onClose:S}=C&&typeof C=="object"?C:{},x=i.useMemo(()=>({autoFocusButton:h,cancelTextLocale:v,okTextLocale:y,mergedOkCancel:g,onClose:S,...m}),[h,v,y,g,S,m]),w=i.createElement(i.Fragment,null,i.createElement(xm,null),i.createElement(wm,null)),I=e.title!==void 0&&e.title!==null,E=`${s}-body`;return i.createElement("div",{className:`${s}-body-wrapper`},i.createElement("div",{className:z(E,{[`${E}-has-title`]:I})},p,i.createElement("div",{className:`${s}-paragraph`},I&&i.createElement("span",{className:`${s}-title`},e.title),i.createElement("div",{className:`${s}-content`},e.content))),c===void 0||typeof c=="function"?i.createElement(h0,{value:x},i.createElement("div",{className:`${s}-btns`},typeof c=="function"?c(w,{OkBtn:wm,CancelBtn:xm}):w)):c,i.createElement(w2,{prefixCls:t}))},E2=e=>{const{close:t,zIndex:n,maskStyle:r,direction:o,prefixCls:s,wrapClassName:a,rootPrefixCls:l,bodyStyle:c,closable:u=!1,onConfirm:d,styles:f,title:m,mask:p,maskClosable:g,okButtonProps:h,cancelButtonProps:b}=e,{cancelButtonProps:$,okButtonProps:y}=dt("modal"),v=`${s}-confirm`,C=e.width||416,S=e.style||{},x=z(v,`${v}-${e.type}`,{[`${v}-rtl`]:o==="rtl"},e.className),w=i.useMemo(()=>{const R=jl(p,g);return R.closable??(R.closable=!1),R},[p,g]),[,I]=jt(),E=i.useMemo(()=>n!==void 0?n:I.zIndexPopupBase+Yu,[n,I]);return i.createElement(A0,{...e,className:x,wrapClassName:z({[`${v}-centered`]:!!e.centered},a),onCancel:()=>{t==null||t({triggerCancel:!0}),d==null||d(!1)},title:m,footer:null,transitionName:lr(l||"","zoom",e.transitionName),maskTransitionName:lr(l||"","fade",e.maskTransitionName),mask:w,style:S,styles:{body:c,mask:r,...f},width:C,zIndex:E,closable:u},i.createElement(z0,{...e,confirmPrefixCls:v,okButtonProps:{...y,...h},cancelButtonProps:{...$,...b}}))},B0=e=>{const{rootPrefixCls:t,iconPrefixCls:n,direction:r,theme:o}=e;return i.createElement(An,{prefixCls:t,iconPrefixCls:n,direction:r,theme:o},i.createElement(E2,{...e}))},xr=[];let L0="";function H0(){return L0}const I2=e=>{var u;const{prefixCls:t,getContainer:n,direction:r}=e,o=gh(),s=i.useContext(je),a=H0()||s.getPrefixCls(),l=t||`${a}-modal`;let c=n;return c===!1&&(c=void 0),N.createElement(B0,{...e,rootPrefixCls:a,prefixCls:l,iconPrefixCls:s.iconPrefixCls,theme:s.theme,direction:r??s.direction,locale:((u=s.locale)==null?void 0:u.Modal)??o,getContainer:c})};function hs(e){const t=Dh(),n=document.createDocumentFragment();let r={...e,close:l,open:!0},o;function s(...u){var f;u.some(m=>m==null?void 0:m.triggerCancel)&&((f=e.onCancel)==null||f.call(e,()=>{},...u.slice(1)));for(let m=0;m{})}const a=u=>{clearTimeout(o),o=setTimeout(()=>{const d=t.getPrefixCls(void 0,H0()),f=t.getIconPrefixCls(),m=t.getTheme(),p=N.createElement(I2,{...u});ed(N.createElement(An,{prefixCls:d,iconPrefixCls:f,theme:m},typeof t.holderRender=="function"?t.holderRender(p):p),n)})};function l(...u){r={...r,open:!1,afterClose:()=>{typeof e.afterClose=="function"&&e.afterClose(),s.apply(this,u)}},a(r)}function c(u){typeof u=="function"?r=u(r):r={...r,...u},a(r)}return a(r),xr.push(l),{destroy:l,update:c}}function D0(e){return{...e,type:"warning"}}function F0(e){return{...e,type:"info"}}function _0(e){return{...e,type:"success"}}function k0(e){return{...e,type:"error"}}function V0(e){return{...e,type:"confirm"}}function P2({rootPrefixCls:e}){L0=e}const R2=({afterClose:e,config:t,...n},r)=>{const[o,s]=i.useState(!0),[a,l]=i.useState(t),{direction:c,getPrefixCls:u}=i.useContext(je),d=u("modal"),f=u(),m=()=>{var b;e(),(b=a.afterClose)==null||b.call(a)},p=(...b)=>{var y;s(!1),b.some(v=>v==null?void 0:v.triggerCancel)&&((y=a.onCancel)==null||y.call(a,()=>{},...b.slice(1)))};i.useImperativeHandle(r,()=>({destroy:p,update:b=>{l($=>{const y=typeof b=="function"?b($):b;return{...$,...y}})}}));const g=a.okCancel??a.type==="confirm",[h]=dn("Modal",jn.Modal);return i.createElement(B0,{prefixCls:d,rootPrefixCls:f,...a,close:p,open:o,afterClose:m,okText:a.okText||(g?h==null?void 0:h.okText:h==null?void 0:h.justOkText),direction:a.direction||c,cancelText:a.cancelText||(h==null?void 0:h.cancelText),...n})},M2=i.forwardRef(R2);let qm=0;const N2=i.memo(i.forwardRef((e,t)=>{const[n,r]=NC();return i.useImperativeHandle(t,()=>({patchElement:r}),[r]),i.createElement(i.Fragment,null,n)}));function W0(){const e=i.useRef(null),[t,n]=i.useState([]);i.useEffect(()=>{t.length&&(xt(t).forEach(a=>{a()}),n([]))},[t]);const r=i.useCallback(s=>function(l){var h;qm+=1;const c=i.createRef();let u;const d=new Promise(b=>{u=b});let f=!1,m;const p=i.createElement(M2,{key:`modal-${qm}`,config:s(l),ref:c,afterClose:()=>{m==null||m()},isSilent:()=>f,onConfirm:b=>{u(b)}});return m=(h=e.current)==null?void 0:h.patchElement(p),m&&xr.push(m),{destroy:()=>{function b(){var $;($=c.current)==null||$.destroy()}c.current?b():n($=>[].concat(xt($),[b]))},update:b=>{function $(){var y;(y=c.current)==null||y.update(b)}c.current?$():n(y=>[].concat(xt(y),[$]))},then:b=>(f=!0,d.then(b))}},[]);return[i.useMemo(()=>({info:r(F0),success:r(_0),error:r(k0),warning:r(D0),confirm:r(V0)}),[r]),i.createElement(N2,{key:"modal-holder",ref:e})]}const T2=e=>{const{componentCls:t,notificationMarginEdge:n,animationMaxHeight:r}=e,o=`${t}-notice`,s=new et("antNotificationFadeIn",{"0%":{transform:"translate3d(100%, 0, 0)",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",opacity:1}}),a=new et("antNotificationTopFadeIn",{"0%":{top:-r,opacity:0},"100%":{top:0,opacity:1}}),l=new et("antNotificationBottomFadeIn",{"0%":{bottom:e.calc(r).mul(-1).equal(),opacity:0},"100%":{bottom:0,opacity:1}}),c=new et("antNotificationLeftFadeIn",{"0%":{transform:"translate3d(-100%, 0, 0)",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",opacity:1}});return{[t]:{[`&${t}-top, &${t}-bottom`]:{marginInline:0,[o]:{marginInline:"auto auto"}},[`&${t}-top`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:a}},[`&${t}-bottom`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:l}},[`&${t}-topRight, &${t}-bottomRight`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:s}},[`&${t}-topLeft, &${t}-bottomLeft`]:{marginRight:{value:0,_skip_check_:!0},marginLeft:{value:n,_skip_check_:!0},[o]:{marginInlineEnd:"auto",marginInlineStart:0},[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:c}}}}},O2=["top","topLeft","topRight","bottom","bottomLeft","bottomRight"],A2={topLeft:"left",topRight:"right",bottomLeft:"left",bottomRight:"right",top:"left",bottom:"left"},z2=(e,t)=>{const{componentCls:n}=e;return{[`${n}-${t}`]:{[`&${n}-stack > ${n}-notice-wrapper`]:{[t.startsWith("top")?"top":"bottom"]:0,[A2[t]]:{value:0,_skip_check_:!0}}}}},B2=e=>{const t={};for(let n=1;n ${e.componentCls}-notice`]:{opacity:0,transition:`opacity ${e.motionDurationMid}`}};return{[`&:not(:nth-last-child(-n+${e.notificationStackLayer}))`]:{opacity:0,overflow:"hidden",color:"transparent",pointerEvents:"none"},...t}},L2=e=>{const t={};for(let n=1;n{const{componentCls:t}=e;return{[`${t}-stack`]:{[`& > ${t}-notice-wrapper`]:{transition:`transform ${e.motionDurationSlow}, backdrop-filter 0s`,willChange:"transform, opacity",position:"absolute",...B2(e)}},[`${t}-stack:not(${t}-stack-expanded)`]:{[`& > ${t}-notice-wrapper`]:{...L2(e)}},[`${t}-stack${t}-stack-expanded`]:{[`& > ${t}-notice-wrapper`]:{"&:not(:nth-last-child(-n + 1))":{opacity:1,overflow:"unset",color:"inherit",pointerEvents:"auto",[`& > ${e.componentCls}-notice`]:{opacity:1}},"&:after":{content:'""',position:"absolute",height:e.margin,width:"100%",insetInline:0,bottom:e.calc(e.margin).mul(-1).equal(),background:"transparent",pointerEvents:"auto"}}},...O2.map(n=>z2(e,n)).reduce((n,r)=>({...n,...r}),{})}},D2=e=>{const{iconCls:t,componentCls:n,boxShadow:r,fontSizeLG:o,notificationMarginBottom:s,borderRadiusLG:a,colorSuccess:l,colorInfo:c,colorWarning:u,colorError:d,colorTextHeading:f,notificationBg:m,notificationPadding:p,notificationMarginEdge:g,progressBg:h,notificationProgressHeight:b,fontSize:$,lineHeight:y,width:v,notificationIconSize:C,colorText:S,colorSuccessBg:x,colorErrorBg:w,colorInfoBg:I,colorWarningBg:E,motionDurationMid:R}=e,P=`${n}-notice`;return{position:"relative",marginBottom:s,marginInlineStart:"auto",background:m,borderRadius:a,boxShadow:r,[P]:{padding:p,width:v,maxWidth:`calc(100vw - ${K(e.calc(g).mul(2).equal())})`,lineHeight:y,wordWrap:"break-word",borderRadius:a,overflow:"hidden","&-success":x?{background:x}:{},"&-error":w?{background:w}:{},"&-info":I?{background:I}:{},"&-warning":E?{background:E}:{}},[`${P}-title`]:{marginBottom:e.marginXS,color:f,fontSize:o,lineHeight:e.lineHeightLG},[`${P}-description`]:{fontSize:$,color:S,marginTop:e.marginXS},[`${P}-closable ${P}-title`]:{paddingInlineEnd:e.paddingLG},[`${P}-with-icon ${P}-title`]:{marginBottom:e.marginXS,marginInlineStart:e.calc(e.marginSM).add(C).equal(),fontSize:o},[`${P}-with-icon ${P}-description`]:{marginInlineStart:e.calc(e.marginSM).add(C).equal(),fontSize:$},[`${P}-icon`]:{position:"absolute",fontSize:C,lineHeight:1,[`&-success${t}`]:{color:l},[`&-info${t}`]:{color:c},[`&-warning${t}`]:{color:u},[`&-error${t}`]:{color:d}},[`${P}-close`]:{position:"absolute",top:e.notificationPaddingVertical,insetInlineEnd:e.notificationPaddingHorizontal,color:e.colorIcon,outline:"none",width:e.notificationCloseButtonSize,height:e.notificationCloseButtonSize,borderRadius:e.borderRadiusSM,transition:["color","background-color"].map(M=>`${M} ${R}`).join(", "),display:"flex",alignItems:"center",justifyContent:"center",background:"none",border:"none","&:hover":{color:e.colorIconHover,backgroundColor:e.colorBgTextHover},"&:active":{backgroundColor:e.colorBgTextActive},...bn(e)},[`${P}-progress`]:{position:"absolute",display:"block",appearance:"none",inlineSize:`calc(100% - ${K(a)} * 2)`,left:{_skip_check_:!0,value:a},right:{_skip_check_:!0,value:a},bottom:0,blockSize:b,border:0,"&, &::-webkit-progress-bar":{borderRadius:a,backgroundColor:"rgba(0, 0, 0, 0.04)"},"&::-moz-progress-bar":{background:h},"&::-webkit-progress-value":{borderRadius:a,background:h}},[`${P}-actions`]:{float:"right",marginTop:e.marginSM}}},F2=e=>{const{componentCls:t,notificationMarginBottom:n,notificationMarginEdge:r,motionDurationMid:o,motionEaseInOut:s}=e,a=`${t}-notice`,l=new et("antNotificationFadeOut",{"0%":{maxHeight:e.animationMaxHeight,marginBottom:n},"100%":{maxHeight:0,marginBottom:0,paddingTop:0,paddingBottom:0,opacity:0}});return[{[t]:{...Ct(e),position:"fixed",zIndex:e.zIndexPopup,marginRight:{value:r,_skip_check_:!0},[`${t}-hook-holder`]:{position:"relative"},[`${t}-fade-appear-prepare`]:{opacity:"0 !important"},[`${t}-fade-enter, ${t}-fade-appear`]:{animationDuration:e.motionDurationMid,animationTimingFunction:s,animationFillMode:"both",opacity:0,animationPlayState:"paused"},[`${t}-fade-leave`]:{animationTimingFunction:s,animationFillMode:"both",animationDuration:o,animationPlayState:"paused"},[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationPlayState:"running"},[`${t}-fade-leave${t}-fade-leave-active`]:{animationName:l,animationPlayState:"running"},"&-rtl":{direction:"rtl",[`${a}-actions`]:{float:"left"}}}},{[t]:{[`${a}-wrapper`]:D2(e)}}]},_2=e=>({zIndexPopup:e.zIndexPopupBase+Yu+50,width:384,progressBg:`linear-gradient(90deg, ${e.colorPrimaryBorderHover}, ${e.colorPrimary})`,colorSuccessBg:void 0,colorErrorBg:void 0,colorInfoBg:void 0,colorWarningBg:void 0}),k2=e=>{const t=e.paddingMD,n=e.paddingLG;return rt(e,{notificationBg:e.colorBgElevated,notificationPaddingVertical:t,notificationPaddingHorizontal:n,notificationIconSize:e.calc(e.fontSizeLG).mul(e.lineHeightLG).equal(),notificationCloseButtonSize:e.calc(e.controlHeightLG).mul(.55).equal(),notificationMarginBottom:e.margin,notificationPadding:`${K(e.paddingMD)} ${K(e.paddingContentHorizontalLG)}`,notificationMarginEdge:e.marginLG,animationMaxHeight:150,notificationStackLayer:3,notificationProgressHeight:2})},V2=at("Notification",e=>{const t=k2(e);return[F2(t),T2(t),H2(t)]},_2);function j0(e,t){return t===null||t===!1?null:t||i.createElement(Br,{className:`${e}-close-icon`})}const W2={success:qu,info:Gu,error:is,warning:as},j2=e=>{const{prefixCls:t,icon:n,type:r,title:o,description:s,actions:a,role:l="alert",styles:c,classNames:u}=e;let d=null;return n?d=i.createElement("span",{className:z(`${t}-icon`,u.icon),style:c.icon},n):r&&(d=i.createElement(W2[r]||null,{className:z(`${t}-icon`,u.icon,`${t}-icon-${r}`),style:c.icon})),i.createElement("div",{className:z({[`${t}-with-icon`]:d}),role:l},d,i.createElement("div",{className:z(`${t}-title`,u.title),style:c.title},o),s&&i.createElement("div",{className:z(`${t}-description`,u.description),style:c.description},s),a&&i.createElement("div",{className:z(`${t}-actions`,u.actions),style:c.actions},a))};function q2(e,t,n){let r;switch(e){case"top":r={left:"50%",transform:"translateX(-50%)",right:"auto",top:t,bottom:"auto"};break;case"topLeft":r={left:0,top:t,bottom:"auto"};break;case"topRight":r={right:0,top:t,bottom:"auto"};break;case"bottom":r={left:"50%",transform:"translateX(-50%)",right:"auto",top:"auto",bottom:n};break;case"bottomLeft":r={left:0,top:"auto",bottom:n};break;default:r={right:0,top:"auto",bottom:n};break}return r}function G2(e){return{motionName:`${e}-fade`}}function X2(e,t,n){return typeof e<"u"?e:typeof(t==null?void 0:t.closeIcon)<"u"?t.closeIcon:n==null?void 0:n.closeIcon}const Gm=24,U2=4.5,K2="topRight",Y2=({children:e,prefixCls:t})=>{const n=_t(t),[r,o]=V2(t,n);return N.createElement(Wh,{classNames:{list:z(r,o,n)}},e)},Q2=(e,{prefixCls:t,key:n})=>N.createElement(Y2,{prefixCls:t,key:n},e),Z2=N.forwardRef((e,t)=>{const{top:n,bottom:r,prefixCls:o,getContainer:s,maxCount:a,rtl:l,onAllRemoved:c,stack:u,duration:d=U2,pauseOnHover:f=!0,showProgress:m}=e,{getPrefixCls:p,getPopupContainer:g,direction:h}=dt("notification"),{notification:b}=i.useContext(je),[,$]=jt(),y=o||p("notification"),v=i.useMemo(()=>typeof d=="number"&&d>0?d:!1,[d]),C=P=>q2(P,n??Gm,r??Gm),S=()=>z({[`${y}-rtl`]:l??h==="rtl"}),x=()=>G2(y),[w,I]=jh({prefixCls:y,style:C,className:S,motion:x,closable:{closeIcon:j0(y)},duration:v,getContainer:()=>(s==null?void 0:s())||(g==null?void 0:g())||document.body,maxCount:a,pauseOnHover:f,showProgress:m,onAllRemoved:c,renderNotifications:Q2,stack:u===!1?!1:{threshold:typeof u=="object"?u==null?void 0:u.threshold:void 0,offset:8,gap:$.margin}}),[E,R]=pt([b==null?void 0:b.classNames,e==null?void 0:e.classNames],[b==null?void 0:b.styles,e==null?void 0:e.styles],{props:e});return N.useImperativeHandle(t,()=>({...w,prefixCls:y,notification:b,classNames:E,styles:R})),I});function J2(e){const t=N.useRef(null),{notification:n}=N.useContext(je);return[N.useMemo(()=>{const o=c=>{if(!t.current)return;const{open:u,prefixCls:d,notification:f,classNames:m,styles:p}=t.current,g=(f==null?void 0:f.className)||{},h=(f==null?void 0:f.style)||{},b=`${d}-notice`,{title:$,message:y,description:v,icon:C,type:S,btn:x,actions:w,className:I,style:E,role:R="alert",closeIcon:P,closable:M,classNames:O={},styles:A={},...T}=c,F=$??y,H=w??x,L=j0(b,X2(P,e,f)),[B,D,,k]=bh(ci({...e||{},...c}),ci(n),{closable:!0,closeIcon:L}),W=B?{onClose:M&&typeof M=="object"?M.onClose:void 0,closeIcon:D,...k}:!1,_=rr(O,{props:c}),X=rr(A,{props:c}),U=Fi(void 0,m,_),j=Ku(p,X);return u({placement:(e==null?void 0:e.placement)??K2,...T,content:N.createElement(j2,{prefixCls:b,icon:C,type:S,title:F,description:v,actions:H,role:R,classNames:U,styles:j}),className:z({[`${b}-${S}`]:S},I,g,U.root),style:{...h,...j.root,...E},closable:W})},a={open:o,destroy:c=>{var u,d;c!==void 0?(u=t.current)==null||u.close(c):(d=t.current)==null||d.destroy()}};return["success","info","warning","error"].forEach(c=>{a[c]=u=>o({...u,type:c})}),a},[e,n]),N.createElement(Z2,{key:"notification-holder",...e,ref:t})]}function eI(e){return J2(e)}const hc=N.createContext({}),q0=N.createContext({message:{},notification:{},modal:{}}),tI=e=>{const{componentCls:t,colorText:n,fontSize:r,lineHeight:o,fontFamily:s}=e;return{[t]:{color:n,fontSize:r,lineHeight:o,fontFamily:s,[`&${t}-rtl`]:{direction:"rtl"}}}},nI=()=>({}),rI=at("App",tI,nI),oI=e=>{const{prefixCls:t,children:n,className:r,rootClassName:o,message:s,notification:a,style:l,component:c="div"}=e,{direction:u,getPrefixCls:d,className:f,style:m}=dt("app"),p=d("app",t),[g,h]=rI(p),b=z(g,p,r,o,h,{[`${p}-rtl`]:u==="rtl"}),$=i.useContext(hc),y=N.useMemo(()=>({message:{...$.message,...s},notification:{...$.notification,...a}}),[s,a,$.message,$.notification]),[v,C]=Uh(y.message),[S,x]=eI(y.notification),[w,I]=W0(),E=N.useMemo(()=>({message:v,notification:S,modal:w}),[v,S,w]),R=c===!1?N.Fragment:c,P={className:z(f,b),style:{...m,...l}};return N.createElement(q0.Provider,{value:E},N.createElement(hc.Provider,{value:y},N.createElement(R,{...c===!1?void 0:P},I,C,x,n)))},sI=()=>N.useContext(q0),iI=oI;iI.useApp=sI;function G0(e){return t=>i.createElement(An,{theme:{token:{motion:!1,zIndexPopupBase:0}}},i.createElement(e,{...t}))}const bd=(e,t,n,r,o)=>G0(a=>{const{prefixCls:l,style:c}=a,u=i.useRef(null),[d,f]=i.useState(0),[m,p]=i.useState(0),[g,h]=bt(!1,a.open),{getPrefixCls:b}=i.useContext(je),$=b(r||"select",l);i.useEffect(()=>{if(h(!0),typeof ResizeObserver<"u"){const C=new ResizeObserver(x=>{const w=x[0].target;f(w.offsetHeight+8),p(w.offsetWidth)}),S=setInterval(()=>{var I;const x=o?`.${o($)}`:`.${$}-dropdown`,w=(I=u.current)==null?void 0:I.querySelector(x);w&&(clearInterval(S),C.observe(w))},10);return()=>{clearInterval(S),C.disconnect()}}},[$]);let y={...a,style:{...c,margin:0},open:g,getPopupContainer:()=>u.current};n&&(y=n(y)),t&&Object.assign(y,{[t]:{overflow:{adjustX:!1,adjustY:!1}}});const v={paddingBottom:d,position:"relative",minWidth:m};return i.createElement("div",{ref:u,style:v},i.createElement(e,{...y}))}),aI=(e,t,n,r,o=!1,s,a)=>{const l=i.useMemo(()=>typeof n=="boolean"?{allowClear:n}:n&&typeof n=="object"?n:{allowClear:!1},[n]);return i.useMemo(()=>{const c=!o&&l.allowClear!==!1&&(t.length||s)&&!(a==="combobox"&&s==="");return{allowClear:c,clearIcon:c?l.clearIcon||r||"×":null}},[l,r,o,t.length,s,a])},X0=i.createContext(null);function Lr(){return i.useContext(X0)}function lI(e=250){const t=i.useRef(null),n=i.useRef(null);i.useEffect(()=>()=>{window.clearTimeout(n.current)},[]);function r(o){(o||t.current===null)&&(t.current=o),window.clearTimeout(n.current),n.current=window.setTimeout(()=>{t.current=null},e)}return[()=>t.current,r]}function U0(e,t){return e.filter(n=>n).some(n=>n.contains(t)||n===t)}function cI(e,t,n,r){const o=We(s=>{if(r)return;let a=s.target;a.shadowRoot&&s.composed&&(a=s.composedPath()[0]||a),s._ori_target&&(a=s._ori_target),t&&!U0(e(),a)&&n(!1)});i.useEffect(()=>(window.addEventListener("mousedown",o),()=>window.removeEventListener("mousedown",o)),[o])}function bc(){return bc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const t=e===!0?0:1;return{bottomLeft:{points:["tl","bl"],offset:[0,4],overflow:{adjustX:t,adjustY:1},htmlRegion:"scroll"},bottomRight:{points:["tr","br"],offset:[0,4],overflow:{adjustX:t,adjustY:1},htmlRegion:"scroll"},topLeft:{points:["bl","tl"],offset:[0,-4],overflow:{adjustX:t,adjustY:1},htmlRegion:"scroll"},topRight:{points:["br","tr"],offset:[0,-4],overflow:{adjustX:t,adjustY:1},htmlRegion:"scroll"}}},dI=(e,t)=>{const{prefixCls:n,disabled:r,visible:o,children:s,popupElement:a,animation:l,transitionName:c,popupStyle:u,popupClassName:d,direction:f="ltr",placement:m,builtinPlacements:p,popupMatchSelectWidth:g,popupRender:h,popupAlign:b,getPopupContainer:$,empty:y,onPopupVisibleChange:v,onPopupMouseEnter:C,onPopupMouseDown:S,onPopupBlur:x,...w}=e,I=`${n}-dropdown`;let E=a;h&&(E=h(a));const R=i.useMemo(()=>p||uI(g),[p,g]),P=l?`${I}-${l}`:c,M=typeof g=="number",O=i.useMemo(()=>M?null:g===!1?"minWidth":"width",[g,M]);let A=u;M&&(A={...u,width:g});const T=i.useRef(null);return i.useImperativeHandle(t,()=>({getPopupElement:()=>{var F;return(F=T.current)==null?void 0:F.popupElement}})),i.createElement(ki,bc({},w,{showAction:v?["click"]:[],hideAction:v?["click"]:[],popupPlacement:m||(f==="rtl"?"bottomRight":"bottomLeft"),builtinPlacements:R,prefixCls:I,popupMotion:{motionName:P},popup:i.createElement("div",{onMouseEnter:C,onMouseDown:S,onBlur:x},E),ref:T,stretch:O,popupAlign:b,popupVisible:o,getPopupContainer:$,popupClassName:z(d,{[`${I}-empty`]:y}),popupStyle:A,onPopupVisibleChange:v}),s)},fI=i.forwardRef(dI);function Xm(e,t){const{key:n}=e;let r;return"value"in e&&({value:r}=e),n??(r!==void 0?r:`rc-index-key-${t}`)}function vc(e){return typeof e<"u"&&!Number.isNaN(e)}function K0(e,t){const{label:n,value:r,options:o,groupLabel:s}=e||{},a=n||(t?"children":"label");return{label:a,value:r||"value",options:o||"options",groupLabel:s||a}}function mI(e,{fieldNames:t,childrenAsData:n}={}){const r=[],{label:o,value:s,options:a,groupLabel:l}=K0(t,!1);function c(u,d){Array.isArray(u)&&u.forEach(f=>{if(d||!(a in f)){const m=f[s];r.push({key:Xm(f,r.length),groupOption:d,data:f,label:f[o],value:m})}else{let m=f[l];m===void 0&&n&&(m=f.label),r.push({key:Xm(f,r.length),group:!0,data:f,label:m}),c(f[a],!0)}})}return c(e,!1),r}function yc(e){const t={...e};return"props"in t||Object.defineProperty(t,"props",{get(){return Pt(!1,"Return type is option instead of Option instance. Please read value directly instead of reading from `props`."),t}}),t}const pI=(e,t,n)=>{if(!t||!t.length)return null;let r=!1;const o=(a,[l,...c])=>{if(!l)return[a];const u=a.split(l);return r=r||u.length>1,u.reduce((d,f)=>[...d,...o(f,c)],[]).filter(Boolean)},s=o(e,t);return r?typeof n<"u"?s.slice(0,n):s:null};function gI(e){const{visible:t,values:n}=e;if(!t)return null;const r=50;return i.createElement("span",{"aria-live":"polite",style:{width:0,height:0,position:"absolute",overflow:"hidden",opacity:0}},`${n.slice(0,r).map(({label:o,value:s})=>["number","string"].includes(typeof o)?o:s).join(", ")}`,n.length>r?", ...":null)}const hI=e=>{const t=new MessageChannel;t.port1.onmessage=e,t.port2.postMessage(null)},vd=(e,t=1)=>{if(t<=0){e();return}hI(()=>{vd(e,t-1)})};function bI(e,t,n,r){const[o,s]=i.useState(!1);i.useEffect(()=>{s(!0)},[]);const[a,l]=bt(e,t),[c,u]=i.useState(!1),d=o?a:!1,f=r(d),m=i.useRef(0),p=We(h=>{n&&f!==h&&n(h),l(h)}),g=We((h,b={})=>{const{cancelFun:$}=b;m.current+=1;const y=m.current,v=typeof h=="boolean"?h:!f;u(!v);function C(){y===m.current&&!($!=null&&$())&&(p(v),u(!1))}v?C():vd(()=>{C()})});return[d,f,g,c]}function Fa(e){const{children:t,...n}=e;return t?i.createElement("div",n,t):null}const Y0=i.createContext(null);function bs(){return i.useContext(Y0)}const Q0=i.forwardRef((e,t)=>{const{onChange:n,onKeyDown:r,onBlur:o,style:s,syncWidth:a,value:l,className:c,autoComplete:u,...d}=e,{prefixCls:f,mode:m,onSearch:p,onSearchSubmit:g,onInputBlur:h,autoFocus:b,tokenWithEnter:$,placeholder:y,components:{input:v="input"}}=bs(),{id:C,classNames:S,styles:x,open:w,activeDescendantId:I,role:E,disabled:R}=Lr()||{},P=z(`${f}-input`,S==null?void 0:S.input,c),M=i.useRef(!1),O=i.useRef(null),A=i.useRef(null);i.useImperativeHandle(t,()=>A.current);const T=U=>{let{value:j}=U.target;if($&&O.current&&/[\r\n]/.test(O.current)){const V=O.current.replace(/[\r\n]+$/,"").replace(/\r\n/g," ").replace(/[\r\n]/g," ");j=j.replace(V,O.current)}O.current=null,p&&p(j,!0,M.current),n==null||n(U)},F=U=>{const{key:j}=U,{value:V}=U.currentTarget;j==="Enter"&&m==="tags"&&!M.current&&g&&g(V),r==null||r(U)},H=U=>{h==null||h(),o==null||o(U)},L=()=>{M.current=!0},B=U=>{if(M.current=!1,m!=="combobox"){const{value:j}=U.currentTarget;p==null||p(j,!0,!1)}},D=U=>{const{clipboardData:j}=U,V=j==null?void 0:j.getData("text");O.current=V||""},[k,W]=i.useState(void 0);nt(()=>{const U=A.current;if(a&&U){U.style.width="0px";const j=U.scrollWidth;W(j),U.style.width=""}},[a,l]);const _={id:C,type:m==="combobox"?"text":"search",...d,ref:A,style:{...x==null?void 0:x.input,...s,"--select-input-width":k},autoFocus:b,autoComplete:u||"off",className:P,disabled:R,value:l||"",onChange:T,onKeyDown:F,onBlur:H,onPaste:D,onCompositionStart:L,onCompositionEnd:B,role:E||"combobox","aria-expanded":w||!1,"aria-haspopup":"listbox","aria-owns":w?`${C}_list`:void 0,"aria-autocomplete":"list","aria-controls":w?`${C}_list`:void 0,"aria-activedescendant":w?I:void 0};if(i.isValidElement(v)){const U=v.props||{},j={placeholder:e.placeholder||y,..._,...U};return Object.keys(U).forEach(V=>{const G=U[V];typeof G=="function"&&(j[V]=(...te)=>{var ee;G(...te),(ee=_[V])==null||ee.call(_,...te)})}),j.ref=Ft(v.ref,_.ref),i.cloneElement(v,j)}const X=v;return i.createElement(X,_)});function Z0(e){const{prefixCls:t,placeholder:n,displayValues:r}=bs(),{classNames:o,styles:s}=Lr(),{show:a=!0}=e;return r.length?null:i.createElement("div",{className:z(`${t}-placeholder`,o==null?void 0:o.placeholder),style:{visibility:a?"visible":"hidden",...s==null?void 0:s.placeholder}},n)}const yd=i.createContext(null);function J0(e){return Array.isArray(e)?e:e!==void 0?[e]:[]}function vI(e){return e!=null}function yI(e){return!e&&e!==0}function Um(e){return["string","number"].includes(typeof e)}function $c(e){let t;return e&&(Um(e.title)?t=e.title.toString():Um(e.label)&&(t=e.label.toString())),t}function Cc(){return Cc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:n,searchValue:r,activeValue:o,displayValues:s,maxLength:a,mode:l}=bs(),{triggerOpen:c,title:u,showSearch:d,classNames:f,styles:m}=Lr(),p=i.useContext(yd),[g,h]=i.useState(!1),b=l==="combobox",$=s[0],y=i.useMemo(()=>b&&o&&!g&&c?o:d?r:"",[b,o,g,c,r,d]),[v,C,S,x]=i.useMemo(()=>{let E,R,P;if($&&(p!=null&&p.flattenOptions)){const O=p.flattenOptions.find(A=>A.value===$.value);O!=null&&O.data&&(E=O.data.className,R=O.data.style,P=$c(O.data))}return $&&!P&&(P=$c($)),u!==void 0&&(P=u),[E,R,P,!!E||!!R]},[$,p==null?void 0:p.flattenOptions,u]);i.useEffect(()=>{b&&h(!1)},[b,o]);const w=$&&$.label!==null&&$.label!==void 0&&String($.label).trim()!=="",I=$?x?i.createElement("div",{className:z(`${n}-content-value`,v),style:{...y?{visibility:"hidden"}:{},...C},title:S},$.label):$.label:i.createElement(Z0,{show:!y});return i.createElement("div",{className:z(`${n}-content`,w&&`${n}-content-has-value`,y&&`${n}-content-has-search-value`,x&&`${n}-content-has-option-style`,f==null?void 0:f.content),style:m==null?void 0:m.content,title:x?void 0:S},I,i.createElement(Q0,Cc({ref:t},e,{value:y,maxLength:l==="combobox"?a:void 0,onChange:E=>{var R;h(!0),(R=e.onChange)==null||R.call(e,E)}})))}),CI=Symbol.for("react.element"),SI=Symbol.for("react.transitional.element"),xI=Symbol.for("react.fragment");function eb(e){return e&&typeof e=="object"&&(e.$$typeof===CI||e.$$typeof===SI)&&e.type===xI}function Sc(e,t={}){let n=[];return N.Children.forEach(e,r=>{r==null&&!t.keepEmpty||(Array.isArray(r)?n=n.concat(Sc(r)):eb(r)&&r.props?n=n.concat(Sc(r.props.children,t)):n.push(r))}),n}function Km(e){return e instanceof HTMLElement||e instanceof SVGElement}function wI(e){return e&&typeof e=="object"&&Km(e.nativeElement)?e.nativeElement:Km(e)?e:null}function EI(e,t,n){const r=i.useRef({});return(!("value"in r.current)||n(r.current.condition,t))&&(r.current.value=e(),r.current.condition=t),r.current.value}const II=Number(i.version.split(".")[0]),PI=(e,t)=>{typeof e=="function"?e(t):typeof e=="object"&&e&&"current"in e&&(e.current=t)},RI=(...e)=>{const t=e.filter(Boolean);return t.length<=1?t[0]:n=>{e.forEach(r=>{PI(r,n)})}},MI=(...e)=>EI(()=>RI(...e),e,(t,n)=>t.length!==n.length||t.every((r,o)=>r!==n[o])),NI=e=>{var n,r;if(!e)return!1;if(tb(e)&&II>=19)return!0;const t=Ir.isMemo(e)?e.type.type:e.type;return!(typeof t=="function"&&!((n=t.prototype)!=null&&n.render)&&t.$$typeof!==Ir.ForwardRef||typeof e=="function"&&!((r=e.prototype)!=null&&r.render)&&e.$$typeof!==Ir.ForwardRef)};function tb(e){return i.isValidElement(e)&&!eb(e)}const TI=e=>{if(e&&tb(e)){const t=e;return t.props.propertyIsEnumerable("ref")?t.props.ref:t.ref}return null},xc=i.createContext(null);function OI({children:e,onBatchResize:t}){const n=i.useRef(0),r=i.useRef([]),o=i.useContext(xc),s=i.useCallback((a,l,c)=>{n.current+=1;const u=n.current;r.current.push({size:a,element:l,data:c}),Promise.resolve().then(()=>{u===n.current&&(t==null||t(r.current),r.current=[])}),o==null||o(a,l,c)},[t,o]);return i.createElement(xc.Provider,{value:s},e)}const or=new Map;function AI(e){e.forEach(t=>{var r;const{target:n}=t;(r=or.get(n))==null||r.forEach(o=>o(n))})}let _a;function nb(){return _a||(_a=new ResizeObserver(AI)),_a}function zI(e,t){or.has(e)||(or.set(e,new Set),nb().observe(e)),or.get(e).add(t)}function BI(e,t){or.has(e)&&(or.get(e).delete(t),or.get(e).size||(nb().unobserve(e),or.delete(e)))}function LI(e,t){const{children:n,disabled:r}=e,o=i.useRef(null),s=i.useContext(xc),a=typeof n=="function",l=a?n(o):n,c=i.useRef({width:-1,height:-1,offsetWidth:-1,offsetHeight:-1}),u=!a&&i.isValidElement(l)&&NI(l),d=u?TI(l):null,f=MI(d,o),m=()=>wI(o.current);i.useImperativeHandle(t,()=>m());const p=i.useRef(e);p.current=e;const g=i.useCallback(h=>{const{onResize:b,data:$}=p.current,{width:y,height:v}=h.getBoundingClientRect(),{offsetWidth:C,offsetHeight:S}=h,x=Math.floor(y),w=Math.floor(v);if(c.current.width!==x||c.current.height!==w||c.current.offsetWidth!==C||c.current.offsetHeight!==S){const I={width:x,height:w,offsetWidth:C,offsetHeight:S};c.current=I;const E=C===Math.round(y)?y:C,R=S===Math.round(v)?v:S,P={...I,offsetWidth:E,offsetHeight:R};s==null||s(P,h,$),b&&Promise.resolve().then(()=>{b(P,h)})}},[]);return i.useEffect(()=>{const h=m();return h&&!r&&zI(h,g),()=>BI(h,g)},[o.current,r]),u?i.cloneElement(l,{ref:f}):l}const HI=i.forwardRef(LI);function wc(){return wc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const a=(o==null?void 0:o.key)||`${DI}-${s}`;return i.createElement(HI,wc({},e,{key:a,ref:s===0?t:void 0}),o)})}const vs=i.forwardRef(FI);vs.Collection=OI;const qr=void 0;function _I(e,t){const{prefixCls:n,invalidate:r,item:o,renderItem:s,responsive:a,responsiveDisabled:l,registerSize:c,itemKey:u,className:d,style:f,children:m,display:p,order:g,component:h="div",...b}=e,$=a&&!p;function y(w){c(u,w)}i.useEffect(()=>()=>{y(null)},[]);const v=s&&o!==qr?s(o,{index:g}):m;let C;r||(C={opacity:$?0:1,height:$?0:qr,overflowY:$?"hidden":qr,order:a?g:qr,pointerEvents:$?"none":qr,position:$?"absolute":qr});const S={};$&&(S["aria-hidden"]=!0);let x=i.createElement(h,Et({className:z(!r&&n,d),style:{...C,...f}},S,b,{ref:t}),v);return a&&(x=i.createElement(vs,{onResize:({offsetWidth:w})=>{y(w)},disabled:l},x)),x}const Ho=i.forwardRef(_I);function kI(e){if(typeof MessageChannel>"u")Ke(e);else{const t=new MessageChannel;t.port1.onmessage=()=>e(),t.port2.postMessage(void 0)}}function VI(){const e=i.useRef(null);return n=>{e.current||(e.current=[],kI(()=>{Vn.unstable_batchedUpdates(()=>{e.current.forEach(r=>{r()}),e.current=null})})),e.current.push(n)}}function Gr(e,t){const[n,r]=i.useState(t),o=We(s=>{e(()=>{r(s)})});return[n,o]}const yi=N.createContext(null),WI=(e,t)=>{const n=i.useContext(yi);if(!n){const{component:l="div",...c}=e;return i.createElement(l,Et({},c,{ref:t}))}const{className:r,...o}=n,{className:s,...a}=e;return i.createElement(yi.Provider,{value:null},i.createElement(Ho,Et({ref:t,className:z(r,s)},o,a)))},jI=i.forwardRef(WI),rb="responsive",ob="invalidate";function qI(e){return`+ ${e.length} ...`}function GI(e,t){const{prefixCls:n="rc-overflow",data:r=[],renderItem:o,renderRawItem:s,itemKey:a,itemWidth:l=10,ssr:c,style:u,className:d,maxCount:f,renderRest:m,renderRawRest:p,prefix:g,suffix:h,component:b="div",itemComponent:$,onVisibleChange:y,...v}=e,C=c==="full",S=VI(),[x,w]=Gr(S,null),I=x||0,[E,R]=Gr(S,new Map),[P,M]=Gr(S,0),[O,A]=Gr(S,0),[T,F]=Gr(S,0),[H,L]=Gr(S,0),[B,D]=i.useState(null),[k,W]=i.useState(null),_=i.useMemo(()=>k===null&&C?Number.MAX_SAFE_INTEGER:k||0,[k,x]),[X,U]=i.useState(!1),j=`${n}-item`,V=Math.max(P,O),G=f===rb,te=r.length&&G,ee=f===ob,ne=te||typeof f=="number"&&r.length>f,Y=i.useMemo(()=>{let fe=r;return te?x===null&&C?fe=r:fe=r.slice(0,Math.min(r.length,I/l)):typeof f=="number"&&(fe=r.slice(0,f)),fe},[r,l,x,f,te]),se=i.useMemo(()=>te?r.slice(_+1):r.slice(Y.length),[r,Y,te,_]),ue=i.useCallback((fe,Ce)=>typeof a=="function"?a(fe):(a&&(fe==null?void 0:fe[a]))??Ce,[a]),q=i.useCallback(o||(fe=>fe),[o]);function oe(fe,Ce,He){k===fe&&(Ce===void 0||Ce===B)||(W(fe),He||(U(fe{const Ie=new Map(He);return Ce===null?Ie.delete(fe):Ie.set(fe,Ce),Ie})}function ae(fe,Ce){A(Ce),M(O)}function we(fe,Ce){F(Ce)}function de(fe,Ce){L(Ce)}function ge(fe){return E.get(ue(Y[fe],fe))}nt(()=>{if(I&&typeof V=="number"&&Y){let fe=T+H;const Ce=Y.length,He=Ce-1;if(!Ce){oe(0,null);return}for(let Ie=0;IeI){oe(Ie-1,fe-re-H+O);break}}h&&ge(0)+H>I&&D(null)}},[I,E,O,T,H,ue,Y]);const be=X&&!!se.length;let me={};B!==null&&te&&(me={position:"absolute",left:B,top:0});const Ne={prefixCls:j,responsive:te,component:$,invalidate:ee},Ae=s?(fe,Ce)=>{const He=ue(fe,Ce);return i.createElement(yi.Provider,{key:He,value:{...Ne,order:Ce,item:fe,itemKey:He,registerSize:J,display:Ce<=_}},s(fe,Ce))}:(fe,Ce)=>{const He=ue(fe,Ce);return i.createElement(Ho,Et({},Ne,{order:Ce,key:He,item:fe,renderItem:q,itemKey:He,registerSize:J,display:Ce<=_}))},Ee={order:be?_:Number.MAX_SAFE_INTEGER,className:`${j}-rest`,registerSize:ae,display:be},ze=m||qI,Re=p?i.createElement(yi.Provider,{value:{...Ne,...Ee}},p(se)):i.createElement(Ho,Et({},Ne,Ee),typeof ze=="function"?ze(se):ze),ve=i.createElement(b,Et({className:z(!ee&&n,d),style:u,ref:t},v),g&&i.createElement(Ho,Et({},Ne,{responsive:G,responsiveDisabled:!te,order:-1,className:`${j}-prefix`,registerSize:we,display:!0}),g),Y.map(Ae),ne?Re:null,h&&i.createElement(Ho,Et({},Ne,{responsive:G,responsiveDisabled:!te,order:_,className:`${j}-suffix`,registerSize:de,display:!0,style:me}),h));return G?i.createElement(vs,{onResize:Z,disabled:!te},ve):ve}const kn=i.forwardRef(GI);kn.Item=jI;kn.RESPONSIVE=rb;kn.INVALIDATE=ob;const sb=e=>{const{className:t,style:n,customizeIcon:r,customizeIconProps:o,children:s,onMouseDown:a,onClick:l}=e,c=typeof r=="function"?r(o):r;return i.createElement("span",{className:t,onMouseDown:u=>{u.preventDefault(),a==null||a(u)},style:{userSelect:"none",WebkitUserSelect:"none",...n},unselectable:"on",onClick:l,"aria-hidden":!0},c!==void 0?c:i.createElement("span",{className:z(t.split(/\s+/).map(u=>`${u}-icon`))},s))};function Ec(){return Ec=Object.assign?Object.assign.bind():function(e){for(var t=1;t{e.preventDefault(),e.stopPropagation()},UI=i.forwardRef(function({inputProps:t},n){const{prefixCls:r,displayValues:o,searchValue:s,mode:a,onSelectorRemove:l,removeIcon:c}=bs(),{disabled:u,showSearch:d,triggerOpen:f,rawOpen:m,toggleOpen:p,autoClearSearchValue:g,tagRender:h,maxTagPlaceholder:b,maxTagTextLength:$,maxTagCount:y,classNames:v,styles:C}=Lr(),S=`${r}-selection-item`;let x=s;!m&&a==="multiple"&&g!==!1&&(x="");const w=d&&x||"",I=d&&!u,E=c??"×",R=b??(L=>`+ ${L.length} ...`),P=h,M=L=>{p(L)},O=L=>{l==null||l(L)},A=(L,B,D,k,W)=>i.createElement("span",{title:$c(L),className:z(S,{[`${S}-disabled`]:D},v==null?void 0:v.item),style:C==null?void 0:C.item},i.createElement("span",{className:z(`${S}-content`,v==null?void 0:v.itemContent),style:C==null?void 0:C.itemContent},B),k&&i.createElement(sb,{className:z(`${S}-remove`,v==null?void 0:v.itemRemove),style:C==null?void 0:C.itemRemove,onMouseDown:Ym,onClick:W,customizeIcon:E},"×")),T=(L,B,D,k,W,_,X)=>{const U=j=>{Ym(j),M(!f)};return i.createElement("span",{onMouseDown:U},P({label:B,value:L,index:X==null?void 0:X.index,disabled:D,closable:k,onClose:W,isMaxTag:!!_}))},F=(L,B)=>{const{disabled:D,label:k,value:W}=L,_=!u&&!D;let X=k;if(typeof $=="number"&&(typeof k=="string"||typeof k=="number")){const j=String(X);j.length>$&&(X=`${j.slice(0,$)}...`)}const U=j=>{j&&j.stopPropagation(),O(L)};return typeof P=="function"?T(W,X,D,_,U,void 0,B):A(L,X,D,_,U)},H=L=>{if(!o.length)return null;const B=typeof R=="function"?R(L):R;return typeof P=="function"?T(void 0,B,!1,!1,void 0,!0):A({title:B},B,!1)};return i.createElement(kn,{prefixCls:`${r}-content`,className:v==null?void 0:v.content,style:C==null?void 0:C.content,prefix:!o.length&&!w&&i.createElement(Z0,null),data:o,renderItem:F,renderRest:H,suffix:i.createElement(Q0,Ec({ref:n,disabled:u,readOnly:!I},t,{value:w||"",syncWidth:!0})),itemKey:XI,maxCount:y})}),KI=i.forwardRef(function(t,n){const{multiple:r,onInputKeyDown:o,tabIndex:s}=bs(),a=Lr(),{showSearch:l}=a,u={...cn(a,{aria:!0}),onKeyDown:o,readOnly:!l,tabIndex:s};return r?i.createElement(UI,{ref:n,inputProps:u}):i.createElement($I,{ref:n,inputProps:u})});function YI(e){return e&&![Me.ESC,Me.SHIFT,Me.BACKSPACE,Me.TAB,Me.WIN_KEY,Me.ALT,Me.META,Me.WIN_KEY_RIGHT,Me.CTRL,Me.SEMICOLON,Me.EQUALS,Me.CAPS_LOCK,Me.CONTEXT_MENU,Me.UP,Me.LEFT,Me.RIGHT,Me.F1,Me.F2,Me.F3,Me.F4,Me.F5,Me.F6,Me.F7,Me.F8,Me.F9,Me.F10,Me.F11,Me.F12].includes(e)}function $i(){return $i=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{which:G}=V,te=B.current instanceof HTMLTextAreaElement;if(!te&&P&&(G===Me.UP||G===Me.DOWN)&&V.preventDefault(),x&&x(V),te&&!P&&~[Me.UP,Me.DOWN,Me.LEFT,Me.RIGHT].indexOf(G))return;!(V.ctrlKey||V.altKey||V.metaKey)&&YI(G)&&M(!0)});i.useImperativeHandle(n,()=>({focus:V=>{var G,te;(te=(G=B.current||L.current).focus)==null||te.call(G,V)},blur:()=>{var V,G;(G=(V=B.current||L.current).blur)==null||G.call(V)},nativeElement:L.current}));const k=We(V=>{var G;if(!A){const te=co(B.current);V.nativeEvent._ori_target=te,te&&V.target!==te&&!te.contains(V.target)&&V.preventDefault();const ee=P&&!d&&(p==="combobox"||O);V.nativeEvent._select_lazy?P&&M(!1):((G=B.current)==null||G.focus(),ee||M())}C==null||C(V)}),{root:W}=E,_=yt(R,QI),X=cn(_,{aria:!0}),U=Object.keys(X),j={...t,onInputKeyDown:D};return W?i.isValidElement(W)?i.cloneElement(W,{..._,ref:Ft(W.ref,L)}):i.createElement(W,$i({},_,{ref:L})):i.createElement(Y0.Provider,{value:j},i.createElement("div",$i({},yt(_,U),{ref:L,className:o,style:s,onMouseDown:k}),i.createElement(Fa,{className:z(`${r}-prefix`,F==null?void 0:F.prefix),style:H==null?void 0:H.prefix},a),i.createElement(KI,{ref:B}),i.createElement(Fa,{className:z(`${r}-suffix`,{[`${r}-suffix-loading`]:T},F==null?void 0:F.suffix),style:H==null?void 0:H.suffix},l),c&&i.createElement(Fa,{className:z(`${r}-clear`,F==null?void 0:F.clear),style:H==null?void 0:H.clear,onMouseDown:V=>{V.nativeEvent._select_lazy=!0,S==null||S(V)}},c),u))});function JI(e,t,n){return i.useMemo(()=>{let{root:r,input:o}=e||{};return n&&(r=n()),t&&(o=t()),{root:r,input:o}},[e,t,n])}function Ic(){return Ic=Object.assign?Object.assign.bind():function(e){for(var t=1;te==="tags"||e==="multiple",eP=i.forwardRef((e,t)=>{const{id:n,prefixCls:r,className:o,styles:s,classNames:a,showSearch:l,tagRender:c,showScrollBar:u="optional",direction:d,omitDomProps:f,displayValues:m,onDisplayValuesChange:p,emptyOptions:g,notFoundContent:h="Not Found",onClear:b,maxCount:$,placeholder:y,mode:v,disabled:C,loading:S,getInputElement:x,getRawInputElement:w,open:I,defaultOpen:E,onPopupVisibleChange:R,activeValue:P,onActiveValueChange:M,activeDescendantId:O,searchValue:A,autoClearSearchValue:T,onSearch:F,onSearchSplit:H,tokenSeparators:L,allowClear:B,prefix:D,suffix:k,suffixIcon:W,clearIcon:_,OptionList:X,animation:U,transitionName:j,popupStyle:V,popupClassName:G,popupMatchSelectWidth:te,popupRender:ee,popupAlign:ne,placement:Y,builtinPlacements:se,getPopupContainer:ue,showAction:q=[],onFocus:oe,onBlur:Z,onKeyUp:J,onKeyDown:ae,onMouseDown:we,components:de,...ge}=e,be=Pc(v),me=i.useRef(null),Ne=i.useRef(null),Ae=i.useRef(null),[Ee,ze]=i.useState(!1);i.useImperativeHandle(t,()=>{var Oe,_e;return{focus:(Oe=me.current)==null?void 0:Oe.focus,blur:(_e=me.current)==null?void 0:_e.blur,scrollTo:Xe=>{var it;return(it=Ae.current)==null?void 0:it.scrollTo(Xe)},nativeElement:co(me.current)}});const Re=JI(de,x,w),ve=i.useMemo(()=>{var _e;if(v!=="combobox")return A;const Oe=(_e=m[0])==null?void 0:_e.value;return typeof Oe=="string"||typeof Oe=="number"?String(Oe):""},[A,v,m]),fe=v==="combobox"&&typeof x=="function"&&x()||null,Ce=!h&&g,[He,Ie,re,$e]=bI(E||!1,I,R,Oe=>C||Ce?!1:Oe),ke=i.useMemo(()=>(L||[]).some(Oe=>[` +`,`\r +`].includes(Oe)),[L]),De=(Oe,_e,Xe)=>{if(be&&vc($)&&m.length>=$)return;let it=!0,ht=Oe;M==null||M(null);const It=pI(Oe,L,vc($)?$-m.length:void 0),$t=Xe?null:It;return v!=="combobox"&&$t&&(ht="",H==null||H($t),re(!1),it=!1),F&&ve!==ht&&F(ht,{source:_e?"typing":"effect"}),Oe&&_e&&it&&re(!0),it},ot=Oe=>{!Oe||!Oe.trim()||F(Oe,{source:"submit"})};i.useEffect(()=>{!He&&!be&&v!=="combobox"&&De("",!1,!1)},[He]),i.useEffect(()=>{C&&(re(!1),ze(!1))},[C,Ie]);const[qe,ft]=lI(),Qe=i.useRef(!1),st=Oe=>{var It;const _e=qe(),{key:Xe}=Oe,it=Xe==="Enter",ht=Xe===" ";if(it||ht){const $t=v==="combobox";(ht&&!($t||l)||it&&!$t)&&Oe.preventDefault(),Ie||re(!0)}if(ft(!!ve),Xe==="Backspace"&&!_e&&be&&!ve&&m.length){const $t=[...m];let Gt=null;for(let Xt=$t.length-1;Xt>=0;Xt-=1){const kt=$t[Xt];if(!kt.disabled){$t.splice(Xt,1),Gt=kt;break}}Gt&&p($t,{type:"remove",values:[Gt]})}Ie&&(!it||!Qe.current)&&!ht&&(it&&(Qe.current=!0),(It=Ae.current)==null||It.onKeyDown(Oe)),ae==null||ae(Oe)},lt=(Oe,..._e)=>{var Xe;Ie&&((Xe=Ae.current)==null||Xe.onKeyUp(Oe,..._e)),Oe.key==="Enter"&&(Qe.current=!1),J==null||J(Oe,..._e)},Se=We(Oe=>{const _e=m.filter(Xe=>Xe!==Oe);p(_e,{type:"remove",values:[Oe]})}),Be=()=>{Qe.current=!1},Pe=()=>{var Oe;return[co(me.current),(Oe=Ne.current)==null?void 0:Oe.getPopupElement()]};cI(Pe,Ie,re,!!Re.root);const ye=i.useRef(!1),ce=Oe=>{ze(!0),C||(q.includes("focus")&&re(!0),oe==null||oe(Oe))},Q=()=>{Ie&&!ye.current&&re(!1,{cancelFun:()=>U0(Pe(),document.activeElement)})},pe=Oe=>{ze(!1),ve&&(v==="tags"?F(ve,{source:"submit"}):v==="multiple"&&F("",{source:"blur"})),Q(),C||Z==null||Z(Oe)},ie=(Oe,..._e)=>{var ht;const{target:Xe}=Oe,it=(ht=Ne.current)==null?void 0:ht.getPopupElement();it!=null&&it.contains(Xe)&&re&&re(!0),we==null||we(Oe,..._e),ye.current=!0,vd(()=>{ye.current=!1})},[,he]=i.useState({});function xe(){he({})}let Te;Re.root&&(Te=Oe=>{re(Oe)});const Fe=i.useMemo(()=>({...e,notFoundContent:h,open:Ie,triggerOpen:Ie,rawOpen:He,id:n,showSearch:l,multiple:be,toggleOpen:re,showScrollBar:u,styles:s,classNames:a,lockOptions:$e}),[e,h,re,n,l,be,Ie,He,u,s,a,$e]),Je=i.useMemo(()=>{const Oe=k??W;return typeof Oe=="function"?Oe({searchValue:ve,open:Ie,focused:Ee,showSearch:l,loading:S}):Oe},[k,W,ve,Ie,Ee,l,S]),tt=()=>{var Oe;b==null||b(),(Oe=me.current)==null||Oe.focus(),p([],{type:"clear",values:m}),De("",!1,!1)},{allowClear:Ze,clearIcon:Mt}=aI(r,m,B,_,C,ve,v),qt=i.createElement(X,{ref:Ae}),mt=z(r,o,{[`${r}-focused`]:Ee,[`${r}-multiple`]:be,[`${r}-single`]:!be,[`${r}-allow-clear`]:Ze,[`${r}-show-arrow`]:Je!=null,[`${r}-disabled`]:C,[`${r}-loading`]:S,[`${r}-open`]:Ie,[`${r}-customize-input`]:fe,[`${r}-show-search`]:l});let Ge=i.createElement(ZI,Ic({},ge,{ref:me,prefixCls:r,className:mt,focused:Ee,prefix:D,suffix:Je,clearIcon:Mt,multiple:be,mode:v,displayValues:m,placeholder:y,searchValue:ve,activeValue:P,onSearch:De,onSearchSubmit:ot,onInputBlur:Be,onFocus:ce,onBlur:pe,onClearMouseDown:tt,onKeyDown:st,onKeyUp:lt,onSelectorRemove:Se,tokenWithEnter:ke,onMouseDown:ie,components:Re}));return Ge=i.createElement(fI,{ref:Ne,disabled:C,prefixCls:r,visible:Ie,popupElement:qt,animation:U,transitionName:j,popupStyle:V,popupClassName:G,direction:d,popupMatchSelectWidth:te,popupRender:ee,popupAlign:ne,placement:Y,builtinPlacements:se,getPopupContainer:ue,empty:g,onPopupVisibleChange:Te,onPopupMouseEnter:xe,onPopupMouseDown:ie,onPopupBlur:Q},Ge),i.createElement(X0.Provider,{value:Fe},i.createElement(gI,{visible:Ee&&!Ie,values:m}),Ge)}),$d=()=>null;$d.isSelectOptGroup=!0;const Cd=()=>null;Cd.isSelectOption=!0;const ib=i.forwardRef(({height:e,offsetY:t,offsetX:n,children:r,prefixCls:o,onInnerResize:s,innerProps:a,rtl:l,extra:c},u)=>{let d={},f={display:"flex",flexDirection:"column"};return t!==void 0&&(d={height:e,position:"relative",overflow:"hidden"},f={...f,transform:`translateY(${t}px)`,[l?"marginRight":"marginLeft"]:-n,position:"absolute",left:0,right:0,top:0}),i.createElement("div",{style:d},i.createElement(vs,{onResize:({offsetHeight:m})=>{m&&s&&s()}},i.createElement("div",Et({style:f,className:z({[`${o}-holder-inner`]:o}),ref:u},a),r,c)))});ib.displayName="Filler";function tP({children:e,setRef:t}){const n=i.useCallback(r=>{t(r)},[]);return i.cloneElement(e,{ref:n})}function nP(e,t,n,r,o,s,a,{getKey:l}){return e.slice(t,n+1).map((c,u)=>{const d=t+u,f=a(c,d,{style:{width:r},offsetX:o}),m=l(c);return i.createElement(tP,{key:m,setRef:p=>s(c,p)},f)})}function rP(e,t,n){const r=e.length,o=t.length;let s,a;if(r===0&&o===0)return null;r{const l=rP(r||[],e||[],t);(l==null?void 0:l.index)!==void 0&&a(e[l.index]),o(e)},[e]),[s]}const Qm=typeof navigator=="object"&&/Firefox/i.test(navigator.userAgent),ab=(e,t,n,r)=>{const o=i.useRef(!1),s=i.useRef(null);function a(){clearTimeout(s.current),o.current=!0,s.current=setTimeout(()=>{o.current=!1},50)}const l=i.useRef({top:e,bottom:t,left:n,right:r});return l.current.top=e,l.current.bottom=t,l.current.left=n,l.current.right=r,(c,u,d=!1)=>{const f=c?u<0&&l.current.left||u>0&&l.current.right:u<0&&l.current.top||u>0&&l.current.bottom;return d&&f?(clearTimeout(s.current),o.current=!1):(!f||o.current)&&a(),!o.current&&f}};function sP(e,t,n,r,o,s,a){const l=i.useRef(0),c=i.useRef(null),u=i.useRef(null),d=i.useRef(!1),f=ab(t,n,r,o);function m(y,v){if(Ke.cancel(c.current),f(!1,v))return;const C=y;if(!C._virtualHandled)C._virtualHandled=!0;else return;l.current+=v,u.current=v,Qm||C.preventDefault(),c.current=Ke(()=>{const S=d.current?10:1;a(l.current*S,!1),l.current=0})}function p(y,v){a(v,!0),Qm||y.preventDefault()}const g=i.useRef(null),h=i.useRef(null);function b(y){if(!e)return;Ke.cancel(h.current),h.current=Ke(()=>{g.current=null},2);const{deltaX:v,deltaY:C,shiftKey:S}=y;let x=v,w=C;(g.current==="sx"||!g.current&&S&&C&&!v)&&(x=C,w=0,g.current="sx");const I=Math.abs(x),E=Math.abs(w);g.current===null&&(g.current=s&&I>E?"x":"y"),g.current==="y"?m(y,w):p(y,x)}function $(y){e&&(d.current=y.detail===u.current)}return[b,$]}function iP(e,t,n,r){const[o,s]=i.useMemo(()=>[new Map,[]],[e,n.id,r]);return(l,c=l)=>{let u=o.get(l),d=o.get(c);if(u===void 0||d===void 0){const f=e.length;for(let m=s.length;m{let p=!1;s.current.forEach((g,h)=>{if(g&&g.offsetParent){const{offsetHeight:b}=g,{marginTop:$,marginBottom:y}=getComputedStyle(g),v=Zm($),C=Zm(y),S=b+v+C;a.current.get(h)!==S&&(a.current.set(h,S),p=!0)}}),p&&o(g=>g+1)};if(f)m();else{l.current+=1;const p=l.current;Promise.resolve().then(()=>{p===l.current&&m()})}}function d(f,m){const p=e(f);s.current.get(p),m?(s.current.set(p,m),u()):s.current.delete(p)}return i.useEffect(()=>c,[]),[d,u,a.current,r]}const Jm=14/15;function cP(e,t,n){const r=i.useRef(!1),o=i.useRef(0),s=i.useRef(0),a=i.useRef(null),l=i.useRef(null);let c;const u=m=>{if(r.current){const p=Math.ceil(m.touches[0].pageX),g=Math.ceil(m.touches[0].pageY);let h=o.current-p,b=s.current-g;const $=Math.abs(h)>Math.abs(b);$?o.current=p:s.current=g;const y=n($,$?h:b,!1,m);y&&m.preventDefault(),clearInterval(l.current),y&&(l.current=setInterval(()=>{$?h*=Jm:b*=Jm;const v=Math.floor($?h:b);(!n($,v,!0)||Math.abs(v)<=.1)&&clearInterval(l.current)},16))}},d=()=>{r.current=!1,c()},f=m=>{c(),m.touches.length===1&&!r.current&&(r.current=!0,o.current=Math.ceil(m.touches[0].pageX),s.current=Math.ceil(m.touches[0].pageY),a.current=m.target,a.current.addEventListener("touchmove",u,{passive:!1}),a.current.addEventListener("touchend",d,{passive:!0}))};c=()=>{a.current&&(a.current.removeEventListener("touchmove",u),a.current.removeEventListener("touchend",d))},nt(()=>(e&&t.current.addEventListener("touchstart",f,{passive:!0}),()=>{var m;(m=t.current)==null||m.removeEventListener("touchstart",f),c(),clearInterval(l.current)}),[e])}function ep(e){return Math.floor(e**.5)}function Rc(e,t){return("touches"in e?e.touches[0]:e)[t?"pageX":"pageY"]-window[t?"scrollX":"scrollY"]}function uP(e,t,n){i.useEffect(()=>{const r=t.current;if(e&&r){let o=!1,s,a;const l=()=>{Ke.cancel(s)},c=()=>{l(),s=Ke(()=>{n(a),c()})},u=()=>{o=!1,l()},d=m=>{if(m.target.draggable||m.button!==0)return;const p=m;p._virtualHandled||(p._virtualHandled=!0,o=!0)},f=m=>{if(o){const p=Rc(m,!1),{top:g,bottom:h}=r.getBoundingClientRect();if(p<=g){const b=g-p;a=-ep(b),c()}else if(p>=h){const b=p-h;a=ep(b),c()}else l()}};return r.addEventListener("mousedown",d),r.ownerDocument.addEventListener("mouseup",u),r.ownerDocument.addEventListener("mousemove",f),r.ownerDocument.addEventListener("dragend",u),()=>{r.removeEventListener("mousedown",d),r.ownerDocument.removeEventListener("mouseup",u),r.ownerDocument.removeEventListener("mousemove",f),r.ownerDocument.removeEventListener("dragend",u),l()}}},[e])}const dP=10;function fP(e,t,n,r,o,s,a,l){const c=i.useRef(),[u,d]=i.useState(null);return nt(()=>{if(u&&u.times({...v}));return}s();const{targetAlign:f,originAlign:m,index:p,offset:g}=u,h=e.current.clientHeight;let b=!1,$=f,y=null;if(h){const v=f||m;let C=0,S=0,x=0;const w=Math.min(t.length-1,p);for(let E=0;E<=w;E+=1){const R=o(t[E]);S=C;const P=n.get(R);x=S+(P===void 0?r:P),C=x}let I=v==="top"?g:h-g;for(let E=w;E>=0;E-=1){const R=o(t[E]),P=n.get(R);if(P===void 0){b=!0;break}if(I-=P,I<=0)break}switch(v){case"top":y=S-g;break;case"bottom":y=x-h+g;break;default:{const{scrollTop:E}=e.current,R=E+h;SR&&($="bottom")}}y!==null&&a(y),y!==u.lastTop&&(b=!0)}b&&d({...u,times:u.times+1,targetAlign:$,lastTop:y})}},[u,e.current]),f=>{if(f==null){l();return}if(Ke.cancel(c.current),typeof f=="number")a(f);else if(f&&typeof f=="object"){let m;const{align:p}=f;"index"in f?{index:m}=f:m=t.findIndex(h=>o(h)===f.key);const{offset:g=0}=f;d({times:0,index:m,offset:g,originAlign:p})}}}const tp=i.forwardRef((e,t)=>{const{prefixCls:n,rtl:r,scrollOffset:o,scrollRange:s,onStartMove:a,onStopMove:l,onScroll:c,horizontal:u,spinSize:d,containerSize:f,style:m,thumbStyle:p,showScrollBar:g}=e,[h,b]=i.useState(!1),[$,y]=i.useState(null),[v,C]=i.useState(null),S=!r,x=i.useRef(),w=i.useRef(),[I,E]=i.useState(g),R=i.useRef(),P=()=>{g===!0||g===!1||(clearTimeout(R.current),E(!0),R.current=setTimeout(()=>{E(!1)},3e3))},M=s-f||0,O=f-d||0,A=i.useMemo(()=>o===0||M===0?0:o/M*O,[o,M,O]),T=_=>{_.stopPropagation(),_.preventDefault()},F=i.useRef({top:A,dragging:h,pageY:$,startTop:v});F.current={top:A,dragging:h,pageY:$,startTop:v};const H=_=>{b(!0),y(Rc(_,u)),C(F.current.top),a(),_.stopPropagation(),_.preventDefault()};i.useEffect(()=>{const _=j=>{j.preventDefault()},X=x.current,U=w.current;return X.addEventListener("touchstart",_,{passive:!1}),U.addEventListener("touchstart",H,{passive:!1}),()=>{X.removeEventListener("touchstart",_),U.removeEventListener("touchstart",H)}},[]);const L=i.useRef();L.current=M;const B=i.useRef();B.current=O,i.useEffect(()=>{if(h){let _;const X=j=>{const{dragging:V,pageY:G,startTop:te}=F.current;Ke.cancel(_);const ee=x.current.getBoundingClientRect(),ne=f/(u?ee.width:ee.height);if(V){const Y=(Rc(j,u)-G)*ne;let se=te;!S&&u?se-=Y:se+=Y;const ue=L.current,q=B.current,oe=q?se/q:0;let Z=Math.ceil(oe*ue);Z=Math.max(Z,0),Z=Math.min(Z,ue),_=Ke(()=>{c(Z,u)})}},U=()=>{b(!1),l()};return window.addEventListener("mousemove",X,{passive:!0}),window.addEventListener("touchmove",X,{passive:!0}),window.addEventListener("mouseup",U,{passive:!0}),window.addEventListener("touchend",U,{passive:!0}),()=>{window.removeEventListener("mousemove",X),window.removeEventListener("touchmove",X),window.removeEventListener("mouseup",U),window.removeEventListener("touchend",U),Ke.cancel(_)}}},[h]),i.useEffect(()=>(P(),()=>{clearTimeout(R.current)}),[o]),i.useImperativeHandle(t,()=>({delayHidden:P}));const D=`${n}-scrollbar`,k={position:"absolute",visibility:I?null:"hidden"},W={position:"absolute",borderRadius:99,background:"var(--rc-virtual-list-scrollbar-bg, rgba(0, 0, 0, 0.5))",cursor:"pointer",userSelect:"none"};return u?(Object.assign(k,{height:8,left:0,right:0,bottom:0}),Object.assign(W,{height:"100%",width:d,[S?"left":"right"]:A})):(Object.assign(k,{width:8,top:0,bottom:0,[S?"right":"left"]:0}),Object.assign(W,{width:"100%",height:d,top:A})),i.createElement("div",{ref:x,className:z(D,{[`${D}-horizontal`]:u,[`${D}-vertical`]:!u,[`${D}-visible`]:I}),style:{...k,...m},onMouseDown:T,onMouseMove:P},i.createElement("div",{ref:w,className:z(`${D}-thumb`,{[`${D}-thumb-moving`]:h}),style:{...W,...p},onMouseDown:H}))}),mP=20;function np(e=0,t=0){let n=e/t*e;return isNaN(n)&&(n=0),n=Math.max(n,mP),Math.floor(n)}const pP=[],gP={overflowY:"auto",overflowAnchor:"none"};function hP(e,t){const{prefixCls:n="rc-virtual-list",className:r,height:o,itemHeight:s,fullHeight:a=!0,style:l,data:c,children:u,itemKey:d,virtual:f,direction:m,scrollWidth:p,component:g="div",onScroll:h,onVirtualScroll:b,onVisibleChange:$,innerProps:y,extraRender:v,styles:C,showScrollBar:S="optional",...x}=e,w=i.useCallback(ce=>typeof d=="function"?d(ce):ce==null?void 0:ce[d],[d]),[I,E,R,P]=lP(w),M=!!(f!==!1&&o&&s),O=i.useMemo(()=>Object.values(R.maps).reduce((ce,Q)=>ce+Q,0),[R.id,R.maps]),A=M&&c&&(Math.max(s*c.length,O)>o||!!p),T=m==="rtl",F=z(n,{[`${n}-rtl`]:T},r),H=c||pP,L=i.useRef(),B=i.useRef(),D=i.useRef(),[k,W]=i.useState(0),[_,X]=i.useState(0),[U,j]=i.useState(!1),V=()=>{j(!0)},G=()=>{j(!1)},te={getKey:w};function ee(ce){W(Q=>{let pe;typeof ce=="function"?pe=ce(Q):pe=ce;const ie=Ee(pe);return L.current.scrollTop=ie,ie})}const ne=i.useRef({start:0,end:H.length}),Y=i.useRef(),[se]=oP(H,w);Y.current=se;const{scrollHeight:ue,start:q,end:oe,offset:Z}=i.useMemo(()=>{var xe;if(!M)return{scrollHeight:void 0,start:0,end:H.length-1,offset:void 0};if(!A)return{scrollHeight:((xe=B.current)==null?void 0:xe.offsetHeight)||0,start:0,end:H.length-1,offset:void 0};let ce=0,Q,pe,ie;const he=H.length;for(let Te=0;Te=k&&Q===void 0&&(Q=Te,pe=ce),Ze>k+o&&ie===void 0&&(ie=Te),ce=Ze}return Q===void 0&&(Q=0,pe=0,ie=Math.ceil(o/s)),ie===void 0&&(ie=H.length-1),ie=Math.min(ie+1,H.length-1),{scrollHeight:ce,start:Q,end:ie,offset:pe}},[A,M,k,H,P,o]);ne.current.start=q,ne.current.end=oe,i.useLayoutEffect(()=>{const ce=R.getRecord();if(ce.size===1){const Q=Array.from(ce.keys())[0],pe=ce.get(Q),ie=H[q];if(ie&&pe===void 0&&w(ie)===Q){const Te=R.get(Q)-s;ee(Fe=>Fe+Te)}}R.resetRecord()},[ue]);const[J,ae]=i.useState({width:0,height:o}),we=ce=>{ae({width:ce.offsetWidth,height:ce.offsetHeight})},de=i.useRef(),ge=i.useRef(),be=i.useMemo(()=>np(J.width,p),[J.width,p]),me=i.useMemo(()=>np(J.height,ue),[J.height,ue]),Ne=ue-o,Ae=i.useRef(Ne);Ae.current=Ne;function Ee(ce){let Q=ce;return Number.isNaN(Ae.current)||(Q=Math.min(Q,Ae.current)),Q=Math.max(Q,0),Q}const ze=k<=0,Re=k>=Ne,ve=_<=0,fe=_>=p,Ce=ab(ze,Re,ve,fe),He=()=>({x:T?-_:_,y:k}),Ie=i.useRef(He()),re=We(ce=>{if(b){const Q={...He(),...ce};(Ie.current.x!==Q.x||Ie.current.y!==Q.y)&&(b(Q),Ie.current=Q)}});function $e(ce,Q){const pe=ce;Q?(Vn.flushSync(()=>{X(pe)}),re()):ee(pe)}function ke(ce){const{scrollTop:Q}=ce.currentTarget;Q!==k&&ee(Q),h==null||h(ce),re()}const De=ce=>{let Q=ce;const pe=p?p-J.width:0;return Q=Math.max(Q,0),Q=Math.min(Q,pe),Q},ot=We((ce,Q)=>{Q?(Vn.flushSync(()=>{X(pe=>{const ie=pe+(T?-ce:ce);return De(ie)})}),re()):ee(pe=>pe+ce)}),[qe,ft]=sP(M,ze,Re,ve,fe,!!p,ot);cP(M,L,(ce,Q,pe,ie)=>{const he=ie;return Ce(ce,Q,pe)?!1:!he||!he._virtualHandled?(he&&(he._virtualHandled=!0),qe({preventDefault(){},deltaX:ce?Q:0,deltaY:ce?0:Q}),!0):!1}),uP(A,L,ce=>{ee(Q=>Q+ce)}),nt(()=>{function ce(pe){const ie=ze&&pe.detail<0,he=Re&&pe.detail>0;M&&!ie&&!he&&pe.preventDefault()}const Q=L.current;return Q.addEventListener("wheel",qe,{passive:!1}),Q.addEventListener("DOMMouseScroll",ft,{passive:!0}),Q.addEventListener("MozMousePixelScroll",ce,{passive:!1}),()=>{Q.removeEventListener("wheel",qe),Q.removeEventListener("DOMMouseScroll",ft),Q.removeEventListener("MozMousePixelScroll",ce)}},[M,ze,Re]),nt(()=>{if(p){const ce=De(_);X(ce),re({x:ce})}},[J.width,p]);const Qe=()=>{var ce,Q;(ce=de.current)==null||ce.delayHidden(),(Q=ge.current)==null||Q.delayHidden()},st=fP(L,H,R,s,w,()=>E(!0),ee,Qe);i.useImperativeHandle(t,()=>({nativeElement:D.current,getScrollInfo:He,scrollTo:ce=>{function Q(pe){return pe&&typeof pe=="object"&&("left"in pe||"top"in pe)}Q(ce)?(ce.left!==void 0&&X(De(ce.left)),st(ce.top)):st(ce)}})),nt(()=>{if($){const ce=H.slice(q,oe+1);$(ce,H)}},[q,oe,H]);const lt=iP(H,w,R,s),Se=v==null?void 0:v({start:q,end:oe,virtual:A,offsetX:_,offsetY:Z,rtl:T,getSize:lt}),Be=nP(H,q,oe,p,_,I,u,te);let Pe=null;o&&(Pe={[a?"height":"maxHeight"]:o,...gP},M&&(Pe.overflowY="hidden",p&&(Pe.overflowX="hidden"),U&&(Pe.pointerEvents="none")));const ye={};return T&&(ye.dir="rtl"),i.createElement("div",Et({ref:D,style:{...l,position:"relative"},className:F},ye,x),i.createElement(vs,{onResize:we},i.createElement(g,{className:`${n}-holder`,style:Pe,ref:L,onScroll:ke,onMouseEnter:Qe},i.createElement(ib,{prefixCls:n,height:ue,offsetX:_,offsetY:Z,scrollWidth:p,onInnerResize:E,ref:B,innerProps:y,rtl:T,extra:Se},Be))),A&&ue>o&&i.createElement(tp,{ref:de,prefixCls:n,scrollOffset:k,scrollRange:ue,rtl:T,onScroll:$e,onStartMove:V,onStopMove:G,spinSize:me,containerSize:J.height,style:C==null?void 0:C.verticalScrollBar,thumbStyle:C==null?void 0:C.verticalScrollBarThumb,showScrollBar:S}),A&&p>J.width&&i.createElement(tp,{ref:ge,prefixCls:n,scrollOffset:_,scrollRange:p,rtl:T,onScroll:$e,onStartMove:V,onStopMove:G,spinSize:be,containerSize:J.width,horizontal:!0,style:C==null?void 0:C.horizontalScrollBar,thumbStyle:C==null?void 0:C.horizontalScrollBarThumb,showScrollBar:S}))}const lb=i.forwardRef(hP);lb.displayName="List";function bP(){return/(mac\sos|macintosh)/i.test(navigator.appVersion)}function qo(){return qo=Object.assign?Object.assign.bind():function(e){for(var t=1;t{var ee,ne;const{prefixCls:n,id:r,open:o,multiple:s,mode:a,searchValue:l,toggleOpen:c,notFoundContent:u,onPopupScroll:d,showScrollBar:f,lockOptions:m}=Lr(),{maxCount:p,flattenOptions:g,onActiveValue:h,defaultActiveFirstOption:b,onSelect:$,menuItemSelectedIcon:y,rawValues:v,fieldNames:C,virtual:S,direction:x,listHeight:w,listItemHeight:I,optionRender:E,classNames:R,styles:P}=i.useContext(yd),M=`${n}-item`,O=po(()=>g,[o,m],(Y,se)=>se[0]&&!se[1]),A=i.useRef(null),T=i.useMemo(()=>s&&vc(p)&&(v==null?void 0:v.size)>=p,[s,p,v==null?void 0:v.size]),F=Y=>{Y.preventDefault()},H=Y=>{var se;(se=A.current)==null||se.scrollTo(typeof Y=="number"?{index:Y}:Y)},L=i.useCallback(Y=>a==="combobox"?!1:v.has(Y),[a,[...v].toString(),v.size]),B=(Y,se=1)=>{const ue=O.length;for(let q=0;qB(0)),W=(Y,se=!1)=>{k(Y);const ue={source:se?"keyboard":"mouse"},q=O[Y];if(!q){h(null,-1,ue);return}h(q.value,Y,ue)};i.useEffect(()=>{W(b!==!1?B(0):-1)},[O.length,l]);const _=i.useCallback(Y=>a==="combobox"?String(Y).toLowerCase()===l.toLowerCase():v.has(Y),[a,l,[...v].toString(),v.size]);i.useEffect(()=>{var se;let Y;if(!s&&o&&v.size===1){const ue=Array.from(v)[0],q=O.findIndex(({data:oe})=>l?String(oe.value).startsWith(l):oe.value===ue);q!==-1&&(W(q),Y=setTimeout(()=>{H(q)}))}return o&&((se=A.current)==null||se.scrollTo(void 0)),()=>clearTimeout(Y)},[o,l]);const X=Y=>{Y!==void 0&&$(Y,{selected:!v.has(Y)}),s||c(!1)};if(i.useImperativeHandle(t,()=>({onKeyDown:Y=>{const{which:se,ctrlKey:ue}=Y;switch(se){case Me.N:case Me.P:case Me.UP:case Me.DOWN:{let q=0;if(se===Me.UP?q=-1:se===Me.DOWN?q=1:bP()&&ue&&(se===Me.N?q=1:se===Me.P&&(q=-1)),q!==0){const oe=B(D+q,q);H(oe),W(oe,!0)}break}case Me.TAB:case Me.ENTER:{const q=O[D];if(!q||q.data.disabled)return X(void 0);!T||v.has(q.value)?X(q.value):X(void 0),o&&Y.preventDefault();break}case Me.ESC:c(!1),o&&Y.stopPropagation()}},onKeyUp:()=>{},scrollTo:Y=>{H(Y)}})),O.length===0)return i.createElement("div",{role:"listbox",id:`${r}_list`,className:`${M}-empty`,onMouseDown:F},u);const U=Object.keys(C).map(Y=>C[Y]),j=Y=>Y.label;function V(Y,se){const{group:ue}=Y;return{role:ue?"presentation":"option",id:`${r}_list_${se}`}}const G=Y=>{const se=O[Y];if(!se)return null;const ue=se.data||{},{value:q}=ue,{group:oe}=se,Z=cn(ue,!0),J=j(se);return se?i.createElement("div",qo({"aria-label":typeof J=="string"&&!oe?J:null},Z,{key:Y},V(se,Y),{"aria-selected":_(q)}),q):null},te={role:"listbox",id:`${r}_list`};return i.createElement(i.Fragment,null,S&&i.createElement("div",qo({},te,{style:{height:0,width:0,overflow:"hidden"}}),G(D-1),G(D),G(D+1)),i.createElement(lb,{itemKey:"key",ref:A,data:O,height:w,itemHeight:I,fullHeight:!1,onMouseDown:F,onScroll:d,virtual:S,direction:x,innerProps:S?null:te,showScrollBar:f,className:(ee=R==null?void 0:R.popup)==null?void 0:ee.list,style:(ne=P==null?void 0:P.popup)==null?void 0:ne.list},(Y,se)=>{var re,$e;const{group:ue,groupOption:q,data:oe,label:Z,value:J}=Y,{key:ae}=oe;if(ue){const ke=oe.title??(rp(Z)?Z.toString():void 0);return i.createElement("div",{className:z(M,`${M}-group`,oe.className),title:ke},Z!==void 0?Z:ae)}const{disabled:we,title:de,children:ge,style:be,className:me,...Ne}=oe,Ae=yt(Ne,U),Ee=L(J),ze=we||!Ee&&T,Re=`${M}-option`,ve=z(M,Re,me,(re=R==null?void 0:R.popup)==null?void 0:re.listItem,{[`${Re}-grouped`]:q,[`${Re}-active`]:D===se&&!ze,[`${Re}-disabled`]:ze,[`${Re}-selected`]:Ee}),fe=j(Y),Ce=!y||typeof y=="function"||Ee,He=typeof fe=="number"?fe:fe||J;let Ie=rp(He)?He.toString():void 0;return de!==void 0&&(Ie=de),i.createElement("div",qo({},cn(Ae),S?{}:V(Y,se),{"aria-selected":S?void 0:_(J),className:ve,title:Ie,onMouseMove:()=>{D===se||ze||W(se)},onClick:()=>{ze||X(J)},style:{...($e=P==null?void 0:P.popup)==null?void 0:$e.listItem,...be}}),i.createElement("div",{className:`${Re}-content`},typeof E=="function"?E(Y,{index:se}):He),i.isValidElement(y)||Ee,Ce&&i.createElement(sb,{className:`${M}-option-state`,customizeIcon:y,customizeIconProps:{value:J,disabled:ze,isSelected:Ee}},Ee?"✓":null))}))},yP=i.forwardRef(vP),$P=(e,t)=>{const n=i.useRef({values:new Map,options:new Map}),r=i.useMemo(()=>{const{values:s,options:a}=n.current,l=e.map(d=>{var f;return d.label===void 0?{...d,label:(f=s.get(d.value))==null?void 0:f.label}:d}),c=new Map,u=new Map;return l.forEach(d=>{c.set(d.value,d),u.set(d.value,t.get(d.value)||a.get(d.value))}),n.current.values=c,n.current.options=u,l},[e,t]),o=i.useCallback(s=>t.get(s)||n.current.options.get(s),[t]);return[r,o]};function ka(e,t){return J0(e).join("").toUpperCase().includes(t)}const CP=(e,t,n,r,o)=>i.useMemo(()=>{if(!n||r===!1)return e;const{options:s,label:a,value:l}=t,c=[],u=typeof r=="function",d=n.toUpperCase(),f=u?r:(p,g)=>o&&o.length?o.some(h=>ka(g[h],d)):g[s]?ka(g[a!=="children"?a:"label"],d):ka(g[l],d),m=u?p=>yc(p):p=>p;return e.forEach(p=>{if(p[s]){if(f(n,m(p)))c.push(p);else{const h=p[s].filter(b=>f(n,m(b)));h.length&&c.push({...p,[s]:h})}return}f(n,m(p))&&c.push(p)}),c},[e,r,o,n,t]);function SP(e){const{key:t,props:{children:n,value:r,...o}}=e;return{key:t,value:r!==void 0?r:t,children:n,...o}}function cb(e,t=!1){return Vt(e).map((n,r)=>{if(!i.isValidElement(n)||!n.type)return null;const{type:{isSelectOptGroup:o},key:s,props:{children:a,...l}}=n;return t||!o?SP(n):{key:`__RC_SELECT_GRP__${s===null?r:s}__`,label:s,...l,options:cb(a)}}).filter(n=>n)}const xP=(e,t,n,r,o)=>i.useMemo(()=>{let s=e;!e&&(s=cb(t));const l=new Map,c=new Map,u=(f,m,p)=>{p&&typeof p=="string"&&f.set(m[p],m)},d=(f,m=!1)=>{for(let p=0;p{u(c,g,h)}),u(c,g,o)):d(g[n.options],!0)}};return d(s),{options:s,valueOptions:l,labelOptions:c}},[e,t,n,r,o]);function op(e){const t=i.useRef();return t.current=e,i.useCallback((...r)=>t.current(...r),[])}function wP(e,t,n){const{filterOption:r,searchValue:o,optionFilterProp:s,filterSort:a,onSearch:l,autoClearSearchValue:c}=t;return i.useMemo(()=>{const u=typeof e=="object",d={filterOption:r,searchValue:o,optionFilterProp:s,filterSort:a,onSearch:l,autoClearSearchValue:c,...u?e:{}};return[u||n==="combobox"||n==="tags"||n==="multiple"&&e===void 0?!0:e,d]},[n,e,r,o,s,a,l,c])}function Mc(){return Mc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{id:n,mode:r,prefixCls:o="rc-select",backfill:s,fieldNames:a,showSearch:l,searchValue:c,onSearch:u,autoClearSearchValue:d,filterOption:f,optionFilterProp:m,filterSort:p,onSelect:g,onDeselect:h,onActive:b,popupMatchSelectWidth:$=!0,optionLabelProp:y,options:v,optionRender:C,children:S,defaultActiveFirstOption:x,menuItemSelectedIcon:w,virtual:I,direction:E,listHeight:R=200,listItemHeight:P=20,labelRender:M,value:O,defaultValue:A,labelInValue:T,onChange:F,maxCount:H,classNames:L,styles:B,...D}=e,k={searchValue:c,onSearch:u,autoClearSearchValue:d,filterOption:f,optionFilterProp:m,filterSort:p},[W,_]=wP(l,k,r),{filterOption:X,searchValue:U,optionFilterProp:j,filterSort:V,onSearch:G,autoClearSearchValue:te=!0}=_,ee=i.useMemo(()=>j?Array.isArray(j)?j:[j]:[],[j]),ne=Xn(n),Y=Pc(r),se=!!(!v&&S),ue=i.useMemo(()=>X===void 0&&r==="combobox"?!1:X,[X,r]),q=i.useMemo(()=>K0(a,se),[JSON.stringify(a),se]),[oe,Z]=bt("",U),J=oe||"",ae=xP(v,S,q,ee,y),{valueOptions:we,labelOptions:de,options:ge}=ae,be=i.useCallback(ie=>J0(ie).map(xe=>{let Te,Fe,Je,tt;IP(xe)?Te=xe:(Fe=xe.label,Te=xe.value);const Ze=we.get(Te);return Ze&&(Fe===void 0&&(Fe=Ze==null?void 0:Ze[y||q.label]),Je=Ze==null?void 0:Ze.disabled,tt=Ze==null?void 0:Ze.title),{label:Fe,value:Te,key:Te,disabled:Je,title:tt}}),[q,y,we]),[me,Ne]=bt(A,O),Ae=i.useMemo(()=>{var xe;const he=be(Y&&me===null?[]:me);return r==="combobox"&&yI((xe=he[0])==null?void 0:xe.value)?[]:he},[me,be,r,Y]),[Ee,ze]=$P(Ae,we),Re=i.useMemo(()=>{if(!r&&Ee.length===1){const ie=Ee[0];if(ie.value===null&&(ie.label===null||ie.label===void 0))return[]}return Ee.map(ie=>({...ie,label:(typeof M=="function"?M(ie):ie.label)??ie.value}))},[r,Ee,M]),ve=i.useMemo(()=>new Set(Ee.map(ie=>ie.value)),[Ee]);i.useEffect(()=>{var ie;if(r==="combobox"){const he=(ie=Ee[0])==null?void 0:ie.value;Z(vI(he)?String(he):"")}},[Ee]);const fe=op((ie,he)=>{const xe=he??ie;return{[q.value]:ie,[q.label]:xe}}),Ce=i.useMemo(()=>{if(r!=="tags")return ge;const ie=[...ge],he=xe=>we.has(xe);return[...Ee].sort((xe,Te)=>xe.value{const Te=xe.value;he(Te)||ie.push(fe(Te,xe.label))}),ie},[fe,ge,we,Ee,r]),He=CP(Ce,q,J,ue,ee),Ie=i.useMemo(()=>{const ie=he=>ee.length?ee.some(xe=>(he==null?void 0:he[xe])===J):(he==null?void 0:he.value)===J;return r!=="tags"||!J||He.some(he=>ie(he))||He.some(he=>he[q.value]===J)?He:[fe(J),...He]},[fe,ee,r,He,J,q]),re=ie=>[...ie].sort((xe,Te)=>V(xe,Te,{searchValue:J})).map(xe=>Array.isArray(xe.options)?{...xe,options:xe.options.length>0?re(xe.options):xe.options}:xe),$e=i.useMemo(()=>V?re(Ie):Ie,[Ie,V,J]),ke=i.useMemo(()=>mI($e,{fieldNames:q,childrenAsData:se}),[$e,q,se]),De=ie=>{const he=be(ie);if(Ne(he),F&&(he.length!==Ee.length||he.some((xe,Te)=>{var Fe;return((Fe=Ee[Te])==null?void 0:Fe.value)!==(xe==null?void 0:xe.value)}))){const xe=T?he.map(({label:Fe,value:Je})=>({label:Fe,value:Je})):he.map(Fe=>Fe.value),Te=he.map(Fe=>yc(ze(Fe.value)));F(Y?xe:xe[0],Y?Te:Te[0])}},[ot,qe]=i.useState(null),[ft,Qe]=i.useState(0),st=x!==void 0?x:r!=="combobox",lt=i.useRef(),Se=i.useCallback((ie,he,{source:xe="keyboard"}={})=>{Qe(he),s&&r==="combobox"&&ie!==null&&xe==="keyboard"&&qe(String(ie));const Te=Promise.resolve().then(()=>{lt.current===Te&&(b==null||b(ie))});lt.current=Te},[s,r,b]),Be=(ie,he,xe)=>{const Te=()=>{const Fe=ze(ie);return[T?{label:Fe==null?void 0:Fe[q.label],value:ie}:ie,yc(Fe)]};if(he&&g){const[Fe,Je]=Te();g(Fe,Je)}else if(!he&&h&&xe!=="clear"){const[Fe,Je]=Te();h(Fe,Je)}},Pe=op((ie,he)=>{let xe;const Te=Y?he.selected:!0;Te?xe=Y?[...Ee,ie]:[ie]:xe=Ee.filter(Fe=>Fe.value!==ie),De(xe),Be(ie,Te),r==="combobox"?qe(""):(!Pc||te)&&(Z(""),qe(""))}),ye=(ie,he)=>{De(ie);const{type:xe,values:Te}=he;(xe==="remove"||xe==="clear")&&Te.forEach(Fe=>{Be(Fe.value,!1,xe)})},ce=(ie,he)=>{if(Z(ie),qe(null),he.source==="submit"){const xe=(ie||"").trim();if(xe){const Te=Array.from(new Set([...ve,xe]));De(Te),Be(xe,!0),Z("")}return}he.source!=="blur"&&(r==="combobox"&&De(ie),G==null||G(ie))},Q=ie=>{let he=ie;r!=="tags"&&(he=ie.map(Te=>{const Fe=de.get(Te);return Fe==null?void 0:Fe.value}).filter(Te=>Te!==void 0));const xe=Array.from(new Set([...ve,...he]));De(xe),xe.forEach(Te=>{Be(Te,!0)})},pe=i.useMemo(()=>({...ae,flattenOptions:ke,onActiveValue:Se,defaultActiveFirstOption:st,onSelect:Pe,menuItemSelectedIcon:w,rawValues:ve,fieldNames:q,virtual:I!==!1&&$!==!1,direction:E,listHeight:R,listItemHeight:P,childrenAsData:se,maxCount:H,optionRender:C,classNames:L,styles:B}),[H,ae,ke,Se,st,Pe,w,ve,q,I,$,E,R,P,se,C,L,B]);return i.createElement(yd.Provider,{value:pe},i.createElement(eP,Mc({},D,{id:ne,prefixCls:o,ref:t,omitDomProps:EP,mode:r,classNames:L,styles:B,displayValues:Re,onDisplayValuesChange:ye,maxCount:H,direction:E,showSearch:W,searchValue:J,onSearch:ce,autoClearSearchValue:te,onSearchSplit:Q,popupMatchSelectWidth:$,OptionList:yP,emptyOptions:!ke.length,activeValue:ot,activeDescendantId:`${ne}_list_${ft}`})))}),Sd=PP;Sd.Option=Cd;Sd.OptGroup=$d;const zr=(e,t,n)=>z({[`${e}-status-success`]:t==="success",[`${e}-status-warning`]:t==="warning",[`${e}-status-error`]:t==="error",[`${e}-status-validating`]:t==="validating",[`${e}-has-feedback`]:n}),ys=(e,t)=>t||e,RP=()=>{const[,e]=jt(),[t]=dn("Empty"),r=new gt(e.colorBgBase).toHsl().l<.5?{opacity:.65}:{};return i.createElement("svg",{style:r,width:"184",height:"152",viewBox:"0 0 184 152",xmlns:"http://www.w3.org/2000/svg"},i.createElement("title",null,(t==null?void 0:t.description)||"Empty"),i.createElement("g",{fill:"none",fillRule:"evenodd"},i.createElement("g",{transform:"translate(24 31.7)"},i.createElement("ellipse",{fillOpacity:".8",fill:"#F5F5F7",cx:"67.8",cy:"106.9",rx:"67.8",ry:"12.7"}),i.createElement("path",{fill:"#aeb8c2",d:"M122 69.7 98.1 40.2a6 6 0 0 0-4.6-2.2H42.1a6 6 0 0 0-4.6 2.2l-24 29.5V85H122z"}),i.createElement("path",{fill:"#f5f5f7",d:"M33.8 0h68a4 4 0 0 1 4 4v93.3a4 4 0 0 1-4 4h-68a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4"}),i.createElement("path",{fill:"#dce0e6",d:"M42.7 10h50.2a2 2 0 0 1 2 2v25a2 2 0 0 1-2 2H42.7a2 2 0 0 1-2-2V12a2 2 0 0 1 2-2m.2 39.8h49.8a2.3 2.3 0 1 1 0 4.5H42.9a2.3 2.3 0 0 1 0-4.5m0 11.7h49.8a2.3 2.3 0 1 1 0 4.6H42.9a2.3 2.3 0 0 1 0-4.6m79 43.5a7 7 0 0 1-6.8 5.4H20.5a7 7 0 0 1-6.7-5.4l-.2-1.8V69.7h26.3c2.9 0 5.2 2.4 5.2 5.4s2.4 5.4 5.3 5.4h34.8c2.9 0 5.3-2.4 5.3-5.4s2.3-5.4 5.2-5.4H122v33.5q0 1-.2 1.8"})),i.createElement("path",{fill:"#dce0e6",d:"m149.1 33.3-6.8 2.6a1 1 0 0 1-1.3-1.2l2-6.2q-4.1-4.5-4.2-10.4c0-10 10.1-18.1 22.6-18.1S184 8.1 184 18.1s-10.1 18-22.6 18q-6.8 0-12.3-2.8"}),i.createElement("g",{fill:"#fff",transform:"translate(149.7 15.4)"},i.createElement("circle",{cx:"20.7",cy:"3.2",r:"2.8"}),i.createElement("path",{d:"M5.7 5.6H0L2.9.7zM9.3.7h5v5h-5z"}))))},MP=()=>{const[,e]=jt(),[t]=dn("Empty"),{colorFill:n,colorFillTertiary:r,colorFillQuaternary:o,colorBgContainer:s}=e,{borderColor:a,shadowColor:l,contentColor:c}=i.useMemo(()=>({borderColor:new gt(n).onBackground(s).toHexString(),shadowColor:new gt(r).onBackground(s).toHexString(),contentColor:new gt(o).onBackground(s).toHexString()}),[n,r,o,s]);return i.createElement("svg",{width:"64",height:"41",viewBox:"0 0 64 41",xmlns:"http://www.w3.org/2000/svg"},i.createElement("title",null,(t==null?void 0:t.description)||"Empty"),i.createElement("g",{transform:"translate(0 1)",fill:"none",fillRule:"evenodd"},i.createElement("ellipse",{fill:l,cx:"32",cy:"33",rx:"32",ry:"7"}),i.createElement("g",{fillRule:"nonzero",stroke:a},i.createElement("path",{d:"M55 12.8 44.9 1.3Q44 0 42.9 0H21.1q-1.2 0-2 1.3L9 12.8V22h46z"}),i.createElement("path",{d:"M41.6 16c0-1.7 1-3 2.2-3H55v18.1c0 2.2-1.3 3.9-3 3.9H12c-1.7 0-3-1.7-3-3.9V13h11.2c1.2 0 2.2 1.3 2.2 3s1 2.9 2.2 2.9h14.8c1.2 0 2.2-1.4 2.2-3",fill:c}))))},NP=e=>{const{componentCls:t,margin:n,marginXS:r,marginXL:o,fontSize:s,lineHeight:a}=e;return{[t]:{marginInline:r,fontSize:s,lineHeight:a,textAlign:"center",[`${t}-image`]:{height:e.emptyImgHeight,marginBottom:r,opacity:e.opacityImage,img:{height:"100%"},svg:{maxWidth:"100%",height:"100%",margin:"auto"}},[`${t}-description`]:{color:e.colorTextDescription},[`${t}-footer`]:{marginTop:n},"&-normal":{marginBlock:o,color:e.colorTextDescription,[`${t}-description`]:{color:e.colorTextDescription},[`${t}-image`]:{height:e.emptyImgHeightMD}},"&-small":{marginBlock:r,color:e.colorTextDescription,[`${t}-image`]:{height:e.emptyImgHeightSM}}}}},TP=at("Empty",e=>{const{componentCls:t,controlHeightLG:n,calc:r}=e,o=rt(e,{emptyImgCls:`${t}-img`,emptyImgHeight:r(n).mul(2.5).equal(),emptyImgHeightMD:n,emptyImgHeightSM:r(n).mul(.875).equal()});return NP(o)}),ub=i.createElement(RP,null),db=i.createElement(MP,null),yr=e=>{const{className:t,rootClassName:n,prefixCls:r,image:o,description:s,children:a,imageStyle:l,style:c,classNames:u,styles:d,...f}=e,{getPrefixCls:m,direction:p,className:g,style:h,classNames:b,styles:$,image:y}=dt("empty"),v=m("empty",r),[C,S]=TP(v),[x,w]=pt([b,u],[$,d],{props:e}),[I]=dn("Empty"),E=typeof s<"u"?s:I==null?void 0:I.description,R=typeof E=="string"?E:"empty",P=o??y??ub;let M=null;return typeof P=="string"?M=i.createElement("img",{draggable:!1,alt:R,src:P}):M=P,i.createElement("div",{className:z(C,S,v,g,{[`${v}-normal`]:P===db,[`${v}-rtl`]:p==="rtl"},t,n,x.root),style:{...w.root,...h,...c},...f},i.createElement("div",{className:z(`${v}-image`,x.image),style:{...l,...w.image}},M),E&&i.createElement("div",{className:z(`${v}-description`,x.description),style:w.description},E),a&&i.createElement("div",{className:z(`${v}-footer`,x.footer),style:w.footer},a))};yr.PRESENTED_IMAGE_DEFAULT=ub;yr.PRESENTED_IMAGE_SIMPLE=db;const OP=e=>{const{componentName:t}=e,{getPrefixCls:n}=i.useContext(je),r=n("empty");switch(t){case"Table":case"List":return N.createElement(yr,{image:yr.PRESENTED_IMAGE_SIMPLE});case"Select":case"TreeSelect":case"Cascader":case"Transfer":case"Mentions":return N.createElement(yr,{image:yr.PRESENTED_IMAGE_SIMPLE,className:`${r}-small`});case"Table.filter":return null;default:return N.createElement(yr,null)}},qi=(e,t,n)=>{const{variant:r,[e]:o}=i.useContext(je),s=i.useContext(kE),a=o==null?void 0:o.variant;let l;typeof t<"u"?l=t:n===!1?l="borderless":l=s??a??r??"outlined";const c=Xy.includes(l);return[l,c]},AP=e=>{const n={overflow:{adjustX:!0,adjustY:!0,shiftY:!0},htmlRegion:e==="scroll"?"scroll":"visible",dynamicInset:!0};return{bottomLeft:{...n,points:["tl","bl"],offset:[0,4]},bottomRight:{...n,points:["tr","br"],offset:[0,4]},topLeft:{...n,points:["bl","tl"],offset:[0,-4]},topRight:{...n,points:["br","tr"],offset:[0,-4]}}};function zP(e,t){return e||AP(t)}const sp=e=>{const{optionHeight:t,optionFontSize:n,optionLineHeight:r,optionPadding:o}=e;return{position:"relative",display:"block",minHeight:t,padding:o,color:e.colorText,fontWeight:"normal",fontSize:n,lineHeight:r,boxSizing:"border-box"}},BP=e=>{const{antCls:t,componentCls:n}=e,r=`${n}-item`,o=`&${t}-slide-up-enter${t}-slide-up-enter-active`,s=`&${t}-slide-up-appear${t}-slide-up-appear-active`,a=`&${t}-slide-up-leave${t}-slide-up-leave-active`,l=`${n}-dropdown-placement-`,c=`${r}-option-selected`;return[{[`${n}-dropdown`]:{...Ct(e),position:"absolute",top:-9999,zIndex:e.zIndexPopup,boxSizing:"border-box",padding:e.paddingXXS,overflow:"hidden",fontSize:e.fontSize,fontVariant:"initial",backgroundColor:e.colorBgElevated,borderRadius:e.borderRadiusLG,outline:"none",boxShadow:e.boxShadowSecondary,[` + ${o}${l}bottomLeft, + ${s}${l}bottomLeft + `]:{animationName:sd},[` + ${o}${l}topLeft, + ${s}${l}topLeft, + ${o}${l}topRight, + ${s}${l}topRight + `]:{animationName:ad},[`${a}${l}bottomLeft`]:{animationName:id},[` + ${a}${l}topLeft, + ${a}${l}topRight + `]:{animationName:ld},"&-hidden":{display:"none"},[r]:{...sp(e),cursor:"pointer",transition:`background-color ${e.motionDurationSlow} ease`,borderRadius:e.borderRadiusSM,"&-group":{color:e.colorTextDescription,fontSize:e.fontSizeSM,cursor:"default"},"&-option":{display:"flex","&-content":{flex:"auto",...Wn},"&-state":{flex:"none",display:"flex",alignItems:"center"},[`&-active:not(${r}-option-disabled)`]:{backgroundColor:e.optionActiveBg},[`&-selected:not(${r}-option-disabled)`]:{color:e.optionSelectedColor,fontWeight:e.optionSelectedFontWeight,backgroundColor:e.optionSelectedBg,[`${r}-option-state`]:{color:e.colorPrimary}},"&-disabled":{[`&${r}-option-selected`]:{backgroundColor:e.colorBgContainerDisabled},color:e.colorTextDisabled,cursor:"not-allowed"},"&-grouped":{paddingInlineStart:e.calc(e.controlPaddingHorizontal).mul(2).equal()}},"&-empty":{...sp(e),color:e.colorTextDisabled}},[`${c}:has(+ ${c})`]:{borderEndStartRadius:0,borderEndEndRadius:0,[`& + ${c}`]:{borderStartStartRadius:0,borderStartEndRadius:0}},"&-rtl":{direction:"rtl"}}},cr(e,"slide-up"),cr(e,"slide-down"),gi(e,"move-up"),gi(e,"move-down")]},LP=e=>{const{componentCls:t}=e;return{[`&${t}-customize`]:{border:0,padding:0,fontSize:"inherit",lineHeight:"inherit",[`${t}-placeholder`]:{display:"none"},[`${t}-content`]:{margin:0,padding:0,"&-value":{display:"none"}}}}},ip=4,HP=e=>{const{componentCls:t,calc:n,iconCls:r,paddingXS:o,paddingXXS:s,INTERNAL_FIXED_ITEM_MARGIN:a,lineWidth:l,colorIcon:c,colorIconHover:u,inputPaddingHorizontalBase:d,antCls:f}=e,[m,p]=At(f,"select");return{"&-multiple":{[m("multi-item-background")]:e.multipleItemBg,[m("multi-item-border-color")]:"transparent",[m("multi-item-border-radius")]:e.borderRadiusSM,[m("multi-item-height")]:e.multipleItemHeight,[m("multi-padding-base")]:`calc((${p("height")} - ${p("multi-item-height")}) / 2)`,[m("multi-padding-vertical")]:`calc(${p("multi-padding-base")} - ${a} - ${l})`,[m("multi-item-padding-horizontal")]:`calc(${d} - ${p("multi-padding-vertical")} - ${l} * 2)`,paddingBlock:p("multi-padding-vertical"),paddingInlineStart:`calc(${p("multi-padding-base")} - ${l})`,[`${t}-prefix`]:{marginInlineStart:p("multi-item-padding-horizontal")},[`${t}-prefix + ${t}-content`]:{[`${t}-placeholder`]:{insetInlineStart:0},[`${t}-content-item${t}-content-item-suffix`]:{marginInlineStart:0}},[`${t}-placeholder`]:{position:"absolute",lineHeight:p("line-height"),insetInlineStart:p("multi-item-padding-horizontal"),width:`calc(100% - ${p("multi-item-padding-horizontal")})`,top:"50%",transform:"translateY(-50%)"},[`${t}-content`]:{flexWrap:"wrap",alignItems:"center",lineHeight:1,"&-item-prefix":{height:p("font-size")},"&-item":{lineHeight:1,maxWidth:`calc(100% - ${ip}px)`},[`${t}-content-item-prefix + ${t}-content-item-suffix, + ${t}-content-item-suffix:first-child`]:{marginInlineStart:p("multi-item-padding-horizontal")},[`${t}-selection-item`]:{lineHeight:`calc(${p("multi-item-height")} - ${l} * 2)`,border:`${l} solid ${p("multi-item-border-color")}`,display:"flex",marginBlock:a,marginInlineEnd:n(a).mul(2).equal(),background:p("multi-item-background"),borderRadius:p("multi-item-border-radius"),paddingInlineStart:o,paddingInlineEnd:s,transition:["height","line-height","padding"].map(g=>`${g} ${e.motionDurationSlow}`).join(","),"&-content":{...Wn,marginInlineEnd:s},"&-remove":{...go(),display:"inline-flex",alignItems:"center",color:c,fontWeight:"bold",fontSize:10,lineHeight:"inherit",cursor:"pointer",[`> ${r}`]:{verticalAlign:"-0.2em"},"&:hover":{color:u}}},[`${t}-input`]:{lineHeight:n(a).mul(2).add(p("multi-item-height")).equal(),width:"calc(var(--select-input-width, 0) * 1px)",minWidth:ip,maxWidth:"100%",transition:`line-height ${e.motionDurationSlow}`}},[`&${t}-sm`]:{[m("multi-item-height")]:e.multipleItemHeightSM,[m("multi-item-border-radius")]:e.borderRadiusXS},[`&${t}-lg`]:{[m("multi-item-height")]:e.multipleItemHeightLG,[m("multi-item-border-radius")]:e.borderRadius},[`&${t}-filled`]:{[m("multi-item-border-color")]:e.colorSplit,[m("multi-item-background")]:e.colorBgContainer,[`&${t}-disabled`]:{[m("multi-item-border-color")]:"transparent"}}}}},Va=(e,t)=>{const{componentCls:n,antCls:r}=e,[o]=At(r,"select"),{border:s,borderHover:a,borderActive:l,borderOutline:c}=t,u=t.background||e.selectorBg||e.colorBgContainer;return{[o("border-color")]:s,[o("background-color")]:u,[o("color")]:t.color||e.colorText,[`&:not(${n}-disabled)`]:{"&:hover":{[o("border-color")]:a,[o("background-color")]:t.backgroundHover||u},[`&${n}-focused`]:{[o("border-color")]:l,[o("background-color")]:t.backgroundActive||u,boxShadow:`0 0 0 ${K(e.controlOutlineWidth)} ${c}`}},[`&${n}-disabled`]:{[o("border-color")]:t.borderDisabled||t.border,[o("background-color")]:t.backgroundDisabled||t.background}}},Ws=(e,t,n,r={},o={},s)=>{const{componentCls:a}=e;return{[`&${a}-${t}`]:[Va(e,n),{[`&${a}-status-error`]:Va(e,{...n,color:r.color||e.colorError,...r}),[`&${a}-status-warning`]:Va(e,{...n,color:o.color||e.colorWarning,...o})},s]}},DP=e=>{const{componentCls:t,fontHeight:n,controlHeight:r,iconCls:o,antCls:s,calc:a}=e,[l,c]=At(s,"select");return{[t]:[{[l("border-radius")]:e.borderRadius,[l("border-color")]:"#000",[l("border-size")]:e.lineWidth,[l("background-color")]:e.colorBgContainer,[l("font-size")]:e.fontSize,[l("line-height")]:e.lineHeight,[l("font-height")]:n,[l("color")]:e.colorText,[l("height")]:r,[l("padding-horizontal")]:a(e.paddingSM).sub(e.lineWidth).equal(),[l("padding-vertical")]:`calc((${c("height")} - ${c("font-height")}) / 2 - ${c("border-size")})`,...Ct(e,!0),display:"inline-flex",flexWrap:"nowrap",position:"relative",transition:`all ${e.motionDurationSlow}`,alignItems:"flex-start",outline:0,cursor:"pointer",borderRadius:c("border-radius"),borderWidth:c("border-size"),borderStyle:e.lineType,borderColor:c("border-color"),background:c("background-color"),fontSize:c("font-size"),lineHeight:c("line-height"),color:c("color"),paddingInline:c("padding-horizontal"),paddingBlock:c("padding-vertical"),[`${t}-prefix`]:{flex:"none",lineHeight:1},[`${t}-placeholder`]:{...Wn,color:e.colorTextPlaceholder,pointerEvents:"none",zIndex:1},[`${t}-content`]:{flex:"auto",minWidth:0,position:"relative",display:"flex",marginInlineEnd:a(e.paddingXXS).mul(1.5).equal(),"&:before":{content:'"\\a0"',width:0,overflow:"hidden"},"input[readonly]":{cursor:"inherit",caretColor:"transparent"}},[`${t}-suffix`]:{flex:"none",color:e.colorTextQuaternary,fontSize:e.fontSizeIcon,lineHeight:1,"> :not(:last-child)":{marginInlineEnd:e.marginXS}},[`${t}-prefix, ${t}-suffix`]:{alignSelf:"center",[o]:{verticalAlign:"top"}},"&-disabled":{background:e.colorBgContainerDisabled,color:e.colorTextDisabled,cursor:"not-allowed",input:{cursor:"not-allowed"}},"&-sm":{[l("height")]:e.controlHeightSM,[l("padding-horizontal")]:a(e.paddingXS).sub(e.lineWidth).equal(),[l("border-radius")]:e.borderRadiusSM,[`${t}-clear`]:{insetInlineEnd:c("padding-horizontal")}},"&-lg":{[l("height")]:e.controlHeightLG,[l("font-size")]:e.fontSizeLG,[l("line-height")]:e.lineHeightLG,[l("font-height")]:e.fontHeightLG,[l("border-radius")]:e.borderRadiusLG}},{[`&:not(${t}-customize)`]:{[`${t}-input`]:{outline:"none",background:"transparent",appearance:"none",border:0,margin:0,padding:0,color:c("color"),"&::-webkit-search-cancel-button":{display:"none",appearance:"none"}}}},{[`&-single:not(${t}-customize)`]:{[`${t}-input`]:{position:"absolute",insetInline:0,insetBlock:`calc(${c("padding-vertical")} * -1)`,lineHeight:`calc(${c("font-height")} + ${c("padding-vertical")} * 2)`},[`${t}-content`]:{...Wn,alignSelf:"center","&-has-value":{display:"block","&:before":{display:"none"}},"&-has-search-value":{color:"transparent"},"&-value":{transition:`all ${e.motionDurationMid} ${e.motionEaseInOut}`,zIndex:1}},[`&${t}-open ${t}-content`]:{color:e.colorTextPlaceholder}}},{[`&-show-search:not(${t}-customize-input):not(${t}-disabled)`]:{cursor:"text"}},HP(e),Ws(e,"outlined",{border:e.colorBorder,borderHover:e.hoverBorderColor,borderActive:e.activeBorderColor,borderOutline:e.activeOutlineColor,borderDisabled:e.colorBorderDisabled},{border:e.colorError,borderHover:e.colorErrorHover,borderActive:e.colorError,borderOutline:e.colorErrorOutline},{border:e.colorWarning,borderHover:e.colorWarningHover,borderActive:e.colorWarning,borderOutline:e.colorWarningOutline}),Ws(e,"filled",{border:"transparent",borderHover:"transparent",borderActive:e.activeBorderColor,borderOutline:"transparent",borderDisabled:e.colorBorderDisabled,background:e.colorFillTertiary,backgroundHover:e.colorFillSecondary,backgroundActive:e.colorBgContainer},{background:e.colorErrorBg,backgroundHover:e.colorErrorBgHover,borderActive:e.colorError},{background:e.colorWarningBg,backgroundHover:e.colorWarningBgHover,borderActive:e.colorWarning}),Ws(e,"borderless",{border:"transparent",borderHover:"transparent",borderActive:"transparent",borderOutline:"transparent",background:"transparent"}),Ws(e,"underlined",{border:e.colorBorder,borderHover:e.hoverBorderColor,borderActive:e.activeBorderColor,borderOutline:"transparent"},{border:e.colorError,borderHover:e.colorErrorHover,borderActive:e.colorError},{border:e.colorWarning,borderHover:e.colorWarningHover,borderActive:e.colorWarning},{borderRadius:0,borderTopColor:"transparent",borderRightColor:"transparent",borderLeftColor:"transparent"}),LP(e)]}},FP=e=>{const{fontSize:t,lineHeight:n,lineWidth:r,controlHeight:o,controlHeightSM:s,controlHeightLG:a,paddingXXS:l,controlPaddingHorizontal:c,zIndexPopupBase:u,colorText:d,fontWeightStrong:f,controlItemBgActive:m,controlItemBgHover:p,colorBgContainer:g,colorFillSecondary:h,colorBgContainerDisabled:b,colorTextDisabled:$,colorPrimaryHover:y,colorPrimary:v,controlOutline:C}=e,S=l*2,x=r*2,w=Math.min(o-S,o-x),I=Math.min(s-S,s-x),E=Math.min(a-S,a-x);return{INTERNAL_FIXED_ITEM_MARGIN:Math.floor(l/2),zIndexPopup:u+50,optionSelectedColor:d,optionSelectedFontWeight:f,optionSelectedBg:m,optionActiveBg:p,optionPadding:`${(o-t*n)/2}px ${c}px`,optionFontSize:t,optionLineHeight:n,optionHeight:o,selectorBg:g,clearBg:g,singleItemHeightLG:a,multipleItemBg:h,multipleItemBorderColor:"transparent",multipleItemHeight:w,multipleItemHeightSM:I,multipleItemHeightLG:E,multipleSelectorBgDisabled:b,multipleItemColorDisabled:$,multipleItemBorderColorDisabled:"transparent",showArrowPaddingInlineEnd:Math.ceil(e.fontSize*1.25),hoverBorderColor:y,activeBorderColor:v,activeOutlineColor:C,selectAffixPadding:l}},_P=e=>{const{antCls:t,componentCls:n,motionDurationMid:r,inputPaddingHorizontalBase:o}=e,s={[`${n}-clear`]:{opacity:1,background:e.colorBgBase,borderRadius:"50%"}};return{[n]:{...Ct(e),[`${n}-selection-item`]:{flex:1,fontWeight:"normal",position:"relative",userSelect:"none",...Wn,[`> ${t}-typography`]:{display:"inline"}},[`${n}-prefix`]:{flex:"none",marginInlineEnd:e.selectAffixPadding},[`${n}-clear`]:{position:"absolute",top:"50%",insetInlineStart:"auto",insetInlineEnd:o,zIndex:1,display:"inline-block",width:e.fontSizeIcon,height:e.fontSizeIcon,marginTop:e.calc(e.fontSizeIcon).mul(-1).div(2).equal(),color:e.colorTextQuaternary,fontSize:e.fontSizeIcon,fontStyle:"normal",lineHeight:1,textAlign:"center",textTransform:"none",cursor:"pointer",opacity:0,transition:["color","opacity"].map(a=>`${a} ${r} ease`).join(", "),textRendering:"auto",transform:"translateZ(0)","&:before":{display:"block"},"&:hover":{color:e.colorIcon}},"@media(hover:none)":s,"&:hover":s},[`${n}-status`]:{"&-error, &-warning, &-success, &-validating":{[`&${n}-has-feedback`]:{[`${n}-clear`]:{insetInlineEnd:e.calc(o).add(e.fontSize).add(e.paddingXS).equal()}}}}}},kP=e=>{const{componentCls:t}=e;return[{[t]:{[`&${t}-in-form-item`]:{width:"100%"}}},_P(e),BP(e),{[`${t}-rtl`]:{direction:"rtl"}},yo(e,{focusElCls:`${t}-focused`})]},VP=at("Select",(e,{rootPrefixCls:t})=>{const n=rt(e,{rootPrefixCls:t,inputPaddingHorizontalBase:e.calc(e.paddingSM).sub(e.lineWidth).equal(),multipleSelectItemHeight:e.multipleItemHeight,selectHeight:e.controlHeight});return[kP(n),DP(n)]},FP,{unitless:{optionLineHeight:!0,optionSelectedFontWeight:!0}});var WP={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M912 190h-69.9c-9.8 0-19.1 4.5-25.1 12.2L404.7 724.5 207 474a32 32 0 00-25.1-12.2H112c-6.7 0-10.4 7.7-6.3 12.9l273.9 347c12.8 16.2 37.4 16.2 50.3 0l488.4-618.9c4.1-5.1.4-12.8-6.3-12.8z"}}]},name:"check",theme:"outlined"};function Nc(){return Nc=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Nc({},e,{ref:t,icon:WP})),fb=i.forwardRef(jP);var qP={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z"}}]},name:"down",theme:"outlined"};function Tc(){return Tc=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Tc({},e,{ref:t,icon:qP})),mb=i.forwardRef(GP);var XP={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M909.6 854.5L649.9 594.8C690.2 542.7 712 479 712 412c0-80.2-31.3-155.4-87.9-212.1-56.6-56.7-132-87.9-212.1-87.9s-155.5 31.3-212.1 87.9C143.2 256.5 112 331.8 112 412c0 80.1 31.3 155.5 87.9 212.1C256.5 680.8 331.8 712 412 712c67 0 130.6-21.8 182.7-62l259.7 259.6a8.2 8.2 0 0011.6 0l43.6-43.5a8.2 8.2 0 000-11.6zM570.4 570.4C528 612.7 471.8 636 412 636s-116-23.3-158.4-65.6C211.3 528 188 471.8 188 412s23.3-116.1 65.6-158.4C296 211.3 352.2 188 412 188s116.1 23.2 158.4 65.6S636 352.2 636 412s-23.3 116.1-65.6 158.4z"}}]},name:"search",theme:"outlined"};function Oc(){return Oc=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Oc({},e,{ref:t,icon:XP})),pb=i.forwardRef(UP);function KP({suffixIcon:e,clearIcon:t,menuItemSelectedIcon:n,removeIcon:r,loading:o,loadingIcon:s,multiple:a,hasFeedback:l,showSuffixIcon:c,feedbackIcon:u,showArrow:d,componentName:f}){const m=t??i.createElement(is,null),p=$=>e===null&&!l&&!d?null:i.createElement(i.Fragment,null,c!==!1&&$,l&&u);let g=null;e!==void 0?g=p(e):o?g=p(s??i.createElement(us,{spin:!0})):g=({open:$,showSearch:y})=>p($&&y?i.createElement(pb,null):i.createElement(mb,null));let h=null;n!==void 0?h=n:a?h=i.createElement(fb,null):h=null;let b=null;return r!==void 0?b=r:b=i.createElement(Br,null),{clearIcon:m,suffixIcon:g,itemIcon:h,removeIcon:b}}function YP(e){return N.useMemo(()=>{if(e)return(...t)=>N.createElement(ur,{space:!0},e.apply(void 0,t))},[e])}function QP(e,t){return t!==void 0?t:e!==null}const gb="SECRET_COMBOBOX_MODE_DO_NOT_USE",ZP=(e,t)=>{var he,xe,Te,Fe,Je;const{prefixCls:n,bordered:r,className:o,rootClassName:s,getPopupContainer:a,popupClassName:l,dropdownClassName:c,listHeight:u=256,placement:d,listItemHeight:f,size:m,disabled:p,notFoundContent:g,status:h,builtinPlacements:b,dropdownMatchSelectWidth:$,popupMatchSelectWidth:y,direction:v,style:C,allowClear:S,variant:x,popupStyle:w,dropdownStyle:I,transitionName:E,tagRender:R,maxCount:P,prefix:M,dropdownRender:O,popupRender:A,onDropdownVisibleChange:T,onOpenChange:F,styles:H,classNames:L,...B}=e,{getPopupContainer:D,getPrefixCls:k,renderEmpty:W,direction:_,virtual:X,popupMatchSelectWidth:U,popupOverflow:j}=i.useContext(je),{showSearch:V,style:G,styles:te,className:ee,classNames:ne}=dt("select"),[,Y]=jt(),se=f??(Y==null?void 0:Y.controlHeight),ue=k("select",n),q=k(),oe=v??_,{compactSize:Z,compactItemClassnames:J}=Un(ue,oe),[ae,we]=qi("select",x,r),de=_t(ue),[ge,be]=VP(ue,de),me=i.useMemo(()=>{const{mode:tt}=e;if(tt!=="combobox")return tt===gb?"combobox":tt},[e.mode]),Ne=me==="multiple"||me==="tags",Ae=QP(e.suffixIcon,e.showArrow),Ee=y??$??U,ze=YP(A||O),Re=F||T,{status:ve,hasFeedback:fe,isFormItemInput:Ce,feedbackIcon:He}=i.useContext($n),Ie=ys(ve,h);let re;g!==void 0?re=g:me==="combobox"?re=null:re=(W==null?void 0:W("Select"))||i.createElement(OP,{componentName:"Select"});const{suffixIcon:$e,itemIcon:ke,removeIcon:De,clearIcon:ot}=KP({...B,multiple:Ne,hasFeedback:fe,feedbackIcon:He,showSuffixIcon:Ae,componentName:"Select"}),qe=S===!0?{clearIcon:ot}:S,ft=yt(B,["suffixIcon","itemIcon"]),Qe=Jt(tt=>m??Z??tt),st=i.useContext(yn),lt=p??st,Se={...e,variant:ae,status:Ie,disabled:lt,size:Qe},[Be,Pe]=pt([ne,L],[te,H],{props:Se},{popup:{_default:"root"}}),ye=z((he=Be.popup)==null?void 0:he.root,l,c,{[`${ue}-dropdown-${oe}`]:oe==="rtl"},s,be,de,ge),ce={...(xe=Pe.popup)==null?void 0:xe.root,...w??I},Q=z({[`${ue}-lg`]:Qe==="large",[`${ue}-sm`]:Qe==="small",[`${ue}-rtl`]:oe==="rtl",[`${ue}-${ae}`]:we,[`${ue}-in-form-item`]:Ce},zr(ue,Ie,fe),J,ee,o,Be.root,s,be,de,ge),pe=i.useMemo(()=>d!==void 0?d:oe==="rtl"?"bottomRight":"bottomLeft",[d,oe]),[ie]=ls("SelectLike",((Fe=(Te=Pe.popup)==null?void 0:Te.root)==null?void 0:Fe.zIndex)??(ce==null?void 0:ce.zIndex));return i.createElement(Sd,{ref:t,virtual:X,classNames:Be,styles:Pe,showSearch:V,...ft,style:{...Pe.root,...G,...C},popupMatchSelectWidth:Ee,transitionName:lr(q,"slide-up",E),builtinPlacements:zP(b,j),listHeight:u,listItemHeight:se,mode:me,prefixCls:ue,placement:pe,direction:oe,prefix:M,suffixIcon:$e,menuItemSelectedIcon:ke,removeIcon:De,allowClear:qe,notFoundContent:re,className:Q,getPopupContainer:a||D,popupClassName:ye,disabled:lt,popupStyle:{...(Je=Pe.popup)==null?void 0:Je.root,...ce,zIndex:ie},maxCount:Ne?P:void 0,tagRender:Ne?R:void 0,popupRender:ze,onPopupVisibleChange:Re})},Co=i.forwardRef(ZP),JP=bd(Co,"popupAlign");Co.SECRET_COMBOBOX_MODE_DO_NOT_USE=gb;Co.Option=Cd;Co.OptGroup=$d;Co._InternalPanelDoNotUseOrYouWillBeFired=JP;const mo=e=>e?typeof e=="function"?e():e:null,xd=e=>{const{children:t,prefixCls:n,id:r,classNames:o,styles:s,className:a,style:l}=e;return i.createElement("div",{id:r,className:z(`${n}-container`,o==null?void 0:o.container,a),style:{...s==null?void 0:s.container,...l},role:"tooltip"},typeof t=="function"?t():t)},Xr={shiftX:64,adjustY:1},Ur={adjustX:1,shiftY:!0},mn=[0,0],eR={left:{points:["cr","cl"],overflow:Ur,offset:[-4,0],targetOffset:mn},right:{points:["cl","cr"],overflow:Ur,offset:[4,0],targetOffset:mn},top:{points:["bc","tc"],overflow:Xr,offset:[0,-4],targetOffset:mn},bottom:{points:["tc","bc"],overflow:Xr,offset:[0,4],targetOffset:mn},topLeft:{points:["bl","tl"],overflow:Xr,offset:[0,-4],targetOffset:mn},leftTop:{points:["tr","tl"],overflow:Ur,offset:[-4,0],targetOffset:mn},topRight:{points:["br","tr"],overflow:Xr,offset:[0,-4],targetOffset:mn},rightTop:{points:["tl","tr"],overflow:Ur,offset:[4,0],targetOffset:mn},bottomRight:{points:["tr","br"],overflow:Xr,offset:[0,4],targetOffset:mn},rightBottom:{points:["bl","br"],overflow:Ur,offset:[4,0],targetOffset:mn},bottomLeft:{points:["tl","bl"],overflow:Xr,offset:[0,4],targetOffset:mn},leftBottom:{points:["br","bl"],overflow:Ur,offset:[-4,0],targetOffset:mn}};function Ac(){return Ac=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{trigger:n=["hover"],mouseEnterDelay:r=0,mouseLeaveDelay:o=.1,prefixCls:s="rc-tooltip",children:a,onVisibleChange:l,afterVisibleChange:c,motion:u,placement:d="right",align:f={},destroyOnHidden:m=!1,defaultVisible:p,getTooltipContainer:g,arrowContent:h,overlay:b,id:$,showArrow:y=!0,classNames:v,styles:C,...S}=e,x=Xn($),w=i.useRef(null);i.useImperativeHandle(t,()=>w.current);const I={...S};"visible"in e&&(I.popupVisible=e.visible);const E=i.useMemo(()=>{if(!y)return!1;const P=y===!0?{}:y;return{...P,className:z(P.className,v==null?void 0:v.arrow),style:{...P.style,...C==null?void 0:C.arrow},content:P.content??h}},[y,v==null?void 0:v.arrow,C==null?void 0:C.arrow,h]),R=({open:P})=>{const M=i.Children.only(a),O={"aria-describedby":b&&P?x:void 0};return i.cloneElement(M,O)};return i.createElement(ki,Ac({popupClassName:v==null?void 0:v.root,prefixCls:s,popup:i.createElement(xd,{key:"content",prefixCls:s,id:x,classNames:v,styles:C},b),action:n,builtinPlacements:eR,popupPlacement:d,ref:w,popupAlign:f,getPopupContainer:g,onOpenChange:l,afterOpenChange:c,popupMotion:u,defaultPopupVisible:p,autoDestroy:m,mouseLeaveDelay:o,popupStyle:C==null?void 0:C.root,mouseEnterDelay:r,arrow:E,uniqueContainerClassName:v==null?void 0:v.uniqueContainer,uniqueContainerStyle:C==null?void 0:C.uniqueContainer},I),R)});function wd(e){const{sizePopupArrow:t,borderRadiusXS:n,borderRadiusOuter:r}=e,o=t/2,s=0,a=o,l=r*1/Math.sqrt(2),c=o-r*(1-1/Math.sqrt(2)),u=o-n*(1/Math.sqrt(2)),d=r*(Math.sqrt(2)-1)+n*(1/Math.sqrt(2)),f=2*o-u,m=d,p=2*o-l,g=c,h=2*o-s,b=a,$=o*Math.sqrt(2)+r*(Math.sqrt(2)-2),y=r*(Math.sqrt(2)-1),v=`polygon(${y}px 100%, 50% ${y}px, ${2*o-y}px 100%, ${y}px 100%)`,C=`path('M ${s} ${a} A ${r} ${r} 0 0 0 ${l} ${c} L ${u} ${d} A ${n} ${n} 0 0 1 ${f} ${m} L ${p} ${g} A ${r} ${r} 0 0 0 ${h} ${b} Z')`;return{arrowShadowWidth:$,arrowPath:C,arrowPolygon:v}}const nR=(e,t,n)=>{const{sizePopupArrow:r,arrowPolygon:o,arrowPath:s,arrowShadowWidth:a,borderRadiusXS:l,calc:c}=e;return{pointerEvents:"none",width:r,height:r,overflow:"hidden","&::before":{position:"absolute",bottom:0,insetInlineStart:0,width:r,height:c(r).div(2).equal(),background:t,clipPath:{_multi_value_:!0,value:[o,s]},content:'""'},"&::after":{content:'""',position:"absolute",width:a,height:a,bottom:0,insetInline:0,margin:"auto",borderRadius:{_skip_check_:!0,value:`0 0 ${K(l)} 0`},transform:"translateY(50%) rotate(-135deg)",boxShadow:n,zIndex:0,background:"transparent"}}},hb=8;function Gi(e){const{contentRadius:t,limitVerticalRadius:n}=e,r=t>12?t+2:12;return{arrowOffsetHorizontal:r,arrowOffsetVertical:n?hb:r}}function js(e,t){return e?t:{}}const Ed=(e,t,n)=>{const{componentCls:r,boxShadowPopoverArrow:o,arrowOffsetVertical:s,arrowOffsetHorizontal:a,antCls:l}=e,[c]=At(l,"tooltip"),{arrowDistance:u=0,arrowPlacement:d={left:!0,right:!0,top:!0,bottom:!0}}=n||{};return{[r]:{[`${r}-arrow`]:[{position:"absolute",zIndex:1,display:"block",...nR(e,t,o),"&:before":{background:t}}],...js(!!d.top,{[[`&-placement-top > ${r}-arrow`,`&-placement-topLeft > ${r}-arrow`,`&-placement-topRight > ${r}-arrow`].join(",")]:{bottom:u,transform:"translateY(100%) rotate(180deg)"},[`&-placement-top > ${r}-arrow`]:{left:{_skip_check_:!0,value:"50%"},transform:"translateX(-50%) translateY(100%) rotate(180deg)"},"&-placement-topLeft":{[c("arrow-offset-x")]:a,[`> ${r}-arrow`]:{left:{_skip_check_:!0,value:a}}},"&-placement-topRight":{[c("arrow-offset-x")]:`calc(100% - ${K(a)})`,[`> ${r}-arrow`]:{right:{_skip_check_:!0,value:a}}}}),...js(!!d.bottom,{[[`&-placement-bottom > ${r}-arrow`,`&-placement-bottomLeft > ${r}-arrow`,`&-placement-bottomRight > ${r}-arrow`].join(",")]:{top:u,transform:"translateY(-100%)"},[`&-placement-bottom > ${r}-arrow`]:{left:{_skip_check_:!0,value:"50%"},transform:"translateX(-50%) translateY(-100%)"},"&-placement-bottomLeft":{[c("arrow-offset-x")]:a,[`> ${r}-arrow`]:{left:{_skip_check_:!0,value:a}}},"&-placement-bottomRight":{[c("arrow-offset-x")]:`calc(100% - ${K(a)})`,[`> ${r}-arrow`]:{right:{_skip_check_:!0,value:a}}}}),...js(!!d.left,{[[`&-placement-left > ${r}-arrow`,`&-placement-leftTop > ${r}-arrow`,`&-placement-leftBottom > ${r}-arrow`].join(",")]:{right:{_skip_check_:!0,value:u},transform:"translateX(100%) rotate(90deg)"},[`&-placement-left > ${r}-arrow`]:{top:{_skip_check_:!0,value:"50%"},transform:"translateY(-50%) translateX(100%) rotate(90deg)"},[`&-placement-leftTop > ${r}-arrow`]:{top:s},[`&-placement-leftBottom > ${r}-arrow`]:{bottom:s}}),...js(!!d.right,{[[`&-placement-right > ${r}-arrow`,`&-placement-rightTop > ${r}-arrow`,`&-placement-rightBottom > ${r}-arrow`].join(",")]:{left:{_skip_check_:!0,value:u},transform:"translateX(-100%) rotate(-90deg)"},[`&-placement-right > ${r}-arrow`]:{top:{_skip_check_:!0,value:"50%"},transform:"translateY(-50%) translateX(-100%) rotate(-90deg)"},[`&-placement-rightTop > ${r}-arrow`]:{top:s},[`&-placement-rightBottom > ${r}-arrow`]:{bottom:s}})}}};function rR(e,t,n,r){if(r===!1)return{adjustX:!1,adjustY:!1};const o=r&&typeof r=="object"?r:{},s={};switch(e){case"top":case"bottom":s.shiftX=t.arrowOffsetHorizontal*2+n,s.shiftY=!0,s.adjustY=!0;break;case"left":case"right":s.shiftY=t.arrowOffsetVertical*2+n,s.shiftX=!0,s.adjustX=!0;break}const a={...s,...o};return a.shiftX||(a.adjustX=!0),a.shiftY||(a.adjustY=!0),a}const ap={left:{points:["cr","cl"]},right:{points:["cl","cr"]},top:{points:["bc","tc"]},bottom:{points:["tc","bc"]},topLeft:{points:["bl","tl"]},leftTop:{points:["tr","tl"]},topRight:{points:["br","tr"]},rightTop:{points:["tl","tr"]},bottomRight:{points:["tr","br"]},rightBottom:{points:["bl","br"]},bottomLeft:{points:["tl","bl"]},leftBottom:{points:["br","bl"]}},oR={topLeft:{points:["bl","tc"]},leftTop:{points:["tr","cl"]},topRight:{points:["br","tc"]},rightTop:{points:["tl","cr"]},bottomRight:{points:["tr","bc"]},rightBottom:{points:["bl","cr"]},bottomLeft:{points:["tl","bc"]},leftBottom:{points:["br","cl"]}},sR=new Set(["topLeft","topRight","bottomLeft","bottomRight","leftTop","leftBottom","rightTop","rightBottom"]);function bb(e){const{arrowWidth:t,autoAdjustOverflow:n,arrowPointAtCenter:r,offset:o,borderRadius:s,visibleFirst:a}=e,l=t/2,c={},u=Gi({contentRadius:s,limitVerticalRadius:!0});return Object.keys(ap).forEach(d=>{const m={...r&&oR[d]||ap[d],offset:[0,0],dynamicInset:!0};switch(c[d]=m,sR.has(d)&&(m.autoArrow=!1),d){case"top":case"topLeft":case"topRight":m.offset[1]=-l-o;break;case"bottom":case"bottomLeft":case"bottomRight":m.offset[1]=l+o;break;case"left":case"leftTop":case"leftBottom":m.offset[0]=-l-o;break;case"right":case"rightTop":case"rightBottom":m.offset[0]=l+o;break}if(r)switch(d){case"topLeft":case"bottomLeft":m.offset[0]=-u.arrowOffsetHorizontal-l;break;case"topRight":case"bottomRight":m.offset[0]=u.arrowOffsetHorizontal+l;break;case"leftTop":case"rightTop":m.offset[1]=-u.arrowOffsetHorizontal*2+l;break;case"leftBottom":case"rightBottom":m.offset[1]=u.arrowOffsetHorizontal*2-l;break}m.overflow=rR(d,u,t,n),a&&(m.htmlRegion="visibleFirst")}),c}const Xi=(e,t)=>{const n=r=>typeof r=="boolean"?{show:r}:r||{};return N.useMemo(()=>{const r=n(e),o=n(t);return{...o,...r,show:r.show??o.show??!0}},[e,t])},lp="50%",iR=e=>{const{calc:t,componentCls:n,tooltipMaxWidth:r,tooltipColor:o,tooltipBg:s,tooltipBorderRadius:a,zIndexPopup:l,controlHeight:c,boxShadowSecondary:u,paddingSM:d,paddingXS:f,arrowOffsetHorizontal:m,sizePopupArrow:p,antCls:g}=e,[h,b]=At(g,"tooltip"),$=t(a).add(p).add(m).equal(),v={minWidth:t(a).mul(2).add(p).equal(),minHeight:c,padding:`${K(e.calc(d).div(2).equal())} ${K(f)}`,color:b("overlay-color",o),textAlign:"start",textDecoration:"none",wordWrap:"break-word",backgroundColor:s,borderRadius:a,boxShadow:u,boxSizing:"border-box"},C={[h("valid-offset-x")]:b("arrow-offset-x","var(--arrow-x)"),transformOrigin:[b("valid-offset-x",lp),`var(--arrow-y, ${lp})`].join(" ")};return[{[n]:{...Ct(e),position:"absolute",zIndex:l,display:"block",width:"max-content",maxWidth:r,visibility:"visible",...C,"&-hidden":{display:"none"},[h("arrow-background-color")]:s,[`${n}-container`]:[v,d0(e,!0)],[`&:has(~ ${n}-unique-container)`]:{[`${n}-container`]:{border:"none",background:"transparent",boxShadow:"none"}},[["&-placement-topLeft","&-placement-topRight","&-placement-bottomLeft","&-placement-bottomRight"].join(",")]:{minWidth:$},[["&-placement-left","&-placement-leftTop","&-placement-leftBottom","&-placement-right","&-placement-rightTop","&-placement-rightBottom"].join(",")]:{[`${n}-inner`]:{borderRadius:e.min(a,hb)}},[`${n}-content`]:{position:"relative"},...t$(e,(S,{darkColor:x})=>({[`&${n}-${S}`]:{[`${n}-container`]:{backgroundColor:x},[`${n}-arrow`]:{[h("arrow-background-color")]:x}}})),"&-rtl":{direction:"rtl"}}},Ed(e,b("arrow-background-color")),{[`${n}-pure`]:{position:"relative",maxWidth:"none",margin:e.sizePopupArrow}},{[`${n}-unique-container`]:{...v,...C,position:"absolute",zIndex:t(l).sub(1).equal(),"&-hidden":{display:"none"},"&-visible":{transition:`all ${e.motionDurationSlow}`}}}]},aR=e=>({zIndexPopup:e.zIndexPopupBase+70,maxWidth:250,...Gi({contentRadius:e.borderRadius,limitVerticalRadius:!0}),...wd(rt(e,{borderRadiusOuter:Math.min(e.borderRadiusOuter,4)}))}),vb=(e,t,n=!0)=>at("Tooltip",o=>{const{borderRadius:s,colorTextLightSolid:a,colorBgSpotlight:l,maxWidth:c}=o,u=rt(o,{tooltipMaxWidth:c,tooltipColor:a,tooltipBorderRadius:s,tooltipBg:l});return[iR(u),ds(o,"zoom-big-fast")]},aR,{resetStyle:!1,injectStyle:n})(e,t),lR=Tn.map(e=>`${e}-inverse`);function cR(e,t=!0){return t?[].concat(xt(lR),xt(Tn)).includes(e):Tn.includes(e)}const yb=(e,t,n)=>{const r=cR(n),[o]=At(e,"tooltip"),s=z({[`${t}-${n}`]:n&&r}),a={},l={},c=Bt(n).toRgb(),d=(.299*c.r+.587*c.g+.114*c.b)/255<.5?"#FFF":"#000";return n&&!r&&(a.background=n,a[o("overlay-color")]=d,l[o("arrow-background-color")]=n),{className:s,overlayStyle:a,arrowStyle:l}},uR=e=>{const{prefixCls:t,className:n,placement:r="top",title:o,color:s,overlayInnerStyle:a,classNames:l,styles:c}=e,{getPrefixCls:u}=i.useContext(je),d=u("tooltip",t),f=u(),m=_t(d),[p,g]=vb(d,m),h=yb(f,d,s),b=h.arrowStyle,$=i.useMemo(()=>({container:{...a,...h.overlayStyle}}),[a,h.overlayStyle]),y={...e,placement:r},[v,C]=pt([l],[$,c],{props:y}),S=z(m,p,g,d,`${d}-pure`,`${d}-placement-${r}`,n,h.className);return i.createElement("div",{className:S,style:b},i.createElement("div",{className:`${d}-arrow`}),i.createElement(xd,{...e,className:p,prefixCls:d,classNames:v,styles:C},o))},dR=i.forwardRef((e,t)=>{const{prefixCls:n,openClassName:r,getTooltipContainer:o,color:s,children:a,afterOpenChange:l,arrow:c,destroyTooltipOnHide:u,destroyOnHidden:d,title:f,overlay:m,trigger:p,builtinPlacements:g,autoAdjustOverflow:h=!0,motion:b,getPopupContainer:$,placement:y="top",mouseEnterDelay:v=.1,mouseLeaveDelay:C=.1,rootClassName:S,styles:x,classNames:w,onOpenChange:I,overlayInnerStyle:E,overlayStyle:R,overlayClassName:P,...M}=e,[,O]=jt(),{getPopupContainer:A,getPrefixCls:T,direction:F,className:H,style:L,classNames:B,styles:D,arrow:k,trigger:W}=dt("tooltip"),_=Xi(c,k),X=_.show,U=p||W||"hover",j=i.useRef(null),V=()=>{var $e;($e=j.current)==null||$e.forceAlign()};i.useImperativeHandle(t,()=>{var $e,ke;return{forceAlign:V,nativeElement:($e=j.current)==null?void 0:$e.nativeElement,popupElement:(ke=j.current)==null?void 0:ke.popupElement}});const[G,te]=bt(e.defaultOpen??!1,e.open),ee=!f&&!m&&f!==0,ne=$e=>{te(ee?!1:$e),!ee&&I&&I($e)},Y=i.useMemo(()=>g||bb({arrowPointAtCenter:(_==null?void 0:_.pointAtCenter)??!1,autoAdjustOverflow:h,arrowWidth:X?O.sizePopupArrow:0,borderRadius:O.borderRadius,offset:O.marginXXS,visibleFirst:!0}),[_,g,O,X,h]),se=i.useMemo(()=>f===0?f:m||f||"",[m,f]),ue=i.createElement(ur,{space:!0,form:!0},typeof se=="function"?se():se),q={...e,trigger:U,color:s,placement:y,builtinPlacements:g,openClassName:r,arrow:c,autoAdjustOverflow:h,getPopupContainer:$,children:a,destroyTooltipOnHide:u,destroyOnHidden:d},[oe,Z]=pt([B,w],[D,x],{props:q}),J=T("tooltip",n),ae=T(),we=e["data-popover-inject"];let de=G;!("open"in e)&&ee&&(de=!1);const ge=i.isValidElement(a)&&!Oh(a)?a:i.createElement("span",null,a),be=ge.props,me=!be.className||typeof be.className=="string"?z(be.className,r||`${J}-open`):be.className,Ne=_t(J),[Ae,Ee]=vb(J,Ne,!we),ze=yb(ae,J,s),Re=ze.arrowStyle,ve=z(Ne,Ae,Ee),fe=z(P,{[`${J}-rtl`]:F==="rtl"},ze.className,S,ve,H,oe.root),[Ce,He]=ls("Tooltip",M.zIndex),Ie={...Z.container,...E,...ze.overlayStyle},re=i.createElement(tR,{unique:!0,...M,trigger:U,zIndex:Ce,showArrow:X,placement:y,mouseEnterDelay:v,mouseLeaveDelay:C,prefixCls:J,classNames:{root:fe,container:oe.container,arrow:oe.arrow,uniqueContainer:z(ve,oe.container)},styles:{root:{...Re,...Z.root,...L,...R},container:Ie,uniqueContainer:Ie,arrow:Z.arrow},getTooltipContainer:$||o||A,ref:j,builtinPlacements:Y,overlay:ue,visible:de,onVisibleChange:ne,afterVisibleChange:l,arrowContent:i.createElement("span",{className:`${J}-arrow-content`}),motion:{motionName:lr(ae,"zoom-big-fast",typeof(b==null?void 0:b.motionName)=="string"?b==null?void 0:b.motionName:void 0),motionDeadline:1e3},destroyOnHidden:d??!!u},de?Wt(ge,{className:me}):ge);return i.createElement(_i.Provider,{value:He},re)}),Kn=dR;Kn._InternalPanelDoNotUseOrYouWillBeFired=uR;Kn.UniqueProvider=Ah;const cp="50%",fR=e=>{const{componentCls:t,popoverColor:n,titleMinWidth:r,fontWeightStrong:o,innerPadding:s,boxShadowSecondary:a,colorTextHeading:l,borderRadiusLG:c,zIndexPopup:u,titleMarginBottom:d,colorBgElevated:f,popoverBg:m,titleBorderBottom:p,innerContentPadding:g,titlePadding:h,antCls:b}=e,[$,y]=At(b,"tooltip");return[{[t]:{...Ct(e),position:"absolute",top:0,left:{_skip_check_:!0,value:0},zIndex:u,fontWeight:"normal",whiteSpace:"normal",textAlign:"start",cursor:"auto",userSelect:"text",[$("valid-offset-x")]:y("arrow-offset-x","var(--arrow-x)"),transformOrigin:[y("valid-offset-x",cp),`var(--arrow-y, ${cp})`].join(" "),[$("arrow-background-color")]:f,width:"max-content",maxWidth:"100vw","&-rtl":{direction:"rtl"},"&-hidden":{display:"none"},[`${t}-content`]:{position:"relative"},[`${t}-container`]:{backgroundColor:m,backgroundClip:"padding-box",borderRadius:c,boxShadow:a,padding:s},[`${t}-title`]:{minWidth:r,marginBottom:d,color:l,fontWeight:o,borderBottom:p,padding:h},[`${t}-content`]:{color:n,padding:g}}},Ed(e,y("arrow-background-color")),{[`${t}-pure`]:{position:"relative",maxWidth:"none",margin:e.sizePopupArrow,display:"inline-block"}}]},mR=e=>{const{componentCls:t,antCls:n}=e,[r]=At(n,"tooltip");return{[t]:Tn.map(o=>{const s=e[`${o}6`];return{[`&${t}-${o}`]:{[r("arrow-background-color")]:s,[`${t}-inner`]:{backgroundColor:s},[`${t}-arrow`]:{background:"transparent"}}}})}},pR=e=>{const{lineWidth:t,controlHeight:n,fontHeight:r,padding:o,wireframe:s,zIndexPopupBase:a,borderRadiusLG:l,marginXS:c,lineType:u,colorSplit:d,paddingSM:f}=e,m=n-r,p=m/2,g=m/2-t,h=o;return{titleMinWidth:177,zIndexPopup:a+30,...wd(e),...Gi({contentRadius:l,limitVerticalRadius:!0}),innerPadding:s?0:12,titleMarginBottom:s?0:c,titlePadding:s?`${p}px ${h}px ${g}px`:0,titleBorderBottom:s?`${t}px ${u} ${d}`:"none",innerContentPadding:s?`${f}px ${h}px`:0}},$b=at("Popover",e=>{const{colorBgElevated:t,colorText:n}=e,r=rt(e,{popoverBg:t,popoverColor:n});return[fR(r),mR(r),ds(r,"zoom-big")]},pR,{resetStyle:!1,deprecatedTokens:[["width","titleMinWidth"],["minWidth","titleMinWidth"]]}),Cb=e=>{const{title:t,content:n,prefixCls:r,classNames:o,styles:s}=e;return!t&&!n?null:i.createElement(i.Fragment,null,t&&i.createElement("div",{className:z(`${r}-title`,o==null?void 0:o.title),style:s==null?void 0:s.title},t),n&&i.createElement("div",{className:z(`${r}-content`,o==null?void 0:o.content),style:s==null?void 0:s.content},n))},gR=e=>{const{hashId:t,prefixCls:n,className:r,style:o,placement:s="top",title:a,content:l,children:c,classNames:u,styles:d}=e,f=mo(a),m=mo(l),p={...e,placement:s},[g,h]=pt([u],[d],{props:p}),b=z(t,n,`${n}-pure`,`${n}-placement-${s}`,r);return i.createElement("div",{className:b,style:o},i.createElement("div",{className:`${n}-arrow`}),i.createElement(xd,{...e,className:t,prefixCls:n,classNames:g,styles:h},c||i.createElement(Cb,{prefixCls:n,title:f,content:m,classNames:g,styles:h})))},Sb=e=>{const{prefixCls:t,className:n,...r}=e,{getPrefixCls:o}=i.useContext(je),s=o("popover",t),[a,l]=$b(s);return i.createElement(gR,{...r,prefixCls:s,hashId:a,className:z(n,l)})},hR=i.forwardRef((e,t)=>{const{prefixCls:n,title:r,content:o,overlayClassName:s,placement:a="top",trigger:l,children:c,mouseEnterDelay:u=.1,mouseLeaveDelay:d=.1,onOpenChange:f,overlayStyle:m={},styles:p,classNames:g,motion:h,arrow:b,...$}=e,{getPrefixCls:y,className:v,style:C,classNames:S,styles:x,arrow:w,trigger:I}=dt("popover"),E=y("popover",n),[R,P]=$b(E),M=y(),O=Xi(b,w),A=l||I||"hover",T={...e,placement:a,trigger:A,mouseEnterDelay:u,mouseLeaveDelay:d,overlayStyle:m,styles:p,classNames:g},[F,H]=pt([S,g],[x,p],{props:T}),L=z(s,R,P,v,F.root),[B,D]=bt(e.defaultOpen??!1,e.open),k=X=>{D(X),f==null||f(X)},W=mo(r),_=mo(o);return i.createElement(Kn,{unique:!1,arrow:O,placement:a,trigger:A,mouseEnterDelay:u,mouseLeaveDelay:d,...$,prefixCls:E,classNames:{root:L,container:F.container,arrow:F.arrow},styles:{root:{...H.root,...C,...m},container:H.container,arrow:H.arrow},ref:t,open:B,onOpenChange:k,overlay:W||_?i.createElement(Cb,{prefixCls:E,title:W,content:_,classNames:F,styles:H}):null,motion:{motionName:lr(M,"zoom-big",typeof(h==null?void 0:h.motionName)=="string"?h==null?void 0:h.motionName:void 0)},"data-popover-inject":!0},c)}),Id=hR;Id._InternalPanelDoNotUseOrYouWillBeFired=Sb;var bR={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M724 218.3V141c0-6.7-7.7-10.4-12.9-6.3L260.3 486.8a31.86 31.86 0 000 50.3l450.8 352.1c5.3 4.1 12.9.4 12.9-6.3v-77.3c0-4.9-2.3-9.6-6.1-12.6l-360-281 360-281.1c3.8-3 6.1-7.7 6.1-12.6z"}}]},name:"left",theme:"outlined"};function zc(){return zc=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,zc({},e,{ref:t,icon:bR})),yR=i.forwardRef(vR),{ESC:$R,TAB:CR}=Me;function SR({visible:e,triggerRef:t,onVisibleChange:n,autoFocus:r,overlayRef:o}){const s=i.useRef(!1),a=()=>{var u,d;e&&((d=(u=t.current)==null?void 0:u.focus)==null||d.call(u),n==null||n(!1))},l=()=>{var u;return(u=o.current)!=null&&u.focus?(o.current.focus(),s.current=!0,!0):!1},c=u=>{switch(u.keyCode){case $R:a();break;case CR:{let d=!1;s.current||(d=l()),d?u.preventDefault():a();break}}};i.useEffect(()=>e?(window.addEventListener("keydown",c),r&&Ke(l,3),()=>{window.removeEventListener("keydown",c),s.current=!1}):()=>{s.current=!1},[e])}const xR=i.forwardRef((e,t)=>{const{overlay:n,arrow:r,prefixCls:o}=e,s=i.useMemo(()=>{let l;return typeof n=="function"?l=n():l=n,l},[n]),a=Ft(t,Gn(s));return N.createElement(N.Fragment,null,r&&N.createElement("div",{className:`${o}-arrow`}),N.cloneElement(s,{ref:dr(s)?a:void 0}))}),Kr={adjustX:1,adjustY:1},Yr=[0,0],wR={topLeft:{points:["bl","tl"],overflow:Kr,offset:[0,-4],targetOffset:Yr},top:{points:["bc","tc"],overflow:Kr,offset:[0,-4],targetOffset:Yr},topRight:{points:["br","tr"],overflow:Kr,offset:[0,-4],targetOffset:Yr},bottomLeft:{points:["tl","bl"],overflow:Kr,offset:[0,4],targetOffset:Yr},bottom:{points:["tc","bc"],overflow:Kr,offset:[0,4],targetOffset:Yr},bottomRight:{points:["tr","br"],overflow:Kr,offset:[0,4],targetOffset:Yr}};function Bc(){return Bc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{var D;const{arrow:n=!1,prefixCls:r="rc-dropdown",transitionName:o,animation:s,align:a,placement:l="bottomLeft",placements:c=wR,getPopupContainer:u,showAction:d,hideAction:f,overlayClassName:m,overlayStyle:p,visible:g,trigger:h=["hover"],autoFocus:b,overlay:$,children:y,onVisibleChange:v,...C}=e,[S,x]=N.useState(),w="visible"in e?g:S,I=s?`${r}-${s}`:o,E=N.useRef(null),R=N.useRef(null),P=N.useRef(null);N.useImperativeHandle(t,()=>E.current);const M=k=>{x(k),v==null||v(k)};SR({visible:w,triggerRef:P,onVisibleChange:M,autoFocus:b,overlayRef:R});const O=k=>{const{onOverlayClick:W}=e;x(!1),W&&W(k)},A=()=>N.createElement(xR,{ref:R,overlay:$,prefixCls:r,arrow:n}),T=()=>typeof $=="function"?A:A(),F=()=>{const{minOverlayWidthMatchTrigger:k,alignPoint:W}=e;return"minOverlayWidthMatchTrigger"in e?k:!W},H=()=>{const{openClassName:k}=e;return k!==void 0?k:`${r}-open`},L=N.cloneElement(y,{className:z((D=y.props)==null?void 0:D.className,w&&H()),ref:dr(y)?Ft(P,Gn(y)):void 0});let B=f;return!B&&h.indexOf("contextMenu")!==-1&&(B=["click"]),N.createElement(ki,Bc({builtinPlacements:c},C,{prefixCls:r,ref:E,popupClassName:z(m,{[`${r}-show-arrow`]:n}),popupStyle:p,action:h,showAction:d,hideAction:B,popupPlacement:l,popupAlign:a,popupMotion:{motionName:I},popupVisible:w,stretch:F()?"minWidth":"",popup:T(),onOpenChange:M,onPopupClick:O,getPopupContainer:u}),L)}),ER=e=>typeof e!="object"&&typeof e!="function"||e===null,wb=i.createContext(null);function Eb(e,t){return`${e}-${t}`}function Ib(e){const t=i.useContext(wb);return Eb(t,e)}const En=i.createContext(null);function IR(e,t){const n={...e};return Object.keys(t).forEach(r=>{const o=t[r];o!==void 0&&(n[r]=o)}),n}function ts({children:e,locked:t,...n}){const r=i.useContext(En),o=po(()=>IR(r,n),[r,n],(s,a)=>!t&&(s[0]!==a[0]||!ar(s[1],a[1],!0)));return i.createElement(En.Provider,{value:o},e)}const PR=[],Pb=i.createContext(null);function Ui(){return i.useContext(Pb)}const Rb=i.createContext(PR);function So(e){const t=i.useContext(Rb);return i.useMemo(()=>e!==void 0?[...t,e]:t,[t,e])}const Mb=i.createContext(null),Pd=i.createContext({}),{LEFT:Lc,RIGHT:Hc,UP:Dc,DOWN:ti,ENTER:ni,ESC:Nb,HOME:Oo,END:Ao}=Me,up=[Dc,ti,Lc,Hc];function RR(e,t,n,r){var p;const o="prev",s="next",a="children",l="parent";if(e==="inline"&&r===ni)return{inlineTrigger:!0};const c={[Dc]:o,[ti]:s},u={[Lc]:n?s:o,[Hc]:n?o:s,[ti]:a,[ni]:a},d={[Dc]:o,[ti]:s,[ni]:a,[Nb]:l,[Lc]:n?a:l,[Hc]:n?l:a};switch((p={inline:c,horizontal:u,vertical:d,inlineSub:c,horizontalSub:d,verticalSub:d}[`${e}${t?"":"Sub"}`])==null?void 0:p[r]){case o:return{offset:-1,sibling:!0};case s:return{offset:1,sibling:!0};case l:return{offset:-1,sibling:!1};case a:return{offset:1,sibling:!1};default:return null}}function MR(e){let t=e;for(;t;){if(t.getAttribute("data-menu-list"))return t;t=t.parentElement}return null}function NR(e,t){let n=e||document.activeElement;for(;n;){if(t.has(n))return n;n=n.parentElement}return null}function Rd(e,t){return fd(e,!0).filter(r=>t.has(r))}function dp(e,t,n,r=1){if(!e)return null;const o=Rd(e,t),s=o.length;let a=o.findIndex(l=>n===l);return r<0?a===-1?a=s-1:a-=1:r>0&&(a+=1),a=(a+s)%s,o[a]}const Ci=(e,t)=>{const n=new Set,r=new Map,o=new Map;return e.forEach(s=>{const a=document.querySelector(`[data-menu-id='${Eb(t,s)}']`);a&&(n.add(a),o.set(a,s),r.set(s,a))}),{elements:n,key2element:r,element2key:o}};function TR(e,t,n,r,o,s,a,l,c,u){const d=i.useRef(),f=i.useRef();f.current=t;const m=()=>{Ke.cancel(d.current)};return i.useEffect(()=>()=>{m()},[]),p=>{const{which:g}=p;if([...up,ni,Nb,Oo,Ao].includes(g)){const h=s();let b=Ci(h,r);const{elements:$,key2element:y,element2key:v}=b,C=y.get(t),S=NR(C,$),x=v.get(S),w=RR(e,a(x,!0).length===1,n,g);if(!w&&g!==Oo&&g!==Ao)return;(up.includes(g)||[Oo,Ao].includes(g))&&p.preventDefault();const I=E=>{if(E){let R=E;const P=E.querySelector("a");P!=null&&P.getAttribute("href")&&(R=P);const M=v.get(E);l(M),m(),d.current=Ke(()=>{f.current===M&&R.focus()})}};if([Oo,Ao].includes(g)||w.sibling||!S){let E;!S||e==="inline"?E=o.current:E=MR(S);let R;const P=Rd(E,$);g===Oo?R=P[0]:g===Ao?R=P[P.length-1]:R=dp(E,$,S,w.offset),I(R)}else if(w.inlineTrigger)c(x);else if(w.offset>0)c(x,!0),m(),d.current=Ke(()=>{b=Ci(h,r);const E=S.getAttribute("aria-controls"),R=document.getElementById(E),P=dp(R,b.elements);I(P)},5);else if(w.offset<0){const E=a(x,!0),R=E[E.length-2],P=y.get(R);c(R,!1),I(P)}}u==null||u(p)}}function OR(e){Promise.resolve().then(e)}const Md="__RC_UTIL_PATH_SPLIT__",fp=e=>e.join(Md),AR=e=>e.split(Md),Fc="rc-menu-more";function zR(){const[,e]=i.useState({}),t=i.useRef(new Map),n=i.useRef(new Map),[r,o]=i.useState([]),s=i.useRef(0),a=i.useRef(!1),l=()=>{a.current||e({})},c=i.useCallback((h,b)=>{const $=fp(b);n.current.set($,h),t.current.set(h,$),s.current+=1;const y=s.current;OR(()=>{y===s.current&&l()})},[]),u=i.useCallback((h,b)=>{const $=fp(b);n.current.delete($),t.current.delete(h)},[]),d=i.useCallback(h=>{o(h)},[]),f=i.useCallback((h,b)=>{const $=t.current.get(h)||"",y=AR($);return b&&r.includes(y[0])&&y.unshift(Fc),y},[r]),m=i.useCallback((h,b)=>h.filter($=>$!==void 0).some($=>f($,!0).includes(b)),[f]),p=()=>{const h=[...t.current.keys()];return r.length&&h.push(Fc),h},g=i.useCallback(h=>{const b=`${t.current.get(h)}${Md}`,$=new Set;return[...n.current.keys()].forEach(y=>{y.startsWith(b)&&$.add(n.current.get(y))}),$},[]);return i.useEffect(()=>()=>{a.current=!0},[]),{registerPath:c,unregisterPath:u,refreshOverflowKeys:d,isSubPathKey:m,getKeyPath:f,getKeys:p,getSubPathKeys:g}}function Do(e){const t=i.useRef(e);t.current=e;const n=i.useCallback((...r)=>{var o;return(o=t.current)==null?void 0:o.call(t,...r)},[]);return e?n:void 0}function Tb(e,t,n,r){const{activeKey:o,onActive:s,onInactive:a}=i.useContext(En),l={active:o===e};return t||(l.onMouseEnter=c=>{n==null||n({key:e,domEvent:c}),s(e)},l.onMouseLeave=c=>{r==null||r({key:e,domEvent:c}),a(e)}),l}function Ob(e){const{mode:t,rtl:n,inlineIndent:r}=i.useContext(En);if(t!=="inline")return null;const o=e;return n?{paddingRight:o*r}:{paddingLeft:o*r}}function Ab({icon:e,props:t,children:n}){let r;return e===null||e===!1?null:(typeof e=="function"?r=i.createElement(e,{...t}):typeof e!="boolean"&&(r=e),r||n||null)}function Si({item:e,...t}){return Object.defineProperty(t,"item",{get:()=>(Pt(!1,"`info.item` is deprecated since we will move to function component that not provides React Node instance in future."),e)}),t}function ns(){return ns=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{style:n,className:r,eventKey:o,warnKey:s,disabled:a,itemIcon:l,children:c,role:u,onMouseEnter:d,onMouseLeave:f,onClick:m,onKeyDown:p,onFocus:g,...h}=e,b=Ib(o),{prefixCls:$,onItemClick:y,disabled:v,overflowDisabled:C,itemIcon:S,selectedKeys:x,onActive:w}=i.useContext(En),{_internalRenderMenuItem:I}=i.useContext(Pd),E=`${$}-item`,R=i.useRef(),P=i.useRef(),M=v||a,O=qn(t,P),A=So(o),T=j=>({key:o,keyPath:[...A].reverse(),item:R.current,domEvent:j}),F=l||S,{active:H,...L}=Tb(o,M,d,f),B=x.includes(o),D=Ob(A.length),k=j=>{if(M)return;const V=T(j);m==null||m(Si(V)),y(V)},W=j=>{if(p==null||p(j),j.which===Me.ENTER){const V=T(j);m==null||m(Si(V)),y(V)}},_=j=>{w(o),g==null||g(j)},X={};e.role==="option"&&(X["aria-selected"]=B);let U=i.createElement(BR,ns({ref:R,elementRef:O,role:u===null?"none":u||"menuitem",tabIndex:a?null:-1,"data-menu-id":C&&b?null:b},yt(h,["extra"]),L,X,{component:"li","aria-disabled":a,style:{...D,...n},className:z(E,{[`${E}-active`]:H,[`${E}-selected`]:B,[`${E}-disabled`]:M},r),onClick:k,onKeyDown:W,onFocus:_}),c,i.createElement(Ab,{props:{...e,isSelected:B},icon:F}));return I&&(U=I(U,e,{selected:B})),U});function HR(e,t){const{eventKey:n}=e,r=Ui(),o=So(n);return i.useEffect(()=>{if(r)return r.registerPath(n,o),()=>{r.unregisterPath(n,o)}},[o]),r?null:i.createElement(LR,ns({},e,{ref:t}))}const $s=i.forwardRef(HR);function _c(){return _c=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:o,mode:s,rtl:a}=i.useContext(En);return i.createElement("ul",_c({className:z(o,a&&`${o}-rtl`,`${o}-sub`,`${o}-${s==="inline"?"inline":"vertical"}`,e),role:"menu"},n,{"data-menu-list":!0,ref:r}),t)},zb=i.forwardRef(DR);function Nd(e,t){return Vt(e).map((n,r)=>{var o;if(i.isValidElement(n)){const{key:s}=n;let a=((o=n.props)==null?void 0:o.eventKey)??s;a==null&&(a=`tmp_key-${[...t,r].join("-")}`);const c={key:a,eventKey:a};return i.cloneElement(n,c)}return n})}const Dt={adjustX:1,adjustY:1},FR={topLeft:{points:["bl","tl"],overflow:Dt},topRight:{points:["br","tr"],overflow:Dt},bottomLeft:{points:["tl","bl"],overflow:Dt},bottomRight:{points:["tr","br"],overflow:Dt},leftTop:{points:["tr","tl"],overflow:Dt},leftBottom:{points:["br","bl"],overflow:Dt},rightTop:{points:["tl","tr"],overflow:Dt},rightBottom:{points:["bl","br"],overflow:Dt}},_R={topLeft:{points:["bl","tl"],overflow:Dt},topRight:{points:["br","tr"],overflow:Dt},bottomLeft:{points:["tl","bl"],overflow:Dt},bottomRight:{points:["tr","br"],overflow:Dt},rightTop:{points:["tr","tl"],overflow:Dt},rightBottom:{points:["br","bl"],overflow:Dt},leftTop:{points:["tl","tr"],overflow:Dt},leftBottom:{points:["bl","br"],overflow:Dt}};function Bb(e,t,n){if(t)return t;if(n)return n[e]||n.other}const kR={horizontal:"bottomLeft",vertical:"rightTop","vertical-left":"rightTop","vertical-right":"leftTop"};function VR({prefixCls:e,visible:t,children:n,popup:r,popupStyle:o,popupClassName:s,popupOffset:a,disabled:l,mode:c,onVisibleChange:u}){const{getPopupContainer:d,rtl:f,subMenuOpenDelay:m,subMenuCloseDelay:p,builtinPlacements:g,triggerSubMenuAction:h,forceSubMenuRender:b,rootClassName:$,motion:y,defaultMotions:v}=i.useContext(En),[C,S]=i.useState(!1),x=f?{..._R,...g}:{...FR,...g},w=kR[c],I=Bb(c,y,v),E=i.useRef(I);c!=="inline"&&(E.current=I);const R={...E.current,leavedClassName:`${e}-hidden`,removeOnLeave:!1,motionAppear:!0},P=i.useRef();return i.useEffect(()=>(P.current=Ke(()=>{S(t)}),()=>{Ke.cancel(P.current)}),[t]),i.createElement(ki,{prefixCls:e,popupClassName:z(`${e}-popup`,{[`${e}-rtl`]:f},s,$),stretch:c==="horizontal"?"minWidth":null,getPopupContainer:d,builtinPlacements:x,popupPlacement:w,popupVisible:C,popup:r,popupStyle:o,popupAlign:a&&{offset:a},action:l?[]:[h],mouseEnterDelay:m,mouseLeaveDelay:p,onPopupVisibleChange:u,forceRender:b,popupMotion:R,fresh:!0},n)}function kc(){return kc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{d.current&&m(!1)},[u]);const g={...Bb(o,l,c)};n.length>1&&(g.motionAppear=!1);const h=g.onVisibleChanged;return g.onVisibleChanged=b=>(!d.current&&!b&&m(!0),h==null?void 0:h(b)),f?null:i.createElement(ts,{mode:o,locked:!d.current},i.createElement(un,kc({visible:p},g,{forceRender:a,removeOnLeave:!1,leavedClassName:`${s}-hidden`}),({className:b,style:$})=>i.createElement(zb,{id:e,className:b,style:$},r)))}function rs(){return rs=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{style:n,className:r,styles:o,classNames:s,title:a,eventKey:l,warnKey:c,disabled:u,internalPopupClose:d,children:f,itemIcon:m,expandIcon:p,popupClassName:g,popupOffset:h,popupStyle:b,onClick:$,onMouseEnter:y,onMouseLeave:v,onTitleClick:C,onTitleMouseEnter:S,onTitleMouseLeave:x,popupRender:w,...I}=e,E=Ib(l),{prefixCls:R,mode:P,openKeys:M,disabled:O,overflowDisabled:A,activeKey:T,selectedKeys:F,itemIcon:H,expandIcon:L,onItemClick:B,onOpenChange:D,onActive:k,popupRender:W}=i.useContext(En),{_internalRenderSubMenuItem:_}=i.useContext(Pd),{isSubPathKey:X}=i.useContext(Mb),U=So(),j=`${R}-submenu`,V=O||u,G=i.useRef(),te=i.useRef(),ee=m??H,ne=p??L,Y=M.includes(l),se=!A&&Y,ue=X(F,l),{active:q,...oe}=Tb(l,V,S,x),[Z,J]=i.useState(!1),ae=re=>{V||J(re)},we=re=>{ae(!0),y==null||y({key:l,domEvent:re})},de=re=>{ae(!1),v==null||v({key:l,domEvent:re})},ge=i.useMemo(()=>q||(P!=="inline"?Z||X([T],l):!1),[P,q,T,Z,l,X]),be=Ob(U.length),me=re=>{V||(C==null||C({key:l,domEvent:re}),P==="inline"&&D(l,!Y))},Ne=Do(re=>{$==null||$(Si(re)),B(re)}),Ae=re=>{P!=="inline"&&D(l,re)},Ee=()=>{k(l)},ze=E&&`${E}-popup`,Re=i.useMemo(()=>i.createElement(Ab,{icon:P!=="horizontal"?ne:void 0,props:{...e,isOpen:se,isSubMenu:!0}},i.createElement("i",{className:`${j}-arrow`})),[P,ne,e,se,j]);let ve=i.createElement("div",rs({role:"menuitem",style:be,className:`${j}-title`,tabIndex:V?null:-1,ref:G,title:typeof a=="string"?a:null,"data-menu-id":A&&E?null:E,"aria-expanded":se,"aria-haspopup":!0,"aria-controls":ze,"aria-disabled":V,onClick:me,onFocus:Ee},oe),a,Re);const fe=i.useRef(P);P!=="inline"&&U.length>1?fe.current="vertical":fe.current=P;const Ce=fe.current,He=i.useMemo(()=>{const re=i.createElement(ts,{classNames:s,styles:o,mode:Ce==="horizontal"?"vertical":Ce},i.createElement(zb,{id:ze,ref:te},f)),$e=w||W;return $e?$e(re,{item:e,keys:U}):re},[w,W,U,ze,f,e,Ce]);if(!A){const re=fe.current;ve=i.createElement(VR,{mode:re,prefixCls:j,visible:!d&&se&&P!=="inline",popupClassName:g,popupOffset:h,popupStyle:b,popup:He,disabled:V,onVisibleChange:Ae},ve)}let Ie=i.createElement(kn.Item,rs({ref:t,role:"none"},I,{component:"li",style:n,className:z(j,`${j}-${P}`,r,{[`${j}-open`]:se,[`${j}-active`]:ge,[`${j}-selected`]:ue,[`${j}-disabled`]:V}),onMouseEnter:we,onMouseLeave:de}),ve,!A&&i.createElement(WR,{id:ze,open:se,keyPath:U},f));return _&&(Ie=_(Ie,e,{selected:ue,active:ge,open:se,disabled:V})),i.createElement(ts,{classNames:s,styles:o,onItemClick:Ne,mode:P==="horizontal"?"vertical":P,itemIcon:ee,expandIcon:ne},Ie)}),Ki=i.forwardRef((e,t)=>{const{eventKey:n,children:r}=e,o=So(n),s=Nd(r,o),a=Ui();i.useEffect(()=>{if(a)return a.registerPath(n,o),()=>{a.unregisterPath(n,o)}},[o]);let l;return a?l=s:l=i.createElement(jR,rs({ref:t},e),s),i.createElement(Rb.Provider,{value:o},l)});function Td({className:e,style:t}){const{prefixCls:n}=i.useContext(En);return Ui()?null:i.createElement("li",{role:"separator",className:z(`${n}-item-divider`,e),style:t})}function xi(){return xi=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{className:n,title:r,eventKey:o,children:s,...a}=e,{prefixCls:l,classNames:c,styles:u}=i.useContext(En),d=`${l}-item-group`;return i.createElement("li",xi({ref:t,role:"presentation"},a,{onClick:f=>f.stopPropagation(),className:z(d,n)}),i.createElement("div",{role:"presentation",className:z(`${d}-title`,c==null?void 0:c.listTitle),style:u==null?void 0:u.listTitle,title:typeof r=="string"?r:void 0},r),i.createElement("ul",{role:"group",className:z(`${d}-list`,c==null?void 0:c.list),style:u==null?void 0:u.list},s))}),Od=i.forwardRef((e,t)=>{const{eventKey:n,children:r}=e,o=So(n),s=Nd(r,o);return Ui()?s:i.createElement(qR,xi({ref:t},yt(e,["warnKey"])),s)});function ro(){return ro=Object.assign?Object.assign.bind():function(e){for(var t=1;t{if(l&&typeof l=="object"){const{label:u,children:d,key:f,type:m,extra:p,...g}=l,h=f??`tmp-${c}`;return d||m==="group"?m==="group"?i.createElement(o,ro({key:h},g,{title:u}),Vc(d,t,n)):i.createElement(s,ro({key:h},g,{title:u}),Vc(d,t,n)):m==="divider"?i.createElement(a,ro({key:h},g)):i.createElement(r,ro({key:h},g,{extra:p}),u,(!!p||p===0)&&i.createElement("span",{className:`${n}-item-extra`},p))}return null}).filter(l=>l)}function mp(e,t,n,r,o){let s=e;const a={divider:Td,item:$s,group:Od,submenu:Ki,...r};return t&&(s=Vc(t,a,o)),Nd(s,n)}function Wc(){return Wc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{var mt;const{prefixCls:n="rc-menu",rootClassName:r,style:o,className:s,styles:a,classNames:l,tabIndex:c=0,items:u,children:d,direction:f,id:m,mode:p="vertical",inlineCollapsed:g,disabled:h,disabledOverflow:b,subMenuOpenDelay:$=.1,subMenuCloseDelay:y=.1,forceSubMenuRender:v,defaultOpenKeys:C,openKeys:S,activeKey:x,defaultActiveFirst:w,selectable:I=!0,multiple:E=!1,defaultSelectedKeys:R,selectedKeys:P,onSelect:M,onDeselect:O,inlineIndent:A=24,motion:T,defaultMotions:F,triggerSubMenuAction:H="hover",builtinPlacements:L,itemIcon:B,expandIcon:D,overflowedIndicator:k="...",overflowedIndicatorPopupClassName:W,getPopupContainer:_,onClick:X,onOpenChange:U,onKeyDown:j,openAnimation:V,openTransitionName:G,_internalRenderMenuItem:te,_internalRenderSubMenuItem:ee,_internalComponents:ne,popupRender:Y,...se}=e,[ue,q]=i.useMemo(()=>[mp(d,u,hr,ne,n),mp(d,u,hr,{},n)],[d,u,ne]),[oe,Z]=i.useState(!1),J=i.useRef(),ae=Xn(m?`rc-menu-uuid-${m}`:"rc-menu-uuid"),we=f==="rtl",[de,ge]=bt(C,S),be=de||hr,me=(Ge,Oe=!1)=>{function _e(){ge(Ge),U==null||U(Ge)}Oe?Vn.flushSync(_e):_e()},[Ne,Ae]=i.useState(be),Ee=i.useRef(!1),[ze,Re]=i.useMemo(()=>(p==="inline"||p==="vertical")&&g?["vertical",g]:[p,!1],[p,g]),ve=ze==="inline",[fe,Ce]=i.useState(ze),[He,Ie]=i.useState(Re);i.useEffect(()=>{Ce(ze),Ie(Re),Ee.current&&(ve?ge(Ne):me(hr))},[ze,Re]);const[re,$e]=i.useState(0),ke=re>=ue.length-1||fe!=="horizontal"||b;i.useEffect(()=>{ve&&Ae(be)},[be]),i.useEffect(()=>(Ee.current=!0,()=>{Ee.current=!1}),[]);const{registerPath:De,unregisterPath:ot,refreshOverflowKeys:qe,isSubPathKey:ft,getKeyPath:Qe,getKeys:st,getSubPathKeys:lt}=zR(),Se=i.useMemo(()=>({registerPath:De,unregisterPath:ot}),[De,ot]),Be=i.useMemo(()=>({isSubPathKey:ft}),[ft]);i.useEffect(()=>{qe(ke?hr:ue.slice(re+1).map(Ge=>Ge.key))},[re,ke]);const[Pe,ye]=bt(x||w&&((mt=ue[0])==null?void 0:mt.key),x),ce=Do(Ge=>{ye(Ge)}),Q=Do(()=>{ye(void 0)});i.useImperativeHandle(t,()=>({list:J.current,focus:Ge=>{var Gt,Xt;const Oe=st(),{elements:_e,key2element:Xe,element2key:it}=Ci(Oe,ae),ht=Rd(J.current,_e);let It;Pe&&Oe.includes(Pe)?It=Pe:It=ht[0]?it.get(ht[0]):(Gt=ue.find(kt=>!kt.props.disabled))==null?void 0:Gt.key;const $t=Xe.get(It);It&&$t&&((Xt=$t==null?void 0:$t.focus)==null||Xt.call($t,Ge))},findItem:({key:Ge})=>{const Oe=st(),{key2element:_e}=Ci(Oe,ae);return _e.get(Ge)||null}}));const[pe,ie]=bt(R||[],P),he=i.useMemo(()=>Array.isArray(pe)?pe:pe==null?hr:[pe],[pe]),xe=Ge=>{if(I){const{key:Oe}=Ge,_e=he.includes(Oe);let Xe;E?_e?Xe=he.filter(ht=>ht!==Oe):Xe=[...he,Oe]:Xe=[Oe],ie(Xe);const it={...Ge,selectedKeys:Xe};_e?O==null||O(it):M==null||M(it)}!E&&be.length&&fe!=="inline"&&me(hr)},Te=Do(Ge=>{X==null||X(Si(Ge)),xe(Ge)}),Fe=Do((Ge,Oe)=>{let _e=be.filter(Xe=>Xe!==Ge);if(Oe)_e.push(Ge);else if(fe!=="inline"){const Xe=lt(Ge);_e=_e.filter(it=>!Xe.has(it))}ar(be,_e,!0)||me(_e,!0)}),tt=TR(fe,Pe,we,ae,J,st,Qe,ye,(Ge,Oe)=>{const _e=Oe??!be.includes(Ge);Fe(Ge,_e)},j);i.useEffect(()=>{Z(!0)},[]);const Ze=i.useMemo(()=>({_internalRenderMenuItem:te,_internalRenderSubMenuItem:ee}),[te,ee]),Mt=fe!=="horizontal"||b?ue:ue.map((Ge,Oe)=>i.createElement(ts,{key:Ge.key,overflowDisabled:Oe>re,classNames:l,styles:a},Ge)),qt=i.createElement(kn,Wc({id:m,ref:J,prefixCls:`${n}-overflow`,component:"ul",itemComponent:$s,className:z(n,`${n}-root`,`${n}-${fe}`,s,{[`${n}-inline-collapsed`]:He,[`${n}-rtl`]:we},r),dir:f,style:o,role:"menu",tabIndex:c,data:Mt,renderRawItem:Ge=>Ge,renderRawRest:Ge=>{const Oe=Ge.length,_e=Oe?ue.slice(-Oe):null;return i.createElement(Ki,{eventKey:Fc,title:k,disabled:ke,internalPopupClose:Oe===0,popupClassName:W},_e)},maxCount:fe!=="horizontal"||b?kn.INVALIDATE:kn.RESPONSIVE,ssr:"full","data-menu-list":!0,onVisibleChange:Ge=>{$e(Ge)},onKeyDown:tt},se));return i.createElement(Pd.Provider,{value:Ze},i.createElement(wb.Provider,{value:ae},i.createElement(ts,{prefixCls:n,rootClassName:r,classNames:l,styles:a,mode:fe,openKeys:be,rtl:we,disabled:h,motion:oe?T:null,defaultMotions:oe?F:null,activeKey:Pe,onActive:ce,onInactive:Q,selectedKeys:he,inlineIndent:A,subMenuOpenDelay:$,subMenuCloseDelay:y,forceSubMenuRender:v,builtinPlacements:L,triggerSubMenuAction:H,getPopupContainer:_,itemIcon:B,expandIcon:D,onItemClick:Te,onOpenChange:Fe,popupRender:Y},i.createElement(Mb.Provider,{value:Be},qt),i.createElement("div",{style:{display:"none"},"aria-hidden":!0},i.createElement(Pb.Provider,{value:Se},q)))))}),xo=GR;xo.Item=$s;xo.SubMenu=Ki;xo.ItemGroup=Od;xo.Divider=Td;const Lb=i.createContext({});var XR={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M176 511a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0z"}}]},name:"ellipsis",theme:"outlined"};function jc(){return jc=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,jc({},e,{ref:t,icon:XR})),Ad=i.forwardRef(UR),wi=i.createContext({prefixCls:"",firstLevel:!0,inlineCollapsed:!1,styles:null,classNames:null}),Hb=e=>{const{prefixCls:t,className:n,dashed:r,...o}=e,{getPrefixCls:s}=i.useContext(je),a=s("menu",t),l=z({[`${a}-item-divider-dashed`]:!!r},n);return i.createElement(Td,{className:l,...o})},Db=e=>{var w,I;const{className:t,children:n,icon:r,title:o,danger:s,extra:a}=e,{prefixCls:l,firstLevel:c,direction:u,disableMenuItemTitleTooltip:d,tooltip:f,inlineCollapsed:m,styles:p,classNames:g}=i.useContext(wi),h=E=>{var M,O;const R=n==null?void 0:n[0],P=i.createElement("span",{className:z(`${l}-title-content`,c?g==null?void 0:g.itemContent:(M=g==null?void 0:g.subMenu)==null?void 0:M.itemContent,{[`${l}-title-content-with-extra`]:!!a||a===0}),style:c?p==null?void 0:p.itemContent:(O=p==null?void 0:p.subMenu)==null?void 0:O.itemContent},n);return(!r||i.isValidElement(n)&&n.type==="span")&&n&&E&&c&&typeof R=="string"?i.createElement("div",{className:`${l}-inline-collapsed-noicon`},R.charAt(0)):P},{siderCollapsed:b}=i.useContext(Lb);let $=o;typeof o>"u"?$=c?n:"":o===!1&&($="");const y=f===!1?void 0:f,v=y&&y.title!==void 0?y.title:$,C={...y??null,title:v};!b&&!m&&(C.title=null,C.open=!1);const S=Vt(n).length;let x=i.createElement($s,{...yt(e,["title","icon","danger"]),className:z(c?g==null?void 0:g.item:(w=g==null?void 0:g.subMenu)==null?void 0:w.item,{[`${l}-item-danger`]:s,[`${l}-item-only-child`]:(r?S+1:S)===1},t),style:{...c?p==null?void 0:p.item:(I=p==null?void 0:p.subMenu)==null?void 0:I.item,...e.style},title:typeof o=="string"?o:void 0},Wt(r,E=>{var R,P;return{className:z(`${l}-item-icon`,c?g==null?void 0:g.itemIcon:(R=g==null?void 0:g.subMenu)==null?void 0:R.itemIcon,E.className),style:{...c?p==null?void 0:p.itemIcon:(P=p==null?void 0:p.subMenu)==null?void 0:P.itemIcon,...E.style}}}),h(m));if(!d&&f!==!1){const E=y&&y.placement?y.placement:u==="rtl"?"left":"right",R=`${l}-inline-collapsed-tooltip`,P=O=>({...O,root:z(R,O==null?void 0:O.root)}),M=y&&typeof y.classNames=="function"?O=>{const A=y.classNames(O);return P(A)}:P(y==null?void 0:y.classNames);x=i.createElement(Kn,{...C,placement:E,classNames:M},x)}return x},Ei=i.createContext(null),KR=i.forwardRef((e,t)=>{const{children:n,...r}=e,o=i.useContext(Ei),s=i.useMemo(()=>({...o,...r}),[o,r.prefixCls,r.mode,r.selectable,r.rootClassName]),a=Ny(n),l=qn(t,a?Gn(n):null);return i.createElement(Ei.Provider,{value:s},i.createElement(ur,{space:!0},a?i.cloneElement(n,{ref:l}):n))}),YR=e=>{const{componentCls:t,motionDurationSlow:n,horizontalLineHeight:r,colorSplit:o,lineWidth:s,lineType:a,itemPaddingInline:l}=e;return{[`${t}-horizontal`]:{lineHeight:r,border:0,borderBottom:`${K(s)} ${a} ${o}`,boxShadow:"none","&::after":{display:"block",clear:"both",height:0,content:'"\\20"'},[`${t}-item, ${t}-submenu`]:{position:"relative",display:"inline-block",verticalAlign:"bottom",paddingInline:l},[`> ${t}-item:hover, + > ${t}-item-active, + > ${t}-submenu ${t}-submenu-title:hover`]:{backgroundColor:"transparent"},[`${t}-item, ${t}-submenu-title`]:{transition:["border-color","background-color"].map(c=>`${c} ${n}`).join(",")},[`${t}-submenu-arrow`]:{display:"none"}}}},QR=({componentCls:e,menuArrowOffset:t,calc:n})=>({[`${e}-rtl`]:{direction:"rtl"},[`${e}-submenu-rtl`]:{transformOrigin:"100% 0"},[`${e}-rtl${e}-vertical, + ${e}-submenu-rtl ${e}-vertical`]:{[`${e}-submenu-arrow`]:{"&::before":{transform:`rotate(-45deg) translateY(${K(n(t).mul(-1).equal())})`},"&::after":{transform:`rotate(45deg) translateY(${K(t)})`}}}}),pp=e=>ho(e),gp=(e,t)=>{const{componentCls:n,itemColor:r,itemSelectedColor:o,subMenuItemSelectedColor:s,groupTitleColor:a,itemBg:l,subMenuItemBg:c,itemSelectedBg:u,activeBarHeight:d,activeBarWidth:f,activeBarBorderWidth:m,motionDurationSlow:p,motionEaseInOut:g,motionEaseOut:h,itemPaddingInline:b,motionDurationMid:$,itemHoverColor:y,lineType:v,colorSplit:C,itemDisabledColor:S,dangerItemColor:x,dangerItemHoverColor:w,dangerItemSelectedColor:I,dangerItemActiveBg:E,dangerItemSelectedBg:R,popupBg:P,itemHoverBg:M,itemActiveBg:O,menuSubMenuBg:A,horizontalItemSelectedColor:T,horizontalItemSelectedBg:F,horizontalItemBorderRadius:H,horizontalItemHoverBg:L}=e;return{[`${n}-${t}, ${n}-${t} > ${n}`]:{color:r,background:l,[`&${n}-root:focus-visible`]:{...pp(e)},[`${n}-item`]:{"&-group-title, &-extra":{color:a}},[`${n}-submenu-selected > ${n}-submenu-title`]:{color:s},[`${n}-item, ${n}-submenu-title`]:{color:r,[`&:not(${n}-item-disabled):focus-visible`]:{...pp(e)}},[`${n}-item-disabled, ${n}-submenu-disabled`]:{color:`${S} !important`},[`${n}-item:not(${n}-item-selected):not(${n}-submenu-selected)`]:{[`&:hover, > ${n}-submenu-title:hover`]:{color:y}},[`&:not(${n}-horizontal)`]:{[`${n}-item:not(${n}-item-selected)`]:{"&:hover":{backgroundColor:M},"&:active":{backgroundColor:O}},[`${n}-submenu-title`]:{"&:hover":{backgroundColor:M},"&:active":{backgroundColor:O}}},[`${n}-item-danger`]:{color:x,[`&${n}-item:hover`]:{[`&:not(${n}-item-selected):not(${n}-submenu-selected)`]:{color:w}},[`&${n}-item:active`]:{background:E}},[`${n}-item a`]:{"&, &:hover":{color:"inherit"}},[`${n}-item-selected`]:{color:o,[`&${n}-item-danger`]:{color:I},"a, a:hover":{color:"inherit"}},[`& ${n}-item-selected`]:{backgroundColor:u,[`&${n}-item-danger`]:{backgroundColor:R}},[`&${n}-submenu > ${n}`]:{backgroundColor:A},[`&${n}-popup > ${n}`]:{backgroundColor:P},[`&${n}-submenu-popup > ${n}`]:{backgroundColor:P},[`&${n}-horizontal`]:{...t==="dark"?{borderBottom:0}:{},[`> ${n}-item, > ${n}-submenu`]:{top:m,marginTop:e.calc(m).mul(-1).equal(),marginBottom:0,borderRadius:H,"&::after":{position:"absolute",insetInline:b,bottom:0,borderBottom:`${K(d)} solid transparent`,transition:`border-color ${p} ${g}`,content:'""'},"&:hover, &-active, &-open":{background:L,"&::after":{borderBottomWidth:d,borderBottomColor:T}},"&-selected":{color:T,backgroundColor:F,"&:hover":{backgroundColor:F},"&::after":{borderBottomWidth:d,borderBottomColor:T}}}},[`&${n}-root`]:{[`&${n}-inline, &${n}-vertical`]:{borderInlineEnd:`${K(m)} ${v} ${C}`}},[`&${n}-inline`]:{[`${n}-sub${n}-inline`]:{background:c},[`${n}-item`]:{position:"relative","&::after":{position:"absolute",insetBlock:0,insetInlineEnd:0,borderInlineEnd:`${K(f)} solid ${o}`,transform:"scaleY(0.0001)",opacity:0,transition:["transform","opacity"].map(B=>`${B} ${$} ${h}`).join(","),content:'""'},[`&${n}-item-danger`]:{"&::after":{borderInlineEndColor:I}}},[`${n}-selected, ${n}-item-selected`]:{"&::after":{transform:"scaleY(1)",opacity:1,transition:["transform","opacity"].map(B=>`${B} ${$} ${g}`).join(",")}}}}}},hp=e=>{const{componentCls:t,itemHeight:n,itemMarginInline:r,padding:o,menuArrowSize:s,marginXS:a,itemMarginBlock:l,itemWidth:c,itemPaddingInline:u}=e,d=e.calc(s).add(o).add(a).equal();return{[`${t}-item`]:{position:"relative",overflow:"hidden"},[`${t}-item, ${t}-submenu-title`]:{height:n,lineHeight:K(n),paddingInline:u,overflow:"hidden",textOverflow:"ellipsis",marginInline:r,marginBlock:l,width:c},[`> ${t}-item, + > ${t}-submenu > ${t}-submenu-title`]:{height:n,lineHeight:K(n)},[`${t}-item-group-list ${t}-submenu-title, + ${t}-submenu-title`]:{paddingInlineEnd:d}}},ZR=e=>{const{componentCls:t,iconCls:n,itemHeight:r,colorTextLightSolid:o,dropdownWidth:s,controlHeightLG:a,motionEaseOut:l,paddingXL:c,itemMarginInline:u,fontSizeLG:d,motionDurationFast:f,motionDurationSlow:m,paddingXS:p,boxShadowSecondary:g,collapsedWidth:h,collapsedIconSize:b}=e,$={height:r,lineHeight:K(r),listStylePosition:"inside",listStyleType:"disc"};return[{[t]:{"&-inline, &-vertical":{[`&${t}-root`]:{boxShadow:"none"},...hp(e)}},[`${t}-submenu-popup`]:{[`${t}-vertical`]:{...hp(e),boxShadow:g}}},{[`${t}-submenu-popup ${t}-vertical${t}-sub`]:{minWidth:s,maxHeight:`calc(100vh - ${K(e.calc(a).mul(2.5).equal())})`,padding:"0",overflow:"hidden",borderInlineEnd:0,"&:not([class*='-active'])":{overflowX:"hidden",overflowY:"auto"}}},{[`${t}-inline`]:{width:"100%",[`&${t}-root`]:{[`${t}-item, ${t}-submenu-title`]:{display:"flex",alignItems:"center",transition:[`border-color ${m}`,`background-color ${m}`,`padding ${f} ${l}`].join(","),[`> ${t}-title-content`]:{flex:"auto",minWidth:0,overflow:"hidden",textOverflow:"ellipsis"},"> *":{flex:"none"}}},[`${t}-sub${t}-inline`]:{padding:0,border:0,borderRadius:0,boxShadow:"none",[`& > ${t}-submenu > ${t}-submenu-title`]:$,[`& ${t}-item-group-title`]:{paddingInlineStart:c}},[`${t}-item`]:$}},{[`${t}-inline-collapsed`]:{width:h,[`&${t}-root`]:{[`${t}-item, ${t}-submenu ${t}-submenu-title`]:{[`> ${t}-inline-collapsed-noicon`]:{fontSize:d,textAlign:"center"}}},[`> ${t}-item, + > ${t}-item-group > ${t}-item-group-list > ${t}-item, + > ${t}-item-group > ${t}-item-group-list > ${t}-submenu > ${t}-submenu-title, + > ${t}-submenu > ${t}-submenu-title`]:{insetInlineStart:0,paddingInline:`calc(50% - ${K(e.calc(b).div(2).equal())} - ${K(u)})`,textOverflow:"clip",[` + ${t}-submenu-arrow, + ${t}-submenu-expand-icon + `]:{opacity:0},[`${t}-item-icon, ${n}`]:{margin:0,fontSize:b,lineHeight:K(r),"+ span":{display:"inline-block",opacity:0}}},[`${t}-item-icon, ${n}`]:{display:"inline-block"},"&-tooltip":{pointerEvents:"none",[`${t}-item-icon, ${n}`]:{display:"none"},"a, a:hover":{color:o}},[`${t}-item-group-title`]:{...Wn,paddingInline:p}}}]},bp=e=>{const{componentCls:t,motionDurationSlow:n,motionDurationMid:r,motionEaseInOut:o,motionEaseOut:s,iconCls:a,iconSize:l,iconMarginInlineEnd:c}=e;return{[`${t}-item, ${t}-submenu-title`]:{position:"relative",display:"block",margin:0,whiteSpace:"nowrap",cursor:"pointer",transition:[`border-color ${n}`,`background-color ${n}`,`padding calc(${n} + 0.1s) ${o}`].join(","),[`${t}-item-icon, ${a}`]:{minWidth:l,fontSize:l,transition:[`font-size ${r} ${s}`,`margin ${n} ${o}`,`color ${n}`].join(","),"+ span":{marginInlineStart:c,opacity:1,transition:[`opacity ${n} ${o}`,`margin ${n}`,`color ${n}`].join(",")}},[`${t}-item-icon`]:{...go()},[`&${t}-item-only-child`]:{[`> ${a}, > ${t}-item-icon`]:{marginInlineEnd:0}}},[`${t}-item-disabled, ${t}-submenu-disabled`]:{background:"none !important",cursor:"not-allowed","&::after":{borderColor:"transparent !important"},a:{color:"inherit !important",cursor:"not-allowed",pointerEvents:"none"},[`> ${t}-submenu-title`]:{color:"inherit !important",cursor:"not-allowed"}}}},vp=e=>{const{componentCls:t,motionDurationSlow:n,motionEaseInOut:r,borderRadius:o,menuArrowSize:s,menuArrowOffset:a}=e;return{[`${t}-submenu`]:{"&-expand-icon, &-arrow":{position:"absolute",top:"50%",insetInlineEnd:e.margin,width:s,color:"currentcolor",transform:"translateY(-50%)",transition:["transform","opacity"].map(l=>`${l} ${n}`).join(",")},"&-arrow":{"&::before, &::after":{position:"absolute",width:e.calc(s).mul(.6).equal(),height:e.calc(s).mul(.15).equal(),backgroundColor:"currentcolor",borderRadius:o,transition:["background-color","transform","top","color"].map(l=>`${l} ${n} ${r}`).join(","),content:'""'},"&::before":{transform:`rotate(45deg) translateY(${K(e.calc(a).mul(-1).equal())})`},"&::after":{transform:`rotate(-45deg) translateY(${K(a)})`}}}}},JR=e=>{const{antCls:t,componentCls:n,fontSize:r,motionDurationSlow:o,motionDurationMid:s,motionEaseInOut:a,paddingXS:l,padding:c,colorSplit:u,lineWidth:d,zIndexPopup:f,borderRadiusLG:m,subMenuItemBorderRadius:p,menuArrowSize:g,menuArrowOffset:h,lineType:b,groupTitleLineHeight:$,groupTitleFontSize:y}=e;return[{"":{[n]:{...li(),"&-hidden":{display:"none"}}},[`${n}-submenu-hidden`]:{display:"none"}},{[n]:{...Ct(e),...li(),marginBottom:0,paddingInlineStart:0,fontSize:r,lineHeight:0,listStyle:"none",outline:"none",transition:`width ${o} cubic-bezier(0.2, 0, 0, 1) 0s`,"ul, ol":{margin:0,padding:0,listStyle:"none"},"&-overflow":{display:"flex",[`${n}-item`]:{flex:"none"}},[`${n}-item, ${n}-submenu, ${n}-submenu-title`]:{borderRadius:e.itemBorderRadius},[`${n}-item-group-title`]:{padding:`${K(l)} ${K(c)}`,fontSize:y,lineHeight:$,transition:`all ${o}`},[`&-horizontal ${n}-submenu`]:{transition:["border-color","background-color"].map(v=>`${v} ${o} ${a}`).join(",")},[`${n}-submenu, ${n}-submenu-inline`]:{transition:[`border-color ${o}`,`background-color ${o}`,`padding ${s}`].map(v=>`${v} ${a}`).join(",")},[`${n}-submenu ${n}-sub`]:{cursor:"initial",transition:["background-color","padding"].map(v=>`${v} ${o} ${a}`).join(",")},[`${n}-title-content`]:{transition:`color ${o}`,"&-with-extra":{display:"inline-flex",alignItems:"center",width:"100%"},[`> ${t}-typography-ellipsis-single-line`]:{display:"inline",verticalAlign:"unset"},[`${n}-item-extra`]:{marginInlineStart:"auto",paddingInlineStart:e.padding}},[`${n}-item a`]:{"&::before":{position:"absolute",inset:0,backgroundColor:"transparent",content:'""'}},[`${n}-item-divider`]:{overflow:"hidden",lineHeight:0,borderColor:u,borderStyle:b,borderWidth:0,borderTopWidth:d,marginBlock:d,padding:0,"&-dashed":{borderStyle:"dashed"}},...bp(e),[`${n}-item-group`]:{[`${n}-item-group-list`]:{margin:0,padding:0,[`${n}-item, ${n}-submenu-title`]:{paddingInline:`${K(e.calc(r).mul(2).equal())} ${K(c)}`}}},"&-submenu":{"&-popup":{position:"absolute",zIndex:f,borderRadius:m,boxShadow:"none",transformOrigin:"0 0",[`&${n}-submenu`]:{background:"transparent"},"&::before":{position:"absolute",inset:0,zIndex:-1,width:"100%",height:"100%",opacity:0,content:'""'},[`> ${n}`]:{borderRadius:m,...bp(e),...vp(e),[`${n}-item, ${n}-submenu > ${n}-submenu-title`]:{borderRadius:p},[`${n}-submenu-title::after`]:{transition:`transform ${o} ${a}`}}},"\n &-placement-leftTop,\n &-placement-bottomRight,\n ":{transformOrigin:"100% 0"},"\n &-placement-leftBottom,\n &-placement-topRight,\n ":{transformOrigin:"100% 100%"},"\n &-placement-rightBottom,\n &-placement-topLeft,\n ":{transformOrigin:"0 100%"},"\n &-placement-bottomLeft,\n &-placement-rightTop,\n ":{transformOrigin:"0 0"},"\n &-placement-leftTop,\n &-placement-leftBottom\n ":{paddingInlineEnd:e.paddingXS},"\n &-placement-rightTop,\n &-placement-rightBottom\n ":{paddingInlineStart:e.paddingXS},"\n &-placement-topRight,\n &-placement-topLeft\n ":{paddingBottom:e.paddingXS},"\n &-placement-bottomRight,\n &-placement-bottomLeft\n ":{paddingTop:e.paddingXS}},...vp(e),[`&-inline-collapsed ${n}-submenu-arrow, + &-inline ${n}-submenu-arrow`]:{"&::before":{transform:`rotate(-45deg) translateX(${K(h)})`},"&::after":{transform:`rotate(45deg) translateX(${K(e.calc(h).mul(-1).equal())})`}},[`${n}-submenu-open${n}-submenu-inline > ${n}-submenu-title > ${n}-submenu-arrow`]:{transform:`translateY(${K(e.calc(g).mul(.2).mul(-1).equal())})`,"&::after":{transform:`rotate(-45deg) translateX(${K(e.calc(h).mul(-1).equal())})`},"&::before":{transform:`rotate(45deg) translateX(${K(h)})`}}}},{[`${t}-layout-header`]:{[n]:{lineHeight:"inherit"}}}]},eM=e=>{const{colorPrimary:t,colorError:n,colorTextDisabled:r,colorErrorBg:o,colorText:s,colorTextDescription:a,colorBgContainer:l,colorFillAlter:c,colorFillContent:u,lineWidth:d,lineWidthBold:f,controlItemBgActive:m,colorBgTextHover:p,controlHeightLG:g,lineHeight:h,colorBgElevated:b,marginXXS:$,padding:y,fontSize:v,controlHeightSM:C,fontSizeLG:S,colorTextLightSolid:x,colorErrorHover:w}=e,I=e.activeBarWidth??0,E=e.activeBarBorderWidth??d,R=e.itemMarginInline??e.marginXXS,P=new gt(x).setA(.65).toRgbString();return{dropdownWidth:160,zIndexPopup:e.zIndexPopupBase+50,radiusItem:e.borderRadiusLG,itemBorderRadius:e.borderRadiusLG,radiusSubMenuItem:e.borderRadiusSM,subMenuItemBorderRadius:e.borderRadiusSM,colorItemText:s,itemColor:s,colorItemTextHover:s,itemHoverColor:s,colorItemTextHoverHorizontal:t,horizontalItemHoverColor:t,colorGroupTitle:a,groupTitleColor:a,colorItemTextSelected:t,itemSelectedColor:t,subMenuItemSelectedColor:t,colorItemTextSelectedHorizontal:t,horizontalItemSelectedColor:t,colorItemBg:l,itemBg:l,colorItemBgHover:p,itemHoverBg:p,colorItemBgActive:u,itemActiveBg:m,colorSubItemBg:c,subMenuItemBg:c,colorItemBgSelected:m,itemSelectedBg:m,colorItemBgSelectedHorizontal:"transparent",horizontalItemSelectedBg:"transparent",colorActiveBarWidth:0,activeBarWidth:I,colorActiveBarHeight:f,activeBarHeight:f,colorActiveBarBorderSize:d,activeBarBorderWidth:E,colorItemTextDisabled:r,itemDisabledColor:r,colorDangerItemText:n,dangerItemColor:n,colorDangerItemTextHover:n,dangerItemHoverColor:n,colorDangerItemTextSelected:n,dangerItemSelectedColor:n,colorDangerItemBgActive:o,dangerItemActiveBg:o,colorDangerItemBgSelected:o,dangerItemSelectedBg:o,itemMarginInline:R,horizontalItemBorderRadius:0,horizontalItemHoverBg:"transparent",itemHeight:g,groupTitleLineHeight:h,collapsedWidth:g*2,popupBg:b,itemMarginBlock:$,itemPaddingInline:y,horizontalLineHeight:`${g*1.15}px`,iconSize:v,iconMarginInlineEnd:C-v,collapsedIconSize:S,groupTitleFontSize:v,darkItemDisabledColor:new gt(x).setA(.25).toRgbString(),darkItemColor:P,darkDangerItemColor:n,darkItemBg:"#001529",darkPopupBg:"#001529",darkSubMenuItemBg:"#000c17",darkItemSelectedColor:x,darkItemSelectedBg:t,darkDangerItemSelectedBg:n,darkItemHoverBg:"transparent",darkGroupTitleColor:P,darkItemHoverColor:x,darkDangerItemHoverColor:w,darkDangerItemSelectedColor:x,darkDangerItemActiveBg:n,itemWidth:I?`calc(100% + ${E}px)`:`calc(100% - ${R*2}px)`}},tM=(e,t=e,n=!0)=>at("Menu",o=>{const{colorBgElevated:s,controlHeightLG:a,fontSize:l,darkItemColor:c,darkDangerItemColor:u,darkItemBg:d,darkSubMenuItemBg:f,darkItemSelectedColor:m,darkItemSelectedBg:p,darkDangerItemSelectedBg:g,darkItemHoverBg:h,darkGroupTitleColor:b,darkItemHoverColor:$,darkItemDisabledColor:y,darkDangerItemHoverColor:v,darkDangerItemSelectedColor:C,darkDangerItemActiveBg:S,popupBg:x,darkPopupBg:w}=o,I=o.calc(l).div(7).mul(5).equal(),E=rt(o,{menuArrowSize:I,menuHorizontalHeight:o.calc(a).mul(1.15).equal(),menuArrowOffset:o.calc(I).mul(.25).equal(),menuSubMenuBg:s,calc:o.calc,popupBg:x}),R=rt(E,{itemColor:c,itemHoverColor:$,groupTitleColor:b,itemSelectedColor:m,subMenuItemSelectedColor:m,itemBg:d,popupBg:w,subMenuItemBg:f,itemActiveBg:"transparent",itemSelectedBg:p,activeBarHeight:0,activeBarBorderWidth:0,itemHoverBg:h,itemDisabledColor:y,dangerItemColor:u,dangerItemHoverColor:v,dangerItemSelectedColor:C,dangerItemActiveBg:S,dangerItemSelectedBg:g,menuSubMenuBg:f,horizontalItemSelectedColor:m,horizontalItemSelectedBg:p});return[JR(E),YR(E),ZR(E),gp(E,"light"),gp(R,"dark"),QR(E),u0(E),cr(E,"slide-up"),cr(E,"slide-down"),ds(E,"zoom-big")]},eM,{deprecatedTokens:[["colorGroupTitle","groupTitleColor"],["radiusItem","itemBorderRadius"],["radiusSubMenuItem","subMenuItemBorderRadius"],["colorItemText","itemColor"],["colorItemTextHover","itemHoverColor"],["colorItemTextHoverHorizontal","horizontalItemHoverColor"],["colorItemTextSelected","itemSelectedColor"],["colorItemTextSelectedHorizontal","horizontalItemSelectedColor"],["colorItemTextDisabled","itemDisabledColor"],["colorDangerItemText","dangerItemColor"],["colorDangerItemTextHover","dangerItemHoverColor"],["colorDangerItemTextSelected","dangerItemSelectedColor"],["colorDangerItemBgActive","dangerItemActiveBg"],["colorDangerItemBgSelected","dangerItemSelectedBg"],["colorItemBg","itemBg"],["colorItemBgHover","itemHoverBg"],["colorSubItemBg","subMenuItemBg"],["colorItemBgActive","itemActiveBg"],["colorItemBgSelectedHorizontal","horizontalItemSelectedBg"],["colorActiveBarWidth","activeBarWidth"],["colorActiveBarHeight","activeBarHeight"],["colorActiveBarBorderSize","activeBarBorderWidth"],["colorItemBgSelected","itemSelectedBg"]],injectStyle:n,unitless:{groupTitleLineHeight:!0}})(e,t),Fb=e=>{var h,b,$,y,v,C;const{popupClassName:t,icon:n,title:r,theme:o}=e,s=i.useContext(wi),{prefixCls:a,inlineCollapsed:l,theme:c,classNames:u,styles:d}=s,f=So();let m;if(!n)m=l&&!f.length&&r&&typeof r=="string"?i.createElement("div",{className:`${a}-inline-collapsed-noicon`},r.charAt(0)):i.createElement("span",{className:`${a}-title-content`},r);else{const S=i.isValidElement(r)&&r.type==="span";m=i.createElement(i.Fragment,null,Wt(n,x=>({className:z(x.className,`${a}-item-icon`,u==null?void 0:u.itemIcon),style:{...x.style,...d==null?void 0:d.itemIcon}})),S?r:i.createElement("span",{className:`${a}-title-content`},r))}const p=i.useMemo(()=>({...s,firstLevel:!1}),[s]),[g]=ls("Menu");return i.createElement(wi.Provider,{value:p},i.createElement(Ki,{...yt(e,["icon"]),title:m,classNames:{list:(h=u==null?void 0:u.subMenu)==null?void 0:h.list,listTitle:(b=u==null?void 0:u.subMenu)==null?void 0:b.itemTitle},styles:{list:($=d==null?void 0:d.subMenu)==null?void 0:$.list,listTitle:(y=d==null?void 0:d.subMenu)==null?void 0:y.itemTitle},popupClassName:z(a,t,(v=u==null?void 0:u.popup)==null?void 0:v.root,`${a}-${o||c}`),popupStyle:{zIndex:g,...e.popupStyle,...(C=d==null?void 0:d.popup)==null?void 0:C.root}}))};function Wa(e){return e===null||e===!1}const nM={item:Db,submenu:Fb,divider:Hb},rM=i.forwardRef((e,t)=>{var ee;const n=i.useContext(Ei),r=n||{},{prefixCls:o,className:s,style:a,theme:l="light",expandIcon:c,_internalDisableMenuItemTitleTooltip:u,tooltip:d,inlineCollapsed:f,siderCollapsed:m,rootClassName:p,mode:g,selectable:h,onClick:b,overflowedIndicatorPopupClassName:$,classNames:y,styles:v,...C}=e,{menu:S}=i.useContext(je),{getPrefixCls:x,getPopupContainer:w,direction:I,className:E,style:R,classNames:P,styles:M}=dt("menu"),O=x(),A=yt(C,["collapsedWidth"]);(ee=r.validator)==null||ee.call(r,{mode:g});const T=We((...ne)=>{var Y;b==null||b(...ne),(Y=r.onClick)==null||Y.call(r)}),F=r.mode||g,H=h??r.selectable,L=f??m,B={...e,mode:F,inlineCollapsed:L,selectable:H,theme:l},[D,k]=pt([P,y],[M,v],{props:B},{popup:{_default:"root"},subMenu:{_default:"item"}}),W={horizontal:{motionName:`${O}-slide-up`},inline:Yh(O),other:{motionName:`${O}-zoom-big`}},_=x("menu",o||r.prefixCls),X=_t(_),[U,j]=tM(_,X,!n),V=z(`${_}-${l}`,E,s),G=i.useMemo(()=>{var Y;if(typeof c=="function"||Wa(c))return c||null;if(typeof r.expandIcon=="function"||Wa(r.expandIcon))return r.expandIcon||null;if(typeof(S==null?void 0:S.expandIcon)=="function"||Wa(S==null?void 0:S.expandIcon))return(S==null?void 0:S.expandIcon)||null;const ne=c??(r==null?void 0:r.expandIcon)??(S==null?void 0:S.expandIcon);return Wt(ne,{className:z(`${_}-submenu-expand-icon`,i.isValidElement(ne)?(Y=ne.props)==null?void 0:Y.className:void 0)})},[c,r==null?void 0:r.expandIcon,S==null?void 0:S.expandIcon,_]),te=i.useMemo(()=>({prefixCls:_,inlineCollapsed:L||!1,direction:I,firstLevel:!0,theme:l,mode:F,disableMenuItemTitleTooltip:u,tooltip:d,classNames:D,styles:k}),[_,L,I,u,l,F,D,k,d]);return i.createElement(Ei.Provider,{value:null},i.createElement(wi.Provider,{value:te},i.createElement(xo,{getPopupContainer:w,overflowedIndicator:i.createElement(Ad,null),overflowedIndicatorPopupClassName:z(_,`${_}-${l}`,$),classNames:{list:D.list,listTitle:D.itemTitle},styles:{list:k.list,listTitle:k.itemTitle},mode:F,selectable:H,onClick:T,...A,inlineCollapsed:L,style:{...k.root,...R,...a},className:V,prefixCls:_,direction:I,defaultMotions:W,expandIcon:G,ref:t,rootClassName:z(p,U,r.rootClassName,j,X,D.root),_internalComponents:nM})))}),Cs=i.forwardRef((e,t)=>{const n=i.useRef(null),r=i.useContext(Lb);return i.useImperativeHandle(t,()=>({menu:n.current,focus:o=>{var s;(s=n.current)==null||s.focus(o)}})),i.createElement(rM,{ref:n,...e,...r})});Cs.Item=Db;Cs.SubMenu=Fb;Cs.Divider=Hb;Cs.ItemGroup=Od;const oM=e=>{const{componentCls:t,menuCls:n,colorError:r,colorTextLightSolid:o}=e,s=`${n}-item`;return{[`${t}, ${t}-menu-submenu`]:{[`${n} ${s}`]:{[`&${s}-danger:not(${s}-disabled)`]:{color:r,"&:hover":{color:o,backgroundColor:r}}}}}},sM=e=>{const{componentCls:t,menuCls:n,zIndexPopup:r,dropdownArrowDistance:o,sizePopupArrow:s,antCls:a,iconCls:l,motionDurationMid:c,paddingBlock:u,fontSize:d,dropdownEdgeChildPadding:f,colorTextDisabled:m,fontSizeIcon:p,controlPaddingHorizontal:g,colorBgElevated:h}=e;return[{[t]:{position:"absolute",top:-9999,left:{_skip_check_:!0,value:-9999},zIndex:r,display:"block","&::before":{position:"absolute",insetBlock:e.calc(s).div(2).sub(o).equal(),zIndex:-9999,opacity:1e-4,content:'""'},"&-menu-vertical":{maxHeight:"100vh",overflowY:"auto"},[`&-trigger${a}-btn`]:{[`& > ${l}-down, & > ${a}-btn-icon > ${l}-down`]:{fontSize:p}},[`${t}-wrap`]:{position:"relative",[`${a}-btn > ${l}-down`]:{fontSize:p},[`${l}-down::before`]:{transition:`transform ${c}`}},[`${t}-wrap-open`]:{[`${l}-down::before`]:{transform:"rotate(180deg)"}},"\n &-hidden,\n &-menu-hidden,\n &-menu-submenu-hidden\n ":{display:"none"},[`&${a}-slide-down-enter${a}-slide-down-enter-active${t}-placement-bottomLeft, + &${a}-slide-down-appear${a}-slide-down-appear-active${t}-placement-bottomLeft, + &${a}-slide-down-enter${a}-slide-down-enter-active${t}-placement-bottom, + &${a}-slide-down-appear${a}-slide-down-appear-active${t}-placement-bottom, + &${a}-slide-down-enter${a}-slide-down-enter-active${t}-placement-bottomRight, + &${a}-slide-down-appear${a}-slide-down-appear-active${t}-placement-bottomRight`]:{animationName:sd},[`&${a}-slide-up-enter${a}-slide-up-enter-active${t}-placement-topLeft, + &${a}-slide-up-appear${a}-slide-up-appear-active${t}-placement-topLeft, + &${a}-slide-up-enter${a}-slide-up-enter-active${t}-placement-top, + &${a}-slide-up-appear${a}-slide-up-appear-active${t}-placement-top, + &${a}-slide-up-enter${a}-slide-up-enter-active${t}-placement-topRight, + &${a}-slide-up-appear${a}-slide-up-appear-active${t}-placement-topRight`]:{animationName:ad},[`&${a}-slide-down-leave${a}-slide-down-leave-active${t}-placement-bottomLeft, + &${a}-slide-down-leave${a}-slide-down-leave-active${t}-placement-bottom, + &${a}-slide-down-leave${a}-slide-down-leave-active${t}-placement-bottomRight`]:{animationName:id},[`&${a}-slide-up-leave${a}-slide-up-leave-active${t}-placement-topLeft, + &${a}-slide-up-leave${a}-slide-up-leave-active${t}-placement-top, + &${a}-slide-up-leave${a}-slide-up-leave-active${t}-placement-topRight`]:{animationName:ld}}},Ed(e,h,{arrowPlacement:{top:!0,bottom:!0}}),{[`${t} ${n}`]:{position:"relative",margin:0},[`${n}-submenu-popup`]:{position:"absolute",zIndex:r,background:"transparent",boxShadow:"none",transformOrigin:"0 0","ul, li":{listStyle:"none",margin:0}},[`${t}, ${t}-menu-submenu`]:{...Ct(e),[n]:{padding:f,listStyleType:"none",backgroundColor:h,backgroundClip:"padding-box",borderRadius:e.borderRadiusLG,outline:"none",boxShadow:e.boxShadowSecondary,...bn(e),"&:empty":{padding:0,boxShadow:"none"},[`${n}-item-group-title`]:{padding:`${K(u)} ${K(g)}`,color:e.colorTextDescription,transition:`all ${c}`},[`${n}-item`]:{position:"relative",display:"flex",alignItems:"center"},[`${n}-item-icon`]:{minWidth:d,marginInlineEnd:e.marginXS,fontSize:e.fontSizeSM},[`${n}-title-content`]:{flex:"auto","&-with-extra":{display:"inline-flex",alignItems:"center",width:"100%"},"> a":{color:"inherit",transition:`all ${c}`,"&:hover":{color:"inherit"},"&::after":{position:"absolute",inset:0,content:'""'}},[`${n}-item-extra`]:{paddingInlineStart:e.padding,marginInlineStart:"auto",fontSize:e.fontSizeSM,color:e.colorTextDescription}},[`${n}-item, ${n}-submenu-title`]:{display:"flex",margin:0,padding:`${K(u)} ${K(g)}`,color:e.colorText,fontWeight:"normal",fontSize:d,lineHeight:e.lineHeight,cursor:"pointer",transition:`all ${c}`,borderRadius:e.borderRadiusSM,"&:hover, &-active":{backgroundColor:e.controlItemBgHover},...bn(e),"&-selected":{color:e.colorPrimary,backgroundColor:e.controlItemBgActive,"&:hover, &-active":{backgroundColor:e.controlItemBgActiveHover}},"&-disabled":{color:m,cursor:"not-allowed","&:hover":{color:m,backgroundColor:h,cursor:"not-allowed"},a:{pointerEvents:"none"}},"&-divider":{height:1,margin:`${K(e.marginXXS)} 0`,overflow:"hidden",lineHeight:0,backgroundColor:e.colorSplit},[`${t}-menu-submenu-expand-icon`]:{position:"absolute",insetInlineEnd:e.paddingXS,[`${t}-menu-submenu-arrow-icon`]:{marginInlineEnd:"0 !important",color:e.colorIcon,fontSize:p,fontStyle:"normal"}}},[`${n}-item-group-list`]:{margin:`0 ${K(e.marginXS)}`,padding:0,listStyle:"none"},[`${n}-submenu-title`]:{paddingInlineEnd:e.calc(g).add(e.fontSizeSM).equal()},[`${n}-submenu-vertical`]:{position:"relative"},[`${n}-submenu${n}-submenu-disabled ${t}-menu-submenu-title`]:{[`&, ${t}-menu-submenu-arrow-icon`]:{color:m,backgroundColor:h,cursor:"not-allowed"}},[`${n}-submenu-selected ${t}-menu-submenu-title`]:{color:e.colorPrimary}}}},[cr(e,"slide-up"),cr(e,"slide-down"),gi(e,"move-up"),gi(e,"move-down"),ds(e,"zoom-big")]]},iM=e=>({zIndexPopup:e.zIndexPopupBase+50,paddingBlock:(e.controlHeight-e.fontSize*e.lineHeight)/2,...Gi({contentRadius:e.borderRadiusLG,limitVerticalRadius:!0}),...wd(e)}),aM=at("Dropdown",e=>{const{marginXXS:t,sizePopupArrow:n,paddingXXS:r,componentCls:o}=e,s=rt(e,{menuCls:`${o}-menu`,dropdownArrowDistance:e.calc(n).div(2).add(t).equal(),dropdownEdgeChildPadding:r});return[sM(s),oM(s)]},iM,{resetStyle:!1}),Yi=e=>{const{menu:t,arrow:n,prefixCls:r,children:o,trigger:s,disabled:a,dropdownRender:l,popupRender:c,getPopupContainer:u,overlayClassName:d,rootClassName:f,overlayStyle:m,open:p,onOpenChange:g,mouseEnterDelay:h=.15,mouseLeaveDelay:b=.1,autoAdjustOverflow:$=!0,placement:y="",transitionName:v,classNames:C,styles:S,destroyPopupOnHide:x,destroyOnHidden:w}=e,{getPrefixCls:I,direction:E,getPopupContainer:R,className:P,style:M,classNames:O,styles:A}=dt("dropdown"),T={...e,mouseEnterDelay:h,mouseLeaveDelay:b,autoAdjustOverflow:$},[F,H]=pt([O,C],[A,S],{props:T}),L={...M,...m,...H.root},B=c||l,D=i.useMemo(()=>{const de=I();return v!==void 0?v:y.includes("top")?`${de}-slide-down`:`${de}-slide-up`},[I,y,v]),k=i.useMemo(()=>y?y.includes("Center")?y.slice(0,y.indexOf("Center")):y:E==="rtl"?"bottomRight":"bottomLeft",[y,E]),W=I("dropdown",r),_=_t(W),[X,U]=aM(W,_),[,j]=jt(),V=i.Children.only(ER(o)?i.createElement("span",null,o):o),G=Wt(V,{className:z(`${W}-trigger`,{[`${W}-rtl`]:E==="rtl"},V.props.className),disabled:V.props.disabled??a}),te=a?[]:s,ee=!!(te!=null&&te.includes("contextMenu")),[ne,Y]=bt(!1,p),se=We(de=>{g==null||g(de,{source:"trigger"}),Y(de)}),ue=z(d,f,X,U,_,P,F.root,{[`${W}-rtl`]:E==="rtl"}),q=bb({arrowPointAtCenter:typeof n=="object"&&n.pointAtCenter,autoAdjustOverflow:$,offset:j.marginXXS,arrowWidth:n?j.sizePopupArrow:0,borderRadius:j.borderRadius}),oe=We(()=>{t!=null&&t.selectable&&(t!=null&&t.multiple)||(g==null||g(!1,{source:"menu"}),Y(!1))}),Z=()=>{const de=yt(F,["root"]),ge=yt(H,["root"]);let be;return t!=null&&t.items&&(be=i.createElement(Cs,{...t,classNames:{...de,subMenu:{...de}},styles:{...ge,subMenu:{...ge}}})),B&&(be=B(be)),be=i.Children.only(typeof be=="string"?i.createElement("span",null,be):be),i.createElement(KR,{prefixCls:`${W}-menu`,rootClassName:z(U,_),expandIcon:i.createElement("span",{className:`${W}-menu-submenu-arrow`},E==="rtl"?i.createElement(yR,{className:`${W}-menu-submenu-arrow-icon`}):i.createElement(a0,{className:`${W}-menu-submenu-arrow-icon`})),mode:"vertical",selectable:!1,onClick:oe,validator:({mode:me})=>{}},be)},[J,ae]=ls("Dropdown",L.zIndex);let we=i.createElement(xb,{alignPoint:ee,...yt(e,["rootClassName","onOpenChange"]),mouseEnterDelay:h,mouseLeaveDelay:b,visible:ne,builtinPlacements:q,arrow:!!n,overlayClassName:ue,prefixCls:W,getPopupContainer:u||R,transitionName:D,trigger:te,overlay:Z,placement:k,onVisibleChange:se,overlayStyle:{...L,zIndex:J},autoDestroy:w??x},G);return J&&(we=i.createElement(_i.Provider,{value:ae},we)),we},lM=bd(Yi,"align",void 0,"dropdown",e=>e),cM=e=>i.createElement(lM,{...e},i.createElement("span",null));Yi._InternalPanelDoNotUseOrYouWillBeFired=cM;function Ss(e){return rt(e,{inputAffixPadding:e.paddingXXS})}const xs=e=>{const{controlHeight:t,fontSize:n,lineHeight:r,lineWidth:o,controlHeightSM:s,controlHeightLG:a,fontSizeLG:l,lineHeightLG:c,paddingSM:u,controlPaddingHorizontalSM:d,controlPaddingHorizontal:f,colorFillAlter:m,colorPrimaryHover:p,colorPrimary:g,controlOutlineWidth:h,controlOutline:b,colorErrorOutline:$,colorWarningOutline:y,colorBgContainer:v,inputFontSize:C,inputFontSizeLG:S,inputFontSizeSM:x}=e,w=C||n,I=x||w,E=S||l,R=Math.round((t-w*r)/2*10)/10-o,P=Math.round((s-I*r)/2*10)/10-o,M=Math.ceil((a-E*c)/2*10)/10-o;return{paddingBlock:Math.max(R,0),paddingBlockSM:Math.max(P,0),paddingBlockLG:Math.max(M,0),paddingInline:u-o,paddingInlineSM:d-o,paddingInlineLG:f-o,addonBg:m,activeBorderColor:g,hoverBorderColor:p,activeShadow:`0 0 0 ${h}px ${b}`,errorActiveShadow:`0 0 0 ${h}px ${$}`,warningActiveShadow:`0 0 0 ${h}px ${y}`,hoverBg:v,activeBg:v,inputFontSize:w,inputFontSizeLG:E,inputFontSizeSM:I}},uM=e=>({borderColor:e.hoverBorderColor,backgroundColor:e.hoverBg}),zd=e=>({color:e.colorTextDisabled,backgroundColor:e.colorBgContainerDisabled,borderColor:e.colorBorder,boxShadow:"none",cursor:"not-allowed",opacity:1,"input[disabled], textarea[disabled]":{cursor:"not-allowed"},"&:hover:not([disabled])":{...uM(rt(e,{hoverBorderColor:e.colorBorder,hoverBg:e.colorBgContainerDisabled}))}}),_b=(e,t)=>({background:e.colorBgContainer,borderWidth:e.lineWidth,borderStyle:e.lineType,borderColor:t.borderColor,"&:hover":{borderColor:t.hoverBorderColor,backgroundColor:e.hoverBg},"&:focus, &:focus-within":{borderColor:t.activeBorderColor,boxShadow:t.activeShadow,outline:0,backgroundColor:e.activeBg}}),yp=(e,t)=>({[`&${e.componentCls}-status-${t.status}:not(${e.componentCls}-disabled)`]:{..._b(e,t),[`${e.componentCls}-prefix, ${e.componentCls}-suffix`]:{color:t.affixColor}},[`&${e.componentCls}-status-${t.status}${e.componentCls}-disabled`]:{borderColor:t.borderColor}}),kb=(e,t)=>({"&-outlined":{..._b(e,{borderColor:e.colorBorder,hoverBorderColor:e.hoverBorderColor,activeBorderColor:e.activeBorderColor,activeShadow:e.activeShadow}),[`&${e.componentCls}-disabled, &[disabled]`]:{...zd(e)},...yp(e,{status:"error",borderColor:e.colorError,hoverBorderColor:e.colorErrorBorderHover,activeBorderColor:e.colorError,activeShadow:e.errorActiveShadow,affixColor:e.colorError}),...yp(e,{status:"warning",borderColor:e.colorWarning,hoverBorderColor:e.colorWarningBorderHover,activeBorderColor:e.colorWarning,activeShadow:e.warningActiveShadow,affixColor:e.colorWarning}),...t}}),$p=(e,t)=>({[`&${e.componentCls}-group-wrapper-status-${t.status}`]:{[`${e.componentCls}-group-addon`]:{borderColor:t.addonBorderColor,color:t.addonColor}}}),dM=e=>({"&-outlined":{[`${e.componentCls}-group`]:{"&-addon":{background:e.addonBg,border:`${K(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},"&-addon:first-child":{borderInlineEnd:0},"&-addon:last-child":{borderInlineStart:0}},...$p(e,{status:"error",addonBorderColor:e.colorError,addonColor:e.colorErrorText}),...$p(e,{status:"warning",addonBorderColor:e.colorWarning,addonColor:e.colorWarningText}),[`&${e.componentCls}-group-wrapper-disabled`]:{[`${e.componentCls}-group-addon`]:{...zd(e)}}}}),Vb=(e,t)=>{const{componentCls:n}=e;return{"&-borderless":{background:"transparent",border:"none","&:focus, &:focus-within":{outline:"none"},[`&${n}-disabled, &[disabled]`]:{color:e.colorTextDisabled,cursor:"not-allowed"},[`&${n}-status-error`]:{"&, & input, & textarea":{color:e.colorError}},[`&${n}-status-warning`]:{"&, & input, & textarea":{color:e.colorWarning}},...t}}},Wb=(e,t)=>({background:t.bg,borderWidth:e.lineWidth,borderStyle:e.lineType,borderColor:"transparent","input&, & input, textarea&, & textarea":{color:(t==null?void 0:t.inputColor)??"unset"},"&:hover":{background:t.hoverBg},"&:focus, &:focus-within":{outline:0,borderColor:t.activeBorderColor,backgroundColor:e.activeBg}}),Cp=(e,t)=>({[`&${e.componentCls}-status-${t.status}:not(${e.componentCls}-disabled)`]:{...Wb(e,t),[`${e.componentCls}-prefix, ${e.componentCls}-suffix`]:{color:t.affixColor}}}),jb=(e,t)=>({"&-filled":{...Wb(e,{bg:e.colorFillTertiary,hoverBg:e.colorFillSecondary,activeBorderColor:e.activeBorderColor,inputColor:e.colorText}),[`&${e.componentCls}-disabled, &[disabled]`]:{...zd(e)},...Cp(e,{status:"error",bg:e.colorErrorBg,hoverBg:e.colorErrorBgHover,activeBorderColor:e.colorError,inputColor:e.colorErrorText,affixColor:e.colorError}),...Cp(e,{status:"warning",bg:e.colorWarningBg,hoverBg:e.colorWarningBgHover,activeBorderColor:e.colorWarning,inputColor:e.colorWarningText,affixColor:e.colorWarning}),...t}}),Sp=(e,t)=>({[`&${e.componentCls}-group-wrapper-status-${t.status}`]:{[`${e.componentCls}-group-addon`]:{background:t.addonBg,color:t.addonColor}}}),fM=e=>({"&-filled":{[`${e.componentCls}-group-addon`]:{background:e.colorFillTertiary,"&:last-child":{position:"static"}},...Sp(e,{status:"error",addonBg:e.colorErrorBg,addonColor:e.colorErrorText}),...Sp(e,{status:"warning",addonBg:e.colorWarningBg,addonColor:e.colorWarningText}),[`&${e.componentCls}-group-wrapper-disabled`]:{[`${e.componentCls}-group`]:{"&-addon":{background:e.colorFillTertiary,color:e.colorTextDisabled},"&-addon:first-child":{borderInlineStart:`${K(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderTop:`${K(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderBottom:`${K(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},"&-addon:last-child":{borderInlineEnd:`${K(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderTop:`${K(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderBottom:`${K(e.lineWidth)} ${e.lineType} ${e.colorBorder}`}}}}}),qb=(e,t)=>({background:e.colorBgContainer,borderWidth:`${K(e.lineWidth)} 0`,borderStyle:`${e.lineType} none`,borderColor:`transparent transparent ${t.borderColor} transparent`,borderRadius:0,"&:hover":{borderColor:`transparent transparent ${t.hoverBorderColor} transparent`,backgroundColor:e.hoverBg},"&:focus, &:focus-within":{borderColor:`transparent transparent ${t.activeBorderColor} transparent`,outline:0,backgroundColor:e.activeBg}}),xp=(e,t)=>({[`&${e.componentCls}-status-${t.status}:not(${e.componentCls}-disabled)`]:{...qb(e,t),[`${e.componentCls}-prefix, ${e.componentCls}-suffix`]:{color:t.affixColor}},[`&${e.componentCls}-status-${t.status}${e.componentCls}-disabled`]:{borderColor:`transparent transparent ${t.borderColor} transparent`}}),Gb=(e,t)=>({"&-underlined":{...qb(e,{borderColor:e.colorBorder,hoverBorderColor:e.hoverBorderColor,activeBorderColor:e.activeBorderColor,activeShadow:e.activeShadow}),[`&${e.componentCls}-disabled, &[disabled]`]:{color:e.colorTextDisabled,boxShadow:"none",cursor:"not-allowed","&:hover":{borderColor:`transparent transparent ${e.colorBorder} transparent`}},"input[disabled], textarea[disabled]":{cursor:"not-allowed"},...xp(e,{status:"error",borderColor:e.colorError,hoverBorderColor:e.colorErrorBorderHover,activeBorderColor:e.colorError,activeShadow:e.errorActiveShadow,affixColor:e.colorError}),...xp(e,{status:"warning",borderColor:e.colorWarning,hoverBorderColor:e.colorWarningBorderHover,activeBorderColor:e.colorWarning,activeShadow:e.warningActiveShadow,affixColor:e.colorWarning}),...t}}),Xb=e=>({"&::-moz-placeholder":{opacity:1},"&::placeholder":{color:e,userSelect:"none"},"&:placeholder-shown":{textOverflow:"ellipsis"}}),Ub=e=>{const{paddingBlockLG:t,lineHeightLG:n,borderRadiusLG:r,paddingInlineLG:o}=e;return{padding:`${K(t)} ${K(o)}`,fontSize:e.inputFontSizeLG,lineHeight:n,borderRadius:r}},Kb=e=>({padding:`${K(e.paddingBlockSM)} ${K(e.paddingInlineSM)}`,fontSize:e.inputFontSizeSM,borderRadius:e.borderRadiusSM}),Bd=(e,t={})=>({position:"relative",display:"inline-block",width:"100%",minWidth:0,padding:`${K(e.paddingBlock)} ${K(e.paddingInline)}`,color:e.colorText,fontSize:e.inputFontSize,lineHeight:e.lineHeight,borderRadius:e.borderRadius,transition:`all ${e.motionDurationMid}`,...Xb(e.colorTextPlaceholder),"&-lg":{...Ub(e),...t.largeStyle},"&-sm":{...Kb(e),...t.smallStyle},"&-rtl, &-textarea-rtl":{direction:"rtl"}}),mM=e=>{const{componentCls:t,antCls:n}=e;return{position:"relative",display:"table",width:"100%",borderCollapse:"separate",borderSpacing:0,"&[class*='col-']":{paddingInlineEnd:e.paddingXS,"&:last-child":{paddingInlineEnd:0}},[`&-lg ${t}, &-lg > ${t}-group-addon`]:{...Ub(e)},[`&-sm ${t}, &-sm > ${t}-group-addon`]:{...Kb(e)},[`&-lg ${n}-select-single`]:{height:e.controlHeightLG},[`&-sm ${n}-select-single`]:{height:e.controlHeightSM},[`> ${t}`]:{display:"table-cell","&:not(:first-child):not(:last-child)":{borderRadius:0}},[`${t}-group`]:{"&-addon, &-wrap":{display:"table-cell",width:1,whiteSpace:"nowrap",verticalAlign:"middle","&:not(:first-child):not(:last-child)":{borderRadius:0}},"&-wrap > *":{display:"block !important"},"&-addon":{position:"relative",padding:`0 ${K(e.paddingInline)}`,color:e.colorText,fontWeight:"normal",fontSize:e.inputFontSize,textAlign:"center",borderRadius:e.borderRadius,transition:`all ${e.motionDurationSlow}`,lineHeight:1,[`${n}-select`]:{margin:`${K(e.calc(e.paddingBlock).add(1).mul(-1).equal())} ${K(e.calc(e.paddingInline).mul(-1).equal())}`,[`&${n}-select-single:not(${n}-select-customize-input):not(${n}-pagination-size-changer)`]:{backgroundColor:"inherit",border:`${K(e.lineWidth)} ${e.lineType} transparent`,boxShadow:"none"}},[`${n}-cascader-picker`]:{margin:`-9px ${K(e.calc(e.paddingInline).mul(-1).equal())}`,backgroundColor:"transparent",[`${n}-cascader-input`]:{textAlign:"start",border:0,boxShadow:"none"}}}},[t]:{width:"100%",marginBottom:0,textAlign:"inherit","&:focus":{zIndex:1,borderInlineEndWidth:1},"&:hover":{zIndex:1,borderInlineEndWidth:1}},[`> ${t}:first-child, ${t}-group-addon:first-child`]:{borderStartEndRadius:0,borderEndEndRadius:0,[`${n}-select`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`> ${t}-affix-wrapper`]:{[`&:not(:first-child) ${t}`]:{borderStartStartRadius:0,borderEndStartRadius:0},[`&:not(:last-child) ${t}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`> ${t}:last-child, ${t}-group-addon:last-child`]:{borderStartStartRadius:0,borderEndStartRadius:0,[`${n}-select`]:{borderStartStartRadius:0,borderEndStartRadius:0}},[`${t}-affix-wrapper`]:{"&:not(:last-child)":{borderStartEndRadius:0,borderEndEndRadius:0},"&:not(:first-child)":{borderStartStartRadius:0,borderEndStartRadius:0}},[`&${t}-group-compact`]:{display:"block",...li(),[`${t}-group-addon, ${t}-group-wrap, > ${t}`]:{"&:not(:first-child):not(:last-child)":{borderInlineEndWidth:e.lineWidth,"&:hover, &:focus":{zIndex:1}}},"& > *":{display:"inline-flex",float:"none",verticalAlign:"top",borderRadius:0},[` + & > ${t}-affix-wrapper, + & > ${t}-number-affix-wrapper, + & > ${n}-picker-range + `]:{display:"inline-flex"},"& > *:not(:last-child)":{marginInlineEnd:e.calc(e.lineWidth).mul(-1).equal(),borderInlineEndWidth:e.lineWidth},[t]:{float:"none"},[`& > ${n}-select, + & > ${n}-select-auto-complete ${t}, + & > ${n}-cascader-picker ${t}, + & > ${t}-group-wrapper ${t}`]:{borderInlineEndWidth:e.lineWidth,borderRadius:0,"&:hover, &:focus":{zIndex:1}},[`& > ${n}-select-focused`]:{zIndex:1},[`& > ${n}-select > ${n}-select-arrow`]:{zIndex:1},[`& > *:first-child, + & > ${n}-select:first-child, + & > ${n}-select-auto-complete:first-child ${t}, + & > ${n}-cascader-picker:first-child ${t}`]:{borderStartStartRadius:e.borderRadius,borderEndStartRadius:e.borderRadius},[`& > *:last-child, + & > ${n}-select:last-child, + & > ${n}-cascader-picker:last-child ${t}, + & > ${n}-cascader-picker-focused:last-child ${t}`]:{borderInlineEndWidth:e.lineWidth,borderStartEndRadius:e.borderRadius,borderEndEndRadius:e.borderRadius},[`& > ${n}-select-auto-complete ${t}`]:{verticalAlign:"top"},[`${t}-group-wrapper + ${t}-group-wrapper`]:{marginInlineStart:e.calc(e.lineWidth).mul(-1).equal(),[`${t}-affix-wrapper`]:{}}}}},pM=e=>{const{componentCls:t,controlHeightSM:n,lineWidth:r,calc:o}=e,a=o(n).sub(o(r).mul(2)).sub(16).div(2).equal();return{[t]:{...Ct(e),...Bd(e),...kb(e),...jb(e),...Vb(e),...Gb(e),'&[type="color"]':{height:e.controlHeight,[`&${t}-lg`]:{height:e.controlHeightLG},[`&${t}-sm`]:{height:n,paddingTop:a,paddingBottom:a}},'&[type="search"]::-webkit-search-cancel-button, &[type="search"]::-webkit-search-decoration':{appearance:"none"}}}},gM=e=>{const{componentCls:t}=e;return{[`${t}-clear-icon`]:{margin:0,padding:0,lineHeight:0,color:e.colorTextQuaternary,fontSize:e.fontSizeIcon,verticalAlign:-1,cursor:"pointer",transition:`color ${e.motionDurationSlow}`,border:"none",outline:"none",backgroundColor:"transparent","&:hover":{color:e.colorIcon},"&:active":{color:e.colorText},"&-hidden":{visibility:"hidden"},"&-has-suffix":{margin:`0 ${K(e.inputAffixPadding)}`}}}},hM=e=>{const{componentCls:t,inputAffixPadding:n,colorTextDescription:r,motionDurationSlow:o,colorIcon:s,colorIconHover:a,iconCls:l}=e,c=`${t}-affix-wrapper`,u=`${t}-affix-wrapper-disabled`;return{[c]:{...Bd(e),display:"inline-flex","&-focused, &:focus":{zIndex:1},[`> input${t}`]:{padding:0},[`> input${t}, > textarea${t}`]:{fontSize:"inherit",border:"none",borderRadius:0,outline:"none",background:"transparent",color:"inherit","&::-ms-reveal":{display:"none"},"&:focus":{boxShadow:"none !important"}},"&::before":{display:"inline-block",width:0,visibility:"hidden",content:'"\\a0"'},[t]:{"&-prefix, &-suffix":{display:"flex",flex:"none",alignItems:"center","> *:not(:last-child)":{marginInlineEnd:e.paddingXS}},"&-show-count-suffix":{color:r,direction:"ltr"},"&-show-count-has-suffix":{marginInlineEnd:e.paddingXXS},"&-prefix":{marginInlineEnd:n},"&-suffix":{marginInlineStart:n}},...gM(e),[`${l}${t}-password-icon`]:{color:s,cursor:"pointer",transition:`all ${o}`,"&:hover":{color:a}}},[`${t}-underlined`]:{borderRadius:0},[u]:{[`${l}${t}-password-icon`]:{color:s,cursor:"not-allowed","&:hover":{color:s}}}}},bM=e=>{const{componentCls:t,borderRadiusLG:n,borderRadiusSM:r}=e;return{[`${t}-group`]:{...Ct(e),...mM(e),"&-rtl":{direction:"rtl"},"&-wrapper":{display:"inline-block",width:"100%",textAlign:"start",verticalAlign:"top","&-rtl":{direction:"rtl"},"&-lg":{[`${t}-group-addon`]:{borderRadius:n,fontSize:e.inputFontSizeLG}},"&-sm":{[`${t}-group-addon`]:{borderRadius:r}},...dM(e),...fM(e),[`&:not(${t}-compact-first-item):not(${t}-compact-last-item)${t}-compact-item`]:{[`${t}, ${t}-group-addon`]:{borderRadius:0}},[`&:not(${t}-compact-last-item)${t}-compact-first-item`]:{[`${t}, ${t}-group-addon`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`&:not(${t}-compact-first-item)${t}-compact-last-item`]:{[`${t}, ${t}-group-addon`]:{borderStartStartRadius:0,borderEndStartRadius:0}},[`&:not(${t}-compact-last-item)${t}-compact-item`]:{[`${t}-affix-wrapper`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`&:not(${t}-compact-first-item)${t}-compact-item`]:{[`${t}-affix-wrapper`]:{borderStartStartRadius:0,borderEndStartRadius:0}}}}}},vM=e=>{const{componentCls:t}=e;return{[`${t}-out-of-range`]:{[`&, & input, & textarea, ${t}-show-count-suffix, ${t}-data-count`]:{color:e.colorError}}}},Yb=at(["Input","Shared"],e=>{const t=rt(e,Ss(e));return[pM(t),hM(t)]},xs,{resetFont:!1}),Qb=at(["Input","Component"],e=>{const t=rt(e,Ss(e));return[bM(t),vM(t),yo(t,{focus:!0,focusElCls:`${t.componentCls}-affix-wrapper-focused`})]},xs,{resetFont:!1});var yM={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z"}},{tag:"path",attrs:{d:"M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z"}}]},name:"plus",theme:"outlined"};function qc(){return qc=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,qc({},e,{ref:t,icon:yM})),Zb=i.forwardRef($M);let ja;const CM=()=>(typeof ja>"u"&&(ja=yy()),ja),Ld=i.createContext(null),SM=e=>{const{activeTabOffset:t,horizontal:n,rtl:r,indicator:o={}}=e,{size:s,align:a="center"}=o,[l,c]=i.useState(),u=i.useRef(),d=N.useCallback(m=>typeof s=="function"?s(m):typeof s=="number"?s:m,[s]);function f(){Ke.cancel(u.current)}return i.useEffect(()=>{const m={};if(t)if(n){m.width=d(t.width);const p=r?"right":"left";a==="start"&&(m[p]=t[p]),a==="center"&&(m[p]=t[p]+t.width/2,m.transform=r?"translateX(50%)":"translateX(-50%)"),a==="end"&&(m[p]=t[p]+t.width,m.transform="translateX(-100%)")}else m.height=d(t.height),a==="start"&&(m.top=t.top),a==="center"&&(m.top=t.top+t.height/2,m.transform="translateY(-50%)"),a==="end"&&(m.top=t.top+t.height,m.transform="translateY(-100%)");return f(),u.current=Ke(()=>{l&&m&&Object.keys(m).every(g=>{const h=m[g],b=l[g];return typeof h=="number"&&typeof b=="number"?Math.round(h)===Math.round(b):h===b})||c(m)}),f},[JSON.stringify(t),n,r,a,d]),{style:l}},wp={width:0,height:0,left:0,top:0};function xM(e,t,n){return i.useMemo(()=>{var a,l;const r=new Map,o=t.get((a=e[0])==null?void 0:a.key)||wp,s=o.left+o.width;for(let c=0;cr.key).join("_"),t,n])}function Ep(e,t){const n=i.useRef(e),[,r]=i.useState({});function o(s){const a=typeof s=="function"?s(n.current):s;a!==n.current&&t(a,n.current),n.current=a,r({})}return[n.current,o]}const wM=.1,Ip=.01,ri=20,Pp=.995**ri;function EM(e,t){const[n,r]=i.useState(),[o,s]=i.useState(0),[a,l]=i.useState(0),[c,u]=i.useState(),d=i.useRef();function f($){const{screenX:y,screenY:v}=$.touches[0];r({x:y,y:v}),window.clearInterval(d.current)}function m($){if(!n)return;const{screenX:y,screenY:v}=$.touches[0];r({x:y,y:v});const C=y-n.x,S=v-n.y;t(C,S);const x=Date.now();s(x),l(x-o),u({x:C,y:S})}function p(){if(n&&(r(null),u(null),c)){const $=c.x/a,y=c.y/a,v=Math.abs($),C=Math.abs(y);if(Math.max(v,C){if(Math.abs(S)x?(C=y,g.current="x"):(C=v,g.current="y"),t(-C,-C)&&$.preventDefault()}const b=i.useRef(null);b.current={onTouchStart:f,onTouchMove:m,onTouchEnd:p,onWheel:h},i.useEffect(()=>{function $(S){b.current.onTouchStart(S)}function y(S){b.current.onTouchMove(S)}function v(S){b.current.onTouchEnd(S)}function C(S){b.current.onWheel(S)}return document.addEventListener("touchmove",y,{passive:!1}),document.addEventListener("touchend",v,{passive:!0}),e.current.addEventListener("touchstart",$,{passive:!0}),e.current.addEventListener("wheel",C,{passive:!1}),()=>{document.removeEventListener("touchmove",y),document.removeEventListener("touchend",v)}},[])}function Jb(e){const[t,n]=i.useState(0),r=i.useRef(0),o=i.useRef();return o.current=e,Ks(()=>{var s;(s=o.current)==null||s.call(o)},[t]),()=>{r.current===t&&(r.current+=1,n(r.current))}}function IM(e){const t=i.useRef([]),[,n]=i.useState({}),r=i.useRef(typeof e=="function"?e():e),o=Jb(()=>{let a=r.current;t.current.forEach(l=>{a=l(a)}),t.current=[],r.current=a,n({})});function s(a){t.current.push(a),o()}return[r.current,s]}const Rp={width:0,height:0,left:0,top:0,right:0};function PM(e,t,n,r,o,s,{tabs:a,tabPosition:l,rtl:c}){let u,d,f;return["top","bottom"].includes(l)?(u="width",d=c?"right":"left",f=Math.abs(n)):(u="height",d="top",f=-n),i.useMemo(()=>{if(!a.length)return[0,0];const m=a.length;let p=m;for(let h=0;hMath.floor(f+t)){p=h-1;break}}let g=0;for(let h=m-1;h>=0;h-=1)if((e.get(a[h].key)||Rp)[d]p?[0,-1]:[g,p]},[e,t,r,o,s,f,l,a.map(m=>m.key).join("_"),c])}function Mp(e){let t;return e instanceof Map?(t={},e.forEach((n,r)=>{t[r]=n})):t=e,JSON.stringify(t)}const RM="TABS_DQ";function ev(e){return String(e).replace(/"/g,RM)}function Hd(e,t,n,r){return!(!n||r||e===!1||e===void 0&&(t===!1||t===null))}const tv=i.forwardRef((e,t)=>{const{prefixCls:n,editable:r,locale:o,style:s}=e;return!r||r.showAdd===!1?null:i.createElement("button",{ref:t,type:"button",className:`${n}-nav-add`,style:s,"aria-label":(o==null?void 0:o.addAriaLabel)||"Add tab",onClick:a=>{r.onEdit("add",{event:a})}},r.addIcon||"+")}),Np=i.forwardRef((e,t)=>{const{position:n,prefixCls:r,extra:o}=e;if(!o)return null;let s,a={};return typeof o=="object"&&!i.isValidElement(o)?a=o:a.right=o,n==="right"&&(s=a.right),n==="left"&&(s=a.left),s?i.createElement("div",{className:`${r}-extra-content`,ref:t},s):null});function Gc(){return Gc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:n,id:r,tabs:o,locale:s,mobile:a,more:l={},style:c,className:u,editable:d,tabBarGutter:f,rtl:m,removeAriaLabel:p,onTabClick:g,getPopupContainer:h,popupClassName:b,popupStyle:$}=e,[y,v]=i.useState(!1),[C,S]=i.useState(null),{icon:x="More"}=l,w=`${r}-more-popup`,I=`${n}-dropdown`,E=C!==null?`${w}-${C}`:null,R=s==null?void 0:s.dropdownAriaLabel;function P(L,B){L.preventDefault(),L.stopPropagation(),d.onEdit("remove",{key:B,event:L})}const M=i.createElement(xo,{onClick:({key:L,domEvent:B})=>{g(L,B),v(!1)},prefixCls:`${I}-menu`,id:w,tabIndex:-1,role:"listbox","aria-activedescendant":E,selectedKeys:[C],"aria-label":R!==void 0?R:"expanded dropdown"},o.map(L=>{const{closable:B,disabled:D,closeIcon:k,key:W,label:_}=L,X=Hd(B,k,d,D);return i.createElement($s,{key:W,id:`${w}-${W}`,role:"option","aria-controls":r&&`${r}-panel-${W}`,disabled:D},i.createElement("span",null,_),X&&i.createElement("button",{type:"button","aria-label":p||"remove",tabIndex:0,className:`${I}-menu-item-remove`,onClick:U=>{U.stopPropagation(),P(U,W)}},k||d.removeIcon||"×"))}));function O(L){const B=o.filter(W=>!W.disabled);let D=B.findIndex(W=>W.key===C)||0;const k=B.length;for(let W=0;W{const L=document.getElementById(E);L!=null&&L.scrollIntoView&&L.scrollIntoView(!1)},[E,C]),i.useEffect(()=>{y||S(null)},[y]);const T={marginInlineStart:f};o.length||(T.visibility="hidden",T.order=1);const F=z(b,{[`${I}-rtl`]:m}),H=a?null:i.createElement(xb,Gc({prefixCls:I,overlay:M,visible:o.length?y:!1,onVisibleChange:v,overlayClassName:F,overlayStyle:$,mouseEnterDelay:.1,mouseLeaveDelay:.1,getPopupContainer:h},l),i.createElement("button",{type:"button",className:`${n}-nav-more`,style:T,"aria-haspopup":"listbox","aria-controls":w,id:`${r}-more`,"aria-expanded":y,onKeyDown:A},x));return i.createElement("div",{className:z(`${n}-nav-operations`,u),style:c,ref:t},H,i.createElement(tv,{prefixCls:n,locale:s,editable:d}))}),NM=i.memo(MM,(e,t)=>t.tabMoving),TM=e=>{const{prefixCls:t,id:n,active:r,focus:o,tab:{key:s,label:a,disabled:l,closeIcon:c,icon:u},closable:d,renderWrapper:f,removeAriaLabel:m,editable:p,onClick:g,onFocus:h,onBlur:b,onKeyDown:$,onMouseDown:y,onMouseUp:v,style:C,className:S,tabCount:x,currentPosition:w}=e,I=`${t}-tab`,E=Hd(d,c,p,l);function R(T){l||g(T)}function P(T){T.preventDefault(),T.stopPropagation(),p.onEdit("remove",{key:s,event:T})}const M=i.useMemo(()=>u&&typeof a=="string"?i.createElement("span",null,a):a,[a,u]),O=i.useRef(null);i.useEffect(()=>{o&&O.current&&O.current.focus()},[o]);const A=i.createElement("div",{key:s,"data-node-key":ev(s),className:z(I,S,{[`${I}-with-remove`]:E,[`${I}-active`]:r,[`${I}-disabled`]:l,[`${I}-focus`]:o}),style:C,onClick:R},i.createElement("div",{ref:O,role:"tab","aria-selected":r,id:n&&`${n}-tab-${s}`,className:`${I}-btn`,"aria-controls":n&&`${n}-panel-${s}`,"aria-disabled":l,tabIndex:l?null:r?0:-1,onClick:T=>{T.stopPropagation(),R(T)},onKeyDown:$,onMouseDown:y,onMouseUp:v,onFocus:h,onBlur:b},o&&i.createElement("div",{"aria-live":"polite",style:{width:0,height:0,position:"absolute",overflow:"hidden",opacity:0}},`Tab ${w} of ${x}`),u&&i.createElement("span",{className:`${I}-icon`},u),a&&M),E&&i.createElement("button",{type:"button","aria-label":m||"remove",tabIndex:r?0:-1,className:`${I}-remove`,onClick:T=>{T.stopPropagation(),P(T)}},c||p.removeIcon||"×"));return f?f(A):A};function Xc(){return Xc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{offsetWidth:n,offsetHeight:r,offsetTop:o,offsetLeft:s}=e,{width:a,height:l,left:c,top:u}=e.getBoundingClientRect();return Math.abs(a-n)<1?[a,l,c-t.left,u-t.top]:[n,r,s,o]},Qr=e=>{const{offsetWidth:t=0,offsetHeight:n=0}=e.current||{};if(e.current){const{width:r,height:o}=e.current.getBoundingClientRect();if(Math.abs(r-t)<1)return[r,o]}return[t,n]},qs=(e,t)=>e[t?0:1],Tp=i.forwardRef((e,t)=>{const{className:n,style:r,id:o,animated:s,activeKey:a,rtl:l,extra:c,editable:u,locale:d,tabPosition:f,tabBarGutter:m,children:p,onTabClick:g,onTabScroll:h,indicator:b,classNames:$,styles:y}=e,{prefixCls:v,tabs:C}=i.useContext(Ld),S=i.useRef(null),x=i.useRef(null),w=i.useRef(null),I=i.useRef(null),E=i.useRef(null),R=i.useRef(null),P=i.useRef(null),M=f==="top"||f==="bottom",[O,A]=Ep(0,(Q,pe)=>{M&&h&&h({direction:Q>pe?"left":"right"})}),[T,F]=Ep(0,(Q,pe)=>{!M&&h&&h({direction:Q>pe?"top":"bottom"})}),[H,L]=i.useState([0,0]),[B,D]=i.useState([0,0]),[k,W]=i.useState([0,0]),[_,X]=i.useState([0,0]),[U,j]=IM(new Map),V=xM(C,U,B[0]),G=qs(H,M),te=qs(B,M),ee=qs(k,M),ne=qs(_,M),Y=Math.floor(G)oe?oe:Q}const J=i.useRef(null),[ae,we]=i.useState();function de(){we(Date.now())}function ge(){J.current&&clearTimeout(J.current)}EM(I,(Q,pe)=>{function ie(he,xe){he(Te=>Z(Te+xe))}return Y?(M?ie(A,Q):ie(F,pe),ge(),de(),!0):!1}),i.useEffect(()=>(ge(),ae&&(J.current=setTimeout(()=>{we(0)},100)),ge),[ae]);const[be,me]=PM(V,se,M?O:T,te,ee,ne,{...e,tabs:C}),Ne=We((Q=a)=>{const pe=V.get(Q)||{width:0,height:0,left:0,right:0,top:0};if(M){let ie=O;l?pe.rightO+se&&(ie=pe.right+pe.width-se):pe.left<-O?ie=-pe.left:pe.left+pe.width>-O+se&&(ie=-(pe.left+pe.width-se)),F(0),A(Z(ie))}else{let ie=T;pe.top<-T?ie=-pe.top:pe.top+pe.height>-T+se&&(ie=-(pe.top+pe.height-se)),A(0),F(Z(ie))}}),[Ae,Ee]=i.useState(),[ze,Re]=i.useState(!1),ve=C.filter(Q=>!Q.disabled).map(Q=>Q.key),fe=Q=>{const pe=ve.indexOf(Ae||a),ie=ve.length,he=(pe+Q+ie)%ie,xe=ve[he];Ee(xe)},Ce=(Q,pe)=>{const ie=ve.indexOf(Q),he=C.find(Te=>Te.key===Q);Hd(he==null?void 0:he.closable,he==null?void 0:he.closeIcon,u,he==null?void 0:he.disabled)&&(pe.preventDefault(),pe.stopPropagation(),u.onEdit("remove",{key:Q,event:pe}),ie===ve.length-1?fe(-1):fe(1))},He=(Q,pe)=>{Re(!0),pe.button===1&&Ce(Q,pe)},Ie=Q=>{const{code:pe}=Q,ie=l&&M,he=ve[0],xe=ve[ve.length-1];switch(pe){case"ArrowLeft":{M&&fe(ie?1:-1);break}case"ArrowRight":{M&&fe(ie?-1:1);break}case"ArrowUp":{Q.preventDefault(),M||fe(-1);break}case"ArrowDown":{Q.preventDefault(),M||fe(1);break}case"Home":{Q.preventDefault(),Ee(he);break}case"End":{Q.preventDefault(),Ee(xe);break}case"Enter":case"Space":{Q.preventDefault(),g(Ae??a,Q);break}case"Backspace":case"Delete":{Ce(Ae,Q);break}}},re={};M?re.marginInlineStart=m:re.marginTop=m;const $e=C.map((Q,pe)=>{const{key:ie}=Q;return i.createElement(TM,{id:o,prefixCls:v,key:ie,tab:Q,className:$==null?void 0:$.item,style:pe===0?y==null?void 0:y.item:{...re,...y==null?void 0:y.item},closable:Q.closable,editable:u,active:ie===a,focus:ie===Ae,renderWrapper:p,removeAriaLabel:d==null?void 0:d.removeAriaLabel,tabCount:ve.length,currentPosition:pe+1,onClick:he=>{g(ie,he)},onKeyDown:Ie,onFocus:()=>{ze||Ee(ie),Ne(ie),de(),I.current&&(l||(I.current.scrollLeft=0),I.current.scrollTop=0)},onBlur:()=>{Ee(void 0)},onMouseDown:he=>He(ie,he),onMouseUp:()=>{Re(!1)}})}),ke=()=>j(()=>{var ie;const Q=new Map,pe=(ie=E.current)==null?void 0:ie.getBoundingClientRect();return C.forEach(({key:he})=>{var Te;const xe=(Te=E.current)==null?void 0:Te.querySelector(`[data-node-key="${ev(he)}"]`);if(xe){const[Fe,Je,tt,Ze]=OM(xe,pe);Q.set(he,{width:Fe,height:Je,left:tt,top:Ze})}}),Q});i.useEffect(()=>{ke()},[C.map(Q=>Q.key).join("_")]);const De=Jb(()=>{const Q=Qr(S),pe=Qr(x),ie=Qr(w);L([Q[0]-pe[0]-ie[0],Q[1]-pe[1]-ie[1]]);const he=Qr(P);W(he);const xe=Qr(R);X(xe);const Te=Qr(E);D([Te[0]-he[0],Te[1]-he[1]]),ke()}),ot=C.slice(0,be),qe=C.slice(me+1),ft=[...ot,...qe],Qe=V.get(a),{style:st}=SM({activeTabOffset:Qe,horizontal:M,indicator:b,rtl:l});i.useEffect(()=>{Ne()},[a,q,oe,Mp(Qe),Mp(V),M]),i.useEffect(()=>{De()},[l]);const lt=!!ft.length,Se=`${v}-nav-wrap`;let Be,Pe,ye,ce;return M?l?(Pe=O>0,Be=O!==oe):(Be=O<0,Pe=O!==q):(ye=T<0,ce=T!==q),i.createElement(Fn,{onResize:De},i.createElement("div",{ref:qn(t,S),role:"tablist","aria-orientation":M?"horizontal":"vertical",className:z(`${v}-nav`,n,$==null?void 0:$.header),style:{...y==null?void 0:y.header,...r},onKeyDown:()=>{de()}},i.createElement(Np,{ref:x,position:"left",extra:c,prefixCls:v}),i.createElement(Fn,{onResize:De},i.createElement("div",{className:z(Se,{[`${Se}-ping-left`]:Be,[`${Se}-ping-right`]:Pe,[`${Se}-ping-top`]:ye,[`${Se}-ping-bottom`]:ce}),ref:I},i.createElement(Fn,{onResize:De},i.createElement("div",{ref:E,className:`${v}-nav-list`,style:{transform:`translate(${O}px, ${T}px)`,transition:ae?"none":void 0}},$e,i.createElement(tv,{ref:P,prefixCls:v,locale:d,editable:u,style:{...$e.length===0?void 0:re,visibility:lt?"hidden":null}}),i.createElement("div",{className:z(`${v}-ink-bar`,$==null?void 0:$.indicator,{[`${v}-ink-bar-animated`]:s.inkBar}),style:{...st,...y==null?void 0:y.indicator}}))))),i.createElement(NM,Xc({},e,{removeAriaLabel:d==null?void 0:d.removeAriaLabel,ref:R,prefixCls:v,tabs:ft,className:!lt&&ue,popupStyle:y==null?void 0:y.popup,tabMoving:!!ae})),i.createElement(Np,{ref:w,position:"right",extra:c,prefixCls:v})))}),AM=({renderTabBar:e,...t})=>e?e(t,Tp):i.createElement(Tp,t),zM=i.forwardRef((e,t)=>{const{prefixCls:n,className:r,style:o,id:s,active:a,tabKey:l,children:c}=e,u=i.Children.count(c)>0;return i.createElement("div",{id:s&&`${s}-panel-${l}`,role:"tabpanel",tabIndex:a&&u?0:-1,"aria-labelledby":s&&`${s}-tab-${l}`,"aria-hidden":!a,style:o,className:z(n,a&&`${n}-active`,r),ref:t},c)});function Ii(){return Ii=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{id:t,activeKey:n,animated:r,tabPosition:o,destroyOnHidden:s,contentStyle:a,contentClassName:l}=e,{prefixCls:c,tabs:u}=i.useContext(Ld),d=r.tabPane,f=`${c}-tabpane`;return i.createElement("div",{className:z(`${c}-content-holder`)},i.createElement("div",{className:z(`${c}-content`,`${c}-content-${o}`,{[`${c}-content-animated`]:d})},u.map(m=>{const{key:p,forceRender:g,style:h,className:b,destroyOnHidden:$,...y}=m,v=p===n;return i.createElement(un,Ii({key:p,visible:v,forceRender:g,removeOnLeave:!!(s??$),leavedClassName:`${f}-hidden`},r.tabPaneMotion),({style:C,className:S},x)=>i.createElement(zM,Ii({},y,{prefixCls:f,id:t,tabKey:p,animated:d,active:v,style:{...a,...h,...C},className:z(l,b,S),ref:x})))})))};function LM(e={inkBar:!0,tabPane:!1}){let t;return e===!1?t={inkBar:!1,tabPane:!1}:e===!0?t={inkBar:!0,tabPane:!1}:t={inkBar:!0,...typeof e=="object"?e:{}},t.tabPaneMotion&&t.tabPane===void 0&&(t.tabPane=!0),!t.tabPaneMotion&&t.tabPane&&(t.tabPane=!1),t}function Go(){return Go=Object.assign?Object.assign.bind():function(e){for(var t=1;t{var V;const{id:n,prefixCls:r="rc-tabs",className:o,items:s,direction:a,activeKey:l,defaultActiveKey:c,editable:u,animated:d,tabPosition:f="top",tabBarGutter:m,tabBarStyle:p,tabBarExtraContent:g,locale:h,more:b,destroyOnHidden:$,renderTabBar:y,onChange:v,onTabClick:C,onTabScroll:S,getPopupContainer:x,popupClassName:w,indicator:I,classNames:E,styles:R,...P}=e,M=i.useMemo(()=>(s||[]).filter(G=>G&&typeof G=="object"&&"key"in G),[s]),O=a==="rtl",A=LM(d),[T,F]=i.useState(!1);i.useEffect(()=>{F(CM())},[]);const[H,L]=bt(c??((V=M[0])==null?void 0:V.key),l),[B,D]=i.useState(()=>M.findIndex(G=>G.key===H));i.useEffect(()=>{var te;let G=M.findIndex(ee=>ee.key===H);G===-1&&(G=Math.max(0,Math.min(B,M.length-1)),L((te=M[G])==null?void 0:te.key)),D(G)},[M.map(G=>G.key).join("_"),H,B]);const[k,W]=bt(null,n);i.useEffect(()=>{n||(W(`rc-tabs-${Op}`),Op+=1)},[]);function _(G,te){C==null||C(G,te);const ee=G!==H;L(G),ee&&(v==null||v(G))}const X={id:k,activeKey:H,animated:A,tabPosition:f,rtl:O,mobile:T},U={...X,editable:u,locale:h,more:b,tabBarGutter:m,onTabClick:_,onTabScroll:S,extra:g,style:p,getPopupContainer:x,popupClassName:z(w,E==null?void 0:E.popup),indicator:I,styles:R,classNames:E},j=i.useMemo(()=>({tabs:M,prefixCls:r}),[M,r]);return i.createElement(Ld.Provider,{value:j},i.createElement("div",Go({ref:t,id:n,className:z(r,`${r}-${f}`,{[`${r}-mobile`]:T,[`${r}-editable`]:u,[`${r}-rtl`]:O},o)},P),i.createElement(AM,Go({},U,{renderTabBar:y})),i.createElement(BM,Go({destroyOnHidden:$},X,{contentStyle:R==null?void 0:R.content,contentClassName:E==null?void 0:E.content,animated:A}))))}),DM={motionAppear:!1,motionEnter:!0,motionLeave:!0};function FM(e,t={inkBar:!0,tabPane:!1}){let n;return t===!1?n={inkBar:!1,tabPane:!1}:t===!0?n={inkBar:!0,tabPane:!0}:n={inkBar:!0,...typeof t=="object"?t:{}},n.tabPane&&(n.tabPaneMotion={...DM,motionName:lr(e,"switch")}),n}function _M(e){return e.filter(t=>t)}function kM(e,t){if(e)return e.map(r=>({...r,destroyOnHidden:r.destroyOnHidden??r.destroyInactiveTabPane}));const n=Vt(t).map(r=>{if(i.isValidElement(r)){const{key:o,props:s}=r,{tab:a,...l}=s||{};return{key:String(o),...l,label:a}}return null});return _M(n)}const VM=e=>{const{componentCls:t,motionDurationSlow:n}=e;return[{[t]:{[`${t}-switch`]:{"&-appear, &-enter":{transition:"none","&-start":{opacity:0},"&-active":{opacity:1,transition:`opacity ${n}`}},"&-leave":{position:"absolute",transition:"none",inset:0,"&-start":{opacity:1},"&-active":{opacity:0,transition:`opacity ${n}`}}}}},[cr(e,"slide-up"),cr(e,"slide-down")]]},WM=e=>{const{componentCls:t,tabsCardPadding:n,cardBg:r,cardGutter:o,colorBorderSecondary:s,itemSelectedColor:a}=e;return{[`${t}-card`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{margin:0,padding:n,background:r,border:`${K(e.lineWidth)} ${e.lineType} ${s}`,transition:`all ${e.motionDurationSlow} ${e.motionEaseInOut}`},[`${t}-tab-active`]:{color:a,background:e.colorBgContainer},[`${t}-tab-focus:has(${t}-tab-btn:focus-visible)`]:ho(e,-3),[`& ${t}-tab${t}-tab-focus ${t}-tab-btn:focus-visible`]:{outline:"none"},[`${t}-ink-bar`]:{visibility:"hidden"}},[`&${t}-top, &${t}-bottom`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab + ${t}-tab`]:{marginLeft:{_skip_check_:!0,value:K(o)}}}},[`&${t}-top`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{borderRadius:`${K(e.borderRadiusLG)} ${K(e.borderRadiusLG)} 0 0`},[`${t}-tab-active`]:{borderBottomColor:e.colorBgContainer}}},[`&${t}-bottom`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{borderRadius:`0 0 ${K(e.borderRadiusLG)} ${K(e.borderRadiusLG)}`},[`${t}-tab-active`]:{borderTopColor:e.colorBgContainer}}},[`&${t}-left, &${t}-right`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab + ${t}-tab`]:{marginTop:K(o)}}},[`&${t}-left`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{borderRadius:{_skip_check_:!0,value:`${K(e.borderRadiusLG)} 0 0 ${K(e.borderRadiusLG)}`}},[`${t}-tab-active`]:{borderRightColor:{_skip_check_:!0,value:e.colorBgContainer}}}},[`&${t}-right`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{borderRadius:{_skip_check_:!0,value:`0 ${K(e.borderRadiusLG)} ${K(e.borderRadiusLG)} 0`}},[`${t}-tab-active`]:{borderLeftColor:{_skip_check_:!0,value:e.colorBgContainer}}}}}}},jM=e=>{const{componentCls:t,itemHoverColor:n,dropdownEdgeChildVerticalPadding:r}=e;return{[`${t}-dropdown`]:{...Ct(e),position:"absolute",top:-9999,left:{_skip_check_:!0,value:-9999},zIndex:e.zIndexPopup,display:"block","&-hidden":{display:"none"},[`${t}-dropdown-menu`]:{maxHeight:e.tabsDropdownHeight,margin:0,padding:`${K(r)} 0`,overflowX:"hidden",overflowY:"auto",textAlign:{_skip_check_:!0,value:"left"},listStyleType:"none",backgroundColor:e.colorBgContainer,backgroundClip:"padding-box",borderRadius:e.borderRadiusLG,outline:"none",boxShadow:e.boxShadowSecondary,"&-item":{...Wn,display:"flex",alignItems:"center",minWidth:e.tabsDropdownWidth,margin:0,padding:`${K(e.paddingXXS)} ${K(e.paddingSM)}`,color:e.colorText,fontWeight:"normal",fontSize:e.fontSize,lineHeight:e.lineHeight,cursor:"pointer",transition:`all ${e.motionDurationSlow}`,"> span":{flex:1,whiteSpace:"nowrap"},"&-remove":{flex:"none",marginLeft:{_skip_check_:!0,value:e.marginSM},color:e.colorIcon,fontSize:e.fontSizeSM,background:"transparent",border:0,cursor:"pointer","&:hover":{color:n}},"&:hover":{background:e.controlItemBgHover},"&-disabled":{"&, &:hover":{color:e.colorTextDisabled,background:"transparent",cursor:"not-allowed"}}}}}}},qM=e=>{const{componentCls:t,margin:n,colorBorderSecondary:r,horizontalMargin:o,verticalItemPadding:s,verticalItemMargin:a,motionDurationSlow:l,calc:c}=e;return{[`${t}-top, ${t}-bottom`]:{flexDirection:"column",[`> ${t}-nav, > div > ${t}-nav`]:{margin:o,"&::before":{position:"absolute",right:{_skip_check_:!0,value:0},left:{_skip_check_:!0,value:0},borderBottom:`${K(e.lineWidth)} ${e.lineType} ${r}`,content:"''"},[`${t}-ink-bar`]:{height:e.lineWidthBold,"&-animated":{transition:["width","left","right"].map(u=>`${u} ${l}`).join(", ")}},[`${t}-nav-wrap`]:{"&::before, &::after":{top:0,bottom:0,width:e.controlHeight},"&::before":{left:{_skip_check_:!0,value:0},boxShadow:e.boxShadowTabsOverflowLeft},"&::after":{right:{_skip_check_:!0,value:0},boxShadow:e.boxShadowTabsOverflowRight},[`&${t}-nav-wrap-ping-left::before`]:{opacity:1},[`&${t}-nav-wrap-ping-right::after`]:{opacity:1}}}},[`${t}-top`]:{[`> ${t}-nav, + > div > ${t}-nav`]:{"&::before":{bottom:0},[`${t}-ink-bar`]:{bottom:0}}},[`${t}-bottom`]:{[`> ${t}-nav, > div > ${t}-nav`]:{order:1,marginTop:n,marginBottom:0,"&::before":{top:0},[`${t}-ink-bar`]:{top:0}},[`> ${t}-content-holder, > div > ${t}-content-holder`]:{order:0}},[`${t}-left, ${t}-right`]:{[`> ${t}-nav, > div > ${t}-nav`]:{flexDirection:"column",minWidth:c(e.controlHeight).mul(1.25).equal(),[`${t}-tab`]:{padding:s,textAlign:"center"},[`${t}-tab + ${t}-tab`]:{margin:a},[`${t}-nav-wrap`]:{flexDirection:"column","&::before, &::after":{right:{_skip_check_:!0,value:0},left:{_skip_check_:!0,value:0},height:e.controlHeight},"&::before":{top:0,boxShadow:e.boxShadowTabsOverflowTop},"&::after":{bottom:0,boxShadow:e.boxShadowTabsOverflowBottom},[`&${t}-nav-wrap-ping-top::before`]:{opacity:1},[`&${t}-nav-wrap-ping-bottom::after`]:{opacity:1}},[`${t}-ink-bar`]:{width:e.lineWidthBold,"&-animated":{transition:["height","top"].map(u=>`${u} ${l}`).join(", ")}},[`${t}-nav-list, ${t}-nav-operations`]:{flex:"1 0 auto",flexDirection:"column"}}},[`${t}-left`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-ink-bar`]:{right:{_skip_check_:!0,value:0}}},[`> ${t}-content-holder, > div > ${t}-content-holder`]:{marginLeft:{_skip_check_:!0,value:K(c(e.lineWidth).mul(-1).equal())},borderLeft:{_skip_check_:!0,value:`${K(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},[`> ${t}-content > ${t}-tabpane`]:{paddingLeft:{_skip_check_:!0,value:e.paddingLG}}}},[`${t}-right`]:{[`> ${t}-nav, > div > ${t}-nav`]:{order:1,[`${t}-ink-bar`]:{left:{_skip_check_:!0,value:0}}},[`> ${t}-content-holder, > div > ${t}-content-holder`]:{order:0,marginRight:{_skip_check_:!0,value:c(e.lineWidth).mul(-1).equal()},borderRight:{_skip_check_:!0,value:`${K(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},[`> ${t}-content > ${t}-tabpane`]:{paddingRight:{_skip_check_:!0,value:e.paddingLG}}}}}},GM=e=>{const{componentCls:t,cardPaddingSM:n,cardPaddingLG:r,cardHeightSM:o,cardHeightLG:s,horizontalItemPaddingSM:a,horizontalItemPaddingLG:l}=e;return{[t]:{"&-small":{[`> ${t}-nav`]:{[`${t}-tab`]:{padding:a,fontSize:e.titleFontSizeSM}}},"&-large":{[`> ${t}-nav`]:{[`${t}-tab`]:{padding:l,fontSize:e.titleFontSizeLG,lineHeight:e.lineHeightLG}}}},[`${t}-card`]:{[`&${t}-small`]:{[`> ${t}-nav`]:{[`${t}-tab`]:{padding:n},[`${t}-nav-add`]:{minWidth:o,minHeight:o}},[`&${t}-bottom`]:{[`> ${t}-nav ${t}-tab`]:{borderRadius:`0 0 ${K(e.borderRadius)} ${K(e.borderRadius)}`}},[`&${t}-top`]:{[`> ${t}-nav ${t}-tab`]:{borderRadius:`${K(e.borderRadius)} ${K(e.borderRadius)} 0 0`}},[`&${t}-right`]:{[`> ${t}-nav ${t}-tab`]:{borderRadius:{_skip_check_:!0,value:`0 ${K(e.borderRadius)} ${K(e.borderRadius)} 0`}}},[`&${t}-left`]:{[`> ${t}-nav ${t}-tab`]:{borderRadius:{_skip_check_:!0,value:`${K(e.borderRadius)} 0 0 ${K(e.borderRadius)}`}}}},[`&${t}-large`]:{[`> ${t}-nav`]:{[`${t}-tab`]:{padding:r},[`${t}-nav-add`]:{minWidth:s,minHeight:s}}}}}},XM=e=>{const{componentCls:t,itemActiveColor:n,itemHoverColor:r,iconCls:o,tabsHorizontalItemMargin:s,horizontalItemPadding:a,itemSelectedColor:l,itemColor:c}=e,u=`${t}-tab`;return{[u]:{position:"relative",WebkitTouchCallout:"none",WebkitTapHighlightColor:"transparent",display:"inline-flex",alignItems:"center",padding:a,fontSize:e.titleFontSize,background:"transparent",border:0,outline:"none",cursor:"pointer",color:c,"&-btn, &-remove":{"&:focus:not(:focus-visible), &:active":{color:n}},"&-btn":{outline:"none",transition:`all ${e.motionDurationSlow}`,[`${u}-icon:not(:last-child)`]:{marginInlineEnd:e.marginSM}},"&-remove":{flex:"none",lineHeight:1,marginRight:{_skip_check_:!0,value:e.calc(e.marginXXS).mul(-1).equal()},marginLeft:{_skip_check_:!0,value:e.marginXS},color:e.colorIcon,fontSize:e.fontSizeSM,background:"transparent",border:"none",outline:"none",cursor:"pointer",transition:`all ${e.motionDurationSlow}`,"&:hover":{color:e.colorTextHeading},...bn(e)},"&:hover":{color:r},[`&${u}-active ${u}-btn`]:{color:l},[`&${u}-focus ${u}-btn:focus-visible`]:ho(e),[`&${u}-disabled`]:{color:e.colorTextDisabled,cursor:"not-allowed"},[`&${u}-disabled ${u}-btn, &${u}-disabled ${t}-remove`]:{"&:focus, &:active":{color:e.colorTextDisabled}},[`& ${u}-remove ${o}`]:{margin:0,verticalAlign:"middle"},[`${o}:not(:last-child)`]:{marginRight:{_skip_check_:!0,value:e.marginSM}}},[`${u} + ${u}`]:{margin:{_skip_check_:!0,value:s}}}},UM=e=>{const{componentCls:t,tabsHorizontalItemMarginRTL:n,iconCls:r,cardGutter:o,calc:s}=e;return{[`${t}-rtl`]:{direction:"rtl",[`${t}-nav`]:{[`${t}-tab`]:{margin:{_skip_check_:!0,value:n},[`${t}-tab:last-of-type`]:{marginLeft:{_skip_check_:!0,value:0}},[r]:{marginRight:{_skip_check_:!0,value:0},marginLeft:{_skip_check_:!0,value:K(e.marginSM)}},[`${t}-tab-remove`]:{marginRight:{_skip_check_:!0,value:K(e.marginXS)},marginLeft:{_skip_check_:!0,value:K(s(e.marginXXS).mul(-1).equal())},[r]:{margin:0}}}},[`&${t}-left`]:{[`> ${t}-nav`]:{order:1},[`> ${t}-content-holder`]:{order:0}},[`&${t}-right`]:{[`> ${t}-nav`]:{order:0},[`> ${t}-content-holder`]:{order:1}},[`&${t}-card${t}-top, &${t}-card${t}-bottom`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab + ${t}-tab`]:{marginRight:{_skip_check_:!0,value:o},marginLeft:{_skip_check_:!0,value:0}}}}},[`${t}-dropdown-rtl`]:{direction:"rtl"},[`${t}-menu-item`]:{[`${t}-dropdown-rtl`]:{textAlign:{_skip_check_:!0,value:"right"}}}}},KM=e=>{const{componentCls:t,tabsCardPadding:n,cardHeight:r,cardGutter:o,itemHoverColor:s,itemActiveColor:a,colorBorderSecondary:l}=e;return{[t]:{...Ct(e),display:"flex",[`> ${t}-nav, > div > ${t}-nav`]:{position:"relative",display:"flex",flex:"none",alignItems:"center",[`${t}-nav-wrap`]:{position:"relative",display:"flex",flex:"auto",alignSelf:"stretch",overflow:"hidden",whiteSpace:"nowrap",transform:"translate(0)","&::before, &::after":{position:"absolute",zIndex:1,opacity:0,transition:`opacity ${e.motionDurationSlow}`,content:"''",pointerEvents:"none"}},[`${t}-nav-list`]:{position:"relative",display:"flex",transition:`opacity ${e.motionDurationSlow}`},[`${t}-nav-operations`]:{display:"flex",alignSelf:"stretch"},[`${t}-nav-operations-hidden`]:{position:"absolute",visibility:"hidden",pointerEvents:"none"},[`${t}-nav-more`]:{position:"relative",padding:n,background:"transparent",border:0,color:e.colorText,"&::after":{position:"absolute",right:{_skip_check_:!0,value:0},bottom:0,left:{_skip_check_:!0,value:0},height:e.calc(e.controlHeightLG).div(8).equal(),transform:"translateY(100%)",content:"''"}},[`${t}-nav-add`]:{minWidth:r,minHeight:r,marginLeft:{_skip_check_:!0,value:o},background:"transparent",border:`${K(e.lineWidth)} ${e.lineType} ${l}`,borderRadius:`${K(e.borderRadiusLG)} ${K(e.borderRadiusLG)} 0 0`,outline:"none",cursor:"pointer",color:e.colorText,transition:`all ${e.motionDurationSlow} ${e.motionEaseInOut}`,"&:hover":{color:s},"&:active, &:focus:not(:focus-visible)":{color:a},...bn(e,-3)}},[`${t}-extra-content`]:{flex:"none"},[`${t}-ink-bar`]:{position:"absolute",background:e.inkBarColor,pointerEvents:"none"},...XM(e),[`${t}-content`]:{position:"relative",width:"100%"},[`${t}-content-holder`]:{flex:"auto",minWidth:0,minHeight:0},[`${t}-tabpane`]:{...bn(e),"&-hidden":{display:"none"}}},[`${t}-centered`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-nav-wrap`]:{[`&:not([class*='${t}-nav-wrap-ping']) > ${t}-nav-list`]:{margin:"auto"}}}}}},YM=e=>{const{cardHeight:t,cardHeightSM:n,cardHeightLG:r,controlHeight:o,controlHeightLG:s}=e,a=t||s,l=n||o,c=r||s+8;return{zIndexPopup:e.zIndexPopupBase+50,cardBg:e.colorFillAlter,cardHeight:a,cardHeightSM:l,cardHeightLG:c,cardPadding:`${(a-e.fontHeight)/2-e.lineWidth}px ${e.padding}px`,cardPaddingSM:`${(l-e.fontHeight)/2-e.lineWidth}px ${e.paddingXS}px`,cardPaddingLG:`${(c-e.fontHeightLG)/2-e.lineWidth}px ${e.padding}px`,titleFontSize:e.fontSize,titleFontSizeLG:e.fontSizeLG,titleFontSizeSM:e.fontSize,inkBarColor:e.colorPrimary,horizontalMargin:`0 0 ${e.margin}px 0`,horizontalItemGutter:32,horizontalItemMargin:"",horizontalItemMarginRTL:"",horizontalItemPadding:`${e.paddingSM}px 0`,horizontalItemPaddingSM:`${e.paddingXS}px 0`,horizontalItemPaddingLG:`${e.padding}px 0`,verticalItemPadding:`${e.paddingXS}px ${e.paddingLG}px`,verticalItemMargin:`${e.margin}px 0 0 0`,itemColor:e.colorText,itemSelectedColor:e.colorPrimary,itemHoverColor:e.colorPrimaryHover,itemActiveColor:e.colorPrimaryActive,cardGutter:e.marginXXS/2}},QM=at("Tabs",e=>{const t=rt(e,{tabsCardPadding:e.cardPadding,dropdownEdgeChildVerticalPadding:e.paddingXXS,tabsDropdownHeight:200,tabsDropdownWidth:120,tabsHorizontalItemMargin:`0 0 0 ${K(e.horizontalItemGutter)}`,tabsHorizontalItemMarginRTL:`0 0 0 ${K(e.horizontalItemGutter)}`});return[GM(t),UM(t),qM(t),jM(t),WM(t),KM(t),VM(t)]},YM),ZM=()=>null,JM=i.forwardRef((e,t)=>{var q,oe,Z,J;const{type:n,className:r,rootClassName:o,size:s,onEdit:a,hideAdd:l,centered:c,addIcon:u,removeIcon:d,moreIcon:f,more:m,popupClassName:p,children:g,items:h,animated:b,style:$,indicatorSize:y,indicator:v,classNames:C,styles:S,destroyInactiveTabPane:x,destroyOnHidden:w,tabPlacement:I,tabPosition:E,...R}=e,{prefixCls:P}=R,{getPrefixCls:M,direction:O,getPopupContainer:A,className:T,style:F,classNames:H,styles:L}=dt("tabs"),{tabs:B}=i.useContext(je),D=M("tabs",P),k=_t(D),[W,_]=QM(D,k),X=i.useRef(null);i.useImperativeHandle(t,()=>({nativeElement:X.current}));let U;n==="editable-card"&&(U={onEdit:(ae,{key:we,event:de})=>{a==null||a(ae==="add"?de:we,ae)},removeIcon:d??(B==null?void 0:B.removeIcon)??i.createElement(Br,null),addIcon:(u??(B==null?void 0:B.addIcon))||i.createElement(Zb,null),showAdd:l!==!0});const j=M(),V=Jt(s),G=kM(h,g),te=FM(D,b),ee={align:(v==null?void 0:v.align)??((q=B==null?void 0:B.indicator)==null?void 0:q.align),size:(v==null?void 0:v.size)??y??((oe=B==null?void 0:B.indicator)==null?void 0:oe.size)??(B==null?void 0:B.indicatorSize)},ne=i.useMemo(()=>{const ae=I??E??void 0,we=O==="rtl";switch(ae){case"start":return we?"right":"left";case"end":return we?"left":"right";default:return ae}},[I,E,O]),Y={...e,size:V,tabPlacement:ne,items:G},[se,ue]=pt([H,C],[L,S],{props:Y},{popup:{_default:"root"}});return i.createElement(HM,{ref:X,direction:O,getPopupContainer:A,...R,items:G,className:z({[`${D}-${V}`]:V,[`${D}-card`]:["card","editable-card"].includes(n),[`${D}-editable-card`]:n==="editable-card",[`${D}-centered`]:c},T,r,o,se.root,W,_,k),classNames:{...se,popup:z(p,W,_,k,(Z=se.popup)==null?void 0:Z.root)},styles:ue,style:{...ue.root,...F,...$},editable:U,more:{icon:((J=B==null?void 0:B.more)==null?void 0:J.icon)??(B==null?void 0:B.moreIcon)??f??i.createElement(Ad,null),transitionName:`${j}-slide-up`,...m},prefixCls:D,animated:te,indicator:ee,destroyOnHidden:w??x,tabPosition:ne})}),e4=JM;e4.TabPane=ZM;const t4=e=>{const{componentCls:t}=e;return{[t]:{"&-horizontal":{[`&${t}`]:{"&-sm":{marginBlock:e.marginXS},"&-md":{marginBlock:e.margin}}}}}},n4=e=>{const{componentCls:t,sizePaddingEdgeHorizontal:n,colorSplit:r,lineWidth:o,textPaddingInline:s,orientationMargin:a,verticalMarginInline:l}=e,c=`${t}-rail`;return{[t]:{...Ct(e),borderBlockStart:`${K(o)} solid ${r}`,[c]:{borderBlockStart:`${K(o)} solid ${r}`},"&-vertical":{position:"relative",top:"-0.06em",display:"inline-block",height:"0.9em",marginInline:l,marginBlock:0,verticalAlign:"middle",borderTop:0,borderInlineStart:`${K(o)} solid ${r}`},"&-horizontal":{display:"flex",clear:"both",width:"100%",minWidth:"100%",margin:`${K(e.marginLG)} 0`},[`&-horizontal${t}-with-text`]:{display:"flex",alignItems:"center",margin:`${K(e.dividerHorizontalWithTextGutterMargin)} 0`,color:e.colorTextHeading,fontWeight:500,fontSize:e.fontSizeLG,whiteSpace:"nowrap",textAlign:"center",borderBlockStart:`0 ${r}`,[`${c}-start, ${c}-end`]:{width:"50%",borderBlockStartColor:"inherit",borderBlockEnd:0,content:"''"}},[`&-horizontal${t}-with-text-start`]:{[`${c}-start`]:{width:`calc(${a} * 100%)`},[`${c}-end`]:{width:`calc(100% - ${a} * 100%)`}},[`&-horizontal${t}-with-text-end`]:{[`${c}-start`]:{width:`calc(100% - ${a} * 100%)`},[`${c}-end`]:{width:`calc(${a} * 100%)`}},[`${t}-inner-text`]:{display:"inline-block",paddingBlock:0,paddingInline:s},"&-dashed":{background:"none",borderColor:r,borderStyle:"dashed",borderWidth:`${K(o)} 0 0`,[c]:{borderBlockStart:`${K(o)} dashed ${r}`}},[`&-horizontal${t}-with-text${t}-dashed`]:{[`${c}-start, ${c}-end`]:{borderStyle:"dashed none none"}},[`&-vertical${t}-dashed`]:{borderInlineStartWidth:o,borderInlineEnd:0,borderBlockStart:0,borderBlockEnd:0},"&-dotted":{background:"none",borderColor:r,borderStyle:"dotted",borderWidth:`${K(o)} 0 0`,[c]:{borderBlockStart:`${K(o)} dotted ${r}`}},[`&-horizontal${t}-with-text${t}-dotted`]:{"&::before, &::after":{borderStyle:"dotted none none"}},[`&-vertical${t}-dotted`]:{borderInlineStartWidth:o,borderInlineEnd:0,borderBlockStart:0,borderBlockEnd:0},[`&-plain${t}-with-text`]:{color:e.colorText,fontWeight:"normal",fontSize:e.fontSize},[`&-horizontal${t}-with-text-start${t}-no-default-orientation-margin-start`]:{[`${c}-start`]:{width:0},[`${c}-end`]:{width:"100%"},[`${t}-inner-text`]:{paddingInlineStart:n}},[`&-horizontal${t}-with-text-end${t}-no-default-orientation-margin-end`]:{[`${c}-start`]:{width:"100%"},[`${c}-end`]:{width:0},[`${t}-inner-text`]:{paddingInlineEnd:n}}}}},r4=e=>({textPaddingInline:"1em",orientationMargin:.05,verticalMarginInline:e.marginXS}),o4=at("Divider",e=>{const t=rt(e,{dividerHorizontalWithTextGutterMargin:e.margin,sizePaddingEdgeHorizontal:0});return[n4(t),t4(t)]},r4,{unitless:{orientationMargin:!0}}),s4=["left","right","center","start","end"],i4={small:"sm",middle:"md"},a4=e=>{const{getPrefixCls:t,direction:n,className:r,style:o,classNames:s,styles:a}=dt("divider"),{prefixCls:l,type:c,orientation:u,vertical:d,titlePlacement:f,orientationMargin:m,className:p,rootClassName:g,children:h,dashed:b,variant:$="solid",plain:y,style:v,size:C,classNames:S,styles:x,...w}=e,I=t("divider",l),E=`${I}-rail`,[R,P]=o4(I),M=Jt(C),O=i4[M],A=!!h,T=s4.includes(u||""),F=i.useMemo(()=>{const V=f??(T?u:"center");return V==="left"?n==="rtl"?"end":"start":V==="right"?n==="rtl"?"start":"end":V},[n,u,f,T]),H=F==="start"&&m!=null,L=F==="end"&&m!=null,[B,D]=vo(u,d,c),k={...e,orientation:B,titlePlacement:F,size:M},[W,_]=pt([s,S],[a,x],{props:k}),X=z(I,r,R,P,`${I}-${B}`,{[`${I}-with-text`]:A,[`${I}-with-text-${F}`]:A,[`${I}-dashed`]:!!b,[`${I}-${$}`]:$!=="solid",[`${I}-plain`]:!!y,[`${I}-rtl`]:n==="rtl",[`${I}-no-default-orientation-margin-start`]:H,[`${I}-no-default-orientation-margin-end`]:L,[`${I}-${O}`]:!!O,[E]:!h,[W.rail]:W.rail&&!h},p,g,W.root),U=i.useMemo(()=>typeof m=="number"?m:/^\d+$/.test(m)?Number(m):m,[m]),j={marginInlineStart:H?U:void 0,marginInlineEnd:L?U:void 0};return i.createElement("div",{className:X,style:{...o,..._.root,...h?{}:_.rail,...v},...w,role:"separator"},h&&!D&&i.createElement(i.Fragment,null,i.createElement("div",{className:z(E,`${E}-start`,W.rail),style:_.rail}),i.createElement("span",{className:z(`${I}-inner-text`,W.content),style:{...j,..._.content}},h),i.createElement("div",{className:z(E,`${E}-end`,W.rail),style:_.rail})))},Ap=(e,t)=>{if(!e)return null;const n={left:e.offsetLeft,right:e.parentElement.clientWidth-e.clientWidth-e.offsetLeft,width:e.clientWidth,top:e.offsetTop,bottom:e.parentElement.clientHeight-e.clientHeight-e.offsetTop,height:e.clientHeight};return t?{left:0,right:0,width:0,top:n.top,bottom:n.bottom,height:n.height}:{left:n.left,right:n.right,width:n.width,top:0,bottom:0,height:0}},Mn=e=>e!==void 0?`${e}px`:void 0;function l4(e){const{prefixCls:t,containerRef:n,value:r,getValueIndex:o,motionName:s,onMotionStart:a,onMotionEnd:l,direction:c,vertical:u=!1}=e,d=i.useRef(null),[f,m]=i.useState(r),p=w=>{var R;const I=o(w),E=(R=n.current)==null?void 0:R.querySelectorAll(`.${t}-item`)[I];return(E==null?void 0:E.offsetParent)&&E},[g,h]=i.useState(null),[b,$]=i.useState(null);nt(()=>{if(f!==r){const w=p(f),I=p(r),E=Ap(w,u),R=Ap(I,u);m(r),h(E),$(R),w&&I?a():l()}},[r]);const y=i.useMemo(()=>Mn(u?(g==null?void 0:g.top)??0:c==="rtl"?-(g==null?void 0:g.right):g==null?void 0:g.left),[u,c,g]),v=i.useMemo(()=>Mn(u?(b==null?void 0:b.top)??0:c==="rtl"?-(b==null?void 0:b.right):b==null?void 0:b.left),[u,c,b]),C=()=>u?{transform:"translateY(var(--thumb-start-top))",height:"var(--thumb-start-height)"}:{transform:"translateX(var(--thumb-start-left))",width:"var(--thumb-start-width)"},S=()=>u?{transform:"translateY(var(--thumb-active-top))",height:"var(--thumb-active-height)"}:{transform:"translateX(var(--thumb-active-left))",width:"var(--thumb-active-width)"},x=()=>{h(null),$(null),l()};return!g||!b?null:i.createElement(un,{visible:!0,motionName:s,motionAppear:!0,onAppearStart:C,onAppearActive:S,onVisibleChanged:x},({className:w,style:I},E)=>{const R={...I,"--thumb-start-left":y,"--thumb-start-width":Mn(g==null?void 0:g.width),"--thumb-active-left":v,"--thumb-active-width":Mn(b==null?void 0:b.width),"--thumb-start-top":y,"--thumb-start-height":Mn(g==null?void 0:g.height),"--thumb-active-top":v,"--thumb-active-height":Mn(b==null?void 0:b.height)},P={ref:Ft(d,E),style:R,className:z(`${t}-thumb`,w)};return i.createElement("div",P)})}function c4(e){var t;if(typeof e.title<"u")return e.title;if(typeof e.label!="object")return(t=e.label)==null?void 0:t.toString()}function u4(e){return e.map(t=>{if(typeof t=="object"&&t!==null){const n=c4(t);return{...t,title:n}}return{label:t==null?void 0:t.toString(),title:t==null?void 0:t.toString(),value:t}})}const d4=({prefixCls:e,className:t,style:n,styles:r,classNames:o,data:s,disabled:a,checked:l,label:c,title:u,value:d,name:f,onChange:m,onFocus:p,onBlur:g,onKeyDown:h,onKeyUp:b,onMouseDown:$,itemRender:y=v=>v})=>{const v=S=>{a||m(S,d)},C=i.createElement("label",{className:z(t,{[`${e}-item-disabled`]:a}),style:n,onMouseDown:$},i.createElement("input",{name:f,className:`${e}-item-input`,type:"radio",disabled:a,checked:l,onChange:v,onFocus:p,onBlur:g,onKeyDown:h,onKeyUp:b}),i.createElement("div",{className:z(`${e}-item-label`,o==null?void 0:o.label),title:u,style:r==null?void 0:r.label},c));return y(C,{item:s})},f4=i.forwardRef((e,t)=>{var W;const{prefixCls:n="rc-segmented",direction:r,vertical:o,options:s=[],disabled:a,defaultValue:l,value:c,name:u,onChange:d,className:f="",style:m,styles:p,classNames:g,motionName:h="thumb-motion",itemRender:b,...$}=e,y=i.useRef(null),v=i.useMemo(()=>Ft(y,t),[y,t]),C=i.useMemo(()=>u4(s),[s]),[S,x]=bt(l??((W=C[0])==null?void 0:W.value),c),[w,I]=i.useState(!1),E=(_,X)=>{x(X),d==null||d(X)},R=yt($,["children"]),[P,M]=i.useState(!1),[O,A]=i.useState(!1),T=()=>{A(!0)},F=()=>{A(!1)},H=()=>{M(!1)},L=_=>{_.key==="Tab"&&M(!0)},B=_=>{const X=C.findIndex(G=>G.value===S),U=C.length,j=(X+_+U)%U,V=C[j];V&&(x(V.value),d==null||d(V.value))},D=_=>{switch(_.key){case"ArrowLeft":case"ArrowUp":B(-1);break;case"ArrowRight":case"ArrowDown":B(1);break}},k=_=>{const{value:X,disabled:U}=_;return i.createElement(d4,Et({},_,{name:u,data:_,itemRender:b,key:X,prefixCls:n,className:z(_.className,`${n}-item`,g==null?void 0:g.item,{[`${n}-item-selected`]:X===S&&!w,[`${n}-item-focused`]:O&&P&&X===S}),style:p==null?void 0:p.item,classNames:g,styles:p,checked:X===S,onChange:E,onFocus:T,onBlur:F,onKeyDown:D,onKeyUp:L,onMouseDown:H,disabled:!!a||!!U}))};return i.createElement("div",Et({role:"radiogroup","aria-label":"segmented control",tabIndex:a?void 0:0,"aria-orientation":o?"vertical":"horizontal",style:m},R,{className:z(n,{[`${n}-rtl`]:r==="rtl",[`${n}-disabled`]:a,[`${n}-vertical`]:o},f),ref:v}),i.createElement("div",{className:`${n}-group`},i.createElement(l4,{vertical:o,prefixCls:n,value:S,containerRef:y,motionName:`${n}-${h}`,direction:r,getValueIndex:_=>C.findIndex(X=>X.value===_),onMotionStart:()=>{I(!0)},onMotionEnd:()=>{I(!1)}}),C.map(k)))}),m4=f4;function zp(e,t){return{[`${e}, ${e}:hover, ${e}:focus`]:{color:t.colorTextDisabled,cursor:"not-allowed"}}}function Bp(e){return{background:e.itemSelectedBg,boxShadow:e.boxShadowTertiary}}const p4={overflow:"hidden",...Wn},g4=e=>{const{componentCls:t,motionDurationSlow:n,motionEaseInOut:r,motionDurationMid:o}=e,s=e.calc(e.controlHeight).sub(e.calc(e.trackPadding).mul(2)).equal(),a=e.calc(e.controlHeightLG).sub(e.calc(e.trackPadding).mul(2)).equal(),l=e.calc(e.controlHeightSM).sub(e.calc(e.trackPadding).mul(2)).equal();return{[t]:{...Ct(e),display:"inline-block",padding:e.trackPadding,color:e.itemColor,background:e.trackBg,borderRadius:e.borderRadius,transition:`all ${o}`,...bn(e),[`${t}-group`]:{position:"relative",display:"flex",alignItems:"stretch",justifyItems:"flex-start",flexDirection:"row",width:"100%"},[`&${t}-rtl`]:{direction:"rtl"},[`&${t}-vertical`]:{[`${t}-group`]:{flexDirection:"column"},[`${t}-thumb`]:{width:"100%",height:0,padding:`0 ${K(e.paddingXXS)}`}},[`&${t}-block`]:{display:"flex"},[`&${t}-block ${t}-item`]:{flex:1,minWidth:0},[`${t}-item`]:{position:"relative",textAlign:"center",cursor:"pointer",transition:`color ${o}`,borderRadius:e.borderRadiusSM,transform:"translateZ(0)","&-selected":{...Bp(e),color:e.itemSelectedColor},"&-focused":ho(e),"&::after":{content:'""',position:"absolute",zIndex:-1,width:"100%",height:"100%",top:0,insetInlineStart:0,borderRadius:"inherit",opacity:0,pointerEvents:"none",transition:["opacity","background-color"].map(c=>`${c} ${o}`).join(", ")},[`&:not(${t}-item-selected):not(${t}-item-disabled)`]:{"&:hover, &:active":{color:e.itemHoverColor},"&:hover::after":{opacity:1,backgroundColor:e.itemHoverBg},"&:active::after":{opacity:1,backgroundColor:e.itemActiveBg}},"&-label":{minHeight:s,lineHeight:K(s),padding:`0 ${K(e.segmentedPaddingHorizontal)}`,...p4},"&-icon + *":{marginInlineStart:e.calc(e.marginSM).div(2).equal()},"&-input":{position:"absolute",insetBlockStart:0,insetInlineStart:0,width:0,height:0,opacity:0,pointerEvents:"none"}},[`${t}-thumb`]:{...Bp(e),position:"absolute",insetBlockStart:0,insetInlineStart:0,width:0,height:"100%",padding:`${K(e.paddingXXS)} 0`,borderRadius:e.borderRadiusSM,[`& ~ ${t}-item:not(${t}-item-selected):not(${t}-item-disabled)::after`]:{backgroundColor:"transparent"}},[`&${t}-lg`]:{borderRadius:e.borderRadiusLG,[`${t}-item-label`]:{minHeight:a,lineHeight:K(a),padding:`0 ${K(e.segmentedPaddingHorizontal)}`,fontSize:e.fontSizeLG},[`${t}-item, ${t}-thumb`]:{borderRadius:e.borderRadius}},[`&${t}-sm`]:{borderRadius:e.borderRadiusSM,[`${t}-item-label`]:{minHeight:l,lineHeight:K(l),padding:`0 ${K(e.segmentedPaddingHorizontalSM)}`},[`${t}-item, ${t}-thumb`]:{borderRadius:e.borderRadiusXS}},...zp(`&-disabled ${t}-item`,e),...zp(`${t}-item-disabled`,e),[`${t}-thumb-motion-appear-active`]:{willChange:"transform, width",transition:["transform","width"].map(c=>`${c} ${n} ${r}`).join(", ")},[`&${t}-shape-round`]:{borderRadius:9999,[`${t}-item, ${t}-thumb`]:{borderRadius:9999}}}}},h4=e=>{const{colorTextLabel:t,colorText:n,colorFillSecondary:r,colorBgElevated:o,colorFill:s,lineWidthBold:a,colorBgLayout:l}=e;return{trackPadding:a,trackBg:l,itemColor:t,itemHoverColor:n,itemHoverBg:r,itemSelectedBg:o,itemActiveBg:s,itemSelectedColor:n}},b4=at("Segmented",e=>{const{lineWidth:t,calc:n}=e,r=rt(e,{segmentedPaddingHorizontal:n(e.controlPaddingHorizontal).sub(t).equal(),segmentedPaddingHorizontalSM:n(e.controlPaddingHorizontalSM).sub(t).equal()});return g4(r)},h4);function v4(e){return typeof e=="object"&&!!(e!=null&&e.icon)}const y4=i.forwardRef((e,t)=>{const n=Xn(),{prefixCls:r,className:o,rootClassName:s,block:a,options:l=[],size:c="middle",style:u,vertical:d,orientation:f,shape:m="default",name:p=n,styles:g,classNames:h,...b}=e,{getPrefixCls:$,direction:y,className:v,style:C,classNames:S,styles:x}=dt("segmented"),w={...e,options:l,size:c,shape:m},[I,E]=pt([S,h],[x,g],{props:w}),R=$("segmented",r),[P,M]=b4(R),O=Jt(c),A=i.useMemo(()=>l.map(B=>{if(v4(B)){const{icon:D,label:k,...W}=B;return{...W,label:i.createElement(i.Fragment,null,i.createElement("span",{className:z(`${R}-item-icon`,I.icon),style:E.icon},D),k&&i.createElement("span",null,k))}}return B}),[l,R,I.icon,E.icon]),[,T]=vo(f,d),F=z(o,s,v,I.root,{[`${R}-block`]:a,[`${R}-sm`]:O==="small",[`${R}-lg`]:O==="large",[`${R}-vertical`]:T,[`${R}-shape-${m}`]:m==="round"},P,M),H={...E.root,...C,...u},L=(B,{item:D})=>{if(!D.tooltip)return B;const k=typeof D.tooltip=="object"?D.tooltip:{title:D.tooltip};return i.createElement(Kn,{...k},B)};return i.createElement(m4,{...b,name:p,className:F,style:H,classNames:I,styles:E,itemRender:L,options:A,ref:t,prefixCls:R,direction:y,vertical:T})}),$4=y4,nv=N.createContext({}),rv=N.createContext({}),ov=({prefixCls:e,value:t,onChange:n,className:r,style:o})=>{const s=()=>{if(n&&t&&!t.cleared){const a=t.toHsb();a.a=0;const l=Bt(a);l.cleared=!0,n(l)}};return N.createElement("div",{className:z(`${e}-clear`,r),style:o,onClick:s})},sv="hex",iv="rgb",av="hsb";var C4={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M872 474H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h720c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8z"}}]},name:"minus",theme:"outlined"};function Uc(){return Uc=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Uc({},e,{ref:t,icon:C4})),x4=i.forwardRef(S4);var w4={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M890.5 755.3L537.9 269.2c-12.8-17.6-39-17.6-51.7 0L133.5 755.3A8 8 0 00140 768h75c5.1 0 9.9-2.5 12.9-6.6L512 369.8l284.1 391.6c3 4.1 7.8 6.6 12.9 6.6h75c6.5 0 10.3-7.4 6.5-12.7z"}}]},name:"up",theme:"outlined"};function Kc(){return Kc=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Kc({},e,{ref:t,icon:w4})),I4=i.forwardRef(E4);function Yc(){return typeof BigInt=="function"}function lv(e){return!e&&e!==0&&!Number.isNaN(e)||!String(e).trim()}function Mr(e){var t=e.trim(),n=t.startsWith("-");n&&(t=t.slice(1)),t=t.replace(/(\.\d*[^0])0*$/,"$1").replace(/\.0*$/,"").replace(/^0+/,""),t.startsWith(".")&&(t="0".concat(t));var r=t||"0",o=r.split("."),s=o[0]||"0",a=o[1]||"0";s==="0"&&a==="0"&&(n=!1);var l=n?"-":"";return{negative:n,negativeStr:l,trimStr:r,integerStr:s,decimalStr:a,fullStr:"".concat(l).concat(r)}}function Dd(e){var t=String(e);return!Number.isNaN(Number(t))&&t.includes("e")}function wr(e){var t=String(e);if(Dd(e)){var n=Number(t.slice(t.indexOf("e-")+2)),r=t.match(/\.(\d+)/);return r!=null&&r[1]&&(n+=r[1].length),n}return t.includes(".")&&Fd(t)?t.length-t.indexOf(".")-1:0}function Qi(e){var t=String(e);if(Dd(e)){if(e>Number.MAX_SAFE_INTEGER)return String(Yc()?BigInt(e).toString():Number.MAX_SAFE_INTEGER);if(e0&&arguments[0]!==void 0?arguments[0]:!0;return n?this.isInvalidate()?"":Mr("".concat(this.getMark()).concat(this.getIntegerStr(),".").concat(this.getDecimalStr())).fullStr:this.origin}}]),e}(),R4=function(){function e(t){if(Pn(this,e),Ve(this,"origin",""),Ve(this,"number",void 0),Ve(this,"empty",void 0),lv(t)){this.empty=!0;return}this.origin=String(t),this.number=Number(t)}return In(e,[{key:"negate",value:function(){return new e(-this.toNumber())}},{key:"add",value:function(n){if(this.isInvalidate())return new e(n);var r=Number(n);if(Number.isNaN(r))return this;var o=this.number+r;if(o>Number.MAX_SAFE_INTEGER)return new e(Number.MAX_SAFE_INTEGER);if(oNumber.MAX_SAFE_INTEGER)return new e(Number.MAX_SAFE_INTEGER);if(o0&&arguments[0]!==void 0?arguments[0]:!0;return n?this.isInvalidate()?"":Qi(this.number):this.origin}}]),e}();function Cn(e){return Yc()?new P4(e):new R4(e)}function oi(e,t,n){var r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;if(e==="")return"";var o=Mr(e),s=o.negativeStr,a=o.integerStr,l=o.decimalStr,c="".concat(t).concat(l),u="".concat(s).concat(a);if(n>=0){var d=Number(l[n]);if(d>=5&&!r){var f=Cn(e).add("".concat(s,"0.").concat("0".repeat(n)).concat(10-d));return oi(f.toString(),t,n,r)}return n===0?u:"".concat(u).concat(t).concat(l.padEnd(n,"0").slice(0,n))}return c===".0"?u:"".concat(u).concat(c)}function M4(e,t){return typeof Proxy<"u"&&e?new Proxy(e,{get(n,r){if(t[r])return t[r];const o=n[r];return typeof o=="function"?o.bind(n):o}}):e}function N4(e,t){const n=i.useRef(null);function r(){try{const{selectionStart:s,selectionEnd:a,value:l}=e,c=l.substring(0,s),u=l.substring(a);n.current={start:s,end:a,value:l,beforeTxt:c,afterTxt:u}}catch{}}function o(){if(e&&n.current&&t)try{const{value:s}=e,{beforeTxt:a,afterTxt:l,start:c}=n.current;let u=s.length;if(s.startsWith(a))u=a.length;else if(s.endsWith(l))u=s.length-n.current.afterTxt.length;else{const d=a[c-1],f=s.indexOf(d,c-1);f!==-1&&(u=f+1)}e.setSelectionRange(u,u)}catch(s){Pt(!1,`Something warning of cursor restore. Please fire issue about this: ${s.message}`)}}return[r,o]}const T4=200,O4=600;function Lp({prefixCls:e,action:t,children:n,disabled:r,className:o,style:s,onStep:a}){const l=t==="up",c=i.useRef(),u=i.useRef([]),d=()=>{clearTimeout(c.current)},f=h=>{h.preventDefault(),d(),a(l,"handler");function b(){a(l,"handler"),c.current=setTimeout(b,T4)}c.current=setTimeout(b,O4)};i.useEffect(()=>()=>{d(),u.current.forEach(h=>{Ke.cancel(h)})},[]);const m=`${e}-action`,p=z(m,`${m}-${t}`,{[`${m}-${t}-disabled`]:r},o),g=()=>u.current.push(Ke(d));return i.createElement("span",{unselectable:"on",role:"button",onMouseUp:g,onMouseLeave:g,onMouseDown:h=>{f(h)},"aria-label":l?"Increase Value":"Decrease Value","aria-disabled":r,className:p,style:s},n||i.createElement("span",{unselectable:"on",className:`${e}-action-${t}-inner`}))}function Hp(e){const t=typeof e=="number"?Qi(e):Mr(e).fullStr;return t.includes(".")?Mr(t.replace(/(\d)\.(\d)/g,"$1$2.")).fullStr:e+"0"}const A4=()=>{const e=i.useRef(0),t=()=>{Ke.cancel(e.current)};return i.useEffect(()=>t,[]),n=>{t(),e.current=Ke(()=>{n()})}};function Xo(){return Xo=Object.assign?Object.assign.bind():function(e){for(var t=1;te||t.isEmpty()?t.toString():t.toNumber(),Fp=e=>{const t=Cn(e);return t.isInvalidate()?null:t},z4=i.forwardRef((e,t)=>{const{mode:n="input",prefixCls:r="rc-input-number",className:o,style:s,classNames:a,styles:l,min:c,max:u,step:d=1,defaultValue:f,value:m,disabled:p,readOnly:g,upHandler:h,downHandler:b,keyboard:$,changeOnWheel:y=!1,controls:v=!0,prefix:C,suffix:S,stringMode:x,parser:w,formatter:I,precision:E,decimalSeparator:R,onChange:P,onInput:M,onPressEnter:O,onStep:A,onMouseDown:T,onClick:F,onMouseUp:H,onMouseLeave:L,onMouseMove:B,onMouseEnter:D,onMouseOut:k,changeOnBlur:W=!0,..._}=e,[X,U]=i.useState(!1),j=i.useRef(!1),V=i.useRef(!1),G=i.useRef(!1),te=i.useRef(null),ee=i.useRef(null);i.useImperativeHandle(t,()=>M4(ee.current,{focus:Se=>{md(ee.current,Se)},blur:()=>{var Se;(Se=ee.current)==null||Se.blur()},nativeElement:te.current}));const[ne,Y]=i.useState(()=>Cn(m??f));function se(Se){m===void 0&&Y(Se)}const ue=i.useCallback((Se,Be)=>{if(!Be)return E>=0?E:Math.max(wr(Se),wr(d))},[E,d]),q=i.useCallback(Se=>{const Be=String(Se);if(w)return w(Be);let Pe=Be;return R&&(Pe=Pe.replace(R,".")),Pe.replace(/[^\w.-]+/g,"")},[w,R]),oe=i.useRef(""),Z=i.useCallback((Se,Be)=>{if(I)return I(Se,{userTyping:Be,input:String(oe.current)});let Pe=typeof Se=="number"?Qi(Se):Se;if(!Be){const ye=ue(Pe,Be);Fd(Pe)&&(R||ye>=0)&&(Pe=oi(Pe,R||".",ye))}return Pe},[I,ue,R]),[J,ae]=i.useState(()=>{const Se=f??m;return ne.isInvalidate()&&["string","number"].includes(typeof Se)?Number.isNaN(Se)?"":Se:Z(ne.toString(),!1)});oe.current=J;function we(Se,Be){ae(Z(Se.isInvalidate()?Se.toString(!1):Se.toString(!Be),Be))}const de=i.useMemo(()=>Fp(u),[u,E]),ge=i.useMemo(()=>Fp(c),[c,E]),be=i.useMemo(()=>!de||!ne||ne.isInvalidate()?!1:de.lessEquals(ne),[de,ne]),me=i.useMemo(()=>!ge||!ne||ne.isInvalidate()?!1:ne.lessEquals(ge),[ge,ne]),[Ne,Ae]=N4(ee.current,X),Ee=Se=>de&&!Se.lessEquals(de)?de:ge&&!ge.lessEquals(Se)?ge:null,ze=Se=>!Ee(Se),Re=(Se,Be)=>{let Pe=Se,ye=ze(Pe)||Pe.isEmpty();if(!Pe.isEmpty()&&!Be&&(Pe=Ee(Pe)||Pe,ye=!0),!g&&!p&&ye){const ce=Pe.toString(),Q=ue(ce,Be);return Q>=0&&(Pe=Cn(oi(ce,".",Q)),ze(Pe)||(Pe=Cn(oi(ce,".",Q,!0)))),Pe.equals(ne)||(se(Pe),P==null||P(Pe.isEmpty()?null:Dp(x,Pe)),m===void 0&&we(Pe,Be)),Pe}return ne},ve=A4(),fe=Se=>{if(Ne(),oe.current=Se,ae(Se),!V.current){const Be=q(Se),Pe=Cn(Be);Pe.isNaN()||Re(Pe,!0)}M==null||M(Se),ve(()=>{let Be=Se;w||(Be=Se.replace(/。/g,".")),Be!==Se&&fe(Be)})},Ce=()=>{V.current=!0},He=()=>{V.current=!1,fe(ee.current.value)},Ie=Se=>{fe(Se.target.value)},re=We((Se,Be)=>{var Q;if(Se&&be||!Se&&me)return;j.current=!1;let Pe=Cn(G.current?Hp(d):d);Se||(Pe=Pe.negate());const ye=(ne||Cn(0)).add(Pe.toString()),ce=Re(ye,!1);A==null||A(Dp(x,ce),{offset:G.current?Hp(d):d,type:Se?"up":"down",emitter:Be}),(Q=ee.current)==null||Q.focus()}),$e=Se=>{const Be=Cn(q(J));let Pe;Be.isNaN()?Pe=Re(ne,Se):Pe=Re(Be,Se),m!==void 0?we(ne,!1):Pe.isNaN()||we(Pe,!1)},ke=()=>{j.current=!0},De=Se=>{const{key:Be,shiftKey:Pe}=Se;j.current=!0,G.current=Pe,Be==="Enter"&&(V.current||(j.current=!1),$e(!1),O==null||O(Se)),$!==!1&&!V.current&&["Up","ArrowUp","Down","ArrowDown"].includes(Be)&&(re(Be==="Up"||Be==="ArrowUp","keyboard"),Se.preventDefault())},ot=()=>{j.current=!1,G.current=!1};i.useEffect(()=>{if(y&&X){const Se=Pe=>{re(Pe.deltaY<0,"wheel"),Pe.preventDefault()},Be=ee.current;if(Be)return Be.addEventListener("wheel",Se,{passive:!1}),()=>Be.removeEventListener("wheel",Se)}});const qe=()=>{W&&$e(!1),U(!1),j.current=!1},ft=Se=>{ee.current&&Se.target!==ee.current&&(ee.current.focus(),Se.preventDefault()),T==null||T(Se)};Ks(()=>{ne.isInvalidate()||we(ne,!1)},[E,I]),Ks(()=>{const Se=Cn(m);Y(Se);const Be=Cn(q(J));(!Se.equals(Be)||!j.current||I)&&we(Se,j.current)},[m]),Ks(()=>{I&&Ae()},[J]);const Qe={prefixCls:r,onStep:re,className:a==null?void 0:a.action,style:l==null?void 0:l.action},st=i.createElement(Lp,Xo({},Qe,{action:"up",disabled:be}),h),lt=i.createElement(Lp,Xo({},Qe,{action:"down",disabled:me}),b);return i.createElement("div",{ref:te,className:z(r,`${r}-mode-${n}`,o,a==null?void 0:a.root,{[`${r}-focused`]:X,[`${r}-disabled`]:p,[`${r}-readonly`]:g,[`${r}-not-a-number`]:ne.isNaN(),[`${r}-out-of-range`]:!ne.isInvalidate()&&!ze(ne)}),style:{...l==null?void 0:l.root,...s},onMouseDown:ft,onMouseUp:H,onMouseLeave:L,onMouseMove:B,onMouseEnter:D,onMouseOut:k,onClick:F,onFocus:()=>{U(!0)},onBlur:qe,onKeyDown:De,onKeyUp:ot,onCompositionStart:Ce,onCompositionEnd:He,onBeforeInput:ke},n==="spinner"&&v&<,C!==void 0&&i.createElement("div",{className:z(`${r}-prefix`,a==null?void 0:a.prefix),style:l==null?void 0:l.prefix},C),i.createElement("input",Xo({autoComplete:"off",role:"spinbutton","aria-valuemin":c,"aria-valuemax":u,"aria-valuenow":ne.isInvalidate()?null:ne.toString(),step:d,ref:ee,className:z(`${r}-input`,a==null?void 0:a.input),style:l==null?void 0:l.input,value:J,onChange:Ie,disabled:p,readOnly:g},_)),S!==void 0&&i.createElement("div",{className:z(`${r}-suffix`,a==null?void 0:a.suffix),style:l==null?void 0:l.suffix},S),n==="spinner"&&v&&st,n==="input"&&v&&i.createElement("div",{className:z(`${r}-actions`,a==null?void 0:a.actions),style:l==null?void 0:l.actions},st,lt))}),B4=e=>{const{componentCls:t,borderRadius:n,paddingSM:r,colorBorder:o,paddingXS:s,fontSizeLG:a,fontSizeSM:l,borderRadiusLG:c,borderRadiusSM:u,colorBgContainerDisabled:d,lineWidth:f,antCls:m}=e,[p,g]=At(m,"space");return{[t]:[{display:"inline-flex",alignItems:"center",gap:0,paddingInline:r,margin:0,borderWidth:f,borderStyle:"solid",borderRadius:n,"&:hover":{zIndex:0},[`&${t}-disabled`]:{color:e.colorTextDisabled},"&-large":{fontSize:a,borderRadius:c},"&-small":{paddingInline:s,borderRadius:u,fontSize:l},"&-compact-last-item":{borderEndStartRadius:0,borderStartStartRadius:0},"&-compact-first-item":{borderEndEndRadius:0,borderStartEndRadius:0},"&-compact-item:not(:first-child):not(:last-child)":{borderRadius:0},"&-compact-item:not(:last-child)":{borderInlineEndWidth:0},"&-compact-item:not(:first-child)":{borderInlineStartWidth:0}},{[p("addon-border-color")]:o,[p("addon-background")]:d,[p("addon-border-color-outlined")]:o,[p("addon-background-filled")]:d,borderColor:g("addon-border-color"),background:g("addon-background"),"&-variant-outlined":{[p("addon-border-color")]:g("addon-border-color-outlined")},"&-variant-filled":{[p("addon-border-color")]:"transparent",[p("addon-background")]:g("addon-background-filled"),[`&${t}-disabled`]:{[p("addon-border-color")]:o,[p("addon-background")]:d}},"&-variant-borderless":{border:"none",background:"transparent"},"&-variant-underlined":{border:"none",background:"transparent"}},{"&-status-error":{[p("addon-border-color-outlined")]:e.colorError,[p("addon-background-filled")]:e.colorErrorBg,color:e.colorError},"&-status-warning":{[p("addon-border-color-outlined")]:e.colorWarning,[p("addon-background-filled")]:e.colorWarningBg,color:e.colorWarning}}]}},L4=at(["Space","Addon"],e=>[B4(e),yo(e,{focus:!1})]),cv=N.forwardRef((e,t)=>{const{className:n,children:r,style:o,prefixCls:s,variant:a="outlined",disabled:l,status:c,...u}=e,{getPrefixCls:d,direction:f}=N.useContext(je),m=d("space-addon",s),[p,g]=L4(m),{compactItemClassnames:h,compactSize:b}=Un(m,f),$=zr(m,c),y=z(m,p,h,g,`${m}-variant-${a}`,$,{[`${m}-${b}`]:b,[`${m}-disabled`]:l},n);return N.createElement("div",{ref:t,className:y,style:o,...u},r)}),H4=e=>{const t=e.handleVisible??"auto",n=e.controlHeightSM-e.lineWidth*2;return{...xs(e),controlWidth:90,handleWidth:n,handleFontSize:e.fontSize/2,handleVisible:t,handleActiveBg:e.colorFillAlter,handleBg:e.colorBgContainer,filledHandleBg:new gt(e.colorFillSecondary).onBackground(e.colorBgContainer).toHexString(),handleHoverColor:e.colorPrimary,handleBorderColor:e.colorBorder,handleOpacity:t===!0?1:0,handleVisibleWidth:t===!0?n:0}},D4=e=>{const{componentCls:t,lineWidth:n,lineType:r,borderRadius:o,inputFontSizeSM:s,inputFontSizeLG:a,colorError:l,paddingInlineSM:c,paddingBlockSM:u,paddingBlockLG:d,paddingInlineLG:f,colorIcon:m,motionDurationMid:p,handleHoverColor:g,handleOpacity:h,paddingInline:b,paddingBlock:$,handleBg:y,handleActiveBg:v,inputAffixPadding:C,borderRadiusSM:S,controlWidth:x,handleBorderColor:w,filledHandleBg:I,lineHeightLG:E,antCls:R}=e,P=`${K(n)} ${r} ${w}`,[M,O]=At(R,"input-number");return[{[t]:{...Ct(e),...Bd(e),[M("input-padding-block")]:K($),[M("input-padding-inline")]:K(b),display:"inline-flex",width:x,margin:0,paddingBlock:0,borderRadius:o,...kb(e,{[`${t}-actions`]:{background:y,[`${t}-action-down`]:{borderBlockStart:P}}}),...jb(e,{[`${t}-actions`]:{background:I,[`${t}-action-down`]:{borderBlockStart:P}},"&:focus-within":{[`${t}-actions`]:{background:y}}}),...Gb(e,{[`${t}-actions`]:{background:y,[`${t}-action-down`]:{borderBlockStart:P}}}),...Vb(e),"&-rtl":{direction:"rtl",[`${t}-input`]:{direction:"rtl"}},[`&${t}-out-of-range`]:{[`${t}-input`]:{color:l}},[`${t}-input`]:{...Ct(e),width:"100%",paddingBlock:O("input-padding-block"),textAlign:"start",backgroundColor:"transparent",border:0,borderRadius:o,outline:0,transition:`all ${p} linear`,appearance:"textfield",fontSize:"inherit",lineHeight:"inherit",...Xb(e.colorTextPlaceholder),'&[type="number"]::-webkit-inner-spin-button, &[type="number"]::-webkit-outer-spin-button':{margin:0,appearance:"none"}},[`&:hover ${t}-handler-wrap, &-focused ${t}-handler-wrap`]:{width:e.handleWidth,opacity:1},[`&-disabled ${t}-input`]:{cursor:"not-allowed",color:e.colorTextDisabled}}},{[t]:{[` + ${t}-action-up-disabled, + ${t}-action-down-disabled + `]:{cursor:"not-allowed"},[`${t}-action`]:{...go(),userSelect:"none",overflow:"hidden",fontWeight:"bold",lineHeight:0,textAlign:"center",cursor:"pointer",transition:`all ${p} linear`,"&:active":{background:v},"&:hover":{color:g}},"&-mode-input":{overflow:"hidden",[`${t}-actions`]:{position:"absolute",insetBlockStart:0,insetInlineEnd:0,width:e.handleVisibleWidth,opacity:h,height:"100%",borderRadius:0,display:"flex",flexDirection:"column",alignItems:"stretch",transition:`all ${p}`,overflow:"hidden",[`${t}-action`]:{display:"flex",alignItems:"center",justifyContent:"center",flex:"auto",height:"40%",marginInlineEnd:0,fontSize:e.handleFontSize}},[`&:hover ${t}-actions, &-focused ${t}-actions`]:{width:e.handleWidth,opacity:1},[`${t}-action`]:{color:m,height:"50%",borderInlineStart:P,"&:hover":{height:"60%"}},[`&${t}-disabled, &${t}-readonly`]:{[`${t}-actions`]:{display:"none"}}},[`&${t}-mode-spinner`]:{padding:0,width:"auto",[`${t}-action`]:{flex:"none",paddingInline:O("input-padding-inline"),"&-up":{borderInlineStart:P},"&-down":{borderInlineEnd:P}},[`${t}-input`]:{textAlign:"center",paddingInline:O("input-padding-inline")}}}},{[t]:{"&-lg":{[M("input-padding-block")]:K(d),[M("input-padding-inline")]:K(f),paddingBlock:0,fontSize:a,lineHeight:E},"&-sm":{[M("input-padding-block")]:K(u),[M("input-padding-inline")]:K(c),paddingBlock:0,fontSize:s,borderRadius:S}}},{[t]:{[`${t}-prefix, ${t}-suffix`]:{display:"flex",flex:"none",alignItems:"center",alignSelf:"center",pointerEvents:"none"},[`${t}-prefix`]:{marginInlineEnd:C},[`${t}-suffix`]:{height:"100%",marginInlineStart:C,transition:`margin ${p}`},[`&:hover:not(${t}-without-controls)`]:{[`${t}-suffix`]:{marginInlineEnd:e.handleWidth}}}}]},F4=e=>{const{componentCls:t,antCls:n}=e;return{[`${t}-addon`]:{[`&:has(${n}-select)`]:{border:0,padding:0}}}},_4=at("InputNumber",e=>{const t=rt(e,Ss(e));return[D4(t),F4(t),yo(t)]},H4,{unitless:{handleOpacity:!0},resetFont:!1}),k4=i.forwardRef((e,t)=>{const n=i.useRef(null);i.useImperativeHandle(t,()=>n.current);const{rootClassName:r,size:o,disabled:s,prefixCls:a,addonBefore:l,addonAfter:c,prefix:u,suffix:d,bordered:f,readOnly:m,status:p,controls:g=!0,variant:h,className:b,style:$,classNames:y,styles:v,mode:C,...S}=e,{direction:x,className:w,style:I,styles:E,classNames:R}=dt("inputNumber"),P=i.useContext(yn),M=s??P,O=i.useMemo(()=>!g||M||m?!1:g,[g,M,m]),{compactSize:A,compactItemClassnames:T}=Un(a,x);let F=C==="spinner"?i.createElement(Zb,null):i.createElement(I4,null),H=C==="spinner"?i.createElement(x4,null):i.createElement(mb,null);const L=typeof O=="boolean"?O:void 0;typeof O=="object"&&(F=O.upIcon||F,H=O.downIcon||H);const{hasFeedback:B,isFormItemInput:D,feedbackIcon:k}=i.useContext($n),W=Jt(te=>o??A??te),[_,X]=qi("inputNumber",h,f),U=B&&i.createElement(i.Fragment,null,k),j={...e,size:W,disabled:M,controls:O},[V,G]=pt([R,y],[E,v],{props:j});return i.createElement(z4,{ref:n,mode:C,disabled:M,className:z(b,r,V.root,w,T,zr(a,p,B),{[`${a}-${_}`]:X,[`${a}-lg`]:W==="large",[`${a}-sm`]:W==="small",[`${a}-rtl`]:x==="rtl",[`${a}-in-form-item`]:D,[`${a}-without-controls`]:!O}),style:{...G.root,...I,...$},upHandler:F,downHandler:H,prefixCls:a,readOnly:m,controls:L,prefix:u,suffix:U||d,classNames:V,styles:G,...S})}),uv=i.forwardRef((e,t)=>{const{addonBefore:n,addonAfter:r,prefixCls:o,className:s,status:a,rootClassName:l,...c}=e,{getPrefixCls:u}=dt("inputNumber"),d=u("input-number",o),{status:f}=i.useContext($n),m=ys(f,a),p=_t(d),[g,h]=_4(d,p),b=n||r,$=i.createElement(k4,{ref:t,...c,prefixCls:d,status:m,className:z(h,p,g,s),rootClassName:b?void 0:l});if(b){const y=S=>S?i.createElement(cv,{className:z(`${d}-addon`,h,g),variant:e.variant,disabled:e.disabled,status:m},i.createElement(ur,{form:!0},S)):null,v=y(n),C=y(r);return i.createElement(td,{rootClassName:l},v,$,C)}return $}),dv=uv,V4=e=>i.createElement(An,{theme:{components:{InputNumber:{handleVisible:!0}}}},i.createElement(uv,{...e}));dv._InternalPanelDoNotUseOrYouWillBeFired=V4;const Nr=({prefixCls:e,min:t=0,max:n=100,value:r,onChange:o,className:s,formatter:a})=>{const l=`${e}-steppers`,[c,u]=i.useState(0),d=Number.isNaN(r)?c:r;return N.createElement(dv,{className:z(l,s),min:t,max:n,value:d,formatter:a,size:"small",onChange:f=>{u(f||0),o==null||o(f)}})},W4=({prefixCls:e,value:t,onChange:n})=>{const r=`${e}-alpha-input`,[o,s]=i.useState(()=>Bt(t||"#000")),a=t||o,l=c=>{const u=a.toHsb();u.a=(c||0)/100;const d=Bt(u);s(d),n==null||n(d)};return N.createElement(Nr,{value:cd(a),prefixCls:e,formatter:c=>`${c}%`,className:r,onChange:l})};function j4(e){return!!(e.addonBefore||e.addonAfter)}function q4(e){return!!(e.prefix||e.suffix||e.allowClear)}function _p(e,t,n){const r=t.cloneNode(!0),o=Object.create(e,{target:{value:r},currentTarget:{value:r}});return r.value=n,typeof t.selectionStart=="number"&&typeof t.selectionEnd=="number"&&(r.selectionStart=t.selectionStart,r.selectionEnd=t.selectionEnd),r.setSelectionRange=(...s)=>{t.setSelectionRange(...s)},o}function Pi(e,t,n,r){if(!n)return;let o=t;if(t.type==="click"){o=_p(t,e,""),n(o);return}if(e.type!=="file"&&r!==void 0){o=_p(t,e,r),n(o);return}n(o)}function Qc(){return Qc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{var B,D,k;const{inputElement:n,children:r,prefixCls:o,prefix:s,suffix:a,addonBefore:l,addonAfter:c,className:u,style:d,disabled:f,readOnly:m,focused:p,triggerFocus:g,allowClear:h,value:b,handleReset:$,hidden:y,classes:v,classNames:C,dataAttrs:S,styles:x,components:w,onClear:I}=e,E=r??n,R=(w==null?void 0:w.affixWrapper)||"span",P=(w==null?void 0:w.groupWrapper)||"span",M=(w==null?void 0:w.wrapper)||"span",O=(w==null?void 0:w.groupAddon)||"span",A=i.useRef(null),T=W=>{var _;(_=A.current)!=null&&_.contains(W.target)&&(g==null||g())},F=q4(e);let H=i.cloneElement(E,{value:b,className:z((B=E.props)==null?void 0:B.className,!F&&(C==null?void 0:C.variant))||null});const L=i.useRef(null);if(N.useImperativeHandle(t,()=>({nativeElement:L.current||A.current})),F){let W=null;if(h){const j=!f&&!m&&b,V=`${o}-clear-icon`,G=typeof h=="object"&&(h!=null&&h.clearIcon)?h.clearIcon:"✖";W=N.createElement("button",{type:"button",tabIndex:-1,onClick:te=>{$==null||$(te),I==null||I()},onMouseDown:te=>te.preventDefault(),className:z(V,{[`${V}-hidden`]:!j,[`${V}-has-suffix`]:!!a})},G)}const _=`${o}-affix-wrapper`,X=z(_,{[`${o}-disabled`]:f,[`${_}-disabled`]:f,[`${_}-focused`]:p,[`${_}-readonly`]:m,[`${_}-input-with-clear-btn`]:a&&h&&b},v==null?void 0:v.affixWrapper,C==null?void 0:C.affixWrapper,C==null?void 0:C.variant),U=(a||h)&&N.createElement("span",{className:z(`${o}-suffix`,C==null?void 0:C.suffix),style:x==null?void 0:x.suffix},W,a);H=N.createElement(R,Qc({className:X,style:x==null?void 0:x.affixWrapper,onClick:T},S==null?void 0:S.affixWrapper,{ref:A}),s&&N.createElement("span",{className:z(`${o}-prefix`,C==null?void 0:C.prefix),style:x==null?void 0:x.prefix},s),H,U)}if(j4(e)){const W=`${o}-group`,_=`${W}-addon`,X=`${W}-wrapper`,U=z(`${o}-wrapper`,W,v==null?void 0:v.wrapper,C==null?void 0:C.wrapper),j=z(X,{[`${X}-disabled`]:f},v==null?void 0:v.group,C==null?void 0:C.groupWrapper);H=N.createElement(P,{className:j,ref:L},N.createElement(M,{className:U},l&&N.createElement(O,{className:_},l),H,c&&N.createElement(O,{className:_},c)))}return N.cloneElement(H,{className:z((D=H.props)==null?void 0:D.className,u)||null,style:{...(k=H.props)==null?void 0:k.style,...d},hidden:y})});function mv(e,t){return i.useMemo(()=>{let n={};t&&(n.show=typeof t=="object"&&t.formatter?t.formatter:!!t),n={...n,...e};const{show:r,...o}=n;return{...o,show:!!r,showFormatter:typeof r=="function"?r:void 0,strategy:o.strategy||(s=>s.length)}},[e,t])}function Ri(){return Ri=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{autoComplete:n,onChange:r,onFocus:o,onBlur:s,onPressEnter:a,onKeyDown:l,onKeyUp:c,prefixCls:u="rc-input",disabled:d,htmlSize:f,className:m,maxLength:p,suffix:g,showCount:h,count:b,type:$="text",classes:y,classNames:v,styles:C,onCompositionStart:S,onCompositionEnd:x,...w}=e,[I,E]=i.useState(!1),R=i.useRef(!1),P=i.useRef(!1),M=i.useRef(null),O=i.useRef(null),A=q=>{M.current&&md(M.current,q)},[T,F]=bt(e.defaultValue,e.value),H=T==null?"":String(T),[L,B]=i.useState(null),D=mv(b,h),k=D.max||p,W=D.strategy(H),_=!!k&&W>k;i.useImperativeHandle(t,()=>{var q;return{focus:A,blur:()=>{var oe;(oe=M.current)==null||oe.blur()},setSelectionRange:(oe,Z,J)=>{var ae;(ae=M.current)==null||ae.setSelectionRange(oe,Z,J)},select:()=>{var oe;(oe=M.current)==null||oe.select()},input:M.current,nativeElement:((q=O.current)==null?void 0:q.nativeElement)||M.current}}),i.useEffect(()=>{P.current&&(P.current=!1),E(q=>q&&d?!1:q)},[d]);const X=(q,oe,Z)=>{var ae,we;let J=oe;if(!R.current&&D.exceedFormatter&&D.max&&D.strategy(oe)>D.max)J=D.exceedFormatter(oe,{max:D.max}),oe!==J&&B([((ae=M.current)==null?void 0:ae.selectionStart)||0,((we=M.current)==null?void 0:we.selectionEnd)||0]);else if(Z.source==="compositionEnd")return;F(J),M.current&&Pi(M.current,q,r,J)};i.useEffect(()=>{var q;L&&((q=M.current)==null||q.setSelectionRange(...L))},[L]);const U=q=>{X(q,q.target.value,{source:"change"})},j=q=>{R.current=!1,X(q,q.currentTarget.value,{source:"compositionEnd"}),x==null||x(q)},V=q=>{a&&q.key==="Enter"&&!P.current&&!q.nativeEvent.isComposing&&(P.current=!0,a(q)),l==null||l(q)},G=q=>{q.key==="Enter"&&(P.current=!1),c==null||c(q)},te=q=>{E(!0),o==null||o(q)},ee=q=>{P.current&&(P.current=!1),E(!1),s==null||s(q)},ne=q=>{F(""),A(),M.current&&Pi(M.current,q,r)},Y=_&&`${u}-out-of-range`,se=()=>{const q=yt(e,["prefixCls","onPressEnter","addonBefore","addonAfter","prefix","suffix","allowClear","defaultValue","showCount","count","classes","htmlSize","styles","classNames","onClear"]);return N.createElement("input",Ri({autoComplete:n},q,{onChange:U,onFocus:te,onBlur:ee,onKeyDown:V,onKeyUp:G,className:z(u,{[`${u}-disabled`]:d},v==null?void 0:v.input),style:C==null?void 0:C.input,ref:M,size:f,type:$,onCompositionStart:oe=>{R.current=!0,S==null||S(oe)},onCompositionEnd:j}))},ue=()=>{const q=Number(k)>0;if(g||D.show){const oe=D.showFormatter?D.showFormatter({value:H,count:W,maxLength:k}):`${W}${q?` / ${k}`:""}`;return N.createElement(N.Fragment,null,D.show&&N.createElement("span",{className:z(`${u}-show-count-suffix`,{[`${u}-show-count-has-suffix`]:!!g},v==null?void 0:v.count),style:{...C==null?void 0:C.count}},oe),g)}return null};return N.createElement(fv,Ri({},w,{prefixCls:u,className:z(m,Y),handleReset:ne,value:H,focused:I,triggerFocus:A,suffix:ue(),disabled:d,classes:y,classNames:v,styles:C,ref:O}),se())}),pv=e=>{let t;return typeof e=="object"&&(e!=null&&e.clearIcon)?t=e:e&&(t={clearIcon:N.createElement(is,null)}),t};function gv(e,t){const n=i.useRef([]),r=()=>{n.current.push(setTimeout(()=>{var o,s,a,l;(o=e.current)!=null&&o.input&&((s=e.current)==null?void 0:s.input.getAttribute("type"))==="password"&&((a=e.current)!=null&&a.input.hasAttribute("value"))&&((l=e.current)==null||l.input.removeAttribute("value"))}))};return i.useEffect(()=>(t&&r(),()=>n.current.forEach(o=>{o&&clearTimeout(o)})),[]),r}function X4(e){return!!(e.prefix||e.suffix||e.allowClear||e.showCount)}const ws=i.forwardRef((e,t)=>{const{prefixCls:n,bordered:r=!0,status:o,size:s,disabled:a,onBlur:l,onFocus:c,suffix:u,allowClear:d,addonAfter:f,addonBefore:m,className:p,style:g,styles:h,rootClassName:b,onChange:$,classNames:y,variant:v,...C}=e,{getPrefixCls:S,direction:x,allowClear:w,autoComplete:I,className:E,style:R,classNames:P,styles:M}=dt("input"),O=S("input",n),A=i.useRef(null),T=_t(O),[F,H]=Yb(O,b);Qb(O,T);const{compactSize:L,compactItemClassnames:B}=Un(O,x),D=Jt(ae=>s??L??ae),k=N.useContext(yn),W=a??k,_={...e,size:D,disabled:W},[X,U]=pt([P,y],[M,h],{props:_}),{status:j,hasFeedback:V,feedbackIcon:G}=i.useContext($n),te=ys(j,o),ee=X4(e)||!!V;i.useRef(ee);const ne=gv(A,!0),Y=ae=>{ne(),l==null||l(ae)},se=ae=>{ne(),c==null||c(ae)},ue=ae=>{ne(),$==null||$(ae)},q=(V||u)&&N.createElement(N.Fragment,null,u,V&&G),oe=pv(d??w),[Z,J]=qi("input",v,r);return N.createElement(G4,{ref:Ft(t,A),prefixCls:O,autoComplete:I,...C,disabled:W,onBlur:Y,onFocus:se,style:{...U.root,...R,...g},styles:U,suffix:q,allowClear:oe,className:z(p,b,H,T,B,E,X.root),onChange:ue,addonBefore:m&&N.createElement(ur,{form:!0,space:!0},m),addonAfter:f&&N.createElement(ur,{form:!0,space:!0},f),classNames:{...X,input:z({[`${O}-sm`]:D==="small",[`${O}-lg`]:D==="large",[`${O}-rtl`]:x==="rtl"},X.input,F),variant:z({[`${O}-${Z}`]:J},zr(O,te)),affixWrapper:z({[`${O}-affix-wrapper-sm`]:D==="small",[`${O}-affix-wrapper-lg`]:D==="large",[`${O}-affix-wrapper-rtl`]:x==="rtl"},F),wrapper:z({[`${O}-group-rtl`]:x==="rtl"},F),groupWrapper:z({[`${O}-group-wrapper-sm`]:D==="small",[`${O}-group-wrapper-lg`]:D==="large",[`${O}-group-wrapper-rtl`]:x==="rtl",[`${O}-group-wrapper-${Z}`]:J},zr(`${O}-group-wrapper`,te,V),F)}})}),U4=/(^#[\da-f]{6}$)|(^#[\da-f]{8}$)/i,K4=e=>U4.test(`#${e}`),Y4=({prefixCls:e,value:t,onChange:n})=>{const r=`${e}-hex-input`,[o,s]=i.useState(()=>t?Bo(t.toHexString()):void 0);i.useEffect(()=>{t&&s(Bo(t.toHexString()))},[t]);const a=l=>{const c=l.target.value;s(Bo(c)),K4(Bo(c,!0))&&(n==null||n(Bt(c)))};return N.createElement(ws,{className:r,value:o,prefix:"#",onChange:a,size:"small"})},Q4=({prefixCls:e,value:t,onChange:n})=>{const r=`${e}-hsb-input`,[o,s]=i.useState(()=>Bt(t||"#000")),a=t||o,l=(c,u)=>{const d=a.toHsb();d[u]=u==="h"?c:(c||0)/100;const f=Bt(d);s(f),n==null||n(f)};return N.createElement("div",{className:r},N.createElement(Nr,{max:360,min:0,value:Number(a.toHsb().h),prefixCls:e,className:r,formatter:c=>Js(c||0).toString(),onChange:c=>l(Number(c),"h")}),N.createElement(Nr,{max:100,min:0,value:Number(a.toHsb().s)*100,prefixCls:e,className:r,formatter:c=>`${Js(c||0)}%`,onChange:c=>l(Number(c),"s")}),N.createElement(Nr,{max:100,min:0,value:Number(a.toHsb().b)*100,prefixCls:e,className:r,formatter:c=>`${Js(c||0)}%`,onChange:c=>l(Number(c),"b")}))},Z4=({prefixCls:e,value:t,onChange:n})=>{const r=`${e}-rgb-input`,[o,s]=i.useState(()=>Bt(t||"#000")),a=t||o,l=(c,u)=>{const d=a.toRgb();d[u]=c||0;const f=Bt(d);s(f),n==null||n(f)};return N.createElement("div",{className:r},N.createElement(Nr,{max:255,min:0,value:Number(a.toRgb().r),prefixCls:e,className:r,onChange:c=>l(Number(c),"r")}),N.createElement(Nr,{max:255,min:0,value:Number(a.toRgb().g),prefixCls:e,className:r,onChange:c=>l(Number(c),"g")}),N.createElement(Nr,{max:255,min:0,value:Number(a.toRgb().b),prefixCls:e,className:r,onChange:c=>l(Number(c),"b")}))},J4=[sv,av,iv].map(e=>({value:e,label:e.toUpperCase()})),e3=e=>{const{prefixCls:t,format:n,value:r,disabledAlpha:o,onFormatChange:s,onChange:a,disabledFormat:l}=e,[c,u]=bt(sv,n),d=`${t}-input`,f=p=>{u(p),s==null||s(p)},m=i.useMemo(()=>{const p={value:r,prefixCls:t,onChange:a};switch(c){case av:return N.createElement(Q4,{...p});case iv:return N.createElement(Z4,{...p});default:return N.createElement(Y4,{...p})}},[c,t,r,a]);return N.createElement("div",{className:`${d}-container`},!l&&N.createElement(Co,{value:c,variant:"borderless",getPopupContainer:p=>p,popupMatchSelectWidth:68,placement:"bottomRight",onChange:f,className:`${t}-format-select`,size:"small",options:J4}),N.createElement("div",{className:d},m),!o&&N.createElement(W4,{prefixCls:t,value:r,onChange:a}))};function Zc(e,t,n){return(e-t)/(n-t)}function _d(e,t,n,r){const o=Zc(t,n,r),s={};switch(e){case"rtl":s.right=`${o*100}%`,s.transform="translateX(50%)";break;case"btt":s.bottom=`${o*100}%`,s.transform="translateY(50%)";break;case"ttb":s.top=`${o*100}%`,s.transform="translateY(-50%)";break;default:s.left=`${o*100}%`,s.transform="translateX(-50%)";break}return s}function $r(e,t){return Array.isArray(e)?e[t]:e}const Hr=i.createContext({min:0,max:0,direction:"ltr",step:1,includedStart:0,includedEnd:0,tabIndex:0,keyboard:!0,styles:{},classNames:{}}),hv=i.createContext({});function Jc(){return Jc=Object.assign?Object.assign.bind():function(e){for(var t=1;t{var W;const{prefixCls:n,value:r,valueIndex:o,onStartMove:s,onDelete:a,style:l,render:c,dragging:u,draggingDelete:d,onOffsetChange:f,onChangeComplete:m,onFocus:p,onMouseEnter:g,...h}=e,{min:b,max:$,direction:y,disabled:v,keyboard:C,range:S,tabIndex:x,ariaLabelForHandle:w,ariaLabelledByForHandle:I,ariaRequired:E,ariaValueTextFormatterForHandle:R,styles:P,classNames:M}=i.useContext(Hr),O=`${n}-handle`,A=_=>{v||s(_,o)},T=_=>{p==null||p(_,o)},F=_=>{g(_,o)},H=_=>{if(!v&&C){let X=null;switch(_.which||_.keyCode){case Me.LEFT:X=y==="ltr"||y==="btt"?-1:1;break;case Me.RIGHT:X=y==="ltr"||y==="btt"?1:-1;break;case Me.UP:X=y!=="ttb"?1:-1;break;case Me.DOWN:X=y!=="ttb"?-1:1;break;case Me.HOME:X="min";break;case Me.END:X="max";break;case Me.PAGE_UP:X=2;break;case Me.PAGE_DOWN:X=-2;break;case Me.BACKSPACE:case Me.DELETE:a==null||a(o);break}X!==null&&(_.preventDefault(),f(X,o))}},L=_=>{switch(_.which||_.keyCode){case Me.LEFT:case Me.RIGHT:case Me.UP:case Me.DOWN:case Me.HOME:case Me.END:case Me.PAGE_UP:case Me.PAGE_DOWN:m==null||m();break}},B=_d(y,r,b,$);let D={};o!==null&&(D={tabIndex:v?null:$r(x,o),role:"slider","aria-valuemin":b,"aria-valuemax":$,"aria-valuenow":r,"aria-disabled":v,"aria-label":$r(w,o),"aria-labelledby":$r(I,o),"aria-required":$r(E,o),"aria-valuetext":(W=$r(R,o))==null?void 0:W(r),"aria-orientation":y==="ltr"||y==="rtl"?"horizontal":"vertical",onMouseDown:A,onTouchStart:A,onFocus:T,onMouseEnter:F,onKeyDown:H,onKeyUp:L});let k=i.createElement("div",Jc({ref:t,className:z(O,{[`${O}-${o+1}`]:o!==null&&S,[`${O}-dragging`]:u,[`${O}-dragging-delete`]:d},M.handle),style:{...B,...l,...P.handle}},D,h));return c&&(k=c(k,{index:o,prefixCls:n,value:r,dragging:u,draggingDelete:d})),k});function Mi(){return Mi=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:n,style:r,onStartMove:o,onOffsetChange:s,values:a,handleRender:l,activeHandleRender:c,draggingIndex:u,draggingDelete:d,onFocus:f,...m}=e,p=i.useRef({}),[g,h]=i.useState(!1),[b,$]=i.useState(-1),y=x=>{$(x),h(!0)},v=(x,w)=>{y(w),f==null||f(x)},C=(x,w)=>{y(w)};i.useImperativeHandle(t,()=>({focus:x=>{var w;(w=p.current[x])==null||w.focus()},hideHelp:()=>{Vn.flushSync(()=>{h(!1)})}}));const S={prefixCls:n,onStartMove:o,onOffsetChange:s,render:l,onFocus:v,onMouseEnter:C,...m};return i.createElement(i.Fragment,null,a.map((x,w)=>{const I=u===w;return i.createElement(kp,Mi({ref:E=>{E?p.current[w]=E:delete p.current[w]},dragging:I,draggingDelete:I&&d,style:$r(r,w),key:w,value:x,valueIndex:w},S))}),c&&g&&i.createElement(kp,Mi({key:"a11y"},S,{value:a[b],valueIndex:null,dragging:u!==-1,draggingDelete:d,render:c,style:{pointerEvents:"none"},tabIndex:null,"aria-hidden":!0})))}),n3=e=>{const{prefixCls:t,style:n,children:r,value:o,onClick:s}=e,{min:a,max:l,direction:c,includedStart:u,includedEnd:d,included:f}=i.useContext(Hr),m=`${t}-text`,p=_d(c,o,a,l);return i.createElement("span",{className:z(m,{[`${m}-active`]:f&&u<=o&&o<=d}),style:{...p,...n},onMouseDown:g=>{g.stopPropagation()},onClick:()=>{s(o)}},r)},r3=e=>{const{prefixCls:t,marks:n,onClick:r}=e,o=`${t}-mark`;return n.length?i.createElement("div",{className:o},n.map(({value:s,style:a,label:l})=>i.createElement(n3,{key:s,prefixCls:o,style:a,value:s,onClick:r},l))):null},o3=e=>{const{prefixCls:t,value:n,style:r,activeStyle:o}=e,{min:s,max:a,direction:l,included:c,includedStart:u,includedEnd:d}=i.useContext(Hr),f=`${t}-dot`,m=c&&u<=n&&n<=d;let p={..._d(l,n,s,a),...typeof r=="function"?r(n):r};return m&&(p={...p,...typeof o=="function"?o(n):o}),i.createElement("span",{className:z(f,{[`${f}-active`]:m}),style:p})},s3=e=>{const{prefixCls:t,marks:n,dots:r,style:o,activeStyle:s}=e,{min:a,max:l,step:c}=i.useContext(Hr),u=i.useMemo(()=>{const d=new Set;if(n.forEach(f=>{d.add(f.value)}),r&&c!==null){let f=a;for(;f<=l;)d.add(f),f+=c}return Array.from(d)},[a,l,c,r,n]);return i.createElement("div",{className:`${t}-step`},u.map(d=>i.createElement(o3,{prefixCls:t,key:d,value:d,style:o,activeStyle:s})))},Vp=e=>{const{prefixCls:t,style:n,start:r,end:o,index:s,onStartMove:a,replaceCls:l}=e,{direction:c,min:u,max:d,disabled:f,range:m,classNames:p}=i.useContext(Hr),g=`${t}-track`,h=Zc(r,u,d),b=Zc(o,u,d),$=C=>{!f&&a&&a(C,-1)},y={};switch(c){case"rtl":y.right=`${h*100}%`,y.width=`${b*100-h*100}%`;break;case"btt":y.bottom=`${h*100}%`,y.height=`${b*100-h*100}%`;break;case"ttb":y.top=`${h*100}%`,y.height=`${b*100-h*100}%`;break;default:y.left=`${h*100}%`,y.width=`${b*100-h*100}%`}const v=l||z(g,{[`${g}-${s+1}`]:s!==null&&m,[`${t}-track-draggable`]:a},p.track);return i.createElement("div",{className:v,style:{...y,...n},onMouseDown:$,onTouchStart:$})},i3=e=>{const{prefixCls:t,style:n,values:r,startPoint:o,onStartMove:s}=e,{included:a,range:l,min:c,styles:u,classNames:d}=i.useContext(Hr),f=i.useMemo(()=>{if(!l){if(r.length===0)return[];const g=o??c,h=r[0];return[{start:Math.min(g,h),end:Math.max(g,h)}]}const p=[];for(let g=0;gi.createElement(Vp,{index:h,prefixCls:t,style:{...$r(n,h),...u.track},start:p,end:g,key:h,onStartMove:s})))},a3=130;function Wp(e){const t="targetTouches"in e?e.targetTouches[0]:e;return{pageX:t.pageX,pageY:t.pageY}}function l3(e,t,n,r,o,s,a,l,c,u,d){const[f,m]=i.useState(null),[p,g]=i.useState(-1),[h,b]=i.useState(!1),[$,y]=i.useState(n),[v,C]=i.useState(n),S=i.useRef(null),x=i.useRef(null),w=i.useRef(null),{onDragStart:I,onDragChange:E}=i.useContext(hv);nt(()=>{p===-1&&y(n)},[n,p]),i.useEffect(()=>()=>{document.removeEventListener("mousemove",S.current),document.removeEventListener("mouseup",x.current),w.current&&(w.current.removeEventListener("touchmove",S.current),w.current.removeEventListener("touchend",x.current))},[]);const R=(A,T,F)=>{T!==void 0&&m(T),y(A);let H=A;F&&(H=A.filter((L,B)=>B!==p)),a(H),E&&E({rawValues:A,deleteIndex:F?p:-1,draggingIndex:p,draggingValue:T})},P=We((A,T,F)=>{if(A===-1){const H=v[0],L=v[v.length-1],B=r-H,D=o-L;let k=T*(o-r);k=Math.max(k,B),k=Math.min(k,D),k=s(H+k)-H;const _=v.map(X=>X+k);R(_)}else{const H=(o-r)*T,L=[...$];L[A]=v[A];const B=c(L,H,A,"dist");R(B.values,B.value,F)}}),M=(A,T,F)=>{A.stopPropagation();const H=F||n,L=H[T];g(T),m(L),C(H),y(H),b(!1);const{pageX:B,pageY:D}=Wp(A);let k=!1;I&&I({rawValues:H,draggingIndex:T,draggingValue:L});const W=X=>{X.preventDefault();const{pageX:U,pageY:j}=Wp(X),V=U-B,G=j-D,{width:te,height:ee}=e.current.getBoundingClientRect();let ne,Y;switch(t){case"btt":ne=-G/ee,Y=V;break;case"ttb":ne=G/ee,Y=V;break;case"rtl":ne=-V/te,Y=G;break;default:ne=V/te,Y=G}k=u?Math.abs(Y)>a3&&d<$.length:!1,b(k),P(T,ne,k)},_=X=>{X.preventDefault(),document.removeEventListener("mouseup",_),document.removeEventListener("mousemove",W),w.current&&(w.current.removeEventListener("touchmove",S.current),w.current.removeEventListener("touchend",x.current)),S.current=null,x.current=null,w.current=null,l(k),g(-1),b(!1)};document.addEventListener("mouseup",_),document.addEventListener("mousemove",W),A.currentTarget.addEventListener("touchend",_),A.currentTarget.addEventListener("touchmove",W),S.current=W,x.current=_,w.current=A.currentTarget},O=i.useMemo(()=>{const A=[...n].sort((B,D)=>B-D),T=[...$].sort((B,D)=>B-D),F={};T.forEach(B=>{F[B]=(F[B]||0)+1}),A.forEach(B=>{F[B]=(F[B]||0)-1});const H=u?1:0;return Object.values(F).reduce((B,D)=>B+Math.abs(D),0)<=H?$:n},[n,$,u]);return[p,f,h,O,M]}function c3(e,t,n,r,o,s){const a=i.useCallback(p=>Math.max(e,Math.min(t,p)),[e,t]),l=i.useCallback(p=>{if(n!==null){const g=e+Math.round((a(p)-e)/n)*n,h=y=>(String(y).split(".")[1]||"").length,b=Math.max(h(n),h(t),h(e)),$=Number(g.toFixed(b));return e<=$&&$<=t?$:null}return null},[n,e,t,a]),c=i.useCallback(p=>{const g=a(p),h=r.map(y=>y.value);n!==null&&h.push(l(p)),h.push(e,t);let b=h[0],$=t-e;return h.forEach(y=>{const v=Math.abs(g-y);v<=$&&(b=y,$=v)}),b},[e,t,r,n,a,l]),u=(p,g,h,b="unit")=>{if(typeof g=="number"){let $;const y=p[h],v=y+g;let C=[];r.forEach(I=>{C.push(I.value)}),C.push(e,t),C.push(l(y));const S=g>0?1:-1;b==="unit"?C.push(l(y+S*n)):C.push(l(v)),C=C.filter(I=>I!==null).filter(I=>g<0?I<=y:I>=y),b==="unit"&&(C=C.filter(I=>I!==y));const x=b==="unit"?y:v;$=C[0];let w=Math.abs($-x);if(C.forEach(I=>{const E=Math.abs(I-x);E1){const I=[...p];return I[h]=$,u(I,g-S,h,b)}return $}else{if(g==="min")return e;if(g==="max")return t}},d=(p,g,h,b="unit")=>{const $=p[h],y=u(p,g,h,b);return{value:y,changed:y!==$}},f=p=>s===null&&p===0||typeof s=="number"&&p{const $=p.map(c),y=$[h],v=u($,g,h,b);if($[h]=v,o===!1){const C=s||0;h>0&&$[h-1]!==y&&($[h]=Math.max($[h],$[h-1]+C)),h<$.length-1&&$[h+1]!==y&&($[h]=Math.min($[h],$[h+1]-C))}else if(typeof s=="number"||s===null){for(let C=h+1;C<$.length;C+=1){let S=!0;for(;f($[C]-$[C-1])&&S;)({value:$[C],changed:S}=d($,1,C))}for(let C=h;C>0;C-=1){let S=!0;for(;f($[C]-$[C-1])&&S;)({value:$[C-1],changed:S}=d($,-1,C-1))}for(let C=$.length-1;C>0;C-=1){let S=!0;for(;f($[C]-$[C-1])&&S;)({value:$[C-1],changed:S}=d($,-1,C-1))}for(let C=0;C<$.length-1;C+=1){let S=!0;for(;f($[C+1]-$[C])&&S;)({value:$[C+1],changed:S}=d($,1,C+1))}}return{value:$[h],values:$}}]}function u3(e){return i.useMemo(()=>{if(e===!0||!e)return[!!e,!1,!1,0];const{editable:t,draggableTrack:n,minCount:r,maxCount:o}=e;return[!0,t,!t&&n,r||0,o]},[e])}const d3=i.forwardRef((e,t)=>{const{prefixCls:n="rc-slider",className:r,style:o,classNames:s,styles:a,id:l,disabled:c=!1,keyboard:u=!0,autoFocus:d,onFocus:f,onBlur:m,min:p=0,max:g=100,step:h=1,value:b,defaultValue:$,range:y,count:v,onChange:C,onBeforeChange:S,onAfterChange:x,onChangeComplete:w,allowCross:I=!0,pushable:E=!1,reverse:R,vertical:P,included:M=!0,startPoint:O,trackStyle:A,handleStyle:T,railStyle:F,dotStyle:H,activeDotStyle:L,marks:B,dots:D,handleRender:k,activeHandleRender:W,track:_,tabIndex:X=0,ariaLabelForHandle:U,ariaLabelledByForHandle:j,ariaRequired:V,ariaValueTextFormatterForHandle:G}=e,te=i.useRef(null),ee=i.useRef(null),ne=i.useMemo(()=>P?R?"ttb":"btt":R?"rtl":"ltr",[R,P]),[Y,se,ue,q,oe]=u3(y),Z=i.useMemo(()=>isFinite(p)?p:0,[p]),J=i.useMemo(()=>isFinite(g)?g:100,[g]),ae=i.useMemo(()=>h!==null&&h<=0?1:h,[h]),we=i.useMemo(()=>typeof E=="boolean"?E?ae:!1:E>=0?E:!1,[E,ae]),de=i.useMemo(()=>Object.keys(B||{}).map(ye=>{const ce=B[ye],Q={value:Number(ye)};return ce&&typeof ce=="object"&&!i.isValidElement(ce)&&("label"in ce||"style"in ce)?(Q.style=ce.style,Q.label=ce.label):Q.label=ce,Q}).filter(({label:ye})=>ye||typeof ye=="number").sort((ye,ce)=>ye.value-ce.value),[B]),[ge,be]=c3(Z,J,ae,de,I,we),[me,Ne]=bt($,b),Ae=i.useMemo(()=>{const ye=me==null?[]:Array.isArray(me)?me:[me],[ce=Z]=ye;let Q=me===null?[]:[ce];if(Y){if(Q=[...ye],v||me===void 0){const pe=v>=0?v+1:2;for(Q=Q.slice(0,pe);Q.lengthpe-ie)}return Q.forEach((pe,ie)=>{Q[ie]=ge(pe)}),Q},[me,Y,Z,v,ge]),Ee=ye=>Y?ye:ye[0],ze=We(ye=>{const ce=[...ye].sort((Q,pe)=>Q-pe);C&&!ar(ce,Ae,!0)&&C(Ee(ce)),Ne(ce)}),Re=We(ye=>{ye&&te.current.hideHelp();const ce=Ee(Ae);x==null||x(ce),Pt(!x,"[rc-slider] `onAfterChange` is deprecated. Please use `onChangeComplete` instead."),w==null||w(ce)}),ve=ye=>{if(c||!se||Ae.length<=q)return;const ce=[...Ae];ce.splice(ye,1),S==null||S(Ee(ce)),ze(ce);const Q=Math.max(0,ye-1);te.current.hideHelp(),te.current.focus(Q)},[fe,Ce,He,Ie,re]=l3(ee,ne,Ae,Z,J,ge,ze,Re,be,se,q),$e=(ye,ce)=>{var Q,pe;if(!c){const ie=[...Ae];let he=0,xe=0,Te=J-Z;Ae.forEach((tt,Ze)=>{const Mt=Math.abs(ye-tt);Mt<=Te&&(Te=Mt,he=Ze),tt{ye.preventDefault();const{width:ce,height:Q,left:pe,top:ie,bottom:he,right:xe}=ee.current.getBoundingClientRect(),{clientX:Te,clientY:Fe}=ye;let Je;switch(ne){case"btt":Je=(he-Fe)/Q;break;case"ttb":Je=(Fe-ie)/Q;break;case"rtl":Je=(xe-Te)/ce;break;default:Je=(Te-pe)/ce}const tt=Z+Je*(J-Z);$e(ge(tt),ye)},[De,ot]=i.useState(null),qe=(ye,ce)=>{if(!c){const Q=be(Ae,ye,ce);S==null||S(Ee(Ae)),ze(Q.values),ot(Q.value)}};i.useEffect(()=>{if(De!==null){const ye=Ae.indexOf(De);ye>=0&&te.current.focus(ye)}ot(null)},[De]);const ft=i.useMemo(()=>ue&&ae===null?!1:ue,[ue,ae]),Qe=We((ye,ce)=>{re(ye,ce),S==null||S(Ee(Ae))}),st=fe!==-1;i.useEffect(()=>{if(!st){const ye=Ae.lastIndexOf(Ce);te.current.focus(ye)}},[st]);const lt=i.useMemo(()=>[...Ie].sort((ye,ce)=>ye-ce),[Ie]),[Se,Be]=i.useMemo(()=>Y?[lt[0],lt[lt.length-1]]:[Z,lt[0]],[lt,Y,Z]);i.useImperativeHandle(t,()=>({focus:()=>{te.current.focus(0)},blur:()=>{var ce;const{activeElement:ye}=document;(ce=ee.current)!=null&&ce.contains(ye)&&(ye==null||ye.blur())}})),i.useEffect(()=>{d&&te.current.focus(0)},[]);const Pe=i.useMemo(()=>({min:Z,max:J,direction:ne,disabled:c,keyboard:u,step:ae,included:M,includedStart:Se,includedEnd:Be,range:Y,tabIndex:X,ariaLabelForHandle:U,ariaLabelledByForHandle:j,ariaRequired:V,ariaValueTextFormatterForHandle:G,styles:a||{},classNames:s||{}}),[Z,J,ne,c,u,ae,M,Se,Be,Y,X,U,j,V,G,a,s]);return i.createElement(Hr.Provider,{value:Pe},i.createElement("div",{ref:ee,className:z(n,r,{[`${n}-disabled`]:c,[`${n}-vertical`]:P,[`${n}-horizontal`]:!P,[`${n}-with-marks`]:de.length}),style:o,onMouseDown:ke,id:l},i.createElement("div",{className:z(`${n}-rail`,s==null?void 0:s.rail),style:{...F,...a==null?void 0:a.rail}}),_!==!1&&i.createElement(i3,{prefixCls:n,style:A,values:Ae,startPoint:O,onStartMove:ft?Qe:void 0}),i.createElement(s3,{prefixCls:n,marks:de,dots:D,style:H,activeStyle:L}),i.createElement(t3,{ref:te,prefixCls:n,style:T,values:Ie,draggingIndex:fe,draggingDelete:He,onStartMove:Qe,onOffsetChange:qe,onFocus:f,onBlur:m,handleRender:k,activeHandleRender:W,onChangeComplete:Re,onDelete:se?ve:void 0}),i.createElement(r3,{prefixCls:n,marks:de,onClick:$e})))}),bv=i.createContext({}),jp=i.forwardRef((e,t)=>{const{open:n,draggingDelete:r,value:o}=e,s=i.useRef(null),a=n&&!r,l=i.useRef(null);function c(){Ke.cancel(l.current),l.current=null}function u(){l.current=Ke(()=>{var d;(d=s.current)==null||d.forceAlign(),l.current=null})}return i.useEffect(()=>(a?u():c(),c),[a,e.title,o]),i.createElement(Kn,{ref:Ft(s,t),...e,open:a})}),f3=e=>{const{componentCls:t,antCls:n,controlSize:r,dotSize:o,marginFull:s,marginPart:a,colorFillContentHover:l,handleColorDisabled:c,calc:u,handleSize:d,handleSizeHover:f,handleActiveColor:m,handleActiveOutlineColor:p,handleLineWidth:g,handleLineWidthHover:h,motionDurationMid:b}=e;return{[t]:{...Ct(e),position:"relative",height:r,margin:`${K(a)} ${K(s)}`,padding:0,cursor:"pointer",touchAction:"none","&-vertical":{margin:`${K(s)} ${K(a)}`},[`${t}-rail`]:{position:"absolute",backgroundColor:e.railBg,borderRadius:e.borderRadiusXS,transition:`background-color ${b}`},[`${t}-track,${t}-tracks`]:{position:"absolute",transition:`background-color ${b}`},[`${t}-track`]:{backgroundColor:e.trackBg,borderRadius:e.borderRadiusXS},[`${t}-track-draggable`]:{boxSizing:"content-box",backgroundClip:"content-box",border:"solid rgba(0,0,0,0)"},"&:hover":{[`${t}-rail`]:{backgroundColor:e.railHoverBg},[`${t}-track`]:{backgroundColor:e.trackHoverBg},[`${t}-dot`]:{borderColor:l},[`${t}-handle::after`]:{boxShadow:`0 0 0 ${K(g)} ${e.colorPrimaryBorderHover}`},[`${t}-dot-active`]:{borderColor:e.dotActiveBorderColor}},[`${t}-handle`]:{position:"absolute",width:d,height:d,outline:"none",userSelect:"none","&-dragging-delete":{opacity:0},"&::before":{content:'""',position:"absolute",insetInlineStart:u(g).mul(-1).equal(),insetBlockStart:u(g).mul(-1).equal(),width:u(d).add(u(g).mul(2)).equal(),height:u(d).add(u(g).mul(2)).equal(),backgroundColor:"transparent"},"&::after":{content:'""',position:"absolute",insetBlockStart:0,insetInlineStart:0,width:d,height:d,backgroundColor:e.colorBgElevated,boxShadow:`0 0 0 ${K(g)} ${e.handleColor}`,outline:"0px solid transparent",borderRadius:"50%",cursor:"pointer",transition:["inset-inline-start","inset-block-start","width","height","box-shadow","outline"].map($=>`${$} ${b}`).join(", ")},"&:hover, &:active, &:focus":{"&::before":{insetInlineStart:u(f).sub(d).div(2).add(h).mul(-1).equal(),insetBlockStart:u(f).sub(d).div(2).add(h).mul(-1).equal(),width:u(f).add(u(h).mul(2)).equal(),height:u(f).add(u(h).mul(2)).equal()},"&::after":{boxShadow:`0 0 0 ${K(h)} ${m}`,outline:`6px solid ${p}`,width:f,height:f,insetInlineStart:e.calc(d).sub(f).div(2).equal(),insetBlockStart:e.calc(d).sub(f).div(2).equal()}}},[`&-lock ${t}-handle`]:{"&::before, &::after":{transition:"none"}},[`${t}-mark`]:{position:"absolute",fontSize:e.fontSize},[`${t}-mark-text`]:{position:"absolute",display:"inline-block",color:e.colorTextDescription,textAlign:"center",wordBreak:"keep-all",cursor:"pointer",userSelect:"none","&-active":{color:e.colorText}},[`${t}-step`]:{position:"absolute",background:"transparent",pointerEvents:"none"},[`${t}-dot`]:{position:"absolute",width:o,height:o,backgroundColor:e.colorBgElevated,border:`${K(g)} solid ${e.dotBorderColor}`,borderRadius:"50%",cursor:"pointer",transition:`border-color ${e.motionDurationSlow}`,pointerEvents:"auto","&-active":{borderColor:e.dotActiveBorderColor}},[`&${t}-disabled`]:{cursor:"not-allowed",[`${t}-rail`]:{backgroundColor:`${e.railBg} !important`},[`${t}-track`]:{backgroundColor:`${e.trackBgDisabled} !important`},[` + ${t}-dot + `]:{backgroundColor:e.colorBgElevated,borderColor:e.trackBgDisabled,boxShadow:"none",cursor:"not-allowed"},[`${t}-handle::after`]:{backgroundColor:e.colorBgElevated,cursor:"not-allowed",width:d,height:d,boxShadow:`0 0 0 ${K(g)} ${c}`,insetInlineStart:0,insetBlockStart:0},[` + ${t}-mark-text, + ${t}-dot + `]:{cursor:"not-allowed !important"}},[`&-tooltip ${n}-tooltip-container`]:{minWidth:"unset"}}}},vv=(e,t)=>{const{componentCls:n,railSize:r,handleSize:o,dotSize:s,marginFull:a,calc:l}=e,c=t?"paddingBlock":"paddingInline",u=t?"width":"height",d=t?"height":"width",f=t?"insetBlockStart":"insetInlineStart",m=t?"top":"insetInlineStart",p=l(r).mul(3).sub(o).div(2).equal(),g=l(o).sub(r).div(2).equal(),h=t?{borderWidth:`${K(g)} 0`,transform:`translateY(${K(l(g).mul(-1).equal())})`}:{borderWidth:`0 ${K(g)}`,transform:`translateX(${K(e.calc(g).mul(-1).equal())})`};return{[c]:r,[d]:l(r).mul(3).equal(),[`${n}-rail`]:{[u]:"100%",[d]:r},[`${n}-track,${n}-tracks`]:{[d]:r},[`${n}-track-draggable`]:{...h},[`${n}-handle`]:{[f]:p},[`${n}-mark`]:{insetInlineStart:0,top:0,[m]:l(r).mul(3).add(t?0:a).equal(),[u]:"100%"},[`${n}-step`]:{insetInlineStart:0,top:0,[m]:r,[u]:"100%",[d]:r},[`${n}-dot`]:{position:"absolute",[f]:l(r).sub(s).div(2).equal()}}},m3=e=>{const{componentCls:t,marginPartWithMark:n}=e;return{[`${t}-horizontal`]:{...vv(e,!0),[`&${t}-with-marks`]:{marginBottom:n}}}},p3=e=>{const{componentCls:t}=e;return{[`${t}-vertical`]:{...vv(e,!1),height:"100%"}}},g3=e=>{const n=e.controlHeightLG/4,r=e.controlHeightSM/2,o=e.lineWidth+1,s=e.lineWidth+1*1.5,a=e.colorPrimary,l=new gt(a).setA(.2).toRgbString();return{controlSize:n,railSize:4,handleSize:n,handleSizeHover:r,dotSize:8,handleLineWidth:o,handleLineWidthHover:s,railBg:e.colorFillTertiary,railHoverBg:e.colorFillSecondary,trackBg:e.colorPrimaryBorder,trackHoverBg:e.colorPrimaryBorderHover,handleColor:e.colorPrimaryBorder,handleActiveColor:a,handleActiveOutlineColor:l,handleColorDisabled:new gt(e.colorTextDisabled).onBackground(e.colorBgContainer).toHexString(),dotBorderColor:e.colorBorderSecondary,dotActiveBorderColor:e.colorPrimaryBorder,trackBgDisabled:e.colorBgContainerDisabled}},h3=at("Slider",e=>{const t=rt(e,{marginPart:e.calc(e.controlHeight).sub(e.controlSize).div(2).equal(),marginFull:e.calc(e.controlSize).div(2).equal(),marginPartWithMark:e.calc(e.controlHeightLG).sub(e.controlSize).equal()});return[f3(t),m3(t),p3(t)]},g3);function qa(){const[e,t]=i.useState(!1),n=i.useRef(null),r=()=>{Ke.cancel(n.current)},o=s=>{r(),s?t(s):n.current=Ke(()=>{t(s)})};return i.useEffect(()=>r,[]),[e,o]}function b3(e){return e||e===null?e:t=>typeof t=="number"?t.toString():""}const v3=N.forwardRef((e,t)=>{const{prefixCls:n,range:r,className:o,rootClassName:s,style:a,disabled:l,tooltip:c={},onChangeComplete:u,classNames:d,styles:f,vertical:m,orientation:p,...g}=e,[,h]=vo(p,m),{getPrefixCls:b,direction:$,className:y,style:v,classNames:C,styles:S,getPopupContainer:x}=dt("slider"),w=N.useContext(yn),I=l??w,E={...e,disabled:I,vertical:h},[R,P]=pt([C,d],[S,f],{props:E}),{handleRender:M,direction:O}=N.useContext(bv),T=(O||$)==="rtl",[F,H]=qa(),[L,B]=qa(),D={...c},{open:k,placement:W,getPopupContainer:_,prefixCls:X,formatter:U}=D,j=k,V=(F||L)&&j!==!1,G=b3(U),[te,ee]=qa(),ne=de=>{u==null||u(de),ee(!1)},Y=(de,ge)=>de||(ge?T?"left":"right":"top"),se=b("slider",n),[ue,q]=h3(se),oe=z(o,y,R.root,s,{[`${se}-rtl`]:T,[`${se}-lock`]:te},ue,q);T&&!h&&(g.reverse=!g.reverse),N.useEffect(()=>{const de=()=>{Ke(()=>{B(!1)},1)};return document.addEventListener("mouseup",de),()=>{document.removeEventListener("mouseup",de)}},[]);const Z=r&&!j,J=M||((de,ge)=>{const{index:be}=ge,me=de.props;function Ne(Re,ve,fe){var Ce,He;fe&&((Ce=g[Re])==null||Ce.call(g,ve)),(He=me[Re])==null||He.call(me,ve)}const Ae={...me,onMouseEnter:Re=>{H(!0),Ne("onMouseEnter",Re)},onMouseLeave:Re=>{H(!1),Ne("onMouseLeave",Re)},onMouseDown:Re=>{B(!0),ee(!0),Ne("onMouseDown",Re)},onFocus:Re=>{var ve;B(!0),(ve=g.onFocus)==null||ve.call(g,Re),Ne("onFocus",Re,!0)},onBlur:Re=>{var ve;B(!1),(ve=g.onBlur)==null||ve.call(g,Re),Ne("onBlur",Re,!0)}},Ee=N.cloneElement(de,Ae),ze=(!!j||V)&&G!==null;return Z?Ee:N.createElement(jp,{...D,prefixCls:b("tooltip",X),title:G?G(ge.value):"",value:ge.value,open:ze,placement:Y(W,h),key:be,classNames:{root:`${se}-tooltip`},getPopupContainer:_||x},Ee)}),ae=Z?(de,ge)=>{const be=N.cloneElement(de,{style:{...de.props.style,visibility:"hidden"}});return N.createElement(jp,{...D,prefixCls:b("tooltip",X),title:G?G(ge.value):"",open:G!==null&&V,placement:Y(W,h),key:"tooltip",classNames:{root:`${se}-tooltip`},getPopupContainer:_||x,draggingDelete:ge.draggingDelete},be)}:void 0,we={...P.root,...v,...a};return N.createElement(d3,{...g,classNames:R,styles:P,step:g.step,range:r,className:oe,style:we,disabled:I,vertical:h,ref:t,prefixCls:se,handleRender:J,activeHandleRender:ae,onChangeComplete:ne})}),yv=e=>{const{prefixCls:t,colors:n,type:r,color:o,range:s=!1,className:a,activeIndex:l,onActive:c,onDragStart:u,onDragChange:d,onKeyDelete:f,...m}=e,p={...m,track:!1},g=i.useMemo(()=>`linear-gradient(90deg, ${n.map(x=>`${x.color} ${x.percent}%`).join(", ")})`,[n]),h=i.useMemo(()=>!o||!r?null:r==="alpha"?o.toRgbString():`hsl(${o.toHsb().h}, 100%, 50%)`,[o,r]),b=We(u),$=We(d),y=i.useMemo(()=>({onDragStart:b,onDragChange:$}),[]),v=We((S,x)=>{const{onFocus:w,style:I,className:E,onKeyDown:R}=S.props,P={...I};return r==="gradient"&&(P.background=f0(n,x.value)),i.cloneElement(S,{onFocus:M=>{c==null||c(x.index),w==null||w(M)},style:P,className:z(E,{[`${t}-slider-handle-active`]:l===x.index}),onKeyDown:M=>{(M.key==="Delete"||M.key==="Backspace")&&f&&f(x.index),R==null||R(M)}})}),C=i.useMemo(()=>({direction:"ltr",handleRender:v}),[]);return i.createElement(bv.Provider,{value:C},i.createElement(hv.Provider,{value:y},i.createElement(v3,{...p,className:z(a,`${t}-slider`),tooltip:{open:!1},range:{editable:s,minCount:2},styles:{rail:{background:g},handle:h?{background:h}:{}},classNames:{rail:`${t}-slider-rail`,handle:`${t}-slider-handle`}})))},y3=e=>{const{value:t,onChange:n,onChangeComplete:r}=e,o=a=>n(a[0]),s=a=>r(a[0]);return i.createElement(yv,{...e,value:[t],onChange:o,onChangeComplete:s})};function qp(e){return xt(e).sort((t,n)=>t.percent-n.percent)}const $3=e=>{const{prefixCls:t,mode:n,onChange:r,onChangeComplete:o,onActive:s,activeIndex:a,onGradientDragging:l,colors:c}=e,u=n==="gradient",d=i.useMemo(()=>c.map($=>({percent:$.percent,color:$.color.toRgbString()})),[c]),f=i.useMemo(()=>d.map($=>$.percent),[d]),m=i.useRef(d),p=({rawValues:$,draggingIndex:y,draggingValue:v})=>{if($.length>d.length){const C=f0(d,v),S=xt(d);S.splice(y,0,{percent:v,color:C}),m.current=S}else m.current=d;l(!0),r(new an(qp(m.current)),!0)},g=({deleteIndex:$,draggingIndex:y,draggingValue:v})=>{let C=xt(m.current);$!==-1?C.splice($,1):(C[y]={...C[y],percent:v},C=qp(C)),r(new an(C),!0)},h=$=>{const y=xt(d);y.splice($,1);const v=new an(y);r(v),o(v)},b=$=>{o(new an(d)),a>=$.length&&s($.length-1),l(!1)};return u?i.createElement(yv,{min:0,max:100,prefixCls:t,className:`${t}-gradient-slider`,colors:d,color:null,value:f,range:!0,onChangeComplete:b,disabled:!1,type:"gradient",activeIndex:a,onActive:s,onDragStart:p,onDragChange:g,onKeyDelete:h}):null},C3=i.memo($3),S3={slider:y3},Gp=()=>{const e=i.useContext(nv),{mode:t,onModeChange:n,modeOptions:r,prefixCls:o,allowClear:s,value:a,disabledAlpha:l,onChange:c,onClear:u,onChangeComplete:d,activeIndex:f,gradientDragging:m,...p}=e,g=N.useMemo(()=>a.cleared?[{percent:0,color:new an("")},{percent:100,color:new an("")}]:a.getColors(),[a]),h=!a.isGradient(),[b,$]=N.useState(a);nt(()=>{var A;h||$((A=g[f])==null?void 0:A.color)},[h,g,m,f]);const y=N.useMemo(()=>{var A;return h?a:m?b:(A=g[f])==null?void 0:A.color},[g,a,f,h,b,m]),[v,C]=N.useState(y),[S,x]=IC(),w=v!=null&&v.equals(y)?y:v;nt(()=>{C(y)},[S,y==null?void 0:y.toHexString()]);const I=(A,T)=>{let F=Bt(A);if(a.cleared){const L=F.toRgb();if(!L.r&&!L.g&&!L.b&&T){const{type:B,value:D=0}=T;F=new an({h:B==="hue"?D:0,s:1,b:1,a:B==="alpha"?D/100:1})}else F=ei(F)}if(t==="single")return F;const H=xt(g);return H[f]={...H[f],color:F},new an(H)},E=(A,T,F)=>{const H=I(A,F);C(H.isGradient()?H.getColors()[f].color:H),c(H,T)},R=(A,T)=>{d(I(A,T)),x()},P=A=>{c(I(A))};let M=null;const O=r.length>1;return(s||O)&&(M=N.createElement("div",{className:`${o}-operation`},O&&N.createElement($4,{size:"small",options:r,value:t,onChange:n}),N.createElement(ov,{prefixCls:o,value:a,onChange:A=>{c(A),u==null||u()},...p}))),N.createElement(N.Fragment,null,M,N.createElement(C3,{...e,colors:g}),N.createElement(hx,{prefixCls:o,value:w==null?void 0:w.toHsb(),disabledAlpha:l,onChange:(A,T)=>{E(A,!0,T)},onChangeComplete:(A,T)=>{R(A,T)},components:S3}),N.createElement(e3,{value:y,onChange:P,prefixCls:o,disabledAlpha:l,...p}))},Xp=()=>{const{prefixCls:e,value:t,presets:n,onChange:r}=i.useContext(rv);return Array.isArray(n)?N.createElement(fw,{value:t,presets:n,prefixCls:e,onChange:r}):null},x3=e=>{const{prefixCls:t,presets:n,panelRender:r,value:o,onChange:s,onClear:a,allowClear:l,disabledAlpha:c,mode:u,onModeChange:d,modeOptions:f,onChangeComplete:m,activeIndex:p,onActive:g,format:h,onFormatChange:b,gradientDragging:$,onGradientDragging:y,disabledFormat:v}=e,C=`${t}-inner`,S=N.useMemo(()=>({prefixCls:t,value:o,onChange:s,onClear:a,allowClear:l,disabledAlpha:c,mode:u,onModeChange:d,modeOptions:f,onChangeComplete:m,activeIndex:p,onActive:g,format:h,onFormatChange:b,gradientDragging:$,onGradientDragging:y,disabledFormat:v}),[t,o,s,a,l,c,u,d,f,m,p,g,h,b,$,y,v]),x=N.useMemo(()=>({prefixCls:t,value:o,presets:n,onChange:s}),[t,o,n,s]),w=N.createElement("div",{className:`${C}-content`},N.createElement(Gp,null),Array.isArray(n)&&N.createElement(a4,null),N.createElement(Xp,null));return N.createElement(nv.Provider,{value:S},N.createElement(rv.Provider,{value:x},N.createElement("div",{className:C},typeof r=="function"?r(w,{components:{Picker:Gp,Presets:Xp}}):w)))},w3=i.forwardRef((e,t)=>{const{color:n,prefixCls:r,open:o,disabled:s,format:a,className:l,style:c,classNames:u,styles:d,showText:f,activeIndex:m,...p}=e,g=`${r}-trigger`,h=`${g}-text`,b=`${h}-cell`,[$]=dn("ColorPicker"),y=N.useMemo(()=>{if(!f)return"";if(typeof f=="function")return f(n);if(n.cleared)return $.transparent;if(n.isGradient())return n.getColors().map((x,w)=>{const I=m!==-1&&m!==w;return N.createElement("span",{key:w,className:z(b,I&&`${b}-inactive`)},x.color.toRgbString()," ",x.percent,"%")});const C=n.toHexString().toUpperCase(),S=cd(n);switch(a){case"rgb":return n.toRgbString();case"hsb":return n.toHsbString();default:return S<100?`${C.slice(0,7)},${S}%`:C}},[n,a,f,m,$.transparent,b]),v=i.useMemo(()=>n.cleared?N.createElement(ov,{prefixCls:r,className:u.body,style:d.body}):N.createElement(rd,{prefixCls:r,color:n.toCssString(),className:u.body,innerClassName:u.content,style:d.body,innerStyle:d.content}),[n,r,u.body,u.content,d.body,d.content]);return N.createElement("div",{ref:t,className:z(g,l,u.root,{[`${g}-active`]:o,[`${g}-disabled`]:s}),style:{...d.root,...c},...cn(p)},v,f&&N.createElement("div",{className:z(h,u.description),style:d.description},y))});function E3(e,t,n){const[r]=dn("ColorPicker"),[o,s]=bt(e,t),[a,l]=i.useState("single"),[c,u]=i.useMemo(()=>{const h=(Array.isArray(n)?n:[n]).filter(v=>v);h.length||h.push("single");const b=new Set(h),$=[],y=(v,C)=>{b.has(v)&&$.push({label:C,value:v})};return y("single",r.singleColor),y("gradient",r.gradientColor),[$,b]},[n,r.singleColor,r.gradientColor]),[d,f]=i.useState(null),m=We(h=>{f(h),s(h)}),p=i.useMemo(()=>{const h=Bt(o||"");return h.equals(d)?d:h},[o,d]),g=i.useMemo(()=>{var h;return u.has(a)?a:(h=c[0])==null?void 0:h.value},[u,a,c]);return i.useEffect(()=>{l(p.isGradient()?"gradient":"single")},[p]),[p,m,g,l,c]}const $v=(e,t)=>({backgroundImage:`conic-gradient(${t} 25%, transparent 25% 50%, ${t} 50% 75%, transparent 75% 100%)`,backgroundSize:`${e} ${e}`}),Up=(e,t)=>{const{componentCls:n,borderRadiusSM:r,colorPickerInsetShadow:o,lineWidth:s,colorFillSecondary:a}=e;return{[`${n}-color-block`]:{position:"relative",borderRadius:r,width:t,height:t,boxShadow:o,flex:"none",...$v("50%",e.colorFillSecondary),[`${n}-color-block-inner`]:{width:"100%",height:"100%",boxShadow:`inset 0 0 0 ${K(s)} ${a}`,borderRadius:"inherit"}}}},I3=e=>{const{componentCls:t,antCls:n,fontSizeSM:r,lineHeightSM:o,colorPickerAlphaInputWidth:s,marginXXS:a,paddingXXS:l,controlHeightSM:c,marginXS:u,fontSizeIcon:d,paddingXS:f,colorTextPlaceholder:m,colorPickerInputNumberHandleWidth:p,lineWidth:g}=e;return{[`${t}-input-container`]:{display:"flex",[`${t}-steppers${n}-input-number`]:{fontSize:r,lineHeight:o,padding:0,[`${n}-input-number-input`]:{paddingInlineStart:l,paddingInlineEnd:0},[`${n}-input-number-handler-wrap`]:{width:p}},[`${t}-steppers${t}-alpha-input`]:{flex:`0 0 ${K(s)}`,marginInlineStart:a},[`${t}-format-select${n}-select`]:{marginInlineEnd:u,width:"auto","&-single":{[`${n}-select-selector`]:{padding:0,border:0},[`${n}-select-arrow`]:{insetInlineEnd:0},[`${n}-select-selection-item`]:{paddingInlineEnd:e.calc(d).add(a).equal(),fontSize:r,lineHeight:K(c)},[`${n}-select-item-option-content`]:{fontSize:r,lineHeight:o},[`${n}-select-dropdown`]:{[`${n}-select-item`]:{minHeight:"auto"}}}},[`${t}-input`]:{gap:a,alignItems:"center",flex:1,width:0,[`${t}-hsb-input,${t}-rgb-input`]:{height:c,display:"flex",gap:a,alignItems:"center"},[`${t}-steppers`]:{flex:1},[`${t}-hex-input${n}-input-affix-wrapper`]:{flex:1,padding:`0 ${K(f)}`,[`${n}-input`]:{fontSize:r,textTransform:"uppercase",lineHeight:K(e.calc(c).sub(e.calc(g).mul(2)).equal())},[`${n}-input-prefix`]:{color:m}}}}}},P3=e=>{const{componentCls:t,controlHeightLG:n,borderRadiusSM:r,colorPickerInsetShadow:o,marginSM:s,colorBgElevated:a,colorFillSecondary:l,lineWidthBold:c,colorPickerHandlerSize:u}=e;return{userSelect:"none",[`${t}-select`]:{[`${t}-palette`]:{minHeight:e.calc(n).mul(4).equal(),overflow:"hidden",borderRadius:r},[`${t}-saturation`]:{position:"absolute",borderRadius:"inherit",boxShadow:o,inset:0},marginBottom:s},[`${t}-handler`]:{width:u,height:u,border:`${K(c)} solid ${a}`,position:"relative",borderRadius:"50%",cursor:"pointer",boxShadow:`${o}, 0 0 0 1px ${l}`}}},R3=e=>{const{componentCls:t,antCls:n,colorTextQuaternary:r,paddingXXS:o,colorPickerPresetColorSize:s,fontSizeSM:a,colorText:l,lineHeightSM:c,lineWidth:u,borderRadius:d,colorFill:f,colorWhite:m,marginXXS:p,paddingXS:g,fontHeightSM:h}=e;return{[`${t}-presets`]:{[`${n}-collapse-item > ${n}-collapse-header`]:{padding:0,[`${n}-collapse-expand-icon`]:{height:h,color:r,paddingInlineEnd:o}},[`${n}-collapse`]:{display:"flex",flexDirection:"column",gap:p},[`${n}-collapse-item > ${n}-collapse-panel > ${n}-collapse-body`]:{padding:`${K(g)} 0`},"&-label":{fontSize:a,color:l,lineHeight:c},"&-items":{display:"flex",flexWrap:"wrap",gap:e.calc(p).mul(1.5).equal(),[`${t}-presets-color`]:{position:"relative",cursor:"pointer",width:s,height:s,"&::before":{content:'""',pointerEvents:"none",width:e.calc(s).add(e.calc(u).mul(4)).equal(),height:e.calc(s).add(e.calc(u).mul(4)).equal(),position:"absolute",top:e.calc(u).mul(-2).equal(),insetInlineStart:e.calc(u).mul(-2).equal(),borderRadius:d,border:`${K(u)} solid transparent`,transition:`border-color ${e.motionDurationMid} ${e.motionEaseInBack}`},"&:hover::before":{borderColor:f},"&::after":{boxSizing:"border-box",position:"absolute",top:"50%",insetInlineStart:"21.5%",display:"table",width:e.calc(s).div(13).mul(5).equal(),height:e.calc(s).div(13).mul(8).equal(),border:`${K(e.lineWidthBold)} solid ${e.colorWhite}`,borderTop:0,borderInlineStart:0,transform:"rotate(45deg) scale(0) translate(-50%,-50%)",opacity:0,content:'""',transition:`all ${e.motionDurationFast} ${e.motionEaseInBack}, opacity ${e.motionDurationFast}`},[`&${t}-presets-color-checked`]:{"&::after":{opacity:1,borderColor:m,transform:"rotate(45deg) scale(1) translate(-50%,-50%)",transition:`transform ${e.motionDurationMid} ${e.motionEaseOutBack} ${e.motionDurationFast}`},[`&${t}-presets-color-bright`]:{"&::after":{borderColor:"rgba(0, 0, 0, 0.45)"}}}}},"&-empty":{fontSize:a,color:r}}}},M3=e=>{const{componentCls:t,colorPickerInsetShadow:n,colorBgElevated:r,colorFillSecondary:o,lineWidthBold:s,colorPickerHandlerSizeSM:a,colorPickerSliderHeight:l,marginSM:c,marginXS:u}=e,d=e.calc(a).sub(e.calc(s).mul(2).equal()).equal(),f=e.calc(a).add(e.calc(s).mul(2).equal()).equal(),m={"&:after":{transform:"scale(1)",boxShadow:`${n}, 0 0 0 1px ${e.colorPrimaryActive}`}};return{[`${t}-slider`]:[$v(K(l),e.colorFillSecondary),{margin:0,padding:0,height:l,borderRadius:e.calc(l).div(2).equal(),"&-rail":{height:l,borderRadius:e.calc(l).div(2).equal(),boxShadow:n},[`& ${t}-slider-handle`]:{width:d,height:d,top:0,borderRadius:"100%","&:before":{display:"block",position:"absolute",background:"transparent",left:{_skip_check_:!0,value:"50%"},top:"50%",transform:"translate(-50%, -50%)",width:f,height:f,borderRadius:"100%"},"&:after":{width:a,height:a,border:`${K(s)} solid ${r}`,boxShadow:`${n}, 0 0 0 1px ${o}`,outline:"none",insetInlineStart:e.calc(s).mul(-1).equal(),top:e.calc(s).mul(-1).equal(),background:"transparent",transition:"none"},"&:focus":m}}],[`${t}-slider-container`]:{display:"flex",gap:c,marginBottom:c,[`${t}-slider-group`]:{flex:1,flexDirection:"column",justifyContent:"space-between",display:"flex","&-disabled-alpha":{justifyContent:"center"}}},[`${t}-gradient-slider`]:{marginBottom:u,[`& ${t}-slider-handle`]:{"&:after":{transform:"scale(0.8)"},"&-active, &:focus":m}}}},eu=(e,t,n)=>({borderInlineEndWidth:e.lineWidth,borderColor:t,boxShadow:`0 0 0 ${K(e.controlOutlineWidth)} ${n}`,outline:0}),N3=e=>{const{componentCls:t}=e;return{"&-rtl":{[`${t}-presets-color`]:{"&::after":{direction:"ltr"}},[`${t}-clear`]:{"&::after":{direction:"ltr"}}}}},Kp=(e,t,n)=>{const{componentCls:r,borderRadiusSM:o,lineWidth:s,colorSplit:a,colorBorder:l,red6:c}=e;return{[`${r}-clear`]:{width:t,height:t,borderRadius:o,border:`${K(s)} solid ${a}`,position:"relative",overflow:"hidden",cursor:"inherit",transition:`all ${e.motionDurationFast}`,...n,"&::after":{content:'""',position:"absolute",insetInlineEnd:e.calc(s).mul(-1).equal(),top:e.calc(s).mul(-1).equal(),display:"block",width:40,height:2,transformOrigin:"calc(100% - 1px) 1px",transform:"rotate(-45deg)",backgroundColor:c},"&:hover":{borderColor:l}}}},T3=e=>{const{componentCls:t,colorError:n,colorWarning:r,colorErrorHover:o,colorWarningHover:s,colorErrorOutline:a,colorWarningOutline:l}=e;return{[`&${t}-status-error`]:{borderColor:n,"&:hover":{borderColor:o},[`&${t}-trigger-active`]:{...eu(e,n,a)}},[`&${t}-status-warning`]:{borderColor:r,"&:hover":{borderColor:s},[`&${t}-trigger-active`]:{...eu(e,r,l)}}}},O3=e=>{const{componentCls:t,controlHeightLG:n,controlHeightSM:r,controlHeight:o,controlHeightXS:s,borderRadius:a,borderRadiusSM:l,borderRadiusXS:c,borderRadiusLG:u,fontSizeLG:d}=e;return{[`&${t}-lg`]:{minWidth:n,minHeight:n,borderRadius:u,[`${t}-color-block, ${t}-clear`]:{width:o,height:o,borderRadius:a},[`${t}-trigger-text`]:{fontSize:d}},[`&${t}-sm`]:{minWidth:r,minHeight:r,borderRadius:l,[`${t}-color-block, ${t}-clear`]:{width:s,height:s,borderRadius:c},[`${t}-trigger-text`]:{lineHeight:K(s)}}}},A3=e=>{const{antCls:t,componentCls:n,colorPickerWidth:r,colorPrimary:o,motionDurationMid:s,colorBgElevated:a,colorTextDisabled:l,colorText:c,colorBgContainerDisabled:u,borderRadius:d,marginXS:f,marginSM:m,controlHeight:p,controlHeightSM:g,colorBgTextActive:h,colorPickerPresetColorSize:b,colorPickerPreviewSize:$,lineWidth:y,colorBorder:v,paddingXXS:C,fontSize:S,colorPrimaryHover:x,controlOutline:w}=e;return[{[n]:{[`${n}-inner`]:{"&-content":{display:"flex",flexDirection:"column",width:r,[`& > ${t}-divider`]:{margin:`${K(m)} 0 ${K(f)}`}},[`${n}-panel`]:{...P3(e)},...M3(e),...Up(e,$),...I3(e),...R3(e),...Kp(e,b,{marginInlineStart:"auto"}),[`${n}-operation`]:{display:"flex",justifyContent:"space-between",marginBottom:f}},"&-trigger":{minWidth:p,minHeight:p,borderRadius:d,border:`${K(y)} solid ${v}`,cursor:"pointer",display:"inline-flex",alignItems:"flex-start",justifyContent:"center",transition:`all ${s}`,background:a,padding:e.calc(C).sub(y).equal(),[`${n}-trigger-text`]:{marginInlineStart:f,marginInlineEnd:e.calc(f).sub(e.calc(C).sub(y)).equal(),fontSize:S,color:c,alignSelf:"center","&-cell":{"&:not(:last-child):after":{content:'", "'},"&-inactive":{color:l}}},"&:hover":{borderColor:x},[`&${n}-trigger-active`]:{...eu(e,o,w)},"&-disabled":{color:l,background:u,cursor:"not-allowed","&:hover":{borderColor:h},[`${n}-trigger-text`]:{color:l}},...Kp(e,g),...Up(e,g),...T3(e),...O3(e)},...N3(e)}},yo(e,{focusElCls:`${n}-trigger-active`})]},z3=at("ColorPicker",e=>{const{colorTextQuaternary:t,marginSM:n}=e,r=8,o=rt(e,{colorPickerWidth:234,colorPickerHandlerSize:16,colorPickerHandlerSizeSM:12,colorPickerAlphaInputWidth:44,colorPickerInputNumberHandleWidth:16,colorPickerPresetColorSize:24,colorPickerInsetShadow:`inset 0 0 1px 0 ${t}`,colorPickerSliderHeight:r,colorPickerPreviewSize:e.calc(r).mul(2).add(n).equal()});return A3(o)}),Cv=e=>{var ye,ce;const{mode:t,value:n,defaultValue:r,format:o,defaultFormat:s,allowClear:a=!1,presets:l,children:c,trigger:u="click",open:d,disabled:f,placement:m="bottomLeft",arrow:p,panelRender:g,showText:h,style:b,className:$,size:y,rootClassName:v,prefixCls:C,styles:S,classNames:x,disabledAlpha:w=!1,onFormatChange:I,onChange:E,onClear:R,onOpenChange:P,onChangeComplete:M,getPopupContainer:O,autoAdjustOverflow:A=!0,destroyTooltipOnHide:T,destroyOnHidden:F,disabledFormat:H,...L}=e,{getPrefixCls:B,direction:D,className:k,style:W,classNames:_,styles:X,arrow:U}=dt("colorPicker"),j=i.useContext(yn),V=f??j,G=B("color-picker",C),te=Xi(p,U),{compactSize:ee,compactItemClassnames:ne}=Un(G,D),Y=Jt(Q=>y??ee??Q),se={...e,trigger:u,allowClear:a,autoAdjustOverflow:A,disabledAlpha:w,arrow:te,placement:m,disabled:V,size:Y},[ue,q]=pt([_,x],[X,S],{props:se},{popup:{_default:"root"}}),[oe,Z]=bt(!1,d),J=!V&&oe,[ae,we]=bt(s,o),de=Q=>{we(Q),ae!==Q&&(I==null||I(Q))},ge=Q=>{(!Q||!V)&&(Z(Q),P==null||P(Q))},[be,me,Ne,Ae,Ee]=E3(r,n,t),ze=i.useMemo(()=>cd(be)<100,[be]),[Re,ve]=N.useState(null),fe=Q=>{if(M){let pe=Bt(Q);w&&ze&&(pe=ei(Q)),M(pe)}},Ce=(Q,pe)=>{let ie=Bt(Q);w&&ze&&(ie=ei(ie)),me(ie),ve(null),E&&E(ie,ie.toCssString()),pe||fe(ie)},[He,Ie]=N.useState(0),[re,$e]=N.useState(!1),ke=Q=>{if(Ae(Q),Q==="single"&&be.isGradient())Ie(0),Ce(new an(be.getColors()[0].color)),ve(be);else if(Q==="gradient"&&!be.isGradient()){const pe=ze?ei(be):be;Ce(new an(Re||[{percent:0,color:pe},{percent:100,color:pe}]))}},{status:De}=N.useContext($n),ot=_t(G),[qe,ft]=z3(G,ot),Qe={[`${G}-rtl`]:D},st=z(v,ft,ot,Qe),lt=z(zr(G,De),{[`${G}-sm`]:Y==="small",[`${G}-lg`]:Y==="large"},ne,k,st,$,qe),Se=z(G,st,(ye=ue.popup)==null?void 0:ye.root),Be={open:J,trigger:u,placement:m,arrow:te,rootClassName:v,getPopupContainer:O,autoAdjustOverflow:A,destroyOnHidden:F??!!T},Pe={...W,...b};return N.createElement(Id,{classNames:{root:Se},styles:{root:(ce=q.popup)==null?void 0:ce.root,container:S==null?void 0:S.popupOverlayInner},onOpenChange:ge,content:N.createElement(ur,{form:!0},N.createElement(x3,{mode:Ne,onModeChange:ke,modeOptions:Ee,prefixCls:G,value:be,allowClear:a,disabled:V,disabledAlpha:w,presets:l,panelRender:g,format:ae,onFormatChange:de,onChange:Ce,onChangeComplete:fe,onClear:R,activeIndex:He,onActive:Ie,gradientDragging:re,onGradientDragging:$e,disabledFormat:H})),...Be},c||N.createElement(w3,{activeIndex:J?He:-1,open:J,className:lt,style:Pe,classNames:ue,styles:q,prefixCls:G,disabled:V,showText:h,format:ae,...L,color:be}))},B3=bd(Cv,void 0,e=>({...e,placement:"bottom",autoAdjustOverflow:!1}),"color-picker",e=>e);Cv._InternalPanelDoNotUseOrYouWillBeFired=B3;function Ni(e){return["small","middle","large"].includes(e)}function Yp(e){return e?typeof e=="number"&&!Number.isNaN(e):!1}const Sv=N.createContext({latestIndex:0}),L3=Sv.Provider,H3=e=>{const{className:t,prefix:n,index:r,children:o,separator:s,style:a,classNames:l,styles:c}=e,{latestIndex:u}=i.useContext(Sv);return vn(o)?i.createElement(i.Fragment,null,i.createElement("div",{className:t,style:a},o),r{const{componentCls:t,antCls:n}=e;return{[t]:{display:"inline-flex","&-rtl":{direction:"rtl"},"&-vertical":{flexDirection:"column"},"&-align":{flexDirection:"column","&-center":{alignItems:"center"},"&-start":{alignItems:"flex-start"},"&-end":{alignItems:"flex-end"},"&-baseline":{alignItems:"baseline"}},[`${t}-item:empty`]:{display:"none"},[`${t}-item > ${n}-badge-not-a-wrapper:only-child`]:{display:"block"}}}},F3=e=>{const{componentCls:t}=e;return{[t]:{"&-gap-row-small":{rowGap:e.spaceGapSmallSize},"&-gap-row-middle":{rowGap:e.spaceGapMiddleSize},"&-gap-row-large":{rowGap:e.spaceGapLargeSize},"&-gap-col-small":{columnGap:e.spaceGapSmallSize},"&-gap-col-middle":{columnGap:e.spaceGapMiddleSize},"&-gap-col-large":{columnGap:e.spaceGapLargeSize}}}},_3=at("Space",e=>{const t=rt(e,{spaceGapSmallSize:e.paddingXS,spaceGapMiddleSize:e.padding,spaceGapLargeSize:e.paddingLG});return[D3(t),F3(t)]},()=>({}),{resetStyle:!1}),k3=i.forwardRef((e,t)=>{const{getPrefixCls:n,direction:r,size:o,className:s,style:a,classNames:l,styles:c}=dt("space"),{size:u=o??"small",align:d,className:f,rootClassName:m,children:p,direction:g,orientation:h,prefixCls:b,split:$,separator:y,style:v,vertical:C,wrap:S=!1,classNames:x,styles:w,...I}=e,[E,R]=Array.isArray(u)?u:[u,u],P=Ni(R),M=Ni(E),O=Yp(R),A=Yp(E),T=Vt(p,{keepEmpty:!0}),[F,H]=vo(h,C,g),L=d===void 0&&!H?"center":d,B=y??$,D=n("space",b),[k,W]=_3(D),_={...e,size:u,orientation:F,align:L},[X,U]=pt([l,x],[c,w],{props:_}),j=z(D,s,k,`${D}-${F}`,{[`${D}-rtl`]:r==="rtl",[`${D}-align-${L}`]:L,[`${D}-gap-row-${R}`]:P,[`${D}-gap-col-${E}`]:M},f,m,W,X.root),V=z(`${D}-item`,X.item),G=T.map((ne,Y)=>{const se=(ne==null?void 0:ne.key)||`${V}-${Y}`;return i.createElement(H3,{prefix:D,classNames:X,styles:U,className:V,key:se,index:Y,separator:B,style:U.item},ne)}),te=i.useMemo(()=>({latestIndex:T.reduce((Y,se,ue)=>vn(se)?ue:Y,0)}),[T]);if(T.length===0)return null;const ee={};return S&&(ee.flexWrap="wrap"),!M&&A&&(ee.columnGap=E),!P&&O&&(ee.rowGap=R),i.createElement("div",{ref:t,className:j,style:{...ee,...U.root,...a,...v},...I},i.createElement(L3,{value:te},G))}),Zi=k3;Zi.Compact=td;Zi.Addon=cv;const xv=e=>{const{getPopupContainer:t,getPrefixCls:n,direction:r}=i.useContext(je),{prefixCls:o,type:s="default",danger:a,disabled:l,loading:c,onClick:u,htmlType:d,children:f,className:m,menu:p,arrow:g,autoFocus:h,trigger:b,align:$,open:y,onOpenChange:v,placement:C,getPopupContainer:S,href:x,icon:w=i.createElement(Ad,null),title:I,buttonsRender:E=ee=>ee,mouseEnterDelay:R,mouseLeaveDelay:P,overlayClassName:M,overlayStyle:O,destroyOnHidden:A,destroyPopupOnHide:T,dropdownRender:F,popupRender:H,...L}=e,B=n("dropdown",o),D=`${B}-button`,W={menu:p,arrow:g,autoFocus:h,align:$,disabled:l,trigger:l?[]:b,onOpenChange:v,getPopupContainer:S||t,mouseEnterDelay:R,mouseLeaveDelay:P,classNames:{root:M},styles:{root:O},destroyOnHidden:A,popupRender:H||F},{compactSize:_,compactItemClassnames:X}=Un(B,r),U=z(D,X,m);"destroyPopupOnHide"in e&&(W.destroyPopupOnHide=T),"open"in e&&(W.open=y),"placement"in e?W.placement=C:W.placement=r==="rtl"?"bottomLeft":"bottomRight";const j=i.createElement(On,{type:s,danger:a,disabled:l,loading:c,onClick:u,htmlType:d,href:x,title:I},f),V=i.createElement(On,{type:s,danger:a,icon:w}),[G,te]=E([j,V]);return i.createElement(Zi.Compact,{className:U,size:_,block:!0,...L},G,i.createElement(Yi,{...W},te))};xv.__ANT_BUTTON=!0;const V3=Yi;V3.Button=xv;const wv=["wrap","nowrap","wrap-reverse"],Ev=["flex-start","flex-end","start","end","center","space-between","space-around","space-evenly","stretch","normal","left","right"],Iv=["center","start","end","flex-start","flex-end","self-start","self-end","baseline","normal","stretch"],W3=(e,t)=>{const n=t.wrap===!0?"wrap":t.wrap;return{[`${e}-wrap-${n}`]:n&&wv.includes(n)}},j3=(e,t)=>{const n={};return Iv.forEach(r=>{n[`${e}-align-${r}`]=t.align===r}),n[`${e}-align-stretch`]=!t.align&&!!t.vertical,n},q3=(e,t)=>{const n={};return Ev.forEach(r=>{n[`${e}-justify-${r}`]=t.justify===r}),n},G3=(e,t)=>z({...W3(e,t),...j3(e,t),...q3(e,t)}),X3=e=>{const{componentCls:t}=e;return{[t]:{display:"flex",margin:0,padding:0,"&-vertical":{flexDirection:"column"},"&-rtl":{direction:"rtl"},"&:empty":{display:"none"}}}},U3=e=>{const{componentCls:t}=e;return{[t]:{"&-gap-small":{gap:e.flexGapSM},"&-gap-middle":{gap:e.flexGap},"&-gap-large":{gap:e.flexGapLG}}}},K3=e=>{const{componentCls:t}=e,n={};return wv.forEach(r=>{n[`${t}-wrap-${r}`]={flexWrap:r}}),n},Y3=e=>{const{componentCls:t}=e,n={};return Iv.forEach(r=>{n[`${t}-align-${r}`]={alignItems:r}}),n},Q3=e=>{const{componentCls:t}=e,n={};return Ev.forEach(r=>{n[`${t}-justify-${r}`]={justifyContent:r}}),n},Z3=()=>({}),J3=at("Flex",e=>{const{paddingXS:t,padding:n,paddingLG:r}=e,o=rt(e,{flexGapSM:t,flexGap:n,flexGapLG:r});return[X3(o),U3(o),K3(o),Y3(o),Q3(o)]},Z3,{resetStyle:!1}),o8=N.forwardRef((e,t)=>{const{prefixCls:n,rootClassName:r,className:o,style:s,flex:a,gap:l,vertical:c,orientation:u,component:d="div",children:f,...m}=e,{flex:p,direction:g,getPrefixCls:h}=N.useContext(je),b=h("flex",n),[$,y]=J3(b),[,v]=vo(u,c??(p==null?void 0:p.vertical)),C=z(o,r,p==null?void 0:p.className,b,$,y,G3(b,{...e,vertical:v}),{[`${b}-rtl`]:g==="rtl",[`${b}-gap-${l}`]:Ni(l),[`${b}-vertical`]:v}),S={...p==null?void 0:p.style,...s};return vn(a)&&(S.flex=a),vn(l)&&!Ni(l)&&(S.gap=l),N.createElement(d,{ref:t,className:C,style:S,...yt(m,["justify","wrap","align"])},f)});var eN={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M637 443H519V309c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v134H325c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h118v134c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V519h118c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8zm284 424L775 721c122.1-148.9 113.6-369.5-26-509-148-148.1-388.4-148.1-537 0-148.1 148.6-148.1 389 0 537 139.5 139.6 360.1 148.1 509 26l146 146c3.2 2.8 8.3 2.8 11 0l43-43c2.8-2.7 2.8-7.8 0-11zM696 696c-118.8 118.7-311.2 118.7-430 0-118.7-118.8-118.7-311.2 0-430 118.8-118.7 311.2-118.7 430 0 118.7 118.8 118.7 311.2 0 430z"}}]},name:"zoom-in",theme:"outlined"};function tu(){return tu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,tu({},e,{ref:t,icon:eN})),s8=i.forwardRef(tN);var nN={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M637 443H325c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h312c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8zm284 424L775 721c122.1-148.9 113.6-369.5-26-509-148-148.1-388.4-148.1-537 0-148.1 148.6-148.1 389 0 537 139.5 139.6 360.1 148.1 509 26l146 146c3.2 2.8 8.3 2.8 11 0l43-43c2.8-2.7 2.8-7.8 0-11zM696 696c-118.8 118.7-311.2 118.7-430 0-118.7-118.8-118.7-311.2 0-430 118.8-118.7 311.2-118.7 430 0 118.7 118.8 118.7 311.2 0 430z"}}]},name:"zoom-out",theme:"outlined"};function nu(){return nu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,nu({},e,{ref:t,icon:nN})),i8=i.forwardRef(rN),oN=e=>{const{getPrefixCls:t,direction:n}=i.useContext(je),{prefixCls:r,className:o}=e,s=t("input-group",r),a=t("input"),[l,c]=Qb(a),u=z(s,c,{[`${s}-lg`]:e.size==="large",[`${s}-sm`]:e.size==="small",[`${s}-compact`]:e.compact,[`${s}-rtl`]:n==="rtl"},l,o),d=i.useContext($n),f=i.useMemo(()=>({...d,isFormItemInput:!1}),[d]);return i.createElement($n.Provider,{value:f},i.createElement(Zi.Compact,{className:u,style:e.style,onMouseEnter:e.onMouseEnter,onMouseLeave:e.onMouseLeave,onFocus:e.onFocus,onBlur:e.onBlur},e.children))},sN=e=>{const{componentCls:t,paddingXS:n}=e;return{[t]:{display:"inline-flex",alignItems:"center",flexWrap:"nowrap",columnGap:n,[`${t}-input-wrapper`]:{position:"relative",[`${t}-mask-icon`]:{position:"absolute",zIndex:"1",top:"50%",right:"50%",transform:"translate(50%, -50%)",pointerEvents:"none"},[`${t}-mask-input`]:{color:"transparent",caretColor:e.colorText},[`${t}-mask-input[type=number]::-webkit-inner-spin-button`]:{"-webkit-appearance":"none",margin:0},[`${t}-mask-input[type=number]`]:{"-moz-appearance":"textfield"}},"&-rtl":{direction:"rtl"},[`${t}-input`]:{textAlign:"center",paddingInline:e.paddingXXS},[`&${t}-sm ${t}-input`]:{paddingInline:e.calc(e.paddingXXS).div(2).equal()},[`&${t}-lg ${t}-input`]:{paddingInline:e.paddingXS}}}},iN=at(["Input","OTP"],e=>{const t=rt(e,Ss(e));return sN(t)},xs),aN=i.forwardRef((e,t)=>{const{className:n,value:r,onChange:o,onActiveChange:s,index:a,mask:l,onFocus:c,...u}=e,{getPrefixCls:d}=i.useContext(je),f=d("otp"),m=typeof l=="string"?l:r,p=i.useRef(null);i.useImperativeHandle(t,()=>p.current);const g=y=>{o(a,y.target.value)},h=()=>{Ke(()=>{var v;const y=(v=p.current)==null?void 0:v.input;document.activeElement===y&&y&&y.select()})},b=y=>{c==null||c(y),h()},$=y=>{const{key:v,ctrlKey:C,metaKey:S}=y;v==="ArrowLeft"?s(a-1):v==="ArrowRight"?s(a+1):v==="z"&&(C||S)?y.preventDefault():v==="Backspace"&&!r&&s(a-1),h()};return i.createElement("span",{className:`${f}-input-wrapper`,role:"presentation"},l&&r!==""&&r!==void 0&&i.createElement("span",{className:`${f}-mask-icon`,"aria-hidden":"true"},m),i.createElement(ws,{"aria-label":`OTP Input ${a+1}`,type:l===!0?"password":"text",...u,ref:p,value:r,onInput:g,onFocus:b,onKeyDown:$,onMouseDown:h,onMouseUp:h,className:z(n,{[`${f}-mask-input`]:l})}))});function Gs(e){return(e||"").split("")}const lN=e=>{const{index:t,prefixCls:n,separator:r,className:o,style:s}=e,a=typeof r=="function"?r(t):r;return a?i.createElement("span",{className:z(`${n}-separator`,o),style:s},a):null},cN=i.forwardRef((e,t)=>{const{prefixCls:n,length:r=6,size:o,defaultValue:s,value:a,onChange:l,formatter:c,separator:u,variant:d,disabled:f,status:m,autoFocus:p,mask:g,type:h,autoComplete:b,onInput:$,onFocus:y,inputMode:v,classNames:C,styles:S,className:x,style:w,...I}=e,{classNames:E,styles:R,getPrefixCls:P,direction:M,style:O,className:A}=dt("otp"),T=P("otp",n),F={...e,length:r},[H,L]=pt([E,C],[R,S],{props:F}),B=cn(I,{aria:!0,data:!0,attr:!0}),[D,k]=iN(T),W=Jt(Z=>o??Z),_=i.useContext($n),X=ys(_.status,m),U=i.useMemo(()=>({..._,status:X,hasFeedback:!1,feedbackIcon:null}),[_,X]),j=i.useRef(null),V=i.useRef({});i.useImperativeHandle(t,()=>({focus:()=>{var Z;(Z=V.current[0])==null||Z.focus()},blur:()=>{var Z;for(let J=0;Jc?c(Z):Z,[te,ee]=i.useState(()=>Gs(G(s||"")));i.useEffect(()=>{a!==void 0&&ee(Gs(a))},[a]);const ne=We(Z=>{ee(Z),$&&$(Z),l&&Z.length===r&&Z.every(J=>J)&&Z.some((J,ae)=>te[ae]!==J)&&l(Z.join(""))}),Y=We((Z,J)=>{let ae=xt(te);for(let de=0;de=0&&!ae[de];de-=1)ae.pop();const we=G(ae.map(de=>de||" ").join(""));return ae=Gs(we).map((de,ge)=>de===" "&&!ae[ge]?ae[ge]:de),ae}),se=(Z,J)=>{var de;const ae=Y(Z,J),we=Math.min(Z+J.length,r-1);we!==Z&&ae[Z]!==void 0&&((de=V.current[we])==null||de.focus()),ne(ae)},ue=Z=>{var J;(J=V.current[Z])==null||J.focus()},q=(Z,J)=>{var ae,we,de;for(let ge=0;ge{const ae=`otp-${J}`,we=te[J]||"";return i.createElement(i.Fragment,{key:ae},i.createElement(aN,{ref:de=>{V.current[J]=de},index:J,size:W,htmlSize:1,className:z(H.input,`${T}-input`),style:L.input,onChange:se,value:we,onActiveChange:ue,autoFocus:J===0&&p,onFocus:de=>q(de,J),...oe}),Ji.createElement(Ye,ru({},e,{ref:t,icon:uN})),fN=i.forwardRef(dN);var mN={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M942.2 486.2C847.4 286.5 704.1 186 512 186c-192.2 0-335.4 100.5-430.2 300.3a60.3 60.3 0 000 51.5C176.6 737.5 319.9 838 512 838c192.2 0 335.4-100.5 430.2-300.3 7.7-16.2 7.7-35 0-51.5zM512 766c-161.3 0-279.4-81.8-362.7-254C232.6 339.8 350.7 258 512 258c161.3 0 279.4 81.8 362.7 254C791.5 684.2 673.4 766 512 766zm-4-430c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm0 288c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112z"}}]},name:"eye",theme:"outlined"};function ou(){return ou=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,ou({},e,{ref:t,icon:mN})),gN=i.forwardRef(pN),hN=e=>e?i.createElement(gN,null):i.createElement(fN,null),bN={click:"onClick",hover:"onMouseOver"},vN=i.forwardRef((e,t)=>{const{disabled:n,action:r="click",visibilityToggle:o=!0,iconRender:s=hN,suffix:a}=e,l=i.useContext(yn),c=n??l,u=typeof o=="object"&&o.visible!==void 0,[d,f]=i.useState(()=>u?o.visible:!1),m=i.useRef(null);i.useEffect(()=>{u&&f(o.visible)},[u,o]);const p=gv(m),g=()=>{var M;if(c)return;d&&p();const P=!d;f(P),typeof o=="object"&&((M=o.onVisibleChange)==null||M.call(o,P))},h=P=>{const M=bN[r]||"",O=s(d),A={[M]:g,className:`${P}-icon`,key:"passwordIcon",onMouseDown:T=>{T.preventDefault()},onMouseUp:T=>{T.preventDefault()}};return i.cloneElement(i.isValidElement(O)?O:i.createElement("span",null,O),A)},{className:b,prefixCls:$,inputPrefixCls:y,size:v,...C}=e,{getPrefixCls:S}=i.useContext(je),x=S("input",y),w=S("input-password",$),I=o&&h(w),E=z(w,b,{[`${w}-${v}`]:!!v}),R={...yt(C,["suffix","iconRender","visibilityToggle"]),type:d?"text":"password",className:E,prefixCls:x,suffix:i.createElement(i.Fragment,null,I,a)};return v&&(R.size=v),i.createElement(ws,{ref:Ft(t,m),...R})}),yN=e=>{const{componentCls:t}=e,n=`${t}-btn`;return{[t]:{width:"100%",[n]:{"&-filled":{background:e.colorFillTertiary,"&:not(:disabled)":{"&:hover":{background:e.colorFillSecondary},"&:active":{background:e.colorFill}}}}}}},$N=at(["Input","Search"],e=>[yN(e)]),CN=i.forwardRef((e,t)=>{const{prefixCls:n,inputPrefixCls:r,className:o,size:s,style:a,enterButton:l=!1,addonAfter:c,loading:u,disabled:d,onSearch:f,onChange:m,onCompositionStart:p,onCompositionEnd:g,variant:h,onPressEnter:b,classNames:$,styles:y,hidden:v,...C}=e,{direction:S,getPrefixCls:x,classNames:w,styles:I}=dt("inputSearch"),E={...e,enterButton:l},[R,P]=pt([w,$],[I,y],{props:E},{button:{_default:"root"}}),M=i.useRef(!1),O=x("input-search",n),A=x("input",r),[T,F]=$N(O),{compactSize:H}=Un(O,S),L=Jt(q=>s??H??q),B=i.useRef(null),D=q=>{q!=null&&q.target&&q.type==="click"&&f&&f(q.target.value,q,{source:"clear"}),m==null||m(q)},k=q=>{var oe;document.activeElement===((oe=B.current)==null?void 0:oe.input)&&q.preventDefault()},W=q=>{var oe,Z;f&&f((Z=(oe=B.current)==null?void 0:oe.input)==null?void 0:Z.value,q,{source:"input"})},_=q=>{M.current||u||(b==null||b(q),W(q))},X=typeof l=="boolean"?i.createElement(pb,null):null,U=`${O}-btn`,j=z(U,{[`${U}-${h}`]:h});let V;const G=l||{},te=G.type&&G.type.__ANT_BUTTON===!0;te||G.type==="button"?V=Wt(G,{onMouseDown:k,onClick:q=>{var oe,Z;(Z=(oe=G==null?void 0:G.props)==null?void 0:oe.onClick)==null||Z.call(oe,q),W(q)},key:"enterButton",...te?{className:j,size:L}:{}}):V=i.createElement(On,{classNames:R.button,styles:P.button,className:j,color:l?"primary":"default",size:L,disabled:d,key:"enterButton",onMouseDown:k,onClick:W,loading:u,icon:X,variant:h==="borderless"||h==="filled"||h==="underlined"?"text":l?"solid":void 0},l),c&&(V=[V,Wt(c,{key:"addonAfter"})]);const ee=z(O,F,{[`${O}-rtl`]:S==="rtl",[`${O}-${L}`]:!!L,[`${O}-with-button`]:!!l},o,T,R.root),ne=q=>{M.current=!0,p==null||p(q)},Y=q=>{M.current=!1,g==null||g(q)},se=cn(C,{data:!0}),ue=yt({...C,classNames:yt(R,["button","root"]),styles:yt(P,["button","root"]),prefixCls:A,type:"search",size:L,variant:h,onPressEnter:_,onCompositionStart:ne,onCompositionEnd:Y,onChange:D,disabled:d},Object.keys(se));return i.createElement(td,{className:ee,style:{...a,...P.root},...se,hidden:v},i.createElement(ws,{ref:Ft(B,t),...ue}),V)}),SN=` + min-height:0 !important; + max-height:none !important; + height:0 !important; + visibility:hidden !important; + overflow:hidden !important; + position:absolute !important; + z-index:-1000 !important; + top:0 !important; + right:0 !important; + pointer-events: none !important; +`,xN=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","font-variant","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing","word-break","white-space"],Ga={};let tn;function wN(e,t=!1){const n=e.getAttribute("id")||e.getAttribute("data-reactid")||e.getAttribute("name");if(t&&Ga[n])return Ga[n];const r=window.getComputedStyle(e),o=r.getPropertyValue("box-sizing")||r.getPropertyValue("-moz-box-sizing")||r.getPropertyValue("-webkit-box-sizing"),s=parseFloat(r.getPropertyValue("padding-bottom"))+parseFloat(r.getPropertyValue("padding-top")),a=parseFloat(r.getPropertyValue("border-bottom-width"))+parseFloat(r.getPropertyValue("border-top-width")),c={sizingStyle:xN.map(u=>`${u}:${r.getPropertyValue(u)}`).join(";"),paddingSize:s,borderSize:a,boxSizing:o};return t&&n&&(Ga[n]=c),c}function EN(e,t=!1,n=null,r=null){tn||(tn=document.createElement("textarea"),tn.setAttribute("tab-index","-1"),tn.setAttribute("aria-hidden","true"),tn.setAttribute("name","hiddenTextarea"),document.body.appendChild(tn)),e.getAttribute("wrap")?tn.setAttribute("wrap",e.getAttribute("wrap")):tn.removeAttribute("wrap");const{paddingSize:o,borderSize:s,boxSizing:a,sizingStyle:l}=wN(e,t);tn.setAttribute("style",`${l};${SN}`),tn.value=e.value||e.placeholder||"";let c,u,d,f=tn.scrollHeight;if(a==="border-box"?f+=s:a==="content-box"&&(f-=o),n!==null||r!==null){tn.value=" ";const p=tn.scrollHeight-o;n!==null&&(c=p*n,a==="border-box"&&(c=c+o+s),f=Math.max(c,f)),r!==null&&(u=p*r,a==="border-box"&&(u=u+o+s),d=f>u?"":"hidden",f=Math.min(u,f))}const m={height:f,overflowY:d,resize:"none"};return c&&(m.minHeight=c),u&&(m.maxHeight=u),m}function su(){return su=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const{prefixCls:n,defaultValue:r,value:o,autoSize:s,onResize:a,className:l,style:c,disabled:u,onChange:d,onInternalAutoSize:f,...m}=e,[p,g]=bt(r,o),h=p??"",b=T=>{g(T.target.value),d==null||d(T)},$=i.useRef();i.useImperativeHandle(t,()=>({textArea:$.current}));const[y,v]=i.useMemo(()=>s&&typeof s=="object"?[s.minRows,s.maxRows]:[],[s]),C=!!s,[S,x]=i.useState(Ka),[w,I]=i.useState(),E=()=>{x(Xa)};nt(()=>{C&&E()},[o,y,v,C]),nt(()=>{if(S===Xa)x(Ua);else if(S===Ua){const T=EN($.current,!1,y,v);x(Ka),I(T)}},[S]);const R=i.useRef(),P=()=>{Ke.cancel(R.current)},M=T=>{S===Ka&&(a==null||a(T),s&&(P(),R.current=Ke(()=>{E()})))};i.useEffect(()=>P,[]);const A={...c,...C?w:null};return(S===Xa||S===Ua)&&(A.overflowY="hidden",A.overflowX="hidden"),i.createElement(Fn,{onResize:M,disabled:!(s||a)},i.createElement("textarea",su({},m,{ref:$,style:A,className:z(n,l,{[`${n}-disabled`]:u}),disabled:u,value:h,onChange:b})))});function iu(){return iu=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const[P,M]=bt(e,t),O=P==null?"":String(P),[A,T]=N.useState(!1),F=N.useRef(!1),[H,L]=N.useState(null),B=i.useRef(null),D=i.useRef(null),k=()=>{var ge;return(ge=D.current)==null?void 0:ge.textArea},W=()=>{k().focus()};i.useImperativeHandle(R,()=>{var ge;return{resizableTextArea:D.current,focus:W,blur:()=>{k().blur()},nativeElement:((ge=B.current)==null?void 0:ge.nativeElement)||k()}}),i.useEffect(()=>{T(ge=>!h&&ge)},[h]);const[_,X]=N.useState(null);N.useEffect(()=>{_&&k().setSelectionRange(..._)},[_]);const U=mv(m,f),j=U.max??a,V=Number(j)>0,G=U.strategy(O),te=!!j&&G>j,ee=(ge,be)=>{let me=be;!F.current&&U.exceedFormatter&&U.max&&U.strategy(be)>U.max&&(me=U.exceedFormatter(be,{max:U.max}),be!==me&&X([k().selectionStart||0,k().selectionEnd||0])),M(me),Pi(ge.currentTarget,ge,o,me)},ne=ge=>{F.current=!0,l==null||l(ge)},Y=ge=>{F.current=!1,ee(ge,ge.currentTarget.value),c==null||c(ge)},se=ge=>{ee(ge,ge.target.value)},ue=ge=>{ge.key==="Enter"&&S&&!ge.nativeEvent.isComposing&&S(ge),I==null||I(ge)},q=ge=>{T(!0),n==null||n(ge)},oe=ge=>{T(!1),r==null||r(ge)},Z=ge=>{M(""),W(),Pi(k(),ge,o)};let J=u,ae;U.show&&(U.showFormatter?ae=U.showFormatter({value:O,count:G,maxLength:j}):ae=`${G}${V?` / ${j}`:""}`,J=N.createElement(N.Fragment,null,J,N.createElement("span",{className:z(`${d}-data-count`,$==null?void 0:$.count),style:y==null?void 0:y.count},ae)));const we=ge=>{var be;v==null||v(ge),(be=k())!=null&&be.style.height&&L(!0)},de=!w&&!f&&!s;return N.createElement(fv,{ref:B,value:O,allowClear:s,handleReset:Z,suffix:J,prefixCls:d,classNames:{...$,affixWrapper:z($==null?void 0:$.affixWrapper,{[`${d}-show-count`]:f,[`${d}-textarea-allow-clear`]:s})},disabled:h,focused:A,className:z(p,te&&`${d}-out-of-range`),style:{...g,...H&&!de?{height:"auto"}:{}},dataAttrs:{affixWrapper:{"data-count":typeof ae=="string"?ae:void 0}},hidden:b,readOnly:x,onClear:C},N.createElement(IN,iu({},E,{autoSize:w,maxLength:a,onKeyDown:ue,onChange:se,onFocus:q,onBlur:oe,onCompositionStart:ne,onCompositionEnd:Y,className:z($==null?void 0:$.textarea),style:{resize:g==null?void 0:g.resize,...y==null?void 0:y.textarea},disabled:h,prefixCls:d,onResize:we,ref:D,readOnly:x})))}),RN=e=>{const{componentCls:t,paddingLG:n}=e,r=`${t}-textarea`;return{[`textarea${t}`]:{maxWidth:"100%",height:"auto",minHeight:e.controlHeight,lineHeight:e.lineHeight,verticalAlign:"bottom",transition:`all ${e.motionDurationSlow}`,resize:"vertical",[`&${t}-mouse-active`]:{transition:`all ${e.motionDurationSlow}, height 0s, width 0s`}},[`${t}-textarea-affix-wrapper-resize-dirty`]:{width:"auto"},[r]:{position:"relative","&-show-count":{[`${t}-data-count`]:{position:"absolute",bottom:e.calc(e.fontSize).mul(e.lineHeight).mul(-1).equal(),insetInlineEnd:0,color:e.colorTextDescription,whiteSpace:"nowrap",pointerEvents:"none"}},[` + &-allow-clear > ${t}, + &-affix-wrapper${r}-has-feedback ${t} + `]:{paddingInlineEnd:n},[`&-affix-wrapper${t}-affix-wrapper`]:{padding:0,[`> textarea${t}`]:{fontSize:"inherit",border:"none",outline:"none",background:"transparent",minHeight:e.calc(e.controlHeight).sub(e.calc(e.lineWidth).mul(2)).equal(),"&:focus":{boxShadow:"none !important"}},[`${t}-suffix`]:{margin:0,"> *:not(:last-child)":{marginInline:0},[`${t}-clear-icon`]:{position:"absolute",insetInlineEnd:e.paddingInline,insetBlockStart:e.paddingXS},[`${r}-suffix`]:{position:"absolute",top:0,insetInlineEnd:e.paddingInline,bottom:0,zIndex:1,display:"inline-flex",alignItems:"center",margin:"auto",pointerEvents:"none"}}},[`&-affix-wrapper${t}-affix-wrapper-rtl`]:{[`${t}-suffix`]:{[`${t}-data-count`]:{direction:"ltr",insetInlineStart:0}}},[`&-affix-wrapper${t}-affix-wrapper-sm`]:{[`${t}-suffix`]:{[`${t}-clear-icon`]:{insetInlineEnd:e.paddingInlineSM}}}}}},MN=at(["Input","TextArea"],e=>{const t=rt(e,Ss(e));return RN(t)},xs,{resetFont:!1}),Pv=i.forwardRef((e,t)=>{var q;const{prefixCls:n,bordered:r=!0,size:o,disabled:s,status:a,allowClear:l,classNames:c,rootClassName:u,className:d,style:f,styles:m,variant:p,showCount:g,onMouseDown:h,onResize:b,...$}=e,{getPrefixCls:y,direction:v,allowClear:C,autoComplete:S,className:x,style:w,classNames:I,styles:E}=dt("textArea"),R=i.useContext(yn),P=s??R,{status:M,hasFeedback:O,feedbackIcon:A}=i.useContext($n),T=ys(M,a),[F,H]=pt([I,c],[E,m],{props:e}),L=i.useRef(null);i.useImperativeHandle(t,()=>{var oe,Z;return{resizableTextArea:(oe=L.current)==null?void 0:oe.resizableTextArea,focus:J=>{var ae,we;md((we=(ae=L.current)==null?void 0:ae.resizableTextArea)==null?void 0:we.textArea,J)},blur:()=>{var J;return(J=L.current)==null?void 0:J.blur()},nativeElement:((Z=L.current)==null?void 0:Z.nativeElement)||null}});const B=y("input",n),D=_t(B),[k,W]=Yb(B,u);MN(B,D);const{compactSize:_,compactItemClassnames:X}=Un(B,v),U=Jt(oe=>o??_??oe),[j,V]=qi("textArea",p,r),G=pv(l??C),[te,ee]=i.useState(!1),[ne,Y]=i.useState(!1),se=oe=>{ee(!0),h==null||h(oe);const Z=()=>{ee(!1),document.removeEventListener("mouseup",Z)};document.addEventListener("mouseup",Z)},ue=oe=>{var Z,J;if(b==null||b(oe),te&&typeof getComputedStyle=="function"){const ae=(J=(Z=L.current)==null?void 0:Z.nativeElement)==null?void 0:J.querySelector("textarea");ae&&getComputedStyle(ae).resize==="both"&&Y(!0)}};return i.createElement(PN,{autoComplete:S,...$,style:{...H.root,...w,...f},styles:H,disabled:P,allowClear:G,className:z(W,D,d,u,X,x,F.root,{[`${B}-textarea-affix-wrapper-resize-dirty`]:ne}),classNames:{...F,textarea:z({[`${B}-sm`]:U==="small",[`${B}-lg`]:U==="large"},k,F.textarea,te&&`${B}-mouse-active`),variant:z({[`${B}-${j}`]:V},zr(B,T)),affixWrapper:z(`${B}-textarea-affix-wrapper`,{[`${B}-affix-wrapper-rtl`]:v==="rtl",[`${B}-affix-wrapper-sm`]:U==="small",[`${B}-affix-wrapper-lg`]:U==="large",[`${B}-textarea-show-count`]:g||((q=e.count)==null?void 0:q.show)},k)},prefixCls:B,suffix:O&&i.createElement("span",{className:`${B}-textarea-suffix`},A),showCount:g,ref:L,onResize:ue,onMouseDown:se})}),Es=ws;Es.Group=oN;Es.Search=CN;Es.TextArea=Pv;Es.Password=vN;Es.OTP=cN;const Ti=100,Rv=Ti/5,Mv=Ti/2-Rv/2,Ya=Mv*2*Math.PI,Qp=50,Zp=e=>{const{dotClassName:t,style:n,hasCircleCls:r}=e;return i.createElement("circle",{className:z(`${t}-circle`,{[`${t}-circle-bg`]:r}),r:Mv,cx:Qp,cy:Qp,strokeWidth:Rv,style:n})},NN=({percent:e,prefixCls:t})=>{const n=`${t}-dot`,r=`${n}-holder`,o=`${r}-hidden`,[s,a]=i.useState(!1);nt(()=>{e!==0&&a(!0)},[e!==0]);const l=Math.max(Math.min(e,100),0);if(!s)return null;const c={strokeDashoffset:`${Ya/4}`,strokeDasharray:`${Ya*l/100} ${Ya*(100-l)/100}`};return i.createElement("span",{className:z(r,`${n}-progress`,l<=0&&o)},i.createElement("svg",{viewBox:`0 0 ${Ti} ${Ti}`,role:"progressbar","aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":l},i.createElement(Zp,{dotClassName:n,hasCircleCls:!0}),i.createElement(Zp,{dotClassName:n,style:c})))};function TN(e){const{prefixCls:t,percent:n=0,className:r,style:o}=e,s=`${t}-dot`,a=`${s}-holder`,l=`${a}-hidden`;return i.createElement(i.Fragment,null,i.createElement("span",{className:z(a,r,n>0&&l),style:o},i.createElement("span",{className:z(s,`${t}-dot-spin`)},[1,2,3,4].map(c=>i.createElement("i",{className:`${t}-dot-item`,key:c})))),i.createElement(NN,{prefixCls:t,percent:n}))}function ON(e){const{prefixCls:t,indicator:n,percent:r,className:o,style:s}=e,a=`${t}-dot`;return n&&i.isValidElement(n)?Wt(n,l=>({className:z(l.className,a,o),style:{...l.style,...s},percent:r})):i.createElement(TN,{prefixCls:t,percent:r,className:o,style:s})}const AN=new et("antSpinMove",{to:{opacity:1}}),zN=new et("antRotate",{to:{transform:"rotate(405deg)"}}),BN=e=>{const{componentCls:t}=e,n=`${t}-section`;return{[t]:{...Ct(e),position:"relative","&-rtl":{direction:"rtl"},[`&${n}, ${n}`]:{display:"flex",alignItems:"center",flexDirection:"column",gap:e.paddingSM,color:e.colorPrimary},[`&${n}`]:{display:"inline-flex"},[n]:{position:"absolute",top:"50%",left:{_skip_check_:!0,value:"50%"},transform:"translate(-50%, -50%)",zIndex:1},[`${t}-description`]:{fontSize:e.fontSize,lineHeight:1},[`${t}-container`]:{position:"relative",transition:`opacity ${e.motionDurationSlow}`,"&::after":{position:"absolute",top:0,insetInlineEnd:0,bottom:0,insetInlineStart:0,zIndex:10,width:"100%",height:"100%",background:e.colorBgContainer,opacity:0,transition:`all ${e.motionDurationSlow}`,content:'""',pointerEvents:"none"}},"&-spinning":{[`${t}-description`]:{textShadow:`0 0px 5px ${e.colorBgContainer}`},[`${t}-container`]:{clear:"both",opacity:.5,userSelect:"none",pointerEvents:"none","&::after":{opacity:.4,pointerEvents:"auto"}}},"&-fullscreen":{position:"fixed",inset:0,backgroundColor:e.colorBgMask,zIndex:e.zIndexPopupBase,opacity:0,pointerEvents:"none",transition:`all ${e.motionDurationMid}`,[`&${t}-spinning`]:{opacity:1,pointerEvents:"auto"},[n]:{color:e.colorWhite,[`${t}-description`]:{color:e.colorTextLightSolid}}}}}},LN=e=>{const{componentCls:t,antCls:n,motionDurationSlow:r}=e,[o,s]=At(n,"spin");return{[t]:{[o("dot-holder-size")]:e.dotSize,[o("dot-item-size")]:`calc((${s("dot-holder-size")} - ${e.marginXXS} / 2) / 2)`,[`${t}-dot`]:{"&-holder":{width:"1em",height:"1em",fontSize:s("dot-holder-size"),display:"inline-block",transition:["transform","opacity"].map(a=>`${a} ${r} ease`).join(", "),transformOrigin:"50% 50%",lineHeight:1,"&-hidden":{transform:"scale(0.3)",opacity:0}},position:"relative",display:"inline-block",fontSize:s("dot-holder-size"),width:"1em",height:"1em","&-spin":{transform:"rotate(45deg)",animationName:zN,animationDuration:"1.2s",animationIterationCount:"infinite",animationTimingFunction:"linear"},"&-item":{position:"absolute",display:"block",width:s("dot-item-size"),height:s("dot-item-size"),background:"currentColor",borderRadius:"100%",transform:"scale(0.75)",transformOrigin:"50% 50%",opacity:.3,animationName:AN,animationDuration:"1s",animationIterationCount:"infinite",animationTimingFunction:"linear",animationDirection:"alternate","&:nth-child(1)":{top:0,insetInlineStart:0,animationDelay:"0s"},"&:nth-child(2)":{top:0,insetInlineEnd:0,animationDelay:"0.4s"},"&:nth-child(3)":{insetInlineEnd:0,bottom:0,animationDelay:"0.8s"},"&:nth-child(4)":{bottom:0,insetInlineStart:0,animationDelay:"1.2s"}},"&-progress":{position:"absolute",left:"50%",top:0,transform:"translateX(-50%)"},"&-circle":{strokeLinecap:"round",transition:["stroke-dashoffset","stroke-dasharray","stroke","stroke-width","opacity"].map(a=>`${a} ${r} ease`).join(","),fillOpacity:0,stroke:"currentcolor"},"&-circle-bg":{stroke:e.colorFillSecondary}}}}},HN=e=>{const{componentCls:t}=e,[n]=At(e.antCls,"spin");return{[t]:{"&-sm":{[n("dot-holder-size")]:e.dotSizeSM},"&-lg":{[n("dot-holder-size")]:e.dotSizeLG}}}},DN=e=>{const{controlHeightLG:t,controlHeight:n}=e;return{contentHeight:400,dotSize:t/2,dotSizeSM:t*.35,dotSizeLG:n}},FN=at("Spin",e=>{const t=rt(e,{spinDotDefault:e.colorTextDescription});return[BN(t),LN(t),HN(t)]},DN),_N=200,Jp=[[30,.05],[70,.03],[96,.01]];function kN(e,t){const[n,r]=i.useState(0),o=i.useRef(null),s=t==="auto";return i.useEffect(()=>(s&&e&&(r(0),o.current=setInterval(()=>{r(a=>{const l=100-a;for(let c=0;c{o.current&&(clearInterval(o.current),o.current=null)}),[s,e]),s?n:t}let Nv;function VN(e,t){return!!e&&!!t&&!Number.isNaN(Number(t))}const Tv=e=>{const{prefixCls:t,spinning:n=!0,delay:r=0,className:o,rootClassName:s,size:a="default",tip:l,description:c,wrapperClassName:u,style:d,children:f,fullscreen:m=!1,indicator:p,percent:g,classNames:h,styles:b,...$}=e,{getPrefixCls:y,direction:v,indicator:C,className:S,style:x,classNames:w,styles:I}=dt("spin"),E=y("spin",t),[R,P]=FN(E),[M,O]=i.useState(()=>n&&!VN(n,r)),A=kN(M,g);i.useEffect(()=>{if(n){const _=$y(r,()=>{O(!0)});return _(),()=>{var X;(X=_==null?void 0:_.cancel)==null||X.call(_)}}O(!1)},[r,n]);const T=c??l,F={...e,size:a,spinning:M,tip:T,description:T,fullscreen:m,children:f,percent:A},[H,L]=pt([w,h],[I,b],{props:F}),B=p??C??Nv,D=typeof f<"u",k=D||m,W=i.createElement(i.Fragment,null,i.createElement(ON,{className:z(H.indicator),style:L.indicator,prefixCls:E,indicator:B,percent:A}),T&&i.createElement("div",{className:z(`${E}-description`,H.tip,H.description),style:{...L.tip,...L.description}},T));return i.createElement("div",{className:z(E,{[`${E}-sm`]:a==="small",[`${E}-lg`]:a==="large",[`${E}-spinning`]:M,[`${E}-rtl`]:v==="rtl",[`${E}-fullscreen`]:m},s,H.root,m&&H.mask,k?u:[`${E}-section`,H.section],S,o,R,P),style:{...L.root,...k?{}:L.section,...m?L.mask:{},...x,...d},"aria-live":"polite","aria-busy":M,...$},M&&(k?i.createElement("div",{className:z(`${E}-section`,H.section),style:L.section},W):W),D&&i.createElement("div",{className:z(`${E}-container`,H.container),style:L.container},f))};Tv.setDefaultIndicator=e=>{Nv=e};const WN=(e,t=!1)=>t&&!vn(e)?[]:Array.isArray(e)?e:[e];let on=null,Er=e=>e(),os=[],ss={};function eg(){const{getContainer:e,duration:t,rtl:n,maxCount:r,top:o}=ss,s=(e==null?void 0:e())||document.body;return{getContainer:()=>s,duration:t,rtl:n,maxCount:r,top:o}}const jN=N.forwardRef((e,t)=>{const{messageConfig:n,sync:r}=e,{getPrefixCls:o}=i.useContext(je),s=ss.prefixCls||o("message"),a=i.useContext(hc),[l,c]=Xh({...n,prefixCls:s,...a.message});return N.useImperativeHandle(t,()=>{const u={...l};return Object.keys(u).forEach(d=>{u[d]=(...f)=>(r(),l[d].apply(l,f))}),{instance:u,sync:r}}),c}),qN=N.forwardRef((e,t)=>{const[n,r]=N.useState(eg),o=()=>{r(eg)};N.useEffect(o,[]);const s=Dh(),a=s.getRootPrefixCls(),l=s.getIconPrefixCls(),c=s.getTheme(),u=N.createElement(jN,{ref:t,sync:o,messageConfig:n});return N.createElement(An,{prefixCls:a,iconPrefixCls:l,theme:c},s.holderRender?s.holderRender(u):u)}),Ji=()=>{if(!on){const e=document.createDocumentFragment(),t={fragment:e};on=t,Er(()=>{ed(N.createElement(qN,{ref:n=>{const{instance:r,sync:o}=n||{};Promise.resolve().then(()=>{!t.instance&&r&&(t.instance=r,t.sync=o,Ji())})}}),e)});return}on.instance&&(os.forEach(e=>{const{type:t,skipped:n}=e;if(!n)switch(t){case"open":{Er(()=>{const r=on.instance.open({...ss,...e.config});r==null||r.then(e.resolve),e.setCloseFn(r)});break}case"destroy":Er(()=>{on==null||on.instance.destroy(e.key)});break;default:Er(()=>{var r;const o=(r=on.instance)[t].apply(r,xt(e.args));o==null||o.then(e.resolve),e.setCloseFn(o)})}}),os=[])};function GN(e){ss={...ss,...e},Er(()=>{var t;(t=on==null?void 0:on.sync)==null||t.call(on)})}function XN(e){const t=Ju(n=>{let r;const o={type:"open",config:e,resolve:n,setCloseFn:s=>{r=s}};return os.push(o),()=>{r?Er(()=>{r()}):o.skipped=!0}});return Ji(),t}function UN(e,t){const n=Ju(r=>{let o;const s={type:e,args:t,resolve:r,setCloseFn:a=>{o=a}};return os.push(s),()=>{o?Er(()=>{o()}):s.skipped=!0}});return Ji(),n}const KN=e=>{os.push({type:"destroy",key:e}),Ji()},YN=["success","info","warning","error","loading"],QN={open:XN,destroy:KN,config:GN,useMessage:Uh,_InternalPanelDoNotUseOrYouWillBeFired:HS},ZN=QN;YN.forEach(e=>{ZN[e]=(...t)=>UN(e,t)});const JN=e=>{const{prefixCls:t,className:n,closeIcon:r,closable:o,type:s,title:a,children:l,footer:c,classNames:u,styles:d,...f}=e,{getPrefixCls:m}=i.useContext(je),{className:p,style:g,classNames:h,styles:b}=dt("modal"),$=m(),y=t||m("modal"),v=_t($),[C,S]=O0(y,v),[x,w]=pt([h,u],[b,d],{props:e}),I=`${y}-confirm`;let E={};return s?E={closable:o??!1,title:"",footer:"",children:i.createElement(z0,{...e,prefixCls:y,confirmPrefixCls:I,rootPrefixCls:$,content:l})}:E={closable:o??!0,title:a,footer:c!==null&&i.createElement(R0,{...e}),children:l},i.createElement(y0,{prefixCls:y,className:z(C,`${y}-pure-panel`,s&&I,s&&`${I}-${s}`,n,p,S,v,x.root),style:{...g,...w.root},...f,closeIcon:P0(y,r),closable:o,classNames:x,styles:w,...E})},e6=G0(JN);function Ov(e){return hs(D0(e))}const zn=A0;zn.useModal=W0;zn.info=function(t){return hs(F0(t))};zn.success=function(t){return hs(_0(t))};zn.error=function(t){return hs(k0(t))};zn.warning=Ov;zn.warn=Ov;zn.confirm=function(t){return hs(V0(t))};zn.destroyAll=function(){for(;xr.length;){const t=xr.pop();t&&t()}};zn.config=P2;zn._InternalPanelDoNotUseOrYouWillBeFired=e6;const t6=e=>{const{componentCls:t,iconCls:n,antCls:r,zIndexPopup:o,colorText:s,colorWarning:a,marginXXS:l,marginXS:c,fontSize:u,fontWeightStrong:d,colorTextHeading:f}=e;return{[t]:{zIndex:o,[`&${r}-popover`]:{fontSize:u},[`${t}-message`]:{marginBottom:c,display:"flex",flexWrap:"nowrap",alignItems:"start",[`> ${t}-message-icon ${n}`]:{color:a,fontSize:u,lineHeight:1,marginInlineEnd:c},[`${t}-title`]:{fontWeight:d,color:f,"&:only-child":{fontWeight:"normal"}},[`${t}-description`]:{marginTop:l,color:s}},[`${t}-buttons`]:{textAlign:"end",whiteSpace:"nowrap",button:{marginInlineStart:c}}}}},n6=e=>{const{zIndexPopupBase:t}=e;return{zIndexPopup:t+60}},Av=at("Popconfirm",e=>t6(e),n6,{resetStyle:!1}),zv=e=>{const{prefixCls:t,okButtonProps:n,cancelButtonProps:r,title:o,description:s,cancelText:a,okText:l,okType:c="primary",icon:u=i.createElement(as,null),showCancel:d=!0,close:f,onConfirm:m,onCancel:p,onPopupClick:g,classNames:h,styles:b}=e,{getPrefixCls:$}=i.useContext(je),[y]=dn("Popconfirm",jn.Popconfirm),v=mo(o),C=mo(s);return i.createElement("div",{className:`${t}-inner-content`,onClick:g},i.createElement("div",{className:`${t}-message`},u&&i.createElement("span",{className:`${t}-message-icon`},u),i.createElement("div",{className:`${t}-message-text`},v&&i.createElement("div",{className:z(`${t}-title`,h==null?void 0:h.title),style:b==null?void 0:b.title},v),C&&i.createElement("div",{className:z(`${t}-description`,h==null?void 0:h.content),style:b==null?void 0:b.content},C))),i.createElement("div",{className:`${t}-buttons`},d&&i.createElement(On,{onClick:p,size:"small",...r},a||(y==null?void 0:y.cancelText)),i.createElement(dd,{buttonProps:{size:"small",...nd(c),...n},actionFn:m,close:f,prefixCls:$("btn"),quitOnNullishReturnValue:!0,emitEvent:!0},l||(y==null?void 0:y.okText))))},r6=e=>{const{prefixCls:t,placement:n,className:r,style:o,...s}=e,{getPrefixCls:a}=i.useContext(je),l=a("popconfirm",t);return Av(l),i.createElement(Sb,{placement:n,className:z(l,r),style:o,content:i.createElement(zv,{prefixCls:l,...s})})},o6=i.forwardRef((e,t)=>{const{prefixCls:n,placement:r="top",trigger:o,okType:s="primary",icon:a=i.createElement(as,null),children:l,overlayClassName:c,onOpenChange:u,overlayStyle:d,styles:f,arrow:m,classNames:p,...g}=e,{getPrefixCls:h,className:b,style:$,classNames:y,styles:v,arrow:C,trigger:S}=dt("popconfirm"),[x,w]=bt(e.defaultOpen??!1,e.open),I=Xi(m,C),E=o||S||"click",R=D=>{w(D),u==null||u(D)},P=()=>{R(!1)},M=D=>{var k;return(k=e.onConfirm)==null?void 0:k.call(void 0,D)},O=D=>{var k;R(!1),(k=e.onCancel)==null||k.call(void 0,D)},A=D=>{const{disabled:k=!1}=e;k||R(D)},T=h("popconfirm",n),F={...e,placement:r,trigger:E,okType:s,overlayStyle:d,styles:f,classNames:p},[H,L]=pt([y,p],[v,f],{props:F}),B=z(T,b,c,H.root);return Av(T),i.createElement(Id,{arrow:I,...yt(g,["title"]),trigger:E,placement:r,onOpenChange:A,open:x,ref:t,classNames:{root:B,container:H.container,arrow:H.arrow},styles:{root:{...$,...L.root,...d},container:L.container,arrow:L.arrow},content:i.createElement(zv,{okType:s,icon:a,...e,prefixCls:T,close:P,onConfirm:M,onCancel:O,classNames:H,styles:L}),"data-popover-inject":!0},l)}),s6=o6;s6._InternalPanelDoNotUseOrYouWillBeFired=r6;var wo,Is;function Qt(e,t,n){if(t<0||t>31||e>>>t)throw new RangeError("Value out of range");for(var r=t-1;r>=0;r--)n.push(e>>>r&1)}function Bn(e,t){return(e>>>t&1)!=0}function nn(e){if(!e)throw new Error("Assertion error")}var Nn=function(){function e(t,n){Pn(this,e),Ve(this,"modeBits",void 0),Ve(this,"numBitsCharCount",void 0),this.modeBits=t,this.numBitsCharCount=n}return In(e,[{key:"numCharCountBits",value:function(n){return this.numBitsCharCount[Math.floor((n+7)/17)]}}]),e}();wo=Nn;Ve(Nn,"NUMERIC",new wo(1,[10,12,14]));Ve(Nn,"ALPHANUMERIC",new wo(2,[9,11,13]));Ve(Nn,"BYTE",new wo(4,[8,16,16]));Ve(Nn,"KANJI",new wo(8,[8,10,12]));Ve(Nn,"ECI",new wo(7,[0,0,0]));var hn=In(function e(t,n){Pn(this,e),Ve(this,"ordinal",void 0),Ve(this,"formatBits",void 0),this.ordinal=t,this.formatBits=n});Is=hn;Ve(hn,"LOW",new Is(0,1));Ve(hn,"MEDIUM",new Is(1,0));Ve(hn,"QUARTILE",new Is(2,3));Ve(hn,"HIGH",new Is(3,2));var Tr=function(){function e(t,n,r){if(Pn(this,e),Ve(this,"mode",void 0),Ve(this,"numChars",void 0),Ve(this,"bitData",void 0),this.mode=t,this.numChars=n,this.bitData=r,n<0)throw new RangeError("Invalid argument");this.bitData=r.slice()}return In(e,[{key:"getData",value:function(){return this.bitData.slice()}}],[{key:"makeBytes",value:function(n){var r=[],o=Zr(n),s;try{for(o.s();!(s=o.n()).done;){var a=s.value;Qt(a,8,r)}}catch(l){o.e(l)}finally{o.f()}return new e(Nn.BYTE,n.length,r)}},{key:"makeNumeric",value:function(n){if(!e.isNumeric(n))throw new RangeError("String contains non-numeric characters");for(var r=[],o=0;o=1<e.MAX_VERSION)throw new RangeError("Version value out of range");if(s<-1||s>7)throw new RangeError("Mask value out of range");this.size=t*4+17;for(var a=[],l=0;l>>9)*1335;var a=(r<<10|o)^21522;nn(a>>>15==0);for(var l=0;l<=5;l++)this.setFunctionModule(8,l,Bn(a,l));this.setFunctionModule(8,7,Bn(a,6)),this.setFunctionModule(8,8,Bn(a,7)),this.setFunctionModule(7,8,Bn(a,8));for(var c=9;c<15;c++)this.setFunctionModule(14-c,8,Bn(a,c));for(var u=0;u<8;u++)this.setFunctionModule(this.size-1-u,8,Bn(a,u));for(var d=8;d<15;d++)this.setFunctionModule(8,this.size-15+d,Bn(a,d));this.setFunctionModule(8,this.size-8,!0)}},{key:"drawVersion",value:function(){if(!(this.version<7)){for(var n=this.version,r=0;r<12;r++)n=n<<1^(n>>>11)*7973;var o=this.version<<12|n;nn(o>>>18==0);for(var s=0;s<18;s++){var a=Bn(o,s),l=this.size-11+s%3,c=Math.floor(s/3);this.setFunctionModule(l,c,a),this.setFunctionModule(c,l,a)}}}},{key:"drawFinderPattern",value:function(n,r){for(var o=-4;o<=4;o++)for(var s=-4;s<=4;s++){var a=Math.max(Math.abs(s),Math.abs(o)),l=n+s,c=r+o;0<=l&&l=c)&&b.push(S[C])})},y=0;y=1;o-=2){o==6&&(o=5);for(var s=0;s>>3],7-(r&7)),r++)}}nn(r==n.length*8)}},{key:"applyMask",value:function(n){if(n<0||n>7)throw new RangeError("Mask value out of range");for(var r=0;r5&&n++):(this.finderPenaltyAddHistory(s,a),o||(n+=this.finderPenaltyCountPatterns(a)*e.PENALTY_N3),o=this.modules[r][l],s=1);n+=this.finderPenaltyTerminateAndCount(o,s,a)*e.PENALTY_N3}for(var c=0;c5&&n++):(this.finderPenaltyAddHistory(d,f),u||(n+=this.finderPenaltyCountPatterns(f)*e.PENALTY_N3),u=this.modules[m][c],d=1);n+=this.finderPenaltyTerminateAndCount(u,d,f)*e.PENALTY_N3}for(var p=0;p0&&n[2]==r&&n[3]==r*3&&n[4]==r&&n[5]==r;return(o&&n[0]>=r*4&&n[6]>=r?1:0)+(o&&n[6]>=r*4&&n[0]>=r?1:0)}},{key:"finderPenaltyTerminateAndCount",value:function(n,r,o){var s=r;return n&&(this.finderPenaltyAddHistory(s,o),s=0),s+=this.size,this.finderPenaltyAddHistory(s,o),this.finderPenaltyCountPatterns(o)}},{key:"finderPenaltyAddHistory",value:function(n,r){var o=n;r[0]==0&&(o+=this.size),r.pop(),r.unshift(o)}}],[{key:"encodeText",value:function(n,r){var o=Tr.makeSegments(n);return e.encodeSegments(o,r)}},{key:"encodeBinary",value:function(n,r){var o=Tr.makeBytes(n);return e.encodeSegments([o],r)}},{key:"encodeSegments",value:function(n,r){var o=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,s=arguments.length>3&&arguments[3]!==void 0?arguments[3]:40,a=arguments.length>4&&arguments[4]!==void 0?arguments[4]:-1,l=arguments.length>5&&arguments[5]!==void 0?arguments[5]:!0;if(!(e.MIN_VERSION<=o&&o<=s&&s<=e.MAX_VERSION)||a<-1||a>7)throw new RangeError("Invalid value");var c,u;for(c=o;;c++){var d=e.getNumDataCodewords(c,r)*8,f=Tr.getTotalBits(n,c);if(f<=d){u=f;break}if(c>=s)throw new RangeError("Data too long")}for(var m=r,p=0,g=[hn.MEDIUM,hn.QUARTILE,hn.HIGH];p>>3]|=R<<7-(P&7)}),new e(c,m,E,a)}},{key:"getNumRawDataModules",value:function(n){if(ne.MAX_VERSION)throw new RangeError("Version number out of range");var r=(16*n+128)*n+64;if(n>=2){var o=Math.floor(n/7)+2;r-=(25*o-10)*o-55,n>=7&&(r-=36)}return nn(208<=r&&r<=29648),r}},{key:"getNumDataCodewords",value:function(n,r){return Math.floor(e.getNumRawDataModules(n)/8)-e.ECC_CODEWORDS_PER_BLOCK[r.ordinal][n]*e.NUM_ERROR_CORRECTION_BLOCKS[r.ordinal][n]}},{key:"reedSolomonComputeDivisor",value:function(n){if(n<1||n>255)throw new RangeError("Degree out of range");for(var r=[],o=0;o>>8||r>>>8)throw new RangeError("Byte out of range");for(var o=0,s=7;s>=0;s--)o=o<<1^(o>>>7)*285,o^=(r>>>s&1)*n;return nn(o>>>8==0),o}}]),e}();Ve(Yn,"MIN_VERSION",1);Ve(Yn,"MAX_VERSION",40);Ve(Yn,"PENALTY_N1",3);Ve(Yn,"PENALTY_N2",3);Ve(Yn,"PENALTY_N3",40);Ve(Yn,"PENALTY_N4",10);Ve(Yn,"ECC_CODEWORDS_PER_BLOCK",[[-1,7,10,15,20,26,18,20,24,30,18,20,24,26,30,22,24,28,30,28,28,28,28,30,30,26,28,30,30,30,30,30,30,30,30,30,30,30,30,30,30],[-1,10,16,26,18,24,16,18,22,22,26,30,22,22,24,24,28,28,26,26,26,26,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28],[-1,13,22,18,26,18,24,18,22,20,24,28,26,24,20,30,24,28,28,26,30,28,30,30,30,30,28,30,30,30,30,30,30,30,30,30,30,30,30,30,30],[-1,17,28,22,16,22,28,26,26,24,28,24,28,22,24,24,30,28,28,26,28,30,24,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30]]);Ve(Yn,"NUM_ERROR_CORRECTION_BLOCKS",[[-1,1,1,1,1,1,2,2,2,2,4,4,4,4,4,6,6,6,6,7,8,8,9,9,10,12,12,12,13,14,15,16,17,18,19,19,20,21,22,24,25],[-1,1,1,1,2,2,4,4,4,5,5,5,8,9,9,10,10,11,13,14,16,17,17,18,20,21,23,25,26,28,29,31,33,35,37,38,40,43,45,47,49],[-1,1,1,2,2,4,4,6,6,8,8,8,10,12,16,12,17,16,18,21,20,23,23,25,27,29,34,34,35,38,40,43,45,48,51,53,56,59,62,65,68],[-1,1,1,2,4,4,4,5,6,8,8,11,11,16,16,18,16,19,21,25,25,25,34,30,32,35,37,40,42,45,48,51,54,57,60,63,66,70,74,77,81]]);var i6={L:hn.LOW,M:hn.MEDIUM,Q:hn.QUARTILE,H:hn.HIGH},Bv=128,Lv="L",Hv="#FFFFFF",Dv="#000000",Fv=!1,_v=1,a6=4,l6=0,c6=.1,kv=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,r=[];return t.forEach(function(o,s){var a=null;o.forEach(function(l,c){if(!l&&a!==null){r.push("M".concat(a+n," ").concat(s+n,"h").concat(c-a,"v1H").concat(a+n,"z")),a=null;return}if(c===o.length-1){if(!l)return;a===null?r.push("M".concat(c+n,",").concat(s+n," h1v1H").concat(c+n,"z")):r.push("M".concat(a+n,",").concat(s+n," h").concat(c+1-a,"v1H").concat(a+n,"z"));return}l&&a===null&&(a=c)})}),r.join("")},Vv=function(t,n){return t.slice().map(function(r,o){return o=n.y+n.h?r:r.map(function(s,a){return a=n.x+n.w?s:!1})})},u6=function(t,n,r,o){if(o==null)return null;var s=t.length+r*2,a=Math.floor(n*c6),l=s/n,c=(o.width||a)*l,u=(o.height||a)*l,d=o.x==null?t.length/2-c/2:o.x*l,f=o.y==null?t.length/2-u/2:o.y*l,m=o.opacity==null?1:o.opacity,p=null;if(o.excavate){var g=Math.floor(d),h=Math.floor(f),b=Math.ceil(c+d-g),$=Math.ceil(u+f-h);p={x:g,y:h,w:b,h:$}}var y=o.crossOrigin;return{x:d,y:f,h:u,w:c,excavation:p,opacity:m,crossOrigin:y}},d6=function(t,n){return n!=null?Math.max(Math.floor(n),0):t?a6:l6},f6=function(){try{new Path2D().addPath(new Path2D)}catch{return!1}return!0}(),Wv=function(t){var n=t.value,r=t.level,o=t.minVersion,s=t.includeMargin,a=t.marginSize,l=t.imageSettings,c=t.size,u=t.boostLevel,d=N.useMemo(function(){var f=Array.isArray(n)?n:[n],m=f.reduce(function(p,g){return p.push.apply(p,tr(Tr.makeSegments(g))),p},[]);return Yn.encodeSegments(m,i6[r],o,void 0,void 0,u)},[n,r,o,u]);return N.useMemo(function(){var f=d.getModules(),m=d6(s,a),p=f.length+m*2,g=u6(f,c,m,l);return{cells:f,margin:m,numCells:p,calculatedImageSettings:g,qrcode:d}},[d,c,l,s,a])},m6=["value","size","level","bgColor","fgColor","includeMargin","minVersion","marginSize","style","imageSettings","boostLevel"],p6=N.forwardRef(function(e,t){var n=e.value,r=e.size,o=r===void 0?Bv:r,s=e.level,a=s===void 0?Lv:s,l=e.bgColor,c=l===void 0?Hv:l,u=e.fgColor,d=u===void 0?Dv:u,f=e.includeMargin,m=f===void 0?Fv:f,p=e.minVersion,g=p===void 0?_v:p,h=e.marginSize,b=e.style,$=e.imageSettings,y=e.boostLevel,v=pg(e,m6),C=$==null?void 0:$.src,S=N.useRef(null),x=N.useRef(null),w=N.useCallback(function(L){S.current=L,typeof t=="function"?t(L):t&&(t.current=L)},[t]),I=N.useState(!1),E=Au(I,2),R=E[1],P=Wv({value:n,level:a,minVersion:g,includeMargin:m,marginSize:h,imageSettings:$,size:o,boostLevel:y}),M=P.margin,O=P.cells,A=P.numCells,T=P.calculatedImageSettings;N.useEffect(function(){if(S.current){var L=S.current,B=L.getContext("2d");if(!B)return;var D=O,k=x.current,W=T!=null&&k!==null&&k.complete&&k.naturalHeight!==0&&k.naturalWidth!==0;W&&T.excavation!=null&&(D=Vv(O,T.excavation));var _=window.devicePixelRatio||1;L.height=L.width=o*_;var X=o/A*_;B.scale(X,X),B.fillStyle=c,B.fillRect(0,0,A,A),B.fillStyle=d,f6?B.fill(new Path2D(kv(D,M))):O.forEach(function(U,j){U.forEach(function(V,G){V&&B.fillRect(G+M,j+M,1,1)})}),T&&(B.globalAlpha=T.opacity),W&&B.drawImage(k,T.x+M,T.y+M,T.w,T.h)}}),N.useEffect(function(){R(!1)},[C]);var F=St({height:o,width:o},b),H=null;return C!=null&&(H=N.createElement("img",{alt:"QR-Code",src:C,key:C,style:{display:"none"},onLoad:function(){R(!0)},ref:x,crossOrigin:T==null?void 0:T.crossOrigin})),N.createElement(N.Fragment,null,N.createElement("canvas",Et({style:F,height:o,width:o,ref:w,role:"img"},v)),H)}),g6=["value","size","level","bgColor","fgColor","includeMargin","minVersion","title","marginSize","imageSettings","boostLevel"],h6=N.forwardRef(function(e,t){var n=e.value,r=e.size,o=r===void 0?Bv:r,s=e.level,a=s===void 0?Lv:s,l=e.bgColor,c=l===void 0?Hv:l,u=e.fgColor,d=u===void 0?Dv:u,f=e.includeMargin,m=f===void 0?Fv:f,p=e.minVersion,g=p===void 0?_v:p,h=e.title,b=e.marginSize,$=e.imageSettings,y=e.boostLevel,v=pg(e,g6),C=Wv({value:n,level:a,minVersion:g,includeMargin:m,marginSize:b,imageSettings:$,size:o,boostLevel:y}),S=C.margin,x=C.cells,w=C.numCells,I=C.calculatedImageSettings,E=x,R=null;$!=null&&I!=null&&(I.excavation!=null&&(E=Vv(x,I.excavation)),R=N.createElement("image",{href:$.src,height:I.h,width:I.w,x:I.x+S,y:I.y+S,preserveAspectRatio:"none",opacity:I.opacity,crossOrigin:I.crossOrigin}));var P=kv(E,S);return N.createElement("svg",Et({height:o,width:o,viewBox:"0 0 ".concat(w," ").concat(w),ref:t,role:"img"},v),!!h&&N.createElement("title",null,h),N.createElement("path",{fill:c,d:"M0,0 h".concat(w,"v").concat(w,"H0z"),shapeRendering:"crispEdges"}),N.createElement("path",{fill:d,d:P,shapeRendering:"crispEdges"}),R)}),b6={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M909.1 209.3l-56.4 44.1C775.8 155.1 656.2 92 521.9 92 290 92 102.3 279.5 102 511.5 101.7 743.7 289.8 932 521.9 932c181.3 0 335.8-115 394.6-276.1 1.5-4.2-.7-8.9-4.9-10.3l-56.7-19.5a8 8 0 00-10.1 4.8c-1.8 5-3.8 10-5.9 14.9-17.3 41-42.1 77.8-73.7 109.4A344.77 344.77 0 01655.9 829c-42.3 17.9-87.4 27-133.8 27-46.5 0-91.5-9.1-133.8-27A341.5 341.5 0 01279 755.2a342.16 342.16 0 01-73.7-109.4c-17.9-42.4-27-87.4-27-133.9s9.1-91.5 27-133.9c17.3-41 42.1-77.8 73.7-109.4 31.6-31.6 68.4-56.4 109.3-73.8 42.3-17.9 87.4-27 133.8-27 46.5 0 91.5 9.1 133.8 27a341.5 341.5 0 01109.3 73.8c9.9 9.9 19.2 20.4 27.8 31.4l-60.2 47a8 8 0 003 14.1l175.6 43c5 1.2 9.9-2.6 9.9-7.7l.8-180.9c-.1-6.6-7.8-10.3-13-6.2z"}}]},name:"reload",theme:"outlined"};function au(){return au=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,au({},e,{ref:t,icon:b6})),y6=i.forwardRef(v6),$6=N.createElement(Tv,null);function C6({prefixCls:e,locale:t,onRefresh:n,statusRender:r,status:o}){const s=N.createElement(N.Fragment,null,N.createElement("p",{className:`${e}-expired`},t==null?void 0:t.expired),n&&N.createElement(On,{type:"link",icon:N.createElement(y6,null),onClick:n},t==null?void 0:t.refresh)),a=N.createElement("p",{className:`${e}-scanned`},t==null?void 0:t.scanned),l={expired:s,loading:$6,scanned:a};return(r??(d=>l[d.status]))({status:o,locale:t,onRefresh:n})}const S6=e=>{const{componentCls:t,lineWidth:n,lineType:r,colorSplit:o}=e;return{[t]:{...Ct(e),display:"flex",justifyContent:"center",alignItems:"center",padding:e.paddingSM,backgroundColor:e.colorWhite,borderRadius:e.borderRadiusLG,border:`${K(n)} ${r} ${o}`,position:"relative",overflow:"hidden",[`& > ${t}-cover`]:{position:"absolute",insetBlockStart:0,insetInlineStart:0,zIndex:10,display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",width:"100%",height:"100%",color:e.colorText,lineHeight:e.lineHeight,background:e.QRCodeCoverBackgroundColor,textAlign:"center",[`& > ${t}-expired, & > ${t}-scanned`]:{color:e.QRCodeTextColor}},"> canvas":{alignSelf:"stretch",flex:"auto",minWidth:0},"&-icon":{marginBlockEnd:e.marginXS,fontSize:e.controlHeight}},[`${t}-borderless`]:{borderColor:"transparent",padding:0,borderRadius:0}}},x6=e=>({QRCodeCoverBackgroundColor:new gt(e.colorBgContainer).setA(.96).toRgbString()}),w6=at("QRCode",e=>{const t=rt(e,{QRCodeTextColor:e.colorText});return S6(t)},x6),a8=e=>{const[,t]=jt(),{value:n,type:r="canvas",icon:o="",size:s=160,iconSize:a,color:l=t.colorText,errorLevel:c="M",status:u="active",bordered:d=!0,onRefresh:f,style:m,className:p,rootClassName:g,prefixCls:h,bgColor:b="transparent",marginSize:$,statusRender:y,classNames:v,styles:C,boostLevel:S,...x}=e,{getPrefixCls:w,className:I,style:E,classNames:R,styles:P}=dt("qrcode"),M={...e,bgColor:b,type:r,size:s,status:u,bordered:d,errorLevel:c},[O,A]=pt([R,v],[P,C],{props:M}),T=w("qrcode",h),[F,H]=w6(T),L={src:o,x:void 0,y:void 0,height:typeof a=="number"?a:(a==null?void 0:a.height)??40,width:typeof a=="number"?a:(a==null?void 0:a.width)??40,excavate:!0,crossOrigin:"anonymous"},B=cn(x,!0),D=yt(x,Object.keys(B)),k={value:n,size:s,level:c,bgColor:b,fgColor:l,style:{width:m==null?void 0:m.width,height:m==null?void 0:m.height},imageSettings:o?L:void 0,marginSize:$,boostLevel:S,...B},[W]=dn("QRCode");if(!n)return null;const _=z(T,p,g,F,H,I,O.root,{[`${T}-borderless`]:!d}),X={backgroundColor:b,...A.root,...E,...m,width:(m==null?void 0:m.width)??s,height:(m==null?void 0:m.height)??s};return N.createElement("div",{...D,className:_,style:X},u!=="active"&&N.createElement("div",{className:z(`${T}-cover`,O.cover),style:A.cover},N.createElement(C6,{prefixCls:T,locale:W,status:u,onRefresh:f,statusRender:y})),r==="canvas"?N.createElement(p6,{...k}):N.createElement(h6,{...k}))};function lu(){return lu=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const[h,b]=bt(r??!1,n);function $(S,x){let w=h;return o||(w=S,b(w),u==null||u(w,x)),w}function y(S){S.which===Me.LEFT?$(!1,S):S.which===Me.RIGHT&&$(!0,S),d==null||d(S)}function v(S){const x=$(!h,S);c==null||c(x,S)}const C=z(e,t,{[`${e}-checked`]:h,[`${e}-disabled`]:o});return i.createElement("button",lu({},p,{type:"button",role:"switch","aria-checked":h,disabled:o,className:C,ref:g,onKeyDown:y,onClick:v}),s,i.createElement("span",{className:`${e}-inner`},i.createElement("span",{className:z(`${e}-inner-checked`,m==null?void 0:m.content),style:f==null?void 0:f.content},a),i.createElement("span",{className:z(`${e}-inner-unchecked`,m==null?void 0:m.content),style:f==null?void 0:f.content},l)))});jv.displayName="Switch";const E6=e=>{const{componentCls:t,trackHeightSM:n,trackPadding:r,trackMinWidthSM:o,innerMinMarginSM:s,innerMaxMarginSM:a,handleSizeSM:l,calc:c}=e,u=`${t}-inner`,d=K(c(l).add(c(r).mul(2)).equal()),f=K(c(a).mul(2).equal());return{[t]:{[`&${t}-small`]:{minWidth:o,height:n,lineHeight:K(n),[`${t}-inner`]:{paddingInlineStart:a,paddingInlineEnd:s,[`${u}-checked, ${u}-unchecked`]:{minHeight:n},[`${u}-checked`]:{marginInlineStart:`calc(-100% + ${d} - ${f})`,marginInlineEnd:`calc(100% - ${d} + ${f})`},[`${u}-unchecked`]:{marginTop:c(n).mul(-1).equal(),marginInlineStart:0,marginInlineEnd:0}},[`${t}-handle`]:{width:l,height:l},[`${t}-loading-icon`]:{top:c(c(l).sub(e.switchLoadingIconSize)).div(2).equal(),fontSize:e.switchLoadingIconSize},[`&${t}-checked`]:{[`${t}-inner`]:{paddingInlineStart:s,paddingInlineEnd:a,[`${u}-checked`]:{marginInlineStart:0,marginInlineEnd:0},[`${u}-unchecked`]:{marginInlineStart:`calc(100% - ${d} + ${f})`,marginInlineEnd:`calc(-100% + ${d} - ${f})`}},[`${t}-handle`]:{insetInlineStart:`calc(100% - ${K(c(l).add(r).equal())})`}},[`&:not(${t}-disabled):active`]:{[`&:not(${t}-checked) ${u}`]:{[`${u}-unchecked`]:{marginInlineStart:c(e.marginXXS).div(2).equal(),marginInlineEnd:c(e.marginXXS).mul(-1).div(2).equal()}},[`&${t}-checked ${u}`]:{[`${u}-checked`]:{marginInlineStart:c(e.marginXXS).mul(-1).div(2).equal(),marginInlineEnd:c(e.marginXXS).div(2).equal()}}}}}}},I6=e=>{const{componentCls:t,handleSize:n,calc:r}=e;return{[t]:{[`${t}-loading-icon${e.iconCls}`]:{position:"relative",top:r(r(n).sub(e.fontSize)).div(2).equal(),color:e.switchLoadingIconColor,verticalAlign:"top"},[`&${t}-checked ${t}-loading-icon`]:{color:e.switchColor}}}},P6=e=>{const{componentCls:t,trackPadding:n,handleBg:r,handleShadow:o,handleSize:s,calc:a}=e,l=`${t}-handle`;return{[t]:{[l]:{position:"absolute",top:n,insetInlineStart:n,width:s,height:s,transition:`all ${e.switchDuration} ease-in-out`,"&::before":{position:"absolute",top:0,insetInlineEnd:0,bottom:0,insetInlineStart:0,backgroundColor:r,borderRadius:a(s).div(2).equal(),boxShadow:o,transition:`all ${e.switchDuration} ease-in-out`,content:'""'}},[`&${t}-checked ${l}`]:{insetInlineStart:`calc(100% - ${K(a(s).add(n).equal())})`},[`&:not(${t}-disabled):active`]:{[`${l}::before`]:{insetInlineEnd:e.switchHandleActiveInset,insetInlineStart:0},[`&${t}-checked ${l}::before`]:{insetInlineEnd:0,insetInlineStart:e.switchHandleActiveInset}}}}},R6=e=>{const{componentCls:t,trackHeight:n,trackPadding:r,innerMinMargin:o,innerMaxMargin:s,handleSize:a,switchDuration:l,calc:c}=e,u=`${t}-inner`,d=K(c(a).add(c(r).mul(2)).equal()),f=K(c(s).mul(2).equal());return{[t]:{[u]:{display:"block",overflow:"hidden",borderRadius:100,height:"100%",paddingInlineStart:s,paddingInlineEnd:o,transition:["padding-inline-start","padding-inline-end"].map(m=>`${m} ${l} ease-in-out`).join(", "),[`${u}-checked, ${u}-unchecked`]:{display:"block",color:e.colorTextLightSolid,fontSize:e.fontSizeSM,pointerEvents:"none",minHeight:n,transition:["margin-inline-start","margin-inline-end"].map(m=>`${m} ${l} ease-in-out`).join(", ")},[`${u}-checked`]:{marginInlineStart:`calc(-100% + ${d} - ${f})`,marginInlineEnd:`calc(100% - ${d} + ${f})`},[`${u}-unchecked`]:{marginTop:c(n).mul(-1).equal(),marginInlineStart:0,marginInlineEnd:0}},[`&${t}-checked ${u}`]:{paddingInlineStart:o,paddingInlineEnd:s,[`${u}-checked`]:{marginInlineStart:0,marginInlineEnd:0},[`${u}-unchecked`]:{marginInlineStart:`calc(100% - ${d} + ${f})`,marginInlineEnd:`calc(-100% + ${d} - ${f})`}},[`&:not(${t}-disabled):active`]:{[`&:not(${t}-checked) ${u}`]:{[`${u}-unchecked`]:{marginInlineStart:c(r).mul(2).equal(),marginInlineEnd:c(r).mul(-1).mul(2).equal()}},[`&${t}-checked ${u}`]:{[`${u}-checked`]:{marginInlineStart:c(r).mul(-1).mul(2).equal(),marginInlineEnd:c(r).mul(2).equal()}}}}}},M6=e=>{const{componentCls:t,trackHeight:n,trackMinWidth:r}=e;return{[t]:{...Ct(e),position:"relative",display:"inline-block",boxSizing:"border-box",minWidth:r,height:n,lineHeight:K(n),verticalAlign:"middle",background:e.colorTextQuaternary,border:"0",borderRadius:100,cursor:"pointer",transition:`all ${e.motionDurationMid}`,userSelect:"none",[`&:hover:not(${t}-disabled)`]:{background:e.colorTextTertiary},...bn(e),[`&${t}-checked`]:{background:e.switchColor,[`&:hover:not(${t}-disabled)`]:{background:e.colorPrimaryHover}},[`&${t}-loading, &${t}-disabled`]:{cursor:"not-allowed",opacity:e.switchDisabledOpacity,"*":{boxShadow:"none",cursor:"not-allowed"}},[`&${t}-rtl`]:{direction:"rtl"}}}},N6=e=>{const{fontSize:t,lineHeight:n,controlHeight:r,colorWhite:o}=e,s=t*n,a=r/2,l=2,c=s-l*2,u=a-l*2;return{trackHeight:s,trackHeightSM:a,trackMinWidth:c*2+l*4,trackMinWidthSM:u*2+l*2,trackPadding:l,handleBg:o,handleSize:c,handleSizeSM:u,handleShadow:`0 2px 4px 0 ${new gt("#00230b").setA(.2).toRgbString()}`,innerMinMargin:c/2,innerMaxMargin:c+l+l*2,innerMinMarginSM:u/2,innerMaxMarginSM:u+l+l*2}},T6=at("Switch",e=>{const t=rt(e,{switchDuration:e.motionDurationMid,switchColor:e.colorPrimary,switchDisabledOpacity:e.opacityLoading,switchLoadingIconSize:e.calc(e.fontSizeIcon).mul(.75).equal(),switchLoadingIconColor:`rgba(0, 0, 0, ${e.opacityLoading})`,switchHandleActiveInset:"-30%"});return[M6(t),R6(t),P6(t),I6(t),E6(t)]},N6),O6=i.forwardRef((e,t)=>{const{prefixCls:n,size:r,disabled:o,loading:s,className:a,rootClassName:l,style:c,checked:u,value:d,defaultChecked:f,defaultValue:m,onChange:p,styles:g,classNames:h,...b}=e,[$,y]=bt(f??m??!1,u??d),{getPrefixCls:v,direction:C,className:S,style:x,classNames:w,styles:I}=dt("switch"),E=i.useContext(yn),R=(o??E)||s,P=v("switch",n),[M,O]=T6(P),A=Jt(r),T={...e,size:A,disabled:R},[F,H]=pt([w,h],[I,g],{props:T}),L=i.createElement("div",{className:z(`${P}-handle`,F.indicator),style:H.indicator},s&&i.createElement(us,{className:`${P}-loading-icon`})),B=z(S,{[`${P}-small`]:A==="small",[`${P}-loading`]:s,[`${P}-rtl`]:C==="rtl"},a,l,F.root,M,O),D={...H.root,...x,...c},k=(...W)=>{y(W[0]),p==null||p(...W)};return i.createElement(Zh,{component:"Switch",disabled:R},i.createElement(jv,{...b,classNames:F,styles:H,checked:$,onChange:k,prefixCls:P,className:B,style:D,disabled:R,ref:t,loadingIcon:L}))}),A6=O6;A6.__ANT_SWITCH=!0;const pn=(e,t)=>new gt(e).setA(t).toRgbString(),br=(e,t)=>new gt(e).lighten(t).toHexString(),tg=e=>{const t=Li(e,{theme:"dark"});return{1:t[0],2:t[1],3:t[2],4:t[3],5:t[6],6:t[5],7:t[4],8:t[6],9:t[5],10:t[4]}},z6=(e,t)=>{const n=e||"#000",r=t||"#fff";return{colorBgBase:n,colorTextBase:r,colorText:pn(r,.85),colorTextSecondary:pn(r,.65),colorTextTertiary:pn(r,.45),colorTextQuaternary:pn(r,.25),colorFill:pn(r,.18),colorFillSecondary:pn(r,.12),colorFillTertiary:pn(r,.08),colorFillQuaternary:pn(r,.04),colorBgSolid:pn(r,.95),colorBgSolidHover:pn(r,1),colorBgSolidActive:pn(r,.9),colorBgElevated:br(n,12),colorBgContainer:br(n,8),colorBgLayout:br(n,0),colorBgSpotlight:br(n,26),colorBgBlur:pn(r,.04),colorBorder:br(n,26),colorBorderDisabled:br(n,26),colorBorderSecondary:br(n,19)}},B6=(e,t)=>{const n=Object.keys(_u).map(a=>{const l=Li(e[a],{theme:"dark"});return Array.from({length:10},()=>1).reduce((c,u,d)=>(c[`${a}-${d+1}`]=l[d],c[`${a}${d+1}`]=l[d],c),{})}).reduce((a,l)=>(a={...a,...l},a),{}),r=t??ku(e),o=Vg(e,{generateColorPalettes:tg,generateNeutralColorPalettes:z6}),s=Tn.reduce((a,l)=>{const c=e[l];if(c){const u=tg(c);a[`${l}Hover`]=u[7],a[`${l}Active`]=u[5]}return a},{});return{...r,...n,...o,...s,colorPrimaryBg:o.colorPrimaryBorder,colorPrimaryBgHover:o.colorPrimaryBorderHover}},l8={defaultSeed:ai.token,defaultAlgorithm:ku,darkAlgorithm:B6,_internalContext:Vu};var L6={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M360 184h-8c4.4 0 8-3.6 8-8v8h304v-8c0 4.4 3.6 8 8 8h-8v72h72v-80c0-35.3-28.7-64-64-64H352c-35.3 0-64 28.7-64 64v80h72v-72zm504 72H160c-17.7 0-32 14.3-32 32v32c0 4.4 3.6 8 8 8h60.4l24.7 523c1.6 34.1 29.8 61 63.9 61h454c34.2 0 62.3-26.8 63.9-61l24.7-523H888c4.4 0 8-3.6 8-8v-32c0-17.7-14.3-32-32-32zM731.3 840H292.7l-24.2-512h487l-24.2 512z"}}]},name:"delete",theme:"outlined"};function cu(){return cu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,cu({},e,{ref:t,icon:L6})),c8=i.forwardRef(H6);var D6={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M257.7 752c2 0 4-.2 6-.5L431.9 722c2-.4 3.9-1.3 5.3-2.8l423.9-423.9a9.96 9.96 0 000-14.1L694.9 114.9c-1.9-1.9-4.4-2.9-7.1-2.9s-5.2 1-7.1 2.9L256.8 538.8c-1.5 1.5-2.4 3.3-2.8 5.3l-29.5 168.2a33.5 33.5 0 009.4 29.8c6.6 6.4 14.9 9.9 23.8 9.9zm67.4-174.4L687.8 215l73.3 73.3-362.7 362.6-88.9 15.7 15.6-89zM880 836H144c-17.7 0-32 14.3-32 32v36c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-36c0-17.7-14.3-32-32-32z"}}]},name:"edit",theme:"outlined"};function uu(){return uu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,uu({},e,{ref:t,icon:D6})),_6=i.forwardRef(F6);var k6={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M864 170h-60c-4.4 0-8 3.6-8 8v518H310v-73c0-6.7-7.8-10.5-13-6.3l-141.9 112a8 8 0 000 12.6l141.9 112c5.3 4.2 13 .4 13-6.3v-75h498c35.3 0 64-28.7 64-64V178c0-4.4-3.6-8-8-8z"}}]},name:"enter",theme:"outlined"};function du(){return du=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,du({},e,{ref:t,icon:k6})),W6=i.forwardRef(V6),j6=(e,t,n,r)=>{const{titleMarginBottom:o,fontWeightStrong:s}=r;return{marginBottom:o,color:n,fontWeight:s,fontSize:e,lineHeight:t}},q6=e=>{const t=[1,2,3,4,5],n={};return t.forEach(r=>{n[` + h${r}&, + div&-h${r}, + div&-h${r} > textarea, + h${r} + `]=j6(e[`fontSizeHeading${r}`],e[`lineHeightHeading${r}`],e.colorTextHeading,e)}),n},G6=e=>{const{componentCls:t}=e;return{[`&${`${t}-link`}`]:{...Xg(e),userSelect:"text",[`&[disabled], &${t}-disabled`]:{color:e.colorTextDisabled,cursor:"not-allowed","&:active, &:hover":{color:e.colorTextDisabled},"&:active":{pointerEvents:"none"}}}}},X6=e=>({code:{margin:"0 0.2em",paddingInline:"0.4em",paddingBlock:"0.2em 0.1em",fontSize:"85%",fontFamily:e.fontFamilyCode,background:"rgba(150, 150, 150, 0.1)",border:"1px solid rgba(100, 100, 100, 0.2)",borderRadius:3},kbd:{margin:"0 0.2em",paddingInline:"0.4em",paddingBlock:"0.15em 0.1em",fontSize:"90%",fontFamily:e.fontFamilyCode,background:"rgba(150, 150, 150, 0.06)",border:"1px solid rgba(100, 100, 100, 0.2)",borderBottomWidth:2,borderRadius:3},mark:{padding:0,backgroundColor:ii[2]},"u, ins":{textDecoration:"underline",textDecorationSkipInk:"auto"},"s, del":{textDecoration:"line-through"},strong:{fontWeight:e.fontWeightStrong},"ul, ol":{marginInline:0,marginBlock:"0 1em",padding:0,li:{marginInline:"20px 0",marginBlock:0,paddingInline:"4px 0",paddingBlock:0}},ul:{listStyleType:"circle",ul:{listStyleType:"disc"}},ol:{listStyleType:"decimal"},"pre, blockquote":{margin:"1em 0"},pre:{padding:"0.4em 0.6em",whiteSpace:"pre-wrap",wordWrap:"break-word",background:"rgba(150, 150, 150, 0.1)",border:"1px solid rgba(100, 100, 100, 0.2)",borderRadius:3,fontFamily:e.fontFamilyCode,code:{display:"inline",margin:0,padding:0,fontSize:"inherit",fontFamily:"inherit",background:"transparent",border:0}},blockquote:{paddingInline:"0.6em 0",paddingBlock:0,borderInlineStart:"4px solid rgba(100, 100, 100, 0.2)",opacity:.85}}),U6=e=>{const{componentCls:t,paddingSM:n}=e,r=n;return{"&-edit-content":{position:"relative","div&":{insetInlineStart:e.calc(e.paddingSM).mul(-1).equal(),insetBlockStart:e.calc(r).div(-2).add(1).equal(),marginBottom:e.calc(r).div(2).sub(2).equal()},[`${t}-edit-content-confirm`]:{position:"absolute",insetInlineEnd:e.calc(e.marginXS).add(2).equal(),insetBlockEnd:e.marginXS,color:e.colorIcon,fontWeight:"normal",fontSize:e.fontSize,fontStyle:"normal",pointerEvents:"none"},textarea:{margin:"0!important",MozTransition:"none",height:"1em"}}}},K6=e=>({[`${e.componentCls}-copy-success`]:{"\n &,\n &:hover,\n &:focus":{color:e.colorSuccess}},[`${e.componentCls}-copy-icon-only`]:{marginInlineStart:0}}),Y6=()=>({"\n a&-ellipsis,\n span&-ellipsis\n ":{display:"inline-block",maxWidth:"100%"},"&-ellipsis-single-line":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis","a&, span&":{verticalAlign:"bottom"},"> code":{paddingBlock:0,maxWidth:"calc(100% - 1.2em)",display:"inline-block",overflow:"hidden",textOverflow:"ellipsis",verticalAlign:"bottom",boxSizing:"content-box"}},"&-ellipsis-multiple-line":{display:"-webkit-box",overflow:"hidden",WebkitLineClamp:3,WebkitBoxOrient:"vertical"}}),Q6=e=>{const{componentCls:t,titleMarginTop:n}=e;return{[t]:{color:e.colorText,wordBreak:"break-word",lineHeight:e.lineHeight,[`&${t}-secondary, &${t}-link${t}-secondary`]:{color:e.colorTextDescription},[`&${t}-success, &${t}-link${t}-success`]:{color:e.colorSuccessText},[`&${t}-warning, &${t}-link${t}-warning`]:{color:e.colorWarningText},[`&${t}-danger, &${t}-link${t}-danger`]:{color:e.colorErrorText,[`&${t}-link:active, &${t}-link:focus`]:{color:e.colorErrorTextActive},[`&${t}-link:hover`]:{color:e.colorErrorTextHover}},[`&${t}-disabled`]:{color:e.colorTextDisabled,cursor:"not-allowed",userSelect:"none"},"\n div&,\n p\n ":{marginBottom:"1em"},...q6(e),[` + & + h1${t}, + & + h2${t}, + & + h3${t}, + & + h4${t}, + & + h5${t} + `]:{marginTop:n},"\n div,\n ul,\n li,\n p,\n h1,\n h2,\n h3,\n h4,\n h5":{"\n + h1,\n + h2,\n + h3,\n + h4,\n + h5\n ":{marginTop:n}},...X6(e),...G6(e),[` + ${t}-expand, + ${t}-collapse, + ${t}-edit, + ${t}-copy + `]:{...Xg(e),marginInlineStart:e.marginXXS},...U6(e),...K6(e),...Y6(),"&-rtl":{direction:"rtl"}}}},Z6=()=>({titleMarginTop:"1.2em",titleMarginBottom:"0.5em"}),qv=at("Typography",Q6,Z6),J6=e=>{const{prefixCls:t,"aria-label":n,className:r,style:o,direction:s,maxLength:a,autoSize:l=!0,value:c,onSave:u,onCancel:d,onEnd:f,component:m,enterIcon:p=i.createElement(W6,null)}=e,g=i.useRef(null),h=i.useRef(!1),b=i.useRef(null),[$,y]=i.useState(c);i.useEffect(()=>{y(c)},[c]),i.useEffect(()=>{var O;if((O=g.current)!=null&&O.resizableTextArea){const{textArea:A}=g.current.resizableTextArea;A.focus();const{length:T}=A.value;A.setSelectionRange(T,T)}},[]);const v=({target:O})=>{y(O.value.replace(/[\n\r]/g,""))},C=()=>{h.current=!0},S=()=>{h.current=!1},x=({keyCode:O})=>{h.current||(b.current=O)},w=()=>{u($.trim())},I=({keyCode:O,ctrlKey:A,altKey:T,metaKey:F,shiftKey:H})=>{b.current!==O||h.current||A||T||F||H||(O===Me.ENTER?(w(),f==null||f()):O===Me.ESC&&d())},E=()=>{w()},[R,P]=qv(t),M=z(t,`${t}-edit-content`,{[`${t}-rtl`]:s==="rtl",[`${t}-${m}`]:!!m},r,R,P);return i.createElement("div",{className:M,style:o},i.createElement(Pv,{ref:g,maxLength:a,value:$,onChange:v,onKeyDown:x,onKeyUp:I,onCompositionStart:C,onCompositionEnd:S,onBlur:E,"aria-label":n,rows:1,autoSize:l}),p!==null?Wt(p,{className:`${t}-edit-content-confirm`}):null)},eT=(e,t)=>{let n=!1;const r=o=>{var s,a,l;o.stopPropagation(),o.preventDefault(),(s=o.clipboardData)==null||s.clearData(),(a=o.clipboardData)==null||a.setData("text/plain",e),t&&((l=o.clipboardData)==null||l.setData("text/html",e)),n=!0};try{return document.addEventListener("copy",r,{capture:!0}),document.execCommand("copy"),n}catch{return!1}finally{document.removeEventListener("copy",r,{capture:!0})}},tT=async(e,t)=>{try{return t?await navigator.clipboard.write([new ClipboardItem({"text/html":new Blob([e],{type:"text/html"}),"text/plain":new Blob([e],{type:"text/plain"})})]):await navigator.clipboard.writeText(e),!0}catch{return!1}};async function nT(e,t){if(typeof e!="string")return!1;const n=(t==null?void 0:t.format)==="text/html";return!!(await tT(e,n)||eT(e,n))}const rT=({copyConfig:e,children:t})=>{const[n,r]=i.useState(!1),[o,s]=i.useState(!1),a=i.useRef(null),l=()=>{a.current&&clearTimeout(a.current)},c={};e.format&&(c.format=e.format),i.useEffect(()=>l,[]);const u=We(async d=>{var f;d==null||d.preventDefault(),d==null||d.stopPropagation(),s(!0);try{const m=typeof e.text=="function"?await e.text():e.text;await nT(m||WN(t,!0).join("")||"",c),s(!1),r(!0),l(),a.current=setTimeout(()=>{r(!1)},3e3),(f=e.onCopy)==null||f.call(e,d)}catch(m){throw s(!1),m}});return{copied:n,copyLoading:o,onClick:u}};function Qa(e,t){return i.useMemo(()=>{const n=!!e;return[n,{...t,...n&&typeof e=="object"?e:null}]},[e])}const oT=e=>{const t=i.useRef(void 0);return i.useEffect(()=>{t.current=e}),t.current},sT=(e,t,n)=>i.useMemo(()=>e===!0?{title:t??n}:i.isValidElement(e)?{title:e}:typeof e=="object"?{title:t??n,...e}:{title:e},[e,t,n]),Gv=i.forwardRef((e,t)=>{const{prefixCls:n,component:r="article",className:o,rootClassName:s,children:a,direction:l,style:c,...u}=e,{getPrefixCls:d,direction:f,className:m,style:p}=dt("typography"),g=l??f,h=d("typography",n),[b,$]=qv(h),y=z(h,m,{[`${h}-rtl`]:g==="rtl"},o,s,b,$),v={...p,...c};return i.createElement(r,{className:y,style:v,ref:t,...u},a)});var iT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H296c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h496v688c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V96c0-17.7-14.3-32-32-32zM704 192H192c-17.7 0-32 14.3-32 32v530.7c0 8.5 3.4 16.6 9.4 22.6l173.3 173.3c2.2 2.2 4.7 4 7.4 5.5v1.9h4.2c3.5 1.3 7.2 2 11 2H704c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM350 856.2L263.9 770H350v86.2zM664 888H414V746c0-22.1-17.9-40-40-40H232V264h432v624z"}}]},name:"copy",theme:"outlined"};function fu(){return fu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,fu({},e,{ref:t,icon:iT})),lT=i.forwardRef(aT);function ng(e){return e===!1?[!1,!1]:Array.isArray(e)?e:[e]}function Za(e,t,n){return e===!0||e===void 0?t:e||n&&t}function cT(e){const t=document.createElement("em");e.appendChild(t);const n=e.getBoundingClientRect(),r=t.getBoundingClientRect();return e.removeChild(t),n.left>r.left||r.right>n.right||n.top>r.top||r.bottom>n.bottom}const kd=e=>["string","number"].includes(typeof e),uT=({prefixCls:e,copied:t,locale:n,iconOnly:r,tooltips:o,icon:s,tabIndex:a,onCopy:l,loading:c})=>{const u=ng(o),d=ng(s),{copied:f,copy:m}=n??{},p=t?f:m,g=Za(u[t?1:0],p),h=typeof g=="string"?g:p;return i.createElement(Kn,{title:g},i.createElement("button",{type:"button",className:z(`${e}-copy`,{[`${e}-copy-success`]:t,[`${e}-copy-icon-only`]:r}),onClick:l,"aria-label":h,tabIndex:a},t?Za(d[1],i.createElement(fb,null),!0):Za(d[0],c?i.createElement(us,null):i.createElement(lT,null),!0)))},Xs=i.forwardRef(({style:e,children:t},n)=>{const r=i.useRef(null);return i.useImperativeHandle(n,()=>({isExceed:()=>{const o=r.current;return o.scrollHeight>o.clientHeight},getHeight:()=>r.current.clientHeight})),i.createElement("span",{"aria-hidden":!0,ref:r,style:{position:"fixed",display:"block",left:0,top:0,pointerEvents:"none",backgroundColor:"rgba(255, 0, 0, 0.65)",...e}},t)}),dT=e=>e.reduce((t,n)=>t+(kd(n)?String(n).length:1),0);function rg(e,t){let n=0;const r=[];for(let o=0;ot){const u=t-n;return r.push(String(s).slice(0,u)),r}r.push(s),n=c}return e}const Ja=0,el=1,tl=2,nl=3,og=4,Us={display:"-webkit-box",overflow:"hidden",WebkitBoxOrient:"vertical"};function fT(e){const{enableMeasure:t,width:n,text:r,children:o,rows:s,expanded:a,miscDeps:l,onEllipsis:c}=e,u=i.useMemo(()=>Vt(r),[r]),d=i.useMemo(()=>dT(u),[r]),f=i.useMemo(()=>o(u,!1),[r]),[m,p]=i.useState(null),g=i.useRef(null),h=i.useRef(null),b=i.useRef(null),$=i.useRef(null),y=i.useRef(null),[v,C]=i.useState(!1),[S,x]=i.useState(Ja),[w,I]=i.useState(0),[E,R]=i.useState(null);nt(()=>{x(t&&n&&d?el:Ja)},[n,r,s,t,u]),nt(()=>{var A,T,F,H;if(S===el){x(tl);const L=h.current&&getComputedStyle(h.current).whiteSpace;R(L)}else if(S===tl){const L=!!((A=b.current)!=null&&A.isExceed());x(L?nl:og),p(L?[0,d]:null),C(L);const B=((T=b.current)==null?void 0:T.getHeight())||0,D=s===1?0:((F=$.current)==null?void 0:F.getHeight())||0,k=((H=y.current)==null?void 0:H.getHeight())||0,W=Math.max(B,D+k);I(W+1),c(L)}},[S]);const P=m?Math.ceil((m[0]+m[1])/2):0;nt(()=>{var F;const[A,T]=m||[0,0];if(A!==T){const L=(((F=g.current)==null?void 0:F.getHeight())||0)>w;let B=P;T-A===1&&(B=L?A:T),p(L?[A,B]:[B,T])}},[m,P]);const M=i.useMemo(()=>{if(!t)return o(u,!1);if(S!==nl||!m||m[0]!==m[1]){const A=o(u,!1);return[og,Ja].includes(S)?A:i.createElement("span",{style:{...Us,WebkitLineClamp:s}},A)}return o(a?u:rg(u,m[0]),v)},[a,S,m,u].concat(xt(l))),O={width:n,margin:0,padding:0,whiteSpace:E==="nowrap"?"normal":"inherit"};return i.createElement(i.Fragment,null,M,S===tl&&i.createElement(i.Fragment,null,i.createElement(Xs,{style:{...O,...Us,WebkitLineClamp:s},ref:b},f),i.createElement(Xs,{style:{...O,...Us,WebkitLineClamp:s-1},ref:$},f),i.createElement(Xs,{style:{...O,...Us,WebkitLineClamp:1},ref:y},o([],!0))),S===nl&&m&&m[0]!==m[1]&&i.createElement(Xs,{style:{...O,top:400},ref:g},o(rg(u,P),!0)),S===el&&i.createElement("span",{style:{whiteSpace:"inherit"},ref:h}))}const mT=({enableEllipsis:e,isEllipsis:t,children:n,tooltipProps:r})=>!(r!=null&&r.title)||!e?n:i.createElement(Kn,{open:t?void 0:!1,...r},n);function pT({mark:e,code:t,underline:n,delete:r,strong:o,keyboard:s,italic:a},l){let c=l;function u(d,f){f&&(c=i.createElement(d,{},c))}return u("strong",o),u("u",n),u("del",r),u("code",t),u("mark",e),u("kbd",s),u("i",a),c}const gT="...",sg=["delete","mark","code","underline","strong","keyboard","italic"],ea=i.forwardRef((e,t)=>{const{prefixCls:n,className:r,style:o,type:s,disabled:a,children:l,ellipsis:c,editable:u,copyable:d,component:f,title:m,...p}=e,{getPrefixCls:g,direction:h}=i.useContext(je),[b]=dn("Text"),$=i.useRef(null),y=i.useRef(null),v=g("typography",n),C=yt(p,sg),[S,x]=Qa(u),[w,I]=bt(!1,x.editing),{triggerType:E=["icon"]}=x,R=re=>{var $e;re&&(($e=x.onStart)==null||$e.call(x)),I(re)},P=oT(w);nt(()=>{var re;!w&&P&&((re=y.current)==null||re.focus())},[w]);const M=re=>{re==null||re.preventDefault(),R(!0)},O=re=>{var $e;($e=x.onChange)==null||$e.call(x,re),R(!1)},A=()=>{var re;(re=x.onCancel)==null||re.call(x),R(!1)},[T,F]=Qa(d),{copied:H,copyLoading:L,onClick:B}=rT({copyConfig:F,children:l}),[D,k]=i.useState(!1),[W,_]=i.useState(!1),[X,U]=i.useState(!1),[j,V]=i.useState(!1),[G,te]=i.useState(!0),[ee,ne]=Qa(c,{expandable:!1,symbol:re=>re?b==null?void 0:b.collapse:b==null?void 0:b.expand}),[Y,se]=bt(ne.defaultExpanded||!1,ne.expanded),ue=ee&&(!Y||ne.expandable==="collapsible"),{rows:q=1}=ne,oe=i.useMemo(()=>ue&&(ne.suffix!==void 0||ne.onEllipsis||ne.expandable||S||T),[ue,ne,S,T]);nt(()=>{ee&&!oe&&(k(_m("webkitLineClamp")),_(_m("textOverflow")))},[oe,ee]);const[Z,J]=i.useState(ue),ae=i.useMemo(()=>oe?!1:q===1?W:D,[oe,W,D]);nt(()=>{J(ae&&ue)},[ae,ue]);const we=ue&&(Z?j:X),de=ue&&q===1&&Z,ge=ue&&q>1&&Z,be=(re,$e)=>{var ke;se($e.expanded),(ke=ne.onExpand)==null||ke.call(ne,re,$e)},[me,Ne]=i.useState(0),Ae=({offsetWidth:re})=>{Ne(re)},Ee=re=>{var $e;U(re),X!==re&&(($e=ne.onEllipsis)==null||$e.call(ne,re))};i.useEffect(()=>{const re=$.current;if(ee&&Z&&re){const $e=cT(re);j!==$e&&V($e)}},[ee,Z,l,ge,G,me]),i.useEffect(()=>{const re=$.current;if(typeof IntersectionObserver>"u"||!re||!Z||!ue)return;const $e=new IntersectionObserver(()=>{te(!!re.offsetParent)});return $e.observe(re),()=>{$e.disconnect()}},[Z,ue]);const ze=sT(ne.tooltip,x.text,l),Re=i.useMemo(()=>{if(!(!ee||Z))return[x.text,l,m,ze.title].find(kd)},[ee,Z,m,ze.title,we]);if(w)return i.createElement(J6,{value:x.text??(typeof l=="string"?l:""),onSave:O,onCancel:A,onEnd:x.onEnd,prefixCls:v,className:r,style:o,direction:h,component:f,maxLength:x.maxLength,autoSize:x.autoSize,enterIcon:x.enterIcon});const ve=()=>{const{expandable:re,symbol:$e}=ne;return re?i.createElement("button",{type:"button",key:"expand",className:`${v}-${Y?"collapse":"expand"}`,onClick:ke=>be(ke,{expanded:!Y}),"aria-label":Y?b.collapse:b==null?void 0:b.expand},typeof $e=="function"?$e(Y):$e):null},fe=()=>{if(!S)return;const{icon:re,tooltip:$e,tabIndex:ke}=x,De=Vt($e)[0]||(b==null?void 0:b.edit),ot=typeof De=="string"?De:"";return E.includes("icon")?i.createElement(Kn,{key:"edit",title:$e===!1?"":De},i.createElement("button",{type:"button",ref:y,className:`${v}-edit`,onClick:M,"aria-label":ot,tabIndex:ke},re||i.createElement(_6,{role:"button"}))):null},Ce=()=>T?i.createElement(uT,{key:"copy",...F,prefixCls:v,copied:H,locale:b,onCopy:B,loading:L,iconOnly:!vn(l)}):null,He=re=>[re&&ve(),fe(),Ce()],Ie=re=>[re&&!Y&&i.createElement("span",{"aria-hidden":!0,key:"ellipsis"},gT),ne.suffix,He(re)];return i.createElement(Fn,{onResize:Ae,disabled:!ue},re=>i.createElement(mT,{tooltipProps:ze,enableEllipsis:ue,isEllipsis:we},i.createElement(Gv,{className:z({[`${v}-${s}`]:s,[`${v}-disabled`]:a,[`${v}-ellipsis`]:ee,[`${v}-ellipsis-single-line`]:de,[`${v}-ellipsis-multiple-line`]:ge,[`${v}-link`]:f==="a"},r),prefixCls:n,style:{...o,WebkitLineClamp:ge?q:void 0},component:f,ref:Ft(re,$,t),direction:h,onClick:E.includes("text")?M:void 0,"aria-label":Re==null?void 0:Re.toString(),title:m,...C},i.createElement(fT,{enableMeasure:ue&&!Z,text:l,rows:q,width:me,onEllipsis:Ee,expanded:Y,miscDeps:[H,Y,L,S,T,b].concat(xt(sg.map($e=>e[$e])))},($e,ke)=>pT(e,i.createElement(i.Fragment,null,$e.length>0&&ke&&!Y&&Re?i.createElement("span",{key:"show-content","aria-hidden":!0},$e):$e,Ie(ke)))))))}),hT=i.forwardRef((e,t)=>{const{ellipsis:n,rel:r,children:o,navigate:s,...a}=e,l={...a,rel:r===void 0&&a.target==="_blank"?"noopener noreferrer":r};return i.createElement(ea,{...l,ref:t,ellipsis:!!n,component:"a"},o)}),bT=i.forwardRef((e,t)=>{const{children:n,...r}=e;return i.createElement(ea,{ref:t,...r,component:"div"},n)}),vT=(e,t)=>{const{ellipsis:n,children:r,...o}=e,s=i.useMemo(()=>n&&typeof n=="object"?yt(n,["expandable","rows"]):n,[n]);return i.createElement(ea,{ref:t,...o,ellipsis:s,component:"span"},r)},yT=i.forwardRef(vT),$T=[1,2,3,4,5],CT=i.forwardRef((e,t)=>{const{level:n=1,children:r,...o}=e,s=$T.includes(n)?`h${n}`:"h1";return i.createElement(ea,{ref:t,...o,component:s},r)}),ta=Gv;ta.Text=yT;ta.Link=hT;ta.Title=CT;ta.Paragraph=bT;var ST={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M505.7 661a8 8 0 0012.6 0l112-141.7c4.1-5.2.4-12.9-6.3-12.9h-74.1V168c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v338.3H400c-6.7 0-10.4 7.7-6.3 12.9l112 141.8zM878 626h-60c-4.4 0-8 3.6-8 8v154H214V634c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v198c0 17.7 14.3 32 32 32h684c17.7 0 32-14.3 32-32V634c0-4.4-3.6-8-8-8z"}}]},name:"download",theme:"outlined"};function mu(){return mu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,mu({},e,{ref:t,icon:ST})),u8=i.forwardRef(xT);var wT=function(t){return typeof window<"u"?matchMedia&&matchMedia("(prefers-color-scheme: ".concat(t,")")):{matches:!1}},rl,ET=i.createContext({appearance:"light",setAppearance:function(){},isDarkMode:!1,themeMode:"light",setThemeMode:function(){},browserPrefers:(rl=wT("dark"))!==null&&rl!==void 0&&rl.matches?"dark":"light"}),d8=function(){return i.useContext(ET)},IT={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M715.8 493.5L335 165.1c-14.2-12.2-35-1.2-35 18.5v656.8c0 19.7 20.8 30.7 35 18.5l380.8-328.4c10.9-9.4 10.9-27.6 0-37z"}}]},name:"caret-right",theme:"filled"};function pu(){return pu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,pu({},e,{ref:t,icon:IT})),f8=i.forwardRef(PT);var RT={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm0 76c-205.4 0-372 166.6-372 372s166.6 372 372 372 372-166.6 372-372-166.6-372-372-372zm128.01 198.83c.03 0 .05.01.09.06l45.02 45.01a.2.2 0 01.05.09.12.12 0 010 .07c0 .02-.01.04-.05.08L557.25 512l127.87 127.86a.27.27 0 01.05.06v.02a.12.12 0 010 .07c0 .03-.01.05-.05.09l-45.02 45.02a.2.2 0 01-.09.05.12.12 0 01-.07 0c-.02 0-.04-.01-.08-.05L512 557.25 384.14 685.12c-.04.04-.06.05-.08.05a.12.12 0 01-.07 0c-.03 0-.05-.01-.09-.05l-45.02-45.02a.2.2 0 01-.05-.09.12.12 0 010-.07c0-.02.01-.04.06-.08L466.75 512 338.88 384.14a.27.27 0 01-.05-.06l-.01-.02a.12.12 0 010-.07c0-.03.01-.05.05-.09l45.02-45.02a.2.2 0 01.09-.05.12.12 0 01.07 0c.02 0 .04.01.08.06L512 466.75l127.86-127.86c.04-.05.06-.06.08-.06a.12.12 0 01.07 0z"}}]},name:"close-circle",theme:"outlined"};function gu(){return gu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,gu({},e,{ref:t,icon:RT})),m8=i.forwardRef(MT);var NT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M516 673c0 4.4 3.4 8 7.5 8h185c4.1 0 7.5-3.6 7.5-8v-48c0-4.4-3.4-8-7.5-8h-185c-4.1 0-7.5 3.6-7.5 8v48zm-194.9 6.1l192-161c3.8-3.2 3.8-9.1 0-12.3l-192-160.9A7.95 7.95 0 00308 351v62.7c0 2.4 1 4.6 2.9 6.1L420.7 512l-109.8 92.2a8.1 8.1 0 00-2.9 6.1V673c0 6.8 7.9 10.5 13.1 6.1zM880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656z"}}]},name:"code",theme:"outlined"};function hu(){return hu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,hu({},e,{ref:t,icon:NT})),p8=i.forwardRef(TT);var OT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M885.9 490.3c3.6-12 5.4-24.4 5.4-37 0-28.3-9.3-55.5-26.1-77.7 3.6-12 5.4-24.4 5.4-37 0-28.3-9.3-55.5-26.1-77.7 3.6-12 5.4-24.4 5.4-37 0-51.6-30.7-98.1-78.3-118.4a66.1 66.1 0 00-26.5-5.4H273v428h.3l85.8 310.8C372.9 889 418.9 924 470.9 924c29.7 0 57.4-11.8 77.9-33.4 20.5-21.5 31-49.7 29.5-79.4l-6-122.9h239.9c12.1 0 23.9-3.2 34.3-9.3 40.4-23.5 65.5-66.1 65.5-111 0-28.3-9.3-55.5-26.1-77.7zM112 132v364c0 17.7 14.3 32 32 32h65V100h-65c-17.7 0-32 14.3-32 32z"}}]},name:"dislike",theme:"filled"};function bu(){return bu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,bu({},e,{ref:t,icon:OT})),g8=i.forwardRef(AT);var zT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M885.9 490.3c3.6-12 5.4-24.4 5.4-37 0-28.3-9.3-55.5-26.1-77.7 3.6-12 5.4-24.4 5.4-37 0-28.3-9.3-55.5-26.1-77.7 3.6-12 5.4-24.4 5.4-37 0-51.6-30.7-98.1-78.3-118.4a66.1 66.1 0 00-26.5-5.4H144c-17.7 0-32 14.3-32 32v364c0 17.7 14.3 32 32 32h129.3l85.8 310.8C372.9 889 418.9 924 470.9 924c29.7 0 57.4-11.8 77.9-33.4 20.5-21.5 31-49.7 29.5-79.4l-6-122.9h239.9c12.1 0 23.9-3.2 34.3-9.3 40.4-23.5 65.5-66.1 65.5-111 0-28.3-9.3-55.5-26.1-77.7zM184 456V172h81v284h-81zm627.2 160.4H496.8l9.6 198.4c.6 11.9-4.7 23.1-14.6 30.5-6.1 4.5-13.6 6.8-21.1 6.7a44.28 44.28 0 01-42.2-32.3L329 459.2V172h415.4a56.85 56.85 0 0133.6 51.8c0 9.7-2.3 18.9-6.9 27.3l-13.9 25.4 21.9 19a56.76 56.76 0 0119.6 43c0 9.7-2.3 18.9-6.9 27.3l-13.9 25.4 21.9 19a56.76 56.76 0 0119.6 43c0 9.7-2.3 18.9-6.9 27.3l-14 25.5 21.9 19a56.76 56.76 0 0119.6 43c0 19.1-11 37.5-28.8 48.4z"}}]},name:"dislike",theme:"outlined"};function vu(){return vu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,vu({},e,{ref:t,icon:zT})),h8=i.forwardRef(BT);var LT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}},{tag:"path",attrs:{d:"M464 688a48 48 0 1096 0 48 48 0 10-96 0zm24-112h48c4.4 0 8-3.6 8-8V296c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v272c0 4.4 3.6 8 8 8z"}}]},name:"exclamation-circle",theme:"outlined"};function yu(){return yu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,yu({},e,{ref:t,icon:LT})),b8=i.forwardRef(HT);var DT={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M880 912H144c-17.7 0-32-14.3-32-32V144c0-17.7 14.3-32 32-32h360c4.4 0 8 3.6 8 8v56c0 4.4-3.6 8-8 8H184v656h656V520c0-4.4 3.6-8 8-8h56c4.4 0 8 3.6 8 8v360c0 17.7-14.3 32-32 32zM770.87 199.13l-52.2-52.2a8.01 8.01 0 014.7-13.6l179.4-21c5.1-.6 9.5 3.7 8.9 8.9l-21 179.4c-.8 6.6-8.9 9.4-13.6 4.7l-52.4-52.4-256.2 256.2a8.03 8.03 0 01-11.3 0l-42.4-42.4a8.03 8.03 0 010-11.3l256.1-256.3z"}}]},name:"export",theme:"outlined"};function $u(){return $u=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,$u({},e,{ref:t,icon:DT})),v8=i.forwardRef(FT);var _T={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M391 240.9c-.8-6.6-8.9-9.4-13.6-4.7l-43.7 43.7L200 146.3a8.03 8.03 0 00-11.3 0l-42.4 42.3a8.03 8.03 0 000 11.3L280 333.6l-43.9 43.9a8.01 8.01 0 004.7 13.6L401 410c5.1.6 9.5-3.7 8.9-8.9L391 240.9zm10.1 373.2L240.8 633c-6.6.8-9.4 8.9-4.7 13.6l43.9 43.9L146.3 824a8.03 8.03 0 000 11.3l42.4 42.3c3.1 3.1 8.2 3.1 11.3 0L333.7 744l43.7 43.7A8.01 8.01 0 00391 783l18.9-160.1c.6-5.1-3.7-9.4-8.8-8.8zm221.8-204.2L783.2 391c6.6-.8 9.4-8.9 4.7-13.6L744 333.6 877.7 200c3.1-3.1 3.1-8.2 0-11.3l-42.4-42.3a8.03 8.03 0 00-11.3 0L690.3 279.9l-43.7-43.7a8.01 8.01 0 00-13.6 4.7L614.1 401c-.6 5.2 3.7 9.5 8.8 8.9zM744 690.4l43.9-43.9a8.01 8.01 0 00-4.7-13.6L623 614c-5.1-.6-9.5 3.7-8.9 8.9L633 783.1c.8 6.6 8.9 9.4 13.6 4.7l43.7-43.7L824 877.7c3.1 3.1 8.2 3.1 11.3 0l42.4-42.3c3.1-3.1 3.1-8.2 0-11.3L744 690.4z"}}]},name:"fullscreen-exit",theme:"outlined"};function Cu(){return Cu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Cu({},e,{ref:t,icon:_T})),y8=i.forwardRef(kT);var VT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M290 236.4l43.9-43.9a8.01 8.01 0 00-4.7-13.6L169 160c-5.1-.6-9.5 3.7-8.9 8.9L179 329.1c.8 6.6 8.9 9.4 13.6 4.7l43.7-43.7L370 423.7c3.1 3.1 8.2 3.1 11.3 0l42.4-42.3c3.1-3.1 3.1-8.2 0-11.3L290 236.4zm352.7 187.3c3.1 3.1 8.2 3.1 11.3 0l133.7-133.6 43.7 43.7a8.01 8.01 0 0013.6-4.7L863.9 169c.6-5.1-3.7-9.5-8.9-8.9L694.8 179c-6.6.8-9.4 8.9-4.7 13.6l43.9 43.9L600.3 370a8.03 8.03 0 000 11.3l42.4 42.4zM845 694.9c-.8-6.6-8.9-9.4-13.6-4.7l-43.7 43.7L654 600.3a8.03 8.03 0 00-11.3 0l-42.4 42.3a8.03 8.03 0 000 11.3L734 787.6l-43.9 43.9a8.01 8.01 0 004.7 13.6L855 864c5.1.6 9.5-3.7 8.9-8.9L845 694.9zm-463.7-94.6a8.03 8.03 0 00-11.3 0L236.3 733.9l-43.7-43.7a8.01 8.01 0 00-13.6 4.7L160.1 855c-.6 5.1 3.7 9.5 8.9 8.9L329.2 845c6.6-.8 9.4-8.9 4.7-13.6L290 787.6 423.7 654c3.1-3.1 3.1-8.2 0-11.3l-42.4-42.4z"}}]},name:"fullscreen",theme:"outlined"};function Su(){return Su=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Su({},e,{ref:t,icon:VT})),$8=i.forwardRef(WT);var jT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M885.9 533.7c16.8-22.2 26.1-49.4 26.1-77.7 0-44.9-25.1-87.4-65.5-111.1a67.67 67.67 0 00-34.3-9.3H572.4l6-122.9c1.4-29.7-9.1-57.9-29.5-79.4A106.62 106.62 0 00471 99.9c-52 0-98 35-111.8 85.1l-85.9 311h-.3v428h472.3c9.2 0 18.2-1.8 26.5-5.4 47.6-20.3 78.3-66.8 78.3-118.4 0-12.6-1.8-25-5.4-37 16.8-22.2 26.1-49.4 26.1-77.7 0-12.6-1.8-25-5.4-37 16.8-22.2 26.1-49.4 26.1-77.7-.2-12.6-2-25.1-5.6-37.1zM112 528v364c0 17.7 14.3 32 32 32h65V496h-65c-17.7 0-32 14.3-32 32z"}}]},name:"like",theme:"filled"};function xu(){return xu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,xu({},e,{ref:t,icon:jT})),C8=i.forwardRef(qT);var GT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M885.9 533.7c16.8-22.2 26.1-49.4 26.1-77.7 0-44.9-25.1-87.4-65.5-111.1a67.67 67.67 0 00-34.3-9.3H572.4l6-122.9c1.4-29.7-9.1-57.9-29.5-79.4A106.62 106.62 0 00471 99.9c-52 0-98 35-111.8 85.1l-85.9 311H144c-17.7 0-32 14.3-32 32v364c0 17.7 14.3 32 32 32h601.3c9.2 0 18.2-1.8 26.5-5.4 47.6-20.3 78.3-66.8 78.3-118.4 0-12.6-1.8-25-5.4-37 16.8-22.2 26.1-49.4 26.1-77.7 0-12.6-1.8-25-5.4-37 16.8-22.2 26.1-49.4 26.1-77.7-.2-12.6-2-25.1-5.6-37.1zM184 852V568h81v284h-81zm636.4-353l-21.9 19 13.9 25.4a56.2 56.2 0 016.9 27.3c0 16.5-7.2 32.2-19.6 43l-21.9 19 13.9 25.4a56.2 56.2 0 016.9 27.3c0 16.5-7.2 32.2-19.6 43l-21.9 19 13.9 25.4a56.2 56.2 0 016.9 27.3c0 22.4-13.2 42.6-33.6 51.8H329V564.8l99.5-360.5a44.1 44.1 0 0142.2-32.3c7.6 0 15.1 2.2 21.1 6.7 9.9 7.4 15.2 18.6 14.6 30.5l-9.6 198.4h314.4C829 418.5 840 436.9 840 456c0 16.5-7.2 32.1-19.6 43z"}}]},name:"like",theme:"outlined"};function wu(){return wu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,wu({},e,{ref:t,icon:GT})),S8=i.forwardRef(XT);var UT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M574 665.4a8.03 8.03 0 00-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 00-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 000 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 000 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 00-11.3 0L372.3 598.7a8.03 8.03 0 000 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z"}}]},name:"link",theme:"outlined"};function Eu(){return Eu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Eu({},e,{ref:t,icon:UT})),x8=i.forwardRef(KT);var YT={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M771.91 115a31.65 31.65 0 00-17.42 5.27L400 351.97H236a16 16 0 00-16 16v288.06a16 16 0 0016 16h164l354.5 231.7a31.66 31.66 0 0017.42 5.27c16.65 0 32.08-13.25 32.08-32.06V147.06c0-18.8-15.44-32.06-32.09-32.06M732 221v582L439.39 611.75l-17.95-11.73H292V423.98h129.44l17.95-11.73z"}}]},name:"muted",theme:"outlined"};function Iu(){return Iu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Iu({},e,{ref:t,icon:YT})),w8=i.forwardRef(QT);var ZT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M924.8 625.7l-65.5-56c3.1-19 4.7-38.4 4.7-57.8s-1.6-38.8-4.7-57.8l65.5-56a32.03 32.03 0 009.3-35.2l-.9-2.6a443.74 443.74 0 00-79.7-137.9l-1.8-2.1a32.12 32.12 0 00-35.1-9.5l-81.3 28.9c-30-24.6-63.5-44-99.7-57.6l-15.7-85a32.05 32.05 0 00-25.8-25.7l-2.7-.5c-52.1-9.4-106.9-9.4-159 0l-2.7.5a32.05 32.05 0 00-25.8 25.7l-15.8 85.4a351.86 351.86 0 00-99 57.4l-81.9-29.1a32 32 0 00-35.1 9.5l-1.8 2.1a446.02 446.02 0 00-79.7 137.9l-.9 2.6c-4.5 12.5-.8 26.5 9.3 35.2l66.3 56.6c-3.1 18.8-4.6 38-4.6 57.1 0 19.2 1.5 38.4 4.6 57.1L99 625.5a32.03 32.03 0 00-9.3 35.2l.9 2.6c18.1 50.4 44.9 96.9 79.7 137.9l1.8 2.1a32.12 32.12 0 0035.1 9.5l81.9-29.1c29.8 24.5 63.1 43.9 99 57.4l15.8 85.4a32.05 32.05 0 0025.8 25.7l2.7.5a449.4 449.4 0 00159 0l2.7-.5a32.05 32.05 0 0025.8-25.7l15.7-85a350 350 0 0099.7-57.6l81.3 28.9a32 32 0 0035.1-9.5l1.8-2.1c34.8-41.1 61.6-87.5 79.7-137.9l.9-2.6c4.5-12.3.8-26.3-9.3-35zM788.3 465.9c2.5 15.1 3.8 30.6 3.8 46.1s-1.3 31-3.8 46.1l-6.6 40.1 74.7 63.9a370.03 370.03 0 01-42.6 73.6L721 702.8l-31.4 25.8c-23.9 19.6-50.5 35-79.3 45.8l-38.1 14.3-17.9 97a377.5 377.5 0 01-85 0l-17.9-97.2-37.8-14.5c-28.5-10.8-55-26.2-78.7-45.7l-31.4-25.9-93.4 33.2c-17-22.9-31.2-47.6-42.6-73.6l75.5-64.5-6.5-40c-2.4-14.9-3.7-30.3-3.7-45.5 0-15.3 1.2-30.6 3.7-45.5l6.5-40-75.5-64.5c11.3-26.1 25.6-50.7 42.6-73.6l93.4 33.2 31.4-25.9c23.7-19.5 50.2-34.9 78.7-45.7l37.9-14.3 17.9-97.2c28.1-3.2 56.8-3.2 85 0l17.9 97 38.1 14.3c28.7 10.8 55.4 26.2 79.3 45.8l31.4 25.8 92.8-32.9c17 22.9 31.2 47.6 42.6 73.6L781.8 426l6.5 39.9zM512 326c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm79.2 255.2A111.6 111.6 0 01512 614c-29.9 0-58-11.7-79.2-32.8A111.6 111.6 0 01400 502c0-29.9 11.7-58 32.8-79.2C454 401.6 482.1 390 512 390c29.9 0 58 11.6 79.2 32.8A111.6 111.6 0 01624 502c0 29.9-11.7 58-32.8 79.2z"}}]},name:"setting",theme:"outlined"};function Pu(){return Pu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Pu({},e,{ref:t,icon:ZT})),E8=i.forwardRef(JT);var e5={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M881.7 187.4l-45.1-45.1a8.03 8.03 0 00-11.3 0L667.8 299.9l-54.7-54.7a7.94 7.94 0 00-13.5 4.7L576.1 439c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 157.6-157.6c3-3 3-8.1-.1-11.2zM439 576.1l-189.2 23.5c-6.6.8-9.3 8.9-4.7 13.5l54.7 54.7-157.5 157.5a8.03 8.03 0 000 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l157.6-157.6 54.7 54.7a7.94 7.94 0 0013.5-4.7L447.9 585a7.9 7.9 0 00-8.9-8.9z"}}]},name:"shrink",theme:"outlined"};function Ru(){return Ru=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Ru({},e,{ref:t,icon:e5})),I8=i.forwardRef(t5);var n5={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372 0-89 31.3-170.8 83.5-234.8l523.3 523.3C682.8 852.7 601 884 512 884zm288.5-137.2L277.2 223.5C341.2 171.3 423 140 512 140c205.4 0 372 166.6 372 372 0 89-31.3 170.8-83.5 234.8z"}}]},name:"stop",theme:"outlined"};function Mu(){return Mu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Mu({},e,{ref:t,icon:n5})),P8=i.forwardRef(r5);var o5={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M511.4 124C290.5 124.3 112 303 112 523.9c0 128 60.2 242 153.8 315.2l-37.5 48c-4.1 5.3-.3 13 6.3 12.9l167-.8c5.2 0 9-4.9 7.7-9.9L369.8 727a8 8 0 00-14.1-3L315 776.1c-10.2-8-20-16.7-29.3-26a318.64 318.64 0 01-68.6-101.7C200.4 609 192 567.1 192 523.9s8.4-85.1 25.1-124.5c16.1-38.1 39.2-72.3 68.6-101.7 29.4-29.4 63.6-52.5 101.7-68.6C426.9 212.4 468.8 204 512 204s85.1 8.4 124.5 25.1c38.1 16.1 72.3 39.2 101.7 68.6 29.4 29.4 52.5 63.6 68.6 101.7 16.7 39.4 25.1 81.3 25.1 124.5s-8.4 85.1-25.1 124.5a318.64 318.64 0 01-68.6 101.7c-7.5 7.5-15.3 14.5-23.4 21.2a7.93 7.93 0 00-1.2 11.1l39.4 50.5c2.8 3.5 7.9 4.1 11.4 1.3C854.5 760.8 912 649.1 912 523.9c0-221.1-179.4-400.2-400.6-399.9z"}}]},name:"undo",theme:"outlined"};function Nu(){return Nu=Object.assign?Object.assign.bind():function(e){for(var t=1;ti.createElement(Ye,Nu({},e,{ref:t,icon:o5})),R8=i.forwardRef(s5);Hi.Provider;var Xv={};Object.defineProperty(Xv,"__esModule",{value:!0});var M8=Xv.default=d5;const i5=`accept acceptCharset accessKey action allowFullScreen allowTransparency + alt async autoComplete autoFocus autoPlay capture cellPadding cellSpacing challenge + charSet checked classID className colSpan cols content contentEditable contextMenu + controls coords crossOrigin data dateTime default defer dir disabled download draggable + encType form formAction formEncType formMethod formNoValidate formTarget frameBorder + headers height hidden high href hrefLang htmlFor httpEquiv icon id inputMode integrity + is keyParams keyType kind label lang list loop low manifest marginHeight marginWidth max maxLength media + mediaGroup method min minLength multiple muted name noValidate nonce open + optimum pattern placeholder poster preload radioGroup readOnly rel required + reversed role rowSpan rows sandbox scope scoped scrolling seamless selected + shape size sizes span spellCheck src srcDoc srcLang srcSet start step style + summary tabIndex target title type useMap value width wmode wrap`,a5=`onCopy onCut onPaste onCompositionEnd onCompositionStart onCompositionUpdate onKeyDown + onKeyPress onKeyUp onFocus onBlur onChange onInput onSubmit onClick onContextMenu onDoubleClick + onDrag onDragEnd onDragEnter onDragExit onDragLeave onDragOver onDragStart onDrop onMouseDown + onMouseEnter onMouseLeave onMouseMove onMouseOut onMouseOver onMouseUp onSelect onTouchCancel + onTouchEnd onTouchMove onTouchStart onScroll onWheel onAbort onCanPlay onCanPlayThrough + onDurationChange onEmptied onEncrypted onEnded onError onLoadedData onLoadedMetadata + onLoadStart onPause onPlay onPlaying onProgress onRateChange onSeeked onSeeking onStalled onSuspend onTimeUpdate onVolumeChange onWaiting onLoad onError`,l5=`${i5} ${a5}`.split(/[\s\n]+/),c5="aria-",u5="data-";function ig(e,t){return e.indexOf(t)===0}function d5(e,t=!1){let n;t===!1?n={aria:!0,data:!0,attr:!0}:t===!0?n={aria:!0}:n={...t};const r={};return Object.keys(e).forEach(o=>{(n.aria&&(o==="role"||ig(o,c5))||n.data&&ig(o,u5)||n.attr&&l5.includes(o))&&(r[o]=e[o])}),r}var sn={},Vd={};Object.defineProperty(Vd,"__esModule",{value:!0});Vd.default=p5;var f5=m5(i);function Uv(e){if(typeof WeakMap!="function")return null;var t=new WeakMap,n=new WeakMap;return(Uv=function(r){return r?n:t})(e)}function m5(e,t){if(e&&e.__esModule)return e;if(e===null||typeof e!="object"&&typeof e!="function")return{default:e};var n=Uv(t);if(n&&n.has(e))return n.get(e);var r={__proto__:null},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in e)if(s!=="default"&&Object.prototype.hasOwnProperty.call(e,s)){var a=o?Object.getOwnPropertyDescriptor(e,s):null;a&&(a.get||a.set)?Object.defineProperty(r,s,a):r[s]=e[s]}return r.default=e,n&&n.set(e,r),r}function p5(e,t,n){const r=f5.useRef({});return(!("value"in r.current)||n(r.current.condition,t))&&(r.current.value=e(),r.current.condition=t),r.current.value}var Wd={};Object.defineProperty(Wd,"__esModule",{value:!0});Wd.default=v5;const g5=Symbol.for("react.element"),h5=Symbol.for("react.transitional.element"),b5=Symbol.for("react.fragment");function v5(e){return e&&typeof e=="object"&&(e.$$typeof===g5||e.$$typeof===h5)&&e.type===b5}Object.defineProperty(sn,"__esModule",{value:!0});sn.useComposeRef=sn.supportRef=sn.supportNodeRef=sn.getNodeRef=sn.fillRef=S5=sn.composeRef=void 0;var Kv=i,ol=Ir,y5=Yv(Vd),$5=Yv(Wd);function Yv(e){return e&&e.__esModule?e:{default:e}}const C5=Number(Kv.version.split(".")[0]),Qv=(e,t)=>{typeof e=="function"?e(t):typeof e=="object"&&e&&"current"in e&&(e.current=t)};sn.fillRef=Qv;const Zv=(...e)=>{const t=e.filter(Boolean);return t.length<=1?t[0]:n=>{e.forEach(r=>{Qv(r,n)})}};var S5=sn.composeRef=Zv;const x5=(...e)=>(0,y5.default)(()=>Zv(...e),e,(t,n)=>t.length!==n.length||t.every((r,o)=>r!==n[o]));sn.useComposeRef=x5;const Jv=e=>{var n,r;if(!e)return!1;if(jd(e)&&C5>=19)return!0;const t=(0,ol.isMemo)(e)?e.type.type:e.type;return!(typeof t=="function"&&!((n=t.prototype)!=null&&n.render)&&t.$$typeof!==ol.ForwardRef||typeof e=="function"&&!((r=e.prototype)!=null&&r.render)&&e.$$typeof!==ol.ForwardRef)};sn.supportRef=Jv;function jd(e){return(0,Kv.isValidElement)(e)&&!(0,$5.default)(e)}const w5=e=>jd(e)&&Jv(e);sn.supportNodeRef=w5;const E5=e=>{if(e&&jd(e)){const t=e;return t.props.propertyIsEnumerable("ref")?t.props.ref:t.ref}return null};sn.getNodeRef=E5;var Rn={};Object.defineProperty(Rn,"__esModule",{value:!0});Rn.call=qd;Rn.default=void 0;Rn.note=ny;Rn.noteOnce=oy;Rn.preMessage=void 0;Rn.resetWarned=ry;Rn.warning=ty;Rn.warningOnce=Ps;let Tu={};const ey=e=>{};Rn.preMessage=ey;function ty(e,t){}function ny(e,t){}function ry(){Tu={}}function qd(e,t,n){!t&&!Tu[n]&&(e(!1,n),Tu[n]=!0)}function Ps(e,t){qd(ty,e,t)}function oy(e,t){qd(ny,e,t)}Ps.preMessage=ey;Ps.resetWarned=ry;Ps.noteOnce=oy;Rn.default=Ps;var na={},ra={};Object.defineProperty(ra,"__esModule",{value:!0});ra.default=void 0;const I5={items_per_page:"/ page",jump_to:"Go to",jump_to_confirm:"confirm",page:"Page",prev_page:"Previous Page",next_page:"Next Page",prev_5:"Previous 5 Pages",next_5:"Next 5 Pages",prev_3:"Previous 3 Pages",next_3:"Next 3 Pages",page_size:"Page Size"};ra.default=I5;var oa={},Rs={};const P5=xy(yC);var Ms={};Object.defineProperty(Ms,"__esModule",{value:!0});Ms.default=void 0;const R5={placeholder:"Select time",rangePlaceholder:["Start time","End time"]};Ms.default=R5;var sy=zu.default;Object.defineProperty(Rs,"__esModule",{value:!0});Rs.default=void 0;var M5=sy(P5),N5=sy(Ms);const T5={lang:{placeholder:"Select date",yearPlaceholder:"Select year",quarterPlaceholder:"Select quarter",monthPlaceholder:"Select month",weekPlaceholder:"Select week",rangePlaceholder:["Start date","End date"],rangeYearPlaceholder:["Start year","End year"],rangeQuarterPlaceholder:["Start quarter","End quarter"],rangeMonthPlaceholder:["Start month","End month"],rangeWeekPlaceholder:["Start week","End week"],...M5.default},timePickerLocale:{...N5.default}};Rs.default=T5;var O5=zu.default;Object.defineProperty(oa,"__esModule",{value:!0});oa.default=void 0;var A5=O5(Rs);oa.default=A5.default;var sa=zu.default;Object.defineProperty(na,"__esModule",{value:!0});na.default=void 0;var z5=sa(ra),B5=sa(oa),L5=sa(Rs),H5=sa(Ms);const rn="${label} is not a valid ${type}",D5={locale:"en",Pagination:z5.default,DatePicker:L5.default,TimePicker:H5.default,Calendar:B5.default,global:{placeholder:"Please select",close:"Close",sortable:"sortable"},Table:{filterTitle:"Filter menu",filterConfirm:"OK",filterReset:"Reset",filterEmptyText:"No filters",filterCheckAll:"Select all items",filterSearchPlaceholder:"Search in filters",emptyText:"No data",selectAll:"Select current page",selectInvert:"Invert current page",selectNone:"Clear all data",selectionAll:"Select all data",sortTitle:"Sort",expand:"Expand row",collapse:"Collapse row",triggerDesc:"Click to sort descending",triggerAsc:"Click to sort ascending",cancelSort:"Click to cancel sorting"},Tour:{Next:"Next",Previous:"Previous",Finish:"Finish"},Modal:{okText:"OK",cancelText:"Cancel",justOkText:"OK"},Popconfirm:{okText:"OK",cancelText:"Cancel"},Transfer:{titles:["",""],searchPlaceholder:"Search here",itemUnit:"item",itemsUnit:"items",remove:"Remove",selectCurrent:"Select current page",removeCurrent:"Remove current page",selectAll:"Select all data",deselectAll:"Deselect all data",removeAll:"Remove all data",selectInvert:"Invert current page"},Upload:{uploading:"Uploading...",removeFile:"Remove file",uploadError:"Upload error",previewFile:"Preview file",downloadFile:"Download file"},Empty:{description:"No data"},Icon:{icon:"icon"},Text:{edit:"Edit",copy:"Copy",copied:"Copied",expand:"Expand",collapse:"Collapse"},Form:{optional:"(optional)",defaultValidateMessages:{default:"Field validation error for ${label}",required:"Please enter ${label}",enum:"${label} must be one of [${enum}]",whitespace:"${label} cannot be a blank character",date:{format:"${label} date format is invalid",parse:"${label} cannot be converted to a date",invalid:"${label} is an invalid date"},types:{string:rn,method:rn,array:rn,object:rn,number:rn,date:rn,boolean:rn,integer:rn,float:rn,regexp:rn,email:rn,url:rn,hex:rn},string:{len:"${label} must be ${len} characters",min:"${label} must be at least ${min} characters",max:"${label} must be up to ${max} characters",range:"${label} must be between ${min}-${max} characters"},number:{len:"${label} must be equal to ${len}",min:"${label} must be minimum ${min}",max:"${label} must be maximum ${max}",range:"${label} must be between ${min}-${max}"},array:{len:"Must be ${len} ${label}",min:"At least ${min} ${label}",max:"At most ${max} ${label}",range:"The amount of ${label} must be between ${min}-${max}"},pattern:{mismatch:"${label} does not match the pattern ${pattern}"}}},QRCode:{expired:"QR code expired",refresh:"Refresh",scanned:"Scanned"},ColorPicker:{presetEmpty:"Empty",transparent:"Transparent",singleColor:"Single",gradientColor:"Gradient"}};na.default=D5;var F5=na;const N8=wy(F5);var _5=Oi(function e(){Ai(this,e)}),iy="CALC_UNIT",k5=new RegExp(iy,"g");function sl(e){return typeof e=="number"?"".concat(e).concat(iy):e}var V5=function(e){Cy(n,e);var t=Sy(n);function n(r,o){var s;Ai(this,n),s=t.call(this),Hn(ua(s),"result",""),Hn(ua(s),"unitlessCssVar",void 0),Hn(ua(s),"lowPriority",void 0);var a=Ko(r);return s.unitlessCssVar=o,r instanceof n?s.result="(".concat(r.result,")"):a==="number"?s.result=sl(r):a==="string"&&(s.result=r),s}return Oi(n,[{key:"add",value:function(o){return o instanceof n?this.result="".concat(this.result," + ").concat(o.getResult()):(typeof o=="number"||typeof o=="string")&&(this.result="".concat(this.result," + ").concat(sl(o))),this.lowPriority=!0,this}},{key:"sub",value:function(o){return o instanceof n?this.result="".concat(this.result," - ").concat(o.getResult()):(typeof o=="number"||typeof o=="string")&&(this.result="".concat(this.result," - ").concat(sl(o))),this.lowPriority=!0,this}},{key:"mul",value:function(o){return this.lowPriority&&(this.result="(".concat(this.result,")")),o instanceof n?this.result="".concat(this.result," * ").concat(o.getResult(!0)):(typeof o=="number"||typeof o=="string")&&(this.result="".concat(this.result," * ").concat(o)),this.lowPriority=!1,this}},{key:"div",value:function(o){return this.lowPriority&&(this.result="(".concat(this.result,")")),o instanceof n?this.result="".concat(this.result," / ").concat(o.getResult(!0)):(typeof o=="number"||typeof o=="string")&&(this.result="".concat(this.result," / ").concat(o)),this.lowPriority=!1,this}},{key:"getResult",value:function(o){return this.lowPriority||o?"(".concat(this.result,")"):this.result}},{key:"equal",value:function(o){var s=this,a=o||{},l=a.unit,c=!0;return typeof l=="boolean"?c=l:Array.from(this.unitlessCssVar).some(function(u){return s.result.includes(u)})&&(c=!1),this.result=this.result.replace(k5,c?"px":""),typeof this.lowPriority<"u"?"calc(".concat(this.result,")"):this.result}}]),n}(_5),W5=function(t,n){var r=V5;return function(o){return new r(o,n)}},ag=function(t,n){return"".concat([n,t.replace(/([A-Z]+)([A-Z][a-z]+)/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2")].filter(Boolean).join("-"))};function lg(e,t,n,r){var o=Yt({},t[e]);if(r!=null&&r.deprecatedTokens){var s=r.deprecatedTokens;s.forEach(function(l){var c=gg(l,2),u=c[0],d=c[1];if(o!=null&&o[u]||o!=null&&o[d]){var f;(f=o[d])!==null&&f!==void 0||(o[d]=o==null?void 0:o[u])}})}var a=Yt(Yt({},n),o);return Object.keys(a).forEach(function(l){a[l]===t[l]&&delete a[l]}),a}var ay=typeof CSSINJS_STATISTIC<"u",Ou=!0;function ly(){for(var e=arguments.length,t=new Array(e),n=0;n1e4){var r=Date.now();this.lastAccessBeat.forEach(function(o,s){r-o>X5&&(n.map.delete(s),n.lastAccessBeat.delete(s))}),this.accessBeat=0}}}]),e}(),dg=new U5;function K5(e,t){return N.useMemo(function(){var n=dg.get(t);if(n)return n;var r=e();return dg.set(t,r),r},t)}var Y5=function(){return{}};function T8(e){var t=e.useCSP,n=t===void 0?Y5:t,r=e.useToken,o=e.usePrefix,s=e.getResetStyles,a=e.getCommonStyle,l=e.getCompUnitless;function c(m,p,g,h){var b=Array.isArray(m)?m[0]:m;function $(I){return"".concat(String(b)).concat(I.slice(0,1).toUpperCase()).concat(I.slice(1))}var y=(h==null?void 0:h.unitless)||{},v=typeof l=="function"?l(m):{},C=Yt(Yt({},v),{},Hn({},$("zIndexPopup"),!0));Object.keys(y).forEach(function(I){C[$(I)]=y[I]});var S=Yt(Yt({},h),{},{unitless:C,prefixToken:$}),x=d(m,p,g,S),w=u(b,g,S);return function(I){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:I,R=x(I,E),P=w(E);return[R,P]}}function u(m,p,g){var h=g.unitless,b=g.prefixToken,$=g.ignore;return function(y){var v=r(),C=v.cssVar,S=v.realToken;return Lg({path:[m],prefix:C.prefix,key:C.key,unitless:h,ignore:$,token:S,scope:y},function(){var x=ug(m,S,p),w=lg(m,S,x,{deprecatedTokens:g==null?void 0:g.deprecatedTokens});return x&&Object.keys(x).forEach(function(I){w[b(I)]=w[I],delete w[I]}),w}),C==null?void 0:C.key}}function d(m,p,g){var h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},b=Array.isArray(m)?m:[m,m],$=gg(b,1),y=$[0],v=b.join("-"),C=e.layer||{name:"antd"};return function(S){var x=arguments.length>1&&arguments[1]!==void 0?arguments[1]:S,w=r(),I=w.theme,E=w.realToken,R=w.hashId,P=w.token,M=w.cssVar,O=w.zeroRuntime,A=i.useMemo(function(){return O},[]);if(A)return R;var T=o(),F=T.rootPrefixCls,H=T.iconPrefixCls,L=n(),B="css",D=K5(function(){var U=new Set;return Object.keys(h.unitless||{}).forEach(function(j){U.add(Pr(j,M.prefix)),U.add(Pr(j,ag(y,M.prefix)))}),W5(B,U)},[B,y,M==null?void 0:M.prefix]),k=G5(),W=k.max,_=k.min,X={theme:I,token:P,hashId:R,nonce:function(){return L.nonce},clientOnly:h.clientOnly,layer:C,order:h.order||-999};return typeof s=="function"&&Qo(Yt(Yt({},X),{},{clientOnly:!1,path:["Shared",F]}),function(){return s(P,{prefix:{rootPrefixCls:F,iconPrefixCls:H},csp:L})}),Qo(Yt(Yt({},X),{},{path:[v,S,H]}),function(){if(h.injectStyle===!1)return[];var U=q5(P),j=U.token,V=U.flush,G=ug(y,E,g),te=".".concat(S),ee=lg(y,E,G,{deprecatedTokens:h.deprecatedTokens});G&&Ko(G)==="object"&&Object.keys(G).forEach(function(ue){G[ue]="var(".concat(Pr(ue,ag(y,M.prefix)),")")});var ne=ly(j,{componentCls:te,prefixCls:S,iconCls:".".concat(H),antCls:".".concat(F),calc:D,max:W,min:_},G),Y=p(ne,{hashId:R,prefixCls:S,rootPrefixCls:F,iconPrefixCls:H});V(y,ee);var se=typeof a=="function"?a(ne,S,x,h.resetFont):null;return[h.resetStyle===!1?null:se,Y]}),R}}function f(m,p,g){var h=arguments.length>3&&arguments[3]!==void 0?arguments[3]:{},b=d(m,p,g,Yt({resetStyle:!1,order:-998},h)),$=function(v){var C=v.prefixCls,S=v.rootCls,x=S===void 0?C:S;return b(C,x),null};return $}return{genStyleHooks:c,genSubStyleComponent:f,genComponentStyleHook:d}}export{as as $,iI as A,On as B,An as C,V3 as D,uw as E,eo as F,Zi as G,lT as H,b8 as I,e4 as J,et as K,IS as L,zn as M,Rg as N,n8 as O,Es as P,a8 as Q,m8 as R,$4 as S,Kn as T,Br as U,f8 as V,_6 as W,v8 as X,c8 as Y,qu as Z,M8 as _,l8 as a,yr as a0,Co as a1,Cv as a2,A6 as a3,v3 as a4,dv as a5,y8 as a6,$8 as a7,I4 as a8,mb as a9,Id as aa,x8 as ab,P8 as ac,y6 as ad,o8 as ae,R8 as af,I8 as ag,s6 as ah,E8 as ai,jg as b,ml as c,N8 as d,K as e,K1 as f,T8 as g,us as h,Y1 as i,w8 as j,ta as k,C8 as l,ly as m,S8 as n,g8 as o,h8 as p,Ad as q,un as r,S5 as s,s8 as t,g1 as u,i8 as v,u8 as w,d8 as x,p8 as y,ZN as z}; diff --git a/axhub-make/admin/assets/chunks/vendor-assistant.js b/axhub-make/admin/assets/chunks/vendor-assistant.js new file mode 100644 index 0000000..77e8cfd --- /dev/null +++ b/axhub-make/admin/assets/chunks/vendor-assistant.js @@ -0,0 +1 @@ +import{r as l,j as c}from"./vendor-react.js?v=1775123024591";import{U as J1}from"./vendor-common.js?v=1775123024591";import{x as Q1}from"./vendor-antd.js?v=1775123024591";const g1=(e,t)=>{if(t)return"row";switch(e){case"horizontal":return"row";case"horizontal-reverse":return"row-reverse";case"vertical":default:return"column";case"vertical-reverse":return"column-reverse"}},Z1=e=>{if(e)return["space-between","space-around","space-evenly"].includes(e)},k1=(e,t)=>g1(e,t)==="row",z=e=>typeof e=="number"?`${e}px`:e,er=({visible:e,flex:t,gap:r,direction:n,horizontal:o,align:i,justify:u,distribution:s,height:y,width:g,allowShrink:h,padding:j,paddingInline:S,paddingBlock:P,prefixCls:$,as:_="div",className:Re,style:Ve,children:f,wrap:R,ref:Ke,...Te})=>{const x=u||s,wt=k1(n,o)&&!g&&Z1(x)?"100%":z(g),Y1={...t!==void 0?{"--lobe-flex":String(t)}:{},...n||o?{"--lobe-flex-direction":g1(n,o)}:{},...R!==void 0?{"--lobe-flex-wrap":R}:{},...x!==void 0?{"--lobe-flex-justify":x}:{},...i!==void 0?{"--lobe-flex-align":i}:{},...wt!==void 0?{"--lobe-flex-width":wt}:{},...y!==void 0?{"--lobe-flex-height":z(y)}:{},...j!==void 0?{"--lobe-flex-padding":z(j)}:{},...S!==void 0?{"--lobe-flex-padding-inline":z(S)}:{},...P!==void 0?{"--lobe-flex-padding-block":z(P)}:{},...r!==void 0?{"--lobe-flex-gap":z(r)}:{},...h?{minWidth:0}:{},...Ve},dt="lobe-flex",X1=[dt,e===!1?`${dt}--hidden`:void 0,$?`${$}-flex`:void 0,Re].filter(Boolean).join(" ");return c.jsx(_,{ref:Ke,...Te,className:X1,style:Y1,children:f})};var h1=l.memo(er);const tr=({children:e,ref:t,...r})=>c.jsx(h1,{...r,align:"center",justify:"center",ref:t,children:e});var rr=tr,nr=function(t,r){if(r){if(t&&r==="#000")return"0 0 0 1px rgba(255,255,255,0.1) inset";if(!t&&r==="#fff")return"0 0 0 1px rgba(0,0,0,0.05) inset"}};function V(e){"@babel/helpers - typeof";return V=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},V(e)}var or=["shape","color","background","size","style","iconMultiple","Icon","iconStyle","iconClassName"];function St(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Ae(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function ar(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var p=l.memo(function(e){var t=e.shape,r=t===void 0?"circle":t,n=e.color,o=n===void 0?"#fff":n,i=e.background,u=e.size,s=e.style,y=e.iconMultiple,g=y===void 0?.75:y,h=e.Icon,j=e.iconStyle,S=e.iconClassName,P=ur(e,or),$=Q1(),_=$.isDarkMode;return c.jsx(rr,Ae(Ae({flex:"none",style:Ae({background:i,borderRadius:r==="circle"?"50%":Math.floor(u*.1),boxShadow:nr(_,i),color:o,height:u,width:u},s)},P),{},{children:h&&c.jsx(h,{className:S,color:o,size:u,style:Ae({transform:"scale(".concat(g,")")},j)})}))});function K(e){"@babel/helpers - typeof";return K=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},K(e)}var fr=["Icon","style","Text","color","size","spaceMultiple","textMultiple","extra","extraStyle","showText","showLogo","extraClassName","iconProps","inverse"];function $t(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function b(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function mr(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var m=l.memo(function(e){var t=e.Icon,r=e.style,n=e.Text,o=e.color,i=e.size,u=i===void 0?24:i,s=e.spaceMultiple,y=s===void 0?1:s,g=e.textMultiple,h=g===void 0?1:g,j=e.extra,S=e.extraStyle,P=e.showText,$=P===void 0?!0:P,_=e.showLogo,Re=_===void 0?!0:_,Ve=e.extraClassName,f=e.iconProps,R=e.inverse,Ke=br(e,fr),Te=t&&Re&&c.jsx(t,b(b({size:u},f),{},{style:b(R?{marginLeft:u*y}:{marginRight:u*y},f==null?void 0:f.style)})),x=$&&n&&c.jsx(n,{size:u*h});return c.jsxs(h1,b(b({align:"center",flex:"none",horizontal:!0,justify:"flex-start",style:b({color:o},r)},Ke),{},{children:[R?c.jsxs(c.Fragment,{children:[x,Te]}):c.jsxs(c.Fragment,{children:[Te,x]}),j&&c.jsx("span",{className:Ve,style:b({fontSize:u*h*.95,lineHeight:1},S),children:j})]}))}),vr=function(t){var r="lobe-icons-".concat(J1(t),"-fill");return l.useMemo(function(){return{fill:"url(#".concat(r,")"),id:r}},[t])},v="AWS",Or=.75,gr=.2,j1="#222F3E",hr=j1,jr="#fff",Pr=.75;function N(e){"@babel/helpers - typeof";return N=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},N(e)}var wr=["size","style"];function _t(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Ne(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function xr(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var yt=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=_r(e,wr);return c.jsxs("svg",Ne(Ne({fill:"currentColor",fillRule:"evenodd",height:r,style:Ne({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:v}),c.jsx("path",{d:"M6.763 11.212c0 .296.032.535.088.71.064.176.144.368.256.576.04.063.056.127.056.183 0 .08-.048.16-.152.24l-.503.335a.383.383 0 01-.208.072c-.08 0-.16-.04-.239-.112a2.47 2.47 0 01-.287-.375 6.18 6.18 0 01-.248-.471c-.622.734-1.405 1.101-2.347 1.101-.67 0-1.205-.191-1.596-.574-.39-.384-.59-.894-.59-1.533 0-.678.24-1.23.726-1.644.487-.415 1.133-.623 1.955-.623.272 0 .551.024.846.064.296.04.6.104.918.176v-.583c0-.607-.127-1.03-.375-1.277-.255-.248-.686-.367-1.3-.367-.28 0-.568.031-.863.103-.295.072-.583.16-.862.272a2.4 2.4 0 01-.28.104.488.488 0 01-.127.023c-.112 0-.168-.08-.168-.247v-.391c0-.128.016-.224.056-.28a.597.597 0 01.224-.167 4.577 4.577 0 011.005-.36 4.84 4.84 0 011.246-.151c.95 0 1.644.216 2.091.647.44.43.662 1.085.662 1.963v2.586h.016zm-3.24 1.214c.263 0 .534-.048.822-.144a1.78 1.78 0 00.758-.51 1.27 1.27 0 00.272-.512c.047-.191.08-.423.08-.694v-.335a6.66 6.66 0 00-.735-.136 6.02 6.02 0 00-.75-.048c-.535 0-.926.104-1.19.32-.263.215-.39.518-.39.917 0 .375.095.655.295.846.191.2.47.296.838.296zm6.41.862c-.144 0-.24-.024-.304-.08-.064-.048-.12-.16-.168-.311L7.586 6.726a1.398 1.398 0 01-.072-.32c0-.128.064-.2.191-.2h.783c.151 0 .255.025.31.08.065.048.113.16.16.312l1.342 5.284 1.245-5.284c.04-.16.088-.264.151-.312a.549.549 0 01.32-.08h.638c.152 0 .256.025.32.08.063.048.12.16.151.312l1.261 5.348 1.381-5.348c.048-.16.104-.264.16-.312a.52.52 0 01.311-.08h.743c.127 0 .2.065.2.2 0 .04-.009.08-.017.128a1.137 1.137 0 01-.056.2l-1.923 6.17c-.048.16-.104.263-.168.311a.51.51 0 01-.303.08h-.687c-.15 0-.255-.024-.32-.08-.063-.056-.119-.16-.15-.32L12.32 7.747l-1.23 5.14c-.04.16-.087.264-.15.32-.065.056-.177.08-.32.08l-.686.001zm10.256.215c-.415 0-.83-.048-1.229-.143-.399-.096-.71-.2-.918-.32-.128-.071-.215-.151-.247-.223a.563.563 0 01-.048-.224v-.407c0-.167.064-.247.183-.247.048 0 .096.008.144.024.048.016.12.048.2.08.271.12.566.215.878.279.32.064.63.096.95.096.502 0 .894-.088 1.165-.264a.86.86 0 00.415-.758.777.777 0 00-.215-.559c-.144-.151-.416-.287-.807-.415l-1.157-.36c-.583-.183-1.014-.454-1.277-.813a1.902 1.902 0 01-.4-1.158c0-.335.073-.63.216-.886.144-.255.335-.479.575-.654.24-.184.51-.32.83-.415.32-.096.655-.136 1.006-.136.175 0 .36.008.535.032.183.024.35.056.518.088.16.04.312.08.455.127.144.048.256.096.336.144a.69.69 0 01.24.2.43.43 0 01.071.263v.375c0 .168-.064.256-.184.256a.83.83 0 01-.303-.096 3.652 3.652 0 00-1.532-.311c-.455 0-.815.071-1.062.223-.248.152-.375.383-.375.71 0 .224.08.416.24.567.16.152.454.304.877.44l1.134.358c.574.184.99.44 1.237.767.247.327.367.702.367 1.117 0 .343-.072.655-.207.926a2.157 2.157 0 01-.583.703c-.248.2-.543.343-.886.447-.36.111-.734.167-1.142.167z"}),c.jsx("path",{d:"M.378 15.475c3.384 1.963 7.56 3.153 11.877 3.153 2.914 0 6.114-.607 9.06-1.852.44-.2.814.287.383.607-2.626 1.94-6.442 2.969-9.722 2.969-4.598 0-8.74-1.7-11.87-4.526-.247-.223-.024-.527.272-.351zm23.531-.2c.287.36-.08 2.826-1.485 4.007-.215.184-.423.088-.327-.151l.175-.439c.343-.88.802-2.198.52-2.555-.336-.43-2.22-.207-3.074-.103-.255.032-.295-.192-.063-.36 1.5-1.053 3.967-.75 4.254-.399z",fill:"#F90"})]}))});function H(e){"@babel/helpers - typeof";return H=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},H(e)}function xt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function zr(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function Kr(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var Nr=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=Vr(e,Mr);return c.jsxs("svg",He(He({fill:"currentColor",fillRule:"evenodd",height:r,style:He({flex:"none",lineHeight:1},n),viewBox:"0 0 61 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:v}),c.jsx("path",{d:"M5.323 16.931l3.433 1.012L8.752 23l-3.429-1.138v-4.931zm7.757 0l-.012 4.928L9.647 23v-5.057l3.433-1.012zm-3.9-1.517l3.2.983-3.195.843-3.162-.843 3.158-.983zm-.424-5.69l-.011 4.928-3.422 1.141v-5.057l3.433-1.012zm.89 0l3.434 1.012-.004 5.057-3.43-1.138v-4.93zm7.757 0l-.012 4.928-3.421 1.141v-5.057l3.433-1.012zM1 9.724l3.433 1.012-.004 5.057L1 14.655v-4.93zm12.504-1.517l3.2.983-3.195.843-3.163-.843 3.158-.983zm-8.647 0l3.2.983-3.195.843-3.163-.843 3.158-.983zm9.113-5.69l3.433 1.012-.004 5.057-3.43-1.138v-4.93zm7.756 0l-.012 4.928-3.42 1.141V3.53l3.432-1.012zM17.827 1l3.2.983-3.195.843-3.163-.843L17.827 1zm4.79 1.517L26.05 3.53l-.005 5.057-3.429-1.138v-4.93zm7.756 0l-.012 4.928-3.421 1.141V3.53l3.433-1.012zM26.473 1l3.2.983-3.195.843-3.162-.843L26.474 1z",fill:"#F90"}),c.jsx("path",{d:"M23.938 18.641l-.253.001c-.092 0-.21.062-.24.163l-.765 2.681-.757-2.675c-.022-.084-.102-.169-.21-.169h-.299c-.107 0-.186.086-.207.17l-.705 2.648-.727-2.656c-.029-.097-.15-.162-.245-.162h-.363a.233.233 0 00-.188.086.124.124 0 00-.021.113l1.124 3.957c.024.083.097.167.203.167h.361c.098 0 .183-.071.208-.171l.691-2.636.753 2.639c.023.08.096.168.202.168h.356a.213.213 0 00.206-.169l1.082-3.954a.128.128 0 00-.02-.116.23.23 0 00-.186-.085zm3.12 1.68h-1.906c.044-.532.391-1.084.98-1.105.626.02.913.56.927 1.105zm-.927-1.708c-1.289 0-1.875 1.132-1.875 2.184 0 1.313.729 2.162 1.858 2.162.808 0 1.423-.406 1.69-1.115a.149.149 0 00-.013-.124.21.21 0 00-.14-.098l-.357-.068c-.096-.014-.206.042-.242.124-.174.394-.49.618-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.823l2.589-.001c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.022-.476-2.115-1.776-2.115zm4.961 2.138l-.002.166c-.017.383-.137 1.342-.906 1.37a.965.965 0 01-.745-.431c-.12-.19-.191-.451-.21-.775v-.712c.015-.545.4-1.143.953-1.166.819.032.903 1.198.91 1.548zm-.772-2.175h-.069c-.427 0-.763.177-1.021.539v-1.668c0-.094-.098-.18-.205-.18h-.373c-.097 0-.206.077-.206.18v5.207c0 .094.098.18.205.18h.11c.103 0 .176-.083.2-.16l.117-.367c.27.382.678.606 1.115.606h.066c1.15 0 1.663-1.111 1.663-2.212 0-.548-.136-1.072-.372-1.438a1.487 1.487 0 00-1.23-.687zm5.68 2.11c-.243-.173-.534-.23-.826-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.372.388-.514.717-.523.401.01.703.188.85.502a.217.217 0 00.192.123l.04-.004.35-.077a.216.216 0 00.138-.102.148.148 0 00.015-.123c-.214-.618-.756-.945-1.576-.945-.741.002-1.533.33-1.533 1.244 0 .626.395 1.023 1.176 1.18l.625.12c.344.065.695.181.695.548 0 .543-.635.598-.827.602-.431-.009-.92-.2-1.038-.605-.024-.089-.136-.152-.235-.131l-.365.074a.21.21 0 00-.134.095.158.158 0 00-.02.126c.175.627.755 1.022 1.567 1.077l.197.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm3.69-.361h-1.907c.043-.533.39-1.085.98-1.105.626.02.913.559.927 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.406 1.69-1.115a.15.15 0 00-.012-.124.21.21 0 00-.14-.097l-.358-.068c-.083-.014-.2.03-.241.124-.174.393-.49.617-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.824h2.589c.054 0 .11-.024.149-.064a.163.163 0 00.051-.116c-.006-1.023-.476-2.116-1.777-2.116zm4.222.049c-.05-.006-.1-.009-.147-.009-.434 0-.787.235-1.032.684l.001-.393c0-.095-.096-.179-.204-.179h-.324c-.106 0-.2.084-.2.18v3.818c0 .096.093.18.2.18h.377c.098 0 .209-.077.21-.18v-1.925c0-.317.03-.556.182-.839.218-.403.522-.6.93-.604.102 0 .192-.09.192-.19v-.357c0-.093-.081-.175-.185-.186zm3.96-.075h-.297c-.094 0-.213.066-.242.164l-.966 3.018-.986-3.015c-.03-.1-.15-.167-.243-.167h-.425a.24.24 0 00-.193.087.124.124 0 00-.02.115l1.35 3.981c.026.079.095.171.203.171h.515c.095 0 .172-.064.208-.171l1.309-3.98a.123.123 0 00-.02-.114.24.24 0 00-.192-.09zm.98-1.53a.497.497 0 100 .994.497.497 0 000-.995zm.204 1.505h-.408c-.111 0-.213.09-.213.187l-.002 4.054c0 .049.026.098.07.134a.23.23 0 00.143.052h.412c.113 0 .212-.088.212-.186v-4.054c0-.1-.1-.187-.214-.187zm3.818 2.75h-.34a.22.22 0 00-.211.156c-.125.535-.407.812-.835.824-.834-.025-.898-1.18-.898-1.534 0-.705.245-1.465.93-1.485.414.012.715.307.806.788a.223.223 0 00.196.185l.365.004c.109-.012.195-.094.194-.196-.13-.869-.735-1.43-1.544-1.43h-.06c-1.176 0-1.703 1.092-1.703 2.174 0 .992.444 2.15 1.697 2.15h.06c.789 0 1.384-.55 1.555-1.44a.16.16 0 00-.041-.12.242.242 0 00-.17-.077zm3.37-.99h-1.908c.044-.533.391-1.085.98-1.105.627.02.914.559.928 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.405 1.69-1.114a.151.151 0 00-.013-.125.208.208 0 00-.139-.097l-.358-.068c-.084-.014-.2.03-.241.124-.175.393-.492.617-.888.63a1.03 1.03 0 01-.894-.576c-.131-.276-.15-.547-.153-.824h2.59c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.023-.476-2.116-1.777-2.116zm5.02 2.07c-.242-.173-.534-.23-.825-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.48.6-.52.716-.523.402.01.704.188.85.502a.218.218 0 00.193.123l.042-.004.348-.077a.217.217 0 00.139-.102.148.148 0 00.014-.123c-.213-.618-.756-.945-1.576-.945-.74.002-1.532.33-1.532 1.244 0 .626.395 1.023 1.175 1.18l.626.12c.344.065.695.181.695.548 0 .543-.636.598-.828.602-.4-.008-.911-.172-1.037-.604-.023-.09-.136-.153-.236-.132l-.365.074a.212.212 0 00-.135.096.158.158 0 00-.02.125c.176.627.756 1.022 1.567 1.077l.198.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm-16.608-9.925v-.92c0-.14.107-.234.235-.233h4.147a.23.23 0 01.24.232v.789c-.002.094-.06.21-.165.368l-2.296 3.261c.797-.019 1.64.1 2.365.505.163.091.207.226.22.359v.982c0 .135-.149.292-.305.21-1.277-.665-2.97-.737-4.383.008-.144.076-.295-.078-.295-.213v-.933c0-.15.003-.405.155-.633l2.489-3.55h-2.167c-.133 0-.239-.094-.24-.232zm-3.99-1.334c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.005.333-.257.215-.715.61-.967.833a.273.273 0 01-.301.027c-.419-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.889-.651-1.889-1.955 0-1.018.555-1.71 1.346-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.154-.644-.153-.23-.448-.325-.708-.325-.441 0-.837.206-.981.631l-.033.122c-.021.113-.105.225-.22.23l-1.222-.131c-.103-.023-.218-.105-.188-.262.281-1.476 1.62-1.921 2.822-1.921zm-16.54 0c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.004.333-.258.215-.716.61-.968.833a.274.274 0 01-.301.027c-.42-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.89-.651-1.89-1.955 0-1.018.556-1.71 1.347-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.153-.644-.154-.23-.45-.325-.708-.325-.442 0-.838.206-.982.631l-.033.122c-.022.113-.105.225-.219.23l-1.223-.131c-.103-.023-.218-.105-.188-.262.28-1.476 1.62-1.921 2.821-1.921zm10.628.062c.53 0 1.107.217 1.46.704.4.543.318 1.328.318 2.02v4.063a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.414c0-.271.024-.949-.035-1.206-.095-.434-.377-.555-.742-.555a.837.837 0 00-.754.527c-.093.233-.113.576-.117.886v3.761a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.639c.012-.694.027-1.55-.778-1.55-.816 0-.87.834-.872 1.544v3.644a.237.237 0 01-.244.232h-1.262a.237.237 0 01-.225-.212v-6.44c0-.128.11-.231.244-.231l1.175-.001c.123.007.222.1.23.216v.842h.023c.306-.814.883-1.193 1.66-1.193.79 0 1.284.38 1.638 1.193.306-.814 1-1.193 1.743-1.193zm6.596 4.123v-.451l-.261.006c-.826.039-1.616.29-1.616 1.257 0 .543.284.91.767.91.354 0 .673-.217.874-.57.217-.38.235-.74.236-1.152zm-16.542.174l.002-.625-.261.006c-.827.039-1.616.29-1.616 1.257 0 .543.283.91.768.91.354 0 .673-.217.873-.57.186-.326.226-.637.234-.978zm28.051-2.983c-.842 0-.97 1.032-.987 1.81l-.002.45c.005.84.07 2.252.978 2.252.977 0 1.024-1.355 1.024-2.181 0-.542-.023-1.192-.188-1.707-.128-.403-.369-.586-.708-.618L51 10.803zM50.99 9.49c1.872 0 2.885 1.599 2.885 3.63 0 1.966-1.12 3.524-2.885 3.524-1.838 0-2.84-1.599-2.84-3.59 0-2.006 1.013-3.564 2.84-3.564zm5.314 7.019h-1.257a.236.236 0 01-.227-.231l-.002-6.442a.238.238 0 01.242-.21l1.171-.001c.11.006.2.08.224.18v.986h.024c.353-.881.848-1.3 1.719-1.3.565 0 1.12.202 1.472.758.33.514.33 1.381.33 2.005v4.052a.239.239 0 01-.241.203h-1.266a.238.238 0 01-.224-.203l.001-3.947c-.006-.625-.093-1.284-.79-1.284-.307 0-.589.204-.73.515-.177.393-.2.786-.2 1.22v3.467a.241.241 0 01-.246.232z"})]}))});function B(e){"@babel/helpers - typeof";return B=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},B(e)}var Hr=["size","style"];function Et(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function We(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function Gr(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var qr=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=Ur(e,Hr);return c.jsxs("svg",We(We({fill:"currentColor",fillRule:"evenodd",height:r,style:We({flex:"none",lineHeight:1},n),viewBox:"0 0 61 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:v}),c.jsx("path",{d:"M5.323 16.931l3.433 1.012L8.752 23l-3.429-1.138v-4.931zm7.757 0l-.012 4.928L9.647 23v-5.057l3.433-1.012zm-3.9-1.517l3.2.983-3.195.843-3.162-.843 3.158-.983zm-.424-5.69l-.011 4.928-3.422 1.141v-5.057l3.433-1.012zm.89 0l3.434 1.012-.004 5.057-3.43-1.138v-4.93zm7.757 0l-.012 4.928-3.421 1.141v-5.057l3.433-1.012zM1 9.724l3.433 1.012-.004 5.057L1 14.655v-4.93zm12.504-1.517l3.2.983-3.195.843-3.163-.843 3.158-.983zm-8.647 0l3.2.983-3.195.843-3.163-.843 3.158-.983zm9.113-5.69l3.433 1.012-.004 5.057-3.43-1.138v-4.93zm7.756 0l-.012 4.928-3.42 1.141V3.53l3.432-1.012zM17.827 1l3.2.983-3.195.843-3.163-.843L17.827 1zm4.79 1.517L26.05 3.53l-.005 5.057-3.429-1.138v-4.93zm7.756 0l-.012 4.928-3.421 1.141V3.53l3.433-1.012zM26.473 1l3.2.983-3.195.843-3.162-.843L26.474 1z"}),c.jsx("path",{d:"M23.938 18.641l-.253.001c-.092 0-.21.062-.24.163l-.765 2.681-.757-2.675c-.022-.084-.102-.169-.21-.169h-.299c-.107 0-.186.086-.207.17l-.705 2.648-.727-2.656c-.029-.097-.15-.162-.245-.162h-.363a.233.233 0 00-.188.086.124.124 0 00-.021.113l1.124 3.957c.024.083.097.167.203.167h.361c.098 0 .183-.071.208-.171l.691-2.636.753 2.639c.023.08.096.168.202.168h.356a.213.213 0 00.206-.169l1.082-3.954a.128.128 0 00-.02-.116.23.23 0 00-.186-.085zm3.12 1.68h-1.906c.044-.532.391-1.084.98-1.105.626.02.913.56.927 1.105zm-.927-1.708c-1.289 0-1.875 1.132-1.875 2.184 0 1.313.729 2.162 1.858 2.162.808 0 1.423-.406 1.69-1.115a.149.149 0 00-.013-.124.21.21 0 00-.14-.098l-.357-.068c-.096-.014-.206.042-.242.124-.174.394-.49.618-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.823l2.589-.001c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.022-.476-2.115-1.776-2.115zm4.961 2.138l-.002.166c-.017.383-.137 1.342-.906 1.37a.965.965 0 01-.745-.431c-.12-.19-.191-.451-.21-.775v-.712c.015-.545.4-1.143.953-1.166.819.032.903 1.198.91 1.548zm-.772-2.175h-.069c-.427 0-.763.177-1.021.539v-1.668c0-.094-.098-.18-.205-.18h-.373c-.097 0-.206.077-.206.18v5.207c0 .094.098.18.205.18h.11c.103 0 .176-.083.2-.16l.117-.367c.27.382.678.606 1.115.606h.066c1.15 0 1.663-1.111 1.663-2.212 0-.548-.136-1.072-.372-1.438a1.487 1.487 0 00-1.23-.687zm5.68 2.11c-.243-.173-.534-.23-.826-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.372.388-.514.717-.523.401.01.703.188.85.502a.217.217 0 00.192.123l.04-.004.35-.077a.216.216 0 00.138-.102.148.148 0 00.015-.123c-.214-.618-.756-.945-1.576-.945-.741.002-1.533.33-1.533 1.244 0 .626.395 1.023 1.176 1.18l.625.12c.344.065.695.181.695.548 0 .543-.635.598-.827.602-.431-.009-.92-.2-1.038-.605-.024-.089-.136-.152-.235-.131l-.365.074a.21.21 0 00-.134.095.158.158 0 00-.02.126c.175.627.755 1.022 1.567 1.077l.197.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm3.69-.361h-1.907c.043-.533.39-1.085.98-1.105.626.02.913.559.927 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.406 1.69-1.115a.15.15 0 00-.012-.124.21.21 0 00-.14-.097l-.358-.068c-.083-.014-.2.03-.241.124-.174.393-.49.617-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.824h2.589c.054 0 .11-.024.149-.064a.163.163 0 00.051-.116c-.006-1.023-.476-2.116-1.777-2.116zm4.222.049c-.05-.006-.1-.009-.147-.009-.434 0-.787.235-1.032.684l.001-.393c0-.095-.096-.179-.204-.179h-.324c-.106 0-.2.084-.2.18v3.818c0 .096.093.18.2.18h.377c.098 0 .209-.077.21-.18v-1.925c0-.317.03-.556.182-.839.218-.403.522-.6.93-.604.102 0 .192-.09.192-.19v-.357c0-.093-.081-.175-.185-.186zm3.96-.075h-.297c-.094 0-.213.066-.242.164l-.966 3.018-.986-3.015c-.03-.1-.15-.167-.243-.167h-.425a.24.24 0 00-.193.087.124.124 0 00-.02.115l1.35 3.981c.026.079.095.171.203.171h.515c.095 0 .172-.064.208-.171l1.309-3.98a.123.123 0 00-.02-.114.24.24 0 00-.192-.09zm.98-1.53a.497.497 0 100 .994.497.497 0 000-.995zm.204 1.505h-.408c-.111 0-.213.09-.213.187l-.002 4.054c0 .049.026.098.07.134a.23.23 0 00.143.052h.412c.113 0 .212-.088.212-.186v-4.054c0-.1-.1-.187-.214-.187zm3.818 2.75h-.34a.22.22 0 00-.211.156c-.125.535-.407.812-.835.824-.834-.025-.898-1.18-.898-1.534 0-.705.245-1.465.93-1.485.414.012.715.307.806.788a.223.223 0 00.196.185l.365.004c.109-.012.195-.094.194-.196-.13-.869-.735-1.43-1.544-1.43h-.06c-1.176 0-1.703 1.092-1.703 2.174 0 .992.444 2.15 1.697 2.15h.06c.789 0 1.384-.55 1.555-1.44a.16.16 0 00-.041-.12.242.242 0 00-.17-.077zm3.37-.99h-1.908c.044-.533.391-1.085.98-1.105.627.02.914.559.928 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.405 1.69-1.114a.151.151 0 00-.013-.125.208.208 0 00-.139-.097l-.358-.068c-.084-.014-.2.03-.241.124-.175.393-.492.617-.888.63a1.03 1.03 0 01-.894-.576c-.131-.276-.15-.547-.153-.824h2.59c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.023-.476-2.116-1.777-2.116zm5.02 2.07c-.242-.173-.534-.23-.825-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.48.6-.52.716-.523.402.01.704.188.85.502a.218.218 0 00.193.123l.042-.004.348-.077a.217.217 0 00.139-.102.148.148 0 00.014-.123c-.213-.618-.756-.945-1.576-.945-.74.002-1.532.33-1.532 1.244 0 .626.395 1.023 1.175 1.18l.626.12c.344.065.695.181.695.548 0 .543-.636.598-.828.602-.4-.008-.911-.172-1.037-.604-.023-.09-.136-.153-.236-.132l-.365.074a.212.212 0 00-.135.096.158.158 0 00-.02.125c.176.627.756 1.022 1.567 1.077l.198.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm-16.608-9.925v-.92c0-.14.107-.234.235-.233h4.147a.23.23 0 01.24.232v.789c-.002.094-.06.21-.165.368l-2.296 3.261c.797-.019 1.64.1 2.365.505.163.091.207.226.22.359v.982c0 .135-.149.292-.305.21-1.277-.665-2.97-.737-4.383.008-.144.076-.295-.078-.295-.213v-.933c0-.15.003-.405.155-.633l2.489-3.55h-2.167c-.133 0-.239-.094-.24-.232zm-3.99-1.334c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.005.333-.257.215-.715.61-.967.833a.273.273 0 01-.301.027c-.419-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.889-.651-1.889-1.955 0-1.018.555-1.71 1.346-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.154-.644-.153-.23-.448-.325-.708-.325-.441 0-.837.206-.981.631l-.033.122c-.021.113-.105.225-.22.23l-1.222-.131c-.103-.023-.218-.105-.188-.262.281-1.476 1.62-1.921 2.822-1.921zm-16.54 0c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.004.333-.258.215-.716.61-.968.833a.274.274 0 01-.301.027c-.42-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.89-.651-1.89-1.955 0-1.018.556-1.71 1.347-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.153-.644-.154-.23-.45-.325-.708-.325-.442 0-.838.206-.982.631l-.033.122c-.022.113-.105.225-.219.23l-1.223-.131c-.103-.023-.218-.105-.188-.262.28-1.476 1.62-1.921 2.821-1.921zm10.628.062c.53 0 1.107.217 1.46.704.4.543.318 1.328.318 2.02v4.063a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.414c0-.271.024-.949-.035-1.206-.095-.434-.377-.555-.742-.555a.837.837 0 00-.754.527c-.093.233-.113.576-.117.886v3.761a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.639c.012-.694.027-1.55-.778-1.55-.816 0-.87.834-.872 1.544v3.644a.237.237 0 01-.244.232h-1.262a.237.237 0 01-.225-.212v-6.44c0-.128.11-.231.244-.231l1.175-.001c.123.007.222.1.23.216v.842h.023c.306-.814.883-1.193 1.66-1.193.79 0 1.284.38 1.638 1.193.306-.814 1-1.193 1.743-1.193zm6.596 4.123v-.451l-.261.006c-.826.039-1.616.29-1.616 1.257 0 .543.284.91.767.91.354 0 .673-.217.874-.57.217-.38.235-.74.236-1.152zm-16.542.174l.002-.625-.261.006c-.827.039-1.616.29-1.616 1.257 0 .543.283.91.768.91.354 0 .673-.217.873-.57.186-.326.226-.637.234-.978zm28.051-2.983c-.842 0-.97 1.032-.987 1.81l-.002.45c.005.84.07 2.252.978 2.252.977 0 1.024-1.355 1.024-2.181 0-.542-.023-1.192-.188-1.707-.128-.403-.369-.586-.708-.618L51 10.803zM50.99 9.49c1.872 0 2.885 1.599 2.885 3.63 0 1.966-1.12 3.524-2.885 3.524-1.838 0-2.84-1.599-2.84-3.59 0-2.006 1.013-3.564 2.84-3.564zm5.314 7.019h-1.257a.236.236 0 01-.227-.231l-.002-6.442a.238.238 0 01.242-.21l1.171-.001c.11.006.2.08.224.18v.986h.024c.353-.881.848-1.3 1.719-1.3.565 0 1.12.202 1.472.758.33.514.33 1.381.33 2.005v4.052a.239.239 0 01-.241.203h-1.266a.238.238 0 01-.224-.203l.001-3.947c-.006-.625-.093-1.284-.79-1.284-.307 0-.589.204-.73.515-.177.393-.2.786-.2 1.22v3.467a.241.241 0 01-.246.232z"})]}))});function F(e){"@babel/helpers - typeof";return F=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},F(e)}var Yr=["size","style"];function Dt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Be(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function kr(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var P1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=Zr(e,Yr);return c.jsxs("svg",Be(Be({fill:"currentColor",fillRule:"evenodd",height:r,style:Be({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:v}),c.jsx("path",{d:"M6.763 11.212c0 .296.032.535.088.71.064.176.144.368.256.576.04.063.056.127.056.183 0 .08-.048.16-.152.24l-.503.335a.383.383 0 01-.208.072c-.08 0-.16-.04-.239-.112a2.47 2.47 0 01-.287-.375 6.18 6.18 0 01-.248-.471c-.622.734-1.405 1.101-2.347 1.101-.67 0-1.205-.191-1.596-.574-.39-.384-.59-.894-.59-1.533 0-.678.24-1.23.726-1.644.487-.415 1.133-.623 1.955-.623.272 0 .551.024.846.064.296.04.6.104.918.176v-.583c0-.607-.127-1.03-.375-1.277-.255-.248-.686-.367-1.3-.367-.28 0-.568.031-.863.103-.295.072-.583.16-.862.272-.09.04-.184.075-.28.104a.488.488 0 01-.127.023c-.112 0-.168-.08-.168-.247v-.391c0-.128.016-.224.056-.28a.597.597 0 01.224-.167 4.577 4.577 0 011.005-.36 4.84 4.84 0 011.246-.151c.95 0 1.644.216 2.091.647.44.43.662 1.085.662 1.963v2.586h.016zm-3.24 1.214c.263 0 .534-.048.822-.144a1.78 1.78 0 00.758-.51 1.27 1.27 0 00.272-.512c.047-.191.08-.423.08-.694v-.335a6.66 6.66 0 00-.735-.136 6.02 6.02 0 00-.75-.048c-.535 0-.926.104-1.19.32-.263.215-.39.518-.39.917 0 .375.095.655.295.846.191.2.47.296.838.296zm6.41.862c-.144 0-.24-.024-.304-.08-.064-.048-.12-.16-.168-.311L7.586 6.726a1.398 1.398 0 01-.072-.32c0-.128.064-.2.191-.2h.783c.151 0 .255.025.31.08.065.048.113.16.16.312l1.342 5.284 1.245-5.284c.04-.16.088-.264.151-.312a.549.549 0 01.32-.08h.638c.152 0 .256.025.32.08.063.048.12.16.151.312l1.261 5.348 1.381-5.348c.048-.16.104-.264.16-.312a.52.52 0 01.311-.08h.743c.127 0 .2.065.2.2 0 .04-.009.08-.017.128a1.137 1.137 0 01-.056.2l-1.923 6.17c-.048.16-.104.263-.168.311a.51.51 0 01-.303.08h-.687c-.15 0-.255-.024-.32-.08-.063-.056-.119-.16-.15-.32L12.32 7.747l-1.23 5.14c-.04.16-.087.264-.15.32-.065.056-.177.08-.32.08l-.686.001zm10.256.215c-.415 0-.83-.048-1.229-.143-.399-.096-.71-.2-.918-.32-.128-.071-.215-.151-.247-.223a.563.563 0 01-.048-.224v-.407c0-.167.064-.247.183-.247.048 0 .096.008.144.024.048.016.12.048.2.08.271.12.566.215.878.279.32.064.63.096.95.096.502 0 .894-.088 1.165-.264a.86.86 0 00.415-.758.777.777 0 00-.215-.559c-.144-.151-.416-.287-.807-.415l-1.157-.36c-.583-.183-1.014-.454-1.277-.813a1.902 1.902 0 01-.4-1.158c0-.335.073-.63.216-.886.144-.255.335-.479.575-.654.24-.184.51-.32.83-.415.32-.096.655-.136 1.006-.136.175 0 .36.008.535.032.183.024.35.056.518.088.16.04.312.08.455.127.144.048.256.096.336.144a.69.69 0 01.24.2.43.43 0 01.071.263v.375c0 .168-.064.256-.184.256a.83.83 0 01-.303-.096 3.652 3.652 0 00-1.532-.311c-.455 0-.815.071-1.062.223-.248.152-.375.383-.375.71 0 .224.08.416.24.567.16.152.454.304.877.44l1.134.358c.574.184.99.44 1.237.767.247.327.367.702.367 1.117 0 .343-.072.655-.207.926a2.157 2.157 0 01-.583.703c-.248.2-.543.343-.886.447-.36.111-.734.167-1.142.167z"}),c.jsx("path",{d:"M.378 15.475c3.384 1.963 7.56 3.153 11.877 3.153 2.914 0 6.114-.607 9.06-1.852.44-.2.814.287.383.607-2.626 1.94-6.442 2.969-9.722 2.969-4.598 0-8.74-1.7-11.87-4.526-.247-.223-.024-.527.272-.351zm23.531-.2c.287.36-.08 2.826-1.485 4.007-.215.184-.423.088-.327-.151l.175-.439c.343-.88.802-2.198.52-2.555-.336-.43-2.22-.207-3.074-.103-.255.032-.295-.192-.063-.36 1.5-1.053 3.967-.75 4.254-.399z"})]}))});function U(e){"@babel/helpers - typeof";return U=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},U(e)}var e0=["size","style"];function Lt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Fe(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function i0(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var w1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=o0(e,e0);return c.jsxs("svg",Fe(Fe({fill:"currentColor",fillRule:"evenodd",height:r,style:Fe({flex:"none",lineHeight:1},n),viewBox:"0 0 65 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:v}),c.jsx("path",{d:"M9.409 15.585l-.375.001c-.138 0-.313.092-.356.24L7.541 19.78l-1.125-3.945c-.034-.123-.152-.249-.313-.249H5.66c-.16 0-.276.127-.308.252L4.304 19.74l-1.081-3.915c-.043-.143-.223-.24-.363-.24h-.54a.347.347 0 00-.28.127.182.182 0 00-.032.166l1.67 5.834c.038.123.145.246.303.246h.536a.323.323 0 00.309-.252l1.028-3.886 1.119 3.89c.034.12.142.248.3.248h.528c.147 0 .27-.1.307-.248l1.608-5.83a.187.187 0 00-.03-.17.343.343 0 00-.277-.126zm4.638 2.477h-2.834c.066-.785.582-1.598 1.457-1.63.931.03 1.357.825 1.377 1.63zm-1.38-2.519c-1.913 0-2.785 1.67-2.785 3.221 0 1.936 1.084 3.187 2.76 3.187 1.201 0 2.117-.599 2.512-1.644a.218.218 0 00-.019-.183.313.313 0 00-.207-.143l-.53-.1c-.144-.023-.307.06-.361.182-.258.58-.729.91-1.32.927a1.533 1.533 0 01-1.328-.848c-.194-.406-.223-.806-.226-1.214l3.847-.001c.08 0 .164-.035.223-.094a.239.239 0 00.076-.17c-.01-1.508-.708-3.12-2.641-3.12zm7.374 3.153l-.003.245c-.026.564-.204 1.978-1.346 2.019a1.437 1.437 0 01-1.108-.635c-.18-.28-.284-.665-.31-1.143v-1.049c.02-.804.594-1.686 1.414-1.72 1.217.048 1.343 1.767 1.353 2.283zm-1.147-3.207h-.102c-.636 0-1.135.26-1.519.794v-2.459c0-.138-.145-.264-.304-.264h-.554c-.144 0-.306.113-.306.264v7.677c0 .14.145.266.304.266h.163c.153 0 .262-.122.3-.236l.172-.542c.402.564 1.008.894 1.656.894h.1c1.707 0 2.47-1.638 2.47-3.261 0-.808-.201-1.58-.553-2.12-.407-.625-1.107-1.013-1.827-1.013zm8.44 3.112c-.36-.255-.793-.34-1.226-.426l-.831-.152c-.597-.097-.942-.254-.942-.773 0-.549.577-.758 1.065-.772.597.015 1.046.278 1.264.74a.323.323 0 00.286.182l.06-.006.519-.113a.322.322 0 00.206-.15.217.217 0 00.02-.182c-.316-.911-1.122-1.393-2.34-1.393-1.102.002-2.278.485-2.278 1.834 0 .922.587 1.508 1.746 1.74l.93.175c.511.097 1.033.268 1.033.81 0 .8-.944.881-1.23.887-.64-.013-1.366-.295-1.542-.892-.035-.131-.202-.224-.35-.194l-.542.11a.313.313 0 00-.2.14.232.232 0 00-.03.185c.262.925 1.124 1.507 2.33 1.588l.293.01c1.2 0 2.482-.507 2.482-1.928a1.71 1.71 0 00-.724-1.42zm5.484-.533h-2.835c.065-.786.582-1.6 1.457-1.63.93.03 1.357.825 1.378 1.63zm-1.38-2.52c-1.915 0-2.787 1.67-2.787 3.222 0 1.935 1.084 3.186 2.762 3.186 1.2 0 2.116-.599 2.511-1.644a.22.22 0 00-.018-.183.311.311 0 00-.207-.143l-.532-.1c-.125-.02-.299.043-.36.182-.258.58-.729.91-1.319.928a1.532 1.532 0 01-1.328-.848c-.195-.406-.224-.806-.227-1.215h3.847c.08 0 .164-.036.222-.094a.24.24 0 00.076-.171c-.009-1.508-.707-3.12-2.64-3.12zm6.273.072a2.01 2.01 0 00-.217-.012c-.646 0-1.17.346-1.534 1.008l.001-.58c0-.14-.142-.263-.303-.263h-.48c-.159 0-.298.123-.299.266v5.628c0 .141.139.265.297.265h.561c.146 0 .31-.113.311-.265v-2.838c0-.468.045-.82.272-1.237.323-.594.775-.886 1.381-.89a.292.292 0 00.286-.28v-.527c0-.138-.121-.259-.276-.275zm5.887-.11h-.443c-.139 0-.317.098-.36.242l-1.435 4.45-1.466-4.446c-.043-.147-.221-.246-.36-.246l-.633-.001a.36.36 0 00-.285.13.181.181 0 00-.03.168l2.005 5.87c.039.116.141.252.303.252h.765c.14 0 .255-.094.308-.252l1.946-5.868a.18.18 0 00-.03-.168.359.359 0 00-.285-.132zm1.454-2.257a.736.736 0 00-.74.732c0 .403.332.731.74.731s.74-.328.74-.731a.737.737 0 00-.74-.732zm.305 2.22h-.608c-.165 0-.315.132-.315.276l-.003 5.976a.26.26 0 00.103.198c.06.048.136.076.213.076l.612.001c.168-.001.315-.13.315-.274v-5.977c0-.147-.149-.275-.317-.275zm5.673 4.053l-.507.002a.327.327 0 00-.312.23c-.186.788-.605 1.196-1.241 1.214-1.239-.036-1.335-1.74-1.335-2.26 0-1.04.365-2.162 1.383-2.191.615.018 1.063.453 1.197 1.162a.33.33 0 00.291.273l.543.005c.162-.017.29-.138.288-.288-.192-1.281-1.091-2.109-2.294-2.109h-.088c-1.75 0-2.532 1.61-2.532 3.206 0 1.462.66 3.17 2.522 3.17h.089c1.172 0 2.057-.81 2.31-2.125a.234.234 0 00-.06-.176.36.36 0 00-.254-.113zm5.008-1.458h-2.836c.065-.786.582-1.6 1.457-1.63.931.03 1.357.825 1.379 1.63zm-1.38-2.52c-1.915 0-2.787 1.67-2.787 3.222 0 1.935 1.084 3.186 2.762 3.186 1.2 0 2.114-.598 2.51-1.643a.222.222 0 00-.019-.184.31.31 0 00-.206-.143l-.532-.1c-.125-.02-.298.043-.36.182-.258.58-.73.91-1.319.928a1.532 1.532 0 01-1.328-.848c-.195-.406-.224-.807-.227-1.215H57c.08 0 .164-.036.223-.095.05-.049.076-.11.075-.17-.009-1.508-.707-3.12-2.64-3.12zm7.46 3.053c-.36-.256-.794-.34-1.226-.426l-.831-.152c-.596-.097-.94-.254-.94-.773 0-.708.89-.767 1.063-.772.598.015 1.046.278 1.264.74a.324.324 0 00.287.182l.06-.006.519-.113a.322.322 0 00.206-.15.217.217 0 00.02-.182c-.316-.911-1.122-1.393-2.341-1.393-1.101.002-2.277.485-2.277 1.834 0 .922.587 1.508 1.746 1.74l.93.175c.511.097 1.033.268 1.033.81 0 .8-.944.881-1.23.887-.594-.012-1.354-.254-1.542-.891-.034-.132-.201-.225-.35-.195l-.542.11a.315.315 0 00-.2.141.23.23 0 00-.03.184c.26.925 1.122 1.507 2.328 1.588l.294.01c1.2 0 2.482-.507 2.482-1.928 0-.58-.264-1.097-.723-1.42zM37.436 3.968V2.61c.001-.206.16-.344.35-.344h6.163c.196 0 .355.141.355.342v1.164c-.001.14-.087.309-.243.542l-3.413 4.808c1.184-.028 2.438.147 3.514.744.244.135.308.335.328.53v1.448c0 .2-.221.43-.454.31-1.897-.98-4.414-1.088-6.512.011-.215.113-.439-.114-.439-.314v-1.376c0-.22.005-.597.23-.932l3.698-5.234-3.22-.001c-.197 0-.355-.139-.357-.341zM31.506 2c.912 0 2.106.24 2.825.92.716.662.815 1.495.825 2.415l-.001 3.65c0 .868.365 1.248.708 1.715.119.169.146.368-.007.492-.383.316-1.063.899-1.437 1.228a.409.409 0 01-.448.04c-.622-.511-.734-.748-1.075-1.234-1.029 1.035-1.758 1.345-3.09 1.345-1.58 0-2.807-.961-2.807-2.883 0-1.501.824-2.522 2-3.023 1.017-.44 2.438-.521 3.525-.641v-.632c-.005-.335-.04-.678-.229-.95-.227-.34-.665-.48-1.052-.48-.656 0-1.244.304-1.458.932l-.05.18c-.03.166-.155.33-.325.339l-1.816-.194c-.154-.034-.325-.155-.28-.386C27.73 2.657 29.722 2 31.507 2zM6.927 2c.913 0 2.106.24 2.825.92.717.662.816 1.495.826 2.415l-.002 3.65c0 .868.366 1.248.708 1.715.12.169.146.368-.006.492A75.1 75.1 0 009.84 12.42a.41.41 0 01-.447.04c-.623-.511-.735-.748-1.075-1.234-1.029 1.035-1.758 1.345-3.092 1.345-1.578 0-2.806-.961-2.806-2.883 0-1.501.825-2.522 2-3.023 1.017-.44 2.438-.521 3.525-.641l.001-.632c-.005-.335-.04-.678-.229-.95-.228-.34-.666-.48-1.052-.48-.655 0-1.245.304-1.458.932l-.05.18c-.032.166-.155.33-.325.339l-1.817-.194c-.154-.034-.324-.155-.28-.386C3.15 2.657 5.143 2 6.927 2zm15.796.093c.788 0 1.644.319 2.17 1.038.595.8.472 1.957.472 2.976l-.001 5.991c0 .19-.162.342-.361.342h-1.873a.35.35 0 01-.337-.34V7.065c0-.4.035-1.399-.053-1.778-.14-.64-.56-.818-1.102-.818-.456 0-.928.3-1.121.778-.137.343-.168.848-.174 1.306v5.544c0 .19-.163.342-.362.342h-1.873a.35.35 0 01-.337-.34l.002-5.365c.016-1.024.038-2.285-1.158-2.285-1.213 0-1.292 1.229-1.296 2.276v5.372c0 .19-.162.342-.362.342H13.08a.351.351 0 01-.335-.313l.002-9.493c0-.19.162-.342.361-.342h1.747c.182.01.329.145.341.318v1.24h.035c.455-1.199 1.312-1.757 2.467-1.757 1.173 0 1.908.558 2.433 1.757.455-1.199 1.488-1.757 2.591-1.757zm9.802 6.078v-.665l-.388.008c-1.228.058-2.4.429-2.4 1.854 0 .8.42 1.341 1.138 1.341.527 0 1-.32 1.299-.84.322-.561.35-1.091.35-1.698zM7.94 8.427l.003-.921-.388.008c-1.228.058-2.4.429-2.4 1.854 0 .8.42 1.341 1.14 1.341.526 0 1-.32 1.298-.84.276-.481.335-.94.347-1.442zM49.627 4.03c-1.252 0-1.442 1.52-1.467 2.668l-.003.663c.007 1.24.105 3.32 1.453 3.32 1.453 0 1.523-1.997 1.523-3.215 0-.8-.035-1.758-.28-2.517-.19-.594-.548-.863-1.053-.911l-.173-.008zm-.017-1.937c2.783 0 4.288 2.357 4.288 5.352 0 2.897-1.663 5.195-4.288 5.195-2.73 0-4.219-2.358-4.219-5.294 0-2.957 1.505-5.253 4.22-5.253zm7.897 10.347H55.64a.35.35 0 01-.336-.34L55.3 2.601a.353.353 0 01.36-.31h1.739a.356.356 0 01.333.265V4.01h.035c.525-1.299 1.26-1.917 2.555-1.917.84 0 1.663.298 2.188 1.118.49.759.49 2.037.49 2.956v5.974a.354.354 0 01-.358.3h-1.88a.353.353 0 01-.335-.3l.003-5.82c-.01-.92-.139-1.892-1.176-1.892-.454 0-.874.3-1.084.76-.263.578-.298 1.157-.298 1.797v5.112a.357.357 0 01-.365.342z"})]}))});function G(e){"@babel/helpers - typeof";return G=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},G(e)}var c0=["type"];function It(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function l0(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function s0(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var y0=l.memo(function(e){var t=e.type,r=t===void 0?"mono":t,n=p0(e,c0),o=r==="color"?yt:P1;return c.jsx(m,l0({Icon:o,Text:w1,"aria-label":v,spaceMultiple:gr,textMultiple:Or},n))}),O=P1;O.Color=yt;O.Text=w1;O.Combine=y0;O.Avatar=Cr;O.Brand=qr;O.BrandColor=Nr;O.colorPrimary=j1;O.title=v;var E="Claude",b0=.8,m0=.1,d1="#D97757",v0=d1,O0="#fff",g0=.75;function q(e){"@babel/helpers - typeof";return q=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},q(e)}var h0=["size","style"];function Ct(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Ue(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function S0(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var bt=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=d0(e,h0);return c.jsxs("svg",Ue(Ue({fill:"currentColor",fillRule:"evenodd",height:r,style:Ue({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:E}),c.jsx("path",{d:"M4.709 15.955l4.72-2.647.08-.23-.08-.128H9.2l-.79-.048-2.698-.073-2.339-.097-2.266-.122-.571-.121L0 11.784l.055-.352.48-.321.686.06 1.52.103 2.278.158 1.652.097 2.449.255h.389l.055-.157-.134-.098-.103-.097-2.358-1.596-2.552-1.688-1.336-.972-.724-.491-.364-.462-.158-1.008.656-.722.881.06.225.061.893.686 1.908 1.476 2.491 1.833.365.304.145-.103.019-.073-.164-.274-1.355-2.446-1.446-2.49-.644-1.032-.17-.619a2.97 2.97 0 01-.104-.729L6.283.134 6.696 0l.996.134.42.364.62 1.414 1.002 2.229 1.555 3.03.456.898.243.832.091.255h.158V9.01l.128-1.706.237-2.095.23-2.695.08-.76.376-.91.747-.492.584.28.48.685-.067.444-.286 1.851-.559 2.903-.364 1.942h.212l.243-.242.985-1.306 1.652-2.064.73-.82.85-.904.547-.431h1.033l.76 1.129-.34 1.166-1.064 1.347-.881 1.142-1.264 1.7-.79 1.36.073.11.188-.02 2.856-.606 1.543-.28 1.841-.315.833.388.091.395-.328.807-1.969.486-2.309.462-3.439.813-.042.03.049.061 1.549.146.662.036h1.622l3.02.225.79.522.474.638-.079.485-1.215.62-1.64-.389-3.829-.91-1.312-.329h-.182v.11l1.093 1.068 2.006 1.81 2.509 2.33.127.578-.322.455-.34-.049-2.205-1.657-.851-.747-1.926-1.62h-.128v.17l.444.649 2.345 3.521.122 1.08-.17.353-.608.213-.668-.122-1.374-1.925-1.415-2.167-1.143-1.943-.14.08-.674 7.254-.316.37-.729.28-.607-.461-.322-.747.322-1.476.389-1.924.315-1.53.286-1.9.17-.632-.012-.042-.14.018-1.434 1.967-2.18 2.945-1.726 1.845-.414.164-.717-.37.067-.662.401-.589 2.388-3.036 1.44-1.882.93-1.086-.006-.158h-.055L4.132 18.56l-1.13.146-.487-.456.061-.746.231-.243 1.908-1.312-.006.006z"})]}))});function Y(e){"@babel/helpers - typeof";return Y=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Y(e)}function Mt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function $0(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function A0(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var S1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=T0(e,L0);return c.jsxs("svg",Ge(Ge({height:r,style:Ge({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:E}),c.jsx("path",{d:"M4.709 15.955l4.72-2.647.08-.23-.08-.128H9.2l-.79-.048-2.698-.073-2.339-.097-2.266-.122-.571-.121L0 11.784l.055-.352.48-.321.686.06 1.52.103 2.278.158 1.652.097 2.449.255h.389l.055-.157-.134-.098-.103-.097-2.358-1.596-2.552-1.688-1.336-.972-.724-.491-.364-.462-.158-1.008.656-.722.881.06.225.061.893.686 1.908 1.476 2.491 1.833.365.304.145-.103.019-.073-.164-.274-1.355-2.446-1.446-2.49-.644-1.032-.17-.619a2.97 2.97 0 01-.104-.729L6.283.134 6.696 0l.996.134.42.364.62 1.414 1.002 2.229 1.555 3.03.456.898.243.832.091.255h.158V9.01l.128-1.706.237-2.095.23-2.695.08-.76.376-.91.747-.492.584.28.48.685-.067.444-.286 1.851-.559 2.903-.364 1.942h.212l.243-.242.985-1.306 1.652-2.064.73-.82.85-.904.547-.431h1.033l.76 1.129-.34 1.166-1.064 1.347-.881 1.142-1.264 1.7-.79 1.36.073.11.188-.02 2.856-.606 1.543-.28 1.841-.315.833.388.091.395-.328.807-1.969.486-2.309.462-3.439.813-.042.03.049.061 1.549.146.662.036h1.622l3.02.225.79.522.474.638-.079.485-1.215.62-1.64-.389-3.829-.91-1.312-.329h-.182v.11l1.093 1.068 2.006 1.81 2.509 2.33.127.578-.322.455-.34-.049-2.205-1.657-.851-.747-1.926-1.62h-.128v.17l.444.649 2.345 3.521.122 1.08-.17.353-.608.213-.668-.122-1.374-1.925-1.415-2.167-1.143-1.943-.14.08-.674 7.254-.316.37-.729.28-.607-.461-.322-.747.322-1.476.389-1.924.315-1.53.286-1.9.17-.632-.012-.042-.14.018-1.434 1.967-2.18 2.945-1.726 1.845-.414.164-.717-.37.067-.662.401-.589 2.388-3.036 1.44-1.882.93-1.086-.006-.158h-.055L4.132 18.56l-1.13.146-.487-.456.061-.746.231-.243 1.908-1.312-.006.006z",fill:"#D97757",fillRule:"nonzero"})]}))});function J(e){"@babel/helpers - typeof";return J=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},J(e)}var R0=["size","style"];function At(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function qe(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function W0(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var $1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=H0(e,R0);return c.jsxs("svg",qe(qe({fill:"currentColor",fillRule:"nonzero",height:r,style:qe({flex:"none",lineHeight:1},n),viewBox:"0 0 97 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:E}),c.jsx("path",{d:"M13.623 20.222c-3.417 0-5.753-1.901-6.855-4.827a12.992 12.992 0 01-.838-4.772c0-4.907 2.206-8.315 7.08-8.315 3.275 0 5.297 1.425 6.448 4.826h1.402l-.19-4.69C18.709 1.18 16.258.543 13.276.543c-4.2 0-7.775 1.874-9.763 5.254a11.357 11.357 0 00-1.511 5.872c0 3.753 1.777 7.08 5.113 8.926a11.95 11.95 0 005.943 1.398c3.254 0 5.835-.617 8.122-1.697l.593-5.172h-1.43c-.858 2.362-1.88 3.78-3.574 4.534-.831.373-1.88.564-3.146.564zm14.74-17.914L28.499 0h-.967L23.23 1.29v.699l1.907.882v16.142c0 1.1-.565 1.344-2.043 1.528v1.18h7.319v-1.18c-1.484-.184-2.042-.428-2.042-1.528V2.315l-.007-.007zm29.104 19.685h.565l4.95-.937v-1.208l-.695-.054c-1.157-.109-1.457-.346-1.457-1.29V9.897l.137-2.763h-.783l-4.678.672v1.181l.457.082c1.266.183 1.64.536 1.64 1.419v7.67c-1.212.937-2.369 1.527-3.744 1.527-1.525 0-2.471-.774-2.471-2.58V9.905l.136-2.763h-.804l-4.684.672v1.181l.484.082c1.266.183 1.64.536 1.64 1.418v7.08c0 3 1.703 4.426 4.412 4.426 2.07 0 3.765-1.1 5.038-2.627L57.474 22l-.007-.007zm-13.602-9.55c0-3.836-2.043-5.309-5.733-5.309-3.254 0-5.616 1.344-5.616 3.57 0 .666.238 1.175.721 1.528l2.478-.326c-.109-.746-.163-1.201-.163-1.391 0-1.263.674-1.901 2.042-1.901 2.022 0 3.044 1.419 3.044 3.7v.746l-5.106 1.527c-1.702.462-2.67.863-3.316 1.8a3.386 3.386 0 00-.476 1.9c0 2.172 1.497 3.706 4.057 3.706 1.852 0 3.493-.835 4.922-2.416.51 1.581 1.294 2.416 2.69 2.416 1.13 0 2.15-.455 3.063-1.344l-.272-.937a4.363 4.363 0 01-1.178.163c-.783 0-1.157-.617-1.157-1.826v-5.607zm-6.536 7.378c-1.396 0-2.26-.808-2.26-2.226 0-.964.456-1.528 1.43-1.854l4.139-1.31v3.965c-1.321.997-2.097 1.425-3.31 1.425zm43.095 1.235v-1.208l-.701-.054c-1.158-.109-1.45-.346-1.45-1.29V2.308L78.409 0h-.974l-4.302 1.29v.699l1.906.882V8.18a6.024 6.024 0 00-3.656-1.046c-4.276 0-7.612 3.245-7.612 8.098 0 3.998 2.397 6.761 6.346 6.761 2.042 0 3.819-.99 4.922-2.525l-.136 2.525h.571l4.95-.937zm-8.96-12.313c2.043 0 3.575 1.181 3.575 3.353v6.11a4.91 4.91 0 01-3.547 1.425c-2.928 0-4.412-2.308-4.412-5.39 0-3.462 1.695-5.498 4.385-5.498zm19.424 3.055c-.381-1.792-1.484-2.81-3.016-2.81-2.288 0-3.874 1.717-3.874 4.18 0 3.646 1.934 6.008 5.059 6.008a5.858 5.858 0 005.03-2.953l.913.245c-.408 3.163-3.281 5.525-6.808 5.525-4.14 0-6.992-3.054-6.992-7.399 0-4.378 3.098-7.46 7.237-7.46 3.09 0 5.27 1.853 5.97 5.07l-10.783 3.3V14.05l7.264-2.247v-.006z"})]}))});function Q(e){"@babel/helpers - typeof";return Q=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Q(e)}var B0=["type"];function Rt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function F0(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function X0(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var J0=l.memo(function(e){var t=e.type,r=t===void 0?"mono":t,n=Y0(e,B0),o=r==="color"?S1:bt;return c.jsx(m,F0({Icon:o,Text:$1,"aria-label":E,spaceMultiple:m0,textMultiple:b0},n))}),D=bt;D.Color=S1;D.Text=$1;D.Combine=J0;D.Avatar=D0;D.colorPrimary=d1;D.title=E;var De="OpenAI",Q0=.75,Z0=.1,_1="#000",x1="#19C37D",z1="#AB68FF",E1="#F86AA4",mt="#F9C322",D1="#0099FF",L1="#0000FE",k0=_1,e2="#fff",t2=.75;function Z(e){"@babel/helpers - typeof";return Z=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Z(e)}var r2=["size","style"];function Vt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Ye(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function l2(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var vt=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=c2(e,r2);return c.jsxs("svg",Ye(Ye({fill:"currentColor",fillRule:"evenodd",height:r,style:Ye({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:De}),c.jsx("path",{d:"M9.205 8.658v-2.26c0-.19.072-.333.238-.428l4.543-2.616c.619-.357 1.356-.523 2.117-.523 2.854 0 4.662 2.212 4.662 4.566 0 .167 0 .357-.024.547l-4.71-2.759a.797.797 0 00-.856 0l-5.97 3.473zm10.609 8.8V12.06c0-.333-.143-.57-.429-.737l-5.97-3.473 1.95-1.118a.433.433 0 01.476 0l4.543 2.617c1.309.76 2.189 2.378 2.189 3.948 0 1.808-1.07 3.473-2.76 4.163zM7.802 12.703l-1.95-1.142c-.167-.095-.239-.238-.239-.428V5.899c0-2.545 1.95-4.472 4.591-4.472 1 0 1.927.333 2.712.928L8.23 5.067c-.285.166-.428.404-.428.737v6.898zM12 15.128l-2.795-1.57v-3.33L12 8.658l2.795 1.57v3.33L12 15.128zm1.796 7.23c-1 0-1.927-.332-2.712-.927l4.686-2.712c.285-.166.428-.404.428-.737v-6.898l1.974 1.142c.167.095.238.238.238.428v5.233c0 2.545-1.974 4.472-4.614 4.472zm-5.637-5.303l-4.544-2.617c-1.308-.761-2.188-2.378-2.188-3.948A4.482 4.482 0 014.21 6.327v5.423c0 .333.143.571.428.738l5.947 3.449-1.95 1.118a.432.432 0 01-.476 0zm-.262 3.9c-2.688 0-4.662-2.021-4.662-4.519 0-.19.024-.38.047-.57l4.686 2.71c.286.167.571.167.856 0l5.97-3.448v2.26c0 .19-.07.333-.237.428l-4.543 2.616c-.619.357-1.356.523-2.117.523zm5.899 2.83a5.947 5.947 0 005.827-4.756C22.287 18.339 24 15.84 24 13.296c0-1.665-.713-3.282-1.998-4.448.119-.5.19-.999.19-1.498 0-3.401-2.759-5.947-5.946-5.947-.642 0-1.26.095-1.88.31A5.962 5.962 0 0010.205 0a5.947 5.947 0 00-5.827 4.757C1.713 5.447 0 7.945 0 10.49c0 1.666.713 3.283 1.998 4.448-.119.5-.19 1-.19 1.499 0 3.401 2.759 5.946 5.946 5.946.642 0 1.26-.095 1.88-.309a5.96 5.96 0 004.162 1.713z"})]}))}),L="Google",I1="#fff",u2=I1,a2="#fff",f2=.75;function k(e){"@babel/helpers - typeof";return k=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},k(e)}var p2=["size","style"];function Kt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Xe(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function v2(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var C1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=m2(e,p2);return c.jsxs("svg",Xe(Xe({height:r,style:Xe({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:L}),c.jsx("path",{d:"M23 12.245c0-.905-.075-1.565-.236-2.25h-10.54v4.083h6.186c-.124 1.014-.797 2.542-2.294 3.569l-.021.136 3.332 2.53.23.022C21.779 18.417 23 15.593 23 12.245z",fill:"#4285F4"}),c.jsx("path",{d:"M12.225 23c3.03 0 5.574-.978 7.433-2.665l-3.542-2.688c-.948.648-2.22 1.1-3.891 1.1a6.745 6.745 0 01-6.386-4.572l-.132.011-3.465 2.628-.045.124C4.043 20.531 7.835 23 12.225 23z",fill:"#34A853"}),c.jsx("path",{d:"M5.84 14.175A6.65 6.65 0 015.463 12c0-.758.138-1.491.361-2.175l-.006-.147-3.508-2.67-.115.054A10.831 10.831 0 001 12c0 1.772.436 3.447 1.197 4.938l3.642-2.763z",fill:"#FBBC05"}),c.jsx("path",{d:"M12.225 5.253c2.108 0 3.529.892 4.34 1.638l3.167-3.031C17.787 2.088 15.255 1 12.225 1 7.834 1 4.043 3.469 2.197 7.062l3.63 2.763a6.77 6.77 0 016.398-4.572z",fill:"#EB4335"})]}))});function ee(e){"@babel/helpers - typeof";return ee=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ee(e)}function Nt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function O2(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function z2(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var E2=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=x2(e,d2);return c.jsxs("svg",Je(Je({"aria-label":"Google",height:r,style:Je({flex:"none",lineHeight:1},n),viewBox:"0 0 77 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:L}),c.jsx("path",{d:"M19.947 8.482H11.43v2.536h6.041c-.298 3.557-3.247 5.074-6.03 5.074-3.562 0-6.67-2.812-6.67-6.753 0-3.839 2.963-6.795 6.677-6.795 2.866 0 4.555 1.833 4.555 1.833l1.77-1.84S15.5 0 11.357 0C6.081 0 2 4.468 2 9.294c0 4.729 3.84 9.34 9.491 9.34 4.972 0 8.61-3.417 8.61-8.47 0-1.067-.154-1.683-.154-1.683",fill:"#4285F4"}),c.jsx("path",{d:"M26.96 8.997c1.719 0 3.347 1.395 3.347 3.642 0 2.199-1.621 3.633-3.355 3.633-1.905 0-3.408-1.53-3.408-3.65 0-2.075 1.485-3.625 3.416-3.625zm-.035-2.352c-3.495 0-6 2.742-6 5.94 0 3.245 2.43 6.038 6.041 6.038 3.27 0 5.948-2.508 5.948-5.968 0-3.967-3.116-6.01-5.989-6.01z",fill:"#EB4335"}),c.jsx("path",{d:"M40.01 8.997c1.718 0 3.347 1.395 3.347 3.642 0 2.199-1.622 3.633-3.356 3.633-1.904 0-3.407-1.53-3.407-3.65 0-2.075 1.484-3.625 3.415-3.625zm-.035-2.352c-3.496 0-6 2.742-6 5.94 0 3.245 2.43 6.038 6.04 6.038 3.27 0 5.949-2.508 5.949-5.968 0-3.967-3.116-6.01-5.99-6.01z",fill:"#FBBC05"}),c.jsx("path",{d:"M53.006 9c1.573 0 3.188 1.347 3.188 3.648 0 2.34-1.611 3.629-3.222 3.629-1.71 0-3.302-1.394-3.302-3.607 0-2.299 1.652-3.67 3.336-3.67zm-.232-2.349c-3.208 0-5.73 2.82-5.73 5.984 0 3.605 2.924 5.996 5.675 5.996 1.7 0 2.605-.678 3.273-1.455v1.18c0 2.067-1.25 3.304-3.137 3.304-1.824 0-2.738-1.36-3.056-2.132l-2.293.962c.813 1.726 2.451 3.527 5.368 3.527 3.19 0 5.62-2.016 5.62-6.244V7.012h-2.502v1.014c-.77-.832-1.821-1.375-3.218-1.375z",fill:"#4285F4"}),c.jsx("path",{d:"M69.725 8.94c1.09 0 1.875.582 2.209 1.28l-5.345 2.241c-.23-1.735 1.408-3.52 3.136-3.52zm-.104-2.303c-3.026 0-5.567 2.416-5.567 5.981 0 3.772 2.832 6.01 5.858 6.01 2.525 0 4.075-1.387 5-2.629l-2.063-1.377c-.536.833-1.43 1.648-2.925 1.648-1.678 0-2.45-.922-2.927-1.815L75 11.123l-.415-.976c-.774-1.913-2.577-3.51-4.964-3.51z",fill:"#EB4335"}),c.jsx("path",{d:"M60.239 18.272h2.628V.62H60.24z",fill:"#34A853"})]}))});function re(e){"@babel/helpers - typeof";return re=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},re(e)}var D2=["size","style"];function Wt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Qe(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function T2(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var A2=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=M2(e,D2);return c.jsxs("svg",Qe(Qe({fill:"currentColor",fillRule:"evenodd",height:r,style:Qe({flex:"none",lineHeight:1},n),viewBox:"0 0 77 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:L}),c.jsx("path",{d:"M19.947 8.482H11.43v2.536h6.041c-.298 3.557-3.247 5.074-6.03 5.074-3.562 0-6.67-2.812-6.67-6.753 0-3.839 2.963-6.795 6.677-6.795 2.866 0 4.555 1.833 4.555 1.833l1.77-1.84-.124-.126C17.123 1.898 14.94 0 11.357 0 6.081 0 2 4.468 2 9.294c0 4.729 3.84 9.34 9.491 9.34 4.972 0 8.61-3.417 8.61-8.47a8.69 8.69 0 00-.118-1.507l-.036-.175zm7.013.515c1.719 0 3.347 1.395 3.347 3.642 0 2.199-1.621 3.633-3.355 3.633-1.905 0-3.408-1.53-3.408-3.65 0-2.075 1.485-3.625 3.416-3.625zm-.035-2.352c-3.495 0-6 2.742-6 5.94 0 3.245 2.43 6.038 6.041 6.038 3.27 0 5.948-2.508 5.948-5.968 0-3.877-2.976-5.916-5.793-6.007l-.196-.003zM40.01 8.997c1.72 0 3.348 1.395 3.348 3.642 0 2.199-1.622 3.633-3.356 3.633-1.904 0-3.407-1.53-3.407-3.65 0-2.075 1.484-3.625 3.415-3.625zm-.034-2.352c-3.496 0-6 2.742-6 5.94 0 3.245 2.43 6.038 6.04 6.038 3.27 0 5.949-2.508 5.949-5.968 0-3.877-2.976-5.916-5.793-6.007l-.196-.003zM53.006 9c1.573 0 3.188 1.348 3.188 3.65 0 2.338-1.611 3.628-3.222 3.628-1.71 0-3.302-1.394-3.302-3.607 0-2.299 1.652-3.67 3.336-3.67zm-.232-2.348c-3.208 0-5.73 2.82-5.73 5.984 0 3.605 2.924 5.996 5.675 5.996 1.7 0 2.605-.678 3.273-1.455v1.18c0 2.067-1.25 3.304-3.137 3.304-1.824 0-2.738-1.36-3.056-2.132l-2.293.962c.813 1.726 2.451 3.527 5.368 3.527 3.19 0 5.62-2.016 5.62-6.244V7.012h-2.502v1.014c-.721-.78-1.691-1.306-2.96-1.368l-.258-.007zm16.951 2.29c1.09 0 1.875.581 2.209 1.279l-5.345 2.241c-.23-1.735 1.408-3.52 3.136-3.52zm-.104-2.304c-3.026 0-5.567 2.416-5.567 5.981 0 3.772 2.832 6.01 5.858 6.01 2.525 0 4.075-1.387 5-2.629l-2.063-1.377c-.536.833-1.43 1.648-2.925 1.648-1.678 0-2.45-.922-2.927-1.815L75 11.123l-.415-.976c-.747-1.847-2.454-3.399-4.719-3.504l-.245-.006zM60.24 18.272h2.628V.62H60.24v17.652z"})]}))});function ne(e){"@babel/helpers - typeof";return ne=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ne(e)}var R2=["size","style"];function Bt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Ze(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function W2(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var B2=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=H2(e,R2);return c.jsxs("svg",Ze(Ze({fill:"currentColor",fillRule:"evenodd",height:r,style:Ze({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:L}),c.jsx("path",{d:"M23 12.245c0-.905-.075-1.565-.236-2.25h-10.54v4.083h6.186c-.124 1.014-.797 2.542-2.294 3.569l-.021.136 3.332 2.53.23.022C21.779 18.417 23 15.593 23 12.245z"}),c.jsx("path",{d:"M12.225 23c3.03 0 5.574-.978 7.433-2.665l-3.542-2.688c-.948.648-2.22 1.1-3.891 1.1a6.745 6.745 0 01-6.386-4.572l-.132.011-3.465 2.628-.045.124C4.043 20.531 7.835 23 12.225 23z"}),c.jsx("path",{d:"M5.84 14.175A6.65 6.65 0 015.463 12c0-.758.138-1.491.361-2.175l-.006-.147-3.508-2.67-.115.054A10.831 10.831 0 001 12c0 1.772.436 3.447 1.197 4.938l3.642-2.763z"}),c.jsx("path",{d:"M12.225 5.253c2.108 0 3.529.892 4.34 1.638l3.167-3.031C17.787 2.088 15.255 1 12.225 1 7.834 1 4.043 3.469 2.197 7.062l3.63 2.763a6.77 6.77 0 016.398-4.572z"})]}))}),I=B2;I.Color=C1;I.Brand=A2;I.BrandColor=E2;I.Avatar=w2;I.colorPrimary=I1;I.title=L;var C="Azure",F2=.75,U2=.25,M1="#00A4EF",G2=M1,q2="#fff",Y2=.6;function oe(e){"@babel/helpers - typeof";return oe=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},oe(e)}var X2=["size","style"];function Ft(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function ke(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function en(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var Ot=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=k2(e,X2);return c.jsxs("svg",ke(ke({fill:"currentColor",fillRule:"evenodd",height:r,style:ke({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:C}),c.jsx("path",{d:"M11.49 2H2v9.492h9.492V2h-.002z"}),c.jsx("path",{d:"M22 2h-9.492v9.492H22V2z"}),c.jsx("path",{d:"M11.49 12.508H2V22h9.492v-9.492h-.002z"}),c.jsx("path",{d:"M22 12.508h-9.492V22H22v-9.492z"})]}))});function ie(e){"@babel/helpers - typeof";return ie=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ie(e)}function Ut(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function tn(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function yn(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var T1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=sn(e,un);return c.jsxs("svg",et(et({height:r,style:et({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:C}),c.jsx("path",{d:"M11.49 2H2v9.492h9.492V2h-.002z",fill:"#F25022"}),c.jsx("path",{d:"M22 2h-9.492v9.492H22V2z",fill:"#7FBA00"}),c.jsx("path",{d:"M11.49 12.508H2V22h9.492v-9.492h-.002z",fill:"#00A4EF"}),c.jsx("path",{d:"M22 12.508h-9.492V22H22v-9.492z",fill:"#FFB900"})]}))});function le(e){"@babel/helpers - typeof";return le=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},le(e)}var bn=["size","style"];function qt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function tt(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function hn(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var A1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=gn(e,bn);return c.jsxs("svg",tt(tt({fill:"currentColor",fillRule:"evenodd",height:r,style:tt({flex:"none",lineHeight:1},n),viewBox:"0 0 108 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:C}),c.jsx("path",{clipRule:"evenodd",d:"M21.881 3.355V21.68h-3.19V7.316h-.051l-5.7 14.364h-2.114L4.984 7.316h-.038V21.68H2V3.355h4.573L11.85 16.94h.076L17.5 3.355h4.381zm2.667 1.393c0-.511.186-.939.558-1.284.356-.34.832-.526 1.325-.518.546 0 1 .177 1.358.53.359.354.538.778.538 1.272 0 .502-.184.925-.55 1.264-.368.342-.816.512-1.346.512-.529 0-.976-.172-1.338-.517a1.667 1.667 0 01-.545-1.259zm.32 16.932h3.1V8.543h-3.1V21.68zm12.503-2.25c.461 0 .97-.104 1.524-.318a6.417 6.417 0 001.538-.844v2.876a6.289 6.289 0 01-1.685.639A9.217 9.217 0 0136.68 22c-1.94 0-3.515-.611-4.728-1.834-1.212-1.221-1.819-2.783-1.819-4.683 0-2.113.62-3.853 1.858-5.22 1.238-1.368 2.993-2.051 5.265-2.051.58 0 1.168.074 1.761.223.594.148 1.065.32 1.416.518v2.964a6.39 6.39 0 00-1.468-.812 4.234 4.234 0 00-1.53-.287c-1.22 0-2.207.396-2.96 1.189-.75.792-1.126 1.862-1.126 3.207 0 1.329.36 2.365 1.082 3.105.722.742 1.701 1.111 2.94 1.111zM49.258 8.327c.248 0 .471.017.667.051.195.034.363.076.5.128v3.131c-.163-.12-.4-.232-.711-.338-.313-.108-.69-.16-1.134-.16-.76 0-1.403.32-1.928.958-.525.64-.787 1.624-.787 2.952v6.632h-3.1V8.544h3.1v2.07h.05c.282-.716.709-1.276 1.281-1.681.572-.404 1.26-.606 2.062-.606zm1.335 6.977c0-2.172.614-3.893 1.843-5.162 1.231-1.27 2.939-1.904 5.124-1.904 2.06 0 3.666.611 4.824 1.834 1.157 1.223 1.735 2.873 1.735 4.952 0 2.13-.614 3.825-1.844 5.085C61.045 21.371 59.371 22 57.253 22c-2.041 0-3.661-.598-4.86-1.795-1.201-1.197-1.8-2.829-1.8-4.901zm3.228-.101c0 1.37.31 2.42.935 3.143.622.724 1.515 1.086 2.677 1.086 1.128 0 1.985-.362 2.574-1.086.59-.723.884-1.797.884-3.22 0-1.415-.305-2.482-.915-3.2-.611-.721-1.468-1.082-2.568-1.082-1.137 0-2.019.377-2.646 1.132-.628.754-.941 1.829-.941 3.227zm14.91-3.208c0 .443.141.79.422 1.042.283.25.905.568 1.871.951 1.238.495 2.108 1.051 2.607 1.67.5.615.749 1.364.749 2.24 0 1.237-.476 2.23-1.428 2.979-.951.75-2.24 1.124-3.862 1.124a9.277 9.277 0 01-1.813-.198c-.662-.132-1.223-.3-1.685-.506v-3.04c.564.391 1.17.703 1.82.933.649.23 1.238.344 1.768.344.699 0 1.216-.097 1.55-.294.331-.195.499-.523.499-.982 0-.427-.172-.787-.519-1.081-.346-.294-1-.633-1.966-1.016-1.144-.477-1.956-1.014-2.434-1.61-.477-.596-.718-1.354-.718-2.275 0-1.185.473-2.158 1.416-2.92.944-.763 2.167-1.143 3.67-1.143.46 0 .978.05 1.55.152.573.103 1.051.235 1.435.396v2.94a6.63 6.63 0 00-1.435-.703 4.797 4.797 0 00-1.626-.294c-.59 0-1.049.115-1.378.345-.328.23-.493.546-.493.946zm6.982 3.31c0-2.173.614-3.894 1.844-5.163 1.23-1.27 2.937-1.904 5.124-1.904 2.059 0 3.666.611 4.824 1.834 1.157 1.223 1.735 2.873 1.735 4.952 0 2.13-.616 3.825-1.844 5.085C86.166 21.371 84.491 22 82.373 22c-2.04 0-3.66-.598-4.861-1.795-1.2-1.197-1.799-2.83-1.799-4.902v.002zm3.227-.102c0 1.37.313 2.42.935 3.143.625.724 1.517 1.086 2.677 1.086 1.128 0 1.987-.362 2.576-1.086.588-.723.883-1.797.883-3.22 0-1.415-.304-2.482-.916-3.2-.609-.721-1.467-1.082-2.567-1.082-1.136 0-2.018.377-2.646 1.132-.628.754-.942 1.829-.942 3.227zm20.584-4.128h-4.618V21.68H91.77V11.074h-2.203v-2.53h2.203V6.716c0-1.38.45-2.511 1.352-3.393C94.021 2.44 95.177 2 96.586 2c.376 0 .708.02.998.058.292.038.548.095.77.172v2.672a3.233 3.233 0 00-.54-.218 2.792 2.792 0 00-.883-.128c-.648 0-1.148.202-1.498.607-.35.405-.527 1.004-.527 1.795v1.586h4.618V5.592l3.113-.946v3.898h3.138v2.53h-3.138v6.146c0 .81.147 1.38.442 1.712.294.334.758.499 1.391.499.178 0 .394-.042.647-.128.25-.085.47-.186.658-.306v2.556c-.196.112-.523.213-.98.307-.457.093-.906.14-1.35.14-1.308 0-2.287-.347-2.942-1.043-.653-.692-.98-1.739-.98-3.136v-6.747l.001.001z"})]}))});function ue(e){"@babel/helpers - typeof";return ue=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ue(e)}var jn=["type"];function Yt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Pn(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function _n(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var xn=l.memo(function(e){var t=e.type,r=t===void 0?"mono":t,n=$n(e,jn),o=r==="color"?T1:Ot;return c.jsx(m,Pn({Icon:o,Text:A1,"aria-label":C,spaceMultiple:U2,textMultiple:F2},n))}),M=Ot;M.Color=T1;M.Text=A1;M.Combine=xn;M.Avatar=ln;M.colorPrimary=M1;M.title=C;function ae(e){"@babel/helpers - typeof";return ae=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ae(e)}var zn=["type"];function Xt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function En(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function Mn(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var Tn=l.memo(function(e){var t=e.type,r=t===void 0?"normal":t,n=Cn(e,zn),o=l.useMemo(function(){switch(r){case"gpt3":return x1;case"gpt4":return z1;case"gpt5":return E1;case"o3":case"o1":return mt;case"oss":return D1;case"platform":return L1;default:return k0}},[r]);return c.jsx(p,En({Icon:vt,"aria-label":De,background:o,color:e2,iconMultiple:t2},n))});function fe(e){"@babel/helpers - typeof";return fe=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},fe(e)}var An=["size","style"];function Jt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function rt(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function Hn(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var R1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=Nn(e,An);return c.jsxs("svg",rt(rt({fill:"currentColor",fillRule:"evenodd",height:r,style:rt({flex:"none",lineHeight:1},n),viewBox:"0 0 86 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:De}),c.jsx("path",{d:"M10.703 2C5.916 2 2 5.916 2 10.703c0 4.787 3.916 8.704 8.703 8.704 4.787 0 8.704-3.893 8.704-8.704A8.698 8.698 0 0010.703 2zm0 14.288c-2.973 0-5.367-2.442-5.367-5.585S7.73 5.12 10.703 5.12c2.974 0 5.367 2.441 5.367 5.584s-2.393 5.585-5.367 5.585zM28.206 6.835c-1.57 0-3.094.629-3.892 1.693v-1.45h-3.143V24h3.143v-6.116c.798.99 2.273 1.523 3.892 1.523 3.385 0 6.045-2.66 6.045-6.286 0-3.626-2.66-6.286-6.044-6.286zm-.531 9.84c-1.79 0-3.385-1.402-3.385-3.554s1.596-3.554 3.385-3.554c1.789 0 3.384 1.402 3.384 3.554s-1.595 3.554-3.384 3.554zM41.649 6.835c-3.433 0-6.141 2.684-6.141 6.286 0 3.602 2.37 6.286 6.237 6.286 3.167 0 5.198-1.91 5.827-4.062h-3.07c-.388.895-1.475 1.523-2.78 1.523-1.62 0-2.854-1.136-3.144-2.756h9.139V12.88c0-3.288-2.297-6.044-6.068-6.044zm-3.047 5.053c.339-1.523 1.596-2.514 3.12-2.514 1.619 0 2.852 1.064 2.997 2.514h-6.117zM56.081 6.835c-1.402 0-2.877.629-3.553 1.669V7.077h-3.143v12.088h3.143v-6.503c0-1.886 1.015-3.119 2.659-3.119 1.523 0 2.345 1.16 2.345 2.78v6.842h3.143v-7.35c0-2.997-1.838-4.98-4.594-4.98zM68.724 2.242l-6.841 16.923h3.36l1.45-3.699h7.785l1.45 3.7h3.41L72.543 2.241h-3.82zm-.943 10.42l2.805-7.084 2.78 7.084H67.78zM83.81 2.242h-3.191v16.923h3.19V2.242z"})]}))});function pe(e){"@babel/helpers - typeof";return pe=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},pe(e)}var Wn=["extraStyle"];function Qt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Zt(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function qn(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var Yn=l.memo(function(e){var t=e.extraStyle,r=Gn(e,Wn);return c.jsx(m,Zt({Icon:vt,Text:R1,"aria-label":De,extraStyle:Zt({fontWeight:600},t),spaceMultiple:Z0,textMultiple:Q0},r))}),a=vt;a.Text=R1;a.Combine=Yn;a.Avatar=Tn;a.colorPrimary=_1;a.colorGpt3=x1;a.colorGpt4=z1;a.colorGpt5=E1;a.colorO1=mt;a.colorO3=mt;a.colorOss=D1;a.colorPlatform=L1;a.title=De;var w="Qwen",Xn=.7,Jn=.2,V1="#615ced",Qn="linear-gradient(to right, #6336E7, #6F69F7)",Zn=V1,kn="#fff",e3=.75;function se(e){"@babel/helpers - typeof";return se=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},se(e)}var t3=["size","style"];function kt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function nt(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function c3(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var gt=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=i3(e,t3);return c.jsxs("svg",nt(nt({fill:"currentColor",fillRule:"evenodd",height:r,style:nt({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:w}),c.jsx("path",{d:"M12.604 1.34c.393.69.784 1.382 1.174 2.075a.18.18 0 00.157.091h5.552c.174 0 .322.11.446.327l1.454 2.57c.19.337.24.478.024.837-.26.43-.513.864-.76 1.3l-.367.658c-.106.196-.223.28-.04.512l2.652 4.637c.172.301.111.494-.043.77-.437.785-.882 1.564-1.335 2.34-.159.272-.352.375-.68.37-.777-.016-1.552-.01-2.327.016a.099.099 0 00-.081.05 575.097 575.097 0 01-2.705 4.74c-.169.293-.38.363-.725.364-.997.003-2.002.004-3.017.002a.537.537 0 01-.465-.271l-1.335-2.323a.09.09 0 00-.083-.049H4.982c-.285.03-.553-.001-.805-.092l-1.603-2.77a.543.543 0 01-.002-.54l1.207-2.12a.198.198 0 000-.197 550.951 550.951 0 01-1.875-3.272l-.79-1.395c-.16-.31-.173-.496.095-.965.465-.813.927-1.625 1.387-2.436.132-.234.304-.334.584-.335a338.3 338.3 0 012.589-.001.124.124 0 00.107-.063l2.806-4.895a.488.488 0 01.422-.246c.524-.001 1.053 0 1.583-.006L11.704 1c.341-.003.724.032.9.34zm-3.432.403a.06.06 0 00-.052.03L6.254 6.788a.157.157 0 01-.135.078H3.253c-.056 0-.07.025-.041.074l5.81 10.156c.025.042.013.062-.034.063l-2.795.015a.218.218 0 00-.2.116l-1.32 2.31c-.044.078-.021.118.068.118l5.716.008c.046 0 .08.02.104.061l1.403 2.454c.046.081.092.082.139 0l5.006-8.76.783-1.382a.055.055 0 01.096 0l1.424 2.53a.122.122 0 00.107.062l2.763-.02a.04.04 0 00.035-.02.041.041 0 000-.04l-2.9-5.086a.108.108 0 010-.113l.293-.507 1.12-1.977c.024-.041.012-.062-.035-.062H9.2c-.059 0-.073-.026-.043-.077l1.434-2.505a.107.107 0 000-.114L9.225 1.774a.06.06 0 00-.053-.031zm6.29 8.02c.046 0 .058.02.034.06l-.832 1.465-2.613 4.585a.056.056 0 01-.05.029.058.058 0 01-.05-.029L8.498 9.841c-.02-.034-.01-.052.028-.054l.216-.012 6.722-.012z"})]}))});function ye(e){"@babel/helpers - typeof";return ye=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ye(e)}function e1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function l3(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function g3(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var K1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=O3(e,y3),i=vr(w),u=i.id,s=i.fill;return c.jsxs("svg",ot(ot({height:r,style:ot({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:w}),c.jsx("path",{d:"M12.604 1.34c.393.69.784 1.382 1.174 2.075a.18.18 0 00.157.091h5.552c.174 0 .322.11.446.327l1.454 2.57c.19.337.24.478.024.837-.26.43-.513.864-.76 1.3l-.367.658c-.106.196-.223.28-.04.512l2.652 4.637c.172.301.111.494-.043.77-.437.785-.882 1.564-1.335 2.34-.159.272-.352.375-.68.37-.777-.016-1.552-.01-2.327.016a.099.099 0 00-.081.05 575.097 575.097 0 01-2.705 4.74c-.169.293-.38.363-.725.364-.997.003-2.002.004-3.017.002a.537.537 0 01-.465-.271l-1.335-2.323a.09.09 0 00-.083-.049H4.982c-.285.03-.553-.001-.805-.092l-1.603-2.77a.543.543 0 01-.002-.54l1.207-2.12a.198.198 0 000-.197 550.951 550.951 0 01-1.875-3.272l-.79-1.395c-.16-.31-.173-.496.095-.965.465-.813.927-1.625 1.387-2.436.132-.234.304-.334.584-.335a338.3 338.3 0 012.589-.001.124.124 0 00.107-.063l2.806-4.895a.488.488 0 01.422-.246c.524-.001 1.053 0 1.583-.006L11.704 1c.341-.003.724.032.9.34zm-3.432.403a.06.06 0 00-.052.03L6.254 6.788a.157.157 0 01-.135.078H3.253c-.056 0-.07.025-.041.074l5.81 10.156c.025.042.013.062-.034.063l-2.795.015a.218.218 0 00-.2.116l-1.32 2.31c-.044.078-.021.118.068.118l5.716.008c.046 0 .08.02.104.061l1.403 2.454c.046.081.092.082.139 0l5.006-8.76.783-1.382a.055.055 0 01.096 0l1.424 2.53a.122.122 0 00.107.062l2.763-.02a.04.04 0 00.035-.02.041.041 0 000-.04l-2.9-5.086a.108.108 0 010-.113l.293-.507 1.12-1.977c.024-.041.012-.062-.035-.062H9.2c-.059 0-.073-.026-.043-.077l1.434-2.505a.107.107 0 000-.114L9.225 1.774a.06.06 0 00-.053-.031zm6.29 8.02c.046 0 .058.02.034.06l-.832 1.465-2.613 4.585a.056.056 0 01-.05.029.058.058 0 01-.05-.029L8.498 9.841c-.02-.034-.01-.052.028-.054l.216-.012 6.722-.012z",fill:s,fillRule:"nonzero"}),c.jsx("defs",{children:c.jsxs("linearGradient",{id:u,x1:"0%",x2:"100%",y1:"0%",y2:"0%",children:[c.jsx("stop",{offset:"0%",stopColor:"#6336E7",stopOpacity:".84"}),c.jsx("stop",{offset:"100%",stopColor:"#6F69F7",stopOpacity:".84"})]})})]}))});function me(e){"@babel/helpers - typeof";return me=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},me(e)}var h3=["size","style"];function r1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function it(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function S3(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var N1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=d3(e,h3);return c.jsxs("svg",it(it({fill:"currentColor",fillRule:"evenodd",height:r,style:it({flex:"none",lineHeight:1},n),viewBox:"0 0 75 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:w}),c.jsx("path",{d:"M11.425 14.13h3.642l1.529 1.795a7.89 7.89 0 002.166-2.832 8.36 8.36 0 00.771-3.562c0-2.03-.624-3.664-1.874-4.905-1.24-1.25-2.884-1.874-4.931-1.874-1.028 0-1.99.186-2.885.558A6.99 6.99 0 007.45 4.932 8.576 8.576 0 005.656 7.67a8.354 8.354 0 00-.625 3.19c0 2.003.611 3.643 1.834 4.919 1.223 1.276 2.779 1.914 4.666 1.914.39 0 .793-.031 1.21-.093.425-.062.868-.16 1.329-.293l-2.645-3.177zM18.07 22l-2.127-2.46c-.753.293-1.48.51-2.18.652a9.84 9.84 0 01-2.073.226c-2.97 0-5.326-.85-7.072-2.552C2.873 16.164 2 13.865 2 10.966c0-1.577.28-3.052.837-4.426a10.148 10.148 0 012.406-3.576A10.427 10.427 0 018.713.758C10.025.253 11.429 0 12.927 0c2.915 0 5.25.86 7.005 2.579 1.755 1.72 2.632 4.01 2.632 6.872 0 1.764-.354 3.399-1.063 4.905a10.156 10.156 0 01-3.031 3.776L21.714 22H18.07zm5.743-14.675h2.884l2.047 6.433.054.16c.248.789.38 1.373.399 1.755.097-.302.221-.62.372-.958.16-.345.354-.713.585-1.103l4.227-7.218 2.06 7.43c.08.275.146.559.2.851.053.293.097.63.133 1.01.132-.372.265-.708.398-1.01.142-.3.28-.562.412-.784l3.816-6.567h3.243L36.097 20.71l-2.127-7.045a8.683 8.683 0 01-.213-.798 17.846 17.846 0 01-.146-.97 69.17 69.17 0 01-.519 1.063c-.15.302-.265.514-.345.638l-4.28 7.112-4.653-13.385zm24.392 4.785h6.5c-.026-.85-.292-1.52-.797-2.007-.496-.497-1.166-.745-2.008-.745-.957 0-1.768.248-2.432.745-.665.496-1.086 1.165-1.263 2.007zm6.34 3.948l2.061 1.608c-.735.966-1.533 1.67-2.392 2.114-.86.443-1.848.665-2.965.665-1.87 0-3.38-.563-4.533-1.689-1.152-1.134-1.728-2.623-1.728-4.466 0-2.162.66-3.935 1.98-5.317 1.33-1.391 3.018-2.087 5.066-2.087 1.71 0 3.07.532 4.08 1.595 1.02 1.055 1.53 2.473 1.53 4.254 0 .15-.01.345-.027.585-.01.23-.027.51-.054.837h-9.61c0 1.143.288 2.056.864 2.738.576.674 1.342 1.01 2.3 1.01.664 0 1.293-.159 1.887-.478a4.633 4.633 0 001.542-1.369zm14.317 3.868l.957-7.244c.018-.133.031-.27.04-.412.009-.151.013-.368.013-.652 0-.824-.2-1.453-.598-1.887-.399-.444-.98-.665-1.741-.665-1.188 0-2.118.385-2.792 1.156-.673.763-1.112 1.937-1.316 3.523l-.797 6.181H59.77l1.661-12.601h2.752l-.213 1.515c.727-.664 1.476-1.156 2.247-1.475a6.5 6.5 0 012.486-.479c1.293 0 2.3.341 3.017 1.024.727.673 1.09 1.622 1.09 2.845 0 .31-.018.673-.053 1.09-.036.407-.089.886-.16 1.435l-.877 6.647h-2.858z"})]}))});function ve(e){"@babel/helpers - typeof";return ve=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ve(e)}var $3=["type","extraStyle"];function n1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function o1(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function D3(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var L3=l.memo(function(e){var t=e.type,r=t===void 0?"mono":t,n=e.extraStyle,o=E3(e,$3),i=r==="color"?K1:gt;return c.jsx(m,o1({Icon:i,Text:N1,"aria-label":w,extraStyle:o1({fontWeight:500},n),spaceMultiple:Jn,textMultiple:Xn},o))}),d=gt;d.Color=K1;d.Text=N1;d.Combine=L3;d.Avatar=s3;d.colorPrimary=V1;d.colorGradient=Qn;d.title=w;var Le="Cursor",I3=.7,C3=.1,H1="#000",M3=H1,T3="#fff",A3=.6;function Oe(e){"@babel/helpers - typeof";return Oe=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Oe(e)}var R3=["size","style"];function i1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function ct(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function W3(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var ht=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=H3(e,R3);return c.jsxs("svg",ct(ct({fill:"currentColor",fillRule:"evenodd",height:r,style:ct({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:Le}),c.jsx("path",{d:"M22.106 5.68L12.5.135a.998.998 0 00-.998 0L1.893 5.68a.84.84 0 00-.419.726v11.186c0 .3.16.577.42.727l9.607 5.547a.999.999 0 00.998 0l9.608-5.547a.84.84 0 00.42-.727V6.407a.84.84 0 00-.42-.726zm-.603 1.176L12.228 22.92c-.063.108-.228.064-.228-.061V12.34a.59.59 0 00-.295-.51l-9.11-5.26c-.107-.062-.063-.228.062-.228h18.55c.264 0 .428.286.296.514z"})]}))});function ge(e){"@babel/helpers - typeof";return ge=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ge(e)}function c1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function B3(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function eo(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var W1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=k3(e,X3);return c.jsxs("svg",lt(lt({fill:"currentColor",fillRule:"evenodd",height:r,style:lt({flex:"none",lineHeight:1},n),viewBox:"0 0 123 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:Le}),c.jsx("path",{d:"M11.995 2.33h6.516v3.582h-6.295C8.82 5.912 6.169 7.868 6.169 12c0 4.133 2.65 6.089 6.047 6.089h6.295v3.581H11.72C6.03 21.67 2 18.336 2 12c0-6.337 4.307-9.67 9.995-9.67zm9.829 0h4.03V14.15c0 2.947 1.354 4.325 4.53 4.325 3.175 0 4.528-1.377 4.528-4.325V2.33h4.03v12.644c0 4.297-2.733 7.025-8.559 7.025-5.826 0-8.56-2.755-8.56-7.052V2.33zm38.185 5.483c0 2.149-1.243 3.801-2.9 4.518v.055c1.74.248 2.624 1.488 2.65 3.169l.084 6.115h-4.031l-.083-5.454c-.027-1.212-.745-1.956-2.181-1.956h-6.71v7.41h-4.03V2.33h11.127c3.644 0 6.074 1.846 6.074 5.483zm-4.059.55c0-1.652-.883-2.561-2.54-2.561H46.84v5.123h6.626c1.518 0 2.485-.909 2.485-2.562zm19.3 7.66c0-1.378-.884-1.957-2.209-2.067l-4.473-.413c-3.866-.358-5.881-1.873-5.881-5.537 0-3.664 2.485-5.675 6.046-5.675h9.885V5.8h-9.609c-1.38 0-2.263.717-2.263 2.094 0 1.378.91 2.039 2.291 2.15l4.556.385c3.452.303 5.715 1.874 5.715 5.565 0 3.691-2.402 5.675-5.798 5.675H63.184V18.2h9.94c1.297 0 2.126-.882 2.126-2.177zM91.097 2c6.074 0 9.912 3.884 9.912 9.972C101.01 18.061 97.006 22 90.932 22s-9.912-3.94-9.912-10.028C81.02 5.884 85.024 2 91.098 2zm5.743 10c0-4.077-2.374-6.474-5.826-6.474-3.451 0-5.826 2.397-5.826 6.474s2.375 6.473 5.826 6.473c3.452 0 5.826-2.396 5.826-6.473zM121 7.813c0 2.149-1.242 3.801-2.899 4.518v.055c1.739.248 2.623 1.488 2.65 3.169l.083 6.115h-4.031l-.083-5.454c-.027-1.212-.745-1.956-2.181-1.956h-6.709v7.41h-4.031V2.33h11.127c3.645 0 6.074 1.846 6.074 5.483zm-4.059.55c0-1.652-.883-2.561-2.54-2.561h-6.571v5.123h6.626c1.518 0 2.485-.909 2.485-2.562z"})]}))});function je(e){"@babel/helpers - typeof";return je=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},je(e)}function u1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function to(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function Oo(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var jt=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=vo(e,so);return c.jsxs("svg",ut(ut({fill:"currentColor",fillRule:"evenodd",height:r,style:ut({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:T}),c.jsx("path",{d:"M24 20.541H3.428v-3.426H0V3.4h24V20.54zM3.428 17.115h17.144V6.827H3.428v10.288zm8.573-5.196l-2.425 2.424-2.424-2.424 2.424-2.424 2.425 2.424zm6.857-.001l-2.424 2.423-2.425-2.423 2.425-2.425 2.424 2.425z"})]}))});function we(e){"@babel/helpers - typeof";return we=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},we(e)}function f1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function go(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function Do(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var F1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=Eo(e,$o);return c.jsxs("svg",at(at({height:r,style:at({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:T}),c.jsx("path",{d:"M24 20.541H3.428v-3.426H0V3.4h24V20.54zM3.428 17.115h17.144V6.827H3.428v10.288zm8.573-5.196l-2.425 2.424-2.424-2.424 2.424-2.424 2.425 2.424zm6.857-.001l-2.424 2.423-2.425-2.423 2.425-2.425 2.424 2.425z",fill:"#32F08C"})]}))});function Se(e){"@babel/helpers - typeof";return Se=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Se(e)}var Lo=["size","style"];function s1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function ft(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function Ao(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var U1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=To(e,Lo);return c.jsxs("svg",ft(ft({fill:"currentColor",fillRule:"evenodd",height:r,style:ft({flex:"none",lineHeight:1},n),viewBox:"0 0 85 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:T}),c.jsx("path",{d:"M20.12 2.012c.002 0 .004.002.005.003a.015.015 0 01.003.005v4.046l-.003.004a.015.015 0 01-.005.003l-.005.002h-6.749a.014.014 0 00-.01.003c-.002.003-.004.007-.004.01v15.898a.014.014 0 01-.004.01.014.014 0 01-.01.003H8.75a.014.014 0 01-.01-.003.014.014 0 01-.004-.01V6.088a.014.014 0 00-.004-.01.015.015 0 00-.01-.003H2.015l-.005-.001a.016.016 0 01-.005-.003A.015.015 0 012 6.06V2.025l.001-.005c0-.002.002-.004.003-.005a.016.016 0 01.01-.004h18.101l.005.001zm63.123-.01c.003 0 .006 0 .008.002s.003.006.003.009v4.038a.016.016 0 01-.005.01.016.016 0 01-.01.006l-11.636-.001a.012.012 0 00-.007.004.013.013 0 00-.004.008 9521.218 9521.218 0 00.003 11.846.014.014 0 00.008.004h11.634c.005 0 .009.002.012.005a.016.016 0 01.005.01v4.039a.014.014 0 01-.004.009.012.012 0 01-.008.003H66.981a.013.013 0 01-.01-.004.013.013 0 01-.003-.01 47458.37 47458.37 0 01.002-19.972c0-.001 0-.004.002-.005l.005-.002H83.243zM34.048 2c.875 0 1.744.026 2.612.164.935.15 1.863.416 2.623 1 .433.331.776.745 1.03 1.238.155.3.285.633.388.999.115.407.197.854.245 1.342.099.997.105 1.987.02 2.966-.022.242-.073.527-.115.76-.058.318-.151.645-.28.982a4.048 4.048 0 01-1.425 1.858 6.349 6.349 0 01-1.581.814 299.29 299.29 0 00-.474.168l-.003.005-.002.007c0 .002 0 .005.002.007l3.954 7.663.002.006a.011.011 0 01-.002.005.012.012 0 01-.004.004H35.99c-.004 0-.008 0-.011-.002a.025.025 0 01-.01-.01l-3.652-7.153a.03.03 0 00-.01-.012.03.03 0 00-.015-.004h-4.9a.012.012 0 00-.008.004.013.013 0 00-.004.009v7.16a.012.012 0 01-.004.009.013.013 0 01-.009.003h-4.509a.012.012 0 01-.003-.003.015.015 0 01-.003-.005.011.011 0 01-.001-.005V2.017A.017.017 0 0122.866 2h11.182zm23.003.016a.027.027 0 01.01.012l7.851 19.948.001.006-.003.006a.011.011 0 01-.004.003.011.011 0 01-.006.002h-4.788a.026.026 0 01-.014-.005.027.027 0 01-.011-.012l-1.91-4.713a.021.021 0 00-.007-.01.023.023 0 00-.013-.004h-8.55a.03.03 0 00-.018.005.031.031 0 00-.01.015l-1.747 4.706a.026.026 0 01-.01.013.028.028 0 01-.015.005h-4.995l-.002-.002-.003-.001-.001-.003v-.004l8.108-19.961a.017.017 0 01.007-.008.018.018 0 01.01-.003h6.105c.005 0 .01.002.015.005zm22.606 6.843l3.578 3.178a.024.024 0 01.006.008.025.025 0 010 .02.025.025 0 01-.006.008l-3.579 3.177a.025.025 0 01-.032 0l-3.367-3.178a.025.025 0 01-.006-.008.025.025 0 01-.002-.01.024.024 0 01.008-.017l3.368-3.178a.023.023 0 01.016-.006c.006 0 .012.002.016.006zm-26.022-2.41a.015.015 0 00-.005.007L51 13.658a.013.013 0 00-.001.005.015.015 0 00.007.011l.007.001h5.877a.015.015 0 00.005-.006l.002-.006v-.005l-2.664-7.202a.015.015 0 00-.005-.006.014.014 0 00-.007-.002h-.578c-.003 0-.006 0-.008.002zm-26.252-.46a.015.015 0 00-.004.01 2309.791 2309.791 0 00.003 4.935c0 .004.001.007.004.01a.014.014 0 00.01.004c2.4 0 4.506-.001 6.318-.006.388-.001.767-.05 1.135-.148.644-.17 1.188-.527 1.364-1.196.031-.119.048-.307.05-.564l-.001-.572v-.571a2.504 2.504 0 00-.05-.564c-.177-.669-.72-1.026-1.365-1.196a4.469 4.469 0 00-1.136-.146c-1.812-.003-3.918-.004-6.318 0a.016.016 0 00-.01.005z"})]}))});function $e(e){"@babel/helpers - typeof";return $e=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},$e(e)}var Ro=["type"];function y1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function Vo(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function Bo(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var Fo=l.memo(function(e){var t=e.type,r=t===void 0?"mono":t,n=Wo(e,Ro),o=r==="color"?F1:jt;return c.jsx(m,Vo({Icon:o,Text:U1,"aria-label":T,spaceMultiple:uo,textMultiple:lo},n))}),A=jt;A.Color=F1;A.Text=U1;A.Combine=Fo;A.Avatar=So;A.colorPrimary=B1;A.title=T;var Ce="Windsurf",Uo=.7,Go=.2,G1="#fff",qo=G1,Yo="#000",Xo=.75;function _e(e){"@babel/helpers - typeof";return _e=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_e(e)}var Jo=["size","style"];function b1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function pt(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function ti(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var Pt=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=ei(e,Jo);return c.jsxs("svg",pt(pt({fill:"currentColor",fillRule:"evenodd",height:r,style:pt({flex:"none",lineHeight:1},n),viewBox:"0 0 24 24",width:r,xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:Ce}),c.jsx("path",{clipRule:"evenodd",d:"M23.78 5.004h-.228a2.187 2.187 0 00-2.18 2.196v4.912c0 .98-.804 1.775-1.76 1.775a1.818 1.818 0 01-1.472-.773L13.168 5.95a2.197 2.197 0 00-1.81-.95c-1.134 0-2.154.972-2.154 2.173v4.94c0 .98-.797 1.775-1.76 1.775-.57 0-1.136-.289-1.472-.773L.408 5.098C.282 4.918 0 5.007 0 5.228v4.284c0 .216.066.426.188.604l5.475 7.889c.324.466.8.812 1.351.938 1.377.316 2.645-.754 2.645-2.117V11.89c0-.98.787-1.775 1.76-1.775h.002c.586 0 1.135.288 1.472.773l4.972 7.163a2.15 2.15 0 001.81.95c1.158 0 2.151-.973 2.151-2.173v-4.939c0-.98.787-1.775 1.76-1.775h.194c.122 0 .22-.1.22-.222V5.225a.221.221 0 00-.22-.222z"})]}))});function xe(e){"@babel/helpers - typeof";return xe=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},xe(e)}function m1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function ri(e){for(var t=1;t=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function yi(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,i;for(i=0;i=0)&&(r[o]=e[o]);return r}var q1=l.memo(function(e){var t=e.size,r=t===void 0?"1em":t,n=e.style,o=si(e,ui);return c.jsxs("svg",st(st({fill:"currentColor",fillRule:"evenodd",height:r,style:st({flex:"none",lineHeight:1},n),viewBox:"0 0 111 24",xmlns:"http://www.w3.org/2000/svg"},o),{},{children:[c.jsx("title",{children:Ce}),c.jsx("path",{clipRule:"evenodd",d:"M33.412 7.182h-1.715a.316.316 0 00-.315.316v13.79c0 .174.14.316.315.316h1.715a.316.316 0 00.316-.317V7.498a.316.316 0 00-.316-.316zm-1.772-5.18h1.828c.174 0 .315.141.315.316V4.57a.316.316 0 01-.315.316H31.64a.316.316 0 01-.315-.316V2.318c0-.175.141-.317.315-.317zM43.676 6.79c-1.927 0-3.324.671-4.218 1.653a.457.457 0 01-.782-.322v-.623a.316.316 0 00-.316-.316h-1.686a.316.316 0 00-.316.316v13.79c0 .174.142.316.316.316h1.687a.316.316 0 00.316-.317v-8.729c0-3.025.587-3.697 3.8-3.697s3.742.533 3.742 3.557v8.868c0 .175.142.317.316.317h1.715a.316.316 0 00.316-.317v-9.513c0-3.445-1.956-4.986-4.889-4.986v.003h-.001zm17.518 1.849a.457.457 0 00.782-.322V2.319c0-.175.142-.316.316-.316h1.687c.174 0 .316.141.316.316v18.97a.316.316 0 01-.316.316h-1.687a.316.316 0 01-.316-.316v-.819c.017-.418-.489-.62-.782-.322-.81 1.008-2.374 1.848-4.47 1.848-3.685 0-6.088-2.632-6.088-7.533 0-5.18 2.68-7.673 6.172-7.673 2.095 0 3.604.84 4.386 1.849zm-8.018 5.767c0 4.733.587 5.434 4.414 5.434 3.8 0 4.386-.701 4.386-5.434 0-4.733-.559-5.461-4.386-5.461s-4.414.728-4.414 5.461zm20.924-.894l-2.763-.476c-2.04-.364-2.404-.98-2.404-2.045.028-1.457.587-2.184 3.296-2.184 2.538 0 3.35.752 3.525 2.376.017.16.152.284.313.284h1.677c.18 0 .326-.151.316-.333-.163-2.788-2.709-4.346-5.746-4.346-3.408 0-5.67 1.82-5.67 4.426 0 2.38 1.844 3.417 4.05 3.837l3.046.56c1.676.31 2.235.87 2.235 1.933 0 1.709-.587 2.437-3.464 2.437s-3.673-.832-3.858-2.518a.315.315 0 00-.313-.282h-1.687a.318.318 0 00-.317.325c.08 3.004 2.797 4.493 6.034 4.493 3.52 0 5.949-1.82 5.949-4.566 0-2.408-1.845-3.501-4.219-3.921zm12.21 6.414c3.128 0 3.715-.672 3.715-3.697V7.502c0-.174.141-.316.316-.316h1.714c.175 0 .316.142.316.316v13.79a.316.316 0 01-.316.316h-1.714a.316.316 0 01-.316-.317v-.6c-.007-.429-.45-.642-.755-.343-.892.98-2.289 1.652-4.161 1.652-2.877 0-4.833-1.54-4.833-4.986V7.501c0-.175.142-.317.316-.317h1.715c.174 0 .316.142.316.317v8.868c0 3.024.558 3.557 3.687 3.557zm19.782-12.744v-1.85c0-.727.588-1.316 1.314-1.316h1.276a.316.316 0 00.315-.317V2.317a.316.316 0 00-.315-.317h-.885c-2.514 0-4.051 1.4-4.051 3.81v1.372h-1.859c-1.647.002-2.94.229-3.803 1.26-.317.302-.755.076-.755-.36V7.5a.316.316 0 00-.315-.317h-1.715a.316.316 0 00-.316.317v13.789c0 .174.141.316.316.316h1.715a.316.316 0 00.315-.316v-8.645c0-2.857.727-3.528 3.855-3.528h2.562V21.29c0 .175.141.317.316.317h1.715a.316.316 0 00.315-.317V9.116h2.593a.316.316 0 00.315-.317V7.501a.316.316 0 00-.315-.317h-2.593v-.002zM21.834 18.008a.561.561 0 001.091.005l3.933-15.772A.318.318 0 0127.166 2h1.963c.21 0 .363.199.31.403l-4.947 18.972a.305.305 0 01-.295.228h-3.502a.31.31 0 01-.3-.234L16.285 5.5a.56.56 0 00-.543-.42h-.036a.562.562 0 00-.542.42l-4.11 15.87a.31.31 0 01-.299.234H7.253a.304.304 0 01-.295-.228L2.011 2.403A.321.321 0 012.32 2h1.963c.145 0 .272.1.308.241l3.932 15.772a.56.56 0 001.09-.005l3.78-15.764A.316.316 0 0113.7 2h4.047c.146 0 .273.1.307.244l3.779 15.764z"})]}))});function Ee(e){"@babel/helpers - typeof";return Ee=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ee(e)}function O1(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function bi(e){for(var t=1;tt in e?oIr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r;var Gi=(e,t,r)=>lIr(e,typeof t!="symbol"?t+"":t,r);import{r as ue,R as Er,b as odt,j as ct,a as w9,$ as g$}from"./vendor-react.js?v=1775123024591";import{a as O1,c as ml}from"./_commonjsHelpers.js?v=1775123024591";import{_ as ea}from"./preload-helper.js?v=1775123024591";import{c as sO}from"./_commonjs-dynamic-modules.js?v=1775123024591";function cIr(e,t){for(var r=0;ra[s]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const uIr=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),bAn=(...e)=>e.filter((t,r,a)=>!!t&&t.trim()!==""&&a.indexOf(t)===r).join(" ").trim();/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */var hIr={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const dIr=ue.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:r=2,absoluteStrokeWidth:a,className:s="",children:o,iconNode:u,...h},f)=>ue.createElement("svg",{ref:f,...hIr,width:t,height:t,stroke:e,strokeWidth:a?Number(r)*24/Number(t):r,className:bAn("lucide",s),...h},[...u.map(([p,m])=>ue.createElement(p,m)),...Array.isArray(o)?o:[o]]));/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const Ta=(e,t)=>{const r=ue.forwardRef(({className:a,...s},o)=>ue.createElement(dIr,{ref:o,iconNode:t,className:bAn(`lucide-${uIr(e)}`,a),...s}));return r.displayName=`${e}`,r};/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const fIr=[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}],["path",{d:"M10 4v4",key:"pp8u80"}],["path",{d:"M2 8h20",key:"d11cs7"}],["path",{d:"M6 4v4",key:"1svtjw"}]],sSa=Ta("AppWindow",fIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const pIr=[["path",{d:"m16 3 4 4-4 4",key:"1x1c3m"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"m8 21-4-4 4-4",key:"h9nckh"}],["path",{d:"M4 17h16",key:"g4d7ey"}]],oSa=Ta("ArrowRightLeft",pIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const gIr=[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}]],lSa=Ta("BookOpen",gIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const mIr=[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z",key:"lc1i9w"}],["path",{d:"m7 16.5-4.74-2.85",key:"1o9zyk"}],["path",{d:"m7 16.5 5-3",key:"va8pkn"}],["path",{d:"M7 16.5v5.17",key:"jnp8gn"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z",key:"8zsnat"}],["path",{d:"m17 16.5-5-3",key:"8arw3v"}],["path",{d:"m17 16.5 4.74-2.85",key:"8rfmw"}],["path",{d:"M17 16.5v5.17",key:"k6z78m"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z",key:"1xygjf"}],["path",{d:"M12 8 7.26 5.15",key:"1vbdud"}],["path",{d:"m12 8 4.74-2.85",key:"3rx089"}],["path",{d:"M12 13.5V8",key:"1io7kd"}]],cSa=Ta("Boxes",mIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const bIr=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],uSa=Ta("Check",bIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const yIr=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],hSa=Ta("ChevronDown",yIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const vIr=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],dSa=Ta("ChevronRight",vIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const _Ir=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],fSa=Ta("ChevronUp",_Ir);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const wIr=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]],pSa=Ta("CircleAlert",wIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const EIr=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],gSa=Ta("CircleCheckBig",EIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const xIr=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],mSa=Ta("CircleCheck",xIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const SIr=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],bSa=Ta("CircleHelp",SIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const TIr=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],ySa=Ta("CircleX",TIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const CIr=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],vSa=Ta("Circle",CIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const AIr=[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]],_Sa=Ta("CloudUpload",AIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const kIr=[["path",{d:"m18 16 4-4-4-4",key:"1inbqp"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}],["path",{d:"m14.5 4-5 16",key:"e7oirm"}]],wSa=Ta("CodeXml",kIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const RIr=[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1uwlt4"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z",key:"10291m"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z",key:"1tqoq1"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1x6lto"}]],ESa=Ta("Component",RIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const IIr=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],xSa=Ta("Copy",IIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const NIr=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]],SSa=Ta("Database",NIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const OIr=[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]],TSa=Ta("Download",OIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const LIr=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]],CSa=Ta("Ellipsis",LIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const DIr=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]],ASa=Ta("ExternalLink",DIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const MIr=[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",key:"1nclc0"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],kSa=Ta("Eye",MIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const PIr=[["path",{d:"M10 12v-1",key:"v7bkov"}],["path",{d:"M10 18v-2",key:"1cjy8d"}],["path",{d:"M10 7V6",key:"dljcrl"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01",key:"gkbcor"}],["circle",{cx:"10",cy:"20",r:"2",key:"1xzdoj"}]],RSa=Ta("FileArchive",PIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const BIr=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]],ISa=Ta("FileText",BIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const FIr=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}]],NSa=Ta("File",FIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const $Ir=[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]],OSa=Ta("FolderOpen",$Ir);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const UIr=[["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]],LSa=Ta("FolderPlus",UIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const zIr=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]],DSa=Ta("Folder",zIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const GIr=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12",key:"1dyftd"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12",key:"oup4p8"}]],MSa=Ta("GitCommitHorizontal",GIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const qIr=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]],PSa=Ta("Globe",qIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const HIr=[["path",{d:"M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z",key:"j76jl0"}],["path",{d:"M22 10v6",key:"1lu8f3"}],["path",{d:"M6 12.5V16a6 3 0 0 0 12 0v-3.5",key:"1r8lef"}]],BSa=Ta("GraduationCap",HIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const VIr=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M12 7v5l4 2",key:"1fdv2h"}]],FSa=Ta("History",VIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const YIr=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]],$Sa=Ta("Image",YIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const jIr=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]],USa=Ta("Info",jIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const WIr=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]],zSa=Ta("Link",WIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const KIr=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],GSa=Ta("LoaderCircle",KIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const XIr=[["line",{x1:"4",x2:"20",y1:"12",y2:"12",key:"1e0a9i"}],["line",{x1:"4",x2:"20",y1:"6",y2:"6",key:"1owob3"}],["line",{x1:"4",x2:"20",y1:"18",y2:"18",key:"yk5zj1"}]],qSa=Ta("Menu",XIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const QIr=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}]],HSa=Ta("MessageCircle",QIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const ZIr=[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21",key:"1svkeh"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21",key:"vw1qmm"}]],VSa=Ta("Monitor",ZIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const JIr=[["path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z",key:"a7tn18"}]],YSa=Ta("Moon",JIr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const eNr=[["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],jSa=Ta("OctagonX",eNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const tNr=[["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor",key:"1okk4w"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor",key:"f64h9f"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor",key:"fotxhn"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor",key:"qy21gx"}],["path",{d:"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.926 0 1.648-.746 1.648-1.688 0-.437-.18-.835-.437-1.125-.29-.289-.438-.652-.438-1.125a1.64 1.64 0 0 1 1.668-1.668h1.996c3.051 0 5.555-2.503 5.555-5.554C21.965 6.012 17.461 2 12 2z",key:"12rzf8"}]],WSa=Ta("Palette",tNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const nNr=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m16 15-3-3 3-3",key:"14y99z"}]],KSa=Ta("PanelLeftClose",nNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const rNr=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m14 9 3 3-3 3",key:"8010ee"}]],XSa=Ta("PanelLeftOpen",rNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const iNr=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M9 21V9",key:"1oto5p"}]],QSa=Ta("PanelsTopLeft",iNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const aNr=[["path",{d:"M12 20h9",key:"t2du7b"}],["path",{d:"M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z",key:"1ykcvy"}]],ZSa=Ta("PenLine",aNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const sNr=[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13",key:"orapub"}],["path",{d:"m8 6 2-2",key:"115y1s"}],["path",{d:"m18 16 2-2",key:"ee94s4"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17",key:"cfq27r"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],JSa=Ta("PencilRuler",sNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const oNr=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],e4a=Ta("Pencil",oNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const lNr=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],t4a=Ta("Plus",lNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const cNr=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]],n4a=Ta("RefreshCw",cNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const uNr=[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",key:"m3kijz"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",key:"1fmvmk"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0",key:"1f8sc4"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5",key:"qeys4"}]],r4a=Ta("Rocket",uNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const hNr=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]],i4a=Ta("RotateCcw",hNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const dNr=[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8",key:"1p45f6"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}]],a4a=Ta("RotateCw",dNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const fNr=[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]],s4a=Ta("Save",fNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const pNr=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]],o4a=Ta("Search",pNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const gNr=[["path",{d:"M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z",key:"1qme2f"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],l4a=Ta("Settings",gNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const mNr=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12 18h.01",key:"mhygvu"}]],c4a=Ta("Smartphone",mNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const bNr=[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]],u4a=Ta("Sparkles",bNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const yNr=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",key:"ohrbg2"}]],h4a=Ta("SquarePen",yNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const vNr=[["path",{d:"m7 11 2-2-2-2",key:"1lz0vl"}],["path",{d:"M11 13h4",key:"1p7l4v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}]],d4a=Ta("SquareTerminal",vNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const _Nr=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]],f4a=Ta("Star",_Nr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const wNr=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m17.66 17.66 1.41 1.41",key:"ptbguv"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}]],p4a=Ta("Sun",wNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const ENr=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2",key:"76otgf"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18",key:"1dp563"}]],g4a=Ta("Tablet",ENr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const xNr=[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]],m4a=Ta("Trash2",xNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const SNr=[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]],b4a=Ta("TriangleAlert",SNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const TNr=[["path",{d:"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71",key:"yqzxt4"}],["path",{d:"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71",key:"4qinb0"}],["line",{x1:"8",x2:"8",y1:"2",y2:"5",key:"1041cp"}],["line",{x1:"2",x2:"5",y1:"8",y2:"8",key:"14m1p5"}],["line",{x1:"16",x2:"16",y1:"19",y2:"22",key:"rzdirn"}],["line",{x1:"19",x2:"22",y1:"16",y2:"16",key:"ox905f"}]],y4a=Ta("Unlink",TNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const CNr=[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"17 8 12 3 7 8",key:"t8dd8p"}],["line",{x1:"12",x2:"12",y1:"3",y2:"15",key:"widbto"}]],v4a=Ta("Upload",CNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const ANr=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]],_4a=Ta("WandSparkles",ANr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const kNr=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]],w4a=Ta("Wifi",kNr);/** + * @license lucide-react v0.475.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const RNr=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],E4a=Ta("X",RNr);function INr(e){if(typeof document>"u")return;let t=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css",t.appendChild(r),r.styleSheet?r.styleSheet.cssText=e:r.appendChild(document.createTextNode(e))}const NNr=e=>{switch(e){case"success":return DNr;case"info":return PNr;case"warning":return MNr;case"error":return BNr;default:return null}},ONr=Array(12).fill(0),LNr=({visible:e,className:t})=>Er.createElement("div",{className:["sonner-loading-wrapper",t].filter(Boolean).join(" "),"data-visible":e},Er.createElement("div",{className:"sonner-spinner"},ONr.map((r,a)=>Er.createElement("div",{className:"sonner-loading-bar",key:`spinner-bar-${a}`})))),DNr=Er.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},Er.createElement("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z",clipRule:"evenodd"})),MNr=Er.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",height:"20",width:"20"},Er.createElement("path",{fillRule:"evenodd",d:"M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003zM12 8.25a.75.75 0 01.75.75v3.75a.75.75 0 01-1.5 0V9a.75.75 0 01.75-.75zm0 8.25a.75.75 0 100-1.5.75.75 0 000 1.5z",clipRule:"evenodd"})),PNr=Er.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},Er.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z",clipRule:"evenodd"})),BNr=Er.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},Er.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z",clipRule:"evenodd"})),FNr=Er.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"},Er.createElement("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),Er.createElement("line",{x1:"6",y1:"6",x2:"18",y2:"18"})),$Nr=()=>{const[e,t]=Er.useState(document.hidden);return Er.useEffect(()=>{const r=()=>{t(document.hidden)};return document.addEventListener("visibilitychange",r),()=>window.removeEventListener("visibilitychange",r)},[]),e};let Mat=1;class UNr{constructor(){this.subscribe=t=>(this.subscribers.push(t),()=>{const r=this.subscribers.indexOf(t);this.subscribers.splice(r,1)}),this.publish=t=>{this.subscribers.forEach(r=>r(t))},this.addToast=t=>{this.publish(t),this.toasts=[...this.toasts,t]},this.create=t=>{var r;const{message:a,...s}=t,o=typeof(t==null?void 0:t.id)=="number"||((r=t.id)==null?void 0:r.length)>0?t.id:Mat++,u=this.toasts.find(f=>f.id===o),h=t.dismissible===void 0?!0:t.dismissible;return this.dismissedToasts.has(o)&&this.dismissedToasts.delete(o),u?this.toasts=this.toasts.map(f=>f.id===o?(this.publish({...f,...t,id:o,title:a}),{...f,...t,id:o,dismissible:h,title:a}):f):this.addToast({title:a,...s,dismissible:h,id:o}),o},this.dismiss=t=>(t?(this.dismissedToasts.add(t),requestAnimationFrame(()=>this.subscribers.forEach(r=>r({id:t,dismiss:!0})))):this.toasts.forEach(r=>{this.subscribers.forEach(a=>a({id:r.id,dismiss:!0}))}),t),this.message=(t,r)=>this.create({...r,message:t}),this.error=(t,r)=>this.create({...r,message:t,type:"error"}),this.success=(t,r)=>this.create({...r,type:"success",message:t}),this.info=(t,r)=>this.create({...r,type:"info",message:t}),this.warning=(t,r)=>this.create({...r,type:"warning",message:t}),this.loading=(t,r)=>this.create({...r,type:"loading",message:t}),this.promise=(t,r)=>{if(!r)return;let a;r.loading!==void 0&&(a=this.create({...r,promise:t,type:"loading",message:r.loading,description:typeof r.description!="function"?r.description:void 0}));const s=Promise.resolve(t instanceof Function?t():t);let o=a!==void 0,u;const h=s.then(async p=>{if(u=["resolve",p],Er.isValidElement(p))o=!1,this.create({id:a,type:"default",message:p});else if(GNr(p)&&!p.ok){o=!1;const b=typeof r.error=="function"?await r.error(`HTTP error! status: ${p.status}`):r.error,_=typeof r.description=="function"?await r.description(`HTTP error! status: ${p.status}`):r.description,S=typeof b=="object"&&!Er.isValidElement(b)?b:{message:b};this.create({id:a,type:"error",description:_,...S})}else if(p instanceof Error){o=!1;const b=typeof r.error=="function"?await r.error(p):r.error,_=typeof r.description=="function"?await r.description(p):r.description,S=typeof b=="object"&&!Er.isValidElement(b)?b:{message:b};this.create({id:a,type:"error",description:_,...S})}else if(r.success!==void 0){o=!1;const b=typeof r.success=="function"?await r.success(p):r.success,_=typeof r.description=="function"?await r.description(p):r.description,S=typeof b=="object"&&!Er.isValidElement(b)?b:{message:b};this.create({id:a,type:"success",description:_,...S})}}).catch(async p=>{if(u=["reject",p],r.error!==void 0){o=!1;const m=typeof r.error=="function"?await r.error(p):r.error,b=typeof r.description=="function"?await r.description(p):r.description,w=typeof m=="object"&&!Er.isValidElement(m)?m:{message:m};this.create({id:a,type:"error",description:b,...w})}}).finally(()=>{o&&(this.dismiss(a),a=void 0),r.finally==null||r.finally.call(r)}),f=()=>new Promise((p,m)=>h.then(()=>u[0]==="reject"?m(u[1]):p(u[1])).catch(m));return typeof a!="string"&&typeof a!="number"?{unwrap:f}:Object.assign(a,{unwrap:f})},this.custom=(t,r)=>{const a=(r==null?void 0:r.id)||Mat++;return this.create({jsx:t(a),id:a,...r}),a},this.getActiveToasts=()=>this.toasts.filter(t=>!this.dismissedToasts.has(t.id)),this.subscribers=[],this.toasts=[],this.dismissedToasts=new Set}}const L2=new UNr,zNr=(e,t)=>{const r=(t==null?void 0:t.id)||Mat++;return L2.addToast({title:e,...t,id:r}),r},GNr=e=>e&&typeof e=="object"&&"ok"in e&&typeof e.ok=="boolean"&&"status"in e&&typeof e.status=="number",qNr=zNr,HNr=()=>L2.toasts,VNr=()=>L2.getActiveToasts(),x4a=Object.assign(qNr,{success:L2.success,info:L2.info,warning:L2.warning,error:L2.error,custom:L2.custom,message:L2.message,promise:L2.promise,dismiss:L2.dismiss,loading:L2.loading},{getHistory:HNr,getToasts:VNr});INr("[data-sonner-toaster][dir=ltr],html[dir=ltr]{--toast-icon-margin-start:-3px;--toast-icon-margin-end:4px;--toast-svg-margin-start:-1px;--toast-svg-margin-end:0px;--toast-button-margin-start:auto;--toast-button-margin-end:0;--toast-close-button-start:0;--toast-close-button-end:unset;--toast-close-button-transform:translate(-35%, -35%)}[data-sonner-toaster][dir=rtl],html[dir=rtl]{--toast-icon-margin-start:4px;--toast-icon-margin-end:-3px;--toast-svg-margin-start:0px;--toast-svg-margin-end:-1px;--toast-button-margin-start:0;--toast-button-margin-end:auto;--toast-close-button-start:unset;--toast-close-button-end:0;--toast-close-button-transform:translate(35%, -35%)}[data-sonner-toaster]{position:fixed;width:var(--width);font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--gray1:hsl(0, 0%, 99%);--gray2:hsl(0, 0%, 97.3%);--gray3:hsl(0, 0%, 95.1%);--gray4:hsl(0, 0%, 93%);--gray5:hsl(0, 0%, 90.9%);--gray6:hsl(0, 0%, 88.7%);--gray7:hsl(0, 0%, 85.8%);--gray8:hsl(0, 0%, 78%);--gray9:hsl(0, 0%, 56.1%);--gray10:hsl(0, 0%, 52.3%);--gray11:hsl(0, 0%, 43.5%);--gray12:hsl(0, 0%, 9%);--border-radius:8px;box-sizing:border-box;padding:0;margin:0;list-style:none;outline:0;z-index:999999999;transition:transform .4s ease}@media (hover:none) and (pointer:coarse){[data-sonner-toaster][data-lifted=true]{transform:none}}[data-sonner-toaster][data-x-position=right]{right:var(--offset-right)}[data-sonner-toaster][data-x-position=left]{left:var(--offset-left)}[data-sonner-toaster][data-x-position=center]{left:50%;transform:translateX(-50%)}[data-sonner-toaster][data-y-position=top]{top:var(--offset-top)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--offset-bottom)}[data-sonner-toast]{--y:translateY(100%);--lift-amount:calc(var(--lift) * var(--gap));z-index:var(--z-index);position:absolute;opacity:0;transform:var(--y);touch-action:none;transition:transform .4s,opacity .4s,height .4s,box-shadow .2s;box-sizing:border-box;outline:0;overflow-wrap:anywhere}[data-sonner-toast][data-styled=true]{padding:16px;background:var(--normal-bg);border:1px solid var(--normal-border);color:var(--normal-text);border-radius:var(--border-radius);box-shadow:0 4px 12px rgba(0,0,0,.1);width:var(--width);font-size:13px;display:flex;align-items:center;gap:6px}[data-sonner-toast]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-y-position=top]{top:0;--y:translateY(-100%);--lift:1;--lift-amount:calc(1 * var(--gap))}[data-sonner-toast][data-y-position=bottom]{bottom:0;--y:translateY(100%);--lift:-1;--lift-amount:calc(var(--lift) * var(--gap))}[data-sonner-toast][data-styled=true] [data-description]{font-weight:400;line-height:1.4;color:#3f3f3f}[data-rich-colors=true][data-sonner-toast][data-styled=true] [data-description]{color:inherit}[data-sonner-toaster][data-sonner-theme=dark] [data-description]{color:#e8e8e8}[data-sonner-toast][data-styled=true] [data-title]{font-weight:500;line-height:1.5;color:inherit}[data-sonner-toast][data-styled=true] [data-icon]{display:flex;height:16px;width:16px;position:relative;justify-content:flex-start;align-items:center;flex-shrink:0;margin-left:var(--toast-icon-margin-start);margin-right:var(--toast-icon-margin-end)}[data-sonner-toast][data-promise=true] [data-icon]>svg{opacity:0;transform:scale(.8);transform-origin:center;animation:sonner-fade-in .3s ease forwards}[data-sonner-toast][data-styled=true] [data-icon]>*{flex-shrink:0}[data-sonner-toast][data-styled=true] [data-icon] svg{margin-left:var(--toast-svg-margin-start);margin-right:var(--toast-svg-margin-end)}[data-sonner-toast][data-styled=true] [data-content]{display:flex;flex-direction:column;gap:2px}[data-sonner-toast][data-styled=true] [data-button]{border-radius:4px;padding-left:8px;padding-right:8px;height:24px;font-size:12px;color:var(--normal-bg);background:var(--normal-text);margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end);border:none;font-weight:500;cursor:pointer;outline:0;display:flex;align-items:center;flex-shrink:0;transition:opacity .4s,box-shadow .2s}[data-sonner-toast][data-styled=true] [data-button]:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.4)}[data-sonner-toast][data-styled=true] [data-button]:first-of-type{margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end)}[data-sonner-toast][data-styled=true] [data-cancel]{color:var(--normal-text);background:rgba(0,0,0,.08)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-styled=true] [data-cancel]{background:rgba(255,255,255,.3)}[data-sonner-toast][data-styled=true] [data-close-button]{position:absolute;left:var(--toast-close-button-start);right:var(--toast-close-button-end);top:0;height:20px;width:20px;display:flex;justify-content:center;align-items:center;padding:0;color:var(--gray12);background:var(--normal-bg);border:1px solid var(--gray4);transform:var(--toast-close-button-transform);border-radius:50%;cursor:pointer;z-index:1;transition:opacity .1s,background .2s,border-color .2s}[data-sonner-toast][data-styled=true] [data-close-button]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-styled=true] [data-disabled=true]{cursor:not-allowed}[data-sonner-toast][data-styled=true]:hover [data-close-button]:hover{background:var(--gray2);border-color:var(--gray5)}[data-sonner-toast][data-swiping=true]::before{content:'';position:absolute;left:-100%;right:-100%;height:100%;z-index:-1}[data-sonner-toast][data-y-position=top][data-swiping=true]::before{bottom:50%;transform:scaleY(3) translateY(50%)}[data-sonner-toast][data-y-position=bottom][data-swiping=true]::before{top:50%;transform:scaleY(3) translateY(-50%)}[data-sonner-toast][data-swiping=false][data-removed=true]::before{content:'';position:absolute;inset:0;transform:scaleY(2)}[data-sonner-toast][data-expanded=true]::after{content:'';position:absolute;left:0;height:calc(var(--gap) + 1px);bottom:100%;width:100%}[data-sonner-toast][data-mounted=true]{--y:translateY(0);opacity:1}[data-sonner-toast][data-expanded=false][data-front=false]{--scale:var(--toasts-before) * 0.05 + 1;--y:translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));height:var(--front-toast-height)}[data-sonner-toast]>*{transition:opacity .4s}[data-sonner-toast][data-x-position=right]{right:0}[data-sonner-toast][data-x-position=left]{left:0}[data-sonner-toast][data-expanded=false][data-front=false][data-styled=true]>*{opacity:0}[data-sonner-toast][data-visible=false]{opacity:0;pointer-events:none}[data-sonner-toast][data-mounted=true][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset)));height:var(--initial-height)}[data-sonner-toast][data-removed=true][data-front=true][data-swipe-out=false]{--y:translateY(calc(var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=false]{--y:translateY(40%);opacity:0;transition:transform .5s,opacity .2s}[data-sonner-toast][data-removed=true][data-front=false]::before{height:calc(var(--initial-height) + 20%)}[data-sonner-toast][data-swiping=true]{transform:var(--y) translateY(var(--swipe-amount-y,0)) translateX(var(--swipe-amount-x,0));transition:none}[data-sonner-toast][data-swiped=true]{user-select:none}[data-sonner-toast][data-swipe-out=true][data-y-position=bottom],[data-sonner-toast][data-swipe-out=true][data-y-position=top]{animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=left]{animation-name:swipe-out-left}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=right]{animation-name:swipe-out-right}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=up]{animation-name:swipe-out-up}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=down]{animation-name:swipe-out-down}@keyframes swipe-out-left{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) - 100%));opacity:0}}@keyframes swipe-out-right{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) + 100%));opacity:0}}@keyframes swipe-out-up{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) - 100%));opacity:0}}@keyframes swipe-out-down{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) + 100%));opacity:0}}@media (max-width:600px){[data-sonner-toaster]{position:fixed;right:var(--mobile-offset-right);left:var(--mobile-offset-left);width:100%}[data-sonner-toaster][dir=rtl]{left:calc(var(--mobile-offset-left) * -1)}[data-sonner-toaster] [data-sonner-toast]{left:0;right:0;width:calc(100% - var(--mobile-offset-left) * 2)}[data-sonner-toaster][data-x-position=left]{left:var(--mobile-offset-left)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--mobile-offset-bottom)}[data-sonner-toaster][data-y-position=top]{top:var(--mobile-offset-top)}[data-sonner-toaster][data-x-position=center]{left:var(--mobile-offset-left);right:var(--mobile-offset-right);transform:none}}[data-sonner-toaster][data-sonner-theme=light]{--normal-bg:#fff;--normal-border:var(--gray4);--normal-text:var(--gray12);--success-bg:hsl(143, 85%, 96%);--success-border:hsl(145, 92%, 87%);--success-text:hsl(140, 100%, 27%);--info-bg:hsl(208, 100%, 97%);--info-border:hsl(221, 91%, 93%);--info-text:hsl(210, 92%, 45%);--warning-bg:hsl(49, 100%, 97%);--warning-border:hsl(49, 91%, 84%);--warning-text:hsl(31, 92%, 45%);--error-bg:hsl(359, 100%, 97%);--error-border:hsl(359, 100%, 94%);--error-text:hsl(360, 100%, 45%)}[data-sonner-toaster][data-sonner-theme=light] [data-sonner-toast][data-invert=true]{--normal-bg:#000;--normal-border:hsl(0, 0%, 20%);--normal-text:var(--gray1)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-invert=true]{--normal-bg:#fff;--normal-border:var(--gray3);--normal-text:var(--gray12)}[data-sonner-toaster][data-sonner-theme=dark]{--normal-bg:#000;--normal-bg-hover:hsl(0, 0%, 12%);--normal-border:hsl(0, 0%, 20%);--normal-border-hover:hsl(0, 0%, 25%);--normal-text:var(--gray1);--success-bg:hsl(150, 100%, 6%);--success-border:hsl(147, 100%, 12%);--success-text:hsl(150, 86%, 65%);--info-bg:hsl(215, 100%, 6%);--info-border:hsl(223, 43%, 17%);--info-text:hsl(216, 87%, 65%);--warning-bg:hsl(64, 100%, 6%);--warning-border:hsl(60, 100%, 9%);--warning-text:hsl(46, 87%, 65%);--error-bg:hsl(358, 76%, 10%);--error-border:hsl(357, 89%, 16%);--error-text:hsl(358, 100%, 81%)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]{background:var(--normal-bg);border-color:var(--normal-border);color:var(--normal-text)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]:hover{background:var(--normal-bg-hover);border-color:var(--normal-border-hover)}[data-rich-colors=true][data-sonner-toast][data-type=success]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=info]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=error]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}[data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}.sonner-loading-wrapper{--size:16px;height:var(--size);width:var(--size);position:absolute;inset:0;z-index:10}.sonner-loading-wrapper[data-visible=false]{transform-origin:center;animation:sonner-fade-out .2s ease forwards}.sonner-spinner{position:relative;top:50%;left:50%;height:var(--size);width:var(--size)}.sonner-loading-bar{animation:sonner-spin 1.2s linear infinite;background:var(--gray11);border-radius:6px;height:8%;left:-10%;position:absolute;top:-3.9%;width:24%}.sonner-loading-bar:first-child{animation-delay:-1.2s;transform:rotate(.0001deg) translate(146%)}.sonner-loading-bar:nth-child(2){animation-delay:-1.1s;transform:rotate(30deg) translate(146%)}.sonner-loading-bar:nth-child(3){animation-delay:-1s;transform:rotate(60deg) translate(146%)}.sonner-loading-bar:nth-child(4){animation-delay:-.9s;transform:rotate(90deg) translate(146%)}.sonner-loading-bar:nth-child(5){animation-delay:-.8s;transform:rotate(120deg) translate(146%)}.sonner-loading-bar:nth-child(6){animation-delay:-.7s;transform:rotate(150deg) translate(146%)}.sonner-loading-bar:nth-child(7){animation-delay:-.6s;transform:rotate(180deg) translate(146%)}.sonner-loading-bar:nth-child(8){animation-delay:-.5s;transform:rotate(210deg) translate(146%)}.sonner-loading-bar:nth-child(9){animation-delay:-.4s;transform:rotate(240deg) translate(146%)}.sonner-loading-bar:nth-child(10){animation-delay:-.3s;transform:rotate(270deg) translate(146%)}.sonner-loading-bar:nth-child(11){animation-delay:-.2s;transform:rotate(300deg) translate(146%)}.sonner-loading-bar:nth-child(12){animation-delay:-.1s;transform:rotate(330deg) translate(146%)}@keyframes sonner-fade-in{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes sonner-fade-out{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.8)}}@keyframes sonner-spin{0%{opacity:1}100%{opacity:.15}}@media (prefers-reduced-motion){.sonner-loading-bar,[data-sonner-toast],[data-sonner-toast]>*{transition:none!important;animation:none!important}}.sonner-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform-origin:center;transition:opacity .2s,transform .2s}.sonner-loader[data-visible=false]{opacity:0;transform:scale(.8) translate(-50%,-50%)}");function n_e(e){return e.label!==void 0}const YNr=3,jNr="24px",WNr="16px",Xhn=4e3,KNr=356,XNr=14,QNr=45,ZNr=200;function hC(...e){return e.filter(Boolean).join(" ")}function JNr(e){const[t,r]=e.split("-"),a=[];return t&&a.push(t),r&&a.push(r),a}const eOr=e=>{var t,r,a,s,o,u,h,f,p;const{invert:m,toast:b,unstyled:_,interacting:w,setHeights:S,visibleToasts:C,heights:A,index:k,toasts:I,expanded:N,removeToast:L,defaultRichColors:P,closeButton:M,style:F,cancelButtonStyle:U,actionButtonStyle:$,className:G="",descriptionClassName:B="",duration:Z,position:z,gap:Y,expandByDefault:W,classNames:Q,icons:V,closeButtonAriaLabel:j="Close toast"}=e,[ee,te]=Er.useState(null),[ne,se]=Er.useState(null),[ie,ge]=Er.useState(!1),[ce,be]=Er.useState(!1),[ve,De]=Er.useState(!1),[ye,Ee]=Er.useState(!1),[he,we]=Er.useState(!1),[Ce,Ie]=Er.useState(0),[Le,Fe]=Er.useState(0),Ve=Er.useRef(b.duration||Z||Xhn),Oe=Er.useRef(null),Dt=Er.useRef(null),ot=k===0,sn=k+1<=C,Kt=b.type,Ft=b.dismissible!==!1,Je=b.className||"",ht=b.descriptionClassName||"",et=Er.useMemo(()=>A.findIndex(Dn=>Dn.toastId===b.id)||0,[A,b.id]),qe=Er.useMemo(()=>{var Dn;return(Dn=b.closeButton)!=null?Dn:M},[b.closeButton,M]),He=Er.useMemo(()=>b.duration||Z||Xhn,[b.duration,Z]),Ge=Er.useRef(0),Ye=Er.useRef(0),Ae=Er.useRef(0),Xe=Er.useRef(null),[fe,Qe]=z.split("-"),Ke=Er.useMemo(()=>A.reduce((Dn,zn,vn)=>vn>=et?Dn:Dn+zn.height,0),[A,et]),mt=$Nr(),lt=b.invert||m,$t=Kt==="loading";Ye.current=Er.useMemo(()=>et*Y+Ke,[et,Ke]),Er.useEffect(()=>{Ve.current=He},[He]),Er.useEffect(()=>{ge(!0)},[]),Er.useEffect(()=>{const Dn=Dt.current;if(Dn){const zn=Dn.getBoundingClientRect().height;return Fe(zn),S(vn=>[{toastId:b.id,height:zn,position:b.position},...vn]),()=>S(vn=>vn.filter(Cn=>Cn.toastId!==b.id))}},[S,b.id]),Er.useLayoutEffect(()=>{if(!ie)return;const Dn=Dt.current,zn=Dn.style.height;Dn.style.height="auto";const vn=Dn.getBoundingClientRect().height;Dn.style.height=zn,Fe(vn),S(Cn=>Cn.find(ur=>ur.toastId===b.id)?Cn.map(ur=>ur.toastId===b.id?{...ur,height:vn}:ur):[{toastId:b.id,height:vn,position:b.position},...Cn])},[ie,b.title,b.description,S,b.id,b.jsx,b.action,b.cancel]);const Ut=Er.useCallback(()=>{be(!0),Ie(Ye.current),S(Dn=>Dn.filter(zn=>zn.toastId!==b.id)),setTimeout(()=>{L(b)},ZNr)},[b,L,S,Ye]);Er.useEffect(()=>{if(b.promise&&Kt==="loading"||b.duration===1/0||b.type==="loading")return;let Dn;return N||w||mt?(()=>{if(Ae.current{Ve.current!==1/0&&(Ge.current=new Date().getTime(),Dn=setTimeout(()=>{b.onAutoClose==null||b.onAutoClose.call(b,b),Ut()},Ve.current))})(),()=>clearTimeout(Dn)},[N,w,b,Kt,mt,Ut]),Er.useEffect(()=>{b.delete&&(Ut(),b.onDismiss==null||b.onDismiss.call(b,b))},[Ut,b.delete]);function Jt(){var Dn;if(V!=null&&V.loading){var zn;return Er.createElement("div",{className:hC(Q==null?void 0:Q.loader,b==null||(zn=b.classNames)==null?void 0:zn.loader,"sonner-loader"),"data-visible":Kt==="loading"},V.loading)}return Er.createElement(LNr,{className:hC(Q==null?void 0:Q.loader,b==null||(Dn=b.classNames)==null?void 0:Dn.loader),visible:Kt==="loading"})}const wn=b.icon||(V==null?void 0:V[Kt])||NNr(Kt);var Vn,Wn;return Er.createElement("li",{tabIndex:0,ref:Dt,className:hC(G,Je,Q==null?void 0:Q.toast,b==null||(t=b.classNames)==null?void 0:t.toast,Q==null?void 0:Q.default,Q==null?void 0:Q[Kt],b==null||(r=b.classNames)==null?void 0:r[Kt]),"data-sonner-toast":"","data-rich-colors":(Vn=b.richColors)!=null?Vn:P,"data-styled":!(b.jsx||b.unstyled||_),"data-mounted":ie,"data-promise":!!b.promise,"data-swiped":he,"data-removed":ce,"data-visible":sn,"data-y-position":fe,"data-x-position":Qe,"data-index":k,"data-front":ot,"data-swiping":ve,"data-dismissible":Ft,"data-type":Kt,"data-invert":lt,"data-swipe-out":ye,"data-swipe-direction":ne,"data-expanded":!!(N||W&&ie),"data-testid":b.testId,style:{"--index":k,"--toasts-before":k,"--z-index":I.length-k,"--offset":`${ce?Ce:Ye.current}px`,"--initial-height":W?"auto":`${Le}px`,...F,...b.style},onDragEnd:()=>{De(!1),te(null),Xe.current=null},onPointerDown:Dn=>{Dn.button!==2&&($t||!Ft||(Oe.current=new Date,Ie(Ye.current),Dn.target.setPointerCapture(Dn.pointerId),Dn.target.tagName!=="BUTTON"&&(De(!0),Xe.current={x:Dn.clientX,y:Dn.clientY})))},onPointerUp:()=>{var Dn,zn,vn;if(ye||!Ft)return;Xe.current=null;const Cn=Number(((Dn=Dt.current)==null?void 0:Dn.style.getPropertyValue("--swipe-amount-x").replace("px",""))||0),Ar=Number(((zn=Dt.current)==null?void 0:zn.style.getPropertyValue("--swipe-amount-y").replace("px",""))||0),ur=new Date().getTime()-((vn=Oe.current)==null?void 0:vn.getTime()),On=ee==="x"?Cn:Ar,Ir=Math.abs(On)/ur;if(Math.abs(On)>=QNr||Ir>.11){Ie(Ye.current),b.onDismiss==null||b.onDismiss.call(b,b),se(ee==="x"?Cn>0?"right":"left":Ar>0?"down":"up"),Ut(),Ee(!0);return}else{var Ln,pr;(Ln=Dt.current)==null||Ln.style.setProperty("--swipe-amount-x","0px"),(pr=Dt.current)==null||pr.style.setProperty("--swipe-amount-y","0px")}we(!1),De(!1),te(null)},onPointerMove:Dn=>{var zn,vn,Cn;if(!Xe.current||!Ft||((zn=window.getSelection())==null?void 0:zn.toString().length)>0)return;const ur=Dn.clientY-Xe.current.y,On=Dn.clientX-Xe.current.x;var Ir;const Ln=(Ir=e.swipeDirections)!=null?Ir:JNr(z);!ee&&(Math.abs(On)>1||Math.abs(ur)>1)&&te(Math.abs(On)>Math.abs(ur)?"x":"y");let pr={x:0,y:0};const Cr=Zr=>1/(1.5+Math.abs(Zr)/20);if(ee==="y"){if(Ln.includes("top")||Ln.includes("bottom"))if(Ln.includes("top")&&ur<0||Ln.includes("bottom")&&ur>0)pr.y=ur;else{const Zr=ur*Cr(ur);pr.y=Math.abs(Zr)0)pr.x=On;else{const Zr=On*Cr(On);pr.x=Math.abs(Zr)0||Math.abs(pr.y)>0)&&we(!0),(vn=Dt.current)==null||vn.style.setProperty("--swipe-amount-x",`${pr.x}px`),(Cn=Dt.current)==null||Cn.style.setProperty("--swipe-amount-y",`${pr.y}px`)}},qe&&!b.jsx&&Kt!=="loading"?Er.createElement("button",{"aria-label":j,"data-disabled":$t,"data-close-button":!0,onClick:$t||!Ft?()=>{}:()=>{Ut(),b.onDismiss==null||b.onDismiss.call(b,b)},className:hC(Q==null?void 0:Q.closeButton,b==null||(a=b.classNames)==null?void 0:a.closeButton)},(Wn=V==null?void 0:V.close)!=null?Wn:FNr):null,(Kt||b.icon||b.promise)&&b.icon!==null&&((V==null?void 0:V[Kt])!==null||b.icon)?Er.createElement("div",{"data-icon":"",className:hC(Q==null?void 0:Q.icon,b==null||(s=b.classNames)==null?void 0:s.icon)},b.promise||b.type==="loading"&&!b.icon?b.icon||Jt():null,b.type!=="loading"?wn:null):null,Er.createElement("div",{"data-content":"",className:hC(Q==null?void 0:Q.content,b==null||(o=b.classNames)==null?void 0:o.content)},Er.createElement("div",{"data-title":"",className:hC(Q==null?void 0:Q.title,b==null||(u=b.classNames)==null?void 0:u.title)},b.jsx?b.jsx:typeof b.title=="function"?b.title():b.title),b.description?Er.createElement("div",{"data-description":"",className:hC(B,ht,Q==null?void 0:Q.description,b==null||(h=b.classNames)==null?void 0:h.description)},typeof b.description=="function"?b.description():b.description):null),Er.isValidElement(b.cancel)?b.cancel:b.cancel&&n_e(b.cancel)?Er.createElement("button",{"data-button":!0,"data-cancel":!0,style:b.cancelButtonStyle||U,onClick:Dn=>{n_e(b.cancel)&&Ft&&(b.cancel.onClick==null||b.cancel.onClick.call(b.cancel,Dn),Ut())},className:hC(Q==null?void 0:Q.cancelButton,b==null||(f=b.classNames)==null?void 0:f.cancelButton)},b.cancel.label):null,Er.isValidElement(b.action)?b.action:b.action&&n_e(b.action)?Er.createElement("button",{"data-button":!0,"data-action":!0,style:b.actionButtonStyle||$,onClick:Dn=>{n_e(b.action)&&(b.action.onClick==null||b.action.onClick.call(b.action,Dn),!Dn.defaultPrevented&&Ut())},className:hC(Q==null?void 0:Q.actionButton,b==null||(p=b.classNames)==null?void 0:p.actionButton)},b.action.label):null)};function Qhn(){if(typeof window>"u"||typeof document>"u")return"ltr";const e=document.documentElement.getAttribute("dir");return e==="auto"||!e?window.getComputedStyle(document.documentElement).direction:e}function tOr(e,t){const r={};return[e,t].forEach((a,s)=>{const o=s===1,u=o?"--mobile-offset":"--offset",h=o?WNr:jNr;function f(p){["top","right","bottom","left"].forEach(m=>{r[`${u}-${m}`]=typeof p=="number"?`${p}px`:p})}typeof a=="number"||typeof a=="string"?f(a):typeof a=="object"?["top","right","bottom","left"].forEach(p=>{a[p]===void 0?r[`${u}-${p}`]=h:r[`${u}-${p}`]=typeof a[p]=="number"?`${a[p]}px`:a[p]}):f(h)}),r}const S4a=Er.forwardRef(function(t,r){const{id:a,invert:s,position:o="bottom-right",hotkey:u=["altKey","KeyT"],expand:h,closeButton:f,className:p,offset:m,mobileOffset:b,theme:_="light",richColors:w,duration:S,style:C,visibleToasts:A=YNr,toastOptions:k,dir:I=Qhn(),gap:N=XNr,icons:L,containerAriaLabel:P="Notifications"}=t,[M,F]=Er.useState([]),U=Er.useMemo(()=>a?M.filter(ie=>ie.toasterId===a):M.filter(ie=>!ie.toasterId),[M,a]),$=Er.useMemo(()=>Array.from(new Set([o].concat(U.filter(ie=>ie.position).map(ie=>ie.position)))),[U,o]),[G,B]=Er.useState([]),[Z,z]=Er.useState(!1),[Y,W]=Er.useState(!1),[Q,V]=Er.useState(_!=="system"?_:typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"),j=Er.useRef(null),ee=u.join("+").replace(/Key/g,"").replace(/Digit/g,""),te=Er.useRef(null),ne=Er.useRef(!1),se=Er.useCallback(ie=>{F(ge=>{var ce;return(ce=ge.find(be=>be.id===ie.id))!=null&&ce.delete||L2.dismiss(ie.id),ge.filter(({id:be})=>be!==ie.id)})},[]);return Er.useEffect(()=>L2.subscribe(ie=>{if(ie.dismiss){requestAnimationFrame(()=>{F(ge=>ge.map(ce=>ce.id===ie.id?{...ce,delete:!0}:ce))});return}setTimeout(()=>{odt.flushSync(()=>{F(ge=>{const ce=ge.findIndex(be=>be.id===ie.id);return ce!==-1?[...ge.slice(0,ce),{...ge[ce],...ie},...ge.slice(ce+1)]:[ie,...ge]})})})}),[M]),Er.useEffect(()=>{if(_!=="system"){V(_);return}if(_==="system"&&(window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?V("dark"):V("light")),typeof window>"u")return;const ie=window.matchMedia("(prefers-color-scheme: dark)");try{ie.addEventListener("change",({matches:ge})=>{V(ge?"dark":"light")})}catch{ie.addListener(({matches:ce})=>{try{V(ce?"dark":"light")}catch(be){console.error(be)}})}},[_]),Er.useEffect(()=>{M.length<=1&&z(!1)},[M]),Er.useEffect(()=>{const ie=ge=>{var ce;if(u.every(De=>ge[De]||ge.code===De)){var ve;z(!0),(ve=j.current)==null||ve.focus()}ge.code==="Escape"&&(document.activeElement===j.current||(ce=j.current)!=null&&ce.contains(document.activeElement))&&z(!1)};return document.addEventListener("keydown",ie),()=>document.removeEventListener("keydown",ie)},[u]),Er.useEffect(()=>{if(j.current)return()=>{te.current&&(te.current.focus({preventScroll:!0}),te.current=null,ne.current=!1)}},[j.current]),Er.createElement("section",{ref:r,"aria-label":`${P} ${ee}`,tabIndex:-1,"aria-live":"polite","aria-relevant":"additions text","aria-atomic":"false",suppressHydrationWarning:!0},$.map((ie,ge)=>{var ce;const[be,ve]=ie.split("-");return U.length?Er.createElement("ol",{key:ie,dir:I==="auto"?Qhn():I,tabIndex:-1,ref:j,className:p,"data-sonner-toaster":!0,"data-sonner-theme":Q,"data-y-position":be,"data-x-position":ve,style:{"--front-toast-height":`${((ce=G[0])==null?void 0:ce.height)||0}px`,"--width":`${KNr}px`,"--gap":`${N}px`,...C,...tOr(m,b)},onBlur:De=>{ne.current&&!De.currentTarget.contains(De.relatedTarget)&&(ne.current=!1,te.current&&(te.current.focus({preventScroll:!0}),te.current=null))},onFocus:De=>{De.target instanceof HTMLElement&&De.target.dataset.dismissible==="false"||ne.current||(ne.current=!0,te.current=De.relatedTarget)},onMouseEnter:()=>z(!0),onMouseMove:()=>z(!0),onMouseLeave:()=>{Y||z(!1)},onDragEnd:()=>z(!1),onPointerDown:De=>{De.target instanceof HTMLElement&&De.target.dataset.dismissible==="false"||W(!0)},onPointerUp:()=>W(!1)},U.filter(De=>!De.position&&ge===0||De.position===ie).map((De,ye)=>{var Ee,he;return Er.createElement(eOr,{key:De.id,icons:L,index:ye,toast:De,defaultRichColors:w,duration:(Ee=k==null?void 0:k.duration)!=null?Ee:S,className:k==null?void 0:k.className,descriptionClassName:k==null?void 0:k.descriptionClassName,invert:s,visibleToasts:A,closeButton:(he=k==null?void 0:k.closeButton)!=null?he:f,interacting:Y,position:ie,style:k==null?void 0:k.style,unstyled:k==null?void 0:k.unstyled,classNames:k==null?void 0:k.classNames,cancelButtonStyle:k==null?void 0:k.cancelButtonStyle,actionButtonStyle:k==null?void 0:k.actionButtonStyle,closeButtonAriaLabel:k==null?void 0:k.closeButtonAriaLabel,removeToast:se,toasts:U.filter(we=>we.position==De.position),heights:G.filter(we=>we.position==De.position),setHeights:B,expandByDefault:h,gap:N,expanded:Z,swipeDirections:t.swipeDirections})})):null}))});function T4a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dj(e){"@babel/helpers - typeof";return dj=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},dj(e)}function nOr(e,t){if(dj(e)!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var a=r.call(e,t);if(dj(a)!="object")return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}function yAn(e){var t=nOr(e,"string");return dj(t)=="symbol"?t:t+""}function rOr(e,t){for(var r=0;re.length)&&(t=e.length);for(var r=0,a=Array(t);r=4;++a,s-=4)r=e.charCodeAt(a)&255|(e.charCodeAt(++a)&255)<<8|(e.charCodeAt(++a)&255)<<16|(e.charCodeAt(++a)&255)<<24,r=(r&65535)*1540483477+((r>>>16)*59797<<16),r^=r>>>24,t=(r&65535)*1540483477+((r>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(s){case 3:t^=(e.charCodeAt(a+2)&255)<<16;case 2:t^=(e.charCodeAt(a+1)&255)<<8;case 1:t^=e.charCodeAt(a)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var I4a={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},dd="-ms-",Vae="-moz-",Eu="-webkit-",xAn="comm",hdt="rule",ddt="decl",uOr="@import",hOr="@namespace",SAn="@keyframes",dOr="@layer",TAn=Math.abs,fdt=String.fromCharCode,$at=Object.assign;function fOr(e,t){return _p(e,0)^45?(((t<<2^_p(e,0))<<2^_p(e,1))<<2^_p(e,2))<<2^_p(e,3):0}function CAn(e){return e.trim()}function o7(e,t){return(e=t.exec(e))?e[0]:e}function Ml(e,t,r){return e.replace(t,r)}function NEe(e,t,r){return e.indexOf(t,r)}function _p(e,t){return e.charCodeAt(t)|0}function yF(e,t,r){return e.slice(t,r)}function k3(e){return e.length}function AAn(e){return e.length}function Eie(e,t){return t.push(e),e}function pOr(e,t){return e.map(t).join("")}function Jhn(e,t){return e.filter(function(r){return!o7(r,t)})}var L5e=1,fj=1,kAn=0,pS=0,C1=0,mW="";function D5e(e,t,r,a,s,o,u,h){return{value:e,root:t,parent:r,type:a,props:s,children:o,line:L5e,column:fj,length:u,return:"",siblings:h}}function zN(e,t){return $at(D5e("",null,null,"",null,null,0,e.siblings),e,{length:-e.length},t)}function IH(e){for(;e.root;)e=zN(e.root,{children:[e]});Eie(e,e.siblings)}function gOr(){return C1}function mOr(){return C1=pS>0?_p(mW,--pS):0,fj--,C1===10&&(fj=1,L5e--),C1}function H3(){return C1=pS2||zse(C1)>3?"":" "}function _Or(e,t){for(;--t&&H3()&&!(C1<48||C1>102||C1>57&&C1<65||C1>70&&C1<97););return M5e(e,OEe()+(t<6&&oO()==32&&H3()==32))}function Uat(e){for(;H3();)switch(C1){case e:return pS;case 34:case 39:e!==34&&e!==39&&Uat(C1);break;case 40:e===41&&Uat(e);break;case 92:H3();break}return pS}function wOr(e,t){for(;H3()&&e+C1!==57;)if(e+C1===84&&oO()===47)break;return"/*"+M5e(t,pS-1)+"*"+fdt(e===47?e:H3())}function EOr(e){for(;!zse(oO());)H3();return M5e(e,pS)}function RAn(e){return yOr(LEe("",null,null,null,[""],e=bOr(e),0,[0],e))}function LEe(e,t,r,a,s,o,u,h,f){for(var p=0,m=0,b=u,_=0,w=0,S=0,C=1,A=1,k=1,I=0,N="",L=s,P=o,M=a,F=N;A;)switch(S=I,I=H3()){case 40:if(S!=108&&_p(F,b-1)==58){NEe(F+=Ml(hXe(I),"&","&\f"),"&\f",TAn(p?h[p-1]:0))!=-1&&(k=-1);break}case 34:case 39:case 91:F+=hXe(I);break;case 9:case 10:case 13:case 32:F+=vOr(S);break;case 92:F+=_Or(OEe()-1,7);continue;case 47:switch(oO()){case 42:case 47:Eie(xOr(wOr(H3(),OEe()),t,r,f),f),(zse(S||1)==5||zse(oO()||1)==5)&&k3(F)&&yF(F,-1,void 0)!==" "&&(F+=" ");break;default:F+="/"}break;case 123*C:h[p++]=k3(F)*k;case 125*C:case 59:case 0:switch(I){case 0:case 125:A=0;case 59+m:k==-1&&(F=Ml(F,/\f/g,"")),w>0&&(k3(F)-b||C===0&&S===47)&&Eie(w>32?tdn(F+";",a,r,b-1,f):tdn(Ml(F," ","")+";",a,r,b-2,f),f);break;case 59:F+=";";default:if(Eie(M=edn(F,t,r,p,m,s,h,N,L=[],P=[],b,o),o),I===123)if(m===0)LEe(F,t,M,M,L,o,b,h,P);else{switch(_){case 99:if(_p(F,3)===110)break;case 108:if(_p(F,2)===97)break;default:m=0;case 100:case 109:case 115:}m?LEe(e,M,M,a&&Eie(edn(e,M,M,0,0,s,h,N,s,L=[],b,P),P),s,P,b,h,a?L:P):LEe(F,M,M,M,[""],P,0,h,P)}}p=m=w=0,C=k=1,N=F="",b=u;break;case 58:b=1+k3(F),w=S;default:if(C<1){if(I==123)--C;else if(I==125&&C++==0&&mOr()==125)continue}switch(F+=fdt(I),I*C){case 38:k=m>0?1:(F+="\f",-1);break;case 44:h[p++]=(k3(F)-1)*k,k=1;break;case 64:oO()===45&&(F+=hXe(H3())),_=oO(),m=b=k3(N=F+=EOr(OEe())),I++;break;case 45:S===45&&k3(F)==2&&(C=0)}}return o}function edn(e,t,r,a,s,o,u,h,f,p,m,b){for(var _=s-1,w=s===0?o:[""],S=AAn(w),C=0,A=0,k=0;C0?w[I]+" "+N:Ml(N,/&\f/g,w[I])))&&(f[k++]=L);return D5e(e,t,r,s===0?hdt:h,f,p,m,b)}function xOr(e,t,r,a){return D5e(e,t,r,xAn,fdt(gOr()),yF(e,2,-2),0,a)}function tdn(e,t,r,a,s){return D5e(e,t,r,ddt,yF(e,0,a),yF(e,a+1,-1),a,s)}function IAn(e,t,r){switch(fOr(e,t)){case 5103:return Eu+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:case 6391:case 5879:case 5623:case 6135:case 4599:return Eu+e+e;case 4855:return Eu+e.replace("add","source-over").replace("substract","source-out").replace("intersect","source-in").replace("exclude","xor")+e;case 4789:return Vae+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return Eu+e+Vae+e+dd+e+e;case 5936:switch(_p(e,t+11)){case 114:return Eu+e+dd+Ml(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return Eu+e+dd+Ml(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return Eu+e+dd+Ml(e,/[svh]\w+-[tblr]{2}/,"lr")+e}case 6828:case 4268:case 2903:return Eu+e+dd+e+e;case 6165:return Eu+e+dd+"flex-"+e+e;case 5187:return Eu+e+Ml(e,/(\w+).+(:[^]+)/,Eu+"box-$1$2"+dd+"flex-$1$2")+e;case 5443:return Eu+e+dd+"flex-item-"+Ml(e,/flex-|-self/g,"")+(o7(e,/flex-|baseline/)?"":dd+"grid-row-"+Ml(e,/flex-|-self/g,""))+e;case 4675:return Eu+e+dd+"flex-line-pack"+Ml(e,/align-content|flex-|-self/g,"")+e;case 5548:return Eu+e+dd+Ml(e,"shrink","negative")+e;case 5292:return Eu+e+dd+Ml(e,"basis","preferred-size")+e;case 6060:return Eu+"box-"+Ml(e,"-grow","")+Eu+e+dd+Ml(e,"grow","positive")+e;case 4554:return Eu+Ml(e,/([^-])(transform)/g,"$1"+Eu+"$2")+e;case 6187:return Ml(Ml(Ml(e,/(zoom-|grab)/,Eu+"$1"),/(image-set)/,Eu+"$1"),e,"")+e;case 5495:case 3959:return Ml(e,/(image-set\([^]*)/,Eu+"$1$`$1");case 4968:return Ml(Ml(e,/(.+:)(flex-)?(.*)/,Eu+"box-pack:$3"+dd+"flex-pack:$3"),/space-between/,"justify")+Eu+e+e;case 4200:if(!o7(e,/flex-|baseline/))return dd+"grid-column-align"+yF(e,t)+e;break;case 2592:case 3360:return dd+Ml(e,"template-","")+e;case 4384:case 3616:return r&&r.some(function(a,s){return t=s,o7(a.props,/grid-\w+-end/)})?~NEe(e+(r=r[t].value),"span",0)?e:dd+Ml(e,"-start","")+e+dd+"grid-row-span:"+(~NEe(r,"span",0)?o7(r,/\d+/):+o7(r,/\d+/)-+o7(e,/\d+/))+";":dd+Ml(e,"-start","")+e;case 4896:case 4128:return r&&r.some(function(a){return o7(a.props,/grid-\w+-start/)})?e:dd+Ml(Ml(e,"-end","-span"),"span ","")+e;case 4095:case 3583:case 4068:case 2532:return Ml(e,/(.+)-inline(.+)/,Eu+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(k3(e)-1-t>6)switch(_p(e,t+1)){case 109:if(_p(e,t+4)!==45)break;case 102:return Ml(e,/(.+:)(.+)-([^]+)/,"$1"+Eu+"$2-$3$1"+Vae+(_p(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~NEe(e,"stretch",0)?IAn(Ml(e,"stretch","fill-available"),t,r)+e:e}break;case 5152:case 5920:return Ml(e,/(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/,function(a,s,o,u,h,f,p){return dd+s+":"+o+p+(u?dd+s+"-span:"+(h?f:+f-+o)+p:"")+e});case 4949:if(_p(e,t+6)===121)return Ml(e,":",":"+Eu)+e;break;case 6444:switch(_p(e,_p(e,14)===45?18:11)){case 120:return Ml(e,/(.+:)([^;\s!]+)(;|(\s+)?!.+)?/,"$1"+Eu+(_p(e,14)===45?"inline-":"")+"box$3$1"+Eu+"$2$3$1"+dd+"$2box$3")+e;case 100:return Ml(e,":",":"+dd)+e}break;case 5719:case 2647:case 2135:case 3927:case 2391:return Ml(e,"scroll-","scroll-snap-")+e}return e}function Gse(e,t){for(var r="",a=0;a-1&&!e.return)switch(e.type){case ddt:e.return=IAn(e.value,e.length,r);return;case SAn:return Gse([zN(e,{value:Ml(e.value,"@","@"+Eu)})],a);case hdt:if(e.length)return pOr(r=e.props,function(s){switch(o7(s,a=/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":IH(zN(e,{props:[Ml(s,/:(read-\w+)/,":"+Vae+"$1")]})),IH(zN(e,{props:[s]})),$at(e,{props:Jhn(r,a)});break;case"::placeholder":IH(zN(e,{props:[Ml(s,/:(plac\w+)/,":"+Eu+"input-$1")]})),IH(zN(e,{props:[Ml(s,/:(plac\w+)/,":"+Vae+"$1")]})),IH(zN(e,{props:[Ml(s,/:(plac\w+)/,dd+"input-$1")]})),IH(zN(e,{props:[s]})),$at(e,{props:Jhn(r,a)});break}return""})}}function pj(e){"@babel/helpers - typeof";return pj=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},pj(e)}function SOr(e){if(Array.isArray(e))return e}function TOr(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var a,s,o,u,h=[],f=!0,p=!1;try{if(o=(r=r.call(e)).next,t===0){if(Object(r)!==r)return;f=!1}else for(;!(f=(a=o.call(r)).done)&&(h.push(a.value),h.length!==t);f=!0);}catch(m){p=!0,s=m}finally{try{if(!f&&r.return!=null&&(u=r.return(),Object(u)!==u))return}finally{if(p)throw s}}return h}}function zat(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,a=Array(t);rtypeof e=="object"&&e!=null&&e.nodeType===1,adn=(e,t)=>(!t||e!=="hidden")&&e!=="visible"&&e!=="clip",r_e=(e,t)=>{if(e.clientHeight{const s=(o=>{if(!o.ownerDocument||!o.ownerDocument.defaultView)return null;try{return o.ownerDocument.defaultView.frameElement}catch{return null}})(a);return!!s&&(s.clientHeightot||o>e&&u=t&&h>=r?o-e-a:u>t&&hr?u-t+s:0,POr=e=>{const t=e.parentElement;return t??(e.getRootNode().host||null)},sdn=(e,t)=>{var r,a,s,o;if(typeof document>"u")return[];const{scrollMode:u,block:h,inline:f,boundary:p,skipOverflowHiddenElements:m}=t,b=typeof p=="function"?p:Q=>Q!==p;if(!idn(e))throw new TypeError("Invalid target");const _=document.scrollingElement||document.documentElement,w=[];let S=e;for(;idn(S)&&b(S);){if(S=POr(S),S===_){w.push(S);break}S!=null&&S===document.body&&r_e(S)&&!r_e(document.documentElement)||S!=null&&r_e(S,m)&&w.push(S)}const C=(a=(r=window.visualViewport)==null?void 0:r.width)!=null?a:innerWidth,A=(o=(s=window.visualViewport)==null?void 0:s.height)!=null?o:innerHeight,{scrollX:k,scrollY:I}=window,{height:N,width:L,top:P,right:M,bottom:F,left:U}=e.getBoundingClientRect(),{top:$,right:G,bottom:B,left:Z}=(Q=>{const V=window.getComputedStyle(Q);return{top:parseFloat(V.scrollMarginTop)||0,right:parseFloat(V.scrollMarginRight)||0,bottom:parseFloat(V.scrollMarginBottom)||0,left:parseFloat(V.scrollMarginLeft)||0}})(e);let z=h==="start"||h==="nearest"?P-$:h==="end"?F+B:P+N/2-$+B,Y=f==="center"?U+L/2-Z+G:f==="end"?M+G:U-Z;const W=[];for(let Q=0;Q=0&&U>=0&&F<=A&&M<=C&&(V===_&&!r_e(V)||P>=te&&F<=se&&U>=ie&&M<=ne))return W;const ge=getComputedStyle(V),ce=parseInt(ge.borderLeftWidth,10),be=parseInt(ge.borderTopWidth,10),ve=parseInt(ge.borderRightWidth,10),De=parseInt(ge.borderBottomWidth,10);let ye=0,Ee=0;const he="offsetWidth"in V?V.offsetWidth-V.clientWidth-ce-ve:0,we="offsetHeight"in V?V.offsetHeight-V.clientHeight-be-De:0,Ce="offsetWidth"in V?V.offsetWidth===0?0:ee/V.offsetWidth:0,Ie="offsetHeight"in V?V.offsetHeight===0?0:j/V.offsetHeight:0;if(_===V)ye=h==="start"?z:h==="end"?z-A:h==="nearest"?i_e(I,I+A,A,be,De,I+z,I+z+N,N):z-A/2,Ee=f==="start"?Y:f==="center"?Y-C/2:f==="end"?Y-C:i_e(k,k+C,C,ce,ve,k+Y,k+Y+L,L),ye=Math.max(0,ye+I),Ee=Math.max(0,Ee+k);else{ye=h==="start"?z-te-be:h==="end"?z-se+De+we:h==="nearest"?i_e(te,se,j,be,De+we,z,z+N,N):z-(te+j/2)+we/2,Ee=f==="start"?Y-ie-ce:f==="center"?Y-(ie+ee/2)+he/2:f==="end"?Y-ne+ve+he:i_e(ie,ne,ee,ce,ve+he,Y,Y+L,L);const{scrollLeft:Le,scrollTop:Fe}=V;ye=Ie===0?0:Math.max(0,Math.min(Fe+ye/Ie,V.scrollHeight-j/Ie+we)),Ee=Ce===0?0:Math.max(0,Math.min(Le+Ee/Ce,V.scrollWidth-ee/Ce+he)),z+=Fe-ye,Y+=Le-Ee}W.push({el:V,top:ye,left:Ee})}return W},BOr=e=>e===!1?{block:"end",inline:"nearest"}:(t=>t===Object(t)&&Object.keys(t).length!==0)(e)?e:{block:"start",inline:"nearest"};function z4a(e,t){if(!e.isConnected||!(s=>{let o=s;for(;o&&o.parentNode;){if(o.parentNode===document)return!0;o=o.parentNode instanceof ShadowRoot?o.parentNode.host:o.parentNode}return!1})(e))return;const r=(s=>{const o=window.getComputedStyle(s);return{top:parseFloat(o.scrollMarginTop)||0,right:parseFloat(o.scrollMarginRight)||0,bottom:parseFloat(o.scrollMarginBottom)||0,left:parseFloat(o.scrollMarginLeft)||0}})(e);if((s=>typeof s=="object"&&typeof s.behavior=="function")(t))return t.behavior(sdn(e,t));const a=typeof t=="boolean"||t==null?void 0:t.behavior;for(const{el:s,top:o,left:u}of sdn(e,BOr(t))){const h=o-r.top+r.bottom,f=u-r.left+r.right;s.scroll({top:h,left:f,behavior:a})}}function n_(){return n_=Object.assign?Object.assign.bind():function(e){for(var t=1;t=W?Y:""+Array(W+1-V.length).join(Q)+Y},L={s:N,z:function(Y){var W=-Y.utcOffset(),Q=Math.abs(W),V=Math.floor(Q/60),j=Q%60;return(W<=0?"+":"-")+N(V,2,"0")+":"+N(j,2,"0")},m:function Y(W,Q){if(W.date()1)return Y(te[0])}else{var ne=W.name;M[ne]=W,j=ne}return!V&&j&&(P=j),j||!V&&P},G=function(Y,W){if(U(Y))return Y.clone();var Q=typeof W=="object"?W:{};return Q.date=Y,Q.args=arguments,new Z(Q)},B=L;B.l=$,B.i=U,B.w=function(Y,W){return G(Y,{locale:W.$L,utc:W.$u,x:W.$x,$offset:W.$offset})};var Z=function(){function Y(Q){this.$L=$(Q.locale,null,!0),this.parse(Q),this.$x=this.$x||Q.x||{},this[F]=!0}var W=Y.prototype;return W.parse=function(Q){this.$d=function(V){var j=V.date,ee=V.utc;if(j===null)return new Date(NaN);if(B.u(j))return new Date;if(j instanceof Date)return new Date(j);if(typeof j=="string"&&!/Z$/i.test(j)){var te=j.match(A);if(te){var ne=te[2]-1||0,se=(te[7]||"0").substring(0,3);return ee?new Date(Date.UTC(te[1],ne,te[3]||1,te[4]||0,te[5]||0,te[6]||0,se)):new Date(te[1],ne,te[3]||1,te[4]||0,te[5]||0,te[6]||0,se)}}return new Date(j)}(Q),this.init()},W.init=function(){var Q=this.$d;this.$y=Q.getFullYear(),this.$M=Q.getMonth(),this.$D=Q.getDate(),this.$W=Q.getDay(),this.$H=Q.getHours(),this.$m=Q.getMinutes(),this.$s=Q.getSeconds(),this.$ms=Q.getMilliseconds()},W.$utils=function(){return B},W.isValid=function(){return this.$d.toString()!==C},W.isSame=function(Q,V){var j=G(Q);return this.startOf(V)<=j&&j<=this.endOf(V)},W.isAfter=function(Q,V){return G(Q)68?1900:2e3)},m=function(A){return function(k){this[A]=+k}},b=[/[+-]\d\d:?(\d\d)?|Z/,function(A){(this.zone||(this.zone={})).offset=function(k){if(!k||k==="Z")return 0;var I=k.match(/([+-]|\d\d)/g),N=60*I[1]+(+I[2]||0);return N===0?0:I[0]==="+"?-N:N}(A)}],_=function(A){var k=f[A];return k&&(k.indexOf?k:k.s.concat(k.f))},w=function(A,k){var I,N=f.meridiem;if(N){for(var L=1;L<=24;L+=1)if(A.indexOf(N(L,0,k))>-1){I=L>12;break}}else I=A===(k?"pm":"PM");return I},S={A:[h,function(A){this.afternoon=w(A,!1)}],a:[h,function(A){this.afternoon=w(A,!0)}],Q:[s,function(A){this.month=3*(A-1)+1}],S:[s,function(A){this.milliseconds=100*+A}],SS:[o,function(A){this.milliseconds=10*+A}],SSS:[/\d{3}/,function(A){this.milliseconds=+A}],s:[u,m("seconds")],ss:[u,m("seconds")],m:[u,m("minutes")],mm:[u,m("minutes")],H:[u,m("hours")],h:[u,m("hours")],HH:[u,m("hours")],hh:[u,m("hours")],D:[u,m("day")],DD:[o,m("day")],Do:[h,function(A){var k=f.ordinal,I=A.match(/\d+/);if(this.day=I[0],k)for(var N=1;N<=31;N+=1)k(N).replace(/\[|\]/g,"")===A&&(this.day=N)}],w:[u,m("week")],ww:[o,m("week")],M:[u,m("month")],MM:[o,m("month")],MMM:[h,function(A){var k=_("months"),I=(_("monthsShort")||k.map(function(N){return N.slice(0,3)})).indexOf(A)+1;if(I<1)throw new Error;this.month=I%12||I}],MMMM:[h,function(A){var k=_("months").indexOf(A)+1;if(k<1)throw new Error;this.month=k%12||k}],Y:[/[+-]?\d+/,m("year")],YY:[o,function(A){this.year=p(A)}],YYYY:[/\d{4}/,m("year")],Z:b,ZZ:b};function C(A){var k,I;k=A,I=f&&f.formats;for(var N=(A=k.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(G,B,Z){var z=Z&&Z.toUpperCase();return B||I[Z]||r[Z]||I[z].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(Y,W,Q){return W||Q.slice(1)})})).match(a),L=N.length,P=0;P-1)return new Date((j==="X"?1e3:1)*V);var ne=C(j)(V),se=ne.year,ie=ne.month,ge=ne.day,ce=ne.hours,be=ne.minutes,ve=ne.seconds,De=ne.milliseconds,ye=ne.zone,Ee=ne.week,he=new Date,we=ge||(se||ie?1:he.getDate()),Ce=se||he.getFullYear(),Ie=0;se&&!ie||(Ie=ie>0?ie-1:he.getMonth());var Le,Fe=ce||0,Ve=be||0,Oe=ve||0,Dt=De||0;return ye?new Date(Date.UTC(Ce,Ie,we,Fe,Ve,Oe,Dt+60*ye.offset*1e3)):ee?new Date(Date.UTC(Ce,Ie,we,Fe,Ve,Oe,Dt)):(Le=new Date(Ce,Ie,we,Fe,Ve,Oe,Dt),Ee&&(Le=te(Le).week(Ee).toDate()),Le)}catch{return new Date("")}}(M,$,F,I),this.init(),z&&z!==!0&&(this.$L=this.locale(z).$L),Z&&M!=this.format($)&&(this.$d=new Date("")),f={}}else if($ instanceof Array)for(var Y=$.length,W=1;W<=Y;W+=1){U[1]=$[W-1];var Q=I.apply(this,U);if(Q.isValid()){this.$d=Q.$d,this.$L=Q.$L,this.init();break}W===Y&&(this.$d=new Date(""))}else L.call(this,P)}}})})(BAn);var GOr=BAn.exports;const FAn=O1(GOr);var P5e={exports:{}};P5e.exports=mdt;P5e.exports.isMobile=mdt;P5e.exports.default=mdt;const qOr=/(android|bb\d+|meego).+mobile|armv7l|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|redmi|series[46]0|samsungbrowser.*mobile|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i,HOr=/CrOS/,VOr=/android|ipad|playbook|silk/i;function mdt(e){e||(e={});let t=e.ua;if(!t&&typeof navigator<"u"&&(t=navigator.userAgent),t&&t.headers&&typeof t.headers["user-agent"]=="string"&&(t=t.headers["user-agent"]),typeof t!="string")return!1;let r=qOr.test(t)&&!HOr.test(t)||!!e.tablet&&VOr.test(t);return!r&&e.tablet&&e.featureDetect&&navigator&&navigator.maxTouchPoints>1&&t.indexOf("Macintosh")!==-1&&t.indexOf("Safari")!==-1&&(r=!0),r}var YOr=P5e.exports;const G4a=O1(YOr);function jOr(e,t){if(e==null)return{};var r={};for(var a in e)if({}.hasOwnProperty.call(e,a)){if(t.indexOf(a)!==-1)continue;r[a]=e[a]}return r}function q4a(e,t){if(e==null)return{};var r,a,s=jOr(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(a=0;ae?h?(_=Date.now(),o||(m=setTimeout(p?M:P,e))):P():o!==!0&&(m=setTimeout(p?M:P,p===void 0?e-L:e))}return C.cancel=S,C}function H4a(e,t,r){var a={},s=a.atBegin,o=s===void 0?!1:s;return WOr(e,t,{debounceMode:o!==!1})}function V4a(e,t){var r=typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=pdt(e))||t){r&&(e=r);var a=0,s=function(){};return{s,n:function(){return a>=e.length?{done:!0}:{done:!1,value:e[a++]}},e:function(p){throw p},f:s}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var o,u=!0,h=!1;return{s:function(){r=r.call(e)},n:function(){var p=r.next();return u=p.done,p},e:function(p){h=!0,o=p},f:function(){try{u||r.return==null||r.return()}finally{if(h)throw o}}}}function KOr(e,t){if(e==null)return{};var r={};for(var a in e)if({}.hasOwnProperty.call(e,a)){if(t.indexOf(a)!==-1)continue;r[a]=e[a]}return r}function XOr(e,t){if(e==null)return{};var r,a,s=KOr(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(a=0;a-1&&e.splice(r,1)}const gA=(e,t,r)=>r>t?t:r{};const FO={},UAn=e=>/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(e);function zAn(e){return typeof e=="object"&&e!==null}const GAn=e=>/^0[^.\s]+$/u.test(e);function qAn(e){let t;return()=>(t===void 0&&(t=e()),t)}const cS=e=>e,t9r=(e,t)=>r=>t(e(r)),Lle=(...e)=>e.reduce(t9r),Vse=(e,t,r)=>{const a=t-e;return a===0?1:(r-e)/a};class wdt{constructor(){this.subscriptions=[]}add(t){return vdt(this.subscriptions,t),()=>bSe(this.subscriptions,t)}notify(t,r,a){const s=this.subscriptions.length;if(s)if(s===1)this.subscriptions[0](t,r,a);else for(let o=0;oe*1e3,rS=e=>e/1e3;function HAn(e,t){return t?e*(1e3/t):0}const VAn=(e,t,r)=>(((1-3*r+3*t)*e+(3*r-6*t))*e+3*t)*e,n9r=1e-7,r9r=12;function i9r(e,t,r,a,s){let o,u,h=0;do u=t+(r-t)/2,o=VAn(u,a,s)-e,o>0?r=u:t=u;while(Math.abs(o)>n9r&&++hi9r(o,0,1,e,r);return o=>o===0||o===1?o:VAn(s(o),t,a)}const YAn=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,jAn=e=>t=>1-e(1-t),WAn=Dle(.33,1.53,.69,.99),Edt=jAn(WAn),KAn=YAn(Edt),XAn=e=>e>=1?1:(e*=2)<1?.5*Edt(e):.5*(2-Math.pow(2,-10*(e-1))),xdt=e=>1-Math.sin(Math.acos(e)),QAn=jAn(xdt),ZAn=YAn(xdt),a9r=Dle(.42,0,1,1),s9r=Dle(0,0,.58,1),JAn=Dle(.42,0,.58,1),o9r=e=>Array.isArray(e)&&typeof e[0]!="number",ekn=e=>Array.isArray(e)&&typeof e[0]=="number",l9r={linear:cS,easeIn:a9r,easeInOut:JAn,easeOut:s9r,circIn:xdt,circInOut:ZAn,circOut:QAn,backIn:Edt,backInOut:KAn,backOut:WAn,anticipate:XAn},c9r=e=>typeof e=="string",ldn=e=>{if(ekn(e)){_dt(e.length===4);const[t,r,a,s]=e;return Dle(t,r,a,s)}else if(c9r(e))return l9r[e];return e},a_e=["setup","read","resolveKeyframes","preUpdate","update","preRender","render","postRender"];function u9r(e,t){let r=new Set,a=new Set,s=!1,o=!1;const u=new WeakSet;let h={delta:0,timestamp:0,isProcessing:!1};function f(m){u.has(m)&&(p.schedule(m),e()),m(h)}const p={schedule:(m,b=!1,_=!1)=>{const S=_&&s?r:a;return b&&u.add(m),S.add(m),m},cancel:m=>{a.delete(m),u.delete(m)},process:m=>{if(h=m,s){o=!0;return}s=!0;const b=r;r=a,a=b,r.forEach(f),r.clear(),s=!1,o&&(o=!1,p.process(m))}};return p}const h9r=40;function tkn(e,t){let r=!1,a=!0;const s={delta:0,timestamp:0,isProcessing:!1},o=()=>r=!0,u=a_e.reduce((N,L)=>(N[L]=u9r(o),N),{}),{setup:h,read:f,resolveKeyframes:p,preUpdate:m,update:b,preRender:_,render:w,postRender:S}=u,C=()=>{const N=FO.useManualTiming,L=N?s.timestamp:performance.now();r=!1,N||(s.delta=a?1e3/60:Math.max(Math.min(L-s.timestamp,h9r),1)),s.timestamp=L,s.isProcessing=!0,h.process(s),f.process(s),p.process(s),m.process(s),b.process(s),_.process(s),w.process(s),S.process(s),s.isProcessing=!1,r&&t&&(a=!1,e(C))},A=()=>{r=!0,a=!0,s.isProcessing||e(C)};return{schedule:a_e.reduce((N,L)=>{const P=u[L];return N[L]=(M,F=!1,U=!1)=>(r||A(),P.schedule(M,F,U)),N},{}),cancel:N=>{for(let L=0;L(DEe===void 0&&Vy.set(bm.isProcessing||FO.useManualTiming?bm.timestamp:performance.now()),DEe),set:e=>{DEe=e,queueMicrotask(d9r)}},nkn=e=>t=>typeof t=="string"&&t.startsWith(e),rkn=nkn("--"),f9r=nkn("var(--"),Sdt=e=>f9r(e)?p9r.test(e.split("/*")[0].trim()):!1,p9r=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu;function cdn(e){return typeof e!="string"?!1:e.split("/*")[0].includes("var(--")}const bW={test:e=>typeof e=="number",parse:parseFloat,transform:e=>e},Yse={...bW,transform:e=>gA(0,1,e)},s_e={...bW,default:1},Yae=e=>Math.round(e*1e5)/1e5,Tdt=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu;function g9r(e){return e==null}const m9r=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu,Cdt=(e,t)=>r=>!!(typeof r=="string"&&m9r.test(r)&&r.startsWith(e)||t&&!g9r(r)&&Object.prototype.hasOwnProperty.call(r,t)),ikn=(e,t,r)=>a=>{if(typeof a!="string")return a;const[s,o,u,h]=a.match(Tdt);return{[e]:parseFloat(s),[t]:parseFloat(o),[r]:parseFloat(u),alpha:h!==void 0?parseFloat(h):1}},b9r=e=>gA(0,255,e),fXe={...bW,transform:e=>Math.round(b9r(e))},YB={test:Cdt("rgb","red"),parse:ikn("red","green","blue"),transform:({red:e,green:t,blue:r,alpha:a=1})=>"rgba("+fXe.transform(e)+", "+fXe.transform(t)+", "+fXe.transform(r)+", "+Yae(Yse.transform(a))+")"};function y9r(e){let t="",r="",a="",s="";return e.length>5?(t=e.substring(1,3),r=e.substring(3,5),a=e.substring(5,7),s=e.substring(7,9)):(t=e.substring(1,2),r=e.substring(2,3),a=e.substring(3,4),s=e.substring(4,5),t+=t,r+=r,a+=a,s+=s),{red:parseInt(t,16),green:parseInt(r,16),blue:parseInt(a,16),alpha:s?parseInt(s,16)/255:1}}const qat={test:Cdt("#"),parse:y9r,transform:YB.transform},Mle=e=>({test:t=>typeof t=="string"&&t.endsWith(e)&&t.split(" ").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),GN=Mle("deg"),rA=Mle("%"),ja=Mle("px"),v9r=Mle("vh"),_9r=Mle("vw"),udn={...rA,parse:e=>rA.parse(e)/100,transform:e=>rA.transform(e*100)},SV={test:Cdt("hsl","hue"),parse:ikn("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:r,alpha:a=1})=>"hsla("+Math.round(e)+", "+rA.transform(Yae(t))+", "+rA.transform(Yae(r))+", "+Yae(Yse.transform(a))+")"},E1={test:e=>YB.test(e)||qat.test(e)||SV.test(e),parse:e=>YB.test(e)?YB.parse(e):SV.test(e)?SV.parse(e):qat.parse(e),transform:e=>typeof e=="string"?e:e.hasOwnProperty("red")?YB.transform(e):SV.transform(e),getAnimatableNone:e=>{const t=E1.parse(e);return t.alpha=0,E1.transform(t)}},w9r=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu;function E9r(e){var t,r;return isNaN(e)&&typeof e=="string"&&(((t=e.match(Tdt))==null?void 0:t.length)||0)+(((r=e.match(w9r))==null?void 0:r.length)||0)>0}const akn="number",skn="color",x9r="var",S9r="var(",hdn="${}",T9r=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function gj(e){const t=e.toString(),r=[],a={color:[],number:[],var:[]},s=[];let o=0;const h=t.replace(T9r,f=>(E1.test(f)?(a.color.push(o),s.push(skn),r.push(E1.parse(f))):f.startsWith(S9r)?(a.var.push(o),s.push(x9r),r.push(f)):(a.number.push(o),s.push(akn),r.push(parseFloat(f))),++o,hdn)).split(hdn);return{values:r,split:h,indexes:a,types:s}}function C9r(e){return gj(e).values}function okn({split:e,types:t}){const r=e.length;return a=>{let s="";for(let o=0;otypeof e=="number"?0:E1.test(e)?E1.getAnimatableNone(e):e,R9r=(e,t)=>typeof e=="number"?t!=null&&t.trim().endsWith("/")?e:0:k9r(e);function I9r(e){const t=gj(e);return okn(t)(t.values.map((a,s)=>R9r(a,t.split[s])))}const V3={test:E9r,parse:C9r,createTransformer:A9r,getAnimatableNone:I9r};function pXe(e,t,r){return 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}function N9r({hue:e,saturation:t,lightness:r,alpha:a}){e/=360,t/=100,r/=100;let s=0,o=0,u=0;if(!t)s=o=u=r;else{const h=r<.5?r*(1+t):r+t-r*t,f=2*r-h;s=pXe(f,h,e+1/3),o=pXe(f,h,e),u=pXe(f,h,e-1/3)}return{red:Math.round(s*255),green:Math.round(o*255),blue:Math.round(u*255),alpha:a}}function ySe(e,t){return r=>r>0?t:e}const vd=(e,t,r)=>e+(t-e)*r,gXe=(e,t,r)=>{const a=e*e,s=r*(t*t-a)+a;return s<0?0:Math.sqrt(s)},O9r=[qat,YB,SV],L9r=e=>O9r.find(t=>t.test(e));function ddn(e){const t=L9r(e);if(!t)return!1;let r=t.parse(e);return t===SV&&(r=N9r(r)),r}const fdn=(e,t)=>{const r=ddn(e),a=ddn(t);if(!r||!a)return ySe(e,t);const s={...r};return o=>(s.red=gXe(r.red,a.red,o),s.green=gXe(r.green,a.green,o),s.blue=gXe(r.blue,a.blue,o),s.alpha=vd(r.alpha,a.alpha,o),YB.transform(s))},Hat=new Set(["none","hidden"]);function D9r(e,t){return Hat.has(e)?r=>r<=0?e:t:r=>r>=1?t:e}function M9r(e,t){return r=>vd(e,t,r)}function Adt(e){return typeof e=="number"?M9r:typeof e=="string"?Sdt(e)?ySe:E1.test(e)?fdn:F9r:Array.isArray(e)?lkn:typeof e=="object"?E1.test(e)?fdn:P9r:ySe}function lkn(e,t){const r=[...e],a=r.length,s=e.map((o,u)=>Adt(o)(o,t[u]));return o=>{for(let u=0;u{for(const o in a)r[o]=a[o](s);return r}}function B9r(e,t){const r=[],a={color:0,var:0,number:0};for(let s=0;s{const r=V3.createTransformer(t),a=gj(e),s=gj(t);return a.indexes.var.length===s.indexes.var.length&&a.indexes.color.length===s.indexes.color.length&&a.indexes.number.length>=s.indexes.number.length?Hat.has(e)&&!s.values.length||Hat.has(t)&&!a.values.length?D9r(e,t):Lle(lkn(B9r(a,s),s.values),r):ySe(e,t)};function ckn(e,t,r){return typeof e=="number"&&typeof t=="number"&&typeof r=="number"?vd(e,t,r):Adt(e)(e,t)}const $9r=e=>{const t=({timestamp:r})=>e(r);return{start:(r=!0)=>Dh.update(t,r),stop:()=>$O(t),now:()=>bm.isProcessing?bm.timestamp:Vy.now()}},ukn=(e,t,r=10)=>{let a="";const s=Math.max(Math.round(t/r),2);for(let o=0;o=vSe?1/0:t}function U9r(e,t=100,r){const a=r({...e,keyframes:[0,t]}),s=Math.min(kdt(a),vSe);return{type:"keyframes",ease:o=>a.next(s*o).value/t,duration:rS(s)}}const s0={stiffness:100,damping:10,mass:1,velocity:0,duration:800,bounce:.3,visualDuration:.3,restSpeed:{granular:.01,default:2},restDelta:{granular:.005,default:.5},minDuration:.01,maxDuration:10,minDamping:.05,maxDamping:1};function Vat(e,t){return e*Math.sqrt(1-t*t)}const z9r=12;function G9r(e,t,r){let a=r;for(let s=1;s{const m=p*u,b=m*e,_=m-r,w=Vat(p,u),S=Math.exp(-b);return mXe-_/w*S},o=p=>{const b=p*u*e,_=b*r+r,w=Math.pow(u,2)*Math.pow(p,2)*e,S=Math.exp(-b),C=Vat(Math.pow(p,2),u);return(-s(p)+mXe>0?-1:1)*((_-w)*S)/C}):(s=p=>{const m=Math.exp(-p*e),b=(p-r)*e+1;return-mXe+m*b},o=p=>{const m=Math.exp(-p*e),b=(r-p)*(e*e);return m*b});const h=5/e,f=G9r(s,o,h);if(e=Dw(e),isNaN(f))return{stiffness:s0.stiffness,damping:s0.damping,duration:e};{const p=Math.pow(f,2)*a;return{stiffness:p,damping:u*2*Math.sqrt(a*p),duration:e}}}const H9r=["duration","bounce"],V9r=["stiffness","damping","mass"];function pdn(e,t){return t.some(r=>e[r]!==void 0)}function Y9r(e){let t={velocity:s0.velocity,stiffness:s0.stiffness,damping:s0.damping,mass:s0.mass,isResolvedFromDuration:!1,...e};if(!pdn(e,V9r)&&pdn(e,H9r))if(t.velocity=0,e.visualDuration){const r=e.visualDuration,a=2*Math.PI/(r*1.2),s=a*a,o=2*gA(.05,1,1-(e.bounce||0))*Math.sqrt(s);t={...t,mass:s0.mass,stiffness:s,damping:o}}else{const r=q9r({...e,velocity:0});t={...t,...r,mass:s0.mass},t.isResolvedFromDuration=!0}return t}function _Se(e=s0.visualDuration,t=s0.bounce){const r=typeof e!="object"?{visualDuration:e,keyframes:[0,1],bounce:t}:e;let{restSpeed:a,restDelta:s}=r;const o=r.keyframes[0],u=r.keyframes[r.keyframes.length-1],h={done:!1,value:o},{stiffness:f,damping:p,mass:m,duration:b,velocity:_,isResolvedFromDuration:w}=Y9r({...r,velocity:-rS(r.velocity||0)}),S=_||0,C=p/(2*Math.sqrt(f*m)),A=u-o,k=rS(Math.sqrt(f/m)),I=Math.abs(A)<5;a||(a=I?s0.restSpeed.granular:s0.restSpeed.default),s||(s=I?s0.restDelta.granular:s0.restDelta.default);let N,L,P,M,F,U;if(C<1)P=Vat(k,C),M=(S+C*k*A)/P,N=G=>{const B=Math.exp(-C*k*G);return u-B*(M*Math.sin(P*G)+A*Math.cos(P*G))},F=C*k*M+A*P,U=C*k*A-M*P,L=G=>Math.exp(-C*k*G)*(F*Math.sin(P*G)+U*Math.cos(P*G));else if(C===1){N=B=>u-Math.exp(-k*B)*(A+(S+k*A)*B);const G=S+k*A;L=B=>Math.exp(-k*B)*(k*G*B-S)}else{const G=k*Math.sqrt(C*C-1);N=Y=>{const W=Math.exp(-C*k*Y),Q=Math.min(G*Y,300);return u-W*((S+C*k*A)*Math.sinh(Q)+G*A*Math.cosh(Q))/G};const B=(S+C*k*A)/G,Z=C*k*B-A*G,z=C*k*A-B*G;L=Y=>{const W=Math.exp(-C*k*Y),Q=Math.min(G*Y,300);return W*(Z*Math.sinh(Q)+z*Math.cosh(Q))}}const $={calculatedDuration:w&&b||null,velocity:G=>Dw(L(G)),next:G=>{if(!w&&C<1){const Z=Math.exp(-C*k*G),z=Math.sin(P*G),Y=Math.cos(P*G),W=u-Z*(M*z+A*Y),Q=Dw(Z*(F*z+U*Y));return h.done=Math.abs(Q)<=a&&Math.abs(u-W)<=s,h.value=h.done?u:W,h}const B=N(G);if(w)h.done=G>=b;else{const Z=Dw(L(G));h.done=Math.abs(Z)<=a&&Math.abs(u-B)<=s}return h.value=h.done?u:B,h},toString:()=>{const G=Math.min(kdt($),vSe),B=ukn(Z=>$.next(G*Z).value,G,30);return G+"ms "+B},toTransition:()=>{}};return $}_Se.applyToOptions=e=>{const t=U9r(e,100,_Se);return e.ease=t.ease,e.duration=Dw(t.duration),e.type="keyframes",e};const j9r=5;function hkn(e,t,r){const a=Math.max(t-j9r,0);return HAn(r-e(a),t-a)}function Yat({keyframes:e,velocity:t=0,power:r=.8,timeConstant:a=325,bounceDamping:s=10,bounceStiffness:o=500,modifyTarget:u,min:h,max:f,restDelta:p=.5,restSpeed:m}){const b=e[0],_={done:!1,value:b},w=U=>h!==void 0&&Uf,S=U=>h===void 0?f:f===void 0||Math.abs(h-U)-C*Math.exp(-U/a),N=U=>k+I(U),L=U=>{const $=I(U),G=N(U);_.done=Math.abs($)<=p,_.value=_.done?k:G};let P,M;const F=U=>{w(_.value)&&(P=U,M=_Se({keyframes:[_.value,S(_.value)],velocity:hkn(N,U,_.value),damping:s,stiffness:o,restDelta:p,restSpeed:m}))};return F(0),{calculatedDuration:null,next:U=>{let $=!1;return!M&&P===void 0&&($=!0,L(U),F(U)),P!==void 0&&U>=P?M.next(U-P):(!$&&L(U),_)}}}function W9r(e,t,r){const a=[],s=r||FO.mix||ckn,o=e.length-1;for(let u=0;ut[0];if(o===2&&t[0]===t[1])return()=>t[1];const u=e[0]===e[1];e[0]>e[o-1]&&(e=[...e].reverse(),t=[...t].reverse());const h=W9r(t,a,s),f=h.length,p=m=>{if(u&&m1)for(;bp(gA(e[0],e[o-1],m)):p}function X9r(e,t){const r=e[e.length-1];for(let a=1;a<=t;a++){const s=Vse(0,t,a);e.push(vd(r,1,s))}}function Q9r(e){const t=[0];return X9r(t,e.length-1),t}function Z9r(e,t){return e.map(r=>r*t)}function J9r(e,t){return e.map(()=>t||JAn).splice(0,e.length-1)}function jae({duration:e=300,keyframes:t,times:r,ease:a="easeInOut"}){const s=o9r(a)?a.map(ldn):ldn(a),o={done:!1,value:t[0]},u=Z9r(r&&r.length===t.length?r:Q9r(t),e),h=K9r(u,t,{ease:Array.isArray(s)?s:J9r(t,s)});return{calculatedDuration:e,next:f=>(o.value=h(f),o.done=f>=e,o)}}const eLr=e=>e!==null;function F5e(e,{repeat:t,repeatType:r="loop"},a,s=1){const o=e.filter(eLr),h=s<0||t&&r!=="loop"&&t%2===1?0:o.length-1;return!h||a===void 0?o[h]:a}const tLr={decay:Yat,inertia:Yat,tween:jae,keyframes:jae,spring:_Se};function dkn(e){typeof e.type=="string"&&(e.type=tLr[e.type])}class Rdt{constructor(){this.updateFinished()}get finished(){return this._finished}updateFinished(){this._finished=new Promise(t=>{this.resolve=t})}notifyFinished(){this.resolve()}then(t,r){return this.finished.then(t,r)}}const nLr=e=>e/100;class wSe extends Rdt{constructor(t){super(),this.state="idle",this.startTime=null,this.isStopped=!1,this.currentTime=0,this.holdTime=null,this.playbackSpeed=1,this.delayState={done:!1,value:void 0},this.stop=()=>{var a,s;const{motionValue:r}=this.options;r&&r.updatedAt!==Vy.now()&&this.tick(Vy.now()),this.isStopped=!0,this.state!=="idle"&&(this.teardown(),(s=(a=this.options).onStop)==null||s.call(a))},this.options=t,this.initAnimation(),this.play(),t.autoplay===!1&&this.pause()}initAnimation(){const{options:t}=this;dkn(t);const{type:r=jae,repeat:a=0,repeatDelay:s=0,repeatType:o,velocity:u=0}=t;let{keyframes:h}=t;const f=r||jae;f!==jae&&typeof h[0]!="number"&&(this.mixKeyframes=Lle(nLr,ckn(h[0],h[1])),h=[0,100]);const p=f({...t,keyframes:h});o==="mirror"&&(this.mirroredGenerator=f({...t,keyframes:[...h].reverse(),velocity:-u})),p.calculatedDuration===null&&(p.calculatedDuration=kdt(p));const{calculatedDuration:m}=p;this.calculatedDuration=m,this.resolvedDuration=m+s,this.totalDuration=this.resolvedDuration*(a+1)-s,this.generator=p}updateTime(t){const r=Math.round(t-this.startTime)*this.playbackSpeed;this.holdTime!==null?this.currentTime=this.holdTime:this.currentTime=r}tick(t,r=!1){const{generator:a,totalDuration:s,mixKeyframes:o,mirroredGenerator:u,resolvedDuration:h,calculatedDuration:f}=this;if(this.startTime===null)return a.next(0);const{delay:p=0,keyframes:m,repeat:b,repeatType:_,repeatDelay:w,type:S,onUpdate:C,finalKeyframe:A}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,t):this.speed<0&&(this.startTime=Math.min(t-s/this.speed,this.startTime)),r?this.currentTime=t:this.updateTime(t);const k=this.currentTime-p*(this.playbackSpeed>=0?1:-1),I=this.playbackSpeed>=0?k<0:k>s;this.currentTime=Math.max(k,0),this.state==="finished"&&this.holdTime===null&&(this.currentTime=s);let N=this.currentTime,L=a;if(b){const U=Math.min(this.currentTime,s)/h;let $=Math.floor(U),G=U%1;!G&&U>=1&&(G=1),G===1&&$--,$=Math.min($,b+1),!!($%2)&&(_==="reverse"?(G=1-G,w&&(G-=w/h)):_==="mirror"&&(L=u)),N=gA(0,1,G)*h}let P;I?(this.delayState.value=m[0],P=this.delayState):P=L.next(N),o&&!I&&(P.value=o(P.value));let{done:M}=P;!I&&f!==null&&(M=this.playbackSpeed>=0?this.currentTime>=s:this.currentTime<=0);const F=this.holdTime===null&&(this.state==="finished"||this.state==="running"&&M);return F&&S!==Yat&&(P.value=F5e(m,this.options,A,this.speed)),C&&C(P.value),F&&this.finish(),P}then(t,r){return this.finished.then(t,r)}get duration(){return rS(this.calculatedDuration)}get iterationDuration(){const{delay:t=0}=this.options||{};return this.duration+rS(t)}get time(){return rS(this.currentTime)}set time(t){t=Dw(t),this.currentTime=t,this.startTime===null||this.holdTime!==null||this.playbackSpeed===0?this.holdTime=t:this.driver&&(this.startTime=this.driver.now()-t/this.playbackSpeed),this.driver?this.driver.start(!1):(this.startTime=0,this.state="paused",this.holdTime=t,this.tick(t))}getGeneratorVelocity(){const t=this.currentTime;if(t<=0)return this.options.velocity||0;if(this.generator.velocity)return this.generator.velocity(t);const r=this.generator.next(t).value;return hkn(a=>this.generator.next(a).value,t,r)}get speed(){return this.playbackSpeed}set speed(t){const r=this.playbackSpeed!==t;r&&this.driver&&this.updateTime(Vy.now()),this.playbackSpeed=t,r&&this.driver&&(this.time=rS(this.currentTime))}play(){var s,o;if(this.isStopped)return;const{driver:t=$9r,startTime:r}=this.options;this.driver||(this.driver=t(u=>this.tick(u))),(o=(s=this.options).onPlay)==null||o.call(s);const a=this.driver.now();this.state==="finished"?(this.updateFinished(),this.startTime=a):this.holdTime!==null?this.startTime=a-this.holdTime:this.startTime||(this.startTime=r??a),this.state==="finished"&&this.speed<0&&(this.startTime+=this.calculatedDuration),this.holdTime=null,this.state="running",this.driver.start()}pause(){this.state="paused",this.updateTime(Vy.now()),this.holdTime=this.currentTime}complete(){this.state!=="running"&&this.play(),this.state="finished",this.holdTime=null}finish(){var t,r;this.notifyFinished(),this.teardown(),this.state="finished",(r=(t=this.options).onComplete)==null||r.call(t)}cancel(){var t,r;this.holdTime=null,this.startTime=0,this.tick(0),this.teardown(),(r=(t=this.options).onCancel)==null||r.call(t)}teardown(){this.state="idle",this.stopDriver(),this.startTime=this.holdTime=null}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(t){return this.startTime=0,this.tick(t,!0)}attachTimeline(t){var r;return this.options.allowFlatten&&(this.options.type="keyframes",this.options.ease="linear",this.initAnimation()),(r=this.driver)==null||r.stop(),t.observe(this)}}function rLr(e){for(let t=1;te*180/Math.PI,jat=e=>{const t=jB(Math.atan2(e[1],e[0]));return Wat(t)},iLr={x:4,y:5,translateX:4,translateY:5,scaleX:0,scaleY:3,scale:e=>(Math.abs(e[0])+Math.abs(e[3]))/2,rotate:jat,rotateZ:jat,skewX:e=>jB(Math.atan(e[1])),skewY:e=>jB(Math.atan(e[2])),skew:e=>(Math.abs(e[1])+Math.abs(e[2]))/2},Wat=e=>(e=e%360,e<0&&(e+=360),e),gdn=jat,mdn=e=>Math.sqrt(e[0]*e[0]+e[1]*e[1]),bdn=e=>Math.sqrt(e[4]*e[4]+e[5]*e[5]),aLr={x:12,y:13,z:14,translateX:12,translateY:13,translateZ:14,scaleX:mdn,scaleY:bdn,scale:e=>(mdn(e)+bdn(e))/2,rotateX:e=>Wat(jB(Math.atan2(e[6],e[5]))),rotateY:e=>Wat(jB(Math.atan2(-e[2],e[0]))),rotateZ:gdn,rotate:gdn,skewX:e=>jB(Math.atan(e[4])),skewY:e=>jB(Math.atan(e[1])),skew:e=>(Math.abs(e[1])+Math.abs(e[4]))/2};function Kat(e){return e.includes("scale")?1:0}function Xat(e,t){if(!e||e==="none")return Kat(t);const r=e.match(/^matrix3d\(([-\d.e\s,]+)\)$/u);let a,s;if(r)a=aLr,s=r;else{const h=e.match(/^matrix\(([-\d.e\s,]+)\)$/u);a=iLr,s=h}if(!s)return Kat(t);const o=a[t],u=s[1].split(",").map(oLr);return typeof o=="function"?o(u):u[o]}const sLr=(e,t)=>{const{transform:r="none"}=getComputedStyle(e);return Xat(r,t)};function oLr(e){return parseFloat(e.trim())}const yW=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],vW=new Set(yW),ydn=e=>e===bW||e===ja,lLr=new Set(["x","y","z"]),cLr=yW.filter(e=>!lLr.has(e));function uLr(e){const t=[];return cLr.forEach(r=>{const a=e.getValue(r);a!==void 0&&(t.push([r,a.get()]),a.set(r.startsWith("scale")?1:0))}),t}const lO={width:({x:e},{paddingLeft:t="0",paddingRight:r="0",boxSizing:a})=>{const s=e.max-e.min;return a==="border-box"?s:s-parseFloat(t)-parseFloat(r)},height:({y:e},{paddingTop:t="0",paddingBottom:r="0",boxSizing:a})=>{const s=e.max-e.min;return a==="border-box"?s:s-parseFloat(t)-parseFloat(r)},top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:(e,{transform:t})=>Xat(t,"x"),y:(e,{transform:t})=>Xat(t,"y")};lO.translateX=lO.x;lO.translateY=lO.y;const hF=new Set;let Qat=!1,Zat=!1,Jat=!1;function fkn(){if(Zat){const e=Array.from(hF).filter(a=>a.needsMeasurement),t=new Set(e.map(a=>a.element)),r=new Map;t.forEach(a=>{const s=uLr(a);s.length&&(r.set(a,s),a.render())}),e.forEach(a=>a.measureInitialState()),t.forEach(a=>{a.render();const s=r.get(a);s&&s.forEach(([o,u])=>{var h;(h=a.getValue(o))==null||h.set(u)})}),e.forEach(a=>a.measureEndState()),e.forEach(a=>{a.suspendedScrollY!==void 0&&window.scrollTo(0,a.suspendedScrollY)})}Zat=!1,Qat=!1,hF.forEach(e=>e.complete(Jat)),hF.clear()}function pkn(){hF.forEach(e=>{e.readKeyframes(),e.needsMeasurement&&(Zat=!0)})}function hLr(){Jat=!0,pkn(),fkn(),Jat=!1}class Idt{constructor(t,r,a,s,o,u=!1){this.state="pending",this.isAsync=!1,this.needsMeasurement=!1,this.unresolvedKeyframes=[...t],this.onComplete=r,this.name=a,this.motionValue=s,this.element=o,this.isAsync=u}scheduleResolve(){this.state="scheduled",this.isAsync?(hF.add(this),Qat||(Qat=!0,Dh.read(pkn),Dh.resolveKeyframes(fkn))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:t,name:r,element:a,motionValue:s}=this;if(t[0]===null){const o=s==null?void 0:s.get(),u=t[t.length-1];if(o!==void 0)t[0]=o;else if(a&&r){const h=a.readValue(r,u);h!=null&&(t[0]=h)}t[0]===void 0&&(t[0]=u),s&&o===void 0&&s.set(t[0])}rLr(t)}setFinalKeyframe(){}measureInitialState(){}renderEndStyles(){}measureEndState(){}complete(t=!1){this.state="complete",this.onComplete(this.unresolvedKeyframes,this.finalKeyframe,t),hF.delete(this)}cancel(){this.state==="scheduled"&&(hF.delete(this),this.state="pending")}resume(){this.state==="pending"&&this.scheduleResolve()}}const dLr=e=>e.startsWith("--");function gkn(e,t,r){dLr(t)?e.style.setProperty(t,r):e.style[t]=r}const fLr={};function mkn(e,t){const r=qAn(e);return()=>fLr[t]??r()}const pLr=mkn(()=>window.ScrollTimeline!==void 0,"scrollTimeline"),bkn=mkn(()=>{try{document.createElement("div").animate({opacity:0},{easing:"linear(0, 1)"})}catch{return!1}return!0},"linearEasing"),xie=([e,t,r,a])=>`cubic-bezier(${e}, ${t}, ${r}, ${a})`,vdn={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:xie([0,.65,.55,1]),circOut:xie([.55,0,1,.45]),backIn:xie([.31,.01,.66,-.59]),backOut:xie([.33,1.53,.69,.99])};function ykn(e,t){if(e)return typeof e=="function"?bkn()?ukn(e,t):"ease-out":ekn(e)?xie(e):Array.isArray(e)?e.map(r=>ykn(r,t)||vdn.easeOut):vdn[e]}function gLr(e,t,r,{delay:a=0,duration:s=300,repeat:o=0,repeatType:u="loop",ease:h="easeOut",times:f}={},p=void 0){const m={[t]:r};f&&(m.offset=f);const b=ykn(h,s);Array.isArray(b)&&(m.easing=b);const _={delay:a,duration:s,easing:Array.isArray(b)?"linear":b,fill:"both",iterations:o+1,direction:u==="reverse"?"alternate":"normal"};return p&&(_.pseudoElement=p),e.animate(m,_)}function vkn(e){return typeof e=="function"&&"applyToOptions"in e}function mLr({type:e,...t}){return vkn(e)&&bkn()?e.applyToOptions(t):(t.duration??(t.duration=300),t.ease??(t.ease="easeOut"),t)}class _kn extends Rdt{constructor(t){if(super(),this.finishedTime=null,this.isStopped=!1,this.manualStartTime=null,!t)return;const{element:r,name:a,keyframes:s,pseudoElement:o,allowFlatten:u=!1,finalKeyframe:h,onComplete:f}=t;this.isPseudoElement=!!o,this.allowFlatten=u,this.options=t,_dt(typeof t.type!="string");const p=mLr(t);this.animation=gLr(r,a,s,p,o),p.autoplay===!1&&this.animation.pause(),this.animation.onfinish=()=>{if(this.finishedTime=this.time,!o){const m=F5e(s,this.options,h,this.speed);this.updateMotionValue&&this.updateMotionValue(m),gkn(r,a,m),this.animation.cancel()}f==null||f(),this.notifyFinished()}}play(){this.isStopped||(this.manualStartTime=null,this.animation.play(),this.state==="finished"&&this.updateFinished())}pause(){this.animation.pause()}complete(){var t,r;(r=(t=this.animation).finish)==null||r.call(t)}cancel(){try{this.animation.cancel()}catch{}}stop(){if(this.isStopped)return;this.isStopped=!0;const{state:t}=this;t==="idle"||t==="finished"||(this.updateMotionValue?this.updateMotionValue():this.commitStyles(),this.isPseudoElement||this.cancel())}commitStyles(){var r,a,s;const t=(r=this.options)==null?void 0:r.element;!this.isPseudoElement&&(t!=null&&t.isConnected)&&((s=(a=this.animation).commitStyles)==null||s.call(a))}get duration(){var r,a;const t=((a=(r=this.animation.effect)==null?void 0:r.getComputedTiming)==null?void 0:a.call(r).duration)||0;return rS(Number(t))}get iterationDuration(){const{delay:t=0}=this.options||{};return this.duration+rS(t)}get time(){return rS(Number(this.animation.currentTime)||0)}set time(t){const r=this.finishedTime!==null;this.manualStartTime=null,this.finishedTime=null,this.animation.currentTime=Dw(t),r&&this.animation.pause()}get speed(){return this.animation.playbackRate}set speed(t){t<0&&(this.finishedTime=null),this.animation.playbackRate=t}get state(){return this.finishedTime!==null?"finished":this.animation.playState}get startTime(){return this.manualStartTime??Number(this.animation.startTime)}set startTime(t){this.manualStartTime=this.animation.startTime=t}attachTimeline({timeline:t,rangeStart:r,rangeEnd:a,observe:s}){var o;return this.allowFlatten&&((o=this.animation.effect)==null||o.updateTiming({easing:"linear"})),this.animation.onfinish=null,t&&pLr()?(this.animation.timeline=t,r&&(this.animation.rangeStart=r),a&&(this.animation.rangeEnd=a),cS):s(this)}}const wkn={anticipate:XAn,backInOut:KAn,circInOut:ZAn};function bLr(e){return e in wkn}function yLr(e){typeof e.ease=="string"&&bLr(e.ease)&&(e.ease=wkn[e.ease])}const bXe=10;class vLr extends _kn{constructor(t){yLr(t),dkn(t),super(t),t.startTime!==void 0&&t.autoplay!==!1&&(this.startTime=t.startTime),this.options=t}updateMotionValue(t){const{motionValue:r,onUpdate:a,onComplete:s,element:o,...u}=this.options;if(!r)return;if(t!==void 0){r.set(t);return}const h=new wSe({...u,autoplay:!1}),f=Math.max(bXe,Vy.now()-this.startTime),p=gA(0,bXe,f-bXe),m=h.sample(f).value,{name:b}=this.options;o&&b&&gkn(o,b,m),r.setWithVelocity(h.sample(Math.max(0,f-p)).value,m,p),h.stop()}}const _dn=(e,t)=>t==="zIndex"?!1:!!(typeof e=="number"||Array.isArray(e)||typeof e=="string"&&(V3.test(e)||e==="0")&&!e.startsWith("url("));function _Lr(e){const t=e[0];if(e.length===1)return!0;for(let r=0;rObject.hasOwnProperty.call(Element.prototype,"animate"));function CLr(e){var b;const{motionValue:t,name:r,repeatDelay:a,repeatType:s,damping:o,type:u,keyframes:h}=e;if(!(((b=t==null?void 0:t.owner)==null?void 0:b.current)instanceof HTMLElement))return!1;const{onUpdate:p,transformTemplate:m}=t.owner.getProps();return TLr()&&r&&(Ekn.has(r)||SLr.has(r)&&xLr(h))&&(r!=="transform"||!m)&&!p&&!a&&s!=="mirror"&&o!==0&&u!=="inertia"}const ALr=40;class kLr extends Rdt{constructor({autoplay:t=!0,delay:r=0,type:a="keyframes",repeat:s=0,repeatDelay:o=0,repeatType:u="loop",keyframes:h,name:f,motionValue:p,element:m,...b}){var S;super(),this.stop=()=>{var C,A;this._animation&&(this._animation.stop(),(C=this.stopTimeline)==null||C.call(this)),(A=this.keyframeResolver)==null||A.cancel()},this.createdAt=Vy.now();const _={autoplay:t,delay:r,type:a,repeat:s,repeatDelay:o,repeatType:u,name:f,motionValue:p,element:m,...b},w=(m==null?void 0:m.KeyframeResolver)||Idt;this.keyframeResolver=new w(h,(C,A,k)=>this.onKeyframesResolved(C,A,_,!k),f,p,m),(S=this.keyframeResolver)==null||S.scheduleResolve()}onKeyframesResolved(t,r,a,s){var k,I;this.keyframeResolver=void 0;const{name:o,type:u,velocity:h,delay:f,isHandoff:p,onUpdate:m}=a;this.resolvedAt=Vy.now();let b=!0;wLr(t,o,u,h)||(b=!1,(FO.instantAnimations||!f)&&(m==null||m(F5e(t,a,r))),t[0]=t[t.length-1],est(a),a.repeat=0);const w={startTime:s?this.resolvedAt?this.resolvedAt-this.createdAt>ALr?this.resolvedAt:this.createdAt:this.createdAt:void 0,finalKeyframe:r,...a,keyframes:t},S=b&&!p&&CLr(w),C=(I=(k=w.motionValue)==null?void 0:k.owner)==null?void 0:I.current;let A;if(S)try{A=new vLr({...w,element:C})}catch{A=new wSe(w)}else A=new wSe(w);A.finished.then(()=>{this.notifyFinished()}).catch(cS),this.pendingTimeline&&(this.stopTimeline=A.attachTimeline(this.pendingTimeline),this.pendingTimeline=void 0),this._animation=A}get finished(){return this._animation?this.animation.finished:this._finished}then(t,r){return this.finished.finally(t).then(()=>{})}get animation(){var t;return this._animation||((t=this.keyframeResolver)==null||t.resume(),hLr()),this._animation}get duration(){return this.animation.duration}get iterationDuration(){return this.animation.iterationDuration}get time(){return this.animation.time}set time(t){this.animation.time=t}get speed(){return this.animation.speed}get state(){return this.animation.state}set speed(t){this.animation.speed=t}get startTime(){return this.animation.startTime}attachTimeline(t){return this._animation?this.stopTimeline=this.animation.attachTimeline(t):this.pendingTimeline=t,()=>this.stop()}play(){this.animation.play()}pause(){this.animation.pause()}complete(){this.animation.complete()}cancel(){var t;this._animation&&this.animation.cancel(),(t=this.keyframeResolver)==null||t.cancel()}}function xkn(e,t,r,a=0,s=1){const o=Array.from(e).sort((p,m)=>p.sortNodePosition(m)).indexOf(t),u=e.size,h=(u-1)*a;return typeof r=="function"?r(o,u):s===1?o*a:h-o*a}const RLr=/^var\(--(?:([\w-]+)|([\w-]+), ?([a-zA-Z\d ()%#.,-]+))\)/u;function ILr(e){const t=RLr.exec(e);if(!t)return[,];const[,r,a,s]=t;return[`--${r??a}`,s]}function Skn(e,t,r=1){const[a,s]=ILr(e);if(!a)return;const o=window.getComputedStyle(t).getPropertyValue(a);if(o){const u=o.trim();return UAn(u)?parseFloat(u):u}return Sdt(s)?Skn(s,t,r+1):s}const NLr={type:"spring",stiffness:500,damping:25,restSpeed:10},OLr=e=>({type:"spring",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}),LLr={type:"keyframes",duration:.8},DLr={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},MLr=(e,{keyframes:t})=>t.length>2?LLr:vW.has(e)?e.startsWith("scale")?OLr(t[1]):NLr:DLr;function Tkn(e,t){if(e!=null&&e.inherit&&t){const{inherit:r,...a}=e;return{...t,...a}}return e}function Ndt(e,t){const r=(e==null?void 0:e[t])??(e==null?void 0:e.default)??e;return r!==e?Tkn(r,e):r}const PLr=new Set(["when","delay","delayChildren","staggerChildren","staggerDirection","repeat","repeatType","repeatDelay","from","elapsed"]);function BLr(e){for(const t in e)if(!PLr.has(t))return!0;return!1}const Odt=(e,t,r,a={},s,o)=>u=>{const h=Ndt(a,e)||{},f=h.delay||a.delay||0;let{elapsed:p=0}=a;p=p-Dw(f);const m={keyframes:Array.isArray(r)?r:[null,r],ease:"easeOut",velocity:t.getVelocity(),...h,delay:-p,onUpdate:_=>{t.set(_),h.onUpdate&&h.onUpdate(_)},onComplete:()=>{u(),h.onComplete&&h.onComplete()},name:e,motionValue:t,element:o?void 0:s};BLr(h)||Object.assign(m,MLr(e,m)),m.duration&&(m.duration=Dw(m.duration)),m.repeatDelay&&(m.repeatDelay=Dw(m.repeatDelay)),m.from!==void 0&&(m.keyframes[0]=m.from);let b=!1;if((m.type===!1||m.duration===0&&!m.repeatDelay)&&(est(m),m.delay===0&&(b=!0)),(FO.instantAnimations||FO.skipAnimations||s!=null&&s.shouldSkipAnimations)&&(b=!0,est(m),m.delay=0),m.allowFlatten=!h.type&&!h.ease,b&&!o&&t.get()!==void 0){const _=F5e(m.keyframes,h);if(_!==void 0){Dh.update(()=>{m.onUpdate(_),m.onComplete()});return}}return h.isSync?new wSe(m):new kLr(m)};function wdn(e){const t=[{},{}];return e==null||e.values.forEach((r,a)=>{t[0][a]=r.get(),t[1][a]=r.getVelocity()}),t}function Ldt(e,t,r,a){if(typeof t=="function"){const[s,o]=wdn(a);t=t(r!==void 0?r:e.custom,s,o)}if(typeof t=="string"&&(t=e.variants&&e.variants[t]),typeof t=="function"){const[s,o]=wdn(a);t=t(r!==void 0?r:e.custom,s,o)}return t}function dF(e,t,r){const a=e.getProps();return Ldt(a,t,r!==void 0?r:a.custom,e)}const Ckn=new Set(["width","height","top","left","right","bottom",...yW]),Edn=30,FLr=e=>!isNaN(parseFloat(e));class $Lr{constructor(t,r={}){this.canTrackVelocity=null,this.events={},this.updateAndNotify=a=>{var o;const s=Vy.now();if(this.updatedAt!==s&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(a),this.current!==this.prev&&((o=this.events.change)==null||o.notify(this.current),this.dependents))for(const u of this.dependents)u.dirty()},this.hasAnimated=!1,this.setCurrent(t),this.owner=r.owner}setCurrent(t){this.current=t,this.updatedAt=Vy.now(),this.canTrackVelocity===null&&t!==void 0&&(this.canTrackVelocity=FLr(this.current))}setPrevFrameValue(t=this.current){this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt}onChange(t){return this.on("change",t)}on(t,r){this.events[t]||(this.events[t]=new wdt);const a=this.events[t].add(r);return t==="change"?()=>{a(),Dh.read(()=>{this.events.change.getSize()||this.stop()})}:a}clearListeners(){for(const t in this.events)this.events[t].clear()}attach(t,r){this.passiveEffect=t,this.stopPassiveEffect=r}set(t){this.passiveEffect?this.passiveEffect(t,this.updateAndNotify):this.updateAndNotify(t)}setWithVelocity(t,r,a){this.set(r),this.prev=void 0,this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt-a}jump(t,r=!0){this.updateAndNotify(t),this.prev=t,this.prevUpdatedAt=this.prevFrameValue=void 0,r&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}dirty(){var t;(t=this.events.change)==null||t.notify(this.current)}addDependent(t){this.dependents||(this.dependents=new Set),this.dependents.add(t)}removeDependent(t){this.dependents&&this.dependents.delete(t)}get(){return this.current}getPrevious(){return this.prev}getVelocity(){const t=Vy.now();if(!this.canTrackVelocity||this.prevFrameValue===void 0||t-this.updatedAt>Edn)return 0;const r=Math.min(this.updatedAt-this.prevUpdatedAt,Edn);return HAn(parseFloat(this.current)-parseFloat(this.prevFrameValue),r)}start(t){return this.stop(),new Promise(r=>{this.hasAnimated=!0,this.animation=t(r),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){var t,r;(t=this.dependents)==null||t.clear(),(r=this.events.destroy)==null||r.notify(),this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function mj(e,t){return new $Lr(e,t)}const tst=e=>Array.isArray(e);function ULr(e,t,r){e.hasValue(t)?e.getValue(t).set(r):e.addValue(t,mj(r))}function zLr(e){return tst(e)?e[e.length-1]||0:e}function GLr(e,t){const r=dF(e,t);let{transitionEnd:a={},transition:s={},...o}=r||{};o={...o,...a};for(const u in o){const h=zLr(o[u]);ULr(e,u,h)}}const Em=e=>!!(e&&e.getVelocity);function qLr(e){return!!(Em(e)&&e.add)}function nst(e,t){const r=e.getValue("willChange");if(qLr(r))return r.add(t);if(!r&&FO.WillChange){const a=new FO.WillChange("auto");e.addValue("willChange",a),a.add(t)}}function Ddt(e){return e.replace(/([A-Z])/g,t=>`-${t.toLowerCase()}`)}const HLr="framerAppearId",Akn="data-"+Ddt(HLr);function kkn(e){return e.props[Akn]}function VLr({protectedKeys:e,needsAnimating:t},r){const a=e.hasOwnProperty(r)&&t[r]!==!0;return t[r]=!1,a}function Rkn(e,t,{delay:r=0,transitionOverride:a,type:s}={}){let{transition:o,transitionEnd:u,...h}=t;const f=e.getDefaultTransition();o=o?Tkn(o,f):f;const p=o==null?void 0:o.reduceMotion;a&&(o=a);const m=[],b=s&&e.animationState&&e.animationState.getState()[s];for(const _ in h){const w=e.getValue(_,e.latestValues[_]??null),S=h[_];if(S===void 0||b&&VLr(b,_))continue;const C={delay:r,...Ndt(o||{},_)},A=w.get();if(A!==void 0&&!w.isAnimating()&&!Array.isArray(S)&&S===A&&!C.velocity){Dh.update(()=>w.set(S));continue}let k=!1;if(window.MotionHandoffAnimation){const L=kkn(e);if(L){const P=window.MotionHandoffAnimation(L,_,Dh);P!==null&&(C.startTime=P,k=!0)}}nst(e,_);const I=p??e.shouldReduceMotion;w.start(Odt(_,w,S,I&&Ckn.has(_)?{type:!1}:C,e,k));const N=w.animation;N&&m.push(N)}if(u){const _=()=>Dh.update(()=>{u&&GLr(e,u)});m.length?Promise.all(m).then(_):_()}return m}function rst(e,t,r={}){var f;const a=dF(e,t,r.type==="exit"?(f=e.presenceContext)==null?void 0:f.custom:void 0);let{transition:s=e.getDefaultTransition()||{}}=a||{};r.transitionOverride&&(s=r.transitionOverride);const o=a?()=>Promise.all(Rkn(e,a,r)):()=>Promise.resolve(),u=e.variantChildren&&e.variantChildren.size?(p=0)=>{const{delayChildren:m=0,staggerChildren:b,staggerDirection:_}=s;return YLr(e,t,p,m,b,_,r)}:()=>Promise.resolve(),{when:h}=s;if(h){const[p,m]=h==="beforeChildren"?[o,u]:[u,o];return p().then(()=>m())}else return Promise.all([o(),u(r.delay)])}function YLr(e,t,r=0,a=0,s=0,o=1,u){const h=[];for(const f of e.variantChildren)f.notify("AnimationStart",t),h.push(rst(f,t,{...u,delay:r+(typeof a=="function"?0:a)+xkn(e.variantChildren,f,a,s,o)}).then(()=>f.notify("AnimationComplete",t)));return Promise.all(h)}function jLr(e,t,r={}){e.notify("AnimationStart",t);let a;if(Array.isArray(t)){const s=t.map(o=>rst(e,o,r));a=Promise.all(s)}else if(typeof t=="string")a=rst(e,t,r);else{const s=typeof t=="function"?dF(e,t,r.custom):t;a=Promise.all(Rkn(e,s,r))}return a.then(()=>{e.notify("AnimationComplete",t)})}const WLr={test:e=>e==="auto",parse:e=>e},Ikn=e=>t=>t.test(e),Nkn=[bW,ja,rA,GN,_9r,v9r,WLr],xdn=e=>Nkn.find(Ikn(e));function KLr(e){return typeof e=="number"?e===0:e!==null?e==="none"||e==="0"||GAn(e):!0}const XLr=new Set(["brightness","contrast","saturate","opacity"]);function QLr(e){const[t,r]=e.slice(0,-1).split("(");if(t==="drop-shadow")return e;const[a]=r.match(Tdt)||[];if(!a)return e;const s=r.replace(a,"");let o=XLr.has(t)?1:0;return a!==r&&(o*=100),t+"("+o+s+")"}const ZLr=/\b([a-z-]*)\(.*?\)/gu,ist={...V3,getAnimatableNone:e=>{const t=e.match(ZLr);return t?t.map(QLr).join(" "):e}},ast={...V3,getAnimatableNone:e=>{const t=V3.parse(e);return V3.createTransformer(e)(t.map(a=>typeof a=="number"?0:typeof a=="object"?{...a,alpha:1}:a))}},Sdn={...bW,transform:Math.round},JLr={rotate:GN,rotateX:GN,rotateY:GN,rotateZ:GN,scale:s_e,scaleX:s_e,scaleY:s_e,scaleZ:s_e,skew:GN,skewX:GN,skewY:GN,distance:ja,translateX:ja,translateY:ja,translateZ:ja,x:ja,y:ja,z:ja,perspective:ja,transformPerspective:ja,opacity:Yse,originX:udn,originY:udn,originZ:ja},Mdt={borderWidth:ja,borderTopWidth:ja,borderRightWidth:ja,borderBottomWidth:ja,borderLeftWidth:ja,borderRadius:ja,borderTopLeftRadius:ja,borderTopRightRadius:ja,borderBottomRightRadius:ja,borderBottomLeftRadius:ja,width:ja,maxWidth:ja,height:ja,maxHeight:ja,top:ja,right:ja,bottom:ja,left:ja,inset:ja,insetBlock:ja,insetBlockStart:ja,insetBlockEnd:ja,insetInline:ja,insetInlineStart:ja,insetInlineEnd:ja,padding:ja,paddingTop:ja,paddingRight:ja,paddingBottom:ja,paddingLeft:ja,paddingBlock:ja,paddingBlockStart:ja,paddingBlockEnd:ja,paddingInline:ja,paddingInlineStart:ja,paddingInlineEnd:ja,margin:ja,marginTop:ja,marginRight:ja,marginBottom:ja,marginLeft:ja,marginBlock:ja,marginBlockStart:ja,marginBlockEnd:ja,marginInline:ja,marginInlineStart:ja,marginInlineEnd:ja,fontSize:ja,backgroundPositionX:ja,backgroundPositionY:ja,...JLr,zIndex:Sdn,fillOpacity:Yse,strokeOpacity:Yse,numOctaves:Sdn},eDr={...Mdt,color:E1,backgroundColor:E1,outlineColor:E1,fill:E1,stroke:E1,borderColor:E1,borderTopColor:E1,borderRightColor:E1,borderBottomColor:E1,borderLeftColor:E1,filter:ist,WebkitFilter:ist,mask:ast,WebkitMask:ast},Okn=e=>eDr[e],tDr=new Set([ist,ast]);function Lkn(e,t){let r=Okn(e);return tDr.has(r)||(r=V3),r.getAnimatableNone?r.getAnimatableNone(t):void 0}const nDr=new Set(["auto","none","0"]);function rDr(e,t,r){let a=0,s;for(;a{t.getValue(f).set(p)}),this.resolveNoneKeyframes()}}function Dkn(e,t,r){if(e==null)return[];if(e instanceof EventTarget)return[e];if(typeof e=="string"){let a=document;const s=(r==null?void 0:r[e])??a.querySelectorAll(e);return s?Array.from(s):[]}return Array.from(e).filter(a=>a!=null)}const Mkn=(e,t)=>t&&typeof e=="number"?t.transform(e):e;function MEe(e){return zAn(e)&&"offsetHeight"in e&&!("ownerSVGElement"in e)}const{schedule:Pdt}=tkn(queueMicrotask,!1),w3={x:!1,y:!1};function Pkn(){return w3.x||w3.y}function aDr(e){return e==="x"||e==="y"?w3[e]?null:(w3[e]=!0,()=>{w3[e]=!1}):w3.x||w3.y?null:(w3.x=w3.y=!0,()=>{w3.x=w3.y=!1})}function Bkn(e,t){const r=Dkn(e),a=new AbortController,s={passive:!0,...t,signal:a.signal};return[r,s,()=>a.abort()]}function sDr(e){return!(e.pointerType==="touch"||Pkn())}function oDr(e,t,r={}){const[a,s,o]=Bkn(e,r);return a.forEach(u=>{let h=!1,f=!1,p;const m=()=>{u.removeEventListener("pointerleave",S)},b=A=>{p&&(p(A),p=void 0),m()},_=A=>{h=!1,window.removeEventListener("pointerup",_),window.removeEventListener("pointercancel",_),f&&(f=!1,b(A))},w=()=>{h=!0,window.addEventListener("pointerup",_,s),window.addEventListener("pointercancel",_,s)},S=A=>{if(A.pointerType!=="touch"){if(h){f=!0;return}b(A)}},C=A=>{if(!sDr(A))return;f=!1;const k=t(u,A);typeof k=="function"&&(p=k,u.addEventListener("pointerleave",S,s))};u.addEventListener("pointerenter",C,s),u.addEventListener("pointerdown",w,s)}),o}const Fkn=(e,t)=>t?e===t?!0:Fkn(e,t.parentElement):!1,Bdt=e=>e.pointerType==="mouse"?typeof e.button!="number"||e.button<=0:e.isPrimary!==!1,lDr=new Set(["BUTTON","INPUT","SELECT","TEXTAREA","A"]);function cDr(e){return lDr.has(e.tagName)||e.isContentEditable===!0}const uDr=new Set(["INPUT","SELECT","TEXTAREA"]);function hDr(e){return uDr.has(e.tagName)||e.isContentEditable===!0}const PEe=new WeakSet;function Tdn(e){return t=>{t.key==="Enter"&&e(t)}}function yXe(e,t){e.dispatchEvent(new PointerEvent("pointer"+t,{isPrimary:!0,bubbles:!0}))}const dDr=(e,t)=>{const r=e.currentTarget;if(!r)return;const a=Tdn(()=>{if(PEe.has(r))return;yXe(r,"down");const s=Tdn(()=>{yXe(r,"up")}),o=()=>yXe(r,"cancel");r.addEventListener("keyup",s,t),r.addEventListener("blur",o,t)});r.addEventListener("keydown",a,t),r.addEventListener("blur",()=>r.removeEventListener("keydown",a),t)};function Cdn(e){return Bdt(e)&&!Pkn()}const Adn=new WeakSet;function fDr(e,t,r={}){const[a,s,o]=Bkn(e,r),u=h=>{const f=h.currentTarget;if(!Cdn(h)||Adn.has(h))return;PEe.add(f),r.stopPropagation&&Adn.add(h);const p=t(f,h),m=(w,S)=>{window.removeEventListener("pointerup",b),window.removeEventListener("pointercancel",_),PEe.has(f)&&PEe.delete(f),Cdn(w)&&typeof p=="function"&&p(w,{success:S})},b=w=>{m(w,f===window||f===document||r.useGlobalTarget||Fkn(f,w.target))},_=w=>{m(w,!1)};window.addEventListener("pointerup",b,s),window.addEventListener("pointercancel",_,s)};return a.forEach(h=>{(r.useGlobalTarget?window:h).addEventListener("pointerdown",u,s),MEe(h)&&(h.addEventListener("focus",p=>dDr(p,s)),!cDr(h)&&!h.hasAttribute("tabindex")&&(h.tabIndex=0))}),o}function Fdt(e){return zAn(e)&&"ownerSVGElement"in e}const BEe=new WeakMap;let qN;const $kn=(e,t,r)=>(a,s)=>s&&s[0]?s[0][e+"Size"]:Fdt(a)&&"getBBox"in a?a.getBBox()[t]:a[r],pDr=$kn("inline","width","offsetWidth"),gDr=$kn("block","height","offsetHeight");function mDr({target:e,borderBoxSize:t}){var r;(r=BEe.get(e))==null||r.forEach(a=>{a(e,{get width(){return pDr(e,t)},get height(){return gDr(e,t)}})})}function bDr(e){e.forEach(mDr)}function yDr(){typeof ResizeObserver>"u"||(qN=new ResizeObserver(bDr))}function vDr(e,t){qN||yDr();const r=Dkn(e);return r.forEach(a=>{let s=BEe.get(a);s||(s=new Set,BEe.set(a,s)),s.add(t),qN==null||qN.observe(a)}),()=>{r.forEach(a=>{const s=BEe.get(a);s==null||s.delete(t),s!=null&&s.size||qN==null||qN.unobserve(a)})}}const FEe=new Set;let TV;function _Dr(){TV=()=>{const e={get width(){return window.innerWidth},get height(){return window.innerHeight}};FEe.forEach(t=>t(e))},window.addEventListener("resize",TV)}function wDr(e){return FEe.add(e),TV||_Dr(),()=>{FEe.delete(e),!FEe.size&&typeof TV=="function"&&(window.removeEventListener("resize",TV),TV=void 0)}}function kdn(e,t){return typeof e=="function"?wDr(e):vDr(e,t)}function EDr(e){return Fdt(e)&&e.tagName==="svg"}const xDr=[...Nkn,E1,V3],SDr=e=>xDr.find(Ikn(e)),Rdn=()=>({translate:0,scale:1,origin:0,originPoint:0}),CV=()=>({x:Rdn(),y:Rdn()}),Idn=()=>({min:0,max:0}),yp=()=>({x:Idn(),y:Idn()}),TDr=new WeakMap;function $5e(e){return e!==null&&typeof e=="object"&&typeof e.start=="function"}function jse(e){return typeof e=="string"||Array.isArray(e)}const $dt=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],Udt=["initial",...$dt];function U5e(e){return $5e(e.animate)||Udt.some(t=>jse(e[t]))}function Ukn(e){return!!(U5e(e)||e.variants)}function CDr(e,t,r){for(const a in t){const s=t[a],o=r[a];if(Em(s))e.addValue(a,s);else if(Em(o))e.addValue(a,mj(s,{owner:e}));else if(o!==s)if(e.hasValue(a)){const u=e.getValue(a);u.liveStyle===!0?u.jump(s):u.hasAnimated||u.set(s)}else{const u=e.getStaticValue(a);e.addValue(a,mj(u!==void 0?u:s,{owner:e}))}}for(const a in r)t[a]===void 0&&e.removeValue(a);return t}const sst={current:null},zkn={current:!1},ADr=typeof window<"u";function kDr(){if(zkn.current=!0,!!ADr)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>sst.current=e.matches;e.addEventListener("change",t),t()}else sst.current=!1}const Ndn=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];let ESe={};function Gkn(e){ESe=e}function RDr(){return ESe}class IDr{scrapeMotionValuesFromProps(t,r,a){return{}}constructor({parent:t,props:r,presenceContext:a,reducedMotionConfig:s,skipAnimations:o,blockInitialAnimation:u,visualState:h},f={}){this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.shouldSkipAnimations=!1,this.values=new Map,this.KeyframeResolver=Idt,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.hasBeenMounted=!1,this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.renderScheduledAt=0,this.scheduleRender=()=>{const w=Vy.now();this.renderScheduledAtthis.bindToMotionValue(o,s)),this.reducedMotionConfig==="never"?this.shouldReduceMotion=!1:this.reducedMotionConfig==="always"?this.shouldReduceMotion=!0:(zkn.current||kDr(),this.shouldReduceMotion=sst.current),this.shouldSkipAnimations=this.skipAnimationsConfig??!1,(a=this.parent)==null||a.addChild(this),this.update(this.props,this.presenceContext),this.hasBeenMounted=!0}unmount(){var t;this.projection&&this.projection.unmount(),$O(this.notifyUpdate),$O(this.render),this.valueSubscriptions.forEach(r=>r()),this.valueSubscriptions.clear(),this.removeFromVariantTree&&this.removeFromVariantTree(),(t=this.parent)==null||t.removeChild(this);for(const r in this.events)this.events[r].clear();for(const r in this.features){const a=this.features[r];a&&(a.unmount(),a.isMounted=!1)}this.current=null}addChild(t){this.children.add(t),this.enteringChildren??(this.enteringChildren=new Set),this.enteringChildren.add(t)}removeChild(t){this.children.delete(t),this.enteringChildren&&this.enteringChildren.delete(t)}bindToMotionValue(t,r){if(this.valueSubscriptions.has(t)&&this.valueSubscriptions.get(t)(),r.accelerate&&Ekn.has(t)&&this.current instanceof HTMLElement){const{factory:u,keyframes:h,times:f,ease:p,duration:m}=r.accelerate,b=new _kn({element:this.current,name:t,keyframes:h,times:f,ease:p,duration:Dw(m)}),_=u(b);this.valueSubscriptions.set(t,()=>{_(),b.cancel()});return}const a=vW.has(t);a&&this.onBindTransform&&this.onBindTransform();const s=r.on("change",u=>{this.latestValues[t]=u,this.props.onUpdate&&Dh.preRender(this.notifyUpdate),a&&this.projection&&(this.projection.isTransformDirty=!0),this.scheduleRender()});let o;typeof window<"u"&&window.MotionCheckAppearSync&&(o=window.MotionCheckAppearSync(this,t,r)),this.valueSubscriptions.set(t,()=>{s(),o&&o(),r.owner&&r.stop()})}sortNodePosition(t){return!this.current||!this.sortInstanceNodePosition||this.type!==t.type?0:this.sortInstanceNodePosition(this.current,t.current)}updateFeatures(){let t="animation";for(t in ESe){const r=ESe[t];if(!r)continue;const{isEnabled:a,Feature:s}=r;if(!this.features[t]&&s&&a(this.props)&&(this.features[t]=new s(this)),this.features[t]){const o=this.features[t];o.isMounted?o.update():(o.mount(),o.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):yp()}getStaticValue(t){return this.latestValues[t]}setStaticValue(t,r){this.latestValues[t]=r}update(t,r){(t.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=t,this.prevPresenceContext=this.presenceContext,this.presenceContext=r;for(let a=0;ar.variantChildren.delete(t)}addValue(t,r){const a=this.values.get(t);r!==a&&(a&&this.removeValue(t),this.bindToMotionValue(t,r),this.values.set(t,r),this.latestValues[t]=r.get())}removeValue(t){this.values.delete(t);const r=this.valueSubscriptions.get(t);r&&(r(),this.valueSubscriptions.delete(t)),delete this.latestValues[t],this.removeValueFromRenderState(t,this.renderState)}hasValue(t){return this.values.has(t)}getValue(t,r){if(this.props.values&&this.props.values[t])return this.props.values[t];let a=this.values.get(t);return a===void 0&&r!==void 0&&(a=mj(r===null?void 0:r,{owner:this}),this.addValue(t,a)),a}readValue(t,r){let a=this.latestValues[t]!==void 0||!this.current?this.latestValues[t]:this.getBaseTargetFromProps(this.props,t)??this.readValueFromInstance(this.current,t,this.options);return a!=null&&(typeof a=="string"&&(UAn(a)||GAn(a))?a=parseFloat(a):!SDr(a)&&V3.test(r)&&(a=Lkn(t,r)),this.setBaseTarget(t,Em(a)?a.get():a)),Em(a)?a.get():a}setBaseTarget(t,r){this.baseTarget[t]=r}getBaseTarget(t){var o;const{initial:r}=this.props;let a;if(typeof r=="string"||typeof r=="object"){const u=Ldt(this.props,r,(o=this.presenceContext)==null?void 0:o.custom);u&&(a=u[t])}if(r&&a!==void 0)return a;const s=this.getBaseTargetFromProps(this.props,t);return s!==void 0&&!Em(s)?s:this.initialValues[t]!==void 0&&a===void 0?void 0:this.baseTarget[t]}on(t,r){return this.events[t]||(this.events[t]=new wdt),this.events[t].add(r)}notify(t,...r){this.events[t]&&this.events[t].notify(...r)}scheduleRenderMicrotask(){Pdt.render(this.render)}}class qkn extends IDr{constructor(){super(...arguments),this.KeyframeResolver=iDr}sortInstanceNodePosition(t,r){return t.compareDocumentPosition(r)&2?1:-1}getBaseTargetFromProps(t,r){const a=t.style;return a?a[r]:void 0}removeValueFromRenderState(t,{vars:r,style:a}){delete r[t],delete a[t]}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:t}=this.props;Em(t)&&(this.childSubscription=t.on("change",r=>{this.current&&(this.current.textContent=`${r}`)}))}}class E9{constructor(t){this.isMounted=!1,this.node=t}update(){}}function Hkn({top:e,left:t,right:r,bottom:a}){return{x:{min:t,max:r},y:{min:e,max:a}}}function NDr({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}function ODr(e,t){if(!t)return e;const r=t({x:e.left,y:e.top}),a=t({x:e.right,y:e.bottom});return{top:r.y,left:r.x,bottom:a.y,right:a.x}}function vXe(e){return e===void 0||e===1}function ost({scale:e,scaleX:t,scaleY:r}){return!vXe(e)||!vXe(t)||!vXe(r)}function TB(e){return ost(e)||Vkn(e)||e.z||e.rotate||e.rotateX||e.rotateY||e.skewX||e.skewY}function Vkn(e){return Odn(e.x)||Odn(e.y)}function Odn(e){return e&&e!=="0%"}function xSe(e,t,r){const a=e-r,s=t*a;return r+s}function Ldn(e,t,r,a,s){return s!==void 0&&(e=xSe(e,s,a)),xSe(e,r,a)+t}function lst(e,t=0,r=1,a,s){e.min=Ldn(e.min,t,r,a,s),e.max=Ldn(e.max,t,r,a,s)}function Ykn(e,{x:t,y:r}){lst(e.x,t.translate,t.scale,t.originPoint),lst(e.y,r.translate,r.scale,r.originPoint)}const Ddn=.999999999999,Mdn=1.0000000000001;function LDr(e,t,r,a=!1){var h;const s=r.length;if(!s)return;t.x=t.y=1;let o,u;for(let f=0;fDdn&&(t.x=1),t.yDdn&&(t.y=1)}function LC(e,t){e.min+=t,e.max+=t}function Pdn(e,t,r,a,s=.5){const o=vd(e.min,e.max,s);lst(e,t,r,o,a)}function Bdn(e,t){return typeof e=="string"?parseFloat(e)/100*(t.max-t.min):e}function $Ee(e,t,r){const a=r??e;Pdn(e.x,Bdn(t.x,a.x),t.scaleX,t.scale,t.originX),Pdn(e.y,Bdn(t.y,a.y),t.scaleY,t.scale,t.originY)}function jkn(e,t){return Hkn(ODr(e.getBoundingClientRect(),t))}function DDr(e,t,r){const a=jkn(e,r),{scroll:s}=t;return s&&(LC(a.x,s.offset.x),LC(a.y,s.offset.y)),a}const MDr={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},PDr=yW.length;function BDr(e,t,r){let a="",s=!0;for(let o=0;o{if(!t.target)return e;if(typeof e=="string")if(ja.test(e))e=parseFloat(e);else return e;const r=Fdn(e,t.target.x),a=Fdn(e,t.target.y);return`${r}% ${a}%`}},FDr={correct:(e,{treeScale:t,projectionDelta:r})=>{const a=e,s=V3.parse(e);if(s.length>5)return a;const o=V3.createTransformer(e),u=typeof s[0]!="number"?1:0,h=r.x.scale*t.x,f=r.y.scale*t.y;s[0+u]/=h,s[1+u]/=f;const p=vd(h,f,.5);return typeof s[2+u]=="number"&&(s[2+u]/=p),typeof s[3+u]=="number"&&(s[3+u]/=p),o(s)}},cst={borderRadius:{..._re,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:_re,borderTopRightRadius:_re,borderBottomLeftRadius:_re,borderBottomRightRadius:_re,boxShadow:FDr};function Kkn(e,{layout:t,layoutId:r}){return vW.has(e)||e.startsWith("origin")||(t||r!==void 0)&&(!!cst[e]||e==="opacity")}function Gdt(e,t,r){var u;const a=e.style,s=t==null?void 0:t.style,o={};if(!a)return o;for(const h in a)(Em(a[h])||s&&Em(s[h])||Kkn(h,e)||((u=r==null?void 0:r.getValue(h))==null?void 0:u.liveStyle)!==void 0)&&(o[h]=a[h]);return o}function $Dr(e){return window.getComputedStyle(e)}class UDr extends qkn{constructor(){super(...arguments),this.type="html",this.renderInstance=Wkn}readValueFromInstance(t,r){var a;if(vW.has(r))return(a=this.projection)!=null&&a.isProjecting?Kat(r):sLr(t,r);{const s=$Dr(t),o=(rkn(r)?s.getPropertyValue(r):s[r])||0;return typeof o=="string"?o.trim():o}}measureInstanceViewportBox(t,{transformPagePoint:r}){return jkn(t,r)}build(t,r,a){zdt(t,r,a.transformTemplate)}scrapeMotionValuesFromProps(t,r,a){return Gdt(t,r,a)}}const zDr={offset:"stroke-dashoffset",array:"stroke-dasharray"},GDr={offset:"strokeDashoffset",array:"strokeDasharray"};function qDr(e,t,r=1,a=0,s=!0){e.pathLength=1;const o=s?zDr:GDr;e[o.offset]=`${-a}`,e[o.array]=`${t} ${r}`}const HDr=["offsetDistance","offsetPath","offsetRotate","offsetAnchor"];function Xkn(e,{attrX:t,attrY:r,attrScale:a,pathLength:s,pathSpacing:o=1,pathOffset:u=0,...h},f,p,m){if(zdt(e,h,p),f){e.style.viewBox&&(e.attrs.viewBox=e.style.viewBox);return}e.attrs=e.style,e.style={};const{attrs:b,style:_}=e;b.transform&&(_.transform=b.transform,delete b.transform),(_.transform||b.transformOrigin)&&(_.transformOrigin=b.transformOrigin??"50% 50%",delete b.transformOrigin),_.transform&&(_.transformBox=(m==null?void 0:m.transformBox)??"fill-box",delete b.transformBox);for(const w of HDr)b[w]!==void 0&&(_[w]=b[w],delete b[w]);t!==void 0&&(b.x=t),r!==void 0&&(b.y=r),a!==void 0&&(b.scale=a),s!==void 0&&qDr(b,s,o,u,!1)}const Qkn=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]),Zkn=e=>typeof e=="string"&&e.toLowerCase()==="svg";function VDr(e,t,r,a){Wkn(e,t,void 0,a);for(const s in t.attrs)e.setAttribute(Qkn.has(s)?s:Ddt(s),t.attrs[s])}function Jkn(e,t,r){const a=Gdt(e,t,r);for(const s in e)if(Em(e[s])||Em(t[s])){const o=yW.indexOf(s)!==-1?"attr"+s.charAt(0).toUpperCase()+s.substring(1):s;a[o]=e[s]}return a}class YDr extends qkn{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1,this.measureInstanceViewportBox=yp}getBaseTargetFromProps(t,r){return t[r]}readValueFromInstance(t,r){if(vW.has(r)){const a=Okn(r);return a&&a.default||0}return r=Qkn.has(r)?r:Ddt(r),t.getAttribute(r)}scrapeMotionValuesFromProps(t,r,a){return Jkn(t,r,a)}build(t,r,a){Xkn(t,r,this.isSVGTag,a.transformTemplate,a.style)}renderInstance(t,r,a,s){VDr(t,r,a,s)}mount(t){this.isSVGTag=Zkn(t.tagName),super.mount(t)}}const jDr=Udt.length;function e6n(e){if(!e)return;if(!e.isControllingVariants){const r=e.parent?e6n(e.parent)||{}:{};return e.props.initial!==void 0&&(r.initial=e.props.initial),r}const t={};for(let r=0;rPromise.all(t.map(({animation:r,options:a})=>jLr(e,r,a)))}function QDr(e){let t=XDr(e),r=$dn(),a=!0,s=!1;const o=p=>(m,b)=>{var w;const _=dF(e,b,p==="exit"?(w=e.presenceContext)==null?void 0:w.custom:void 0);if(_){const{transition:S,transitionEnd:C,...A}=_;m={...m,...A,...C}}return m};function u(p){t=p(e)}function h(p){const{props:m}=e,b=e6n(e.parent)||{},_=[],w=new Set;let S={},C=1/0;for(let k=0;kC&&P,G=!1;const B=Array.isArray(L)?L:[L];let Z=B.reduce(o(I),{});M===!1&&(Z={});const{prevResolvedValues:z={}}=N,Y={...z,...Z},W=j=>{$=!0,w.has(j)&&(G=!0,w.delete(j)),N.needsAnimating[j]=!0;const ee=e.getValue(j);ee&&(ee.liveStyle=!1)};for(const j in Y){const ee=Z[j],te=z[j];if(S.hasOwnProperty(j))continue;let ne=!1;tst(ee)&&tst(te)?ne=!t6n(ee,te):ne=ee!==te,ne?ee!=null?W(j):w.add(j):ee!==void 0&&w.has(j)?W(j):N.protectedKeys[j]=!0}N.prevProp=L,N.prevResolvedValues=Z,N.isActive&&(S={...S,...Z}),(a||s)&&e.blockInitialAnimation&&($=!1);const Q=F&&U;$&&(!Q||G)&&_.push(...B.map(j=>{const ee={type:I};if(typeof j=="string"&&(a||s)&&!Q&&e.manuallyAnimateOnMount&&e.parent){const{parent:te}=e,ne=dF(te,j);if(te.enteringChildren&&ne){const{delayChildren:se}=ne.transition||{};ee.delay=xkn(te.enteringChildren,e,se)}}return{animation:j,options:ee}}))}if(w.size){const k={};if(typeof m.initial!="boolean"){const I=dF(e,Array.isArray(m.initial)?m.initial[0]:m.initial);I&&I.transition&&(k.transition=I.transition)}w.forEach(I=>{const N=e.getBaseTarget(I),L=e.getValue(I);L&&(L.liveStyle=!0),k[I]=N??null}),_.push({animation:k})}let A=!!_.length;return a&&(m.initial===!1||m.initial===m.animate)&&!e.manuallyAnimateOnMount&&(A=!1),a=!1,s=!1,A?t(_):Promise.resolve()}function f(p,m){var _;if(r[p].isActive===m)return Promise.resolve();(_=e.variantChildren)==null||_.forEach(w=>{var S;return(S=w.animationState)==null?void 0:S.setActive(p,m)}),r[p].isActive=m;const b=h(p);for(const w in r)r[w].protectedKeys={};return b}return{animateChanges:h,setActive:f,setAnimateFunction:u,getState:()=>r,reset:()=>{r=$dn(),s=!0}}}function ZDr(e,t){return typeof t=="string"?t!==e:Array.isArray(t)?!t6n(t,e):!1}function uB(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function $dn(){return{animate:uB(!0),whileInView:uB(),whileHover:uB(),whileTap:uB(),whileDrag:uB(),whileFocus:uB(),exit:uB()}}function ust(e,t){e.min=t.min,e.max=t.max}function b3(e,t){ust(e.x,t.x),ust(e.y,t.y)}function Udn(e,t){e.translate=t.translate,e.scale=t.scale,e.originPoint=t.originPoint,e.origin=t.origin}const n6n=1e-4,JDr=1-n6n,eMr=1+n6n,r6n=.01,tMr=0-r6n,nMr=0+r6n;function Yy(e){return e.max-e.min}function rMr(e,t,r){return Math.abs(e-t)<=r}function zdn(e,t,r,a=.5){e.origin=a,e.originPoint=vd(t.min,t.max,e.origin),e.scale=Yy(r)/Yy(t),e.translate=vd(r.min,r.max,e.origin)-e.originPoint,(e.scale>=JDr&&e.scale<=eMr||isNaN(e.scale))&&(e.scale=1),(e.translate>=tMr&&e.translate<=nMr||isNaN(e.translate))&&(e.translate=0)}function Wae(e,t,r,a){zdn(e.x,t.x,r.x,a?a.originX:void 0),zdn(e.y,t.y,r.y,a?a.originY:void 0)}function Gdn(e,t,r,a=0){const s=a?vd(r.min,r.max,a):r.min;e.min=s+t.min,e.max=e.min+Yy(t)}function iMr(e,t,r,a){Gdn(e.x,t.x,r.x,a==null?void 0:a.x),Gdn(e.y,t.y,r.y,a==null?void 0:a.y)}function qdn(e,t,r,a=0){const s=a?vd(r.min,r.max,a):r.min;e.min=t.min-s,e.max=e.min+Yy(t)}function SSe(e,t,r,a){qdn(e.x,t.x,r.x,a==null?void 0:a.x),qdn(e.y,t.y,r.y,a==null?void 0:a.y)}function Hdn(e,t,r,a,s){return e-=t,e=xSe(e,1/r,a),s!==void 0&&(e=xSe(e,1/s,a)),e}function aMr(e,t=0,r=1,a=.5,s,o=e,u=e){if(rA.test(t)&&(t=parseFloat(t),t=vd(u.min,u.max,t/100)-u.min),typeof t!="number")return;let h=vd(o.min,o.max,a);e===o&&(h-=t),e.min=Hdn(e.min,t,r,h,s),e.max=Hdn(e.max,t,r,h,s)}function Vdn(e,t,[r,a,s],o,u){aMr(e,t[r],t[a],t[s],t.scale,o,u)}const sMr=["x","scaleX","originX"],oMr=["y","scaleY","originY"];function Ydn(e,t,r,a){Vdn(e.x,t,sMr,r?r.x:void 0,a?a.x:void 0),Vdn(e.y,t,oMr,r?r.y:void 0,a?a.y:void 0)}function jdn(e){return e.translate===0&&e.scale===1}function i6n(e){return jdn(e.x)&&jdn(e.y)}function Wdn(e,t){return e.min===t.min&&e.max===t.max}function lMr(e,t){return Wdn(e.x,t.x)&&Wdn(e.y,t.y)}function Kdn(e,t){return Math.round(e.min)===Math.round(t.min)&&Math.round(e.max)===Math.round(t.max)}function a6n(e,t){return Kdn(e.x,t.x)&&Kdn(e.y,t.y)}function Xdn(e){return Yy(e.x)/Yy(e.y)}function Qdn(e,t){return e.translate===t.translate&&e.scale===t.scale&&e.originPoint===t.originPoint}function SC(e){return[e("x"),e("y")]}function cMr(e,t,r){let a="";const s=e.x.translate/t.x,o=e.y.translate/t.y,u=(r==null?void 0:r.z)||0;if((s||o||u)&&(a=`translate3d(${s}px, ${o}px, ${u}px) `),(t.x!==1||t.y!==1)&&(a+=`scale(${1/t.x}, ${1/t.y}) `),r){const{transformPerspective:p,rotate:m,rotateX:b,rotateY:_,skewX:w,skewY:S}=r;p&&(a=`perspective(${p}px) ${a}`),m&&(a+=`rotate(${m}deg) `),b&&(a+=`rotateX(${b}deg) `),_&&(a+=`rotateY(${_}deg) `),w&&(a+=`skewX(${w}deg) `),S&&(a+=`skewY(${S}deg) `)}const h=e.x.scale*t.x,f=e.y.scale*t.y;return(h!==1||f!==1)&&(a+=`scale(${h}, ${f})`),a||"none"}const s6n=["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"],uMr=s6n.length,Zdn=e=>typeof e=="string"?parseFloat(e):e,Jdn=e=>typeof e=="number"||ja.test(e);function hMr(e,t,r,a,s,o){s?(e.opacity=vd(0,r.opacity??1,dMr(a)),e.opacityExit=vd(t.opacity??1,0,fMr(a))):o&&(e.opacity=vd(t.opacity??1,r.opacity??1,a));for(let u=0;uat?1:r(Vse(e,t,a))}function pMr(e,t,r){const a=Em(e)?e:mj(e);return a.start(Odt("",a,t,r)),a.animation}function Wse(e,t,r,a={passive:!0}){return e.addEventListener(t,r,a),()=>e.removeEventListener(t,r)}const gMr=(e,t)=>e.depth-t.depth;class mMr{constructor(){this.children=[],this.isDirty=!1}add(t){vdt(this.children,t),this.isDirty=!0}remove(t){bSe(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(gMr),this.isDirty=!1,this.children.forEach(t)}}function bMr(e,t){const r=Vy.now(),a=({timestamp:s})=>{const o=s-r;o>=t&&($O(a),e(o-t))};return Dh.setup(a,!0),()=>$O(a)}function UEe(e){return Em(e)?e.get():e}class yMr{constructor(){this.members=[]}add(t){vdt(this.members,t);for(let r=this.members.length-1;r>=0;r--){const a=this.members[r];if(a===t||a===this.lead||a===this.prevLead)continue;const s=a.instance;(!s||s.isConnected===!1)&&!a.snapshot&&(bSe(this.members,a),a.unmount())}t.scheduleRender()}remove(t){if(bSe(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){const r=this.members[this.members.length-1];r&&this.promote(r)}}relegate(t){var r;for(let a=this.members.indexOf(t)-1;a>=0;a--){const s=this.members[a];if(s.isPresent!==!1&&((r=s.instance)==null?void 0:r.isConnected)!==!1)return this.promote(s),!0}return!1}promote(t,r){var s;const a=this.lead;if(t!==a&&(this.prevLead=a,this.lead=t,t.show(),a)){a.updateSnapshot(),t.scheduleRender();const{layoutDependency:o}=a.options,{layoutDependency:u}=t.options;(o===void 0||o!==u)&&(t.resumeFrom=a,r&&(a.preserveOpacity=!0),a.snapshot&&(t.snapshot=a.snapshot,t.snapshot.latestValues=a.animationValues||a.latestValues),(s=t.root)!=null&&s.isUpdating&&(t.isLayoutDirty=!0)),t.options.crossfade===!1&&a.hide()}}exitAnimationComplete(){this.members.forEach(t=>{var r,a,s,o,u;(a=(r=t.options).onExitComplete)==null||a.call(r),(u=(s=t.resumingFrom)==null?void 0:(o=s.options).onExitComplete)==null||u.call(o)})}scheduleRender(){this.members.forEach(t=>t.instance&&t.scheduleRender(!1))}removeLeadSnapshot(){var t;(t=this.lead)!=null&&t.snapshot&&(this.lead.snapshot=void 0)}}const zEe={hasAnimatedSinceResize:!0,hasEverUpdated:!1},_Xe=["","X","Y","Z"],vMr=1e3;let _Mr=0;function wXe(e,t,r,a){const{latestValues:s}=t;s[e]&&(r[e]=s[e],t.setStaticValue(e,0),a&&(a[e]=0))}function l6n(e){if(e.hasCheckedOptimisedAppear=!0,e.root===e)return;const{visualElement:t}=e.options;if(!t)return;const r=kkn(t);if(window.MotionHasOptimisedAnimation(r,"transform")){const{layout:s,layoutId:o}=e.options;window.MotionCancelOptimisedAnimation(r,"transform",Dh,!(s||o))}const{parent:a}=e;a&&!a.hasCheckedOptimisedAppear&&l6n(a)}function c6n({attachResizeListener:e,defaultParent:t,measureScroll:r,checkIsScrollRoot:a,resetTransform:s}){return class{constructor(u={},h=t==null?void 0:t()){this.id=_Mr++,this.animationId=0,this.animationCommitId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.layoutVersion=0,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,this.nodes.forEach(xMr),this.nodes.forEach(RMr),this.nodes.forEach(IMr),this.nodes.forEach(SMr)},this.resolvedRelativeTargetAt=0,this.linkedParentVersion=0,this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=u,this.root=h?h.root||h:this,this.path=h?[...h.path,h]:[],this.parent=h,this.depth=h?h.depth+1:0;for(let f=0;fthis.root.updateBlockedByResize=!1;Dh.read(()=>{b=window.innerWidth}),e(u,()=>{const w=window.innerWidth;w!==b&&(b=w,this.root.updateBlockedByResize=!0,m&&m(),m=bMr(_,250),zEe.hasAnimatedSinceResize&&(zEe.hasAnimatedSinceResize=!1,this.nodes.forEach(rfn)))})}h&&this.root.registerSharedNode(h,this),this.options.animate!==!1&&p&&(h||f)&&this.addEventListener("didUpdate",({delta:m,hasLayoutChanged:b,hasRelativeLayoutChanged:_,layout:w})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const S=this.options.transition||p.getDefaultTransition()||MMr,{onLayoutAnimationStart:C,onLayoutAnimationComplete:A}=p.getProps(),k=!this.targetLayout||!a6n(this.targetLayout,w),I=!b&&_;if(this.options.layoutRoot||this.resumeFrom||I||b&&(k||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0);const N={...Ndt(S,"layout"),onPlay:C,onComplete:A};(p.shouldReduceMotion||this.options.layoutRoot)&&(N.delay=0,N.type=!1),this.startAnimation(N),this.setAnimationOrigin(m,I)}else b||rfn(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=w})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const u=this.getStack();u&&u.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,this.eventHandlers.clear(),$O(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(NMr),this.animationId++)}getTransformTemplate(){const{visualElement:u}=this.options;return u&&u.getProps().transformTemplate}willUpdate(u=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.MotionCancelOptimisedAnimation&&!this.hasCheckedOptimisedAppear&&l6n(this),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let m=0;m{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){this.snapshot||!this.instance||(this.snapshot=this.measure(),this.snapshot&&!Yy(this.snapshot.measuredBox.x)&&!Yy(this.snapshot.measuredBox.y)&&(this.snapshot=void 0))}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let f=0;f{const P=L/1e3;ifn(b.x,u.x,P),ifn(b.y,u.y,P),this.setTargetDelta(b),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(SSe(_,this.layout.layoutBox,this.relativeParent.layout.layoutBox,this.options.layoutAnchor||void 0),LMr(this.relativeTarget,this.relativeTargetOrigin,_,P),N&&lMr(this.relativeTarget,N)&&(this.isProjectionDirty=!1),N||(N=yp()),b3(N,this.relativeTarget)),C&&(this.animationValues=m,hMr(m,p,this.latestValues,P,I,k)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=P},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(u){var h,f,p;this.notifyListeners("animationStart"),(h=this.currentAnimation)==null||h.stop(),(p=(f=this.resumingFrom)==null?void 0:f.currentAnimation)==null||p.stop(),this.pendingAnimation&&($O(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Dh.update(()=>{zEe.hasAnimatedSinceResize=!0,this.motionValue||(this.motionValue=mj(0)),this.motionValue.jump(0,!1),this.currentAnimation=pMr(this.motionValue,[0,1e3],{...u,velocity:0,isSync:!0,onUpdate:m=>{this.mixTargetDelta(m),u.onUpdate&&u.onUpdate(m)},onStop:()=>{},onComplete:()=>{u.onComplete&&u.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const u=this.getStack();u&&u.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(vMr),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const u=this.getLead();let{targetWithTransforms:h,target:f,layout:p,latestValues:m}=u;if(!(!h||!f||!p)){if(this!==u&&this.layout&&p&&u6n(this.options.animationType,this.layout.layoutBox,p.layoutBox)){f=this.target||yp();const b=Yy(this.layout.layoutBox.x);f.x.min=u.target.x.min,f.x.max=f.x.min+b;const _=Yy(this.layout.layoutBox.y);f.y.min=u.target.y.min,f.y.max=f.y.min+_}b3(h,f),$Ee(h,m),Wae(this.projectionDeltaWithTransform,this.layoutCorrected,h,m)}}registerSharedNode(u,h){this.sharedNodes.has(u)||this.sharedNodes.set(u,new yMr),this.sharedNodes.get(u).add(h);const p=h.options.initialPromotionConfig;h.promote({transition:p?p.transition:void 0,preserveFollowOpacity:p&&p.shouldPreserveFollowOpacity?p.shouldPreserveFollowOpacity(h):void 0})}isLead(){const u=this.getStack();return u?u.lead===this:!0}getLead(){var h;const{layoutId:u}=this.options;return u?((h=this.getStack())==null?void 0:h.lead)||this:this}getPrevLead(){var h;const{layoutId:u}=this.options;return u?(h=this.getStack())==null?void 0:h.prevLead:void 0}getStack(){const{layoutId:u}=this.options;if(u)return this.root.sharedNodes.get(u)}promote({needsReset:u,transition:h,preserveFollowOpacity:f}={}){const p=this.getStack();p&&p.promote(this,f),u&&(this.projectionDelta=void 0,this.needsReset=!0),h&&this.setOptions({transition:h})}relegate(){const u=this.getStack();return u?u.relegate(this):!1}resetSkewAndRotation(){const{visualElement:u}=this.options;if(!u)return;let h=!1;const{latestValues:f}=u;if((f.z||f.rotate||f.rotateX||f.rotateY||f.rotateZ||f.skewX||f.skewY)&&(h=!0),!h)return;const p={};f.z&&wXe("z",u,p,this.animationValues);for(let m=0;m<_Xe.length;m++)wXe(`rotate${_Xe[m]}`,u,p,this.animationValues),wXe(`skew${_Xe[m]}`,u,p,this.animationValues);u.render();for(const m in p)u.setStaticValue(m,p[m]),this.animationValues&&(this.animationValues[m]=p[m]);u.scheduleRender()}applyProjectionStyles(u,h){if(!this.instance||this.isSVG)return;if(!this.isVisible){u.visibility="hidden";return}const f=this.getTransformTemplate();if(this.needsReset){this.needsReset=!1,u.visibility="",u.opacity="",u.pointerEvents=UEe(h==null?void 0:h.pointerEvents)||"",u.transform=f?f(this.latestValues,""):"none";return}const p=this.getLead();if(!this.projectionDelta||!this.layout||!p.target){this.options.layoutId&&(u.opacity=this.latestValues.opacity!==void 0?this.latestValues.opacity:1,u.pointerEvents=UEe(h==null?void 0:h.pointerEvents)||""),this.hasProjected&&!TB(this.latestValues)&&(u.transform=f?f({},""):"none",this.hasProjected=!1);return}u.visibility="";const m=p.animationValues||p.latestValues;this.applyTransformsToTarget();let b=cMr(this.projectionDeltaWithTransform,this.treeScale,m);f&&(b=f(m,b)),u.transform=b;const{x:_,y:w}=this.projectionDelta;u.transformOrigin=`${_.origin*100}% ${w.origin*100}% 0`,p.animationValues?u.opacity=p===this?m.opacity??this.latestValues.opacity??1:this.preserveOpacity?this.latestValues.opacity:m.opacityExit:u.opacity=p===this?m.opacity!==void 0?m.opacity:"":m.opacityExit!==void 0?m.opacityExit:0;for(const S in cst){if(m[S]===void 0)continue;const{correct:C,applyTo:A,isCSSVariable:k}=cst[S],I=b==="none"?m[S]:C(m[S],p);if(A){const N=A.length;for(let L=0;L{var h;return(h=u.currentAnimation)==null?void 0:h.stop()}),this.root.nodes.forEach(tfn),this.root.sharedNodes.clear()}}}function wMr(e){e.updateLayout()}function EMr(e){var r;const t=((r=e.resumeFrom)==null?void 0:r.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&t&&e.hasListeners("didUpdate")){const{layoutBox:a,measuredBox:s}=e.layout,{animationType:o}=e.options,u=t.source!==e.layout.source;if(o==="size")SC(b=>{const _=u?t.measuredBox[b]:t.layoutBox[b],w=Yy(_);_.min=a[b].min,_.max=_.min+w});else if(o==="x"||o==="y"){const b=o==="x"?"y":"x";ust(u?t.measuredBox[b]:t.layoutBox[b],a[b])}else u6n(o,t.layoutBox,a)&&SC(b=>{const _=u?t.measuredBox[b]:t.layoutBox[b],w=Yy(a[b]);_.max=_.min+w,e.relativeTarget&&!e.currentAnimation&&(e.isProjectionDirty=!0,e.relativeTarget[b].max=e.relativeTarget[b].min+w)});const h=CV();Wae(h,a,t.layoutBox);const f=CV();u?Wae(f,e.applyTransform(s,!0),t.measuredBox):Wae(f,a,t.layoutBox);const p=!i6n(h);let m=!1;if(!e.resumeFrom){const b=e.getClosestProjectingParent();if(b&&!b.resumeFrom){const{snapshot:_,layout:w}=b;if(_&&w){const S=e.options.layoutAnchor||void 0,C=yp();SSe(C,t.layoutBox,_.layoutBox,S);const A=yp();SSe(A,a,w.layoutBox,S),a6n(C,A)||(m=!0),b.options.layoutRoot&&(e.relativeTarget=A,e.relativeTargetOrigin=C,e.relativeParent=b)}}}e.notifyListeners("didUpdate",{layout:a,snapshot:t,delta:f,layoutDelta:h,hasLayoutChanged:p,hasRelativeLayoutChanged:m})}else if(e.isLead()){const{onExitComplete:a}=e.options;a&&a()}e.options.transition=void 0}function xMr(e){e.parent&&(e.isProjecting()||(e.isProjectionDirty=e.parent.isProjectionDirty),e.isSharedProjectionDirty||(e.isSharedProjectionDirty=!!(e.isProjectionDirty||e.parent.isProjectionDirty||e.parent.isSharedProjectionDirty)),e.isTransformDirty||(e.isTransformDirty=e.parent.isTransformDirty))}function SMr(e){e.isProjectionDirty=e.isSharedProjectionDirty=e.isTransformDirty=!1}function TMr(e){e.clearSnapshot()}function tfn(e){e.clearMeasurements()}function CMr(e){e.isLayoutDirty=!0,e.updateLayout()}function nfn(e){e.isLayoutDirty=!1}function AMr(e){e.isAnimationBlocked&&e.layout&&!e.isLayoutDirty&&(e.snapshot=e.layout,e.isLayoutDirty=!0)}function kMr(e){const{visualElement:t}=e.options;t&&t.getProps().onBeforeLayoutMeasure&&t.notify("BeforeLayoutMeasure"),e.resetTransform()}function rfn(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0,e.isProjectionDirty=!0}function RMr(e){e.resolveTargetDelta()}function IMr(e){e.calcProjection()}function NMr(e){e.resetSkewAndRotation()}function OMr(e){e.removeLeadSnapshot()}function ifn(e,t,r){e.translate=vd(t.translate,0,r),e.scale=vd(t.scale,1,r),e.origin=t.origin,e.originPoint=t.originPoint}function afn(e,t,r,a){e.min=vd(t.min,r.min,a),e.max=vd(t.max,r.max,a)}function LMr(e,t,r,a){afn(e.x,t.x,r.x,a),afn(e.y,t.y,r.y,a)}function DMr(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}const MMr={duration:.45,ease:[.4,0,.1,1]},sfn=e=>typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(e),ofn=sfn("applewebkit/")&&!sfn("chrome/")?Math.round:cS;function lfn(e){e.min=ofn(e.min),e.max=ofn(e.max)}function PMr(e){lfn(e.x),lfn(e.y)}function u6n(e,t,r){return e==="position"||e==="preserve-aspect"&&!rMr(Xdn(t),Xdn(r),.2)}function BMr(e){var t;return e!==e.root&&((t=e.scroll)==null?void 0:t.wasRoot)}const FMr=c6n({attachResizeListener:(e,t)=>Wse(e,"resize",t),measureScroll:()=>{var e,t;return{x:document.documentElement.scrollLeft||((e=document.body)==null?void 0:e.scrollLeft)||0,y:document.documentElement.scrollTop||((t=document.body)==null?void 0:t.scrollTop)||0}},checkIsScrollRoot:()=>!0}),EXe={current:void 0},h6n=c6n({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!EXe.current){const e=new FMr({});e.mount(window),e.setOptions({layoutScroll:!0}),EXe.current=e}return EXe.current},resetTransform:(e,t)=>{e.style.transform=t!==void 0?t:"none"},checkIsScrollRoot:e=>window.getComputedStyle(e).position==="fixed"}),qdt=ue.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"});function cfn(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function $Mr(...e){return t=>{let r=!1;const a=e.map(s=>{const o=cfn(s,t);return!r&&typeof o=="function"&&(r=!0),o});if(r)return()=>{for(let s=0;s{const{width:w,height:S,top:C,left:A,right:k,bottom:I}=f.current;if(t||o===!1||!h.current||!w||!S)return;const N=r==="left"?`left: ${A}`:`right: ${k}`,L=a==="bottom"?`bottom: ${I}`:`top: ${C}`;h.current.dataset.motionPopId=u;const P=document.createElement("style");p&&(P.nonce=p);const M=s??document.head;return M.appendChild(P),P.sheet&&P.sheet.insertRule(` + [data-motion-pop-id="${u}"] { + position: absolute !important; + width: ${w}px !important; + height: ${S}px !important; + ${N}px !important; + ${L}px !important; + } + `),()=>{var F;(F=h.current)==null||F.removeAttribute("data-motion-pop-id"),M.contains(P)&&M.removeChild(P)}},[t]),ct.jsx(zMr,{isPresent:t,childRef:h,sizeRef:f,pop:o,children:o===!1?e:ue.cloneElement(e,{ref:b})})}const qMr=({children:e,initial:t,isPresent:r,onExitComplete:a,custom:s,presenceAffectsLayout:o,mode:u,anchorX:h,anchorY:f,root:p})=>{const m=ydt(HMr),b=ue.useId();let _=!0,w=ue.useMemo(()=>(_=!1,{id:b,initial:t,isPresent:r,custom:s,onExitComplete:S=>{m.set(S,!0);for(const C of m.values())if(!C)return;a&&a()},register:S=>(m.set(S,!1),()=>m.delete(S))}),[r,m,a]);return o&&_&&(w={...w}),ue.useMemo(()=>{m.forEach((S,C)=>m.set(C,!1))},[r]),ue.useEffect(()=>{!r&&!m.size&&a&&a()},[r]),e=ct.jsx(GMr,{pop:u==="popLayout",isPresent:r,anchorX:h,anchorY:f,root:p,children:e}),ct.jsx(B5e.Provider,{value:w,children:e})};function HMr(){return new Map}function d6n(e=!0){const t=ue.useContext(B5e);if(t===null)return[!0,null];const{isPresent:r,onExitComplete:a,register:s}=t,o=ue.useId();ue.useEffect(()=>{if(e)return s(o)},[e]);const u=ue.useCallback(()=>e&&a&&a(o),[o,a,e]);return!r&&a?[!1,u]:[!0]}const o_e=e=>e.key||"";function ufn(e){const t=[];return ue.Children.forEach(e,r=>{ue.isValidElement(r)&&t.push(r)}),t}const W4a=({children:e,custom:t,initial:r=!0,onExitComplete:a,presenceAffectsLayout:s=!0,mode:o="sync",propagate:u=!1,anchorX:h="left",anchorY:f="top",root:p})=>{const[m,b]=d6n(u),_=ue.useMemo(()=>ufn(e),[e]),w=u&&!m?[]:_.map(o_e),S=ue.useRef(!0),C=ue.useRef(_),A=ydt(()=>new Map),k=ue.useRef(new Set),[I,N]=ue.useState(_),[L,P]=ue.useState(_);$An(()=>{S.current=!1,C.current=_;for(let U=0;U{const $=o_e(U),G=u&&!m?!1:_===L||w.includes($),B=()=>{if(k.current.has($))return;if(A.has($))k.current.add($),A.set($,!0);else return;let Z=!0;A.forEach(z=>{z||(Z=!1)}),Z&&(F==null||F(),P(C.current),u&&(b==null||b()),a&&a())};return ct.jsx(qMr,{isPresent:G,initial:!S.current||r?void 0:!1,custom:t,presenceAffectsLayout:s,mode:o,root:p,onExitComplete:G?void 0:B,anchorX:h,anchorY:f,children:U},$)})})},f6n=ue.createContext({strict:!1}),hfn={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]};let dfn=!1;function VMr(){if(dfn)return;const e={};for(const t in hfn)e[t]={isEnabled:r=>hfn[t].some(a=>!!r[a])};Gkn(e),dfn=!0}function p6n(){return VMr(),RDr()}function YMr(e){const t=p6n();for(const r in e)t[r]={...t[r],...e[r]};Gkn(t)}const jMr=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","propagate","ignoreStrict","viewport"]);function TSe(e){return e.startsWith("while")||e.startsWith("drag")&&e!=="draggable"||e.startsWith("layout")||e.startsWith("onTap")||e.startsWith("onPan")||e.startsWith("onLayout")||jMr.has(e)}let g6n=e=>!TSe(e);function WMr(e){typeof e=="function"&&(g6n=t=>t.startsWith("on")?!TSe(t):e(t))}try{WMr(require("@emotion/is-prop-valid").default)}catch{}function KMr(e,t,r){const a={};for(const s in e)s==="values"&&typeof e.values=="object"||Em(e[s])||(g6n(s)||r===!0&&TSe(s)||!t&&!TSe(s)||e.draggable&&s.startsWith("onDrag"))&&(a[s]=e[s]);return a}const z5e=ue.createContext({});function XMr(e,t){if(U5e(e)){const{initial:r,animate:a}=e;return{initial:r===!1||jse(r)?r:void 0,animate:jse(a)?a:void 0}}return e.inherit!==!1?t:{}}function QMr(e){const{initial:t,animate:r}=XMr(e,ue.useContext(z5e));return ue.useMemo(()=>({initial:t,animate:r}),[ffn(t),ffn(r)])}function ffn(e){return Array.isArray(e)?e.join(" "):e}const Hdt=()=>({style:{},transform:{},transformOrigin:{},vars:{}});function m6n(e,t,r){for(const a in t)!Em(t[a])&&!Kkn(a,r)&&(e[a]=t[a])}function ZMr({transformTemplate:e},t){return ue.useMemo(()=>{const r=Hdt();return zdt(r,t,e),Object.assign({},r.vars,r.style)},[t])}function JMr(e,t){const r=e.style||{},a={};return m6n(a,r,e),Object.assign(a,ZMr(e,t)),a}function ePr(e,t){const r={},a=JMr(e,t);return e.drag&&e.dragListener!==!1&&(r.draggable=!1,a.userSelect=a.WebkitUserSelect=a.WebkitTouchCallout="none",a.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),e.tabIndex===void 0&&(e.onTap||e.onTapStart||e.whileTap)&&(r.tabIndex=0),r.style=a,r}const b6n=()=>({...Hdt(),attrs:{}});function tPr(e,t,r,a){const s=ue.useMemo(()=>{const o=b6n();return Xkn(o,t,Zkn(a),e.transformTemplate,e.style),{...o.attrs,style:{...o.style}}},[t]);if(e.style){const o={};m6n(o,e.style,e),s.style={...o,...s.style}}return s}const nPr=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function Vdt(e){return typeof e!="string"||e.includes("-")?!1:!!(nPr.indexOf(e)>-1||/[A-Z]/u.test(e))}function rPr(e,t,r,{latestValues:a},s,o=!1,u){const f=(u??Vdt(e)?tPr:ePr)(t,a,s,e),p=KMr(t,typeof e=="string",o),m=e!==ue.Fragment?{...p,...f,ref:r}:{},{children:b}=t,_=ue.useMemo(()=>Em(b)?b.get():b,[b]);return ue.createElement(e,{...m,children:_})}function iPr({scrapeMotionValuesFromProps:e,createRenderState:t},r,a,s){return{latestValues:aPr(r,a,s,e),renderState:t()}}function aPr(e,t,r,a){const s={},o=a(e,{});for(const _ in o)s[_]=UEe(o[_]);let{initial:u,animate:h}=e;const f=U5e(e),p=Ukn(e);t&&p&&!f&&e.inherit!==!1&&(u===void 0&&(u=t.initial),h===void 0&&(h=t.animate));let m=r?r.initial===!1:!1;m=m||u===!1;const b=m?h:u;if(b&&typeof b!="boolean"&&!$5e(b)){const _=Array.isArray(b)?b:[b];for(let w=0;w<_.length;w++){const S=Ldt(e,_[w]);if(S){const{transitionEnd:C,transition:A,...k}=S;for(const I in k){let N=k[I];if(Array.isArray(N)){const L=m?N.length-1:0;N=N[L]}N!==null&&(s[I]=N)}for(const I in C)s[I]=C[I]}}}return s}const y6n=e=>(t,r)=>{const a=ue.useContext(z5e),s=ue.useContext(B5e),o=()=>iPr(e,t,a,s);return r?o():ydt(o)},sPr=y6n({scrapeMotionValuesFromProps:Gdt,createRenderState:Hdt}),oPr=y6n({scrapeMotionValuesFromProps:Jkn,createRenderState:b6n}),lPr=Symbol.for("motionComponentSymbol");function cPr(e,t,r){const a=ue.useRef(r);ue.useInsertionEffect(()=>{a.current=r});const s=ue.useRef(null);return ue.useCallback(o=>{var h;o&&((h=e.onMount)==null||h.call(e,o));const u=a.current;if(typeof u=="function")if(o){const f=u(o);typeof f=="function"&&(s.current=f)}else s.current?(s.current(),s.current=null):u(o);else u&&(u.current=o);t&&(o?t.mount(o):t.unmount())},[t])}const v6n=ue.createContext({});function oV(e){return e&&typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function uPr(e,t,r,a,s,o){var N,L;const{visualElement:u}=ue.useContext(z5e),h=ue.useContext(f6n),f=ue.useContext(B5e),p=ue.useContext(qdt),m=p.reducedMotion,b=p.skipAnimations,_=ue.useRef(null),w=ue.useRef(!1);a=a||h.renderer,!_.current&&a&&(_.current=a(e,{visualState:t,parent:u,props:r,presenceContext:f,blockInitialAnimation:f?f.initial===!1:!1,reducedMotionConfig:m,skipAnimations:b,isSVG:o}),w.current&&_.current&&(_.current.manuallyAnimateOnMount=!0));const S=_.current,C=ue.useContext(v6n);S&&!S.projection&&s&&(S.type==="html"||S.type==="svg")&&hPr(_.current,r,s,C);const A=ue.useRef(!1);ue.useInsertionEffect(()=>{S&&A.current&&S.update(r,f)});const k=r[Akn],I=ue.useRef(!!k&&typeof window<"u"&&!((N=window.MotionHandoffIsComplete)!=null&&N.call(window,k))&&((L=window.MotionHasOptimisedAnimation)==null?void 0:L.call(window,k)));return $An(()=>{w.current=!0,S&&(A.current=!0,window.MotionIsMounted=!0,S.updateFeatures(),S.scheduleRenderMicrotask(),I.current&&S.animationState&&S.animationState.animateChanges())}),ue.useEffect(()=>{S&&(!I.current&&S.animationState&&S.animationState.animateChanges(),I.current&&(queueMicrotask(()=>{var P;(P=window.MotionHandoffMarkAsComplete)==null||P.call(window,k)}),I.current=!1),S.enteringChildren=void 0)}),S}function hPr(e,t,r,a){const{layoutId:s,layout:o,drag:u,dragConstraints:h,layoutScroll:f,layoutRoot:p,layoutAnchor:m,layoutCrossfade:b}=t;e.projection=new r(e.latestValues,t["data-framer-portal-id"]?void 0:_6n(e.parent)),e.projection.setOptions({layoutId:s,layout:o,alwaysMeasureLayout:!!u||h&&oV(h),visualElement:e,animationType:typeof o=="string"?o:"both",initialPromotionConfig:a,crossfade:b,layoutScroll:f,layoutRoot:p,layoutAnchor:m})}function _6n(e){if(e)return e.options.allowProjection!==!1?e.projection:_6n(e.parent)}function xXe(e,{forwardMotionProps:t=!1,type:r}={},a,s){a&&YMr(a);const o=r?r==="svg":Vdt(e),u=o?oPr:sPr;function h(p,m){let b;const _={...ue.useContext(qdt),...p,layoutId:dPr(p)},{isStatic:w}=_,S=QMr(p),C=u(p,w);if(!w&&typeof window<"u"){fPr();const A=pPr(_);b=A.MeasureLayout,S.visualElement=uPr(e,C,_,s,A.ProjectionNode,o)}return ct.jsxs(z5e.Provider,{value:S,children:[b&&S.visualElement?ct.jsx(b,{visualElement:S.visualElement,..._}):null,rPr(e,p,cPr(C,S.visualElement,m),C,w,t,o)]})}h.displayName=`motion.${typeof e=="string"?e:`create(${e.displayName??e.name??""})`}`;const f=ue.forwardRef(h);return f[lPr]=e,f}function dPr({layoutId:e}){const t=ue.useContext(bdt).id;return t&&e!==void 0?t+"-"+e:e}function fPr(e,t){ue.useContext(f6n).strict}function pPr(e){const t=p6n(),{drag:r,layout:a}=t;if(!r&&!a)return{};const s={...r,...a};return{MeasureLayout:r!=null&&r.isEnabled(e)||a!=null&&a.isEnabled(e)?s.MeasureLayout:void 0,ProjectionNode:s.ProjectionNode}}function gPr(e,t){if(typeof Proxy>"u")return xXe;const r=new Map,a=(o,u)=>xXe(o,u,e,t),s=(o,u)=>a(o,u);return new Proxy(s,{get:(o,u)=>u==="create"?a:(r.has(u)||r.set(u,xXe(u,void 0,e,t)),r.get(u))})}const mPr=(e,t)=>t.isSVG??Vdt(e)?new YDr(t):new UDr(t,{allowProjection:e!==ue.Fragment});class bPr extends E9{constructor(t){super(t),t.animationState||(t.animationState=QDr(t))}updateAnimationControlsSubscription(){const{animate:t}=this.node.getProps();$5e(t)&&(this.unmountControls=t.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:t}=this.node.getProps(),{animate:r}=this.node.prevProps||{};t!==r&&this.updateAnimationControlsSubscription()}unmount(){var t;this.node.animationState.reset(),(t=this.unmountControls)==null||t.call(this)}}let yPr=0;class vPr extends E9{constructor(){super(...arguments),this.id=yPr++,this.isExitComplete=!1}update(){var o;if(!this.node.presenceContext)return;const{isPresent:t,onExitComplete:r}=this.node.presenceContext,{isPresent:a}=this.node.prevPresenceContext||{};if(!this.node.animationState||t===a)return;if(t&&a===!1){if(this.isExitComplete){const{initial:u,custom:h}=this.node.getProps();if(typeof u=="string"){const f=dF(this.node,u,h);if(f){const{transition:p,transitionEnd:m,...b}=f;for(const _ in b)(o=this.node.getValue(_))==null||o.jump(b[_])}}this.node.animationState.reset(),this.node.animationState.animateChanges()}else this.node.animationState.setActive("exit",!1);this.isExitComplete=!1;return}const s=this.node.animationState.setActive("exit",!t);r&&!t&&s.then(()=>{this.isExitComplete=!0,r(this.id)})}mount(){const{register:t,onExitComplete:r}=this.node.presenceContext||{};r&&r(this.id),t&&(this.unmount=t(this.id))}unmount(){}}const _Pr={animation:{Feature:bPr},exit:{Feature:vPr}};function Ple(e){return{point:{x:e.pageX,y:e.pageY}}}const wPr=e=>t=>Bdt(t)&&e(t,Ple(t));function Kae(e,t,r,a){return Wse(e,t,wPr(r),a)}const w6n=({current:e})=>e?e.ownerDocument.defaultView:null,pfn=(e,t)=>Math.abs(e-t);function EPr(e,t){const r=pfn(e.x,t.x),a=pfn(e.y,t.y);return Math.sqrt(r**2+a**2)}const gfn=new Set(["auto","scroll"]);class E6n{constructor(t,r,{transformPagePoint:a,contextWindow:s=window,dragSnapToOrigin:o=!1,distanceThreshold:u=3,element:h}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.lastRawMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.scrollPositions=new Map,this.removeScrollListeners=null,this.onElementScroll=w=>{this.handleScroll(w.target)},this.onWindowScroll=()=>{this.handleScroll(window)},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;this.lastRawMoveEventInfo&&(this.lastMoveEventInfo=l_e(this.lastRawMoveEventInfo,this.transformPagePoint));const w=SXe(this.lastMoveEventInfo,this.history),S=this.startEvent!==null,C=EPr(w.offset,{x:0,y:0})>=this.distanceThreshold;if(!S&&!C)return;const{point:A}=w,{timestamp:k}=bm;this.history.push({...A,timestamp:k});const{onStart:I,onMove:N}=this.handlers;S||(I&&I(this.lastMoveEvent,w),this.startEvent=this.lastMoveEvent),N&&N(this.lastMoveEvent,w)},this.handlePointerMove=(w,S)=>{this.lastMoveEvent=w,this.lastRawMoveEventInfo=S,this.lastMoveEventInfo=l_e(S,this.transformPagePoint),Dh.update(this.updatePoint,!0)},this.handlePointerUp=(w,S)=>{this.end();const{onEnd:C,onSessionEnd:A,resumeAnimation:k}=this.handlers;if((this.dragSnapToOrigin||!this.startEvent)&&k&&k(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const I=SXe(w.type==="pointercancel"?this.lastMoveEventInfo:l_e(S,this.transformPagePoint),this.history);this.startEvent&&C&&C(w,I),A&&A(w,I)},!Bdt(t))return;this.dragSnapToOrigin=o,this.handlers=r,this.transformPagePoint=a,this.distanceThreshold=u,this.contextWindow=s||window;const f=Ple(t),p=l_e(f,this.transformPagePoint),{point:m}=p,{timestamp:b}=bm;this.history=[{...m,timestamp:b}];const{onSessionStart:_}=r;_&&_(t,SXe(p,this.history)),this.removeListeners=Lle(Kae(this.contextWindow,"pointermove",this.handlePointerMove),Kae(this.contextWindow,"pointerup",this.handlePointerUp),Kae(this.contextWindow,"pointercancel",this.handlePointerUp)),h&&this.startScrollTracking(h)}startScrollTracking(t){let r=t.parentElement;for(;r;){const a=getComputedStyle(r);(gfn.has(a.overflowX)||gfn.has(a.overflowY))&&this.scrollPositions.set(r,{x:r.scrollLeft,y:r.scrollTop}),r=r.parentElement}this.scrollPositions.set(window,{x:window.scrollX,y:window.scrollY}),window.addEventListener("scroll",this.onElementScroll,{capture:!0}),window.addEventListener("scroll",this.onWindowScroll),this.removeScrollListeners=()=>{window.removeEventListener("scroll",this.onElementScroll,{capture:!0}),window.removeEventListener("scroll",this.onWindowScroll)}}handleScroll(t){const r=this.scrollPositions.get(t);if(!r)return;const a=t===window,s=a?{x:window.scrollX,y:window.scrollY}:{x:t.scrollLeft,y:t.scrollTop},o={x:s.x-r.x,y:s.y-r.y};o.x===0&&o.y===0||(a?this.lastMoveEventInfo&&(this.lastMoveEventInfo.point.x+=o.x,this.lastMoveEventInfo.point.y+=o.y):this.history.length>0&&(this.history[0].x-=o.x,this.history[0].y-=o.y),this.scrollPositions.set(t,s),Dh.update(this.updatePoint,!0))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),this.removeScrollListeners&&this.removeScrollListeners(),this.scrollPositions.clear(),$O(this.updatePoint)}}function l_e(e,t){return t?{point:t(e.point)}:e}function mfn(e,t){return{x:e.x-t.x,y:e.y-t.y}}function SXe({point:e},t){return{point:e,delta:mfn(e,x6n(t)),offset:mfn(e,xPr(t)),velocity:SPr(t,.1)}}function xPr(e){return e[0]}function x6n(e){return e[e.length-1]}function SPr(e,t){if(e.length<2)return{x:0,y:0};let r=e.length-1,a=null;const s=x6n(e);for(;r>=0&&(a=e[r],!(s.timestamp-a.timestamp>Dw(t)));)r--;if(!a)return{x:0,y:0};a===e[0]&&e.length>2&&s.timestamp-a.timestamp>Dw(t)*2&&(a=e[1]);const o=rS(s.timestamp-a.timestamp);if(o===0)return{x:0,y:0};const u={x:(s.x-a.x)/o,y:(s.y-a.y)/o};return u.x===1/0&&(u.x=0),u.y===1/0&&(u.y=0),u}function TPr(e,{min:t,max:r},a){return t!==void 0&&er&&(e=a?vd(r,e,a.max):Math.min(e,r)),e}function bfn(e,t,r){return{min:t!==void 0?e.min+t:void 0,max:r!==void 0?e.max+r-(e.max-e.min):void 0}}function CPr(e,{top:t,left:r,bottom:a,right:s}){return{x:bfn(e.x,r,s),y:bfn(e.y,t,a)}}function yfn(e,t){let r=t.min-e.min,a=t.max-e.max;return t.max-t.mina?r=Vse(t.min,t.max-a,e.min):a>s&&(r=Vse(e.min,e.max-s,t.min)),gA(0,1,r)}function RPr(e,t){const r={};return t.min!==void 0&&(r.min=t.min-e.min),t.max!==void 0&&(r.max=t.max-e.min),r}const hst=.35;function IPr(e=hst){return e===!1?e=0:e===!0&&(e=hst),{x:vfn(e,"left","right"),y:vfn(e,"top","bottom")}}function vfn(e,t,r){return{min:_fn(e,t),max:_fn(e,r)}}function _fn(e,t){return typeof e=="number"?e:e[t]||0}const NPr=new WeakMap;class OPr{constructor(t){this.openDragLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=yp(),this.latestPointerEvent=null,this.latestPanInfo=null,this.visualElement=t}start(t,{snapToCursor:r=!1,distanceThreshold:a}={}){const{presenceContext:s}=this.visualElement;if(s&&s.isPresent===!1)return;const o=b=>{r&&this.snapToCursor(Ple(b).point),this.stopAnimation()},u=(b,_)=>{const{drag:w,dragPropagation:S,onDragStart:C}=this.getProps();if(w&&!S&&(this.openDragLock&&this.openDragLock(),this.openDragLock=aDr(w),!this.openDragLock))return;this.latestPointerEvent=b,this.latestPanInfo=_,this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),SC(k=>{let I=this.getAxisMotionValue(k).get()||0;if(rA.test(I)){const{projection:N}=this.visualElement;if(N&&N.layout){const L=N.layout.layoutBox[k];L&&(I=Yy(L)*(parseFloat(I)/100))}}this.originPoint[k]=I}),C&&Dh.update(()=>C(b,_),!1,!0),nst(this.visualElement,"transform");const{animationState:A}=this.visualElement;A&&A.setActive("whileDrag",!0)},h=(b,_)=>{this.latestPointerEvent=b,this.latestPanInfo=_;const{dragPropagation:w,dragDirectionLock:S,onDirectionLock:C,onDrag:A}=this.getProps();if(!w&&!this.openDragLock)return;const{offset:k}=_;if(S&&this.currentDirection===null){this.currentDirection=DPr(k),this.currentDirection!==null&&C&&C(this.currentDirection);return}this.updateAxis("x",_.point,k),this.updateAxis("y",_.point,k),this.visualElement.render(),A&&Dh.update(()=>A(b,_),!1,!0)},f=(b,_)=>{this.latestPointerEvent=b,this.latestPanInfo=_,this.stop(b,_),this.latestPointerEvent=null,this.latestPanInfo=null},p=()=>{const{dragSnapToOrigin:b}=this.getProps();(b||this.constraints)&&this.startAnimation({x:0,y:0})},{dragSnapToOrigin:m}=this.getProps();this.panSession=new E6n(t,{onSessionStart:o,onStart:u,onMove:h,onSessionEnd:f,resumeAnimation:p},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:m,distanceThreshold:a,contextWindow:w6n(this.visualElement),element:this.visualElement.current})}stop(t,r){const a=t||this.latestPointerEvent,s=r||this.latestPanInfo,o=this.isDragging;if(this.cancel(),!o||!s||!a)return;const{velocity:u}=s;this.startAnimation(u);const{onDragEnd:h}=this.getProps();h&&Dh.postRender(()=>h(a,s))}cancel(){this.isDragging=!1;const{projection:t,animationState:r}=this.visualElement;t&&(t.isAnimationBlocked=!1),this.endPanSession();const{dragPropagation:a}=this.getProps();!a&&this.openDragLock&&(this.openDragLock(),this.openDragLock=null),r&&r.setActive("whileDrag",!1)}endPanSession(){this.panSession&&this.panSession.end(),this.panSession=void 0}updateAxis(t,r,a){const{drag:s}=this.getProps();if(!a||!c_e(t,s,this.currentDirection))return;const o=this.getAxisMotionValue(t);let u=this.originPoint[t]+a[t];this.constraints&&this.constraints[t]&&(u=TPr(u,this.constraints[t],this.elastic[t])),o.set(u)}resolveConstraints(){var o;const{dragConstraints:t,dragElastic:r}=this.getProps(),a=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):(o=this.visualElement.projection)==null?void 0:o.layout,s=this.constraints;t&&oV(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):t&&a?this.constraints=CPr(a.layoutBox,t):this.constraints=!1,this.elastic=IPr(r),s!==this.constraints&&!oV(t)&&a&&this.constraints&&!this.hasMutatedConstraints&&SC(u=>{this.constraints!==!1&&this.getAxisMotionValue(u)&&(this.constraints[u]=RPr(a.layoutBox[u],this.constraints[u]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:r}=this.getProps();if(!t||!oV(t))return!1;const a=t.current,{projection:s}=this.visualElement;if(!s||!s.layout)return!1;const o=DDr(a,s.root,this.visualElement.getTransformPagePoint());let u=APr(s.layout.layoutBox,o);if(r){const h=r(NDr(u));this.hasMutatedConstraints=!!h,h&&(u=Hkn(h))}return u}startAnimation(t){const{drag:r,dragMomentum:a,dragElastic:s,dragTransition:o,dragSnapToOrigin:u,onDragTransitionEnd:h}=this.getProps(),f=this.constraints||{},p=SC(m=>{if(!c_e(m,r,this.currentDirection))return;let b=f&&f[m]||{};(u===!0||u===m)&&(b={min:0,max:0});const _=s?200:1e6,w=s?40:1e7,S={type:"inertia",velocity:a?t[m]:0,bounceStiffness:_,bounceDamping:w,timeConstant:750,restDelta:1,restSpeed:10,...o,...b};return this.startAxisValueAnimation(m,S)});return Promise.all(p).then(h)}startAxisValueAnimation(t,r){const a=this.getAxisMotionValue(t);return nst(this.visualElement,t),a.start(Odt(t,a,0,r,this.visualElement,!1))}stopAnimation(){SC(t=>this.getAxisMotionValue(t).stop())}getAxisMotionValue(t){const r=`_drag${t.toUpperCase()}`,a=this.visualElement.getProps(),s=a[r];return s||this.visualElement.getValue(t,(a.initial?a.initial[t]:void 0)||0)}snapToCursor(t){SC(r=>{const{drag:a}=this.getProps();if(!c_e(r,a,this.currentDirection))return;const{projection:s}=this.visualElement,o=this.getAxisMotionValue(r);if(s&&s.layout){const{min:u,max:h}=s.layout.layoutBox[r],f=o.get()||0;o.set(t[r]-vd(u,h,.5)+f)}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:t,dragConstraints:r}=this.getProps(),{projection:a}=this.visualElement;if(!oV(r)||!a||!this.constraints)return;this.stopAnimation();const s={x:0,y:0};SC(u=>{const h=this.getAxisMotionValue(u);if(h&&this.constraints!==!1){const f=h.get();s[u]=kPr({min:f,max:f},this.constraints[u])}});const{transformTemplate:o}=this.visualElement.getProps();this.visualElement.current.style.transform=o?o({},""):"none",a.root&&a.root.updateScroll(),a.updateLayout(),this.constraints=!1,this.resolveConstraints(),SC(u=>{if(!c_e(u,t,null))return;const h=this.getAxisMotionValue(u),{min:f,max:p}=this.constraints[u];h.set(vd(f,p,s[u]))}),this.visualElement.render()}addListeners(){if(!this.visualElement.current)return;NPr.set(this.visualElement,this);const t=this.visualElement.current,r=Kae(t,"pointerdown",p=>{const{drag:m,dragListener:b=!0}=this.getProps(),_=p.target,w=_!==t&&hDr(_);m&&b&&!w&&this.start(p)});let a;const s=()=>{const{dragConstraints:p}=this.getProps();oV(p)&&p.current&&(this.constraints=this.resolveRefConstraints(),a||(a=LPr(t,p.current,()=>this.scalePositionWithinConstraints())))},{projection:o}=this.visualElement,u=o.addEventListener("measure",s);o&&!o.layout&&(o.root&&o.root.updateScroll(),o.updateLayout()),Dh.read(s);const h=Wse(window,"resize",()=>this.scalePositionWithinConstraints()),f=o.addEventListener("didUpdate",({delta:p,hasLayoutChanged:m})=>{this.isDragging&&m&&(SC(b=>{const _=this.getAxisMotionValue(b);_&&(this.originPoint[b]+=p[b].translate,_.set(_.get()+p[b].translate))}),this.visualElement.render())});return()=>{h(),r(),u(),f&&f(),a&&a()}}getProps(){const t=this.visualElement.getProps(),{drag:r=!1,dragDirectionLock:a=!1,dragPropagation:s=!1,dragConstraints:o=!1,dragElastic:u=hst,dragMomentum:h=!0}=t;return{...t,drag:r,dragDirectionLock:a,dragPropagation:s,dragConstraints:o,dragElastic:u,dragMomentum:h}}}function wfn(e){let t=!0;return()=>{if(t){t=!1;return}e()}}function LPr(e,t,r){const a=kdn(e,wfn(r)),s=kdn(t,wfn(r));return()=>{a(),s()}}function c_e(e,t,r){return(t===!0||t===e)&&(r===null||r===e)}function DPr(e,t=10){let r=null;return Math.abs(e.y)>t?r="y":Math.abs(e.x)>t&&(r="x"),r}class MPr extends E9{constructor(t){super(t),this.removeGroupControls=cS,this.removeListeners=cS,this.controls=new OPr(t)}mount(){const{dragControls:t}=this.node.getProps();t&&(this.removeGroupControls=t.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||cS}update(){const{dragControls:t}=this.node.getProps(),{dragControls:r}=this.node.prevProps||{};t!==r&&(this.removeGroupControls(),t&&(this.removeGroupControls=t.subscribe(this.controls)))}unmount(){this.removeGroupControls(),this.removeListeners(),this.controls.isDragging||this.controls.endPanSession()}}const TXe=e=>(t,r)=>{e&&Dh.update(()=>e(t,r),!1,!0)};class PPr extends E9{constructor(){super(...arguments),this.removePointerDownListener=cS}onPointerDown(t){this.session=new E6n(t,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:w6n(this.node)})}createPanHandlers(){const{onPanSessionStart:t,onPanStart:r,onPan:a,onPanEnd:s}=this.node.getProps();return{onSessionStart:TXe(t),onStart:TXe(r),onMove:TXe(a),onEnd:(o,u)=>{delete this.session,s&&Dh.postRender(()=>s(o,u))}}}mount(){this.removePointerDownListener=Kae(this.node.current,"pointerdown",t=>this.onPointerDown(t))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}let CXe=!1;class BPr extends ue.Component{componentDidMount(){const{visualElement:t,layoutGroup:r,switchLayoutGroup:a,layoutId:s}=this.props,{projection:o}=t;o&&(r.group&&r.group.add(o),a&&a.register&&s&&a.register(o),CXe&&o.root.didUpdate(),o.addEventListener("animationComplete",()=>{this.safeToRemove()}),o.setOptions({...o.options,layoutDependency:this.props.layoutDependency,onExitComplete:()=>this.safeToRemove()})),zEe.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:r,visualElement:a,drag:s,isPresent:o}=this.props,{projection:u}=a;return u&&(u.isPresent=o,t.layoutDependency!==r&&u.setOptions({...u.options,layoutDependency:r}),CXe=!0,s||t.layoutDependency!==r||r===void 0||t.isPresent!==o?u.willUpdate():this.safeToRemove(),t.isPresent!==o&&(o?u.promote():u.relegate()||Dh.postRender(()=>{const h=u.getStack();(!h||!h.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{visualElement:t,layoutAnchor:r}=this.props,{projection:a}=t;a&&(a.options.layoutAnchor=r,a.root.didUpdate(),Pdt.postRender(()=>{!a.currentAnimation&&a.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:t,layoutGroup:r,switchLayoutGroup:a}=this.props,{projection:s}=t;CXe=!0,s&&(s.scheduleCheckAfterUnmount(),r&&r.group&&r.group.remove(s),a&&a.deregister&&a.deregister(s))}safeToRemove(){const{safeToRemove:t}=this.props;t&&t()}render(){return null}}function S6n(e){const[t,r]=d6n(),a=ue.useContext(bdt);return ct.jsx(BPr,{...e,layoutGroup:a,switchLayoutGroup:ue.useContext(v6n),isPresent:t,safeToRemove:r})}const FPr={pan:{Feature:PPr},drag:{Feature:MPr,ProjectionNode:h6n,MeasureLayout:S6n}};function Efn(e,t,r){const{props:a}=e;e.animationState&&a.whileHover&&e.animationState.setActive("whileHover",r==="Start");const s="onHover"+r,o=a[s];o&&Dh.postRender(()=>o(t,Ple(t)))}class $Pr extends E9{mount(){const{current:t}=this.node;t&&(this.unmount=oDr(t,(r,a)=>(Efn(this.node,a,"Start"),s=>Efn(this.node,s,"End"))))}unmount(){}}class UPr extends E9{constructor(){super(...arguments),this.isActive=!1}onFocus(){let t=!1;try{t=this.node.current.matches(":focus-visible")}catch{t=!0}!t||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=Lle(Wse(this.node.current,"focus",()=>this.onFocus()),Wse(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}function xfn(e,t,r){const{props:a}=e;if(e.current instanceof HTMLButtonElement&&e.current.disabled)return;e.animationState&&a.whileTap&&e.animationState.setActive("whileTap",r==="Start");const s="onTap"+(r==="End"?"":r),o=a[s];o&&Dh.postRender(()=>o(t,Ple(t)))}class zPr extends E9{mount(){const{current:t}=this.node;if(!t)return;const{globalTapTarget:r,propagate:a}=this.node.props;this.unmount=fDr(t,(s,o)=>(xfn(this.node,o,"Start"),(u,{success:h})=>xfn(this.node,u,h?"End":"Cancel")),{useGlobalTarget:r,stopPropagation:(a==null?void 0:a.tap)===!1})}unmount(){}}const dst=new WeakMap,AXe=new WeakMap,GPr=e=>{const t=dst.get(e.target);t&&t(e)},qPr=e=>{e.forEach(GPr)};function HPr({root:e,...t}){const r=e||document;AXe.has(r)||AXe.set(r,{});const a=AXe.get(r),s=JSON.stringify(t);return a[s]||(a[s]=new IntersectionObserver(qPr,{root:e,...t})),a[s]}function VPr(e,t,r){const a=HPr(t);return dst.set(e,r),a.observe(e),()=>{dst.delete(e),a.unobserve(e)}}const YPr={some:0,all:1};class jPr extends E9{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){var f;(f=this.stopObserver)==null||f.call(this);const{viewport:t={}}=this.node.getProps(),{root:r,margin:a,amount:s="some",once:o}=t,u={root:r?r.current:void 0,rootMargin:a,threshold:typeof s=="number"?s:YPr[s]},h=p=>{const{isIntersecting:m}=p;if(this.isInView===m||(this.isInView=m,o&&!m&&this.hasEnteredView))return;m&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",m);const{onViewportEnter:b,onViewportLeave:_}=this.node.getProps(),w=m?b:_;w&&w(p)};this.stopObserver=VPr(this.node.current,u,h)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver>"u")return;const{props:t,prevProps:r}=this.node;["amount","margin","root"].some(WPr(t,r))&&this.startObserver()}unmount(){var t;(t=this.stopObserver)==null||t.call(this),this.hasEnteredView=!1,this.isInView=!1}}function WPr({viewport:e={}},{viewport:t={}}={}){return r=>e[r]!==t[r]}const KPr={inView:{Feature:jPr},tap:{Feature:zPr},focus:{Feature:UPr},hover:{Feature:$Pr}},XPr={layout:{ProjectionNode:h6n,MeasureLayout:S6n}},QPr={..._Pr,...KPr,...FPr,...XPr},K4a=gPr(QPr,mPr),ZPr=new RegExp("\\p{Lu}?\\p{Ll}+|[0-9]+|\\p{Lu}+(?!\\p{Ll})|\\p{Emoji_Presentation}|\\p{Extended_Pictographic}|\\p{L}+","gu");function JPr(e){return Array.from(e.match(ZPr)??[])}function X4a(e){return JPr(e).map(r=>r.toLowerCase()).join("-")}const Sfn=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,Tfn=sOr,Q4a=(e,t)=>r=>{var a;if((t==null?void 0:t.variants)==null)return Tfn(e,r==null?void 0:r.class,r==null?void 0:r.className);const{variants:s,defaultVariants:o}=t,u=Object.keys(s).map(p=>{const m=r==null?void 0:r[p],b=o==null?void 0:o[p];if(m===null)return null;const _=Sfn(m)||Sfn(b);return s[p][_]}),h=r&&Object.entries(r).reduce((p,m)=>{let[b,_]=m;return _===void 0||(p[b]=_),p},{}),f=t==null||(a=t.compoundVariants)===null||a===void 0?void 0:a.reduce((p,m)=>{let{class:b,className:_,...w}=m;return Object.entries(w).every(S=>{let[C,A]=S;return Array.isArray(A)?A.includes({...o,...h}[C]):{...o,...h}[C]===A})?[...p,b,_]:p},[]);return Tfn(e,u,f,r==null?void 0:r.class,r==null?void 0:r.className)};function G5e(){return typeof window<"u"}function _W(e){return Ydt(e)?(e.nodeName||"").toLowerCase():"#document"}function X2(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function TA(e){var t;return(t=(Ydt(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function Ydt(e){return G5e()?e instanceof Node||e instanceof X2(e).Node:!1}function yd(e){return G5e()?e instanceof Element||e instanceof X2(e).Element:!1}function Fw(e){return G5e()?e instanceof HTMLElement||e instanceof X2(e).HTMLElement:!1}function fst(e){return!G5e()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof X2(e).ShadowRoot}const eBr=new Set(["inline","contents"]);function Ble(e){const{overflow:t,overflowX:r,overflowY:a,display:s}=gS(e);return/auto|scroll|overlay|hidden|clip/.test(t+a+r)&&!eBr.has(s)}const tBr=new Set(["table","td","th"]);function nBr(e){return tBr.has(_W(e))}const rBr=[":popover-open",":modal"];function q5e(e){return rBr.some(t=>{try{return e.matches(t)}catch{return!1}})}const iBr=["transform","translate","scale","rotate","perspective"],aBr=["transform","translate","scale","rotate","perspective","filter"],sBr=["paint","layout","strict","content"];function jdt(e){const t=H5e(),r=yd(e)?gS(e):e;return iBr.some(a=>r[a]?r[a]!=="none":!1)||(r.containerType?r.containerType!=="normal":!1)||!t&&(r.backdropFilter?r.backdropFilter!=="none":!1)||!t&&(r.filter?r.filter!=="none":!1)||aBr.some(a=>(r.willChange||"").includes(a))||sBr.some(a=>(r.contain||"").includes(a))}function oBr(e){let t=j7(e);for(;Fw(t)&&!P7(t);){if(jdt(t))return t;if(q5e(t))return null;t=j7(t)}return null}function H5e(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const lBr=new Set(["html","body","#document"]);function P7(e){return lBr.has(_W(e))}function gS(e){return X2(e).getComputedStyle(e)}function V5e(e){return yd(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function j7(e){if(_W(e)==="html")return e;const t=e.assignedSlot||e.parentNode||fst(e)&&e.host||TA(e);return fst(t)?t.host:t}function T6n(e){const t=j7(e);return P7(t)?e.ownerDocument?e.ownerDocument.body:e.body:Fw(t)&&Ble(t)?t:T6n(t)}function wO(e,t,r){var a;t===void 0&&(t=[]),r===void 0&&(r=!0);const s=T6n(e),o=s===((a=e.ownerDocument)==null?void 0:a.body),u=X2(s);if(o){const h=pst(u);return t.concat(u,u.visualViewport||[],Ble(s)?s:[],h&&r?wO(h):[])}return t.concat(s,wO(s,[],r))}function pst(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}const cBr=["top","right","bottom","left"],UO=Math.min,Rw=Math.max,CSe=Math.round,u_e=Math.floor,iA=e=>({x:e,y:e}),uBr={left:"right",right:"left",bottom:"top",top:"bottom"},hBr={start:"end",end:"start"};function gst(e,t,r){return Rw(e,UO(t,r))}function W7(e,t){return typeof e=="function"?e(t):e}function K7(e){return e.split("-")[0]}function wW(e){return e.split("-")[1]}function Wdt(e){return e==="x"?"y":"x"}function Kdt(e){return e==="y"?"height":"width"}const dBr=new Set(["top","bottom"]);function VC(e){return dBr.has(K7(e))?"y":"x"}function Xdt(e){return Wdt(VC(e))}function fBr(e,t,r){r===void 0&&(r=!1);const a=wW(e),s=Xdt(e),o=Kdt(s);let u=s==="x"?a===(r?"end":"start")?"right":"left":a==="start"?"bottom":"top";return t.reference[o]>t.floating[o]&&(u=ASe(u)),[u,ASe(u)]}function pBr(e){const t=ASe(e);return[mst(e),t,mst(t)]}function mst(e){return e.replace(/start|end/g,t=>hBr[t])}const Cfn=["left","right"],Afn=["right","left"],gBr=["top","bottom"],mBr=["bottom","top"];function bBr(e,t,r){switch(e){case"top":case"bottom":return r?t?Afn:Cfn:t?Cfn:Afn;case"left":case"right":return t?gBr:mBr;default:return[]}}function yBr(e,t,r,a){const s=wW(e);let o=bBr(K7(e),r==="start",a);return s&&(o=o.map(u=>u+"-"+s),t&&(o=o.concat(o.map(mst)))),o}function ASe(e){return e.replace(/left|right|bottom|top/g,t=>uBr[t])}function vBr(e){return{top:0,right:0,bottom:0,left:0,...e}}function C6n(e){return typeof e!="number"?vBr(e):{top:e,right:e,bottom:e,left:e}}function kSe(e){const{x:t,y:r,width:a,height:s}=e;return{width:a,height:s,top:r,left:t,right:t+a,bottom:r+s,x:t,y:r}}/*! +* tabbable 6.4.0 +* @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE +*/var _Br=["input:not([inert]):not([inert] *)","select:not([inert]):not([inert] *)","textarea:not([inert]):not([inert] *)","a[href]:not([inert]):not([inert] *)","button:not([inert]):not([inert] *)","[tabindex]:not(slot):not([inert]):not([inert] *)","audio[controls]:not([inert]):not([inert] *)","video[controls]:not([inert]):not([inert] *)",'[contenteditable]:not([contenteditable="false"]):not([inert]):not([inert] *)',"details>summary:first-of-type:not([inert]):not([inert] *)","details:not([inert]):not([inert] *)"],bst=_Br.join(","),A6n=typeof Element>"u",Kse=A6n?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,RSe=!A6n&&Element.prototype.getRootNode?function(e){var t;return e==null||(t=e.getRootNode)===null||t===void 0?void 0:t.call(e)}:function(e){return e==null?void 0:e.ownerDocument},ISe=function(t,r){var a;r===void 0&&(r=!0);var s=t==null||(a=t.getAttribute)===null||a===void 0?void 0:a.call(t,"inert"),o=s===""||s==="true",u=o||r&&t&&(typeof t.closest=="function"?t.closest("[inert]"):ISe(t.parentNode));return u},wBr=function(t){var r,a=t==null||(r=t.getAttribute)===null||r===void 0?void 0:r.call(t,"contenteditable");return a===""||a==="true"},EBr=function(t,r,a){if(ISe(t))return[];var s=Array.prototype.slice.apply(t.querySelectorAll(bst));return r&&Kse.call(t,bst)&&s.unshift(t),s=s.filter(a),s},yst=function(t,r,a){for(var s=[],o=Array.from(t);o.length;){var u=o.shift();if(!ISe(u,!1))if(u.tagName==="SLOT"){var h=u.assignedElements(),f=h.length?h:u.children,p=yst(f,!0,a);a.flatten?s.push.apply(s,p):s.push({scopeParent:u,candidates:p})}else{var m=Kse.call(u,bst);m&&a.filter(u)&&(r||!t.includes(u))&&s.push(u);var b=u.shadowRoot||typeof a.getShadowRoot=="function"&&a.getShadowRoot(u),_=!ISe(b,!1)&&(!a.shadowRootFilter||a.shadowRootFilter(u));if(b&&_){var w=yst(b===!0?u.children:b.children,!0,a);a.flatten?s.push.apply(s,w):s.push({scopeParent:u,candidates:w})}else o.unshift.apply(o,u.children)}}return s},k6n=function(t){return!isNaN(parseInt(t.getAttribute("tabindex"),10))},R6n=function(t){if(!t)throw new Error("No node provided");return t.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(t.tagName)||wBr(t))&&!k6n(t)?0:t.tabIndex},xBr=function(t,r){var a=R6n(t);return a<0&&r&&!k6n(t)?0:a},SBr=function(t,r){return t.tabIndex===r.tabIndex?t.documentOrder-r.documentOrder:t.tabIndex-r.tabIndex},I6n=function(t){return t.tagName==="INPUT"},TBr=function(t){return I6n(t)&&t.type==="hidden"},CBr=function(t){var r=t.tagName==="DETAILS"&&Array.prototype.slice.apply(t.children).some(function(a){return a.tagName==="SUMMARY"});return r},ABr=function(t,r){for(var a=0;asummary:first-of-type"),h=u?t.parentElement:t;if(Kse.call(h,"details:not([open]) *"))return!0;if(!a||a==="full"||a==="full-native"||a==="legacy-full"){if(typeof s=="function"){for(var f=t;t;){var p=t.parentElement,m=RSe(t);if(p&&!p.shadowRoot&&s(p)===!0)return kfn(t);t.assignedSlot?t=t.assignedSlot:!p&&m!==t.ownerDocument?t=m.host:t=p}t=f}if(NBr(t))return!t.getClientRects().length;if(a!=="legacy-full")return!0}else if(a==="non-zero-area")return kfn(t);return!1},LBr=function(t){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(t.tagName))for(var r=t.parentElement;r;){if(r.tagName==="FIELDSET"&&r.disabled){for(var a=0;a=0)},N6n=function(t){var r=[],a=[];return t.forEach(function(s,o){var u=!!s.scopeParent,h=u?s.scopeParent:s,f=xBr(h,u),p=u?N6n(s.candidates):h;f===0?u?r.push.apply(r,p):r.push(h):a.push({documentOrder:o,tabIndex:f,item:s,isScope:u,content:p})}),a.sort(SBr).reduce(function(s,o){return o.isScope?s.push.apply(s,o.content):s.push(o.content),s},[]).concat(r)},O6n=function(t,r){r=r||{};var a;return r.getShadowRoot?a=yst([t],r.includeContainer,{filter:Rfn.bind(null,r),flatten:!1,getShadowRoot:r.getShadowRoot,shadowRootFilter:MBr}):a=EBr(t,r.includeContainer,Rfn.bind(null,r)),N6n(a)};function Ifn(e,t,r){let{reference:a,floating:s}=e;const o=VC(t),u=Xdt(t),h=Kdt(u),f=K7(t),p=o==="y",m=a.x+a.width/2-s.width/2,b=a.y+a.height/2-s.height/2,_=a[h]/2-s[h]/2;let w;switch(f){case"top":w={x:m,y:a.y-s.height};break;case"bottom":w={x:m,y:a.y+a.height};break;case"right":w={x:a.x+a.width,y:b};break;case"left":w={x:a.x-s.width,y:b};break;default:w={x:a.x,y:a.y}}switch(wW(t)){case"start":w[u]-=_*(r&&p?-1:1);break;case"end":w[u]+=_*(r&&p?-1:1);break}return w}async function PBr(e,t){var r;t===void 0&&(t={});const{x:a,y:s,platform:o,rects:u,elements:h,strategy:f}=e,{boundary:p="clippingAncestors",rootBoundary:m="viewport",elementContext:b="floating",altBoundary:_=!1,padding:w=0}=W7(t,e),S=C6n(w),A=h[_?b==="floating"?"reference":"floating":b],k=kSe(await o.getClippingRect({element:(r=await(o.isElement==null?void 0:o.isElement(A)))==null||r?A:A.contextElement||await(o.getDocumentElement==null?void 0:o.getDocumentElement(h.floating)),boundary:p,rootBoundary:m,strategy:f})),I=b==="floating"?{x:a,y:s,width:u.floating.width,height:u.floating.height}:u.reference,N=await(o.getOffsetParent==null?void 0:o.getOffsetParent(h.floating)),L=await(o.isElement==null?void 0:o.isElement(N))?await(o.getScale==null?void 0:o.getScale(N))||{x:1,y:1}:{x:1,y:1},P=kSe(o.convertOffsetParentRelativeRectToViewportRelativeRect?await o.convertOffsetParentRelativeRectToViewportRelativeRect({elements:h,rect:I,offsetParent:N,strategy:f}):I);return{top:(k.top-P.top+S.top)/L.y,bottom:(P.bottom-k.bottom+S.bottom)/L.y,left:(k.left-P.left+S.left)/L.x,right:(P.right-k.right+S.right)/L.x}}const BBr=async(e,t,r)=>{const{placement:a="bottom",strategy:s="absolute",middleware:o=[],platform:u}=r,h=o.filter(Boolean),f=await(u.isRTL==null?void 0:u.isRTL(t));let p=await u.getElementRects({reference:e,floating:t,strategy:s}),{x:m,y:b}=Ifn(p,a,f),_=a,w={},S=0;for(let A=0;A({name:"arrow",options:e,async fn(t){const{x:r,y:a,placement:s,rects:o,platform:u,elements:h,middlewareData:f}=t,{element:p,padding:m=0}=W7(e,t)||{};if(p==null)return{};const b=C6n(m),_={x:r,y:a},w=Xdt(s),S=Kdt(w),C=await u.getDimensions(p),A=w==="y",k=A?"top":"left",I=A?"bottom":"right",N=A?"clientHeight":"clientWidth",L=o.reference[S]+o.reference[w]-_[w]-o.floating[S],P=_[w]-o.reference[w],M=await(u.getOffsetParent==null?void 0:u.getOffsetParent(p));let F=M?M[N]:0;(!F||!await(u.isElement==null?void 0:u.isElement(M)))&&(F=h.floating[N]||o.floating[S]);const U=L/2-P/2,$=F/2-C[S]/2-1,G=UO(b[k],$),B=UO(b[I],$),Z=G,z=F-C[S]-B,Y=F/2-C[S]/2+U,W=gst(Z,Y,z),Q=!f.arrow&&wW(s)!=null&&Y!==W&&o.reference[S]/2-(YY<=0)){var B,Z;const Y=(((B=o.flip)==null?void 0:B.index)||0)+1,W=F[Y];if(W&&(!(b==="alignment"?I!==VC(W):!1)||G.every(j=>VC(j.placement)===I?j.overflows[0]>0:!0)))return{data:{index:Y,overflows:G},reset:{placement:W}};let Q=(Z=G.filter(V=>V.overflows[0]<=0).sort((V,j)=>V.overflows[1]-j.overflows[1])[0])==null?void 0:Z.placement;if(!Q)switch(w){case"bestFit":{var z;const V=(z=G.filter(j=>{if(M){const ee=VC(j.placement);return ee===I||ee==="y"}return!0}).map(j=>[j.placement,j.overflows.filter(ee=>ee>0).reduce((ee,te)=>ee+te,0)]).sort((j,ee)=>j[1]-ee[1])[0])==null?void 0:z[0];V&&(Q=V);break}case"initialPlacement":Q=h;break}if(s!==Q)return{reset:{placement:Q}}}return{}}}};function Nfn(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function Ofn(e){return cBr.some(t=>e[t]>=0)}const UBr=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){const{rects:r,platform:a}=t,{strategy:s="referenceHidden",...o}=W7(e,t);switch(s){case"referenceHidden":{const u=await a.detectOverflow(t,{...o,elementContext:"reference"}),h=Nfn(u,r.reference);return{data:{referenceHiddenOffsets:h,referenceHidden:Ofn(h)}}}case"escaped":{const u=await a.detectOverflow(t,{...o,altBoundary:!0}),h=Nfn(u,r.floating);return{data:{escapedOffsets:h,escaped:Ofn(h)}}}default:return{}}}}},L6n=new Set(["left","top"]);async function zBr(e,t){const{placement:r,platform:a,elements:s}=e,o=await(a.isRTL==null?void 0:a.isRTL(s.floating)),u=K7(r),h=wW(r),f=VC(r)==="y",p=L6n.has(u)?-1:1,m=o&&f?-1:1,b=W7(t,e);let{mainAxis:_,crossAxis:w,alignmentAxis:S}=typeof b=="number"?{mainAxis:b,crossAxis:0,alignmentAxis:null}:{mainAxis:b.mainAxis||0,crossAxis:b.crossAxis||0,alignmentAxis:b.alignmentAxis};return h&&typeof S=="number"&&(w=h==="end"?S*-1:S),f?{x:w*m,y:_*p}:{x:_*p,y:w*m}}const GBr=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var r,a;const{x:s,y:o,placement:u,middlewareData:h}=t,f=await zBr(t,e);return u===((r=h.offset)==null?void 0:r.placement)&&(a=h.arrow)!=null&&a.alignmentOffset?{}:{x:s+f.x,y:o+f.y,data:{...f,placement:u}}}}},qBr=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:r,y:a,placement:s,platform:o}=t,{mainAxis:u=!0,crossAxis:h=!1,limiter:f={fn:k=>{let{x:I,y:N}=k;return{x:I,y:N}}},...p}=W7(e,t),m={x:r,y:a},b=await o.detectOverflow(t,p),_=VC(K7(s)),w=Wdt(_);let S=m[w],C=m[_];if(u){const k=w==="y"?"top":"left",I=w==="y"?"bottom":"right",N=S+b[k],L=S-b[I];S=gst(N,S,L)}if(h){const k=_==="y"?"top":"left",I=_==="y"?"bottom":"right",N=C+b[k],L=C-b[I];C=gst(N,C,L)}const A=f.fn({...t,[w]:S,[_]:C});return{...A,data:{x:A.x-r,y:A.y-a,enabled:{[w]:u,[_]:h}}}}}},HBr=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:r,y:a,placement:s,rects:o,middlewareData:u}=t,{offset:h=0,mainAxis:f=!0,crossAxis:p=!0}=W7(e,t),m={x:r,y:a},b=VC(s),_=Wdt(b);let w=m[_],S=m[b];const C=W7(h,t),A=typeof C=="number"?{mainAxis:C,crossAxis:0}:{mainAxis:0,crossAxis:0,...C};if(f){const N=_==="y"?"height":"width",L=o.reference[_]-o.floating[N]+A.mainAxis,P=o.reference[_]+o.reference[N]-A.mainAxis;wP&&(w=P)}if(p){var k,I;const N=_==="y"?"width":"height",L=L6n.has(K7(s)),P=o.reference[b]-o.floating[N]+(L&&((k=u.offset)==null?void 0:k[b])||0)+(L?0:A.crossAxis),M=o.reference[b]+o.reference[N]+(L?0:((I=u.offset)==null?void 0:I[b])||0)-(L?A.crossAxis:0);SM&&(S=M)}return{[_]:w,[b]:S}}}},VBr=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){var r,a;const{placement:s,rects:o,platform:u,elements:h}=t,{apply:f=()=>{},...p}=W7(e,t),m=await u.detectOverflow(t,p),b=K7(s),_=wW(s),w=VC(s)==="y",{width:S,height:C}=o.floating;let A,k;b==="top"||b==="bottom"?(A=b,k=_===(await(u.isRTL==null?void 0:u.isRTL(h.floating))?"start":"end")?"left":"right"):(k=b,A=_==="end"?"top":"bottom");const I=C-m.top-m.bottom,N=S-m.left-m.right,L=UO(C-m[A],I),P=UO(S-m[k],N),M=!t.middlewareData.shift;let F=L,U=P;if((r=t.middlewareData.shift)!=null&&r.enabled.x&&(U=N),(a=t.middlewareData.shift)!=null&&a.enabled.y&&(F=I),M&&!_){const G=Rw(m.left,0),B=Rw(m.right,0),Z=Rw(m.top,0),z=Rw(m.bottom,0);w?U=S-2*(G!==0||B!==0?G+B:Rw(m.left,m.right)):F=C-2*(Z!==0||z!==0?Z+z:Rw(m.top,m.bottom))}await f({...t,availableWidth:U,availableHeight:F});const $=await u.getDimensions(h.floating);return S!==$.width||C!==$.height?{reset:{rects:!0}}:{}}}};function D6n(e){const t=gS(e);let r=parseFloat(t.width)||0,a=parseFloat(t.height)||0;const s=Fw(e),o=s?e.offsetWidth:r,u=s?e.offsetHeight:a,h=CSe(r)!==o||CSe(a)!==u;return h&&(r=o,a=u),{width:r,height:a,$:h}}function Qdt(e){return yd(e)?e:e.contextElement}function GV(e){const t=Qdt(e);if(!Fw(t))return iA(1);const r=t.getBoundingClientRect(),{width:a,height:s,$:o}=D6n(t);let u=(o?CSe(r.width):r.width)/a,h=(o?CSe(r.height):r.height)/s;return(!u||!Number.isFinite(u))&&(u=1),(!h||!Number.isFinite(h))&&(h=1),{x:u,y:h}}const YBr=iA(0);function M6n(e){const t=X2(e);return!H5e()||!t.visualViewport?YBr:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function jBr(e,t,r){return t===void 0&&(t=!1),!r||t&&r!==X2(e)?!1:t}function vF(e,t,r,a){t===void 0&&(t=!1),r===void 0&&(r=!1);const s=e.getBoundingClientRect(),o=Qdt(e);let u=iA(1);t&&(a?yd(a)&&(u=GV(a)):u=GV(e));const h=jBr(o,r,a)?M6n(o):iA(0);let f=(s.left+h.x)/u.x,p=(s.top+h.y)/u.y,m=s.width/u.x,b=s.height/u.y;if(o){const _=X2(o),w=a&&yd(a)?X2(a):a;let S=_,C=pst(S);for(;C&&a&&w!==S;){const A=GV(C),k=C.getBoundingClientRect(),I=gS(C),N=k.left+(C.clientLeft+parseFloat(I.paddingLeft))*A.x,L=k.top+(C.clientTop+parseFloat(I.paddingTop))*A.y;f*=A.x,p*=A.y,m*=A.x,b*=A.y,f+=N,p+=L,S=X2(C),C=pst(S)}}return kSe({width:m,height:b,x:f,y:p})}function Y5e(e,t){const r=V5e(e).scrollLeft;return t?t.left+r:vF(TA(e)).left+r}function P6n(e,t){const r=e.getBoundingClientRect(),a=r.left+t.scrollLeft-Y5e(e,r),s=r.top+t.scrollTop;return{x:a,y:s}}function WBr(e){let{elements:t,rect:r,offsetParent:a,strategy:s}=e;const o=s==="fixed",u=TA(a),h=t?q5e(t.floating):!1;if(a===u||h&&o)return r;let f={scrollLeft:0,scrollTop:0},p=iA(1);const m=iA(0),b=Fw(a);if((b||!b&&!o)&&((_W(a)!=="body"||Ble(u))&&(f=V5e(a)),Fw(a))){const w=vF(a);p=GV(a),m.x=w.x+a.clientLeft,m.y=w.y+a.clientTop}const _=u&&!b&&!o?P6n(u,f):iA(0);return{width:r.width*p.x,height:r.height*p.y,x:r.x*p.x-f.scrollLeft*p.x+m.x+_.x,y:r.y*p.y-f.scrollTop*p.y+m.y+_.y}}function KBr(e){return Array.from(e.getClientRects())}function XBr(e){const t=TA(e),r=V5e(e),a=e.ownerDocument.body,s=Rw(t.scrollWidth,t.clientWidth,a.scrollWidth,a.clientWidth),o=Rw(t.scrollHeight,t.clientHeight,a.scrollHeight,a.clientHeight);let u=-r.scrollLeft+Y5e(e);const h=-r.scrollTop;return gS(a).direction==="rtl"&&(u+=Rw(t.clientWidth,a.clientWidth)-s),{width:s,height:o,x:u,y:h}}const Lfn=25;function QBr(e,t){const r=X2(e),a=TA(e),s=r.visualViewport;let o=a.clientWidth,u=a.clientHeight,h=0,f=0;if(s){o=s.width,u=s.height;const m=H5e();(!m||m&&t==="fixed")&&(h=s.offsetLeft,f=s.offsetTop)}const p=Y5e(a);if(p<=0){const m=a.ownerDocument,b=m.body,_=getComputedStyle(b),w=m.compatMode==="CSS1Compat"&&parseFloat(_.marginLeft)+parseFloat(_.marginRight)||0,S=Math.abs(a.clientWidth-b.clientWidth-w);S<=Lfn&&(o-=S)}else p<=Lfn&&(o+=p);return{width:o,height:u,x:h,y:f}}const ZBr=new Set(["absolute","fixed"]);function JBr(e,t){const r=vF(e,!0,t==="fixed"),a=r.top+e.clientTop,s=r.left+e.clientLeft,o=Fw(e)?GV(e):iA(1),u=e.clientWidth*o.x,h=e.clientHeight*o.y,f=s*o.x,p=a*o.y;return{width:u,height:h,x:f,y:p}}function Dfn(e,t,r){let a;if(t==="viewport")a=QBr(e,r);else if(t==="document")a=XBr(TA(e));else if(yd(t))a=JBr(t,r);else{const s=M6n(e);a={x:t.x-s.x,y:t.y-s.y,width:t.width,height:t.height}}return kSe(a)}function B6n(e,t){const r=j7(e);return r===t||!yd(r)||P7(r)?!1:gS(r).position==="fixed"||B6n(r,t)}function eFr(e,t){const r=t.get(e);if(r)return r;let a=wO(e,[],!1).filter(h=>yd(h)&&_W(h)!=="body"),s=null;const o=gS(e).position==="fixed";let u=o?j7(e):e;for(;yd(u)&&!P7(u);){const h=gS(u),f=jdt(u);!f&&h.position==="fixed"&&(s=null),(o?!f&&!s:!f&&h.position==="static"&&!!s&&ZBr.has(s.position)||Ble(u)&&!f&&B6n(e,u))?a=a.filter(m=>m!==u):s=h,u=j7(u)}return t.set(e,a),a}function tFr(e){let{element:t,boundary:r,rootBoundary:a,strategy:s}=e;const u=[...r==="clippingAncestors"?q5e(t)?[]:eFr(t,this._c):[].concat(r),a],h=u[0],f=u.reduce((p,m)=>{const b=Dfn(t,m,s);return p.top=Rw(b.top,p.top),p.right=UO(b.right,p.right),p.bottom=UO(b.bottom,p.bottom),p.left=Rw(b.left,p.left),p},Dfn(t,h,s));return{width:f.right-f.left,height:f.bottom-f.top,x:f.left,y:f.top}}function nFr(e){const{width:t,height:r}=D6n(e);return{width:t,height:r}}function rFr(e,t,r){const a=Fw(t),s=TA(t),o=r==="fixed",u=vF(e,!0,o,t);let h={scrollLeft:0,scrollTop:0};const f=iA(0);function p(){f.x=Y5e(s)}if(a||!a&&!o)if((_W(t)!=="body"||Ble(s))&&(h=V5e(t)),a){const w=vF(t,!0,o,t);f.x=w.x+t.clientLeft,f.y=w.y+t.clientTop}else s&&p();o&&!a&&s&&p();const m=s&&!a&&!o?P6n(s,h):iA(0),b=u.left+h.scrollLeft-f.x-m.x,_=u.top+h.scrollTop-f.y-m.y;return{x:b,y:_,width:u.width,height:u.height}}function kXe(e){return gS(e).position==="static"}function Mfn(e,t){if(!Fw(e)||gS(e).position==="fixed")return null;if(t)return t(e);let r=e.offsetParent;return TA(e)===r&&(r=r.ownerDocument.body),r}function F6n(e,t){const r=X2(e);if(q5e(e))return r;if(!Fw(e)){let s=j7(e);for(;s&&!P7(s);){if(yd(s)&&!kXe(s))return s;s=j7(s)}return r}let a=Mfn(e,t);for(;a&&nBr(a)&&kXe(a);)a=Mfn(a,t);return a&&P7(a)&&kXe(a)&&!jdt(a)?r:a||oBr(e)||r}const iFr=async function(e){const t=this.getOffsetParent||F6n,r=this.getDimensions,a=await r(e.floating);return{reference:rFr(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:a.width,height:a.height}}};function aFr(e){return gS(e).direction==="rtl"}const sFr={convertOffsetParentRelativeRectToViewportRelativeRect:WBr,getDocumentElement:TA,getClippingRect:tFr,getOffsetParent:F6n,getElementRects:iFr,getClientRects:KBr,getDimensions:nFr,getScale:GV,isElement:yd,isRTL:aFr};function $6n(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function oFr(e,t){let r=null,a;const s=TA(e);function o(){var h;clearTimeout(a),(h=r)==null||h.disconnect(),r=null}function u(h,f){h===void 0&&(h=!1),f===void 0&&(f=1),o();const p=e.getBoundingClientRect(),{left:m,top:b,width:_,height:w}=p;if(h||t(),!_||!w)return;const S=u_e(b),C=u_e(s.clientWidth-(m+_)),A=u_e(s.clientHeight-(b+w)),k=u_e(m),N={rootMargin:-S+"px "+-C+"px "+-A+"px "+-k+"px",threshold:Rw(0,UO(1,f))||1};let L=!0;function P(M){const F=M[0].intersectionRatio;if(F!==f){if(!L)return u();F?u(!1,F):a=setTimeout(()=>{u(!1,1e-7)},1e3)}F===1&&!$6n(p,e.getBoundingClientRect())&&u(),L=!1}try{r=new IntersectionObserver(P,{...N,root:s.ownerDocument})}catch{r=new IntersectionObserver(P,N)}r.observe(e)}return u(!0),o}function U6n(e,t,r,a){a===void 0&&(a={});const{ancestorScroll:s=!0,ancestorResize:o=!0,elementResize:u=typeof ResizeObserver=="function",layoutShift:h=typeof IntersectionObserver=="function",animationFrame:f=!1}=a,p=Qdt(e),m=s||o?[...p?wO(p):[],...wO(t)]:[];m.forEach(k=>{s&&k.addEventListener("scroll",r,{passive:!0}),o&&k.addEventListener("resize",r)});const b=p&&h?oFr(p,r):null;let _=-1,w=null;u&&(w=new ResizeObserver(k=>{let[I]=k;I&&I.target===p&&w&&(w.unobserve(t),cancelAnimationFrame(_),_=requestAnimationFrame(()=>{var N;(N=w)==null||N.observe(t)})),r()}),p&&!f&&w.observe(p),w.observe(t));let S,C=f?vF(e):null;f&&A();function A(){const k=vF(e);C&&!$6n(C,k)&&r(),C=k,S=requestAnimationFrame(A)}return r(),()=>{var k;m.forEach(I=>{s&&I.removeEventListener("scroll",r),o&&I.removeEventListener("resize",r)}),b==null||b(),(k=w)==null||k.disconnect(),w=null,f&&cancelAnimationFrame(S)}}const lFr=GBr,cFr=qBr,uFr=$Br,hFr=VBr,dFr=UBr,Pfn=FBr,fFr=HBr,pFr=(e,t,r)=>{const a=new Map,s={platform:sFr,...r},o={...s.platform,_c:a};return BBr(e,t,{...s,platform:o})};var gFr=typeof document<"u",mFr=function(){},GEe=gFr?ue.useLayoutEffect:mFr;function NSe(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e=="function"&&e.toString()===t.toString())return!0;let r,a,s;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(r=e.length,r!==t.length)return!1;for(a=r;a--!==0;)if(!NSe(e[a],t[a]))return!1;return!0}if(s=Object.keys(e),r=s.length,r!==Object.keys(t).length)return!1;for(a=r;a--!==0;)if(!{}.hasOwnProperty.call(t,s[a]))return!1;for(a=r;a--!==0;){const o=s[a];if(!(o==="_owner"&&e.$$typeof)&&!NSe(e[o],t[o]))return!1}return!0}return e!==e&&t!==t}function z6n(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function Bfn(e,t){const r=z6n(e);return Math.round(t*r)/r}function RXe(e){const t=ue.useRef(e);return GEe(()=>{t.current=e}),t}function Zdt(e){e===void 0&&(e={});const{placement:t="bottom",strategy:r="absolute",middleware:a=[],platform:s,elements:{reference:o,floating:u}={},transform:h=!0,whileElementsMounted:f,open:p}=e,[m,b]=ue.useState({x:0,y:0,strategy:r,placement:t,middlewareData:{},isPositioned:!1}),[_,w]=ue.useState(a);NSe(_,a)||w(a);const[S,C]=ue.useState(null),[A,k]=ue.useState(null),I=ue.useCallback(j=>{j!==M.current&&(M.current=j,C(j))},[]),N=ue.useCallback(j=>{j!==F.current&&(F.current=j,k(j))},[]),L=o||S,P=u||A,M=ue.useRef(null),F=ue.useRef(null),U=ue.useRef(m),$=f!=null,G=RXe(f),B=RXe(s),Z=RXe(p),z=ue.useCallback(()=>{if(!M.current||!F.current)return;const j={placement:t,strategy:r,middleware:_};B.current&&(j.platform=B.current),pFr(M.current,F.current,j).then(ee=>{const te={...ee,isPositioned:Z.current!==!1};Y.current&&!NSe(U.current,te)&&(U.current=te,w9.flushSync(()=>{b(te)}))})},[_,t,r,B,Z]);GEe(()=>{p===!1&&U.current.isPositioned&&(U.current.isPositioned=!1,b(j=>({...j,isPositioned:!1})))},[p]);const Y=ue.useRef(!1);GEe(()=>(Y.current=!0,()=>{Y.current=!1}),[]),GEe(()=>{if(L&&(M.current=L),P&&(F.current=P),L&&P){if(G.current)return G.current(L,P,z);z()}},[L,P,z,G,$]);const W=ue.useMemo(()=>({reference:M,floating:F,setReference:I,setFloating:N}),[I,N]),Q=ue.useMemo(()=>({reference:L,floating:P}),[L,P]),V=ue.useMemo(()=>{const j={position:r,left:0,top:0};if(!Q.floating)return j;const ee=Bfn(Q.floating,m.x),te=Bfn(Q.floating,m.y);return h?{...j,transform:"translate("+ee+"px, "+te+"px)",...z6n(Q.floating)>=1.5&&{willChange:"transform"}}:{position:r,left:ee,top:te}},[r,h,Q.floating,m.x,m.y]);return ue.useMemo(()=>({...m,update:z,refs:W,elements:Q,floatingStyles:V}),[m,z,W,Q,V])}const bFr=e=>{function t(r){return{}.hasOwnProperty.call(r,"current")}return{name:"arrow",options:e,fn(r){const{element:a,padding:s}=typeof e=="function"?e(r):e;return a&&t(a)?a.current!=null?Pfn({element:a.current,padding:s}).fn(r):{}:a?Pfn({element:a,padding:s}).fn(r):{}}}},G6n=(e,t)=>({...lFr(e),options:[e,t]}),q6n=(e,t)=>({...cFr(e),options:[e,t]}),H6n=(e,t)=>({...fFr(e),options:[e,t]}),V6n=(e,t)=>({...uFr(e),options:[e,t]}),Y6n=(e,t)=>({...hFr(e),options:[e,t]}),j6n=(e,t)=>({...dFr(e),options:[e,t]}),W6n=(e,t)=>({...bFr(e),options:[e,t]});var K6n={exports:{}},X6n={};/** + * @license React + * use-sync-external-store-shim.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var bj=ue;function yFr(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var vFr=typeof Object.is=="function"?Object.is:yFr,_Fr=bj.useState,wFr=bj.useEffect,EFr=bj.useLayoutEffect,xFr=bj.useDebugValue;function SFr(e,t){var r=t(),a=_Fr({inst:{value:r,getSnapshot:t}}),s=a[0].inst,o=a[1];return EFr(function(){s.value=r,s.getSnapshot=t,IXe(s)&&o({inst:s})},[e,r,t]),wFr(function(){return IXe(s)&&o({inst:s}),e(function(){IXe(s)&&o({inst:s})})},[e]),xFr(r),r}function IXe(e){var t=e.getSnapshot;e=e.value;try{var r=t();return!vFr(e,r)}catch{return!0}}function TFr(e,t){return t()}var CFr=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?TFr:SFr;X6n.useSyncExternalStore=bj.useSyncExternalStore!==void 0?bj.useSyncExternalStore:CFr;K6n.exports=X6n;var AFr=K6n.exports,Q6n={exports:{}},Z6n={};/** + * @license React + * use-sync-external-store-shim/with-selector.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var j5e=ue,kFr=AFr;function RFr(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var IFr=typeof Object.is=="function"?Object.is:RFr,NFr=kFr.useSyncExternalStore,OFr=j5e.useRef,LFr=j5e.useEffect,DFr=j5e.useMemo,MFr=j5e.useDebugValue;Z6n.useSyncExternalStoreWithSelector=function(e,t,r,a,s){var o=OFr(null);if(o.current===null){var u={hasValue:!1,value:null};o.current=u}else u=o.current;o=DFr(function(){function f(w){if(!p){if(p=!0,m=w,w=a(w),s!==void 0&&u.hasValue){var S=u.value;if(s(S,w))return b=S}return b=w}if(S=b,IFr(m,w))return S;var C=a(w);return s!==void 0&&s(S,C)?(m=w,S):(m=w,b=C)}var p=!1,m,b,_=r===void 0?null:r;return[function(){return f(t())},_===null?void 0:function(){return f(_())}]},[t,r,a,s]);var h=NFr(e,o[0],o[1]);return LFr(function(){u.hasValue=!0,u.value=h},[h]),MFr(h),h};Q6n.exports=Z6n;var PFr=Q6n.exports;const BFr=O1(PFr);var BC=function(){return BC=Object.assign||function(t){for(var r,a=1,s=arguments.length;a"u"?void 0:Number(a),maxHeight:typeof s>"u"?void 0:Number(s),minWidth:typeof o>"u"?void 0:Number(o),minHeight:typeof u>"u"?void 0:Number(u)}},VFr=function(e){return Array.isArray(e)?e:[e,e]},YFr=["as","ref","style","className","grid","gridGap","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],Gfn="__resizable_base__",Z4a=function(e){zFr(t,e);function t(r){var a,s,o,u,h=e.call(this,r)||this;return h.ratio=1,h.resizable=null,h.parentLeft=0,h.parentTop=0,h.resizableLeft=0,h.resizableRight=0,h.resizableTop=0,h.resizableBottom=0,h.targetLeft=0,h.targetTop=0,h.delta={width:0,height:0},h.appendBase=function(){if(!h.resizable||!h.window)return null;var f=h.parentNode;if(!f)return null;var p=h.window.document.createElement("div");return p.style.width="100%",p.style.height="100%",p.style.position="absolute",p.style.transform="scale(0, 0)",p.style.left="0",p.style.flex="0 0 100%",p.classList?p.classList.add(Gfn):p.className+=Gfn,f.appendChild(p),p},h.removeBase=function(f){var p=h.parentNode;p&&p.removeChild(f)},h.state={isResizing:!1,width:(s=(a=h.propsSize)===null||a===void 0?void 0:a.width)!==null&&s!==void 0?s:"auto",height:(u=(o=h.propsSize)===null||o===void 0?void 0:o.height)!==null&&u!==void 0?u:"auto",direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},h.onResizeStart=h.onResizeStart.bind(h),h.onMouseMove=h.onMouseMove.bind(h),h.onMouseUp=h.onMouseUp.bind(h),h}return Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"window",{get:function(){return!this.resizable||!this.resizable.ownerDocument?null:this.resizable.ownerDocument.defaultView},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||GFr},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"size",{get:function(){var r=0,a=0;if(this.resizable&&this.window){var s=this.resizable.offsetWidth,o=this.resizable.offsetHeight,u=this.resizable.style.position;u!=="relative"&&(this.resizable.style.position="relative"),r=this.resizable.style.width!=="auto"?this.resizable.offsetWidth:s,a=this.resizable.style.height!=="auto"?this.resizable.offsetHeight:o,this.resizable.style.position=u}return{width:r,height:a}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"sizeStyle",{get:function(){var r=this,a=this.props.size,s=function(h){var f;if(typeof r.state[h]>"u"||r.state[h]==="auto")return"auto";if(r.propsSize&&r.propsSize[h]&&(!((f=r.propsSize[h])===null||f===void 0)&&f.toString().endsWith("%"))){if(r.state[h].toString().endsWith("%"))return r.state[h].toString();var p=r.getParentSize(),m=Number(r.state[h].toString().replace("px","")),b=m/p[h]*100;return"".concat(b,"%")}return NXe(r.state[h])},o=a&&typeof a.width<"u"&&!this.state.isResizing?NXe(a.width):s("width"),u=a&&typeof a.height<"u"&&!this.state.isResizing?NXe(a.height):s("height");return{width:o,height:u}},enumerable:!1,configurable:!0}),t.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var r=this.appendBase();if(!r)return{width:0,height:0};var a=!1,s=this.parentNode.style.flexWrap;s!=="wrap"&&(a=!0,this.parentNode.style.flexWrap="wrap"),r.style.position="relative",r.style.minWidth="100%",r.style.minHeight="100%";var o={width:r.offsetWidth,height:r.offsetHeight};return a&&(this.parentNode.style.flexWrap=s),this.removeBase(r),o},t.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},t.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},t.prototype.componentDidMount=function(){if(!(!this.resizable||!this.window)){var r=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:r.flexBasis!=="auto"?r.flexBasis:void 0})}},t.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},t.prototype.createSizeForCssProperty=function(r,a){var s=this.propsSize&&this.propsSize[a];return this.state[a]==="auto"&&this.state.original[a]===r&&(typeof s>"u"||s==="auto")?"auto":r},t.prototype.calculateNewMaxFromBoundary=function(r,a){var s=this.props.boundsByDirection,o=this.state.direction,u=s&&NH("left",o),h=s&&NH("top",o),f,p;if(this.props.bounds==="parent"){var m=this.parentNode;m&&(f=u?this.resizableRight-this.parentLeft:m.offsetWidth+(this.parentLeft-this.resizableLeft),p=h?this.resizableBottom-this.parentTop:m.offsetHeight+(this.parentTop-this.resizableTop))}else this.props.bounds==="window"?this.window&&(f=u?this.resizableRight:this.window.innerWidth-this.resizableLeft,p=h?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(f=u?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),p=h?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return f&&Number.isFinite(f)&&(r=r&&r"u"?10:o.width,b=typeof s.width>"u"||s.width<0?r:s.width,_=typeof o.height>"u"?10:o.height,w=typeof s.height>"u"||s.height<0?a:s.height,S=f||0,C=p||0;if(h){var A=(_-S)*this.ratio+C,k=(w-S)*this.ratio+C,I=(m-C)/this.ratio+S,N=(b-C)/this.ratio+S,L=Math.max(m,A),P=Math.min(b,k),M=Math.max(_,I),F=Math.min(w,N);r=d_e(r,L,P),a=d_e(a,M,F)}else r=d_e(r,m,b),a=d_e(a,_,w);return{newWidth:r,newHeight:a}},t.prototype.setBoundingClientRect=function(){var r=1/(this.props.scale||1);if(this.props.bounds==="parent"){var a=this.parentNode;if(a){var s=a.getBoundingClientRect();this.parentLeft=s.left*r,this.parentTop=s.top*r}}if(this.props.bounds&&typeof this.props.bounds!="string"){var o=this.props.bounds.getBoundingClientRect();this.targetLeft=o.left*r,this.targetTop=o.top*r}if(this.resizable){var u=this.resizable.getBoundingClientRect(),h=u.left,f=u.top,p=u.right,m=u.bottom;this.resizableLeft=h*r,this.resizableRight=p*r,this.resizableTop=f*r,this.resizableBottom=m*r}},t.prototype.onResizeStart=function(r,a){if(!(!this.resizable||!this.window)){var s=0,o=0;if(r.nativeEvent&&qFr(r.nativeEvent)?(s=r.nativeEvent.clientX,o=r.nativeEvent.clientY):r.nativeEvent&&f_e(r.nativeEvent)&&(s=r.nativeEvent.touches[0].clientX,o=r.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable){var u=this.props.onResizeStart(r,a,this.resizable);if(u===!1)return}this.props.size&&(typeof this.props.size.height<"u"&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),typeof this.props.size.width<"u"&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio=typeof this.props.lockAspectRatio=="number"?this.props.lockAspectRatio:this.size.width/this.size.height;var h,f=this.window.getComputedStyle(this.resizable);if(f.flexBasis!=="auto"){var p=this.parentNode;if(p){var m=this.window.getComputedStyle(p).flexDirection;this.flexDir=m.startsWith("row")?"row":"column",h=f.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var b={original:{x:s,y:o,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:TC(TC({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(r.target).cursor||"auto"}),direction:a,flexBasis:h};this.setState(b)}},t.prototype.onMouseMove=function(r){var a=this;if(!(!this.state.isResizing||!this.resizable||!this.window)){if(this.window.TouchEvent&&f_e(r))try{r.preventDefault(),r.stopPropagation()}catch{}var s=this.props,o=s.maxWidth,u=s.maxHeight,h=s.minWidth,f=s.minHeight,p=f_e(r)?r.touches[0].clientX:r.clientX,m=f_e(r)?r.touches[0].clientY:r.clientY,b=this.state,_=b.direction,w=b.original,S=b.width,C=b.height,A=this.getParentSize(),k=HFr(A,this.window.innerWidth,this.window.innerHeight,o,u,h,f);o=k.maxWidth,u=k.maxHeight,h=k.minWidth,f=k.minHeight;var I=this.calculateNewSizeFromDirection(p,m),N=I.newHeight,L=I.newWidth,P=this.calculateNewMaxFromBoundary(o,u);this.props.snap&&this.props.snap.x&&(L=zfn(L,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(N=zfn(N,this.props.snap.y,this.props.snapGap));var M=this.calculateNewSizeFromAspectRatio(L,N,{width:P.maxWidth,height:P.maxHeight},{width:h,height:f});if(L=M.newWidth,N=M.newHeight,this.props.grid){var F=Ufn(L,this.props.grid[0],this.props.gridGap?this.props.gridGap[0]:0),U=Ufn(N,this.props.grid[1],this.props.gridGap?this.props.gridGap[1]:0),$=this.props.snapGap||0,G=$===0||Math.abs(F-L)<=$?F:L,B=$===0||Math.abs(U-N)<=$?U:N;L=G,N=B}var Z={width:L-w.width,height:N-w.height};if(this.delta=Z,S&&typeof S=="string"){if(S.endsWith("%")){var z=L/A.width*100;L="".concat(z,"%")}else if(S.endsWith("vw")){var Y=L/this.window.innerWidth*100;L="".concat(Y,"vw")}else if(S.endsWith("vh")){var W=L/this.window.innerHeight*100;L="".concat(W,"vh")}}if(C&&typeof C=="string"){if(C.endsWith("%")){var z=N/A.height*100;N="".concat(z,"%")}else if(C.endsWith("vw")){var Y=N/this.window.innerWidth*100;N="".concat(Y,"vw")}else if(C.endsWith("vh")){var W=N/this.window.innerHeight*100;N="".concat(W,"vh")}}var Q={width:this.createSizeForCssProperty(L,"width"),height:this.createSizeForCssProperty(N,"height")};this.flexDir==="row"?Q.flexBasis=Q.width:this.flexDir==="column"&&(Q.flexBasis=Q.height);var V=this.state.width!==Q.width,j=this.state.height!==Q.height,ee=this.state.flexBasis!==Q.flexBasis,te=V||j||ee;te&&w9.flushSync(function(){a.setState(Q)}),this.props.onResize&&te&&this.props.onResize(r,_,this.resizable,Z)}},t.prototype.onMouseUp=function(r){var a,s,o=this.state,u=o.isResizing,h=o.direction;o.original,!(!u||!this.resizable)&&(this.props.onResizeStop&&this.props.onResizeStop(r,h,this.resizable,this.delta),this.props.size&&this.setState({width:(a=this.props.size.width)!==null&&a!==void 0?a:"auto",height:(s=this.props.size.height)!==null&&s!==void 0?s:"auto"}),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:TC(TC({},this.state.backgroundStyle),{cursor:"auto"})}))},t.prototype.updateSize=function(r){var a,s;this.setState({width:(a=r.width)!==null&&a!==void 0?a:"auto",height:(s=r.height)!==null&&s!==void 0?s:"auto"})},t.prototype.renderResizer=function(){var r=this,a=this.props,s=a.enable,o=a.handleStyles,u=a.handleClasses,h=a.handleWrapperStyle,f=a.handleWrapperClass,p=a.handleComponent;if(!s)return null;var m=Object.keys(s).map(function(b){return s[b]!==!1?ct.jsx(UFr,{direction:b,onResizeStart:r.onResizeStart,replaceStyles:o&&o[b],className:u&&u[b],children:p&&p[b]?p[b]:null},b):null});return ct.jsx("div",{className:f,style:h,children:m})},t.prototype.render=function(){var r=this,a=Object.keys(this.props).reduce(function(u,h){return YFr.indexOf(h)!==-1||(u[h]=r.props[h]),u},{}),s=TC(TC(TC({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(s.flexBasis=this.state.flexBasis);var o=this.props.as||"div";return ct.jsxs(o,TC({style:s,className:this.props.className},a,{ref:function(u){u&&(r.resizable=u)},children:[this.state.isResizing&&ct.jsx("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer()]}))},t.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],gridGap:[0,0],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},t}(ue.PureComponent);const e7n=["shift","alt","meta","mod","ctrl","control"],jFr={esc:"escape",return:"enter",left:"arrowleft",right:"arrowright",up:"arrowup",down:"arrowdown",ShiftLeft:"shift",ShiftRight:"shift",AltLeft:"alt",AltRight:"alt",MetaLeft:"meta",MetaRight:"meta",OSLeft:"meta",OSRight:"meta",ControlLeft:"ctrl",ControlRight:"ctrl"};function EO(e){return(jFr[e.trim()]||e.trim()).toLowerCase().replace(/key|digit|numpad/,"")}function t7n(e){return e7n.includes(e)}function OXe(e,t=","){return e.toLowerCase().split(t)}function LXe(e,t="+",r=">",a=!1,s,o){let u=[],h=!1;e=e.trim(),e.includes(r)?(h=!0,u=e.toLocaleLowerCase().split(r).map(m=>EO(m))):u=e.toLocaleLowerCase().split(t).map(m=>EO(m));const f={alt:u.includes("alt"),ctrl:u.includes("ctrl")||u.includes("control"),shift:u.includes("shift"),meta:u.includes("meta"),mod:u.includes("mod"),useKey:a},p=u.filter(m=>!e7n.includes(m));return{...f,keys:p,description:s,isSequence:h,hotkey:e,metadata:o}}typeof document<"u"&&(document.addEventListener("keydown",e=>{e.code!==void 0&&n7n([EO(e.code)])}),document.addEventListener("keyup",e=>{e.code!==void 0&&r7n([EO(e.code)])})),typeof window<"u"&&(window.addEventListener("blur",()=>{E7.clear()}),window.addEventListener("contextmenu",()=>{setTimeout(()=>{E7.clear()},0)}));const E7=new Set;function Jdt(e){return Array.isArray(e)}function WFr(e,t=","){return(Jdt(e)?e:e.split(t)).every(r=>E7.has(r.trim().toLowerCase()))}function n7n(e){const t=Array.isArray(e)?e:[e];E7.has("meta")&&E7.forEach(r=>{t7n(r)||E7.delete(r.toLowerCase())}),t.forEach(r=>{E7.add(r.toLowerCase())})}function r7n(e){const t=Array.isArray(e)?e:[e];e==="meta"?E7.clear():t.forEach(r=>{E7.delete(r.toLowerCase())})}function KFr(e,t,r){(typeof r=="function"&&r(e,t)||r===!0)&&e.preventDefault()}function XFr(e,t,r){return typeof r=="function"?r(e,t):r===!0||r===void 0}const QFr=["input","textarea","select","searchbox","slider","spinbutton","menuitem","menuitemcheckbox","menuitemradio","option","radio","textbox"];function ZFr(e){return i7n(e,QFr)}function i7n(e,t=!1){const{target:r,composed:a}=e;let s,o;return JFr(r)&&a?(s=e.composedPath()[0]&&e.composedPath()[0].tagName,o=e.composedPath()[0]&&e.composedPath()[0].role):(s=r&&r.tagName,o=r&&r.role),Jdt(t)?!!(s&&t&&t.some(u=>u.toLowerCase()===s.toLowerCase()||u===o)):!!(s&&t&&t)}function JFr(e){return!!e.tagName&&!e.tagName.startsWith("-")&&e.tagName.includes("-")}function e$r(e,t){return e.length===0&&t?!1:t?e.some(r=>t.includes(r))||e.includes("*"):!0}const t$r=(e,t,r=!1)=>{const{alt:a,meta:s,mod:o,shift:u,ctrl:h,keys:f,useKey:p}=t,{code:m,key:b,ctrlKey:_,metaKey:w,shiftKey:S,altKey:C}=e,A=EO(m);if(p&&(f==null?void 0:f.length)===1&&f.includes(b.toLowerCase()))return!0;if(!(f!=null&&f.includes(A))&&!["ctrl","control","unknown","meta","alt","shift","os"].includes(A))return!1;if(!r){if(a!==C&&A!=="alt"||u!==S&&A!=="shift")return!1;if(o){if(!w&&!_)return!1}else if(s!==w&&A!=="meta"&&A!=="os"||h!==_&&A!=="ctrl"&&A!=="control")return!1}return f&&f.length===1&&f.includes(A)?!0:f&&f.length>0?f.includes(A)?WFr(f):!1:!f||f.length===0},n$r=ue.createContext(void 0),r$r=()=>ue.useContext(n$r);function a7n(e,t){return e&&t&&typeof e=="object"&&typeof t=="object"?Object.keys(e).length===Object.keys(t).length&&Object.keys(e).reduce((r,a)=>r&&a7n(e[a],t[a]),!0):e===t}const i$r=ue.createContext({hotkeys:[],activeScopes:[],toggleScope:()=>{},enableScope:()=>{},disableScope:()=>{}}),a$r=()=>ue.useContext(i$r);function s$r(e){const t=ue.useRef(void 0);return a7n(t.current,e)||(t.current=e),t.current}const qfn=e=>{e.stopPropagation(),e.preventDefault(),e.stopImmediatePropagation()},o$r=typeof window<"u"?ue.useLayoutEffect:ue.useEffect;function J4a(e,t,r,a){const s=ue.useRef(null),o=ue.useRef(!1),u=Array.isArray(r)?Array.isArray(a)?void 0:a:r,h=Jdt(e)?e.join(u==null?void 0:u.delimiter):e,f=Array.isArray(r)?r:Array.isArray(a)?a:void 0,p=ue.useCallback(t,f??[]),m=ue.useRef(p);f?m.current=p:m.current=t;const b=s$r(u),{activeScopes:_}=a$r(),w=r$r();return o$r(()=>{if((b==null?void 0:b.enabled)===!1||!e$r(_,b==null?void 0:b.scopes))return;let S=[],C;const A=(L,P=!1)=>{var M;if(!(ZFr(L)&&!i7n(L,b==null?void 0:b.enableOnFormTags))){if(s.current!==null){const F=s.current.getRootNode();if((F instanceof Document||F instanceof ShadowRoot)&&F.activeElement!==s.current&&!s.current.contains(F.activeElement)){qfn(L);return}}(M=L.target)!=null&&M.isContentEditable&&!(b!=null&&b.enableOnContentEditable)||OXe(h,b==null?void 0:b.delimiter).forEach(F=>{var $,G,B,Z;if(F.includes((b==null?void 0:b.splitKey)??"+")&&F.includes((b==null?void 0:b.sequenceSplitKey)??">")){console.warn(`Hotkey ${F} contains both ${(b==null?void 0:b.splitKey)??"+"} and ${(b==null?void 0:b.sequenceSplitKey)??">"} which is not supported.`);return}const U=LXe(F,b==null?void 0:b.splitKey,b==null?void 0:b.sequenceSplitKey,b==null?void 0:b.useKey,b==null?void 0:b.description,b==null?void 0:b.metadata);if(U.isSequence){C=setTimeout(()=>{S=[]},(b==null?void 0:b.sequenceTimeoutMs)??1e3);const z=U.useKey?L.key:EO(L.code);if(t7n(z.toLowerCase()))return;S.push(z);const Y=($=U.keys)==null?void 0:$[S.length-1];if(z!==Y){S=[],C&&clearTimeout(C);return}S.length===((G=U.keys)==null?void 0:G.length)&&(m.current(L,U),C&&clearTimeout(C),S=[])}else if(t$r(L,U,b==null?void 0:b.ignoreModifiers)||(B=U.keys)!=null&&B.includes("*")){if((Z=b==null?void 0:b.ignoreEventWhen)!=null&&Z.call(b,L)||P&&o.current)return;if(KFr(L,U,b==null?void 0:b.preventDefault),!XFr(L,U,b==null?void 0:b.enabled)){qfn(L);return}m.current(L,U),P||(o.current=!0)}})}},k=L=>{L.code!==void 0&&(n7n(EO(L.code)),((b==null?void 0:b.keydown)===void 0&&(b==null?void 0:b.keyup)!==!0||b!=null&&b.keydown)&&A(L))},I=L=>{L.code!==void 0&&(r7n(EO(L.code)),o.current=!1,b!=null&&b.keyup&&A(L,!0))},N=s.current||(u==null?void 0:u.document)||document;return N.addEventListener("keyup",I,u==null?void 0:u.eventListenerOptions),N.addEventListener("keydown",k,u==null?void 0:u.eventListenerOptions),w&&OXe(h,b==null?void 0:b.delimiter).forEach(L=>{w.addHotkey(LXe(L,b==null?void 0:b.splitKey,b==null?void 0:b.sequenceSplitKey,b==null?void 0:b.useKey,b==null?void 0:b.description,b==null?void 0:b.metadata))}),()=>{N.removeEventListener("keyup",I,u==null?void 0:u.eventListenerOptions),N.removeEventListener("keydown",k,u==null?void 0:u.eventListenerOptions),w&&OXe(h,b==null?void 0:b.delimiter).forEach(L=>{w.removeHotkey(LXe(L,b==null?void 0:b.splitKey,b==null?void 0:b.sequenceSplitKey,b==null?void 0:b.useKey,b==null?void 0:b.description,b==null?void 0:b.metadata))}),S=[],C&&clearTimeout(C)}},[h,b,_]),s}var s7n={exports:{}};/*! + Copyright (c) 2018 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/(function(e){(function(){var t={}.hasOwnProperty;function r(){for(var o="",u=0;u15?p="…"+h.slice(s-15,s):p=h.slice(0,s);var m;o+15":">","<":"<",'"':""","'":"'"},f$r=/[&><"']/g;function p$r(e){return String(e).replace(f$r,t=>d$r[t])}var u7n=function e(t){return t.type==="ordgroup"||t.type==="color"?t.body.length===1?e(t.body[0]):t:t.type==="font"?e(t.body):t},g$r=function(t){var r=u7n(t);return r.type==="mathord"||r.type==="textord"||r.type==="atom"},m$r=function(t){if(!t)throw new Error("Expected non-null, but got "+String(t));return t},b$r=function(t){var r=/^[\x00-\x20]*([^\\/#?]*?)(:|�*58|�*3a|&colon)/i.exec(t);return r?r[2]!==":"||!/^[a-zA-Z][a-zA-Z0-9+\-.]*$/.test(r[1])?null:r[1].toLowerCase():"_relative"},uu={deflt:c$r,escape:p$r,hyphenate:h$r,getBaseElem:u7n,isCharacterBox:g$r,protocolFromUrl:b$r},Xae={displayMode:{type:"boolean",description:"Render math in display mode, which puts the math in display style (so \\int and \\sum are large, for example), and centers the math on the page on its own line.",cli:"-d, --display-mode"},output:{type:{enum:["htmlAndMathml","html","mathml"]},description:"Determines the markup language of the output.",cli:"-F, --format "},leqno:{type:"boolean",description:"Render display math in leqno style (left-justified tags)."},fleqn:{type:"boolean",description:"Render display math flush left."},throwOnError:{type:"boolean",default:!0,cli:"-t, --no-throw-on-error",cliDescription:"Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error."},errorColor:{type:"string",default:"#cc0000",cli:"-c, --error-color ",cliDescription:"A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option.",cliProcessor:e=>"#"+e},macros:{type:"object",cli:"-m, --macro ",cliDescription:"Define custom macro of the form '\\foo:expansion' (use multiple -m arguments for multiple macros).",cliDefault:[],cliProcessor:(e,t)=>(t.push(e),t)},minRuleThickness:{type:"number",description:"Specifies a minimum thickness, in ems, for fraction lines, `\\sqrt` top lines, `{array}` vertical lines, `\\hline`, `\\hdashline`, `\\underline`, `\\overline`, and the borders of `\\fbox`, `\\boxed`, and `\\fcolorbox`.",processor:e=>Math.max(0,e),cli:"--min-rule-thickness ",cliProcessor:parseFloat},colorIsTextColor:{type:"boolean",description:"Makes \\color behave like LaTeX's 2-argument \\textcolor, instead of LaTeX's one-argument \\color mode change.",cli:"-b, --color-is-text-color"},strict:{type:[{enum:["warn","ignore","error"]},"boolean","function"],description:"Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX.",cli:"-S, --strict",cliDefault:!1},trust:{type:["boolean","function"],description:"Trust the input, enabling all HTML features such as \\url.",cli:"-T, --trust"},maxSize:{type:"number",default:1/0,description:"If non-zero, all user-specified sizes, e.g. in \\rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large",processor:e=>Math.max(0,e),cli:"-s, --max-size ",cliProcessor:parseInt},maxExpand:{type:"number",default:1e3,description:"Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.",processor:e=>Math.max(0,e),cli:"-e, --max-expand ",cliProcessor:e=>e==="Infinity"?1/0:parseInt(e)},globalGroup:{type:"boolean",cli:!1}};function y$r(e){if(e.default)return e.default;var t=e.type,r=Array.isArray(t)?t[0]:t;if(typeof r!="string")return r.enum[0];switch(r){case"boolean":return!1;case"string":return"";case"number":return 0;case"object":return{}}}let eft=class{constructor(t){this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,this.globalGroup=void 0,t=t||{};for(var r in Xae)if(Xae.hasOwnProperty(r)){var a=Xae[r];this[r]=t[r]!==void 0?a.processor?a.processor(t[r]):t[r]:y$r(a)}}reportNonstrict(t,r,a){var s=this.strict;if(typeof s=="function"&&(s=s(t,r,a)),!(!s||s==="ignore")){if(s===!0||s==="error")throw new Bi("LaTeX-incompatible input and strict mode is set to 'error': "+(r+" ["+t+"]"),a);s==="warn"?typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(r+" ["+t+"]")):typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+s+"': "+r+" ["+t+"]"))}}useStrictBehavior(t,r,a){var s=this.strict;if(typeof s=="function")try{s=s(t,r,a)}catch{s="error"}return!s||s==="ignore"?!1:s===!0||s==="error"?!0:s==="warn"?(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(r+" ["+t+"]")),!1):(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+s+"': "+r+" ["+t+"]")),!1)}isTrusted(t){if(t.url&&!t.protocol){var r=uu.protocolFromUrl(t.url);if(r==null)return!1;t.protocol=r}var a=typeof this.trust=="function"?this.trust(t):this.trust;return!!a}},IN=class{constructor(t,r,a){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=t,this.size=r,this.cramped=a}sup(){return DC[v$r[this.id]]}sub(){return DC[_$r[this.id]]}fracNum(){return DC[w$r[this.id]]}fracDen(){return DC[E$r[this.id]]}cramp(){return DC[x$r[this.id]]}text(){return DC[S$r[this.id]]}isTight(){return this.size>=2}};var tft=0,OSe=1,qV=2,B7=3,Xse=4,iS=5,yj=6,jy=7,DC=[new IN(tft,0,!1),new IN(OSe,0,!0),new IN(qV,1,!1),new IN(B7,1,!0),new IN(Xse,2,!1),new IN(iS,2,!0),new IN(yj,3,!1),new IN(jy,3,!0)],v$r=[Xse,iS,Xse,iS,yj,jy,yj,jy],_$r=[iS,iS,iS,iS,jy,jy,jy,jy],w$r=[qV,B7,Xse,iS,yj,jy,yj,jy],E$r=[B7,B7,iS,iS,jy,jy,jy,jy],x$r=[OSe,OSe,B7,B7,iS,iS,jy,jy],S$r=[tft,OSe,qV,B7,qV,B7,qV,B7],Zs={DISPLAY:DC[tft],TEXT:DC[qV],SCRIPT:DC[Xse],SCRIPTSCRIPT:DC[yj]},vst=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"armenian",blocks:[[1328,1423]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];function T$r(e){for(var t=0;t=s[0]&&e<=s[1])return r.name}return null}var qEe=[];vst.forEach(e=>e.blocks.forEach(t=>qEe.push(...t)));function h7n(e){for(var t=0;t=qEe[t]&&e<=qEe[t+1])return!0;return!1}var OH=80,C$r=function(t,r){return"M95,"+(622+t+r)+` +c-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14 +c0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54 +c44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10 +s173,378,173,378c0.7,0,35.3,-71,104,-213c68.7,-142,137.5,-285,206.5,-429 +c69,-144,104.5,-217.7,106.5,-221 +l`+t/2.075+" -"+t+` +c5.3,-9.3,12,-14,20,-14 +H400000v`+(40+t)+`H845.2724 +s-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7 +c-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z +M`+(834+t)+" "+r+"h400000v"+(40+t)+"h-400000z"},A$r=function(t,r){return"M263,"+(601+t+r)+`c0.7,0,18,39.7,52,119 +c34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120 +c340,-704.7,510.7,-1060.3,512,-1067 +l`+t/2.084+" -"+t+` +c4.7,-7.3,11,-11,19,-11 +H40000v`+(40+t)+`H1012.3 +s-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232 +c-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1 +s-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26 +c-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z +M`+(1001+t)+" "+r+"h400000v"+(40+t)+"h-400000z"},k$r=function(t,r){return"M983 "+(10+t+r)+` +l`+t/3.13+" -"+t+` +c4,-6.7,10,-10,18,-10 H400000v`+(40+t)+` +H1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7 +s-12,0,-12,0c-1.3,-3.3,-3.7,-11.7,-7,-25c-35.3,-125.3,-106.7,-373.3,-214,-744 +c-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30 +c26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722 +c56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5 +c53.7,-170.3,84.5,-266.8,92.5,-289.5z +M`+(1001+t)+" "+r+"h400000v"+(40+t)+"h-400000z"},R$r=function(t,r){return"M424,"+(2398+t+r)+` +c-1.3,-0.7,-38.5,-172,-111.5,-514c-73,-342,-109.8,-513.3,-110.5,-514 +c0,-2,-10.7,14.3,-32,49c-4.7,7.3,-9.8,15.7,-15.5,25c-5.7,9.3,-9.8,16,-12.5,20 +s-5,7,-5,7c-4,-3.3,-8.3,-7.7,-13,-13s-13,-13,-13,-13s76,-122,76,-122s77,-121,77,-121 +s209,968,209,968c0,-2,84.7,-361.7,254,-1079c169.3,-717.3,254.7,-1077.7,256,-1081 +l`+t/4.223+" -"+t+`c4,-6.7,10,-10,18,-10 H400000 +v`+(40+t)+`H1014.6 +s-87.3,378.7,-272.6,1166c-185.3,787.3,-279.3,1182.3,-282,1185 +c-2,6,-10,9,-24,9 +c-8,0,-12,-0.7,-12,-2z M`+(1001+t)+" "+r+` +h400000v`+(40+t)+"h-400000z"},I$r=function(t,r){return"M473,"+(2713+t+r)+` +c339.3,-1799.3,509.3,-2700,510,-2702 l`+t/5.298+" -"+t+` +c3.3,-7.3,9.3,-11,18,-11 H400000v`+(40+t)+`H1017.7 +s-90.5,478,-276.2,1466c-185.7,988,-279.5,1483,-281.5,1485c-2,6,-10,9,-24,9 +c-8,0,-12,-0.7,-12,-2c0,-1.3,-5.3,-32,-16,-92c-50.7,-293.3,-119.7,-693.3,-207,-1200 +c0,-1.3,-5.3,8.7,-16,30c-10.7,21.3,-21.3,42.7,-32,64s-16,33,-16,33s-26,-26,-26,-26 +s76,-153,76,-153s77,-151,77,-151c0.7,0.7,35.7,202,105,604c67.3,400.7,102,602.7,104, +606zM`+(1001+t)+" "+r+"h400000v"+(40+t)+"H1017.7z"},N$r=function(t){var r=t/2;return"M400000 "+t+" H0 L"+r+" 0 l65 45 L145 "+(t-80)+" H400000z"},O$r=function(t,r,a){var s=a-54-r-t;return"M702 "+(t+r)+"H400000"+(40+t)+` +H742v`+s+`l-4 4-4 4c-.667.7 -2 1.5-4 2.5s-4.167 1.833-6.5 2.5-5.5 1-9.5 1 +h-12l-28-84c-16.667-52-96.667 -294.333-240-727l-212 -643 -85 170 +c-4-3.333-8.333-7.667-13 -13l-13-13l77-155 77-156c66 199.333 139 419.667 +219 661 l218 661zM702 `+r+"H400000v"+(40+t)+"H742z"},L$r=function(t,r,a){r=1e3*r;var s="";switch(t){case"sqrtMain":s=C$r(r,OH);break;case"sqrtSize1":s=A$r(r,OH);break;case"sqrtSize2":s=k$r(r,OH);break;case"sqrtSize3":s=R$r(r,OH);break;case"sqrtSize4":s=I$r(r,OH);break;case"sqrtTall":s=O$r(r,OH,a)}return s},D$r=function(t,r){switch(t){case"⎜":return"M291 0 H417 V"+r+" H291z M291 0 H417 V"+r+" H291z";case"∣":return"M145 0 H188 V"+r+" H145z M145 0 H188 V"+r+" H145z";case"∥":return"M145 0 H188 V"+r+" H145z M145 0 H188 V"+r+" H145z"+("M367 0 H410 V"+r+" H367z M367 0 H410 V"+r+" H367z");case"⎟":return"M457 0 H583 V"+r+" H457z M457 0 H583 V"+r+" H457z";case"⎢":return"M319 0 H403 V"+r+" H319z M319 0 H403 V"+r+" H319z";case"⎥":return"M263 0 H347 V"+r+" H263z M263 0 H347 V"+r+" H263z";case"⎪":return"M384 0 H504 V"+r+" H384z M384 0 H504 V"+r+" H384z";case"⏐":return"M312 0 H355 V"+r+" H312z M312 0 H355 V"+r+" H312z";case"‖":return"M257 0 H300 V"+r+" H257z M257 0 H300 V"+r+" H257z"+("M478 0 H521 V"+r+" H478z M478 0 H521 V"+r+" H478z");default:return""}},Hfn={doubleleftarrow:`M262 157 +l10-10c34-36 62.7-77 86-123 3.3-8 5-13.3 5-16 0-5.3-6.7-8-20-8-7.3 + 0-12.2.5-14.5 1.5-2.3 1-4.8 4.5-7.5 10.5-49.3 97.3-121.7 169.3-217 216-28 + 14-57.3 25-88 33-6.7 2-11 3.8-13 5.5-2 1.7-3 4.2-3 7.5s1 5.8 3 7.5 +c2 1.7 6.3 3.5 13 5.5 68 17.3 128.2 47.8 180.5 91.5 52.3 43.7 93.8 96.2 124.5 + 157.5 9.3 8 15.3 12.3 18 13h6c12-.7 18-4 18-10 0-2-1.7-7-5-15-23.3-46-52-87 +-86-123l-10-10h399738v-40H218c328 0 0 0 0 0l-10-8c-26.7-20-65.7-43-117-69 2.7 +-2 6-3.7 10-5 36.7-16 72.3-37.3 107-64l10-8h399782v-40z +m8 0v40h399730v-40zm0 194v40h399730v-40z`,doublerightarrow:`M399738 392l +-10 10c-34 36-62.7 77-86 123-3.3 8-5 13.3-5 16 0 5.3 6.7 8 20 8 7.3 0 12.2-.5 + 14.5-1.5 2.3-1 4.8-4.5 7.5-10.5 49.3-97.3 121.7-169.3 217-216 28-14 57.3-25 88 +-33 6.7-2 11-3.8 13-5.5 2-1.7 3-4.2 3-7.5s-1-5.8-3-7.5c-2-1.7-6.3-3.5-13-5.5-68 +-17.3-128.2-47.8-180.5-91.5-52.3-43.7-93.8-96.2-124.5-157.5-9.3-8-15.3-12.3-18 +-13h-6c-12 .7-18 4-18 10 0 2 1.7 7 5 15 23.3 46 52 87 86 123l10 10H0v40h399782 +c-328 0 0 0 0 0l10 8c26.7 20 65.7 43 117 69-2.7 2-6 3.7-10 5-36.7 16-72.3 37.3 +-107 64l-10 8H0v40zM0 157v40h399730v-40zm0 194v40h399730v-40z`,leftarrow:`M400000 241H110l3-3c68.7-52.7 113.7-120 + 135-202 4-14.7 6-23 6-25 0-7.3-7-11-21-11-8 0-13.2.8-15.5 2.5-2.3 1.7-4.2 5.8 +-5.5 12.5-1.3 4.7-2.7 10.3-4 17-12 48.7-34.8 92-68.5 130S65.3 228.3 18 247 +c-10 4-16 7.7-18 11 0 8.7 6 14.3 18 17 47.3 18.7 87.8 47 121.5 85S196 441.3 208 + 490c.7 2 1.3 5 2 9s1.2 6.7 1.5 8c.3 1.3 1 3.3 2 6s2.2 4.5 3.5 5.5c1.3 1 3.3 + 1.8 6 2.5s6 1 10 1c14 0 21-3.7 21-11 0-2-2-10.3-6-25-20-79.3-65-146.7-135-202 + l-3-3h399890zM100 241v40h399900v-40z`,leftbrace:`M6 548l-6-6v-35l6-11c56-104 135.3-181.3 238-232 57.3-28.7 117 +-45 179-50h399577v120H403c-43.3 7-81 15-113 26-100.7 33-179.7 91-237 174-2.7 + 5-6 9-10 13-.7 1-7.3 1-20 1H6z`,leftbraceunder:`M0 6l6-6h17c12.688 0 19.313.3 20 1 4 4 7.313 8.3 10 13 + 35.313 51.3 80.813 93.8 136.5 127.5 55.688 33.7 117.188 55.8 184.5 66.5.688 + 0 2 .3 4 1 18.688 2.7 76 4.3 172 5h399450v120H429l-6-1c-124.688-8-235-61.7 +-331-161C60.687 138.7 32.312 99.3 7 54L0 41V6z`,leftgroup:`M400000 80 +H435C64 80 168.3 229.4 21 260c-5.9 1.2-18 0-18 0-2 0-3-1-3-3v-38C76 61 257 0 + 435 0h399565z`,leftgroupunder:`M400000 262 +H435C64 262 168.3 112.6 21 82c-5.9-1.2-18 0-18 0-2 0-3 1-3 3v38c76 158 257 219 + 435 219h399565z`,leftharpoon:`M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3 +-3.3 10.2-9.5 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5 +-18.3 3-21-1.3-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7 +-196 228-6.7 4.7-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40z`,leftharpoonplus:`M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3-3.3 10.2-9.5 + 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5-18.3 3-21-1.3 +-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7-196 228-6.7 4.7 +-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40zM0 435v40h400000v-40z +m0 0v40h400000v-40z`,leftharpoondown:`M7 241c-4 4-6.333 8.667-7 14 0 5.333.667 9 2 11s5.333 + 5.333 12 10c90.667 54 156 130 196 228 3.333 10.667 6.333 16.333 9 17 2 .667 5 + 1 9 1h5c10.667 0 16.667-2 18-6 2-2.667 1-9.667-3-21-32-87.333-82.667-157.667 +-152-211l-3-3h399907v-40zM93 281 H400000 v-40L7 241z`,leftharpoondownplus:`M7 435c-4 4-6.3 8.7-7 14 0 5.3.7 9 2 11s5.3 5.3 12 + 10c90.7 54 156 130 196 228 3.3 10.7 6.3 16.3 9 17 2 .7 5 1 9 1h5c10.7 0 16.7 +-2 18-6 2-2.7 1-9.7-3-21-32-87.3-82.7-157.7-152-211l-3-3h399907v-40H7zm93 0 +v40h399900v-40zM0 241v40h399900v-40zm0 0v40h399900v-40z`,lefthook:`M400000 281 H103s-33-11.2-61-33.5S0 197.3 0 164s14.2-61.2 42.5 +-83.5C70.8 58.2 104 47 142 47 c16.7 0 25 6.7 25 20 0 12-8.7 18.7-26 20-40 3.3 +-68.7 15.7-86 37-10 12-15 25.3-15 40 0 22.7 9.8 40.7 29.5 54 19.7 13.3 43.5 21 + 71.5 23h399859zM103 281v-40h399897v40z`,leftlinesegment:`M40 281 V428 H0 V94 H40 V241 H400000 v40z +M40 281 V428 H0 V94 H40 V241 H400000 v40z`,leftmapsto:`M40 281 V448H0V74H40V241H400000v40z +M40 281 V448H0V74H40V241H400000v40z`,leftToFrom:`M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23 +-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69-70-101l-7-8h399905v-40H95l7-8 +c28.7-32 52-65.7 70-101 10.7-23.3 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 265.3 + 68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z`,longequal:`M0 50 h400000 v40H0z m0 194h40000v40H0z +M0 50 h400000 v40H0z m0 194h40000v40H0z`,midbrace:`M200428 334 +c-100.7-8.3-195.3-44-280-108-55.3-42-101.7-93-139-153l-9-14c-2.7 4-5.7 8.7-9 14 +-53.3 86.7-123.7 153-211 199-66.7 36-137.3 56.3-212 62H0V214h199568c178.3-11.7 + 311.7-78.3 403-201 6-8 9.7-12 11-12 .7-.7 6.7-1 18-1s17.3.3 18 1c1.3 0 5 4 11 + 12 44.7 59.3 101.3 106.3 170 141s145.3 54.3 229 60h199572v120z`,midbraceunder:`M199572 214 +c100.7 8.3 195.3 44 280 108 55.3 42 101.7 93 139 153l9 14c2.7-4 5.7-8.7 9-14 + 53.3-86.7 123.7-153 211-199 66.7-36 137.3-56.3 212-62h199568v120H200432c-178.3 + 11.7-311.7 78.3-403 201-6 8-9.7 12-11 12-.7.7-6.7 1-18 1s-17.3-.3-18-1c-1.3 0 +-5-4-11-12-44.7-59.3-101.3-106.3-170-141s-145.3-54.3-229-60H0V214z`,oiintSize1:`M512.6 71.6c272.6 0 320.3 106.8 320.3 178.2 0 70.8-47.7 177.6 +-320.3 177.6S193.1 320.6 193.1 249.8c0-71.4 46.9-178.2 319.5-178.2z +m368.1 178.2c0-86.4-60.9-215.4-368.1-215.4-306.4 0-367.3 129-367.3 215.4 0 85.8 +60.9 214.8 367.3 214.8 307.2 0 368.1-129 368.1-214.8z`,oiintSize2:`M757.8 100.1c384.7 0 451.1 137.6 451.1 230 0 91.3-66.4 228.8 +-451.1 228.8-386.3 0-452.7-137.5-452.7-228.8 0-92.4 66.4-230 452.7-230z +m502.4 230c0-111.2-82.4-277.2-502.4-277.2s-504 166-504 277.2 +c0 110 84 276 504 276s502.4-166 502.4-276z`,oiiintSize1:`M681.4 71.6c408.9 0 480.5 106.8 480.5 178.2 0 70.8-71.6 177.6 +-480.5 177.6S202.1 320.6 202.1 249.8c0-71.4 70.5-178.2 479.3-178.2z +m525.8 178.2c0-86.4-86.8-215.4-525.7-215.4-437.9 0-524.7 129-524.7 215.4 0 +85.8 86.8 214.8 524.7 214.8 438.9 0 525.7-129 525.7-214.8z`,oiiintSize2:`M1021.2 53c603.6 0 707.8 165.8 707.8 277.2 0 110-104.2 275.8 +-707.8 275.8-606 0-710.2-165.8-710.2-275.8C311 218.8 415.2 53 1021.2 53z +m770.4 277.1c0-131.2-126.4-327.6-770.5-327.6S248.4 198.9 248.4 330.1 +c0 130 128.8 326.4 772.7 326.4s770.5-196.4 770.5-326.4z`,rightarrow:`M0 241v40h399891c-47.3 35.3-84 78-110 128 +-16.7 32-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 + 11 8 0 13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 + 39-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85 +-40.5-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5 +-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67 + 151.7 139 205zm0 0v40h399900v-40z`,rightbrace:`M400000 542l +-6 6h-17c-12.7 0-19.3-.3-20-1-4-4-7.3-8.3-10-13-35.3-51.3-80.8-93.8-136.5-127.5 +s-117.2-55.8-184.5-66.5c-.7 0-2-.3-4-1-18.7-2.7-76-4.3-172-5H0V214h399571l6 1 +c124.7 8 235 61.7 331 161 31.3 33.3 59.7 72.7 85 118l7 13v35z`,rightbraceunder:`M399994 0l6 6v35l-6 11c-56 104-135.3 181.3-238 232-57.3 + 28.7-117 45-179 50H-300V214h399897c43.3-7 81-15 113-26 100.7-33 179.7-91 237 +-174 2.7-5 6-9 10-13 .7-1 7.3-1 20-1h17z`,rightgroup:`M0 80h399565c371 0 266.7 149.4 414 180 5.9 1.2 18 0 18 0 2 0 + 3-1 3-3v-38c-76-158-257-219-435-219H0z`,rightgroupunder:`M0 262h399565c371 0 266.7-149.4 414-180 5.9-1.2 18 0 18 + 0 2 0 3 1 3 3v38c-76 158-257 219-435 219H0z`,rightharpoon:`M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3 +-3.7-15.3-11-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2 +-10.7 0-16.7 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 + 69.2 92 94.5zm0 0v40h399900v-40z`,rightharpoonplus:`M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3-3.7-15.3-11 +-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2-10.7 0-16.7 + 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 69.2 92 94.5z +m0 0v40h399900v-40z m100 194v40h399900v-40zm0 0v40h399900v-40z`,rightharpoondown:`M399747 511c0 7.3 6.7 11 20 11 8 0 13-.8 15-2.5s4.7-6.8 + 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 8.5-5.8 9.5 +-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3-64.7 57-92 95 +-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 241v40h399900v-40z`,rightharpoondownplus:`M399747 705c0 7.3 6.7 11 20 11 8 0 13-.8 + 15-2.5s4.7-6.8 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 + 8.5-5.8 9.5-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3 +-64.7 57-92 95-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 435v40h399900v-40z +m0-194v40h400000v-40zm0 0v40h400000v-40z`,righthook:`M399859 241c-764 0 0 0 0 0 40-3.3 68.7-15.7 86-37 10-12 15-25.3 + 15-40 0-22.7-9.8-40.7-29.5-54-19.7-13.3-43.5-21-71.5-23-17.3-1.3-26-8-26-20 0 +-13.3 8.7-20 26-20 38 0 71 11.2 99 33.5 0 0 7 5.6 21 16.7 14 11.2 21 33.5 21 + 66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z`,rightlinesegment:`M399960 241 V94 h40 V428 h-40 V281 H0 v-40z +M399960 241 V94 h40 V428 h-40 V281 H0 v-40z`,rightToFrom:`M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23 + 1 0 1.3 5.3 13.7 16 37 18 35.3 41.3 69 70 101l7 8H0v40h399905l-7 8c-28.7 32 +-52 65.7-70 101-10.7 23.3-16 35.7-16 37 0 .7 7.7 1 23 1h23c24-69.3 71.3-125 142 +-167z M100 147v40h399900v-40zM0 341v40h399900v-40z`,twoheadleftarrow:`M0 167c68 40 + 115.7 95.7 143 167h22c15.3 0 23-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69 +-70-101l-7-8h125l9 7c50.7 39.3 85 86 103 140h46c0-4.7-6.3-18.7-19-42-18-35.3 +-40-67.3-66-96l-9-9h399716v-40H284l9-9c26-28.7 48-60.7 66-96 12.7-23.333 19 +-37.333 19-42h-46c-18 54-52.3 100.7-103 140l-9 7H95l7-8c28.7-32 52-65.7 70-101 + 10.7-23.333 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 71.3 68 127 0 167z`,twoheadrightarrow:`M400000 167 +c-68-40-115.7-95.7-143-167h-22c-15.3 0-23 .3-23 1 0 1.3 5.3 13.7 16 37 18 35.3 + 41.3 69 70 101l7 8h-125l-9-7c-50.7-39.3-85-86-103-140h-46c0 4.7 6.3 18.7 19 42 + 18 35.3 40 67.3 66 96l9 9H0v40h399716l-9 9c-26 28.7-48 60.7-66 96-12.7 23.333 +-19 37.333-19 42h46c18-54 52.3-100.7 103-140l9-7h125l-7 8c-28.7 32-52 65.7-70 + 101-10.7 23.333-16 35.7-16 37 0 .7 7.7 1 23 1h22c27.3-71.3 75-127 143-167z`,tilde1:`M200 55.538c-77 0-168 73.953-177 73.953-3 0-7 +-2.175-9-5.437L2 97c-1-2-2-4-2-6 0-4 2-7 5-9l20-12C116 12 171 0 207 0c86 0 + 114 68 191 68 78 0 168-68 177-68 4 0 7 2 9 5l12 19c1 2.175 2 4.35 2 6.525 0 + 4.35-2 7.613-5 9.788l-19 13.05c-92 63.077-116.937 75.308-183 76.128 +-68.267.847-113-73.952-191-73.952z`,tilde2:`M344 55.266c-142 0-300.638 81.316-311.5 86.418 +-8.01 3.762-22.5 10.91-23.5 5.562L1 120c-1-2-1-3-1-4 0-5 3-9 8-10l18.4-9C160.9 + 31.9 283 0 358 0c148 0 188 122 331 122s314-97 326-97c4 0 8 2 10 7l7 21.114 +c1 2.14 1 3.21 1 4.28 0 5.347-3 9.626-7 10.696l-22.3 12.622C852.6 158.372 751 + 181.476 676 181.476c-149 0-189-126.21-332-126.21z`,tilde3:`M786 59C457 59 32 175.242 13 175.242c-6 0-10-3.457 +-11-10.37L.15 138c-1-7 3-12 10-13l19.2-6.4C378.4 40.7 634.3 0 804.3 0c337 0 + 411.8 157 746.8 157 328 0 754-112 773-112 5 0 10 3 11 9l1 14.075c1 8.066-.697 + 16.595-6.697 17.492l-21.052 7.31c-367.9 98.146-609.15 122.696-778.15 122.696 + -338 0-409-156.573-744-156.573z`,tilde4:`M786 58C457 58 32 177.487 13 177.487c-6 0-10-3.345 +-11-10.035L.15 143c-1-7 3-12 10-13l22-6.7C381.2 35 637.15 0 807.15 0c337 0 409 + 177 744 177 328 0 754-127 773-127 5 0 10 3 11 9l1 14.794c1 7.805-3 13.38-9 + 14.495l-20.7 5.574c-366.85 99.79-607.3 139.372-776.3 139.372-338 0-409 + -175.236-744-175.236z`,vec:`M377 20c0-5.333 1.833-10 5.5-14S391 0 397 0c4.667 0 8.667 1.667 12 5 +3.333 2.667 6.667 9 10 19 6.667 24.667 20.333 43.667 41 57 7.333 4.667 11 +10.667 11 18 0 6-1 10-3 12s-6.667 5-14 9c-28.667 14.667-53.667 35.667-75 63 +-1.333 1.333-3.167 3.5-5.5 6.5s-4 4.833-5 5.5c-1 .667-2.5 1.333-4.5 2s-4.333 1 +-7 1c-4.667 0-9.167-1.833-13.5-5.5S337 184 337 178c0-12.667 15.667-32.333 47-59 +H213l-171-1c-8.667-6-13-12.333-13-19 0-4.667 4.333-11.333 13-20h359 +c-16-25.333-24-45-24-59z`,widehat1:`M529 0h5l519 115c5 1 9 5 9 10 0 1-1 2-1 3l-4 22 +c-1 5-5 9-11 9h-2L532 67 19 159h-2c-5 0-9-4-11-9l-5-22c-1-6 2-12 8-13z`,widehat2:`M1181 0h2l1171 176c6 0 10 5 10 11l-2 23c-1 6-5 10 +-11 10h-1L1182 67 15 220h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widehat3:`M1181 0h2l1171 236c6 0 10 5 10 11l-2 23c-1 6-5 10 +-11 10h-1L1182 67 15 280h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widehat4:`M1181 0h2l1171 296c6 0 10 5 10 11l-2 23c-1 6-5 10 +-11 10h-1L1182 67 15 340h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widecheck1:`M529,159h5l519,-115c5,-1,9,-5,9,-10c0,-1,-1,-2,-1,-3l-4,-22c-1, +-5,-5,-9,-11,-9h-2l-512,92l-513,-92h-2c-5,0,-9,4,-11,9l-5,22c-1,6,2,12,8,13z`,widecheck2:`M1181,220h2l1171,-176c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10, +-11,-10h-1l-1168,153l-1167,-153h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,widecheck3:`M1181,280h2l1171,-236c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10, +-11,-10h-1l-1168,213l-1167,-213h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,widecheck4:`M1181,340h2l1171,-296c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10, +-11,-10h-1l-1168,273l-1167,-273h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,baraboveleftarrow:`M400000 620h-399890l3 -3c68.7 -52.7 113.7 -120 135 -202 +c4 -14.7 6 -23 6 -25c0 -7.3 -7 -11 -21 -11c-8 0 -13.2 0.8 -15.5 2.5 +c-2.3 1.7 -4.2 5.8 -5.5 12.5c-1.3 4.7 -2.7 10.3 -4 17c-12 48.7 -34.8 92 -68.5 130 +s-74.2 66.3 -121.5 85c-10 4 -16 7.7 -18 11c0 8.7 6 14.3 18 17c47.3 18.7 87.8 47 +121.5 85s56.5 81.3 68.5 130c0.7 2 1.3 5 2 9s1.2 6.7 1.5 8c0.3 1.3 1 3.3 2 6 +s2.2 4.5 3.5 5.5c1.3 1 3.3 1.8 6 2.5s6 1 10 1c14 0 21 -3.7 21 -11 +c0 -2 -2 -10.3 -6 -25c-20 -79.3 -65 -146.7 -135 -202l-3 -3h399890z +M100 620v40h399900v-40z M0 241v40h399900v-40zM0 241v40h399900v-40z`,rightarrowabovebar:`M0 241v40h399891c-47.3 35.3-84 78-110 128-16.7 32 +-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 11 8 0 +13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 39 +-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85-40.5 +-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5 +-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67 +151.7 139 205zm96 379h399894v40H0zm0 0h399904v40H0z`,baraboveshortleftharpoon:`M507,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11 +c1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17 +c2,0.7,5,1,9,1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21 +c-32,-87.3,-82.7,-157.7,-152,-211c0,0,-3,-3,-3,-3l399351,0l0,-40 +c-398570,0,-399437,0,-399437,0z M593 435 v40 H399500 v-40z +M0 281 v-40 H399908 v40z M0 281 v-40 H399908 v40z`,rightharpoonaboveshortbar:`M0,241 l0,40c399126,0,399993,0,399993,0 +c4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199, +-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6 +c-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z +M0 241 v40 H399908 v-40z M0 475 v-40 H399500 v40z M0 475 v-40 H399500 v40z`,shortbaraboveleftharpoon:`M7,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11 +c1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17c2,0.7,5,1,9, +1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21c-32,-87.3,-82.7,-157.7, +-152,-211c0,0,-3,-3,-3,-3l399907,0l0,-40c-399126,0,-399993,0,-399993,0z +M93 435 v40 H400000 v-40z M500 241 v40 H400000 v-40z M500 241 v40 H400000 v-40z`,shortrightharpoonabovebar:`M53,241l0,40c398570,0,399437,0,399437,0 +c4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199, +-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6 +c-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z +M500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z`},M$r=function(t,r){switch(t){case"lbrack":return"M403 1759 V84 H666 V0 H319 V1759 v"+r+` v1759 h347 v-84 +H403z M403 1759 V0 H319 V1759 v`+r+" v1759 h84z";case"rbrack":return"M347 1759 V0 H0 V84 H263 V1759 v"+r+` v1759 H0 v84 H347z +M347 1759 V0 H263 V1759 v`+r+" v1759 h84z";case"vert":return"M145 15 v585 v"+r+` v585 c2.667,10,9.667,15,21,15 +c10,0,16.667,-5,20,-15 v-585 v`+-r+` v-585 c-2.667,-10,-9.667,-15,-21,-15 +c-10,0,-16.667,5,-20,15z M188 15 H145 v585 v`+r+" v585 h43z";case"doublevert":return"M145 15 v585 v"+r+` v585 c2.667,10,9.667,15,21,15 +c10,0,16.667,-5,20,-15 v-585 v`+-r+` v-585 c-2.667,-10,-9.667,-15,-21,-15 +c-10,0,-16.667,5,-20,15z M188 15 H145 v585 v`+r+` v585 h43z +M367 15 v585 v`+r+` v585 c2.667,10,9.667,15,21,15 +c10,0,16.667,-5,20,-15 v-585 v`+-r+` v-585 c-2.667,-10,-9.667,-15,-21,-15 +c-10,0,-16.667,5,-20,15z M410 15 H367 v585 v`+r+" v585 h43z";case"lfloor":return"M319 602 V0 H403 V602 v"+r+` v1715 h263 v84 H319z +MM319 602 V0 H403 V602 v`+r+" v1715 H319z";case"rfloor":return"M319 602 V0 H403 V602 v"+r+` v1799 H0 v-84 H319z +MM319 602 V0 H403 V602 v`+r+" v1715 H319z";case"lceil":return"M403 1759 V84 H666 V0 H319 V1759 v"+r+` v602 h84z +M403 1759 V0 H319 V1759 v`+r+" v602 h84z";case"rceil":return"M347 1759 V0 H0 V84 H263 V1759 v"+r+` v602 h84z +M347 1759 V0 h-84 V1759 v`+r+" v602 h84z";case"lparen":return`M863,9c0,-2,-2,-5,-6,-9c0,0,-17,0,-17,0c-12.7,0,-19.3,0.3,-20,1 +c-5.3,5.3,-10.3,11,-15,17c-242.7,294.7,-395.3,682,-458,1162c-21.3,163.3,-33.3,349, +-36,557 l0,`+(r+84)+`c0.2,6,0,26,0,60c2,159.3,10,310.7,24,454c53.3,528,210, +949.7,470,1265c4.7,6,9.7,11.7,15,17c0.7,0.7,7,1,19,1c0,0,18,0,18,0c4,-4,6,-7,6,-9 +c0,-2.7,-3.3,-8.7,-10,-18c-135.3,-192.7,-235.5,-414.3,-300.5,-665c-65,-250.7,-102.5, +-544.7,-112.5,-882c-2,-104,-3,-167,-3,-189 +l0,-`+(r+92)+`c0,-162.7,5.7,-314,17,-454c20.7,-272,63.7,-513,129,-723c65.3, +-210,155.3,-396.3,270,-559c6.7,-9.3,10,-15.3,10,-18z`;case"rparen":return`M76,0c-16.7,0,-25,3,-25,9c0,2,2,6.3,6,13c21.3,28.7,42.3,60.3, +63,95c96.7,156.7,172.8,332.5,228.5,527.5c55.7,195,92.8,416.5,111.5,664.5 +c11.3,139.3,17,290.7,17,454c0,28,1.7,43,3.3,45l0,`+(r+9)+` +c-3,4,-3.3,16.7,-3.3,38c0,162,-5.7,313.7,-17,455c-18.7,248,-55.8,469.3,-111.5,664 +c-55.7,194.7,-131.8,370.3,-228.5,527c-20.7,34.7,-41.7,66.3,-63,95c-2,3.3,-4,7,-6,11 +c0,7.3,5.7,11,17,11c0,0,11,0,11,0c9.3,0,14.3,-0.3,15,-1c5.3,-5.3,10.3,-11,15,-17 +c242.7,-294.7,395.3,-681.7,458,-1161c21.3,-164.7,33.3,-350.7,36,-558 +l0,-`+(r+144)+`c-2,-159.3,-10,-310.7,-24,-454c-53.3,-528,-210,-949.7, +-470,-1265c-4.7,-6,-9.7,-11.7,-15,-17c-0.7,-0.7,-6.7,-1,-18,-1z`;default:throw new Error("Unknown stretchy delimiter.")}};let Fle=class{constructor(t){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=t,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}hasClass(t){return this.classes.includes(t)}toNode(){for(var t=document.createDocumentFragment(),r=0;rr.toText();return this.children.map(t).join("")}};var YC={"AMS-Regular":{32:[0,0,0,0,.25],65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],160:[0,0,0,0,.25],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{32:[0,0,0,0,.25],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473],160:[0,0,0,0,.25]},"Fraktur-Regular":{32:[0,0,0,0,.25],33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],160:[0,0,0,0,.25],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],160:[0,0,0,0,.25],163:[0,.69444,0,0,.86853],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8773:[.027,.638,0,0,.894],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{32:[0,0,0,0,.25],33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],160:[0,0,0,0,.25],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],160:[0,0,0,0,.25],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],163:[0,.69444,0,0,.76909],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.123,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,.778],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.673,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.903,0,0,.278],8943:[-.19,.313,0,0,1.172],8945:[-.1,.823,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.745,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.745,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{32:[0,0,0,0,.25],48:[0,.44444,0,0,.575],49:[0,.44444,0,0,.575],50:[0,.44444,0,0,.575],51:[.19444,.44444,0,0,.575],52:[.19444,.44444,0,0,.575],53:[.19444,.44444,0,0,.575],54:[0,.64444,0,0,.575],55:[.19444,.44444,0,0,.575],56:[0,.64444,0,0,.575],57:[.19444,.44444,0,0,.575],65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],160:[0,0,0,0,.25],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333],57649:[0,.44444,0,0,.39352],57911:[.19444,.44444,0,0,.43889]},"Math-Italic":{32:[0,0,0,0,.25],48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],160:[0,0,0,0,.25],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059],57649:[0,.43056,0,.02778,.32246],57911:[.19444,.43056,0,.08334,.38403]},"SansSerif-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],160:[0,0,0,0,.25],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],160:[0,0,0,0,.25],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],160:[0,0,0,0,.25],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{32:[0,0,0,0,.25],65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212],160:[0,0,0,0,.25]},"Size1-Regular":{32:[0,0,0,0,.25],40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],160:[0,0,0,0,.25],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{32:[0,0,0,0,.25],40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],160:[0,0,0,0,.25],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{32:[0,0,0,0,.25],40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],160:[0,0,0,0,.25],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{32:[0,0,0,0,.25],40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],160:[0,0,0,0,.25],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}},g_e={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},Vfn={Å:"A",Ð:"D",Þ:"o",å:"a",ð:"d",þ:"o",А:"A",Б:"B",В:"B",Г:"F",Д:"A",Е:"E",Ж:"K",З:"3",И:"N",Й:"N",К:"K",Л:"N",М:"M",Н:"H",О:"O",П:"N",Р:"P",С:"C",Т:"T",У:"y",Ф:"O",Х:"X",Ц:"U",Ч:"h",Ш:"W",Щ:"W",Ъ:"B",Ы:"X",Ь:"B",Э:"3",Ю:"X",Я:"R",а:"a",б:"b",в:"a",г:"r",д:"y",е:"e",ж:"m",з:"e",и:"n",й:"n",к:"n",л:"n",м:"m",н:"n",о:"o",п:"n",р:"p",с:"c",т:"o",у:"y",ф:"b",х:"x",ц:"n",ч:"n",ш:"w",щ:"w",ъ:"a",ы:"m",ь:"a",э:"e",ю:"m",я:"r"};function d7n(e,t){YC[e]=t}function nft(e,t,r){if(!YC[t])throw new Error("Font metrics not found for font: "+t+".");var a=e.charCodeAt(0),s=YC[t][a];if(!s&&e[0]in Vfn&&(a=Vfn[e[0]].charCodeAt(0),s=YC[t][a]),!s&&r==="text"&&h7n(a)&&(s=YC[t][77]),s)return{depth:s[0],height:s[1],italic:s[2],skew:s[3],width:s[4]}}var DXe={};function P$r(e){var t;if(e>=5?t=0:e>=3?t=1:t=2,!DXe[t]){var r=DXe[t]={cssEmPerMu:g_e.quad[t]/18};for(var a in g_e)g_e.hasOwnProperty(a)&&(r[a]=g_e[a][t])}return DXe[t]}var B$r=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],Yfn=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],jfn=function(t,r){return r.size<2?t:B$r[t-1][r.size-1]};let f7n=class CB{constructor(t){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=t.style,this.color=t.color,this.size=t.size||CB.BASESIZE,this.textSize=t.textSize||this.size,this.phantom=!!t.phantom,this.font=t.font||"",this.fontFamily=t.fontFamily||"",this.fontWeight=t.fontWeight||"",this.fontShape=t.fontShape||"",this.sizeMultiplier=Yfn[this.size-1],this.maxSize=t.maxSize,this.minRuleThickness=t.minRuleThickness,this._fontMetrics=void 0}extend(t){var r={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};for(var a in t)t.hasOwnProperty(a)&&(r[a]=t[a]);return new CB(r)}havingStyle(t){return this.style===t?this:this.extend({style:t,size:jfn(this.textSize,t)})}havingCrampedStyle(){return this.havingStyle(this.style.cramp())}havingSize(t){return this.size===t&&this.textSize===t?this:this.extend({style:this.style.text(),size:t,textSize:t,sizeMultiplier:Yfn[t-1]})}havingBaseStyle(t){t=t||this.style.text();var r=jfn(CB.BASESIZE,t);return this.size===r&&this.textSize===CB.BASESIZE&&this.style===t?this:this.extend({style:t,size:r})}havingBaseSizing(){var t;switch(this.style.id){case 4:case 5:t=3;break;case 6:case 7:t=1;break;default:t=6}return this.extend({style:this.style.text(),size:t})}withColor(t){return this.extend({color:t})}withPhantom(){return this.extend({phantom:!0})}withFont(t){return this.extend({font:t})}withTextFontFamily(t){return this.extend({fontFamily:t,font:""})}withTextFontWeight(t){return this.extend({fontWeight:t,font:""})}withTextFontShape(t){return this.extend({fontShape:t,font:""})}sizingClasses(t){return t.size!==this.size?["sizing","reset-size"+t.size,"size"+this.size]:[]}baseSizingClasses(){return this.size!==CB.BASESIZE?["sizing","reset-size"+this.size,"size"+CB.BASESIZE]:[]}fontMetrics(){return this._fontMetrics||(this._fontMetrics=P$r(this.size)),this._fontMetrics}getColor(){return this.phantom?"transparent":this.color}};f7n.BASESIZE=6;var _st={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:803/800,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:803/800},F$r={ex:!0,em:!0,mu:!0},p7n=function(t){return typeof t!="string"&&(t=t.unit),t in _st||t in F$r||t==="ex"},kf=function(t,r){var a;if(t.unit in _st)a=_st[t.unit]/r.fontMetrics().ptPerEm/r.sizeMultiplier;else if(t.unit==="mu")a=r.fontMetrics().cssEmPerMu;else{var s;if(r.style.isTight()?s=r.havingStyle(r.style.text()):s=r,t.unit==="ex")a=s.fontMetrics().xHeight;else if(t.unit==="em")a=s.fontMetrics().quad;else throw new Bi("Invalid unit: '"+t.unit+"'");s!==r&&(a*=s.sizeMultiplier/r.sizeMultiplier)}return Math.min(t.number*a,r.maxSize)},Xi=function(t){return+t.toFixed(4)+"em"},zO=function(t){return t.filter(r=>r).join(" ")},g7n=function(t,r,a){if(this.classes=t||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=a||{},r){r.style.isTight()&&this.classes.push("mtight");var s=r.getColor();s&&(this.style.color=s)}},m7n=function(t){var r=document.createElement(t);r.className=zO(this.classes);for(var a in this.style)this.style.hasOwnProperty(a)&&(r.style[a]=this.style[a]);for(var s in this.attributes)this.attributes.hasOwnProperty(s)&&r.setAttribute(s,this.attributes[s]);for(var o=0;o/=\x00-\x1f]/,b7n=function(t){var r="<"+t;this.classes.length&&(r+=' class="'+uu.escape(zO(this.classes))+'"');var a="";for(var s in this.style)this.style.hasOwnProperty(s)&&(a+=uu.hyphenate(s)+":"+this.style[s]+";");a&&(r+=' style="'+uu.escape(a)+'"');for(var o in this.attributes)if(this.attributes.hasOwnProperty(o)){if($$r.test(o))throw new Bi("Invalid attribute name '"+o+"'");r+=" "+o+'="'+uu.escape(this.attributes[o])+'"'}r+=">";for(var u=0;u",r};let $le=class{constructor(t,r,a,s){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,g7n.call(this,t,a,s),this.children=r||[]}setAttribute(t,r){this.attributes[t]=r}hasClass(t){return this.classes.includes(t)}toNode(){return m7n.call(this,"span")}toMarkup(){return b7n.call(this,"span")}},rft=class{constructor(t,r,a,s){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,g7n.call(this,r,s),this.children=a||[],this.setAttribute("href",t)}setAttribute(t,r){this.attributes[t]=r}hasClass(t){return this.classes.includes(t)}toNode(){return m7n.call(this,"a")}toMarkup(){return b7n.call(this,"a")}},U$r=class{constructor(t,r,a){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=r,this.src=t,this.classes=["mord"],this.style=a}hasClass(t){return this.classes.includes(t)}toNode(){var t=document.createElement("img");t.src=this.src,t.alt=this.alt,t.className="mord";for(var r in this.style)this.style.hasOwnProperty(r)&&(t.style[r]=this.style[r]);return t}toMarkup(){var t=''+uu.escape(this.alt)+'0&&(r=document.createElement("span"),r.style.marginRight=Xi(this.italic)),this.classes.length>0&&(r=r||document.createElement("span"),r.className=zO(this.classes));for(var a in this.style)this.style.hasOwnProperty(a)&&(r=r||document.createElement("span"),r.style[a]=this.style[a]);return r?(r.appendChild(t),r):t}toMarkup(){var t=!1,r="0&&(a+="margin-right:"+this.italic+"em;");for(var s in this.style)this.style.hasOwnProperty(s)&&(a+=uu.hyphenate(s)+":"+this.style[s]+";");a&&(t=!0,r+=' style="'+uu.escape(a)+'"');var o=uu.escape(this.text);return t?(r+=">",r+=o,r+="",r):o}},X7=class{constructor(t,r){this.children=void 0,this.attributes=void 0,this.children=t||[],this.attributes=r||{}}toNode(){var t="http://www.w3.org/2000/svg",r=document.createElementNS(t,"svg");for(var a in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,a)&&r.setAttribute(a,this.attributes[a]);for(var s=0;s':''}},wst=class{constructor(t){this.attributes=void 0,this.attributes=t||{}}toNode(){var t="http://www.w3.org/2000/svg",r=document.createElementNS(t,"line");for(var a in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,a)&&r.setAttribute(a,this.attributes[a]);return r}toMarkup(){var t=" but got "+String(e)+".")}var q$r={bin:1,close:1,inner:1,open:1,punct:1,rel:1},H$r={"accent-token":1,mathord:1,"op-token":1,spacing:1,textord:1},ed={math:{},text:{}};function ke(e,t,r,a,s,o){ed[e][s]={font:t,group:r,replace:a},o&&a&&(ed[e][a]=ed[e][s])}var Pe="math",hi="text",nt="main",jt="ams",Kd="accent-token",Na="bin",pv="close",EW="inner",Xs="mathord",L1="op-token",Vw="open",W5e="punct",en="rel",gR="spacing",Sn="textord";ke(Pe,nt,en,"≡","\\equiv",!0);ke(Pe,nt,en,"≺","\\prec",!0);ke(Pe,nt,en,"≻","\\succ",!0);ke(Pe,nt,en,"∼","\\sim",!0);ke(Pe,nt,en,"⊥","\\perp");ke(Pe,nt,en,"⪯","\\preceq",!0);ke(Pe,nt,en,"⪰","\\succeq",!0);ke(Pe,nt,en,"≃","\\simeq",!0);ke(Pe,nt,en,"∣","\\mid",!0);ke(Pe,nt,en,"≪","\\ll",!0);ke(Pe,nt,en,"≫","\\gg",!0);ke(Pe,nt,en,"≍","\\asymp",!0);ke(Pe,nt,en,"∥","\\parallel");ke(Pe,nt,en,"⋈","\\bowtie",!0);ke(Pe,nt,en,"⌣","\\smile",!0);ke(Pe,nt,en,"⊑","\\sqsubseteq",!0);ke(Pe,nt,en,"⊒","\\sqsupseteq",!0);ke(Pe,nt,en,"≐","\\doteq",!0);ke(Pe,nt,en,"⌢","\\frown",!0);ke(Pe,nt,en,"∋","\\ni",!0);ke(Pe,nt,en,"∝","\\propto",!0);ke(Pe,nt,en,"⊢","\\vdash",!0);ke(Pe,nt,en,"⊣","\\dashv",!0);ke(Pe,nt,en,"∋","\\owns");ke(Pe,nt,W5e,".","\\ldotp");ke(Pe,nt,W5e,"⋅","\\cdotp");ke(Pe,nt,Sn,"#","\\#");ke(hi,nt,Sn,"#","\\#");ke(Pe,nt,Sn,"&","\\&");ke(hi,nt,Sn,"&","\\&");ke(Pe,nt,Sn,"ℵ","\\aleph",!0);ke(Pe,nt,Sn,"∀","\\forall",!0);ke(Pe,nt,Sn,"ℏ","\\hbar",!0);ke(Pe,nt,Sn,"∃","\\exists",!0);ke(Pe,nt,Sn,"∇","\\nabla",!0);ke(Pe,nt,Sn,"♭","\\flat",!0);ke(Pe,nt,Sn,"ℓ","\\ell",!0);ke(Pe,nt,Sn,"♮","\\natural",!0);ke(Pe,nt,Sn,"♣","\\clubsuit",!0);ke(Pe,nt,Sn,"℘","\\wp",!0);ke(Pe,nt,Sn,"♯","\\sharp",!0);ke(Pe,nt,Sn,"♢","\\diamondsuit",!0);ke(Pe,nt,Sn,"ℜ","\\Re",!0);ke(Pe,nt,Sn,"♡","\\heartsuit",!0);ke(Pe,nt,Sn,"ℑ","\\Im",!0);ke(Pe,nt,Sn,"♠","\\spadesuit",!0);ke(Pe,nt,Sn,"§","\\S",!0);ke(hi,nt,Sn,"§","\\S");ke(Pe,nt,Sn,"¶","\\P",!0);ke(hi,nt,Sn,"¶","\\P");ke(Pe,nt,Sn,"†","\\dag");ke(hi,nt,Sn,"†","\\dag");ke(hi,nt,Sn,"†","\\textdagger");ke(Pe,nt,Sn,"‡","\\ddag");ke(hi,nt,Sn,"‡","\\ddag");ke(hi,nt,Sn,"‡","\\textdaggerdbl");ke(Pe,nt,pv,"⎱","\\rmoustache",!0);ke(Pe,nt,Vw,"⎰","\\lmoustache",!0);ke(Pe,nt,pv,"⟯","\\rgroup",!0);ke(Pe,nt,Vw,"⟮","\\lgroup",!0);ke(Pe,nt,Na,"∓","\\mp",!0);ke(Pe,nt,Na,"⊖","\\ominus",!0);ke(Pe,nt,Na,"⊎","\\uplus",!0);ke(Pe,nt,Na,"⊓","\\sqcap",!0);ke(Pe,nt,Na,"∗","\\ast");ke(Pe,nt,Na,"⊔","\\sqcup",!0);ke(Pe,nt,Na,"◯","\\bigcirc",!0);ke(Pe,nt,Na,"∙","\\bullet",!0);ke(Pe,nt,Na,"‡","\\ddagger");ke(Pe,nt,Na,"≀","\\wr",!0);ke(Pe,nt,Na,"⨿","\\amalg");ke(Pe,nt,Na,"&","\\And");ke(Pe,nt,en,"⟵","\\longleftarrow",!0);ke(Pe,nt,en,"⇐","\\Leftarrow",!0);ke(Pe,nt,en,"⟸","\\Longleftarrow",!0);ke(Pe,nt,en,"⟶","\\longrightarrow",!0);ke(Pe,nt,en,"⇒","\\Rightarrow",!0);ke(Pe,nt,en,"⟹","\\Longrightarrow",!0);ke(Pe,nt,en,"↔","\\leftrightarrow",!0);ke(Pe,nt,en,"⟷","\\longleftrightarrow",!0);ke(Pe,nt,en,"⇔","\\Leftrightarrow",!0);ke(Pe,nt,en,"⟺","\\Longleftrightarrow",!0);ke(Pe,nt,en,"↦","\\mapsto",!0);ke(Pe,nt,en,"⟼","\\longmapsto",!0);ke(Pe,nt,en,"↗","\\nearrow",!0);ke(Pe,nt,en,"↩","\\hookleftarrow",!0);ke(Pe,nt,en,"↪","\\hookrightarrow",!0);ke(Pe,nt,en,"↘","\\searrow",!0);ke(Pe,nt,en,"↼","\\leftharpoonup",!0);ke(Pe,nt,en,"⇀","\\rightharpoonup",!0);ke(Pe,nt,en,"↙","\\swarrow",!0);ke(Pe,nt,en,"↽","\\leftharpoondown",!0);ke(Pe,nt,en,"⇁","\\rightharpoondown",!0);ke(Pe,nt,en,"↖","\\nwarrow",!0);ke(Pe,nt,en,"⇌","\\rightleftharpoons",!0);ke(Pe,jt,en,"≮","\\nless",!0);ke(Pe,jt,en,"","\\@nleqslant");ke(Pe,jt,en,"","\\@nleqq");ke(Pe,jt,en,"⪇","\\lneq",!0);ke(Pe,jt,en,"≨","\\lneqq",!0);ke(Pe,jt,en,"","\\@lvertneqq");ke(Pe,jt,en,"⋦","\\lnsim",!0);ke(Pe,jt,en,"⪉","\\lnapprox",!0);ke(Pe,jt,en,"⊀","\\nprec",!0);ke(Pe,jt,en,"⋠","\\npreceq",!0);ke(Pe,jt,en,"⋨","\\precnsim",!0);ke(Pe,jt,en,"⪹","\\precnapprox",!0);ke(Pe,jt,en,"≁","\\nsim",!0);ke(Pe,jt,en,"","\\@nshortmid");ke(Pe,jt,en,"∤","\\nmid",!0);ke(Pe,jt,en,"⊬","\\nvdash",!0);ke(Pe,jt,en,"⊭","\\nvDash",!0);ke(Pe,jt,en,"⋪","\\ntriangleleft");ke(Pe,jt,en,"⋬","\\ntrianglelefteq",!0);ke(Pe,jt,en,"⊊","\\subsetneq",!0);ke(Pe,jt,en,"","\\@varsubsetneq");ke(Pe,jt,en,"⫋","\\subsetneqq",!0);ke(Pe,jt,en,"","\\@varsubsetneqq");ke(Pe,jt,en,"≯","\\ngtr",!0);ke(Pe,jt,en,"","\\@ngeqslant");ke(Pe,jt,en,"","\\@ngeqq");ke(Pe,jt,en,"⪈","\\gneq",!0);ke(Pe,jt,en,"≩","\\gneqq",!0);ke(Pe,jt,en,"","\\@gvertneqq");ke(Pe,jt,en,"⋧","\\gnsim",!0);ke(Pe,jt,en,"⪊","\\gnapprox",!0);ke(Pe,jt,en,"⊁","\\nsucc",!0);ke(Pe,jt,en,"⋡","\\nsucceq",!0);ke(Pe,jt,en,"⋩","\\succnsim",!0);ke(Pe,jt,en,"⪺","\\succnapprox",!0);ke(Pe,jt,en,"≆","\\ncong",!0);ke(Pe,jt,en,"","\\@nshortparallel");ke(Pe,jt,en,"∦","\\nparallel",!0);ke(Pe,jt,en,"⊯","\\nVDash",!0);ke(Pe,jt,en,"⋫","\\ntriangleright");ke(Pe,jt,en,"⋭","\\ntrianglerighteq",!0);ke(Pe,jt,en,"","\\@nsupseteqq");ke(Pe,jt,en,"⊋","\\supsetneq",!0);ke(Pe,jt,en,"","\\@varsupsetneq");ke(Pe,jt,en,"⫌","\\supsetneqq",!0);ke(Pe,jt,en,"","\\@varsupsetneqq");ke(Pe,jt,en,"⊮","\\nVdash",!0);ke(Pe,jt,en,"⪵","\\precneqq",!0);ke(Pe,jt,en,"⪶","\\succneqq",!0);ke(Pe,jt,en,"","\\@nsubseteqq");ke(Pe,jt,Na,"⊴","\\unlhd");ke(Pe,jt,Na,"⊵","\\unrhd");ke(Pe,jt,en,"↚","\\nleftarrow",!0);ke(Pe,jt,en,"↛","\\nrightarrow",!0);ke(Pe,jt,en,"⇍","\\nLeftarrow",!0);ke(Pe,jt,en,"⇏","\\nRightarrow",!0);ke(Pe,jt,en,"↮","\\nleftrightarrow",!0);ke(Pe,jt,en,"⇎","\\nLeftrightarrow",!0);ke(Pe,jt,en,"△","\\vartriangle");ke(Pe,jt,Sn,"ℏ","\\hslash");ke(Pe,jt,Sn,"▽","\\triangledown");ke(Pe,jt,Sn,"◊","\\lozenge");ke(Pe,jt,Sn,"Ⓢ","\\circledS");ke(Pe,jt,Sn,"®","\\circledR");ke(hi,jt,Sn,"®","\\circledR");ke(Pe,jt,Sn,"∡","\\measuredangle",!0);ke(Pe,jt,Sn,"∄","\\nexists");ke(Pe,jt,Sn,"℧","\\mho");ke(Pe,jt,Sn,"Ⅎ","\\Finv",!0);ke(Pe,jt,Sn,"⅁","\\Game",!0);ke(Pe,jt,Sn,"‵","\\backprime");ke(Pe,jt,Sn,"▲","\\blacktriangle");ke(Pe,jt,Sn,"▼","\\blacktriangledown");ke(Pe,jt,Sn,"■","\\blacksquare");ke(Pe,jt,Sn,"⧫","\\blacklozenge");ke(Pe,jt,Sn,"★","\\bigstar");ke(Pe,jt,Sn,"∢","\\sphericalangle",!0);ke(Pe,jt,Sn,"∁","\\complement",!0);ke(Pe,jt,Sn,"ð","\\eth",!0);ke(hi,nt,Sn,"ð","ð");ke(Pe,jt,Sn,"╱","\\diagup");ke(Pe,jt,Sn,"╲","\\diagdown");ke(Pe,jt,Sn,"□","\\square");ke(Pe,jt,Sn,"□","\\Box");ke(Pe,jt,Sn,"◊","\\Diamond");ke(Pe,jt,Sn,"¥","\\yen",!0);ke(hi,jt,Sn,"¥","\\yen",!0);ke(Pe,jt,Sn,"✓","\\checkmark",!0);ke(hi,jt,Sn,"✓","\\checkmark");ke(Pe,jt,Sn,"ℶ","\\beth",!0);ke(Pe,jt,Sn,"ℸ","\\daleth",!0);ke(Pe,jt,Sn,"ℷ","\\gimel",!0);ke(Pe,jt,Sn,"ϝ","\\digamma",!0);ke(Pe,jt,Sn,"ϰ","\\varkappa");ke(Pe,jt,Vw,"┌","\\@ulcorner",!0);ke(Pe,jt,pv,"┐","\\@urcorner",!0);ke(Pe,jt,Vw,"└","\\@llcorner",!0);ke(Pe,jt,pv,"┘","\\@lrcorner",!0);ke(Pe,jt,en,"≦","\\leqq",!0);ke(Pe,jt,en,"⩽","\\leqslant",!0);ke(Pe,jt,en,"⪕","\\eqslantless",!0);ke(Pe,jt,en,"≲","\\lesssim",!0);ke(Pe,jt,en,"⪅","\\lessapprox",!0);ke(Pe,jt,en,"≊","\\approxeq",!0);ke(Pe,jt,Na,"⋖","\\lessdot");ke(Pe,jt,en,"⋘","\\lll",!0);ke(Pe,jt,en,"≶","\\lessgtr",!0);ke(Pe,jt,en,"⋚","\\lesseqgtr",!0);ke(Pe,jt,en,"⪋","\\lesseqqgtr",!0);ke(Pe,jt,en,"≑","\\doteqdot");ke(Pe,jt,en,"≓","\\risingdotseq",!0);ke(Pe,jt,en,"≒","\\fallingdotseq",!0);ke(Pe,jt,en,"∽","\\backsim",!0);ke(Pe,jt,en,"⋍","\\backsimeq",!0);ke(Pe,jt,en,"⫅","\\subseteqq",!0);ke(Pe,jt,en,"⋐","\\Subset",!0);ke(Pe,jt,en,"⊏","\\sqsubset",!0);ke(Pe,jt,en,"≼","\\preccurlyeq",!0);ke(Pe,jt,en,"⋞","\\curlyeqprec",!0);ke(Pe,jt,en,"≾","\\precsim",!0);ke(Pe,jt,en,"⪷","\\precapprox",!0);ke(Pe,jt,en,"⊲","\\vartriangleleft");ke(Pe,jt,en,"⊴","\\trianglelefteq");ke(Pe,jt,en,"⊨","\\vDash",!0);ke(Pe,jt,en,"⊪","\\Vvdash",!0);ke(Pe,jt,en,"⌣","\\smallsmile");ke(Pe,jt,en,"⌢","\\smallfrown");ke(Pe,jt,en,"≏","\\bumpeq",!0);ke(Pe,jt,en,"≎","\\Bumpeq",!0);ke(Pe,jt,en,"≧","\\geqq",!0);ke(Pe,jt,en,"⩾","\\geqslant",!0);ke(Pe,jt,en,"⪖","\\eqslantgtr",!0);ke(Pe,jt,en,"≳","\\gtrsim",!0);ke(Pe,jt,en,"⪆","\\gtrapprox",!0);ke(Pe,jt,Na,"⋗","\\gtrdot");ke(Pe,jt,en,"⋙","\\ggg",!0);ke(Pe,jt,en,"≷","\\gtrless",!0);ke(Pe,jt,en,"⋛","\\gtreqless",!0);ke(Pe,jt,en,"⪌","\\gtreqqless",!0);ke(Pe,jt,en,"≖","\\eqcirc",!0);ke(Pe,jt,en,"≗","\\circeq",!0);ke(Pe,jt,en,"≜","\\triangleq",!0);ke(Pe,jt,en,"∼","\\thicksim");ke(Pe,jt,en,"≈","\\thickapprox");ke(Pe,jt,en,"⫆","\\supseteqq",!0);ke(Pe,jt,en,"⋑","\\Supset",!0);ke(Pe,jt,en,"⊐","\\sqsupset",!0);ke(Pe,jt,en,"≽","\\succcurlyeq",!0);ke(Pe,jt,en,"⋟","\\curlyeqsucc",!0);ke(Pe,jt,en,"≿","\\succsim",!0);ke(Pe,jt,en,"⪸","\\succapprox",!0);ke(Pe,jt,en,"⊳","\\vartriangleright");ke(Pe,jt,en,"⊵","\\trianglerighteq");ke(Pe,jt,en,"⊩","\\Vdash",!0);ke(Pe,jt,en,"∣","\\shortmid");ke(Pe,jt,en,"∥","\\shortparallel");ke(Pe,jt,en,"≬","\\between",!0);ke(Pe,jt,en,"⋔","\\pitchfork",!0);ke(Pe,jt,en,"∝","\\varpropto");ke(Pe,jt,en,"◀","\\blacktriangleleft");ke(Pe,jt,en,"∴","\\therefore",!0);ke(Pe,jt,en,"∍","\\backepsilon");ke(Pe,jt,en,"▶","\\blacktriangleright");ke(Pe,jt,en,"∵","\\because",!0);ke(Pe,jt,en,"⋘","\\llless");ke(Pe,jt,en,"⋙","\\gggtr");ke(Pe,jt,Na,"⊲","\\lhd");ke(Pe,jt,Na,"⊳","\\rhd");ke(Pe,jt,en,"≂","\\eqsim",!0);ke(Pe,nt,en,"⋈","\\Join");ke(Pe,jt,en,"≑","\\Doteq",!0);ke(Pe,jt,Na,"∔","\\dotplus",!0);ke(Pe,jt,Na,"∖","\\smallsetminus");ke(Pe,jt,Na,"⋒","\\Cap",!0);ke(Pe,jt,Na,"⋓","\\Cup",!0);ke(Pe,jt,Na,"⩞","\\doublebarwedge",!0);ke(Pe,jt,Na,"⊟","\\boxminus",!0);ke(Pe,jt,Na,"⊞","\\boxplus",!0);ke(Pe,jt,Na,"⋇","\\divideontimes",!0);ke(Pe,jt,Na,"⋉","\\ltimes",!0);ke(Pe,jt,Na,"⋊","\\rtimes",!0);ke(Pe,jt,Na,"⋋","\\leftthreetimes",!0);ke(Pe,jt,Na,"⋌","\\rightthreetimes",!0);ke(Pe,jt,Na,"⋏","\\curlywedge",!0);ke(Pe,jt,Na,"⋎","\\curlyvee",!0);ke(Pe,jt,Na,"⊝","\\circleddash",!0);ke(Pe,jt,Na,"⊛","\\circledast",!0);ke(Pe,jt,Na,"⋅","\\centerdot");ke(Pe,jt,Na,"⊺","\\intercal",!0);ke(Pe,jt,Na,"⋒","\\doublecap");ke(Pe,jt,Na,"⋓","\\doublecup");ke(Pe,jt,Na,"⊠","\\boxtimes",!0);ke(Pe,jt,en,"⇢","\\dashrightarrow",!0);ke(Pe,jt,en,"⇠","\\dashleftarrow",!0);ke(Pe,jt,en,"⇇","\\leftleftarrows",!0);ke(Pe,jt,en,"⇆","\\leftrightarrows",!0);ke(Pe,jt,en,"⇚","\\Lleftarrow",!0);ke(Pe,jt,en,"↞","\\twoheadleftarrow",!0);ke(Pe,jt,en,"↢","\\leftarrowtail",!0);ke(Pe,jt,en,"↫","\\looparrowleft",!0);ke(Pe,jt,en,"⇋","\\leftrightharpoons",!0);ke(Pe,jt,en,"↶","\\curvearrowleft",!0);ke(Pe,jt,en,"↺","\\circlearrowleft",!0);ke(Pe,jt,en,"↰","\\Lsh",!0);ke(Pe,jt,en,"⇈","\\upuparrows",!0);ke(Pe,jt,en,"↿","\\upharpoonleft",!0);ke(Pe,jt,en,"⇃","\\downharpoonleft",!0);ke(Pe,nt,en,"⊶","\\origof",!0);ke(Pe,nt,en,"⊷","\\imageof",!0);ke(Pe,jt,en,"⊸","\\multimap",!0);ke(Pe,jt,en,"↭","\\leftrightsquigarrow",!0);ke(Pe,jt,en,"⇉","\\rightrightarrows",!0);ke(Pe,jt,en,"⇄","\\rightleftarrows",!0);ke(Pe,jt,en,"↠","\\twoheadrightarrow",!0);ke(Pe,jt,en,"↣","\\rightarrowtail",!0);ke(Pe,jt,en,"↬","\\looparrowright",!0);ke(Pe,jt,en,"↷","\\curvearrowright",!0);ke(Pe,jt,en,"↻","\\circlearrowright",!0);ke(Pe,jt,en,"↱","\\Rsh",!0);ke(Pe,jt,en,"⇊","\\downdownarrows",!0);ke(Pe,jt,en,"↾","\\upharpoonright",!0);ke(Pe,jt,en,"⇂","\\downharpoonright",!0);ke(Pe,jt,en,"⇝","\\rightsquigarrow",!0);ke(Pe,jt,en,"⇝","\\leadsto");ke(Pe,jt,en,"⇛","\\Rrightarrow",!0);ke(Pe,jt,en,"↾","\\restriction");ke(Pe,nt,Sn,"‘","`");ke(Pe,nt,Sn,"$","\\$");ke(hi,nt,Sn,"$","\\$");ke(hi,nt,Sn,"$","\\textdollar");ke(Pe,nt,Sn,"%","\\%");ke(hi,nt,Sn,"%","\\%");ke(Pe,nt,Sn,"_","\\_");ke(hi,nt,Sn,"_","\\_");ke(hi,nt,Sn,"_","\\textunderscore");ke(Pe,nt,Sn,"∠","\\angle",!0);ke(Pe,nt,Sn,"∞","\\infty",!0);ke(Pe,nt,Sn,"′","\\prime");ke(Pe,nt,Sn,"△","\\triangle");ke(Pe,nt,Sn,"Γ","\\Gamma",!0);ke(Pe,nt,Sn,"Δ","\\Delta",!0);ke(Pe,nt,Sn,"Θ","\\Theta",!0);ke(Pe,nt,Sn,"Λ","\\Lambda",!0);ke(Pe,nt,Sn,"Ξ","\\Xi",!0);ke(Pe,nt,Sn,"Π","\\Pi",!0);ke(Pe,nt,Sn,"Σ","\\Sigma",!0);ke(Pe,nt,Sn,"Υ","\\Upsilon",!0);ke(Pe,nt,Sn,"Φ","\\Phi",!0);ke(Pe,nt,Sn,"Ψ","\\Psi",!0);ke(Pe,nt,Sn,"Ω","\\Omega",!0);ke(Pe,nt,Sn,"A","Α");ke(Pe,nt,Sn,"B","Β");ke(Pe,nt,Sn,"E","Ε");ke(Pe,nt,Sn,"Z","Ζ");ke(Pe,nt,Sn,"H","Η");ke(Pe,nt,Sn,"I","Ι");ke(Pe,nt,Sn,"K","Κ");ke(Pe,nt,Sn,"M","Μ");ke(Pe,nt,Sn,"N","Ν");ke(Pe,nt,Sn,"O","Ο");ke(Pe,nt,Sn,"P","Ρ");ke(Pe,nt,Sn,"T","Τ");ke(Pe,nt,Sn,"X","Χ");ke(Pe,nt,Sn,"¬","\\neg",!0);ke(Pe,nt,Sn,"¬","\\lnot");ke(Pe,nt,Sn,"⊤","\\top");ke(Pe,nt,Sn,"⊥","\\bot");ke(Pe,nt,Sn,"∅","\\emptyset");ke(Pe,jt,Sn,"∅","\\varnothing");ke(Pe,nt,Xs,"α","\\alpha",!0);ke(Pe,nt,Xs,"β","\\beta",!0);ke(Pe,nt,Xs,"γ","\\gamma",!0);ke(Pe,nt,Xs,"δ","\\delta",!0);ke(Pe,nt,Xs,"ϵ","\\epsilon",!0);ke(Pe,nt,Xs,"ζ","\\zeta",!0);ke(Pe,nt,Xs,"η","\\eta",!0);ke(Pe,nt,Xs,"θ","\\theta",!0);ke(Pe,nt,Xs,"ι","\\iota",!0);ke(Pe,nt,Xs,"κ","\\kappa",!0);ke(Pe,nt,Xs,"λ","\\lambda",!0);ke(Pe,nt,Xs,"μ","\\mu",!0);ke(Pe,nt,Xs,"ν","\\nu",!0);ke(Pe,nt,Xs,"ξ","\\xi",!0);ke(Pe,nt,Xs,"ο","\\omicron",!0);ke(Pe,nt,Xs,"π","\\pi",!0);ke(Pe,nt,Xs,"ρ","\\rho",!0);ke(Pe,nt,Xs,"σ","\\sigma",!0);ke(Pe,nt,Xs,"τ","\\tau",!0);ke(Pe,nt,Xs,"υ","\\upsilon",!0);ke(Pe,nt,Xs,"ϕ","\\phi",!0);ke(Pe,nt,Xs,"χ","\\chi",!0);ke(Pe,nt,Xs,"ψ","\\psi",!0);ke(Pe,nt,Xs,"ω","\\omega",!0);ke(Pe,nt,Xs,"ε","\\varepsilon",!0);ke(Pe,nt,Xs,"ϑ","\\vartheta",!0);ke(Pe,nt,Xs,"ϖ","\\varpi",!0);ke(Pe,nt,Xs,"ϱ","\\varrho",!0);ke(Pe,nt,Xs,"ς","\\varsigma",!0);ke(Pe,nt,Xs,"φ","\\varphi",!0);ke(Pe,nt,Na,"∗","*",!0);ke(Pe,nt,Na,"+","+");ke(Pe,nt,Na,"−","-",!0);ke(Pe,nt,Na,"⋅","\\cdot",!0);ke(Pe,nt,Na,"∘","\\circ",!0);ke(Pe,nt,Na,"÷","\\div",!0);ke(Pe,nt,Na,"±","\\pm",!0);ke(Pe,nt,Na,"×","\\times",!0);ke(Pe,nt,Na,"∩","\\cap",!0);ke(Pe,nt,Na,"∪","\\cup",!0);ke(Pe,nt,Na,"∖","\\setminus",!0);ke(Pe,nt,Na,"∧","\\land");ke(Pe,nt,Na,"∨","\\lor");ke(Pe,nt,Na,"∧","\\wedge",!0);ke(Pe,nt,Na,"∨","\\vee",!0);ke(Pe,nt,Sn,"√","\\surd");ke(Pe,nt,Vw,"⟨","\\langle",!0);ke(Pe,nt,Vw,"∣","\\lvert");ke(Pe,nt,Vw,"∥","\\lVert");ke(Pe,nt,pv,"?","?");ke(Pe,nt,pv,"!","!");ke(Pe,nt,pv,"⟩","\\rangle",!0);ke(Pe,nt,pv,"∣","\\rvert");ke(Pe,nt,pv,"∥","\\rVert");ke(Pe,nt,en,"=","=");ke(Pe,nt,en,":",":");ke(Pe,nt,en,"≈","\\approx",!0);ke(Pe,nt,en,"≅","\\cong",!0);ke(Pe,nt,en,"≥","\\ge");ke(Pe,nt,en,"≥","\\geq",!0);ke(Pe,nt,en,"←","\\gets");ke(Pe,nt,en,">","\\gt",!0);ke(Pe,nt,en,"∈","\\in",!0);ke(Pe,nt,en,"","\\@not");ke(Pe,nt,en,"⊂","\\subset",!0);ke(Pe,nt,en,"⊃","\\supset",!0);ke(Pe,nt,en,"⊆","\\subseteq",!0);ke(Pe,nt,en,"⊇","\\supseteq",!0);ke(Pe,jt,en,"⊈","\\nsubseteq",!0);ke(Pe,jt,en,"⊉","\\nsupseteq",!0);ke(Pe,nt,en,"⊨","\\models");ke(Pe,nt,en,"←","\\leftarrow",!0);ke(Pe,nt,en,"≤","\\le");ke(Pe,nt,en,"≤","\\leq",!0);ke(Pe,nt,en,"<","\\lt",!0);ke(Pe,nt,en,"→","\\rightarrow",!0);ke(Pe,nt,en,"→","\\to");ke(Pe,jt,en,"≱","\\ngeq",!0);ke(Pe,jt,en,"≰","\\nleq",!0);ke(Pe,nt,gR," ","\\ ");ke(Pe,nt,gR," ","\\space");ke(Pe,nt,gR," ","\\nobreakspace");ke(hi,nt,gR," ","\\ ");ke(hi,nt,gR," "," ");ke(hi,nt,gR," ","\\space");ke(hi,nt,gR," ","\\nobreakspace");ke(Pe,nt,gR,null,"\\nobreak");ke(Pe,nt,gR,null,"\\allowbreak");ke(Pe,nt,W5e,",",",");ke(Pe,nt,W5e,";",";");ke(Pe,jt,Na,"⊼","\\barwedge",!0);ke(Pe,jt,Na,"⊻","\\veebar",!0);ke(Pe,nt,Na,"⊙","\\odot",!0);ke(Pe,nt,Na,"⊕","\\oplus",!0);ke(Pe,nt,Na,"⊗","\\otimes",!0);ke(Pe,nt,Sn,"∂","\\partial",!0);ke(Pe,nt,Na,"⊘","\\oslash",!0);ke(Pe,jt,Na,"⊚","\\circledcirc",!0);ke(Pe,jt,Na,"⊡","\\boxdot",!0);ke(Pe,nt,Na,"△","\\bigtriangleup");ke(Pe,nt,Na,"▽","\\bigtriangledown");ke(Pe,nt,Na,"†","\\dagger");ke(Pe,nt,Na,"⋄","\\diamond");ke(Pe,nt,Na,"⋆","\\star");ke(Pe,nt,Na,"◃","\\triangleleft");ke(Pe,nt,Na,"▹","\\triangleright");ke(Pe,nt,Vw,"{","\\{");ke(hi,nt,Sn,"{","\\{");ke(hi,nt,Sn,"{","\\textbraceleft");ke(Pe,nt,pv,"}","\\}");ke(hi,nt,Sn,"}","\\}");ke(hi,nt,Sn,"}","\\textbraceright");ke(Pe,nt,Vw,"{","\\lbrace");ke(Pe,nt,pv,"}","\\rbrace");ke(Pe,nt,Vw,"[","\\lbrack",!0);ke(hi,nt,Sn,"[","\\lbrack",!0);ke(Pe,nt,pv,"]","\\rbrack",!0);ke(hi,nt,Sn,"]","\\rbrack",!0);ke(Pe,nt,Vw,"(","\\lparen",!0);ke(Pe,nt,pv,")","\\rparen",!0);ke(hi,nt,Sn,"<","\\textless",!0);ke(hi,nt,Sn,">","\\textgreater",!0);ke(Pe,nt,Vw,"⌊","\\lfloor",!0);ke(Pe,nt,pv,"⌋","\\rfloor",!0);ke(Pe,nt,Vw,"⌈","\\lceil",!0);ke(Pe,nt,pv,"⌉","\\rceil",!0);ke(Pe,nt,Sn,"\\","\\backslash");ke(Pe,nt,Sn,"∣","|");ke(Pe,nt,Sn,"∣","\\vert");ke(hi,nt,Sn,"|","\\textbar",!0);ke(Pe,nt,Sn,"∥","\\|");ke(Pe,nt,Sn,"∥","\\Vert");ke(hi,nt,Sn,"∥","\\textbardbl");ke(hi,nt,Sn,"~","\\textasciitilde");ke(hi,nt,Sn,"\\","\\textbackslash");ke(hi,nt,Sn,"^","\\textasciicircum");ke(Pe,nt,en,"↑","\\uparrow",!0);ke(Pe,nt,en,"⇑","\\Uparrow",!0);ke(Pe,nt,en,"↓","\\downarrow",!0);ke(Pe,nt,en,"⇓","\\Downarrow",!0);ke(Pe,nt,en,"↕","\\updownarrow",!0);ke(Pe,nt,en,"⇕","\\Updownarrow",!0);ke(Pe,nt,L1,"∐","\\coprod");ke(Pe,nt,L1,"⋁","\\bigvee");ke(Pe,nt,L1,"⋀","\\bigwedge");ke(Pe,nt,L1,"⨄","\\biguplus");ke(Pe,nt,L1,"⋂","\\bigcap");ke(Pe,nt,L1,"⋃","\\bigcup");ke(Pe,nt,L1,"∫","\\int");ke(Pe,nt,L1,"∫","\\intop");ke(Pe,nt,L1,"∬","\\iint");ke(Pe,nt,L1,"∭","\\iiint");ke(Pe,nt,L1,"∏","\\prod");ke(Pe,nt,L1,"∑","\\sum");ke(Pe,nt,L1,"⨂","\\bigotimes");ke(Pe,nt,L1,"⨁","\\bigoplus");ke(Pe,nt,L1,"⨀","\\bigodot");ke(Pe,nt,L1,"∮","\\oint");ke(Pe,nt,L1,"∯","\\oiint");ke(Pe,nt,L1,"∰","\\oiiint");ke(Pe,nt,L1,"⨆","\\bigsqcup");ke(Pe,nt,L1,"∫","\\smallint");ke(hi,nt,EW,"…","\\textellipsis");ke(Pe,nt,EW,"…","\\mathellipsis");ke(hi,nt,EW,"…","\\ldots",!0);ke(Pe,nt,EW,"…","\\ldots",!0);ke(Pe,nt,EW,"⋯","\\@cdots",!0);ke(Pe,nt,EW,"⋱","\\ddots",!0);ke(Pe,nt,Sn,"⋮","\\varvdots");ke(hi,nt,Sn,"⋮","\\varvdots");ke(Pe,nt,Kd,"ˊ","\\acute");ke(Pe,nt,Kd,"ˋ","\\grave");ke(Pe,nt,Kd,"¨","\\ddot");ke(Pe,nt,Kd,"~","\\tilde");ke(Pe,nt,Kd,"ˉ","\\bar");ke(Pe,nt,Kd,"˘","\\breve");ke(Pe,nt,Kd,"ˇ","\\check");ke(Pe,nt,Kd,"^","\\hat");ke(Pe,nt,Kd,"⃗","\\vec");ke(Pe,nt,Kd,"˙","\\dot");ke(Pe,nt,Kd,"˚","\\mathring");ke(Pe,nt,Xs,"","\\@imath");ke(Pe,nt,Xs,"","\\@jmath");ke(Pe,nt,Sn,"ı","ı");ke(Pe,nt,Sn,"ȷ","ȷ");ke(hi,nt,Sn,"ı","\\i",!0);ke(hi,nt,Sn,"ȷ","\\j",!0);ke(hi,nt,Sn,"ß","\\ss",!0);ke(hi,nt,Sn,"æ","\\ae",!0);ke(hi,nt,Sn,"œ","\\oe",!0);ke(hi,nt,Sn,"ø","\\o",!0);ke(hi,nt,Sn,"Æ","\\AE",!0);ke(hi,nt,Sn,"Œ","\\OE",!0);ke(hi,nt,Sn,"Ø","\\O",!0);ke(hi,nt,Kd,"ˊ","\\'");ke(hi,nt,Kd,"ˋ","\\`");ke(hi,nt,Kd,"ˆ","\\^");ke(hi,nt,Kd,"˜","\\~");ke(hi,nt,Kd,"ˉ","\\=");ke(hi,nt,Kd,"˘","\\u");ke(hi,nt,Kd,"˙","\\.");ke(hi,nt,Kd,"¸","\\c");ke(hi,nt,Kd,"˚","\\r");ke(hi,nt,Kd,"ˇ","\\v");ke(hi,nt,Kd,"¨",'\\"');ke(hi,nt,Kd,"˝","\\H");ke(hi,nt,Kd,"◯","\\textcircled");var y7n={"--":!0,"---":!0,"``":!0,"''":!0};ke(hi,nt,Sn,"–","--",!0);ke(hi,nt,Sn,"–","\\textendash");ke(hi,nt,Sn,"—","---",!0);ke(hi,nt,Sn,"—","\\textemdash");ke(hi,nt,Sn,"‘","`",!0);ke(hi,nt,Sn,"‘","\\textquoteleft");ke(hi,nt,Sn,"’","'",!0);ke(hi,nt,Sn,"’","\\textquoteright");ke(hi,nt,Sn,"“","``",!0);ke(hi,nt,Sn,"“","\\textquotedblleft");ke(hi,nt,Sn,"”","''",!0);ke(hi,nt,Sn,"”","\\textquotedblright");ke(Pe,nt,Sn,"°","\\degree",!0);ke(hi,nt,Sn,"°","\\degree");ke(hi,nt,Sn,"°","\\textdegree",!0);ke(Pe,nt,Sn,"£","\\pounds");ke(Pe,nt,Sn,"£","\\mathsterling",!0);ke(hi,nt,Sn,"£","\\pounds");ke(hi,nt,Sn,"£","\\textsterling",!0);ke(Pe,jt,Sn,"✠","\\maltese");ke(hi,jt,Sn,"✠","\\maltese");var Kfn='0123456789/@."';for(var MXe=0;MXe0)return R3(o,p,s,r,u.concat(m));if(f){var b,_;if(f==="boldsymbol"){var w=j$r(o,s,r,u,a);b=w.fontName,_=[w.fontClass]}else h?(b=w7n[f].fontName,_=[f]):(b=v_e(f,r.fontWeight,r.fontShape),_=[f,r.fontWeight,r.fontShape]);if(K5e(o,b,s).metrics)return R3(o,b,s,r,u.concat(_));if(y7n.hasOwnProperty(o)&&b.slice(0,10)==="Typewriter"){for(var S=[],C=0;C{if(zO(e.classes)!==zO(t.classes)||e.skew!==t.skew||e.maxFontSize!==t.maxFontSize)return!1;if(e.classes.length===1){var r=e.classes[0];if(r==="mbin"||r==="mord")return!1}for(var a in e.style)if(e.style.hasOwnProperty(a)&&e.style[a]!==t.style[a])return!1;for(var s in t.style)if(t.style.hasOwnProperty(s)&&e.style[s]!==t.style[s])return!1;return!0},X$r=e=>{for(var t=0;tr&&(r=u.height),u.depth>a&&(a=u.depth),u.maxFontSize>s&&(s=u.maxFontSize)}t.height=r,t.depth=a,t.maxFontSize=s},N2=function(t,r,a,s){var o=new $le(t,r,a,s);return ift(o),o},v7n=(e,t,r,a)=>new $le(e,t,r,a),Q$r=function(t,r,a){var s=N2([t],[],r);return s.height=Math.max(a||r.fontMetrics().defaultRuleThickness,r.minRuleThickness),s.style.borderBottomWidth=Xi(s.height),s.maxFontSize=1,s},Z$r=function(t,r,a,s){var o=new rft(t,r,a,s);return ift(o),o},_7n=function(t){var r=new Fle(t);return ift(r),r},J$r=function(t,r){return t instanceof Fle?N2([],[t],r):t},eUr=function(t){if(t.positionType==="individualShift"){for(var r=t.children,a=[r[0]],s=-r[0].shift-r[0].elem.depth,o=s,u=1;u{var r=N2(["mspace"],[],t),a=kf(e,t);return r.style.marginRight=Xi(a),r},v_e=function(t,r,a){var s="";switch(t){case"amsrm":s="AMS";break;case"textrm":s="Main";break;case"textsf":s="SansSerif";break;case"texttt":s="Typewriter";break;default:s=t}var o;return r==="textbf"&&a==="textit"?o="BoldItalic":r==="textbf"?o="Bold":r==="textit"?o="Italic":o="Regular",s+"-"+o},w7n={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathnormal:{variant:"italic",fontName:"Math-Italic"},mathsfit:{variant:"sans-serif-italic",fontName:"SansSerif-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},E7n={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]},rUr=function(t,r){var[a,s,o]=E7n[t],u=new GO(a),h=new X7([u],{width:Xi(s),height:Xi(o),style:"width:"+Xi(s),viewBox:"0 0 "+1e3*s+" "+1e3*o,preserveAspectRatio:"xMinYMin"}),f=v7n(["overlay"],[h],r);return f.height=o,f.style.height=Xi(o),f.style.width=Xi(s),f},Jn={fontMap:w7n,makeSymbol:R3,mathsym:Y$r,makeSpan:N2,makeSvgSpan:v7n,makeLineSpan:Q$r,makeAnchor:Z$r,makeFragment:_7n,wrapFragment:J$r,makeVList:tUr,makeOrd:W$r,makeGlue:nUr,staticSvg:rUr,svgData:E7n,tryCombineChars:X$r},Cf={number:3,unit:"mu"},dB={number:4,unit:"mu"},G6={number:5,unit:"mu"},iUr={mord:{mop:Cf,mbin:dB,mrel:G6,minner:Cf},mop:{mord:Cf,mop:Cf,mrel:G6,minner:Cf},mbin:{mord:dB,mop:dB,mopen:dB,minner:dB},mrel:{mord:G6,mop:G6,mopen:G6,minner:G6},mopen:{},mclose:{mop:Cf,mbin:dB,mrel:G6,minner:Cf},mpunct:{mord:Cf,mop:Cf,mrel:G6,mopen:Cf,mclose:Cf,mpunct:Cf,minner:Cf},minner:{mord:Cf,mop:Cf,mbin:dB,mrel:G6,mopen:Cf,mpunct:Cf,minner:Cf}},aUr={mord:{mop:Cf},mop:{mord:Cf,mop:Cf},mbin:{},mrel:{},mopen:{},mclose:{mop:Cf},mpunct:{},minner:{mop:Cf}},x7n={},DSe={},MSe={};function pa(e){for(var{type:t,names:r,props:a,handler:s,htmlBuilder:o,mathmlBuilder:u}=e,h={type:t,numArgs:a.numArgs,argTypes:a.argTypes,allowedInArgument:!!a.allowedInArgument,allowedInText:!!a.allowedInText,allowedInMath:a.allowedInMath===void 0?!0:a.allowedInMath,numOptionalArgs:a.numOptionalArgs||0,infix:!!a.infix,primitive:!!a.primitive,handler:s},f=0;f{var A=C.classes[0],k=S.classes[0];A==="mbin"&&oUr.includes(k)?C.classes[0]="mord":k==="mbin"&&sUr.includes(A)&&(S.classes[0]="mord")},{node:b},_,w),e0n(o,(S,C)=>{var A=xst(C),k=xst(S),I=A&&k?S.hasClass("mtight")?aUr[A][k]:iUr[A][k]:null;if(I)return Jn.makeGlue(I,p)},{node:b},_,w),o},e0n=function e(t,r,a,s,o){s&&t.push(s);for(var u=0;u_=>{t.splice(b+1,0,_),u++})(u)}s&&t.pop()},S7n=function(t){return t instanceof Fle||t instanceof rft||t instanceof $le&&t.hasClass("enclosing")?t:null},uUr=function e(t,r){var a=S7n(t);if(a){var s=a.children;if(s.length){if(r==="right")return e(s[s.length-1],"right");if(r==="left")return e(s[0],"left")}}return t},xst=function(t,r){return t?(r&&(t=uUr(t,r)),cUr[t.classes[0]]||null):null},Qse=function(t,r){var a=["nulldelimiter"].concat(t.baseSizingClasses());return Q7(r.concat(a))},Yc=function(t,r,a){if(!t)return Q7();if(DSe[t.type]){var s=DSe[t.type](t,r);if(a&&r.size!==a.size){s=Q7(r.sizingClasses(a),[s],r);var o=r.sizeMultiplier/a.sizeMultiplier;s.height*=o,s.depth*=o}return s}else throw new Bi("Got group of unknown type: '"+t.type+"'")};function __e(e,t){var r=Q7(["base"],e,t),a=Q7(["strut"]);return a.style.height=Xi(r.height+r.depth),r.depth&&(a.style.verticalAlign=Xi(-r.depth)),r.children.unshift(a),r}function Sst(e,t){var r=null;e.length===1&&e[0].type==="tag"&&(r=e[0].tag,e=e[0].body);var a=Op(e,t,"root"),s;a.length===2&&a[1].hasClass("tag")&&(s=a.pop());for(var o=[],u=[],h=0;h0&&(o.push(__e(u,t)),u=[]),o.push(a[h]));u.length>0&&o.push(__e(u,t));var p;r?(p=__e(Op(r,t,!0)),p.classes=["tag"],o.push(p)):s&&o.push(s);var m=Q7(["katex-html"],o);if(m.setAttribute("aria-hidden","true"),p){var b=p.children[0];b.style.height=Xi(m.height+m.depth),m.depth&&(b.style.verticalAlign=Xi(-m.depth))}return m}function T7n(e){return new Fle(e)}let Iw=class{constructor(t,r,a){this.type=void 0,this.attributes=void 0,this.children=void 0,this.classes=void 0,this.type=t,this.attributes={},this.children=r||[],this.classes=a||[]}setAttribute(t,r){this.attributes[t]=r}getAttribute(t){return this.attributes[t]}toNode(){var t=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(var r in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,r)&&t.setAttribute(r,this.attributes[r]);this.classes.length>0&&(t.className=zO(this.classes));for(var a=0;a0&&(t+=' class ="'+uu.escape(zO(this.classes))+'"'),t+=">";for(var a=0;a",t}toText(){return this.children.map(t=>t.toText()).join("")}},jC=class{constructor(t){this.text=void 0,this.text=t}toNode(){return document.createTextNode(this.text)}toMarkup(){return uu.escape(this.toText())}toText(){return this.text}},hUr=class{constructor(t){this.width=void 0,this.character=void 0,this.width=t,t>=.05555&&t<=.05556?this.character=" ":t>=.1666&&t<=.1667?this.character=" ":t>=.2222&&t<=.2223?this.character=" ":t>=.2777&&t<=.2778?this.character="  ":t>=-.05556&&t<=-.05555?this.character=" ⁣":t>=-.1667&&t<=-.1666?this.character=" ⁣":t>=-.2223&&t<=-.2222?this.character=" ⁣":t>=-.2778&&t<=-.2777?this.character=" ⁣":this.character=null}toNode(){if(this.character)return document.createTextNode(this.character);var t=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return t.setAttribute("width",Xi(this.width)),t}toMarkup(){return this.character?""+this.character+"":''}toText(){return this.character?this.character:" "}};var xi={MathNode:Iw,TextNode:jC,SpaceNode:hUr,newDocumentFragment:T7n},bS=function(t,r,a){return ed[r][t]&&ed[r][t].replace&&t.charCodeAt(0)!==55349&&!(y7n.hasOwnProperty(t)&&a&&(a.fontFamily&&a.fontFamily.slice(4,6)==="tt"||a.font&&a.font.slice(4,6)==="tt"))&&(t=ed[r][t].replace),new xi.TextNode(t)},aft=function(t){return t.length===1?t[0]:new xi.MathNode("mrow",t)},sft=function(t,r){if(r.fontFamily==="texttt")return"monospace";if(r.fontFamily==="textsf")return r.fontShape==="textit"&&r.fontWeight==="textbf"?"sans-serif-bold-italic":r.fontShape==="textit"?"sans-serif-italic":r.fontWeight==="textbf"?"bold-sans-serif":"sans-serif";if(r.fontShape==="textit"&&r.fontWeight==="textbf")return"bold-italic";if(r.fontShape==="textit")return"italic";if(r.fontWeight==="textbf")return"bold";var a=r.font;if(!a||a==="mathnormal")return null;var s=t.mode;if(a==="mathit")return"italic";if(a==="boldsymbol")return t.type==="textord"?"bold":"bold-italic";if(a==="mathbf")return"bold";if(a==="mathbb")return"double-struck";if(a==="mathsfit")return"sans-serif-italic";if(a==="mathfrak")return"fraktur";if(a==="mathscr"||a==="mathcal")return"script";if(a==="mathsf")return"sans-serif";if(a==="mathtt")return"monospace";var o=t.text;if(["\\imath","\\jmath"].includes(o))return null;ed[s][o]&&ed[s][o].replace&&(o=ed[s][o].replace);var u=Jn.fontMap[a].fontName;return nft(o,u,s)?Jn.fontMap[a].variant:null};function $Xe(e){if(!e)return!1;if(e.type==="mi"&&e.children.length===1){var t=e.children[0];return t instanceof jC&&t.text==="."}else if(e.type==="mo"&&e.children.length===1&&e.getAttribute("separator")==="true"&&e.getAttribute("lspace")==="0em"&&e.getAttribute("rspace")==="0em"){var r=e.children[0];return r instanceof jC&&r.text===","}else return!1}var o_=function(t,r,a){if(t.length===1){var s=Ph(t[0],r);return a&&s instanceof Iw&&s.type==="mo"&&(s.setAttribute("lspace","0em"),s.setAttribute("rspace","0em")),[s]}for(var o=[],u,h=0;h=1&&(u.type==="mn"||$Xe(u))){var p=f.children[0];p instanceof Iw&&p.type==="mn"&&(p.children=[...u.children,...p.children],o.pop())}else if(u.type==="mi"&&u.children.length===1){var m=u.children[0];if(m instanceof jC&&m.text==="̸"&&(f.type==="mo"||f.type==="mi"||f.type==="mn")){var b=f.children[0];b instanceof jC&&b.text.length>0&&(b.text=b.text.slice(0,1)+"̸"+b.text.slice(1),o.pop())}}}o.push(f),u=f}return o},qO=function(t,r,a){return aft(o_(t,r,a))},Ph=function(t,r){if(!t)return new xi.MathNode("mrow");if(MSe[t.type]){var a=MSe[t.type](t,r);return a}else throw new Bi("Got group of unknown type: '"+t.type+"'")};function t0n(e,t,r,a,s){var o=o_(e,r),u;o.length===1&&o[0]instanceof Iw&&["mrow","mtable"].includes(o[0].type)?u=o[0]:u=new xi.MathNode("mrow",o);var h=new xi.MathNode("annotation",[new xi.TextNode(t)]);h.setAttribute("encoding","application/x-tex");var f=new xi.MathNode("semantics",[u,h]),p=new xi.MathNode("math",[f]);p.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML"),a&&p.setAttribute("display","block");var m=s?"katex":"katex-mathml";return Jn.makeSpan([m],[p])}var C7n=function(t){return new f7n({style:t.displayMode?Zs.DISPLAY:Zs.TEXT,maxSize:t.maxSize,minRuleThickness:t.minRuleThickness})},A7n=function(t,r){if(r.displayMode){var a=["katex-display"];r.leqno&&a.push("leqno"),r.fleqn&&a.push("fleqn"),t=Jn.makeSpan(a,[t])}return t},dUr=function(t,r,a){var s=C7n(a),o;if(a.output==="mathml")return t0n(t,r,s,a.displayMode,!0);if(a.output==="html"){var u=Sst(t,s);o=Jn.makeSpan(["katex"],[u])}else{var h=t0n(t,r,s,a.displayMode,!1),f=Sst(t,s);o=Jn.makeSpan(["katex"],[h,f])}return A7n(o,a)},fUr=function(t,r,a){var s=C7n(a),o=Sst(t,s),u=Jn.makeSpan(["katex"],[o]);return A7n(u,a)},pUr={widehat:"^",widecheck:"ˇ",widetilde:"~",utilde:"~",overleftarrow:"←",underleftarrow:"←",xleftarrow:"←",overrightarrow:"→",underrightarrow:"→",xrightarrow:"→",underbrace:"⏟",overbrace:"⏞",overgroup:"⏠",undergroup:"⏡",overleftrightarrow:"↔",underleftrightarrow:"↔",xleftrightarrow:"↔",Overrightarrow:"⇒",xRightarrow:"⇒",overleftharpoon:"↼",xleftharpoonup:"↼",overrightharpoon:"⇀",xrightharpoonup:"⇀",xLeftarrow:"⇐",xLeftrightarrow:"⇔",xhookleftarrow:"↩",xhookrightarrow:"↪",xmapsto:"↦",xrightharpoondown:"⇁",xleftharpoondown:"↽",xrightleftharpoons:"⇌",xleftrightharpoons:"⇋",xtwoheadleftarrow:"↞",xtwoheadrightarrow:"↠",xlongequal:"=",xtofrom:"⇄",xrightleftarrows:"⇄",xrightequilibrium:"⇌",xleftequilibrium:"⇋","\\cdrightarrow":"→","\\cdleftarrow":"←","\\cdlongequal":"="},gUr=function(t){var r=new xi.MathNode("mo",[new xi.TextNode(pUr[t.replace(/^\\/,"")])]);return r.setAttribute("stretchy","true"),r},mUr={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],"\\cdrightarrow":[["rightarrow"],3,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],"\\cdleftarrow":[["leftarrow"],3,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],"\\cdlongequal":[["longequal"],3,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]},bUr=function(t){return t.type==="ordgroup"?t.body.length:1},yUr=function(t,r){function a(){var h=4e5,f=t.label.slice(1);if(["widehat","widecheck","widetilde","utilde"].includes(f)){var p=t,m=bUr(p.base),b,_,w;if(m>5)f==="widehat"||f==="widecheck"?(b=420,h=2364,w=.42,_=f+"4"):(b=312,h=2340,w=.34,_="tilde4");else{var S=[1,1,2,2,3,3][m];f==="widehat"||f==="widecheck"?(h=[0,1062,2364,2364,2364][S],b=[0,239,300,360,420][S],w=[0,.24,.3,.3,.36,.42][S],_=f+S):(h=[0,600,1033,2339,2340][S],b=[0,260,286,306,312][S],w=[0,.26,.286,.3,.306,.34][S],_="tilde"+S)}var C=new GO(_),A=new X7([C],{width:"100%",height:Xi(w),viewBox:"0 0 "+h+" "+b,preserveAspectRatio:"none"});return{span:Jn.makeSvgSpan([],[A],r),minWidth:0,height:w}}else{var k=[],I=mUr[f],[N,L,P]=I,M=P/1e3,F=N.length,U,$;if(F===1){var G=I[3];U=["hide-tail"],$=[G]}else if(F===2)U=["halfarrow-left","halfarrow-right"],$=["xMinYMin","xMaxYMin"];else if(F===3)U=["brace-left","brace-center","brace-right"],$=["xMinYMin","xMidYMin","xMaxYMin"];else throw new Error(`Correct katexImagesData or update code here to support + `+F+" children.");for(var B=0;B0&&(s.style.minWidth=Xi(o)),s},vUr=function(t,r,a,s,o){var u,h=t.height+t.depth+a+s;if(/fbox|color|angl/.test(r)){if(u=Jn.makeSpan(["stretchy",r],[],o),r==="fbox"){var f=o.color&&o.getColor();f&&(u.style.borderColor=f)}}else{var p=[];/^[bx]cancel$/.test(r)&&p.push(new wst({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(r)&&p.push(new wst({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));var m=new X7(p,{width:"100%",height:Xi(h)});u=Jn.makeSvgSpan([],[m],o)}return u.height=h,u.style.height=Xi(h),u},Z7={encloseSpan:vUr,mathMLnode:gUr,svgSpan:yUr};function El(e,t){if(!e||e.type!==t)throw new Error("Expected node of type "+t+", but got "+(e?"node of type "+e.type:String(e)));return e}function oft(e){var t=X5e(e);if(!t)throw new Error("Expected node of symbol group type, but got "+(e?"node of type "+e.type:String(e)));return t}function X5e(e){return e&&(e.type==="atom"||H$r.hasOwnProperty(e.type))?e:null}var lft=(e,t)=>{var r,a,s;e&&e.type==="supsub"?(a=El(e.base,"accent"),r=a.base,e.base=r,s=G$r(Yc(e,t)),e.base=a):(a=El(e,"accent"),r=a.base);var o=Yc(r,t.havingCrampedStyle()),u=a.isShifty&&uu.isCharacterBox(r),h=0;if(u){var f=uu.getBaseElem(r),p=Yc(f,t.havingCrampedStyle());h=Wfn(p).skew}var m=a.label==="\\c",b=m?o.height+o.depth:Math.min(o.height,t.fontMetrics().xHeight),_;if(a.isStretchy)_=Z7.svgSpan(a,t),_=Jn.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:o},{type:"elem",elem:_,wrapperClasses:["svg-align"],wrapperStyle:h>0?{width:"calc(100% - "+Xi(2*h)+")",marginLeft:Xi(2*h)}:void 0}]},t);else{var w,S;a.label==="\\vec"?(w=Jn.staticSvg("vec",t),S=Jn.svgData.vec[1]):(w=Jn.makeOrd({mode:a.mode,text:a.label},t,"textord"),w=Wfn(w),w.italic=0,S=w.width,m&&(b+=w.depth)),_=Jn.makeSpan(["accent-body"],[w]);var C=a.label==="\\textcircled";C&&(_.classes.push("accent-full"),b=o.height);var A=h;C||(A-=S/2),_.style.left=Xi(A),a.label==="\\textcircled"&&(_.style.top=".2em"),_=Jn.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:o},{type:"kern",size:-b},{type:"elem",elem:_}]},t)}var k=Jn.makeSpan(["mord","accent"],[_],t);return s?(s.children[0]=k,s.height=Math.max(k.height,s.height),s.classes[0]="mord",s):k},k7n=(e,t)=>{var r=e.isStretchy?Z7.mathMLnode(e.label):new xi.MathNode("mo",[bS(e.label,e.mode)]),a=new xi.MathNode("mover",[Ph(e.base,t),r]);return a.setAttribute("accent","true"),a},_Ur=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map(e=>"\\"+e).join("|"));pa({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],props:{numArgs:1},handler:(e,t)=>{var r=PSe(t[0]),a=!_Ur.test(e.funcName),s=!a||e.funcName==="\\widehat"||e.funcName==="\\widetilde"||e.funcName==="\\widecheck";return{type:"accent",mode:e.parser.mode,label:e.funcName,isStretchy:a,isShifty:s,base:r}},htmlBuilder:lft,mathmlBuilder:k7n});pa({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\c","\\r","\\H","\\v","\\textcircled"],props:{numArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["primitive"]},handler:(e,t)=>{var r=t[0],a=e.parser.mode;return a==="math"&&(e.parser.settings.reportNonstrict("mathVsTextAccents","LaTeX's accent "+e.funcName+" works only in text mode"),a="text"),{type:"accent",mode:a,label:e.funcName,isStretchy:!1,isShifty:!0,base:r}},htmlBuilder:lft,mathmlBuilder:k7n});pa({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],props:{numArgs:1},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0];return{type:"accentUnder",mode:r.mode,label:a,base:s}},htmlBuilder:(e,t)=>{var r=Yc(e.base,t),a=Z7.svgSpan(e,t),s=e.label==="\\utilde"?.12:0,o=Jn.makeVList({positionType:"top",positionData:r.height,children:[{type:"elem",elem:a,wrapperClasses:["svg-align"]},{type:"kern",size:s},{type:"elem",elem:r}]},t);return Jn.makeSpan(["mord","accentunder"],[o],t)},mathmlBuilder:(e,t)=>{var r=Z7.mathMLnode(e.label),a=new xi.MathNode("munder",[Ph(e.base,t),r]);return a.setAttribute("accentunder","true"),a}});var w_e=e=>{var t=new xi.MathNode("mpadded",e?[e]:[]);return t.setAttribute("width","+0.6em"),t.setAttribute("lspace","0.3em"),t};pa({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium","\\\\cdrightarrow","\\\\cdleftarrow","\\\\cdlongequal"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){var{parser:a,funcName:s}=e;return{type:"xArrow",mode:a.mode,label:s,body:t[0],below:r[0]}},htmlBuilder(e,t){var r=t.style,a=t.havingStyle(r.sup()),s=Jn.wrapFragment(Yc(e.body,a,t),t),o=e.label.slice(0,2)==="\\x"?"x":"cd";s.classes.push(o+"-arrow-pad");var u;e.below&&(a=t.havingStyle(r.sub()),u=Jn.wrapFragment(Yc(e.below,a,t),t),u.classes.push(o+"-arrow-pad"));var h=Z7.svgSpan(e,t),f=-t.fontMetrics().axisHeight+.5*h.height,p=-t.fontMetrics().axisHeight-.5*h.height-.111;(s.depth>.25||e.label==="\\xleftequilibrium")&&(p-=s.depth);var m;if(u){var b=-t.fontMetrics().axisHeight+u.height+.5*h.height+.111;m=Jn.makeVList({positionType:"individualShift",children:[{type:"elem",elem:s,shift:p},{type:"elem",elem:h,shift:f},{type:"elem",elem:u,shift:b}]},t)}else m=Jn.makeVList({positionType:"individualShift",children:[{type:"elem",elem:s,shift:p},{type:"elem",elem:h,shift:f}]},t);return m.children[0].children[0].children[1].classes.push("svg-align"),Jn.makeSpan(["mrel","x-arrow"],[m],t)},mathmlBuilder(e,t){var r=Z7.mathMLnode(e.label);r.setAttribute("minsize",e.label.charAt(0)==="x"?"1.75em":"3.0em");var a;if(e.body){var s=w_e(Ph(e.body,t));if(e.below){var o=w_e(Ph(e.below,t));a=new xi.MathNode("munderover",[r,o,s])}else a=new xi.MathNode("mover",[r,s])}else if(e.below){var u=w_e(Ph(e.below,t));a=new xi.MathNode("munder",[r,u])}else a=w_e(),a=new xi.MathNode("mover",[r,a]);return a}});var wUr=Jn.makeSpan;function R7n(e,t){var r=Op(e.body,t,!0);return wUr([e.mclass],r,t)}function I7n(e,t){var r,a=o_(e.body,t);return e.mclass==="minner"?r=new xi.MathNode("mpadded",a):e.mclass==="mord"?e.isCharacterBox?(r=a[0],r.type="mi"):r=new xi.MathNode("mi",a):(e.isCharacterBox?(r=a[0],r.type="mo"):r=new xi.MathNode("mo",a),e.mclass==="mbin"?(r.attributes.lspace="0.22em",r.attributes.rspace="0.22em"):e.mclass==="mpunct"?(r.attributes.lspace="0em",r.attributes.rspace="0.17em"):e.mclass==="mopen"||e.mclass==="mclose"?(r.attributes.lspace="0em",r.attributes.rspace="0em"):e.mclass==="minner"&&(r.attributes.lspace="0.0556em",r.attributes.width="+0.1111em")),r}pa({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],props:{numArgs:1,primitive:!0},handler(e,t){var{parser:r,funcName:a}=e,s=t[0];return{type:"mclass",mode:r.mode,mclass:"m"+a.slice(5),body:X0(s),isCharacterBox:uu.isCharacterBox(s)}},htmlBuilder:R7n,mathmlBuilder:I7n});var Q5e=e=>{var t=e.type==="ordgroup"&&e.body.length?e.body[0]:e;return t.type==="atom"&&(t.family==="bin"||t.family==="rel")?"m"+t.family:"mord"};pa({type:"mclass",names:["\\@binrel"],props:{numArgs:2},handler(e,t){var{parser:r}=e;return{type:"mclass",mode:r.mode,mclass:Q5e(t[0]),body:X0(t[1]),isCharacterBox:uu.isCharacterBox(t[1])}}});pa({type:"mclass",names:["\\stackrel","\\overset","\\underset"],props:{numArgs:2},handler(e,t){var{parser:r,funcName:a}=e,s=t[1],o=t[0],u;a!=="\\stackrel"?u=Q5e(s):u="mrel";var h={type:"op",mode:s.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:a!=="\\stackrel",body:X0(s)},f={type:"supsub",mode:o.mode,base:h,sup:a==="\\underset"?null:o,sub:a==="\\underset"?o:null};return{type:"mclass",mode:r.mode,mclass:u,body:[f],isCharacterBox:uu.isCharacterBox(f)}},htmlBuilder:R7n,mathmlBuilder:I7n});pa({type:"pmb",names:["\\pmb"],props:{numArgs:1,allowedInText:!0},handler(e,t){var{parser:r}=e;return{type:"pmb",mode:r.mode,mclass:Q5e(t[0]),body:X0(t[0])}},htmlBuilder(e,t){var r=Op(e.body,t,!0),a=Jn.makeSpan([e.mclass],r,t);return a.style.textShadow="0.02em 0.01em 0.04px",a},mathmlBuilder(e,t){var r=o_(e.body,t),a=new xi.MathNode("mstyle",r);return a.setAttribute("style","text-shadow: 0.02em 0.01em 0.04px"),a}});var EUr={">":"\\\\cdrightarrow","<":"\\\\cdleftarrow","=":"\\\\cdlongequal",A:"\\uparrow",V:"\\downarrow","|":"\\Vert",".":"no arrow"},n0n=()=>({type:"styling",body:[],mode:"math",style:"display"}),r0n=e=>e.type==="textord"&&e.text==="@",xUr=(e,t)=>(e.type==="mathord"||e.type==="atom")&&e.text===t;function SUr(e,t,r){var a=EUr[e];switch(a){case"\\\\cdrightarrow":case"\\\\cdleftarrow":return r.callFunction(a,[t[0]],[t[1]]);case"\\uparrow":case"\\downarrow":{var s=r.callFunction("\\\\cdleft",[t[0]],[]),o={type:"atom",text:a,mode:"math",family:"rel"},u=r.callFunction("\\Big",[o],[]),h=r.callFunction("\\\\cdright",[t[1]],[]),f={type:"ordgroup",mode:"math",body:[s,u,h]};return r.callFunction("\\\\cdparent",[f],[])}case"\\\\cdlongequal":return r.callFunction("\\\\cdlongequal",[],[]);case"\\Vert":{var p={type:"textord",text:"\\Vert",mode:"math"};return r.callFunction("\\Big",[p],[])}default:return{type:"textord",text:" ",mode:"math"}}}function TUr(e){var t=[];for(e.gullet.beginGroup(),e.gullet.macros.set("\\cr","\\\\\\relax"),e.gullet.beginGroup();;){t.push(e.parseExpression(!1,"\\\\")),e.gullet.endGroup(),e.gullet.beginGroup();var r=e.fetch().text;if(r==="&"||r==="\\\\")e.consume();else if(r==="\\end"){t[t.length-1].length===0&&t.pop();break}else throw new Bi("Expected \\\\ or \\cr or \\end",e.nextToken)}for(var a=[],s=[a],o=0;o-1))if("<>AV".indexOf(p)>-1)for(var b=0;b<2;b++){for(var _=!0,w=f+1;wAV=|." after @',u[f]);var S=SUr(p,m,e),C={type:"styling",body:[S],mode:"math",style:"display"};a.push(C),h=n0n()}o%2===0?a.push(h):a.shift(),a=[],s.push(a)}e.gullet.endGroup(),e.gullet.endGroup();var A=new Array(s[0].length).fill({type:"align",align:"c",pregap:.25,postgap:.25});return{type:"array",mode:"math",body:s,arraystretch:1,addJot:!0,rowGaps:[null],cols:A,colSeparationType:"CD",hLinesBeforeRow:new Array(s.length+1).fill([])}}pa({type:"cdlabel",names:["\\\\cdleft","\\\\cdright"],props:{numArgs:1},handler(e,t){var{parser:r,funcName:a}=e;return{type:"cdlabel",mode:r.mode,side:a.slice(4),label:t[0]}},htmlBuilder(e,t){var r=t.havingStyle(t.style.sup()),a=Jn.wrapFragment(Yc(e.label,r,t),t);return a.classes.push("cd-label-"+e.side),a.style.bottom=Xi(.8-a.depth),a.height=0,a.depth=0,a},mathmlBuilder(e,t){var r=new xi.MathNode("mrow",[Ph(e.label,t)]);return r=new xi.MathNode("mpadded",[r]),r.setAttribute("width","0"),e.side==="left"&&r.setAttribute("lspace","-1width"),r.setAttribute("voffset","0.7em"),r=new xi.MathNode("mstyle",[r]),r.setAttribute("displaystyle","false"),r.setAttribute("scriptlevel","1"),r}});pa({type:"cdlabelparent",names:["\\\\cdparent"],props:{numArgs:1},handler(e,t){var{parser:r}=e;return{type:"cdlabelparent",mode:r.mode,fragment:t[0]}},htmlBuilder(e,t){var r=Jn.wrapFragment(Yc(e.fragment,t),t);return r.classes.push("cd-vert-arrow"),r},mathmlBuilder(e,t){return new xi.MathNode("mrow",[Ph(e.fragment,t)])}});pa({type:"textord",names:["\\@char"],props:{numArgs:1,allowedInText:!0},handler(e,t){for(var{parser:r}=e,a=El(t[0],"ordgroup"),s=a.body,o="",u=0;u=1114111)throw new Bi("\\@char with invalid code point "+o);return f<=65535?p=String.fromCharCode(f):(f-=65536,p=String.fromCharCode((f>>10)+55296,(f&1023)+56320)),{type:"textord",mode:r.mode,text:p}}});var N7n=(e,t)=>{var r=Op(e.body,t.withColor(e.color),!1);return Jn.makeFragment(r)},O7n=(e,t)=>{var r=o_(e.body,t.withColor(e.color)),a=new xi.MathNode("mstyle",r);return a.setAttribute("mathcolor",e.color),a};pa({type:"color",names:["\\textcolor"],props:{numArgs:2,allowedInText:!0,argTypes:["color","original"]},handler(e,t){var{parser:r}=e,a=El(t[0],"color-token").color,s=t[1];return{type:"color",mode:r.mode,color:a,body:X0(s)}},htmlBuilder:N7n,mathmlBuilder:O7n});pa({type:"color",names:["\\color"],props:{numArgs:1,allowedInText:!0,argTypes:["color"]},handler(e,t){var{parser:r,breakOnTokenText:a}=e,s=El(t[0],"color-token").color;r.gullet.macros.set("\\current@color",s);var o=r.parseExpression(!0,a);return{type:"color",mode:r.mode,color:s,body:o}},htmlBuilder:N7n,mathmlBuilder:O7n});pa({type:"cr",names:["\\\\"],props:{numArgs:0,numOptionalArgs:0,allowedInText:!0},handler(e,t,r){var{parser:a}=e,s=a.gullet.future().text==="["?a.parseSizeGroup(!0):null,o=!a.settings.displayMode||!a.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode");return{type:"cr",mode:a.mode,newLine:o,size:s&&El(s,"size").value}},htmlBuilder(e,t){var r=Jn.makeSpan(["mspace"],[],t);return e.newLine&&(r.classes.push("newline"),e.size&&(r.style.marginTop=Xi(kf(e.size,t)))),r},mathmlBuilder(e,t){var r=new xi.MathNode("mspace");return e.newLine&&(r.setAttribute("linebreak","newline"),e.size&&r.setAttribute("height",Xi(kf(e.size,t)))),r}});var Tst={"\\global":"\\global","\\long":"\\\\globallong","\\\\globallong":"\\\\globallong","\\def":"\\gdef","\\gdef":"\\gdef","\\edef":"\\xdef","\\xdef":"\\xdef","\\let":"\\\\globallet","\\futurelet":"\\\\globalfuture"},L7n=e=>{var t=e.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(t))throw new Bi("Expected a control sequence",e);return t},CUr=e=>{var t=e.gullet.popToken();return t.text==="="&&(t=e.gullet.popToken(),t.text===" "&&(t=e.gullet.popToken())),t},D7n=(e,t,r,a)=>{var s=e.gullet.macros.get(r.text);s==null&&(r.noexpand=!0,s={tokens:[r],numArgs:0,unexpandable:!e.gullet.isExpandable(r.text)}),e.gullet.macros.set(t,s,a)};pa({type:"internal",names:["\\global","\\long","\\\\globallong"],props:{numArgs:0,allowedInText:!0},handler(e){var{parser:t,funcName:r}=e;t.consumeSpaces();var a=t.fetch();if(Tst[a.text])return(r==="\\global"||r==="\\\\globallong")&&(a.text=Tst[a.text]),El(t.parseFunction(),"internal");throw new Bi("Invalid token after macro prefix",a)}});pa({type:"internal",names:["\\def","\\gdef","\\edef","\\xdef"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){var{parser:t,funcName:r}=e,a=t.gullet.popToken(),s=a.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(s))throw new Bi("Expected a control sequence",a);for(var o=0,u,h=[[]];t.gullet.future().text!=="{";)if(a=t.gullet.popToken(),a.text==="#"){if(t.gullet.future().text==="{"){u=t.gullet.future(),h[o].push("{");break}if(a=t.gullet.popToken(),!/^[1-9]$/.test(a.text))throw new Bi('Invalid argument number "'+a.text+'"');if(parseInt(a.text)!==o+1)throw new Bi('Argument number "'+a.text+'" out of order');o++,h.push([])}else{if(a.text==="EOF")throw new Bi("Expected a macro definition");h[o].push(a.text)}var{tokens:f}=t.gullet.consumeArg();return u&&f.unshift(u),(r==="\\edef"||r==="\\xdef")&&(f=t.gullet.expandTokens(f),f.reverse()),t.gullet.macros.set(s,{tokens:f,numArgs:o,delimiters:h},r===Tst[r]),{type:"internal",mode:t.mode}}});pa({type:"internal",names:["\\let","\\\\globallet"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){var{parser:t,funcName:r}=e,a=L7n(t.gullet.popToken());t.gullet.consumeSpaces();var s=CUr(t);return D7n(t,a,s,r==="\\\\globallet"),{type:"internal",mode:t.mode}}});pa({type:"internal",names:["\\futurelet","\\\\globalfuture"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){var{parser:t,funcName:r}=e,a=L7n(t.gullet.popToken()),s=t.gullet.popToken(),o=t.gullet.popToken();return D7n(t,a,o,r==="\\\\globalfuture"),t.gullet.pushToken(o),t.gullet.pushToken(s),{type:"internal",mode:t.mode}}});var Sie=function(t,r,a){var s=ed.math[t]&&ed.math[t].replace,o=nft(s||t,r,a);if(!o)throw new Error("Unsupported symbol "+t+" and font size "+r+".");return o},cft=function(t,r,a,s){var o=a.havingBaseStyle(r),u=Jn.makeSpan(s.concat(o.sizingClasses(a)),[t],a),h=o.sizeMultiplier/a.sizeMultiplier;return u.height*=h,u.depth*=h,u.maxFontSize=o.sizeMultiplier,u},M7n=function(t,r,a){var s=r.havingBaseStyle(a),o=(1-r.sizeMultiplier/s.sizeMultiplier)*r.fontMetrics().axisHeight;t.classes.push("delimcenter"),t.style.top=Xi(o),t.height-=o,t.depth+=o},AUr=function(t,r,a,s,o,u){var h=Jn.makeSymbol(t,"Main-Regular",o,s),f=cft(h,r,s,u);return a&&M7n(f,s,r),f},kUr=function(t,r,a,s){return Jn.makeSymbol(t,"Size"+r+"-Regular",a,s)},P7n=function(t,r,a,s,o,u){var h=kUr(t,r,o,s),f=cft(Jn.makeSpan(["delimsizing","size"+r],[h],s),Zs.TEXT,s,u);return a&&M7n(f,s,Zs.TEXT),f},UXe=function(t,r,a){var s;r==="Size1-Regular"?s="delim-size1":s="delim-size4";var o=Jn.makeSpan(["delimsizinginner",s],[Jn.makeSpan([],[Jn.makeSymbol(t,r,a)])]);return{type:"elem",elem:o}},zXe=function(t,r,a){var s=YC["Size4-Regular"][t.charCodeAt(0)]?YC["Size4-Regular"][t.charCodeAt(0)][4]:YC["Size1-Regular"][t.charCodeAt(0)][4],o=new GO("inner",D$r(t,Math.round(1e3*r))),u=new X7([o],{width:Xi(s),height:Xi(r),style:"width:"+Xi(s),viewBox:"0 0 "+1e3*s+" "+Math.round(1e3*r),preserveAspectRatio:"xMinYMin"}),h=Jn.makeSvgSpan([],[u],a);return h.height=r,h.style.height=Xi(r),h.style.width=Xi(s),{type:"elem",elem:h}},Cst=.008,E_e={type:"kern",size:-1*Cst},RUr=["|","\\lvert","\\rvert","\\vert"],IUr=["\\|","\\lVert","\\rVert","\\Vert"],B7n=function(t,r,a,s,o,u){var h,f,p,m,b="",_=0;h=p=m=t,f=null;var w="Size1-Regular";t==="\\uparrow"?p=m="⏐":t==="\\Uparrow"?p=m="‖":t==="\\downarrow"?h=p="⏐":t==="\\Downarrow"?h=p="‖":t==="\\updownarrow"?(h="\\uparrow",p="⏐",m="\\downarrow"):t==="\\Updownarrow"?(h="\\Uparrow",p="‖",m="\\Downarrow"):RUr.includes(t)?(p="∣",b="vert",_=333):IUr.includes(t)?(p="∥",b="doublevert",_=556):t==="["||t==="\\lbrack"?(h="⎡",p="⎢",m="⎣",w="Size4-Regular",b="lbrack",_=667):t==="]"||t==="\\rbrack"?(h="⎤",p="⎥",m="⎦",w="Size4-Regular",b="rbrack",_=667):t==="\\lfloor"||t==="⌊"?(p=h="⎢",m="⎣",w="Size4-Regular",b="lfloor",_=667):t==="\\lceil"||t==="⌈"?(h="⎡",p=m="⎢",w="Size4-Regular",b="lceil",_=667):t==="\\rfloor"||t==="⌋"?(p=h="⎥",m="⎦",w="Size4-Regular",b="rfloor",_=667):t==="\\rceil"||t==="⌉"?(h="⎤",p=m="⎥",w="Size4-Regular",b="rceil",_=667):t==="("||t==="\\lparen"?(h="⎛",p="⎜",m="⎝",w="Size4-Regular",b="lparen",_=875):t===")"||t==="\\rparen"?(h="⎞",p="⎟",m="⎠",w="Size4-Regular",b="rparen",_=875):t==="\\{"||t==="\\lbrace"?(h="⎧",f="⎨",m="⎩",p="⎪",w="Size4-Regular"):t==="\\}"||t==="\\rbrace"?(h="⎫",f="⎬",m="⎭",p="⎪",w="Size4-Regular"):t==="\\lgroup"||t==="⟮"?(h="⎧",m="⎩",p="⎪",w="Size4-Regular"):t==="\\rgroup"||t==="⟯"?(h="⎫",m="⎭",p="⎪",w="Size4-Regular"):t==="\\lmoustache"||t==="⎰"?(h="⎧",m="⎭",p="⎪",w="Size4-Regular"):(t==="\\rmoustache"||t==="⎱")&&(h="⎫",m="⎩",p="⎪",w="Size4-Regular");var S=Sie(h,w,o),C=S.height+S.depth,A=Sie(p,w,o),k=A.height+A.depth,I=Sie(m,w,o),N=I.height+I.depth,L=0,P=1;if(f!==null){var M=Sie(f,w,o);L=M.height+M.depth,P=2}var F=C+N+L,U=Math.max(0,Math.ceil((r-F)/(P*k))),$=F+U*P*k,G=s.fontMetrics().axisHeight;a&&(G*=s.sizeMultiplier);var B=$/2-G,Z=[];if(b.length>0){var z=$-C-N,Y=Math.round($*1e3),W=M$r(b,Math.round(z*1e3)),Q=new GO(b,W),V=(_/1e3).toFixed(3)+"em",j=(Y/1e3).toFixed(3)+"em",ee=new X7([Q],{width:V,height:j,viewBox:"0 0 "+_+" "+Y}),te=Jn.makeSvgSpan([],[ee],s);te.height=Y/1e3,te.style.width=V,te.style.height=j,Z.push({type:"elem",elem:te})}else{if(Z.push(UXe(m,w,o)),Z.push(E_e),f===null){var ne=$-C-N+2*Cst;Z.push(zXe(p,ne,s))}else{var se=($-C-N-L)/2+2*Cst;Z.push(zXe(p,se,s)),Z.push(E_e),Z.push(UXe(f,w,o)),Z.push(E_e),Z.push(zXe(p,se,s))}Z.push(E_e),Z.push(UXe(h,w,o))}var ie=s.havingBaseStyle(Zs.TEXT),ge=Jn.makeVList({positionType:"bottom",positionData:B,children:Z},ie);return cft(Jn.makeSpan(["delimsizing","mult"],[ge],ie),Zs.TEXT,s,u)},GXe=80,qXe=.08,HXe=function(t,r,a,s,o){var u=L$r(t,s,a),h=new GO(t,u),f=new X7([h],{width:"400em",height:Xi(r),viewBox:"0 0 400000 "+a,preserveAspectRatio:"xMinYMin slice"});return Jn.makeSvgSpan(["hide-tail"],[f],o)},NUr=function(t,r){var a=r.havingBaseSizing(),s=z7n("\\surd",t*a.sizeMultiplier,U7n,a),o=a.sizeMultiplier,u=Math.max(0,r.minRuleThickness-r.fontMetrics().sqrtRuleThickness),h,f=0,p=0,m=0,b;return s.type==="small"?(m=1e3+1e3*u+GXe,t<1?o=1:t<1.4&&(o=.7),f=(1+u+qXe)/o,p=(1+u)/o,h=HXe("sqrtMain",f,m,u,r),h.style.minWidth="0.853em",b=.833/o):s.type==="large"?(m=(1e3+GXe)*Qae[s.size],p=(Qae[s.size]+u)/o,f=(Qae[s.size]+u+qXe)/o,h=HXe("sqrtSize"+s.size,f,m,u,r),h.style.minWidth="1.02em",b=1/o):(f=t+u+qXe,p=t+u,m=Math.floor(1e3*t+u)+GXe,h=HXe("sqrtTall",f,m,u,r),h.style.minWidth="0.742em",b=1.056),h.height=p,h.style.height=Xi(f),{span:h,advanceWidth:b,ruleWidth:(r.fontMetrics().sqrtRuleThickness+u)*o}},F7n=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","⌊","⌋","\\lceil","\\rceil","⌈","⌉","\\surd"],OUr=["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","⟮","⟯","\\lmoustache","\\rmoustache","⎰","⎱"],$7n=["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"],Qae=[0,1.2,1.8,2.4,3],LUr=function(t,r,a,s,o){if(t==="<"||t==="\\lt"||t==="⟨"?t="\\langle":(t===">"||t==="\\gt"||t==="⟩")&&(t="\\rangle"),F7n.includes(t)||$7n.includes(t))return P7n(t,r,!1,a,s,o);if(OUr.includes(t))return B7n(t,Qae[r],!1,a,s,o);throw new Bi("Illegal delimiter: '"+t+"'")},DUr=[{type:"small",style:Zs.SCRIPTSCRIPT},{type:"small",style:Zs.SCRIPT},{type:"small",style:Zs.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],MUr=[{type:"small",style:Zs.SCRIPTSCRIPT},{type:"small",style:Zs.SCRIPT},{type:"small",style:Zs.TEXT},{type:"stack"}],U7n=[{type:"small",style:Zs.SCRIPTSCRIPT},{type:"small",style:Zs.SCRIPT},{type:"small",style:Zs.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],PUr=function(t){if(t.type==="small")return"Main-Regular";if(t.type==="large")return"Size"+t.size+"-Regular";if(t.type==="stack")return"Size4-Regular";throw new Error("Add support for delim type '"+t.type+"' here.")},z7n=function(t,r,a,s){for(var o=Math.min(2,3-s.style.size),u=o;ur)return a[u]}return a[a.length-1]},G7n=function(t,r,a,s,o,u){t==="<"||t==="\\lt"||t==="⟨"?t="\\langle":(t===">"||t==="\\gt"||t==="⟩")&&(t="\\rangle");var h;$7n.includes(t)?h=DUr:F7n.includes(t)?h=U7n:h=MUr;var f=z7n(t,r,h,s);return f.type==="small"?AUr(t,f.style,a,s,o,u):f.type==="large"?P7n(t,f.size,a,s,o,u):B7n(t,r,a,s,o,u)},BUr=function(t,r,a,s,o,u){var h=s.fontMetrics().axisHeight*s.sizeMultiplier,f=901,p=5/s.fontMetrics().ptPerEm,m=Math.max(r-h,a+h),b=Math.max(m/500*f,2*m-p);return G7n(t,b,!0,s,o,u)},F7={sqrtImage:NUr,sizedDelim:LUr,sizeToMaxHeight:Qae,customSizedDelim:G7n,leftRightDelim:BUr},i0n={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},FUr=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","⌊","⌋","\\lceil","\\rceil","⌈","⌉","<",">","\\langle","⟨","\\rangle","⟩","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","⟮","⟯","\\lmoustache","\\rmoustache","⎰","⎱","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."];function Z5e(e,t){var r=X5e(e);if(r&&FUr.includes(r.text))return r;throw r?new Bi("Invalid delimiter '"+r.text+"' after '"+t.funcName+"'",e):new Bi("Invalid delimiter type '"+e.type+"'",e)}pa({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],props:{numArgs:1,argTypes:["primitive"]},handler:(e,t)=>{var r=Z5e(t[0],e);return{type:"delimsizing",mode:e.parser.mode,size:i0n[e.funcName].size,mclass:i0n[e.funcName].mclass,delim:r.text}},htmlBuilder:(e,t)=>e.delim==="."?Jn.makeSpan([e.mclass]):F7.sizedDelim(e.delim,e.size,t,e.mode,[e.mclass]),mathmlBuilder:e=>{var t=[];e.delim!=="."&&t.push(bS(e.delim,e.mode));var r=new xi.MathNode("mo",t);e.mclass==="mopen"||e.mclass==="mclose"?r.setAttribute("fence","true"):r.setAttribute("fence","false"),r.setAttribute("stretchy","true");var a=Xi(F7.sizeToMaxHeight[e.size]);return r.setAttribute("minsize",a),r.setAttribute("maxsize",a),r}});function a0n(e){if(!e.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}pa({type:"leftright-right",names:["\\right"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{var r=e.parser.gullet.macros.get("\\current@color");if(r&&typeof r!="string")throw new Bi("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:e.parser.mode,delim:Z5e(t[0],e).text,color:r}}});pa({type:"leftright",names:["\\left"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{var r=Z5e(t[0],e),a=e.parser;++a.leftrightDepth;var s=a.parseExpression(!1);--a.leftrightDepth,a.expect("\\right",!1);var o=El(a.parseFunction(),"leftright-right");return{type:"leftright",mode:a.mode,body:s,left:r.text,right:o.delim,rightColor:o.color}},htmlBuilder:(e,t)=>{a0n(e);for(var r=Op(e.body,t,!0,["mopen","mclose"]),a=0,s=0,o=!1,u=0;u{a0n(e);var r=o_(e.body,t);if(e.left!=="."){var a=new xi.MathNode("mo",[bS(e.left,e.mode)]);a.setAttribute("fence","true"),r.unshift(a)}if(e.right!=="."){var s=new xi.MathNode("mo",[bS(e.right,e.mode)]);s.setAttribute("fence","true"),e.rightColor&&s.setAttribute("mathcolor",e.rightColor),r.push(s)}return aft(r)}});pa({type:"middle",names:["\\middle"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{var r=Z5e(t[0],e);if(!e.parser.leftrightDepth)throw new Bi("\\middle without preceding \\left",r);return{type:"middle",mode:e.parser.mode,delim:r.text}},htmlBuilder:(e,t)=>{var r;if(e.delim===".")r=Qse(t,[]);else{r=F7.sizedDelim(e.delim,1,t,e.mode,[]);var a={delim:e.delim,options:t};r.isMiddle=a}return r},mathmlBuilder:(e,t)=>{var r=e.delim==="\\vert"||e.delim==="|"?bS("|","text"):bS(e.delim,e.mode),a=new xi.MathNode("mo",[r]);return a.setAttribute("fence","true"),a.setAttribute("lspace","0.05em"),a.setAttribute("rspace","0.05em"),a}});var uft=(e,t)=>{var r=Jn.wrapFragment(Yc(e.body,t),t),a=e.label.slice(1),s=t.sizeMultiplier,o,u=0,h=uu.isCharacterBox(e.body);if(a==="sout")o=Jn.makeSpan(["stretchy","sout"]),o.height=t.fontMetrics().defaultRuleThickness/s,u=-.5*t.fontMetrics().xHeight;else if(a==="phase"){var f=kf({number:.6,unit:"pt"},t),p=kf({number:.35,unit:"ex"},t),m=t.havingBaseSizing();s=s/m.sizeMultiplier;var b=r.height+r.depth+f+p;r.style.paddingLeft=Xi(b/2+f);var _=Math.floor(1e3*b*s),w=N$r(_),S=new X7([new GO("phase",w)],{width:"400em",height:Xi(_/1e3),viewBox:"0 0 400000 "+_,preserveAspectRatio:"xMinYMin slice"});o=Jn.makeSvgSpan(["hide-tail"],[S],t),o.style.height=Xi(b),u=r.depth+f+p}else{/cancel/.test(a)?h||r.classes.push("cancel-pad"):a==="angl"?r.classes.push("anglpad"):r.classes.push("boxpad");var C=0,A=0,k=0;/box/.test(a)?(k=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness),C=t.fontMetrics().fboxsep+(a==="colorbox"?0:k),A=C):a==="angl"?(k=Math.max(t.fontMetrics().defaultRuleThickness,t.minRuleThickness),C=4*k,A=Math.max(0,.25-r.depth)):(C=h?.2:0,A=C),o=Z7.encloseSpan(r,a,C,A,t),/fbox|boxed|fcolorbox/.test(a)?(o.style.borderStyle="solid",o.style.borderWidth=Xi(k)):a==="angl"&&k!==.049&&(o.style.borderTopWidth=Xi(k),o.style.borderRightWidth=Xi(k)),u=r.depth+A,e.backgroundColor&&(o.style.backgroundColor=e.backgroundColor,e.borderColor&&(o.style.borderColor=e.borderColor))}var I;if(e.backgroundColor)I=Jn.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:u},{type:"elem",elem:r,shift:0}]},t);else{var N=/cancel|phase/.test(a)?["svg-align"]:[];I=Jn.makeVList({positionType:"individualShift",children:[{type:"elem",elem:r,shift:0},{type:"elem",elem:o,shift:u,wrapperClasses:N}]},t)}return/cancel/.test(a)&&(I.height=r.height,I.depth=r.depth),/cancel/.test(a)&&!h?Jn.makeSpan(["mord","cancel-lap"],[I],t):Jn.makeSpan(["mord"],[I],t)},hft=(e,t)=>{var r=0,a=new xi.MathNode(e.label.indexOf("colorbox")>-1?"mpadded":"menclose",[Ph(e.body,t)]);switch(e.label){case"\\cancel":a.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":a.setAttribute("notation","downdiagonalstrike");break;case"\\phase":a.setAttribute("notation","phasorangle");break;case"\\sout":a.setAttribute("notation","horizontalstrike");break;case"\\fbox":a.setAttribute("notation","box");break;case"\\angl":a.setAttribute("notation","actuarial");break;case"\\fcolorbox":case"\\colorbox":if(r=t.fontMetrics().fboxsep*t.fontMetrics().ptPerEm,a.setAttribute("width","+"+2*r+"pt"),a.setAttribute("height","+"+2*r+"pt"),a.setAttribute("lspace",r+"pt"),a.setAttribute("voffset",r+"pt"),e.label==="\\fcolorbox"){var s=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness);a.setAttribute("style","border: "+s+"em solid "+String(e.borderColor))}break;case"\\xcancel":a.setAttribute("notation","updiagonalstrike downdiagonalstrike");break}return e.backgroundColor&&a.setAttribute("mathbackground",e.backgroundColor),a};pa({type:"enclose",names:["\\colorbox"],props:{numArgs:2,allowedInText:!0,argTypes:["color","text"]},handler(e,t,r){var{parser:a,funcName:s}=e,o=El(t[0],"color-token").color,u=t[1];return{type:"enclose",mode:a.mode,label:s,backgroundColor:o,body:u}},htmlBuilder:uft,mathmlBuilder:hft});pa({type:"enclose",names:["\\fcolorbox"],props:{numArgs:3,allowedInText:!0,argTypes:["color","color","text"]},handler(e,t,r){var{parser:a,funcName:s}=e,o=El(t[0],"color-token").color,u=El(t[1],"color-token").color,h=t[2];return{type:"enclose",mode:a.mode,label:s,backgroundColor:u,borderColor:o,body:h}},htmlBuilder:uft,mathmlBuilder:hft});pa({type:"enclose",names:["\\fbox"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!0},handler(e,t){var{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\fbox",body:t[0]}}});pa({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\sout","\\phase"],props:{numArgs:1},handler(e,t){var{parser:r,funcName:a}=e,s=t[0];return{type:"enclose",mode:r.mode,label:a,body:s}},htmlBuilder:uft,mathmlBuilder:hft});pa({type:"enclose",names:["\\angl"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!1},handler(e,t){var{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\angl",body:t[0]}}});var q7n={};function CA(e){for(var{type:t,names:r,props:a,handler:s,htmlBuilder:o,mathmlBuilder:u}=e,h={type:t,numArgs:a.numArgs||0,allowedInText:!1,numOptionalArgs:0,handler:s},f=0;f{var t=e.parser.settings;if(!t.displayMode)throw new Bi("{"+e.envName+"} can be used only in display mode.")};function dft(e){if(e.indexOf("ed")===-1)return e.indexOf("*")===-1}function x9(e,t,r){var{hskipBeforeAndAfter:a,addJot:s,cols:o,arraystretch:u,colSeparationType:h,autoTag:f,singleRow:p,emptySingleRow:m,maxNumCols:b,leqno:_}=t;if(e.gullet.beginGroup(),p||e.gullet.macros.set("\\cr","\\\\\\relax"),!u){var w=e.gullet.expandMacroAsText("\\arraystretch");if(w==null)u=1;else if(u=parseFloat(w),!u||u<0)throw new Bi("Invalid \\arraystretch: "+w)}e.gullet.beginGroup();var S=[],C=[S],A=[],k=[],I=f!=null?[]:void 0;function N(){f&&e.gullet.macros.set("\\@eqnsw","1",!0)}function L(){I&&(e.gullet.macros.get("\\df@tag")?(I.push(e.subparse([new Y3("\\df@tag")])),e.gullet.macros.set("\\df@tag",void 0,!0)):I.push(!!f&&e.gullet.macros.get("\\@eqnsw")==="1"))}for(N(),k.push(s0n(e));;){var P=e.parseExpression(!1,p?"\\end":"\\\\");e.gullet.endGroup(),e.gullet.beginGroup(),P={type:"ordgroup",mode:e.mode,body:P},r&&(P={type:"styling",mode:e.mode,style:r,body:[P]}),S.push(P);var M=e.fetch().text;if(M==="&"){if(b&&S.length===b){if(p||h)throw new Bi("Too many tab characters: &",e.nextToken);e.settings.reportNonstrict("textEnv","Too few columns specified in the {array} column argument.")}e.consume()}else if(M==="\\end"){L(),S.length===1&&P.type==="styling"&&P.body[0].body.length===0&&(C.length>1||!m)&&C.pop(),k.length0&&(N+=.25),p.push({pos:N,isDashed:Oe[Dt]})}for(L(u[0]),a=0;a0&&(B+=I,FOe))for(a=0;a=h)){var ve=void 0;(s>0||t.hskipBeforeAndAfter)&&(ve=uu.deflt(se.pregap,_),ve!==0&&(W=Jn.makeSpan(["arraycolsep"],[]),W.style.width=Xi(ve),Y.push(W)));var De=[];for(a=0;a0){for(var we=Jn.makeLineSpan("hline",r,m),Ce=Jn.makeLineSpan("hdashline",r,m),Ie=[{type:"elem",elem:f,shift:0}];p.length>0;){var Le=p.pop(),Fe=Le.pos-Z;Le.isDashed?Ie.push({type:"elem",elem:Ce,shift:Fe}):Ie.push({type:"elem",elem:we,shift:Fe})}f=Jn.makeVList({positionType:"individualShift",children:Ie},r)}if(V.length===0)return Jn.makeSpan(["mord"],[f],r);var Ve=Jn.makeVList({positionType:"individualShift",children:V},r);return Ve=Jn.makeSpan(["tag"],[Ve],r),Jn.makeFragment([f,Ve])},$Ur={c:"center ",l:"left ",r:"right "},kA=function(t,r){for(var a=[],s=new xi.MathNode("mtd",[],["mtr-glue"]),o=new xi.MathNode("mtd",[],["mml-eqn-num"]),u=0;u0){var S=t.cols,C="",A=!1,k=0,I=S.length;S[0].type==="separator"&&(_+="top ",k=1),S[S.length-1].type==="separator"&&(_+="bottom ",I-=1);for(var N=k;N0?"left ":"",_+=U[U.length-1].length>0?"right ":"";for(var $=1;$-1?"alignat":"align",o=t.envName==="split",u=x9(t.parser,{cols:a,addJot:!0,autoTag:o?void 0:dft(t.envName),emptySingleRow:!0,colSeparationType:s,maxNumCols:o?2:void 0,leqno:t.parser.settings.leqno},"display"),h,f=0,p={type:"ordgroup",mode:t.mode,body:[]};if(r[0]&&r[0].type==="ordgroup"){for(var m="",b=0;b0&&w&&(A=1),a[S]={type:"align",align:C,pregap:A,postgap:0}}return u.colSeparationType=w?"align":"alignat",u};CA({type:"array",names:["array","darray"],props:{numArgs:1},handler(e,t){var r=X5e(t[0]),a=r?[t[0]]:El(t[0],"ordgroup").body,s=a.map(function(u){var h=oft(u),f=h.text;if("lcr".indexOf(f)!==-1)return{type:"align",align:f};if(f==="|")return{type:"separator",separator:"|"};if(f===":")return{type:"separator",separator:":"};throw new Bi("Unknown column alignment: "+f,u)}),o={cols:s,hskipBeforeAndAfter:!0,maxNumCols:s.length};return x9(e.parser,o,fft(e.envName))},htmlBuilder:AA,mathmlBuilder:kA});CA({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix","matrix*","pmatrix*","bmatrix*","Bmatrix*","vmatrix*","Vmatrix*"],props:{numArgs:0},handler(e){var t={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[e.envName.replace("*","")],r="c",a={hskipBeforeAndAfter:!1,cols:[{type:"align",align:r}]};if(e.envName.charAt(e.envName.length-1)==="*"){var s=e.parser;if(s.consumeSpaces(),s.fetch().text==="["){if(s.consume(),s.consumeSpaces(),r=s.fetch().text,"lcr".indexOf(r)===-1)throw new Bi("Expected l or c or r",s.nextToken);s.consume(),s.consumeSpaces(),s.expect("]"),s.consume(),a.cols=[{type:"align",align:r}]}}var o=x9(e.parser,a,fft(e.envName)),u=Math.max(0,...o.body.map(h=>h.length));return o.cols=new Array(u).fill({type:"align",align:r}),t?{type:"leftright",mode:e.mode,body:[o],left:t[0],right:t[1],rightColor:void 0}:o},htmlBuilder:AA,mathmlBuilder:kA});CA({type:"array",names:["smallmatrix"],props:{numArgs:0},handler(e){var t={arraystretch:.5},r=x9(e.parser,t,"script");return r.colSeparationType="small",r},htmlBuilder:AA,mathmlBuilder:kA});CA({type:"array",names:["subarray"],props:{numArgs:1},handler(e,t){var r=X5e(t[0]),a=r?[t[0]]:El(t[0],"ordgroup").body,s=a.map(function(u){var h=oft(u),f=h.text;if("lc".indexOf(f)!==-1)return{type:"align",align:f};throw new Bi("Unknown column alignment: "+f,u)});if(s.length>1)throw new Bi("{subarray} can contain only one column");var o={cols:s,hskipBeforeAndAfter:!1,arraystretch:.5};if(o=x9(e.parser,o,"script"),o.body.length>0&&o.body[0].length>1)throw new Bi("{subarray} can contain only one column");return o},htmlBuilder:AA,mathmlBuilder:kA});CA({type:"array",names:["cases","dcases","rcases","drcases"],props:{numArgs:0},handler(e){var t={arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},r=x9(e.parser,t,fft(e.envName));return{type:"leftright",mode:e.mode,body:[r],left:e.envName.indexOf("r")>-1?".":"\\{",right:e.envName.indexOf("r")>-1?"\\}":".",rightColor:void 0}},htmlBuilder:AA,mathmlBuilder:kA});CA({type:"array",names:["align","align*","aligned","split"],props:{numArgs:0},handler:V7n,htmlBuilder:AA,mathmlBuilder:kA});CA({type:"array",names:["gathered","gather","gather*"],props:{numArgs:0},handler(e){["gather","gather*"].includes(e.envName)&&J5e(e);var t={cols:[{type:"align",align:"c"}],addJot:!0,colSeparationType:"gather",autoTag:dft(e.envName),emptySingleRow:!0,leqno:e.parser.settings.leqno};return x9(e.parser,t,"display")},htmlBuilder:AA,mathmlBuilder:kA});CA({type:"array",names:["alignat","alignat*","alignedat"],props:{numArgs:1},handler:V7n,htmlBuilder:AA,mathmlBuilder:kA});CA({type:"array",names:["equation","equation*"],props:{numArgs:0},handler(e){J5e(e);var t={autoTag:dft(e.envName),emptySingleRow:!0,singleRow:!0,maxNumCols:1,leqno:e.parser.settings.leqno};return x9(e.parser,t,"display")},htmlBuilder:AA,mathmlBuilder:kA});CA({type:"array",names:["CD"],props:{numArgs:0},handler(e){return J5e(e),TUr(e.parser)},htmlBuilder:AA,mathmlBuilder:kA});ft("\\nonumber","\\gdef\\@eqnsw{0}");ft("\\notag","\\nonumber");pa({type:"text",names:["\\hline","\\hdashline"],props:{numArgs:0,allowedInText:!0,allowedInMath:!0},handler(e,t){throw new Bi(e.funcName+" valid only within array environment")}});var o0n=q7n;pa({type:"environment",names:["\\begin","\\end"],props:{numArgs:1,argTypes:["text"]},handler(e,t){var{parser:r,funcName:a}=e,s=t[0];if(s.type!=="ordgroup")throw new Bi("Invalid environment name",s);for(var o="",u=0;u{var r=e.font,a=t.withFont(r);return Yc(e.body,a)},j7n=(e,t)=>{var r=e.font,a=t.withFont(r);return Ph(e.body,a)},l0n={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak","\\bm":"\\boldsymbol"};pa({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathsfit","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],props:{numArgs:1,allowedInArgument:!0},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=PSe(t[0]),o=a;return o in l0n&&(o=l0n[o]),{type:"font",mode:r.mode,font:o.slice(1),body:s}},htmlBuilder:Y7n,mathmlBuilder:j7n});pa({type:"mclass",names:["\\boldsymbol","\\bm"],props:{numArgs:1},handler:(e,t)=>{var{parser:r}=e,a=t[0],s=uu.isCharacterBox(a);return{type:"mclass",mode:r.mode,mclass:Q5e(a),body:[{type:"font",mode:r.mode,font:"boldsymbol",body:a}],isCharacterBox:s}}});pa({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it","\\cal"],props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{var{parser:r,funcName:a,breakOnTokenText:s}=e,{mode:o}=r,u=r.parseExpression(!0,s),h="math"+a.slice(1);return{type:"font",mode:o,font:h,body:{type:"ordgroup",mode:r.mode,body:u}}},htmlBuilder:Y7n,mathmlBuilder:j7n});var W7n=(e,t)=>{var r=t;return e==="display"?r=r.id>=Zs.SCRIPT.id?r.text():Zs.DISPLAY:e==="text"&&r.size===Zs.DISPLAY.size?r=Zs.TEXT:e==="script"?r=Zs.SCRIPT:e==="scriptscript"&&(r=Zs.SCRIPTSCRIPT),r},pft=(e,t)=>{var r=W7n(e.size,t.style),a=r.fracNum(),s=r.fracDen(),o;o=t.havingStyle(a);var u=Yc(e.numer,o,t);if(e.continued){var h=8.5/t.fontMetrics().ptPerEm,f=3.5/t.fontMetrics().ptPerEm;u.height=u.height0?S=3*_:S=7*_,C=t.fontMetrics().denom1):(b>0?(w=t.fontMetrics().num2,S=_):(w=t.fontMetrics().num3,S=3*_),C=t.fontMetrics().denom2);var A;if(m){var I=t.fontMetrics().axisHeight;w-u.depth-(I+.5*b){var r=new xi.MathNode("mfrac",[Ph(e.numer,t),Ph(e.denom,t)]);if(!e.hasBarLine)r.setAttribute("linethickness","0px");else if(e.barSize){var a=kf(e.barSize,t);r.setAttribute("linethickness",Xi(a))}var s=W7n(e.size,t.style);if(s.size!==t.style.size){r=new xi.MathNode("mstyle",[r]);var o=s.size===Zs.DISPLAY.size?"true":"false";r.setAttribute("displaystyle",o),r.setAttribute("scriptlevel","0")}if(e.leftDelim!=null||e.rightDelim!=null){var u=[];if(e.leftDelim!=null){var h=new xi.MathNode("mo",[new xi.TextNode(e.leftDelim.replace("\\",""))]);h.setAttribute("fence","true"),u.push(h)}if(u.push(r),e.rightDelim!=null){var f=new xi.MathNode("mo",[new xi.TextNode(e.rightDelim.replace("\\",""))]);f.setAttribute("fence","true"),u.push(f)}return aft(u)}return r};pa({type:"genfrac",names:["\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],props:{numArgs:2,allowedInArgument:!0},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0],o=t[1],u,h=null,f=null,p="auto";switch(a){case"\\dfrac":case"\\frac":case"\\tfrac":u=!0;break;case"\\\\atopfrac":u=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":u=!1,h="(",f=")";break;case"\\\\bracefrac":u=!1,h="\\{",f="\\}";break;case"\\\\brackfrac":u=!1,h="[",f="]";break;default:throw new Error("Unrecognized genfrac command")}switch(a){case"\\dfrac":case"\\dbinom":p="display";break;case"\\tfrac":case"\\tbinom":p="text";break}return{type:"genfrac",mode:r.mode,continued:!1,numer:s,denom:o,hasBarLine:u,leftDelim:h,rightDelim:f,size:p,barSize:null}},htmlBuilder:pft,mathmlBuilder:gft});pa({type:"genfrac",names:["\\cfrac"],props:{numArgs:2},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0],o=t[1];return{type:"genfrac",mode:r.mode,continued:!0,numer:s,denom:o,hasBarLine:!0,leftDelim:null,rightDelim:null,size:"display",barSize:null}}});pa({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],props:{numArgs:0,infix:!0},handler(e){var{parser:t,funcName:r,token:a}=e,s;switch(r){case"\\over":s="\\frac";break;case"\\choose":s="\\binom";break;case"\\atop":s="\\\\atopfrac";break;case"\\brace":s="\\\\bracefrac";break;case"\\brack":s="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:t.mode,replaceWith:s,token:a}}});var c0n=["display","text","script","scriptscript"],u0n=function(t){var r=null;return t.length>0&&(r=t,r=r==="."?null:r),r};pa({type:"genfrac",names:["\\genfrac"],props:{numArgs:6,allowedInArgument:!0,argTypes:["math","math","size","text","math","math"]},handler(e,t){var{parser:r}=e,a=t[4],s=t[5],o=PSe(t[0]),u=o.type==="atom"&&o.family==="open"?u0n(o.text):null,h=PSe(t[1]),f=h.type==="atom"&&h.family==="close"?u0n(h.text):null,p=El(t[2],"size"),m,b=null;p.isBlank?m=!0:(b=p.value,m=b.number>0);var _="auto",w=t[3];if(w.type==="ordgroup"){if(w.body.length>0){var S=El(w.body[0],"textord");_=c0n[Number(S.text)]}}else w=El(w,"textord"),_=c0n[Number(w.text)];return{type:"genfrac",mode:r.mode,numer:a,denom:s,continued:!1,hasBarLine:m,barSize:b,leftDelim:u,rightDelim:f,size:_}},htmlBuilder:pft,mathmlBuilder:gft});pa({type:"infix",names:["\\above"],props:{numArgs:1,argTypes:["size"],infix:!0},handler(e,t){var{parser:r,funcName:a,token:s}=e;return{type:"infix",mode:r.mode,replaceWith:"\\\\abovefrac",size:El(t[0],"size").value,token:s}}});pa({type:"genfrac",names:["\\\\abovefrac"],props:{numArgs:3,argTypes:["math","size","math"]},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0],o=m$r(El(t[1],"infix").size),u=t[2],h=o.number>0;return{type:"genfrac",mode:r.mode,numer:s,denom:u,continued:!1,hasBarLine:h,barSize:o,leftDelim:null,rightDelim:null,size:"auto"}},htmlBuilder:pft,mathmlBuilder:gft});var K7n=(e,t)=>{var r=t.style,a,s;e.type==="supsub"?(a=e.sup?Yc(e.sup,t.havingStyle(r.sup()),t):Yc(e.sub,t.havingStyle(r.sub()),t),s=El(e.base,"horizBrace")):s=El(e,"horizBrace");var o=Yc(s.base,t.havingBaseStyle(Zs.DISPLAY)),u=Z7.svgSpan(s,t),h;if(s.isOver?(h=Jn.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:o},{type:"kern",size:.1},{type:"elem",elem:u}]},t),h.children[0].children[0].children[1].classes.push("svg-align")):(h=Jn.makeVList({positionType:"bottom",positionData:o.depth+.1+u.height,children:[{type:"elem",elem:u},{type:"kern",size:.1},{type:"elem",elem:o}]},t),h.children[0].children[0].children[0].classes.push("svg-align")),a){var f=Jn.makeSpan(["mord",s.isOver?"mover":"munder"],[h],t);s.isOver?h=Jn.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:f},{type:"kern",size:.2},{type:"elem",elem:a}]},t):h=Jn.makeVList({positionType:"bottom",positionData:f.depth+.2+a.height+a.depth,children:[{type:"elem",elem:a},{type:"kern",size:.2},{type:"elem",elem:f}]},t)}return Jn.makeSpan(["mord",s.isOver?"mover":"munder"],[h],t)},UUr=(e,t)=>{var r=Z7.mathMLnode(e.label);return new xi.MathNode(e.isOver?"mover":"munder",[Ph(e.base,t),r])};pa({type:"horizBrace",names:["\\overbrace","\\underbrace"],props:{numArgs:1},handler(e,t){var{parser:r,funcName:a}=e;return{type:"horizBrace",mode:r.mode,label:a,isOver:/^\\over/.test(a),base:t[0]}},htmlBuilder:K7n,mathmlBuilder:UUr});pa({type:"href",names:["\\href"],props:{numArgs:2,argTypes:["url","original"],allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=t[1],s=El(t[0],"url").url;return r.settings.isTrusted({command:"\\href",url:s})?{type:"href",mode:r.mode,href:s,body:X0(a)}:r.formatUnsupportedCmd("\\href")},htmlBuilder:(e,t)=>{var r=Op(e.body,t,!1);return Jn.makeAnchor(e.href,[],r,t)},mathmlBuilder:(e,t)=>{var r=qO(e.body,t);return r instanceof Iw||(r=new Iw("mrow",[r])),r.setAttribute("href",e.href),r}});pa({type:"href",names:["\\url"],props:{numArgs:1,argTypes:["url"],allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=El(t[0],"url").url;if(!r.settings.isTrusted({command:"\\url",url:a}))return r.formatUnsupportedCmd("\\url");for(var s=[],o=0;o{var{parser:r,funcName:a,token:s}=e,o=El(t[0],"raw").string,u=t[1];r.settings.strict&&r.settings.reportNonstrict("htmlExtension","HTML extension is disabled on strict mode");var h,f={};switch(a){case"\\htmlClass":f.class=o,h={command:"\\htmlClass",class:o};break;case"\\htmlId":f.id=o,h={command:"\\htmlId",id:o};break;case"\\htmlStyle":f.style=o,h={command:"\\htmlStyle",style:o};break;case"\\htmlData":{for(var p=o.split(","),m=0;m{var r=Op(e.body,t,!1),a=["enclosing"];e.attributes.class&&a.push(...e.attributes.class.trim().split(/\s+/));var s=Jn.makeSpan(a,r,t);for(var o in e.attributes)o!=="class"&&e.attributes.hasOwnProperty(o)&&s.setAttribute(o,e.attributes[o]);return s},mathmlBuilder:(e,t)=>qO(e.body,t)});pa({type:"htmlmathml",names:["\\html@mathml"],props:{numArgs:2,allowedInText:!0},handler:(e,t)=>{var{parser:r}=e;return{type:"htmlmathml",mode:r.mode,html:X0(t[0]),mathml:X0(t[1])}},htmlBuilder:(e,t)=>{var r=Op(e.html,t,!1);return Jn.makeFragment(r)},mathmlBuilder:(e,t)=>qO(e.mathml,t)});var VXe=function(t){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(t))return{number:+t,unit:"bp"};var r=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(t);if(!r)throw new Bi("Invalid size: '"+t+"' in \\includegraphics");var a={number:+(r[1]+r[2]),unit:r[3]};if(!p7n(a))throw new Bi("Invalid unit: '"+a.unit+"' in \\includegraphics.");return a};pa({type:"includegraphics",names:["\\includegraphics"],props:{numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1},handler:(e,t,r)=>{var{parser:a}=e,s={number:0,unit:"em"},o={number:.9,unit:"em"},u={number:0,unit:"em"},h="";if(r[0])for(var f=El(r[0],"raw").string,p=f.split(","),m=0;m{var r=kf(e.height,t),a=0;e.totalheight.number>0&&(a=kf(e.totalheight,t)-r);var s=0;e.width.number>0&&(s=kf(e.width,t));var o={height:Xi(r+a)};s>0&&(o.width=Xi(s)),a>0&&(o.verticalAlign=Xi(-a));var u=new U$r(e.src,e.alt,o);return u.height=r,u.depth=a,u},mathmlBuilder:(e,t)=>{var r=new xi.MathNode("mglyph",[]);r.setAttribute("alt",e.alt);var a=kf(e.height,t),s=0;if(e.totalheight.number>0&&(s=kf(e.totalheight,t)-a,r.setAttribute("valign",Xi(-s))),r.setAttribute("height",Xi(a+s)),e.width.number>0){var o=kf(e.width,t);r.setAttribute("width",Xi(o))}return r.setAttribute("src",e.src),r}});pa({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],props:{numArgs:1,argTypes:["size"],primitive:!0,allowedInText:!0},handler(e,t){var{parser:r,funcName:a}=e,s=El(t[0],"size");if(r.settings.strict){var o=a[1]==="m",u=s.value.unit==="mu";o?(u||r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+a+" supports only mu units, "+("not "+s.value.unit+" units")),r.mode!=="math"&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+a+" works only in math mode")):u&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+a+" doesn't support mu units")}return{type:"kern",mode:r.mode,dimension:s.value}},htmlBuilder(e,t){return Jn.makeGlue(e.dimension,t)},mathmlBuilder(e,t){var r=kf(e.dimension,t);return new xi.SpaceNode(r)}});pa({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0];return{type:"lap",mode:r.mode,alignment:a.slice(5),body:s}},htmlBuilder:(e,t)=>{var r;e.alignment==="clap"?(r=Jn.makeSpan([],[Yc(e.body,t)]),r=Jn.makeSpan(["inner"],[r],t)):r=Jn.makeSpan(["inner"],[Yc(e.body,t)]);var a=Jn.makeSpan(["fix"],[]),s=Jn.makeSpan([e.alignment],[r,a],t),o=Jn.makeSpan(["strut"]);return o.style.height=Xi(s.height+s.depth),s.depth&&(o.style.verticalAlign=Xi(-s.depth)),s.children.unshift(o),s=Jn.makeSpan(["thinbox"],[s],t),Jn.makeSpan(["mord","vbox"],[s],t)},mathmlBuilder:(e,t)=>{var r=new xi.MathNode("mpadded",[Ph(e.body,t)]);if(e.alignment!=="rlap"){var a=e.alignment==="llap"?"-1":"-0.5";r.setAttribute("lspace",a+"width")}return r.setAttribute("width","0px"),r}});pa({type:"styling",names:["\\(","$"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){var{funcName:r,parser:a}=e,s=a.mode;a.switchMode("math");var o=r==="\\("?"\\)":"$",u=a.parseExpression(!1,o);return a.expect(o),a.switchMode(s),{type:"styling",mode:a.mode,style:"text",body:u}}});pa({type:"text",names:["\\)","\\]"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){throw new Bi("Mismatched "+e.funcName)}});var h0n=(e,t)=>{switch(t.style.size){case Zs.DISPLAY.size:return e.display;case Zs.TEXT.size:return e.text;case Zs.SCRIPT.size:return e.script;case Zs.SCRIPTSCRIPT.size:return e.scriptscript;default:return e.text}};pa({type:"mathchoice",names:["\\mathchoice"],props:{numArgs:4,primitive:!0},handler:(e,t)=>{var{parser:r}=e;return{type:"mathchoice",mode:r.mode,display:X0(t[0]),text:X0(t[1]),script:X0(t[2]),scriptscript:X0(t[3])}},htmlBuilder:(e,t)=>{var r=h0n(e,t),a=Op(r,t,!1);return Jn.makeFragment(a)},mathmlBuilder:(e,t)=>{var r=h0n(e,t);return qO(r,t)}});var X7n=(e,t,r,a,s,o,u)=>{e=Jn.makeSpan([],[e]);var h=r&&uu.isCharacterBox(r),f,p;if(t){var m=Yc(t,a.havingStyle(s.sup()),a);p={elem:m,kern:Math.max(a.fontMetrics().bigOpSpacing1,a.fontMetrics().bigOpSpacing3-m.depth)}}if(r){var b=Yc(r,a.havingStyle(s.sub()),a);f={elem:b,kern:Math.max(a.fontMetrics().bigOpSpacing2,a.fontMetrics().bigOpSpacing4-b.height)}}var _;if(p&&f){var w=a.fontMetrics().bigOpSpacing5+f.elem.height+f.elem.depth+f.kern+e.depth+u;_=Jn.makeVList({positionType:"bottom",positionData:w,children:[{type:"kern",size:a.fontMetrics().bigOpSpacing5},{type:"elem",elem:f.elem,marginLeft:Xi(-o)},{type:"kern",size:f.kern},{type:"elem",elem:e},{type:"kern",size:p.kern},{type:"elem",elem:p.elem,marginLeft:Xi(o)},{type:"kern",size:a.fontMetrics().bigOpSpacing5}]},a)}else if(f){var S=e.height-u;_=Jn.makeVList({positionType:"top",positionData:S,children:[{type:"kern",size:a.fontMetrics().bigOpSpacing5},{type:"elem",elem:f.elem,marginLeft:Xi(-o)},{type:"kern",size:f.kern},{type:"elem",elem:e}]},a)}else if(p){var C=e.depth+u;_=Jn.makeVList({positionType:"bottom",positionData:C,children:[{type:"elem",elem:e},{type:"kern",size:p.kern},{type:"elem",elem:p.elem,marginLeft:Xi(o)},{type:"kern",size:a.fontMetrics().bigOpSpacing5}]},a)}else return e;var A=[_];if(f&&o!==0&&!h){var k=Jn.makeSpan(["mspace"],[],a);k.style.marginRight=Xi(o),A.unshift(k)}return Jn.makeSpan(["mop","op-limits"],A,a)},Q7n=["\\smallint"],xW=(e,t)=>{var r,a,s=!1,o;e.type==="supsub"?(r=e.sup,a=e.sub,o=El(e.base,"op"),s=!0):o=El(e,"op");var u=t.style,h=!1;u.size===Zs.DISPLAY.size&&o.symbol&&!Q7n.includes(o.name)&&(h=!0);var f;if(o.symbol){var p=h?"Size2-Regular":"Size1-Regular",m="";if((o.name==="\\oiint"||o.name==="\\oiiint")&&(m=o.name.slice(1),o.name=m==="oiint"?"\\iint":"\\iiint"),f=Jn.makeSymbol(o.name,p,"math",t,["mop","op-symbol",h?"large-op":"small-op"]),m.length>0){var b=f.italic,_=Jn.staticSvg(m+"Size"+(h?"2":"1"),t);f=Jn.makeVList({positionType:"individualShift",children:[{type:"elem",elem:f,shift:0},{type:"elem",elem:_,shift:h?.08:0}]},t),o.name="\\"+m,f.classes.unshift("mop"),f.italic=b}}else if(o.body){var w=Op(o.body,t,!0);w.length===1&&w[0]instanceof mS?(f=w[0],f.classes[0]="mop"):f=Jn.makeSpan(["mop"],w,t)}else{for(var S=[],C=1;C{var r;if(e.symbol)r=new Iw("mo",[bS(e.name,e.mode)]),Q7n.includes(e.name)&&r.setAttribute("largeop","false");else if(e.body)r=new Iw("mo",o_(e.body,t));else{r=new Iw("mi",[new jC(e.name.slice(1))]);var a=new Iw("mo",[bS("⁡","text")]);e.parentIsSupSub?r=new Iw("mrow",[r,a]):r=T7n([r,a])}return r},zUr={"∏":"\\prod","∐":"\\coprod","∑":"\\sum","⋀":"\\bigwedge","⋁":"\\bigvee","⋂":"\\bigcap","⋃":"\\bigcup","⨀":"\\bigodot","⨁":"\\bigoplus","⨂":"\\bigotimes","⨄":"\\biguplus","⨆":"\\bigsqcup"};pa({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","∏","∐","∑","⋀","⋁","⋂","⋃","⨀","⨁","⨂","⨄","⨆"],props:{numArgs:0},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=a;return s.length===1&&(s=zUr[s]),{type:"op",mode:r.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:s}},htmlBuilder:xW,mathmlBuilder:Ule});pa({type:"op",names:["\\mathop"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{var{parser:r}=e,a=t[0];return{type:"op",mode:r.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:X0(a)}},htmlBuilder:xW,mathmlBuilder:Ule});var GUr={"∫":"\\int","∬":"\\iint","∭":"\\iiint","∮":"\\oint","∯":"\\oiint","∰":"\\oiiint"};pa({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],props:{numArgs:0},handler(e){var{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:xW,mathmlBuilder:Ule});pa({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],props:{numArgs:0},handler(e){var{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:xW,mathmlBuilder:Ule});pa({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","∫","∬","∭","∮","∯","∰"],props:{numArgs:0,allowedInArgument:!0},handler(e){var{parser:t,funcName:r}=e,a=r;return a.length===1&&(a=GUr[a]),{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:a}},htmlBuilder:xW,mathmlBuilder:Ule});var Z7n=(e,t)=>{var r,a,s=!1,o;e.type==="supsub"?(r=e.sup,a=e.sub,o=El(e.base,"operatorname"),s=!0):o=El(e,"operatorname");var u;if(o.body.length>0){for(var h=o.body.map(b=>{var _=b.text;return typeof _=="string"?{type:"textord",mode:b.mode,text:_}:b}),f=Op(h,t.withFont("mathrm"),!0),p=0;p{for(var r=o_(e.body,t.withFont("mathrm")),a=!0,s=0;sm.toText()).join("");r=[new xi.TextNode(h)]}var f=new xi.MathNode("mi",r);f.setAttribute("mathvariant","normal");var p=new xi.MathNode("mo",[bS("⁡","text")]);return e.parentIsSupSub?new xi.MathNode("mrow",[f,p]):xi.newDocumentFragment([f,p])};pa({type:"operatorname",names:["\\operatorname@","\\operatornamewithlimits"],props:{numArgs:1},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0];return{type:"operatorname",mode:r.mode,body:X0(s),alwaysHandleSupSub:a==="\\operatornamewithlimits",limits:!1,parentIsSupSub:!1}},htmlBuilder:Z7n,mathmlBuilder:qUr});ft("\\operatorname","\\@ifstar\\operatornamewithlimits\\operatorname@");m$({type:"ordgroup",htmlBuilder(e,t){return e.semisimple?Jn.makeFragment(Op(e.body,t,!1)):Jn.makeSpan(["mord"],Op(e.body,t,!0),t)},mathmlBuilder(e,t){return qO(e.body,t,!0)}});pa({type:"overline",names:["\\overline"],props:{numArgs:1},handler(e,t){var{parser:r}=e,a=t[0];return{type:"overline",mode:r.mode,body:a}},htmlBuilder(e,t){var r=Yc(e.body,t.havingCrampedStyle()),a=Jn.makeLineSpan("overline-line",t),s=t.fontMetrics().defaultRuleThickness,o=Jn.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r},{type:"kern",size:3*s},{type:"elem",elem:a},{type:"kern",size:s}]},t);return Jn.makeSpan(["mord","overline"],[o],t)},mathmlBuilder(e,t){var r=new xi.MathNode("mo",[new xi.TextNode("‾")]);r.setAttribute("stretchy","true");var a=new xi.MathNode("mover",[Ph(e.body,t),r]);return a.setAttribute("accent","true"),a}});pa({type:"phantom",names:["\\phantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=t[0];return{type:"phantom",mode:r.mode,body:X0(a)}},htmlBuilder:(e,t)=>{var r=Op(e.body,t.withPhantom(),!1);return Jn.makeFragment(r)},mathmlBuilder:(e,t)=>{var r=o_(e.body,t);return new xi.MathNode("mphantom",r)}});pa({type:"hphantom",names:["\\hphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=t[0];return{type:"hphantom",mode:r.mode,body:a}},htmlBuilder:(e,t)=>{var r=Jn.makeSpan([],[Yc(e.body,t.withPhantom())]);if(r.height=0,r.depth=0,r.children)for(var a=0;a{var r=o_(X0(e.body),t),a=new xi.MathNode("mphantom",r),s=new xi.MathNode("mpadded",[a]);return s.setAttribute("height","0px"),s.setAttribute("depth","0px"),s}});pa({type:"vphantom",names:["\\vphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=t[0];return{type:"vphantom",mode:r.mode,body:a}},htmlBuilder:(e,t)=>{var r=Jn.makeSpan(["inner"],[Yc(e.body,t.withPhantom())]),a=Jn.makeSpan(["fix"],[]);return Jn.makeSpan(["mord","rlap"],[r,a],t)},mathmlBuilder:(e,t)=>{var r=o_(X0(e.body),t),a=new xi.MathNode("mphantom",r),s=new xi.MathNode("mpadded",[a]);return s.setAttribute("width","0px"),s}});pa({type:"raisebox",names:["\\raisebox"],props:{numArgs:2,argTypes:["size","hbox"],allowedInText:!0},handler(e,t){var{parser:r}=e,a=El(t[0],"size").value,s=t[1];return{type:"raisebox",mode:r.mode,dy:a,body:s}},htmlBuilder(e,t){var r=Yc(e.body,t),a=kf(e.dy,t);return Jn.makeVList({positionType:"shift",positionData:-a,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){var r=new xi.MathNode("mpadded",[Ph(e.body,t)]),a=e.dy.number+e.dy.unit;return r.setAttribute("voffset",a),r}});pa({type:"internal",names:["\\relax"],props:{numArgs:0,allowedInText:!0,allowedInArgument:!0},handler(e){var{parser:t}=e;return{type:"internal",mode:t.mode}}});pa({type:"rule",names:["\\rule"],props:{numArgs:2,numOptionalArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["size","size","size"]},handler(e,t,r){var{parser:a}=e,s=r[0],o=El(t[0],"size"),u=El(t[1],"size");return{type:"rule",mode:a.mode,shift:s&&El(s,"size").value,width:o.value,height:u.value}},htmlBuilder(e,t){var r=Jn.makeSpan(["mord","rule"],[],t),a=kf(e.width,t),s=kf(e.height,t),o=e.shift?kf(e.shift,t):0;return r.style.borderRightWidth=Xi(a),r.style.borderTopWidth=Xi(s),r.style.bottom=Xi(o),r.width=a,r.height=s+o,r.depth=-o,r.maxFontSize=s*1.125*t.sizeMultiplier,r},mathmlBuilder(e,t){var r=kf(e.width,t),a=kf(e.height,t),s=e.shift?kf(e.shift,t):0,o=t.color&&t.getColor()||"black",u=new xi.MathNode("mspace");u.setAttribute("mathbackground",o),u.setAttribute("width",Xi(r)),u.setAttribute("height",Xi(a));var h=new xi.MathNode("mpadded",[u]);return s>=0?h.setAttribute("height",Xi(s)):(h.setAttribute("height",Xi(s)),h.setAttribute("depth",Xi(-s))),h.setAttribute("voffset",Xi(s)),h}});function J7n(e,t,r){for(var a=Op(e,t,!1),s=t.sizeMultiplier/r.sizeMultiplier,o=0;o{var r=t.havingSize(e.size);return J7n(e.body,r,t)};pa({type:"sizing",names:d0n,props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{var{breakOnTokenText:r,funcName:a,parser:s}=e,o=s.parseExpression(!1,r);return{type:"sizing",mode:s.mode,size:d0n.indexOf(a)+1,body:o}},htmlBuilder:HUr,mathmlBuilder:(e,t)=>{var r=t.havingSize(e.size),a=o_(e.body,r),s=new xi.MathNode("mstyle",a);return s.setAttribute("mathsize",Xi(r.sizeMultiplier)),s}});pa({type:"smash",names:["\\smash"],props:{numArgs:1,numOptionalArgs:1,allowedInText:!0},handler:(e,t,r)=>{var{parser:a}=e,s=!1,o=!1,u=r[0]&&El(r[0],"ordgroup");if(u)for(var h="",f=0;f{var r=Jn.makeSpan([],[Yc(e.body,t)]);if(!e.smashHeight&&!e.smashDepth)return r;if(e.smashHeight&&(r.height=0,r.children))for(var a=0;a{var r=new xi.MathNode("mpadded",[Ph(e.body,t)]);return e.smashHeight&&r.setAttribute("height","0px"),e.smashDepth&&r.setAttribute("depth","0px"),r}});pa({type:"sqrt",names:["\\sqrt"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){var{parser:a}=e,s=r[0],o=t[0];return{type:"sqrt",mode:a.mode,body:o,index:s}},htmlBuilder(e,t){var r=Yc(e.body,t.havingCrampedStyle());r.height===0&&(r.height=t.fontMetrics().xHeight),r=Jn.wrapFragment(r,t);var a=t.fontMetrics(),s=a.defaultRuleThickness,o=s;t.style.idr.height+r.depth+u&&(u=(u+b-r.height-r.depth)/2);var _=f.height-r.height-u-p;r.style.paddingLeft=Xi(m);var w=Jn.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r,wrapperClasses:["svg-align"]},{type:"kern",size:-(r.height+_)},{type:"elem",elem:f},{type:"kern",size:p}]},t);if(e.index){var S=t.havingStyle(Zs.SCRIPTSCRIPT),C=Yc(e.index,S,t),A=.6*(w.height-w.depth),k=Jn.makeVList({positionType:"shift",positionData:-A,children:[{type:"elem",elem:C}]},t),I=Jn.makeSpan(["root"],[k]);return Jn.makeSpan(["mord","sqrt"],[I,w],t)}else return Jn.makeSpan(["mord","sqrt"],[w],t)},mathmlBuilder(e,t){var{body:r,index:a}=e;return a?new xi.MathNode("mroot",[Ph(r,t),Ph(a,t)]):new xi.MathNode("msqrt",[Ph(r,t)])}});var f0n={display:Zs.DISPLAY,text:Zs.TEXT,script:Zs.SCRIPT,scriptscript:Zs.SCRIPTSCRIPT};pa({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e,t){var{breakOnTokenText:r,funcName:a,parser:s}=e,o=s.parseExpression(!0,r),u=a.slice(1,a.length-5);return{type:"styling",mode:s.mode,style:u,body:o}},htmlBuilder(e,t){var r=f0n[e.style],a=t.havingStyle(r).withFont("");return J7n(e.body,a,t)},mathmlBuilder(e,t){var r=f0n[e.style],a=t.havingStyle(r),s=o_(e.body,a),o=new xi.MathNode("mstyle",s),u={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]},h=u[e.style];return o.setAttribute("scriptlevel",h[0]),o.setAttribute("displaystyle",h[1]),o}});var VUr=function(t,r){var a=t.base;if(a)if(a.type==="op"){var s=a.limits&&(r.style.size===Zs.DISPLAY.size||a.alwaysHandleSupSub);return s?xW:null}else if(a.type==="operatorname"){var o=a.alwaysHandleSupSub&&(r.style.size===Zs.DISPLAY.size||a.limits);return o?Z7n:null}else{if(a.type==="accent")return uu.isCharacterBox(a.base)?lft:null;if(a.type==="horizBrace"){var u=!t.sub;return u===a.isOver?K7n:null}else return null}else return null};m$({type:"supsub",htmlBuilder(e,t){var r=VUr(e,t);if(r)return r(e,t);var{base:a,sup:s,sub:o}=e,u=Yc(a,t),h,f,p=t.fontMetrics(),m=0,b=0,_=a&&uu.isCharacterBox(a);if(s){var w=t.havingStyle(t.style.sup());h=Yc(s,w,t),_||(m=u.height-w.fontMetrics().supDrop*w.sizeMultiplier/t.sizeMultiplier)}if(o){var S=t.havingStyle(t.style.sub());f=Yc(o,S,t),_||(b=u.depth+S.fontMetrics().subDrop*S.sizeMultiplier/t.sizeMultiplier)}var C;t.style===Zs.DISPLAY?C=p.sup1:t.style.cramped?C=p.sup3:C=p.sup2;var A=t.sizeMultiplier,k=Xi(.5/p.ptPerEm/A),I=null;if(f){var N=e.base&&e.base.type==="op"&&e.base.name&&(e.base.name==="\\oiint"||e.base.name==="\\oiiint");(u instanceof mS||N)&&(I=Xi(-u.italic))}var L;if(h&&f){m=Math.max(m,C,h.depth+.25*p.xHeight),b=Math.max(b,p.sub2);var P=p.defaultRuleThickness,M=4*P;if(m-h.depth-(f.height-b)0&&(m+=F,b-=F)}var U=[{type:"elem",elem:f,shift:b,marginRight:k,marginLeft:I},{type:"elem",elem:h,shift:-m,marginRight:k}];L=Jn.makeVList({positionType:"individualShift",children:U},t)}else if(f){b=Math.max(b,p.sub1,f.height-.8*p.xHeight);var $=[{type:"elem",elem:f,marginLeft:I,marginRight:k}];L=Jn.makeVList({positionType:"shift",positionData:b,children:$},t)}else if(h)m=Math.max(m,C,h.depth+.25*p.xHeight),L=Jn.makeVList({positionType:"shift",positionData:-m,children:[{type:"elem",elem:h,marginRight:k}]},t);else throw new Error("supsub must have either sup or sub.");var G=xst(u,"right")||"mord";return Jn.makeSpan([G],[u,Jn.makeSpan(["msupsub"],[L])],t)},mathmlBuilder(e,t){var r=!1,a,s;e.base&&e.base.type==="horizBrace"&&(s=!!e.sup,s===e.base.isOver&&(r=!0,a=e.base.isOver)),e.base&&(e.base.type==="op"||e.base.type==="operatorname")&&(e.base.parentIsSupSub=!0);var o=[Ph(e.base,t)];e.sub&&o.push(Ph(e.sub,t)),e.sup&&o.push(Ph(e.sup,t));var u;if(r)u=a?"mover":"munder";else if(e.sub)if(e.sup){var p=e.base;p&&p.type==="op"&&p.limits&&t.style===Zs.DISPLAY||p&&p.type==="operatorname"&&p.alwaysHandleSupSub&&(t.style===Zs.DISPLAY||p.limits)?u="munderover":u="msubsup"}else{var f=e.base;f&&f.type==="op"&&f.limits&&(t.style===Zs.DISPLAY||f.alwaysHandleSupSub)||f&&f.type==="operatorname"&&f.alwaysHandleSupSub&&(f.limits||t.style===Zs.DISPLAY)?u="munder":u="msub"}else{var h=e.base;h&&h.type==="op"&&h.limits&&(t.style===Zs.DISPLAY||h.alwaysHandleSupSub)||h&&h.type==="operatorname"&&h.alwaysHandleSupSub&&(h.limits||t.style===Zs.DISPLAY)?u="mover":u="msup"}return new xi.MathNode(u,o)}});m$({type:"atom",htmlBuilder(e,t){return Jn.mathsym(e.text,e.mode,t,["m"+e.family])},mathmlBuilder(e,t){var r=new xi.MathNode("mo",[bS(e.text,e.mode)]);if(e.family==="bin"){var a=sft(e,t);a==="bold-italic"&&r.setAttribute("mathvariant",a)}else e.family==="punct"?r.setAttribute("separator","true"):(e.family==="open"||e.family==="close")&&r.setAttribute("stretchy","false");return r}});var eRn={mi:"italic",mn:"normal",mtext:"normal"};m$({type:"mathord",htmlBuilder(e,t){return Jn.makeOrd(e,t,"mathord")},mathmlBuilder(e,t){var r=new xi.MathNode("mi",[bS(e.text,e.mode,t)]),a=sft(e,t)||"italic";return a!==eRn[r.type]&&r.setAttribute("mathvariant",a),r}});m$({type:"textord",htmlBuilder(e,t){return Jn.makeOrd(e,t,"textord")},mathmlBuilder(e,t){var r=bS(e.text,e.mode,t),a=sft(e,t)||"normal",s;return e.mode==="text"?s=new xi.MathNode("mtext",[r]):/[0-9]/.test(e.text)?s=new xi.MathNode("mn",[r]):e.text==="\\prime"?s=new xi.MathNode("mo",[r]):s=new xi.MathNode("mi",[r]),a!==eRn[s.type]&&s.setAttribute("mathvariant",a),s}});var YXe={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},jXe={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};m$({type:"spacing",htmlBuilder(e,t){if(jXe.hasOwnProperty(e.text)){var r=jXe[e.text].className||"";if(e.mode==="text"){var a=Jn.makeOrd(e,t,"textord");return a.classes.push(r),a}else return Jn.makeSpan(["mspace",r],[Jn.mathsym(e.text,e.mode,t)],t)}else{if(YXe.hasOwnProperty(e.text))return Jn.makeSpan(["mspace",YXe[e.text]],[],t);throw new Bi('Unknown type of space "'+e.text+'"')}},mathmlBuilder(e,t){var r;if(jXe.hasOwnProperty(e.text))r=new xi.MathNode("mtext",[new xi.TextNode(" ")]);else{if(YXe.hasOwnProperty(e.text))return new xi.MathNode("mspace");throw new Bi('Unknown type of space "'+e.text+'"')}return r}});var p0n=()=>{var e=new xi.MathNode("mtd",[]);return e.setAttribute("width","50%"),e};m$({type:"tag",mathmlBuilder(e,t){var r=new xi.MathNode("mtable",[new xi.MathNode("mtr",[p0n(),new xi.MathNode("mtd",[qO(e.body,t)]),p0n(),new xi.MathNode("mtd",[qO(e.tag,t)])])]);return r.setAttribute("width","100%"),r}});var g0n={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},m0n={"\\textbf":"textbf","\\textmd":"textmd"},YUr={"\\textit":"textit","\\textup":"textup"},b0n=(e,t)=>{var r=e.font;if(r){if(g0n[r])return t.withTextFontFamily(g0n[r]);if(m0n[r])return t.withTextFontWeight(m0n[r]);if(r==="\\emph")return t.fontShape==="textit"?t.withTextFontShape("textup"):t.withTextFontShape("textit")}else return t;return t.withTextFontShape(YUr[r])};pa({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup","\\emph"],props:{numArgs:1,argTypes:["text"],allowedInArgument:!0,allowedInText:!0},handler(e,t){var{parser:r,funcName:a}=e,s=t[0];return{type:"text",mode:r.mode,body:X0(s),font:a}},htmlBuilder(e,t){var r=b0n(e,t),a=Op(e.body,r,!0);return Jn.makeSpan(["mord","text"],a,r)},mathmlBuilder(e,t){var r=b0n(e,t);return qO(e.body,r)}});pa({type:"underline",names:["\\underline"],props:{numArgs:1,allowedInText:!0},handler(e,t){var{parser:r}=e;return{type:"underline",mode:r.mode,body:t[0]}},htmlBuilder(e,t){var r=Yc(e.body,t),a=Jn.makeLineSpan("underline-line",t),s=t.fontMetrics().defaultRuleThickness,o=Jn.makeVList({positionType:"top",positionData:r.height,children:[{type:"kern",size:s},{type:"elem",elem:a},{type:"kern",size:3*s},{type:"elem",elem:r}]},t);return Jn.makeSpan(["mord","underline"],[o],t)},mathmlBuilder(e,t){var r=new xi.MathNode("mo",[new xi.TextNode("‾")]);r.setAttribute("stretchy","true");var a=new xi.MathNode("munder",[Ph(e.body,t),r]);return a.setAttribute("accentunder","true"),a}});pa({type:"vcenter",names:["\\vcenter"],props:{numArgs:1,argTypes:["original"],allowedInText:!1},handler(e,t){var{parser:r}=e;return{type:"vcenter",mode:r.mode,body:t[0]}},htmlBuilder(e,t){var r=Yc(e.body,t),a=t.fontMetrics().axisHeight,s=.5*(r.height-a-(r.depth+a));return Jn.makeVList({positionType:"shift",positionData:s,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){return new xi.MathNode("mpadded",[Ph(e.body,t)],["vcenter"])}});pa({type:"verb",names:["\\verb"],props:{numArgs:0,allowedInText:!0},handler(e,t,r){throw new Bi("\\verb ended by end of line instead of matching delimiter")},htmlBuilder(e,t){for(var r=y0n(e),a=[],s=t.havingStyle(t.style.text()),o=0;oe.body.replace(/ /g,e.star?"␣":" "),cO=x7n,tRn=`[ \r + ]`,jUr="\\\\[a-zA-Z@]+",WUr="\\\\[^\uD800-\uDFFF]",KUr="("+jUr+")"+tRn+"*",XUr=`\\\\( +|[ \r ]+ +?)[ \r ]*`,Ast="[̀-ͯ]",QUr=new RegExp(Ast+"+$"),ZUr="("+tRn+"+)|"+(XUr+"|")+"([!-\\[\\]-‧‪-퟿豈-￿]"+(Ast+"*")+"|[\uD800-\uDBFF][\uDC00-\uDFFF]"+(Ast+"*")+"|\\\\verb\\*([^]).*?\\4|\\\\verb([^*a-zA-Z]).*?\\5"+("|"+KUr)+("|"+WUr+")");let v0n=class{constructor(t,r){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=t,this.settings=r,this.tokenRegex=new RegExp(ZUr,"g"),this.catcodes={"%":14,"~":13}}setCatcode(t,r){this.catcodes[t]=r}lex(){var t=this.input,r=this.tokenRegex.lastIndex;if(r===t.length)return new Y3("EOF",new Kx(this,r,r));var a=this.tokenRegex.exec(t);if(a===null||a.index!==r)throw new Bi("Unexpected character: '"+t[r]+"'",new Y3(t[r],new Kx(this,r,r+1)));var s=a[6]||a[3]||(a[2]?"\\ ":" ");if(this.catcodes[s]===14){var o=t.indexOf(` +`,this.tokenRegex.lastIndex);return o===-1?(this.tokenRegex.lastIndex=t.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=o+1,this.lex()}return new Y3(s,new Kx(this,r,this.tokenRegex.lastIndex))}},JUr=class{constructor(t,r){t===void 0&&(t={}),r===void 0&&(r={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=r,this.builtins=t,this.undefStack=[]}beginGroup(){this.undefStack.push({})}endGroup(){if(this.undefStack.length===0)throw new Bi("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");var t=this.undefStack.pop();for(var r in t)t.hasOwnProperty(r)&&(t[r]==null?delete this.current[r]:this.current[r]=t[r])}endGroups(){for(;this.undefStack.length>0;)this.endGroup()}has(t){return this.current.hasOwnProperty(t)||this.builtins.hasOwnProperty(t)}get(t){return this.current.hasOwnProperty(t)?this.current[t]:this.builtins[t]}set(t,r,a){if(a===void 0&&(a=!1),a){for(var s=0;s0&&(this.undefStack[this.undefStack.length-1][t]=r)}else{var o=this.undefStack[this.undefStack.length-1];o&&!o.hasOwnProperty(t)&&(o[t]=this.current[t])}r==null?delete this.current[t]:this.current[t]=r}};var ezr=H7n;ft("\\noexpand",function(e){var t=e.popToken();return e.isExpandable(t.text)&&(t.noexpand=!0,t.treatAsRelax=!0),{tokens:[t],numArgs:0}});ft("\\expandafter",function(e){var t=e.popToken();return e.expandOnce(!0),{tokens:[t],numArgs:0}});ft("\\@firstoftwo",function(e){var t=e.consumeArgs(2);return{tokens:t[0],numArgs:0}});ft("\\@secondoftwo",function(e){var t=e.consumeArgs(2);return{tokens:t[1],numArgs:0}});ft("\\@ifnextchar",function(e){var t=e.consumeArgs(3);e.consumeSpaces();var r=e.future();return t[0].length===1&&t[0][0].text===r.text?{tokens:t[1],numArgs:0}:{tokens:t[2],numArgs:0}});ft("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}");ft("\\TextOrMath",function(e){var t=e.consumeArgs(2);return e.mode==="text"?{tokens:t[0],numArgs:0}:{tokens:t[1],numArgs:0}});var _0n={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};ft("\\char",function(e){var t=e.popToken(),r,a="";if(t.text==="'")r=8,t=e.popToken();else if(t.text==='"')r=16,t=e.popToken();else if(t.text==="`")if(t=e.popToken(),t.text[0]==="\\")a=t.text.charCodeAt(1);else{if(t.text==="EOF")throw new Bi("\\char` missing argument");a=t.text.charCodeAt(0)}else r=10;if(r){if(a=_0n[t.text],a==null||a>=r)throw new Bi("Invalid base-"+r+" digit "+t.text);for(var s;(s=_0n[e.future().text])!=null&&s{var s=e.consumeArg().tokens;if(s.length!==1)throw new Bi("\\newcommand's first argument must be a macro name");var o=s[0].text,u=e.isDefined(o);if(u&&!t)throw new Bi("\\newcommand{"+o+"} attempting to redefine "+(o+"; use \\renewcommand"));if(!u&&!r)throw new Bi("\\renewcommand{"+o+"} when command "+o+" does not yet exist; use \\newcommand");var h=0;if(s=e.consumeArg().tokens,s.length===1&&s[0].text==="["){for(var f="",p=e.expandNextToken();p.text!=="]"&&p.text!=="EOF";)f+=p.text,p=e.expandNextToken();if(!f.match(/^\s*[0-9]+\s*$/))throw new Bi("Invalid number of arguments: "+f);h=parseInt(f),s=e.consumeArg().tokens}return u&&a||e.macros.set(o,{tokens:s,numArgs:h}),""};ft("\\newcommand",e=>mft(e,!1,!0,!1));ft("\\renewcommand",e=>mft(e,!0,!1,!1));ft("\\providecommand",e=>mft(e,!0,!0,!0));ft("\\message",e=>{var t=e.consumeArgs(1)[0];return console.log(t.reverse().map(r=>r.text).join("")),""});ft("\\errmessage",e=>{var t=e.consumeArgs(1)[0];return console.error(t.reverse().map(r=>r.text).join("")),""});ft("\\show",e=>{var t=e.popToken(),r=t.text;return console.log(t,e.macros.get(r),cO[r],ed.math[r],ed.text[r]),""});ft("\\bgroup","{");ft("\\egroup","}");ft("~","\\nobreakspace");ft("\\lq","`");ft("\\rq","'");ft("\\aa","\\r a");ft("\\AA","\\r A");ft("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`©}");ft("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}");ft("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`®}");ft("ℬ","\\mathscr{B}");ft("ℰ","\\mathscr{E}");ft("ℱ","\\mathscr{F}");ft("ℋ","\\mathscr{H}");ft("ℐ","\\mathscr{I}");ft("ℒ","\\mathscr{L}");ft("ℳ","\\mathscr{M}");ft("ℛ","\\mathscr{R}");ft("ℭ","\\mathfrak{C}");ft("ℌ","\\mathfrak{H}");ft("ℨ","\\mathfrak{Z}");ft("\\Bbbk","\\Bbb{k}");ft("·","\\cdotp");ft("\\llap","\\mathllap{\\textrm{#1}}");ft("\\rlap","\\mathrlap{\\textrm{#1}}");ft("\\clap","\\mathclap{\\textrm{#1}}");ft("\\mathstrut","\\vphantom{(}");ft("\\underbar","\\underline{\\text{#1}}");ft("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}}{\\char"338}');ft("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`≠}}");ft("\\ne","\\neq");ft("≠","\\neq");ft("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`∉}}");ft("∉","\\notin");ft("≘","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`≘}}");ft("≙","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`≘}}");ft("≚","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`≚}}");ft("≛","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`≛}}");ft("≝","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`≝}}");ft("≞","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`≞}}");ft("≟","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`≟}}");ft("⟂","\\perp");ft("‼","\\mathclose{!\\mkern-0.8mu!}");ft("∌","\\notni");ft("⌜","\\ulcorner");ft("⌝","\\urcorner");ft("⌞","\\llcorner");ft("⌟","\\lrcorner");ft("©","\\copyright");ft("®","\\textregistered");ft("️","\\textregistered");ft("\\ulcorner",'\\html@mathml{\\@ulcorner}{\\mathop{\\char"231c}}');ft("\\urcorner",'\\html@mathml{\\@urcorner}{\\mathop{\\char"231d}}');ft("\\llcorner",'\\html@mathml{\\@llcorner}{\\mathop{\\char"231e}}');ft("\\lrcorner",'\\html@mathml{\\@lrcorner}{\\mathop{\\char"231f}}');ft("\\vdots","{\\varvdots\\rule{0pt}{15pt}}");ft("⋮","\\vdots");ft("\\varGamma","\\mathit{\\Gamma}");ft("\\varDelta","\\mathit{\\Delta}");ft("\\varTheta","\\mathit{\\Theta}");ft("\\varLambda","\\mathit{\\Lambda}");ft("\\varXi","\\mathit{\\Xi}");ft("\\varPi","\\mathit{\\Pi}");ft("\\varSigma","\\mathit{\\Sigma}");ft("\\varUpsilon","\\mathit{\\Upsilon}");ft("\\varPhi","\\mathit{\\Phi}");ft("\\varPsi","\\mathit{\\Psi}");ft("\\varOmega","\\mathit{\\Omega}");ft("\\substack","\\begin{subarray}{c}#1\\end{subarray}");ft("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu\\relax");ft("\\boxed","\\fbox{$\\displaystyle{#1}$}");ft("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;");ft("\\implies","\\DOTSB\\;\\Longrightarrow\\;");ft("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");ft("\\dddot","{\\overset{\\raisebox{-0.1ex}{\\normalsize ...}}{#1}}");ft("\\ddddot","{\\overset{\\raisebox{-0.1ex}{\\normalsize ....}}{#1}}");var w0n={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"};ft("\\dots",function(e){var t="\\dotso",r=e.expandAfterFuture().text;return r in w0n?t=w0n[r]:(r.slice(0,4)==="\\not"||r in ed.math&&["bin","rel"].includes(ed.math[r].group))&&(t="\\dotsb"),t});var bft={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};ft("\\dotso",function(e){var t=e.future().text;return t in bft?"\\ldots\\,":"\\ldots"});ft("\\dotsc",function(e){var t=e.future().text;return t in bft&&t!==","?"\\ldots\\,":"\\ldots"});ft("\\cdots",function(e){var t=e.future().text;return t in bft?"\\@cdots\\,":"\\@cdots"});ft("\\dotsb","\\cdots");ft("\\dotsm","\\cdots");ft("\\dotsi","\\!\\cdots");ft("\\dotsx","\\ldots\\,");ft("\\DOTSI","\\relax");ft("\\DOTSB","\\relax");ft("\\DOTSX","\\relax");ft("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax");ft("\\,","\\tmspace+{3mu}{.1667em}");ft("\\thinspace","\\,");ft("\\>","\\mskip{4mu}");ft("\\:","\\tmspace+{4mu}{.2222em}");ft("\\medspace","\\:");ft("\\;","\\tmspace+{5mu}{.2777em}");ft("\\thickspace","\\;");ft("\\!","\\tmspace-{3mu}{.1667em}");ft("\\negthinspace","\\!");ft("\\negmedspace","\\tmspace-{4mu}{.2222em}");ft("\\negthickspace","\\tmspace-{5mu}{.277em}");ft("\\enspace","\\kern.5em ");ft("\\enskip","\\hskip.5em\\relax");ft("\\quad","\\hskip1em\\relax");ft("\\qquad","\\hskip2em\\relax");ft("\\tag","\\@ifstar\\tag@literal\\tag@paren");ft("\\tag@paren","\\tag@literal{({#1})}");ft("\\tag@literal",e=>{if(e.macros.get("\\df@tag"))throw new Bi("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"});ft("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}");ft("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)");ft("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}");ft("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1");ft("\\newline","\\\\\\relax");ft("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");var nRn=Xi(YC["Main-Regular"][84][1]-.7*YC["Main-Regular"][65][1]);ft("\\LaTeX","\\textrm{\\html@mathml{"+("L\\kern-.36em\\raisebox{"+nRn+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{LaTeX}}");ft("\\KaTeX","\\textrm{\\html@mathml{"+("K\\kern-.17em\\raisebox{"+nRn+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{KaTeX}}");ft("\\hspace","\\@ifstar\\@hspacer\\@hspace");ft("\\@hspace","\\hskip #1\\relax");ft("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax");ft("\\ordinarycolon",":");ft("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}");ft("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}');ft("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}');ft("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}');ft("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}');ft("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}');ft("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}');ft("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}');ft("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}');ft("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}');ft("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}');ft("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}');ft("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}');ft("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}');ft("∷","\\dblcolon");ft("∹","\\eqcolon");ft("≔","\\coloneqq");ft("≕","\\eqqcolon");ft("⩴","\\Coloneqq");ft("\\ratio","\\vcentcolon");ft("\\coloncolon","\\dblcolon");ft("\\colonequals","\\coloneqq");ft("\\coloncolonequals","\\Coloneqq");ft("\\equalscolon","\\eqqcolon");ft("\\equalscoloncolon","\\Eqqcolon");ft("\\colonminus","\\coloneq");ft("\\coloncolonminus","\\Coloneq");ft("\\minuscolon","\\eqcolon");ft("\\minuscoloncolon","\\Eqcolon");ft("\\coloncolonapprox","\\Colonapprox");ft("\\coloncolonsim","\\Colonsim");ft("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}");ft("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}");ft("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}");ft("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}");ft("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`∌}}");ft("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}");ft("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}");ft("\\injlim","\\DOTSB\\operatorname*{inj\\,lim}");ft("\\projlim","\\DOTSB\\operatorname*{proj\\,lim}");ft("\\varlimsup","\\DOTSB\\operatorname*{\\overline{lim}}");ft("\\varliminf","\\DOTSB\\operatorname*{\\underline{lim}}");ft("\\varinjlim","\\DOTSB\\operatorname*{\\underrightarrow{lim}}");ft("\\varprojlim","\\DOTSB\\operatorname*{\\underleftarrow{lim}}");ft("\\gvertneqq","\\html@mathml{\\@gvertneqq}{≩}");ft("\\lvertneqq","\\html@mathml{\\@lvertneqq}{≨}");ft("\\ngeqq","\\html@mathml{\\@ngeqq}{≱}");ft("\\ngeqslant","\\html@mathml{\\@ngeqslant}{≱}");ft("\\nleqq","\\html@mathml{\\@nleqq}{≰}");ft("\\nleqslant","\\html@mathml{\\@nleqslant}{≰}");ft("\\nshortmid","\\html@mathml{\\@nshortmid}{∤}");ft("\\nshortparallel","\\html@mathml{\\@nshortparallel}{∦}");ft("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{⊈}");ft("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{⊉}");ft("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{⊊}");ft("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{⫋}");ft("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{⊋}");ft("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{⫌}");ft("\\imath","\\html@mathml{\\@imath}{ı}");ft("\\jmath","\\html@mathml{\\@jmath}{ȷ}");ft("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`⟦}}");ft("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`⟧}}");ft("⟦","\\llbracket");ft("⟧","\\rrbracket");ft("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`⦃}}");ft("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`⦄}}");ft("⦃","\\lBrace");ft("⦄","\\rBrace");ft("\\minuso","\\mathbin{\\html@mathml{{\\mathrlap{\\mathchoice{\\kern{0.145em}}{\\kern{0.145em}}{\\kern{0.1015em}}{\\kern{0.0725em}}\\circ}{-}}}{\\char`⦵}}");ft("⦵","\\minuso");ft("\\darr","\\downarrow");ft("\\dArr","\\Downarrow");ft("\\Darr","\\Downarrow");ft("\\lang","\\langle");ft("\\rang","\\rangle");ft("\\uarr","\\uparrow");ft("\\uArr","\\Uparrow");ft("\\Uarr","\\Uparrow");ft("\\N","\\mathbb{N}");ft("\\R","\\mathbb{R}");ft("\\Z","\\mathbb{Z}");ft("\\alef","\\aleph");ft("\\alefsym","\\aleph");ft("\\Alpha","\\mathrm{A}");ft("\\Beta","\\mathrm{B}");ft("\\bull","\\bullet");ft("\\Chi","\\mathrm{X}");ft("\\clubs","\\clubsuit");ft("\\cnums","\\mathbb{C}");ft("\\Complex","\\mathbb{C}");ft("\\Dagger","\\ddagger");ft("\\diamonds","\\diamondsuit");ft("\\empty","\\emptyset");ft("\\Epsilon","\\mathrm{E}");ft("\\Eta","\\mathrm{H}");ft("\\exist","\\exists");ft("\\harr","\\leftrightarrow");ft("\\hArr","\\Leftrightarrow");ft("\\Harr","\\Leftrightarrow");ft("\\hearts","\\heartsuit");ft("\\image","\\Im");ft("\\infin","\\infty");ft("\\Iota","\\mathrm{I}");ft("\\isin","\\in");ft("\\Kappa","\\mathrm{K}");ft("\\larr","\\leftarrow");ft("\\lArr","\\Leftarrow");ft("\\Larr","\\Leftarrow");ft("\\lrarr","\\leftrightarrow");ft("\\lrArr","\\Leftrightarrow");ft("\\Lrarr","\\Leftrightarrow");ft("\\Mu","\\mathrm{M}");ft("\\natnums","\\mathbb{N}");ft("\\Nu","\\mathrm{N}");ft("\\Omicron","\\mathrm{O}");ft("\\plusmn","\\pm");ft("\\rarr","\\rightarrow");ft("\\rArr","\\Rightarrow");ft("\\Rarr","\\Rightarrow");ft("\\real","\\Re");ft("\\reals","\\mathbb{R}");ft("\\Reals","\\mathbb{R}");ft("\\Rho","\\mathrm{P}");ft("\\sdot","\\cdot");ft("\\sect","\\S");ft("\\spades","\\spadesuit");ft("\\sub","\\subset");ft("\\sube","\\subseteq");ft("\\supe","\\supseteq");ft("\\Tau","\\mathrm{T}");ft("\\thetasym","\\vartheta");ft("\\weierp","\\wp");ft("\\Zeta","\\mathrm{Z}");ft("\\argmin","\\DOTSB\\operatorname*{arg\\,min}");ft("\\argmax","\\DOTSB\\operatorname*{arg\\,max}");ft("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits");ft("\\bra","\\mathinner{\\langle{#1}|}");ft("\\ket","\\mathinner{|{#1}\\rangle}");ft("\\braket","\\mathinner{\\langle{#1}\\rangle}");ft("\\Bra","\\left\\langle#1\\right|");ft("\\Ket","\\left|#1\\right\\rangle");var rRn=e=>t=>{var r=t.consumeArg().tokens,a=t.consumeArg().tokens,s=t.consumeArg().tokens,o=t.consumeArg().tokens,u=t.macros.get("|"),h=t.macros.get("\\|");t.macros.beginGroup();var f=b=>_=>{e&&(_.macros.set("|",u),s.length&&_.macros.set("\\|",h));var w=b;if(!b&&s.length){var S=_.future();S.text==="|"&&(_.popToken(),w=!0)}return{tokens:w?s:a,numArgs:0}};t.macros.set("|",f(!1)),s.length&&t.macros.set("\\|",f(!0));var p=t.consumeArg().tokens,m=t.expandTokens([...o,...p,...r]);return t.macros.endGroup(),{tokens:m.reverse(),numArgs:0}};ft("\\bra@ket",rRn(!1));ft("\\bra@set",rRn(!0));ft("\\Braket","\\bra@ket{\\left\\langle}{\\,\\middle\\vert\\,}{\\,\\middle\\vert\\,}{\\right\\rangle}");ft("\\Set","\\bra@set{\\left\\{\\:}{\\;\\middle\\vert\\;}{\\;\\middle\\Vert\\;}{\\:\\right\\}}");ft("\\set","\\bra@set{\\{\\,}{\\mid}{}{\\,\\}}");ft("\\angln","{\\angl n}");ft("\\blue","\\textcolor{##6495ed}{#1}");ft("\\orange","\\textcolor{##ffa500}{#1}");ft("\\pink","\\textcolor{##ff00af}{#1}");ft("\\red","\\textcolor{##df0030}{#1}");ft("\\green","\\textcolor{##28ae7b}{#1}");ft("\\gray","\\textcolor{gray}{#1}");ft("\\purple","\\textcolor{##9d38bd}{#1}");ft("\\blueA","\\textcolor{##ccfaff}{#1}");ft("\\blueB","\\textcolor{##80f6ff}{#1}");ft("\\blueC","\\textcolor{##63d9ea}{#1}");ft("\\blueD","\\textcolor{##11accd}{#1}");ft("\\blueE","\\textcolor{##0c7f99}{#1}");ft("\\tealA","\\textcolor{##94fff5}{#1}");ft("\\tealB","\\textcolor{##26edd5}{#1}");ft("\\tealC","\\textcolor{##01d1c1}{#1}");ft("\\tealD","\\textcolor{##01a995}{#1}");ft("\\tealE","\\textcolor{##208170}{#1}");ft("\\greenA","\\textcolor{##b6ffb0}{#1}");ft("\\greenB","\\textcolor{##8af281}{#1}");ft("\\greenC","\\textcolor{##74cf70}{#1}");ft("\\greenD","\\textcolor{##1fab54}{#1}");ft("\\greenE","\\textcolor{##0d923f}{#1}");ft("\\goldA","\\textcolor{##ffd0a9}{#1}");ft("\\goldB","\\textcolor{##ffbb71}{#1}");ft("\\goldC","\\textcolor{##ff9c39}{#1}");ft("\\goldD","\\textcolor{##e07d10}{#1}");ft("\\goldE","\\textcolor{##a75a05}{#1}");ft("\\redA","\\textcolor{##fca9a9}{#1}");ft("\\redB","\\textcolor{##ff8482}{#1}");ft("\\redC","\\textcolor{##f9685d}{#1}");ft("\\redD","\\textcolor{##e84d39}{#1}");ft("\\redE","\\textcolor{##bc2612}{#1}");ft("\\maroonA","\\textcolor{##ffbde0}{#1}");ft("\\maroonB","\\textcolor{##ff92c6}{#1}");ft("\\maroonC","\\textcolor{##ed5fa6}{#1}");ft("\\maroonD","\\textcolor{##ca337c}{#1}");ft("\\maroonE","\\textcolor{##9e034e}{#1}");ft("\\purpleA","\\textcolor{##ddd7ff}{#1}");ft("\\purpleB","\\textcolor{##c6b9fc}{#1}");ft("\\purpleC","\\textcolor{##aa87ff}{#1}");ft("\\purpleD","\\textcolor{##7854ab}{#1}");ft("\\purpleE","\\textcolor{##543b78}{#1}");ft("\\mintA","\\textcolor{##f5f9e8}{#1}");ft("\\mintB","\\textcolor{##edf2df}{#1}");ft("\\mintC","\\textcolor{##e0e5cc}{#1}");ft("\\grayA","\\textcolor{##f6f7f7}{#1}");ft("\\grayB","\\textcolor{##f0f1f2}{#1}");ft("\\grayC","\\textcolor{##e3e5e6}{#1}");ft("\\grayD","\\textcolor{##d6d8da}{#1}");ft("\\grayE","\\textcolor{##babec2}{#1}");ft("\\grayF","\\textcolor{##888d93}{#1}");ft("\\grayG","\\textcolor{##626569}{#1}");ft("\\grayH","\\textcolor{##3b3e40}{#1}");ft("\\grayI","\\textcolor{##21242c}{#1}");ft("\\kaBlue","\\textcolor{##314453}{#1}");ft("\\kaGreen","\\textcolor{##71B307}{#1}");var iRn={"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0};let tzr=class{constructor(t,r,a){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=r,this.expansionCount=0,this.feed(t),this.macros=new JUr(ezr,r.macros),this.mode=a,this.stack=[]}feed(t){this.lexer=new v0n(t,this.settings)}switchMode(t){this.mode=t}beginGroup(){this.macros.beginGroup()}endGroup(){this.macros.endGroup()}endGroups(){this.macros.endGroups()}future(){return this.stack.length===0&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]}popToken(){return this.future(),this.stack.pop()}pushToken(t){this.stack.push(t)}pushTokens(t){this.stack.push(...t)}scanArgument(t){var r,a,s;if(t){if(this.consumeSpaces(),this.future().text!=="[")return null;r=this.popToken(),{tokens:s,end:a}=this.consumeArg(["]"])}else({tokens:s,start:r,end:a}=this.consumeArg());return this.pushToken(new Y3("EOF",a.loc)),this.pushTokens(s),new Y3("",Kx.range(r,a))}consumeSpaces(){for(;;){var t=this.future();if(t.text===" ")this.stack.pop();else break}}consumeArg(t){var r=[],a=t&&t.length>0;a||this.consumeSpaces();var s=this.future(),o,u=0,h=0;do{if(o=this.popToken(),r.push(o),o.text==="{")++u;else if(o.text==="}"){if(--u,u===-1)throw new Bi("Extra }",o)}else if(o.text==="EOF")throw new Bi("Unexpected end of input in a macro argument, expected '"+(t&&a?t[h]:"}")+"'",o);if(t&&a)if((u===0||u===1&&t[h]==="{")&&o.text===t[h]){if(++h,h===t.length){r.splice(-h,h);break}}else h=0}while(u!==0||a);return s.text==="{"&&r[r.length-1].text==="}"&&(r.pop(),r.shift()),r.reverse(),{tokens:r,start:s,end:o}}consumeArgs(t,r){if(r){if(r.length!==t+1)throw new Bi("The length of delimiters doesn't match the number of args!");for(var a=r[0],s=0;sthis.settings.maxExpand)throw new Bi("Too many expansions: infinite loop or need to increase maxExpand setting")}expandOnce(t){var r=this.popToken(),a=r.text,s=r.noexpand?null:this._getExpansion(a);if(s==null||t&&s.unexpandable){if(t&&s==null&&a[0]==="\\"&&!this.isDefined(a))throw new Bi("Undefined control sequence: "+a);return this.pushToken(r),!1}this.countExpansion(1);var o=s.tokens,u=this.consumeArgs(s.numArgs,s.delimiters);if(s.numArgs){o=o.slice();for(var h=o.length-1;h>=0;--h){var f=o[h];if(f.text==="#"){if(h===0)throw new Bi("Incomplete placeholder at end of macro body",f);if(f=o[--h],f.text==="#")o.splice(h+1,1);else if(/^[1-9]$/.test(f.text))o.splice(h,2,...u[+f.text-1]);else throw new Bi("Not a valid argument number",f)}}}return this.pushTokens(o),o.length}expandAfterFuture(){return this.expandOnce(),this.future()}expandNextToken(){for(;;)if(this.expandOnce()===!1){var t=this.stack.pop();return t.treatAsRelax&&(t.text="\\relax"),t}throw new Error}expandMacro(t){return this.macros.has(t)?this.expandTokens([new Y3(t)]):void 0}expandTokens(t){var r=[],a=this.stack.length;for(this.pushTokens(t);this.stack.length>a;)if(this.expandOnce(!0)===!1){var s=this.stack.pop();s.treatAsRelax&&(s.noexpand=!1,s.treatAsRelax=!1),r.push(s)}return this.countExpansion(r.length),r}expandMacroAsText(t){var r=this.expandMacro(t);return r&&r.map(a=>a.text).join("")}_getExpansion(t){var r=this.macros.get(t);if(r==null)return r;if(t.length===1){var a=this.lexer.catcodes[t];if(a!=null&&a!==13)return}var s=typeof r=="function"?r(this):r;if(typeof s=="string"){var o=0;if(s.indexOf("#")!==-1)for(var u=s.replace(/##/g,"");u.indexOf("#"+(o+1))!==-1;)++o;for(var h=new v0n(s,this.settings),f=[],p=h.lex();p.text!=="EOF";)f.push(p),p=h.lex();f.reverse();var m={tokens:f,numArgs:o};return m}return s}isDefined(t){return this.macros.has(t)||cO.hasOwnProperty(t)||ed.math.hasOwnProperty(t)||ed.text.hasOwnProperty(t)||iRn.hasOwnProperty(t)}isExpandable(t){var r=this.macros.get(t);return r!=null?typeof r=="string"||typeof r=="function"||!r.unexpandable:cO.hasOwnProperty(t)&&!cO[t].primitive}};var E0n=/^[₊₋₌₍₎₀₁₂₃₄₅₆₇₈₉ₐₑₕᵢⱼₖₗₘₙₒₚᵣₛₜᵤᵥₓᵦᵧᵨᵩᵪ]/,x_e=Object.freeze({"₊":"+","₋":"-","₌":"=","₍":"(","₎":")","₀":"0","₁":"1","₂":"2","₃":"3","₄":"4","₅":"5","₆":"6","₇":"7","₈":"8","₉":"9","ₐ":"a","ₑ":"e","ₕ":"h","ᵢ":"i","ⱼ":"j","ₖ":"k","ₗ":"l","ₘ":"m","ₙ":"n","ₒ":"o","ₚ":"p","ᵣ":"r","ₛ":"s","ₜ":"t","ᵤ":"u","ᵥ":"v","ₓ":"x","ᵦ":"β","ᵧ":"γ","ᵨ":"ρ","ᵩ":"ϕ","ᵪ":"χ","⁺":"+","⁻":"-","⁼":"=","⁽":"(","⁾":")","⁰":"0","¹":"1","²":"2","³":"3","⁴":"4","⁵":"5","⁶":"6","⁷":"7","⁸":"8","⁹":"9","ᴬ":"A","ᴮ":"B","ᴰ":"D","ᴱ":"E","ᴳ":"G","ᴴ":"H","ᴵ":"I","ᴶ":"J","ᴷ":"K","ᴸ":"L","ᴹ":"M","ᴺ":"N","ᴼ":"O","ᴾ":"P","ᴿ":"R","ᵀ":"T","ᵁ":"U","ⱽ":"V","ᵂ":"W","ᵃ":"a","ᵇ":"b","ᶜ":"c","ᵈ":"d","ᵉ":"e","ᶠ":"f","ᵍ":"g",ʰ:"h","ⁱ":"i",ʲ:"j","ᵏ":"k",ˡ:"l","ᵐ":"m",ⁿ:"n","ᵒ":"o","ᵖ":"p",ʳ:"r",ˢ:"s","ᵗ":"t","ᵘ":"u","ᵛ":"v",ʷ:"w",ˣ:"x",ʸ:"y","ᶻ":"z","ᵝ":"β","ᵞ":"γ","ᵟ":"δ","ᵠ":"ϕ","ᵡ":"χ","ᶿ":"θ"}),WXe={"́":{text:"\\'",math:"\\acute"},"̀":{text:"\\`",math:"\\grave"},"̈":{text:'\\"',math:"\\ddot"},"̃":{text:"\\~",math:"\\tilde"},"̄":{text:"\\=",math:"\\bar"},"̆":{text:"\\u",math:"\\breve"},"̌":{text:"\\v",math:"\\check"},"̂":{text:"\\^",math:"\\hat"},"̇":{text:"\\.",math:"\\dot"},"̊":{text:"\\r",math:"\\mathring"},"̋":{text:"\\H"},"̧":{text:"\\c"}},x0n={á:"á",à:"à",ä:"ä",ǟ:"ǟ",ã:"ã",ā:"ā",ă:"ă",ắ:"ắ",ằ:"ằ",ẵ:"ẵ",ǎ:"ǎ",â:"â",ấ:"ấ",ầ:"ầ",ẫ:"ẫ",ȧ:"ȧ",ǡ:"ǡ",å:"å",ǻ:"ǻ",ḃ:"ḃ",ć:"ć",ḉ:"ḉ",č:"č",ĉ:"ĉ",ċ:"ċ",ç:"ç",ď:"ď",ḋ:"ḋ",ḑ:"ḑ",é:"é",è:"è",ë:"ë",ẽ:"ẽ",ē:"ē",ḗ:"ḗ",ḕ:"ḕ",ĕ:"ĕ",ḝ:"ḝ",ě:"ě",ê:"ê",ế:"ế",ề:"ề",ễ:"ễ",ė:"ė",ȩ:"ȩ",ḟ:"ḟ",ǵ:"ǵ",ḡ:"ḡ",ğ:"ğ",ǧ:"ǧ",ĝ:"ĝ",ġ:"ġ",ģ:"ģ",ḧ:"ḧ",ȟ:"ȟ",ĥ:"ĥ",ḣ:"ḣ",ḩ:"ḩ",í:"í",ì:"ì",ï:"ï",ḯ:"ḯ",ĩ:"ĩ",ī:"ī",ĭ:"ĭ",ǐ:"ǐ",î:"î",ǰ:"ǰ",ĵ:"ĵ",ḱ:"ḱ",ǩ:"ǩ",ķ:"ķ",ĺ:"ĺ",ľ:"ľ",ļ:"ļ",ḿ:"ḿ",ṁ:"ṁ",ń:"ń",ǹ:"ǹ",ñ:"ñ",ň:"ň",ṅ:"ṅ",ņ:"ņ",ó:"ó",ò:"ò",ö:"ö",ȫ:"ȫ",õ:"õ",ṍ:"ṍ",ṏ:"ṏ",ȭ:"ȭ",ō:"ō",ṓ:"ṓ",ṑ:"ṑ",ŏ:"ŏ",ǒ:"ǒ",ô:"ô",ố:"ố",ồ:"ồ",ỗ:"ỗ",ȯ:"ȯ",ȱ:"ȱ",ő:"ő",ṕ:"ṕ",ṗ:"ṗ",ŕ:"ŕ",ř:"ř",ṙ:"ṙ",ŗ:"ŗ",ś:"ś",ṥ:"ṥ",š:"š",ṧ:"ṧ",ŝ:"ŝ",ṡ:"ṡ",ş:"ş",ẗ:"ẗ",ť:"ť",ṫ:"ṫ",ţ:"ţ",ú:"ú",ù:"ù",ü:"ü",ǘ:"ǘ",ǜ:"ǜ",ǖ:"ǖ",ǚ:"ǚ",ũ:"ũ",ṹ:"ṹ",ū:"ū",ṻ:"ṻ",ŭ:"ŭ",ǔ:"ǔ",û:"û",ů:"ů",ű:"ű",ṽ:"ṽ",ẃ:"ẃ",ẁ:"ẁ",ẅ:"ẅ",ŵ:"ŵ",ẇ:"ẇ",ẘ:"ẘ",ẍ:"ẍ",ẋ:"ẋ",ý:"ý",ỳ:"ỳ",ÿ:"ÿ",ỹ:"ỹ",ȳ:"ȳ",ŷ:"ŷ",ẏ:"ẏ",ẙ:"ẙ",ź:"ź",ž:"ž",ẑ:"ẑ",ż:"ż",Á:"Á",À:"À",Ä:"Ä",Ǟ:"Ǟ",Ã:"Ã",Ā:"Ā",Ă:"Ă",Ắ:"Ắ",Ằ:"Ằ",Ẵ:"Ẵ",Ǎ:"Ǎ",Â:"Â",Ấ:"Ấ",Ầ:"Ầ",Ẫ:"Ẫ",Ȧ:"Ȧ",Ǡ:"Ǡ",Å:"Å",Ǻ:"Ǻ",Ḃ:"Ḃ",Ć:"Ć",Ḉ:"Ḉ",Č:"Č",Ĉ:"Ĉ",Ċ:"Ċ",Ç:"Ç",Ď:"Ď",Ḋ:"Ḋ",Ḑ:"Ḑ",É:"É",È:"È",Ë:"Ë",Ẽ:"Ẽ",Ē:"Ē",Ḗ:"Ḗ",Ḕ:"Ḕ",Ĕ:"Ĕ",Ḝ:"Ḝ",Ě:"Ě",Ê:"Ê",Ế:"Ế",Ề:"Ề",Ễ:"Ễ",Ė:"Ė",Ȩ:"Ȩ",Ḟ:"Ḟ",Ǵ:"Ǵ",Ḡ:"Ḡ",Ğ:"Ğ",Ǧ:"Ǧ",Ĝ:"Ĝ",Ġ:"Ġ",Ģ:"Ģ",Ḧ:"Ḧ",Ȟ:"Ȟ",Ĥ:"Ĥ",Ḣ:"Ḣ",Ḩ:"Ḩ",Í:"Í",Ì:"Ì",Ï:"Ï",Ḯ:"Ḯ",Ĩ:"Ĩ",Ī:"Ī",Ĭ:"Ĭ",Ǐ:"Ǐ",Î:"Î",İ:"İ",Ĵ:"Ĵ",Ḱ:"Ḱ",Ǩ:"Ǩ",Ķ:"Ķ",Ĺ:"Ĺ",Ľ:"Ľ",Ļ:"Ļ",Ḿ:"Ḿ",Ṁ:"Ṁ",Ń:"Ń",Ǹ:"Ǹ",Ñ:"Ñ",Ň:"Ň",Ṅ:"Ṅ",Ņ:"Ņ",Ó:"Ó",Ò:"Ò",Ö:"Ö",Ȫ:"Ȫ",Õ:"Õ",Ṍ:"Ṍ",Ṏ:"Ṏ",Ȭ:"Ȭ",Ō:"Ō",Ṓ:"Ṓ",Ṑ:"Ṑ",Ŏ:"Ŏ",Ǒ:"Ǒ",Ô:"Ô",Ố:"Ố",Ồ:"Ồ",Ỗ:"Ỗ",Ȯ:"Ȯ",Ȱ:"Ȱ",Ő:"Ő",Ṕ:"Ṕ",Ṗ:"Ṗ",Ŕ:"Ŕ",Ř:"Ř",Ṙ:"Ṙ",Ŗ:"Ŗ",Ś:"Ś",Ṥ:"Ṥ",Š:"Š",Ṧ:"Ṧ",Ŝ:"Ŝ",Ṡ:"Ṡ",Ş:"Ş",Ť:"Ť",Ṫ:"Ṫ",Ţ:"Ţ",Ú:"Ú",Ù:"Ù",Ü:"Ü",Ǘ:"Ǘ",Ǜ:"Ǜ",Ǖ:"Ǖ",Ǚ:"Ǚ",Ũ:"Ũ",Ṹ:"Ṹ",Ū:"Ū",Ṻ:"Ṻ",Ŭ:"Ŭ",Ǔ:"Ǔ",Û:"Û",Ů:"Ů",Ű:"Ű",Ṽ:"Ṽ",Ẃ:"Ẃ",Ẁ:"Ẁ",Ẅ:"Ẅ",Ŵ:"Ŵ",Ẇ:"Ẇ",Ẍ:"Ẍ",Ẋ:"Ẋ",Ý:"Ý",Ỳ:"Ỳ",Ÿ:"Ÿ",Ỹ:"Ỹ",Ȳ:"Ȳ",Ŷ:"Ŷ",Ẏ:"Ẏ",Ź:"Ź",Ž:"Ž",Ẑ:"Ẑ",Ż:"Ż",ά:"ά",ὰ:"ὰ",ᾱ:"ᾱ",ᾰ:"ᾰ",έ:"έ",ὲ:"ὲ",ή:"ή",ὴ:"ὴ",ί:"ί",ὶ:"ὶ",ϊ:"ϊ",ΐ:"ΐ",ῒ:"ῒ",ῑ:"ῑ",ῐ:"ῐ",ό:"ό",ὸ:"ὸ",ύ:"ύ",ὺ:"ὺ",ϋ:"ϋ",ΰ:"ΰ",ῢ:"ῢ",ῡ:"ῡ",ῠ:"ῠ",ώ:"ώ",ὼ:"ὼ",Ύ:"Ύ",Ὺ:"Ὺ",Ϋ:"Ϋ",Ῡ:"Ῡ",Ῠ:"Ῠ",Ώ:"Ώ",Ὼ:"Ὼ"};let aRn=class sRn{constructor(t,r){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new tzr(t,r,this.mode),this.settings=r,this.leftrightDepth=0}expect(t,r){if(r===void 0&&(r=!0),this.fetch().text!==t)throw new Bi("Expected '"+t+"', got '"+this.fetch().text+"'",this.fetch());r&&this.consume()}consume(){this.nextToken=null}fetch(){return this.nextToken==null&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken}switchMode(t){this.mode=t,this.gullet.switchMode(t)}parse(){this.settings.globalGroup||this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");try{var t=this.parseExpression(!1);return this.expect("EOF"),this.settings.globalGroup||this.gullet.endGroup(),t}finally{this.gullet.endGroups()}}subparse(t){var r=this.nextToken;this.consume(),this.gullet.pushToken(new Y3("}")),this.gullet.pushTokens(t);var a=this.parseExpression(!1);return this.expect("}"),this.nextToken=r,a}parseExpression(t,r){for(var a=[];;){this.mode==="math"&&this.consumeSpaces();var s=this.fetch();if(sRn.endOfExpression.indexOf(s.text)!==-1||r&&s.text===r||t&&cO[s.text]&&cO[s.text].infix)break;var o=this.parseAtom(r);if(o){if(o.type==="internal")continue}else break;a.push(o)}return this.mode==="text"&&this.formLigatures(a),this.handleInfixNodes(a)}handleInfixNodes(t){for(var r=-1,a,s=0;s=0&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+r[0]+'" used in math mode',t);var h=ed[this.mode][r].group,f=Kx.range(t),p;if(q$r.hasOwnProperty(h)){var m=h;p={type:"atom",mode:this.mode,family:m,loc:f,text:r}}else p={type:h,mode:this.mode,loc:f,text:r};u=p}else if(r.charCodeAt(0)>=128)this.settings.strict&&(h7n(r.charCodeAt(0))?this.mode==="math"&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+r[0]+'" used in math mode',t):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+r[0]+'"'+(" ("+r.charCodeAt(0)+")"),t)),u={type:"textord",mode:"text",loc:Kx.range(t),text:r};else return null;if(this.consume(),o)for(var b=0;b{if(o.type!=="declaration")return;const{property:u,value:h}=o;s?t(u,h,o):h&&(r=r||{},r[u]=h)}),r}var tCe={};Object.defineProperty(tCe,"__esModule",{value:!0});tCe.camelCase=void 0;var vzr=/^--[a-zA-Z0-9_-]+$/,_zr=/-([a-z])/g,wzr=/^[^-]+$/,Ezr=/^-(webkit|moz|ms|o|khtml)-/,xzr=/^-(ms)-/,Szr=function(e){return!e||wzr.test(e)||vzr.test(e)},Tzr=function(e,t){return t.toUpperCase()},R0n=function(e,t){return"".concat(t,"-")},Czr=function(e,t){return t===void 0&&(t={}),Szr(e)?e:(e=e.toLowerCase(),t.reactCompat?e=e.replace(xzr,R0n):e=e.replace(Ezr,R0n),e.replace(_zr,Tzr))};tCe.camelCase=Czr;var Azr=ml&&ml.__importDefault||function(e){return e&&e.__esModule?e:{default:e}},kzr=Azr(wft),Rzr=tCe;function kst(e,t){var r={};return!e||typeof e!="string"||(0,kzr.default)(e,function(a,s){a&&s&&(r[(0,Rzr.camelCase)(a,t)]=s)}),r}kst.default=kst;var Izr=kst;function Eft(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var b$=Eft();function fRn(e){b$=e}var Zae={exec:()=>null};function du(e,t=""){let r=typeof e=="string"?e:e.source,a={replace:(s,o)=>{let u=typeof o=="string"?o:o.source;return u=u.replace(Wy.caret,"$1"),r=r.replace(s,u),a},getRegex:()=>new RegExp(r,t)};return a}var Nzr=(()=>{try{return!!new RegExp("(?<=1)(?/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceTabs:/^\t+/,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] +\S/,listReplaceTask:/^\[[ xX]\] +/,listTaskCheckbox:/\[[ xX]\]/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^$/,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")},Ozr=/^(?:[ \t]*(?:\n|$))+/,Lzr=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,Dzr=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,zle=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,Mzr=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,xft=/(?:[*+-]|\d{1,9}[.)])/,pRn=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,gRn=du(pRn).replace(/bull/g,xft).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(),Pzr=du(pRn).replace(/bull/g,xft).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(),Sft=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,Bzr=/^[^\n]+/,Tft=/(?!\s*\])(?:\\[\s\S]|[^\[\]\\])+/,Fzr=du(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",Tft).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),$zr=du(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,xft).getRegex(),nCe="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",Cft=/|$))/,Uzr=du("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|\\n*|$)|\\n*|$)|)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",Cft).replace("tag",nCe).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),mRn=du(Sft).replace("hr",zle).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",")|<(?:script|pre|style|textarea|!--)").replace("tag",nCe).getRegex(),zzr=du(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",mRn).getRegex(),Aft={blockquote:zzr,code:Lzr,def:Fzr,fences:Dzr,heading:Mzr,hr:zle,html:Uzr,lheading:gRn,list:$zr,newline:Ozr,paragraph:mRn,table:Zae,text:Bzr},I0n=du("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",zle).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",")|<(?:script|pre|style|textarea|!--)").replace("tag",nCe).getRegex(),Gzr={...Aft,lheading:Pzr,table:I0n,paragraph:du(Sft).replace("hr",zle).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",I0n).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",nCe).getRegex()},qzr={...Aft,html:du(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",Cft).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:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:Zae,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:du(Sft).replace("hr",zle).replace("heading",` *#{1,6} *[^ +]`).replace("lheading",gRn).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},Hzr=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,Vzr=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,bRn=/^( {2,}|\\)\n(?!\s*$)/,Yzr=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\`+)[^`]+\k(?!`))*?\]\((?:\\[\s\S]|[^\\\(\)]|\((?:\\[\s\S]|[^\\\(\)])*\))*\)/).replace("precode-",Nzr?"(?`+)[^`]+\k(?!`)/).replace("html",/<(?! )[^<>]*?>/).getRegex(),_Rn=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,Qzr=du(_Rn,"u").replace(/punct/g,rCe).getRegex(),Zzr=du(_Rn,"u").replace(/punct/g,vRn).getRegex(),wRn="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",Jzr=du(wRn,"gu").replace(/notPunctSpace/g,yRn).replace(/punctSpace/g,kft).replace(/punct/g,rCe).getRegex(),eGr=du(wRn,"gu").replace(/notPunctSpace/g,Kzr).replace(/punctSpace/g,Wzr).replace(/punct/g,vRn).getRegex(),tGr=du("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,yRn).replace(/punctSpace/g,kft).replace(/punct/g,rCe).getRegex(),nGr=du(/\\(punct)/,"gu").replace(/punct/g,rCe).getRegex(),rGr=du(/^<(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(),iGr=du(Cft).replace("(?:-->|$)","-->").getRegex(),aGr=du("^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^").replace("comment",iGr).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),BSe=/(?:\[(?:\\[\s\S]|[^\[\]\\])*\]|\\[\s\S]|`+[^`]*?`+(?!`)|[^\[\]\\`])*?/,sGr=du(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",BSe).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),ERn=du(/^!?\[(label)\]\[(ref)\]/).replace("label",BSe).replace("ref",Tft).getRegex(),xRn=du(/^!?\[(ref)\](?:\[\])?/).replace("ref",Tft).getRegex(),oGr=du("reflink|nolink(?!\\()","g").replace("reflink",ERn).replace("nolink",xRn).getRegex(),N0n=/[hH][tT][tT][pP][sS]?|[fF][tT][pP]/,Rft={_backpedal:Zae,anyPunctuation:nGr,autolink:rGr,blockSkip:Xzr,br:bRn,code:Vzr,del:Zae,emStrongLDelim:Qzr,emStrongRDelimAst:Jzr,emStrongRDelimUnd:tGr,escape:Hzr,link:sGr,nolink:xRn,punctuation:jzr,reflink:ERn,reflinkSearch:oGr,tag:aGr,text:Yzr,url:Zae},lGr={...Rft,link:du(/^!?\[(label)\]\((.*?)\)/).replace("label",BSe).getRegex(),reflink:du(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",BSe).getRegex()},Rst={...Rft,emStrongRDelimAst:eGr,emStrongLDelim:Zzr,url:du(/^((?:protocol):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/).replace("protocol",N0n).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:du(/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\":">",'"':""","'":"'"},O0n=e=>uGr[e];function r7(e,t){if(t){if(Wy.escapeTest.test(e))return e.replace(Wy.escapeReplace,O0n)}else if(Wy.escapeTestNoEncode.test(e))return e.replace(Wy.escapeReplaceNoEncode,O0n);return e}function L0n(e){try{e=encodeURI(e).replace(Wy.percentDecode,"%")}catch{return null}return e}function D0n(e,t){var o;let r=e.replace(Wy.findPipe,(u,h,f)=>{let p=!1,m=h;for(;--m>=0&&f[m]==="\\";)p=!p;return p?"|":" |"}),a=r.split(Wy.splitPipe),s=0;if(a[0].trim()||a.shift(),a.length>0&&!((o=a.at(-1))!=null&&o.trim())&&a.pop(),t)if(a.length>t)a.splice(t);else for(;a.length0?-2:-1}function M0n(e,t,r,a,s){let o=t.href,u=t.title||null,h=e[1].replace(s.other.outputLinkReplace,"$1");a.state.inLink=!0;let f={type:e[0].charAt(0)==="!"?"image":"link",raw:r,href:o,title:u,text:h,tokens:a.inlineTokens(h)};return a.state.inLink=!1,f}function dGr(e,t,r){let a=e.match(r.other.indentCodeCompensation);if(a===null)return t;let s=a[1];return t.split(` +`).map(o=>{let u=o.match(r.other.beginningSpace);if(u===null)return o;let[h]=u;return h.length>=s.length?o.slice(s.length):o}).join(` +`)}var FSe=class{constructor(t){Gi(this,"options");Gi(this,"rules");Gi(this,"lexer");this.options=t||b$}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 a=r[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:r[0],codeBlockStyle:"indented",text:this.options.pedantic?a:Ere(a,` +`)}}}fences(t){let r=this.rules.block.fences.exec(t);if(r){let a=r[0],s=dGr(a,r[3]||"",this.rules);return{type:"code",raw:a,lang:r[2]?r[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):r[2],text:s}}}heading(t){let r=this.rules.block.heading.exec(t);if(r){let a=r[2].trim();if(this.rules.other.endingHash.test(a)){let s=Ere(a,"#");(this.options.pedantic||!s||this.rules.other.endingSpaceChar.test(s))&&(a=s.trim())}return{type:"heading",raw:r[0],depth:r[1].length,text:a,tokens:this.lexer.inline(a)}}}hr(t){let r=this.rules.block.hr.exec(t);if(r)return{type:"hr",raw:Ere(r[0],` +`)}}blockquote(t){let r=this.rules.block.blockquote.exec(t);if(r){let a=Ere(r[0],` +`).split(` +`),s="",o="",u=[];for(;a.length>0;){let h=!1,f=[],p;for(p=0;p1,h={type:"list",raw:"",ordered:u,start:u?+o.slice(0,-1):"",loose:!1,items:[]};o=u?`\\d{1,9}\\${o.slice(-1)}`:`\\${o}`,this.options.pedantic&&(o=u?o:"[*+-]");let f=this.rules.other.listItemRegex(o),p=!1;for(;t;){let b=!1,_="",w="";if(!(r=f.exec(t))||this.rules.block.hr.test(t))break;_=r[0],t=t.substring(_.length);let S=r[2].split(` +`,1)[0].replace(this.rules.other.listReplaceTabs,I=>" ".repeat(3*I.length)),C=t.split(` +`,1)[0],A=!S.trim(),k=0;if(this.options.pedantic?(k=2,w=S.trimStart()):A?k=r[1].length+1:(k=r[2].search(this.rules.other.nonSpaceChar),k=k>4?1:k,w=S.slice(k),k+=r[1].length),A&&this.rules.other.blankLine.test(C)&&(_+=C+` +`,t=t.substring(C.length+1),b=!0),!b){let I=this.rules.other.nextBulletRegex(k),N=this.rules.other.hrRegex(k),L=this.rules.other.fencesBeginRegex(k),P=this.rules.other.headingBeginRegex(k),M=this.rules.other.htmlBeginRegex(k);for(;t;){let F=t.split(` +`,1)[0],U;if(C=F,this.options.pedantic?(C=C.replace(this.rules.other.listReplaceNesting," "),U=C):U=C.replace(this.rules.other.tabCharGlobal," "),L.test(C)||P.test(C)||M.test(C)||I.test(C)||N.test(C))break;if(U.search(this.rules.other.nonSpaceChar)>=k||!C.trim())w+=` +`+U.slice(k);else{if(A||S.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||L.test(S)||P.test(S)||N.test(S))break;w+=` +`+C}!A&&!C.trim()&&(A=!0),_+=F+` +`,t=t.substring(F.length+1),S=U.slice(k)}}h.loose||(p?h.loose=!0:this.rules.other.doubleBlankLine.test(_)&&(p=!0)),h.items.push({type:"list_item",raw:_,task:!!this.options.gfm&&this.rules.other.listIsTask.test(w),loose:!1,text:w,tokens:[]}),h.raw+=_}let m=h.items.at(-1);if(m)m.raw=m.raw.trimEnd(),m.text=m.text.trimEnd();else return;h.raw=h.raw.trimEnd();for(let b of h.items){if(this.lexer.state.top=!1,b.tokens=this.lexer.blockTokens(b.text,[]),b.task){if(b.text=b.text.replace(this.rules.other.listReplaceTask,""),((a=b.tokens[0])==null?void 0:a.type)==="text"||((s=b.tokens[0])==null?void 0:s.type)==="paragraph"){b.tokens[0].raw=b.tokens[0].raw.replace(this.rules.other.listReplaceTask,""),b.tokens[0].text=b.tokens[0].text.replace(this.rules.other.listReplaceTask,"");for(let w=this.lexer.inlineQueue.length-1;w>=0;w--)if(this.rules.other.listIsTask.test(this.lexer.inlineQueue[w].src)){this.lexer.inlineQueue[w].src=this.lexer.inlineQueue[w].src.replace(this.rules.other.listReplaceTask,"");break}}let _=this.rules.other.listTaskCheckbox.exec(b.raw);if(_){let w={type:"checkbox",raw:_[0]+" ",checked:_[0]!=="[ ]"};b.checked=w.checked,h.loose?b.tokens[0]&&["paragraph","text"].includes(b.tokens[0].type)&&"tokens"in b.tokens[0]&&b.tokens[0].tokens?(b.tokens[0].raw=w.raw+b.tokens[0].raw,b.tokens[0].text=w.raw+b.tokens[0].text,b.tokens[0].tokens.unshift(w)):b.tokens.unshift({type:"paragraph",raw:w.raw,text:w.raw,tokens:[w]}):b.tokens.unshift(w)}}if(!h.loose){let _=b.tokens.filter(S=>S.type==="space"),w=_.length>0&&_.some(S=>this.rules.other.anyLine.test(S.raw));h.loose=w}}if(h.loose)for(let b of h.items){b.loose=!0;for(let _ of b.tokens)_.type==="text"&&(_.type="paragraph")}return h}}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 a=r[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal," "),s=r[2]?r[2].replace(this.rules.other.hrefBrackets,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",o=r[3]?r[3].substring(1,r[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):r[3];return{type:"def",tag:a,raw:r[0],href:s,title:o}}}table(t){var h;let r=this.rules.block.table.exec(t);if(!r||!this.rules.other.tableDelimiter.test(r[2]))return;let a=D0n(r[1]),s=r[2].replace(this.rules.other.tableAlignChars,"").split("|"),o=(h=r[3])!=null&&h.trim()?r[3].replace(this.rules.other.tableRowBlankLine,"").split(` +`):[],u={type:"table",raw:r[0],header:[],align:[],rows:[]};if(a.length===s.length){for(let f of s)this.rules.other.tableAlignRight.test(f)?u.align.push("right"):this.rules.other.tableAlignCenter.test(f)?u.align.push("center"):this.rules.other.tableAlignLeft.test(f)?u.align.push("left"):u.align.push(null);for(let f=0;f({text:p,tokens:this.lexer.inline(p),header:!1,align:u.align[m]})));return u}}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 a=r[1].charAt(r[1].length-1)===` +`?r[1].slice(0,-1):r[1];return{type:"paragraph",raw:r[0],text:a,tokens:this.lexer.inline(a)}}}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 a=r[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(a)){if(!this.rules.other.endAngleBracket.test(a))return;let u=Ere(a.slice(0,-1),"\\");if((a.length-u.length)%2===0)return}else{let u=hGr(r[2],"()");if(u===-2)return;if(u>-1){let h=(r[0].indexOf("!")===0?5:4)+r[1].length+u;r[2]=r[2].substring(0,u),r[0]=r[0].substring(0,h).trim(),r[3]=""}}let s=r[2],o="";if(this.options.pedantic){let u=this.rules.other.pedanticHrefTitle.exec(s);u&&(s=u[1],o=u[3])}else o=r[3]?r[3].slice(1,-1):"";return s=s.trim(),this.rules.other.startAngleBracket.test(s)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(a)?s=s.slice(1):s=s.slice(1,-1)),M0n(r,{href:s&&s.replace(this.rules.inline.anyPunctuation,"$1"),title:o&&o.replace(this.rules.inline.anyPunctuation,"$1")},r[0],this.lexer,this.rules)}}reflink(t,r){let a;if((a=this.rules.inline.reflink.exec(t))||(a=this.rules.inline.nolink.exec(t))){let s=(a[2]||a[1]).replace(this.rules.other.multipleSpaceGlobal," "),o=r[s.toLowerCase()];if(!o){let u=a[0].charAt(0);return{type:"text",raw:u,text:u}}return M0n(a,o,a[0],this.lexer,this.rules)}}emStrong(t,r,a=""){let s=this.rules.inline.emStrongLDelim.exec(t);if(!(!s||s[3]&&a.match(this.rules.other.unicodeAlphaNumeric))&&(!(s[1]||s[2])||!a||this.rules.inline.punctuation.exec(a))){let o=[...s[0]].length-1,u,h,f=o,p=0,m=s[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(m.lastIndex=0,r=r.slice(-1*t.length+o);(s=m.exec(r))!=null;){if(u=s[1]||s[2]||s[3]||s[4]||s[5]||s[6],!u)continue;if(h=[...u].length,s[3]||s[4]){f+=h;continue}else if((s[5]||s[6])&&o%3&&!((o+h)%3)){p+=h;continue}if(f-=h,f>0)continue;h=Math.min(h,h+f+p);let b=[...s[0]][0].length,_=t.slice(0,o+s.index+b+h);if(Math.min(o,h)%2){let S=_.slice(1,-1);return{type:"em",raw:_,text:S,tokens:this.lexer.inlineTokens(S)}}let w=_.slice(2,-2);return{type:"strong",raw:_,text:w,tokens:this.lexer.inlineTokens(w)}}}}codespan(t){let r=this.rules.inline.code.exec(t);if(r){let a=r[2].replace(this.rules.other.newLineCharGlobal," "),s=this.rules.other.nonSpaceChar.test(a),o=this.rules.other.startingSpaceChar.test(a)&&this.rules.other.endingSpaceChar.test(a);return s&&o&&(a=a.substring(1,a.length-1)),{type:"codespan",raw:r[0],text:a}}}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 a,s;return r[2]==="@"?(a=r[1],s="mailto:"+a):(a=r[1],s=a),{type:"link",raw:r[0],text:a,href:s,tokens:[{type:"text",raw:a,text:a}]}}}url(t){var a;let r;if(r=this.rules.inline.url.exec(t)){let s,o;if(r[2]==="@")s=r[0],o="mailto:"+s;else{let u;do u=r[0],r[0]=((a=this.rules.inline._backpedal.exec(r[0]))==null?void 0:a[0])??"";while(u!==r[0]);s=r[0],r[1]==="www."?o="http://"+r[0]:o=r[0]}return{type:"link",raw:r[0],text:s,href:o,tokens:[{type:"text",raw:s,text:s}]}}}inlineText(t){let r=this.rules.inline.text.exec(t);if(r){let a=this.lexer.state.inRawBlock;return{type:"text",raw:r[0],text:r[0],escaped:a}}}},O3=class Ist{constructor(t){Gi(this,"tokens");Gi(this,"options");Gi(this,"state");Gi(this,"inlineQueue");Gi(this,"tokenizer");this.tokens=[],this.tokens.links=Object.create(null),this.options=t||b$,this.options.tokenizer=this.options.tokenizer||new FSe,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:Wy,block:S_e.normal,inline:wre.normal};this.options.pedantic?(r.block=S_e.pedantic,r.inline=wre.pedantic):this.options.gfm&&(r.block=S_e.gfm,this.options.breaks?r.inline=wre.breaks:r.inline=wre.gfm),this.tokenizer.rules=r}static get rules(){return{block:S_e,inline:wre}}static lex(t,r){return new Ist(r).lex(t)}static lexInline(t,r){return new Ist(r).inlineTokens(t)}lex(t){t=t.replace(Wy.carriageReturn,` +`),this.blockTokens(t,this.tokens);for(let r=0;r(h=p.call({lexer:this},t,r))?(t=t.substring(h.raw.length),r.push(h),!0):!1))continue;if(h=this.tokenizer.space(t)){t=t.substring(h.raw.length);let p=r.at(-1);h.raw.length===1&&p!==void 0?p.raw+=` +`:r.push(h);continue}if(h=this.tokenizer.code(t)){t=t.substring(h.raw.length);let p=r.at(-1);(p==null?void 0:p.type)==="paragraph"||(p==null?void 0:p.type)==="text"?(p.raw+=(p.raw.endsWith(` +`)?"":` +`)+h.raw,p.text+=` +`+h.text,this.inlineQueue.at(-1).src=p.text):r.push(h);continue}if(h=this.tokenizer.fences(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.heading(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.hr(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.blockquote(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.list(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.html(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.def(t)){t=t.substring(h.raw.length);let p=r.at(-1);(p==null?void 0:p.type)==="paragraph"||(p==null?void 0:p.type)==="text"?(p.raw+=(p.raw.endsWith(` +`)?"":` +`)+h.raw,p.text+=` +`+h.raw,this.inlineQueue.at(-1).src=p.text):this.tokens.links[h.tag]||(this.tokens.links[h.tag]={href:h.href,title:h.title},r.push(h));continue}if(h=this.tokenizer.table(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.lheading(t)){t=t.substring(h.raw.length),r.push(h);continue}let f=t;if((u=this.options.extensions)!=null&&u.startBlock){let p=1/0,m=t.slice(1),b;this.options.extensions.startBlock.forEach(_=>{b=_.call({lexer:this},m),typeof b=="number"&&b>=0&&(p=Math.min(p,b))}),p<1/0&&p>=0&&(f=t.substring(0,p+1))}if(this.state.top&&(h=this.tokenizer.paragraph(f))){let p=r.at(-1);a&&(p==null?void 0:p.type)==="paragraph"?(p.raw+=(p.raw.endsWith(` +`)?"":` +`)+h.raw,p.text+=` +`+h.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=p.text):r.push(h),a=f.length!==t.length,t=t.substring(h.raw.length);continue}if(h=this.tokenizer.text(t)){t=t.substring(h.raw.length);let p=r.at(-1);(p==null?void 0:p.type)==="text"?(p.raw+=(p.raw.endsWith(` +`)?"":` +`)+h.raw,p.text+=` +`+h.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=p.text):r.push(h);continue}if(t){let p="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(p);break}else throw new Error(p)}}return this.state.top=!0,r}inline(t,r=[]){return this.inlineQueue.push({src:t,tokens:r}),r}inlineTokens(t,r=[]){var f,p,m,b,_;let a=t,s=null;if(this.tokens.links){let w=Object.keys(this.tokens.links);if(w.length>0)for(;(s=this.tokenizer.rules.inline.reflinkSearch.exec(a))!=null;)w.includes(s[0].slice(s[0].lastIndexOf("[")+1,-1))&&(a=a.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+a.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(s=this.tokenizer.rules.inline.anyPunctuation.exec(a))!=null;)a=a.slice(0,s.index)+"++"+a.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);let o;for(;(s=this.tokenizer.rules.inline.blockSkip.exec(a))!=null;)o=s[2]?s[2].length:0,a=a.slice(0,s.index+o)+"["+"a".repeat(s[0].length-o-2)+"]"+a.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);a=((p=(f=this.options.hooks)==null?void 0:f.emStrongMask)==null?void 0:p.call({lexer:this},a))??a;let u=!1,h="";for(;t;){u||(h=""),u=!1;let w;if((b=(m=this.options.extensions)==null?void 0:m.inline)!=null&&b.some(C=>(w=C.call({lexer:this},t,r))?(t=t.substring(w.raw.length),r.push(w),!0):!1))continue;if(w=this.tokenizer.escape(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.tag(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.link(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.reflink(t,this.tokens.links)){t=t.substring(w.raw.length);let C=r.at(-1);w.type==="text"&&(C==null?void 0:C.type)==="text"?(C.raw+=w.raw,C.text+=w.text):r.push(w);continue}if(w=this.tokenizer.emStrong(t,a,h)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.codespan(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.br(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.del(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.autolink(t)){t=t.substring(w.raw.length),r.push(w);continue}if(!this.state.inLink&&(w=this.tokenizer.url(t))){t=t.substring(w.raw.length),r.push(w);continue}let S=t;if((_=this.options.extensions)!=null&&_.startInline){let C=1/0,A=t.slice(1),k;this.options.extensions.startInline.forEach(I=>{k=I.call({lexer:this},A),typeof k=="number"&&k>=0&&(C=Math.min(C,k))}),C<1/0&&C>=0&&(S=t.substring(0,C+1))}if(w=this.tokenizer.inlineText(S)){t=t.substring(w.raw.length),w.raw.slice(-1)!=="_"&&(h=w.raw.slice(-1)),u=!0;let C=r.at(-1);(C==null?void 0:C.type)==="text"?(C.raw+=w.raw,C.text+=w.text):r.push(w);continue}if(t){let C="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(C);break}else throw new Error(C)}}return r}},$Se=class{constructor(t){Gi(this,"options");Gi(this,"parser");this.options=t||b$}space(t){return""}code({text:t,lang:r,escaped:a}){var u;let s=(u=(r||"").match(Wy.notSpaceStart))==null?void 0:u[0],o=t.replace(Wy.endingNewline,"")+` +`;return s?'
'+(a?o:r7(o,!0))+`
+`:"
"+(a?o:r7(o,!0))+`
+`}blockquote({tokens:t}){return`
+${this.parser.parse(t)}
+`}html({text:t}){return t}def(t){return""}heading({tokens:t,depth:r}){return`${this.parser.parseInline(t)} +`}hr(t){return`
+`}list(t){let r=t.ordered,a=t.start,s="";for(let h=0;h +`+s+" +`}listitem(t){return`
  • ${this.parser.parse(t.tokens)}
  • +`}checkbox({checked:t}){return" '}paragraph({tokens:t}){return`

    ${this.parser.parseInline(t)}

    +`}table(t){let r="",a="";for(let o=0;o${s}`),` + +`+r+` +`+s+`
    +`}tablerow({text:t}){return` +${t} +`}tablecell(t){let r=this.parser.parseInline(t.tokens),a=t.header?"th":"td";return(t.align?`<${a} align="${t.align}">`:`<${a}>`)+r+` +`}strong({tokens:t}){return`${this.parser.parseInline(t)}`}em({tokens:t}){return`${this.parser.parseInline(t)}`}codespan({text:t}){return`${r7(t,!0)}`}br(t){return"
    "}del({tokens:t}){return`${this.parser.parseInline(t)}`}link({href:t,title:r,tokens:a}){let s=this.parser.parseInline(a),o=L0n(t);if(o===null)return s;t=o;let u='
    ",u}image({href:t,title:r,text:a,tokens:s}){s&&(a=this.parser.parseInline(s,this.parser.textRenderer));let o=L0n(t);if(o===null)return r7(a);t=o;let u=`${a}{let p=h[f].flat(1/0);a=a.concat(this.walkTokens(p,r))}):h.tokens&&(a=a.concat(this.walkTokens(h.tokens,r)))}}return a}use(...t){let r=this.defaults.extensions||{renderers:{},childTokens:{}};return t.forEach(a=>{let s={...a};if(s.async=this.defaults.async||s.async||!1,a.extensions&&(a.extensions.forEach(o=>{if(!o.name)throw new Error("extension name required");if("renderer"in o){let u=r.renderers[o.name];u?r.renderers[o.name]=function(...h){let f=o.renderer.apply(this,h);return f===!1&&(f=u.apply(this,h)),f}:r.renderers[o.name]=o.renderer}if("tokenizer"in o){if(!o.level||o.level!=="block"&&o.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let u=r[o.level];u?u.unshift(o.tokenizer):r[o.level]=[o.tokenizer],o.start&&(o.level==="block"?r.startBlock?r.startBlock.push(o.start):r.startBlock=[o.start]:o.level==="inline"&&(r.startInline?r.startInline.push(o.start):r.startInline=[o.start]))}"childTokens"in o&&o.childTokens&&(r.childTokens[o.name]=o.childTokens)}),s.extensions=r),a.renderer){let o=this.defaults.renderer||new $Se(this.defaults);for(let u in a.renderer){if(!(u in o))throw new Error(`renderer '${u}' does not exist`);if(["options","parser"].includes(u))continue;let h=u,f=a.renderer[h],p=o[h];o[h]=(...m)=>{let b=f.apply(o,m);return b===!1&&(b=p.apply(o,m)),b||""}}s.renderer=o}if(a.tokenizer){let o=this.defaults.tokenizer||new FSe(this.defaults);for(let u in a.tokenizer){if(!(u in o))throw new Error(`tokenizer '${u}' does not exist`);if(["options","rules","lexer"].includes(u))continue;let h=u,f=a.tokenizer[h],p=o[h];o[h]=(...m)=>{let b=f.apply(o,m);return b===!1&&(b=p.apply(o,m)),b}}s.tokenizer=o}if(a.hooks){let o=this.defaults.hooks||new Tie;for(let u in a.hooks){if(!(u in o))throw new Error(`hook '${u}' does not exist`);if(["options","block"].includes(u))continue;let h=u,f=a.hooks[h],p=o[h];Tie.passThroughHooks.has(u)?o[h]=m=>{if(this.defaults.async&&Tie.passThroughHooksRespectAsync.has(u))return(async()=>{let _=await f.call(o,m);return p.call(o,_)})();let b=f.call(o,m);return p.call(o,b)}:o[h]=(...m)=>{if(this.defaults.async)return(async()=>{let _=await f.apply(o,m);return _===!1&&(_=await p.apply(o,m)),_})();let b=f.apply(o,m);return b===!1&&(b=p.apply(o,m)),b}}s.hooks=o}if(a.walkTokens){let o=this.defaults.walkTokens,u=a.walkTokens;s.walkTokens=function(h){let f=[];return f.push(u.call(this,h)),o&&(f=f.concat(o.call(this,h))),f}}this.defaults={...this.defaults,...s}}),this}setOptions(t){return this.defaults={...this.defaults,...t},this}lexer(t,r){return O3.lex(t,r??this.defaults)}parser(t,r){return L3.parse(t,r??this.defaults)}parseMarkdown(t){return(r,a)=>{let s={...a},o={...this.defaults,...s},u=this.onError(!!o.silent,!!o.async);if(this.defaults.async===!0&&s.async===!1)return u(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 u(new Error("marked(): input parameter is undefined or null"));if(typeof r!="string")return u(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(r)+", string expected"));if(o.hooks&&(o.hooks.options=o,o.hooks.block=t),o.async)return(async()=>{let h=o.hooks?await o.hooks.preprocess(r):r,f=await(o.hooks?await o.hooks.provideLexer():t?O3.lex:O3.lexInline)(h,o),p=o.hooks?await o.hooks.processAllTokens(f):f;o.walkTokens&&await Promise.all(this.walkTokens(p,o.walkTokens));let m=await(o.hooks?await o.hooks.provideParser():t?L3.parse:L3.parseInline)(p,o);return o.hooks?await o.hooks.postprocess(m):m})().catch(u);try{o.hooks&&(r=o.hooks.preprocess(r));let h=(o.hooks?o.hooks.provideLexer():t?O3.lex:O3.lexInline)(r,o);o.hooks&&(h=o.hooks.processAllTokens(h)),o.walkTokens&&this.walkTokens(h,o.walkTokens);let f=(o.hooks?o.hooks.provideParser():t?L3.parse:L3.parseInline)(h,o);return o.hooks&&(f=o.hooks.postprocess(f)),f}catch(h){return u(h)}}}onError(t,r){return a=>{if(a.message+=` +Please report this to https://github.com/markedjs/marked.`,t){let s="

    An error occurred:

    "+r7(a.message+"",!0)+"
    ";return r?Promise.resolve(s):s}if(r)return Promise.reject(a);throw a}}},_F=new fGr;function vh(e,t){return _F.parse(e,t)}vh.options=vh.setOptions=function(e){return _F.setOptions(e),vh.defaults=_F.defaults,fRn(vh.defaults),vh};vh.getDefaults=Eft;vh.defaults=b$;vh.use=function(...e){return _F.use(...e),vh.defaults=_F.defaults,fRn(vh.defaults),vh};vh.walkTokens=function(e,t){return _F.walkTokens(e,t)};vh.parseInline=_F.parseInline;vh.Parser=L3;vh.parser=L3.parse;vh.Renderer=$Se;vh.TextRenderer=Ift;vh.Lexer=O3;vh.lexer=O3.lex;vh.Tokenizer=FSe;vh.Hooks=Tie;vh.parse=vh;vh.options;vh.setOptions;vh.use;vh.walkTokens;vh.parseInline;L3.parse;O3.lex;ue.createContext(null);function P0n(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function mA(...e){return t=>{let r=!1;const a=e.map(s=>{const o=P0n(s,t);return!r&&typeof o=="function"&&(r=!0),o});if(r)return()=>{for(let s=0;s{let{children:o,...u}=a;SRn(o)&&typeof USe=="function"&&(o=USe(o._payload));const h=ue.Children.toArray(o),f=h.find(yGr);if(f){const p=f.props.children,m=h.map(b=>b===f?ue.Children.count(p)>1?ue.Children.only(null):ue.isValidElement(p)?p.props.children:null:b);return ct.jsx(t,{...u,ref:s,children:ue.isValidElement(p)?ue.cloneElement(p,void 0,m):null})}return ct.jsx(t,{...u,ref:s,children:o})});return r.displayName=`${e}.Slot`,r}var E3a=TRn("Slot");function mGr(e){const t=ue.forwardRef((r,a)=>{let{children:s,...o}=r;if(SRn(s)&&typeof USe=="function"&&(s=USe(s._payload)),ue.isValidElement(s)){const u=_Gr(s),h=vGr(o,s.props);return s.type!==ue.Fragment&&(h.ref=a?mA(a,u):u),ue.cloneElement(s,h)}return ue.Children.count(s)>1?ue.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var bGr=Symbol("radix.slottable");function yGr(e){return ue.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===bGr}function vGr(e,t){const r={...t};for(const a in t){const s=e[a],o=t[a];/^on[A-Z]/.test(a)?s&&o?r[a]=(...h)=>{const f=o(...h);return s(...h),f}:s&&(r[a]=s):a==="style"?r[a]={...s,...o}:a==="className"&&(r[a]=[s,o].filter(Boolean).join(" "))}return{...e,...r}}function _Gr(e){var a,s;let t=(a=Object.getOwnPropertyDescriptor(e.props,"ref"))==null?void 0:a.get,r=t&&"isReactWarning"in t&&t.isReactWarning;return r?e.ref:(t=(s=Object.getOwnPropertyDescriptor(e,"ref"))==null?void 0:s.get,r=t&&"isReactWarning"in t&&t.isReactWarning,r?e.props.ref:e.props.ref||e.ref)}const wGr=(e,t)=>{const r=new Array(e.length+t.length);for(let a=0;a({classGroupId:e,validator:t}),CRn=(e=new Map,t=null,r)=>({nextPart:e,validators:t,classGroupId:r}),zSe="-",B0n=[],xGr="arbitrary..",SGr=e=>{const t=CGr(e),{conflictingClassGroups:r,conflictingClassGroupModifiers:a}=e;return{getClassGroupId:u=>{if(u.startsWith("[")&&u.endsWith("]"))return TGr(u);const h=u.split(zSe),f=h[0]===""&&h.length>1?1:0;return ARn(h,f,t)},getConflictingClassGroupIds:(u,h)=>{if(h){const f=a[u],p=r[u];return f?p?wGr(p,f):f:p||B0n}return r[u]||B0n}}},ARn=(e,t,r)=>{if(e.length-t===0)return r.classGroupId;const s=e[t],o=r.nextPart.get(s);if(o){const p=ARn(e,t+1,o);if(p)return p}const u=r.validators;if(u===null)return;const h=t===0?e.join(zSe):e.slice(t).join(zSe),f=u.length;for(let p=0;pe.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const t=e.slice(1,-1),r=t.indexOf(":"),a=t.slice(0,r);return a?xGr+a:void 0})(),CGr=e=>{const{theme:t,classGroups:r}=e;return AGr(r,t)},AGr=(e,t)=>{const r=CRn();for(const a in e){const s=e[a];Nft(s,r,a,t)}return r},Nft=(e,t,r,a)=>{const s=e.length;for(let o=0;o{if(typeof e=="string"){RGr(e,t,r);return}if(typeof e=="function"){IGr(e,t,r,a);return}NGr(e,t,r,a)},RGr=(e,t,r)=>{const a=e===""?t:kRn(t,e);a.classGroupId=r},IGr=(e,t,r,a)=>{if(OGr(e)){Nft(e(a),t,r,a);return}t.validators===null&&(t.validators=[]),t.validators.push(EGr(r,e))},NGr=(e,t,r,a)=>{const s=Object.entries(e),o=s.length;for(let u=0;u{let r=e;const a=t.split(zSe),s=a.length;for(let o=0;o"isThemeGetter"in e&&e.isThemeGetter===!0,LGr=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,r=Object.create(null),a=Object.create(null);const s=(o,u)=>{r[o]=u,t++,t>e&&(t=0,a=r,r=Object.create(null))};return{get(o){let u=r[o];if(u!==void 0)return u;if((u=a[o])!==void 0)return s(o,u),u},set(o,u){o in r?r[o]=u:s(o,u)}}},Ost="!",F0n=":",DGr=[],$0n=(e,t,r,a,s)=>({modifiers:e,hasImportantModifier:t,baseClassName:r,maybePostfixModifierPosition:a,isExternal:s}),MGr=e=>{const{prefix:t,experimentalParseClassName:r}=e;let a=s=>{const o=[];let u=0,h=0,f=0,p;const m=s.length;for(let C=0;Cf?p-f:void 0;return $0n(o,w,_,S)};if(t){const s=t+F0n,o=a;a=u=>u.startsWith(s)?o(u.slice(s.length)):$0n(DGr,!1,u,void 0,!0)}if(r){const s=a;a=o=>r({className:o,parseClassName:s})}return a},PGr=e=>{const t=new Map;return e.orderSensitiveModifiers.forEach((r,a)=>{t.set(r,1e6+a)}),r=>{const a=[];let s=[];for(let o=0;o0&&(s.sort(),a.push(...s),s=[]),a.push(u)):s.push(u)}return s.length>0&&(s.sort(),a.push(...s)),a}},BGr=e=>({cache:LGr(e.cacheSize),parseClassName:MGr(e),sortModifiers:PGr(e),...SGr(e)}),FGr=/\s+/,$Gr=(e,t)=>{const{parseClassName:r,getClassGroupId:a,getConflictingClassGroupIds:s,sortModifiers:o}=t,u=[],h=e.trim().split(FGr);let f="";for(let p=h.length-1;p>=0;p-=1){const m=h[p],{isExternal:b,modifiers:_,hasImportantModifier:w,baseClassName:S,maybePostfixModifierPosition:C}=r(m);if(b){f=m+(f.length>0?" "+f:f);continue}let A=!!C,k=a(A?S.substring(0,C):S);if(!k){if(!A){f=m+(f.length>0?" "+f:f);continue}if(k=a(S),!k){f=m+(f.length>0?" "+f:f);continue}A=!1}const I=_.length===0?"":_.length===1?_[0]:o(_).join(":"),N=w?I+Ost:I,L=N+k;if(u.indexOf(L)>-1)continue;u.push(L);const P=s(k,A);for(let M=0;M0?" "+f:f)}return f},UGr=(...e)=>{let t=0,r,a,s="";for(;t{if(typeof e=="string")return e;let t,r="";for(let a=0;a{let r,a,s,o;const u=f=>{const p=t.reduce((m,b)=>b(m),e());return r=BGr(p),a=r.cache.get,s=r.cache.set,o=h,h(f)},h=f=>{const p=a(f);if(p)return p;const m=$Gr(f,r);return s(f,m),m};return o=u,(...f)=>o(UGr(...f))},GGr=[],pp=e=>{const t=r=>r[e]||GGr;return t.isThemeGetter=!0,t},IRn=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,NRn=/^\((?:(\w[\w-]*):)?(.+)\)$/i,qGr=/^\d+\/\d+$/,HGr=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,VGr=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,YGr=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,jGr=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,WGr=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,LH=e=>qGr.test(e),Hl=e=>!!e&&!Number.isNaN(Number(e)),ON=e=>!!e&&Number.isInteger(Number(e)),KXe=e=>e.endsWith("%")&&Hl(e.slice(0,-1)),q6=e=>HGr.test(e),KGr=()=>!0,XGr=e=>VGr.test(e)&&!YGr.test(e),ORn=()=>!1,QGr=e=>jGr.test(e),ZGr=e=>WGr.test(e),JGr=e=>!Va(e)&&!Ya(e),eqr=e=>SW(e,MRn,ORn),Va=e=>IRn.test(e),fB=e=>SW(e,PRn,XGr),XXe=e=>SW(e,aqr,Hl),U0n=e=>SW(e,LRn,ORn),tqr=e=>SW(e,DRn,ZGr),T_e=e=>SW(e,BRn,QGr),Ya=e=>NRn.test(e),xre=e=>TW(e,PRn),nqr=e=>TW(e,sqr),z0n=e=>TW(e,LRn),rqr=e=>TW(e,MRn),iqr=e=>TW(e,DRn),C_e=e=>TW(e,BRn,!0),SW=(e,t,r)=>{const a=IRn.exec(e);return a?a[1]?t(a[1]):r(a[2]):!1},TW=(e,t,r=!1)=>{const a=NRn.exec(e);return a?a[1]?t(a[1]):r:!1},LRn=e=>e==="position"||e==="percentage",DRn=e=>e==="image"||e==="url",MRn=e=>e==="length"||e==="size"||e==="bg-size",PRn=e=>e==="length",aqr=e=>e==="number",sqr=e=>e==="family-name",BRn=e=>e==="shadow",oqr=()=>{const e=pp("color"),t=pp("font"),r=pp("text"),a=pp("font-weight"),s=pp("tracking"),o=pp("leading"),u=pp("breakpoint"),h=pp("container"),f=pp("spacing"),p=pp("radius"),m=pp("shadow"),b=pp("inset-shadow"),_=pp("text-shadow"),w=pp("drop-shadow"),S=pp("blur"),C=pp("perspective"),A=pp("aspect"),k=pp("ease"),I=pp("animate"),N=()=>["auto","avoid","all","avoid-page","page","left","right","column"],L=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],P=()=>[...L(),Ya,Va],M=()=>["auto","hidden","clip","visible","scroll"],F=()=>["auto","contain","none"],U=()=>[Ya,Va,f],$=()=>[LH,"full","auto",...U()],G=()=>[ON,"none","subgrid",Ya,Va],B=()=>["auto",{span:["full",ON,Ya,Va]},ON,Ya,Va],Z=()=>[ON,"auto",Ya,Va],z=()=>["auto","min","max","fr",Ya,Va],Y=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],W=()=>["start","end","center","stretch","center-safe","end-safe"],Q=()=>["auto",...U()],V=()=>[LH,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...U()],j=()=>[e,Ya,Va],ee=()=>[...L(),z0n,U0n,{position:[Ya,Va]}],te=()=>["no-repeat",{repeat:["","x","y","space","round"]}],ne=()=>["auto","cover","contain",rqr,eqr,{size:[Ya,Va]}],se=()=>[KXe,xre,fB],ie=()=>["","none","full",p,Ya,Va],ge=()=>["",Hl,xre,fB],ce=()=>["solid","dashed","dotted","double"],be=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],ve=()=>[Hl,KXe,z0n,U0n],De=()=>["","none",S,Ya,Va],ye=()=>["none",Hl,Ya,Va],Ee=()=>["none",Hl,Ya,Va],he=()=>[Hl,Ya,Va],we=()=>[LH,"full",...U()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[q6],breakpoint:[q6],color:[KGr],container:[q6],"drop-shadow":[q6],ease:["in","out","in-out"],font:[JGr],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[q6],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[q6],shadow:[q6],spacing:["px",Hl],text:[q6],"text-shadow":[q6],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",LH,Va,Ya,A]}],container:["container"],columns:[{columns:[Hl,Va,Ya,h]}],"break-after":[{"break-after":N()}],"break-before":[{"break-before":N()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:P()}],overflow:[{overflow:M()}],"overflow-x":[{"overflow-x":M()}],"overflow-y":[{"overflow-y":M()}],overscroll:[{overscroll:F()}],"overscroll-x":[{"overscroll-x":F()}],"overscroll-y":[{"overscroll-y":F()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:$()}],"inset-x":[{"inset-x":$()}],"inset-y":[{"inset-y":$()}],start:[{start:$()}],end:[{end:$()}],top:[{top:$()}],right:[{right:$()}],bottom:[{bottom:$()}],left:[{left:$()}],visibility:["visible","invisible","collapse"],z:[{z:[ON,"auto",Ya,Va]}],basis:[{basis:[LH,"full","auto",h,...U()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[Hl,LH,"auto","initial","none",Va]}],grow:[{grow:["",Hl,Ya,Va]}],shrink:[{shrink:["",Hl,Ya,Va]}],order:[{order:[ON,"first","last","none",Ya,Va]}],"grid-cols":[{"grid-cols":G()}],"col-start-end":[{col:B()}],"col-start":[{"col-start":Z()}],"col-end":[{"col-end":Z()}],"grid-rows":[{"grid-rows":G()}],"row-start-end":[{row:B()}],"row-start":[{"row-start":Z()}],"row-end":[{"row-end":Z()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":z()}],"auto-rows":[{"auto-rows":z()}],gap:[{gap:U()}],"gap-x":[{"gap-x":U()}],"gap-y":[{"gap-y":U()}],"justify-content":[{justify:[...Y(),"normal"]}],"justify-items":[{"justify-items":[...W(),"normal"]}],"justify-self":[{"justify-self":["auto",...W()]}],"align-content":[{content:["normal",...Y()]}],"align-items":[{items:[...W(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...W(),{baseline:["","last"]}]}],"place-content":[{"place-content":Y()}],"place-items":[{"place-items":[...W(),"baseline"]}],"place-self":[{"place-self":["auto",...W()]}],p:[{p:U()}],px:[{px:U()}],py:[{py:U()}],ps:[{ps:U()}],pe:[{pe:U()}],pt:[{pt:U()}],pr:[{pr:U()}],pb:[{pb:U()}],pl:[{pl:U()}],m:[{m:Q()}],mx:[{mx:Q()}],my:[{my:Q()}],ms:[{ms:Q()}],me:[{me:Q()}],mt:[{mt:Q()}],mr:[{mr:Q()}],mb:[{mb:Q()}],ml:[{ml:Q()}],"space-x":[{"space-x":U()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":U()}],"space-y-reverse":["space-y-reverse"],size:[{size:V()}],w:[{w:[h,"screen",...V()]}],"min-w":[{"min-w":[h,"screen","none",...V()]}],"max-w":[{"max-w":[h,"screen","none","prose",{screen:[u]},...V()]}],h:[{h:["screen","lh",...V()]}],"min-h":[{"min-h":["screen","lh","none",...V()]}],"max-h":[{"max-h":["screen","lh",...V()]}],"font-size":[{text:["base",r,xre,fB]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[a,Ya,XXe]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",KXe,Va]}],"font-family":[{font:[nqr,Va,t]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[s,Ya,Va]}],"line-clamp":[{"line-clamp":[Hl,"none",Ya,XXe]}],leading:[{leading:[o,...U()]}],"list-image":[{"list-image":["none",Ya,Va]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",Ya,Va]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:j()}],"text-color":[{text:j()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...ce(),"wavy"]}],"text-decoration-thickness":[{decoration:[Hl,"from-font","auto",Ya,fB]}],"text-decoration-color":[{decoration:j()}],"underline-offset":[{"underline-offset":[Hl,"auto",Ya,Va]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:U()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",Ya,Va]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",Ya,Va]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:ee()}],"bg-repeat":[{bg:te()}],"bg-size":[{bg:ne()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},ON,Ya,Va],radial:["",Ya,Va],conic:[ON,Ya,Va]},iqr,tqr]}],"bg-color":[{bg:j()}],"gradient-from-pos":[{from:se()}],"gradient-via-pos":[{via:se()}],"gradient-to-pos":[{to:se()}],"gradient-from":[{from:j()}],"gradient-via":[{via:j()}],"gradient-to":[{to:j()}],rounded:[{rounded:ie()}],"rounded-s":[{"rounded-s":ie()}],"rounded-e":[{"rounded-e":ie()}],"rounded-t":[{"rounded-t":ie()}],"rounded-r":[{"rounded-r":ie()}],"rounded-b":[{"rounded-b":ie()}],"rounded-l":[{"rounded-l":ie()}],"rounded-ss":[{"rounded-ss":ie()}],"rounded-se":[{"rounded-se":ie()}],"rounded-ee":[{"rounded-ee":ie()}],"rounded-es":[{"rounded-es":ie()}],"rounded-tl":[{"rounded-tl":ie()}],"rounded-tr":[{"rounded-tr":ie()}],"rounded-br":[{"rounded-br":ie()}],"rounded-bl":[{"rounded-bl":ie()}],"border-w":[{border:ge()}],"border-w-x":[{"border-x":ge()}],"border-w-y":[{"border-y":ge()}],"border-w-s":[{"border-s":ge()}],"border-w-e":[{"border-e":ge()}],"border-w-t":[{"border-t":ge()}],"border-w-r":[{"border-r":ge()}],"border-w-b":[{"border-b":ge()}],"border-w-l":[{"border-l":ge()}],"divide-x":[{"divide-x":ge()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":ge()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...ce(),"hidden","none"]}],"divide-style":[{divide:[...ce(),"hidden","none"]}],"border-color":[{border:j()}],"border-color-x":[{"border-x":j()}],"border-color-y":[{"border-y":j()}],"border-color-s":[{"border-s":j()}],"border-color-e":[{"border-e":j()}],"border-color-t":[{"border-t":j()}],"border-color-r":[{"border-r":j()}],"border-color-b":[{"border-b":j()}],"border-color-l":[{"border-l":j()}],"divide-color":[{divide:j()}],"outline-style":[{outline:[...ce(),"none","hidden"]}],"outline-offset":[{"outline-offset":[Hl,Ya,Va]}],"outline-w":[{outline:["",Hl,xre,fB]}],"outline-color":[{outline:j()}],shadow:[{shadow:["","none",m,C_e,T_e]}],"shadow-color":[{shadow:j()}],"inset-shadow":[{"inset-shadow":["none",b,C_e,T_e]}],"inset-shadow-color":[{"inset-shadow":j()}],"ring-w":[{ring:ge()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:j()}],"ring-offset-w":[{"ring-offset":[Hl,fB]}],"ring-offset-color":[{"ring-offset":j()}],"inset-ring-w":[{"inset-ring":ge()}],"inset-ring-color":[{"inset-ring":j()}],"text-shadow":[{"text-shadow":["none",_,C_e,T_e]}],"text-shadow-color":[{"text-shadow":j()}],opacity:[{opacity:[Hl,Ya,Va]}],"mix-blend":[{"mix-blend":[...be(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":be()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[Hl]}],"mask-image-linear-from-pos":[{"mask-linear-from":ve()}],"mask-image-linear-to-pos":[{"mask-linear-to":ve()}],"mask-image-linear-from-color":[{"mask-linear-from":j()}],"mask-image-linear-to-color":[{"mask-linear-to":j()}],"mask-image-t-from-pos":[{"mask-t-from":ve()}],"mask-image-t-to-pos":[{"mask-t-to":ve()}],"mask-image-t-from-color":[{"mask-t-from":j()}],"mask-image-t-to-color":[{"mask-t-to":j()}],"mask-image-r-from-pos":[{"mask-r-from":ve()}],"mask-image-r-to-pos":[{"mask-r-to":ve()}],"mask-image-r-from-color":[{"mask-r-from":j()}],"mask-image-r-to-color":[{"mask-r-to":j()}],"mask-image-b-from-pos":[{"mask-b-from":ve()}],"mask-image-b-to-pos":[{"mask-b-to":ve()}],"mask-image-b-from-color":[{"mask-b-from":j()}],"mask-image-b-to-color":[{"mask-b-to":j()}],"mask-image-l-from-pos":[{"mask-l-from":ve()}],"mask-image-l-to-pos":[{"mask-l-to":ve()}],"mask-image-l-from-color":[{"mask-l-from":j()}],"mask-image-l-to-color":[{"mask-l-to":j()}],"mask-image-x-from-pos":[{"mask-x-from":ve()}],"mask-image-x-to-pos":[{"mask-x-to":ve()}],"mask-image-x-from-color":[{"mask-x-from":j()}],"mask-image-x-to-color":[{"mask-x-to":j()}],"mask-image-y-from-pos":[{"mask-y-from":ve()}],"mask-image-y-to-pos":[{"mask-y-to":ve()}],"mask-image-y-from-color":[{"mask-y-from":j()}],"mask-image-y-to-color":[{"mask-y-to":j()}],"mask-image-radial":[{"mask-radial":[Ya,Va]}],"mask-image-radial-from-pos":[{"mask-radial-from":ve()}],"mask-image-radial-to-pos":[{"mask-radial-to":ve()}],"mask-image-radial-from-color":[{"mask-radial-from":j()}],"mask-image-radial-to-color":[{"mask-radial-to":j()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":L()}],"mask-image-conic-pos":[{"mask-conic":[Hl]}],"mask-image-conic-from-pos":[{"mask-conic-from":ve()}],"mask-image-conic-to-pos":[{"mask-conic-to":ve()}],"mask-image-conic-from-color":[{"mask-conic-from":j()}],"mask-image-conic-to-color":[{"mask-conic-to":j()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:ee()}],"mask-repeat":[{mask:te()}],"mask-size":[{mask:ne()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",Ya,Va]}],filter:[{filter:["","none",Ya,Va]}],blur:[{blur:De()}],brightness:[{brightness:[Hl,Ya,Va]}],contrast:[{contrast:[Hl,Ya,Va]}],"drop-shadow":[{"drop-shadow":["","none",w,C_e,T_e]}],"drop-shadow-color":[{"drop-shadow":j()}],grayscale:[{grayscale:["",Hl,Ya,Va]}],"hue-rotate":[{"hue-rotate":[Hl,Ya,Va]}],invert:[{invert:["",Hl,Ya,Va]}],saturate:[{saturate:[Hl,Ya,Va]}],sepia:[{sepia:["",Hl,Ya,Va]}],"backdrop-filter":[{"backdrop-filter":["","none",Ya,Va]}],"backdrop-blur":[{"backdrop-blur":De()}],"backdrop-brightness":[{"backdrop-brightness":[Hl,Ya,Va]}],"backdrop-contrast":[{"backdrop-contrast":[Hl,Ya,Va]}],"backdrop-grayscale":[{"backdrop-grayscale":["",Hl,Ya,Va]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[Hl,Ya,Va]}],"backdrop-invert":[{"backdrop-invert":["",Hl,Ya,Va]}],"backdrop-opacity":[{"backdrop-opacity":[Hl,Ya,Va]}],"backdrop-saturate":[{"backdrop-saturate":[Hl,Ya,Va]}],"backdrop-sepia":[{"backdrop-sepia":["",Hl,Ya,Va]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":U()}],"border-spacing-x":[{"border-spacing-x":U()}],"border-spacing-y":[{"border-spacing-y":U()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",Ya,Va]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[Hl,"initial",Ya,Va]}],ease:[{ease:["linear","initial",k,Ya,Va]}],delay:[{delay:[Hl,Ya,Va]}],animate:[{animate:["none",I,Ya,Va]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[C,Ya,Va]}],"perspective-origin":[{"perspective-origin":P()}],rotate:[{rotate:ye()}],"rotate-x":[{"rotate-x":ye()}],"rotate-y":[{"rotate-y":ye()}],"rotate-z":[{"rotate-z":ye()}],scale:[{scale:Ee()}],"scale-x":[{"scale-x":Ee()}],"scale-y":[{"scale-y":Ee()}],"scale-z":[{"scale-z":Ee()}],"scale-3d":["scale-3d"],skew:[{skew:he()}],"skew-x":[{"skew-x":he()}],"skew-y":[{"skew-y":he()}],transform:[{transform:[Ya,Va,"","none","gpu","cpu"]}],"transform-origin":[{origin:P()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:we()}],"translate-x":[{"translate-x":we()}],"translate-y":[{"translate-y":we()}],"translate-z":[{"translate-z":we()}],"translate-none":["translate-none"],accent:[{accent:j()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:j()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",Ya,Va]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":U()}],"scroll-mx":[{"scroll-mx":U()}],"scroll-my":[{"scroll-my":U()}],"scroll-ms":[{"scroll-ms":U()}],"scroll-me":[{"scroll-me":U()}],"scroll-mt":[{"scroll-mt":U()}],"scroll-mr":[{"scroll-mr":U()}],"scroll-mb":[{"scroll-mb":U()}],"scroll-ml":[{"scroll-ml":U()}],"scroll-p":[{"scroll-p":U()}],"scroll-px":[{"scroll-px":U()}],"scroll-py":[{"scroll-py":U()}],"scroll-ps":[{"scroll-ps":U()}],"scroll-pe":[{"scroll-pe":U()}],"scroll-pt":[{"scroll-pt":U()}],"scroll-pr":[{"scroll-pr":U()}],"scroll-pb":[{"scroll-pb":U()}],"scroll-pl":[{"scroll-pl":U()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",Ya,Va]}],fill:[{fill:["none",...j()]}],"stroke-w":[{stroke:[Hl,xre,fB,XXe]}],stroke:[{stroke:["none",...j()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},x3a=zGr(oqr);function ji(e,t,{checkForDefaultPrevented:r=!0}={}){return function(s){if(e==null||e(s),r===!1||!s.defaultPrevented)return t==null?void 0:t(s)}}function lqr(e,t){const r=ue.createContext(t),a=o=>{const{children:u,...h}=o,f=ue.useMemo(()=>h,Object.values(h));return ct.jsx(r.Provider,{value:f,children:u})};a.displayName=e+"Provider";function s(o){const u=ue.useContext(r);if(u)return u;if(t!==void 0)return t;throw new Error(`\`${o}\` must be used within \`${e}\``)}return[a,s]}function Ng(e,t=[]){let r=[];function a(o,u){const h=ue.createContext(u),f=r.length;r=[...r,u];const p=b=>{var k;const{scope:_,children:w,...S}=b,C=((k=_==null?void 0:_[e])==null?void 0:k[f])||h,A=ue.useMemo(()=>S,Object.values(S));return ct.jsx(C.Provider,{value:A,children:w})};p.displayName=o+"Provider";function m(b,_){var C;const w=((C=_==null?void 0:_[e])==null?void 0:C[f])||h,S=ue.useContext(w);if(S)return S;if(u!==void 0)return u;throw new Error(`\`${b}\` must be used within \`${o}\``)}return[p,m]}const s=()=>{const o=r.map(u=>ue.createContext(u));return function(h){const f=(h==null?void 0:h[e])||o;return ue.useMemo(()=>({[`__scope${e}`]:{...h,[e]:f}}),[h,f])}};return s.scopeName=e,[a,cqr(s,...t)]}function cqr(...e){const t=e[0];if(e.length===1)return t;const r=()=>{const a=e.map(s=>({useScope:s(),scopeName:s.scopeName}));return function(o){const u=a.reduce((h,{useScope:f,scopeName:p})=>{const b=f(o)[`__scope${p}`];return{...h,...b}},{});return ue.useMemo(()=>({[`__scope${t.scopeName}`]:u}),[u])}};return r.scopeName=t.scopeName,r}var Ig=globalThis!=null&&globalThis.document?ue.useLayoutEffect:()=>{},uqr=g$[" useInsertionEffect ".trim().toString()]||Ig;function km({prop:e,defaultProp:t,onChange:r=()=>{},caller:a}){const[s,o,u]=hqr({defaultProp:t,onChange:r}),h=e!==void 0,f=h?e:s;{const m=ue.useRef(e!==void 0);ue.useEffect(()=>{const b=m.current;b!==h&&console.warn(`${a} is changing from ${b?"controlled":"uncontrolled"} to ${h?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),m.current=h},[h,a])}const p=ue.useCallback(m=>{var b;if(h){const _=dqr(m)?m(e):m;_!==e&&((b=u.current)==null||b.call(u,_))}else o(m)},[h,e,o,u]);return[f,p]}function hqr({defaultProp:e,onChange:t}){const[r,a]=ue.useState(e),s=ue.useRef(r),o=ue.useRef(t);return uqr(()=>{o.current=t},[t]),ue.useEffect(()=>{var u;s.current!==r&&((u=o.current)==null||u.call(o,r),s.current=r)},[r,s]),[r,a,o]}function dqr(e){return typeof e=="function"}function wF(e){const t=fqr(e),r=ue.forwardRef((a,s)=>{const{children:o,...u}=a,h=ue.Children.toArray(o),f=h.find(gqr);if(f){const p=f.props.children,m=h.map(b=>b===f?ue.Children.count(p)>1?ue.Children.only(null):ue.isValidElement(p)?p.props.children:null:b);return ct.jsx(t,{...u,ref:s,children:ue.isValidElement(p)?ue.cloneElement(p,void 0,m):null})}return ct.jsx(t,{...u,ref:s,children:o})});return r.displayName=`${e}.Slot`,r}function fqr(e){const t=ue.forwardRef((r,a)=>{const{children:s,...o}=r;if(ue.isValidElement(s)){const u=bqr(s),h=mqr(o,s.props);return s.type!==ue.Fragment&&(h.ref=a?mA(a,u):u),ue.cloneElement(s,h)}return ue.Children.count(s)>1?ue.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var FRn=Symbol("radix.slottable");function pqr(e){const t=({children:r})=>ct.jsx(ct.Fragment,{children:r});return t.displayName=`${e}.Slottable`,t.__radixId=FRn,t}function gqr(e){return ue.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===FRn}function mqr(e,t){const r={...t};for(const a in t){const s=e[a],o=t[a];/^on[A-Z]/.test(a)?s&&o?r[a]=(...h)=>{const f=o(...h);return s(...h),f}:s&&(r[a]=s):a==="style"?r[a]={...s,...o}:a==="className"&&(r[a]=[s,o].filter(Boolean).join(" "))}return{...e,...r}}function bqr(e){var a,s;let t=(a=Object.getOwnPropertyDescriptor(e.props,"ref"))==null?void 0:a.get,r=t&&"isReactWarning"in t&&t.isReactWarning;return r?e.ref:(t=(s=Object.getOwnPropertyDescriptor(e,"ref"))==null?void 0:s.get,r=t&&"isReactWarning"in t&&t.isReactWarning,r?e.props.ref:e.props.ref||e.ref)}var yqr=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],Za=yqr.reduce((e,t)=>{const r=wF(`Primitive.${t}`),a=ue.forwardRef((s,o)=>{const{asChild:u,...h}=s,f=u?r:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),ct.jsx(f,{...h,ref:o})});return a.displayName=`Primitive.${t}`,{...e,[t]:a}},{});function $Rn(e,t){e&&w9.flushSync(()=>e.dispatchEvent(t))}function iCe(e){const t=e+"CollectionProvider",[r,a]=Ng(t),[s,o]=r(t,{collectionRef:{current:null},itemMap:new Map}),u=C=>{const{scope:A,children:k}=C,I=Er.useRef(null),N=Er.useRef(new Map).current;return ct.jsx(s,{scope:A,itemMap:N,collectionRef:I,children:k})};u.displayName=t;const h=e+"CollectionSlot",f=wF(h),p=Er.forwardRef((C,A)=>{const{scope:k,children:I}=C,N=o(h,k),L=Yo(A,N.collectionRef);return ct.jsx(f,{ref:L,children:I})});p.displayName=h;const m=e+"CollectionItemSlot",b="data-radix-collection-item",_=wF(m),w=Er.forwardRef((C,A)=>{const{scope:k,children:I,...N}=C,L=Er.useRef(null),P=Yo(A,L),M=o(m,k);return Er.useEffect(()=>(M.itemMap.set(L,{ref:L,...N}),()=>void M.itemMap.delete(L))),ct.jsx(_,{[b]:"",ref:P,children:I})});w.displayName=m;function S(C){const A=o(e+"CollectionConsumer",C);return Er.useCallback(()=>{const I=A.collectionRef.current;if(!I)return[];const N=Array.from(I.querySelectorAll(`[${b}]`));return Array.from(A.itemMap.values()).sort((M,F)=>N.indexOf(M.ref.current)-N.indexOf(F.ref.current))},[A.collectionRef,A.itemMap])}return[{Provider:u,Slot:p,ItemSlot:w},S,a]}var vqr=ue.createContext(void 0);function S9(e){const t=ue.useContext(vqr);return e||t||"ltr"}function _m(e){const t=ue.useRef(e);return ue.useEffect(()=>{t.current=e}),ue.useMemo(()=>(...r)=>{var a;return(a=t.current)==null?void 0:a.call(t,...r)},[])}function _qr(e,t=globalThis==null?void 0:globalThis.document){const r=_m(e);ue.useEffect(()=>{const a=s=>{s.key==="Escape"&&r(s)};return t.addEventListener("keydown",a,{capture:!0}),()=>t.removeEventListener("keydown",a,{capture:!0})},[r,t])}var wqr="DismissableLayer",Lst="dismissableLayer.update",Eqr="dismissableLayer.pointerDownOutside",xqr="dismissableLayer.focusOutside",G0n,URn=ue.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),CW=ue.forwardRef((e,t)=>{const{disableOutsidePointerEvents:r=!1,onEscapeKeyDown:a,onPointerDownOutside:s,onFocusOutside:o,onInteractOutside:u,onDismiss:h,...f}=e,p=ue.useContext(URn),[m,b]=ue.useState(null),_=(m==null?void 0:m.ownerDocument)??(globalThis==null?void 0:globalThis.document),[,w]=ue.useState({}),S=Yo(t,F=>b(F)),C=Array.from(p.layers),[A]=[...p.layersWithOutsidePointerEventsDisabled].slice(-1),k=C.indexOf(A),I=m?C.indexOf(m):-1,N=p.layersWithOutsidePointerEventsDisabled.size>0,L=I>=k,P=Cqr(F=>{const U=F.target,$=[...p.branches].some(G=>G.contains(U));!L||$||(s==null||s(F),u==null||u(F),F.defaultPrevented||h==null||h())},_),M=Aqr(F=>{const U=F.target;[...p.branches].some(G=>G.contains(U))||(o==null||o(F),u==null||u(F),F.defaultPrevented||h==null||h())},_);return _qr(F=>{I===p.layers.size-1&&(a==null||a(F),!F.defaultPrevented&&h&&(F.preventDefault(),h()))},_),ue.useEffect(()=>{if(m)return r&&(p.layersWithOutsidePointerEventsDisabled.size===0&&(G0n=_.body.style.pointerEvents,_.body.style.pointerEvents="none"),p.layersWithOutsidePointerEventsDisabled.add(m)),p.layers.add(m),q0n(),()=>{r&&p.layersWithOutsidePointerEventsDisabled.size===1&&(_.body.style.pointerEvents=G0n)}},[m,_,r,p]),ue.useEffect(()=>()=>{m&&(p.layers.delete(m),p.layersWithOutsidePointerEventsDisabled.delete(m),q0n())},[m,p]),ue.useEffect(()=>{const F=()=>w({});return document.addEventListener(Lst,F),()=>document.removeEventListener(Lst,F)},[]),ct.jsx(Za.div,{...f,ref:S,style:{pointerEvents:N?L?"auto":"none":void 0,...e.style},onFocusCapture:ji(e.onFocusCapture,M.onFocusCapture),onBlurCapture:ji(e.onBlurCapture,M.onBlurCapture),onPointerDownCapture:ji(e.onPointerDownCapture,P.onPointerDownCapture)})});CW.displayName=wqr;var Sqr="DismissableLayerBranch",Tqr=ue.forwardRef((e,t)=>{const r=ue.useContext(URn),a=ue.useRef(null),s=Yo(t,a);return ue.useEffect(()=>{const o=a.current;if(o)return r.branches.add(o),()=>{r.branches.delete(o)}},[r.branches]),ct.jsx(Za.div,{...e,ref:s})});Tqr.displayName=Sqr;function Cqr(e,t=globalThis==null?void 0:globalThis.document){const r=_m(e),a=ue.useRef(!1),s=ue.useRef(()=>{});return ue.useEffect(()=>{const o=h=>{if(h.target&&!a.current){let f=function(){zRn(Eqr,r,p,{discrete:!0})};const p={originalEvent:h};h.pointerType==="touch"?(t.removeEventListener("click",s.current),s.current=f,t.addEventListener("click",s.current,{once:!0})):f()}else t.removeEventListener("click",s.current);a.current=!1},u=window.setTimeout(()=>{t.addEventListener("pointerdown",o)},0);return()=>{window.clearTimeout(u),t.removeEventListener("pointerdown",o),t.removeEventListener("click",s.current)}},[t,r]),{onPointerDownCapture:()=>a.current=!0}}function Aqr(e,t=globalThis==null?void 0:globalThis.document){const r=_m(e),a=ue.useRef(!1);return ue.useEffect(()=>{const s=o=>{o.target&&!a.current&&zRn(xqr,r,{originalEvent:o},{discrete:!1})};return t.addEventListener("focusin",s),()=>t.removeEventListener("focusin",s)},[t,r]),{onFocusCapture:()=>a.current=!0,onBlurCapture:()=>a.current=!1}}function q0n(){const e=new CustomEvent(Lst);document.dispatchEvent(e)}function zRn(e,t,r,{discrete:a}){const s=r.originalEvent.target,o=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:r});t&&s.addEventListener(e,t,{once:!0}),a?$Rn(s,o):s.dispatchEvent(o)}var QXe=0;function aCe(){ue.useEffect(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??H0n()),document.body.insertAdjacentElement("beforeend",e[1]??H0n()),QXe++,()=>{QXe===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(t=>t.remove()),QXe--}},[])}function H0n(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}var ZXe="focusScope.autoFocusOnMount",JXe="focusScope.autoFocusOnUnmount",V0n={bubbles:!1,cancelable:!0},kqr="FocusScope",Gle=ue.forwardRef((e,t)=>{const{loop:r=!1,trapped:a=!1,onMountAutoFocus:s,onUnmountAutoFocus:o,...u}=e,[h,f]=ue.useState(null),p=_m(s),m=_m(o),b=ue.useRef(null),_=Yo(t,C=>f(C)),w=ue.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;ue.useEffect(()=>{if(a){let C=function(N){if(w.paused||!h)return;const L=N.target;h.contains(L)?b.current=L:HN(b.current,{select:!0})},A=function(N){if(w.paused||!h)return;const L=N.relatedTarget;L!==null&&(h.contains(L)||HN(b.current,{select:!0}))},k=function(N){if(document.activeElement===document.body)for(const P of N)P.removedNodes.length>0&&HN(h)};document.addEventListener("focusin",C),document.addEventListener("focusout",A);const I=new MutationObserver(k);return h&&I.observe(h,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",C),document.removeEventListener("focusout",A),I.disconnect()}}},[a,h,w.paused]),ue.useEffect(()=>{if(h){j0n.add(w);const C=document.activeElement;if(!h.contains(C)){const k=new CustomEvent(ZXe,V0n);h.addEventListener(ZXe,p),h.dispatchEvent(k),k.defaultPrevented||(Rqr(Dqr(GRn(h)),{select:!0}),document.activeElement===C&&HN(h))}return()=>{h.removeEventListener(ZXe,p),setTimeout(()=>{const k=new CustomEvent(JXe,V0n);h.addEventListener(JXe,m),h.dispatchEvent(k),k.defaultPrevented||HN(C??document.body,{select:!0}),h.removeEventListener(JXe,m),j0n.remove(w)},0)}}},[h,p,m,w]);const S=ue.useCallback(C=>{if(!r&&!a||w.paused)return;const A=C.key==="Tab"&&!C.altKey&&!C.ctrlKey&&!C.metaKey,k=document.activeElement;if(A&&k){const I=C.currentTarget,[N,L]=Iqr(I);N&&L?!C.shiftKey&&k===L?(C.preventDefault(),r&&HN(N,{select:!0})):C.shiftKey&&k===N&&(C.preventDefault(),r&&HN(L,{select:!0})):k===I&&C.preventDefault()}},[r,a,w.paused]);return ct.jsx(Za.div,{tabIndex:-1,...u,ref:_,onKeyDown:S})});Gle.displayName=kqr;function Rqr(e,{select:t=!1}={}){const r=document.activeElement;for(const a of e)if(HN(a,{select:t}),document.activeElement!==r)return}function Iqr(e){const t=GRn(e),r=Y0n(t,e),a=Y0n(t.reverse(),e);return[r,a]}function GRn(e){const t=[],r=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:a=>{const s=a.tagName==="INPUT"&&a.type==="hidden";return a.disabled||a.hidden||s?NodeFilter.FILTER_SKIP:a.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;r.nextNode();)t.push(r.currentNode);return t}function Y0n(e,t){for(const r of e)if(!Nqr(r,{upTo:t}))return r}function Nqr(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function Oqr(e){return e instanceof HTMLInputElement&&"select"in e}function HN(e,{select:t=!1}={}){if(e&&e.focus){const r=document.activeElement;e.focus({preventScroll:!0}),e!==r&&Oqr(e)&&t&&e.select()}}var j0n=Lqr();function Lqr(){let e=[];return{add(t){const r=e[0];t!==r&&(r==null||r.pause()),e=W0n(e,t),e.unshift(t)},remove(t){var r;e=W0n(e,t),(r=e[0])==null||r.resume()}}}function W0n(e,t){const r=[...e],a=r.indexOf(t);return a!==-1&&r.splice(a,1),r}function Dqr(e){return e.filter(t=>t.tagName!=="A")}var Mqr=g$[" useId ".trim().toString()]||(()=>{}),Pqr=0;function I1(e){const[t,r]=ue.useState(Mqr());return Ig(()=>{r(a=>a??String(Pqr++))},[e]),t?`radix-${t}`:""}var Bqr="Arrow",qRn=ue.forwardRef((e,t)=>{const{children:r,width:a=10,height:s=5,...o}=e;return ct.jsx(Za.svg,{...o,ref:t,width:a,height:s,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:e.asChild?r:ct.jsx("polygon",{points:"0,0 30,0 15,10"})})});qRn.displayName=Bqr;var Fqr=qRn;function sCe(e){const[t,r]=ue.useState(void 0);return Ig(()=>{if(e){r({width:e.offsetWidth,height:e.offsetHeight});const a=new ResizeObserver(s=>{if(!Array.isArray(s)||!s.length)return;const o=s[0];let u,h;if("borderBoxSize"in o){const f=o.borderBoxSize,p=Array.isArray(f)?f[0]:f;u=p.inlineSize,h=p.blockSize}else u=e.offsetWidth,h=e.offsetHeight;r({width:u,height:h})});return a.observe(e,{box:"border-box"}),()=>a.unobserve(e)}else r(void 0)},[e]),t}var Oft="Popper",[HRn,T9]=Ng(Oft),[$qr,VRn]=HRn(Oft),YRn=e=>{const{__scopePopper:t,children:r}=e,[a,s]=ue.useState(null);return ct.jsx($qr,{scope:t,anchor:a,onAnchorChange:s,children:r})};YRn.displayName=Oft;var jRn="PopperAnchor",WRn=ue.forwardRef((e,t)=>{const{__scopePopper:r,virtualRef:a,...s}=e,o=VRn(jRn,r),u=ue.useRef(null),h=Yo(t,u),f=ue.useRef(null);return ue.useEffect(()=>{const p=f.current;f.current=(a==null?void 0:a.current)||u.current,p!==f.current&&o.onAnchorChange(f.current)}),a?null:ct.jsx(Za.div,{...s,ref:h})});WRn.displayName=jRn;var Lft="PopperContent",[Uqr,zqr]=HRn(Lft),KRn=ue.forwardRef((e,t)=>{var ve,De,ye,Ee,he,we;const{__scopePopper:r,side:a="bottom",sideOffset:s=0,align:o="center",alignOffset:u=0,arrowPadding:h=0,avoidCollisions:f=!0,collisionBoundary:p=[],collisionPadding:m=0,sticky:b="partial",hideWhenDetached:_=!1,updatePositionStrategy:w="optimized",onPlaced:S,...C}=e,A=VRn(Lft,r),[k,I]=ue.useState(null),N=Yo(t,Ce=>I(Ce)),[L,P]=ue.useState(null),M=sCe(L),F=(M==null?void 0:M.width)??0,U=(M==null?void 0:M.height)??0,$=a+(o!=="center"?"-"+o:""),G=typeof m=="number"?m:{top:0,right:0,bottom:0,left:0,...m},B=Array.isArray(p)?p:[p],Z=B.length>0,z={padding:G,boundary:B.filter(qqr),altBoundary:Z},{refs:Y,floatingStyles:W,placement:Q,isPositioned:V,middlewareData:j}=Zdt({strategy:"fixed",placement:$,whileElementsMounted:(...Ce)=>U6n(...Ce,{animationFrame:w==="always"}),elements:{reference:A.anchor},middleware:[G6n({mainAxis:s+U,alignmentAxis:u}),f&&q6n({mainAxis:!0,crossAxis:!1,limiter:b==="partial"?H6n():void 0,...z}),f&&V6n({...z}),Y6n({...z,apply:({elements:Ce,rects:Ie,availableWidth:Le,availableHeight:Fe})=>{const{width:Ve,height:Oe}=Ie.reference,Dt=Ce.floating.style;Dt.setProperty("--radix-popper-available-width",`${Le}px`),Dt.setProperty("--radix-popper-available-height",`${Fe}px`),Dt.setProperty("--radix-popper-anchor-width",`${Ve}px`),Dt.setProperty("--radix-popper-anchor-height",`${Oe}px`)}}),L&&W6n({element:L,padding:h}),Hqr({arrowWidth:F,arrowHeight:U}),_&&j6n({strategy:"referenceHidden",...z})]}),[ee,te]=ZRn(Q),ne=_m(S);Ig(()=>{V&&(ne==null||ne())},[V,ne]);const se=(ve=j.arrow)==null?void 0:ve.x,ie=(De=j.arrow)==null?void 0:De.y,ge=((ye=j.arrow)==null?void 0:ye.centerOffset)!==0,[ce,be]=ue.useState();return Ig(()=>{k&&be(window.getComputedStyle(k).zIndex)},[k]),ct.jsx("div",{ref:Y.setFloating,"data-radix-popper-content-wrapper":"",style:{...W,transform:V?W.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:ce,"--radix-popper-transform-origin":[(Ee=j.transformOrigin)==null?void 0:Ee.x,(he=j.transformOrigin)==null?void 0:he.y].join(" "),...((we=j.hide)==null?void 0:we.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:ct.jsx(Uqr,{scope:r,placedSide:ee,onArrowChange:P,arrowX:se,arrowY:ie,shouldHideArrow:ge,children:ct.jsx(Za.div,{"data-side":ee,"data-align":te,...C,ref:N,style:{...C.style,animation:V?void 0:"none"}})})})});KRn.displayName=Lft;var XRn="PopperArrow",Gqr={top:"bottom",right:"left",bottom:"top",left:"right"},QRn=ue.forwardRef(function(t,r){const{__scopePopper:a,...s}=t,o=zqr(XRn,a),u=Gqr[o.placedSide];return ct.jsx("span",{ref:o.onArrowChange,style:{position:"absolute",left:o.arrowX,top:o.arrowY,[u]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[o.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[o.placedSide],visibility:o.shouldHideArrow?"hidden":void 0},children:ct.jsx(Fqr,{...s,ref:r,style:{...s.style,display:"block"}})})});QRn.displayName=XRn;function qqr(e){return e!==null}var Hqr=e=>({name:"transformOrigin",options:e,fn(t){var A,k,I;const{placement:r,rects:a,middlewareData:s}=t,u=((A=s.arrow)==null?void 0:A.centerOffset)!==0,h=u?0:e.arrowWidth,f=u?0:e.arrowHeight,[p,m]=ZRn(r),b={start:"0%",center:"50%",end:"100%"}[m],_=(((k=s.arrow)==null?void 0:k.x)??0)+h/2,w=(((I=s.arrow)==null?void 0:I.y)??0)+f/2;let S="",C="";return p==="bottom"?(S=u?b:`${_}px`,C=`${-f}px`):p==="top"?(S=u?b:`${_}px`,C=`${a.floating.height+f}px`):p==="right"?(S=`${-f}px`,C=u?b:`${w}px`):p==="left"&&(S=`${a.floating.width+f}px`,C=u?b:`${w}px`),{data:{x:S,y:C}}}});function ZRn(e){const[t,r="center"]=e.split("-");return[t,r]}var oCe=YRn,qle=WRn,lCe=KRn,cCe=QRn,Vqr="Portal",AW=ue.forwardRef((e,t)=>{var h;const{container:r,...a}=e,[s,o]=ue.useState(!1);Ig(()=>o(!0),[]);const u=r||s&&((h=globalThis==null?void 0:globalThis.document)==null?void 0:h.body);return u?odt.createPortal(ct.jsx(Za.div,{...a,ref:t}),u):null});AW.displayName=Vqr;function Yqr(e,t){return ue.useReducer((r,a)=>t[r][a]??r,e)}var D1=e=>{const{present:t,children:r}=e,a=jqr(t),s=typeof r=="function"?r({present:a.isPresent}):ue.Children.only(r),o=Yo(a.ref,Wqr(s));return typeof r=="function"||a.isPresent?ue.cloneElement(s,{ref:o}):null};D1.displayName="Presence";function jqr(e){const[t,r]=ue.useState(),a=ue.useRef(null),s=ue.useRef(e),o=ue.useRef("none"),u=e?"mounted":"unmounted",[h,f]=Yqr(u,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return ue.useEffect(()=>{const p=A_e(a.current);o.current=h==="mounted"?p:"none"},[h]),Ig(()=>{const p=a.current,m=s.current;if(m!==e){const _=o.current,w=A_e(p);e?f("MOUNT"):w==="none"||(p==null?void 0:p.display)==="none"?f("UNMOUNT"):f(m&&_!==w?"ANIMATION_OUT":"UNMOUNT"),s.current=e}},[e,f]),Ig(()=>{if(t){let p;const m=t.ownerDocument.defaultView??window,b=w=>{const C=A_e(a.current).includes(CSS.escape(w.animationName));if(w.target===t&&C&&(f("ANIMATION_END"),!s.current)){const A=t.style.animationFillMode;t.style.animationFillMode="forwards",p=m.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=A)})}},_=w=>{w.target===t&&(o.current=A_e(a.current))};return t.addEventListener("animationstart",_),t.addEventListener("animationcancel",b),t.addEventListener("animationend",b),()=>{m.clearTimeout(p),t.removeEventListener("animationstart",_),t.removeEventListener("animationcancel",b),t.removeEventListener("animationend",b)}}else f("ANIMATION_END")},[t,f]),{isPresent:["mounted","unmountSuspended"].includes(h),ref:ue.useCallback(p=>{a.current=p?getComputedStyle(p):null,r(p)},[])}}function A_e(e){return(e==null?void 0:e.animationName)||"none"}function Wqr(e){var a,s;let t=(a=Object.getOwnPropertyDescriptor(e.props,"ref"))==null?void 0:a.get,r=t&&"isReactWarning"in t&&t.isReactWarning;return r?e.ref:(t=(s=Object.getOwnPropertyDescriptor(e,"ref"))==null?void 0:s.get,r=t&&"isReactWarning"in t&&t.isReactWarning,r?e.props.ref:e.props.ref||e.ref)}var eQe="rovingFocusGroup.onEntryFocus",Kqr={bubbles:!1,cancelable:!0},Hle="RovingFocusGroup",[Dst,JRn,Xqr]=iCe(Hle),[Qqr,C9]=Ng(Hle,[Xqr]),[Zqr,Jqr]=Qqr(Hle),e8n=ue.forwardRef((e,t)=>ct.jsx(Dst.Provider,{scope:e.__scopeRovingFocusGroup,children:ct.jsx(Dst.Slot,{scope:e.__scopeRovingFocusGroup,children:ct.jsx(eHr,{...e,ref:t})})}));e8n.displayName=Hle;var eHr=ue.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:r,orientation:a,loop:s=!1,dir:o,currentTabStopId:u,defaultCurrentTabStopId:h,onCurrentTabStopIdChange:f,onEntryFocus:p,preventScrollOnEntryFocus:m=!1,...b}=e,_=ue.useRef(null),w=Yo(t,_),S=S9(o),[C,A]=km({prop:u,defaultProp:h??null,onChange:f,caller:Hle}),[k,I]=ue.useState(!1),N=_m(p),L=JRn(r),P=ue.useRef(!1),[M,F]=ue.useState(0);return ue.useEffect(()=>{const U=_.current;if(U)return U.addEventListener(eQe,N),()=>U.removeEventListener(eQe,N)},[N]),ct.jsx(Zqr,{scope:r,orientation:a,dir:S,loop:s,currentTabStopId:C,onItemFocus:ue.useCallback(U=>A(U),[A]),onItemShiftTab:ue.useCallback(()=>I(!0),[]),onFocusableItemAdd:ue.useCallback(()=>F(U=>U+1),[]),onFocusableItemRemove:ue.useCallback(()=>F(U=>U-1),[]),children:ct.jsx(Za.div,{tabIndex:k||M===0?-1:0,"data-orientation":a,...b,ref:w,style:{outline:"none",...e.style},onMouseDown:ji(e.onMouseDown,()=>{P.current=!0}),onFocus:ji(e.onFocus,U=>{const $=!P.current;if(U.target===U.currentTarget&&$&&!k){const G=new CustomEvent(eQe,Kqr);if(U.currentTarget.dispatchEvent(G),!G.defaultPrevented){const B=L().filter(Q=>Q.focusable),Z=B.find(Q=>Q.active),z=B.find(Q=>Q.id===C),W=[Z,z,...B].filter(Boolean).map(Q=>Q.ref.current);r8n(W,m)}}P.current=!1}),onBlur:ji(e.onBlur,()=>I(!1))})})}),t8n="RovingFocusGroupItem",n8n=ue.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:r,focusable:a=!0,active:s=!1,tabStopId:o,children:u,...h}=e,f=I1(),p=o||f,m=Jqr(t8n,r),b=m.currentTabStopId===p,_=JRn(r),{onFocusableItemAdd:w,onFocusableItemRemove:S,currentTabStopId:C}=m;return ue.useEffect(()=>{if(a)return w(),()=>S()},[a,w,S]),ct.jsx(Dst.ItemSlot,{scope:r,id:p,focusable:a,active:s,children:ct.jsx(Za.span,{tabIndex:b?0:-1,"data-orientation":m.orientation,...h,ref:t,onMouseDown:ji(e.onMouseDown,A=>{a?m.onItemFocus(p):A.preventDefault()}),onFocus:ji(e.onFocus,()=>m.onItemFocus(p)),onKeyDown:ji(e.onKeyDown,A=>{if(A.key==="Tab"&&A.shiftKey){m.onItemShiftTab();return}if(A.target!==A.currentTarget)return;const k=rHr(A,m.orientation,m.dir);if(k!==void 0){if(A.metaKey||A.ctrlKey||A.altKey||A.shiftKey)return;A.preventDefault();let N=_().filter(L=>L.focusable).map(L=>L.ref.current);if(k==="last")N.reverse();else if(k==="prev"||k==="next"){k==="prev"&&N.reverse();const L=N.indexOf(A.currentTarget);N=m.loop?iHr(N,L+1):N.slice(L+1)}setTimeout(()=>r8n(N))}}),children:typeof u=="function"?u({isCurrentTabStop:b,hasTabStop:C!=null}):u})})});n8n.displayName=t8n;var tHr={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function nHr(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function rHr(e,t,r){const a=nHr(e.key,r);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(a))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(a)))return tHr[a]}function r8n(e,t=!1){const r=document.activeElement;for(const a of e)if(a===r||(a.focus({preventScroll:t}),document.activeElement!==r))return}function iHr(e,t){return e.map((r,a)=>e[(t+a)%e.length])}var uCe=e8n,hCe=n8n,aHr=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},DH=new WeakMap,k_e=new WeakMap,R_e={},tQe=0,i8n=function(e){return e&&(e.host||i8n(e.parentNode))},sHr=function(e,t){return t.map(function(r){if(e.contains(r))return r;var a=i8n(r);return a&&e.contains(a)?a:(console.error("aria-hidden",r,"in not contained inside",e,". Doing nothing"),null)}).filter(function(r){return!!r})},oHr=function(e,t,r,a){var s=sHr(t,Array.isArray(e)?e:[e]);R_e[r]||(R_e[r]=new WeakMap);var o=R_e[r],u=[],h=new Set,f=new Set(s),p=function(b){!b||h.has(b)||(h.add(b),p(b.parentNode))};s.forEach(p);var m=function(b){!b||f.has(b)||Array.prototype.forEach.call(b.children,function(_){if(h.has(_))m(_);else try{var w=_.getAttribute(a),S=w!==null&&w!=="false",C=(DH.get(_)||0)+1,A=(o.get(_)||0)+1;DH.set(_,C),o.set(_,A),u.push(_),C===1&&S&&k_e.set(_,!0),A===1&&_.setAttribute(r,"true"),S||_.setAttribute(a,"true")}catch(k){console.error("aria-hidden: cannot operate on ",_,k)}})};return m(t),h.clear(),tQe++,function(){u.forEach(function(b){var _=DH.get(b)-1,w=o.get(b)-1;DH.set(b,_),o.set(b,w),_||(k_e.has(b)||b.removeAttribute(a),k_e.delete(b)),w||b.removeAttribute(r)}),tQe--,tQe||(DH=new WeakMap,DH=new WeakMap,k_e=new WeakMap,R_e={})}},Vle=function(e,t,r){r===void 0&&(r="data-aria-hidden");var a=Array.from(Array.isArray(e)?e:[e]),s=aHr(e);return s?(a.push.apply(a,Array.from(s.querySelectorAll("[aria-live], script"))),oHr(a,s,r,"aria-hidden")):function(){return null}},HEe="right-scroll-bar-position",VEe="width-before-scroll-bar",lHr="with-scroll-bars-hidden",cHr="--removed-body-scroll-bar-size";function nQe(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function uHr(e,t){var r=ue.useState(function(){return{value:e,callback:t,facade:{get current(){return r.value},set current(a){var s=r.value;s!==a&&(r.value=a,r.callback(a,s))}}}})[0];return r.callback=t,r.facade}var hHr=typeof window<"u"?ue.useLayoutEffect:ue.useEffect,K0n=new WeakMap;function dHr(e,t){var r=uHr(null,function(a){return e.forEach(function(s){return nQe(s,a)})});return hHr(function(){var a=K0n.get(r);if(a){var s=new Set(a),o=new Set(e),u=r.current;s.forEach(function(h){o.has(h)||nQe(h,null)}),o.forEach(function(h){s.has(h)||nQe(h,u)})}K0n.set(r,e)},[e]),r}function fHr(e){return e}function pHr(e,t){t===void 0&&(t=fHr);var r=[],a=!1,s={read:function(){if(a)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return r.length?r[r.length-1]:e},useMedium:function(o){var u=t(o,a);return r.push(u),function(){r=r.filter(function(h){return h!==u})}},assignSyncMedium:function(o){for(a=!0;r.length;){var u=r;r=[],u.forEach(o)}r={push:function(h){return o(h)},filter:function(){return r}}},assignMedium:function(o){a=!0;var u=[];if(r.length){var h=r;r=[],h.forEach(o),u=r}var f=function(){var m=u;u=[],m.forEach(o)},p=function(){return Promise.resolve().then(f)};p(),r={push:function(m){u.push(m),p()},filter:function(m){return u=u.filter(m),r}}}};return s}function gHr(e){e===void 0&&(e={});var t=pHr(null);return t.options=BC({async:!0,ssr:!1},e),t}var a8n=function(e){var t=e.sideCar,r=J6n(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var a=t.read();if(!a)throw new Error("Sidecar medium not found");return ue.createElement(a,BC({},r))};a8n.isSideCarExport=!0;function mHr(e,t){return e.useMedium(t),a8n}var s8n=gHr(),rQe=function(){},dCe=ue.forwardRef(function(e,t){var r=ue.useRef(null),a=ue.useState({onScrollCapture:rQe,onWheelCapture:rQe,onTouchMoveCapture:rQe}),s=a[0],o=a[1],u=e.forwardProps,h=e.children,f=e.className,p=e.removeScrollBar,m=e.enabled,b=e.shards,_=e.sideCar,w=e.noRelative,S=e.noIsolation,C=e.inert,A=e.allowPinchZoom,k=e.as,I=k===void 0?"div":k,N=e.gapMode,L=J6n(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noRelative","noIsolation","inert","allowPinchZoom","as","gapMode"]),P=_,M=dHr([r,t]),F=BC(BC({},L),s);return ue.createElement(ue.Fragment,null,m&&ue.createElement(P,{sideCar:s8n,removeScrollBar:p,shards:b,noRelative:w,noIsolation:S,inert:C,setCallbacks:o,allowPinchZoom:!!A,lockRef:r,gapMode:N}),u?ue.cloneElement(ue.Children.only(h),BC(BC({},F),{ref:M})):ue.createElement(I,BC({},F,{className:f,ref:M}),h))});dCe.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};dCe.classNames={fullWidth:VEe,zeroRight:HEe};var bHr=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function yHr(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=bHr();return t&&e.setAttribute("nonce",t),e}function vHr(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function _Hr(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var wHr=function(){var e=0,t=null;return{add:function(r){e==0&&(t=yHr())&&(vHr(t,r),_Hr(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},EHr=function(){var e=wHr();return function(t,r){ue.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&r])}},o8n=function(){var e=EHr(),t=function(r){var a=r.styles,s=r.dynamic;return e(a,s),null};return t},xHr={left:0,top:0,right:0,gap:0},iQe=function(e){return parseInt(e||"",10)||0},SHr=function(e){var t=window.getComputedStyle(document.body),r=t[e==="padding"?"paddingLeft":"marginLeft"],a=t[e==="padding"?"paddingTop":"marginTop"],s=t[e==="padding"?"paddingRight":"marginRight"];return[iQe(r),iQe(a),iQe(s)]},THr=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return xHr;var t=SHr(e),r=document.documentElement.clientWidth,a=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,a-r+t[2]-t[0])}},CHr=o8n(),HV="data-scroll-locked",AHr=function(e,t,r,a){var s=e.left,o=e.top,u=e.right,h=e.gap;return r===void 0&&(r="margin"),` + .`.concat(lHr,` { + overflow: hidden `).concat(a,`; + padding-right: `).concat(h,"px ").concat(a,`; + } + body[`).concat(HV,`] { + overflow: hidden `).concat(a,`; + overscroll-behavior: contain; + `).concat([t&&"position: relative ".concat(a,";"),r==="margin"&&` + padding-left: `.concat(s,`px; + padding-top: `).concat(o,`px; + padding-right: `).concat(u,`px; + margin-left:0; + margin-top:0; + margin-right: `).concat(h,"px ").concat(a,`; + `),r==="padding"&&"padding-right: ".concat(h,"px ").concat(a,";")].filter(Boolean).join(""),` + } + + .`).concat(HEe,` { + right: `).concat(h,"px ").concat(a,`; + } + + .`).concat(VEe,` { + margin-right: `).concat(h,"px ").concat(a,`; + } + + .`).concat(HEe," .").concat(HEe,` { + right: 0 `).concat(a,`; + } + + .`).concat(VEe," .").concat(VEe,` { + margin-right: 0 `).concat(a,`; + } + + body[`).concat(HV,`] { + `).concat(cHr,": ").concat(h,`px; + } +`)},X0n=function(){var e=parseInt(document.body.getAttribute(HV)||"0",10);return isFinite(e)?e:0},kHr=function(){ue.useEffect(function(){return document.body.setAttribute(HV,(X0n()+1).toString()),function(){var e=X0n()-1;e<=0?document.body.removeAttribute(HV):document.body.setAttribute(HV,e.toString())}},[])},RHr=function(e){var t=e.noRelative,r=e.noImportant,a=e.gapMode,s=a===void 0?"margin":a;kHr();var o=ue.useMemo(function(){return THr(s)},[s]);return ue.createElement(CHr,{styles:AHr(o,!t,s,r?"":"!important")})},Mst=!1;if(typeof window<"u")try{var I_e=Object.defineProperty({},"passive",{get:function(){return Mst=!0,!0}});window.addEventListener("test",I_e,I_e),window.removeEventListener("test",I_e,I_e)}catch{Mst=!1}var MH=Mst?{passive:!1}:!1,IHr=function(e){return e.tagName==="TEXTAREA"},l8n=function(e,t){if(!(e instanceof Element))return!1;var r=window.getComputedStyle(e);return r[t]!=="hidden"&&!(r.overflowY===r.overflowX&&!IHr(e)&&r[t]==="visible")},NHr=function(e){return l8n(e,"overflowY")},OHr=function(e){return l8n(e,"overflowX")},Q0n=function(e,t){var r=t.ownerDocument,a=t;do{typeof ShadowRoot<"u"&&a instanceof ShadowRoot&&(a=a.host);var s=c8n(e,a);if(s){var o=u8n(e,a),u=o[1],h=o[2];if(u>h)return!0}a=a.parentNode}while(a&&a!==r.body);return!1},LHr=function(e){var t=e.scrollTop,r=e.scrollHeight,a=e.clientHeight;return[t,r,a]},DHr=function(e){var t=e.scrollLeft,r=e.scrollWidth,a=e.clientWidth;return[t,r,a]},c8n=function(e,t){return e==="v"?NHr(t):OHr(t)},u8n=function(e,t){return e==="v"?LHr(t):DHr(t)},MHr=function(e,t){return e==="h"&&t==="rtl"?-1:1},PHr=function(e,t,r,a,s){var o=MHr(e,window.getComputedStyle(t).direction),u=o*a,h=r.target,f=t.contains(h),p=!1,m=u>0,b=0,_=0;do{if(!h)break;var w=u8n(e,h),S=w[0],C=w[1],A=w[2],k=C-A-o*S;(S||k)&&c8n(e,h)&&(b+=k,_+=S);var I=h.parentNode;h=I&&I.nodeType===Node.DOCUMENT_FRAGMENT_NODE?I.host:I}while(!f&&h!==document.body||f&&(t.contains(h)||t===h));return(m&&Math.abs(b)<1||!m&&Math.abs(_)<1)&&(p=!0),p},N_e=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},Z0n=function(e){return[e.deltaX,e.deltaY]},J0n=function(e){return e&&"current"in e?e.current:e},BHr=function(e,t){return e[0]===t[0]&&e[1]===t[1]},FHr=function(e){return` + .block-interactivity-`.concat(e,` {pointer-events: none;} + .allow-interactivity-`).concat(e,` {pointer-events: all;} +`)},$Hr=0,PH=[];function UHr(e){var t=ue.useRef([]),r=ue.useRef([0,0]),a=ue.useRef(),s=ue.useState($Hr++)[0],o=ue.useState(o8n)[0],u=ue.useRef(e);ue.useEffect(function(){u.current=e},[e]),ue.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(s));var C=FFr([e.lockRef.current],(e.shards||[]).map(J0n),!0).filter(Boolean);return C.forEach(function(A){return A.classList.add("allow-interactivity-".concat(s))}),function(){document.body.classList.remove("block-interactivity-".concat(s)),C.forEach(function(A){return A.classList.remove("allow-interactivity-".concat(s))})}}},[e.inert,e.lockRef.current,e.shards]);var h=ue.useCallback(function(C,A){if("touches"in C&&C.touches.length===2||C.type==="wheel"&&C.ctrlKey)return!u.current.allowPinchZoom;var k=N_e(C),I=r.current,N="deltaX"in C?C.deltaX:I[0]-k[0],L="deltaY"in C?C.deltaY:I[1]-k[1],P,M=C.target,F=Math.abs(N)>Math.abs(L)?"h":"v";if("touches"in C&&F==="h"&&M.type==="range")return!1;var U=window.getSelection(),$=U&&U.anchorNode,G=$?$===M||$.contains(M):!1;if(G)return!1;var B=Q0n(F,M);if(!B)return!0;if(B?P=F:(P=F==="v"?"h":"v",B=Q0n(F,M)),!B)return!1;if(!a.current&&"changedTouches"in C&&(N||L)&&(a.current=P),!P)return!0;var Z=a.current||P;return PHr(Z,A,C,Z==="h"?N:L)},[]),f=ue.useCallback(function(C){var A=C;if(!(!PH.length||PH[PH.length-1]!==o)){var k="deltaY"in A?Z0n(A):N_e(A),I=t.current.filter(function(P){return P.name===A.type&&(P.target===A.target||A.target===P.shadowParent)&&BHr(P.delta,k)})[0];if(I&&I.should){A.cancelable&&A.preventDefault();return}if(!I){var N=(u.current.shards||[]).map(J0n).filter(Boolean).filter(function(P){return P.contains(A.target)}),L=N.length>0?h(A,N[0]):!u.current.noIsolation;L&&A.cancelable&&A.preventDefault()}}},[]),p=ue.useCallback(function(C,A,k,I){var N={name:C,delta:A,target:k,should:I,shadowParent:zHr(k)};t.current.push(N),setTimeout(function(){t.current=t.current.filter(function(L){return L!==N})},1)},[]),m=ue.useCallback(function(C){r.current=N_e(C),a.current=void 0},[]),b=ue.useCallback(function(C){p(C.type,Z0n(C),C.target,h(C,e.lockRef.current))},[]),_=ue.useCallback(function(C){p(C.type,N_e(C),C.target,h(C,e.lockRef.current))},[]);ue.useEffect(function(){return PH.push(o),e.setCallbacks({onScrollCapture:b,onWheelCapture:b,onTouchMoveCapture:_}),document.addEventListener("wheel",f,MH),document.addEventListener("touchmove",f,MH),document.addEventListener("touchstart",m,MH),function(){PH=PH.filter(function(C){return C!==o}),document.removeEventListener("wheel",f,MH),document.removeEventListener("touchmove",f,MH),document.removeEventListener("touchstart",m,MH)}},[]);var w=e.removeScrollBar,S=e.inert;return ue.createElement(ue.Fragment,null,S?ue.createElement(o,{styles:FHr(s)}):null,w?ue.createElement(RHr,{noRelative:e.noRelative,gapMode:e.gapMode}):null)}function zHr(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}const GHr=mHr(s8n,UHr);var kW=ue.forwardRef(function(e,t){return ue.createElement(dCe,BC({},e,{ref:t,sideCar:GHr}))});kW.classNames=dCe.classNames;var Pst=["Enter"," "],qHr=["ArrowDown","PageUp","Home"],h8n=["ArrowUp","PageDown","End"],HHr=[...qHr,...h8n],VHr={ltr:[...Pst,"ArrowRight"],rtl:[...Pst,"ArrowLeft"]},YHr={ltr:["ArrowLeft"],rtl:["ArrowRight"]},Yle="Menu",[Zse,jHr,WHr]=iCe(Yle),[y$,d8n]=Ng(Yle,[WHr,T9,C9]),fCe=T9(),f8n=C9(),[KHr,v$]=y$(Yle),[XHr,jle]=y$(Yle),p8n=e=>{const{__scopeMenu:t,open:r=!1,children:a,dir:s,onOpenChange:o,modal:u=!0}=e,h=fCe(t),[f,p]=ue.useState(null),m=ue.useRef(!1),b=_m(o),_=S9(s);return ue.useEffect(()=>{const w=()=>{m.current=!0,document.addEventListener("pointerdown",S,{capture:!0,once:!0}),document.addEventListener("pointermove",S,{capture:!0,once:!0})},S=()=>m.current=!1;return document.addEventListener("keydown",w,{capture:!0}),()=>{document.removeEventListener("keydown",w,{capture:!0}),document.removeEventListener("pointerdown",S,{capture:!0}),document.removeEventListener("pointermove",S,{capture:!0})}},[]),ct.jsx(oCe,{...h,children:ct.jsx(KHr,{scope:t,open:r,onOpenChange:b,content:f,onContentChange:p,children:ct.jsx(XHr,{scope:t,onClose:ue.useCallback(()=>b(!1),[b]),isUsingKeyboardRef:m,dir:_,modal:u,children:a})})})};p8n.displayName=Yle;var QHr="MenuAnchor",Dft=ue.forwardRef((e,t)=>{const{__scopeMenu:r,...a}=e,s=fCe(r);return ct.jsx(qle,{...s,...a,ref:t})});Dft.displayName=QHr;var Mft="MenuPortal",[ZHr,g8n]=y$(Mft,{forceMount:void 0}),m8n=e=>{const{__scopeMenu:t,forceMount:r,children:a,container:s}=e,o=v$(Mft,t);return ct.jsx(ZHr,{scope:t,forceMount:r,children:ct.jsx(D1,{present:r||o.open,children:ct.jsx(AW,{asChild:!0,container:s,children:a})})})};m8n.displayName=Mft;var uS="MenuContent",[JHr,Pft]=y$(uS),b8n=ue.forwardRef((e,t)=>{const r=g8n(uS,e.__scopeMenu),{forceMount:a=r.forceMount,...s}=e,o=v$(uS,e.__scopeMenu),u=jle(uS,e.__scopeMenu);return ct.jsx(Zse.Provider,{scope:e.__scopeMenu,children:ct.jsx(D1,{present:a||o.open,children:ct.jsx(Zse.Slot,{scope:e.__scopeMenu,children:u.modal?ct.jsx(eVr,{...s,ref:t}):ct.jsx(tVr,{...s,ref:t})})})})}),eVr=ue.forwardRef((e,t)=>{const r=v$(uS,e.__scopeMenu),a=ue.useRef(null),s=Yo(t,a);return ue.useEffect(()=>{const o=a.current;if(o)return Vle(o)},[]),ct.jsx(Bft,{...e,ref:s,trapFocus:r.open,disableOutsidePointerEvents:r.open,disableOutsideScroll:!0,onFocusOutside:ji(e.onFocusOutside,o=>o.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>r.onOpenChange(!1)})}),tVr=ue.forwardRef((e,t)=>{const r=v$(uS,e.__scopeMenu);return ct.jsx(Bft,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>r.onOpenChange(!1)})}),nVr=wF("MenuContent.ScrollLock"),Bft=ue.forwardRef((e,t)=>{const{__scopeMenu:r,loop:a=!1,trapFocus:s,onOpenAutoFocus:o,onCloseAutoFocus:u,disableOutsidePointerEvents:h,onEntryFocus:f,onEscapeKeyDown:p,onPointerDownOutside:m,onFocusOutside:b,onInteractOutside:_,onDismiss:w,disableOutsideScroll:S,...C}=e,A=v$(uS,r),k=jle(uS,r),I=fCe(r),N=f8n(r),L=jHr(r),[P,M]=ue.useState(null),F=ue.useRef(null),U=Yo(t,F,A.onContentChange),$=ue.useRef(0),G=ue.useRef(""),B=ue.useRef(0),Z=ue.useRef(null),z=ue.useRef("right"),Y=ue.useRef(0),W=S?kW:ue.Fragment,Q=S?{as:nVr,allowPinchZoom:!0}:void 0,V=ee=>{var ve,De;const te=G.current+ee,ne=L().filter(ye=>!ye.disabled),se=document.activeElement,ie=(ve=ne.find(ye=>ye.ref.current===se))==null?void 0:ve.textValue,ge=ne.map(ye=>ye.textValue),ce=pVr(ge,te,ie),be=(De=ne.find(ye=>ye.textValue===ce))==null?void 0:De.ref.current;(function ye(Ee){G.current=Ee,window.clearTimeout($.current),Ee!==""&&($.current=window.setTimeout(()=>ye(""),1e3))})(te),be&&setTimeout(()=>be.focus())};ue.useEffect(()=>()=>window.clearTimeout($.current),[]),aCe();const j=ue.useCallback(ee=>{var ne,se;return z.current===((ne=Z.current)==null?void 0:ne.side)&&mVr(ee,(se=Z.current)==null?void 0:se.area)},[]);return ct.jsx(JHr,{scope:r,searchRef:G,onItemEnter:ue.useCallback(ee=>{j(ee)&&ee.preventDefault()},[j]),onItemLeave:ue.useCallback(ee=>{var te;j(ee)||((te=F.current)==null||te.focus(),M(null))},[j]),onTriggerLeave:ue.useCallback(ee=>{j(ee)&&ee.preventDefault()},[j]),pointerGraceTimerRef:B,onPointerGraceIntentChange:ue.useCallback(ee=>{Z.current=ee},[]),children:ct.jsx(W,{...Q,children:ct.jsx(Gle,{asChild:!0,trapped:s,onMountAutoFocus:ji(o,ee=>{var te;ee.preventDefault(),(te=F.current)==null||te.focus({preventScroll:!0})}),onUnmountAutoFocus:u,children:ct.jsx(CW,{asChild:!0,disableOutsidePointerEvents:h,onEscapeKeyDown:p,onPointerDownOutside:m,onFocusOutside:b,onInteractOutside:_,onDismiss:w,children:ct.jsx(uCe,{asChild:!0,...N,dir:k.dir,orientation:"vertical",loop:a,currentTabStopId:P,onCurrentTabStopIdChange:M,onEntryFocus:ji(f,ee=>{k.isUsingKeyboardRef.current||ee.preventDefault()}),preventScrollOnEntryFocus:!0,children:ct.jsx(lCe,{role:"menu","aria-orientation":"vertical","data-state":L8n(A.open),"data-radix-menu-content":"",dir:k.dir,...I,...C,ref:U,style:{outline:"none",...C.style},onKeyDown:ji(C.onKeyDown,ee=>{const ne=ee.target.closest("[data-radix-menu-content]")===ee.currentTarget,se=ee.ctrlKey||ee.altKey||ee.metaKey,ie=ee.key.length===1;ne&&(ee.key==="Tab"&&ee.preventDefault(),!se&&ie&&V(ee.key));const ge=F.current;if(ee.target!==ge||!HHr.includes(ee.key))return;ee.preventDefault();const be=L().filter(ve=>!ve.disabled).map(ve=>ve.ref.current);h8n.includes(ee.key)&&be.reverse(),dVr(be)}),onBlur:ji(e.onBlur,ee=>{ee.currentTarget.contains(ee.target)||(window.clearTimeout($.current),G.current="")}),onPointerMove:ji(e.onPointerMove,Jse(ee=>{const te=ee.target,ne=Y.current!==ee.clientX;if(ee.currentTarget.contains(te)&&ne){const se=ee.clientX>Y.current?"right":"left";z.current=se,Y.current=ee.clientX}}))})})})})})})});b8n.displayName=uS;var rVr="MenuGroup",Fft=ue.forwardRef((e,t)=>{const{__scopeMenu:r,...a}=e;return ct.jsx(Za.div,{role:"group",...a,ref:t})});Fft.displayName=rVr;var iVr="MenuLabel",y8n=ue.forwardRef((e,t)=>{const{__scopeMenu:r,...a}=e;return ct.jsx(Za.div,{...a,ref:t})});y8n.displayName=iVr;var GSe="MenuItem",e1n="menu.itemSelect",pCe=ue.forwardRef((e,t)=>{const{disabled:r=!1,onSelect:a,...s}=e,o=ue.useRef(null),u=jle(GSe,e.__scopeMenu),h=Pft(GSe,e.__scopeMenu),f=Yo(t,o),p=ue.useRef(!1),m=()=>{const b=o.current;if(!r&&b){const _=new CustomEvent(e1n,{bubbles:!0,cancelable:!0});b.addEventListener(e1n,w=>a==null?void 0:a(w),{once:!0}),$Rn(b,_),_.defaultPrevented?p.current=!1:u.onClose()}};return ct.jsx(v8n,{...s,ref:f,disabled:r,onClick:ji(e.onClick,m),onPointerDown:b=>{var _;(_=e.onPointerDown)==null||_.call(e,b),p.current=!0},onPointerUp:ji(e.onPointerUp,b=>{var _;p.current||(_=b.currentTarget)==null||_.click()}),onKeyDown:ji(e.onKeyDown,b=>{const _=h.searchRef.current!=="";r||_&&b.key===" "||Pst.includes(b.key)&&(b.currentTarget.click(),b.preventDefault())})})});pCe.displayName=GSe;var v8n=ue.forwardRef((e,t)=>{const{__scopeMenu:r,disabled:a=!1,textValue:s,...o}=e,u=Pft(GSe,r),h=f8n(r),f=ue.useRef(null),p=Yo(t,f),[m,b]=ue.useState(!1),[_,w]=ue.useState("");return ue.useEffect(()=>{const S=f.current;S&&w((S.textContent??"").trim())},[o.children]),ct.jsx(Zse.ItemSlot,{scope:r,disabled:a,textValue:s??_,children:ct.jsx(hCe,{asChild:!0,...h,focusable:!a,children:ct.jsx(Za.div,{role:"menuitem","data-highlighted":m?"":void 0,"aria-disabled":a||void 0,"data-disabled":a?"":void 0,...o,ref:p,onPointerMove:ji(e.onPointerMove,Jse(S=>{a?u.onItemLeave(S):(u.onItemEnter(S),S.defaultPrevented||S.currentTarget.focus({preventScroll:!0}))})),onPointerLeave:ji(e.onPointerLeave,Jse(S=>u.onItemLeave(S))),onFocus:ji(e.onFocus,()=>b(!0)),onBlur:ji(e.onBlur,()=>b(!1))})})})}),aVr="MenuCheckboxItem",_8n=ue.forwardRef((e,t)=>{const{checked:r=!1,onCheckedChange:a,...s}=e;return ct.jsx(T8n,{scope:e.__scopeMenu,checked:r,children:ct.jsx(pCe,{role:"menuitemcheckbox","aria-checked":qSe(r)?"mixed":r,...s,ref:t,"data-state":Uft(r),onSelect:ji(s.onSelect,()=>a==null?void 0:a(qSe(r)?!0:!r),{checkForDefaultPrevented:!1})})})});_8n.displayName=aVr;var w8n="MenuRadioGroup",[sVr,oVr]=y$(w8n,{value:void 0,onValueChange:()=>{}}),E8n=ue.forwardRef((e,t)=>{const{value:r,onValueChange:a,...s}=e,o=_m(a);return ct.jsx(sVr,{scope:e.__scopeMenu,value:r,onValueChange:o,children:ct.jsx(Fft,{...s,ref:t})})});E8n.displayName=w8n;var x8n="MenuRadioItem",S8n=ue.forwardRef((e,t)=>{const{value:r,...a}=e,s=oVr(x8n,e.__scopeMenu),o=r===s.value;return ct.jsx(T8n,{scope:e.__scopeMenu,checked:o,children:ct.jsx(pCe,{role:"menuitemradio","aria-checked":o,...a,ref:t,"data-state":Uft(o),onSelect:ji(a.onSelect,()=>{var u;return(u=s.onValueChange)==null?void 0:u.call(s,r)},{checkForDefaultPrevented:!1})})})});S8n.displayName=x8n;var $ft="MenuItemIndicator",[T8n,lVr]=y$($ft,{checked:!1}),C8n=ue.forwardRef((e,t)=>{const{__scopeMenu:r,forceMount:a,...s}=e,o=lVr($ft,r);return ct.jsx(D1,{present:a||qSe(o.checked)||o.checked===!0,children:ct.jsx(Za.span,{...s,ref:t,"data-state":Uft(o.checked)})})});C8n.displayName=$ft;var cVr="MenuSeparator",A8n=ue.forwardRef((e,t)=>{const{__scopeMenu:r,...a}=e;return ct.jsx(Za.div,{role:"separator","aria-orientation":"horizontal",...a,ref:t})});A8n.displayName=cVr;var uVr="MenuArrow",k8n=ue.forwardRef((e,t)=>{const{__scopeMenu:r,...a}=e,s=fCe(r);return ct.jsx(cCe,{...s,...a,ref:t})});k8n.displayName=uVr;var hVr="MenuSub",[S3a,R8n]=y$(hVr),Cie="MenuSubTrigger",I8n=ue.forwardRef((e,t)=>{const r=v$(Cie,e.__scopeMenu),a=jle(Cie,e.__scopeMenu),s=R8n(Cie,e.__scopeMenu),o=Pft(Cie,e.__scopeMenu),u=ue.useRef(null),{pointerGraceTimerRef:h,onPointerGraceIntentChange:f}=o,p={__scopeMenu:e.__scopeMenu},m=ue.useCallback(()=>{u.current&&window.clearTimeout(u.current),u.current=null},[]);return ue.useEffect(()=>m,[m]),ue.useEffect(()=>{const b=h.current;return()=>{window.clearTimeout(b),f(null)}},[h,f]),ct.jsx(Dft,{asChild:!0,...p,children:ct.jsx(v8n,{id:s.triggerId,"aria-haspopup":"menu","aria-expanded":r.open,"aria-controls":s.contentId,"data-state":L8n(r.open),...e,ref:mA(t,s.onTriggerChange),onClick:b=>{var _;(_=e.onClick)==null||_.call(e,b),!(e.disabled||b.defaultPrevented)&&(b.currentTarget.focus(),r.open||r.onOpenChange(!0))},onPointerMove:ji(e.onPointerMove,Jse(b=>{o.onItemEnter(b),!b.defaultPrevented&&!e.disabled&&!r.open&&!u.current&&(o.onPointerGraceIntentChange(null),u.current=window.setTimeout(()=>{r.onOpenChange(!0),m()},100))})),onPointerLeave:ji(e.onPointerLeave,Jse(b=>{var w,S;m();const _=(w=r.content)==null?void 0:w.getBoundingClientRect();if(_){const C=(S=r.content)==null?void 0:S.dataset.side,A=C==="right",k=A?-5:5,I=_[A?"left":"right"],N=_[A?"right":"left"];o.onPointerGraceIntentChange({area:[{x:b.clientX+k,y:b.clientY},{x:I,y:_.top},{x:N,y:_.top},{x:N,y:_.bottom},{x:I,y:_.bottom}],side:C}),window.clearTimeout(h.current),h.current=window.setTimeout(()=>o.onPointerGraceIntentChange(null),300)}else{if(o.onTriggerLeave(b),b.defaultPrevented)return;o.onPointerGraceIntentChange(null)}})),onKeyDown:ji(e.onKeyDown,b=>{var w;const _=o.searchRef.current!=="";e.disabled||_&&b.key===" "||VHr[a.dir].includes(b.key)&&(r.onOpenChange(!0),(w=r.content)==null||w.focus(),b.preventDefault())})})})});I8n.displayName=Cie;var N8n="MenuSubContent",O8n=ue.forwardRef((e,t)=>{const r=g8n(uS,e.__scopeMenu),{forceMount:a=r.forceMount,...s}=e,o=v$(uS,e.__scopeMenu),u=jle(uS,e.__scopeMenu),h=R8n(N8n,e.__scopeMenu),f=ue.useRef(null),p=Yo(t,f);return ct.jsx(Zse.Provider,{scope:e.__scopeMenu,children:ct.jsx(D1,{present:a||o.open,children:ct.jsx(Zse.Slot,{scope:e.__scopeMenu,children:ct.jsx(Bft,{id:h.contentId,"aria-labelledby":h.triggerId,...s,ref:p,align:"start",side:u.dir==="rtl"?"left":"right",disableOutsidePointerEvents:!1,disableOutsideScroll:!1,trapFocus:!1,onOpenAutoFocus:m=>{var b;u.isUsingKeyboardRef.current&&((b=f.current)==null||b.focus()),m.preventDefault()},onCloseAutoFocus:m=>m.preventDefault(),onFocusOutside:ji(e.onFocusOutside,m=>{m.target!==h.trigger&&o.onOpenChange(!1)}),onEscapeKeyDown:ji(e.onEscapeKeyDown,m=>{u.onClose(),m.preventDefault()}),onKeyDown:ji(e.onKeyDown,m=>{var w;const b=m.currentTarget.contains(m.target),_=YHr[u.dir].includes(m.key);b&&_&&(o.onOpenChange(!1),(w=h.trigger)==null||w.focus(),m.preventDefault())})})})})})});O8n.displayName=N8n;function L8n(e){return e?"open":"closed"}function qSe(e){return e==="indeterminate"}function Uft(e){return qSe(e)?"indeterminate":e?"checked":"unchecked"}function dVr(e){const t=document.activeElement;for(const r of e)if(r===t||(r.focus(),document.activeElement!==t))return}function fVr(e,t){return e.map((r,a)=>e[(t+a)%e.length])}function pVr(e,t,r){const s=t.length>1&&Array.from(t).every(p=>p===t[0])?t[0]:t,o=r?e.indexOf(r):-1;let u=fVr(e,Math.max(o,0));s.length===1&&(u=u.filter(p=>p!==r));const f=u.find(p=>p.toLowerCase().startsWith(s.toLowerCase()));return f!==r?f:void 0}function gVr(e,t){const{x:r,y:a}=e;let s=!1;for(let o=0,u=t.length-1;oa!=_>a&&r<(b-p)*(a-m)/(_-m)+p&&(s=!s)}return s}function mVr(e,t){if(!t)return!1;const r={x:e.clientX,y:e.clientY};return gVr(r,t)}function Jse(e){return t=>t.pointerType==="mouse"?e(t):void 0}var bVr=p8n,yVr=Dft,vVr=m8n,_Vr=b8n,wVr=Fft,EVr=y8n,xVr=pCe,SVr=_8n,TVr=E8n,CVr=S8n,AVr=C8n,kVr=A8n,RVr=k8n,IVr=I8n,NVr=O8n,gCe="DropdownMenu",[OVr]=Ng(gCe,[d8n]),gv=d8n(),[LVr,D8n]=OVr(gCe),M8n=e=>{const{__scopeDropdownMenu:t,children:r,dir:a,open:s,defaultOpen:o,onOpenChange:u,modal:h=!0}=e,f=gv(t),p=ue.useRef(null),[m,b]=km({prop:s,defaultProp:o??!1,onChange:u,caller:gCe});return ct.jsx(LVr,{scope:t,triggerId:I1(),triggerRef:p,contentId:I1(),open:m,onOpenChange:b,onOpenToggle:ue.useCallback(()=>b(_=>!_),[b]),modal:h,children:ct.jsx(bVr,{...f,open:m,onOpenChange:b,dir:a,modal:h,children:r})})};M8n.displayName=gCe;var P8n="DropdownMenuTrigger",B8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,disabled:a=!1,...s}=e,o=D8n(P8n,r),u=gv(r);return ct.jsx(yVr,{asChild:!0,...u,children:ct.jsx(Za.button,{type:"button",id:o.triggerId,"aria-haspopup":"menu","aria-expanded":o.open,"aria-controls":o.open?o.contentId:void 0,"data-state":o.open?"open":"closed","data-disabled":a?"":void 0,disabled:a,...s,ref:mA(t,o.triggerRef),onPointerDown:ji(e.onPointerDown,h=>{!a&&h.button===0&&h.ctrlKey===!1&&(o.onOpenToggle(),o.open||h.preventDefault())}),onKeyDown:ji(e.onKeyDown,h=>{a||(["Enter"," "].includes(h.key)&&o.onOpenToggle(),h.key==="ArrowDown"&&o.onOpenChange(!0),["Enter"," ","ArrowDown"].includes(h.key)&&h.preventDefault())})})})});B8n.displayName=P8n;var DVr="DropdownMenuPortal",F8n=e=>{const{__scopeDropdownMenu:t,...r}=e,a=gv(t);return ct.jsx(vVr,{...a,...r})};F8n.displayName=DVr;var $8n="DropdownMenuContent",U8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=D8n($8n,r),o=gv(r),u=ue.useRef(!1);return ct.jsx(_Vr,{id:s.contentId,"aria-labelledby":s.triggerId,...o,...a,ref:t,onCloseAutoFocus:ji(e.onCloseAutoFocus,h=>{var f;u.current||(f=s.triggerRef.current)==null||f.focus(),u.current=!1,h.preventDefault()}),onInteractOutside:ji(e.onInteractOutside,h=>{const f=h.detail.originalEvent,p=f.button===0&&f.ctrlKey===!0,m=f.button===2||p;(!s.modal||m)&&(u.current=!0)}),style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});U8n.displayName=$8n;var MVr="DropdownMenuGroup",PVr=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(wVr,{...s,...a,ref:t})});PVr.displayName=MVr;var BVr="DropdownMenuLabel",z8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(EVr,{...s,...a,ref:t})});z8n.displayName=BVr;var FVr="DropdownMenuItem",G8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(xVr,{...s,...a,ref:t})});G8n.displayName=FVr;var $Vr="DropdownMenuCheckboxItem",q8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(SVr,{...s,...a,ref:t})});q8n.displayName=$Vr;var UVr="DropdownMenuRadioGroup",zVr=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(TVr,{...s,...a,ref:t})});zVr.displayName=UVr;var GVr="DropdownMenuRadioItem",H8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(CVr,{...s,...a,ref:t})});H8n.displayName=GVr;var qVr="DropdownMenuItemIndicator",V8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(AVr,{...s,...a,ref:t})});V8n.displayName=qVr;var HVr="DropdownMenuSeparator",Y8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(kVr,{...s,...a,ref:t})});Y8n.displayName=HVr;var VVr="DropdownMenuArrow",YVr=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(RVr,{...s,...a,ref:t})});YVr.displayName=VVr;var jVr="DropdownMenuSubTrigger",j8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(IVr,{...s,...a,ref:t})});j8n.displayName=jVr;var WVr="DropdownMenuSubContent",W8n=ue.forwardRef((e,t)=>{const{__scopeDropdownMenu:r,...a}=e,s=gv(r);return ct.jsx(NVr,{...s,...a,ref:t,style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});W8n.displayName=WVr;var T3a=M8n,C3a=B8n,A3a=F8n,k3a=U8n,R3a=z8n,I3a=G8n,N3a=q8n,O3a=H8n,L3a=V8n,D3a=Y8n,M3a=j8n,P3a=W8n,KVr=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],RA=KVr.reduce((e,t)=>{const r=TRn(`Primitive.${t}`),a=ue.forwardRef((s,o)=>{const{asChild:u,...h}=s,f=u?r:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),ct.jsx(f,{...h,ref:o})});return a.displayName=`Primitive.${t}`,{...e,[t]:a}},{}),XVr="Label",K8n=ue.forwardRef((e,t)=>ct.jsx(RA.label,{...e,ref:t,onMouseDown:r=>{var s;r.target.closest("button, input, select, textarea")||((s=e.onMouseDown)==null||s.call(e,r),!r.defaultPrevented&&r.detail>1&&r.preventDefault())}}));K8n.displayName=XVr;var B3a=K8n,X8n=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),QVr="VisuallyHidden",Q8n=ue.forwardRef((e,t)=>ct.jsx(Za.span,{...e,ref:t,style:{...X8n,...e.style}}));Q8n.displayName=QVr;var ZVr=Q8n,[mCe]=Ng("Tooltip",[T9]),bCe=T9(),Z8n="TooltipProvider",JVr=700,Bst="tooltip.open",[eYr,zft]=mCe(Z8n),J8n=e=>{const{__scopeTooltip:t,delayDuration:r=JVr,skipDelayDuration:a=300,disableHoverableContent:s=!1,children:o}=e,u=ue.useRef(!0),h=ue.useRef(!1),f=ue.useRef(0);return ue.useEffect(()=>{const p=f.current;return()=>window.clearTimeout(p)},[]),ct.jsx(eYr,{scope:t,isOpenDelayedRef:u,delayDuration:r,onOpen:ue.useCallback(()=>{window.clearTimeout(f.current),u.current=!1},[]),onClose:ue.useCallback(()=>{window.clearTimeout(f.current),f.current=window.setTimeout(()=>u.current=!0,a)},[a]),isPointerInTransitRef:h,onPointerInTransitChange:ue.useCallback(p=>{h.current=p},[]),disableHoverableContent:s,children:o})};J8n.displayName=Z8n;var eoe="Tooltip",[tYr,Wle]=mCe(eoe),eIn=e=>{const{__scopeTooltip:t,children:r,open:a,defaultOpen:s,onOpenChange:o,disableHoverableContent:u,delayDuration:h}=e,f=zft(eoe,e.__scopeTooltip),p=bCe(t),[m,b]=ue.useState(null),_=I1(),w=ue.useRef(0),S=u??f.disableHoverableContent,C=h??f.delayDuration,A=ue.useRef(!1),[k,I]=km({prop:a,defaultProp:s??!1,onChange:F=>{F?(f.onOpen(),document.dispatchEvent(new CustomEvent(Bst))):f.onClose(),o==null||o(F)},caller:eoe}),N=ue.useMemo(()=>k?A.current?"delayed-open":"instant-open":"closed",[k]),L=ue.useCallback(()=>{window.clearTimeout(w.current),w.current=0,A.current=!1,I(!0)},[I]),P=ue.useCallback(()=>{window.clearTimeout(w.current),w.current=0,I(!1)},[I]),M=ue.useCallback(()=>{window.clearTimeout(w.current),w.current=window.setTimeout(()=>{A.current=!0,I(!0),w.current=0},C)},[C,I]);return ue.useEffect(()=>()=>{w.current&&(window.clearTimeout(w.current),w.current=0)},[]),ct.jsx(oCe,{...p,children:ct.jsx(tYr,{scope:t,contentId:_,open:k,stateAttribute:N,trigger:m,onTriggerChange:b,onTriggerEnter:ue.useCallback(()=>{f.isOpenDelayedRef.current?M():L()},[f.isOpenDelayedRef,M,L]),onTriggerLeave:ue.useCallback(()=>{S?P():(window.clearTimeout(w.current),w.current=0)},[P,S]),onOpen:L,onClose:P,disableHoverableContent:S,children:r})})};eIn.displayName=eoe;var Fst="TooltipTrigger",tIn=ue.forwardRef((e,t)=>{const{__scopeTooltip:r,...a}=e,s=Wle(Fst,r),o=zft(Fst,r),u=bCe(r),h=ue.useRef(null),f=Yo(t,h,s.onTriggerChange),p=ue.useRef(!1),m=ue.useRef(!1),b=ue.useCallback(()=>p.current=!1,[]);return ue.useEffect(()=>()=>document.removeEventListener("pointerup",b),[b]),ct.jsx(qle,{asChild:!0,...u,children:ct.jsx(Za.button,{"aria-describedby":s.open?s.contentId:void 0,"data-state":s.stateAttribute,...a,ref:f,onPointerMove:ji(e.onPointerMove,_=>{_.pointerType!=="touch"&&!m.current&&!o.isPointerInTransitRef.current&&(s.onTriggerEnter(),m.current=!0)}),onPointerLeave:ji(e.onPointerLeave,()=>{s.onTriggerLeave(),m.current=!1}),onPointerDown:ji(e.onPointerDown,()=>{s.open&&s.onClose(),p.current=!0,document.addEventListener("pointerup",b,{once:!0})}),onFocus:ji(e.onFocus,()=>{p.current||s.onOpen()}),onBlur:ji(e.onBlur,s.onClose),onClick:ji(e.onClick,s.onClose)})})});tIn.displayName=Fst;var Gft="TooltipPortal",[nYr,rYr]=mCe(Gft,{forceMount:void 0}),nIn=e=>{const{__scopeTooltip:t,forceMount:r,children:a,container:s}=e,o=Wle(Gft,t);return ct.jsx(nYr,{scope:t,forceMount:r,children:ct.jsx(D1,{present:r||o.open,children:ct.jsx(AW,{asChild:!0,container:s,children:a})})})};nIn.displayName=Gft;var vj="TooltipContent",rIn=ue.forwardRef((e,t)=>{const r=rYr(vj,e.__scopeTooltip),{forceMount:a=r.forceMount,side:s="top",...o}=e,u=Wle(vj,e.__scopeTooltip);return ct.jsx(D1,{present:a||u.open,children:u.disableHoverableContent?ct.jsx(iIn,{side:s,...o,ref:t}):ct.jsx(iYr,{side:s,...o,ref:t})})}),iYr=ue.forwardRef((e,t)=>{const r=Wle(vj,e.__scopeTooltip),a=zft(vj,e.__scopeTooltip),s=ue.useRef(null),o=Yo(t,s),[u,h]=ue.useState(null),{trigger:f,onClose:p}=r,m=s.current,{onPointerInTransitChange:b}=a,_=ue.useCallback(()=>{h(null),b(!1)},[b]),w=ue.useCallback((S,C)=>{const A=S.currentTarget,k={x:S.clientX,y:S.clientY},I=lYr(k,A.getBoundingClientRect()),N=cYr(k,I),L=uYr(C.getBoundingClientRect()),P=dYr([...N,...L]);h(P),b(!0)},[b]);return ue.useEffect(()=>()=>_(),[_]),ue.useEffect(()=>{if(f&&m){const S=A=>w(A,m),C=A=>w(A,f);return f.addEventListener("pointerleave",S),m.addEventListener("pointerleave",C),()=>{f.removeEventListener("pointerleave",S),m.removeEventListener("pointerleave",C)}}},[f,m,w,_]),ue.useEffect(()=>{if(u){const S=C=>{const A=C.target,k={x:C.clientX,y:C.clientY},I=(f==null?void 0:f.contains(A))||(m==null?void 0:m.contains(A)),N=!hYr(k,u);I?_():N&&(_(),p())};return document.addEventListener("pointermove",S),()=>document.removeEventListener("pointermove",S)}},[f,m,u,p,_]),ct.jsx(iIn,{...e,ref:o})}),[aYr,sYr]=mCe(eoe,{isInside:!1}),oYr=pqr("TooltipContent"),iIn=ue.forwardRef((e,t)=>{const{__scopeTooltip:r,children:a,"aria-label":s,onEscapeKeyDown:o,onPointerDownOutside:u,...h}=e,f=Wle(vj,r),p=bCe(r),{onClose:m}=f;return ue.useEffect(()=>(document.addEventListener(Bst,m),()=>document.removeEventListener(Bst,m)),[m]),ue.useEffect(()=>{if(f.trigger){const b=_=>{const w=_.target;w!=null&&w.contains(f.trigger)&&m()};return window.addEventListener("scroll",b,{capture:!0}),()=>window.removeEventListener("scroll",b,{capture:!0})}},[f.trigger,m]),ct.jsx(CW,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:o,onPointerDownOutside:u,onFocusOutside:b=>b.preventDefault(),onDismiss:m,children:ct.jsxs(lCe,{"data-state":f.stateAttribute,...p,...h,ref:t,style:{...h.style,"--radix-tooltip-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-tooltip-content-available-width":"var(--radix-popper-available-width)","--radix-tooltip-content-available-height":"var(--radix-popper-available-height)","--radix-tooltip-trigger-width":"var(--radix-popper-anchor-width)","--radix-tooltip-trigger-height":"var(--radix-popper-anchor-height)"},children:[ct.jsx(oYr,{children:a}),ct.jsx(aYr,{scope:r,isInside:!0,children:ct.jsx(ZVr,{id:f.contentId,role:"tooltip",children:s||a})})]})})});rIn.displayName=vj;var aIn="TooltipArrow",sIn=ue.forwardRef((e,t)=>{const{__scopeTooltip:r,...a}=e,s=bCe(r);return sYr(aIn,r).isInside?null:ct.jsx(cCe,{...s,...a,ref:t})});sIn.displayName=aIn;function lYr(e,t){const r=Math.abs(t.top-e.y),a=Math.abs(t.bottom-e.y),s=Math.abs(t.right-e.x),o=Math.abs(t.left-e.x);switch(Math.min(r,a,s,o)){case o:return"left";case s:return"right";case r:return"top";case a:return"bottom";default:throw new Error("unreachable")}}function cYr(e,t,r=5){const a=[];switch(t){case"top":a.push({x:e.x-r,y:e.y+r},{x:e.x+r,y:e.y+r});break;case"bottom":a.push({x:e.x-r,y:e.y-r},{x:e.x+r,y:e.y-r});break;case"left":a.push({x:e.x+r,y:e.y-r},{x:e.x+r,y:e.y+r});break;case"right":a.push({x:e.x-r,y:e.y-r},{x:e.x-r,y:e.y+r});break}return a}function uYr(e){const{top:t,right:r,bottom:a,left:s}=e;return[{x:s,y:t},{x:r,y:t},{x:r,y:a},{x:s,y:a}]}function hYr(e,t){const{x:r,y:a}=e;let s=!1;for(let o=0,u=t.length-1;oa!=_>a&&r<(b-p)*(a-m)/(_-m)+p&&(s=!s)}return s}function dYr(e){const t=e.slice();return t.sort((r,a)=>r.xa.x?1:r.ya.y?1:0),fYr(t)}function fYr(e){if(e.length<=1)return e.slice();const t=[];for(let a=0;a=2;){const o=t[t.length-1],u=t[t.length-2];if((o.x-u.x)*(s.y-u.y)>=(o.y-u.y)*(s.x-u.x))t.pop();else break}t.push(s)}t.pop();const r=[];for(let a=e.length-1;a>=0;a--){const s=e[a];for(;r.length>=2;){const o=r[r.length-1],u=r[r.length-2];if((o.x-u.x)*(s.y-u.y)>=(o.y-u.y)*(s.x-u.x))r.pop();else break}r.push(s)}return r.pop(),t.length===1&&r.length===1&&t[0].x===r[0].x&&t[0].y===r[0].y?t:t.concat(r)}var F3a=J8n,$3a=eIn,U3a=tIn,z3a=nIn,G3a=rIn,q3a=sIn,yCe="Popover",[oIn]=Ng(yCe,[T9]),Kle=T9(),[pYr,A9]=oIn(yCe),lIn=e=>{const{__scopePopover:t,children:r,open:a,defaultOpen:s,onOpenChange:o,modal:u=!1}=e,h=Kle(t),f=ue.useRef(null),[p,m]=ue.useState(!1),[b,_]=km({prop:a,defaultProp:s??!1,onChange:o,caller:yCe});return ct.jsx(oCe,{...h,children:ct.jsx(pYr,{scope:t,contentId:I1(),triggerRef:f,open:b,onOpenChange:_,onOpenToggle:ue.useCallback(()=>_(w=>!w),[_]),hasCustomAnchor:p,onCustomAnchorAdd:ue.useCallback(()=>m(!0),[]),onCustomAnchorRemove:ue.useCallback(()=>m(!1),[]),modal:u,children:r})})};lIn.displayName=yCe;var cIn="PopoverAnchor",gYr=ue.forwardRef((e,t)=>{const{__scopePopover:r,...a}=e,s=A9(cIn,r),o=Kle(r),{onCustomAnchorAdd:u,onCustomAnchorRemove:h}=s;return ue.useEffect(()=>(u(),()=>h()),[u,h]),ct.jsx(qle,{...o,...a,ref:t})});gYr.displayName=cIn;var uIn="PopoverTrigger",hIn=ue.forwardRef((e,t)=>{const{__scopePopover:r,...a}=e,s=A9(uIn,r),o=Kle(r),u=Yo(t,s.triggerRef),h=ct.jsx(Za.button,{type:"button","aria-haspopup":"dialog","aria-expanded":s.open,"aria-controls":s.contentId,"data-state":mIn(s.open),...a,ref:u,onClick:ji(e.onClick,s.onOpenToggle)});return s.hasCustomAnchor?h:ct.jsx(qle,{asChild:!0,...o,children:h})});hIn.displayName=uIn;var qft="PopoverPortal",[mYr,bYr]=oIn(qft,{forceMount:void 0}),dIn=e=>{const{__scopePopover:t,forceMount:r,children:a,container:s}=e,o=A9(qft,t);return ct.jsx(mYr,{scope:t,forceMount:r,children:ct.jsx(D1,{present:r||o.open,children:ct.jsx(AW,{asChild:!0,container:s,children:a})})})};dIn.displayName=qft;var _j="PopoverContent",fIn=ue.forwardRef((e,t)=>{const r=bYr(_j,e.__scopePopover),{forceMount:a=r.forceMount,...s}=e,o=A9(_j,e.__scopePopover);return ct.jsx(D1,{present:a||o.open,children:o.modal?ct.jsx(vYr,{...s,ref:t}):ct.jsx(_Yr,{...s,ref:t})})});fIn.displayName=_j;var yYr=wF("PopoverContent.RemoveScroll"),vYr=ue.forwardRef((e,t)=>{const r=A9(_j,e.__scopePopover),a=ue.useRef(null),s=Yo(t,a),o=ue.useRef(!1);return ue.useEffect(()=>{const u=a.current;if(u)return Vle(u)},[]),ct.jsx(kW,{as:yYr,allowPinchZoom:!0,children:ct.jsx(pIn,{...e,ref:s,trapFocus:r.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:ji(e.onCloseAutoFocus,u=>{var h;u.preventDefault(),o.current||(h=r.triggerRef.current)==null||h.focus()}),onPointerDownOutside:ji(e.onPointerDownOutside,u=>{const h=u.detail.originalEvent,f=h.button===0&&h.ctrlKey===!0,p=h.button===2||f;o.current=p},{checkForDefaultPrevented:!1}),onFocusOutside:ji(e.onFocusOutside,u=>u.preventDefault(),{checkForDefaultPrevented:!1})})})}),_Yr=ue.forwardRef((e,t)=>{const r=A9(_j,e.__scopePopover),a=ue.useRef(!1),s=ue.useRef(!1);return ct.jsx(pIn,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:o=>{var u,h;(u=e.onCloseAutoFocus)==null||u.call(e,o),o.defaultPrevented||(a.current||(h=r.triggerRef.current)==null||h.focus(),o.preventDefault()),a.current=!1,s.current=!1},onInteractOutside:o=>{var f,p;(f=e.onInteractOutside)==null||f.call(e,o),o.defaultPrevented||(a.current=!0,o.detail.originalEvent.type==="pointerdown"&&(s.current=!0));const u=o.target;((p=r.triggerRef.current)==null?void 0:p.contains(u))&&o.preventDefault(),o.detail.originalEvent.type==="focusin"&&s.current&&o.preventDefault()}})}),pIn=ue.forwardRef((e,t)=>{const{__scopePopover:r,trapFocus:a,onOpenAutoFocus:s,onCloseAutoFocus:o,disableOutsidePointerEvents:u,onEscapeKeyDown:h,onPointerDownOutside:f,onFocusOutside:p,onInteractOutside:m,...b}=e,_=A9(_j,r),w=Kle(r);return aCe(),ct.jsx(Gle,{asChild:!0,loop:!0,trapped:a,onMountAutoFocus:s,onUnmountAutoFocus:o,children:ct.jsx(CW,{asChild:!0,disableOutsidePointerEvents:u,onInteractOutside:m,onEscapeKeyDown:h,onPointerDownOutside:f,onFocusOutside:p,onDismiss:()=>_.onOpenChange(!1),children:ct.jsx(lCe,{"data-state":mIn(_.open),role:"dialog",id:_.contentId,...w,...b,ref:t,style:{...b.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-popover-content-available-width":"var(--radix-popper-available-width)","--radix-popover-content-available-height":"var(--radix-popper-available-height)","--radix-popover-trigger-width":"var(--radix-popper-anchor-width)","--radix-popover-trigger-height":"var(--radix-popper-anchor-height)"}})})})}),gIn="PopoverClose",wYr=ue.forwardRef((e,t)=>{const{__scopePopover:r,...a}=e,s=A9(gIn,r);return ct.jsx(Za.button,{type:"button",...a,ref:t,onClick:ji(e.onClick,()=>s.onOpenChange(!1))})});wYr.displayName=gIn;var EYr="PopoverArrow",xYr=ue.forwardRef((e,t)=>{const{__scopePopover:r,...a}=e,s=Kle(r);return ct.jsx(cCe,{...s,...a,ref:t})});xYr.displayName=EYr;function mIn(e){return e?"open":"closed"}var H3a=lIn,V3a=hIn,Y3a=dIn,j3a=fIn,t1n=1,SYr=.9,TYr=.8,CYr=.17,aQe=.1,sQe=.999,AYr=.9999,kYr=.99,RYr=/[\\\/_+.#"@\[\(\{&]/,IYr=/[\\\/_+.#"@\[\(\{&]/g,NYr=/[\s-]/,bIn=/[\s-]/g;function $st(e,t,r,a,s,o,u){if(o===t.length)return s===e.length?t1n:kYr;var h=`${s},${o}`;if(u[h]!==void 0)return u[h];for(var f=a.charAt(o),p=r.indexOf(f,s),m=0,b,_,w,S;p>=0;)b=$st(e,t,r,a,p+1,o+1,u),b>m&&(p===s?b*=t1n:RYr.test(e.charAt(p-1))?(b*=TYr,w=e.slice(s,p-1).match(IYr),w&&s>0&&(b*=Math.pow(sQe,w.length))):NYr.test(e.charAt(p-1))?(b*=SYr,S=e.slice(s,p-1).match(bIn),S&&s>0&&(b*=Math.pow(sQe,S.length))):(b*=CYr,s>0&&(b*=Math.pow(sQe,p-s))),e.charAt(p)!==t.charAt(o)&&(b*=AYr)),(bb&&(b=_*aQe)),b>m&&(m=b),p=r.indexOf(f,p+1);return u[h]=m,m}function n1n(e){return e.toLowerCase().replace(bIn," ")}function OYr(e,t,r){return e=r&&r.length>0?`${e+" "+r.join(" ")}`:e,$st(e,t,n1n(e),n1n(t),0,0,{})}var vCe="Dialog",[yIn]=Ng(vCe),[LYr,pT]=yIn(vCe),vIn=e=>{const{__scopeDialog:t,children:r,open:a,defaultOpen:s,onOpenChange:o,modal:u=!0}=e,h=ue.useRef(null),f=ue.useRef(null),[p,m]=km({prop:a,defaultProp:s??!1,onChange:o,caller:vCe});return ct.jsx(LYr,{scope:t,triggerRef:h,contentRef:f,contentId:I1(),titleId:I1(),descriptionId:I1(),open:p,onOpenChange:m,onOpenToggle:ue.useCallback(()=>m(b=>!b),[m]),modal:u,children:r})};vIn.displayName=vCe;var _In="DialogTrigger",DYr=ue.forwardRef((e,t)=>{const{__scopeDialog:r,...a}=e,s=pT(_In,r),o=Yo(t,s.triggerRef);return ct.jsx(Za.button,{type:"button","aria-haspopup":"dialog","aria-expanded":s.open,"aria-controls":s.contentId,"data-state":Yft(s.open),...a,ref:o,onClick:ji(e.onClick,s.onOpenToggle)})});DYr.displayName=_In;var Hft="DialogPortal",[MYr,wIn]=yIn(Hft,{forceMount:void 0}),EIn=e=>{const{__scopeDialog:t,forceMount:r,children:a,container:s}=e,o=pT(Hft,t);return ct.jsx(MYr,{scope:t,forceMount:r,children:ue.Children.map(a,u=>ct.jsx(D1,{present:r||o.open,children:ct.jsx(AW,{asChild:!0,container:s,children:u})}))})};EIn.displayName=Hft;var HSe="DialogOverlay",xIn=ue.forwardRef((e,t)=>{const r=wIn(HSe,e.__scopeDialog),{forceMount:a=r.forceMount,...s}=e,o=pT(HSe,e.__scopeDialog);return o.modal?ct.jsx(D1,{present:a||o.open,children:ct.jsx(BYr,{...s,ref:t})}):null});xIn.displayName=HSe;var PYr=wF("DialogOverlay.RemoveScroll"),BYr=ue.forwardRef((e,t)=>{const{__scopeDialog:r,...a}=e,s=pT(HSe,r);return ct.jsx(kW,{as:PYr,allowPinchZoom:!0,shards:[s.contentRef],children:ct.jsx(Za.div,{"data-state":Yft(s.open),...a,ref:t,style:{pointerEvents:"auto",...a.style}})})}),EF="DialogContent",SIn=ue.forwardRef((e,t)=>{const r=wIn(EF,e.__scopeDialog),{forceMount:a=r.forceMount,...s}=e,o=pT(EF,e.__scopeDialog);return ct.jsx(D1,{present:a||o.open,children:o.modal?ct.jsx(FYr,{...s,ref:t}):ct.jsx($Yr,{...s,ref:t})})});SIn.displayName=EF;var FYr=ue.forwardRef((e,t)=>{const r=pT(EF,e.__scopeDialog),a=ue.useRef(null),s=Yo(t,r.contentRef,a);return ue.useEffect(()=>{const o=a.current;if(o)return Vle(o)},[]),ct.jsx(TIn,{...e,ref:s,trapFocus:r.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:ji(e.onCloseAutoFocus,o=>{var u;o.preventDefault(),(u=r.triggerRef.current)==null||u.focus()}),onPointerDownOutside:ji(e.onPointerDownOutside,o=>{const u=o.detail.originalEvent,h=u.button===0&&u.ctrlKey===!0;(u.button===2||h)&&o.preventDefault()}),onFocusOutside:ji(e.onFocusOutside,o=>o.preventDefault())})}),$Yr=ue.forwardRef((e,t)=>{const r=pT(EF,e.__scopeDialog),a=ue.useRef(!1),s=ue.useRef(!1);return ct.jsx(TIn,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:o=>{var u,h;(u=e.onCloseAutoFocus)==null||u.call(e,o),o.defaultPrevented||(a.current||(h=r.triggerRef.current)==null||h.focus(),o.preventDefault()),a.current=!1,s.current=!1},onInteractOutside:o=>{var f,p;(f=e.onInteractOutside)==null||f.call(e,o),o.defaultPrevented||(a.current=!0,o.detail.originalEvent.type==="pointerdown"&&(s.current=!0));const u=o.target;((p=r.triggerRef.current)==null?void 0:p.contains(u))&&o.preventDefault(),o.detail.originalEvent.type==="focusin"&&s.current&&o.preventDefault()}})}),TIn=ue.forwardRef((e,t)=>{const{__scopeDialog:r,trapFocus:a,onOpenAutoFocus:s,onCloseAutoFocus:o,...u}=e,h=pT(EF,r),f=ue.useRef(null),p=Yo(t,f);return aCe(),ct.jsxs(ct.Fragment,{children:[ct.jsx(Gle,{asChild:!0,loop:!0,trapped:a,onMountAutoFocus:s,onUnmountAutoFocus:o,children:ct.jsx(CW,{role:"dialog",id:h.contentId,"aria-describedby":h.descriptionId,"aria-labelledby":h.titleId,"data-state":Yft(h.open),...u,ref:p,onDismiss:()=>h.onOpenChange(!1)})}),ct.jsxs(ct.Fragment,{children:[ct.jsx(UYr,{titleId:h.titleId}),ct.jsx(GYr,{contentRef:f,descriptionId:h.descriptionId})]})]})}),Vft="DialogTitle",CIn=ue.forwardRef((e,t)=>{const{__scopeDialog:r,...a}=e,s=pT(Vft,r);return ct.jsx(Za.h2,{id:s.titleId,...a,ref:t})});CIn.displayName=Vft;var AIn="DialogDescription",kIn=ue.forwardRef((e,t)=>{const{__scopeDialog:r,...a}=e,s=pT(AIn,r);return ct.jsx(Za.p,{id:s.descriptionId,...a,ref:t})});kIn.displayName=AIn;var RIn="DialogClose",IIn=ue.forwardRef((e,t)=>{const{__scopeDialog:r,...a}=e,s=pT(RIn,r);return ct.jsx(Za.button,{type:"button",...a,ref:t,onClick:ji(e.onClick,()=>s.onOpenChange(!1))})});IIn.displayName=RIn;function Yft(e){return e?"open":"closed"}var NIn="DialogTitleWarning",[W3a,OIn]=lqr(NIn,{contentName:EF,titleName:Vft,docsSlug:"dialog"}),UYr=({titleId:e})=>{const t=OIn(NIn),r=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users. + +If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component. + +For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return ue.useEffect(()=>{e&&(document.getElementById(e)||console.error(r))},[r,e]),null},zYr="DialogDescriptionWarning",GYr=({contentRef:e,descriptionId:t})=>{const a=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${OIn(zYr).contentName}}.`;return ue.useEffect(()=>{var o;const s=(o=e.current)==null?void 0:o.getAttribute("aria-describedby");t&&s&&(document.getElementById(t)||console.warn(a))},[a,e,t]),null},qYr=vIn,HYr=EIn,VYr=xIn,YYr=SIn,K3a=CIn,X3a=kIn,Q3a=IIn,Sre='[cmdk-group=""]',oQe='[cmdk-group-items=""]',jYr='[cmdk-group-heading=""]',LIn='[cmdk-item=""]',r1n=`${LIn}:not([aria-disabled="true"])`,Ust="cmdk-item-select",lV="data-value",WYr=(e,t,r)=>OYr(e,t,r),DIn=ue.createContext(void 0),Xle=()=>ue.useContext(DIn),MIn=ue.createContext(void 0),jft=()=>ue.useContext(MIn),PIn=ue.createContext(void 0),BIn=ue.forwardRef((e,t)=>{let r=cV(()=>{var se,ie;return{search:"",value:(ie=(se=e.value)!=null?se:e.defaultValue)!=null?ie:"",selectedItemId:void 0,filtered:{count:0,items:new Map,groups:new Set}}}),a=cV(()=>new Set),s=cV(()=>new Map),o=cV(()=>new Map),u=cV(()=>new Set),h=FIn(e),{label:f,children:p,value:m,onValueChange:b,filter:_,shouldFilter:w,loop:S,disablePointerSelection:C=!1,vimBindings:A=!0,...k}=e,I=I1(),N=I1(),L=I1(),P=ue.useRef(null),M=ajr();xF(()=>{if(m!==void 0){let se=m.trim();r.current.value=se,F.emit()}},[m]),xF(()=>{M(6,z)},[]);let F=ue.useMemo(()=>({subscribe:se=>(u.current.add(se),()=>u.current.delete(se)),snapshot:()=>r.current,setState:(se,ie,ge)=>{var ce,be,ve,De;if(!Object.is(r.current[se],ie)){if(r.current[se]=ie,se==="search")Z(),G(),M(1,B);else if(se==="value"){if(document.activeElement.hasAttribute("cmdk-input")||document.activeElement.hasAttribute("cmdk-root")){let ye=document.getElementById(L);ye?ye.focus():(ce=document.getElementById(I))==null||ce.focus()}if(M(7,()=>{var ye;r.current.selectedItemId=(ye=Y())==null?void 0:ye.id,F.emit()}),ge||M(5,z),((be=h.current)==null?void 0:be.value)!==void 0){let ye=ie??"";(De=(ve=h.current).onValueChange)==null||De.call(ve,ye);return}}F.emit()}},emit:()=>{u.current.forEach(se=>se())}}),[]),U=ue.useMemo(()=>({value:(se,ie,ge)=>{var ce;ie!==((ce=o.current.get(se))==null?void 0:ce.value)&&(o.current.set(se,{value:ie,keywords:ge}),r.current.filtered.items.set(se,$(ie,ge)),M(2,()=>{G(),F.emit()}))},item:(se,ie)=>(a.current.add(se),ie&&(s.current.has(ie)?s.current.get(ie).add(se):s.current.set(ie,new Set([se]))),M(3,()=>{Z(),G(),r.current.value||B(),F.emit()}),()=>{o.current.delete(se),a.current.delete(se),r.current.filtered.items.delete(se);let ge=Y();M(4,()=>{Z(),(ge==null?void 0:ge.getAttribute("id"))===se&&B(),F.emit()})}),group:se=>(s.current.has(se)||s.current.set(se,new Set),()=>{o.current.delete(se),s.current.delete(se)}),filter:()=>h.current.shouldFilter,label:f||e["aria-label"],getDisablePointerSelection:()=>h.current.disablePointerSelection,listId:I,inputId:L,labelId:N,listInnerRef:P}),[]);function $(se,ie){var ge,ce;let be=(ce=(ge=h.current)==null?void 0:ge.filter)!=null?ce:WYr;return se?be(se,r.current.search,ie):0}function G(){if(!r.current.search||h.current.shouldFilter===!1)return;let se=r.current.filtered.items,ie=[];r.current.filtered.groups.forEach(ce=>{let be=s.current.get(ce),ve=0;be.forEach(De=>{let ye=se.get(De);ve=Math.max(ye,ve)}),ie.push([ce,ve])});let ge=P.current;W().sort((ce,be)=>{var ve,De;let ye=ce.getAttribute("id"),Ee=be.getAttribute("id");return((ve=se.get(Ee))!=null?ve:0)-((De=se.get(ye))!=null?De:0)}).forEach(ce=>{let be=ce.closest(oQe);be?be.appendChild(ce.parentElement===be?ce:ce.closest(`${oQe} > *`)):ge.appendChild(ce.parentElement===ge?ce:ce.closest(`${oQe} > *`))}),ie.sort((ce,be)=>be[1]-ce[1]).forEach(ce=>{var be;let ve=(be=P.current)==null?void 0:be.querySelector(`${Sre}[${lV}="${encodeURIComponent(ce[0])}"]`);ve==null||ve.parentElement.appendChild(ve)})}function B(){let se=W().find(ge=>ge.getAttribute("aria-disabled")!=="true"),ie=se==null?void 0:se.getAttribute(lV);F.setState("value",ie||void 0)}function Z(){var se,ie,ge,ce;if(!r.current.search||h.current.shouldFilter===!1){r.current.filtered.count=a.current.size;return}r.current.filtered.groups=new Set;let be=0;for(let ve of a.current){let De=(ie=(se=o.current.get(ve))==null?void 0:se.value)!=null?ie:"",ye=(ce=(ge=o.current.get(ve))==null?void 0:ge.keywords)!=null?ce:[],Ee=$(De,ye);r.current.filtered.items.set(ve,Ee),Ee>0&&be++}for(let[ve,De]of s.current)for(let ye of De)if(r.current.filtered.items.get(ye)>0){r.current.filtered.groups.add(ve);break}r.current.filtered.count=be}function z(){var se,ie,ge;let ce=Y();ce&&(((se=ce.parentElement)==null?void 0:se.firstChild)===ce&&((ge=(ie=ce.closest(Sre))==null?void 0:ie.querySelector(jYr))==null||ge.scrollIntoView({block:"nearest"})),ce.scrollIntoView({block:"nearest"}))}function Y(){var se;return(se=P.current)==null?void 0:se.querySelector(`${LIn}[aria-selected="true"]`)}function W(){var se;return Array.from(((se=P.current)==null?void 0:se.querySelectorAll(r1n))||[])}function Q(se){let ie=W()[se];ie&&F.setState("value",ie.getAttribute(lV))}function V(se){var ie;let ge=Y(),ce=W(),be=ce.findIndex(De=>De===ge),ve=ce[be+se];(ie=h.current)!=null&&ie.loop&&(ve=be+se<0?ce[ce.length-1]:be+se===ce.length?ce[0]:ce[be+se]),ve&&F.setState("value",ve.getAttribute(lV))}function j(se){let ie=Y(),ge=ie==null?void 0:ie.closest(Sre),ce;for(;ge&&!ce;)ge=se>0?rjr(ge,Sre):ijr(ge,Sre),ce=ge==null?void 0:ge.querySelector(r1n);ce?F.setState("value",ce.getAttribute(lV)):V(se)}let ee=()=>Q(W().length-1),te=se=>{se.preventDefault(),se.metaKey?ee():se.altKey?j(1):V(1)},ne=se=>{se.preventDefault(),se.metaKey?Q(0):se.altKey?j(-1):V(-1)};return ue.createElement(RA.div,{ref:t,tabIndex:-1,...k,"cmdk-root":"",onKeyDown:se=>{var ie;(ie=k.onKeyDown)==null||ie.call(k,se);let ge=se.nativeEvent.isComposing||se.keyCode===229;if(!(se.defaultPrevented||ge))switch(se.key){case"n":case"j":{A&&se.ctrlKey&&te(se);break}case"ArrowDown":{te(se);break}case"p":case"k":{A&&se.ctrlKey&&ne(se);break}case"ArrowUp":{ne(se);break}case"Home":{se.preventDefault(),Q(0);break}case"End":{se.preventDefault(),ee();break}case"Enter":{se.preventDefault();let ce=Y();if(ce){let be=new Event(Ust);ce.dispatchEvent(be)}}}}},ue.createElement("label",{"cmdk-label":"",htmlFor:U.inputId,id:U.labelId,style:ojr},f),_Ce(e,se=>ue.createElement(MIn.Provider,{value:F},ue.createElement(DIn.Provider,{value:U},se))))}),KYr=ue.forwardRef((e,t)=>{var r,a;let s=I1(),o=ue.useRef(null),u=ue.useContext(PIn),h=Xle(),f=FIn(e),p=(a=(r=f.current)==null?void 0:r.forceMount)!=null?a:u==null?void 0:u.forceMount;xF(()=>{if(!p)return h.item(s,u==null?void 0:u.id)},[p]);let m=$In(s,o,[e.value,e.children,o],e.keywords),b=jft(),_=HO(M=>M.value&&M.value===m.current),w=HO(M=>p||h.filter()===!1?!0:M.search?M.filtered.items.get(s)>0:!0);ue.useEffect(()=>{let M=o.current;if(!(!M||e.disabled))return M.addEventListener(Ust,S),()=>M.removeEventListener(Ust,S)},[w,e.onSelect,e.disabled]);function S(){var M,F;C(),(F=(M=f.current).onSelect)==null||F.call(M,m.current)}function C(){b.setState("value",m.current,!0)}if(!w)return null;let{disabled:A,value:k,onSelect:I,forceMount:N,keywords:L,...P}=e;return ue.createElement(RA.div,{ref:mA(o,t),...P,id:s,"cmdk-item":"",role:"option","aria-disabled":!!A,"aria-selected":!!_,"data-disabled":!!A,"data-selected":!!_,onPointerMove:A||h.getDisablePointerSelection()?void 0:C,onClick:A?void 0:S},e.children)}),XYr=ue.forwardRef((e,t)=>{let{heading:r,children:a,forceMount:s,...o}=e,u=I1(),h=ue.useRef(null),f=ue.useRef(null),p=I1(),m=Xle(),b=HO(w=>s||m.filter()===!1?!0:w.search?w.filtered.groups.has(u):!0);xF(()=>m.group(u),[]),$In(u,h,[e.value,e.heading,f]);let _=ue.useMemo(()=>({id:u,forceMount:s}),[s]);return ue.createElement(RA.div,{ref:mA(h,t),...o,"cmdk-group":"",role:"presentation",hidden:b?void 0:!0},r&&ue.createElement("div",{ref:f,"cmdk-group-heading":"","aria-hidden":!0,id:p},r),_Ce(e,w=>ue.createElement("div",{"cmdk-group-items":"",role:"group","aria-labelledby":r?p:void 0},ue.createElement(PIn.Provider,{value:_},w))))}),QYr=ue.forwardRef((e,t)=>{let{alwaysRender:r,...a}=e,s=ue.useRef(null),o=HO(u=>!u.search);return!r&&!o?null:ue.createElement(RA.div,{ref:mA(s,t),...a,"cmdk-separator":"",role:"separator"})}),ZYr=ue.forwardRef((e,t)=>{let{onValueChange:r,...a}=e,s=e.value!=null,o=jft(),u=HO(p=>p.search),h=HO(p=>p.selectedItemId),f=Xle();return ue.useEffect(()=>{e.value!=null&&o.setState("search",e.value)},[e.value]),ue.createElement(RA.input,{ref:t,...a,"cmdk-input":"",autoComplete:"off",autoCorrect:"off",spellCheck:!1,"aria-autocomplete":"list",role:"combobox","aria-expanded":!0,"aria-controls":f.listId,"aria-labelledby":f.labelId,"aria-activedescendant":h,id:f.inputId,type:"text",value:s?e.value:u,onChange:p=>{s||o.setState("search",p.target.value),r==null||r(p.target.value)}})}),JYr=ue.forwardRef((e,t)=>{let{children:r,label:a="Suggestions",...s}=e,o=ue.useRef(null),u=ue.useRef(null),h=HO(p=>p.selectedItemId),f=Xle();return ue.useEffect(()=>{if(u.current&&o.current){let p=u.current,m=o.current,b,_=new ResizeObserver(()=>{b=requestAnimationFrame(()=>{let w=p.offsetHeight;m.style.setProperty("--cmdk-list-height",w.toFixed(1)+"px")})});return _.observe(p),()=>{cancelAnimationFrame(b),_.unobserve(p)}}},[]),ue.createElement(RA.div,{ref:mA(o,t),...s,"cmdk-list":"",role:"listbox",tabIndex:-1,"aria-activedescendant":h,"aria-label":a,id:f.listId},_Ce(e,p=>ue.createElement("div",{ref:mA(u,f.listInnerRef),"cmdk-list-sizer":""},p)))}),ejr=ue.forwardRef((e,t)=>{let{open:r,onOpenChange:a,overlayClassName:s,contentClassName:o,container:u,...h}=e;return ue.createElement(qYr,{open:r,onOpenChange:a},ue.createElement(HYr,{container:u},ue.createElement(VYr,{"cmdk-overlay":"",className:s}),ue.createElement(YYr,{"aria-label":e.label,"cmdk-dialog":"",className:o},ue.createElement(BIn,{ref:t,...h}))))}),tjr=ue.forwardRef((e,t)=>HO(r=>r.filtered.count===0)?ue.createElement(RA.div,{ref:t,...e,"cmdk-empty":"",role:"presentation"}):null),njr=ue.forwardRef((e,t)=>{let{progress:r,children:a,label:s="Loading...",...o}=e;return ue.createElement(RA.div,{ref:t,...o,"cmdk-loading":"",role:"progressbar","aria-valuenow":r,"aria-valuemin":0,"aria-valuemax":100,"aria-label":s},_Ce(e,u=>ue.createElement("div",{"aria-hidden":!0},u)))}),Z3a=Object.assign(BIn,{List:JYr,Item:KYr,Input:ZYr,Group:XYr,Separator:QYr,Dialog:ejr,Empty:tjr,Loading:njr});function rjr(e,t){let r=e.nextElementSibling;for(;r;){if(r.matches(t))return r;r=r.nextElementSibling}}function ijr(e,t){let r=e.previousElementSibling;for(;r;){if(r.matches(t))return r;r=r.previousElementSibling}}function FIn(e){let t=ue.useRef(e);return xF(()=>{t.current=e}),t}var xF=typeof window>"u"?ue.useEffect:ue.useLayoutEffect;function cV(e){let t=ue.useRef();return t.current===void 0&&(t.current=e()),t}function HO(e){let t=jft(),r=()=>e(t.snapshot());return ue.useSyncExternalStore(t.subscribe,r,r)}function $In(e,t,r,a=[]){let s=ue.useRef(),o=Xle();return xF(()=>{var u;let h=(()=>{var p;for(let m of r){if(typeof m=="string")return m.trim();if(typeof m=="object"&&"current"in m)return m.current?(p=m.current.textContent)==null?void 0:p.trim():s.current}})(),f=a.map(p=>p.trim());o.value(e,h,f),(u=t.current)==null||u.setAttribute(lV,h),s.current=h}),s}var ajr=()=>{let[e,t]=ue.useState(),r=cV(()=>new Map);return xF(()=>{r.current.forEach(a=>a()),r.current=new Map},[e]),(a,s)=>{r.current.set(a,s),t({})}};function sjr(e){let t=e.type;return typeof t=="function"?t(e.props):"render"in t?t.render(e.props):e}function _Ce({asChild:e,children:t},r){return e&&ue.isValidElement(t)?ue.cloneElement(sjr(t),{ref:t.ref},r(t.props.children)):r(t)}var ojr={position:"absolute",width:"1px",height:"1px",padding:"0",margin:"-1px",overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0"},wCe="Tabs",[ljr]=Ng(wCe,[C9]),UIn=C9(),[cjr,Wft]=ljr(wCe),zIn=ue.forwardRef((e,t)=>{const{__scopeTabs:r,value:a,onValueChange:s,defaultValue:o,orientation:u="horizontal",dir:h,activationMode:f="automatic",...p}=e,m=S9(h),[b,_]=km({prop:a,onChange:s,defaultProp:o??"",caller:wCe});return ct.jsx(cjr,{scope:r,baseId:I1(),value:b,onValueChange:_,orientation:u,dir:m,activationMode:f,children:ct.jsx(Za.div,{dir:m,"data-orientation":u,...p,ref:t})})});zIn.displayName=wCe;var GIn="TabsList",qIn=ue.forwardRef((e,t)=>{const{__scopeTabs:r,loop:a=!0,...s}=e,o=Wft(GIn,r),u=UIn(r);return ct.jsx(uCe,{asChild:!0,...u,orientation:o.orientation,dir:o.dir,loop:a,children:ct.jsx(Za.div,{role:"tablist","aria-orientation":o.orientation,...s,ref:t})})});qIn.displayName=GIn;var HIn="TabsTrigger",VIn=ue.forwardRef((e,t)=>{const{__scopeTabs:r,value:a,disabled:s=!1,...o}=e,u=Wft(HIn,r),h=UIn(r),f=WIn(u.baseId,a),p=KIn(u.baseId,a),m=a===u.value;return ct.jsx(hCe,{asChild:!0,...h,focusable:!s,active:m,children:ct.jsx(Za.button,{type:"button",role:"tab","aria-selected":m,"aria-controls":p,"data-state":m?"active":"inactive","data-disabled":s?"":void 0,disabled:s,id:f,...o,ref:t,onMouseDown:ji(e.onMouseDown,b=>{!s&&b.button===0&&b.ctrlKey===!1?u.onValueChange(a):b.preventDefault()}),onKeyDown:ji(e.onKeyDown,b=>{[" ","Enter"].includes(b.key)&&u.onValueChange(a)}),onFocus:ji(e.onFocus,()=>{const b=u.activationMode!=="manual";!m&&!s&&b&&u.onValueChange(a)})})})});VIn.displayName=HIn;var YIn="TabsContent",jIn=ue.forwardRef((e,t)=>{const{__scopeTabs:r,value:a,forceMount:s,children:o,...u}=e,h=Wft(YIn,r),f=WIn(h.baseId,a),p=KIn(h.baseId,a),m=a===h.value,b=ue.useRef(m);return ue.useEffect(()=>{const _=requestAnimationFrame(()=>b.current=!1);return()=>cancelAnimationFrame(_)},[]),ct.jsx(D1,{present:s||m,children:({present:_})=>ct.jsx(Za.div,{"data-state":m?"active":"inactive","data-orientation":h.orientation,role:"tabpanel","aria-labelledby":f,hidden:!_,id:p,tabIndex:0,...u,ref:t,style:{...e.style,animationDuration:b.current?"0s":void 0},children:_&&o})})});jIn.displayName=YIn;function WIn(e,t){return`${e}-trigger-${t}`}function KIn(e,t){return`${e}-content-${t}`}var J3a=zIn,eTa=qIn,tTa=VIn,nTa=jIn,XIn="Toggle",QIn=ue.forwardRef((e,t)=>{const{pressed:r,defaultPressed:a,onPressedChange:s,...o}=e,[u,h]=km({prop:r,onChange:s,defaultProp:a??!1,caller:XIn});return ct.jsx(Za.button,{type:"button","aria-pressed":u,"data-state":u?"on":"off","data-disabled":e.disabled?"":void 0,...o,ref:t,onClick:ji(e.onClick,()=>{e.disabled||h(!u)})})});QIn.displayName=XIn;var k9="ToggleGroup",[ZIn]=Ng(k9,[C9]),JIn=C9(),Kft=Er.forwardRef((e,t)=>{const{type:r,...a}=e;if(r==="single"){const s=a;return ct.jsx(ujr,{...s,ref:t})}if(r==="multiple"){const s=a;return ct.jsx(hjr,{...s,ref:t})}throw new Error(`Missing prop \`type\` expected on \`${k9}\``)});Kft.displayName=k9;var[eNn,tNn]=ZIn(k9),ujr=Er.forwardRef((e,t)=>{const{value:r,defaultValue:a,onValueChange:s=()=>{},...o}=e,[u,h]=km({prop:r,defaultProp:a??"",onChange:s,caller:k9});return ct.jsx(eNn,{scope:e.__scopeToggleGroup,type:"single",value:Er.useMemo(()=>u?[u]:[],[u]),onItemActivate:h,onItemDeactivate:Er.useCallback(()=>h(""),[h]),children:ct.jsx(nNn,{...o,ref:t})})}),hjr=Er.forwardRef((e,t)=>{const{value:r,defaultValue:a,onValueChange:s=()=>{},...o}=e,[u,h]=km({prop:r,defaultProp:a??[],onChange:s,caller:k9}),f=Er.useCallback(m=>h((b=[])=>[...b,m]),[h]),p=Er.useCallback(m=>h((b=[])=>b.filter(_=>_!==m)),[h]);return ct.jsx(eNn,{scope:e.__scopeToggleGroup,type:"multiple",value:u,onItemActivate:f,onItemDeactivate:p,children:ct.jsx(nNn,{...o,ref:t})})});Kft.displayName=k9;var[djr,fjr]=ZIn(k9),nNn=Er.forwardRef((e,t)=>{const{__scopeToggleGroup:r,disabled:a=!1,rovingFocus:s=!0,orientation:o,dir:u,loop:h=!0,...f}=e,p=JIn(r),m=S9(u),b={role:"group",dir:m,...f};return ct.jsx(djr,{scope:r,rovingFocus:s,disabled:a,children:s?ct.jsx(uCe,{asChild:!0,...p,orientation:o,dir:m,loop:h,children:ct.jsx(Za.div,{...b,ref:t})}):ct.jsx(Za.div,{...b,ref:t})})}),VSe="ToggleGroupItem",rNn=Er.forwardRef((e,t)=>{const r=tNn(VSe,e.__scopeToggleGroup),a=fjr(VSe,e.__scopeToggleGroup),s=JIn(e.__scopeToggleGroup),o=r.value.includes(e.value),u=a.disabled||e.disabled,h={...e,pressed:o,disabled:u},f=Er.useRef(null);return a.rovingFocus?ct.jsx(hCe,{asChild:!0,...s,focusable:!u,active:o,ref:f,children:ct.jsx(i1n,{...h,ref:t})}):ct.jsx(i1n,{...h,ref:t})});rNn.displayName=VSe;var i1n=Er.forwardRef((e,t)=>{const{__scopeToggleGroup:r,value:a,...s}=e,o=tNn(VSe,r),u={role:"radio","aria-checked":e.pressed,"aria-pressed":void 0},h=o.type==="single"?u:void 0;return ct.jsx(QIn,{...h,...s,ref:t,onPressedChange:f=>{f?o.onItemActivate(a):o.onItemDeactivate(a)}})}),rTa=Kft,iTa=rNn;function ECe(e){const t=ue.useRef({value:e,previous:e});return ue.useMemo(()=>(t.current.value!==e&&(t.current.previous=t.current.value,t.current.value=e),t.current.previous),[e])}var Xft="Radio",[pjr,iNn]=Ng(Xft),[gjr,mjr]=pjr(Xft),aNn=ue.forwardRef((e,t)=>{const{__scopeRadio:r,name:a,checked:s=!1,required:o,disabled:u,value:h="on",onCheck:f,form:p,...m}=e,[b,_]=ue.useState(null),w=Yo(t,A=>_(A)),S=ue.useRef(!1),C=b?p||!!b.closest("form"):!0;return ct.jsxs(gjr,{scope:r,checked:s,disabled:u,children:[ct.jsx(Za.button,{type:"button",role:"radio","aria-checked":s,"data-state":cNn(s),"data-disabled":u?"":void 0,disabled:u,value:h,...m,ref:w,onClick:ji(e.onClick,A=>{s||f==null||f(),C&&(S.current=A.isPropagationStopped(),S.current||A.stopPropagation())})}),C&&ct.jsx(lNn,{control:b,bubbles:!S.current,name:a,value:h,checked:s,required:o,disabled:u,form:p,style:{transform:"translateX(-100%)"}})]})});aNn.displayName=Xft;var sNn="RadioIndicator",oNn=ue.forwardRef((e,t)=>{const{__scopeRadio:r,forceMount:a,...s}=e,o=mjr(sNn,r);return ct.jsx(D1,{present:a||o.checked,children:ct.jsx(Za.span,{"data-state":cNn(o.checked),"data-disabled":o.disabled?"":void 0,...s,ref:t})})});oNn.displayName=sNn;var bjr="RadioBubbleInput",lNn=ue.forwardRef(({__scopeRadio:e,control:t,checked:r,bubbles:a=!0,...s},o)=>{const u=ue.useRef(null),h=Yo(u,o),f=ECe(r),p=sCe(t);return ue.useEffect(()=>{const m=u.current;if(!m)return;const b=window.HTMLInputElement.prototype,w=Object.getOwnPropertyDescriptor(b,"checked").set;if(f!==r&&w){const S=new Event("click",{bubbles:a});w.call(m,r),m.dispatchEvent(S)}},[f,r,a]),ct.jsx(Za.input,{type:"radio","aria-hidden":!0,defaultChecked:r,...s,tabIndex:-1,ref:h,style:{...s.style,...p,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});lNn.displayName=bjr;function cNn(e){return e?"checked":"unchecked"}var yjr=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],xCe="RadioGroup",[vjr]=Ng(xCe,[C9,iNn]),uNn=C9(),hNn=iNn(),[_jr,wjr]=vjr(xCe),dNn=ue.forwardRef((e,t)=>{const{__scopeRadioGroup:r,name:a,defaultValue:s,value:o,required:u=!1,disabled:h=!1,orientation:f,dir:p,loop:m=!0,onValueChange:b,..._}=e,w=uNn(r),S=S9(p),[C,A]=km({prop:o,defaultProp:s??null,onChange:b,caller:xCe});return ct.jsx(_jr,{scope:r,name:a,required:u,disabled:h,value:C,onValueChange:A,children:ct.jsx(uCe,{asChild:!0,...w,orientation:f,dir:S,loop:m,children:ct.jsx(Za.div,{role:"radiogroup","aria-required":u,"aria-orientation":f,"data-disabled":h?"":void 0,dir:S,..._,ref:t})})})});dNn.displayName=xCe;var fNn="RadioGroupItem",pNn=ue.forwardRef((e,t)=>{const{__scopeRadioGroup:r,disabled:a,...s}=e,o=wjr(fNn,r),u=o.disabled||a,h=uNn(r),f=hNn(r),p=ue.useRef(null),m=Yo(t,p),b=o.value===s.value,_=ue.useRef(!1);return ue.useEffect(()=>{const w=C=>{yjr.includes(C.key)&&(_.current=!0)},S=()=>_.current=!1;return document.addEventListener("keydown",w),document.addEventListener("keyup",S),()=>{document.removeEventListener("keydown",w),document.removeEventListener("keyup",S)}},[]),ct.jsx(hCe,{asChild:!0,...h,focusable:!u,active:b,children:ct.jsx(aNn,{disabled:u,required:o.required,checked:b,...f,...s,name:o.name,ref:m,onCheck:()=>o.onValueChange(s.value),onKeyDown:ji(w=>{w.key==="Enter"&&w.preventDefault()}),onFocus:ji(s.onFocus,()=>{var w;_.current&&((w=p.current)==null||w.click())})})})});pNn.displayName=fNn;var Ejr="RadioGroupIndicator",gNn=ue.forwardRef((e,t)=>{const{__scopeRadioGroup:r,...a}=e,s=hNn(r);return ct.jsx(oNn,{...s,...a,ref:t})});gNn.displayName=Ejr;var aTa=dNn,sTa=pNn,oTa=gNn;function zst(e,[t,r]){return Math.min(r,Math.max(t,e))}var xjr=[" ","Enter","ArrowUp","ArrowDown"],Sjr=[" ","Enter"],SF="Select",[SCe,TCe,Tjr]=iCe(SF),[RW]=Ng(SF,[Tjr,T9]),CCe=T9(),[Cjr,R9]=RW(SF),[Ajr,kjr]=RW(SF),mNn=e=>{const{__scopeSelect:t,children:r,open:a,defaultOpen:s,onOpenChange:o,value:u,defaultValue:h,onValueChange:f,dir:p,name:m,autoComplete:b,disabled:_,required:w,form:S}=e,C=CCe(t),[A,k]=ue.useState(null),[I,N]=ue.useState(null),[L,P]=ue.useState(!1),M=S9(p),[F,U]=km({prop:a,defaultProp:s??!1,onChange:o,caller:SF}),[$,G]=km({prop:u,defaultProp:h,onChange:f,caller:SF}),B=ue.useRef(null),Z=A?S||!!A.closest("form"):!0,[z,Y]=ue.useState(new Set),W=Array.from(z).map(Q=>Q.props.value).join(";");return ct.jsx(oCe,{...C,children:ct.jsxs(Cjr,{required:w,scope:t,trigger:A,onTriggerChange:k,valueNode:I,onValueNodeChange:N,valueNodeHasChildren:L,onValueNodeHasChildrenChange:P,contentId:I1(),value:$,onValueChange:G,open:F,onOpenChange:U,dir:M,triggerPointerDownPosRef:B,disabled:_,children:[ct.jsx(SCe.Provider,{scope:t,children:ct.jsx(Ajr,{scope:e.__scopeSelect,onNativeOptionAdd:ue.useCallback(Q=>{Y(V=>new Set(V).add(Q))},[]),onNativeOptionRemove:ue.useCallback(Q=>{Y(V=>{const j=new Set(V);return j.delete(Q),j})},[]),children:r})}),Z?ct.jsxs(UNn,{"aria-hidden":!0,required:w,tabIndex:-1,name:m,autoComplete:b,value:$,onChange:Q=>G(Q.target.value),disabled:_,form:S,children:[$===void 0?ct.jsx("option",{value:""}):null,Array.from(z)]},W):null]})})};mNn.displayName=SF;var bNn="SelectTrigger",yNn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,disabled:a=!1,...s}=e,o=CCe(r),u=R9(bNn,r),h=u.disabled||a,f=Yo(t,u.onTriggerChange),p=TCe(r),m=ue.useRef("touch"),[b,_,w]=GNn(C=>{const A=p().filter(N=>!N.disabled),k=A.find(N=>N.value===u.value),I=qNn(A,C,k);I!==void 0&&u.onValueChange(I.value)}),S=C=>{h||(u.onOpenChange(!0),w()),C&&(u.triggerPointerDownPosRef.current={x:Math.round(C.pageX),y:Math.round(C.pageY)})};return ct.jsx(qle,{asChild:!0,...o,children:ct.jsx(Za.button,{type:"button",role:"combobox","aria-controls":u.contentId,"aria-expanded":u.open,"aria-required":u.required,"aria-autocomplete":"none",dir:u.dir,"data-state":u.open?"open":"closed",disabled:h,"data-disabled":h?"":void 0,"data-placeholder":zNn(u.value)?"":void 0,...s,ref:f,onClick:ji(s.onClick,C=>{C.currentTarget.focus(),m.current!=="mouse"&&S(C)}),onPointerDown:ji(s.onPointerDown,C=>{m.current=C.pointerType;const A=C.target;A.hasPointerCapture(C.pointerId)&&A.releasePointerCapture(C.pointerId),C.button===0&&C.ctrlKey===!1&&C.pointerType==="mouse"&&(S(C),C.preventDefault())}),onKeyDown:ji(s.onKeyDown,C=>{const A=b.current!=="";!(C.ctrlKey||C.altKey||C.metaKey)&&C.key.length===1&&_(C.key),!(A&&C.key===" ")&&xjr.includes(C.key)&&(S(),C.preventDefault())})})})});yNn.displayName=bNn;var vNn="SelectValue",_Nn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,className:a,style:s,children:o,placeholder:u="",...h}=e,f=R9(vNn,r),{onValueNodeHasChildrenChange:p}=f,m=o!==void 0,b=Yo(t,f.onValueNodeChange);return Ig(()=>{p(m)},[p,m]),ct.jsx(Za.span,{...h,ref:b,style:{pointerEvents:"none"},children:zNn(f.value)?ct.jsx(ct.Fragment,{children:u}):o})});_Nn.displayName=vNn;var Rjr="SelectIcon",wNn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,children:a,...s}=e;return ct.jsx(Za.span,{"aria-hidden":!0,...s,ref:t,children:a||"▼"})});wNn.displayName=Rjr;var Ijr="SelectPortal",ENn=e=>ct.jsx(AW,{asChild:!0,...e});ENn.displayName=Ijr;var TF="SelectContent",xNn=ue.forwardRef((e,t)=>{const r=R9(TF,e.__scopeSelect),[a,s]=ue.useState();if(Ig(()=>{s(new DocumentFragment)},[]),!r.open){const o=a;return o?w9.createPortal(ct.jsx(SNn,{scope:e.__scopeSelect,children:ct.jsx(SCe.Slot,{scope:e.__scopeSelect,children:ct.jsx("div",{children:e.children})})}),o):null}return ct.jsx(TNn,{...e,ref:t})});xNn.displayName=TF;var E3=10,[SNn,I9]=RW(TF),Njr="SelectContentImpl",Ojr=wF("SelectContent.RemoveScroll"),TNn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,position:a="item-aligned",onCloseAutoFocus:s,onEscapeKeyDown:o,onPointerDownOutside:u,side:h,sideOffset:f,align:p,alignOffset:m,arrowPadding:b,collisionBoundary:_,collisionPadding:w,sticky:S,hideWhenDetached:C,avoidCollisions:A,...k}=e,I=R9(TF,r),[N,L]=ue.useState(null),[P,M]=ue.useState(null),F=Yo(t,ve=>L(ve)),[U,$]=ue.useState(null),[G,B]=ue.useState(null),Z=TCe(r),[z,Y]=ue.useState(!1),W=ue.useRef(!1);ue.useEffect(()=>{if(N)return Vle(N)},[N]),aCe();const Q=ue.useCallback(ve=>{const[De,...ye]=Z().map(we=>we.ref.current),[Ee]=ye.slice(-1),he=document.activeElement;for(const we of ve)if(we===he||(we==null||we.scrollIntoView({block:"nearest"}),we===De&&P&&(P.scrollTop=0),we===Ee&&P&&(P.scrollTop=P.scrollHeight),we==null||we.focus(),document.activeElement!==he))return},[Z,P]),V=ue.useCallback(()=>Q([U,N]),[Q,U,N]);ue.useEffect(()=>{z&&V()},[z,V]);const{onOpenChange:j,triggerPointerDownPosRef:ee}=I;ue.useEffect(()=>{if(N){let ve={x:0,y:0};const De=Ee=>{var he,we;ve={x:Math.abs(Math.round(Ee.pageX)-(((he=ee.current)==null?void 0:he.x)??0)),y:Math.abs(Math.round(Ee.pageY)-(((we=ee.current)==null?void 0:we.y)??0))}},ye=Ee=>{ve.x<=10&&ve.y<=10?Ee.preventDefault():N.contains(Ee.target)||j(!1),document.removeEventListener("pointermove",De),ee.current=null};return ee.current!==null&&(document.addEventListener("pointermove",De),document.addEventListener("pointerup",ye,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",De),document.removeEventListener("pointerup",ye,{capture:!0})}}},[N,j,ee]),ue.useEffect(()=>{const ve=()=>j(!1);return window.addEventListener("blur",ve),window.addEventListener("resize",ve),()=>{window.removeEventListener("blur",ve),window.removeEventListener("resize",ve)}},[j]);const[te,ne]=GNn(ve=>{const De=Z().filter(he=>!he.disabled),ye=De.find(he=>he.ref.current===document.activeElement),Ee=qNn(De,ve,ye);Ee&&setTimeout(()=>Ee.ref.current.focus())}),se=ue.useCallback((ve,De,ye)=>{const Ee=!W.current&&!ye;(I.value!==void 0&&I.value===De||Ee)&&($(ve),Ee&&(W.current=!0))},[I.value]),ie=ue.useCallback(()=>N==null?void 0:N.focus(),[N]),ge=ue.useCallback((ve,De,ye)=>{const Ee=!W.current&&!ye;(I.value!==void 0&&I.value===De||Ee)&&B(ve)},[I.value]),ce=a==="popper"?Gst:CNn,be=ce===Gst?{side:h,sideOffset:f,align:p,alignOffset:m,arrowPadding:b,collisionBoundary:_,collisionPadding:w,sticky:S,hideWhenDetached:C,avoidCollisions:A}:{};return ct.jsx(SNn,{scope:r,content:N,viewport:P,onViewportChange:M,itemRefCallback:se,selectedItem:U,onItemLeave:ie,itemTextRefCallback:ge,focusSelectedItem:V,selectedItemText:G,position:a,isPositioned:z,searchRef:te,children:ct.jsx(kW,{as:Ojr,allowPinchZoom:!0,children:ct.jsx(Gle,{asChild:!0,trapped:I.open,onMountAutoFocus:ve=>{ve.preventDefault()},onUnmountAutoFocus:ji(s,ve=>{var De;(De=I.trigger)==null||De.focus({preventScroll:!0}),ve.preventDefault()}),children:ct.jsx(CW,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:o,onPointerDownOutside:u,onFocusOutside:ve=>ve.preventDefault(),onDismiss:()=>I.onOpenChange(!1),children:ct.jsx(ce,{role:"listbox",id:I.contentId,"data-state":I.open?"open":"closed",dir:I.dir,onContextMenu:ve=>ve.preventDefault(),...k,...be,onPlaced:()=>Y(!0),ref:F,style:{display:"flex",flexDirection:"column",outline:"none",...k.style},onKeyDown:ji(k.onKeyDown,ve=>{const De=ve.ctrlKey||ve.altKey||ve.metaKey;if(ve.key==="Tab"&&ve.preventDefault(),!De&&ve.key.length===1&&ne(ve.key),["ArrowUp","ArrowDown","Home","End"].includes(ve.key)){let Ee=Z().filter(he=>!he.disabled).map(he=>he.ref.current);if(["ArrowUp","End"].includes(ve.key)&&(Ee=Ee.slice().reverse()),["ArrowUp","ArrowDown"].includes(ve.key)){const he=ve.target,we=Ee.indexOf(he);Ee=Ee.slice(we+1)}setTimeout(()=>Q(Ee)),ve.preventDefault()}})})})})})})});TNn.displayName=Njr;var Ljr="SelectItemAlignedPosition",CNn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,onPlaced:a,...s}=e,o=R9(TF,r),u=I9(TF,r),[h,f]=ue.useState(null),[p,m]=ue.useState(null),b=Yo(t,F=>m(F)),_=TCe(r),w=ue.useRef(!1),S=ue.useRef(!0),{viewport:C,selectedItem:A,selectedItemText:k,focusSelectedItem:I}=u,N=ue.useCallback(()=>{if(o.trigger&&o.valueNode&&h&&p&&C&&A&&k){const F=o.trigger.getBoundingClientRect(),U=p.getBoundingClientRect(),$=o.valueNode.getBoundingClientRect(),G=k.getBoundingClientRect();if(o.dir!=="rtl"){const he=G.left-U.left,we=$.left-he,Ce=F.left-we,Ie=F.width+Ce,Le=Math.max(Ie,U.width),Fe=window.innerWidth-E3,Ve=zst(we,[E3,Math.max(E3,Fe-Le)]);h.style.minWidth=Ie+"px",h.style.left=Ve+"px"}else{const he=U.right-G.right,we=window.innerWidth-$.right-he,Ce=window.innerWidth-F.right-we,Ie=F.width+Ce,Le=Math.max(Ie,U.width),Fe=window.innerWidth-E3,Ve=zst(we,[E3,Math.max(E3,Fe-Le)]);h.style.minWidth=Ie+"px",h.style.right=Ve+"px"}const B=_(),Z=window.innerHeight-E3*2,z=C.scrollHeight,Y=window.getComputedStyle(p),W=parseInt(Y.borderTopWidth,10),Q=parseInt(Y.paddingTop,10),V=parseInt(Y.borderBottomWidth,10),j=parseInt(Y.paddingBottom,10),ee=W+Q+z+j+V,te=Math.min(A.offsetHeight*5,ee),ne=window.getComputedStyle(C),se=parseInt(ne.paddingTop,10),ie=parseInt(ne.paddingBottom,10),ge=F.top+F.height/2-E3,ce=Z-ge,be=A.offsetHeight/2,ve=A.offsetTop+be,De=W+Q+ve,ye=ee-De;if(De<=ge){const he=B.length>0&&A===B[B.length-1].ref.current;h.style.bottom="0px";const we=p.clientHeight-C.offsetTop-C.offsetHeight,Ce=Math.max(ce,be+(he?ie:0)+we+V),Ie=De+Ce;h.style.height=Ie+"px"}else{const he=B.length>0&&A===B[0].ref.current;h.style.top="0px";const Ce=Math.max(ge,W+C.offsetTop+(he?se:0)+be)+ye;h.style.height=Ce+"px",C.scrollTop=De-ge+C.offsetTop}h.style.margin=`${E3}px 0`,h.style.minHeight=te+"px",h.style.maxHeight=Z+"px",a==null||a(),requestAnimationFrame(()=>w.current=!0)}},[_,o.trigger,o.valueNode,h,p,C,A,k,o.dir,a]);Ig(()=>N(),[N]);const[L,P]=ue.useState();Ig(()=>{p&&P(window.getComputedStyle(p).zIndex)},[p]);const M=ue.useCallback(F=>{F&&S.current===!0&&(N(),I==null||I(),S.current=!1)},[N,I]);return ct.jsx(Mjr,{scope:r,contentWrapper:h,shouldExpandOnScrollRef:w,onScrollButtonChange:M,children:ct.jsx("div",{ref:f,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:L},children:ct.jsx(Za.div,{...s,ref:b,style:{boxSizing:"border-box",maxHeight:"100%",...s.style}})})})});CNn.displayName=Ljr;var Djr="SelectPopperPosition",Gst=ue.forwardRef((e,t)=>{const{__scopeSelect:r,align:a="start",collisionPadding:s=E3,...o}=e,u=CCe(r);return ct.jsx(lCe,{...u,...o,ref:t,align:a,collisionPadding:s,style:{boxSizing:"border-box",...o.style,"--radix-select-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-select-content-available-width":"var(--radix-popper-available-width)","--radix-select-content-available-height":"var(--radix-popper-available-height)","--radix-select-trigger-width":"var(--radix-popper-anchor-width)","--radix-select-trigger-height":"var(--radix-popper-anchor-height)"}})});Gst.displayName=Djr;var[Mjr,Qft]=RW(TF,{}),qst="SelectViewport",ANn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,nonce:a,...s}=e,o=I9(qst,r),u=Qft(qst,r),h=Yo(t,o.onViewportChange),f=ue.useRef(0);return ct.jsxs(ct.Fragment,{children:[ct.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-select-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-select-viewport]::-webkit-scrollbar{display:none}"},nonce:a}),ct.jsx(SCe.Slot,{scope:r,children:ct.jsx(Za.div,{"data-radix-select-viewport":"",role:"presentation",...s,ref:h,style:{position:"relative",flex:1,overflow:"hidden auto",...s.style},onScroll:ji(s.onScroll,p=>{const m=p.currentTarget,{contentWrapper:b,shouldExpandOnScrollRef:_}=u;if(_!=null&&_.current&&b){const w=Math.abs(f.current-m.scrollTop);if(w>0){const S=window.innerHeight-E3*2,C=parseFloat(b.style.minHeight),A=parseFloat(b.style.height),k=Math.max(C,A);if(k0?L:0,b.style.justifyContent="flex-end")}}}f.current=m.scrollTop})})})]})});ANn.displayName=qst;var kNn="SelectGroup",[Pjr,Bjr]=RW(kNn),Fjr=ue.forwardRef((e,t)=>{const{__scopeSelect:r,...a}=e,s=I1();return ct.jsx(Pjr,{scope:r,id:s,children:ct.jsx(Za.div,{role:"group","aria-labelledby":s,...a,ref:t})})});Fjr.displayName=kNn;var RNn="SelectLabel",INn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,...a}=e,s=Bjr(RNn,r);return ct.jsx(Za.div,{id:s.id,...a,ref:t})});INn.displayName=RNn;var YSe="SelectItem",[$jr,NNn]=RW(YSe),ONn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,value:a,disabled:s=!1,textValue:o,...u}=e,h=R9(YSe,r),f=I9(YSe,r),p=h.value===a,[m,b]=ue.useState(o??""),[_,w]=ue.useState(!1),S=Yo(t,I=>{var N;return(N=f.itemRefCallback)==null?void 0:N.call(f,I,a,s)}),C=I1(),A=ue.useRef("touch"),k=()=>{s||(h.onValueChange(a),h.onOpenChange(!1))};if(a==="")throw new Error("A must have a value prop that is not an empty string. This is because the Select value can be set to an empty string to clear the selection and show the placeholder.");return ct.jsx($jr,{scope:r,value:a,disabled:s,textId:C,isSelected:p,onItemTextChange:ue.useCallback(I=>{b(N=>N||((I==null?void 0:I.textContent)??"").trim())},[]),children:ct.jsx(SCe.ItemSlot,{scope:r,value:a,disabled:s,textValue:m,children:ct.jsx(Za.div,{role:"option","aria-labelledby":C,"data-highlighted":_?"":void 0,"aria-selected":p&&_,"data-state":p?"checked":"unchecked","aria-disabled":s||void 0,"data-disabled":s?"":void 0,tabIndex:s?void 0:-1,...u,ref:S,onFocus:ji(u.onFocus,()=>w(!0)),onBlur:ji(u.onBlur,()=>w(!1)),onClick:ji(u.onClick,()=>{A.current!=="mouse"&&k()}),onPointerUp:ji(u.onPointerUp,()=>{A.current==="mouse"&&k()}),onPointerDown:ji(u.onPointerDown,I=>{A.current=I.pointerType}),onPointerMove:ji(u.onPointerMove,I=>{var N;A.current=I.pointerType,s?(N=f.onItemLeave)==null||N.call(f):A.current==="mouse"&&I.currentTarget.focus({preventScroll:!0})}),onPointerLeave:ji(u.onPointerLeave,I=>{var N;I.currentTarget===document.activeElement&&((N=f.onItemLeave)==null||N.call(f))}),onKeyDown:ji(u.onKeyDown,I=>{var L;((L=f.searchRef)==null?void 0:L.current)!==""&&I.key===" "||(Sjr.includes(I.key)&&k(),I.key===" "&&I.preventDefault())})})})})});ONn.displayName=YSe;var Aie="SelectItemText",LNn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,className:a,style:s,...o}=e,u=R9(Aie,r),h=I9(Aie,r),f=NNn(Aie,r),p=kjr(Aie,r),[m,b]=ue.useState(null),_=Yo(t,k=>b(k),f.onItemTextChange,k=>{var I;return(I=h.itemTextRefCallback)==null?void 0:I.call(h,k,f.value,f.disabled)}),w=m==null?void 0:m.textContent,S=ue.useMemo(()=>ct.jsx("option",{value:f.value,disabled:f.disabled,children:w},f.value),[f.disabled,f.value,w]),{onNativeOptionAdd:C,onNativeOptionRemove:A}=p;return Ig(()=>(C(S),()=>A(S)),[C,A,S]),ct.jsxs(ct.Fragment,{children:[ct.jsx(Za.span,{id:f.textId,...o,ref:_}),f.isSelected&&u.valueNode&&!u.valueNodeHasChildren?w9.createPortal(o.children,u.valueNode):null]})});LNn.displayName=Aie;var DNn="SelectItemIndicator",MNn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,...a}=e;return NNn(DNn,r).isSelected?ct.jsx(Za.span,{"aria-hidden":!0,...a,ref:t}):null});MNn.displayName=DNn;var Hst="SelectScrollUpButton",PNn=ue.forwardRef((e,t)=>{const r=I9(Hst,e.__scopeSelect),a=Qft(Hst,e.__scopeSelect),[s,o]=ue.useState(!1),u=Yo(t,a.onScrollButtonChange);return Ig(()=>{if(r.viewport&&r.isPositioned){let h=function(){const p=f.scrollTop>0;o(p)};const f=r.viewport;return h(),f.addEventListener("scroll",h),()=>f.removeEventListener("scroll",h)}},[r.viewport,r.isPositioned]),s?ct.jsx(FNn,{...e,ref:u,onAutoScroll:()=>{const{viewport:h,selectedItem:f}=r;h&&f&&(h.scrollTop=h.scrollTop-f.offsetHeight)}}):null});PNn.displayName=Hst;var Vst="SelectScrollDownButton",BNn=ue.forwardRef((e,t)=>{const r=I9(Vst,e.__scopeSelect),a=Qft(Vst,e.__scopeSelect),[s,o]=ue.useState(!1),u=Yo(t,a.onScrollButtonChange);return Ig(()=>{if(r.viewport&&r.isPositioned){let h=function(){const p=f.scrollHeight-f.clientHeight,m=Math.ceil(f.scrollTop)f.removeEventListener("scroll",h)}},[r.viewport,r.isPositioned]),s?ct.jsx(FNn,{...e,ref:u,onAutoScroll:()=>{const{viewport:h,selectedItem:f}=r;h&&f&&(h.scrollTop=h.scrollTop+f.offsetHeight)}}):null});BNn.displayName=Vst;var FNn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,onAutoScroll:a,...s}=e,o=I9("SelectScrollButton",r),u=ue.useRef(null),h=TCe(r),f=ue.useCallback(()=>{u.current!==null&&(window.clearInterval(u.current),u.current=null)},[]);return ue.useEffect(()=>()=>f(),[f]),Ig(()=>{var m;const p=h().find(b=>b.ref.current===document.activeElement);(m=p==null?void 0:p.ref.current)==null||m.scrollIntoView({block:"nearest"})},[h]),ct.jsx(Za.div,{"aria-hidden":!0,...s,ref:t,style:{flexShrink:0,...s.style},onPointerDown:ji(s.onPointerDown,()=>{u.current===null&&(u.current=window.setInterval(a,50))}),onPointerMove:ji(s.onPointerMove,()=>{var p;(p=o.onItemLeave)==null||p.call(o),u.current===null&&(u.current=window.setInterval(a,50))}),onPointerLeave:ji(s.onPointerLeave,()=>{f()})})}),Ujr="SelectSeparator",$Nn=ue.forwardRef((e,t)=>{const{__scopeSelect:r,...a}=e;return ct.jsx(Za.div,{"aria-hidden":!0,...a,ref:t})});$Nn.displayName=Ujr;var Yst="SelectArrow",zjr=ue.forwardRef((e,t)=>{const{__scopeSelect:r,...a}=e,s=CCe(r),o=R9(Yst,r),u=I9(Yst,r);return o.open&&u.position==="popper"?ct.jsx(cCe,{...s,...a,ref:t}):null});zjr.displayName=Yst;var Gjr="SelectBubbleInput",UNn=ue.forwardRef(({__scopeSelect:e,value:t,...r},a)=>{const s=ue.useRef(null),o=Yo(a,s),u=ECe(t);return ue.useEffect(()=>{const h=s.current;if(!h)return;const f=window.HTMLSelectElement.prototype,m=Object.getOwnPropertyDescriptor(f,"value").set;if(u!==t&&m){const b=new Event("change",{bubbles:!0});m.call(h,t),h.dispatchEvent(b)}},[u,t]),ct.jsx(Za.select,{...r,style:{...X8n,...r.style},ref:o,defaultValue:t})});UNn.displayName=Gjr;function zNn(e){return e===""||e===void 0}function GNn(e){const t=_m(e),r=ue.useRef(""),a=ue.useRef(0),s=ue.useCallback(u=>{const h=r.current+u;t(h),function f(p){r.current=p,window.clearTimeout(a.current),p!==""&&(a.current=window.setTimeout(()=>f(""),1e3))}(h)},[t]),o=ue.useCallback(()=>{r.current="",window.clearTimeout(a.current)},[]);return ue.useEffect(()=>()=>window.clearTimeout(a.current),[]),[r,s,o]}function qNn(e,t,r){const s=t.length>1&&Array.from(t).every(p=>p===t[0])?t[0]:t,o=r?e.indexOf(r):-1;let u=qjr(e,Math.max(o,0));s.length===1&&(u=u.filter(p=>p!==r));const f=u.find(p=>p.textValue.toLowerCase().startsWith(s.toLowerCase()));return f!==r?f:void 0}function qjr(e,t){return e.map((r,a)=>e[(t+a)%e.length])}var lTa=mNn,cTa=yNn,uTa=_Nn,hTa=wNn,dTa=ENn,fTa=xNn,pTa=ANn,gTa=INn,mTa=ONn,bTa=LNn,yTa=MNn,vTa=PNn,_Ta=BNn,wTa=$Nn,ACe="Switch",[Hjr]=Ng(ACe),[Vjr,Yjr]=Hjr(ACe),HNn=ue.forwardRef((e,t)=>{const{__scopeSwitch:r,name:a,checked:s,defaultChecked:o,required:u,disabled:h,value:f="on",onCheckedChange:p,form:m,...b}=e,[_,w]=ue.useState(null),S=Yo(t,N=>w(N)),C=ue.useRef(!1),A=_?m||!!_.closest("form"):!0,[k,I]=km({prop:s,defaultProp:o??!1,onChange:p,caller:ACe});return ct.jsxs(Vjr,{scope:r,checked:k,disabled:h,children:[ct.jsx(Za.button,{type:"button",role:"switch","aria-checked":k,"aria-required":u,"data-state":WNn(k),"data-disabled":h?"":void 0,disabled:h,value:f,...b,ref:S,onClick:ji(e.onClick,N=>{I(L=>!L),A&&(C.current=N.isPropagationStopped(),C.current||N.stopPropagation())})}),A&&ct.jsx(jNn,{control:_,bubbles:!C.current,name:a,value:f,checked:k,required:u,disabled:h,form:m,style:{transform:"translateX(-100%)"}})]})});HNn.displayName=ACe;var VNn="SwitchThumb",YNn=ue.forwardRef((e,t)=>{const{__scopeSwitch:r,...a}=e,s=Yjr(VNn,r);return ct.jsx(Za.span,{"data-state":WNn(s.checked),"data-disabled":s.disabled?"":void 0,...a,ref:t})});YNn.displayName=VNn;var jjr="SwitchBubbleInput",jNn=ue.forwardRef(({__scopeSwitch:e,control:t,checked:r,bubbles:a=!0,...s},o)=>{const u=ue.useRef(null),h=Yo(u,o),f=ECe(r),p=sCe(t);return ue.useEffect(()=>{const m=u.current;if(!m)return;const b=window.HTMLInputElement.prototype,w=Object.getOwnPropertyDescriptor(b,"checked").set;if(f!==r&&w){const S=new Event("click",{bubbles:a});w.call(m,r),m.dispatchEvent(S)}},[f,r,a]),ct.jsx("input",{type:"checkbox","aria-hidden":!0,defaultChecked:r,...s,tabIndex:-1,ref:h,style:{...s.style,...p,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});jNn.displayName=jjr;function WNn(e){return e?"checked":"unchecked"}var ETa=HNn,xTa=YNn,kCe="Collapsible",[Wjr,KNn]=Ng(kCe),[Kjr,Zft]=Wjr(kCe),XNn=ue.forwardRef((e,t)=>{const{__scopeCollapsible:r,open:a,defaultOpen:s,disabled:o,onOpenChange:u,...h}=e,[f,p]=km({prop:a,defaultProp:s??!1,onChange:u,caller:kCe});return ct.jsx(Kjr,{scope:r,disabled:o,contentId:I1(),open:f,onOpenToggle:ue.useCallback(()=>p(m=>!m),[p]),children:ct.jsx(Za.div,{"data-state":e0t(f),"data-disabled":o?"":void 0,...h,ref:t})})});XNn.displayName=kCe;var QNn="CollapsibleTrigger",ZNn=ue.forwardRef((e,t)=>{const{__scopeCollapsible:r,...a}=e,s=Zft(QNn,r);return ct.jsx(Za.button,{type:"button","aria-controls":s.contentId,"aria-expanded":s.open||!1,"data-state":e0t(s.open),"data-disabled":s.disabled?"":void 0,disabled:s.disabled,...a,ref:t,onClick:ji(e.onClick,s.onOpenToggle)})});ZNn.displayName=QNn;var Jft="CollapsibleContent",JNn=ue.forwardRef((e,t)=>{const{forceMount:r,...a}=e,s=Zft(Jft,e.__scopeCollapsible);return ct.jsx(D1,{present:r||s.open,children:({present:o})=>ct.jsx(Xjr,{...a,ref:t,present:o})})});JNn.displayName=Jft;var Xjr=ue.forwardRef((e,t)=>{const{__scopeCollapsible:r,present:a,children:s,...o}=e,u=Zft(Jft,r),[h,f]=ue.useState(a),p=ue.useRef(null),m=Yo(t,p),b=ue.useRef(0),_=b.current,w=ue.useRef(0),S=w.current,C=u.open||h,A=ue.useRef(C),k=ue.useRef(void 0);return ue.useEffect(()=>{const I=requestAnimationFrame(()=>A.current=!1);return()=>cancelAnimationFrame(I)},[]),Ig(()=>{const I=p.current;if(I){k.current=k.current||{transitionDuration:I.style.transitionDuration,animationName:I.style.animationName},I.style.transitionDuration="0s",I.style.animationName="none";const N=I.getBoundingClientRect();b.current=N.height,w.current=N.width,A.current||(I.style.transitionDuration=k.current.transitionDuration,I.style.animationName=k.current.animationName),f(a)}},[u.open,a]),ct.jsx(Za.div,{"data-state":e0t(u.open),"data-disabled":u.disabled?"":void 0,id:u.contentId,hidden:!C,...o,ref:m,style:{"--radix-collapsible-content-height":_?`${_}px`:void 0,"--radix-collapsible-content-width":S?`${S}px`:void 0,...e.style},children:C&&s})});function e0t(e){return e?"open":"closed"}var Qjr=XNn,Zjr=ZNn,Jjr=JNn,gT="Accordion",eWr=["Home","End","ArrowDown","ArrowUp","ArrowLeft","ArrowRight"],[t0t,tWr,nWr]=iCe(gT),[RCe]=Ng(gT,[nWr,KNn]),n0t=KNn(),eOn=Er.forwardRef((e,t)=>{const{type:r,...a}=e,s=a,o=a;return ct.jsx(t0t.Provider,{scope:e.__scopeAccordion,children:r==="multiple"?ct.jsx(sWr,{...o,ref:t}):ct.jsx(aWr,{...s,ref:t})})});eOn.displayName=gT;var[tOn,rWr]=RCe(gT),[nOn,iWr]=RCe(gT,{collapsible:!1}),aWr=Er.forwardRef((e,t)=>{const{value:r,defaultValue:a,onValueChange:s=()=>{},collapsible:o=!1,...u}=e,[h,f]=km({prop:r,defaultProp:a??"",onChange:s,caller:gT});return ct.jsx(tOn,{scope:e.__scopeAccordion,value:Er.useMemo(()=>h?[h]:[],[h]),onItemOpen:f,onItemClose:Er.useCallback(()=>o&&f(""),[o,f]),children:ct.jsx(nOn,{scope:e.__scopeAccordion,collapsible:o,children:ct.jsx(rOn,{...u,ref:t})})})}),sWr=Er.forwardRef((e,t)=>{const{value:r,defaultValue:a,onValueChange:s=()=>{},...o}=e,[u,h]=km({prop:r,defaultProp:a??[],onChange:s,caller:gT}),f=Er.useCallback(m=>h((b=[])=>[...b,m]),[h]),p=Er.useCallback(m=>h((b=[])=>b.filter(_=>_!==m)),[h]);return ct.jsx(tOn,{scope:e.__scopeAccordion,value:u,onItemOpen:f,onItemClose:p,children:ct.jsx(nOn,{scope:e.__scopeAccordion,collapsible:!0,children:ct.jsx(rOn,{...o,ref:t})})})}),[oWr,ICe]=RCe(gT),rOn=Er.forwardRef((e,t)=>{const{__scopeAccordion:r,disabled:a,dir:s,orientation:o="vertical",...u}=e,h=Er.useRef(null),f=Yo(h,t),p=tWr(r),b=S9(s)==="ltr",_=ji(e.onKeyDown,w=>{var U;if(!eWr.includes(w.key))return;const S=w.target,C=p().filter($=>{var G;return!((G=$.ref.current)!=null&&G.disabled)}),A=C.findIndex($=>$.ref.current===S),k=C.length;if(A===-1)return;w.preventDefault();let I=A;const N=0,L=k-1,P=()=>{I=A+1,I>L&&(I=N)},M=()=>{I=A-1,I{const{__scopeAccordion:r,value:a,...s}=e,o=ICe(jSe,r),u=rWr(jSe,r),h=n0t(r),f=I1(),p=a&&u.value.includes(a)||!1,m=o.disabled||e.disabled;return ct.jsx(lWr,{scope:r,open:p,disabled:m,triggerId:f,children:ct.jsx(Qjr,{"data-orientation":o.orientation,"data-state":uOn(p),...h,...s,ref:t,disabled:m,open:p,onOpenChange:b=>{b?u.onItemOpen(a):u.onItemClose(a)}})})});iOn.displayName=jSe;var aOn="AccordionHeader",sOn=Er.forwardRef((e,t)=>{const{__scopeAccordion:r,...a}=e,s=ICe(gT,r),o=r0t(aOn,r);return ct.jsx(Za.h3,{"data-orientation":s.orientation,"data-state":uOn(o.open),"data-disabled":o.disabled?"":void 0,...a,ref:t})});sOn.displayName=aOn;var jst="AccordionTrigger",oOn=Er.forwardRef((e,t)=>{const{__scopeAccordion:r,...a}=e,s=ICe(gT,r),o=r0t(jst,r),u=iWr(jst,r),h=n0t(r);return ct.jsx(t0t.ItemSlot,{scope:r,children:ct.jsx(Zjr,{"aria-disabled":o.open&&!u.collapsible||void 0,"data-orientation":s.orientation,id:o.triggerId,...h,...a,ref:t})})});oOn.displayName=jst;var lOn="AccordionContent",cOn=Er.forwardRef((e,t)=>{const{__scopeAccordion:r,...a}=e,s=ICe(gT,r),o=r0t(lOn,r),u=n0t(r);return ct.jsx(Jjr,{role:"region","aria-labelledby":o.triggerId,"data-orientation":s.orientation,...u,...a,ref:t,style:{"--radix-accordion-content-height":"var(--radix-collapsible-content-height)","--radix-accordion-content-width":"var(--radix-collapsible-content-width)",...e.style}})});cOn.displayName=lOn;function uOn(e){return e?"open":"closed"}var STa=eOn,TTa=iOn,CTa=sOn,ATa=oOn,kTa=cOn,NCe="Checkbox",[cWr]=Ng(NCe),[uWr,i0t]=cWr(NCe);function hWr(e){const{__scopeCheckbox:t,checked:r,children:a,defaultChecked:s,disabled:o,form:u,name:h,onCheckedChange:f,required:p,value:m="on",internal_do_not_use_render:b}=e,[_,w]=km({prop:r,defaultProp:s??!1,onChange:f,caller:NCe}),[S,C]=ue.useState(null),[A,k]=ue.useState(null),I=ue.useRef(!1),N=S?!!u||!!S.closest("form"):!0,L={checked:_,disabled:o,setChecked:w,control:S,setControl:C,name:h,form:u,value:m,hasConsumerStoppedPropagationRef:I,required:p,defaultChecked:xO(s)?!1:s,isFormControl:N,bubbleInput:A,setBubbleInput:k};return ct.jsx(uWr,{scope:t,...L,children:pWr(b)?b(L):a})}var hOn="CheckboxTrigger",dOn=ue.forwardRef(({__scopeCheckbox:e,onKeyDown:t,onClick:r,...a},s)=>{const{control:o,value:u,disabled:h,checked:f,required:p,setControl:m,setChecked:b,hasConsumerStoppedPropagationRef:_,isFormControl:w,bubbleInput:S}=i0t(hOn,e),C=Yo(s,m),A=ue.useRef(f);return ue.useEffect(()=>{const k=o==null?void 0:o.form;if(k){const I=()=>b(A.current);return k.addEventListener("reset",I),()=>k.removeEventListener("reset",I)}},[o,b]),ct.jsx(Za.button,{type:"button",role:"checkbox","aria-checked":xO(f)?"mixed":f,"aria-required":p,"data-state":mOn(f),"data-disabled":h?"":void 0,disabled:h,value:u,...a,ref:C,onKeyDown:ji(t,k=>{k.key==="Enter"&&k.preventDefault()}),onClick:ji(r,k=>{b(I=>xO(I)?!0:!I),S&&w&&(_.current=k.isPropagationStopped(),_.current||k.stopPropagation())})})});dOn.displayName=hOn;var dWr=ue.forwardRef((e,t)=>{const{__scopeCheckbox:r,name:a,checked:s,defaultChecked:o,required:u,disabled:h,value:f,onCheckedChange:p,form:m,...b}=e;return ct.jsx(hWr,{__scopeCheckbox:r,checked:s,defaultChecked:o,disabled:h,required:u,onCheckedChange:p,name:a,form:m,value:f,internal_do_not_use_render:({isFormControl:_})=>ct.jsxs(ct.Fragment,{children:[ct.jsx(dOn,{...b,ref:t,__scopeCheckbox:r}),_&&ct.jsx(gOn,{__scopeCheckbox:r})]})})});dWr.displayName=NCe;var fOn="CheckboxIndicator",fWr=ue.forwardRef((e,t)=>{const{__scopeCheckbox:r,forceMount:a,...s}=e,o=i0t(fOn,r);return ct.jsx(D1,{present:a||xO(o.checked)||o.checked===!0,children:ct.jsx(Za.span,{"data-state":mOn(o.checked),"data-disabled":o.disabled?"":void 0,...s,ref:t,style:{pointerEvents:"none",...e.style}})})});fWr.displayName=fOn;var pOn="CheckboxBubbleInput",gOn=ue.forwardRef(({__scopeCheckbox:e,...t},r)=>{const{control:a,hasConsumerStoppedPropagationRef:s,checked:o,defaultChecked:u,required:h,disabled:f,name:p,value:m,form:b,bubbleInput:_,setBubbleInput:w}=i0t(pOn,e),S=Yo(r,w),C=ECe(o),A=sCe(a);ue.useEffect(()=>{const I=_;if(!I)return;const N=window.HTMLInputElement.prototype,P=Object.getOwnPropertyDescriptor(N,"checked").set,M=!s.current;if(C!==o&&P){const F=new Event("click",{bubbles:M});I.indeterminate=xO(o),P.call(I,xO(o)?!1:o),I.dispatchEvent(F)}},[_,C,o,s]);const k=ue.useRef(xO(o)?!1:o);return ct.jsx(Za.input,{type:"checkbox","aria-hidden":!0,defaultChecked:u??k.current,required:h,disabled:f,name:p,value:m,form:b,...t,tabIndex:-1,ref:S,style:{...t.style,...A,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})});gOn.displayName=pOn;function pWr(e){return typeof e=="function"}function xO(e){return e==="indeterminate"}function mOn(e){return xO(e)?"indeterminate":e?"checked":"unchecked"}var gWr="Separator",a1n="horizontal",mWr=["horizontal","vertical"],bOn=ue.forwardRef((e,t)=>{const{decorative:r,orientation:a=a1n,...s}=e,o=bWr(a)?a:a1n,h=r?{role:"none"}:{"aria-orientation":o==="vertical"?o:void 0,role:"separator"};return ct.jsx(RA.div,{"data-orientation":o,...h,...s,ref:t})});bOn.displayName=gWr;function bWr(e){return mWr.includes(e)}var RTa=bOn;function yWr(e,t){return ue.useReducer((r,a)=>t[r][a]??r,e)}var a0t="ScrollArea",[yOn]=Ng(a0t),[vWr,DS]=yOn(a0t),vOn=ue.forwardRef((e,t)=>{const{__scopeScrollArea:r,type:a="hover",dir:s,scrollHideDelay:o=600,...u}=e,[h,f]=ue.useState(null),[p,m]=ue.useState(null),[b,_]=ue.useState(null),[w,S]=ue.useState(null),[C,A]=ue.useState(null),[k,I]=ue.useState(0),[N,L]=ue.useState(0),[P,M]=ue.useState(!1),[F,U]=ue.useState(!1),$=Yo(t,B=>f(B)),G=S9(s);return ct.jsx(vWr,{scope:r,type:a,dir:G,scrollHideDelay:o,scrollArea:h,viewport:p,onViewportChange:m,content:b,onContentChange:_,scrollbarX:w,onScrollbarXChange:S,scrollbarXEnabled:P,onScrollbarXEnabledChange:M,scrollbarY:C,onScrollbarYChange:A,scrollbarYEnabled:F,onScrollbarYEnabledChange:U,onCornerWidthChange:I,onCornerHeightChange:L,children:ct.jsx(Za.div,{dir:G,...u,ref:$,style:{position:"relative","--radix-scroll-area-corner-width":k+"px","--radix-scroll-area-corner-height":N+"px",...e.style}})})});vOn.displayName=a0t;var _On="ScrollAreaViewport",wOn=ue.forwardRef((e,t)=>{const{__scopeScrollArea:r,children:a,nonce:s,...o}=e,u=DS(_On,r),h=ue.useRef(null),f=Yo(t,h,u.onViewportChange);return ct.jsxs(ct.Fragment,{children:[ct.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-scroll-area-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-scroll-area-viewport]::-webkit-scrollbar{display:none}"},nonce:s}),ct.jsx(Za.div,{"data-radix-scroll-area-viewport":"",...o,ref:f,style:{overflowX:u.scrollbarXEnabled?"scroll":"hidden",overflowY:u.scrollbarYEnabled?"scroll":"hidden",...e.style},children:ct.jsx("div",{ref:u.onContentChange,style:{minWidth:"100%",display:"table"},children:a})})]})});wOn.displayName=_On;var IA="ScrollAreaScrollbar",_Wr=ue.forwardRef((e,t)=>{const{forceMount:r,...a}=e,s=DS(IA,e.__scopeScrollArea),{onScrollbarXEnabledChange:o,onScrollbarYEnabledChange:u}=s,h=e.orientation==="horizontal";return ue.useEffect(()=>(h?o(!0):u(!0),()=>{h?o(!1):u(!1)}),[h,o,u]),s.type==="hover"?ct.jsx(wWr,{...a,ref:t,forceMount:r}):s.type==="scroll"?ct.jsx(EWr,{...a,ref:t,forceMount:r}):s.type==="auto"?ct.jsx(EOn,{...a,ref:t,forceMount:r}):s.type==="always"?ct.jsx(s0t,{...a,ref:t}):null});_Wr.displayName=IA;var wWr=ue.forwardRef((e,t)=>{const{forceMount:r,...a}=e,s=DS(IA,e.__scopeScrollArea),[o,u]=ue.useState(!1);return ue.useEffect(()=>{const h=s.scrollArea;let f=0;if(h){const p=()=>{window.clearTimeout(f),u(!0)},m=()=>{f=window.setTimeout(()=>u(!1),s.scrollHideDelay)};return h.addEventListener("pointerenter",p),h.addEventListener("pointerleave",m),()=>{window.clearTimeout(f),h.removeEventListener("pointerenter",p),h.removeEventListener("pointerleave",m)}}},[s.scrollArea,s.scrollHideDelay]),ct.jsx(D1,{present:r||o,children:ct.jsx(EOn,{"data-state":o?"visible":"hidden",...a,ref:t})})}),EWr=ue.forwardRef((e,t)=>{const{forceMount:r,...a}=e,s=DS(IA,e.__scopeScrollArea),o=e.orientation==="horizontal",u=LCe(()=>f("SCROLL_END"),100),[h,f]=yWr("hidden",{hidden:{SCROLL:"scrolling"},scrolling:{SCROLL_END:"idle",POINTER_ENTER:"interacting"},interacting:{SCROLL:"interacting",POINTER_LEAVE:"idle"},idle:{HIDE:"hidden",SCROLL:"scrolling",POINTER_ENTER:"interacting"}});return ue.useEffect(()=>{if(h==="idle"){const p=window.setTimeout(()=>f("HIDE"),s.scrollHideDelay);return()=>window.clearTimeout(p)}},[h,s.scrollHideDelay,f]),ue.useEffect(()=>{const p=s.viewport,m=o?"scrollLeft":"scrollTop";if(p){let b=p[m];const _=()=>{const w=p[m];b!==w&&(f("SCROLL"),u()),b=w};return p.addEventListener("scroll",_),()=>p.removeEventListener("scroll",_)}},[s.viewport,o,f,u]),ct.jsx(D1,{present:r||h!=="hidden",children:ct.jsx(s0t,{"data-state":h==="hidden"?"hidden":"visible",...a,ref:t,onPointerEnter:ji(e.onPointerEnter,()=>f("POINTER_ENTER")),onPointerLeave:ji(e.onPointerLeave,()=>f("POINTER_LEAVE"))})})}),EOn=ue.forwardRef((e,t)=>{const r=DS(IA,e.__scopeScrollArea),{forceMount:a,...s}=e,[o,u]=ue.useState(!1),h=e.orientation==="horizontal",f=LCe(()=>{if(r.viewport){const p=r.viewport.offsetWidth{const{orientation:r="vertical",...a}=e,s=DS(IA,e.__scopeScrollArea),o=ue.useRef(null),u=ue.useRef(0),[h,f]=ue.useState({content:0,viewport:0,scrollbar:{size:0,paddingStart:0,paddingEnd:0}}),p=COn(h.viewport,h.content),m={...a,sizes:h,onSizesChange:f,hasThumb:p>0&&p<1,onThumbChange:_=>o.current=_,onThumbPointerUp:()=>u.current=0,onThumbPointerDown:_=>u.current=_};function b(_,w){return RWr(_,u.current,h,w)}return r==="horizontal"?ct.jsx(xWr,{...m,ref:t,onThumbPositionChange:()=>{if(s.viewport&&o.current){const _=s.viewport.scrollLeft,w=s1n(_,h,s.dir);o.current.style.transform=`translate3d(${w}px, 0, 0)`}},onWheelScroll:_=>{s.viewport&&(s.viewport.scrollLeft=_)},onDragScroll:_=>{s.viewport&&(s.viewport.scrollLeft=b(_,s.dir))}}):r==="vertical"?ct.jsx(SWr,{...m,ref:t,onThumbPositionChange:()=>{if(s.viewport&&o.current){const _=s.viewport.scrollTop,w=s1n(_,h);o.current.style.transform=`translate3d(0, ${w}px, 0)`}},onWheelScroll:_=>{s.viewport&&(s.viewport.scrollTop=_)},onDragScroll:_=>{s.viewport&&(s.viewport.scrollTop=b(_))}}):null}),xWr=ue.forwardRef((e,t)=>{const{sizes:r,onSizesChange:a,...s}=e,o=DS(IA,e.__scopeScrollArea),[u,h]=ue.useState(),f=ue.useRef(null),p=Yo(t,f,o.onScrollbarXChange);return ue.useEffect(()=>{f.current&&h(getComputedStyle(f.current))},[f]),ct.jsx(SOn,{"data-orientation":"horizontal",...s,ref:p,sizes:r,style:{bottom:0,left:o.dir==="rtl"?"var(--radix-scroll-area-corner-width)":0,right:o.dir==="ltr"?"var(--radix-scroll-area-corner-width)":0,"--radix-scroll-area-thumb-width":OCe(r)+"px",...e.style},onThumbPointerDown:m=>e.onThumbPointerDown(m.x),onDragScroll:m=>e.onDragScroll(m.x),onWheelScroll:(m,b)=>{if(o.viewport){const _=o.viewport.scrollLeft+m.deltaX;e.onWheelScroll(_),kOn(_,b)&&m.preventDefault()}},onResize:()=>{f.current&&o.viewport&&u&&a({content:o.viewport.scrollWidth,viewport:o.viewport.offsetWidth,scrollbar:{size:f.current.clientWidth,paddingStart:KSe(u.paddingLeft),paddingEnd:KSe(u.paddingRight)}})}})}),SWr=ue.forwardRef((e,t)=>{const{sizes:r,onSizesChange:a,...s}=e,o=DS(IA,e.__scopeScrollArea),[u,h]=ue.useState(),f=ue.useRef(null),p=Yo(t,f,o.onScrollbarYChange);return ue.useEffect(()=>{f.current&&h(getComputedStyle(f.current))},[f]),ct.jsx(SOn,{"data-orientation":"vertical",...s,ref:p,sizes:r,style:{top:0,right:o.dir==="ltr"?0:void 0,left:o.dir==="rtl"?0:void 0,bottom:"var(--radix-scroll-area-corner-height)","--radix-scroll-area-thumb-height":OCe(r)+"px",...e.style},onThumbPointerDown:m=>e.onThumbPointerDown(m.y),onDragScroll:m=>e.onDragScroll(m.y),onWheelScroll:(m,b)=>{if(o.viewport){const _=o.viewport.scrollTop+m.deltaY;e.onWheelScroll(_),kOn(_,b)&&m.preventDefault()}},onResize:()=>{f.current&&o.viewport&&u&&a({content:o.viewport.scrollHeight,viewport:o.viewport.offsetHeight,scrollbar:{size:f.current.clientHeight,paddingStart:KSe(u.paddingTop),paddingEnd:KSe(u.paddingBottom)}})}})}),[TWr,xOn]=yOn(IA),SOn=ue.forwardRef((e,t)=>{const{__scopeScrollArea:r,sizes:a,hasThumb:s,onThumbChange:o,onThumbPointerUp:u,onThumbPointerDown:h,onThumbPositionChange:f,onDragScroll:p,onWheelScroll:m,onResize:b,..._}=e,w=DS(IA,r),[S,C]=ue.useState(null),A=Yo(t,$=>C($)),k=ue.useRef(null),I=ue.useRef(""),N=w.viewport,L=a.content-a.viewport,P=_m(m),M=_m(f),F=LCe(b,10);function U($){if(k.current){const G=$.clientX-k.current.left,B=$.clientY-k.current.top;p({x:G,y:B})}}return ue.useEffect(()=>{const $=G=>{const B=G.target;(S==null?void 0:S.contains(B))&&P(G,L)};return document.addEventListener("wheel",$,{passive:!1}),()=>document.removeEventListener("wheel",$,{passive:!1})},[N,S,L,P]),ue.useEffect(M,[a,M]),wj(S,F),wj(w.content,F),ct.jsx(TWr,{scope:r,scrollbar:S,hasThumb:s,onThumbChange:_m(o),onThumbPointerUp:_m(u),onThumbPositionChange:M,onThumbPointerDown:_m(h),children:ct.jsx(Za.div,{..._,ref:A,style:{position:"absolute",..._.style},onPointerDown:ji(e.onPointerDown,$=>{$.button===0&&($.target.setPointerCapture($.pointerId),k.current=S.getBoundingClientRect(),I.current=document.body.style.webkitUserSelect,document.body.style.webkitUserSelect="none",w.viewport&&(w.viewport.style.scrollBehavior="auto"),U($))}),onPointerMove:ji(e.onPointerMove,U),onPointerUp:ji(e.onPointerUp,$=>{const G=$.target;G.hasPointerCapture($.pointerId)&&G.releasePointerCapture($.pointerId),document.body.style.webkitUserSelect=I.current,w.viewport&&(w.viewport.style.scrollBehavior=""),k.current=null})})})}),WSe="ScrollAreaThumb",CWr=ue.forwardRef((e,t)=>{const{forceMount:r,...a}=e,s=xOn(WSe,e.__scopeScrollArea);return ct.jsx(D1,{present:r||s.hasThumb,children:ct.jsx(AWr,{ref:t,...a})})}),AWr=ue.forwardRef((e,t)=>{const{__scopeScrollArea:r,style:a,...s}=e,o=DS(WSe,r),u=xOn(WSe,r),{onThumbPositionChange:h}=u,f=Yo(t,b=>u.onThumbChange(b)),p=ue.useRef(void 0),m=LCe(()=>{p.current&&(p.current(),p.current=void 0)},100);return ue.useEffect(()=>{const b=o.viewport;if(b){const _=()=>{if(m(),!p.current){const w=IWr(b,h);p.current=w,h()}};return h(),b.addEventListener("scroll",_),()=>b.removeEventListener("scroll",_)}},[o.viewport,m,h]),ct.jsx(Za.div,{"data-state":u.hasThumb?"visible":"hidden",...s,ref:f,style:{width:"var(--radix-scroll-area-thumb-width)",height:"var(--radix-scroll-area-thumb-height)",...a},onPointerDownCapture:ji(e.onPointerDownCapture,b=>{const w=b.target.getBoundingClientRect(),S=b.clientX-w.left,C=b.clientY-w.top;u.onThumbPointerDown({x:S,y:C})}),onPointerUp:ji(e.onPointerUp,u.onThumbPointerUp)})});CWr.displayName=WSe;var o0t="ScrollAreaCorner",TOn=ue.forwardRef((e,t)=>{const r=DS(o0t,e.__scopeScrollArea),a=!!(r.scrollbarX&&r.scrollbarY);return r.type!=="scroll"&&a?ct.jsx(kWr,{...e,ref:t}):null});TOn.displayName=o0t;var kWr=ue.forwardRef((e,t)=>{const{__scopeScrollArea:r,...a}=e,s=DS(o0t,r),[o,u]=ue.useState(0),[h,f]=ue.useState(0),p=!!(o&&h);return wj(s.scrollbarX,()=>{var b;const m=((b=s.scrollbarX)==null?void 0:b.offsetHeight)||0;s.onCornerHeightChange(m),f(m)}),wj(s.scrollbarY,()=>{var b;const m=((b=s.scrollbarY)==null?void 0:b.offsetWidth)||0;s.onCornerWidthChange(m),u(m)}),p?ct.jsx(Za.div,{...a,ref:t,style:{width:o,height:h,position:"absolute",right:s.dir==="ltr"?0:void 0,left:s.dir==="rtl"?0:void 0,bottom:0,...e.style}}):null});function KSe(e){return e?parseInt(e,10):0}function COn(e,t){const r=e/t;return isNaN(r)?0:r}function OCe(e){const t=COn(e.viewport,e.content),r=e.scrollbar.paddingStart+e.scrollbar.paddingEnd,a=(e.scrollbar.size-r)*t;return Math.max(a,18)}function RWr(e,t,r,a="ltr"){const s=OCe(r),o=s/2,u=t||o,h=s-u,f=r.scrollbar.paddingStart+u,p=r.scrollbar.size-r.scrollbar.paddingEnd-h,m=r.content-r.viewport,b=a==="ltr"?[0,m]:[m*-1,0];return AOn([f,p],b)(e)}function s1n(e,t,r="ltr"){const a=OCe(t),s=t.scrollbar.paddingStart+t.scrollbar.paddingEnd,o=t.scrollbar.size-s,u=t.content-t.viewport,h=o-a,f=r==="ltr"?[0,u]:[u*-1,0],p=zst(e,f);return AOn([0,u],[0,h])(p)}function AOn(e,t){return r=>{if(e[0]===e[1]||t[0]===t[1])return t[0];const a=(t[1]-t[0])/(e[1]-e[0]);return t[0]+a*(r-e[0])}}function kOn(e,t){return e>0&&e{})=>{let r={left:e.scrollLeft,top:e.scrollTop},a=0;return function s(){const o={left:e.scrollLeft,top:e.scrollTop},u=r.left!==o.left,h=r.top!==o.top;(u||h)&&t(),r=o,a=window.requestAnimationFrame(s)}(),()=>window.cancelAnimationFrame(a)};function LCe(e,t){const r=_m(e),a=ue.useRef(0);return ue.useEffect(()=>()=>window.clearTimeout(a.current),[]),ue.useCallback(()=>{window.clearTimeout(a.current),a.current=window.setTimeout(r,t)},[r,t])}function wj(e,t){const r=_m(t);Ig(()=>{let a=0;if(e){const s=new ResizeObserver(()=>{cancelAnimationFrame(a),a=window.requestAnimationFrame(r)});return s.observe(e),()=>{window.cancelAnimationFrame(a),s.unobserve(e)}}},[e,r])}var ITa=vOn,NTa=wOn,OTa=TOn,Wst=new Int32Array(1),o1n=new Float32Array(Wst.buffer),NWr=class{constructor(e){if(e&&!(e instanceof Uint8Array))throw new Error("Must initialize a ByteBuffer with a Uint8Array");this._data=e||new Uint8Array(256),this._index=0,this.length=e?e.length:0}toUint8Array(){return this._data.subarray(0,this.length)}readByte(){if(this._index+1>this._data.length)throw new Error("Index out of bounds");return this._data[this._index++]}readByteArray(){let e=this.readVarUint(),t=this._index,r=t+e;if(r>this._data.length)throw new Error("Read array out of bounds");this._index=r;let a=new Uint8Array(e);return a.set(this._data.subarray(t,r)),a}readVarFloat(){let e=this._index,t=this._data,r=t.length;if(e+1>r)throw new Error("Index out of bounds");let a=t[e];if(a===0)return this._index=e+1,0;if(e+4>r)throw new Error("Index out of bounds");let s=a|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;return this._index=e+4,s=s<<23|s>>>9,Wst[0]=s,o1n[0]}readVarUint(){let e=0,t=0;do{var r=this.readByte();e|=(r&127)<>>0}readVarInt(){let e=this.readVarUint()|0;return e&1?~(e>>>1):e>>>1}readVarUint64(){let e=BigInt(0),t=BigInt(0),r=BigInt(7),a;for(;(a=this.readByte())&128&&t<56;)e|=BigInt(a&127)<>=t,r?~e:e}readString(){let e="";for(;;){let t,r=this.readByte();if(r<192)t=r;else{let a=this.readByte();if(r<224)t=(r&31)<<6|a&63;else{let s=this.readByte();if(r<240)t=(r&15)<<12|(a&63)<<6|s&63;else{let o=this.readByte();t=(r&7)<<18|(a&63)<<12|(s&63)<<6|o&63}}}if(t===0)break;t<65536?e+=String.fromCharCode(t):(t-=65536,e+=String.fromCharCode((t>>10)+55296,(t&1023)+56320))}return e}_growBy(e){if(this.length+e>this._data.length){let t=new Uint8Array(this.length+e<<1);t.set(this._data),this._data=t}this.length+=e}writeByte(e){let t=this.length;this._growBy(1),this._data[t]=e}writeByteArray(e){this.writeVarUint(e.length);let t=this.length;this._growBy(e.length),this._data.set(e,t)}writeVarFloat(e){let t=this.length;o1n[0]=e;let r=Wst[0];if(r=r>>>23|r<<9,!(r&255)){this.writeByte(0);return}this._growBy(4);let a=this._data;a[t]=r,a[t+1]=r>>8,a[t+2]=r>>16,a[t+3]=r>>24}writeVarUint(e){if(e<0||e>4294967295)throw new Error("Outside uint range: "+e);do{let t=e&127;e>>>=7,this.writeByte(e?t|128:t)}while(e)}writeVarInt(e){if(e<-2147483648||e>2147483647)throw new Error("Outside int range: "+e);this.writeVarUint((e<<1^e>>31)>>>0)}writeVarUint64(e){if(typeof e=="string")e=BigInt(e);else if(typeof e!="bigint")throw new Error("Expected bigint but got "+typeof e+": "+e);if(e<0||e>BigInt("0xFFFFFFFFFFFFFFFF"))throw new Error("Outside uint64 range: "+e);let t=BigInt(127),r=BigInt(7);for(let a=0;e>t&&a<8;a++)this.writeByte(Number(e&t)|128),e>>=r;this.writeByte(Number(e))}writeVarInt64(e){if(typeof e=="string")e=BigInt(e);else if(typeof e!="bigint")throw new Error("Expected bigint but got "+typeof e+": "+e);if(e<-BigInt("0x8000000000000000")||e>BigInt("0x7FFFFFFFFFFFFFFF"))throw new Error("Outside int64 range: "+e);let t=BigInt(1);this.writeVarUint64(e<0?~(e<=56320)t=a;else{let s=e.charCodeAt(++r);t=(a<<10)+s+-56613888}if(t===0)throw new Error("Cannot encode a string containing the null character");t<128?this.writeByte(t):(t<2048?this.writeByte(t>>6&31|192):(t<65536?this.writeByte(t>>12&15|224):(this.writeByte(t>>18&7|240),this.writeByte(t>>12&63|128)),this.writeByte(t>>6&63|128)),this.writeByte(t&63|128))}this.writeByte(0)}},OWr=["bool","byte","int","uint","float","string","int64","uint64"],LWr=["ENUM","STRUCT","MESSAGE"];function LTa(e){let t=new NWr,r=e.definitions,a={};t.writeVarUint(r.length);for(let s=0;s=0;)e[t]=0}const PWr=0,ROn=1,BWr=2,FWr=3,$Wr=258,l0t=29,Qle=256,toe=Qle+1+l0t,VV=30,c0t=19,IOn=2*toe+1,WB=15,lQe=16,UWr=7,u0t=256,NOn=16,OOn=17,LOn=18,Kst=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),YEe=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),zWr=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),DOn=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),GWr=512,u7=new Array((toe+2)*2);IW(u7);const Jae=new Array(VV*2);IW(Jae);const noe=new Array(GWr);IW(noe);const roe=new Array($Wr-FWr+1);IW(roe);const h0t=new Array(l0t);IW(h0t);const XSe=new Array(VV);IW(XSe);function cQe(e,t,r,a,s){this.static_tree=e,this.extra_bits=t,this.extra_base=r,this.elems=a,this.max_length=s,this.has_stree=e&&e.length}let MOn,POn,BOn;function uQe(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}const FOn=e=>e<256?noe[e]:noe[256+(e>>>7)],ioe=(e,t)=>{e.pending_buf[e.pending++]=t&255,e.pending_buf[e.pending++]=t>>>8&255},Y2=(e,t,r)=>{e.bi_valid>lQe-r?(e.bi_buf|=t<>lQe-e.bi_valid,e.bi_valid+=r-lQe):(e.bi_buf|=t<{Y2(e,r[t*2],r[t*2+1])},$On=(e,t)=>{let r=0;do r|=e&1,e>>>=1,r<<=1;while(--t>0);return r>>>1},qWr=e=>{e.bi_valid===16?(ioe(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):e.bi_valid>=8&&(e.pending_buf[e.pending++]=e.bi_buf&255,e.bi_buf>>=8,e.bi_valid-=8)},HWr=(e,t)=>{const r=t.dyn_tree,a=t.max_code,s=t.stat_desc.static_tree,o=t.stat_desc.has_stree,u=t.stat_desc.extra_bits,h=t.stat_desc.extra_base,f=t.stat_desc.max_length;let p,m,b,_,w,S,C=0;for(_=0;_<=WB;_++)e.bl_count[_]=0;for(r[e.heap[e.heap_max]*2+1]=0,p=e.heap_max+1;pf&&(_=f,C++),r[m*2+1]=_,!(m>a)&&(e.bl_count[_]++,w=0,m>=h&&(w=u[m-h]),S=r[m*2],e.opt_len+=S*(_+w),o&&(e.static_len+=S*(s[m*2+1]+w)));if(C!==0){do{for(_=f-1;e.bl_count[_]===0;)_--;e.bl_count[_]--,e.bl_count[_+1]+=2,e.bl_count[f]--,C-=2}while(C>0);for(_=f;_!==0;_--)for(m=e.bl_count[_];m!==0;)b=e.heap[--p],!(b>a)&&(r[b*2+1]!==_&&(e.opt_len+=(_-r[b*2+1])*r[b*2],r[b*2+1]=_),m--)}},UOn=(e,t,r)=>{const a=new Array(WB+1);let s=0,o,u;for(o=1;o<=WB;o++)s=s+r[o-1]<<1,a[o]=s;for(u=0;u<=t;u++){let h=e[u*2+1];h!==0&&(e[u*2]=$On(a[h]++,h))}},VWr=()=>{let e,t,r,a,s;const o=new Array(WB+1);for(r=0,a=0;a>=7;a{let t;for(t=0;t{e.bi_valid>8?ioe(e,e.bi_buf):e.bi_valid>0&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0},u1n=(e,t,r,a)=>{const s=t*2,o=r*2;return e[s]{const a=e.heap[r];let s=r<<1;for(;s<=e.heap_len&&(s{let a,s,o=0,u,h;if(e.sym_next!==0)do a=e.pending_buf[e.sym_buf+o++]&255,a+=(e.pending_buf[e.sym_buf+o++]&255)<<8,s=e.pending_buf[e.sym_buf+o++],a===0?FC(e,s,t):(u=roe[s],FC(e,u+Qle+1,t),h=Kst[u],h!==0&&(s-=h0t[u],Y2(e,s,h)),a--,u=FOn(a),FC(e,u,r),h=YEe[u],h!==0&&(a-=XSe[u],Y2(e,a,h)));while(o{const r=t.dyn_tree,a=t.stat_desc.static_tree,s=t.stat_desc.has_stree,o=t.stat_desc.elems;let u,h,f=-1,p;for(e.heap_len=0,e.heap_max=IOn,u=0;u>1;u>=1;u--)hQe(e,r,u);p=o;do u=e.heap[1],e.heap[1]=e.heap[e.heap_len--],hQe(e,r,1),h=e.heap[1],e.heap[--e.heap_max]=u,e.heap[--e.heap_max]=h,r[p*2]=r[u*2]+r[h*2],e.depth[p]=(e.depth[u]>=e.depth[h]?e.depth[u]:e.depth[h])+1,r[u*2+1]=r[h*2+1]=p,e.heap[1]=p++,hQe(e,r,1);while(e.heap_len>=2);e.heap[--e.heap_max]=e.heap[1],HWr(e,t),UOn(r,f,e.bl_count)},d1n=(e,t,r)=>{let a,s=-1,o,u=t[0*2+1],h=0,f=7,p=4;for(u===0&&(f=138,p=3),t[(r+1)*2+1]=65535,a=0;a<=r;a++)o=u,u=t[(a+1)*2+1],!(++h{let a,s=-1,o,u=t[0*2+1],h=0,f=7,p=4;for(u===0&&(f=138,p=3),a=0;a<=r;a++)if(o=u,u=t[(a+1)*2+1],!(++h{let t;for(d1n(e,e.dyn_ltree,e.l_desc.max_code),d1n(e,e.dyn_dtree,e.d_desc.max_code),Xst(e,e.bl_desc),t=c0t-1;t>=3&&e.bl_tree[DOn[t]*2+1]===0;t--);return e.opt_len+=3*(t+1)+5+5+4,t},jWr=(e,t,r,a)=>{let s;for(Y2(e,t-257,5),Y2(e,r-1,5),Y2(e,a-4,4),s=0;s{let t=4093624447,r;for(r=0;r<=31;r++,t>>>=1)if(t&1&&e.dyn_ltree[r*2]!==0)return l1n;if(e.dyn_ltree[9*2]!==0||e.dyn_ltree[10*2]!==0||e.dyn_ltree[13*2]!==0)return c1n;for(r=32;r{p1n||(VWr(),p1n=!0),e.l_desc=new uQe(e.dyn_ltree,MOn),e.d_desc=new uQe(e.dyn_dtree,POn),e.bl_desc=new uQe(e.bl_tree,BOn),e.bi_buf=0,e.bi_valid=0,zOn(e)},qOn=(e,t,r,a)=>{Y2(e,(PWr<<1)+(a?1:0),3),GOn(e),ioe(e,r),ioe(e,~r),r&&e.pending_buf.set(e.window.subarray(t,t+r),e.pending),e.pending+=r},XWr=e=>{Y2(e,ROn<<1,3),FC(e,u0t,u7),qWr(e)},QWr=(e,t,r,a)=>{let s,o,u=0;e.level>0?(e.strm.data_type===MWr&&(e.strm.data_type=WWr(e)),Xst(e,e.l_desc),Xst(e,e.d_desc),u=YWr(e),s=e.opt_len+3+7>>>3,o=e.static_len+3+7>>>3,o<=s&&(s=o)):s=o=r+5,r+4<=s&&t!==-1?qOn(e,t,r,a):e.strategy===DWr||o===s?(Y2(e,(ROn<<1)+(a?1:0),3),h1n(e,u7,Jae)):(Y2(e,(BWr<<1)+(a?1:0),3),jWr(e,e.l_desc.max_code+1,e.d_desc.max_code+1,u+1),h1n(e,e.dyn_ltree,e.dyn_dtree)),zOn(e),a&&GOn(e)},ZWr=(e,t,r)=>(e.pending_buf[e.sym_buf+e.sym_next++]=t,e.pending_buf[e.sym_buf+e.sym_next++]=t>>8,e.pending_buf[e.sym_buf+e.sym_next++]=r,t===0?e.dyn_ltree[r*2]++:(e.matches++,t--,e.dyn_ltree[(roe[r]+Qle+1)*2]++,e.dyn_dtree[FOn(t)*2]++),e.sym_next===e.sym_end);var JWr=KWr,eKr=qOn,tKr=QWr,nKr=ZWr,rKr=XWr,iKr={_tr_init:JWr,_tr_stored_block:eKr,_tr_flush_block:tKr,_tr_tally:nKr,_tr_align:rKr};const aKr=(e,t,r,a)=>{let s=e&65535|0,o=e>>>16&65535|0,u=0;for(;r!==0;){u=r>2e3?2e3:r,r-=u;do s=s+t[a++]|0,o=o+s|0;while(--u);s%=65521,o%=65521}return s|o<<16|0};var aoe=aKr;const sKr=()=>{let e,t=[];for(var r=0;r<256;r++){e=r;for(var a=0;a<8;a++)e=e&1?3988292384^e>>>1:e>>>1;t[r]=e}return t},oKr=new Uint32Array(sKr()),lKr=(e,t,r,a)=>{const s=oKr,o=a+r;e^=-1;for(let u=a;u>>8^s[(e^t[u])&255];return e^-1};var wg=lKr,CF={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},DCe={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:cKr,_tr_stored_block:Qst,_tr_flush_block:uKr,_tr_tally:SO,_tr_align:hKr}=iKr,{Z_NO_FLUSH:TO,Z_PARTIAL_FLUSH:dKr,Z_FULL_FLUSH:fKr,Z_FINISH:tS,Z_BLOCK:g1n,Z_OK:pm,Z_STREAM_END:m1n,Z_STREAM_ERROR:aA,Z_DATA_ERROR:pKr,Z_BUF_ERROR:dQe,Z_DEFAULT_COMPRESSION:gKr,Z_FILTERED:mKr,Z_HUFFMAN_ONLY:O_e,Z_RLE:bKr,Z_FIXED:yKr,Z_DEFAULT_STRATEGY:vKr,Z_UNKNOWN:_Kr,Z_DEFLATED:MCe}=DCe,wKr=9,EKr=15,xKr=8,SKr=29,TKr=256,Zst=TKr+1+SKr,CKr=30,AKr=19,kKr=2*Zst+1,RKr=15,Ac=3,uO=258,sA=uO+Ac+1,IKr=32,Ej=42,d0t=57,Jst=69,eot=73,tot=91,not=103,KB=113,kie=666,Ky=1,NW=2,AF=3,OW=4,NKr=3,XB=(e,t)=>(e.msg=CF[t],t),b1n=e=>e*2-(e>4?9:0),JN=e=>{let t=e.length;for(;--t>=0;)e[t]=0},OKr=e=>{let t,r,a,s=e.w_size;t=e.hash_size,a=t;do r=e.head[--a],e.head[a]=r>=s?r-s:0;while(--t);t=s,a=t;do r=e.prev[--a],e.prev[a]=r>=s?r-s:0;while(--t)};let LKr=(e,t,r)=>(t<{const t=e.state;let r=t.pending;r>e.avail_out&&(r=e.avail_out),r!==0&&(e.output.set(t.pending_buf.subarray(t.pending_out,t.pending_out+r),e.next_out),e.next_out+=r,t.pending_out+=r,e.total_out+=r,e.avail_out-=r,t.pending-=r,t.pending===0&&(t.pending_out=0))},Lw=(e,t)=>{uKr(e,e.block_start>=0?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,Tw(e.strm)},wu=(e,t)=>{e.pending_buf[e.pending++]=t},Tre=(e,t)=>{e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=t&255},rot=(e,t,r,a)=>{let s=e.avail_in;return s>a&&(s=a),s===0?0:(e.avail_in-=s,t.set(e.input.subarray(e.next_in,e.next_in+s),r),e.state.wrap===1?e.adler=aoe(e.adler,t,s,r):e.state.wrap===2&&(e.adler=wg(e.adler,t,s,r)),e.next_in+=s,e.total_in+=s,s)},HOn=(e,t)=>{let r=e.max_chain_length,a=e.strstart,s,o,u=e.prev_length,h=e.nice_match;const f=e.strstart>e.w_size-sA?e.strstart-(e.w_size-sA):0,p=e.window,m=e.w_mask,b=e.prev,_=e.strstart+uO;let w=p[a+u-1],S=p[a+u];e.prev_length>=e.good_match&&(r>>=2),h>e.lookahead&&(h=e.lookahead);do if(s=t,!(p[s+u]!==S||p[s+u-1]!==w||p[s]!==p[a]||p[++s]!==p[a+1])){a+=2,s++;do;while(p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&a<_);if(o=uO-(_-a),a=_-uO,o>u){if(e.match_start=t,u=o,o>=h)break;w=p[a+u-1],S=p[a+u]}}while((t=b[t&m])>f&&--r!==0);return u<=e.lookahead?u:e.lookahead},xj=e=>{const t=e.w_size;let r,a,s;do{if(a=e.window_size-e.lookahead-e.strstart,e.strstart>=t+(t-sA)&&(e.window.set(e.window.subarray(t,t+t-a),0),e.match_start-=t,e.strstart-=t,e.block_start-=t,e.insert>e.strstart&&(e.insert=e.strstart),OKr(e),a+=t),e.strm.avail_in===0)break;if(r=rot(e.strm,e.window,e.strstart+e.lookahead,a),e.lookahead+=r,e.lookahead+e.insert>=Ac)for(s=e.strstart-e.insert,e.ins_h=e.window[s],e.ins_h=CO(e,e.ins_h,e.window[s+1]);e.insert&&(e.ins_h=CO(e,e.ins_h,e.window[s+Ac-1]),e.prev[s&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=s,s++,e.insert--,!(e.lookahead+e.insert{let r=e.pending_buf_size-5>e.w_size?e.w_size:e.pending_buf_size-5,a,s,o,u=0,h=e.strm.avail_in;do{if(a=65535,o=e.bi_valid+42>>3,e.strm.avail_outs+e.strm.avail_in&&(a=s+e.strm.avail_in),a>o&&(a=o),a>8,e.pending_buf[e.pending-2]=~a,e.pending_buf[e.pending-1]=~a>>8,Tw(e.strm),s&&(s>a&&(s=a),e.strm.output.set(e.window.subarray(e.block_start,e.block_start+s),e.strm.next_out),e.strm.next_out+=s,e.strm.avail_out-=s,e.strm.total_out+=s,e.block_start+=s,a-=s),a&&(rot(e.strm,e.strm.output,e.strm.next_out,a),e.strm.next_out+=a,e.strm.avail_out-=a,e.strm.total_out+=a)}while(u===0);return h-=e.strm.avail_in,h&&(h>=e.w_size?(e.matches=2,e.window.set(e.strm.input.subarray(e.strm.next_in-e.w_size,e.strm.next_in),0),e.strstart=e.w_size,e.insert=e.strstart):(e.window_size-e.strstart<=h&&(e.strstart-=e.w_size,e.window.set(e.window.subarray(e.w_size,e.w_size+e.strstart),0),e.matches<2&&e.matches++,e.insert>e.strstart&&(e.insert=e.strstart)),e.window.set(e.strm.input.subarray(e.strm.next_in-h,e.strm.next_in),e.strstart),e.strstart+=h,e.insert+=h>e.w_size-e.insert?e.w_size-e.insert:h),e.block_start=e.strstart),e.high_watero&&e.block_start>=e.w_size&&(e.block_start-=e.w_size,e.strstart-=e.w_size,e.window.set(e.window.subarray(e.w_size,e.w_size+e.strstart),0),e.matches<2&&e.matches++,o+=e.w_size,e.insert>e.strstart&&(e.insert=e.strstart)),o>e.strm.avail_in&&(o=e.strm.avail_in),o&&(rot(e.strm,e.window,e.strstart,o),e.strstart+=o,e.insert+=o>e.w_size-e.insert?e.w_size-e.insert:o),e.high_water>3,o=e.pending_buf_size-o>65535?65535:e.pending_buf_size-o,r=o>e.w_size?e.w_size:o,s=e.strstart-e.block_start,(s>=r||(s||t===tS)&&t!==TO&&e.strm.avail_in===0&&s<=o)&&(a=s>o?o:s,u=t===tS&&e.strm.avail_in===0&&a===s?1:0,Qst(e,e.block_start,a,u),e.block_start+=a,Tw(e.strm)),u?AF:Ky)},fQe=(e,t)=>{let r,a;for(;;){if(e.lookahead=Ac&&(e.ins_h=CO(e,e.ins_h,e.window[e.strstart+Ac-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),r!==0&&e.strstart-r<=e.w_size-sA&&(e.match_length=HOn(e,r)),e.match_length>=Ac)if(a=SO(e,e.strstart-e.match_start,e.match_length-Ac),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=Ac){e.match_length--;do e.strstart++,e.ins_h=CO(e,e.ins_h,e.window[e.strstart+Ac-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart;while(--e.match_length!==0);e.strstart++}else e.strstart+=e.match_length,e.match_length=0,e.ins_h=e.window[e.strstart],e.ins_h=CO(e,e.ins_h,e.window[e.strstart+1]);else a=SO(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++;if(a&&(Lw(e,!1),e.strm.avail_out===0))return Ky}return e.insert=e.strstart{let r,a,s;for(;;){if(e.lookahead=Ac&&(e.ins_h=CO(e,e.ins_h,e.window[e.strstart+Ac-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),e.prev_length=e.match_length,e.prev_match=e.match_start,e.match_length=Ac-1,r!==0&&e.prev_length4096)&&(e.match_length=Ac-1)),e.prev_length>=Ac&&e.match_length<=e.prev_length){s=e.strstart+e.lookahead-Ac,a=SO(e,e.strstart-1-e.prev_match,e.prev_length-Ac),e.lookahead-=e.prev_length-1,e.prev_length-=2;do++e.strstart<=s&&(e.ins_h=CO(e,e.ins_h,e.window[e.strstart+Ac-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart);while(--e.prev_length!==0);if(e.match_available=0,e.match_length=Ac-1,e.strstart++,a&&(Lw(e,!1),e.strm.avail_out===0))return Ky}else if(e.match_available){if(a=SO(e,0,e.window[e.strstart-1]),a&&Lw(e,!1),e.strstart++,e.lookahead--,e.strm.avail_out===0)return Ky}else e.match_available=1,e.strstart++,e.lookahead--}return e.match_available&&(a=SO(e,0,e.window[e.strstart-1]),e.match_available=0),e.insert=e.strstart{let r,a,s,o;const u=e.window;for(;;){if(e.lookahead<=uO){if(xj(e),e.lookahead<=uO&&t===TO)return Ky;if(e.lookahead===0)break}if(e.match_length=0,e.lookahead>=Ac&&e.strstart>0&&(s=e.strstart-1,a=u[s],a===u[++s]&&a===u[++s]&&a===u[++s])){o=e.strstart+uO;do;while(a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&se.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=Ac?(r=SO(e,1,e.match_length-Ac),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(r=SO(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),r&&(Lw(e,!1),e.strm.avail_out===0))return Ky}return e.insert=0,t===tS?(Lw(e,!0),e.strm.avail_out===0?AF:OW):e.sym_next&&(Lw(e,!1),e.strm.avail_out===0)?Ky:NW},MKr=(e,t)=>{let r;for(;;){if(e.lookahead===0&&(xj(e),e.lookahead===0)){if(t===TO)return Ky;break}if(e.match_length=0,r=SO(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,r&&(Lw(e,!1),e.strm.avail_out===0))return Ky}return e.insert=0,t===tS?(Lw(e,!0),e.strm.avail_out===0?AF:OW):e.sym_next&&(Lw(e,!1),e.strm.avail_out===0)?Ky:NW};function dC(e,t,r,a,s){this.good_length=e,this.max_lazy=t,this.nice_length=r,this.max_chain=a,this.func=s}const Rie=[new dC(0,0,0,0,VOn),new dC(4,4,8,4,fQe),new dC(4,5,16,8,fQe),new dC(4,6,32,32,fQe),new dC(4,4,16,16,BH),new dC(8,16,32,32,BH),new dC(8,16,128,128,BH),new dC(8,32,128,256,BH),new dC(32,128,258,1024,BH),new dC(32,258,258,4096,BH)],PKr=e=>{e.window_size=2*e.w_size,JN(e.head),e.max_lazy_match=Rie[e.level].max_lazy,e.good_match=Rie[e.level].good_length,e.nice_match=Rie[e.level].nice_length,e.max_chain_length=Rie[e.level].max_chain,e.strstart=0,e.block_start=0,e.lookahead=0,e.insert=0,e.match_length=e.prev_length=Ac-1,e.match_available=0,e.ins_h=0};function BKr(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=MCe,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(kKr*2),this.dyn_dtree=new Uint16Array((2*CKr+1)*2),this.bl_tree=new Uint16Array((2*AKr+1)*2),JN(this.dyn_ltree),JN(this.dyn_dtree),JN(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(RKr+1),this.heap=new Uint16Array(2*Zst+1),JN(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(2*Zst+1),JN(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const Zle=e=>{if(!e)return 1;const t=e.state;return!t||t.strm!==e||t.status!==Ej&&t.status!==d0t&&t.status!==Jst&&t.status!==eot&&t.status!==tot&&t.status!==not&&t.status!==KB&&t.status!==kie?1:0},YOn=e=>{if(Zle(e))return XB(e,aA);e.total_in=e.total_out=0,e.data_type=_Kr;const t=e.state;return t.pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=t.wrap===2?d0t:t.wrap?Ej:KB,e.adler=t.wrap===2?0:1,t.last_flush=-2,cKr(t),pm},jOn=e=>{const t=YOn(e);return t===pm&&PKr(e.state),t},FKr=(e,t)=>Zle(e)||e.state.wrap!==2?aA:(e.state.gzhead=t,pm),WOn=(e,t,r,a,s,o)=>{if(!e)return aA;let u=1;if(t===gKr&&(t=6),a<0?(u=0,a=-a):a>15&&(u=2,a-=16),s<1||s>wKr||r!==MCe||a<8||a>15||t<0||t>9||o<0||o>yKr||a===8&&u!==1)return XB(e,aA);a===8&&(a=9);const h=new BKr;return e.state=h,h.strm=e,h.status=Ej,h.wrap=u,h.gzhead=null,h.w_bits=a,h.w_size=1<WOn(e,t,MCe,EKr,xKr,vKr),UKr=(e,t)=>{if(Zle(e)||t>g1n||t<0)return e?XB(e,aA):aA;const r=e.state;if(!e.output||e.avail_in!==0&&!e.input||r.status===kie&&t!==tS)return XB(e,e.avail_out===0?dQe:aA);const a=r.last_flush;if(r.last_flush=t,r.pending!==0){if(Tw(e),e.avail_out===0)return r.last_flush=-1,pm}else if(e.avail_in===0&&b1n(t)<=b1n(a)&&t!==tS)return XB(e,dQe);if(r.status===kie&&e.avail_in!==0)return XB(e,dQe);if(r.status===Ej&&r.wrap===0&&(r.status=KB),r.status===Ej){let s=MCe+(r.w_bits-8<<4)<<8,o=-1;if(r.strategy>=O_e||r.level<2?o=0:r.level<6?o=1:r.level===6?o=2:o=3,s|=o<<6,r.strstart!==0&&(s|=IKr),s+=31-s%31,Tre(r,s),r.strstart!==0&&(Tre(r,e.adler>>>16),Tre(r,e.adler&65535)),e.adler=1,r.status=KB,Tw(e),r.pending!==0)return r.last_flush=-1,pm}if(r.status===d0t){if(e.adler=0,wu(r,31),wu(r,139),wu(r,8),r.gzhead)wu(r,(r.gzhead.text?1:0)+(r.gzhead.hcrc?2:0)+(r.gzhead.extra?4:0)+(r.gzhead.name?8:0)+(r.gzhead.comment?16:0)),wu(r,r.gzhead.time&255),wu(r,r.gzhead.time>>8&255),wu(r,r.gzhead.time>>16&255),wu(r,r.gzhead.time>>24&255),wu(r,r.level===9?2:r.strategy>=O_e||r.level<2?4:0),wu(r,r.gzhead.os&255),r.gzhead.extra&&r.gzhead.extra.length&&(wu(r,r.gzhead.extra.length&255),wu(r,r.gzhead.extra.length>>8&255)),r.gzhead.hcrc&&(e.adler=wg(e.adler,r.pending_buf,r.pending,0)),r.gzindex=0,r.status=Jst;else if(wu(r,0),wu(r,0),wu(r,0),wu(r,0),wu(r,0),wu(r,r.level===9?2:r.strategy>=O_e||r.level<2?4:0),wu(r,NKr),r.status=KB,Tw(e),r.pending!==0)return r.last_flush=-1,pm}if(r.status===Jst){if(r.gzhead.extra){let s=r.pending,o=(r.gzhead.extra.length&65535)-r.gzindex;for(;r.pending+o>r.pending_buf_size;){let h=r.pending_buf_size-r.pending;if(r.pending_buf.set(r.gzhead.extra.subarray(r.gzindex,r.gzindex+h),r.pending),r.pending=r.pending_buf_size,r.gzhead.hcrc&&r.pending>s&&(e.adler=wg(e.adler,r.pending_buf,r.pending-s,s)),r.gzindex+=h,Tw(e),r.pending!==0)return r.last_flush=-1,pm;s=0,o-=h}let u=new Uint8Array(r.gzhead.extra);r.pending_buf.set(u.subarray(r.gzindex,r.gzindex+o),r.pending),r.pending+=o,r.gzhead.hcrc&&r.pending>s&&(e.adler=wg(e.adler,r.pending_buf,r.pending-s,s)),r.gzindex=0}r.status=eot}if(r.status===eot){if(r.gzhead.name){let s=r.pending,o;do{if(r.pending===r.pending_buf_size){if(r.gzhead.hcrc&&r.pending>s&&(e.adler=wg(e.adler,r.pending_buf,r.pending-s,s)),Tw(e),r.pending!==0)return r.last_flush=-1,pm;s=0}r.gzindexs&&(e.adler=wg(e.adler,r.pending_buf,r.pending-s,s)),r.gzindex=0}r.status=tot}if(r.status===tot){if(r.gzhead.comment){let s=r.pending,o;do{if(r.pending===r.pending_buf_size){if(r.gzhead.hcrc&&r.pending>s&&(e.adler=wg(e.adler,r.pending_buf,r.pending-s,s)),Tw(e),r.pending!==0)return r.last_flush=-1,pm;s=0}r.gzindexs&&(e.adler=wg(e.adler,r.pending_buf,r.pending-s,s))}r.status=not}if(r.status===not){if(r.gzhead.hcrc){if(r.pending+2>r.pending_buf_size&&(Tw(e),r.pending!==0))return r.last_flush=-1,pm;wu(r,e.adler&255),wu(r,e.adler>>8&255),e.adler=0}if(r.status=KB,Tw(e),r.pending!==0)return r.last_flush=-1,pm}if(e.avail_in!==0||r.lookahead!==0||t!==TO&&r.status!==kie){let s=r.level===0?VOn(r,t):r.strategy===O_e?MKr(r,t):r.strategy===bKr?DKr(r,t):Rie[r.level].func(r,t);if((s===AF||s===OW)&&(r.status=kie),s===Ky||s===AF)return e.avail_out===0&&(r.last_flush=-1),pm;if(s===NW&&(t===dKr?hKr(r):t!==g1n&&(Qst(r,0,0,!1),t===fKr&&(JN(r.head),r.lookahead===0&&(r.strstart=0,r.block_start=0,r.insert=0))),Tw(e),e.avail_out===0))return r.last_flush=-1,pm}return t!==tS?pm:r.wrap<=0?m1n:(r.wrap===2?(wu(r,e.adler&255),wu(r,e.adler>>8&255),wu(r,e.adler>>16&255),wu(r,e.adler>>24&255),wu(r,e.total_in&255),wu(r,e.total_in>>8&255),wu(r,e.total_in>>16&255),wu(r,e.total_in>>24&255)):(Tre(r,e.adler>>>16),Tre(r,e.adler&65535)),Tw(e),r.wrap>0&&(r.wrap=-r.wrap),r.pending!==0?pm:m1n)},zKr=e=>{if(Zle(e))return aA;const t=e.state.status;return e.state=null,t===KB?XB(e,pKr):pm},GKr=(e,t)=>{let r=t.length;if(Zle(e))return aA;const a=e.state,s=a.wrap;if(s===2||s===1&&a.status!==Ej||a.lookahead)return aA;if(s===1&&(e.adler=aoe(e.adler,t,r,0)),a.wrap=0,r>=a.w_size){s===0&&(JN(a.head),a.strstart=0,a.block_start=0,a.insert=0);let f=new Uint8Array(a.w_size);f.set(t.subarray(r-a.w_size,r),0),t=f,r=a.w_size}const o=e.avail_in,u=e.next_in,h=e.input;for(e.avail_in=r,e.next_in=0,e.input=t,xj(a);a.lookahead>=Ac;){let f=a.strstart,p=a.lookahead-(Ac-1);do a.ins_h=CO(a,a.ins_h,a.window[f+Ac-1]),a.prev[f&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=f,f++;while(--p);a.strstart=f,a.lookahead=Ac-1,xj(a)}return a.strstart+=a.lookahead,a.block_start=a.strstart,a.insert=a.lookahead,a.lookahead=0,a.match_length=a.prev_length=Ac-1,a.match_available=0,e.next_in=u,e.input=h,e.avail_in=o,a.wrap=s,pm};var qKr=$Kr,HKr=WOn,VKr=jOn,YKr=YOn,jKr=FKr,WKr=UKr,KKr=zKr,XKr=GKr,QKr="pako deflate (from Nodeca project)",ese={deflateInit:qKr,deflateInit2:HKr,deflateReset:VKr,deflateResetKeep:YKr,deflateSetHeader:jKr,deflate:WKr,deflateEnd:KKr,deflateSetDictionary:XKr,deflateInfo:QKr};const ZKr=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var JKr=function(e){const t=Array.prototype.slice.call(arguments,1);for(;t.length;){const r=t.shift();if(r){if(typeof r!="object")throw new TypeError(r+"must be non-object");for(const a in r)ZKr(r,a)&&(e[a]=r[a])}}return e},eXr=e=>{let t=0;for(let a=0,s=e.length;a=252?6:e>=248?5:e>=240?4:e>=224?3:e>=192?2:1;soe[254]=soe[254]=1;var tXr=e=>{if(typeof TextEncoder=="function"&&TextEncoder.prototype.encode)return new TextEncoder().encode(e);let t,r,a,s,o,u=e.length,h=0;for(s=0;s>>6,t[o++]=128|r&63):r<65536?(t[o++]=224|r>>>12,t[o++]=128|r>>>6&63,t[o++]=128|r&63):(t[o++]=240|r>>>18,t[o++]=128|r>>>12&63,t[o++]=128|r>>>6&63,t[o++]=128|r&63);return t};const nXr=(e,t)=>{if(t<65534&&e.subarray&&KOn)return String.fromCharCode.apply(null,e.length===t?e:e.subarray(0,t));let r="";for(let a=0;a{const r=t||e.length;if(typeof TextDecoder=="function"&&TextDecoder.prototype.decode)return new TextDecoder().decode(e.subarray(0,t));let a,s;const o=new Array(r*2);for(s=0,a=0;a4){o[s++]=65533,a+=h-1;continue}for(u&=h===2?31:h===3?15:7;h>1&&a1){o[s++]=65533;continue}u<65536?o[s++]=u:(u-=65536,o[s++]=55296|u>>10&1023,o[s++]=56320|u&1023)}return nXr(o,s)},iXr=(e,t)=>{t=t||e.length,t>e.length&&(t=e.length);let r=t-1;for(;r>=0&&(e[r]&192)===128;)r--;return r<0||r===0?t:r+soe[e[r]]>t?r:t},ooe={string2buf:tXr,buf2string:rXr,utf8border:iXr};function aXr(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}var XOn=aXr;const QOn=Object.prototype.toString,{Z_NO_FLUSH:sXr,Z_SYNC_FLUSH:oXr,Z_FULL_FLUSH:lXr,Z_FINISH:cXr,Z_OK:QSe,Z_STREAM_END:uXr,Z_DEFAULT_COMPRESSION:hXr,Z_DEFAULT_STRATEGY:dXr,Z_DEFLATED:fXr}=DCe;function BCe(e){this.options=PCe.assign({level:hXr,method:fXr,chunkSize:16384,windowBits:15,memLevel:8,strategy:dXr},e||{});let t=this.options;t.raw&&t.windowBits>0?t.windowBits=-t.windowBits:t.gzip&&t.windowBits>0&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new XOn,this.strm.avail_out=0;let r=ese.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(r!==QSe)throw new Error(CF[r]);if(t.header&&ese.deflateSetHeader(this.strm,t.header),t.dictionary){let a;if(typeof t.dictionary=="string"?a=ooe.string2buf(t.dictionary):QOn.call(t.dictionary)==="[object ArrayBuffer]"?a=new Uint8Array(t.dictionary):a=t.dictionary,r=ese.deflateSetDictionary(this.strm,a),r!==QSe)throw new Error(CF[r]);this._dict_set=!0}}BCe.prototype.push=function(e,t){const r=this.strm,a=this.options.chunkSize;let s,o;if(this.ended)return!1;for(t===~~t?o=t:o=t===!0?cXr:sXr,typeof e=="string"?r.input=ooe.string2buf(e):QOn.call(e)==="[object ArrayBuffer]"?r.input=new Uint8Array(e):r.input=e,r.next_in=0,r.avail_in=r.input.length;;){if(r.avail_out===0&&(r.output=new Uint8Array(a),r.next_out=0,r.avail_out=a),(o===oXr||o===lXr)&&r.avail_out<=6){this.onData(r.output.subarray(0,r.next_out)),r.avail_out=0;continue}if(s=ese.deflate(r,o),s===uXr)return r.next_out>0&&this.onData(r.output.subarray(0,r.next_out)),s=ese.deflateEnd(this.strm),this.onEnd(s),this.ended=!0,s===QSe;if(r.avail_out===0){this.onData(r.output);continue}if(o>0&&r.next_out>0){this.onData(r.output.subarray(0,r.next_out)),r.avail_out=0;continue}if(r.avail_in===0)break}return!0};BCe.prototype.onData=function(e){this.chunks.push(e)};BCe.prototype.onEnd=function(e){e===QSe&&(this.result=PCe.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg};function pXr(e,t){const r=new BCe(t);if(r.push(e,!0),r.err)throw r.msg||CF[r.err];return r.result}function gXr(e,t){return t=t||{},t.raw=!0,pXr(e,t)}var mXr=gXr,bXr={deflateRaw:mXr};const L_e=16209,yXr=16191;var vXr=function(t,r){let a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I,N,L,P,M,F,U,$,G;const B=t.state;a=t.next_in,$=t.input,s=a+(t.avail_in-5),o=t.next_out,G=t.output,u=o-(r-t.avail_out),h=o+(t.avail_out-257),f=B.dmax,p=B.wsize,m=B.whave,b=B.wnext,_=B.window,w=B.hold,S=B.bits,C=B.lencode,A=B.distcode,k=(1<>>24,w>>>=L,S-=L,L=N>>>16&255,L===0)G[o++]=N&65535;else if(L&16){P=N&65535,L&=15,L&&(S>>=L,S-=L),S<15&&(w+=$[a++]<>>24,w>>>=L,S-=L,L=N>>>16&255,L&16){if(M=N&65535,L&=15,Sf){t.msg="invalid distance too far back",B.mode=L_e;break e}if(w>>>=L,S-=L,L=o-u,M>L){if(L=M-L,L>m&&B.sane){t.msg="invalid distance too far back",B.mode=L_e;break e}if(F=0,U=_,b===0){if(F+=p-L,L2;)G[o++]=U[F++],G[o++]=U[F++],G[o++]=U[F++],P-=3;P&&(G[o++]=U[F++],P>1&&(G[o++]=U[F++]))}else{F=o-M;do G[o++]=G[F++],G[o++]=G[F++],G[o++]=G[F++],P-=3;while(P>2);P&&(G[o++]=G[F++],P>1&&(G[o++]=G[F++]))}}else if(L&64){t.msg="invalid distance code",B.mode=L_e;break e}else{N=A[(N&65535)+(w&(1<>3,a-=P,S-=P<<3,w&=(1<{const f=h.bits;let p=0,m=0,b=0,_=0,w=0,S=0,C=0,A=0,k=0,I=0,N,L,P,M,F,U=null,$;const G=new Uint16Array(FH+1),B=new Uint16Array(FH+1);let Z=null,z,Y,W;for(p=0;p<=FH;p++)G[p]=0;for(m=0;m=1&&G[_]===0;_--);if(w>_&&(w=_),_===0)return s[o++]=1<<24|64<<16|0,s[o++]=1<<24|64<<16|0,h.bits=1,0;for(b=1;b<_&&G[b]===0;b++);for(w0&&(e===_1n||_!==1))return-1;for(B[1]=0,p=1;py1n||e===w1n&&k>v1n)return 1;for(;;){z=p-C,u[m]+1<$?(Y=0,W=u[m]):u[m]>=$?(Y=Z[u[m]-$],W=U[u[m]-$]):(Y=96,W=0),N=1<>C)+L]=z<<24|Y<<16|W|0;while(L!==0);for(N=1<>=1;if(N!==0?(I&=N-1,I+=N):I=0,m++,--G[p]===0){if(p===_)break;p=t[r+u[m]]}if(p>w&&(I&M)!==P){for(C===0&&(C=w),F+=b,S=p-C,A=1<y1n||e===w1n&&k>v1n)return 1;P=I&M,s[P]=w<<24|S<<16|F-o|0}}return I!==0&&(s[F+I]=p-C<<24|64<<16|0),h.bits=w,0};var tse=SXr;const TXr=0,ZOn=1,JOn=2,{Z_FINISH:E1n,Z_BLOCK:CXr,Z_TREES:D_e,Z_OK:kF,Z_STREAM_END:AXr,Z_NEED_DICT:kXr,Z_STREAM_ERROR:yS,Z_DATA_ERROR:e9n,Z_MEM_ERROR:t9n,Z_BUF_ERROR:RXr,Z_DEFLATED:x1n}=DCe,FCe=16180,S1n=16181,T1n=16182,C1n=16183,A1n=16184,k1n=16185,R1n=16186,I1n=16187,N1n=16188,O1n=16189,ZSe=16190,H6=16191,gQe=16192,L1n=16193,mQe=16194,D1n=16195,M1n=16196,P1n=16197,B1n=16198,M_e=16199,P_e=16200,F1n=16201,$1n=16202,U1n=16203,z1n=16204,G1n=16205,bQe=16206,q1n=16207,H1n=16208,Gd=16209,n9n=16210,r9n=16211,IXr=852,NXr=592,OXr=15,LXr=OXr,V1n=e=>(e>>>24&255)+(e>>>8&65280)+((e&65280)<<8)+((e&255)<<24);function DXr(){this.strm=null,this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}const _$=e=>{if(!e)return 1;const t=e.state;return!t||t.strm!==e||t.moder9n?1:0},i9n=e=>{if(_$(e))return yS;const t=e.state;return e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=t.wrap&1),t.mode=FCe,t.last=0,t.havedict=0,t.flags=-1,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new Int32Array(IXr),t.distcode=t.distdyn=new Int32Array(NXr),t.sane=1,t.back=-1,kF},a9n=e=>{if(_$(e))return yS;const t=e.state;return t.wsize=0,t.whave=0,t.wnext=0,i9n(e)},s9n=(e,t)=>{let r;if(_$(e))return yS;const a=e.state;return t<0?(r=0,t=-t):(r=(t>>4)+5,t<48&&(t&=15)),t&&(t<8||t>15)?yS:(a.window!==null&&a.wbits!==t&&(a.window=null),a.wrap=r,a.wbits=t,a9n(e))},o9n=(e,t)=>{if(!e)return yS;const r=new DXr;e.state=r,r.strm=e,r.window=null,r.mode=FCe;const a=s9n(e,t);return a!==kF&&(e.state=null),a},MXr=e=>o9n(e,LXr);let Y1n=!0,yQe,vQe;const PXr=e=>{if(Y1n){yQe=new Int32Array(512),vQe=new Int32Array(32);let t=0;for(;t<144;)e.lens[t++]=8;for(;t<256;)e.lens[t++]=9;for(;t<280;)e.lens[t++]=7;for(;t<288;)e.lens[t++]=8;for(tse(ZOn,e.lens,0,288,yQe,0,e.work,{bits:9}),t=0;t<32;)e.lens[t++]=5;tse(JOn,e.lens,0,32,vQe,0,e.work,{bits:5}),Y1n=!1}e.lencode=yQe,e.lenbits=9,e.distcode=vQe,e.distbits=5},l9n=(e,t,r,a)=>{let s;const o=e.state;return o.window===null&&(o.wsize=1<=o.wsize?(o.window.set(t.subarray(r-o.wsize,r),0),o.wnext=0,o.whave=o.wsize):(s=o.wsize-o.wnext,s>a&&(s=a),o.window.set(t.subarray(r-a,r-a+s),o.wnext),a-=s,a?(o.window.set(t.subarray(r-a,r),0),o.wnext=a,o.whave=o.wsize):(o.wnext+=s,o.wnext===o.wsize&&(o.wnext=0),o.whave{let r,a,s,o,u,h,f,p,m,b,_,w,S,C,A=0,k,I,N,L,P,M,F,U;const $=new Uint8Array(4);let G,B;const Z=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(_$(e)||!e.output||!e.input&&e.avail_in!==0)return yS;r=e.state,r.mode===H6&&(r.mode=gQe),u=e.next_out,s=e.output,f=e.avail_out,o=e.next_in,a=e.input,h=e.avail_in,p=r.hold,m=r.bits,b=h,_=f,U=kF;e:for(;;)switch(r.mode){case FCe:if(r.wrap===0){r.mode=gQe;break}for(;m<16;){if(h===0)break e;h--,p+=a[o++]<>>8&255,r.check=wg(r.check,$,2,0),p=0,m=0,r.mode=S1n;break}if(r.head&&(r.head.done=!1),!(r.wrap&1)||(((p&255)<<8)+(p>>8))%31){e.msg="incorrect header check",r.mode=Gd;break}if((p&15)!==x1n){e.msg="unknown compression method",r.mode=Gd;break}if(p>>>=4,m-=4,F=(p&15)+8,r.wbits===0&&(r.wbits=F),F>15||F>r.wbits){e.msg="invalid window size",r.mode=Gd;break}r.dmax=1<>8&1),r.flags&512&&r.wrap&4&&($[0]=p&255,$[1]=p>>>8&255,r.check=wg(r.check,$,2,0)),p=0,m=0,r.mode=T1n;case T1n:for(;m<32;){if(h===0)break e;h--,p+=a[o++]<>>8&255,$[2]=p>>>16&255,$[3]=p>>>24&255,r.check=wg(r.check,$,4,0)),p=0,m=0,r.mode=C1n;case C1n:for(;m<16;){if(h===0)break e;h--,p+=a[o++]<>8),r.flags&512&&r.wrap&4&&($[0]=p&255,$[1]=p>>>8&255,r.check=wg(r.check,$,2,0)),p=0,m=0,r.mode=A1n;case A1n:if(r.flags&1024){for(;m<16;){if(h===0)break e;h--,p+=a[o++]<>>8&255,r.check=wg(r.check,$,2,0)),p=0,m=0}else r.head&&(r.head.extra=null);r.mode=k1n;case k1n:if(r.flags&1024&&(w=r.length,w>h&&(w=h),w&&(r.head&&(F=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Uint8Array(r.head.extra_len)),r.head.extra.set(a.subarray(o,o+w),F)),r.flags&512&&r.wrap&4&&(r.check=wg(r.check,a,w,o)),h-=w,o+=w,r.length-=w),r.length))break e;r.length=0,r.mode=R1n;case R1n:if(r.flags&2048){if(h===0)break e;w=0;do F=a[o+w++],r.head&&F&&r.length<65536&&(r.head.name+=String.fromCharCode(F));while(F&&w>9&1,r.head.done=!0),e.adler=r.check=0,r.mode=H6;break;case O1n:for(;m<32;){if(h===0)break e;h--,p+=a[o++]<>>=m&7,m-=m&7,r.mode=bQe;break}for(;m<3;){if(h===0)break e;h--,p+=a[o++]<>>=1,m-=1,p&3){case 0:r.mode=L1n;break;case 1:if(PXr(r),r.mode=M_e,t===D_e){p>>>=2,m-=2;break e}break;case 2:r.mode=M1n;break;case 3:e.msg="invalid block type",r.mode=Gd}p>>>=2,m-=2;break;case L1n:for(p>>>=m&7,m-=m&7;m<32;){if(h===0)break e;h--,p+=a[o++]<>>16^65535)){e.msg="invalid stored block lengths",r.mode=Gd;break}if(r.length=p&65535,p=0,m=0,r.mode=mQe,t===D_e)break e;case mQe:r.mode=D1n;case D1n:if(w=r.length,w){if(w>h&&(w=h),w>f&&(w=f),w===0)break e;s.set(a.subarray(o,o+w),u),h-=w,o+=w,f-=w,u+=w,r.length-=w;break}r.mode=H6;break;case M1n:for(;m<14;){if(h===0)break e;h--,p+=a[o++]<>>=5,m-=5,r.ndist=(p&31)+1,p>>>=5,m-=5,r.ncode=(p&15)+4,p>>>=4,m-=4,r.nlen>286||r.ndist>30){e.msg="too many length or distance symbols",r.mode=Gd;break}r.have=0,r.mode=P1n;case P1n:for(;r.have>>=3,m-=3}for(;r.have<19;)r.lens[Z[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,G={bits:r.lenbits},U=tse(TXr,r.lens,0,19,r.lencode,0,r.work,G),r.lenbits=G.bits,U){e.msg="invalid code lengths set",r.mode=Gd;break}r.have=0,r.mode=B1n;case B1n:for(;r.have>>24,I=A>>>16&255,N=A&65535,!(k<=m);){if(h===0)break e;h--,p+=a[o++]<>>=k,m-=k,r.lens[r.have++]=N;else{if(N===16){for(B=k+2;m>>=k,m-=k,r.have===0){e.msg="invalid bit length repeat",r.mode=Gd;break}F=r.lens[r.have-1],w=3+(p&3),p>>>=2,m-=2}else if(N===17){for(B=k+3;m>>=k,m-=k,F=0,w=3+(p&7),p>>>=3,m-=3}else{for(B=k+7;m>>=k,m-=k,F=0,w=11+(p&127),p>>>=7,m-=7}if(r.have+w>r.nlen+r.ndist){e.msg="invalid bit length repeat",r.mode=Gd;break}for(;w--;)r.lens[r.have++]=F}}if(r.mode===Gd)break;if(r.lens[256]===0){e.msg="invalid code -- missing end-of-block",r.mode=Gd;break}if(r.lenbits=9,G={bits:r.lenbits},U=tse(ZOn,r.lens,0,r.nlen,r.lencode,0,r.work,G),r.lenbits=G.bits,U){e.msg="invalid literal/lengths set",r.mode=Gd;break}if(r.distbits=6,r.distcode=r.distdyn,G={bits:r.distbits},U=tse(JOn,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,G),r.distbits=G.bits,U){e.msg="invalid distances set",r.mode=Gd;break}if(r.mode=M_e,t===D_e)break e;case M_e:r.mode=P_e;case P_e:if(h>=6&&f>=258){e.next_out=u,e.avail_out=f,e.next_in=o,e.avail_in=h,r.hold=p,r.bits=m,vXr(e,_),u=e.next_out,s=e.output,f=e.avail_out,o=e.next_in,a=e.input,h=e.avail_in,p=r.hold,m=r.bits,r.mode===H6&&(r.back=-1);break}for(r.back=0;A=r.lencode[p&(1<>>24,I=A>>>16&255,N=A&65535,!(k<=m);){if(h===0)break e;h--,p+=a[o++]<>L)],k=A>>>24,I=A>>>16&255,N=A&65535,!(L+k<=m);){if(h===0)break e;h--,p+=a[o++]<>>=L,m-=L,r.back+=L}if(p>>>=k,m-=k,r.back+=k,r.length=N,I===0){r.mode=G1n;break}if(I&32){r.back=-1,r.mode=H6;break}if(I&64){e.msg="invalid literal/length code",r.mode=Gd;break}r.extra=I&15,r.mode=F1n;case F1n:if(r.extra){for(B=r.extra;m>>=r.extra,m-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=$1n;case $1n:for(;A=r.distcode[p&(1<>>24,I=A>>>16&255,N=A&65535,!(k<=m);){if(h===0)break e;h--,p+=a[o++]<>L)],k=A>>>24,I=A>>>16&255,N=A&65535,!(L+k<=m);){if(h===0)break e;h--,p+=a[o++]<>>=L,m-=L,r.back+=L}if(p>>>=k,m-=k,r.back+=k,I&64){e.msg="invalid distance code",r.mode=Gd;break}r.offset=N,r.extra=I&15,r.mode=U1n;case U1n:if(r.extra){for(B=r.extra;m>>=r.extra,m-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){e.msg="invalid distance too far back",r.mode=Gd;break}r.mode=z1n;case z1n:if(f===0)break e;if(w=_-f,r.offset>w){if(w=r.offset-w,w>r.whave&&r.sane){e.msg="invalid distance too far back",r.mode=Gd;break}w>r.wnext?(w-=r.wnext,S=r.wsize-w):S=r.wnext-w,w>r.length&&(w=r.length),C=r.window}else C=s,S=u-r.offset,w=r.length;w>f&&(w=f),f-=w,r.length-=w;do s[u++]=C[S++];while(--w);r.length===0&&(r.mode=P_e);break;case G1n:if(f===0)break e;s[u++]=r.length,f--,r.mode=P_e;break;case bQe:if(r.wrap){for(;m<32;){if(h===0)break e;h--,p|=a[o++]<{if(_$(e))return yS;let t=e.state;return t.window&&(t.window=null),e.state=null,kF},$Xr=(e,t)=>{if(_$(e))return yS;const r=e.state;return r.wrap&2?(r.head=t,t.done=!1,kF):yS},UXr=(e,t)=>{const r=t.length;let a,s,o;return _$(e)||(a=e.state,a.wrap!==0&&a.mode!==ZSe)?yS:a.mode===ZSe&&(s=1,s=aoe(s,t,r,0),s!==a.check)?e9n:(o=l9n(e,t,r,r),o?(a.mode=n9n,t9n):(a.havedict=1,kF))};var zXr=a9n,GXr=s9n,qXr=i9n,HXr=MXr,VXr=o9n,YXr=BXr,jXr=FXr,WXr=$Xr,KXr=UXr,XXr="pako inflate (from Nodeca project)",h7={inflateReset:zXr,inflateReset2:GXr,inflateResetKeep:qXr,inflateInit:HXr,inflateInit2:VXr,inflate:YXr,inflateEnd:jXr,inflateGetHeader:WXr,inflateSetDictionary:KXr,inflateInfo:XXr};function QXr(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}var ZXr=QXr;const c9n=Object.prototype.toString,{Z_NO_FLUSH:JXr,Z_FINISH:eQr,Z_OK:loe,Z_STREAM_END:_Qe,Z_NEED_DICT:wQe,Z_STREAM_ERROR:tQr,Z_DATA_ERROR:j1n,Z_MEM_ERROR:nQr}=DCe;function $Ce(e){this.options=PCe.assign({chunkSize:1024*64,windowBits:15,to:""},e||{});const t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,t.windowBits===0&&(t.windowBits=-15)),t.windowBits>=0&&t.windowBits<16&&!(e&&e.windowBits)&&(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&(t.windowBits&15||(t.windowBits|=15)),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new XOn,this.strm.avail_out=0;let r=h7.inflateInit2(this.strm,t.windowBits);if(r!==loe)throw new Error(CF[r]);if(this.header=new ZXr,h7.inflateGetHeader(this.strm,this.header),t.dictionary&&(typeof t.dictionary=="string"?t.dictionary=ooe.string2buf(t.dictionary):c9n.call(t.dictionary)==="[object ArrayBuffer]"&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw&&(r=h7.inflateSetDictionary(this.strm,t.dictionary),r!==loe)))throw new Error(CF[r])}$Ce.prototype.push=function(e,t){const r=this.strm,a=this.options.chunkSize,s=this.options.dictionary;let o,u,h;if(this.ended)return!1;for(t===~~t?u=t:u=t===!0?eQr:JXr,c9n.call(e)==="[object ArrayBuffer]"?r.input=new Uint8Array(e):r.input=e,r.next_in=0,r.avail_in=r.input.length;;){for(r.avail_out===0&&(r.output=new Uint8Array(a),r.next_out=0,r.avail_out=a),o=h7.inflate(r,u),o===wQe&&s&&(o=h7.inflateSetDictionary(r,s),o===loe?o=h7.inflate(r,u):o===j1n&&(o=wQe));r.avail_in>0&&o===_Qe&&r.state.wrap>0&&e[r.next_in]!==0;)h7.inflateReset(r),o=h7.inflate(r,u);switch(o){case tQr:case j1n:case wQe:case nQr:return this.onEnd(o),this.ended=!0,!1}if(h=r.avail_out,r.next_out&&(r.avail_out===0||o===_Qe))if(this.options.to==="string"){let f=ooe.utf8border(r.output,r.next_out),p=r.next_out-f,m=ooe.buf2string(r.output,f);r.next_out=p,r.avail_out=a-p,p&&r.output.set(r.output.subarray(f,f+p),0),this.onData(m)}else this.onData(r.output.length===r.next_out?r.output:r.output.subarray(0,r.next_out));if(!(o===loe&&h===0)){if(o===_Qe)return o=h7.inflateEnd(this.strm),this.onEnd(o),this.ended=!0,!0;if(r.avail_in===0)break}}return!0};$Ce.prototype.onData=function(e){this.chunks.push(e)};$Ce.prototype.onEnd=function(e){e===loe&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=PCe.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg};function rQr(e,t){const r=new $Ce(t);if(r.push(e),r.err)throw r.msg||CF[r.err];return r.result}function iQr(e,t){return t=t||{},t.raw=!0,rQr(e,t)}var aQr=iQr,sQr={inflateRaw:aQr};const{deflateRaw:oQr}=bXr,{inflateRaw:lQr}=sQr;var DTa=oQr,MTa=lQr;function f0t(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var w$=f0t();function u9n(e){w$=e}var nse={exec:()=>null};function zu(e,t=""){let r=typeof e=="string"?e:e.source;const a={replace:(s,o)=>{let u=typeof o=="string"?o:o.source;return u=u.replace(Xy.caret,"$1"),r=r.replace(s,u),a},getRegex:()=>new RegExp(r,t)};return a}var Xy={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:/^
    /i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^$/,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")},cQr=/^(?:[ \t]*(?:\n|$))+/,uQr=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,hQr=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,Jle=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,dQr=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,p0t=/(?:[*+-]|\d{1,9}[.)])/,h9n=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,d9n=zu(h9n).replace(/bull/g,p0t).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(),fQr=zu(h9n).replace(/bull/g,p0t).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(),g0t=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,pQr=/^[^\n]+/,m0t=/(?!\s*\])(?:\\.|[^\[\]\\])+/,gQr=zu(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",m0t).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),mQr=zu(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,p0t).getRegex(),UCe="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",b0t=/|$))/,bQr=zu("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|\\n*|$)|\\n*|$)|)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",b0t).replace("tag",UCe).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),f9n=zu(g0t).replace("hr",Jle).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",")|<(?:script|pre|style|textarea|!--)").replace("tag",UCe).getRegex(),yQr=zu(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",f9n).getRegex(),y0t={blockquote:yQr,code:uQr,def:gQr,fences:hQr,heading:dQr,hr:Jle,html:bQr,lheading:d9n,list:mQr,newline:cQr,paragraph:f9n,table:nse,text:pQr},W1n=zu("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",Jle).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",")|<(?:script|pre|style|textarea|!--)").replace("tag",UCe).getRegex(),vQr={...y0t,lheading:fQr,table:W1n,paragraph:zu(g0t).replace("hr",Jle).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",W1n).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",UCe).getRegex()},_Qr={...y0t,html:zu(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",b0t).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:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:nse,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:zu(g0t).replace("hr",Jle).replace("heading",` *#{1,6} *[^ +]`).replace("lheading",d9n).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},wQr=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,EQr=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,p9n=/^( {2,}|\\)\n(?!\s*$)/,xQr=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\]*?>/g,b9n=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,kQr=zu(b9n,"u").replace(/punct/g,zCe).getRegex(),RQr=zu(b9n,"u").replace(/punct/g,m9n).getRegex(),y9n="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",IQr=zu(y9n,"gu").replace(/notPunctSpace/g,g9n).replace(/punctSpace/g,v0t).replace(/punct/g,zCe).getRegex(),NQr=zu(y9n,"gu").replace(/notPunctSpace/g,CQr).replace(/punctSpace/g,TQr).replace(/punct/g,m9n).getRegex(),OQr=zu("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,g9n).replace(/punctSpace/g,v0t).replace(/punct/g,zCe).getRegex(),LQr=zu(/\\(punct)/,"gu").replace(/punct/g,zCe).getRegex(),DQr=zu(/^<(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(),MQr=zu(b0t).replace("(?:-->|$)","-->").getRegex(),PQr=zu("^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^").replace("comment",MQr).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),JSe=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,BQr=zu(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",JSe).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),v9n=zu(/^!?\[(label)\]\[(ref)\]/).replace("label",JSe).replace("ref",m0t).getRegex(),_9n=zu(/^!?\[(ref)\](?:\[\])?/).replace("ref",m0t).getRegex(),FQr=zu("reflink|nolink(?!\\()","g").replace("reflink",v9n).replace("nolink",_9n).getRegex(),_0t={_backpedal:nse,anyPunctuation:LQr,autolink:DQr,blockSkip:AQr,br:p9n,code:EQr,del:nse,emStrongLDelim:kQr,emStrongRDelimAst:IQr,emStrongRDelimUnd:OQr,escape:wQr,link:BQr,nolink:_9n,punctuation:SQr,reflink:v9n,reflinkSearch:FQr,tag:PQr,text:xQr,url:nse},$Qr={..._0t,link:zu(/^!?\[(label)\]\((.*?)\)/).replace("label",JSe).getRegex(),reflink:zu(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",JSe).getRegex()},iot={..._0t,emStrongRDelimAst:NQr,emStrongLDelim:RQr,url:zu(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,"i").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~\\]))\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\":">",'"':""","'":"'"},K1n=e=>zQr[e];function vC(e,t){if(t){if(Xy.escapeTest.test(e))return e.replace(Xy.escapeReplace,K1n)}else if(Xy.escapeTestNoEncode.test(e))return e.replace(Xy.escapeReplaceNoEncode,K1n);return e}function X1n(e){try{e=encodeURI(e).replace(Xy.percentDecode,"%")}catch{return null}return e}function Q1n(e,t){var o;const r=e.replace(Xy.findPipe,(u,h,f)=>{let p=!1,m=h;for(;--m>=0&&f[m]==="\\";)p=!p;return p?"|":" |"}),a=r.split(Xy.splitPipe);let s=0;if(a[0].trim()||a.shift(),a.length>0&&!((o=a.at(-1))!=null&&o.trim())&&a.pop(),t)if(a.length>t)a.splice(t);else for(;a.length0?-2:-1}function Z1n(e,t,r,a,s){const o=t.href,u=t.title||null,h=e[1].replace(s.other.outputLinkReplace,"$1");a.state.inLink=!0;const f={type:e[0].charAt(0)==="!"?"image":"link",raw:r,href:o,title:u,text:h,tokens:a.inlineTokens(h)};return a.state.inLink=!1,f}function qQr(e,t,r){const a=e.match(r.other.indentCodeCompensation);if(a===null)return t;const s=a[1];return t.split(` +`).map(o=>{const u=o.match(r.other.beginningSpace);if(u===null)return o;const[h]=u;return h.length>=s.length?o.slice(s.length):o}).join(` +`)}var e4e=class{constructor(e){Gi(this,"options");Gi(this,"rules");Gi(this,"lexer");this.options=e||w$}space(e){const t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:"space",raw:t[0]}}code(e){const t=this.rules.block.code.exec(e);if(t){const r=t[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:t[0],codeBlockStyle:"indented",text:this.options.pedantic?r:Are(r,` +`)}}}fences(e){const t=this.rules.block.fences.exec(e);if(t){const r=t[0],a=qQr(r,t[3]||"",this.rules);return{type:"code",raw:r,lang:t[2]?t[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):t[2],text:a}}}heading(e){const t=this.rules.block.heading.exec(e);if(t){let r=t[2].trim();if(this.rules.other.endingHash.test(r)){const a=Are(r,"#");(this.options.pedantic||!a||this.rules.other.endingSpaceChar.test(a))&&(r=a.trim())}return{type:"heading",raw:t[0],depth:t[1].length,text:r,tokens:this.lexer.inline(r)}}}hr(e){const t=this.rules.block.hr.exec(e);if(t)return{type:"hr",raw:Are(t[0],` +`)}}blockquote(e){const t=this.rules.block.blockquote.exec(e);if(t){let r=Are(t[0],` +`).split(` +`),a="",s="";const o=[];for(;r.length>0;){let u=!1;const h=[];let f;for(f=0;f1,s={type:"list",raw:"",ordered:a,start:a?+r.slice(0,-1):"",loose:!1,items:[]};r=a?`\\d{1,9}\\${r.slice(-1)}`:`\\${r}`,this.options.pedantic&&(r=a?r:"[*+-]");const o=this.rules.other.listItemRegex(r);let u=!1;for(;e;){let f=!1,p="",m="";if(!(t=o.exec(e))||this.rules.block.hr.test(e))break;p=t[0],e=e.substring(p.length);let b=t[2].split(` +`,1)[0].replace(this.rules.other.listReplaceTabs,k=>" ".repeat(3*k.length)),_=e.split(` +`,1)[0],w=!b.trim(),S=0;if(this.options.pedantic?(S=2,m=b.trimStart()):w?S=t[1].length+1:(S=t[2].search(this.rules.other.nonSpaceChar),S=S>4?1:S,m=b.slice(S),S+=t[1].length),w&&this.rules.other.blankLine.test(_)&&(p+=_+` +`,e=e.substring(_.length+1),f=!0),!f){const k=this.rules.other.nextBulletRegex(S),I=this.rules.other.hrRegex(S),N=this.rules.other.fencesBeginRegex(S),L=this.rules.other.headingBeginRegex(S),P=this.rules.other.htmlBeginRegex(S);for(;e;){const M=e.split(` +`,1)[0];let F;if(_=M,this.options.pedantic?(_=_.replace(this.rules.other.listReplaceNesting," "),F=_):F=_.replace(this.rules.other.tabCharGlobal," "),N.test(_)||L.test(_)||P.test(_)||k.test(_)||I.test(_))break;if(F.search(this.rules.other.nonSpaceChar)>=S||!_.trim())m+=` +`+F.slice(S);else{if(w||b.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||N.test(b)||L.test(b)||I.test(b))break;m+=` +`+_}!w&&!_.trim()&&(w=!0),p+=M+` +`,e=e.substring(M.length+1),b=F.slice(S)}}s.loose||(u?s.loose=!0:this.rules.other.doubleBlankLine.test(p)&&(u=!0));let C=null,A;this.options.gfm&&(C=this.rules.other.listIsTask.exec(m),C&&(A=C[0]!=="[ ] ",m=m.replace(this.rules.other.listReplaceTask,""))),s.items.push({type:"list_item",raw:p,task:!!C,checked:A,loose:!1,text:m,tokens:[]}),s.raw+=p}const h=s.items.at(-1);if(h)h.raw=h.raw.trimEnd(),h.text=h.text.trimEnd();else return;s.raw=s.raw.trimEnd();for(let f=0;fb.type==="space"),m=p.length>0&&p.some(b=>this.rules.other.anyLine.test(b.raw));s.loose=m}if(s.loose)for(let f=0;f({text:f,tokens:this.lexer.inline(f),header:!1,align:o.align[p]})));return o}}lheading(e){const t=this.rules.block.lheading.exec(e);if(t)return{type:"heading",raw:t[0],depth:t[2].charAt(0)==="="?1:2,text:t[1],tokens:this.lexer.inline(t[1])}}paragraph(e){const t=this.rules.block.paragraph.exec(e);if(t){const r=t[1].charAt(t[1].length-1)===` +`?t[1].slice(0,-1):t[1];return{type:"paragraph",raw:t[0],text:r,tokens:this.lexer.inline(r)}}}text(e){const t=this.rules.block.text.exec(e);if(t)return{type:"text",raw:t[0],text:t[0],tokens:this.lexer.inline(t[0])}}escape(e){const t=this.rules.inline.escape.exec(e);if(t)return{type:"escape",raw:t[0],text:t[1]}}tag(e){const t=this.rules.inline.tag.exec(e);if(t)return!this.lexer.state.inLink&&this.rules.other.startATag.test(t[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(t[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:t[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:t[0]}}link(e){const t=this.rules.inline.link.exec(e);if(t){const r=t[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(r)){if(!this.rules.other.endAngleBracket.test(r))return;const o=Are(r.slice(0,-1),"\\");if((r.length-o.length)%2===0)return}else{const o=GQr(t[2],"()");if(o===-2)return;if(o>-1){const h=(t[0].indexOf("!")===0?5:4)+t[1].length+o;t[2]=t[2].substring(0,o),t[0]=t[0].substring(0,h).trim(),t[3]=""}}let a=t[2],s="";if(this.options.pedantic){const o=this.rules.other.pedanticHrefTitle.exec(a);o&&(a=o[1],s=o[3])}else s=t[3]?t[3].slice(1,-1):"";return a=a.trim(),this.rules.other.startAngleBracket.test(a)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(r)?a=a.slice(1):a=a.slice(1,-1)),Z1n(t,{href:a&&a.replace(this.rules.inline.anyPunctuation,"$1"),title:s&&s.replace(this.rules.inline.anyPunctuation,"$1")},t[0],this.lexer,this.rules)}}reflink(e,t){let r;if((r=this.rules.inline.reflink.exec(e))||(r=this.rules.inline.nolink.exec(e))){const a=(r[2]||r[1]).replace(this.rules.other.multipleSpaceGlobal," "),s=t[a.toLowerCase()];if(!s){const o=r[0].charAt(0);return{type:"text",raw:o,text:o}}return Z1n(r,s,r[0],this.lexer,this.rules)}}emStrong(e,t,r=""){let a=this.rules.inline.emStrongLDelim.exec(e);if(!a||a[3]&&r.match(this.rules.other.unicodeAlphaNumeric))return;if(!(a[1]||a[2]||"")||!r||this.rules.inline.punctuation.exec(r)){const o=[...a[0]].length-1;let u,h,f=o,p=0;const m=a[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(m.lastIndex=0,t=t.slice(-1*e.length+o);(a=m.exec(t))!=null;){if(u=a[1]||a[2]||a[3]||a[4]||a[5]||a[6],!u)continue;if(h=[...u].length,a[3]||a[4]){f+=h;continue}else if((a[5]||a[6])&&o%3&&!((o+h)%3)){p+=h;continue}if(f-=h,f>0)continue;h=Math.min(h,h+f+p);const b=[...a[0]][0].length,_=e.slice(0,o+a.index+b+h);if(Math.min(o,h)%2){const S=_.slice(1,-1);return{type:"em",raw:_,text:S,tokens:this.lexer.inlineTokens(S)}}const w=_.slice(2,-2);return{type:"strong",raw:_,text:w,tokens:this.lexer.inlineTokens(w)}}}}codespan(e){const t=this.rules.inline.code.exec(e);if(t){let r=t[2].replace(this.rules.other.newLineCharGlobal," ");const a=this.rules.other.nonSpaceChar.test(r),s=this.rules.other.startingSpaceChar.test(r)&&this.rules.other.endingSpaceChar.test(r);return a&&s&&(r=r.substring(1,r.length-1)),{type:"codespan",raw:t[0],text:r}}}br(e){const t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}}del(e){const t=this.rules.inline.del.exec(e);if(t)return{type:"del",raw:t[0],text:t[2],tokens:this.lexer.inlineTokens(t[2])}}autolink(e){const t=this.rules.inline.autolink.exec(e);if(t){let r,a;return t[2]==="@"?(r=t[1],a="mailto:"+r):(r=t[1],a=r),{type:"link",raw:t[0],text:r,href:a,tokens:[{type:"text",raw:r,text:r}]}}}url(e){var r;let t;if(t=this.rules.inline.url.exec(e)){let a,s;if(t[2]==="@")a=t[0],s="mailto:"+a;else{let o;do o=t[0],t[0]=((r=this.rules.inline._backpedal.exec(t[0]))==null?void 0:r[0])??"";while(o!==t[0]);a=t[0],t[1]==="www."?s="http://"+t[0]:s=t[0]}return{type:"link",raw:t[0],text:a,href:s,tokens:[{type:"text",raw:a,text:a}]}}}inlineText(e){const t=this.rules.inline.text.exec(e);if(t){const r=this.lexer.state.inRawBlock;return{type:"text",raw:t[0],text:t[0],escaped:r}}}},x7=class aot{constructor(t){Gi(this,"tokens");Gi(this,"options");Gi(this,"state");Gi(this,"tokenizer");Gi(this,"inlineQueue");this.tokens=[],this.tokens.links=Object.create(null),this.options=t||w$,this.options.tokenizer=this.options.tokenizer||new e4e,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};const r={other:Xy,block:B_e.normal,inline:Cre.normal};this.options.pedantic?(r.block=B_e.pedantic,r.inline=Cre.pedantic):this.options.gfm&&(r.block=B_e.gfm,this.options.breaks?r.inline=Cre.breaks:r.inline=Cre.gfm),this.tokenizer.rules=r}static get rules(){return{block:B_e,inline:Cre}}static lex(t,r){return new aot(r).lex(t)}static lexInline(t,r){return new aot(r).inlineTokens(t)}lex(t){t=t.replace(Xy.carriageReturn,` +`),this.blockTokens(t,this.tokens);for(let r=0;r(h=p.call({lexer:this},t,r))?(t=t.substring(h.raw.length),r.push(h),!0):!1))continue;if(h=this.tokenizer.space(t)){t=t.substring(h.raw.length);const p=r.at(-1);h.raw.length===1&&p!==void 0?p.raw+=` +`:r.push(h);continue}if(h=this.tokenizer.code(t)){t=t.substring(h.raw.length);const p=r.at(-1);(p==null?void 0:p.type)==="paragraph"||(p==null?void 0:p.type)==="text"?(p.raw+=` +`+h.raw,p.text+=` +`+h.text,this.inlineQueue.at(-1).src=p.text):r.push(h);continue}if(h=this.tokenizer.fences(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.heading(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.hr(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.blockquote(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.list(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.html(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.def(t)){t=t.substring(h.raw.length);const p=r.at(-1);(p==null?void 0:p.type)==="paragraph"||(p==null?void 0:p.type)==="text"?(p.raw+=` +`+h.raw,p.text+=` +`+h.raw,this.inlineQueue.at(-1).src=p.text):this.tokens.links[h.tag]||(this.tokens.links[h.tag]={href:h.href,title:h.title});continue}if(h=this.tokenizer.table(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.lheading(t)){t=t.substring(h.raw.length),r.push(h);continue}let f=t;if((u=this.options.extensions)!=null&&u.startBlock){let p=1/0;const m=t.slice(1);let b;this.options.extensions.startBlock.forEach(_=>{b=_.call({lexer:this},m),typeof b=="number"&&b>=0&&(p=Math.min(p,b))}),p<1/0&&p>=0&&(f=t.substring(0,p+1))}if(this.state.top&&(h=this.tokenizer.paragraph(f))){const p=r.at(-1);a&&(p==null?void 0:p.type)==="paragraph"?(p.raw+=` +`+h.raw,p.text+=` +`+h.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=p.text):r.push(h),a=f.length!==t.length,t=t.substring(h.raw.length);continue}if(h=this.tokenizer.text(t)){t=t.substring(h.raw.length);const p=r.at(-1);(p==null?void 0:p.type)==="text"?(p.raw+=` +`+h.raw,p.text+=` +`+h.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=p.text):r.push(h);continue}if(t){const p="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(p);break}else throw new Error(p)}}return this.state.top=!0,r}inline(t,r=[]){return this.inlineQueue.push({src:t,tokens:r}),r}inlineTokens(t,r=[]){var h,f,p;let a=t,s=null;if(this.tokens.links){const m=Object.keys(this.tokens.links);if(m.length>0)for(;(s=this.tokenizer.rules.inline.reflinkSearch.exec(a))!=null;)m.includes(s[0].slice(s[0].lastIndexOf("[")+1,-1))&&(a=a.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+a.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(s=this.tokenizer.rules.inline.anyPunctuation.exec(a))!=null;)a=a.slice(0,s.index)+"++"+a.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);for(;(s=this.tokenizer.rules.inline.blockSkip.exec(a))!=null;)a=a.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+a.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);let o=!1,u="";for(;t;){o||(u=""),o=!1;let m;if((f=(h=this.options.extensions)==null?void 0:h.inline)!=null&&f.some(_=>(m=_.call({lexer:this},t,r))?(t=t.substring(m.raw.length),r.push(m),!0):!1))continue;if(m=this.tokenizer.escape(t)){t=t.substring(m.raw.length),r.push(m);continue}if(m=this.tokenizer.tag(t)){t=t.substring(m.raw.length),r.push(m);continue}if(m=this.tokenizer.link(t)){t=t.substring(m.raw.length),r.push(m);continue}if(m=this.tokenizer.reflink(t,this.tokens.links)){t=t.substring(m.raw.length);const _=r.at(-1);m.type==="text"&&(_==null?void 0:_.type)==="text"?(_.raw+=m.raw,_.text+=m.text):r.push(m);continue}if(m=this.tokenizer.emStrong(t,a,u)){t=t.substring(m.raw.length),r.push(m);continue}if(m=this.tokenizer.codespan(t)){t=t.substring(m.raw.length),r.push(m);continue}if(m=this.tokenizer.br(t)){t=t.substring(m.raw.length),r.push(m);continue}if(m=this.tokenizer.del(t)){t=t.substring(m.raw.length),r.push(m);continue}if(m=this.tokenizer.autolink(t)){t=t.substring(m.raw.length),r.push(m);continue}if(!this.state.inLink&&(m=this.tokenizer.url(t))){t=t.substring(m.raw.length),r.push(m);continue}let b=t;if((p=this.options.extensions)!=null&&p.startInline){let _=1/0;const w=t.slice(1);let S;this.options.extensions.startInline.forEach(C=>{S=C.call({lexer:this},w),typeof S=="number"&&S>=0&&(_=Math.min(_,S))}),_<1/0&&_>=0&&(b=t.substring(0,_+1))}if(m=this.tokenizer.inlineText(b)){t=t.substring(m.raw.length),m.raw.slice(-1)!=="_"&&(u=m.raw.slice(-1)),o=!0;const _=r.at(-1);(_==null?void 0:_.type)==="text"?(_.raw+=m.raw,_.text+=m.text):r.push(m);continue}if(t){const _="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(_);break}else throw new Error(_)}}return r}},t4e=class{constructor(e){Gi(this,"options");Gi(this,"parser");this.options=e||w$}space(e){return""}code({text:e,lang:t,escaped:r}){var o;const a=(o=(t||"").match(Xy.notSpaceStart))==null?void 0:o[0],s=e.replace(Xy.endingNewline,"")+` +`;return a?'
    '+(r?s:vC(s,!0))+`
    +`:"
    "+(r?s:vC(s,!0))+`
    +`}blockquote({tokens:e}){return`
    +${this.parser.parse(e)}
    +`}html({text:e}){return e}heading({tokens:e,depth:t}){return`${this.parser.parseInline(e)} +`}hr(e){return`
    +`}list(e){const t=e.ordered,r=e.start;let a="";for(let u=0;u +`+a+" +`}listitem(e){var r;let t="";if(e.task){const a=this.checkbox({checked:!!e.checked});e.loose?((r=e.tokens[0])==null?void 0:r.type)==="paragraph"?(e.tokens[0].text=a+" "+e.tokens[0].text,e.tokens[0].tokens&&e.tokens[0].tokens.length>0&&e.tokens[0].tokens[0].type==="text"&&(e.tokens[0].tokens[0].text=a+" "+vC(e.tokens[0].tokens[0].text),e.tokens[0].tokens[0].escaped=!0)):e.tokens.unshift({type:"text",raw:a+" ",text:a+" ",escaped:!0}):t+=a+" "}return t+=this.parser.parse(e.tokens,!!e.loose),`
  • ${t}
  • +`}checkbox({checked:e}){return"'}paragraph({tokens:e}){return`

    ${this.parser.parseInline(e)}

    +`}table(e){let t="",r="";for(let s=0;s${a}`),` + +`+t+` +`+a+`
    +`}tablerow({text:e}){return` +${e} +`}tablecell(e){const t=this.parser.parseInline(e.tokens),r=e.header?"th":"td";return(e.align?`<${r} align="${e.align}">`:`<${r}>`)+t+` +`}strong({tokens:e}){return`${this.parser.parseInline(e)}`}em({tokens:e}){return`${this.parser.parseInline(e)}`}codespan({text:e}){return`${vC(e,!0)}`}br(e){return"
    "}del({tokens:e}){return`${this.parser.parseInline(e)}`}link({href:e,title:t,tokens:r}){const a=this.parser.parseInline(r),s=X1n(e);if(s===null)return a;e=s;let o='
    ",o}image({href:e,title:t,text:r,tokens:a}){a&&(r=this.parser.parseInline(a,this.parser.textRenderer));const s=X1n(e);if(s===null)return vC(r);e=s;let o=`${r}{const f=u[h].flat(1/0);r=r.concat(this.walkTokens(f,t))}):u.tokens&&(r=r.concat(this.walkTokens(u.tokens,t)))}}return r}use(...e){const t=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(r=>{const a={...r};if(a.async=this.defaults.async||a.async||!1,r.extensions&&(r.extensions.forEach(s=>{if(!s.name)throw new Error("extension name required");if("renderer"in s){const o=t.renderers[s.name];o?t.renderers[s.name]=function(...u){let h=s.renderer.apply(this,u);return h===!1&&(h=o.apply(this,u)),h}:t.renderers[s.name]=s.renderer}if("tokenizer"in s){if(!s.level||s.level!=="block"&&s.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");const o=t[s.level];o?o.unshift(s.tokenizer):t[s.level]=[s.tokenizer],s.start&&(s.level==="block"?t.startBlock?t.startBlock.push(s.start):t.startBlock=[s.start]:s.level==="inline"&&(t.startInline?t.startInline.push(s.start):t.startInline=[s.start]))}"childTokens"in s&&s.childTokens&&(t.childTokens[s.name]=s.childTokens)}),a.extensions=t),r.renderer){const s=this.defaults.renderer||new t4e(this.defaults);for(const o in r.renderer){if(!(o in s))throw new Error(`renderer '${o}' does not exist`);if(["options","parser"].includes(o))continue;const u=o,h=r.renderer[u],f=s[u];s[u]=(...p)=>{let m=h.apply(s,p);return m===!1&&(m=f.apply(s,p)),m||""}}a.renderer=s}if(r.tokenizer){const s=this.defaults.tokenizer||new e4e(this.defaults);for(const o in r.tokenizer){if(!(o in s))throw new Error(`tokenizer '${o}' does not exist`);if(["options","rules","lexer"].includes(o))continue;const u=o,h=r.tokenizer[u],f=s[u];s[u]=(...p)=>{let m=h.apply(s,p);return m===!1&&(m=f.apply(s,p)),m}}a.tokenizer=s}if(r.hooks){const s=this.defaults.hooks||new jEe;for(const o in r.hooks){if(!(o in s))throw new Error(`hook '${o}' does not exist`);if(["options","block"].includes(o))continue;const u=o,h=r.hooks[u],f=s[u];jEe.passThroughHooks.has(o)?s[u]=p=>{if(this.defaults.async)return Promise.resolve(h.call(s,p)).then(b=>f.call(s,b));const m=h.call(s,p);return f.call(s,m)}:s[u]=(...p)=>{let m=h.apply(s,p);return m===!1&&(m=f.apply(s,p)),m}}a.hooks=s}if(r.walkTokens){const s=this.defaults.walkTokens,o=r.walkTokens;a.walkTokens=function(u){let h=[];return h.push(o.call(this,u)),s&&(h=h.concat(s.call(this,u))),h}}this.defaults={...this.defaults,...a}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,t){return x7.lex(e,t??this.defaults)}parser(e,t){return S7.parse(e,t??this.defaults)}parseMarkdown(e){return(r,a)=>{const s={...a},o={...this.defaults,...s},u=this.onError(!!o.silent,!!o.async);if(this.defaults.async===!0&&s.async===!1)return u(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 u(new Error("marked(): input parameter is undefined or null"));if(typeof r!="string")return u(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(r)+", string expected"));o.hooks&&(o.hooks.options=o,o.hooks.block=e);const h=o.hooks?o.hooks.provideLexer():e?x7.lex:x7.lexInline,f=o.hooks?o.hooks.provideParser():e?S7.parse:S7.parseInline;if(o.async)return Promise.resolve(o.hooks?o.hooks.preprocess(r):r).then(p=>h(p,o)).then(p=>o.hooks?o.hooks.processAllTokens(p):p).then(p=>o.walkTokens?Promise.all(this.walkTokens(p,o.walkTokens)).then(()=>p):p).then(p=>f(p,o)).then(p=>o.hooks?o.hooks.postprocess(p):p).catch(u);try{o.hooks&&(r=o.hooks.preprocess(r));let p=h(r,o);o.hooks&&(p=o.hooks.processAllTokens(p)),o.walkTokens&&this.walkTokens(p,o.walkTokens);let m=f(p,o);return o.hooks&&(m=o.hooks.postprocess(m)),m}catch(p){return u(p)}}}onError(e,t){return r=>{if(r.message+=` +Please report this to https://github.com/markedjs/marked.`,e){const a="

    An error occurred:

    "+vC(r.message+"",!0)+"
    ";return t?Promise.resolve(a):a}if(t)return Promise.reject(r);throw r}}},RF=new HQr;function _h(e,t){return RF.parse(e,t)}_h.options=_h.setOptions=function(e){return RF.setOptions(e),_h.defaults=RF.defaults,u9n(_h.defaults),_h};_h.getDefaults=f0t;_h.defaults=w$;_h.use=function(...e){return RF.use(...e),_h.defaults=RF.defaults,u9n(_h.defaults),_h};_h.walkTokens=function(e,t){return RF.walkTokens(e,t)};_h.parseInline=RF.parseInline;_h.Parser=S7;_h.parser=S7.parse;_h.Renderer=t4e;_h.TextRenderer=w0t;_h.Lexer=x7;_h.lexer=x7.lex;_h.Tokenizer=e4e;_h.Hooks=jEe;_h.parse=_h;_h.options;_h.setOptions;_h.use;_h.walkTokens;_h.parseInline;S7.parse;x7.lex;/*! @license DOMPurify 3.3.1 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.1/LICENSE */const{entries:w9n,setPrototypeOf:J1n,isFrozen:VQr,getPrototypeOf:YQr,getOwnPropertyDescriptor:jQr}=Object;let{freeze:sv,seal:vS,create:oot}=Object,{apply:lot,construct:cot}=typeof Reflect<"u"&&Reflect;sv||(sv=function(t){return t});vS||(vS=function(t){return t});lot||(lot=function(t,r){for(var a=arguments.length,s=new Array(a>2?a-2:0),o=2;o1?r-1:0),s=1;s1?r-1:0),s=1;s2&&arguments[2]!==void 0?arguments[2]:WEe;J1n&&J1n(e,null);let a=t.length;for(;a--;){let s=t[a];if(typeof s=="string"){const o=r(s);o!==s&&(VQr(t)||(t[a]=o),s=o)}e[s]=!0}return e}function JQr(e){for(let t=0;t/gm),iZr=vS(/\$\{[\w\W]*/gm),aZr=vS(/^data-[\-\w.\u00B7-\uFFFF]+$/),sZr=vS(/^aria-[\-\w]+$/),E9n=vS(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),oZr=vS(/^(?:\w+script|data):/i),lZr=vS(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),x9n=vS(/^html$/i),cZr=vS(/^[a-z][.\w]*(-[.\w]+)+$/i);var apn=Object.freeze({__proto__:null,ARIA_ATTR:sZr,ATTR_WHITESPACE:lZr,CUSTOM_ELEMENT:cZr,DATA_ATTR:aZr,DOCTYPE_NAME:x9n,ERB_EXPR:rZr,IS_ALLOWED_URI:E9n,IS_SCRIPT_OR_DATA:oZr,MUSTACHE_EXPR:nZr,TMPLIT_EXPR:iZr});const Ore={element:1,text:3,progressingInstruction:7,comment:8,document:9},uZr=function(){return typeof window>"u"?null:window},hZr=function(t,r){if(typeof t!="object"||typeof t.createPolicy!="function")return null;let a=null;const s="data-tt-policy-suffix";r&&r.hasAttribute(s)&&(a=r.getAttribute(s));const o="dompurify"+(a?"#"+a:"");try{return t.createPolicy(o,{createHTML(u){return u},createScriptURL(u){return u}})}catch{return console.warn("TrustedTypes policy "+o+" could not be created."),null}},spn=function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}};function S9n(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:uZr();const t=Pt=>S9n(Pt);if(t.version="3.3.1",t.removed=[],!e||!e.document||e.document.nodeType!==Ore.document||!e.Element)return t.isSupported=!1,t;let{document:r}=e;const a=r,s=a.currentScript,{DocumentFragment:o,HTMLTemplateElement:u,Node:h,Element:f,NodeFilter:p,NamedNodeMap:m=e.NamedNodeMap||e.MozNamedAttrMap,HTMLFormElement:b,DOMParser:_,trustedTypes:w}=e,S=f.prototype,C=Nre(S,"cloneNode"),A=Nre(S,"remove"),k=Nre(S,"nextSibling"),I=Nre(S,"childNodes"),N=Nre(S,"parentNode");if(typeof u=="function"){const Pt=r.createElement("template");Pt.content&&Pt.content.ownerDocument&&(r=Pt.content.ownerDocument)}let L,P="";const{implementation:M,createNodeIterator:F,createDocumentFragment:U,getElementsByTagName:$}=r,{importNode:G}=a;let B=spn();t.isSupported=typeof w9n=="function"&&typeof N=="function"&&M&&M.createHTMLDocument!==void 0;const{MUSTACHE_EXPR:Z,ERB_EXPR:z,TMPLIT_EXPR:Y,DATA_ATTR:W,ARIA_ATTR:Q,IS_SCRIPT_OR_DATA:V,ATTR_WHITESPACE:j,CUSTOM_ELEMENT:ee}=apn;let{IS_ALLOWED_URI:te}=apn,ne=null;const se=Jl({},[...tpn,...SQe,...TQe,...CQe,...npn]);let ie=null;const ge=Jl({},[...rpn,...AQe,...ipn,...$_e]);let ce=Object.seal(oot(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),be=null,ve=null;const De=Object.seal(oot(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}}));let ye=!0,Ee=!0,he=!1,we=!0,Ce=!1,Ie=!0,Le=!1,Fe=!1,Ve=!1,Oe=!1,Dt=!1,ot=!1,sn=!0,Kt=!1;const Ft="user-content-";let Je=!0,ht=!1,et={},qe=null;const He=Jl({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let Ge=null;const Ye=Jl({},["audio","video","img","source","image","track"]);let Ae=null;const Xe=Jl({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),fe="http://www.w3.org/1998/Math/MathML",Qe="http://www.w3.org/2000/svg",Ke="http://www.w3.org/1999/xhtml";let mt=Ke,lt=!1,$t=null;const Ut=Jl({},[fe,Qe,Ke],EQe);let Jt=Jl({},["mi","mo","mn","ms","mtext"]),wn=Jl({},["annotation-xml"]);const Vn=Jl({},["title","style","font","a","script"]);let Wn=null;const Dn=["application/xhtml+xml","text/html"],zn="text/html";let vn=null,Cn=null;const Ar=r.createElement("form"),ur=function(St){return St instanceof RegExp||St instanceof Function},On=function(){let St=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!(Cn&&Cn===St)){if((!St||typeof St!="object")&&(St={}),St=_C(St),Wn=Dn.indexOf(St.PARSER_MEDIA_TYPE)===-1?zn:St.PARSER_MEDIA_TYPE,vn=Wn==="application/xhtml+xml"?EQe:WEe,ne=x3(St,"ALLOWED_TAGS")?Jl({},St.ALLOWED_TAGS,vn):se,ie=x3(St,"ALLOWED_ATTR")?Jl({},St.ALLOWED_ATTR,vn):ge,$t=x3(St,"ALLOWED_NAMESPACES")?Jl({},St.ALLOWED_NAMESPACES,EQe):Ut,Ae=x3(St,"ADD_URI_SAFE_ATTR")?Jl(_C(Xe),St.ADD_URI_SAFE_ATTR,vn):Xe,Ge=x3(St,"ADD_DATA_URI_TAGS")?Jl(_C(Ye),St.ADD_DATA_URI_TAGS,vn):Ye,qe=x3(St,"FORBID_CONTENTS")?Jl({},St.FORBID_CONTENTS,vn):He,be=x3(St,"FORBID_TAGS")?Jl({},St.FORBID_TAGS,vn):_C({}),ve=x3(St,"FORBID_ATTR")?Jl({},St.FORBID_ATTR,vn):_C({}),et=x3(St,"USE_PROFILES")?St.USE_PROFILES:!1,ye=St.ALLOW_ARIA_ATTR!==!1,Ee=St.ALLOW_DATA_ATTR!==!1,he=St.ALLOW_UNKNOWN_PROTOCOLS||!1,we=St.ALLOW_SELF_CLOSE_IN_ATTR!==!1,Ce=St.SAFE_FOR_TEMPLATES||!1,Ie=St.SAFE_FOR_XML!==!1,Le=St.WHOLE_DOCUMENT||!1,Oe=St.RETURN_DOM||!1,Dt=St.RETURN_DOM_FRAGMENT||!1,ot=St.RETURN_TRUSTED_TYPE||!1,Ve=St.FORCE_BODY||!1,sn=St.SANITIZE_DOM!==!1,Kt=St.SANITIZE_NAMED_PROPS||!1,Je=St.KEEP_CONTENT!==!1,ht=St.IN_PLACE||!1,te=St.ALLOWED_URI_REGEXP||E9n,mt=St.NAMESPACE||Ke,Jt=St.MATHML_TEXT_INTEGRATION_POINTS||Jt,wn=St.HTML_INTEGRATION_POINTS||wn,ce=St.CUSTOM_ELEMENT_HANDLING||{},St.CUSTOM_ELEMENT_HANDLING&&ur(St.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(ce.tagNameCheck=St.CUSTOM_ELEMENT_HANDLING.tagNameCheck),St.CUSTOM_ELEMENT_HANDLING&&ur(St.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(ce.attributeNameCheck=St.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),St.CUSTOM_ELEMENT_HANDLING&&typeof St.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(ce.allowCustomizedBuiltInElements=St.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),Ce&&(Ee=!1),Dt&&(Oe=!0),et&&(ne=Jl({},npn),ie=[],et.html===!0&&(Jl(ne,tpn),Jl(ie,rpn)),et.svg===!0&&(Jl(ne,SQe),Jl(ie,AQe),Jl(ie,$_e)),et.svgFilters===!0&&(Jl(ne,TQe),Jl(ie,AQe),Jl(ie,$_e)),et.mathMl===!0&&(Jl(ne,CQe),Jl(ie,ipn),Jl(ie,$_e))),St.ADD_TAGS&&(typeof St.ADD_TAGS=="function"?De.tagCheck=St.ADD_TAGS:(ne===se&&(ne=_C(ne)),Jl(ne,St.ADD_TAGS,vn))),St.ADD_ATTR&&(typeof St.ADD_ATTR=="function"?De.attributeCheck=St.ADD_ATTR:(ie===ge&&(ie=_C(ie)),Jl(ie,St.ADD_ATTR,vn))),St.ADD_URI_SAFE_ATTR&&Jl(Ae,St.ADD_URI_SAFE_ATTR,vn),St.FORBID_CONTENTS&&(qe===He&&(qe=_C(qe)),Jl(qe,St.FORBID_CONTENTS,vn)),St.ADD_FORBID_CONTENTS&&(qe===He&&(qe=_C(qe)),Jl(qe,St.ADD_FORBID_CONTENTS,vn)),Je&&(ne["#text"]=!0),Le&&Jl(ne,["html","head","body"]),ne.table&&(Jl(ne,["tbody"]),delete be.tbody),St.TRUSTED_TYPES_POLICY){if(typeof St.TRUSTED_TYPES_POLICY.createHTML!="function")throw Ire('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof St.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw Ire('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');L=St.TRUSTED_TYPES_POLICY,P=L.createHTML("")}else L===void 0&&(L=hZr(w,s)),L!==null&&typeof P=="string"&&(P=L.createHTML(""));sv&&sv(St),Cn=St}},Ir=Jl({},[...SQe,...TQe,...eZr]),Ln=Jl({},[...CQe,...tZr]),pr=function(St){let Un=N(St);(!Un||!Un.tagName)&&(Un={namespaceURI:mt,tagName:"template"});const Hr=WEe(St.tagName),za=WEe(Un.tagName);return $t[St.namespaceURI]?St.namespaceURI===Qe?Un.namespaceURI===Ke?Hr==="svg":Un.namespaceURI===fe?Hr==="svg"&&(za==="annotation-xml"||Jt[za]):!!Ir[Hr]:St.namespaceURI===fe?Un.namespaceURI===Ke?Hr==="math":Un.namespaceURI===Qe?Hr==="math"&&wn[za]:!!Ln[Hr]:St.namespaceURI===Ke?Un.namespaceURI===Qe&&!wn[za]||Un.namespaceURI===fe&&!Jt[za]?!1:!Ln[Hr]&&(Vn[Hr]||!Ir[Hr]):!!(Wn==="application/xhtml+xml"&&$t[St.namespaceURI]):!1},Cr=function(St){kre(t.removed,{element:St});try{N(St).removeChild(St)}catch{A(St)}},Zr=function(St,Un){try{kre(t.removed,{attribute:Un.getAttributeNode(St),from:Un})}catch{kre(t.removed,{attribute:null,from:Un})}if(Un.removeAttribute(St),St==="is")if(Oe||Dt)try{Cr(Un)}catch{}else try{Un.setAttribute(St,"")}catch{}},Pr=function(St){let Un=null,Hr=null;if(Ve)St=""+St;else{const Vr=xQe(St,/^[\r\n\t ]+/);Hr=Vr&&Vr[0]}Wn==="application/xhtml+xml"&&mt===Ke&&(St=''+St+"");const za=L?L.createHTML(St):St;if(mt===Ke)try{Un=new _().parseFromString(za,Wn)}catch{}if(!Un||!Un.documentElement){Un=M.createDocument(mt,"template",null);try{Un.documentElement.innerHTML=lt?P:za}catch{}}const Rs=Un.body||Un.documentElement;return St&&Hr&&Rs.insertBefore(r.createTextNode(Hr),Rs.childNodes[0]||null),mt===Ke?$.call(Un,Le?"html":"body")[0]:Le?Un.documentElement:Rs},Ci=function(St){return F.call(St.ownerDocument||St,St,p.SHOW_ELEMENT|p.SHOW_COMMENT|p.SHOW_TEXT|p.SHOW_PROCESSING_INSTRUCTION|p.SHOW_CDATA_SECTION,null)},ds=function(St){return St instanceof b&&(typeof St.nodeName!="string"||typeof St.textContent!="string"||typeof St.removeChild!="function"||!(St.attributes instanceof m)||typeof St.removeAttribute!="function"||typeof St.setAttribute!="function"||typeof St.namespaceURI!="string"||typeof St.insertBefore!="function"||typeof St.hasChildNodes!="function")},ta=function(St){return typeof h=="function"&&St instanceof h};function Os(Pt,St,Un){F_e(Pt,Hr=>{Hr.call(t,St,Un,Cn)})}const uo=function(St){let Un=null;if(Os(B.beforeSanitizeElements,St,null),ds(St))return Cr(St),!0;const Hr=vn(St.nodeName);if(Os(B.uponSanitizeElement,St,{tagName:Hr,allowedTags:ne}),Ie&&St.hasChildNodes()&&!ta(St.firstElementChild)&&My(/<[/\w!]/g,St.innerHTML)&&My(/<[/\w!]/g,St.textContent)||St.nodeType===Ore.progressingInstruction||Ie&&St.nodeType===Ore.comment&&My(/<[/\w]/g,St.data))return Cr(St),!0;if(!(De.tagCheck instanceof Function&&De.tagCheck(Hr))&&(!ne[Hr]||be[Hr])){if(!be[Hr]&&La(Hr)&&(ce.tagNameCheck instanceof RegExp&&My(ce.tagNameCheck,Hr)||ce.tagNameCheck instanceof Function&&ce.tagNameCheck(Hr)))return!1;if(Je&&!qe[Hr]){const za=N(St)||St.parentNode,Rs=I(St)||St.childNodes;if(Rs&&za){const Vr=Rs.length;for(let Ii=Vr-1;Ii>=0;--Ii){const Pa=C(Rs[Ii],!0);Pa.__removalCount=(St.__removalCount||0)+1,za.insertBefore(Pa,k(St))}}}return Cr(St),!0}return St instanceof f&&!pr(St)||(Hr==="noscript"||Hr==="noembed"||Hr==="noframes")&&My(/<\/no(script|embed|frames)/i,St.innerHTML)?(Cr(St),!0):(Ce&&St.nodeType===Ore.text&&(Un=St.textContent,F_e([Z,z,Y],za=>{Un=Rre(Un,za," ")}),St.textContent!==Un&&(kre(t.removed,{element:St.cloneNode()}),St.textContent=Un)),Os(B.afterSanitizeElements,St,null),!1)},Ls=function(St,Un,Hr){if(sn&&(Un==="id"||Un==="name")&&(Hr in r||Hr in Ar))return!1;if(!(Ee&&!ve[Un]&&My(W,Un))){if(!(ye&&My(Q,Un))){if(!(De.attributeCheck instanceof Function&&De.attributeCheck(Un,St))){if(!ie[Un]||ve[Un]){if(!(La(St)&&(ce.tagNameCheck instanceof RegExp&&My(ce.tagNameCheck,St)||ce.tagNameCheck instanceof Function&&ce.tagNameCheck(St))&&(ce.attributeNameCheck instanceof RegExp&&My(ce.attributeNameCheck,Un)||ce.attributeNameCheck instanceof Function&&ce.attributeNameCheck(Un,St))||Un==="is"&&ce.allowCustomizedBuiltInElements&&(ce.tagNameCheck instanceof RegExp&&My(ce.tagNameCheck,Hr)||ce.tagNameCheck instanceof Function&&ce.tagNameCheck(Hr))))return!1}else if(!Ae[Un]){if(!My(te,Rre(Hr,j,""))){if(!((Un==="src"||Un==="xlink:href"||Un==="href")&&St!=="script"&&XQr(Hr,"data:")===0&&Ge[St])){if(!(he&&!My(V,Rre(Hr,j,"")))){if(Hr)return!1}}}}}}}return!0},La=function(St){return St!=="annotation-xml"&&xQe(St,ee)},to=function(St){Os(B.beforeSanitizeAttributes,St,null);const{attributes:Un}=St;if(!Un||ds(St))return;const Hr={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:ie,forceKeepAttr:void 0};let za=Un.length;for(;za--;){const Rs=Un[za],{name:Vr,namespaceURI:Ii,value:Pa}=Rs,Or=vn(Vr),no=Pa;let dt=Vr==="value"?no:QQr(no);if(Hr.attrName=Or,Hr.attrValue=dt,Hr.keepAttr=!0,Hr.forceKeepAttr=void 0,Os(B.uponSanitizeAttribute,St,Hr),dt=Hr.attrValue,Kt&&(Or==="id"||Or==="name")&&(Zr(Vr,St),dt=Ft+dt),Ie&&My(/((--!?|])>)|<\/(style|title|textarea)/i,dt)){Zr(Vr,St);continue}if(Or==="attributename"&&xQe(dt,"href")){Zr(Vr,St);continue}if(Hr.forceKeepAttr)continue;if(!Hr.keepAttr){Zr(Vr,St);continue}if(!we&&My(/\/>/i,dt)){Zr(Vr,St);continue}Ce&&F_e([Z,z,Y],Tt=>{dt=Rre(dt,Tt," ")});const Wi=vn(St.nodeName);if(!Ls(Wi,Or,dt)){Zr(Vr,St);continue}if(L&&typeof w=="object"&&typeof w.getAttributeType=="function"&&!Ii)switch(w.getAttributeType(Wi,Or)){case"TrustedHTML":{dt=L.createHTML(dt);break}case"TrustedScriptURL":{dt=L.createScriptURL(dt);break}}if(dt!==no)try{Ii?St.setAttributeNS(Ii,Vr,dt):St.setAttribute(Vr,dt),ds(St)?Cr(St):epn(t.removed)}catch{Zr(Vr,St)}}Os(B.afterSanitizeAttributes,St,null)},Fi=function Pt(St){let Un=null;const Hr=Ci(St);for(Os(B.beforeSanitizeShadowDOM,St,null);Un=Hr.nextNode();)Os(B.uponSanitizeShadowNode,Un,null),uo(Un),to(Un),Un.content instanceof o&&Pt(Un.content);Os(B.afterSanitizeShadowDOM,St,null)};return t.sanitize=function(Pt){let St=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},Un=null,Hr=null,za=null,Rs=null;if(lt=!Pt,lt&&(Pt=""),typeof Pt!="string"&&!ta(Pt))if(typeof Pt.toString=="function"){if(Pt=Pt.toString(),typeof Pt!="string")throw Ire("dirty is not a string, aborting")}else throw Ire("toString is not a function");if(!t.isSupported)return Pt;if(Fe||On(St),t.removed=[],typeof Pt=="string"&&(ht=!1),ht){if(Pt.nodeName){const Pa=vn(Pt.nodeName);if(!ne[Pa]||be[Pa])throw Ire("root node is forbidden and cannot be sanitized in-place")}}else if(Pt instanceof h)Un=Pr(""),Hr=Un.ownerDocument.importNode(Pt,!0),Hr.nodeType===Ore.element&&Hr.nodeName==="BODY"||Hr.nodeName==="HTML"?Un=Hr:Un.appendChild(Hr);else{if(!Oe&&!Ce&&!Le&&Pt.indexOf("<")===-1)return L&&ot?L.createHTML(Pt):Pt;if(Un=Pr(Pt),!Un)return Oe?null:ot?P:""}Un&&Ve&&Cr(Un.firstChild);const Vr=Ci(ht?Pt:Un);for(;za=Vr.nextNode();)uo(za),to(za),za.content instanceof o&&Fi(za.content);if(ht)return Pt;if(Oe){if(Dt)for(Rs=U.call(Un.ownerDocument);Un.firstChild;)Rs.appendChild(Un.firstChild);else Rs=Un;return(ie.shadowroot||ie.shadowrootmode)&&(Rs=G.call(a,Rs,!0)),Rs}let Ii=Le?Un.outerHTML:Un.innerHTML;return Le&&ne["!doctype"]&&Un.ownerDocument&&Un.ownerDocument.doctype&&Un.ownerDocument.doctype.name&&My(x9n,Un.ownerDocument.doctype.name)&&(Ii=" +`+Ii),Ce&&F_e([Z,z,Y],Pa=>{Ii=Rre(Ii,Pa," ")}),L&&ot?L.createHTML(Ii):Ii},t.setConfig=function(){let Pt=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};On(Pt),Fe=!0},t.clearConfig=function(){Cn=null,Fe=!1},t.isValidAttribute=function(Pt,St,Un){Cn||On({});const Hr=vn(Pt),za=vn(St);return Ls(Hr,za,Un)},t.addHook=function(Pt,St){typeof St=="function"&&kre(B[Pt],St)},t.removeHook=function(Pt,St){if(St!==void 0){const Un=WQr(B[Pt],St);return Un===-1?void 0:KQr(B[Pt],Un,1)[0]}return epn(B[Pt])},t.removeHooks=function(Pt){B[Pt]=[]},t.removeAllHooks=function(){B=spn()},t}var Sj=S9n(),T9n={},E0t={},x0t={},E$={},S0t={},T0t={};(function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.Doctype=e.CDATA=e.Tag=e.Style=e.Script=e.Comment=e.Directive=e.Text=e.Root=e.isTag=e.ElementType=void 0;var t;(function(a){a.Root="root",a.Text="text",a.Directive="directive",a.Comment="comment",a.Script="script",a.Style="style",a.Tag="tag",a.CDATA="cdata",a.Doctype="doctype"})(t=e.ElementType||(e.ElementType={}));function r(a){return a.type===t.Tag||a.type===t.Script||a.type===t.Style}e.isTag=r,e.Root=t.Root,e.Text=t.Text,e.Directive=t.Directive,e.Comment=t.Comment,e.Script=t.Script,e.Style=t.Style,e.Tag=t.Tag,e.CDATA=t.CDATA,e.Doctype=t.Doctype})(T0t);var uc={},N9=ml&&ml.__extends||function(){var e=function(t,r){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(a,s){a.__proto__=s}||function(a,s){for(var o in s)Object.prototype.hasOwnProperty.call(s,o)&&(a[o]=s[o])},e(t,r)};return function(t,r){if(typeof r!="function"&&r!==null)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");e(t,r);function a(){this.constructor=t}t.prototype=r===null?Object.create(r):(a.prototype=r.prototype,new a)}}(),rse=ml&&ml.__assign||function(){return rse=Object.assign||function(e){for(var t,r=1,a=arguments.length;r0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.children},set:function(r){this.children=r},enumerable:!1,configurable:!0}),t}(C0t);uc.NodeWithChildren=qCe;var R9n=function(e){N9(t,e);function t(){var r=e!==null&&e.apply(this,arguments)||this;return r.type=Q2.ElementType.CDATA,r}return Object.defineProperty(t.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),t}(qCe);uc.CDATA=R9n;var I9n=function(e){N9(t,e);function t(){var r=e!==null&&e.apply(this,arguments)||this;return r.type=Q2.ElementType.Root,r}return Object.defineProperty(t.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),t}(qCe);uc.Document=I9n;var N9n=function(e){N9(t,e);function t(r,a,s,o){s===void 0&&(s=[]),o===void 0&&(o=r==="script"?Q2.ElementType.Script:r==="style"?Q2.ElementType.Style:Q2.ElementType.Tag);var u=e.call(this,s)||this;return u.name=r,u.attribs=a,u.type=o,u}return Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"tagName",{get:function(){return this.name},set:function(r){this.name=r},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){var r=this;return Object.keys(this.attribs).map(function(a){var s,o;return{name:a,value:r.attribs[a],namespace:(s=r["x-attribsNamespace"])===null||s===void 0?void 0:s[a],prefix:(o=r["x-attribsPrefix"])===null||o===void 0?void 0:o[a]}})},enumerable:!1,configurable:!0}),t}(qCe);uc.Element=N9n;function O9n(e){return(0,Q2.isTag)(e)}uc.isTag=O9n;function L9n(e){return e.type===Q2.ElementType.CDATA}uc.isCDATA=L9n;function D9n(e){return e.type===Q2.ElementType.Text}uc.isText=D9n;function M9n(e){return e.type===Q2.ElementType.Comment}uc.isComment=M9n;function P9n(e){return e.type===Q2.ElementType.Directive}uc.isDirective=P9n;function B9n(e){return e.type===Q2.ElementType.Root}uc.isDocument=B9n;function dZr(e){return Object.prototype.hasOwnProperty.call(e,"children")}uc.hasChildren=dZr;function A0t(e,t){t===void 0&&(t=!1);var r;if(D9n(e))r=new C9n(e.data);else if(M9n(e))r=new A9n(e.data);else if(O9n(e)){var a=t?kQe(e.children):[],s=new N9n(e.name,rse({},e.attribs),a);a.forEach(function(f){return f.parent=s}),e.namespace!=null&&(s.namespace=e.namespace),e["x-attribsNamespace"]&&(s["x-attribsNamespace"]=rse({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(s["x-attribsPrefix"]=rse({},e["x-attribsPrefix"])),r=s}else if(L9n(e)){var a=t?kQe(e.children):[],o=new R9n(a);a.forEach(function(p){return p.parent=o}),r=o}else if(B9n(e)){var a=t?kQe(e.children):[],u=new I9n(a);a.forEach(function(p){return p.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),r=u}else if(P9n(e)){var h=new k9n(e.name,e.data);e["x-name"]!=null&&(h["x-name"]=e["x-name"],h["x-publicId"]=e["x-publicId"],h["x-systemId"]=e["x-systemId"]),r=h}else throw new Error("Not implemented yet: ".concat(e.type));return r.startIndex=e.startIndex,r.endIndex=e.endIndex,e.sourceCodeLocation!=null&&(r.sourceCodeLocation=e.sourceCodeLocation),r}uc.cloneNode=A0t;function kQe(e){for(var t=e.map(function(a){return A0t(a,!0)}),r=1;r/i,upn=//i,n4e=function(e,t){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},uot=function(e,t){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")},hpn=typeof window=="object"&&window.DOMParser;if(typeof hpn=="function"){var yZr=new hpn,vZr="text/html";uot=function(e,t){return t&&(e="<".concat(t,">").concat(e,"")),yZr.parseFromString(e,vZr)},n4e=uot}if(typeof document=="object"&&document.implementation){var G_e=document.implementation.createHTMLDocument();n4e=function(e,t){if(t){var r=G_e.documentElement.querySelector(t);return r&&(r.innerHTML=e),G_e}return G_e.documentElement.innerHTML=e,G_e}}var q_e=typeof document=="object"&&document.createElement("template"),hot;q_e&&q_e.content&&(hot=function(e){return q_e.innerHTML=e,q_e.content.childNodes});function _Zr(e){var t,r;e=(0,mZr.escapeSpecialCharacters)(e);var a=e.match(bZr),s=a&&a[1]?a[1].toLowerCase():"";switch(s){case opn:{var o=uot(e);if(!cpn.test(e)){var u=o.querySelector(lpn);(t=u==null?void 0:u.parentNode)===null||t===void 0||t.removeChild(u)}if(!upn.test(e)){var u=o.querySelector(z_e);(r=u==null?void 0:u.parentNode)===null||r===void 0||r.removeChild(u)}return o.querySelectorAll(opn)}case lpn:case z_e:{var h=n4e(e).querySelectorAll(s);return upn.test(e)&&cpn.test(e)?h[0].parentNode.childNodes:h}default:{if(hot)return hot(e);var u=n4e(e,z_e).querySelector(z_e);return u.childNodes}}}var wZr=ml&&ml.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(E0t,"__esModule",{value:!0});E0t.default=TZr;var EZr=wZr(x0t),xZr=E$,SZr=/<(![a-zA-Z\s]+)>/;function TZr(e){if(typeof e!="string")throw new TypeError("First argument must be a string");if(!e)return[];var t=e.match(SZr),r=t?t[1]:void 0;return(0,xZr.formatDOM)((0,EZr.default)(e),null,r)}var HCe={},mT={},VCe={},CZr=0;VCe.SAME=CZr;var AZr=1;VCe.CAMELCASE=AZr;VCe.possibleStandardNames={accept:0,acceptCharset:1,"accept-charset":"acceptCharset",accessKey:1,action:0,allowFullScreen:1,alt:0,as:0,async:0,autoCapitalize:1,autoComplete:1,autoCorrect:1,autoFocus:1,autoPlay:1,autoSave:1,capture:0,cellPadding:1,cellSpacing:1,challenge:0,charSet:1,checked:0,children:0,cite:0,class:"className",classID:1,className:1,cols:0,colSpan:1,content:0,contentEditable:1,contextMenu:1,controls:0,controlsList:1,coords:0,crossOrigin:1,dangerouslySetInnerHTML:1,data:0,dateTime:1,default:0,defaultChecked:1,defaultValue:1,defer:0,dir:0,disabled:0,disablePictureInPicture:1,disableRemotePlayback:1,download:0,draggable:0,encType:1,enterKeyHint:1,for:"htmlFor",form:0,formMethod:1,formAction:1,formEncType:1,formNoValidate:1,formTarget:1,frameBorder:1,headers:0,height:0,hidden:0,high:0,href:0,hrefLang:1,htmlFor:1,httpEquiv:1,"http-equiv":"httpEquiv",icon:0,id:0,innerHTML:1,inputMode:1,integrity:0,is:0,itemID:1,itemProp:1,itemRef:1,itemScope:1,itemType:1,keyParams:1,keyType:1,kind:0,label:0,lang:0,list:0,loop:0,low:0,manifest:0,marginWidth:1,marginHeight:1,max:0,maxLength:1,media:0,mediaGroup:1,method:0,min:0,minLength:1,multiple:0,muted:0,name:0,noModule:1,nonce:0,noValidate:1,open:0,optimum:0,pattern:0,placeholder:0,playsInline:1,poster:0,preload:0,profile:0,radioGroup:1,readOnly:1,referrerPolicy:1,rel:0,required:0,reversed:0,role:0,rows:0,rowSpan:1,sandbox:0,scope:0,scoped:0,scrolling:0,seamless:0,selected:0,shape:0,size:0,sizes:0,span:0,spellCheck:1,src:0,srcDoc:1,srcLang:1,srcSet:1,start:0,step:0,style:0,summary:0,tabIndex:1,target:0,title:0,type:0,useMap:1,value:0,width:0,wmode:0,wrap:0,about:0,accentHeight:1,"accent-height":"accentHeight",accumulate:0,additive:0,alignmentBaseline:1,"alignment-baseline":"alignmentBaseline",allowReorder:1,alphabetic:0,amplitude:0,arabicForm:1,"arabic-form":"arabicForm",ascent:0,attributeName:1,attributeType:1,autoReverse:1,azimuth:0,baseFrequency:1,baselineShift:1,"baseline-shift":"baselineShift",baseProfile:1,bbox:0,begin:0,bias:0,by:0,calcMode:1,capHeight:1,"cap-height":"capHeight",clip:0,clipPath:1,"clip-path":"clipPath",clipPathUnits:1,clipRule:1,"clip-rule":"clipRule",color:0,colorInterpolation:1,"color-interpolation":"colorInterpolation",colorInterpolationFilters:1,"color-interpolation-filters":"colorInterpolationFilters",colorProfile:1,"color-profile":"colorProfile",colorRendering:1,"color-rendering":"colorRendering",contentScriptType:1,contentStyleType:1,cursor:0,cx:0,cy:0,d:0,datatype:0,decelerate:0,descent:0,diffuseConstant:1,direction:0,display:0,divisor:0,dominantBaseline:1,"dominant-baseline":"dominantBaseline",dur:0,dx:0,dy:0,edgeMode:1,elevation:0,enableBackground:1,"enable-background":"enableBackground",end:0,exponent:0,externalResourcesRequired:1,fill:0,fillOpacity:1,"fill-opacity":"fillOpacity",fillRule:1,"fill-rule":"fillRule",filter:0,filterRes:1,filterUnits:1,floodOpacity:1,"flood-opacity":"floodOpacity",floodColor:1,"flood-color":"floodColor",focusable:0,fontFamily:1,"font-family":"fontFamily",fontSize:1,"font-size":"fontSize",fontSizeAdjust:1,"font-size-adjust":"fontSizeAdjust",fontStretch:1,"font-stretch":"fontStretch",fontStyle:1,"font-style":"fontStyle",fontVariant:1,"font-variant":"fontVariant",fontWeight:1,"font-weight":"fontWeight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:1,"glyph-name":"glyphName",glyphOrientationHorizontal:1,"glyph-orientation-horizontal":"glyphOrientationHorizontal",glyphOrientationVertical:1,"glyph-orientation-vertical":"glyphOrientationVertical",glyphRef:1,gradientTransform:1,gradientUnits:1,hanging:0,horizAdvX:1,"horiz-adv-x":"horizAdvX",horizOriginX:1,"horiz-origin-x":"horizOriginX",ideographic:0,imageRendering:1,"image-rendering":"imageRendering",in2:0,in:0,inlist:0,intercept:0,k1:0,k2:0,k3:0,k4:0,k:0,kernelMatrix:1,kernelUnitLength:1,kerning:0,keyPoints:1,keySplines:1,keyTimes:1,lengthAdjust:1,letterSpacing:1,"letter-spacing":"letterSpacing",lightingColor:1,"lighting-color":"lightingColor",limitingConeAngle:1,local:0,markerEnd:1,"marker-end":"markerEnd",markerHeight:1,markerMid:1,"marker-mid":"markerMid",markerStart:1,"marker-start":"markerStart",markerUnits:1,markerWidth:1,mask:0,maskContentUnits:1,maskUnits:1,mathematical:0,mode:0,numOctaves:1,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:1,"overline-position":"overlinePosition",overlineThickness:1,"overline-thickness":"overlineThickness",paintOrder:1,"paint-order":"paintOrder",panose1:0,"panose-1":"panose1",pathLength:1,patternContentUnits:1,patternTransform:1,patternUnits:1,pointerEvents:1,"pointer-events":"pointerEvents",points:0,pointsAtX:1,pointsAtY:1,pointsAtZ:1,prefix:0,preserveAlpha:1,preserveAspectRatio:1,primitiveUnits:1,property:0,r:0,radius:0,refX:1,refY:1,renderingIntent:1,"rendering-intent":"renderingIntent",repeatCount:1,repeatDur:1,requiredExtensions:1,requiredFeatures:1,resource:0,restart:0,result:0,results:0,rotate:0,rx:0,ry:0,scale:0,security:0,seed:0,shapeRendering:1,"shape-rendering":"shapeRendering",slope:0,spacing:0,specularConstant:1,specularExponent:1,speed:0,spreadMethod:1,startOffset:1,stdDeviation:1,stemh:0,stemv:0,stitchTiles:1,stopColor:1,"stop-color":"stopColor",stopOpacity:1,"stop-opacity":"stopOpacity",strikethroughPosition:1,"strikethrough-position":"strikethroughPosition",strikethroughThickness:1,"strikethrough-thickness":"strikethroughThickness",string:0,stroke:0,strokeDasharray:1,"stroke-dasharray":"strokeDasharray",strokeDashoffset:1,"stroke-dashoffset":"strokeDashoffset",strokeLinecap:1,"stroke-linecap":"strokeLinecap",strokeLinejoin:1,"stroke-linejoin":"strokeLinejoin",strokeMiterlimit:1,"stroke-miterlimit":"strokeMiterlimit",strokeWidth:1,"stroke-width":"strokeWidth",strokeOpacity:1,"stroke-opacity":"strokeOpacity",suppressContentEditableWarning:1,suppressHydrationWarning:1,surfaceScale:1,systemLanguage:1,tableValues:1,targetX:1,targetY:1,textAnchor:1,"text-anchor":"textAnchor",textDecoration:1,"text-decoration":"textDecoration",textLength:1,textRendering:1,"text-rendering":"textRendering",to:0,transform:0,typeof:0,u1:0,u2:0,underlinePosition:1,"underline-position":"underlinePosition",underlineThickness:1,"underline-thickness":"underlineThickness",unicode:0,unicodeBidi:1,"unicode-bidi":"unicodeBidi",unicodeRange:1,"unicode-range":"unicodeRange",unitsPerEm:1,"units-per-em":"unitsPerEm",unselectable:0,vAlphabetic:1,"v-alphabetic":"vAlphabetic",values:0,vectorEffect:1,"vector-effect":"vectorEffect",version:0,vertAdvY:1,"vert-adv-y":"vertAdvY",vertOriginX:1,"vert-origin-x":"vertOriginX",vertOriginY:1,"vert-origin-y":"vertOriginY",vHanging:1,"v-hanging":"vHanging",vIdeographic:1,"v-ideographic":"vIdeographic",viewBox:1,viewTarget:1,visibility:0,vMathematical:1,"v-mathematical":"vMathematical",vocab:0,widths:0,wordSpacing:1,"word-spacing":"wordSpacing",writingMode:1,"writing-mode":"writingMode",x1:0,x2:0,x:0,xChannelSelector:1,xHeight:1,"x-height":"xHeight",xlinkActuate:1,"xlink:actuate":"xlinkActuate",xlinkArcrole:1,"xlink:arcrole":"xlinkArcrole",xlinkHref:1,"xlink:href":"xlinkHref",xlinkRole:1,"xlink:role":"xlinkRole",xlinkShow:1,"xlink:show":"xlinkShow",xlinkTitle:1,"xlink:title":"xlinkTitle",xlinkType:1,"xlink:type":"xlinkType",xmlBase:1,"xml:base":"xmlBase",xmlLang:1,"xml:lang":"xmlLang",xmlns:0,"xml:space":"xmlSpace",xmlnsXlink:1,"xmlns:xlink":"xmlnsXlink",xmlSpace:1,y1:0,y2:0,y:0,yChannelSelector:1,z:0,zoomAndPan:1};const G9n=0,O9=1,YCe=2,jCe=3,k0t=4,q9n=5,H9n=6;function kZr(e){return Rm.hasOwnProperty(e)?Rm[e]:null}function mv(e,t,r,a,s,o,u){this.acceptsBooleans=t===YCe||t===jCe||t===k0t,this.attributeName=a,this.attributeNamespace=s,this.mustUseProperty=r,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=u}const Rm={},RZr=["children","dangerouslySetInnerHTML","defaultValue","defaultChecked","innerHTML","suppressContentEditableWarning","suppressHydrationWarning","style"];RZr.forEach(e=>{Rm[e]=new mv(e,G9n,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(([e,t])=>{Rm[e]=new mv(e,O9,!1,t,null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(e=>{Rm[e]=new mv(e,YCe,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(e=>{Rm[e]=new mv(e,YCe,!1,e,null,!1,!1)});["allowFullScreen","async","autoFocus","autoPlay","controls","default","defer","disabled","disablePictureInPicture","disableRemotePlayback","formNoValidate","hidden","loop","noModule","noValidate","open","playsInline","readOnly","required","reversed","scoped","seamless","itemScope"].forEach(e=>{Rm[e]=new mv(e,jCe,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(e=>{Rm[e]=new mv(e,jCe,!0,e,null,!1,!1)});["capture","download"].forEach(e=>{Rm[e]=new mv(e,k0t,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(e=>{Rm[e]=new mv(e,H9n,!1,e,null,!1,!1)});["rowSpan","start"].forEach(e=>{Rm[e]=new mv(e,q9n,!1,e.toLowerCase(),null,!1,!1)});const R0t=/[\-\:]([a-z])/g,I0t=e=>e[1].toUpperCase();["accent-height","alignment-baseline","arabic-form","baseline-shift","cap-height","clip-path","clip-rule","color-interpolation","color-interpolation-filters","color-profile","color-rendering","dominant-baseline","enable-background","fill-opacity","fill-rule","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","glyph-name","glyph-orientation-horizontal","glyph-orientation-vertical","horiz-adv-x","horiz-origin-x","image-rendering","letter-spacing","lighting-color","marker-end","marker-mid","marker-start","overline-position","overline-thickness","paint-order","panose-1","pointer-events","rendering-intent","shape-rendering","stop-color","stop-opacity","strikethrough-position","strikethrough-thickness","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","text-anchor","text-decoration","text-rendering","underline-position","underline-thickness","unicode-bidi","unicode-range","units-per-em","v-alphabetic","v-hanging","v-ideographic","v-mathematical","vector-effect","vert-adv-y","vert-origin-x","vert-origin-y","word-spacing","writing-mode","xmlns:xlink","x-height"].forEach(e=>{const t=e.replace(R0t,I0t);Rm[t]=new mv(t,O9,!1,e,null,!1,!1)});["xlink:actuate","xlink:arcrole","xlink:role","xlink:show","xlink:title","xlink:type"].forEach(e=>{const t=e.replace(R0t,I0t);Rm[t]=new mv(t,O9,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(e=>{const t=e.replace(R0t,I0t);Rm[t]=new mv(t,O9,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(e=>{Rm[e]=new mv(e,O9,!1,e.toLowerCase(),null,!1,!1)});const IZr="xlinkHref";Rm[IZr]=new mv("xlinkHref",O9,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(e=>{Rm[e]=new mv(e,O9,!1,e.toLowerCase(),null,!0,!0)});const{CAMELCASE:NZr,SAME:OZr,possibleStandardNames:dpn}=VCe,LZr=":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",DZr=LZr+"\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",MZr=RegExp.prototype.test.bind(new RegExp("^(data|aria)-["+DZr+"]*$")),PZr=Object.keys(dpn).reduce((e,t)=>{const r=dpn[t];return r===OZr?e[t]=t:r===NZr?e[t.toLowerCase()]=t:e[t]=r,e},{});mT.BOOLEAN=jCe;mT.BOOLEANISH_STRING=YCe;mT.NUMERIC=q9n;mT.OVERLOADED_BOOLEAN=k0t;mT.POSITIVE_NUMERIC=H9n;mT.RESERVED=G9n;mT.STRING=O9;mT.getPropertyInfo=kZr;mT.isCustomAttribute=MZr;mT.possibleStandardNames=PZr;var N0t={};(function(e){var t=ml&&ml.__importDefault||function(m){return m&&m.__esModule?m:{default:m}};Object.defineProperty(e,"__esModule",{value:!0}),e.returnFirstArg=e.canTextBeChildOfNode=e.ELEMENTS_WITH_NO_TEXT_CHILDREN=e.PRESERVE_CUSTOM_ATTRIBUTES=void 0,e.isCustomComponent=o,e.setStyleProp=h;var r=ue,a=t(Izr),s=new Set(["annotation-xml","color-profile","font-face","font-face-src","font-face-uri","font-face-format","font-face-name","missing-glyph"]);function o(m,b){return m.includes("-")?!s.has(m):!!(b&&typeof b.is=="string")}var u={reactCompat:!0};function h(m,b){if(typeof m=="string"){if(!m.trim()){b.style={};return}try{b.style=(0,a.default)(m,u)}catch{b.style={}}}}e.PRESERVE_CUSTOM_ATTRIBUTES=Number(r.version.split(".")[0])>=16,e.ELEMENTS_WITH_NO_TEXT_CHILDREN=new Set(["tr","tbody","thead","tfoot","colgroup","table","head","html","frameset"]);var f=function(m){return!e.ELEMENTS_WITH_NO_TEXT_CHILDREN.has(m.name)};e.canTextBeChildOfNode=f;var p=function(m){return m};e.returnFirstArg=p})(N0t);Object.defineProperty(HCe,"__esModule",{value:!0});HCe.default=UZr;var Iie=mT,fpn=N0t,BZr=["checked","value"],FZr=["input","select","textarea"],$Zr={reset:!0,submit:!0};function UZr(e,t){e===void 0&&(e={});var r={},a=!!(e.type&&$Zr[e.type]);for(var s in e){var o=e[s];if((0,Iie.isCustomAttribute)(s)){r[s]=o;continue}var u=s.toLowerCase(),h=ppn(u);if(h){var f=(0,Iie.getPropertyInfo)(h);switch(BZr.includes(h)&&FZr.includes(t)&&!a&&(h=ppn("default"+u)),r[h]=o,f&&f.type){case Iie.BOOLEAN:r[h]=!0;break;case Iie.OVERLOADED_BOOLEAN:o===""&&(r[h]=!0);break}continue}fpn.PRESERVE_CUSTOM_ATTRIBUTES&&(r[s]=o)}return(0,fpn.setStyleProp)(e.style,r),r}function ppn(e){return Iie.possibleStandardNames[e]}var O0t={},zZr=ml&&ml.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(O0t,"__esModule",{value:!0});O0t.default=V9n;var RQe=ue,GZr=zZr(HCe),ise=N0t,qZr={cloneElement:RQe.cloneElement,createElement:RQe.createElement,isValidElement:RQe.isValidElement};function V9n(e,t){t===void 0&&(t={});for(var r=[],a=typeof t.replace=="function",s=t.transform||ise.returnFirstArg,o=t.library||qZr,u=o.cloneElement,h=o.createElement,f=o.isValidElement,p=e.length,m=0;m1&&(_=u(_,{key:_.key||m})),r.push(s(_,b,m));continue}}if(b.type==="text"){var w=!b.data.trim().length;if(w&&b.parent&&!(0,ise.canTextBeChildOfNode)(b.parent)||t.trim&&w)continue;r.push(s(b.data,b,m));continue}var S=b,C={};HZr(S)?((0,ise.setStyleProp)(S.attribs.style,S.attribs),C=S.attribs):S.attribs&&(C=(0,GZr.default)(S.attribs,S.name));var A=void 0;switch(b.type){case"script":case"style":b.children[0]&&(C.dangerouslySetInnerHTML={__html:b.children[0].data});break;case"tag":b.name==="textarea"&&b.children[0]?C.defaultValue=b.children[0].data:b.children&&b.children.length&&(A=V9n(b.children,t));break;default:continue}p>1&&(C.key=m),r.push(s(h(b.name,C,A),b,m))}return r.length===1?r[0]:r}function HZr(e){return ise.PRESERVE_CUSTOM_ATTRIBUTES&&e.type==="tag"&&(0,ise.isCustomComponent)(e.name,e.attribs)}(function(e){var t=ml&&ml.__importDefault||function(f){return f&&f.__esModule?f:{default:f}};Object.defineProperty(e,"__esModule",{value:!0}),e.htmlToDOM=e.domToReact=e.attributesToProps=e.Text=e.ProcessingInstruction=e.Element=e.Comment=void 0,e.default=h;var r=t(E0t);e.htmlToDOM=r.default;var a=t(HCe);e.attributesToProps=a.default;var s=t(O0t);e.domToReact=s.default;var o=S0t;Object.defineProperty(e,"Comment",{enumerable:!0,get:function(){return o.Comment}}),Object.defineProperty(e,"Element",{enumerable:!0,get:function(){return o.Element}}),Object.defineProperty(e,"ProcessingInstruction",{enumerable:!0,get:function(){return o.ProcessingInstruction}}),Object.defineProperty(e,"Text",{enumerable:!0,get:function(){return o.Text}});var u={lowerCaseAttributeNames:!1};function h(f,p){if(typeof f!="string")throw new TypeError("First argument must be a string");return f?(0,s.default)((0,r.default)(f,(p==null?void 0:p.htmlparser2)||u),p):[]}})(T9n);const gpn=O1(T9n),PTa=gpn.default||gpn;var Y9n={exports:{}};(function(e){function t(r){return r&&r.__esModule?r:{default:r}}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports})(Y9n);var BTa=Y9n.exports;function FTa(e){var t=LAn();return function(){var r,a=mSe(e);if(t){var s=mSe(this).constructor;r=Reflect.construct(a,arguments,s)}else r=a.apply(this,arguments);return MOr(this,r)}}function mpn(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter(function(s){return Object.getOwnPropertyDescriptor(e,s).enumerable})),r.push.apply(r,a)}return r}function AV(e){for(var t=1;t=4)return[e[0],e[1],e[2],e[3],"".concat(e[0],".").concat(e[1]),"".concat(e[0],".").concat(e[2]),"".concat(e[0],".").concat(e[3]),"".concat(e[1],".").concat(e[0]),"".concat(e[1],".").concat(e[2]),"".concat(e[1],".").concat(e[3]),"".concat(e[2],".").concat(e[0]),"".concat(e[2],".").concat(e[1]),"".concat(e[2],".").concat(e[3]),"".concat(e[3],".").concat(e[0]),"".concat(e[3],".").concat(e[1]),"".concat(e[3],".").concat(e[2]),"".concat(e[0],".").concat(e[1],".").concat(e[2]),"".concat(e[0],".").concat(e[1],".").concat(e[3]),"".concat(e[0],".").concat(e[2],".").concat(e[1]),"".concat(e[0],".").concat(e[2],".").concat(e[3]),"".concat(e[0],".").concat(e[3],".").concat(e[1]),"".concat(e[0],".").concat(e[3],".").concat(e[2]),"".concat(e[1],".").concat(e[0],".").concat(e[2]),"".concat(e[1],".").concat(e[0],".").concat(e[3]),"".concat(e[1],".").concat(e[2],".").concat(e[0]),"".concat(e[1],".").concat(e[2],".").concat(e[3]),"".concat(e[1],".").concat(e[3],".").concat(e[0]),"".concat(e[1],".").concat(e[3],".").concat(e[2]),"".concat(e[2],".").concat(e[0],".").concat(e[1]),"".concat(e[2],".").concat(e[0],".").concat(e[3]),"".concat(e[2],".").concat(e[1],".").concat(e[0]),"".concat(e[2],".").concat(e[1],".").concat(e[3]),"".concat(e[2],".").concat(e[3],".").concat(e[0]),"".concat(e[2],".").concat(e[3],".").concat(e[1]),"".concat(e[3],".").concat(e[0],".").concat(e[1]),"".concat(e[3],".").concat(e[0],".").concat(e[2]),"".concat(e[3],".").concat(e[1],".").concat(e[0]),"".concat(e[3],".").concat(e[1],".").concat(e[2]),"".concat(e[3],".").concat(e[2],".").concat(e[0]),"".concat(e[3],".").concat(e[2],".").concat(e[1]),"".concat(e[0],".").concat(e[1],".").concat(e[2],".").concat(e[3]),"".concat(e[0],".").concat(e[1],".").concat(e[3],".").concat(e[2]),"".concat(e[0],".").concat(e[2],".").concat(e[1],".").concat(e[3]),"".concat(e[0],".").concat(e[2],".").concat(e[3],".").concat(e[1]),"".concat(e[0],".").concat(e[3],".").concat(e[1],".").concat(e[2]),"".concat(e[0],".").concat(e[3],".").concat(e[2],".").concat(e[1]),"".concat(e[1],".").concat(e[0],".").concat(e[2],".").concat(e[3]),"".concat(e[1],".").concat(e[0],".").concat(e[3],".").concat(e[2]),"".concat(e[1],".").concat(e[2],".").concat(e[0],".").concat(e[3]),"".concat(e[1],".").concat(e[2],".").concat(e[3],".").concat(e[0]),"".concat(e[1],".").concat(e[3],".").concat(e[0],".").concat(e[2]),"".concat(e[1],".").concat(e[3],".").concat(e[2],".").concat(e[0]),"".concat(e[2],".").concat(e[0],".").concat(e[1],".").concat(e[3]),"".concat(e[2],".").concat(e[0],".").concat(e[3],".").concat(e[1]),"".concat(e[2],".").concat(e[1],".").concat(e[0],".").concat(e[3]),"".concat(e[2],".").concat(e[1],".").concat(e[3],".").concat(e[0]),"".concat(e[2],".").concat(e[3],".").concat(e[0],".").concat(e[1]),"".concat(e[2],".").concat(e[3],".").concat(e[1],".").concat(e[0]),"".concat(e[3],".").concat(e[0],".").concat(e[1],".").concat(e[2]),"".concat(e[3],".").concat(e[0],".").concat(e[2],".").concat(e[1]),"".concat(e[3],".").concat(e[1],".").concat(e[0],".").concat(e[2]),"".concat(e[3],".").concat(e[1],".").concat(e[2],".").concat(e[0]),"".concat(e[3],".").concat(e[2],".").concat(e[0],".").concat(e[1]),"".concat(e[3],".").concat(e[2],".").concat(e[1],".").concat(e[0])]}var IQe={};function YZr(e){if(e.length===0||e.length===1)return e;var t=e.join(".");return IQe[t]||(IQe[t]=VZr(e)),IQe[t]}function jZr(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,a=e.filter(function(o){return o!=="token"}),s=YZr(a);return s.reduce(function(o,u){return AV(AV({},o),r[u])},t)}function bpn(e){return e.join(" ")}function WZr(e,t){var r=0;return function(a){return r+=1,a.map(function(s,o){return j9n({node:s,stylesheet:e,useInlineStyles:t,key:"code-segment-".concat(r,"-").concat(o)})})}}function j9n(e){var t=e.node,r=e.stylesheet,a=e.style,s=a===void 0?{}:a,o=e.useInlineStyles,u=e.key,h=t.properties,f=t.type,p=t.tagName,m=t.value;if(f==="text")return m;if(p){var b=WZr(r,o),_;if(!o)_=AV(AV({},h),{},{className:bpn(h.className)});else{var w=Object.keys(r).reduce(function(k,I){return I.split(".").forEach(function(N){k.includes(N)||k.push(N)}),k},[]),S=h.className&&h.className.includes("token")?["token"]:[],C=h.className&&S.concat(h.className.filter(function(k){return!w.includes(k)}));_=AV(AV({},h),{},{className:bpn(C)||void 0,style:jZr(h.className,Object.assign({},h.style,s),r)})}var A=b(t.children);return Er.createElement(p,Pat({key:u},_),A)}}const KZr=function(e,t){var r=e.listLanguages();return r.indexOf(t)!==-1};var XZr=["language","children","style","customStyle","codeTagProps","useInlineStyles","showLineNumbers","showInlineLineNumbers","startingLineNumber","lineNumberContainerStyle","lineNumberStyle","wrapLines","wrapLongLines","lineProps","renderer","PreTag","CodeTag","code","astGenerator"];function ypn(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter(function(s){return Object.getOwnPropertyDescriptor(e,s).enumerable})),r.push.apply(r,a)}return r}function hO(e){for(var t=1;t1&&arguments[1]!==void 0?arguments[1]:[],r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[];e.length===void 0&&(e=[e]);for(var a=0;a2&&arguments[2]!==void 0?arguments[2]:[];return KEe({children:P,lineNumber:M,lineNumberStyle:h,largestLineNumber:u,showInlineLineNumbers:s,lineProps:r,className:F,showLineNumbers:a,wrapLongLines:f,wrapLines:t})}function C(P,M){if(a&&M&&s){var F=K9n(h,M,u);P.unshift(W9n(M,F))}return P}function A(P,M){var F=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[];return t||F.length>0?S(P,M,F):C(P,M)}for(var k=function(){var M=m[w],F=M.children[0].value,U=ZZr(F);if(U){var $=F.split(` +`);$.forEach(function(G,B){var Z=a&&b.length+o,z={type:"text",value:"".concat(G,` +`)};if(B===0){var Y=m.slice(_+1,w).concat(KEe({children:[z],className:M.properties.className})),W=A(Y,Z);b.push(W)}else if(B===$.length-1){var Q=m[w+1]&&m[w+1].children&&m[w+1].children[0],V={type:"text",value:"".concat(G)};if(Q){var j=KEe({children:[V],className:M.properties.className});m.splice(w+1,0,j)}else{var ee=[V],te=A(ee,Z,M.properties.className);b.push(te)}}else{var ne=[z],se=A(ne,Z,M.properties.className);b.push(se)}}),_=w}w++};w/g,">").replace(/"/g,""").replace(/'/g,"'")}function dO(e,...t){const r=Object.create(null);for(const a in e)r[a]=e[a];return t.forEach(function(a){for(const s in a)r[s]=a[s]}),r}const lJr="",_pn=e=>!!e.kind;class cJr{constructor(t,r){this.buffer="",this.classPrefix=r.classPrefix,t.walk(this)}addText(t){this.buffer+=YV(t)}openNode(t){if(!_pn(t))return;let r=t.kind;t.sublanguage||(r=`${this.classPrefix}${r}`),this.span(r)}closeNode(t){_pn(t)&&(this.buffer+=lJr)}value(){return this.buffer}span(t){this.buffer+=``}}class D0t{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(t){this.top.children.push(t)}openNode(t){const r={kind:t,children:[]};this.add(r),this.stack.push(r)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(t){return this.constructor._walk(t,this.rootNode)}static _walk(t,r){return typeof r=="string"?t.addText(r):r.children&&(t.openNode(r),r.children.forEach(a=>this._walk(t,a)),t.closeNode(r)),t}static _collapse(t){typeof t!="string"&&t.children&&(t.children.every(r=>typeof r=="string")?t.children=[t.children.join("")]:t.children.forEach(r=>{D0t._collapse(r)}))}}class uJr extends D0t{constructor(t){super(),this.options=t}addKeyword(t,r){t!==""&&(this.openNode(r),this.addText(t),this.closeNode())}addText(t){t!==""&&this.add(t)}addSublanguage(t,r){const a=t.root;a.kind=r,a.sublanguage=!0,this.add(a)}toHTML(){return new cJr(this,this.options).value()}finalize(){return!0}}function hJr(e){return new RegExp(e.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),"m")}function uoe(e){return e?typeof e=="string"?e:e.source:null}function dJr(...e){return e.map(r=>uoe(r)).join("")}function fJr(...e){return"("+e.map(r=>uoe(r)).join("|")+")"}function pJr(e){return new RegExp(e.toString()+"|").exec("").length-1}function gJr(e,t){const r=e&&e.exec(t);return r&&r.index===0}const mJr=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function bJr(e,t="|"){let r=0;return e.map(a=>{r+=1;const s=r;let o=uoe(a),u="";for(;o.length>0;){const h=mJr.exec(o);if(!h){u+=o;break}u+=o.substring(0,h.index),o=o.substring(h.index+h[0].length),h[0][0]==="\\"&&h[1]?u+="\\"+String(Number(h[1])+s):(u+=h[0],h[0]==="("&&r++)}return u}).map(a=>`(${a})`).join(t)}const yJr=/\b\B/,J9n="[a-zA-Z]\\w*",M0t="[a-zA-Z_]\\w*",P0t="\\b\\d+(\\.\\d+)?",eLn="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",tLn="\\b(0b[01]+)",vJr="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",_Jr=(e={})=>{const t=/^#![ ]*\//;return e.binary&&(e.begin=dJr(t,/.*\b/,e.binary,/\b.*/)),dO({className:"meta",begin:t,end:/$/,relevance:0,"on:begin":(r,a)=>{r.index!==0&&a.ignoreMatch()}},e)},hoe={begin:"\\\\[\\s\\S]",relevance:0},wJr={className:"string",begin:"'",end:"'",illegal:"\\n",contains:[hoe]},EJr={className:"string",begin:'"',end:'"',illegal:"\\n",contains:[hoe]},nLn={begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},WCe=function(e,t,r={}){const a=dO({className:"comment",begin:e,end:t,contains:[]},r);return a.contains.push(nLn),a.contains.push({className:"doctag",begin:"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):",relevance:0}),a},xJr=WCe("//","$"),SJr=WCe("/\\*","\\*/"),TJr=WCe("#","$"),CJr={className:"number",begin:P0t,relevance:0},AJr={className:"number",begin:eLn,relevance:0},kJr={className:"number",begin:tLn,relevance:0},RJr={className:"number",begin:P0t+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},IJr={begin:/(?=\/[^/\n]*\/)/,contains:[{className:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[hoe,{begin:/\[/,end:/\]/,relevance:0,contains:[hoe]}]}]},NJr={className:"title",begin:J9n,relevance:0},OJr={className:"title",begin:M0t,relevance:0},LJr={begin:"\\.\\s*"+M0t,relevance:0},DJr=function(e){return Object.assign(e,{"on:begin":(t,r)=>{r.data._beginMatch=t[1]},"on:end":(t,r)=>{r.data._beginMatch!==t[1]&&r.ignoreMatch()}})};var H_e=Object.freeze({__proto__:null,MATCH_NOTHING_RE:yJr,IDENT_RE:J9n,UNDERSCORE_IDENT_RE:M0t,NUMBER_RE:P0t,C_NUMBER_RE:eLn,BINARY_NUMBER_RE:tLn,RE_STARTERS_RE:vJr,SHEBANG:_Jr,BACKSLASH_ESCAPE:hoe,APOS_STRING_MODE:wJr,QUOTE_STRING_MODE:EJr,PHRASAL_WORDS_MODE:nLn,COMMENT:WCe,C_LINE_COMMENT_MODE:xJr,C_BLOCK_COMMENT_MODE:SJr,HASH_COMMENT_MODE:TJr,NUMBER_MODE:CJr,C_NUMBER_MODE:AJr,BINARY_NUMBER_MODE:kJr,CSS_NUMBER_MODE:RJr,REGEXP_MODE:IJr,TITLE_MODE:NJr,UNDERSCORE_TITLE_MODE:OJr,METHOD_GUARD:LJr,END_SAME_AS_BEGIN:DJr});function MJr(e,t){e.input[e.index-1]==="."&&t.ignoreMatch()}function PJr(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=MJr,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,e.relevance===void 0&&(e.relevance=0))}function BJr(e,t){Array.isArray(e.illegal)&&(e.illegal=fJr(...e.illegal))}function FJr(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function $Jr(e,t){e.relevance===void 0&&(e.relevance=1)}const UJr=["of","and","for","in","not","or","if","then","parent","list","value"],zJr="keyword";function rLn(e,t,r=zJr){const a={};return typeof e=="string"?s(r,e.split(" ")):Array.isArray(e)?s(r,e):Object.keys(e).forEach(function(o){Object.assign(a,rLn(e[o],t,o))}),a;function s(o,u){t&&(u=u.map(h=>h.toLowerCase())),u.forEach(function(h){const f=h.split("|");a[f[0]]=[o,GJr(f[0],f[1])]})}}function GJr(e,t){return t?Number(t):qJr(e)?0:1}function qJr(e){return UJr.includes(e.toLowerCase())}function HJr(e,{plugins:t}){function r(h,f){return new RegExp(uoe(h),"m"+(e.case_insensitive?"i":"")+(f?"g":""))}class a{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(f,p){p.position=this.position++,this.matchIndexes[this.matchAt]=p,this.regexes.push([p,f]),this.matchAt+=pJr(f)+1}compile(){this.regexes.length===0&&(this.exec=()=>null);const f=this.regexes.map(p=>p[1]);this.matcherRe=r(bJr(f),!0),this.lastIndex=0}exec(f){this.matcherRe.lastIndex=this.lastIndex;const p=this.matcherRe.exec(f);if(!p)return null;const m=p.findIndex((_,w)=>w>0&&_!==void 0),b=this.matchIndexes[m];return p.splice(0,m),Object.assign(p,b)}}class s{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(f){if(this.multiRegexes[f])return this.multiRegexes[f];const p=new a;return this.rules.slice(f).forEach(([m,b])=>p.addRule(m,b)),p.compile(),this.multiRegexes[f]=p,p}resumingScanAtSamePosition(){return this.regexIndex!==0}considerAll(){this.regexIndex=0}addRule(f,p){this.rules.push([f,p]),p.type==="begin"&&this.count++}exec(f){const p=this.getMatcher(this.regexIndex);p.lastIndex=this.lastIndex;let m=p.exec(f);if(this.resumingScanAtSamePosition()&&!(m&&m.index===this.lastIndex)){const b=this.getMatcher(0);b.lastIndex=this.lastIndex+1,m=b.exec(f)}return m&&(this.regexIndex+=m.position+1,this.regexIndex===this.count&&this.considerAll()),m}}function o(h){const f=new s;return h.contains.forEach(p=>f.addRule(p.begin,{rule:p,type:"begin"})),h.terminatorEnd&&f.addRule(h.terminatorEnd,{type:"end"}),h.illegal&&f.addRule(h.illegal,{type:"illegal"}),f}function u(h,f){const p=h;if(h.isCompiled)return p;[FJr].forEach(b=>b(h,f)),e.compilerExtensions.forEach(b=>b(h,f)),h.__beforeBegin=null,[PJr,BJr,$Jr].forEach(b=>b(h,f)),h.isCompiled=!0;let m=null;if(typeof h.keywords=="object"&&(m=h.keywords.$pattern,delete h.keywords.$pattern),h.keywords&&(h.keywords=rLn(h.keywords,e.case_insensitive)),h.lexemes&&m)throw new Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ");return m=m||h.lexemes||/\w+/,p.keywordPatternRe=r(m,!0),f&&(h.begin||(h.begin=/\B|\b/),p.beginRe=r(h.begin),h.endSameAsBegin&&(h.end=h.begin),!h.end&&!h.endsWithParent&&(h.end=/\B|\b/),h.end&&(p.endRe=r(h.end)),p.terminatorEnd=uoe(h.end)||"",h.endsWithParent&&f.terminatorEnd&&(p.terminatorEnd+=(h.end?"|":"")+f.terminatorEnd)),h.illegal&&(p.illegalRe=r(h.illegal)),h.contains||(h.contains=[]),h.contains=[].concat(...h.contains.map(function(b){return VJr(b==="self"?h:b)})),h.contains.forEach(function(b){u(b,p)}),h.starts&&u(h.starts,f),p.matcher=o(p),p}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=dO(e.classNameAliases||{}),u(e)}function iLn(e){return e?e.endsWithParent||iLn(e.starts):!1}function VJr(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map(function(t){return dO(e,{variants:null},t)})),e.cachedVariants?e.cachedVariants:iLn(e)?dO(e,{starts:e.starts?dO(e.starts):null}):Object.isFrozen(e)?dO(e):e}var YJr="10.7.3";function jJr(e){return!!(e||e==="")}function WJr(e){const t={props:["language","code","autodetect"],data:function(){return{detectedLanguage:"",unknownLanguage:!1}},computed:{className(){return this.unknownLanguage?"":"hljs "+this.detectedLanguage},highlighted(){if(!this.autoDetect&&!e.getLanguage(this.language))return console.warn(`The language "${this.language}" you specified could not be found.`),this.unknownLanguage=!0,YV(this.code);let a={};return this.autoDetect?(a=e.highlightAuto(this.code),this.detectedLanguage=a.language):(a=e.highlight(this.language,this.code,this.ignoreIllegals),this.detectedLanguage=this.language),a.value},autoDetect(){return!this.language||jJr(this.autodetect)},ignoreIllegals(){return!0}},render(a){return a("pre",{},[a("code",{class:this.className,domProps:{innerHTML:this.highlighted}})])}};return{Component:t,VuePlugin:{install(a){a.component("highlightjs",t)}}}}const KJr={"after:highlightElement":({el:e,result:t,text:r})=>{const a=wpn(e);if(!a.length)return;const s=document.createElement("div");s.innerHTML=t.value,t.value=XJr(a,wpn(s),r)}};function dot(e){return e.nodeName.toLowerCase()}function wpn(e){const t=[];return function r(a,s){for(let o=a.firstChild;o;o=o.nextSibling)o.nodeType===3?s+=o.nodeValue.length:o.nodeType===1&&(t.push({event:"start",offset:s,node:o}),s=r(o,s),dot(o).match(/br|hr|img|input/)||t.push({event:"stop",offset:s,node:o}));return s}(e,0),t}function XJr(e,t,r){let a=0,s="";const o=[];function u(){return!e.length||!t.length?e.length?e:t:e[0].offset!==t[0].offset?e[0].offset"}function f(m){s+=""}function p(m){(m.event==="start"?h:f)(m.node)}for(;e.length||t.length;){let m=u();if(s+=YV(r.substring(a,m[0].offset)),a=m[0].offset,m===e){o.reverse().forEach(f);do p(m.splice(0,1)[0]),m=u();while(m===e&&m.length&&m[0].offset===a);o.reverse().forEach(h)}else m[0].event==="start"?o.push(m[0].node):o.pop(),p(m.splice(0,1)[0])}return s+YV(r.substr(a))}const Epn={},NQe=e=>{console.error(e)},xpn=(e,...t)=>{console.log(`WARN: ${e}`,...t)},Mx=(e,t)=>{Epn[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),Epn[`${e}/${t}`]=!0)},OQe=YV,Spn=dO,Tpn=Symbol("nomatch"),QJr=function(e){const t=Object.create(null),r=Object.create(null),a=[];let s=!0;const o=/(^(<[^>]+>|\t|)+|\n)/gm,u="Could not find the language '{}', did you forget to load/include a language module?",h={disableAutodetect:!0,name:"Plain text",contains:[]};let f={noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:null,__emitter:uJr};function p(ie){return f.noHighlightRe.test(ie)}function m(ie){let ge=ie.className+" ";ge+=ie.parentNode?ie.parentNode.className:"";const ce=f.languageDetectRe.exec(ge);if(ce){const be=W(ce[1]);return be||(xpn(u.replace("{}",ce[1])),xpn("Falling back to no-highlight mode for this block.",ie)),be?ce[1]:"no-highlight"}return ge.split(/\s+/).find(be=>p(be)||W(be))}function b(ie,ge,ce,be){let ve="",De="";typeof ge=="object"?(ve=ie,ce=ge.ignoreIllegals,De=ge.language,be=void 0):(Mx("10.7.0","highlight(lang, code, ...args) has been deprecated."),Mx("10.7.0",`Please use highlight(code, options) instead. +https://github.com/highlightjs/highlight.js/issues/2277`),De=ie,ve=ge);const ye={code:ve,language:De};te("before:highlight",ye);const Ee=ye.result?ye.result:_(ye.language,ye.code,ce,be);return Ee.code=ye.code,te("after:highlight",Ee),Ee}function _(ie,ge,ce,be){function ve(Ye,Ae){const Xe=Dt.case_insensitive?Ae[0].toLowerCase():Ae[0];return Object.prototype.hasOwnProperty.call(Ye.keywords,Xe)&&Ye.keywords[Xe]}function De(){if(!Kt.keywords){Je.addText(ht);return}let Ye=0;Kt.keywordPatternRe.lastIndex=0;let Ae=Kt.keywordPatternRe.exec(ht),Xe="";for(;Ae;){Xe+=ht.substring(Ye,Ae.index);const fe=ve(Kt,Ae);if(fe){const[Qe,Ke]=fe;if(Je.addText(Xe),Xe="",et+=Ke,Qe.startsWith("_"))Xe+=Ae[0];else{const mt=Dt.classNameAliases[Qe]||Qe;Je.addKeyword(Ae[0],mt)}}else Xe+=Ae[0];Ye=Kt.keywordPatternRe.lastIndex,Ae=Kt.keywordPatternRe.exec(ht)}Xe+=ht.substr(Ye),Je.addText(Xe)}function ye(){if(ht==="")return;let Ye=null;if(typeof Kt.subLanguage=="string"){if(!t[Kt.subLanguage]){Je.addText(ht);return}Ye=_(Kt.subLanguage,ht,!0,Ft[Kt.subLanguage]),Ft[Kt.subLanguage]=Ye.top}else Ye=S(ht,Kt.subLanguage.length?Kt.subLanguage:null);Kt.relevance>0&&(et+=Ye.relevance),Je.addSublanguage(Ye.emitter,Ye.language)}function Ee(){Kt.subLanguage!=null?ye():De(),ht=""}function he(Ye){return Ye.className&&Je.openNode(Dt.classNameAliases[Ye.className]||Ye.className),Kt=Object.create(Ye,{parent:{value:Kt}}),Kt}function we(Ye,Ae,Xe){let fe=gJr(Ye.endRe,Xe);if(fe){if(Ye["on:end"]){const Qe=new vpn(Ye);Ye["on:end"](Ae,Qe),Qe.isMatchIgnored&&(fe=!1)}if(fe){for(;Ye.endsParent&&Ye.parent;)Ye=Ye.parent;return Ye}}if(Ye.endsWithParent)return we(Ye.parent,Ae,Xe)}function Ce(Ye){return Kt.matcher.regexIndex===0?(ht+=Ye[0],1):(Ge=!0,0)}function Ie(Ye){const Ae=Ye[0],Xe=Ye.rule,fe=new vpn(Xe),Qe=[Xe.__beforeBegin,Xe["on:begin"]];for(const Ke of Qe)if(Ke&&(Ke(Ye,fe),fe.isMatchIgnored))return Ce(Ae);return Xe&&Xe.endSameAsBegin&&(Xe.endRe=hJr(Ae)),Xe.skip?ht+=Ae:(Xe.excludeBegin&&(ht+=Ae),Ee(),!Xe.returnBegin&&!Xe.excludeBegin&&(ht=Ae)),he(Xe),Xe.returnBegin?0:Ae.length}function Le(Ye){const Ae=Ye[0],Xe=ge.substr(Ye.index),fe=we(Kt,Ye,Xe);if(!fe)return Tpn;const Qe=Kt;Qe.skip?ht+=Ae:(Qe.returnEnd||Qe.excludeEnd||(ht+=Ae),Ee(),Qe.excludeEnd&&(ht=Ae));do Kt.className&&Je.closeNode(),!Kt.skip&&!Kt.subLanguage&&(et+=Kt.relevance),Kt=Kt.parent;while(Kt!==fe.parent);return fe.starts&&(fe.endSameAsBegin&&(fe.starts.endRe=fe.endRe),he(fe.starts)),Qe.returnEnd?0:Ae.length}function Fe(){const Ye=[];for(let Ae=Kt;Ae!==Dt;Ae=Ae.parent)Ae.className&&Ye.unshift(Ae.className);Ye.forEach(Ae=>Je.openNode(Ae))}let Ve={};function Oe(Ye,Ae){const Xe=Ae&&Ae[0];if(ht+=Ye,Xe==null)return Ee(),0;if(Ve.type==="begin"&&Ae.type==="end"&&Ve.index===Ae.index&&Xe===""){if(ht+=ge.slice(Ae.index,Ae.index+1),!s){const fe=new Error("0 width match regex");throw fe.languageName=ie,fe.badRule=Ve.rule,fe}return 1}if(Ve=Ae,Ae.type==="begin")return Ie(Ae);if(Ae.type==="illegal"&&!ce){const fe=new Error('Illegal lexeme "'+Xe+'" for mode "'+(Kt.className||"")+'"');throw fe.mode=Kt,fe}else if(Ae.type==="end"){const fe=Le(Ae);if(fe!==Tpn)return fe}if(Ae.type==="illegal"&&Xe==="")return 1;if(He>1e5&&He>Ae.index*3)throw new Error("potential infinite loop, way more iterations than matches");return ht+=Xe,Xe.length}const Dt=W(ie);if(!Dt)throw NQe(u.replace("{}",ie)),new Error('Unknown language: "'+ie+'"');const ot=HJr(Dt,{plugins:a});let sn="",Kt=be||ot;const Ft={},Je=new f.__emitter(f);Fe();let ht="",et=0,qe=0,He=0,Ge=!1;try{for(Kt.matcher.considerAll();;){He++,Ge?Ge=!1:Kt.matcher.considerAll(),Kt.matcher.lastIndex=qe;const Ye=Kt.matcher.exec(ge);if(!Ye)break;const Ae=ge.substring(qe,Ye.index),Xe=Oe(Ae,Ye);qe=Ye.index+Xe}return Oe(ge.substr(qe)),Je.closeAllNodes(),Je.finalize(),sn=Je.toHTML(),{relevance:Math.floor(et),value:sn,language:ie,illegal:!1,emitter:Je,top:Kt}}catch(Ye){if(Ye.message&&Ye.message.includes("Illegal"))return{illegal:!0,illegalBy:{msg:Ye.message,context:ge.slice(qe-100,qe+100),mode:Ye.mode},sofar:sn,relevance:0,value:OQe(ge),emitter:Je};if(s)return{illegal:!1,relevance:0,value:OQe(ge),emitter:Je,language:ie,top:Kt,errorRaised:Ye};throw Ye}}function w(ie){const ge={relevance:0,emitter:new f.__emitter(f),value:OQe(ie),illegal:!1,top:h};return ge.emitter.addText(ie),ge}function S(ie,ge){ge=ge||f.languages||Object.keys(t);const ce=w(ie),be=ge.filter(W).filter(V).map(he=>_(he,ie,!1));be.unshift(ce);const ve=be.sort((he,we)=>{if(he.relevance!==we.relevance)return we.relevance-he.relevance;if(he.language&&we.language){if(W(he.language).supersetOf===we.language)return 1;if(W(we.language).supersetOf===he.language)return-1}return 0}),[De,ye]=ve,Ee=De;return Ee.second_best=ye,Ee}function C(ie){return f.tabReplace||f.useBR?ie.replace(o,ge=>ge===` +`?f.useBR?"
    ":ge:f.tabReplace?ge.replace(/\t/g,f.tabReplace):ge):ie}function A(ie,ge,ce){const be=ge?r[ge]:ce;ie.classList.add("hljs"),be&&ie.classList.add(be)}const k={"before:highlightElement":({el:ie})=>{f.useBR&&(ie.innerHTML=ie.innerHTML.replace(/\n/g,"").replace(//g,` +`))},"after:highlightElement":({result:ie})=>{f.useBR&&(ie.value=ie.value.replace(/\n/g,"
    "))}},I=/^(<[^>]+>|\t)+/gm,N={"after:highlightElement":({result:ie})=>{f.tabReplace&&(ie.value=ie.value.replace(I,ge=>ge.replace(/\t/g,f.tabReplace)))}};function L(ie){let ge=null;const ce=m(ie);if(p(ce))return;te("before:highlightElement",{el:ie,language:ce}),ge=ie;const be=ge.textContent,ve=ce?b(be,{language:ce,ignoreIllegals:!0}):S(be);te("after:highlightElement",{el:ie,result:ve,text:be}),ie.innerHTML=ve.value,A(ie,ce,ve.language),ie.result={language:ve.language,re:ve.relevance,relavance:ve.relevance},ve.second_best&&(ie.second_best={language:ve.second_best.language,re:ve.second_best.relevance,relavance:ve.second_best.relevance})}function P(ie){ie.useBR&&(Mx("10.3.0","'useBR' will be removed entirely in v11.0"),Mx("10.3.0","Please see https://github.com/highlightjs/highlight.js/issues/2559")),f=Spn(f,ie)}const M=()=>{if(M.called)return;M.called=!0,Mx("10.6.0","initHighlighting() is deprecated. Use highlightAll() instead."),document.querySelectorAll("pre code").forEach(L)};function F(){Mx("10.6.0","initHighlightingOnLoad() is deprecated. Use highlightAll() instead."),U=!0}let U=!1;function $(){if(document.readyState==="loading"){U=!0;return}document.querySelectorAll("pre code").forEach(L)}function G(){U&&$()}typeof window<"u"&&window.addEventListener&&window.addEventListener("DOMContentLoaded",G,!1);function B(ie,ge){let ce=null;try{ce=ge(e)}catch(be){if(NQe("Language definition for '{}' could not be registered.".replace("{}",ie)),s)NQe(be);else throw be;ce=h}ce.name||(ce.name=ie),t[ie]=ce,ce.rawDefinition=ge.bind(null,e),ce.aliases&&Q(ce.aliases,{languageName:ie})}function Z(ie){delete t[ie];for(const ge of Object.keys(r))r[ge]===ie&&delete r[ge]}function z(){return Object.keys(t)}function Y(ie){Mx("10.4.0","requireLanguage will be removed entirely in v11."),Mx("10.4.0","Please see https://github.com/highlightjs/highlight.js/pull/2844");const ge=W(ie);if(ge)return ge;throw new Error("The '{}' language is required, but not loaded.".replace("{}",ie))}function W(ie){return ie=(ie||"").toLowerCase(),t[ie]||t[r[ie]]}function Q(ie,{languageName:ge}){typeof ie=="string"&&(ie=[ie]),ie.forEach(ce=>{r[ce.toLowerCase()]=ge})}function V(ie){const ge=W(ie);return ge&&!ge.disableAutodetect}function j(ie){ie["before:highlightBlock"]&&!ie["before:highlightElement"]&&(ie["before:highlightElement"]=ge=>{ie["before:highlightBlock"](Object.assign({block:ge.el},ge))}),ie["after:highlightBlock"]&&!ie["after:highlightElement"]&&(ie["after:highlightElement"]=ge=>{ie["after:highlightBlock"](Object.assign({block:ge.el},ge))})}function ee(ie){j(ie),a.push(ie)}function te(ie,ge){const ce=ie;a.forEach(function(be){be[ce]&&be[ce](ge)})}function ne(ie){return Mx("10.2.0","fixMarkup will be removed entirely in v11.0"),Mx("10.2.0","Please see https://github.com/highlightjs/highlight.js/issues/2534"),C(ie)}function se(ie){return Mx("10.7.0","highlightBlock will be removed entirely in v12.0"),Mx("10.7.0","Please use highlightElement now."),L(ie)}Object.assign(e,{highlight:b,highlightAuto:S,highlightAll:$,fixMarkup:ne,highlightElement:L,highlightBlock:se,configure:P,initHighlighting:M,initHighlightingOnLoad:F,registerLanguage:B,unregisterLanguage:Z,listLanguages:z,getLanguage:W,registerAliases:Q,requireLanguage:Y,autoDetection:V,inherit:Spn,addPlugin:ee,vuePlugin:WJr(e).VuePlugin}),e.debugMode=function(){s=!1},e.safeMode=function(){s=!0},e.versionString=YJr;for(const ie in H_e)typeof H_e[ie]=="object"&&Z9n(H_e[ie]);return Object.assign(e,H_e),e.addPlugin(k),e.addPlugin(KJr),e.addPlugin(N),e};var ZJr=QJr({}),JJr=ZJr,aLn={exports:{}};(function(e){(function(){var t;t=e.exports=s,t.format=s,t.vsprintf=a,typeof console<"u"&&typeof console.log=="function"&&(t.printf=r);function r(){console.log(s.apply(null,arguments))}function a(o,u){return s.apply(null,[o].concat(u))}function s(o){for(var u=1,h=[].slice.call(arguments),f=0,p=o.length,m="",b,_=!1,w,S,C=!1,A,k=function(){return h[u++]},I=function(){for(var N="";/\d/.test(o[f]);)N+=o[f++],b=o[f];return N.length>0?parseInt(N):null};fh.relevance&&(h=f),f.relevance>u.relevance&&(h=u,u=f));return h.language&&(u.secondBest=h),u}function aei(e,t){$C.registerLanguage(e,t)}function sei(){return $C.listLanguages()}function oei(e,t){var r=e,a;t&&(r={},r[e]=t);for(a in r)$C.registerAliases(r[a],{languageName:a})}function mR(e){this.options=e,this.rootNode={children:[]},this.stack=[this.rootNode]}function lei(e,t){this.openNode(t),this.addText(e),this.closeNode()}function cei(e,t){var r=this.stack,a=r[r.length-1],s=e.rootNode.children,o=t?{type:"element",tagName:"span",properties:{className:[t]},children:s}:s;a.children=a.children.concat(o)}function uei(e){var t=this.stack,r,a;e!==""&&(r=t[t.length-1],a=r.children[r.children.length-1],a&&a.type==="text"?a.value+=e:r.children.push({type:"text",value:e}))}function hei(e){var t=this.stack,r=this.options.classPrefix+e,a=t[t.length-1],s={type:"element",tagName:"span",properties:{className:[r]},children:[]};a.children.push(s),t.push(s)}function dei(){this.stack.pop()}function fei(){return""}function oLn(){}var LQe,Cpn;function pei(){if(Cpn)return LQe;Cpn=1;function e(t){var r="[A-Za-zА-Яа-яёЁ_][A-Za-zА-Яа-яёЁ_0-9]+",a="далее ",s="возврат вызватьисключение выполнить для если и из или иначе иначеесли исключение каждого конецесли конецпопытки конеццикла не новый перейти перем по пока попытка прервать продолжить тогда цикл экспорт ",o=a+s,u="загрузитьизфайла ",h="вебклиент вместо внешнеесоединение клиент конецобласти мобильноеприложениеклиент мобильноеприложениесервер наклиенте наклиентенасервере наклиентенасерверебезконтекста насервере насерверебезконтекста область перед после сервер толстыйклиентобычноеприложение толстыйклиентуправляемоеприложение тонкийклиент ",f=u+h,p="разделительстраниц разделительстрок символтабуляции ",m="ansitooem oemtoansi ввестивидсубконто ввестиперечисление ввестипериод ввестиплансчетов выбранныйплансчетов датагод датамесяц датачисло заголовоксистемы значениевстроку значениеизстроки каталогиб каталогпользователя кодсимв конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лог лог10 максимальноеколичествосубконто названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найтиссылки началопериодаби началостандартногоинтервала начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода обработкаожидания основнойжурналрасчетов основнойплансчетов основнойязык очиститьокносообщений периодстр получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта префиксавтонумерации пропись пустоезначение разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо симв создатьобъект статусвозврата стрколичествострок сформироватьпозициюдокумента счетпокоду текущеевремя типзначения типзначениястр установитьтана установитьтапо фиксшаблон шаблон ",b="acos asin atan base64значение base64строка cos exp log log10 pow sin sqrt tan xmlзначение xmlстрока xmlтип xmlтипзнч активноеокно безопасныйрежим безопасныйрежимразделенияданных булево ввестидату ввестизначение ввестистроку ввестичисло возможностьчтенияxml вопрос восстановитьзначение врег выгрузитьжурналрегистрации выполнитьобработкуоповещения выполнитьпроверкуправдоступа вычислить год данныеформывзначение дата день деньгода деньнедели добавитьмесяц заблокироватьданныедляредактирования заблокироватьработупользователя завершитьработусистемы загрузитьвнешнююкомпоненту закрытьсправку записатьjson записатьxml записатьдатуjson записьжурналарегистрации заполнитьзначениясвойств запроситьразрешениепользователя запуститьприложение запуститьсистему зафиксироватьтранзакцию значениевданныеформы значениевстрокувнутр значениевфайл значениезаполнено значениеизстрокивнутр значениеизфайла изxmlтипа импортмоделиxdto имякомпьютера имяпользователя инициализироватьпредопределенныеданные информацияобошибке каталогбиблиотекимобильногоустройства каталогвременныхфайлов каталогдокументов каталогпрограммы кодироватьстроку кодлокализацииинформационнойбазы кодсимвола командасистемы конецгода конецдня конецквартала конецмесяца конецминуты конецнедели конецчаса конфигурациябазыданныхизмененадинамически конфигурацияизменена копироватьданныеформы копироватьфайл краткоепредставлениеошибки лев макс местноевремя месяц мин минута монопольныйрежим найти найтинедопустимыесимволыxml найтиокнопонавигационнойссылке найтипомеченныенаудаление найтипоссылкам найтифайлы началогода началодня началоквартала началомесяца началоминуты началонедели началочаса начатьзапросразрешенияпользователя начатьзапускприложения начатькопированиефайла начатьперемещениефайла начатьподключениевнешнейкомпоненты начатьподключениерасширенияработыскриптографией начатьподключениерасширенияработысфайлами начатьпоискфайлов начатьполучениекаталогавременныхфайлов начатьполучениекаталогадокументов начатьполучениерабочегокаталогаданныхпользователя начатьполучениефайлов начатьпомещениефайла начатьпомещениефайлов начатьсозданиедвоичныхданныхизфайла начатьсозданиекаталога начатьтранзакцию начатьудалениефайлов начатьустановкувнешнейкомпоненты начатьустановкурасширенияработыскриптографией начатьустановкурасширенияработысфайлами неделягода необходимостьзавершениясоединения номерсеансаинформационнойбазы номерсоединенияинформационнойбазы нрег нстр обновитьинтерфейс обновитьнумерациюобъектов обновитьповторноиспользуемыезначения обработкапрерыванияпользователя объединитьфайлы окр описаниеошибки оповестить оповеститьобизменении отключитьобработчикзапросанастроекклиенталицензирования отключитьобработчикожидания отключитьобработчикоповещения открытьзначение открытьиндекссправки открытьсодержаниесправки открытьсправку открытьформу открытьформумодально отменитьтранзакцию очиститьжурналрегистрации очиститьнастройкипользователя очиститьсообщения параметрыдоступа перейтипонавигационнойссылке переместитьфайл подключитьвнешнююкомпоненту подключитьобработчикзапросанастроекклиенталицензирования подключитьобработчикожидания подключитьобработчикоповещения подключитьрасширениеработыскриптографией подключитьрасширениеработысфайлами подробноепредставлениеошибки показатьвводдаты показатьвводзначения показатьвводстроки показатьвводчисла показатьвопрос показатьзначение показатьинформациюобошибке показатьнакарте показатьоповещениепользователя показатьпредупреждение полноеимяпользователя получитьcomобъект получитьxmlтип получитьадреспоместоположению получитьблокировкусеансов получитьвремязавершенияспящегосеанса получитьвремязасыпанияпассивногосеанса получитьвремяожиданияблокировкиданных получитьданныевыбора получитьдополнительныйпараметрклиенталицензирования получитьдопустимыекодылокализации получитьдопустимыечасовыепояса получитьзаголовокклиентскогоприложения получитьзаголовоксистемы получитьзначенияотборажурналарегистрации получитьидентификаторконфигурации получитьизвременногохранилища получитьимявременногофайла получитьимяклиенталицензирования получитьинформациюэкрановклиента получитьиспользованиежурналарегистрации получитьиспользованиесобытияжурналарегистрации получитькраткийзаголовокприложения получитьмакетоформления получитьмаскувсефайлы получитьмаскувсефайлыклиента получитьмаскувсефайлысервера получитьместоположениепоадресу получитьминимальнуюдлинупаролейпользователей получитьнавигационнуюссылку получитьнавигационнуюссылкуинформационнойбазы получитьобновлениеконфигурациибазыданных получитьобновлениепредопределенныхданныхинформационнойбазы получитьобщиймакет получитьобщуюформу получитьокна получитьоперативнуюотметкувремени получитьотключениебезопасногорежима получитьпараметрыфункциональныхопцийинтерфейса получитьполноеимяпредопределенногозначения получитьпредставлениянавигационныхссылок получитьпроверкусложностипаролейпользователей получитьразделительпути получитьразделительпутиклиента получитьразделительпутисервера получитьсеансыинформационнойбазы получитьскоростьклиентскогосоединения получитьсоединенияинформационнойбазы получитьсообщенияпользователю получитьсоответствиеобъектаиформы получитьсоставстандартногоинтерфейсаodata получитьструктурухранениябазыданных получитьтекущийсеансинформационнойбазы получитьфайл получитьфайлы получитьформу получитьфункциональнуюопцию получитьфункциональнуюопциюинтерфейса получитьчасовойпоясинформационнойбазы пользователиос поместитьвовременноехранилище поместитьфайл поместитьфайлы прав праводоступа предопределенноезначение представлениекодалокализации представлениепериода представлениеправа представлениеприложения представлениесобытияжурналарегистрации представлениечасовогопояса предупреждение прекратитьработусистемы привилегированныйрежим продолжитьвызов прочитатьjson прочитатьxml прочитатьдатуjson пустаястрока рабочийкаталогданныхпользователя разблокироватьданныедляредактирования разделитьфайл разорватьсоединениесвнешнимисточникомданных раскодироватьстроку рольдоступна секунда сигнал символ скопироватьжурналрегистрации смещениелетнеговремени смещениестандартноговремени соединитьбуферыдвоичныхданных создатькаталог создатьфабрикуxdto сокрл сокрлп сокрп сообщить состояние сохранитьзначение сохранитьнастройкипользователя сред стрдлина стрзаканчиваетсяна стрзаменить стрнайти стрначинаетсяс строка строкасоединенияинформационнойбазы стрполучитьстроку стрразделить стрсоединить стрсравнить стрчисловхождений стрчислострок стршаблон текущаядата текущаядатасеанса текущаяуниверсальнаядата текущаяуниверсальнаядатавмиллисекундах текущийвариантинтерфейсаклиентскогоприложения текущийвариантосновногошрифтаклиентскогоприложения текущийкодлокализации текущийрежимзапуска текущийязык текущийязыксистемы тип типзнч транзакцияактивна трег удалитьданныеинформационнойбазы удалитьизвременногохранилища удалитьобъекты удалитьфайлы универсальноевремя установитьбезопасныйрежим установитьбезопасныйрежимразделенияданных установитьблокировкусеансов установитьвнешнююкомпоненту установитьвремязавершенияспящегосеанса установитьвремязасыпанияпассивногосеанса установитьвремяожиданияблокировкиданных установитьзаголовокклиентскогоприложения установитьзаголовоксистемы установитьиспользованиежурналарегистрации установитьиспользованиесобытияжурналарегистрации установитькраткийзаголовокприложения установитьминимальнуюдлинупаролейпользователей установитьмонопольныйрежим установитьнастройкиклиенталицензирования установитьобновлениепредопределенныхданныхинформационнойбазы установитьотключениебезопасногорежима установитьпараметрыфункциональныхопцийинтерфейса установитьпривилегированныйрежим установитьпроверкусложностипаролейпользователей установитьрасширениеработыскриптографией установитьрасширениеработысфайлами установитьсоединениесвнешнимисточникомданных установитьсоответствиеобъектаиформы установитьсоставстандартногоинтерфейсаodata установитьчасовойпоясинформационнойбазы установитьчасовойпояссеанса формат цел час часовойпояс часовойпояссеанса число числопрописью этоадресвременногохранилища ",_="wsссылки библиотекакартинок библиотекамакетовоформлениякомпоновкиданных библиотекастилей бизнеспроцессы внешниеисточникиданных внешниеобработки внешниеотчеты встроенныепокупки главныйинтерфейс главныйстиль документы доставляемыеуведомления журналыдокументов задачи информацияобинтернетсоединении использованиерабочейдаты историяработыпользователя константы критерииотбора метаданные обработки отображениерекламы отправкадоставляемыхуведомлений отчеты панельзадачос параметрзапуска параметрысеанса перечисления планывидоврасчета планывидовхарактеристик планыобмена планысчетов полнотекстовыйпоиск пользователиинформационнойбазы последовательности проверкавстроенныхпокупок рабочаядата расширенияконфигурации регистрыбухгалтерии регистрынакопления регистрырасчета регистрысведений регламентныезадания сериализаторxdto справочники средствагеопозиционирования средствакриптографии средствамультимедиа средстваотображениярекламы средствапочты средствателефонии фабрикаxdto файловыепотоки фоновыезадания хранилищанастроек хранилищевариантовотчетов хранилищенастроекданныхформ хранилищеобщихнастроек хранилищепользовательскихнастроекдинамическихсписков хранилищепользовательскихнастроекотчетов хранилищесистемныхнастроек ",w=p+m+b+_,S="webцвета windowsцвета windowsшрифты библиотекакартинок рамкистиля символы цветастиля шрифтыстиля ",C="автоматическоесохранениеданныхформывнастройках автонумерациявформе автораздвижениесерий анимациядиаграммы вариантвыравниванияэлементовизаголовков вариантуправлениявысотойтаблицы вертикальнаяпрокруткаформы вертикальноеположение вертикальноеположениеэлемента видгруппыформы виддекорацииформы виддополненияэлементаформы видизмененияданных видкнопкиформы видпереключателя видподписейкдиаграмме видполяформы видфлажка влияниеразмеранапузырекдиаграммы горизонтальноеположение горизонтальноеположениеэлемента группировкаколонок группировкаподчиненныхэлементовформы группыиэлементы действиеперетаскивания дополнительныйрежимотображения допустимыедействияперетаскивания интервалмеждуэлементамиформы использованиевывода использованиеполосыпрокрутки используемоезначениеточкибиржевойдиаграммы историявыборапривводе источникзначенийоситочекдиаграммы источникзначенияразмерапузырькадиаграммы категориягруппыкоманд максимумсерий начальноеотображениедерева начальноеотображениесписка обновлениетекстаредактирования ориентациядендрограммы ориентациядиаграммы ориентацияметокдиаграммы ориентацияметоксводнойдиаграммы ориентацияэлементаформы отображениевдиаграмме отображениевлегендедиаграммы отображениегруппыкнопок отображениезаголовкашкалыдиаграммы отображениезначенийсводнойдиаграммы отображениезначенияизмерительнойдиаграммы отображениеинтерваладиаграммыганта отображениекнопки отображениекнопкивыбора отображениеобсужденийформы отображениеобычнойгруппы отображениеотрицательныхзначенийпузырьковойдиаграммы отображениепанелипоиска отображениеподсказки отображениепредупрежденияприредактировании отображениеразметкиполосырегулирования отображениестраницформы отображениетаблицы отображениетекстазначениядиаграммыганта отображениеуправленияобычнойгруппы отображениефигурыкнопки палитрацветовдиаграммы поведениеобычнойгруппы поддержкамасштабадендрограммы поддержкамасштабадиаграммыганта поддержкамасштабасводнойдиаграммы поисквтаблицепривводе положениезаголовкаэлементаформы положениекартинкикнопкиформы положениекартинкиэлементаграфическойсхемы положениекоманднойпанелиформы положениекоманднойпанелиэлементаформы положениеопорнойточкиотрисовки положениеподписейкдиаграмме положениеподписейшкалызначенийизмерительнойдиаграммы положениесостоянияпросмотра положениестрокипоиска положениетекстасоединительнойлинии положениеуправленияпоиском положениешкалывремени порядокотображенияточекгоризонтальнойгистограммы порядоксерийвлегендедиаграммы размеркартинки расположениезаголовкашкалыдиаграммы растягиваниеповертикалидиаграммыганта режимавтоотображениясостояния режимвводастроктаблицы режимвыборанезаполненного режимвыделениядаты режимвыделениястрокитаблицы режимвыделениятаблицы режимизмененияразмера режимизменениясвязанногозначения режимиспользованиядиалогапечати режимиспользованияпараметракоманды режиммасштабированияпросмотра режимосновногоокнаклиентскогоприложения режимоткрытияокнаформы режимотображениявыделения режимотображениягеографическойсхемы режимотображениязначенийсерии режимотрисовкисеткиграфическойсхемы режимполупрозрачностидиаграммы режимпробеловдиаграммы режимразмещениянастранице режимредактированияколонки режимсглаживаниядиаграммы режимсглаживанияиндикатора режимсписказадач сквозноевыравнивание сохранениеданныхформывнастройках способзаполнениятекстазаголовкашкалыдиаграммы способопределенияограничивающегозначениядиаграммы стандартнаягруппакоманд стандартноеоформление статусоповещенияпользователя стильстрелки типаппроксимациилиниитрендадиаграммы типдиаграммы типединицышкалывремени типимпортасерийслоягеографическойсхемы типлиниигеографическойсхемы типлиниидиаграммы типмаркерагеографическойсхемы типмаркерадиаграммы типобластиоформления типорганизацииисточникаданныхгеографическойсхемы типотображениясериислоягеографическойсхемы типотображенияточечногообъектагеографическойсхемы типотображенияшкалыэлементалегендыгеографическойсхемы типпоискаобъектовгеографическойсхемы типпроекциигеографическойсхемы типразмещенияизмерений типразмещенияреквизитовизмерений типрамкиэлементауправления типсводнойдиаграммы типсвязидиаграммыганта типсоединениязначенийпосериямдиаграммы типсоединенияточекдиаграммы типсоединительнойлинии типстороныэлементаграфическойсхемы типформыотчета типшкалырадарнойдиаграммы факторлиниитрендадиаграммы фигуракнопки фигурыграфическойсхемы фиксациявтаблице форматдняшкалывремени форматкартинки ширинаподчиненныхэлементовформы ",A="виддвижениябухгалтерии виддвижениянакопления видпериодарегистрарасчета видсчета видточкимаршрутабизнеспроцесса использованиеагрегатарегистранакопления использованиегруппиэлементов использованиережимапроведения использованиесреза периодичностьагрегатарегистранакопления режимавтовремя режимзаписидокумента режимпроведениядокумента ",k="авторегистрацияизменений допустимыйномерсообщения отправкаэлементаданных получениеэлементаданных ",I="использованиерасшифровкитабличногодокумента ориентациястраницы положениеитоговколоноксводнойтаблицы положениеитоговстроксводнойтаблицы положениетекстаотносительнокартинки расположениезаголовкагруппировкитабличногодокумента способчтениязначенийтабличногодокумента типдвустороннейпечати типзаполненияобластитабличногодокумента типкурсоровтабличногодокумента типлиниирисункатабличногодокумента типлинииячейкитабличногодокумента типнаправленияпереходатабличногодокумента типотображениявыделениятабличногодокумента типотображениялинийсводнойтаблицы типразмещениятекстатабличногодокумента типрисункатабличногодокумента типсмещениятабличногодокумента типузоратабличногодокумента типфайлатабличногодокумента точностьпечати чередованиерасположениястраниц ",N="отображениевремениэлементовпланировщика ",L="типфайлаформатированногодокумента ",P="обходрезультатазапроса типзаписизапроса ",M="видзаполнениярасшифровкипостроителяотчета типдобавленияпредставлений типизмеренияпостроителяотчета типразмещенияитогов ",F="доступкфайлу режимдиалогавыборафайла режимоткрытияфайла ",U="типизмеренияпостроителязапроса ",$="видданныханализа методкластеризации типединицыинтервалавременианализаданных типзаполнениятаблицырезультатаанализаданных типиспользованиячисловыхзначенийанализаданных типисточникаданныхпоискаассоциаций типколонкианализаданныхдереворешений типколонкианализаданныхкластеризация типколонкианализаданныхобщаястатистика типколонкианализаданныхпоискассоциаций типколонкианализаданныхпоискпоследовательностей типколонкимоделипрогноза типмерырасстоянияанализаданных типотсеченияправилассоциации типполяанализаданных типстандартизациианализаданных типупорядочиванияправилассоциациианализаданных типупорядочиванияшаблоновпоследовательностейанализаданных типупрощениядереварешений ",G="wsнаправлениепараметра вариантxpathxs вариантзаписидатыjson вариантпростоготипаxs видгруппымоделиxs видфасетаxdto действиепостроителяdom завершенностьпростоготипаxs завершенностьсоставноготипаxs завершенностьсхемыxs запрещенныеподстановкиxs исключениягруппподстановкиxs категорияиспользованияатрибутаxs категорияограниченияидентичностиxs категорияограниченияпространствименxs методнаследованияxs модельсодержимогоxs назначениетипаxml недопустимыеподстановкиxs обработкапробельныхсимволовxs обработкасодержимогоxs ограничениезначенияxs параметрыотбораузловdom переносстрокjson позициявдокументеdom пробельныесимволыxml типатрибутаxml типзначенияjson типканоническогоxml типкомпонентыxs типпроверкиxml типрезультатаdomxpath типузлаdom типузлаxml формаxml формапредставленияxs форматдатыjson экранированиесимволовjson ",B="видсравнениякомпоновкиданных действиеобработкирасшифровкикомпоновкиданных направлениесортировкикомпоновкиданных расположениевложенныхэлементоврезультатакомпоновкиданных расположениеитоговкомпоновкиданных расположениегруппировкикомпоновкиданных расположениеполейгруппировкикомпоновкиданных расположениеполякомпоновкиданных расположениереквизитовкомпоновкиданных расположениересурсовкомпоновкиданных типбухгалтерскогоостаткакомпоновкиданных типвыводатекстакомпоновкиданных типгруппировкикомпоновкиданных типгруппыэлементовотборакомпоновкиданных типдополненияпериодакомпоновкиданных типзаголовкаполейкомпоновкиданных типмакетагруппировкикомпоновкиданных типмакетаобластикомпоновкиданных типостаткакомпоновкиданных типпериодакомпоновкиданных типразмещениятекстакомпоновкиданных типсвязинаборовданныхкомпоновкиданных типэлементарезультатакомпоновкиданных расположениелегендыдиаграммыкомпоновкиданных типпримененияотборакомпоновкиданных режимотображенияэлементанастройкикомпоновкиданных режимотображениянастроеккомпоновкиданных состояниеэлементанастройкикомпоновкиданных способвосстановлениянастроеккомпоновкиданных режимкомпоновкирезультата использованиепараметракомпоновкиданных автопозицияресурсовкомпоновкиданных вариантиспользованиягруппировкикомпоновкиданных расположениересурсоввдиаграммекомпоновкиданных фиксациякомпоновкиданных использованиеусловногооформлениякомпоновкиданных ",Z="важностьинтернетпочтовогосообщения обработкатекстаинтернетпочтовогосообщения способкодированияинтернетпочтовоговложения способкодированиянеasciiсимволовинтернетпочтовогосообщения типтекстапочтовогосообщения протоколинтернетпочты статусразборапочтовогосообщения ",z="режимтранзакциизаписижурналарегистрации статустранзакциизаписижурналарегистрации уровеньжурналарегистрации ",Y="расположениехранилищасертификатовкриптографии режимвключениясертификатовкриптографии режимпроверкисертификатакриптографии типхранилищасертификатовкриптографии ",W="кодировкаименфайловвzipфайле методсжатияzip методшифрованияzip режимвосстановленияпутейфайловzip режимобработкиподкаталоговzip режимсохраненияпутейzip уровеньсжатияzip ",Q="звуковоеоповещение направлениепереходакстроке позициявпотоке порядокбайтов режимблокировкиданных режимуправленияблокировкойданных сервисвстроенныхпокупок состояниефоновогозадания типподписчикадоставляемыхуведомлений уровеньиспользованиязащищенногосоединенияftp ",V="направлениепорядкасхемызапроса типдополненияпериодамисхемызапроса типконтрольнойточкисхемызапроса типобъединениясхемызапроса типпараметрадоступнойтаблицысхемызапроса типсоединениясхемызапроса ",j="httpметод автоиспользованиеобщегореквизита автопрефиксномеразадачи вариантвстроенногоязыка видиерархии видрегистранакопления видтаблицывнешнегоисточникаданных записьдвиженийприпроведении заполнениепоследовательностей индексирование использованиебазыпланавидоврасчета использованиебыстроговыбора использованиеобщегореквизита использованиеподчинения использованиеполнотекстовогопоиска использованиеразделяемыхданныхобщегореквизита использованиереквизита назначениеиспользованияприложения назначениерасширенияконфигурации направлениепередачи обновлениепредопределенныхданных оперативноепроведение основноепредставлениевидарасчета основноепредставлениевидахарактеристики основноепредставлениезадачи основноепредставлениепланаобмена основноепредставлениесправочника основноепредставлениесчета перемещениеграницыприпроведении периодичностьномерабизнеспроцесса периодичностьномерадокумента периодичностьрегистрарасчета периодичностьрегистрасведений повторноеиспользованиевозвращаемыхзначений полнотекстовыйпоискпривводепостроке принадлежностьобъекта проведение разделениеаутентификацииобщегореквизита разделениеданныхобщегореквизита разделениерасширенийконфигурацииобщегореквизита режимавтонумерацииобъектов режимзаписирегистра режимиспользованиямодальности режимиспользованиясинхронныхвызововрасширенийплатформыивнешнихкомпонент режимповторногоиспользованиясеансов режимполученияданныхвыборапривводепостроке режимсовместимости режимсовместимостиинтерфейса режимуправленияблокировкойданныхпоумолчанию сериикодовпланавидовхарактеристик сериикодовпланасчетов сериикодовсправочника созданиепривводе способвыбора способпоискастрокипривводепостроке способредактирования типданныхтаблицывнешнегоисточникаданных типкодапланавидоврасчета типкодасправочника типмакета типномерабизнеспроцесса типномерадокумента типномеразадачи типформы удалениедвижений ",ee="важностьпроблемыприменениярасширенияконфигурации вариантинтерфейсаклиентскогоприложения вариантмасштабаформклиентскогоприложения вариантосновногошрифтаклиентскогоприложения вариантстандартногопериода вариантстандартнойдатыначала видграницы видкартинки видотображенияполнотекстовогопоиска видрамки видсравнения видцвета видчисловогозначения видшрифта допустимаядлина допустимыйзнак использованиеbyteordermark использованиеметаданныхполнотекстовогопоиска источникрасширенийконфигурации клавиша кодвозвратадиалога кодировкаxbase кодировкатекста направлениепоиска направлениесортировки обновлениепредопределенныхданных обновлениеприизмененииданных отображениепанелиразделов проверказаполнения режимдиалогавопрос режимзапускаклиентскогоприложения режимокругления режимоткрытияформприложения режимполнотекстовогопоиска скоростьклиентскогосоединения состояниевнешнегоисточникаданных состояниеобновленияконфигурациибазыданных способвыборасертификатаwindows способкодированиястроки статуссообщения типвнешнейкомпоненты типплатформы типповеденияклавишиenter типэлементаинформацииовыполненииобновленияконфигурациибазыданных уровеньизоляциитранзакций хешфункция частидаты",te=S+C+A+k+I+N+L+P+M+F+U+$+G+B+Z+z+Y+W+Q+V+j+ee,ne="comобъект ftpсоединение httpзапрос httpсервисответ httpсоединение wsопределения wsпрокси xbase анализданных аннотацияxs блокировкаданных буфердвоичныхданных включениеxs выражениекомпоновкиданных генераторслучайныхчисел географическаясхема географическиекоординаты графическаясхема группамоделиxs данныерасшифровкикомпоновкиданных двоичныеданные дендрограмма диаграмма диаграммаганта диалогвыборафайла диалогвыборацвета диалогвыборашрифта диалограсписаниярегламентногозадания диалогредактированиястандартногопериода диапазон документdom документhtml документацияxs доставляемоеуведомление записьdom записьfastinfoset записьhtml записьjson записьxml записьzipфайла записьданных записьтекста записьузловdom запрос защищенноесоединениеopenssl значенияполейрасшифровкикомпоновкиданных извлечениетекста импортxs интернетпочта интернетпочтовоесообщение интернетпочтовыйпрофиль интернетпрокси интернетсоединение информациядляприложенияxs использованиеатрибутаxs использованиесобытияжурналарегистрации источникдоступныхнастроеккомпоновкиданных итераторузловdom картинка квалификаторыдаты квалификаторыдвоичныхданных квалификаторыстроки квалификаторычисла компоновщикмакетакомпоновкиданных компоновщикнастроеккомпоновкиданных конструктормакетаоформлениякомпоновкиданных конструкторнастроеккомпоновкиданных конструкторформатнойстроки линия макеткомпоновкиданных макетобластикомпоновкиданных макетоформлениякомпоновкиданных маскаxs менеджеркриптографии наборсхемxml настройкикомпоновкиданных настройкисериализацииjson обработкакартинок обработкарасшифровкикомпоновкиданных обходдереваdom объявлениеатрибутаxs объявлениенотацииxs объявлениеэлементаxs описаниеиспользованиясобытиядоступжурналарегистрации описаниеиспользованиясобытияотказвдоступежурналарегистрации описаниеобработкирасшифровкикомпоновкиданных описаниепередаваемогофайла описаниетипов определениегруппыатрибутовxs определениегруппымоделиxs определениеограниченияидентичностиxs определениепростоготипаxs определениесоставноготипаxs определениетипадокументаdom определенияxpathxs отборкомпоновкиданных пакетотображаемыхдокументов параметрвыбора параметркомпоновкиданных параметрызаписиjson параметрызаписиxml параметрычтенияxml переопределениеxs планировщик полеанализаданных полекомпоновкиданных построительdom построительзапроса построительотчета построительотчетаанализаданных построительсхемxml поток потоквпамяти почта почтовоесообщение преобразованиеxsl преобразованиекканоническомуxml процессорвыводарезультатакомпоновкиданныхвколлекциюзначений процессорвыводарезультатакомпоновкиданныхвтабличныйдокумент процессоркомпоновкиданных разыменовательпространствименdom рамка расписаниерегламентногозадания расширенноеимяxml результатчтенияданных своднаядиаграмма связьпараметравыбора связьпотипу связьпотипукомпоновкиданных сериализаторxdto сертификатклиентаwindows сертификатклиентафайл сертификаткриптографии сертификатыудостоверяющихцентровwindows сертификатыудостоверяющихцентровфайл сжатиеданных системнаяинформация сообщениепользователю сочетаниеклавиш сравнениезначений стандартнаядатаначала стандартныйпериод схемаxml схемакомпоновкиданных табличныйдокумент текстовыйдокумент тестируемоеприложение типданныхxml уникальныйидентификатор фабрикаxdto файл файловыйпоток фасетдлиныxs фасетколичестваразрядовдробнойчастиxs фасетмаксимальноговключающегозначенияxs фасетмаксимальногоисключающегозначенияxs фасетмаксимальнойдлиныxs фасетминимальноговключающегозначенияxs фасетминимальногоисключающегозначенияxs фасетминимальнойдлиныxs фасетобразцаxs фасетобщегоколичестваразрядовxs фасетперечисленияxs фасетпробельныхсимволовxs фильтрузловdom форматированнаястрока форматированныйдокумент фрагментxs хешированиеданных хранилищезначения цвет чтениеfastinfoset чтениеhtml чтениеjson чтениеxml чтениеzipфайла чтениеданных чтениетекста чтениеузловdom шрифт элементрезультатакомпоновкиданных ",se="comsafearray деревозначений массив соответствие списокзначений структура таблицазначений фиксированнаяструктура фиксированноесоответствие фиксированныймассив ",ie=ne+se,ge="null истина ложь неопределено",ce=t.inherit(t.NUMBER_MODE),be={className:"string",begin:'"|\\|',end:'"|$',contains:[{begin:'""'}]},ve={begin:"'",end:"'",excludeBegin:!0,excludeEnd:!0,contains:[{className:"number",begin:"\\d{4}([\\.\\\\/:-]?\\d{2}){0,5}"}]},De=t.inherit(t.C_LINE_COMMENT_MODE),ye={className:"meta",begin:"#|&",end:"$",keywords:{$pattern:r,"meta-keyword":o+f},contains:[De]},Ee={className:"symbol",begin:"~",end:";|:",excludeEnd:!0},he={className:"function",variants:[{begin:"процедура|функция",end:"\\)",keywords:"процедура функция"},{begin:"конецпроцедуры|конецфункции",keywords:"конецпроцедуры конецфункции"}],contains:[{begin:"\\(",end:"\\)",endsParent:!0,contains:[{className:"params",begin:r,end:",",excludeEnd:!0,endsWithParent:!0,keywords:{$pattern:r,keyword:"знач",literal:ge},contains:[ce,be,ve]},De]},t.inherit(t.TITLE_MODE,{begin:r})]};return{name:"1C:Enterprise",case_insensitive:!0,keywords:{$pattern:r,keyword:o,built_in:w,class:te,type:ie,literal:ge},contains:[ye,he,De,Ee,ce,be,ve]}}return LQe=e,LQe}var DQe,Apn;function gei(){if(Apn)return DQe;Apn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s={ruleDeclaration:/^[a-zA-Z][a-zA-Z0-9-]*/,unexpectedChars:/[!@#$^&',?+~`|:]/},o=["ALPHA","BIT","CHAR","CR","CRLF","CTL","DIGIT","DQUOTE","HEXDIG","HTAB","LF","LWSP","OCTET","SP","VCHAR","WSP"],u=a.COMMENT(/;/,/$/),h={className:"symbol",begin:/%b[0-1]+(-[0-1]+|(\.[0-1]+)+){0,1}/},f={className:"symbol",begin:/%d[0-9]+(-[0-9]+|(\.[0-9]+)+){0,1}/},p={className:"symbol",begin:/%x[0-9A-F]+(-[0-9A-F]+|(\.[0-9A-F]+)+){0,1}/},m={className:"symbol",begin:/%[si]/},b={className:"attribute",begin:t(s.ruleDeclaration,/(?=\s*=)/)};return{name:"Augmented Backus-Naur Form",illegal:s.unexpectedChars,keywords:o,contains:[b,u,h,f,p,m,a.QUOTE_STRING_MODE,a.NUMBER_MODE]}}return DQe=r,DQe}var MQe,kpn;function mei(){if(kpn)return MQe;kpn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(...s){return s.map(u=>e(u)).join("")}function r(...s){return"("+s.map(u=>e(u)).join("|")+")"}function a(s){const o=["GET","POST","HEAD","PUT","DELETE","CONNECT","OPTIONS","PATCH","TRACE"];return{name:"Apache Access Log",contains:[{className:"number",begin:/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?\b/,relevance:5},{className:"number",begin:/\b\d+\b/,relevance:0},{className:"string",begin:t(/"/,r(...o)),end:/"/,keywords:o,illegal:/\n/,relevance:5,contains:[{begin:/HTTP\/[12]\.\d'/,relevance:5}]},{className:"string",begin:/\[\d[^\]\n]{8,}\]/,illegal:/\n/,relevance:1},{className:"string",begin:/\[/,end:/\]/,illegal:/\n/,relevance:0},{className:"string",begin:/"Mozilla\/\d\.\d \(/,end:/"/,illegal:/\n/,relevance:3},{className:"string",begin:/"/,end:/"/,illegal:/\n/,relevance:0}]}}return MQe=a,MQe}var PQe,Rpn;function bei(){if(Rpn)return PQe;Rpn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s=/[a-zA-Z_$][a-zA-Z0-9_$]*/,o=/([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)/,u={className:"rest_arg",begin:/[.]{3}/,end:s,relevance:10};return{name:"ActionScript",aliases:["as"],keywords:{keyword:"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with",literal:"true false null undefined"},contains:[a.APOS_STRING_MODE,a.QUOTE_STRING_MODE,a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,a.C_NUMBER_MODE,{className:"class",beginKeywords:"package",end:/\{/,contains:[a.TITLE_MODE]},{className:"class",beginKeywords:"class interface",end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},a.TITLE_MODE]},{className:"meta",beginKeywords:"import include",end:/;/,keywords:{"meta-keyword":"import include"}},{className:"function",beginKeywords:"function",end:/[{;]/,excludeEnd:!0,illegal:/\S/,contains:[a.TITLE_MODE,{className:"params",begin:/\(/,end:/\)/,contains:[a.APOS_STRING_MODE,a.QUOTE_STRING_MODE,a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,u]},{begin:t(/:\s*/,o)}]},a.METHOD_GUARD],illegal:/#/}}return PQe=r,PQe}var BQe,Ipn;function yei(){if(Ipn)return BQe;Ipn=1;function e(t){const r="\\d(_|\\d)*",a="[eE][-+]?"+r,s=r+"(\\."+r+")?("+a+")?",o="\\w+",h="\\b("+(r+"#"+o+"(\\."+o+")?#("+a+")?")+"|"+s+")",f="[A-Za-z](_?[A-Za-z0-9.])*",p=`[]\\{\\}%#'"`,m=t.COMMENT("--","$"),b={begin:"\\s+:\\s+",end:"\\s*(:=|;|\\)|=>|$)",illegal:p,contains:[{beginKeywords:"loop for declare others",endsParent:!0},{className:"keyword",beginKeywords:"not null constant access function procedure in out aliased exception"},{className:"type",begin:f,endsParent:!0,relevance:0}]};return{name:"Ada",case_insensitive:!0,keywords:{keyword:"abort else new return abs elsif not reverse abstract end accept entry select access exception of separate aliased exit or some all others subtype and for out synchronized array function overriding at tagged generic package task begin goto pragma terminate body private then if procedure type case in protected constant interface is raise use declare range delay limited record when delta loop rem while digits renames with do mod requeue xor",literal:"True False"},contains:[m,{className:"string",begin:/"/,end:/"/,contains:[{begin:/""/,relevance:0}]},{className:"string",begin:/'.'/},{className:"number",begin:h,relevance:0},{className:"symbol",begin:"'"+f},{className:"title",begin:"(\\bwith\\s+)?(\\bprivate\\s+)?\\bpackage\\s+(\\bbody\\s+)?",end:"(is|$)",keywords:"package body",excludeBegin:!0,excludeEnd:!0,illegal:p},{begin:"(\\b(with|overriding)\\s+)?\\b(function|procedure)\\s+",end:"(\\bis|\\bwith|\\brenames|\\)\\s*;)",keywords:"overriding function procedure with is renames return",returnBegin:!0,contains:[m,{className:"title",begin:"(\\bwith\\s+)?\\b(function|procedure)\\s+",end:"(\\(|\\s+|$)",excludeBegin:!0,excludeEnd:!0,illegal:p},b,{className:"type",begin:"\\breturn\\s+",end:"(\\s+|;|$)",keywords:"return",excludeBegin:!0,excludeEnd:!0,endsParent:!0,illegal:p}]},{className:"type",begin:"\\b(sub)?type\\s+",end:"\\s+",keywords:"type",excludeBegin:!0,illegal:p},b]}}return BQe=e,BQe}var FQe,Npn;function vei(){if(Npn)return FQe;Npn=1;function e(t){var r={className:"built_in",begin:"\\b(void|bool|int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|string|ref|array|double|float|auto|dictionary)"},a={className:"symbol",begin:"[a-zA-Z0-9_]+@"},s={className:"keyword",begin:"<",end:">",contains:[r,a]};return r.contains=[s],a.contains=[s],{name:"AngelScript",aliases:["asc"],keywords:"for in|0 break continue while do|0 return if else case switch namespace is cast or and xor not get|0 in inout|10 out override set|0 private public const default|0 final shared external mixin|10 enum typedef funcdef this super import from interface abstract|0 try catch protected explicit property",illegal:"(^using\\s+[A-Za-z0-9_\\.]+;$|\\bfunction\\s*[^\\(])",contains:[{className:"string",begin:"'",end:"'",illegal:"\\n",contains:[t.BACKSLASH_ESCAPE],relevance:0},{className:"string",begin:'"""',end:'"""'},{className:"string",begin:'"',end:'"',illegal:"\\n",contains:[t.BACKSLASH_ESCAPE],relevance:0},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,{className:"string",begin:"^\\s*\\[",end:"\\]"},{beginKeywords:"interface namespace",end:/\{/,illegal:"[;.\\-]",contains:[{className:"symbol",begin:"[a-zA-Z0-9_]+"}]},{beginKeywords:"class",end:/\{/,illegal:"[;.\\-]",contains:[{className:"symbol",begin:"[a-zA-Z0-9_]+",contains:[{begin:"[:,]\\s*",contains:[{className:"symbol",begin:"[a-zA-Z0-9_]+"}]}]}]},r,a,{className:"literal",begin:"\\b(null|true|false)"},{className:"number",relevance:0,begin:"(-?)(\\b0[xXbBoOdD][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?f?|\\.\\d+f?)([eE][-+]?\\d+f?)?)"}]}}return FQe=e,FQe}var $Qe,Opn;function _ei(){if(Opn)return $Qe;Opn=1;function e(t){const r={className:"number",begin:/[$%]\d+/},a={className:"number",begin:/\d+/},s={className:"number",begin:/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?/},o={className:"number",begin:/:\d{1,5}/};return{name:"Apache config",aliases:["apacheconf"],case_insensitive:!0,contains:[t.HASH_COMMENT_MODE,{className:"section",begin:/<\/?/,end:/>/,contains:[s,o,t.inherit(t.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute",begin:/\w+/,relevance:0,keywords:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"},contains:[{className:"meta",begin:/\s\[/,end:/\]$/},{className:"variable",begin:/[\$%]\{/,end:/\}/,contains:["self",r]},s,a,t.QUOTE_STRING_MODE]}}],illegal:/\S/}}return $Qe=e,$Qe}var UQe,Lpn;function wei(){if(Lpn)return UQe;Lpn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(...s){return s.map(u=>e(u)).join("")}function r(...s){return"("+s.map(u=>e(u)).join("|")+")"}function a(s){const o=s.inherit(s.QUOTE_STRING_MODE,{illegal:null}),u={className:"params",begin:/\(/,end:/\)/,contains:["self",s.C_NUMBER_MODE,o]},h=s.COMMENT(/--/,/$/),f=s.COMMENT(/\(\*/,/\*\)/,{contains:["self",h]}),p=[h,f,s.HASH_COMMENT_MODE],m=[/apart from/,/aside from/,/instead of/,/out of/,/greater than/,/isn't|(doesn't|does not) (equal|come before|come after|contain)/,/(greater|less) than( or equal)?/,/(starts?|ends|begins?) with/,/contained by/,/comes (before|after)/,/a (ref|reference)/,/POSIX (file|path)/,/(date|time) string/,/quoted form/],b=[/clipboard info/,/the clipboard/,/info for/,/list (disks|folder)/,/mount volume/,/path to/,/(close|open for) access/,/(get|set) eof/,/current date/,/do shell script/,/get volume settings/,/random number/,/set volume/,/system attribute/,/system info/,/time to GMT/,/(load|run|store) script/,/scripting components/,/ASCII (character|number)/,/localized string/,/choose (application|color|file|file name|folder|from list|remote application|URL)/,/display (alert|dialog)/];return{name:"AppleScript",aliases:["osascript"],keywords:{keyword:"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without",literal:"AppleScript false linefeed return pi quote result space tab true",built_in:"alias application boolean class constant date file integer list number real record string text activate beep count delay launch log offset read round run say summarize write character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year"},contains:[o,s.C_NUMBER_MODE,{className:"built_in",begin:t(/\b/,r(...b),/\b/)},{className:"built_in",begin:/^\s*return\b/},{className:"literal",begin:/\b(text item delimiters|current application|missing value)\b/},{className:"keyword",begin:t(/\b/,r(...m),/\b/)},{beginKeywords:"on",illegal:/[${=;\n]/,contains:[s.UNDERSCORE_TITLE_MODE,u]},...p],illegal:/\/\/|->|=>|\[\[/}}return UQe=a,UQe}var zQe,Dpn;function Eei(){if(Dpn)return zQe;Dpn=1;function e(t){const r="[A-Za-z_][0-9A-Za-z_]*",a={keyword:"if for while var new function do return void else break",literal:"BackSlash DoubleQuote false ForwardSlash Infinity NaN NewLine null PI SingleQuote Tab TextFormatting true undefined",built_in:"Abs Acos Angle Attachments Area AreaGeodetic Asin Atan Atan2 Average Bearing Boolean Buffer BufferGeodetic Ceil Centroid Clip Console Constrain Contains Cos Count Crosses Cut Date DateAdd DateDiff Day Decode DefaultValue Dictionary Difference Disjoint Distance DistanceGeodetic Distinct DomainCode DomainName Equals Exp Extent Feature FeatureSet FeatureSetByAssociation FeatureSetById FeatureSetByPortalItem FeatureSetByRelationshipName FeatureSetByTitle FeatureSetByUrl Filter First Floor Geometry GroupBy Guid HasKey Hour IIf IndexOf Intersection Intersects IsEmpty IsNan IsSelfIntersecting Length LengthGeodetic Log Max Mean Millisecond Min Minute Month MultiPartToSinglePart Multipoint NextSequenceValue Now Number OrderBy Overlaps Point Polygon Polyline Portal Pow Random Relate Reverse RingIsClockWise Round Second SetGeometry Sin Sort Sqrt Stdev Sum SymmetricDifference Tan Text Timestamp Today ToLocal Top Touches ToUTC TrackCurrentTime TrackGeometryWindow TrackIndex TrackStartTime TrackWindow TypeOf Union UrlEncode Variance Weekday When Within Year "},s={className:"symbol",begin:"\\$[datastore|feature|layer|map|measure|sourcefeature|sourcelayer|targetfeature|targetlayer|value|view]+"},o={className:"number",variants:[{begin:"\\b(0[bB][01]+)"},{begin:"\\b(0[oO][0-7]+)"},{begin:t.C_NUMBER_RE}],relevance:0},u={className:"subst",begin:"\\$\\{",end:"\\}",keywords:a,contains:[]},h={className:"string",begin:"`",end:"`",contains:[t.BACKSLASH_ESCAPE,u]};u.contains=[t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,h,o,t.REGEXP_MODE];const f=u.contains.concat([t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE]);return{name:"ArcGIS Arcade",keywords:a,contains:[t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,h,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,s,o,{begin:/[{,]\s*/,relevance:0,contains:[{begin:r+"\\s*:",returnBegin:!0,relevance:0,contains:[{className:"attr",begin:r,relevance:0}]}]},{begin:"("+t.RE_STARTERS_RE+"|\\b(return)\\b)\\s*",keywords:"return",contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.REGEXP_MODE,{className:"function",begin:"(\\(.*?\\)|"+r+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:r},{begin:/\(\s*\)/},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:a,contains:f}]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/\{/,excludeEnd:!0,contains:[t.inherit(t.TITLE_MODE,{begin:r}),{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,contains:f}],illegal:/\[|%/},{begin:/\$[(.]/}],illegal:/#(?!!)/}}return zQe=e,zQe}var GQe,Mpn;function xei(){if(Mpn)return GQe;Mpn=1;function e(u){return u?typeof u=="string"?u:u.source:null}function t(u){return a("(?=",u,")")}function r(u){return a("(",u,")?")}function a(...u){return u.map(f=>e(f)).join("")}function s(u){const h=u.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),f="decltype\\(auto\\)",p="[a-zA-Z_]\\w*::",b="("+f+"|"+r(p)+"[a-zA-Z_]\\w*"+r("<[^<>]+>")+")",_={className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},S={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[u.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},u.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},C={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},A={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},u.inherit(S,{className:"meta-string"}),{className:"meta-string",begin:/<.*?>/},h,u.C_BLOCK_COMMENT_MODE]},k={className:"title",begin:r(p)+u.IDENT_RE,relevance:0},I=r(p)+u.IDENT_RE+"\\s*\\(",L={keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",built_in:"_Bool _Complex _Imaginary",_relevance_hints:["asin","atan2","atan","calloc","ceil","cosh","cos","exit","exp","fabs","floor","fmod","fprintf","fputs","free","frexp","auto_ptr","deque","list","queue","stack","vector","map","set","pair","bitset","multiset","multimap","unordered_set","fscanf","future","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","tolower","toupper","labs","ldexp","log10","log","malloc","realloc","memchr","memcmp","memcpy","memset","modf","pow","printf","putchar","puts","scanf","sinh","sin","snprintf","sprintf","sqrt","sscanf","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","tanh","tan","unordered_map","unordered_multiset","unordered_multimap","priority_queue","make_pair","array","shared_ptr","abort","terminate","abs","acos","vfprintf","vprintf","vsprintf","endl","initializer_list","unique_ptr","complex","imaginary","std","string","wstring","cin","cout","cerr","clog","stdin","stdout","stderr","stringstream","istringstream","ostringstream"],literal:"true false nullptr NULL"},P={className:"function.dispatch",relevance:0,keywords:L,begin:a(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,u.IDENT_RE,t(/\s*\(/))},M=[P,A,_,h,u.C_BLOCK_COMMENT_MODE,C,S],F={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:L,contains:M.concat([{begin:/\(/,end:/\)/,keywords:L,contains:M.concat(["self"]),relevance:0}]),relevance:0},U={className:"function",begin:"("+b+"[\\*&\\s]+)+"+I,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:L,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:f,keywords:L,relevance:0},{begin:I,returnBegin:!0,contains:[k],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[S,C]},{className:"params",begin:/\(/,end:/\)/,keywords:L,relevance:0,contains:[h,u.C_BLOCK_COMMENT_MODE,S,C,_,{begin:/\(/,end:/\)/,keywords:L,relevance:0,contains:["self",h,u.C_BLOCK_COMMENT_MODE,S,C,_]}]},_,h,u.C_BLOCK_COMMENT_MODE,A]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:L,illegal:"",keywords:L,contains:["self",_]},{begin:u.IDENT_RE+"::",keywords:L},{className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/,contains:[{beginKeywords:"final class struct"},u.TITLE_MODE]}]),exports:{preprocessor:A,strings:S,keywords:L}}}function o(u){const h={keyword:"boolean byte word String",built_in:"KeyboardController MouseController SoftwareSerial EthernetServer EthernetClient LiquidCrystal RobotControl GSMVoiceCall EthernetUDP EsploraTFT HttpClient RobotMotor WiFiClient GSMScanner FileSystem Scheduler GSMServer YunClient YunServer IPAddress GSMClient GSMModem Keyboard Ethernet Console GSMBand Esplora Stepper Process WiFiUDP GSM_SMS Mailbox USBHost Firmata PImage Client Server GSMPIN FileIO Bridge Serial EEPROM Stream Mouse Audio Servo File Task GPRS WiFi Wire TFT GSM SPI SD ",_:"setup loop runShellCommandAsynchronously analogWriteResolution retrieveCallingNumber printFirmwareVersion analogReadResolution sendDigitalPortPair noListenOnLocalhost readJoystickButton setFirmwareVersion readJoystickSwitch scrollDisplayRight getVoiceCallStatus scrollDisplayLeft writeMicroseconds delayMicroseconds beginTransmission getSignalStrength runAsynchronously getAsynchronously listenOnLocalhost getCurrentCarrier readAccelerometer messageAvailable sendDigitalPorts lineFollowConfig countryNameWrite runShellCommand readStringUntil rewindDirectory readTemperature setClockDivider readLightSensor endTransmission analogReference detachInterrupt countryNameRead attachInterrupt encryptionType readBytesUntil robotNameWrite readMicrophone robotNameRead cityNameWrite userNameWrite readJoystickY readJoystickX mouseReleased openNextFile scanNetworks noInterrupts digitalWrite beginSpeaker mousePressed isActionDone mouseDragged displayLogos noAutoscroll addParameter remoteNumber getModifiers keyboardRead userNameRead waitContinue processInput parseCommand printVersion readNetworks writeMessage blinkVersion cityNameRead readMessage setDataMode parsePacket isListening setBitOrder beginPacket isDirectory motorsWrite drawCompass digitalRead clearScreen serialEvent rightToLeft setTextSize leftToRight requestFrom keyReleased compassRead analogWrite interrupts WiFiServer disconnect playMelody parseFloat autoscroll getPINUsed setPINUsed setTimeout sendAnalog readSlider analogRead beginWrite createChar motorsStop keyPressed tempoWrite readButton subnetMask debugPrint macAddress writeGreen randomSeed attachGPRS readString sendString remotePort releaseAll mouseMoved background getXChange getYChange answerCall getResult voiceCall endPacket constrain getSocket writeJSON getButton available connected findUntil readBytes exitValue readGreen writeBlue startLoop IPAddress isPressed sendSysex pauseMode gatewayIP setCursor getOemKey tuneWrite noDisplay loadImage switchPIN onRequest onReceive changePIN playFile noBuffer parseInt overflow checkPIN knobRead beginTFT bitClear updateIR bitWrite position writeRGB highByte writeRed setSpeed readBlue noStroke remoteIP transfer shutdown hangCall beginSMS endWrite attached maintain noCursor checkReg checkPUK shiftOut isValid shiftIn pulseIn connect println localIP pinMode getIMEI display noBlink process getBand running beginSD drawBMP lowByte setBand release bitRead prepare pointTo readRed setMode noFill remove listen stroke detach attach noTone exists buffer height bitSet circle config cursor random IRread setDNS endSMS getKey micros millis begin print write ready flush width isPIN blink clear press mkdir rmdir close point yield image BSSID click delay read text move peek beep rect line open seek fill size turn stop home find step tone sqrt RSSI SSID end bit tan cos sin pow map abs max min get run put",literal:"DIGITAL_MESSAGE FIRMATA_STRING ANALOG_MESSAGE REPORT_DIGITAL REPORT_ANALOG INPUT_PULLUP SET_PIN_MODE INTERNAL2V56 SYSTEM_RESET LED_BUILTIN INTERNAL1V1 SYSEX_START INTERNAL EXTERNAL DEFAULT OUTPUT INPUT HIGH LOW"},f=s(u),p=f.keywords;return p.keyword+=" "+h.keyword,p.literal+=" "+h.literal,p.built_in+=" "+h.built_in,p._+=" "+h._,f.name="Arduino",f.aliases=["ino"],f.supersetOf="cpp",f}return GQe=o,GQe}var qQe,Ppn;function Sei(){if(Ppn)return qQe;Ppn=1;function e(t){const r={variants:[t.COMMENT("^[ \\t]*(?=#)","$",{relevance:0,excludeBegin:!0}),t.COMMENT("[;@]","$",{relevance:0}),t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]};return{name:"ARM Assembly",case_insensitive:!0,aliases:["arm"],keywords:{$pattern:"\\.?"+t.IDENT_RE,meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND ",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"},contains:[{className:"keyword",begin:"\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?(?=\\s)"},r,t.QUOTE_STRING_MODE,{className:"string",begin:"'",end:"[^\\\\]'",relevance:0},{className:"title",begin:"\\|",end:"\\|",illegal:"\\n",relevance:0},{className:"number",variants:[{begin:"[#$=]?0x[0-9a-f]+"},{begin:"[#$=]?0b[01]+"},{begin:"[#$=]\\d+"},{begin:"\\b\\d+"}],relevance:0},{className:"symbol",variants:[{begin:"^[ \\t]*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{begin:"^[a-z_\\.\\$][a-z0-9_\\.\\$]+"},{begin:"[=#]\\w+"}],relevance:0}]}}return qQe=e,qQe}var HQe,Bpn;function Tei(){if(Bpn)return HQe;Bpn=1;function e(u){return u?typeof u=="string"?u:u.source:null}function t(u){return a("(?=",u,")")}function r(u){return a("(",u,")?")}function a(...u){return u.map(f=>e(f)).join("")}function s(...u){return"("+u.map(f=>e(f)).join("|")+")"}function o(u){const h=a(/[A-Z_]/,r(/[A-Z0-9_.-]*:/),/[A-Z0-9_.-]*/),f=/[A-Za-z0-9._:-]+/,p={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},m={begin:/\s/,contains:[{className:"meta-keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},b=u.inherit(m,{begin:/\(/,end:/\)/}),_=u.inherit(u.APOS_STRING_MODE,{className:"meta-string"}),w=u.inherit(u.QUOTE_STRING_MODE,{className:"meta-string"}),S={endsWithParent:!0,illegal:/`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,contains:[{className:"meta",begin://,relevance:10,contains:[m,w,_,b,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin://,contains:[m,b,w,_]}]}]},u.COMMENT(//,{relevance:10}),{begin://,relevance:10},p,{className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag",begin:/)/,end:/>/,keywords:{name:"style"},contains:[S],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/)/,end:/>/,keywords:{name:"script"},contains:[S],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:a(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:h,relevance:0,starts:S}]},{className:"tag",begin:a(/<\//,t(a(h,/>/))),contains:[{className:"name",begin:h,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}return HQe=o,HQe}var VQe,Fpn;function Cei(){if(Fpn)return VQe;Fpn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s={begin:"^'{3,}[ \\t]*$",relevance:10},o=[{begin:/\\[*_`]/},{begin:/\\\\\*{2}[^\n]*?\*{2}/},{begin:/\\\\_{2}[^\n]*_{2}/},{begin:/\\\\`{2}[^\n]*`{2}/},{begin:/[:;}][*_`](?![*_`])/}],u=[{className:"strong",begin:/\*{2}([^\n]+?)\*{2}/},{className:"strong",begin:t(/\*\*/,/((\*(?!\*)|\\[^\n]|[^*\n\\])+\n)+/,/(\*(?!\*)|\\[^\n]|[^*\n\\])*/,/\*\*/),relevance:0},{className:"strong",begin:/\B\*(\S|\S[^\n]*?\S)\*(?!\w)/},{className:"strong",begin:/\*[^\s]([^\n]+\n)+([^\n]+)\*/}],h=[{className:"emphasis",begin:/_{2}([^\n]+?)_{2}/},{className:"emphasis",begin:t(/__/,/((_(?!_)|\\[^\n]|[^_\n\\])+\n)+/,/(_(?!_)|\\[^\n]|[^_\n\\])*/,/__/),relevance:0},{className:"emphasis",begin:/\b_(\S|\S[^\n]*?\S)_(?!\w)/},{className:"emphasis",begin:/_[^\s]([^\n]+\n)+([^\n]+)_/},{className:"emphasis",begin:"\\B'(?!['\\s])",end:"(\\n{2}|')",contains:[{begin:"\\\\'\\w",relevance:0}],relevance:0}],f={className:"symbol",begin:"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\s+",relevance:10},p={className:"bullet",begin:"^(\\*+|-+|\\.+|[^\\n]+?::)\\s+"};return{name:"AsciiDoc",aliases:["adoc"],contains:[a.COMMENT("^/{4,}\\n","\\n/{4,}$",{relevance:10}),a.COMMENT("^//","$",{relevance:0}),{className:"title",begin:"^\\.\\w.*$"},{begin:"^[=\\*]{4,}\\n",end:"\\n^[=\\*]{4,}$",relevance:10},{className:"section",relevance:10,variants:[{begin:"^(={1,6})[ ].+?([ ]\\1)?$"},{begin:"^[^\\[\\]\\n]+?\\n[=\\-~\\^\\+]{2,}$"}]},{className:"meta",begin:"^:.+?:",end:"\\s",excludeEnd:!0,relevance:10},{className:"meta",begin:"^\\[.+?\\]$",relevance:0},{className:"quote",begin:"^_{4,}\\n",end:"\\n_{4,}$",relevance:10},{className:"code",begin:"^[\\-\\.]{4,}\\n",end:"\\n[\\-\\.]{4,}$",relevance:10},{begin:"^\\+{4,}\\n",end:"\\n\\+{4,}$",contains:[{begin:"<",end:">",subLanguage:"xml",relevance:0}],relevance:10},p,f,...o,...u,...h,{className:"string",variants:[{begin:"``.+?''"},{begin:"`.+?'"}]},{className:"code",begin:/`{2}/,end:/(\n{2}|`{2})/},{className:"code",begin:"(`.+?`|\\+.+?\\+)",relevance:0},{className:"code",begin:"^[ \\t]",end:"$",relevance:0},s,{begin:"(link:)?(http|https|ftp|file|irc|image:?):\\S+?\\[[^[]*?\\]",returnBegin:!0,contains:[{begin:"(link|image:?):",relevance:0},{className:"link",begin:"\\w",end:"[^\\[]+",relevance:0},{className:"string",begin:"\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0,relevance:0}],relevance:10}]}}return VQe=r,VQe}var YQe,$pn;function Aei(){if($pn)return YQe;$pn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s="false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance",o="get set args call";return{name:"AspectJ",keywords:s,illegal:/<\/|#/,contains:[a.COMMENT(/\/\*\*/,/\*\//,{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:/@[A-Za-z]+/}]}),a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,a.APOS_STRING_MODE,a.QUOTE_STRING_MODE,{className:"class",beginKeywords:"aspect",end:/[{;=]/,excludeEnd:!0,illegal:/[:;"\[\]]/,contains:[{beginKeywords:"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton"},a.UNDERSCORE_TITLE_MODE,{begin:/\([^\)]*/,end:/[)]+/,keywords:s+" "+o,excludeEnd:!1}]},{className:"class",beginKeywords:"class interface",end:/[{;=]/,excludeEnd:!0,relevance:0,keywords:"class interface",illegal:/[:"\[\]]/,contains:[{beginKeywords:"extends implements"},a.UNDERSCORE_TITLE_MODE]},{beginKeywords:"pointcut after before around throwing returning",end:/[)]/,excludeEnd:!1,illegal:/["\[\]]/,contains:[{begin:t(a.UNDERSCORE_IDENT_RE,/\s*\(/),returnBegin:!0,contains:[a.UNDERSCORE_TITLE_MODE]}]},{begin:/[:]/,returnBegin:!0,end:/[{;]/,relevance:0,excludeEnd:!1,keywords:s,illegal:/["\[\]]/,contains:[{begin:t(a.UNDERSCORE_IDENT_RE,/\s*\(/),keywords:s+" "+o,relevance:0},a.QUOTE_STRING_MODE]},{beginKeywords:"new throw",relevance:0},{className:"function",begin:/\w+ +\w+(\.\w+)?\s*\([^\)]*\)\s*((throws)[\w\s,]+)?[\{;]/,returnBegin:!0,end:/[{;=]/,keywords:s,excludeEnd:!0,contains:[{begin:t(a.UNDERSCORE_IDENT_RE,/\s*\(/),returnBegin:!0,relevance:0,contains:[a.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/,relevance:0,keywords:s,contains:[a.APOS_STRING_MODE,a.QUOTE_STRING_MODE,a.C_NUMBER_MODE,a.C_BLOCK_COMMENT_MODE]},a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE]},a.C_NUMBER_MODE,{className:"meta",begin:/@[A-Za-z]+/}]}}return YQe=r,YQe}var jQe,Upn;function kei(){if(Upn)return jQe;Upn=1;function e(t){const r={begin:"`[\\s\\S]"};return{name:"AutoHotkey",case_insensitive:!0,aliases:["ahk"],keywords:{keyword:"Break Continue Critical Exit ExitApp Gosub Goto New OnExit Pause return SetBatchLines SetTimer Suspend Thread Throw Until ahk_id ahk_class ahk_pid ahk_exe ahk_group",literal:"true false NOT AND OR",built_in:"ComSpec Clipboard ClipboardAll ErrorLevel"},contains:[r,t.inherit(t.QUOTE_STRING_MODE,{contains:[r]}),t.COMMENT(";","$",{relevance:0}),t.C_BLOCK_COMMENT_MODE,{className:"number",begin:t.NUMBER_RE,relevance:0},{className:"variable",begin:"%[a-zA-Z0-9#_$@]+%"},{className:"built_in",begin:"^\\s*\\w+\\s*(,|%)"},{className:"title",variants:[{begin:'^[^\\n";]+::(?!=)'},{begin:'^[^\\n";]+:(?!=)',relevance:0}]},{className:"meta",begin:"^\\s*#\\w+",end:"$",relevance:0},{className:"built_in",begin:"A_[a-zA-Z0-9]+"},{begin:",\\s*,"}]}}return jQe=e,jQe}var WQe,zpn;function Rei(){if(zpn)return WQe;zpn=1;function e(t){const r="ByRef Case Const ContinueCase ContinueLoop Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With",a=["EndRegion","forcedef","forceref","ignorefunc","include","include-once","NoTrayIcon","OnAutoItStartRegister","pragma","Region","RequireAdmin","Tidy_Off","Tidy_On","Tidy_Parameters"],s="True False And Null Not Or Default",o="Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown, UDPShutdown TCPStartup, UDPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait WinWaitActive WinWaitClose WinWaitNotActive",u={variants:[t.COMMENT(";","$",{relevance:0}),t.COMMENT("#cs","#ce"),t.COMMENT("#comments-start","#comments-end")]},h={begin:"\\$[A-z0-9_]+"},f={className:"string",variants:[{begin:/"/,end:/"/,contains:[{begin:/""/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]},p={variants:[t.BINARY_NUMBER_MODE,t.C_NUMBER_MODE]},m={className:"meta",begin:"#",end:"$",keywords:{"meta-keyword":a},contains:[{begin:/\\\n/,relevance:0},{beginKeywords:"include",keywords:{"meta-keyword":"include"},end:"$",contains:[f,{className:"meta-string",variants:[{begin:"<",end:">"},{begin:/"/,end:/"/,contains:[{begin:/""/,relevance:0}]},{begin:/'/,end:/'/,contains:[{begin:/''/,relevance:0}]}]}]},f,u]},b={className:"symbol",begin:"@[A-z0-9_]+"},_={className:"function",beginKeywords:"Func",end:"$",illegal:"\\$|\\[|%",contains:[t.UNDERSCORE_TITLE_MODE,{className:"params",begin:"\\(",end:"\\)",contains:[h,f,p]}]};return{name:"AutoIt",case_insensitive:!0,illegal:/\/\*/,keywords:{keyword:r,built_in:o,literal:s},contains:[u,h,f,p,m,b,_]}}return WQe=e,WQe}var KQe,Gpn;function Iei(){if(Gpn)return KQe;Gpn=1;function e(t){return{name:"AVR Assembly",case_insensitive:!0,keywords:{$pattern:"\\.?"+t.IDENT_RE,keyword:"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr",built_in:"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf",meta:".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set"},contains:[t.C_BLOCK_COMMENT_MODE,t.COMMENT(";","$",{relevance:0}),t.C_NUMBER_MODE,t.BINARY_NUMBER_MODE,{className:"number",begin:"\\b(\\$[a-zA-Z0-9]+|0o[0-7]+)"},t.QUOTE_STRING_MODE,{className:"string",begin:"'",end:"[^\\\\]'",illegal:"[^\\\\][^']"},{className:"symbol",begin:"^[A-Za-z0-9_.$]+:"},{className:"meta",begin:"#",end:"$"},{className:"subst",begin:"@[0-9]+"}]}}return KQe=e,KQe}var XQe,qpn;function Nei(){if(qpn)return XQe;qpn=1;function e(t){const r={className:"variable",variants:[{begin:/\$[\w\d#@][\w\d_]*/},{begin:/\$\{(.*?)\}/}]},a="BEGIN END if else while do for in break continue delete next nextfile function func exit|10",s={className:"string",contains:[t.BACKSLASH_ESCAPE],variants:[{begin:/(u|b)?r?'''/,end:/'''/,relevance:10},{begin:/(u|b)?r?"""/,end:/"""/,relevance:10},{begin:/(u|r|ur)'/,end:/'/,relevance:10},{begin:/(u|r|ur)"/,end:/"/,relevance:10},{begin:/(b|br)'/,end:/'/},{begin:/(b|br)"/,end:/"/},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE]};return{name:"Awk",keywords:{keyword:a},contains:[r,s,t.REGEXP_MODE,t.HASH_COMMENT_MODE,t.NUMBER_MODE]}}return XQe=e,XQe}var QQe,Hpn;function Oei(){if(Hpn)return QQe;Hpn=1;function e(t){return{name:"X++",aliases:["x++"],keywords:{keyword:["abstract","as","asc","avg","break","breakpoint","by","byref","case","catch","changecompany","class","client","client","common","const","continue","count","crosscompany","delegate","delete_from","desc","display","div","do","edit","else","eventhandler","exists","extends","final","finally","firstfast","firstonly","firstonly1","firstonly10","firstonly100","firstonly1000","flush","for","forceliterals","forcenestedloop","forceplaceholders","forceselectorder","forupdate","from","generateonly","group","hint","if","implements","in","index","insert_recordset","interface","internal","is","join","like","maxof","minof","mod","namespace","new","next","nofetch","notexists","optimisticlock","order","outer","pessimisticlock","print","private","protected","public","readonly","repeatableread","retry","return","reverse","select","server","setting","static","sum","super","switch","this","throw","try","ttsabort","ttsbegin","ttscommit","unchecked","update_recordset","using","validtimestate","void","where","while"],built_in:["anytype","boolean","byte","char","container","date","double","enum","guid","int","int64","long","real","short","str","utcdatetime","var"],literal:["default","false","null","true"]},contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,t.C_NUMBER_MODE,{className:"meta",begin:"#",end:"$"},{className:"class",beginKeywords:"class interface",end:/\{/,excludeEnd:!0,illegal:":",contains:[{beginKeywords:"extends implements"},t.UNDERSCORE_TITLE_MODE]}]}}return QQe=e,QQe}var ZQe,Vpn;function Lei(){if(Vpn)return ZQe;Vpn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s={},o={begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[s]}]};Object.assign(s,{className:"variable",variants:[{begin:t(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},o]});const u={className:"subst",begin:/\$\(/,end:/\)/,contains:[a.BACKSLASH_ESCAPE]},h={begin:/<<-?\s*(?=\w+)/,starts:{contains:[a.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:"string"})]}},f={className:"string",begin:/"/,end:/"/,contains:[a.BACKSLASH_ESCAPE,s,u]};u.contains.push(f);const p={className:"",begin:/\\"/},m={className:"string",begin:/'/,end:/'/},b={begin:/\$\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},a.NUMBER_MODE,s]},_=["fish","bash","zsh","sh","csh","ksh","tcsh","dash","scsh"],w=a.SHEBANG({binary:`(${_.join("|")})`,relevance:10}),S={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[a.inherit(a.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{name:"Bash",aliases:["sh","zsh"],keywords:{$pattern:/\b[a-z._-]+\b/,keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp"},contains:[w,a.SHEBANG(),S,b,a.HASH_COMMENT_MODE,h,f,p,m,s]}}return ZQe=r,ZQe}var JQe,Ypn;function Dei(){if(Ypn)return JQe;Ypn=1;function e(t){return{name:"BASIC",case_insensitive:!0,illegal:"^.",keywords:{$pattern:"[a-zA-Z][a-zA-Z0-9_$%!#]*",keyword:"ABS ASC AND ATN AUTO|0 BEEP BLOAD|10 BSAVE|10 CALL CALLS CDBL CHAIN CHDIR CHR$|10 CINT CIRCLE CLEAR CLOSE CLS COLOR COM COMMON CONT COS CSNG CSRLIN CVD CVI CVS DATA DATE$ DEFDBL DEFINT DEFSNG DEFSTR DEF|0 SEG USR DELETE DIM DRAW EDIT END ENVIRON ENVIRON$ EOF EQV ERASE ERDEV ERDEV$ ERL ERR ERROR EXP FIELD FILES FIX FOR|0 FRE GET GOSUB|10 GOTO HEX$ IF THEN ELSE|0 INKEY$ INP INPUT INPUT# INPUT$ INSTR IMP INT IOCTL IOCTL$ KEY ON OFF LIST KILL LEFT$ LEN LET LINE LLIST LOAD LOC LOCATE LOF LOG LPRINT USING LSET MERGE MID$ MKDIR MKD$ MKI$ MKS$ MOD NAME NEW NEXT NOISE NOT OCT$ ON OR PEN PLAY STRIG OPEN OPTION BASE OUT PAINT PALETTE PCOPY PEEK PMAP POINT POKE POS PRINT PRINT] PSET PRESET PUT RANDOMIZE READ REM RENUM RESET|0 RESTORE RESUME RETURN|0 RIGHT$ RMDIR RND RSET RUN SAVE SCREEN SGN SHELL SIN SOUND SPACE$ SPC SQR STEP STICK STOP STR$ STRING$ SWAP SYSTEM TAB TAN TIME$ TIMER TROFF TRON TO USR VAL VARPTR VARPTR$ VIEW WAIT WHILE WEND WIDTH WINDOW WRITE XOR"},contains:[t.QUOTE_STRING_MODE,t.COMMENT("REM","$",{relevance:10}),t.COMMENT("'","$",{relevance:0}),{className:"symbol",begin:"^[0-9]+ ",relevance:10},{className:"number",begin:"\\b\\d+(\\.\\d+)?([edED]\\d+)?[#!]?",relevance:0},{className:"number",begin:"(&[hH][0-9a-fA-F]{1,4})"},{className:"number",begin:"(&[oO][0-7]{1,6})"}]}}return JQe=e,JQe}var eZe,jpn;function Mei(){if(jpn)return eZe;jpn=1;function e(t){return{name:"Backus–Naur Form",contains:[{className:"attribute",begin://},{begin:/::=/,end:/$/,contains:[{begin://},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE]}]}}return eZe=e,eZe}var tZe,Wpn;function Pei(){if(Wpn)return tZe;Wpn=1;function e(t){const r={className:"literal",begin:/[+-]/,relevance:0};return{name:"Brainfuck",aliases:["bf"],contains:[t.COMMENT(`[^\\[\\]\\.,\\+\\-<> \r +]`,`[\\[\\]\\.,\\+\\-<> \r +]`,{returnEnd:!0,relevance:0}),{className:"title",begin:"[\\[\\]]",relevance:0},{className:"string",begin:"[\\.,]",relevance:0},{begin:/(?:\+\+|--)/,contains:[r]},r]}}return tZe=e,tZe}var nZe,Kpn;function Bei(){if(Kpn)return nZe;Kpn=1;function e(u){return u?typeof u=="string"?u:u.source:null}function t(u){return a("(?=",u,")")}function r(u){return a("(",u,")?")}function a(...u){return u.map(f=>e(f)).join("")}function s(u){const h=u.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),f="decltype\\(auto\\)",p="[a-zA-Z_]\\w*::",b="("+f+"|"+r(p)+"[a-zA-Z_]\\w*"+r("<[^<>]+>")+")",_={className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},S={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[u.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},u.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},C={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},A={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},u.inherit(S,{className:"meta-string"}),{className:"meta-string",begin:/<.*?>/},h,u.C_BLOCK_COMMENT_MODE]},k={className:"title",begin:r(p)+u.IDENT_RE,relevance:0},I=r(p)+u.IDENT_RE+"\\s*\\(",L={keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",built_in:"_Bool _Complex _Imaginary",_relevance_hints:["asin","atan2","atan","calloc","ceil","cosh","cos","exit","exp","fabs","floor","fmod","fprintf","fputs","free","frexp","auto_ptr","deque","list","queue","stack","vector","map","set","pair","bitset","multiset","multimap","unordered_set","fscanf","future","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","tolower","toupper","labs","ldexp","log10","log","malloc","realloc","memchr","memcmp","memcpy","memset","modf","pow","printf","putchar","puts","scanf","sinh","sin","snprintf","sprintf","sqrt","sscanf","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","tanh","tan","unordered_map","unordered_multiset","unordered_multimap","priority_queue","make_pair","array","shared_ptr","abort","terminate","abs","acos","vfprintf","vprintf","vsprintf","endl","initializer_list","unique_ptr","complex","imaginary","std","string","wstring","cin","cout","cerr","clog","stdin","stdout","stderr","stringstream","istringstream","ostringstream"],literal:"true false nullptr NULL"},P={className:"function.dispatch",relevance:0,keywords:L,begin:a(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,u.IDENT_RE,t(/\s*\(/))},M=[P,A,_,h,u.C_BLOCK_COMMENT_MODE,C,S],F={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:L,contains:M.concat([{begin:/\(/,end:/\)/,keywords:L,contains:M.concat(["self"]),relevance:0}]),relevance:0},U={className:"function",begin:"("+b+"[\\*&\\s]+)+"+I,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:L,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:f,keywords:L,relevance:0},{begin:I,returnBegin:!0,contains:[k],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[S,C]},{className:"params",begin:/\(/,end:/\)/,keywords:L,relevance:0,contains:[h,u.C_BLOCK_COMMENT_MODE,S,C,_,{begin:/\(/,end:/\)/,keywords:L,relevance:0,contains:["self",h,u.C_BLOCK_COMMENT_MODE,S,C,_]}]},_,h,u.C_BLOCK_COMMENT_MODE,A]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:L,illegal:"",keywords:L,contains:["self",_]},{begin:u.IDENT_RE+"::",keywords:L},{className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/,contains:[{beginKeywords:"final class struct"},u.TITLE_MODE]}]),exports:{preprocessor:A,strings:S,keywords:L}}}function o(u){const h=s(u),f=["c","h"],p=["cc","c++","h++","hpp","hh","hxx","cxx"];return h.disableAutodetect=!0,h.aliases=[],u.getLanguage("c")||h.aliases.push(...f),u.getLanguage("cpp")||h.aliases.push(...p),h}return nZe=o,nZe}var rZe,Xpn;function Fei(){if(Xpn)return rZe;Xpn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(s){return r("(",s,")?")}function r(...s){return s.map(u=>e(u)).join("")}function a(s){const o=s.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),u="decltype\\(auto\\)",h="[a-zA-Z_]\\w*::",p="("+u+"|"+t(h)+"[a-zA-Z_]\\w*"+t("<[^<>]+>")+")",m={className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},_={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[s.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},s.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},w={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},S={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},s.inherit(_,{className:"meta-string"}),{className:"meta-string",begin:/<.*?>/},o,s.C_BLOCK_COMMENT_MODE]},C={className:"title",begin:t(h)+s.IDENT_RE,relevance:0},A=t(h)+s.IDENT_RE+"\\s*\\(",k={keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary",literal:"true false nullptr NULL"},I=[S,m,o,s.C_BLOCK_COMMENT_MODE,w,_],N={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:k,contains:I.concat([{begin:/\(/,end:/\)/,keywords:k,contains:I.concat(["self"]),relevance:0}]),relevance:0},L={className:"function",begin:"("+p+"[\\*&\\s]+)+"+A,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:k,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:u,keywords:k,relevance:0},{begin:A,returnBegin:!0,contains:[C],relevance:0},{className:"params",begin:/\(/,end:/\)/,keywords:k,relevance:0,contains:[o,s.C_BLOCK_COMMENT_MODE,_,w,m,{begin:/\(/,end:/\)/,keywords:k,relevance:0,contains:["self",o,s.C_BLOCK_COMMENT_MODE,_,w,m]}]},m,o,s.C_BLOCK_COMMENT_MODE,S]};return{name:"C",aliases:["h"],keywords:k,disableAutodetect:!0,illegal:"",keywords:k,contains:["self",m]},{begin:s.IDENT_RE+"::",keywords:k},{className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/,contains:[{beginKeywords:"final class struct"},s.TITLE_MODE]}]),exports:{preprocessor:S,strings:_,keywords:k}}}return rZe=a,rZe}var iZe,Qpn;function $ei(){if(Qpn)return iZe;Qpn=1;function e(t){const r="div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var",a="false true",s=[t.C_LINE_COMMENT_MODE,t.COMMENT(/\{/,/\}/,{relevance:0}),t.COMMENT(/\(\*/,/\*\)/,{relevance:10})],o={className:"string",begin:/'/,end:/'/,contains:[{begin:/''/}]},u={className:"string",begin:/(#\d+)+/},h={className:"number",begin:"\\b\\d+(\\.\\d+)?(DT|D|T)",relevance:0},f={className:"string",begin:'"',end:'"'},p={className:"function",beginKeywords:"procedure",end:/[:;]/,keywords:"procedure|10",contains:[t.TITLE_MODE,{className:"params",begin:/\(/,end:/\)/,keywords:r,contains:[o,u]}].concat(s)},m={className:"class",begin:"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\d+) ([^\\r\\n]+)",returnBegin:!0,contains:[t.TITLE_MODE,p]};return{name:"C/AL",case_insensitive:!0,keywords:{keyword:r,literal:a},illegal:/\/\*/,contains:[o,u,h,f,t.NUMBER_MODE,m,p]}}return iZe=e,iZe}var aZe,Zpn;function Uei(){if(Zpn)return aZe;Zpn=1;function e(t){return{name:"Cap’n Proto",aliases:["capnp"],keywords:{keyword:"struct enum interface union group import using const annotation extends in of on as with from fixed",built_in:"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List",literal:"true false"},contains:[t.QUOTE_STRING_MODE,t.NUMBER_MODE,t.HASH_COMMENT_MODE,{className:"meta",begin:/@0x[\w\d]{16};/,illegal:/\n/},{className:"symbol",begin:/@\d+\b/},{className:"class",beginKeywords:"struct enum",end:/\{/,illegal:/\n/,contains:[t.inherit(t.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{className:"class",beginKeywords:"interface",end:/\{/,illegal:/\n/,contains:[t.inherit(t.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]}]}}return aZe=e,aZe}var sZe,Jpn;function zei(){if(Jpn)return sZe;Jpn=1;function e(t){const r="assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty",a="shared abstract formal default actual variable late native deprecated final sealed annotation suppressWarnings small",s="doc by license see throws tagged",o={className:"subst",excludeBegin:!0,excludeEnd:!0,begin:/``/,end:/``/,keywords:r,relevance:10},u=[{className:"string",begin:'"""',end:'"""',relevance:10},{className:"string",begin:'"',end:'"',contains:[o]},{className:"string",begin:"'",end:"'"},{className:"number",begin:"#[0-9a-fA-F_]+|\\$[01_]+|[0-9_]+(?:\\.[0-9_](?:[eE][+-]?\\d+)?)?[kMGTPmunpf]?",relevance:0}];return o.contains=u,{name:"Ceylon",keywords:{keyword:r+" "+a,meta:s},illegal:"\\$[^01]|#[^0-9a-fA-F]",contains:[t.C_LINE_COMMENT_MODE,t.COMMENT("/\\*","\\*/",{contains:["self"]}),{className:"meta",begin:'@[a-z]\\w*(?::"[^"]*")?'}].concat(u)}}return sZe=e,sZe}var oZe,egn;function Gei(){if(egn)return oZe;egn=1;function e(t){return{name:"Clean",aliases:["icl","dcl"],keywords:{keyword:"if let in with where case of class instance otherwise implementation definition system module from import qualified as special code inline foreign export ccall stdcall generic derive infix infixl infixr",built_in:"Int Real Char Bool",literal:"True False"},contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,t.C_NUMBER_MODE,{begin:"->|<-[|:]?|#!?|>>=|\\{\\||\\|\\}|:==|=:|<>"}]}}return oZe=e,oZe}var lZe,tgn;function qei(){if(tgn)return lZe;tgn=1;function e(t){const r="a-zA-Z_\\-!.?+*=<>&#'",a="["+r+"]["+r+"0-9/;:]*",s="def defonce defprotocol defstruct defmulti defmethod defn- defn defmacro deftype defrecord",o={$pattern:a,"builtin-name":s+" cond apply if-not if-let if not not= =|0 <|0 >|0 <=|0 >=|0 ==|0 +|0 /|0 *|0 -|0 rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy first rest cons cast coll last butlast sigs reify second ffirst fnext nfirst nnext meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize"},u="[-+]?\\d+(\\.\\d+)?",h={begin:a,relevance:0},f={className:"number",begin:u,relevance:0},p=t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),m=t.COMMENT(";","$",{relevance:0}),b={className:"literal",begin:/\b(true|false|nil)\b/},_={begin:"[\\[\\{]",end:"[\\]\\}]"},w={className:"comment",begin:"\\^"+a},S=t.COMMENT("\\^\\{","\\}"),C={className:"symbol",begin:"[:]{1,2}"+a},A={begin:"\\(",end:"\\)"},k={endsWithParent:!0,relevance:0},I={keywords:o,className:"name",begin:a,relevance:0,starts:k},N=[A,p,w,S,m,C,_,f,b,h],L={beginKeywords:s,lexemes:a,end:'(\\[|#|\\d|"|:|\\{|\\)|\\(|$)',contains:[{className:"title",begin:a,relevance:0,excludeEnd:!0,endsParent:!0}].concat(N)};return A.contains=[t.COMMENT("comment",""),L,I,k],k.contains=N,_.contains=N,S.contains=[_],{name:"Clojure",aliases:["clj"],illegal:/\S/,contains:[A,p,w,S,m,C,_,f,b]}}return lZe=e,lZe}var cZe,ngn;function Hei(){if(ngn)return cZe;ngn=1;function e(t){return{name:"Clojure REPL",contains:[{className:"meta",begin:/^([\w.-]+|\s*#_)?=>/,starts:{end:/$/,subLanguage:"clojure"}}]}}return cZe=e,cZe}var uZe,rgn;function Vei(){if(rgn)return uZe;rgn=1;function e(t){return{name:"CMake",aliases:["cmake.in"],case_insensitive:!0,keywords:{keyword:"break cmake_host_system_information cmake_minimum_required cmake_parse_arguments cmake_policy configure_file continue elseif else endforeach endfunction endif endmacro endwhile execute_process file find_file find_library find_package find_path find_program foreach function get_cmake_property get_directory_property get_filename_component get_property if include include_guard list macro mark_as_advanced math message option return separate_arguments set_directory_properties set_property set site_name string unset variable_watch while add_compile_definitions add_compile_options add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_link_options add_subdirectory add_test aux_source_directory build_command create_test_sourcelist define_property enable_language enable_testing export fltk_wrap_ui get_source_file_property get_target_property get_test_property include_directories include_external_msproject include_regular_expression install link_directories link_libraries load_cache project qt_wrap_cpp qt_wrap_ui remove_definitions set_source_files_properties set_target_properties set_tests_properties source_group target_compile_definitions target_compile_features target_compile_options target_include_directories target_link_directories target_link_libraries target_link_options target_sources try_compile try_run ctest_build ctest_configure ctest_coverage ctest_empty_binary_directory ctest_memcheck ctest_read_custom_files ctest_run_script ctest_sleep ctest_start ctest_submit ctest_test ctest_update ctest_upload build_name exec_program export_library_dependencies install_files install_programs install_targets load_command make_directory output_required_files remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or not command policy target test exists is_newer_than is_directory is_symlink is_absolute matches less greater equal less_equal greater_equal strless strgreater strequal strless_equal strgreater_equal version_less version_greater version_equal version_less_equal version_greater_equal in_list defined"},contains:[{className:"variable",begin:/\$\{/,end:/\}/},t.HASH_COMMENT_MODE,t.QUOTE_STRING_MODE,t.NUMBER_MODE]}}return uZe=e,uZe}var hZe,ign;function Yei(){if(ign)return hZe;ign=1;const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],t=["true","false","null","undefined","NaN","Infinity"],r=["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],a=["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],s=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],o=["arguments","this","super","console","window","document","localStorage","module","global"],u=[].concat(s,o,r,a);function h(f){const p=["npm","print"],m=["yes","no","on","off"],b=["then","unless","until","loop","by","when","and","or","is","isnt","not"],_=["var","const","let","function","static"],w=P=>M=>!P.includes(M),S={keyword:e.concat(b).filter(w(_)),literal:t.concat(m),built_in:u.concat(p)},C="[A-Za-z$_][0-9A-Za-z$_]*",A={className:"subst",begin:/#\{/,end:/\}/,keywords:S},k=[f.BINARY_NUMBER_MODE,f.inherit(f.C_NUMBER_MODE,{starts:{end:"(\\s*/)?",relevance:0}}),{className:"string",variants:[{begin:/'''/,end:/'''/,contains:[f.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[f.BACKSLASH_ESCAPE]},{begin:/"""/,end:/"""/,contains:[f.BACKSLASH_ESCAPE,A]},{begin:/"/,end:/"/,contains:[f.BACKSLASH_ESCAPE,A]}]},{className:"regexp",variants:[{begin:"///",end:"///",contains:[A,f.HASH_COMMENT_MODE]},{begin:"//[gim]{0,3}(?=\\W)",relevance:0},{begin:/\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/}]},{begin:"@"+C},{subLanguage:"javascript",excludeBegin:!0,excludeEnd:!0,variants:[{begin:"```",end:"```"},{begin:"`",end:"`"}]}];A.contains=k;const I=f.inherit(f.TITLE_MODE,{begin:C}),N="(\\(.*\\)\\s*)?\\B[-=]>",L={className:"params",begin:"\\([^\\(]",returnBegin:!0,contains:[{begin:/\(/,end:/\)/,keywords:S,contains:["self"].concat(k)}]};return{name:"CoffeeScript",aliases:["coffee","cson","iced"],keywords:S,illegal:/\/\*/,contains:k.concat([f.COMMENT("###","###"),f.HASH_COMMENT_MODE,{className:"function",begin:"^\\s*"+C+"\\s*=\\s*"+N,end:"[-=]>",returnBegin:!0,contains:[I,L]},{begin:/[:\(,=]\s*/,relevance:0,contains:[{className:"function",begin:N,end:"[-=]>",returnBegin:!0,contains:[L]}]},{className:"class",beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[I]},I]},{begin:C+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}])}}return hZe=h,hZe}var dZe,agn;function jei(){if(agn)return dZe;agn=1;function e(t){return{name:"Coq",keywords:{keyword:"_|0 as at cofix else end exists exists2 fix for forall fun if IF in let match mod Prop return Set then Type using where with Abort About Add Admit Admitted All Arguments Assumptions Axiom Back BackTo Backtrack Bind Blacklist Canonical Cd Check Class Classes Close Coercion Coercions CoFixpoint CoInductive Collection Combined Compute Conjecture Conjectures Constant constr Constraint Constructors Context Corollary CreateHintDb Cut Declare Defined Definition Delimit Dependencies Dependent Derive Drop eauto End Equality Eval Example Existential Existentials Existing Export exporting Extern Extract Extraction Fact Field Fields File Fixpoint Focus for From Function Functional Generalizable Global Goal Grab Grammar Graph Guarded Heap Hint HintDb Hints Hypotheses Hypothesis ident Identity If Immediate Implicit Import Include Inductive Infix Info Initial Inline Inspect Instance Instances Intro Intros Inversion Inversion_clear Language Left Lemma Let Libraries Library Load LoadPath Local Locate Ltac ML Mode Module Modules Monomorphic Morphism Next NoInline Notation Obligation Obligations Opaque Open Optimize Options Parameter Parameters Parametric Path Paths pattern Polymorphic Preterm Print Printing Program Projections Proof Proposition Pwd Qed Quit Rec Record Recursive Redirect Relation Remark Remove Require Reserved Reset Resolve Restart Rewrite Right Ring Rings Save Scheme Scope Scopes Script Search SearchAbout SearchHead SearchPattern SearchRewrite Section Separate Set Setoid Show Solve Sorted Step Strategies Strategy Structure SubClass Table Tables Tactic Term Test Theorem Time Timeout Transparent Type Typeclasses Types Undelimit Undo Unfocus Unfocused Unfold Universe Universes Unset Unshelve using Variable Variables Variant Verbose Visibility where with",built_in:"abstract absurd admit after apply as assert assumption at auto autorewrite autounfold before bottom btauto by case case_eq cbn cbv change classical_left classical_right clear clearbody cofix compare compute congruence constr_eq constructor contradict contradiction cut cutrewrite cycle decide decompose dependent destruct destruction dintuition discriminate discrR do double dtauto eapply eassumption eauto ecase econstructor edestruct ediscriminate eelim eexact eexists einduction einjection eleft elim elimtype enough equality erewrite eright esimplify_eq esplit evar exact exactly_once exfalso exists f_equal fail field field_simplify field_simplify_eq first firstorder fix fold fourier functional generalize generalizing gfail give_up has_evar hnf idtac in induction injection instantiate intro intro_pattern intros intuition inversion inversion_clear is_evar is_var lapply lazy left lia lra move native_compute nia nsatz omega once pattern pose progress proof psatz quote record red refine reflexivity remember rename repeat replace revert revgoals rewrite rewrite_strat right ring ring_simplify rtauto set setoid_reflexivity setoid_replace setoid_rewrite setoid_symmetry setoid_transitivity shelve shelve_unifiable simpl simple simplify_eq solve specialize split split_Rabs split_Rmult stepl stepr subst sum swap symmetry tactic tauto time timeout top transitivity trivial try tryif unfold unify until using vm_compute with"},contains:[t.QUOTE_STRING_MODE,t.COMMENT("\\(\\*","\\*\\)"),t.C_NUMBER_MODE,{className:"type",excludeBegin:!0,begin:"\\|\\s*",end:"\\w+"},{begin:/[-=]>/}]}}return dZe=e,dZe}var fZe,sgn;function Wei(){if(sgn)return fZe;sgn=1;function e(t){return{name:"Caché Object Script",case_insensitive:!0,aliases:["cls"],keywords:"property parameter class classmethod clientmethod extends as break catch close continue do d|0 else elseif for goto halt hang h|0 if job j|0 kill k|0 lock l|0 merge new open quit q|0 read r|0 return set s|0 tcommit throw trollback try tstart use view while write w|0 xecute x|0 zkill znspace zn ztrap zwrite zw zzdump zzwrite print zbreak zinsert zload zprint zremove zsave zzprint mv mvcall mvcrt mvdim mvprint zquit zsync ascii",contains:[{className:"number",begin:"\\b(\\d+(\\.\\d*)?|\\.\\d+)",relevance:0},{className:"string",variants:[{begin:'"',end:'"',contains:[{begin:'""',relevance:0}]}]},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,{className:"comment",begin:/;/,end:"$",relevance:0},{className:"built_in",begin:/(?:\$\$?|\.\.)\^?[a-zA-Z]+/},{className:"built_in",begin:/\$\$\$[a-zA-Z]+/},{className:"built_in",begin:/%[a-z]+(?:\.[a-z]+)*/},{className:"symbol",begin:/\^%?[a-zA-Z][\w]*/},{className:"keyword",begin:/##class|##super|#define|#dim/},{begin:/&sql\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,subLanguage:"sql"},{begin:/&(js|jscript|javascript)/,excludeBegin:!0,excludeEnd:!0,subLanguage:"javascript"},{begin:/&html<\s*\s*>/,subLanguage:"xml"}]}}return fZe=e,fZe}var pZe,ogn;function Kei(){if(ogn)return pZe;ogn=1;function e(o){return o?typeof o=="string"?o:o.source:null}function t(o){return a("(?=",o,")")}function r(o){return a("(",o,")?")}function a(...o){return o.map(h=>e(h)).join("")}function s(o){const u=o.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),h="decltype\\(auto\\)",f="[a-zA-Z_]\\w*::",m="("+h+"|"+r(f)+"[a-zA-Z_]\\w*"+r("<[^<>]+>")+")",b={className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},w={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[o.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'("+"\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)"+"|.)",end:"'",illegal:"."},o.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},S={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},C={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},o.inherit(w,{className:"meta-string"}),{className:"meta-string",begin:/<.*?>/},u,o.C_BLOCK_COMMENT_MODE]},A={className:"title",begin:r(f)+o.IDENT_RE,relevance:0},k=r(f)+o.IDENT_RE+"\\s*\\(",N={keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq",built_in:"_Bool _Complex _Imaginary",_relevance_hints:["asin","atan2","atan","calloc","ceil","cosh","cos","exit","exp","fabs","floor","fmod","fprintf","fputs","free","frexp","auto_ptr","deque","list","queue","stack","vector","map","set","pair","bitset","multiset","multimap","unordered_set","fscanf","future","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","tolower","toupper","labs","ldexp","log10","log","malloc","realloc","memchr","memcmp","memcpy","memset","modf","pow","printf","putchar","puts","scanf","sinh","sin","snprintf","sprintf","sqrt","sscanf","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","tanh","tan","unordered_map","unordered_multiset","unordered_multimap","priority_queue","make_pair","array","shared_ptr","abort","terminate","abs","acos","vfprintf","vprintf","vsprintf","endl","initializer_list","unique_ptr","complex","imaginary","std","string","wstring","cin","cout","cerr","clog","stdin","stdout","stderr","stringstream","istringstream","ostringstream"],literal:"true false nullptr NULL"},L={className:"function.dispatch",relevance:0,keywords:N,begin:a(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,o.IDENT_RE,t(/\s*\(/))},P=[L,C,b,u,o.C_BLOCK_COMMENT_MODE,S,w],M={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:N,contains:P.concat([{begin:/\(/,end:/\)/,keywords:N,contains:P.concat(["self"]),relevance:0}]),relevance:0},F={className:"function",begin:"("+m+"[\\*&\\s]+)+"+k,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:N,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:h,keywords:N,relevance:0},{begin:k,returnBegin:!0,contains:[A],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[w,S]},{className:"params",begin:/\(/,end:/\)/,keywords:N,relevance:0,contains:[u,o.C_BLOCK_COMMENT_MODE,w,S,b,{begin:/\(/,end:/\)/,keywords:N,relevance:0,contains:["self",u,o.C_BLOCK_COMMENT_MODE,w,S,b]}]},b,u,o.C_BLOCK_COMMENT_MODE,C]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:N,illegal:"",keywords:N,contains:["self",b]},{begin:o.IDENT_RE+"::",keywords:N},{className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/,contains:[{beginKeywords:"final class struct"},o.TITLE_MODE]}]),exports:{preprocessor:C,strings:w,keywords:N}}}return pZe=s,pZe}var gZe,lgn;function Xei(){if(lgn)return gZe;lgn=1;function e(t){const r="primitive rsc_template",a="group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml";return{name:"crmsh",aliases:["crm","pcmk"],case_insensitive:!0,keywords:{keyword:"params meta operations op rule attributes utilization"+" "+"read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\"+" "+"number string",literal:"Master Started Slave Stopped start promote demote stop monitor true false"},contains:[t.HASH_COMMENT_MODE,{beginKeywords:"node",starts:{end:"\\s*([\\w_-]+:)?",starts:{className:"title",end:"\\s*[\\$\\w_][\\w_-]*"}}},{beginKeywords:r,starts:{className:"title",end:"\\s*[\\$\\w_][\\w_-]*",starts:{end:"\\s*@?[\\w_][\\w_\\.:-]*"}}},{begin:"\\b("+a.split(" ").join("|")+")\\s+",keywords:a,starts:{className:"title",end:"[\\$\\w_][\\w_-]*"}},{beginKeywords:"property rsc_defaults op_defaults",starts:{className:"title",end:"\\s*([\\w_-]+:)?"}},t.QUOTE_STRING_MODE,{className:"meta",begin:"(ocf|systemd|service|lsb):[\\w_:-]+",relevance:0},{className:"number",begin:"\\b\\d+(\\.\\d+)?(ms|s|h|m)?",relevance:0},{className:"literal",begin:"[-]?(infinity|inf)",relevance:0},{className:"attr",begin:/([A-Za-z$_#][\w_-]+)=/,relevance:0},{className:"tag",begin:"",relevance:0}]}}return gZe=e,gZe}var mZe,cgn;function Qei(){if(cgn)return mZe;cgn=1;function e(t){const r="(_?[ui](8|16|32|64|128))?",a="(_?f(32|64))?",s="[a-zA-Z_]\\w*[!?=]?",o="[a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|[=!]~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~|]|//|//=|&[-+*]=?|&\\*\\*|\\[\\][=?]?",u="[A-Za-z_]\\w*(::\\w+)*(\\?|!)?",h={$pattern:s,keyword:"abstract alias annotation as as? asm begin break case class def do else elsif end ensure enum extend for fun if include instance_sizeof is_a? lib macro module next nil? of out pointerof private protected rescue responds_to? return require select self sizeof struct super then type typeof union uninitialized unless until verbatim when while with yield __DIR__ __END_LINE__ __FILE__ __LINE__",literal:"false nil true"},f={className:"subst",begin:/#\{/,end:/\}/,keywords:h},p={className:"template-variable",variants:[{begin:"\\{\\{",end:"\\}\\}"},{begin:"\\{%",end:"%\\}"}],keywords:h};function m(k,I){const N=[{begin:k,end:I}];return N[0].contains=N,N}const b={className:"string",contains:[t.BACKSLASH_ESCAPE,f],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:"%[Qwi]?\\(",end:"\\)",contains:m("\\(","\\)")},{begin:"%[Qwi]?\\[",end:"\\]",contains:m("\\[","\\]")},{begin:"%[Qwi]?\\{",end:/\}/,contains:m(/\{/,/\}/)},{begin:"%[Qwi]?<",end:">",contains:m("<",">")},{begin:"%[Qwi]?\\|",end:"\\|"},{begin:/<<-\w+$/,end:/^\s*\w+$/}],relevance:0},_={className:"string",variants:[{begin:"%q\\(",end:"\\)",contains:m("\\(","\\)")},{begin:"%q\\[",end:"\\]",contains:m("\\[","\\]")},{begin:"%q\\{",end:/\}/,contains:m(/\{/,/\}/)},{begin:"%q<",end:">",contains:m("<",">")},{begin:"%q\\|",end:"\\|"},{begin:/<<-'\w+'$/,end:/^\s*\w+$/}],relevance:0},w={begin:"(?!%\\})("+t.RE_STARTERS_RE+"|\\n|\\b(case|if|select|unless|until|when|while)\\b)\\s*",keywords:"case if select unless until when while",contains:[{className:"regexp",contains:[t.BACKSLASH_ESCAPE,f],variants:[{begin:"//[a-z]*",relevance:0},{begin:"/(?!\\/)",end:"/[a-z]*"}]}],relevance:0},S={className:"regexp",contains:[t.BACKSLASH_ESCAPE,f],variants:[{begin:"%r\\(",end:"\\)",contains:m("\\(","\\)")},{begin:"%r\\[",end:"\\]",contains:m("\\[","\\]")},{begin:"%r\\{",end:/\}/,contains:m(/\{/,/\}/)},{begin:"%r<",end:">",contains:m("<",">")},{begin:"%r\\|",end:"\\|"}],relevance:0},C={className:"meta",begin:"@\\[",end:"\\]",contains:[t.inherit(t.QUOTE_STRING_MODE,{className:"meta-string"})]},A=[p,b,_,S,w,C,t.HASH_COMMENT_MODE,{className:"class",beginKeywords:"class module struct",end:"$|;",illegal:/=/,contains:[t.HASH_COMMENT_MODE,t.inherit(t.TITLE_MODE,{begin:u}),{begin:"<"}]},{className:"class",beginKeywords:"lib enum union",end:"$|;",illegal:/=/,contains:[t.HASH_COMMENT_MODE,t.inherit(t.TITLE_MODE,{begin:u})]},{beginKeywords:"annotation",end:"$|;",illegal:/=/,contains:[t.HASH_COMMENT_MODE,t.inherit(t.TITLE_MODE,{begin:u})],relevance:2},{className:"function",beginKeywords:"def",end:/\B\b/,contains:[t.inherit(t.TITLE_MODE,{begin:o,endsParent:!0})]},{className:"function",beginKeywords:"fun macro",end:/\B\b/,contains:[t.inherit(t.TITLE_MODE,{begin:o,endsParent:!0})],relevance:2},{className:"symbol",begin:t.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",begin:":",contains:[b,{begin:o}],relevance:0},{className:"number",variants:[{begin:"\\b0b([01_]+)"+r},{begin:"\\b0o([0-7_]+)"+r},{begin:"\\b0x([A-Fa-f0-9_]+)"+r},{begin:"\\b([1-9][0-9_]*[0-9]|[0-9])(\\.[0-9][0-9_]*)?([eE]_?[-+]?[0-9_]*)?"+a+"(?!_)"},{begin:"\\b([1-9][0-9_]*|0)"+r}],relevance:0}];return f.contains=A,p.contains=A.slice(1),{name:"Crystal",aliases:["cr"],keywords:h,contains:A}}return mZe=e,mZe}var bZe,ugn;function Zei(){if(ugn)return bZe;ugn=1;function e(t){const r=["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],a=["public","private","protected","static","internal","protected","abstract","async","extern","override","unsafe","virtual","new","sealed","partial"],s=["default","false","null","true"],o=["abstract","as","base","break","case","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"],u=["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"],h={keyword:o.concat(u),built_in:r,literal:s},f=t.inherit(t.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),p={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},m={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},b=t.inherit(m,{illegal:/\n/}),_={className:"subst",begin:/\{/,end:/\}/,keywords:h},w=t.inherit(_,{illegal:/\n/}),S={className:"string",begin:/\$"/,end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},t.BACKSLASH_ESCAPE,w]},C={className:"string",begin:/\$@"/,end:'"',contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},_]},A=t.inherit(C,{illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},w]});_.contains=[C,S,m,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,p,t.C_BLOCK_COMMENT_MODE],w.contains=[A,S,b,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,p,t.inherit(t.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];const k={variants:[C,S,m,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE]},I={begin:"<",end:">",contains:[{beginKeywords:"in out"},f]},N=t.IDENT_RE+"(<"+t.IDENT_RE+"(\\s*,\\s*"+t.IDENT_RE+")*>)?(\\[\\])?",L={begin:"@"+t.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],keywords:h,illegal:/::/,contains:[t.COMMENT("///","$",{returnBegin:!0,contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{begin:""},{begin:""}]}]}),t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",end:"$",keywords:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},k,p,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"},f,I,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[f,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]},{beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[f,I,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]},{className:"meta",begin:"^\\s*\\[",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{className:"meta-string",begin:/"/,end:/"/}]},{beginKeywords:"new return throw await else",relevance:0},{className:"function",begin:"("+N+"\\s+)+"+t.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:h,contains:[{beginKeywords:a.join(" "),relevance:0},{begin:t.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0,contains:[t.TITLE_MODE,I],relevance:0},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:h,relevance:0,contains:[k,p,t.C_BLOCK_COMMENT_MODE]},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]},L]}}return bZe=e,bZe}var yZe,hgn;function Jei(){if(hgn)return yZe;hgn=1;function e(t){return{name:"CSP",case_insensitive:!1,keywords:{$pattern:"[a-zA-Z][a-zA-Z0-9_-]*",keyword:"base-uri child-src connect-src default-src font-src form-action frame-ancestors frame-src img-src media-src object-src plugin-types report-uri sandbox script-src style-src"},contains:[{className:"string",begin:"'",end:"'"},{className:"attribute",begin:"^Content",end:":",excludeEnd:!0}]}}return yZe=e,yZe}var vZe,dgn;function eti(){if(dgn)return vZe;dgn=1;const e=m=>({IMPORTANT:{className:"meta",begin:"!important"},HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[m.APOS_STRING_MODE,m.QUOTE_STRING_MODE]}}),t=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],r=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],a=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],s=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],o=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse();function u(m){return m?typeof m=="string"?m:m.source:null}function h(m){return f("(?=",m,")")}function f(...m){return m.map(_=>u(_)).join("")}function p(m){const b=e(m),_={className:"built_in",begin:/[\w-]+(?=\()/},w={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},S="and or not only",C=/@-?\w[\w]*(-\w+)*/,A="[a-zA-Z-][a-zA-Z0-9_-]*",k=[m.APOS_STRING_MODE,m.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[m.C_BLOCK_COMMENT_MODE,w,m.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\."+A,relevance:0},b.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+a.join("|")+")"},{begin:"::("+s.join("|")+")"}]},{className:"attribute",begin:"\\b("+o.join("|")+")\\b"},{begin:":",end:"[;}]",contains:[b.HEXCOLOR,b.IMPORTANT,m.CSS_NUMBER_MODE,...k,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},_]},{begin:h(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:C},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:S,attribute:r.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...k,m.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+t.join("|")+")\\b"}]}}return vZe=p,vZe}var _Ze,fgn;function tti(){if(fgn)return _Ze;fgn=1;function e(t){const r={$pattern:t.UNDERSCORE_IDENT_RE,keyword:"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__",built_in:"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring",literal:"false null true"},a="(0|[1-9][\\d_]*)",s="(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)",o="0[bB][01_]+",u="([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)",h="0[xX]"+u,f="([eE][+-]?"+s+")",p="("+s+"(\\.\\d*|"+f+")|\\d+\\."+s+"|\\."+a+f+"?)",m="(0[xX]("+u+"\\."+u+"|\\.?"+u+")[pP][+-]?"+s+")",b="("+a+"|"+o+"|"+h+")",_="("+m+"|"+p+")",w=`\\\\(['"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};`,S={className:"number",begin:"\\b"+b+"(L|u|U|Lu|LU|uL|UL)?",relevance:0},C={className:"number",begin:"\\b("+_+"([fF]|L|i|[fF]i|Li)?|"+b+"(i|[fF]i|Li))",relevance:0},A={className:"string",begin:"'("+w+"|.)",end:"'",illegal:"."},I={className:"string",begin:'"',contains:[{begin:w,relevance:0}],end:'"[cwd]?'},N={className:"string",begin:'[rq]"',end:'"[cwd]?',relevance:5},L={className:"string",begin:"`",end:"`[cwd]?"},P={className:"string",begin:'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?',relevance:10},M={className:"string",begin:'q"\\{',end:'\\}"'},F={className:"meta",begin:"^#!",end:"$",relevance:5},U={className:"meta",begin:"#(line)",end:"$",relevance:5},$={className:"keyword",begin:"@[a-zA-Z_][a-zA-Z_\\d]*"},G=t.COMMENT("\\/\\+","\\+\\/",{contains:["self"],relevance:10});return{name:"D",keywords:r,contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,G,P,I,N,L,M,C,S,A,F,U,$]}}return _Ze=e,_Ze}var wZe,pgn;function nti(){if(pgn)return wZe;pgn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},o={begin:"^[-\\*]{3,}",end:"$"},u={className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},h={className:"bullet",begin:"^[ ]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},f={begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]},m={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:t(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.+?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},b={className:"strong",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},_={className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};b.contains.push(_),_.contains.push(b);let w=[s,m];return b.contains=b.contains.concat(w),_.contains=_.contains.concat(w),w=w.concat(b,_),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:w},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:w}]}]},s,h,b,_,{className:"quote",begin:"^>\\s+",contains:w,end:"$"},u,o,m,f]}}return wZe=r,wZe}var EZe,ggn;function rti(){if(ggn)return EZe;ggn=1;function e(t){const r={className:"subst",variants:[{begin:"\\$[A-Za-z0-9_]+"}]},a={className:"subst",variants:[{begin:/\$\{/,end:/\}/}],keywords:"true false null this is new super"},s={className:"string",variants:[{begin:"r'''",end:"'''"},{begin:'r"""',end:'"""'},{begin:"r'",end:"'",illegal:"\\n"},{begin:'r"',end:'"',illegal:"\\n"},{begin:"'''",end:"'''",contains:[t.BACKSLASH_ESCAPE,r,a]},{begin:'"""',end:'"""',contains:[t.BACKSLASH_ESCAPE,r,a]},{begin:"'",end:"'",illegal:"\\n",contains:[t.BACKSLASH_ESCAPE,r,a]},{begin:'"',end:'"',illegal:"\\n",contains:[t.BACKSLASH_ESCAPE,r,a]}]};a.contains=[t.C_NUMBER_MODE,s];const o=["Comparable","DateTime","Duration","Function","Iterable","Iterator","List","Map","Match","Object","Pattern","RegExp","Set","Stopwatch","String","StringBuffer","StringSink","Symbol","Type","Uri","bool","double","int","num","Element","ElementList"],u=o.map(f=>`${f}?`);return{name:"Dart",keywords:{keyword:"abstract as assert async await break case catch class const continue covariant default deferred do dynamic else enum export extends extension external factory false final finally for Function get hide if implements import in inferface is late library mixin new null on operator part required rethrow return set show static super switch sync this throw true try typedef var void while with yield",built_in:o.concat(u).concat(["Never","Null","dynamic","print","document","querySelector","querySelectorAll","window"]),$pattern:/[A-Za-z][A-Za-z0-9_]*\??/},contains:[s,t.COMMENT(/\/\*\*(?!\/)/,/\*\//,{subLanguage:"markdown",relevance:0}),t.COMMENT(/\/{3,} ?/,/$/,{contains:[{subLanguage:"markdown",begin:".",end:"$",relevance:0}]}),t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,{className:"class",beginKeywords:"class interface",end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},t.UNDERSCORE_TITLE_MODE]},t.C_NUMBER_MODE,{className:"meta",begin:"@[A-Za-z]+"},{begin:"=>"}]}}return EZe=e,EZe}var xZe,mgn;function iti(){if(mgn)return xZe;mgn=1;function e(t){const r="exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure absolute reintroduce operator as is abstract alias assembler bitpacked break continue cppdecl cvar enumerator experimental platform deprecated unimplemented dynamic export far16 forward generic helper implements interrupt iochecks local name nodefault noreturn nostackframe oldfpccall otherwise saveregisters softfloat specialize strict unaligned varargs ",a=[t.C_LINE_COMMENT_MODE,t.COMMENT(/\{/,/\}/,{relevance:0}),t.COMMENT(/\(\*/,/\*\)/,{relevance:10})],s={className:"meta",variants:[{begin:/\{\$/,end:/\}/},{begin:/\(\*\$/,end:/\*\)/}]},o={className:"string",begin:/'/,end:/'/,contains:[{begin:/''/}]},u={className:"number",relevance:0,variants:[{begin:"\\$[0-9A-Fa-f]+"},{begin:"&[0-7]+"},{begin:"%[01]+"}]},h={className:"string",begin:/(#\d+)+/},f={begin:t.IDENT_RE+"\\s*=\\s*class\\s*\\(",returnBegin:!0,contains:[t.TITLE_MODE]},p={className:"function",beginKeywords:"function constructor destructor procedure",end:/[:;]/,keywords:"function constructor|10 destructor|10 procedure|10",contains:[t.TITLE_MODE,{className:"params",begin:/\(/,end:/\)/,keywords:r,contains:[o,h,s].concat(a)},s].concat(a)};return{name:"Delphi",aliases:["dpr","dfm","pas","pascal","freepascal","lazarus","lpr","lfm"],case_insensitive:!0,keywords:r,illegal:/"|\$[G-Zg-z]|\/\*|<\/|\|/,contains:[o,h,t.NUMBER_MODE,u,f,p,s].concat(a)}}return xZe=e,xZe}var SZe,bgn;function ati(){if(bgn)return SZe;bgn=1;function e(t){return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,variants:[{begin:/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/},{begin:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{begin:/^--- +\d+,\d+ +----$/}]},{className:"comment",variants:[{begin:/Index: /,end:/$/},{begin:/^index/,end:/$/},{begin:/={3,}/,end:/$/},{begin:/^-{3}/,end:/$/},{begin:/^\*{3} /,end:/$/},{begin:/^\+{3}/,end:/$/},{begin:/^\*{15}$/},{begin:/^diff --git/,end:/$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}}return SZe=e,SZe}var TZe,ygn;function sti(){if(ygn)return TZe;ygn=1;function e(t){const r={begin:/\|[A-Za-z]+:?/,keywords:{name:"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone"},contains:[t.QUOTE_STRING_MODE,t.APOS_STRING_MODE]};return{name:"Django",aliases:["jinja"],case_insensitive:!0,subLanguage:"xml",contains:[t.COMMENT(/\{%\s*comment\s*%\}/,/\{%\s*endcomment\s*%\}/),t.COMMENT(/\{#/,/#\}/),{className:"template-tag",begin:/\{%/,end:/%\}/,contains:[{className:"name",begin:/\w+/,keywords:{name:"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim"},starts:{endsWithParent:!0,keywords:"in by as",contains:[r],relevance:0}}]},{className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:[r]}]}}return TZe=e,TZe}var CZe,vgn;function oti(){if(vgn)return CZe;vgn=1;function e(t){return{name:"DNS Zone",aliases:["bind","zone"],keywords:{keyword:"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT"},contains:[t.COMMENT(";","$",{relevance:0}),{className:"meta",begin:/^\$(TTL|GENERATE|INCLUDE|ORIGIN)\b/},{className:"number",begin:"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))\\b"},{className:"number",begin:"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\b"},t.inherit(t.NUMBER_MODE,{begin:/\b\d+[dhwm]?/})]}}return CZe=e,CZe}var AZe,_gn;function lti(){if(_gn)return AZe;_gn=1;function e(t){return{name:"Dockerfile",aliases:["docker"],case_insensitive:!0,keywords:"from maintainer expose env arg user onbuild stopsignal",contains:[t.HASH_COMMENT_MODE,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,t.NUMBER_MODE,{beginKeywords:"run cmd entrypoint volume add copy workdir label healthcheck shell",starts:{end:/[^\\]$/,subLanguage:"bash"}}],illegal:"",illegal:"\\n"}]},r,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]},o={className:"variable",begin:/&[a-z\d_]*\b/},u={className:"meta-keyword",begin:"/[a-z][a-z\\d-]*/"},h={className:"symbol",begin:"^\\s*[a-zA-Z_][a-zA-Z\\d_]*:"},f={className:"params",begin:"<",end:">",contains:[a,o]},p={className:"class",begin:/[a-zA-Z_][a-zA-Z\d_@]*\s\{/,end:/[{;=]/,returnBegin:!0,excludeEnd:!0};return{name:"Device Tree",keywords:"",contains:[{className:"class",begin:"/\\s*\\{",end:/\};/,relevance:10,contains:[o,u,h,p,f,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,a,r]},o,u,h,p,f,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,a,r,s,{begin:t.IDENT_RE+"::",keywords:""}]}}return IZe=e,IZe}var NZe,Sgn;function dti(){if(Sgn)return NZe;Sgn=1;function e(t){return{name:"Dust",aliases:["dst"],case_insensitive:!0,subLanguage:"xml",contains:[{className:"template-tag",begin:/\{[#\/]/,end:/\}/,illegal:/;/,contains:[{className:"name",begin:/[a-zA-Z\.-]+/,starts:{endsWithParent:!0,relevance:0,contains:[t.QUOTE_STRING_MODE]}}]},{className:"template-variable",begin:/\{/,end:/\}/,illegal:/;/,keywords:"if eq ne lt lte gt gte select default math sep"}]}}return NZe=e,NZe}var OZe,Tgn;function fti(){if(Tgn)return OZe;Tgn=1;function e(t){const r=t.COMMENT(/\(\*/,/\*\)/),a={className:"attribute",begin:/^[ ]*[a-zA-Z]+([\s_-]+[a-zA-Z]+)*/},o={begin:/=/,end:/[.;]/,contains:[r,{className:"meta",begin:/\?.*\?/},{className:"string",variants:[t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,{begin:"`",end:"`"}]}]};return{name:"Extended Backus-Naur Form",illegal:/\S/,contains:[r,a,o]}}return OZe=e,OZe}var LZe,Cgn;function pti(){if(Cgn)return LZe;Cgn=1;function e(t){const r="[a-zA-Z_][a-zA-Z0-9_.]*(!|\\?)?",a="[a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",s={$pattern:r,keyword:"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote require import with|0"},o={className:"subst",begin:/#\{/,end:/\}/,keywords:s},u={className:"number",begin:"(\\b0o[0-7_]+)|(\\b0b[01_]+)|(\\b0x[0-9a-fA-F_]+)|(-?\\b[1-9][0-9_]*(\\.[0-9_]+([eE][-+]?[0-9]+)?)?)",relevance:0},h=`[/|([{<"']`,f={className:"string",begin:"~[a-z](?="+h+")",contains:[{endsParent:!0,contains:[{contains:[t.BACKSLASH_ESCAPE,o],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/},{begin:/\//,end:/\//},{begin:/\|/,end:/\|/},{begin:/\(/,end:/\)/},{begin:/\[/,end:/\]/},{begin:/\{/,end:/\}/},{begin://}]}]}]},p={className:"string",begin:"~[A-Z](?="+h+")",contains:[{begin:/"/,end:/"/},{begin:/'/,end:/'/},{begin:/\//,end:/\//},{begin:/\|/,end:/\|/},{begin:/\(/,end:/\)/},{begin:/\[/,end:/\]/},{begin:/\{/,end:/\}/},{begin://}]},m={className:"string",contains:[t.BACKSLASH_ESCAPE,o],variants:[{begin:/"""/,end:/"""/},{begin:/'''/,end:/'''/},{begin:/~S"""/,end:/"""/,contains:[]},{begin:/~S"/,end:/"/,contains:[]},{begin:/~S'''/,end:/'''/,contains:[]},{begin:/~S'/,end:/'/,contains:[]},{begin:/'/,end:/'/},{begin:/"/,end:/"/}]},b={className:"function",beginKeywords:"def defp defmacro",end:/\B\b/,contains:[t.inherit(t.TITLE_MODE,{begin:r,endsParent:!0})]},_=t.inherit(b,{className:"class",beginKeywords:"defimpl defmodule defprotocol defrecord",end:/\bdo\b|$|;/}),w=[m,p,f,t.HASH_COMMENT_MODE,_,b,{begin:"::"},{className:"symbol",begin:":(?![\\s:])",contains:[m,{begin:a}],relevance:0},{className:"symbol",begin:r+":(?!:)",relevance:0},u,{className:"variable",begin:"(\\$\\W)|((\\$|@@?)(\\w+))"},{begin:"->"},{begin:"("+t.RE_STARTERS_RE+")\\s*",contains:[t.HASH_COMMENT_MODE,{begin:/\/: (?=\d+\s*[,\]])/,relevance:0,contains:[u]},{className:"regexp",illegal:"\\n",contains:[t.BACKSLASH_ESCAPE,o],variants:[{begin:"/",end:"/[a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}],relevance:0}];return o.contains=w,{name:"Elixir",keywords:s,contains:w}}return LZe=e,LZe}var DZe,Agn;function gti(){if(Agn)return DZe;Agn=1;function e(t){const r={variants:[t.COMMENT("--","$"),t.COMMENT(/\{-/,/-\}/,{contains:["self"]})]},a={className:"type",begin:"\\b[A-Z][\\w']*",relevance:0},s={begin:"\\(",end:"\\)",illegal:'"',contains:[{className:"type",begin:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},r]},o={begin:/\{/,end:/\}/,contains:s.contains},u={className:"string",begin:"'\\\\?.",end:"'",illegal:"."};return{name:"Elm",keywords:"let in if then else case of where module import exposing type alias as infix infixl infixr port effect command subscription",contains:[{beginKeywords:"port effect module",end:"exposing",keywords:"port effect module where command subscription exposing",contains:[s,r],illegal:"\\W\\.|;"},{begin:"import",end:"$",keywords:"import as exposing",contains:[s,r],illegal:"\\W\\.|;"},{begin:"type",end:"$",keywords:"type alias",contains:[a,s,o,r]},{beginKeywords:"infix infixl infixr",end:"$",contains:[t.C_NUMBER_MODE,r]},{begin:"port",end:"$",keywords:"port",contains:[r]},u,t.QUOTE_STRING_MODE,t.C_NUMBER_MODE,a,t.inherit(t.TITLE_MODE,{begin:"^[_a-z][\\w']*"}),r,{begin:"->|<-"}],illegal:/;/}}return DZe=e,DZe}var MZe,kgn;function mti(){if(kgn)return MZe;kgn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(s){return r("(?=",s,")")}function r(...s){return s.map(u=>e(u)).join("")}function a(s){const o="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",u={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__",built_in:"proc lambda",literal:"true false nil"},h={className:"doctag",begin:"@[A-Za-z]+"},f={begin:"#<",end:">"},p=[s.COMMENT("#","$",{contains:[h]}),s.COMMENT("^=begin","^=end",{contains:[h],relevance:10}),s.COMMENT("^__END__","\\n$")],m={className:"subst",begin:/#\{/,end:/\}/,keywords:u},b={className:"string",contains:[s.BACKSLASH_ESCAPE,m],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{begin:/<<[-~]?'?(\w+)\n(?:[^\n]*\n)*?\s*\1\b/,returnBegin:!0,contains:[{begin:/<<[-~]?'?/},s.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[s.BACKSLASH_ESCAPE,m]})]}]},_="[1-9](_?[0-9])*|0",w="[0-9](_?[0-9])*",S={className:"number",relevance:0,variants:[{begin:`\\b(${_})(\\.(${w}))?([eE][+-]?(${w})|r)?i?\\b`},{begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{begin:"\\b0(_?[0-7])+r?i?\\b"}]},C={className:"params",begin:"\\(",end:"\\)",endsParent:!0,keywords:u},A=[b,{className:"class",beginKeywords:"class module",end:"$|;",illegal:/=/,contains:[s.inherit(s.TITLE_MODE,{begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|!)?"}),{begin:"<\\s*",contains:[{begin:"("+s.IDENT_RE+"::)?"+s.IDENT_RE,relevance:0}]}].concat(p)},{className:"function",begin:r(/def\s+/,t(o+"\\s*(\\(|;|$)")),relevance:0,keywords:"def",end:"$|;",contains:[s.inherit(s.TITLE_MODE,{begin:o}),C].concat(p)},{begin:s.IDENT_RE+"::"},{className:"symbol",begin:s.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[b,{begin:o}],relevance:0},S,{className:"variable",begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{className:"params",begin:/\|/,end:/\|/,relevance:0,keywords:u},{begin:"("+s.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{className:"regexp",contains:[s.BACKSLASH_ESCAPE,m],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(f,p),relevance:0}].concat(f,p);m.contains=A,C.contains=A;const L=[{begin:/^\s*=>/,starts:{end:"$",contains:A}},{className:"meta",begin:"^("+"[>?]>"+"|"+"[\\w#]+\\(\\w+\\):\\d+:\\d+>"+"|"+"(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>"+")(?=[ ])",starts:{end:"$",contains:A}}];return p.unshift(f),{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:u,illegal:/\/\*/,contains:[s.SHEBANG({binary:"ruby"})].concat(L).concat(p).concat(A)}}return MZe=a,MZe}var PZe,Rgn;function bti(){if(Rgn)return PZe;Rgn=1;function e(t){return{name:"ERB",subLanguage:"xml",contains:[t.COMMENT("<%#","%>"),{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0}]}}return PZe=e,PZe}var BZe,Ign;function yti(){if(Ign)return BZe;Ign=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){return{name:"Erlang REPL",keywords:{built_in:"spawn spawn_link self",keyword:"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor"},contains:[{className:"meta",begin:"^[0-9]+> ",relevance:10},a.COMMENT("%","$"),{className:"number",begin:"\\b(\\d+(_\\d+)*#[a-fA-F0-9]+(_[a-fA-F0-9]+)*|\\d+(_\\d+)*(\\.\\d+(_\\d+)*)?([eE][-+]?\\d+)?)",relevance:0},a.APOS_STRING_MODE,a.QUOTE_STRING_MODE,{begin:t(/\?(::)?/,/([A-Z]\w*)/,/((::)[A-Z]\w*)*/)},{begin:"->"},{begin:"ok"},{begin:"!"},{begin:"(\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\b[a-z'][a-zA-Z0-9_']*)",relevance:0},{begin:"[A-Z][a-zA-Z0-9_']*",relevance:0}]}}return BZe=r,BZe}var FZe,Ngn;function vti(){if(Ngn)return FZe;Ngn=1;function e(t){const r="[a-z'][a-zA-Z0-9_']*",a="("+r+":"+r+"|"+r+")",s={keyword:"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor",literal:"false true"},o=t.COMMENT("%","$"),u={className:"number",begin:"\\b(\\d+(_\\d+)*#[a-fA-F0-9]+(_[a-fA-F0-9]+)*|\\d+(_\\d+)*(\\.\\d+(_\\d+)*)?([eE][-+]?\\d+)?)",relevance:0},h={begin:"fun\\s+"+r+"/\\d+"},f={begin:a+"\\(",end:"\\)",returnBegin:!0,relevance:0,contains:[{begin:a,relevance:0},{begin:"\\(",end:"\\)",endsWithParent:!0,returnEnd:!0,relevance:0}]},p={begin:/\{/,end:/\}/,relevance:0},m={begin:"\\b_([A-Z][A-Za-z0-9_]*)?",relevance:0},b={begin:"[A-Z][a-zA-Z0-9_]*",relevance:0},_={begin:"#"+t.UNDERSCORE_IDENT_RE,relevance:0,returnBegin:!0,contains:[{begin:"#"+t.UNDERSCORE_IDENT_RE,relevance:0},{begin:/\{/,end:/\}/,relevance:0}]},w={beginKeywords:"fun receive if try case",end:"end",keywords:s};w.contains=[o,h,t.inherit(t.APOS_STRING_MODE,{className:""}),w,f,t.QUOTE_STRING_MODE,u,p,m,b,_];const S=[o,h,w,f,t.QUOTE_STRING_MODE,u,p,m,b,_];f.contains[1].contains=S,p.contains=S,_.contains[1].contains=S;const C=["-module","-record","-undef","-export","-ifdef","-ifndef","-author","-copyright","-doc","-vsn","-import","-include","-include_lib","-compile","-define","-else","-endif","-file","-behaviour","-behavior","-spec"],A={className:"params",begin:"\\(",end:"\\)",contains:S};return{name:"Erlang",aliases:["erl"],keywords:s,illegal:"(",returnBegin:!0,illegal:"\\(|#|//|/\\*|\\\\|:|;",contains:[A,t.inherit(t.TITLE_MODE,{begin:r})],starts:{end:";|\\.",keywords:s,contains:S}},o,{begin:"^-",end:"\\.",relevance:0,excludeEnd:!0,returnBegin:!0,keywords:{$pattern:"-"+t.IDENT_RE,keyword:C.map(k=>`${k}|1.5`).join(" ")},contains:[A]},u,t.QUOTE_STRING_MODE,_,m,b,p,{begin:/\.$/}]}}return FZe=e,FZe}var $Ze,Ogn;function _ti(){if(Ogn)return $Ze;Ogn=1;function e(t){return{name:"Excel formulae",aliases:["xlsx","xls"],case_insensitive:!0,keywords:{$pattern:/[a-zA-Z][\w\.]*/,built_in:"ABS ACCRINT ACCRINTM ACOS ACOSH ACOT ACOTH AGGREGATE ADDRESS AMORDEGRC AMORLINC AND ARABIC AREAS ASC ASIN ASINH ATAN ATAN2 ATANH AVEDEV AVERAGE AVERAGEA AVERAGEIF AVERAGEIFS BAHTTEXT BASE BESSELI BESSELJ BESSELK BESSELY BETADIST BETA.DIST BETAINV BETA.INV BIN2DEC BIN2HEX BIN2OCT BINOMDIST BINOM.DIST BINOM.DIST.RANGE BINOM.INV BITAND BITLSHIFT BITOR BITRSHIFT BITXOR CALL CEILING CEILING.MATH CEILING.PRECISE CELL CHAR CHIDIST CHIINV CHITEST CHISQ.DIST CHISQ.DIST.RT CHISQ.INV CHISQ.INV.RT CHISQ.TEST CHOOSE CLEAN CODE COLUMN COLUMNS COMBIN COMBINA COMPLEX CONCAT CONCATENATE CONFIDENCE CONFIDENCE.NORM CONFIDENCE.T CONVERT CORREL COS COSH COT COTH COUNT COUNTA COUNTBLANK COUNTIF COUNTIFS COUPDAYBS COUPDAYS COUPDAYSNC COUPNCD COUPNUM COUPPCD COVAR COVARIANCE.P COVARIANCE.S CRITBINOM CSC CSCH CUBEKPIMEMBER CUBEMEMBER CUBEMEMBERPROPERTY CUBERANKEDMEMBER CUBESET CUBESETCOUNT CUBEVALUE CUMIPMT CUMPRINC DATE DATEDIF DATEVALUE DAVERAGE DAY DAYS DAYS360 DB DBCS DCOUNT DCOUNTA DDB DEC2BIN DEC2HEX DEC2OCT DECIMAL DEGREES DELTA DEVSQ DGET DISC DMAX DMIN DOLLAR DOLLARDE DOLLARFR DPRODUCT DSTDEV DSTDEVP DSUM DURATION DVAR DVARP EDATE EFFECT ENCODEURL EOMONTH ERF ERF.PRECISE ERFC ERFC.PRECISE ERROR.TYPE EUROCONVERT EVEN EXACT EXP EXPON.DIST EXPONDIST FACT FACTDOUBLE FALSE|0 F.DIST FDIST F.DIST.RT FILTERXML FIND FINDB F.INV F.INV.RT FINV FISHER FISHERINV FIXED FLOOR FLOOR.MATH FLOOR.PRECISE FORECAST FORECAST.ETS FORECAST.ETS.CONFINT FORECAST.ETS.SEASONALITY FORECAST.ETS.STAT FORECAST.LINEAR FORMULATEXT FREQUENCY F.TEST FTEST FV FVSCHEDULE GAMMA GAMMA.DIST GAMMADIST GAMMA.INV GAMMAINV GAMMALN GAMMALN.PRECISE GAUSS GCD GEOMEAN GESTEP GETPIVOTDATA GROWTH HARMEAN HEX2BIN HEX2DEC HEX2OCT HLOOKUP HOUR HYPERLINK HYPGEOM.DIST HYPGEOMDIST IF IFERROR IFNA IFS IMABS IMAGINARY IMARGUMENT IMCONJUGATE IMCOS IMCOSH IMCOT IMCSC IMCSCH IMDIV IMEXP IMLN IMLOG10 IMLOG2 IMPOWER IMPRODUCT IMREAL IMSEC IMSECH IMSIN IMSINH IMSQRT IMSUB IMSUM IMTAN INDEX INDIRECT INFO INT INTERCEPT INTRATE IPMT IRR ISBLANK ISERR ISERROR ISEVEN ISFORMULA ISLOGICAL ISNA ISNONTEXT ISNUMBER ISODD ISREF ISTEXT ISO.CEILING ISOWEEKNUM ISPMT JIS KURT LARGE LCM LEFT LEFTB LEN LENB LINEST LN LOG LOG10 LOGEST LOGINV LOGNORM.DIST LOGNORMDIST LOGNORM.INV LOOKUP LOWER MATCH MAX MAXA MAXIFS MDETERM MDURATION MEDIAN MID MIDBs MIN MINIFS MINA MINUTE MINVERSE MIRR MMULT MOD MODE MODE.MULT MODE.SNGL MONTH MROUND MULTINOMIAL MUNIT N NA NEGBINOM.DIST NEGBINOMDIST NETWORKDAYS NETWORKDAYS.INTL NOMINAL NORM.DIST NORMDIST NORMINV NORM.INV NORM.S.DIST NORMSDIST NORM.S.INV NORMSINV NOT NOW NPER NPV NUMBERVALUE OCT2BIN OCT2DEC OCT2HEX ODD ODDFPRICE ODDFYIELD ODDLPRICE ODDLYIELD OFFSET OR PDURATION PEARSON PERCENTILE.EXC PERCENTILE.INC PERCENTILE PERCENTRANK.EXC PERCENTRANK.INC PERCENTRANK PERMUT PERMUTATIONA PHI PHONETIC PI PMT POISSON.DIST POISSON POWER PPMT PRICE PRICEDISC PRICEMAT PROB PRODUCT PROPER PV QUARTILE QUARTILE.EXC QUARTILE.INC QUOTIENT RADIANS RAND RANDBETWEEN RANK.AVG RANK.EQ RANK RATE RECEIVED REGISTER.ID REPLACE REPLACEB REPT RIGHT RIGHTB ROMAN ROUND ROUNDDOWN ROUNDUP ROW ROWS RRI RSQ RTD SEARCH SEARCHB SEC SECH SECOND SERIESSUM SHEET SHEETS SIGN SIN SINH SKEW SKEW.P SLN SLOPE SMALL SQL.REQUEST SQRT SQRTPI STANDARDIZE STDEV STDEV.P STDEV.S STDEVA STDEVP STDEVPA STEYX SUBSTITUTE SUBTOTAL SUM SUMIF SUMIFS SUMPRODUCT SUMSQ SUMX2MY2 SUMX2PY2 SUMXMY2 SWITCH SYD T TAN TANH TBILLEQ TBILLPRICE TBILLYIELD T.DIST T.DIST.2T T.DIST.RT TDIST TEXT TEXTJOIN TIME TIMEVALUE T.INV T.INV.2T TINV TODAY TRANSPOSE TREND TRIM TRIMMEAN TRUE|0 TRUNC T.TEST TTEST TYPE UNICHAR UNICODE UPPER VALUE VAR VAR.P VAR.S VARA VARP VARPA VDB VLOOKUP WEBSERVICE WEEKDAY WEEKNUM WEIBULL WEIBULL.DIST WORKDAY WORKDAY.INTL XIRR XNPV XOR YEAR YEARFRAC YIELD YIELDDISC YIELDMAT Z.TEST ZTEST"},contains:[{begin:/^=/,end:/[^=]/,returnEnd:!0,illegal:/=/,relevance:10},{className:"symbol",begin:/\b[A-Z]{1,2}\d+\b/,end:/[^\d]/,excludeEnd:!0,relevance:0},{className:"symbol",begin:/[A-Z]{0,2}\d*:[A-Z]{0,2}\d*/,relevance:0},t.BACKSLASH_ESCAPE,t.QUOTE_STRING_MODE,{className:"number",begin:t.NUMBER_RE+"(%)?",relevance:0},t.COMMENT(/\bN\(/,/\)/,{excludeBegin:!0,excludeEnd:!0,illegal:/\n/})]}}return $Ze=e,$Ze}var UZe,Lgn;function wti(){if(Lgn)return UZe;Lgn=1;function e(t){return{name:"FIX",contains:[{begin:/[^\u2401\u0001]+/,end:/[\u2401\u0001]/,excludeEnd:!0,returnBegin:!0,returnEnd:!1,contains:[{begin:/([^\u2401\u0001=]+)/,end:/=([^\u2401\u0001=]+)/,returnEnd:!0,returnBegin:!1,className:"attr"},{begin:/=/,end:/([\u2401\u0001])/,excludeEnd:!0,excludeBegin:!0,className:"string"}]}],case_insensitive:!0}}return UZe=e,UZe}var zZe,Dgn;function Eti(){if(Dgn)return zZe;Dgn=1;function e(t){const r={className:"string",begin:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},a={className:"string",variants:[{begin:'"',end:'"'}]},o={className:"function",beginKeywords:"def",end:/[:={\[(\n;]/,excludeEnd:!0,contains:[{className:"title",relevance:0,begin:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/}]};return{name:"Flix",keywords:{literal:"true false",keyword:"case class def else enum if impl import in lat rel index let match namespace switch type yield with"},contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,r,a,o,t.C_NUMBER_MODE]}}return zZe=e,zZe}var GZe,Mgn;function xti(){if(Mgn)return GZe;Mgn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s={className:"params",begin:"\\(",end:"\\)"},o={variants:[a.COMMENT("!","$",{relevance:0}),a.COMMENT("^C[ ]","$",{relevance:0}),a.COMMENT("^C$","$",{relevance:0})]},u=/(_[a-z_\d]+)?/,h=/([de][+-]?\d+)?/,f={className:"number",variants:[{begin:t(/\b\d+/,/\.(\d*)/,h,u)},{begin:t(/\b\d+/,h,u)},{begin:t(/\.\d+/,h,u)}],relevance:0},p={className:"function",beginKeywords:"subroutine function program",illegal:"[${=\\n]",contains:[a.UNDERSCORE_TITLE_MODE,s]},m={className:"string",relevance:0,variants:[a.APOS_STRING_MODE,a.QUOTE_STRING_MODE]};return{name:"Fortran",case_insensitive:!0,aliases:["f90","f95"],keywords:{literal:".False. .True.",keyword:"kind do concurrent local shared while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then block endblock endassociate public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure impure integer real character complex logical codimension dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_of acosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image sync change team co_broadcast co_max co_min co_sum co_reduce"},illegal:/\/\*/,contains:[m,p,{begin:/^C\s*=(?!=)/,relevance:0},o,f]}}return GZe=r,GZe}var qZe,Pgn;function Sti(){if(Pgn)return qZe;Pgn=1;function e(t){const r={begin:"<",end:">",contains:[t.inherit(t.TITLE_MODE,{begin:/'[a-zA-Z0-9_]+/})]};return{name:"F#",aliases:["fs"],keywords:"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield",illegal:/\/\*/,contains:[{className:"keyword",begin:/\b(yield|return|let|do)!/},{className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},{className:"string",begin:'"""',end:'"""'},t.COMMENT("\\(\\*(\\s)","\\*\\)",{contains:["self"]}),{className:"class",beginKeywords:"type",end:"\\(|=|$",excludeEnd:!0,contains:[t.UNDERSCORE_TITLE_MODE,r]},{className:"meta",begin:"\\[<",end:">\\]",relevance:10},{className:"symbol",begin:"\\B('[A-Za-z])\\b",contains:[t.BACKSLASH_ESCAPE]},t.C_LINE_COMMENT_MODE,t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),t.C_NUMBER_MODE]}}return qZe=e,qZe}var HZe,Bgn;function Tti(){if(Bgn)return HZe;Bgn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(s){return r("(",s,")*")}function r(...s){return s.map(u=>e(u)).join("")}function a(s){const o={keyword:"abort acronym acronyms alias all and assign binary card diag display else eq file files for free ge gt if integer le loop lt maximizing minimizing model models ne negative no not option options or ord positive prod put putpage puttl repeat sameas semicont semiint smax smin solve sos1 sos2 sum system table then until using while xor yes",literal:"eps inf na",built_in:"abs arccos arcsin arctan arctan2 Beta betaReg binomial ceil centropy cos cosh cvPower div div0 eDist entropy errorf execSeed exp fact floor frac gamma gammaReg log logBeta logGamma log10 log2 mapVal max min mod ncpCM ncpF ncpVUpow ncpVUsin normal pi poly power randBinomial randLinear randTriangle round rPower sigmoid sign signPower sin sinh slexp sllog10 slrec sqexp sqlog10 sqr sqrec sqrt tan tanh trunc uniform uniformInt vcPower bool_and bool_eqv bool_imp bool_not bool_or bool_xor ifThen rel_eq rel_ge rel_gt rel_le rel_lt rel_ne gday gdow ghour gleap gmillisec gminute gmonth gsecond gyear jdate jnow jstart jtime errorLevel execError gamsRelease gamsVersion handleCollect handleDelete handleStatus handleSubmit heapFree heapLimit heapSize jobHandle jobKill jobStatus jobTerminate licenseLevel licenseStatus maxExecError sleep timeClose timeComp timeElapsed timeExec timeStart"},u={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0},h={className:"symbol",variants:[{begin:/=[lgenxc]=/},{begin:/\$/}]},f={className:"comment",variants:[{begin:"'",end:"'"},{begin:'"',end:'"'}],illegal:"\\n",contains:[s.BACKSLASH_ESCAPE]},p={begin:"/",end:"/",keywords:o,contains:[f,s.C_LINE_COMMENT_MODE,s.C_BLOCK_COMMENT_MODE,s.QUOTE_STRING_MODE,s.APOS_STRING_MODE,s.C_NUMBER_MODE]},m=/[a-z0-9&#*=?@\\><:,()$[\]_.{}!+%^-]+/,b={begin:/[a-z][a-z0-9_]*(\([a-z0-9_, ]*\))?[ \t]+/,excludeBegin:!0,end:"$",endsWithParent:!0,contains:[f,p,{className:"comment",begin:r(m,t(r(/[ ]+/,m))),relevance:0}]};return{name:"GAMS",aliases:["gms"],case_insensitive:!0,keywords:o,contains:[s.COMMENT(/^\$ontext/,/^\$offtext/),{className:"meta",begin:"^\\$[a-z0-9]+",end:"$",returnBegin:!0,contains:[{className:"meta-keyword",begin:"^\\$[a-z0-9]+"}]},s.COMMENT("^\\*","$"),s.C_LINE_COMMENT_MODE,s.C_BLOCK_COMMENT_MODE,s.QUOTE_STRING_MODE,s.APOS_STRING_MODE,{beginKeywords:"set sets parameter parameters variable variables scalar scalars equation equations",end:";",contains:[s.COMMENT("^\\*","$"),s.C_LINE_COMMENT_MODE,s.C_BLOCK_COMMENT_MODE,s.QUOTE_STRING_MODE,s.APOS_STRING_MODE,p,b]},{beginKeywords:"table",end:";",returnBegin:!0,contains:[{beginKeywords:"table",end:"$",contains:[b]},s.COMMENT("^\\*","$"),s.C_LINE_COMMENT_MODE,s.C_BLOCK_COMMENT_MODE,s.QUOTE_STRING_MODE,s.APOS_STRING_MODE,s.C_NUMBER_MODE]},{className:"function",begin:/^[a-z][a-z0-9_,\-+' ()$]+\.{2}/,returnBegin:!0,contains:[{className:"title",begin:/^[a-z0-9_]+/},u,h]},s.C_NUMBER_MODE,h]}}return HZe=a,HZe}var VZe,Fgn;function Cti(){if(Fgn)return VZe;Fgn=1;function e(t){const r={keyword:"bool break call callexe checkinterrupt clear clearg closeall cls comlog compile continue create debug declare delete disable dlibrary dllcall do dos ed edit else elseif enable end endfor endif endp endo errorlog errorlogat expr external fn for format goto gosub graph if keyword let lib library line load loadarray loadexe loadf loadk loadm loadp loads loadx local locate loopnextindex lprint lpwidth lshow matrix msym ndpclex new open output outwidth plot plotsym pop prcsn print printdos proc push retp return rndcon rndmod rndmult rndseed run save saveall screen scroll setarray show sparse stop string struct system trace trap threadfor threadendfor threadbegin threadjoin threadstat threadend until use while winprint ne ge le gt lt and xor or not eq eqv",built_in:"abs acf aconcat aeye amax amean AmericanBinomCall AmericanBinomCall_Greeks AmericanBinomCall_ImpVol AmericanBinomPut AmericanBinomPut_Greeks AmericanBinomPut_ImpVol AmericanBSCall AmericanBSCall_Greeks AmericanBSCall_ImpVol AmericanBSPut AmericanBSPut_Greeks AmericanBSPut_ImpVol amin amult annotationGetDefaults annotationSetBkd annotationSetFont annotationSetLineColor annotationSetLineStyle annotationSetLineThickness annualTradingDays arccos arcsin areshape arrayalloc arrayindex arrayinit arraytomat asciiload asclabel astd astds asum atan atan2 atranspose axmargin balance band bandchol bandcholsol bandltsol bandrv bandsolpd bar base10 begwind besselj bessely beta box boxcox cdfBeta cdfBetaInv cdfBinomial cdfBinomialInv cdfBvn cdfBvn2 cdfBvn2e cdfCauchy cdfCauchyInv cdfChic cdfChii cdfChinc cdfChincInv cdfExp cdfExpInv cdfFc cdfFnc cdfFncInv cdfGam cdfGenPareto cdfHyperGeo cdfLaplace cdfLaplaceInv cdfLogistic cdfLogisticInv cdfmControlCreate cdfMvn cdfMvn2e cdfMvnce cdfMvne cdfMvt2e cdfMvtce cdfMvte cdfN cdfN2 cdfNc cdfNegBinomial cdfNegBinomialInv cdfNi cdfPoisson cdfPoissonInv cdfRayleigh cdfRayleighInv cdfTc cdfTci cdfTnc cdfTvn cdfWeibull cdfWeibullInv cdir ceil ChangeDir chdir chiBarSquare chol choldn cholsol cholup chrs close code cols colsf combinate combinated complex con cond conj cons ConScore contour conv convertsatostr convertstrtosa corrm corrms corrvc corrx corrxs cos cosh counts countwts crossprd crout croutp csrcol csrlin csvReadM csvReadSA cumprodc cumsumc curve cvtos datacreate datacreatecomplex datalist dataload dataloop dataopen datasave date datestr datestring datestrymd dayinyr dayofweek dbAddDatabase dbClose dbCommit dbCreateQuery dbExecQuery dbGetConnectOptions dbGetDatabaseName dbGetDriverName dbGetDrivers dbGetHostName dbGetLastErrorNum dbGetLastErrorText dbGetNumericalPrecPolicy dbGetPassword dbGetPort dbGetTableHeaders dbGetTables dbGetUserName dbHasFeature dbIsDriverAvailable dbIsOpen dbIsOpenError dbOpen dbQueryBindValue dbQueryClear dbQueryCols dbQueryExecPrepared dbQueryFetchAllM dbQueryFetchAllSA dbQueryFetchOneM dbQueryFetchOneSA dbQueryFinish dbQueryGetBoundValue dbQueryGetBoundValues dbQueryGetField dbQueryGetLastErrorNum dbQueryGetLastErrorText dbQueryGetLastInsertID dbQueryGetLastQuery dbQueryGetPosition dbQueryIsActive dbQueryIsForwardOnly dbQueryIsNull dbQueryIsSelect dbQueryIsValid dbQueryPrepare dbQueryRows dbQuerySeek dbQuerySeekFirst dbQuerySeekLast dbQuerySeekNext dbQuerySeekPrevious dbQuerySetForwardOnly dbRemoveDatabase dbRollback dbSetConnectOptions dbSetDatabaseName dbSetHostName dbSetNumericalPrecPolicy dbSetPort dbSetUserName dbTransaction DeleteFile delif delrows denseToSp denseToSpRE denToZero design det detl dfft dffti diag diagrv digamma doswin DOSWinCloseall DOSWinOpen dotfeq dotfeqmt dotfge dotfgemt dotfgt dotfgtmt dotfle dotflemt dotflt dotfltmt dotfne dotfnemt draw drop dsCreate dstat dstatmt dstatmtControlCreate dtdate dtday dttime dttodtv dttostr dttoutc dtvnormal dtvtodt dtvtoutc dummy dummybr dummydn eig eigh eighv eigv elapsedTradingDays endwind envget eof eqSolve eqSolvemt eqSolvemtControlCreate eqSolvemtOutCreate eqSolveset erf erfc erfccplx erfcplx error etdays ethsec etstr EuropeanBinomCall EuropeanBinomCall_Greeks EuropeanBinomCall_ImpVol EuropeanBinomPut EuropeanBinomPut_Greeks EuropeanBinomPut_ImpVol EuropeanBSCall EuropeanBSCall_Greeks EuropeanBSCall_ImpVol EuropeanBSPut EuropeanBSPut_Greeks EuropeanBSPut_ImpVol exctsmpl exec execbg exp extern eye fcheckerr fclearerr feq feqmt fflush fft ffti fftm fftmi fftn fge fgemt fgets fgetsa fgetsat fgetst fgt fgtmt fileinfo filesa fle flemt floor flt fltmt fmod fne fnemt fonts fopen formatcv formatnv fputs fputst fseek fstrerror ftell ftocv ftos ftostrC gamma gammacplx gammaii gausset gdaAppend gdaCreate gdaDStat gdaDStatMat gdaGetIndex gdaGetName gdaGetNames gdaGetOrders gdaGetType gdaGetTypes gdaGetVarInfo gdaIsCplx gdaLoad gdaPack gdaRead gdaReadByIndex gdaReadSome gdaReadSparse gdaReadStruct gdaReportVarInfo gdaSave gdaUpdate gdaUpdateAndPack gdaVars gdaWrite gdaWrite32 gdaWriteSome getarray getdims getf getGAUSShome getmatrix getmatrix4D getname getnamef getNextTradingDay getNextWeekDay getnr getorders getpath getPreviousTradingDay getPreviousWeekDay getRow getscalar3D getscalar4D getTrRow getwind glm gradcplx gradMT gradMTm gradMTT gradMTTm gradp graphprt graphset hasimag header headermt hess hessMT hessMTg hessMTgw hessMTm hessMTmw hessMTT hessMTTg hessMTTgw hessMTTm hessMTw hessp hist histf histp hsec imag indcv indexcat indices indices2 indicesf indicesfn indnv indsav integrate1d integrateControlCreate intgrat2 intgrat3 inthp1 inthp2 inthp3 inthp4 inthpControlCreate intquad1 intquad2 intquad3 intrleav intrleavsa intrsect intsimp inv invpd invswp iscplx iscplxf isden isinfnanmiss ismiss key keyav keyw lag lag1 lagn lapEighb lapEighi lapEighvb lapEighvi lapgEig lapgEigh lapgEighv lapgEigv lapgSchur lapgSvdcst lapgSvds lapgSvdst lapSvdcusv lapSvds lapSvdusv ldlp ldlsol linSolve listwise ln lncdfbvn lncdfbvn2 lncdfmvn lncdfn lncdfn2 lncdfnc lnfact lngammacplx lnpdfmvn lnpdfmvt lnpdfn lnpdft loadd loadstruct loadwind loess loessmt loessmtControlCreate log loglog logx logy lower lowmat lowmat1 ltrisol lu lusol machEpsilon make makevars makewind margin matalloc matinit mattoarray maxbytes maxc maxindc maxv maxvec mbesselei mbesselei0 mbesselei1 mbesseli mbesseli0 mbesseli1 meanc median mergeby mergevar minc minindc minv miss missex missrv moment momentd movingave movingaveExpwgt movingaveWgt nextindex nextn nextnevn nextwind ntos null null1 numCombinations ols olsmt olsmtControlCreate olsqr olsqr2 olsqrmt ones optn optnevn orth outtyp pacf packedToSp packr parse pause pdfCauchy pdfChi pdfExp pdfGenPareto pdfHyperGeo pdfLaplace pdfLogistic pdfn pdfPoisson pdfRayleigh pdfWeibull pi pinv pinvmt plotAddArrow plotAddBar plotAddBox plotAddHist plotAddHistF plotAddHistP plotAddPolar plotAddScatter plotAddShape plotAddTextbox plotAddTS plotAddXY plotArea plotBar plotBox plotClearLayout plotContour plotCustomLayout plotGetDefaults plotHist plotHistF plotHistP plotLayout plotLogLog plotLogX plotLogY plotOpenWindow plotPolar plotSave plotScatter plotSetAxesPen plotSetBar plotSetBarFill plotSetBarStacked plotSetBkdColor plotSetFill plotSetGrid plotSetLegend plotSetLineColor plotSetLineStyle plotSetLineSymbol plotSetLineThickness plotSetNewWindow plotSetTitle plotSetWhichYAxis plotSetXAxisShow plotSetXLabel plotSetXRange plotSetXTicInterval plotSetXTicLabel plotSetYAxisShow plotSetYLabel plotSetYRange plotSetZAxisShow plotSetZLabel plotSurface plotTS plotXY polar polychar polyeval polygamma polyint polymake polymat polymroot polymult polyroot pqgwin previousindex princomp printfm printfmt prodc psi putarray putf putvals pvCreate pvGetIndex pvGetParNames pvGetParVector pvLength pvList pvPack pvPacki pvPackm pvPackmi pvPacks pvPacksi pvPacksm pvPacksmi pvPutParVector pvTest pvUnpack QNewton QNewtonmt QNewtonmtControlCreate QNewtonmtOutCreate QNewtonSet QProg QProgmt QProgmtInCreate qqr qqre qqrep qr qre qrep qrsol qrtsol qtyr qtyre qtyrep quantile quantiled qyr qyre qyrep qz rank rankindx readr real reclassify reclassifyCuts recode recserar recsercp recserrc rerun rescale reshape rets rev rfft rffti rfftip rfftn rfftnp rfftp rndBernoulli rndBeta rndBinomial rndCauchy rndChiSquare rndCon rndCreateState rndExp rndGamma rndGeo rndGumbel rndHyperGeo rndi rndKMbeta rndKMgam rndKMi rndKMn rndKMnb rndKMp rndKMu rndKMvm rndLaplace rndLCbeta rndLCgam rndLCi rndLCn rndLCnb rndLCp rndLCu rndLCvm rndLogNorm rndMTu rndMVn rndMVt rndn rndnb rndNegBinomial rndp rndPoisson rndRayleigh rndStateSkip rndu rndvm rndWeibull rndWishart rotater round rows rowsf rref sampleData satostrC saved saveStruct savewind scale scale3d scalerr scalinfnanmiss scalmiss schtoc schur searchsourcepath seekr select selif seqa seqm setdif setdifsa setvars setvwrmode setwind shell shiftr sin singleindex sinh sleep solpd sortc sortcc sortd sorthc sorthcc sortind sortindc sortmc sortr sortrc spBiconjGradSol spChol spConjGradSol spCreate spDenseSubmat spDiagRvMat spEigv spEye spLDL spline spLU spNumNZE spOnes spreadSheetReadM spreadSheetReadSA spreadSheetWrite spScale spSubmat spToDense spTrTDense spTScalar spZeros sqpSolve sqpSolveMT sqpSolveMTControlCreate sqpSolveMTlagrangeCreate sqpSolveMToutCreate sqpSolveSet sqrt statements stdc stdsc stocv stof strcombine strindx strlen strput strrindx strsect strsplit strsplitPad strtodt strtof strtofcplx strtriml strtrimr strtrunc strtruncl strtruncpad strtruncr submat subscat substute subvec sumc sumr surface svd svd1 svd2 svdcusv svds svdusv sysstate tab tan tanh tempname time timedt timestr timeutc title tkf2eps tkf2ps tocart todaydt toeplitz token topolar trapchk trigamma trimr trunc type typecv typef union unionsa uniqindx uniqindxsa unique uniquesa upmat upmat1 upper utctodt utctodtv utrisol vals varCovMS varCovXS varget vargetl varmall varmares varput varputl vartypef vcm vcms vcx vcxs vec vech vecr vector vget view viewxyz vlist vnamecv volume vput vread vtypecv wait waitc walkindex where window writer xlabel xlsGetSheetCount xlsGetSheetSize xlsGetSheetTypes xlsMakeRange xlsReadM xlsReadSA xlsWrite xlsWriteM xlsWriteSA xpnd xtics xy xyz ylabel ytics zeros zeta zlabel ztics cdfEmpirical dot h5create h5open h5read h5readAttribute h5write h5writeAttribute ldl plotAddErrorBar plotAddSurface plotCDFEmpirical plotSetColormap plotSetContourLabels plotSetLegendFont plotSetTextInterpreter plotSetXTicCount plotSetYTicCount plotSetZLevels powerm strjoin sylvester strtrim",literal:"DB_AFTER_LAST_ROW DB_ALL_TABLES DB_BATCH_OPERATIONS DB_BEFORE_FIRST_ROW DB_BLOB DB_EVENT_NOTIFICATIONS DB_FINISH_QUERY DB_HIGH_PRECISION DB_LAST_INSERT_ID DB_LOW_PRECISION_DOUBLE DB_LOW_PRECISION_INT32 DB_LOW_PRECISION_INT64 DB_LOW_PRECISION_NUMBERS DB_MULTIPLE_RESULT_SETS DB_NAMED_PLACEHOLDERS DB_POSITIONAL_PLACEHOLDERS DB_PREPARED_QUERIES DB_QUERY_SIZE DB_SIMPLE_LOCKING DB_SYSTEM_TABLES DB_TABLES DB_TRANSACTIONS DB_UNICODE DB_VIEWS __STDIN __STDOUT __STDERR __FILE_DIR"},a=t.COMMENT("@","@"),s={className:"meta",begin:"#",end:"$",keywords:{"meta-keyword":"define definecs|10 undef ifdef ifndef iflight ifdllcall ifmac ifos2win ifunix else endif lineson linesoff srcfile srcline"},contains:[{begin:/\\\n/,relevance:0},{beginKeywords:"include",end:"$",keywords:{"meta-keyword":"include"},contains:[{className:"meta-string",begin:'"',end:'"',illegal:"\\n"}]},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,a]},o={begin:/\bstruct\s+/,end:/\s/,keywords:"struct",contains:[{className:"type",begin:t.UNDERSCORE_IDENT_RE,relevance:0}]},u=[{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,endsWithParent:!0,relevance:0,contains:[{className:"literal",begin:/\.\.\./},t.C_NUMBER_MODE,t.C_BLOCK_COMMENT_MODE,a,o]}],h={className:"title",begin:t.UNDERSCORE_IDENT_RE,relevance:0},f=function(w,S,C){const A=t.inherit({className:"function",beginKeywords:w,end:S,excludeEnd:!0,contains:[].concat(u)},{});return A.contains.push(h),A.contains.push(t.C_NUMBER_MODE),A.contains.push(t.C_BLOCK_COMMENT_MODE),A.contains.push(a),A},p={className:"built_in",begin:"\\b("+r.built_in.split(" ").join("|")+")\\b"},m={className:"string",begin:'"',end:'"',contains:[t.BACKSLASH_ESCAPE],relevance:0},b={begin:t.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,keywords:r,relevance:0,contains:[{beginKeywords:r.keyword},p,{className:"built_in",begin:t.UNDERSCORE_IDENT_RE,relevance:0}]},_={begin:/\(/,end:/\)/,relevance:0,keywords:{built_in:r.built_in,literal:r.literal},contains:[t.C_NUMBER_MODE,t.C_BLOCK_COMMENT_MODE,a,p,b,m,"self"]};return b.contains.push(_),{name:"GAUSS",aliases:["gss"],case_insensitive:!0,keywords:r,illegal:/(\{[%#]|[%#]\}| <- )/,contains:[t.C_NUMBER_MODE,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,a,m,s,{className:"keyword",begin:/\bexternal (matrix|string|array|sparse matrix|struct|proc|keyword|fn)/},f("proc keyword",";"),f("fn","="),{beginKeywords:"for threadfor",end:/;/,relevance:0,contains:[t.C_BLOCK_COMMENT_MODE,a,_]},{variants:[{begin:t.UNDERSCORE_IDENT_RE+"\\."+t.UNDERSCORE_IDENT_RE},{begin:t.UNDERSCORE_IDENT_RE+"\\s*="}],relevance:0},b,o]}}return VZe=e,VZe}var YZe,$gn;function Ati(){if($gn)return YZe;$gn=1;function e(t){const r="[A-Z_][A-Z0-9_.]*",a="%",s={$pattern:r,keyword:"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR"},o={className:"meta",begin:"([O])([0-9]+)"},u=t.inherit(t.C_NUMBER_MODE,{begin:"([-+]?((\\.\\d+)|(\\d+)(\\.\\d*)?))|"+t.C_NUMBER_RE}),h=[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.COMMENT(/\(/,/\)/),u,t.inherit(t.APOS_STRING_MODE,{illegal:null}),t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),{className:"name",begin:"([G])([0-9]+\\.?[0-9]?)"},{className:"name",begin:"([M])([0-9]+\\.?[0-9]?)"},{className:"attr",begin:"(VC|VS|#)",end:"(\\d+)"},{className:"attr",begin:"(VZOFX|VZOFY|VZOFZ)"},{className:"built_in",begin:"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\[)",contains:[u],end:"\\]"},{className:"symbol",variants:[{begin:"N",end:"\\d+",illegal:"\\W"}]}];return{name:"G-code (ISO 6983)",aliases:["nc"],case_insensitive:!0,keywords:s,contains:[{className:"meta",begin:a},o].concat(h)}}return YZe=e,YZe}var jZe,Ugn;function kti(){if(Ugn)return jZe;Ugn=1;function e(t){return{name:"Gherkin",aliases:["feature"],keywords:"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When",contains:[{className:"symbol",begin:"\\*",relevance:0},{className:"meta",begin:"@[^@\\s]+"},{begin:"\\|",end:"\\|\\w*$",contains:[{className:"string",begin:"[^|]+"}]},{className:"variable",begin:"<",end:">"},t.HASH_COMMENT_MODE,{className:"string",begin:'"""',end:'"""'},t.QUOTE_STRING_MODE]}}return jZe=e,jZe}var WZe,zgn;function Rti(){if(zgn)return WZe;zgn=1;function e(t){return{name:"GLSL",keywords:{keyword:"break continue discard do else for if return while switch case default attribute binding buffer ccw centroid centroid varying coherent column_major const cw depth_any depth_greater depth_less depth_unchanged early_fragment_tests equal_spacing flat fractional_even_spacing fractional_odd_spacing highp in index inout invariant invocations isolines layout line_strip lines lines_adjacency local_size_x local_size_y local_size_z location lowp max_vertices mediump noperspective offset origin_upper_left out packed patch pixel_center_integer point_mode points precise precision quads r11f_g11f_b10f r16 r16_snorm r16f r16i r16ui r32f r32i r32ui r8 r8_snorm r8i r8ui readonly restrict rg16 rg16_snorm rg16f rg16i rg16ui rg32f rg32i rg32ui rg8 rg8_snorm rg8i rg8ui rgb10_a2 rgb10_a2ui rgba16 rgba16_snorm rgba16f rgba16i rgba16ui rgba32f rgba32i rgba32ui rgba8 rgba8_snorm rgba8i rgba8ui row_major sample shared smooth std140 std430 stream triangle_strip triangles triangles_adjacency uniform varying vertices volatile writeonly",type:"atomic_uint bool bvec2 bvec3 bvec4 dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 double dvec2 dvec3 dvec4 float iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray int isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow image1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D samplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 vec2 vec3 vec4 void",built_in:"gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxComputeAtomicCounterBuffers gl_MaxComputeAtomicCounters gl_MaxComputeImageUniforms gl_MaxComputeTextureImageUnits gl_MaxComputeUniformComponents gl_MaxComputeWorkGroupCount gl_MaxComputeWorkGroupSize gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentInputVectors gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexOutputVectors gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffset gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_GlobalInvocationID gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_LocalInvocationID gl_LocalInvocationIndex gl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_NumSamples gl_NumWorkGroups gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrix gl_TextureMatrixInverse gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_WorkGroupID gl_WorkGroupSize gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicAdd atomicAnd atomicCompSwap atomicCounter atomicCounterDecrement atomicCounterIncrement atomicExchange atomicMax atomicMin atomicOr atomicXor barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual groupMemoryBarrier imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageSize imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier memoryBarrierAtomicCounter memoryBarrierBuffer memoryBarrierImage memoryBarrierShared min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLevels textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow",literal:"true false"},illegal:'"',contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.C_NUMBER_MODE,{className:"meta",begin:"#",end:"$"}]}}return WZe=e,WZe}var KZe,Ggn;function Iti(){if(Ggn)return KZe;Ggn=1;function e(t){return{name:"GML",case_insensitive:!1,keywords:{keyword:"begin end if then else while do for break continue with until repeat exit and or xor not return mod div switch case default var globalvar enum function constructor delete #macro #region #endregion",built_in:"is_real is_string is_array is_undefined is_int32 is_int64 is_ptr is_vec3 is_vec4 is_matrix is_bool is_method is_struct is_infinity is_nan is_numeric typeof variable_global_exists variable_global_get variable_global_set variable_instance_exists variable_instance_get variable_instance_set variable_instance_get_names variable_struct_exists variable_struct_get variable_struct_get_names variable_struct_names_count variable_struct_remove variable_struct_set array_delete array_insert array_length array_length_1d array_length_2d array_height_2d array_equals array_create array_copy array_pop array_push array_resize array_sort random random_range irandom irandom_range random_set_seed random_get_seed randomize randomise choose abs round floor ceil sign frac sqrt sqr exp ln log2 log10 sin cos tan arcsin arccos arctan arctan2 dsin dcos dtan darcsin darccos darctan darctan2 degtorad radtodeg power logn min max mean median clamp lerp dot_product dot_product_3d dot_product_normalised dot_product_3d_normalised dot_product_normalized dot_product_3d_normalized math_set_epsilon math_get_epsilon angle_difference point_distance_3d point_distance point_direction lengthdir_x lengthdir_y real string int64 ptr string_format chr ansi_char ord string_length string_byte_length string_pos string_copy string_char_at string_ord_at string_byte_at string_set_byte_at string_delete string_insert string_lower string_upper string_repeat string_letters string_digits string_lettersdigits string_replace string_replace_all string_count string_hash_to_newline clipboard_has_text clipboard_set_text clipboard_get_text date_current_datetime date_create_datetime date_valid_datetime date_inc_year date_inc_month date_inc_week date_inc_day date_inc_hour date_inc_minute date_inc_second date_get_year date_get_month date_get_week date_get_day date_get_hour date_get_minute date_get_second date_get_weekday date_get_day_of_year date_get_hour_of_year date_get_minute_of_year date_get_second_of_year date_year_span date_month_span date_week_span date_day_span date_hour_span date_minute_span date_second_span date_compare_datetime date_compare_date date_compare_time date_date_of date_time_of date_datetime_string date_date_string date_time_string date_days_in_month date_days_in_year date_leap_year date_is_today date_set_timezone date_get_timezone game_set_speed game_get_speed motion_set motion_add place_free place_empty place_meeting place_snapped move_random move_snap move_towards_point move_contact_solid move_contact_all move_outside_solid move_outside_all move_bounce_solid move_bounce_all move_wrap distance_to_point distance_to_object position_empty position_meeting path_start path_end mp_linear_step mp_potential_step mp_linear_step_object mp_potential_step_object mp_potential_settings mp_linear_path mp_potential_path mp_linear_path_object mp_potential_path_object mp_grid_create mp_grid_destroy mp_grid_clear_all mp_grid_clear_cell mp_grid_clear_rectangle mp_grid_add_cell mp_grid_get_cell mp_grid_add_rectangle mp_grid_add_instances mp_grid_path mp_grid_draw mp_grid_to_ds_grid collision_point collision_rectangle collision_circle collision_ellipse collision_line collision_point_list collision_rectangle_list collision_circle_list collision_ellipse_list collision_line_list instance_position_list instance_place_list point_in_rectangle point_in_triangle point_in_circle rectangle_in_rectangle rectangle_in_triangle rectangle_in_circle instance_find instance_exists instance_number instance_position instance_nearest instance_furthest instance_place instance_create_depth instance_create_layer instance_copy instance_change instance_destroy position_destroy position_change instance_id_get instance_deactivate_all instance_deactivate_object instance_deactivate_region instance_activate_all instance_activate_object instance_activate_region room_goto room_goto_previous room_goto_next room_previous room_next room_restart game_end game_restart game_load game_save game_save_buffer game_load_buffer event_perform event_user event_perform_object event_inherited show_debug_message show_debug_overlay debug_event debug_get_callstack alarm_get alarm_set font_texture_page_size keyboard_set_map keyboard_get_map keyboard_unset_map keyboard_check keyboard_check_pressed keyboard_check_released keyboard_check_direct keyboard_get_numlock keyboard_set_numlock keyboard_key_press keyboard_key_release keyboard_clear io_clear mouse_check_button mouse_check_button_pressed mouse_check_button_released mouse_wheel_up mouse_wheel_down mouse_clear draw_self draw_sprite draw_sprite_pos draw_sprite_ext draw_sprite_stretched draw_sprite_stretched_ext draw_sprite_tiled draw_sprite_tiled_ext draw_sprite_part draw_sprite_part_ext draw_sprite_general draw_clear draw_clear_alpha draw_point draw_line draw_line_width draw_rectangle draw_roundrect draw_roundrect_ext draw_triangle draw_circle draw_ellipse draw_set_circle_precision draw_arrow draw_button draw_path draw_healthbar draw_getpixel draw_getpixel_ext draw_set_colour draw_set_color draw_set_alpha draw_get_colour draw_get_color draw_get_alpha merge_colour make_colour_rgb make_colour_hsv colour_get_red colour_get_green colour_get_blue colour_get_hue colour_get_saturation colour_get_value merge_color make_color_rgb make_color_hsv color_get_red color_get_green color_get_blue color_get_hue color_get_saturation color_get_value merge_color screen_save screen_save_part draw_set_font draw_set_halign draw_set_valign draw_text draw_text_ext string_width string_height string_width_ext string_height_ext draw_text_transformed draw_text_ext_transformed draw_text_colour draw_text_ext_colour draw_text_transformed_colour draw_text_ext_transformed_colour draw_text_color draw_text_ext_color draw_text_transformed_color draw_text_ext_transformed_color draw_point_colour draw_line_colour draw_line_width_colour draw_rectangle_colour draw_roundrect_colour draw_roundrect_colour_ext draw_triangle_colour draw_circle_colour draw_ellipse_colour draw_point_color draw_line_color draw_line_width_color draw_rectangle_color draw_roundrect_color draw_roundrect_color_ext draw_triangle_color draw_circle_color draw_ellipse_color draw_primitive_begin draw_vertex draw_vertex_colour draw_vertex_color draw_primitive_end sprite_get_uvs font_get_uvs sprite_get_texture font_get_texture texture_get_width texture_get_height texture_get_uvs draw_primitive_begin_texture draw_vertex_texture draw_vertex_texture_colour draw_vertex_texture_color texture_global_scale surface_create surface_create_ext surface_resize surface_free surface_exists surface_get_width surface_get_height surface_get_texture surface_set_target surface_set_target_ext surface_reset_target surface_depth_disable surface_get_depth_disable draw_surface draw_surface_stretched draw_surface_tiled draw_surface_part draw_surface_ext draw_surface_stretched_ext draw_surface_tiled_ext draw_surface_part_ext draw_surface_general surface_getpixel surface_getpixel_ext surface_save surface_save_part surface_copy surface_copy_part application_surface_draw_enable application_get_position application_surface_enable application_surface_is_enabled display_get_width display_get_height display_get_orientation display_get_gui_width display_get_gui_height display_reset display_mouse_get_x display_mouse_get_y display_mouse_set display_set_ui_visibility window_set_fullscreen window_get_fullscreen window_set_caption window_set_min_width window_set_max_width window_set_min_height window_set_max_height window_get_visible_rects window_get_caption window_set_cursor window_get_cursor window_set_colour window_get_colour window_set_color window_get_color window_set_position window_set_size window_set_rectangle window_center window_get_x window_get_y window_get_width window_get_height window_mouse_get_x window_mouse_get_y window_mouse_set window_view_mouse_get_x window_view_mouse_get_y window_views_mouse_get_x window_views_mouse_get_y audio_listener_position audio_listener_velocity audio_listener_orientation audio_emitter_position audio_emitter_create audio_emitter_free audio_emitter_exists audio_emitter_pitch audio_emitter_velocity audio_emitter_falloff audio_emitter_gain audio_play_sound audio_play_sound_on audio_play_sound_at audio_stop_sound audio_resume_music audio_music_is_playing audio_resume_sound audio_pause_sound audio_pause_music audio_channel_num audio_sound_length audio_get_type audio_falloff_set_model audio_play_music audio_stop_music audio_master_gain audio_music_gain audio_sound_gain audio_sound_pitch audio_stop_all audio_resume_all audio_pause_all audio_is_playing audio_is_paused audio_exists audio_sound_set_track_position audio_sound_get_track_position audio_emitter_get_gain audio_emitter_get_pitch audio_emitter_get_x audio_emitter_get_y audio_emitter_get_z audio_emitter_get_vx audio_emitter_get_vy audio_emitter_get_vz audio_listener_set_position audio_listener_set_velocity audio_listener_set_orientation audio_listener_get_data audio_set_master_gain audio_get_master_gain audio_sound_get_gain audio_sound_get_pitch audio_get_name audio_sound_set_track_position audio_sound_get_track_position audio_create_stream audio_destroy_stream audio_create_sync_group audio_destroy_sync_group audio_play_in_sync_group audio_start_sync_group audio_stop_sync_group audio_pause_sync_group audio_resume_sync_group audio_sync_group_get_track_pos audio_sync_group_debug audio_sync_group_is_playing audio_debug audio_group_load audio_group_unload audio_group_is_loaded audio_group_load_progress audio_group_name audio_group_stop_all audio_group_set_gain audio_create_buffer_sound audio_free_buffer_sound audio_create_play_queue audio_free_play_queue audio_queue_sound audio_get_recorder_count audio_get_recorder_info audio_start_recording audio_stop_recording audio_sound_get_listener_mask audio_emitter_get_listener_mask audio_get_listener_mask audio_sound_set_listener_mask audio_emitter_set_listener_mask audio_set_listener_mask audio_get_listener_count audio_get_listener_info audio_system show_message show_message_async clickable_add clickable_add_ext clickable_change clickable_change_ext clickable_delete clickable_exists clickable_set_style show_question show_question_async get_integer get_string get_integer_async get_string_async get_login_async get_open_filename get_save_filename get_open_filename_ext get_save_filename_ext show_error highscore_clear highscore_add highscore_value highscore_name draw_highscore sprite_exists sprite_get_name sprite_get_number sprite_get_width sprite_get_height sprite_get_xoffset sprite_get_yoffset sprite_get_bbox_left sprite_get_bbox_right sprite_get_bbox_top sprite_get_bbox_bottom sprite_save sprite_save_strip sprite_set_cache_size sprite_set_cache_size_ext sprite_get_tpe sprite_prefetch sprite_prefetch_multi sprite_flush sprite_flush_multi sprite_set_speed sprite_get_speed_type sprite_get_speed font_exists font_get_name font_get_fontname font_get_bold font_get_italic font_get_first font_get_last font_get_size font_set_cache_size path_exists path_get_name path_get_length path_get_time path_get_kind path_get_closed path_get_precision path_get_number path_get_point_x path_get_point_y path_get_point_speed path_get_x path_get_y path_get_speed script_exists script_get_name timeline_add timeline_delete timeline_clear timeline_exists timeline_get_name timeline_moment_clear timeline_moment_add_script timeline_size timeline_max_moment object_exists object_get_name object_get_sprite object_get_solid object_get_visible object_get_persistent object_get_mask object_get_parent object_get_physics object_is_ancestor room_exists room_get_name sprite_set_offset sprite_duplicate sprite_assign sprite_merge sprite_add sprite_replace sprite_create_from_surface sprite_add_from_surface sprite_delete sprite_set_alpha_from_sprite sprite_collision_mask font_add_enable_aa font_add_get_enable_aa font_add font_add_sprite font_add_sprite_ext font_replace font_replace_sprite font_replace_sprite_ext font_delete path_set_kind path_set_closed path_set_precision path_add path_assign path_duplicate path_append path_delete path_add_point path_insert_point path_change_point path_delete_point path_clear_points path_reverse path_mirror path_flip path_rotate path_rescale path_shift script_execute object_set_sprite object_set_solid object_set_visible object_set_persistent object_set_mask room_set_width room_set_height room_set_persistent room_set_background_colour room_set_background_color room_set_view room_set_viewport room_get_viewport room_set_view_enabled room_add room_duplicate room_assign room_instance_add room_instance_clear room_get_camera room_set_camera asset_get_index asset_get_type file_text_open_from_string file_text_open_read file_text_open_write file_text_open_append file_text_close file_text_write_string file_text_write_real file_text_writeln file_text_read_string file_text_read_real file_text_readln file_text_eof file_text_eoln file_exists file_delete file_rename file_copy directory_exists directory_create directory_destroy file_find_first file_find_next file_find_close file_attributes filename_name filename_path filename_dir filename_drive filename_ext filename_change_ext file_bin_open file_bin_rewrite file_bin_close file_bin_position file_bin_size file_bin_seek file_bin_write_byte file_bin_read_byte parameter_count parameter_string environment_get_variable ini_open_from_string ini_open ini_close ini_read_string ini_read_real ini_write_string ini_write_real ini_key_exists ini_section_exists ini_key_delete ini_section_delete ds_set_precision ds_exists ds_stack_create ds_stack_destroy ds_stack_clear ds_stack_copy ds_stack_size ds_stack_empty ds_stack_push ds_stack_pop ds_stack_top ds_stack_write ds_stack_read ds_queue_create ds_queue_destroy ds_queue_clear ds_queue_copy ds_queue_size ds_queue_empty ds_queue_enqueue ds_queue_dequeue ds_queue_head ds_queue_tail ds_queue_write ds_queue_read ds_list_create ds_list_destroy ds_list_clear ds_list_copy ds_list_size ds_list_empty ds_list_add ds_list_insert ds_list_replace ds_list_delete ds_list_find_index ds_list_find_value ds_list_mark_as_list ds_list_mark_as_map ds_list_sort ds_list_shuffle ds_list_write ds_list_read ds_list_set ds_map_create ds_map_destroy ds_map_clear ds_map_copy ds_map_size ds_map_empty ds_map_add ds_map_add_list ds_map_add_map ds_map_replace ds_map_replace_map ds_map_replace_list ds_map_delete ds_map_exists ds_map_find_value ds_map_find_previous ds_map_find_next ds_map_find_first ds_map_find_last ds_map_write ds_map_read ds_map_secure_save ds_map_secure_load ds_map_secure_load_buffer ds_map_secure_save_buffer ds_map_set ds_priority_create ds_priority_destroy ds_priority_clear ds_priority_copy ds_priority_size ds_priority_empty ds_priority_add ds_priority_change_priority ds_priority_find_priority ds_priority_delete_value ds_priority_delete_min ds_priority_find_min ds_priority_delete_max ds_priority_find_max ds_priority_write ds_priority_read ds_grid_create ds_grid_destroy ds_grid_copy ds_grid_resize ds_grid_width ds_grid_height ds_grid_clear ds_grid_set ds_grid_add ds_grid_multiply ds_grid_set_region ds_grid_add_region ds_grid_multiply_region ds_grid_set_disk ds_grid_add_disk ds_grid_multiply_disk ds_grid_set_grid_region ds_grid_add_grid_region ds_grid_multiply_grid_region ds_grid_get ds_grid_get_sum ds_grid_get_max ds_grid_get_min ds_grid_get_mean ds_grid_get_disk_sum ds_grid_get_disk_min ds_grid_get_disk_max ds_grid_get_disk_mean ds_grid_value_exists ds_grid_value_x ds_grid_value_y ds_grid_value_disk_exists ds_grid_value_disk_x ds_grid_value_disk_y ds_grid_shuffle ds_grid_write ds_grid_read ds_grid_sort ds_grid_set ds_grid_get effect_create_below effect_create_above effect_clear part_type_create part_type_destroy part_type_exists part_type_clear part_type_shape part_type_sprite part_type_size part_type_scale part_type_orientation part_type_life part_type_step part_type_death part_type_speed part_type_direction part_type_gravity part_type_colour1 part_type_colour2 part_type_colour3 part_type_colour_mix part_type_colour_rgb part_type_colour_hsv part_type_color1 part_type_color2 part_type_color3 part_type_color_mix part_type_color_rgb part_type_color_hsv part_type_alpha1 part_type_alpha2 part_type_alpha3 part_type_blend part_system_create part_system_create_layer part_system_destroy part_system_exists part_system_clear part_system_draw_order part_system_depth part_system_position part_system_automatic_update part_system_automatic_draw part_system_update part_system_drawit part_system_get_layer part_system_layer part_particles_create part_particles_create_colour part_particles_create_color part_particles_clear part_particles_count part_emitter_create part_emitter_destroy part_emitter_destroy_all part_emitter_exists part_emitter_clear part_emitter_region part_emitter_burst part_emitter_stream external_call external_define external_free window_handle window_device matrix_get matrix_set matrix_build_identity matrix_build matrix_build_lookat matrix_build_projection_ortho matrix_build_projection_perspective matrix_build_projection_perspective_fov matrix_multiply matrix_transform_vertex matrix_stack_push matrix_stack_pop matrix_stack_multiply matrix_stack_set matrix_stack_clear matrix_stack_top matrix_stack_is_empty browser_input_capture os_get_config os_get_info os_get_language os_get_region os_lock_orientation display_get_dpi_x display_get_dpi_y display_set_gui_size display_set_gui_maximise display_set_gui_maximize device_mouse_dbclick_enable display_set_timing_method display_get_timing_method display_set_sleep_margin display_get_sleep_margin virtual_key_add virtual_key_hide virtual_key_delete virtual_key_show draw_enable_drawevent draw_enable_swf_aa draw_set_swf_aa_level draw_get_swf_aa_level draw_texture_flush draw_flush gpu_set_blendenable gpu_set_ztestenable gpu_set_zfunc gpu_set_zwriteenable gpu_set_lightingenable gpu_set_fog gpu_set_cullmode gpu_set_blendmode gpu_set_blendmode_ext gpu_set_blendmode_ext_sepalpha gpu_set_colorwriteenable gpu_set_colourwriteenable gpu_set_alphatestenable gpu_set_alphatestref gpu_set_alphatestfunc gpu_set_texfilter gpu_set_texfilter_ext gpu_set_texrepeat gpu_set_texrepeat_ext gpu_set_tex_filter gpu_set_tex_filter_ext gpu_set_tex_repeat gpu_set_tex_repeat_ext gpu_set_tex_mip_filter gpu_set_tex_mip_filter_ext gpu_set_tex_mip_bias gpu_set_tex_mip_bias_ext gpu_set_tex_min_mip gpu_set_tex_min_mip_ext gpu_set_tex_max_mip gpu_set_tex_max_mip_ext gpu_set_tex_max_aniso gpu_set_tex_max_aniso_ext gpu_set_tex_mip_enable gpu_set_tex_mip_enable_ext gpu_get_blendenable gpu_get_ztestenable gpu_get_zfunc gpu_get_zwriteenable gpu_get_lightingenable gpu_get_fog gpu_get_cullmode gpu_get_blendmode gpu_get_blendmode_ext gpu_get_blendmode_ext_sepalpha gpu_get_blendmode_src gpu_get_blendmode_dest gpu_get_blendmode_srcalpha gpu_get_blendmode_destalpha gpu_get_colorwriteenable gpu_get_colourwriteenable gpu_get_alphatestenable gpu_get_alphatestref gpu_get_alphatestfunc gpu_get_texfilter gpu_get_texfilter_ext gpu_get_texrepeat gpu_get_texrepeat_ext gpu_get_tex_filter gpu_get_tex_filter_ext gpu_get_tex_repeat gpu_get_tex_repeat_ext gpu_get_tex_mip_filter gpu_get_tex_mip_filter_ext gpu_get_tex_mip_bias gpu_get_tex_mip_bias_ext gpu_get_tex_min_mip gpu_get_tex_min_mip_ext gpu_get_tex_max_mip gpu_get_tex_max_mip_ext gpu_get_tex_max_aniso gpu_get_tex_max_aniso_ext gpu_get_tex_mip_enable gpu_get_tex_mip_enable_ext gpu_push_state gpu_pop_state gpu_get_state gpu_set_state draw_light_define_ambient draw_light_define_direction draw_light_define_point draw_light_enable draw_set_lighting draw_light_get_ambient draw_light_get draw_get_lighting shop_leave_rating url_get_domain url_open url_open_ext url_open_full get_timer achievement_login achievement_logout achievement_post achievement_increment achievement_post_score achievement_available achievement_show_achievements achievement_show_leaderboards achievement_load_friends achievement_load_leaderboard achievement_send_challenge achievement_load_progress achievement_reset achievement_login_status achievement_get_pic achievement_show_challenge_notifications achievement_get_challenges achievement_event achievement_show achievement_get_info cloud_file_save cloud_string_save cloud_synchronise ads_enable ads_disable ads_setup ads_engagement_launch ads_engagement_available ads_engagement_active ads_event ads_event_preload ads_set_reward_callback ads_get_display_height ads_get_display_width ads_move ads_interstitial_available ads_interstitial_display device_get_tilt_x device_get_tilt_y device_get_tilt_z device_is_keypad_open device_mouse_check_button device_mouse_check_button_pressed device_mouse_check_button_released device_mouse_x device_mouse_y device_mouse_raw_x device_mouse_raw_y device_mouse_x_to_gui device_mouse_y_to_gui iap_activate iap_status iap_enumerate_products iap_restore_all iap_acquire iap_consume iap_product_details iap_purchase_details facebook_init facebook_login facebook_status facebook_graph_request facebook_dialog facebook_logout facebook_launch_offerwall facebook_post_message facebook_send_invite facebook_user_id facebook_accesstoken facebook_check_permission facebook_request_read_permissions facebook_request_publish_permissions gamepad_is_supported gamepad_get_device_count gamepad_is_connected gamepad_get_description gamepad_get_button_threshold gamepad_set_button_threshold gamepad_get_axis_deadzone gamepad_set_axis_deadzone gamepad_button_count gamepad_button_check gamepad_button_check_pressed gamepad_button_check_released gamepad_button_value gamepad_axis_count gamepad_axis_value gamepad_set_vibration gamepad_set_colour gamepad_set_color os_is_paused window_has_focus code_is_compiled http_get http_get_file http_post_string http_request json_encode json_decode zip_unzip load_csv base64_encode base64_decode md5_string_unicode md5_string_utf8 md5_file os_is_network_connected sha1_string_unicode sha1_string_utf8 sha1_file os_powersave_enable analytics_event analytics_event_ext win8_livetile_tile_notification win8_livetile_tile_clear win8_livetile_badge_notification win8_livetile_badge_clear win8_livetile_queue_enable win8_secondarytile_pin win8_secondarytile_badge_notification win8_secondarytile_delete win8_livetile_notification_begin win8_livetile_notification_secondary_begin win8_livetile_notification_expiry win8_livetile_notification_tag win8_livetile_notification_text_add win8_livetile_notification_image_add win8_livetile_notification_end win8_appbar_enable win8_appbar_add_element win8_appbar_remove_element win8_settingscharm_add_entry win8_settingscharm_add_html_entry win8_settingscharm_add_xaml_entry win8_settingscharm_set_xaml_property win8_settingscharm_get_xaml_property win8_settingscharm_remove_entry win8_share_image win8_share_screenshot win8_share_file win8_share_url win8_share_text win8_search_enable win8_search_disable win8_search_add_suggestions win8_device_touchscreen_available win8_license_initialize_sandbox win8_license_trial_version winphone_license_trial_version winphone_tile_title winphone_tile_count winphone_tile_back_title winphone_tile_back_content winphone_tile_back_content_wide winphone_tile_front_image winphone_tile_front_image_small winphone_tile_front_image_wide winphone_tile_back_image winphone_tile_back_image_wide winphone_tile_background_colour winphone_tile_background_color winphone_tile_icon_image winphone_tile_small_icon_image winphone_tile_wide_content winphone_tile_cycle_images winphone_tile_small_background_image physics_world_create physics_world_gravity physics_world_update_speed physics_world_update_iterations physics_world_draw_debug physics_pause_enable physics_fixture_create physics_fixture_set_kinematic physics_fixture_set_density physics_fixture_set_awake physics_fixture_set_restitution physics_fixture_set_friction physics_fixture_set_collision_group physics_fixture_set_sensor physics_fixture_set_linear_damping physics_fixture_set_angular_damping physics_fixture_set_circle_shape physics_fixture_set_box_shape physics_fixture_set_edge_shape physics_fixture_set_polygon_shape physics_fixture_set_chain_shape physics_fixture_add_point physics_fixture_bind physics_fixture_bind_ext physics_fixture_delete physics_apply_force physics_apply_impulse physics_apply_angular_impulse physics_apply_local_force physics_apply_local_impulse physics_apply_torque physics_mass_properties physics_draw_debug physics_test_overlap physics_remove_fixture physics_set_friction physics_set_density physics_set_restitution physics_get_friction physics_get_density physics_get_restitution physics_joint_distance_create physics_joint_rope_create physics_joint_revolute_create physics_joint_prismatic_create physics_joint_pulley_create physics_joint_wheel_create physics_joint_weld_create physics_joint_friction_create physics_joint_gear_create physics_joint_enable_motor physics_joint_get_value physics_joint_set_value physics_joint_delete physics_particle_create physics_particle_delete physics_particle_delete_region_circle physics_particle_delete_region_box physics_particle_delete_region_poly physics_particle_set_flags physics_particle_set_category_flags physics_particle_draw physics_particle_draw_ext physics_particle_count physics_particle_get_data physics_particle_get_data_particle physics_particle_group_begin physics_particle_group_circle physics_particle_group_box physics_particle_group_polygon physics_particle_group_add_point physics_particle_group_end physics_particle_group_join physics_particle_group_delete physics_particle_group_count physics_particle_group_get_data physics_particle_group_get_mass physics_particle_group_get_inertia physics_particle_group_get_centre_x physics_particle_group_get_centre_y physics_particle_group_get_vel_x physics_particle_group_get_vel_y physics_particle_group_get_ang_vel physics_particle_group_get_x physics_particle_group_get_y physics_particle_group_get_angle physics_particle_set_group_flags physics_particle_get_group_flags physics_particle_get_max_count physics_particle_get_radius physics_particle_get_density physics_particle_get_damping physics_particle_get_gravity_scale physics_particle_set_max_count physics_particle_set_radius physics_particle_set_density physics_particle_set_damping physics_particle_set_gravity_scale network_create_socket network_create_socket_ext network_create_server network_create_server_raw network_connect network_connect_raw network_send_packet network_send_raw network_send_broadcast network_send_udp network_send_udp_raw network_set_timeout network_set_config network_resolve network_destroy buffer_create buffer_write buffer_read buffer_seek buffer_get_surface buffer_set_surface buffer_delete buffer_exists buffer_get_type buffer_get_alignment buffer_poke buffer_peek buffer_save buffer_save_ext buffer_load buffer_load_ext buffer_load_partial buffer_copy buffer_fill buffer_get_size buffer_tell buffer_resize buffer_md5 buffer_sha1 buffer_base64_encode buffer_base64_decode buffer_base64_decode_ext buffer_sizeof buffer_get_address buffer_create_from_vertex_buffer buffer_create_from_vertex_buffer_ext buffer_copy_from_vertex_buffer buffer_async_group_begin buffer_async_group_option buffer_async_group_end buffer_load_async buffer_save_async gml_release_mode gml_pragma steam_activate_overlay steam_is_overlay_enabled steam_is_overlay_activated steam_get_persona_name steam_initialised steam_is_cloud_enabled_for_app steam_is_cloud_enabled_for_account steam_file_persisted steam_get_quota_total steam_get_quota_free steam_file_write steam_file_write_file steam_file_read steam_file_delete steam_file_exists steam_file_size steam_file_share steam_is_screenshot_requested steam_send_screenshot steam_is_user_logged_on steam_get_user_steam_id steam_user_owns_dlc steam_user_installed_dlc steam_set_achievement steam_get_achievement steam_clear_achievement steam_set_stat_int steam_set_stat_float steam_set_stat_avg_rate steam_get_stat_int steam_get_stat_float steam_get_stat_avg_rate steam_reset_all_stats steam_reset_all_stats_achievements steam_stats_ready steam_create_leaderboard steam_upload_score steam_upload_score_ext steam_download_scores_around_user steam_download_scores steam_download_friends_scores steam_upload_score_buffer steam_upload_score_buffer_ext steam_current_game_language steam_available_languages steam_activate_overlay_browser steam_activate_overlay_user steam_activate_overlay_store steam_get_user_persona_name steam_get_app_id steam_get_user_account_id steam_ugc_download steam_ugc_create_item steam_ugc_start_item_update steam_ugc_set_item_title steam_ugc_set_item_description steam_ugc_set_item_visibility steam_ugc_set_item_tags steam_ugc_set_item_content steam_ugc_set_item_preview steam_ugc_submit_item_update steam_ugc_get_item_update_progress steam_ugc_subscribe_item steam_ugc_unsubscribe_item steam_ugc_num_subscribed_items steam_ugc_get_subscribed_items steam_ugc_get_item_install_info steam_ugc_get_item_update_info steam_ugc_request_item_details steam_ugc_create_query_user steam_ugc_create_query_user_ex steam_ugc_create_query_all steam_ugc_create_query_all_ex steam_ugc_query_set_cloud_filename_filter steam_ugc_query_set_match_any_tag steam_ugc_query_set_search_text steam_ugc_query_set_ranked_by_trend_days steam_ugc_query_add_required_tag steam_ugc_query_add_excluded_tag steam_ugc_query_set_return_long_description steam_ugc_query_set_return_total_only steam_ugc_query_set_allow_cached_response steam_ugc_send_query shader_set shader_get_name shader_reset shader_current shader_is_compiled shader_get_sampler_index shader_get_uniform shader_set_uniform_i shader_set_uniform_i_array shader_set_uniform_f shader_set_uniform_f_array shader_set_uniform_matrix shader_set_uniform_matrix_array shader_enable_corner_id texture_set_stage texture_get_texel_width texture_get_texel_height shaders_are_supported vertex_format_begin vertex_format_end vertex_format_delete vertex_format_add_position vertex_format_add_position_3d vertex_format_add_colour vertex_format_add_color vertex_format_add_normal vertex_format_add_texcoord vertex_format_add_textcoord vertex_format_add_custom vertex_create_buffer vertex_create_buffer_ext vertex_delete_buffer vertex_begin vertex_end vertex_position vertex_position_3d vertex_colour vertex_color vertex_argb vertex_texcoord vertex_normal vertex_float1 vertex_float2 vertex_float3 vertex_float4 vertex_ubyte4 vertex_submit vertex_freeze vertex_get_number vertex_get_buffer_size vertex_create_buffer_from_buffer vertex_create_buffer_from_buffer_ext push_local_notification push_get_first_local_notification push_get_next_local_notification push_cancel_local_notification skeleton_animation_set skeleton_animation_get skeleton_animation_mix skeleton_animation_set_ext skeleton_animation_get_ext skeleton_animation_get_duration skeleton_animation_get_frames skeleton_animation_clear skeleton_skin_set skeleton_skin_get skeleton_attachment_set skeleton_attachment_get skeleton_attachment_create skeleton_collision_draw_set skeleton_bone_data_get skeleton_bone_data_set skeleton_bone_state_get skeleton_bone_state_set skeleton_get_minmax skeleton_get_num_bounds skeleton_get_bounds skeleton_animation_get_frame skeleton_animation_set_frame draw_skeleton draw_skeleton_time draw_skeleton_instance draw_skeleton_collision skeleton_animation_list skeleton_skin_list skeleton_slot_data layer_get_id layer_get_id_at_depth layer_get_depth layer_create layer_destroy layer_destroy_instances layer_add_instance layer_has_instance layer_set_visible layer_get_visible layer_exists layer_x layer_y layer_get_x layer_get_y layer_hspeed layer_vspeed layer_get_hspeed layer_get_vspeed layer_script_begin layer_script_end layer_shader layer_get_script_begin layer_get_script_end layer_get_shader layer_set_target_room layer_get_target_room layer_reset_target_room layer_get_all layer_get_all_elements layer_get_name layer_depth layer_get_element_layer layer_get_element_type layer_element_move layer_force_draw_depth layer_is_draw_depth_forced layer_get_forced_depth layer_background_get_id layer_background_exists layer_background_create layer_background_destroy layer_background_visible layer_background_change layer_background_sprite layer_background_htiled layer_background_vtiled layer_background_stretch layer_background_yscale layer_background_xscale layer_background_blend layer_background_alpha layer_background_index layer_background_speed layer_background_get_visible layer_background_get_sprite layer_background_get_htiled layer_background_get_vtiled layer_background_get_stretch layer_background_get_yscale layer_background_get_xscale layer_background_get_blend layer_background_get_alpha layer_background_get_index layer_background_get_speed layer_sprite_get_id layer_sprite_exists layer_sprite_create layer_sprite_destroy layer_sprite_change layer_sprite_index layer_sprite_speed layer_sprite_xscale layer_sprite_yscale layer_sprite_angle layer_sprite_blend layer_sprite_alpha layer_sprite_x layer_sprite_y layer_sprite_get_sprite layer_sprite_get_index layer_sprite_get_speed layer_sprite_get_xscale layer_sprite_get_yscale layer_sprite_get_angle layer_sprite_get_blend layer_sprite_get_alpha layer_sprite_get_x layer_sprite_get_y layer_tilemap_get_id layer_tilemap_exists layer_tilemap_create layer_tilemap_destroy tilemap_tileset tilemap_x tilemap_y tilemap_set tilemap_set_at_pixel tilemap_get_tileset tilemap_get_tile_width tilemap_get_tile_height tilemap_get_width tilemap_get_height tilemap_get_x tilemap_get_y tilemap_get tilemap_get_at_pixel tilemap_get_cell_x_at_pixel tilemap_get_cell_y_at_pixel tilemap_clear draw_tilemap draw_tile tilemap_set_global_mask tilemap_get_global_mask tilemap_set_mask tilemap_get_mask tilemap_get_frame tile_set_empty tile_set_index tile_set_flip tile_set_mirror tile_set_rotate tile_get_empty tile_get_index tile_get_flip tile_get_mirror tile_get_rotate layer_tile_exists layer_tile_create layer_tile_destroy layer_tile_change layer_tile_xscale layer_tile_yscale layer_tile_blend layer_tile_alpha layer_tile_x layer_tile_y layer_tile_region layer_tile_visible layer_tile_get_sprite layer_tile_get_xscale layer_tile_get_yscale layer_tile_get_blend layer_tile_get_alpha layer_tile_get_x layer_tile_get_y layer_tile_get_region layer_tile_get_visible layer_instance_get_instance instance_activate_layer instance_deactivate_layer camera_create camera_create_view camera_destroy camera_apply camera_get_active camera_get_default camera_set_default camera_set_view_mat camera_set_proj_mat camera_set_update_script camera_set_begin_script camera_set_end_script camera_set_view_pos camera_set_view_size camera_set_view_speed camera_set_view_border camera_set_view_angle camera_set_view_target camera_get_view_mat camera_get_proj_mat camera_get_update_script camera_get_begin_script camera_get_end_script camera_get_view_x camera_get_view_y camera_get_view_width camera_get_view_height camera_get_view_speed_x camera_get_view_speed_y camera_get_view_border_x camera_get_view_border_y camera_get_view_angle camera_get_view_target view_get_camera view_get_visible view_get_xport view_get_yport view_get_wport view_get_hport view_get_surface_id view_set_camera view_set_visible view_set_xport view_set_yport view_set_wport view_set_hport view_set_surface_id gesture_drag_time gesture_drag_distance gesture_flick_speed gesture_double_tap_time gesture_double_tap_distance gesture_pinch_distance gesture_pinch_angle_towards gesture_pinch_angle_away gesture_rotate_time gesture_rotate_angle gesture_tap_count gesture_get_drag_time gesture_get_drag_distance gesture_get_flick_speed gesture_get_double_tap_time gesture_get_double_tap_distance gesture_get_pinch_distance gesture_get_pinch_angle_towards gesture_get_pinch_angle_away gesture_get_rotate_time gesture_get_rotate_angle gesture_get_tap_count keyboard_virtual_show keyboard_virtual_hide keyboard_virtual_status keyboard_virtual_height",literal:"self other all noone global local undefined pointer_invalid pointer_null path_action_stop path_action_restart path_action_continue path_action_reverse true false pi GM_build_date GM_version GM_runtime_version timezone_local timezone_utc gamespeed_fps gamespeed_microseconds ev_create ev_destroy ev_step ev_alarm ev_keyboard ev_mouse ev_collision ev_other ev_draw ev_draw_begin ev_draw_end ev_draw_pre ev_draw_post ev_keypress ev_keyrelease ev_trigger ev_left_button ev_right_button ev_middle_button ev_no_button ev_left_press ev_right_press ev_middle_press ev_left_release ev_right_release ev_middle_release ev_mouse_enter ev_mouse_leave ev_mouse_wheel_up ev_mouse_wheel_down ev_global_left_button ev_global_right_button ev_global_middle_button ev_global_left_press ev_global_right_press ev_global_middle_press ev_global_left_release ev_global_right_release ev_global_middle_release ev_joystick1_left ev_joystick1_right ev_joystick1_up ev_joystick1_down ev_joystick1_button1 ev_joystick1_button2 ev_joystick1_button3 ev_joystick1_button4 ev_joystick1_button5 ev_joystick1_button6 ev_joystick1_button7 ev_joystick1_button8 ev_joystick2_left ev_joystick2_right ev_joystick2_up ev_joystick2_down ev_joystick2_button1 ev_joystick2_button2 ev_joystick2_button3 ev_joystick2_button4 ev_joystick2_button5 ev_joystick2_button6 ev_joystick2_button7 ev_joystick2_button8 ev_outside ev_boundary ev_game_start ev_game_end ev_room_start ev_room_end ev_no_more_lives ev_animation_end ev_end_of_path ev_no_more_health ev_close_button ev_user0 ev_user1 ev_user2 ev_user3 ev_user4 ev_user5 ev_user6 ev_user7 ev_user8 ev_user9 ev_user10 ev_user11 ev_user12 ev_user13 ev_user14 ev_user15 ev_step_normal ev_step_begin ev_step_end ev_gui ev_gui_begin ev_gui_end ev_cleanup ev_gesture ev_gesture_tap ev_gesture_double_tap ev_gesture_drag_start ev_gesture_dragging ev_gesture_drag_end ev_gesture_flick ev_gesture_pinch_start ev_gesture_pinch_in ev_gesture_pinch_out ev_gesture_pinch_end ev_gesture_rotate_start ev_gesture_rotating ev_gesture_rotate_end ev_global_gesture_tap ev_global_gesture_double_tap ev_global_gesture_drag_start ev_global_gesture_dragging ev_global_gesture_drag_end ev_global_gesture_flick ev_global_gesture_pinch_start ev_global_gesture_pinch_in ev_global_gesture_pinch_out ev_global_gesture_pinch_end ev_global_gesture_rotate_start ev_global_gesture_rotating ev_global_gesture_rotate_end vk_nokey vk_anykey vk_enter vk_return vk_shift vk_control vk_alt vk_escape vk_space vk_backspace vk_tab vk_pause vk_printscreen vk_left vk_right vk_up vk_down vk_home vk_end vk_delete vk_insert vk_pageup vk_pagedown vk_f1 vk_f2 vk_f3 vk_f4 vk_f5 vk_f6 vk_f7 vk_f8 vk_f9 vk_f10 vk_f11 vk_f12 vk_numpad0 vk_numpad1 vk_numpad2 vk_numpad3 vk_numpad4 vk_numpad5 vk_numpad6 vk_numpad7 vk_numpad8 vk_numpad9 vk_divide vk_multiply vk_subtract vk_add vk_decimal vk_lshift vk_lcontrol vk_lalt vk_rshift vk_rcontrol vk_ralt mb_any mb_none mb_left mb_right mb_middle c_aqua c_black c_blue c_dkgray c_fuchsia c_gray c_green c_lime c_ltgray c_maroon c_navy c_olive c_purple c_red c_silver c_teal c_white c_yellow c_orange fa_left fa_center fa_right fa_top fa_middle fa_bottom pr_pointlist pr_linelist pr_linestrip pr_trianglelist pr_trianglestrip pr_trianglefan bm_complex bm_normal bm_add bm_max bm_subtract bm_zero bm_one bm_src_colour bm_inv_src_colour bm_src_color bm_inv_src_color bm_src_alpha bm_inv_src_alpha bm_dest_alpha bm_inv_dest_alpha bm_dest_colour bm_inv_dest_colour bm_dest_color bm_inv_dest_color bm_src_alpha_sat tf_point tf_linear tf_anisotropic mip_off mip_on mip_markedonly audio_falloff_none audio_falloff_inverse_distance audio_falloff_inverse_distance_clamped audio_falloff_linear_distance audio_falloff_linear_distance_clamped audio_falloff_exponent_distance audio_falloff_exponent_distance_clamped audio_old_system audio_new_system audio_mono audio_stereo audio_3d cr_default cr_none cr_arrow cr_cross cr_beam cr_size_nesw cr_size_ns cr_size_nwse cr_size_we cr_uparrow cr_hourglass cr_drag cr_appstart cr_handpoint cr_size_all spritespeed_framespersecond spritespeed_framespergameframe asset_object asset_unknown asset_sprite asset_sound asset_room asset_path asset_script asset_font asset_timeline asset_tiles asset_shader fa_readonly fa_hidden fa_sysfile fa_volumeid fa_directory fa_archive ds_type_map ds_type_list ds_type_stack ds_type_queue ds_type_grid ds_type_priority ef_explosion ef_ring ef_ellipse ef_firework ef_smoke ef_smokeup ef_star ef_spark ef_flare ef_cloud ef_rain ef_snow pt_shape_pixel pt_shape_disk pt_shape_square pt_shape_line pt_shape_star pt_shape_circle pt_shape_ring pt_shape_sphere pt_shape_flare pt_shape_spark pt_shape_explosion pt_shape_cloud pt_shape_smoke pt_shape_snow ps_distr_linear ps_distr_gaussian ps_distr_invgaussian ps_shape_rectangle ps_shape_ellipse ps_shape_diamond ps_shape_line ty_real ty_string dll_cdecl dll_stdcall matrix_view matrix_projection matrix_world os_win32 os_windows os_macosx os_ios os_android os_symbian os_linux os_unknown os_winphone os_tizen os_win8native os_wiiu os_3ds os_psvita os_bb10 os_ps4 os_xboxone os_ps3 os_xbox360 os_uwp os_tvos os_switch browser_not_a_browser browser_unknown browser_ie browser_firefox browser_chrome browser_safari browser_safari_mobile browser_opera browser_tizen browser_edge browser_windows_store browser_ie_mobile device_ios_unknown device_ios_iphone device_ios_iphone_retina device_ios_ipad device_ios_ipad_retina device_ios_iphone5 device_ios_iphone6 device_ios_iphone6plus device_emulator device_tablet display_landscape display_landscape_flipped display_portrait display_portrait_flipped tm_sleep tm_countvsyncs of_challenge_win of_challen ge_lose of_challenge_tie leaderboard_type_number leaderboard_type_time_mins_secs cmpfunc_never cmpfunc_less cmpfunc_equal cmpfunc_lessequal cmpfunc_greater cmpfunc_notequal cmpfunc_greaterequal cmpfunc_always cull_noculling cull_clockwise cull_counterclockwise lighttype_dir lighttype_point iap_ev_storeload iap_ev_product iap_ev_purchase iap_ev_consume iap_ev_restore iap_storeload_ok iap_storeload_failed iap_status_uninitialised iap_status_unavailable iap_status_loading iap_status_available iap_status_processing iap_status_restoring iap_failed iap_unavailable iap_available iap_purchased iap_canceled iap_refunded fb_login_default fb_login_fallback_to_webview fb_login_no_fallback_to_webview fb_login_forcing_webview fb_login_use_system_account fb_login_forcing_safari phy_joint_anchor_1_x phy_joint_anchor_1_y phy_joint_anchor_2_x phy_joint_anchor_2_y phy_joint_reaction_force_x phy_joint_reaction_force_y phy_joint_reaction_torque phy_joint_motor_speed phy_joint_angle phy_joint_motor_torque phy_joint_max_motor_torque phy_joint_translation phy_joint_speed phy_joint_motor_force phy_joint_max_motor_force phy_joint_length_1 phy_joint_length_2 phy_joint_damping_ratio phy_joint_frequency phy_joint_lower_angle_limit phy_joint_upper_angle_limit phy_joint_angle_limits phy_joint_max_length phy_joint_max_torque phy_joint_max_force phy_debug_render_aabb phy_debug_render_collision_pairs phy_debug_render_coms phy_debug_render_core_shapes phy_debug_render_joints phy_debug_render_obb phy_debug_render_shapes phy_particle_flag_water phy_particle_flag_zombie phy_particle_flag_wall phy_particle_flag_spring phy_particle_flag_elastic phy_particle_flag_viscous phy_particle_flag_powder phy_particle_flag_tensile phy_particle_flag_colourmixing phy_particle_flag_colormixing phy_particle_group_flag_solid phy_particle_group_flag_rigid phy_particle_data_flag_typeflags phy_particle_data_flag_position phy_particle_data_flag_velocity phy_particle_data_flag_colour phy_particle_data_flag_color phy_particle_data_flag_category achievement_our_info achievement_friends_info achievement_leaderboard_info achievement_achievement_info achievement_filter_all_players achievement_filter_friends_only achievement_filter_favorites_only achievement_type_achievement_challenge achievement_type_score_challenge achievement_pic_loaded achievement_show_ui achievement_show_profile achievement_show_leaderboard achievement_show_achievement achievement_show_bank achievement_show_friend_picker achievement_show_purchase_prompt network_socket_tcp network_socket_udp network_socket_bluetooth network_type_connect network_type_disconnect network_type_data network_type_non_blocking_connect network_config_connect_timeout network_config_use_non_blocking_socket network_config_enable_reliable_udp network_config_disable_reliable_udp buffer_fixed buffer_grow buffer_wrap buffer_fast buffer_vbuffer buffer_network buffer_u8 buffer_s8 buffer_u16 buffer_s16 buffer_u32 buffer_s32 buffer_u64 buffer_f16 buffer_f32 buffer_f64 buffer_bool buffer_text buffer_string buffer_surface_copy buffer_seek_start buffer_seek_relative buffer_seek_end buffer_generalerror buffer_outofspace buffer_outofbounds buffer_invalidtype text_type button_type input_type ANSI_CHARSET DEFAULT_CHARSET EASTEUROPE_CHARSET RUSSIAN_CHARSET SYMBOL_CHARSET SHIFTJIS_CHARSET HANGEUL_CHARSET GB2312_CHARSET CHINESEBIG5_CHARSET JOHAB_CHARSET HEBREW_CHARSET ARABIC_CHARSET GREEK_CHARSET TURKISH_CHARSET VIETNAMESE_CHARSET THAI_CHARSET MAC_CHARSET BALTIC_CHARSET OEM_CHARSET gp_face1 gp_face2 gp_face3 gp_face4 gp_shoulderl gp_shoulderr gp_shoulderlb gp_shoulderrb gp_select gp_start gp_stickl gp_stickr gp_padu gp_padd gp_padl gp_padr gp_axislh gp_axislv gp_axisrh gp_axisrv ov_friends ov_community ov_players ov_settings ov_gamegroup ov_achievements lb_sort_none lb_sort_ascending lb_sort_descending lb_disp_none lb_disp_numeric lb_disp_time_sec lb_disp_time_ms ugc_result_success ugc_filetype_community ugc_filetype_microtrans ugc_visibility_public ugc_visibility_friends_only ugc_visibility_private ugc_query_RankedByVote ugc_query_RankedByPublicationDate ugc_query_AcceptedForGameRankedByAcceptanceDate ugc_query_RankedByTrend ugc_query_FavoritedByFriendsRankedByPublicationDate ugc_query_CreatedByFriendsRankedByPublicationDate ugc_query_RankedByNumTimesReported ugc_query_CreatedByFollowedUsersRankedByPublicationDate ugc_query_NotYetRated ugc_query_RankedByTotalVotesAsc ugc_query_RankedByVotesUp ugc_query_RankedByTextSearch ugc_sortorder_CreationOrderDesc ugc_sortorder_CreationOrderAsc ugc_sortorder_TitleAsc ugc_sortorder_LastUpdatedDesc ugc_sortorder_SubscriptionDateDesc ugc_sortorder_VoteScoreDesc ugc_sortorder_ForModeration ugc_list_Published ugc_list_VotedOn ugc_list_VotedUp ugc_list_VotedDown ugc_list_WillVoteLater ugc_list_Favorited ugc_list_Subscribed ugc_list_UsedOrPlayed ugc_list_Followed ugc_match_Items ugc_match_Items_Mtx ugc_match_Items_ReadyToUse ugc_match_Collections ugc_match_Artwork ugc_match_Videos ugc_match_Screenshots ugc_match_AllGuides ugc_match_WebGuides ugc_match_IntegratedGuides ugc_match_UsableInGame ugc_match_ControllerBindings vertex_usage_position vertex_usage_colour vertex_usage_color vertex_usage_normal vertex_usage_texcoord vertex_usage_textcoord vertex_usage_blendweight vertex_usage_blendindices vertex_usage_psize vertex_usage_tangent vertex_usage_binormal vertex_usage_fog vertex_usage_depth vertex_usage_sample vertex_type_float1 vertex_type_float2 vertex_type_float3 vertex_type_float4 vertex_type_colour vertex_type_color vertex_type_ubyte4 layerelementtype_undefined layerelementtype_background layerelementtype_instance layerelementtype_oldtilemap layerelementtype_sprite layerelementtype_tilemap layerelementtype_particlesystem layerelementtype_tile tile_rotate tile_flip tile_mirror tile_index_mask kbv_type_default kbv_type_ascii kbv_type_url kbv_type_email kbv_type_numbers kbv_type_phone kbv_type_phone_name kbv_returnkey_default kbv_returnkey_go kbv_returnkey_google kbv_returnkey_join kbv_returnkey_next kbv_returnkey_route kbv_returnkey_search kbv_returnkey_send kbv_returnkey_yahoo kbv_returnkey_done kbv_returnkey_continue kbv_returnkey_emergency kbv_autocapitalize_none kbv_autocapitalize_words kbv_autocapitalize_sentences kbv_autocapitalize_characters",symbol:"argument_relative argument argument0 argument1 argument2 argument3 argument4 argument5 argument6 argument7 argument8 argument9 argument10 argument11 argument12 argument13 argument14 argument15 argument_count x|0 y|0 xprevious yprevious xstart ystart hspeed vspeed direction speed friction gravity gravity_direction path_index path_position path_positionprevious path_speed path_scale path_orientation path_endaction object_index id solid persistent mask_index instance_count instance_id room_speed fps fps_real current_time current_year current_month current_day current_weekday current_hour current_minute current_second alarm timeline_index timeline_position timeline_speed timeline_running timeline_loop room room_first room_last room_width room_height room_caption room_persistent score lives health show_score show_lives show_health caption_score caption_lives caption_health event_type event_number event_object event_action application_surface gamemaker_pro gamemaker_registered gamemaker_version error_occurred error_last debug_mode keyboard_key keyboard_lastkey keyboard_lastchar keyboard_string mouse_x mouse_y mouse_button mouse_lastbutton cursor_sprite visible sprite_index sprite_width sprite_height sprite_xoffset sprite_yoffset image_number image_index image_speed depth image_xscale image_yscale image_angle image_alpha image_blend bbox_left bbox_right bbox_top bbox_bottom layer background_colour background_showcolour background_color background_showcolor view_enabled view_current view_visible view_xview view_yview view_wview view_hview view_xport view_yport view_wport view_hport view_angle view_hborder view_vborder view_hspeed view_vspeed view_object view_surface_id view_camera game_id game_display_name game_project_name game_save_id working_directory temp_directory program_directory browser_width browser_height os_type os_device os_browser os_version display_aa async_load delta_time webgl_enabled event_data iap_data phy_rotation phy_position_x phy_position_y phy_angular_velocity phy_linear_velocity_x phy_linear_velocity_y phy_speed_x phy_speed_y phy_speed phy_angular_damping phy_linear_damping phy_bullet phy_fixed_rotation phy_active phy_mass phy_inertia phy_com_x phy_com_y phy_dynamic phy_kinematic phy_sleeping phy_collision_points phy_collision_x phy_collision_y phy_col_normal_x phy_col_normal_y phy_position_xprevious phy_position_yprevious"},contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,t.C_NUMBER_MODE]}}return KZe=e,KZe}var XZe,qgn;function Nti(){if(qgn)return XZe;qgn=1;function e(t){const r={keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune",literal:"true false iota nil",built_in:"append cap close complex copy imag len make new panic print println real recover delete"};return{name:"Go",aliases:["golang"],keywords:r,illegal:"e(h)).join("")}function a(o,u={}){return u.variants=o,u}function s(o){const u="[A-Za-z0-9_$]+",h=a([o.C_LINE_COMMENT_MODE,o.C_BLOCK_COMMENT_MODE,o.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]})]),f={className:"regexp",begin:/~?\/[^\/\n]+\//,contains:[o.BACKSLASH_ESCAPE]},p=a([o.BINARY_NUMBER_MODE,o.C_NUMBER_MODE]),m=a([{begin:/"""/,end:/"""/},{begin:/'''/,end:/'''/},{begin:"\\$/",end:"/\\$",relevance:10},o.APOS_STRING_MODE,o.QUOTE_STRING_MODE],{className:"string"});return{name:"Groovy",keywords:{built_in:"this super",literal:"true false null",keyword:"byte short char int long boolean float double void def as in assert trait abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof"},contains:[o.SHEBANG({binary:"groovy",relevance:10}),h,m,f,p,{className:"class",beginKeywords:"class interface trait enum",end:/\{/,illegal:":",contains:[{beginKeywords:"extends implements"},o.UNDERSCORE_TITLE_MODE]},{className:"meta",begin:"@[A-Za-z]+",relevance:0},{className:"attr",begin:u+"[ ]*:",relevance:0},{begin:/\?/,end:/:/,relevance:0,contains:[h,m,f,p,"self"]},{className:"symbol",begin:"^[ ]*"+t(u+":"),excludeBegin:!0,end:u+":",relevance:0}],illegal:/#|<\//}}return JZe=s,JZe}var eJe,jgn;function Mti(){if(jgn)return eJe;jgn=1;function e(t){return{name:"HAML",case_insensitive:!0,contains:[{className:"meta",begin:"^!!!( (5|1\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\b.*))?$",relevance:10},t.COMMENT("^\\s*(!=#|=#|-#|/).*$",!1,{relevance:0}),{begin:"^\\s*(-|=|!=)(?!#)",starts:{end:"\\n",subLanguage:"ruby"}},{className:"tag",begin:"^\\s*%",contains:[{className:"selector-tag",begin:"\\w+"},{className:"selector-id",begin:"#[\\w-]+"},{className:"selector-class",begin:"\\.[\\w-]+"},{begin:/\{\s*/,end:/\s*\}/,contains:[{begin:":\\w+\\s*=>",end:",\\s+",returnBegin:!0,endsWithParent:!0,contains:[{className:"attr",begin:":\\w+"},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,{begin:"\\w+",relevance:0}]}]},{begin:"\\(\\s*",end:"\\s*\\)",excludeEnd:!0,contains:[{begin:"\\w+\\s*=",end:"\\s+",returnBegin:!0,endsWithParent:!0,contains:[{className:"attr",begin:"\\w+",relevance:0},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,{begin:"\\w+",relevance:0}]}]}]},{begin:"^\\s*[=~]\\s*"},{begin:/#\{/,starts:{end:/\}/,subLanguage:"ruby"}}]}}return eJe=e,eJe}var tJe,Wgn;function Pti(){if(Wgn)return tJe;Wgn=1;function e(u){return u?typeof u=="string"?u:u.source:null}function t(u){return a("(",u,")*")}function r(u){return a("(",u,")?")}function a(...u){return u.map(f=>e(f)).join("")}function s(...u){return"("+u.map(f=>e(f)).join("|")+")"}function o(u){const h={"builtin-name":["action","bindattr","collection","component","concat","debugger","each","each-in","get","hash","if","in","input","link-to","loc","log","lookup","mut","outlet","partial","query-params","render","template","textarea","unbound","unless","view","with","yield"]},f={literal:["true","false","undefined","null"]},p=/""|"[^"]+"/,m=/''|'[^']+'/,b=/\[\]|\[[^\]]+\]/,_=/[^\s!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]+/,w=/(\.|\/)/,S=s(p,m,b,_),C=a(r(/\.|\.\/|\//),S,t(a(w,S))),A=a("(",b,"|",_,")(?==)"),k={begin:C,lexemes:/[\w.\/]+/},I=u.inherit(k,{keywords:f}),N={begin:/\(/,end:/\)/},L={className:"attr",begin:A,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[u.NUMBER_MODE,u.QUOTE_STRING_MODE,u.APOS_STRING_MODE,I,N]}}},P={begin:/as\s+\|/,keywords:{keyword:"as"},end:/\|/,contains:[{begin:/\w+/}]},M={contains:[u.NUMBER_MODE,u.QUOTE_STRING_MODE,u.APOS_STRING_MODE,P,L,I,N],returnEnd:!0},F=u.inherit(k,{className:"name",keywords:h,starts:u.inherit(M,{end:/\)/})});N.contains=[F];const U=u.inherit(k,{keywords:h,className:"name",starts:u.inherit(M,{end:/\}\}/})}),$=u.inherit(k,{keywords:h,className:"name"}),G=u.inherit(k,{className:"name",keywords:h,starts:u.inherit(M,{end:/\}\}/})});return{name:"Handlebars",aliases:["hbs","html.hbs","html.handlebars","htmlbars"],case_insensitive:!0,subLanguage:"xml",contains:[{begin:/\\\{\{/,skip:!0},{begin:/\\\\(?=\{\{)/,skip:!0},u.COMMENT(/\{\{!--/,/--\}\}/),u.COMMENT(/\{\{!/,/\}\}/),{className:"template-tag",begin:/\{\{\{\{(?!\/)/,end:/\}\}\}\}/,contains:[U],starts:{end:/\{\{\{\{\//,returnEnd:!0,subLanguage:"xml"}},{className:"template-tag",begin:/\{\{\{\{\//,end:/\}\}\}\}/,contains:[$]},{className:"template-tag",begin:/\{\{#/,end:/\}\}/,contains:[U]},{className:"template-tag",begin:/\{\{(?=else\}\})/,end:/\}\}/,keywords:"else"},{className:"template-tag",begin:/\{\{(?=else if)/,end:/\}\}/,keywords:"else if"},{className:"template-tag",begin:/\{\{\//,end:/\}\}/,contains:[$]},{className:"template-variable",begin:/\{\{\{/,end:/\}\}\}/,contains:[G]},{className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:[G]}]}}return tJe=o,tJe}var nJe,Kgn;function Bti(){if(Kgn)return nJe;Kgn=1;function e(t){const r={variants:[t.COMMENT("--","$"),t.COMMENT(/\{-/,/-\}/,{contains:["self"]})]},a={className:"meta",begin:/\{-#/,end:/#-\}/},s={className:"meta",begin:"^#",end:"$"},o={className:"type",begin:"\\b[A-Z][\\w']*",relevance:0},u={begin:"\\(",end:"\\)",illegal:'"',contains:[a,s,{className:"type",begin:"\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"},t.inherit(t.TITLE_MODE,{begin:"[_a-z][\\w']*"}),r]},h={begin:/\{/,end:/\}/,contains:u.contains};return{name:"Haskell",aliases:["hs"],keywords:"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec",contains:[{beginKeywords:"module",end:"where",keywords:"module where",contains:[u,r],illegal:"\\W\\.|;"},{begin:"\\bimport\\b",end:"$",keywords:"import qualified as hiding",contains:[u,r],illegal:"\\W\\.|;"},{className:"class",begin:"^(\\s*)?(class|instance)\\b",end:"where",keywords:"class family instance where",contains:[o,u,r]},{className:"class",begin:"\\b(data|(new)?type)\\b",end:"$",keywords:"data family type newtype deriving",contains:[a,o,u,h,r]},{beginKeywords:"default",end:"$",contains:[o,u,r]},{beginKeywords:"infix infixl infixr",end:"$",contains:[t.C_NUMBER_MODE,r]},{begin:"\\bforeign\\b",end:"$",keywords:"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe",contains:[o,t.QUOTE_STRING_MODE,r]},{className:"meta",begin:"#!\\/usr\\/bin\\/env runhaskell",end:"$"},a,s,t.QUOTE_STRING_MODE,t.C_NUMBER_MODE,o,t.inherit(t.TITLE_MODE,{begin:"^[_a-z][\\w']*"}),r,{begin:"->|<-"}]}}return nJe=e,nJe}var rJe,Xgn;function Fti(){if(Xgn)return rJe;Xgn=1;function e(t){return{name:"Haxe",aliases:["hx"],keywords:{keyword:"break case cast catch continue default do dynamic else enum extern for function here if import in inline never new override package private get set public return static super switch this throw trace try typedef untyped using var while "+"Int Float String Bool Dynamic Void Array ",built_in:"trace this",literal:"true false null _"},contains:[{className:"string",begin:"'",end:"'",contains:[t.BACKSLASH_ESCAPE,{className:"subst",begin:"\\$\\{",end:"\\}"},{className:"subst",begin:"\\$",end:/\W\}/}]},t.QUOTE_STRING_MODE,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.C_NUMBER_MODE,{className:"meta",begin:"@:",end:"$"},{className:"meta",begin:"#",end:"$",keywords:{"meta-keyword":"if else elseif end error"}},{className:"type",begin:":[ ]*",end:"[^A-Za-z0-9_ \\->]",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:":[ ]*",end:"\\W",excludeBegin:!0,excludeEnd:!0},{className:"type",begin:"new *",end:"\\W",excludeBegin:!0,excludeEnd:!0},{className:"class",beginKeywords:"enum",end:"\\{",contains:[t.TITLE_MODE]},{className:"class",beginKeywords:"abstract",end:"[\\{$]",contains:[{className:"type",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"type",begin:"from +",end:"\\W",excludeBegin:!0,excludeEnd:!0},{className:"type",begin:"to +",end:"\\W",excludeBegin:!0,excludeEnd:!0},t.TITLE_MODE],keywords:{keyword:"abstract from to"}},{className:"class",begin:"\\b(class|interface) +",end:"[\\{$]",excludeEnd:!0,keywords:"class interface",contains:[{className:"keyword",begin:"\\b(extends|implements) +",keywords:"extends implements",contains:[{className:"type",begin:t.IDENT_RE,relevance:0}]},t.TITLE_MODE]},{className:"function",beginKeywords:"function",end:"\\(",excludeEnd:!0,illegal:"\\S",contains:[t.TITLE_MODE]}],illegal:/<\//}}return rJe=e,rJe}var iJe,Qgn;function $ti(){if(Qgn)return iJe;Qgn=1;function e(t){return{name:"HSP",case_insensitive:!0,keywords:{$pattern:/[\w._]+/,keyword:"goto gosub return break repeat loop continue wait await dim sdim foreach dimtype dup dupptr end stop newmod delmod mref run exgoto on mcall assert logmes newlab resume yield onexit onerror onkey onclick oncmd exist delete mkdir chdir dirlist bload bsave bcopy memfile if else poke wpoke lpoke getstr chdpm memexpand memcpy memset notesel noteadd notedel noteload notesave randomize noteunsel noteget split strrep setease button chgdisp exec dialog mmload mmplay mmstop mci pset pget syscolor mes print title pos circle cls font sysfont objsize picload color palcolor palette redraw width gsel gcopy gzoom gmode bmpsave hsvcolor getkey listbox chkbox combox input mesbox buffer screen bgscr mouse objsel groll line clrobj boxf objprm objmode stick grect grotate gsquare gradf objimage objskip objenable celload celdiv celput newcom querycom delcom cnvstow comres axobj winobj sendmsg comevent comevarg sarrayconv callfunc cnvwtos comevdisp libptr system hspstat hspver stat cnt err strsize looplev sublev iparam wparam lparam refstr refdval int rnd strlen length length2 length3 length4 vartype gettime peek wpeek lpeek varptr varuse noteinfo instr abs limit getease str strmid strf getpath strtrim sin cos tan atan sqrt double absf expf logf limitf powf geteasef mousex mousey mousew hwnd hinstance hdc ginfo objinfo dirinfo sysinfo thismod __hspver__ __hsp30__ __date__ __time__ __line__ __file__ _debug __hspdef__ and or xor not screen_normal screen_palette screen_hide screen_fixedsize screen_tool screen_frame gmode_gdi gmode_mem gmode_rgb0 gmode_alpha gmode_rgb0alpha gmode_add gmode_sub gmode_pixela ginfo_mx ginfo_my ginfo_act ginfo_sel ginfo_wx1 ginfo_wy1 ginfo_wx2 ginfo_wy2 ginfo_vx ginfo_vy ginfo_sizex ginfo_sizey ginfo_winx ginfo_winy ginfo_mesx ginfo_mesy ginfo_r ginfo_g ginfo_b ginfo_paluse ginfo_dispx ginfo_dispy ginfo_cx ginfo_cy ginfo_intid ginfo_newid ginfo_sx ginfo_sy objinfo_mode objinfo_bmscr objinfo_hwnd notemax notesize dir_cur dir_exe dir_win dir_sys dir_cmdline dir_desktop dir_mydoc dir_tv font_normal font_bold font_italic font_underline font_strikeout font_antialias objmode_normal objmode_guifont objmode_usefont gsquare_grad msgothic msmincho do until while wend for next _break _continue switch case default swbreak swend ddim ldim alloc m_pi rad2deg deg2rad ease_linear ease_quad_in ease_quad_out ease_quad_inout ease_cubic_in ease_cubic_out ease_cubic_inout ease_quartic_in ease_quartic_out ease_quartic_inout ease_bounce_in ease_bounce_out ease_bounce_inout ease_shake_in ease_shake_out ease_shake_inout ease_loop"},contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.QUOTE_STRING_MODE,t.APOS_STRING_MODE,{className:"string",begin:/\{"/,end:/"\}/,contains:[t.BACKSLASH_ESCAPE]},t.COMMENT(";","$",{relevance:0}),{className:"meta",begin:"#",end:"$",keywords:{"meta-keyword":"addion cfunc cmd cmpopt comfunc const defcfunc deffunc define else endif enum epack func global if ifdef ifndef include modcfunc modfunc modinit modterm module pack packopt regcmd runtime undef usecom uselib"},contains:[t.inherit(t.QUOTE_STRING_MODE,{className:"meta-string"}),t.NUMBER_MODE,t.C_NUMBER_MODE,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]},{className:"symbol",begin:"^\\*(\\w+|@)"},t.NUMBER_MODE,t.C_NUMBER_MODE]}}return iJe=e,iJe}var aJe,Zgn;function Uti(){if(Zgn)return aJe;Zgn=1;function e(h){return h?typeof h=="string"?h:h.source:null}function t(h){return a("(",h,")*")}function r(h){return a("(",h,")?")}function a(...h){return h.map(p=>e(p)).join("")}function s(...h){return"("+h.map(p=>e(p)).join("|")+")"}function o(h){const f={"builtin-name":["action","bindattr","collection","component","concat","debugger","each","each-in","get","hash","if","in","input","link-to","loc","log","lookup","mut","outlet","partial","query-params","render","template","textarea","unbound","unless","view","with","yield"]},p={literal:["true","false","undefined","null"]},m=/""|"[^"]+"/,b=/''|'[^']+'/,_=/\[\]|\[[^\]]+\]/,w=/[^\s!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]+/,S=/(\.|\/)/,C=s(m,b,_,w),A=a(r(/\.|\.\/|\//),C,t(a(S,C))),k=a("(",_,"|",w,")(?==)"),I={begin:A,lexemes:/[\w.\/]+/},N=h.inherit(I,{keywords:p}),L={begin:/\(/,end:/\)/},P={className:"attr",begin:k,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[h.NUMBER_MODE,h.QUOTE_STRING_MODE,h.APOS_STRING_MODE,N,L]}}},M={begin:/as\s+\|/,keywords:{keyword:"as"},end:/\|/,contains:[{begin:/\w+/}]},F={contains:[h.NUMBER_MODE,h.QUOTE_STRING_MODE,h.APOS_STRING_MODE,M,P,N,L],returnEnd:!0},U=h.inherit(I,{className:"name",keywords:f,starts:h.inherit(F,{end:/\)/})});L.contains=[U];const $=h.inherit(I,{keywords:f,className:"name",starts:h.inherit(F,{end:/\}\}/})}),G=h.inherit(I,{keywords:f,className:"name"}),B=h.inherit(I,{className:"name",keywords:f,starts:h.inherit(F,{end:/\}\}/})});return{name:"Handlebars",aliases:["hbs","html.hbs","html.handlebars","htmlbars"],case_insensitive:!0,subLanguage:"xml",contains:[{begin:/\\\{\{/,skip:!0},{begin:/\\\\(?=\{\{)/,skip:!0},h.COMMENT(/\{\{!--/,/--\}\}/),h.COMMENT(/\{\{!/,/\}\}/),{className:"template-tag",begin:/\{\{\{\{(?!\/)/,end:/\}\}\}\}/,contains:[$],starts:{end:/\{\{\{\{\//,returnEnd:!0,subLanguage:"xml"}},{className:"template-tag",begin:/\{\{\{\{\//,end:/\}\}\}\}/,contains:[G]},{className:"template-tag",begin:/\{\{#/,end:/\}\}/,contains:[$]},{className:"template-tag",begin:/\{\{(?=else\}\})/,end:/\}\}/,keywords:"else"},{className:"template-tag",begin:/\{\{(?=else if)/,end:/\}\}/,keywords:"else if"},{className:"template-tag",begin:/\{\{\//,end:/\}\}/,contains:[G]},{className:"template-variable",begin:/\{\{\{/,end:/\}\}\}/,contains:[B]},{className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:[B]}]}}function u(h){const f=o(h);return f.name="HTMLbars",h.getLanguage("handlebars")&&(f.disableAutodetect=!0),f}return aJe=u,aJe}var sJe,Jgn;function zti(){if(Jgn)return sJe;Jgn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s="HTTP/(2|1\\.[01])",u={className:"attribute",begin:t("^",/[A-Za-z][A-Za-z0-9-]*/,"(?=\\:\\s)"),starts:{contains:[{className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]}},h=[u,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+s+" \\d{3})",end:/$/,contains:[{className:"meta",begin:s},{className:"number",begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:h}},{begin:"(?=^[A-Z]+ (.*?) "+s+"$)",end:/$/,contains:[{className:"string",begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:s},{className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:h}},a.inherit(u,{relevance:0})]}}return sJe=r,sJe}var oJe,emn;function Gti(){if(emn)return oJe;emn=1;function e(t){var r="a-zA-Z_\\-!.?+*=<>&#'",a="["+r+"]["+r+"0-9/;:]*",s={$pattern:a,"builtin-name":"!= % %= & &= * ** **= *= *map + += , --build-class-- --import-- -= . / // //= /= < << <<= <= = > >= >> >>= @ @= ^ ^= abs accumulate all and any ap-compose ap-dotimes ap-each ap-each-while ap-filter ap-first ap-if ap-last ap-map ap-map-when ap-pipe ap-reduce ap-reject apply as-> ascii assert assoc bin break butlast callable calling-module-name car case cdr chain chr coll? combinations compile compress cond cons cons? continue count curry cut cycle dec def default-method defclass defmacro defmacro-alias defmacro/g! defmain defmethod defmulti defn defn-alias defnc defnr defreader defseq del delattr delete-route dict-comp dir disassemble dispatch-reader-macro distinct divmod do doto drop drop-last drop-while empty? end-sequence eval eval-and-compile eval-when-compile even? every? except exec filter first flatten float? fn fnc fnr for for* format fraction genexpr gensym get getattr global globals group-by hasattr hash hex id identity if if* if-not if-python2 import in inc input instance? integer integer-char? integer? interleave interpose is is-coll is-cons is-empty is-even is-every is-float is-instance is-integer is-integer-char is-iterable is-iterator is-keyword is-neg is-none is-not is-numeric is-odd is-pos is-string is-symbol is-zero isinstance islice issubclass iter iterable? iterate iterator? keyword keyword? lambda last len let lif lif-not list* list-comp locals loop macro-error macroexpand macroexpand-1 macroexpand-all map max merge-with method-decorator min multi-decorator multicombinations name neg? next none? nonlocal not not-in not? nth numeric? oct odd? open or ord partition permutations pos? post-route postwalk pow prewalk print product profile/calls profile/cpu put-route quasiquote quote raise range read read-str recursive-replace reduce remove repeat repeatedly repr require rest round route route-with-methods rwm second seq set-comp setattr setv some sorted string string? sum switch symbol? take take-nth take-while tee try unless unquote unquote-splicing vars walk when while with with* with-decorator with-gensyms xi xor yield yield-from zero? zip zip-longest | |= ~"},o="[-+]?\\d+(\\.\\d+)?",u={begin:a,relevance:0},h={className:"number",begin:o,relevance:0},f=t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),p=t.COMMENT(";","$",{relevance:0}),m={className:"literal",begin:/\b([Tt]rue|[Ff]alse|nil|None)\b/},b={begin:"[\\[\\{]",end:"[\\]\\}]"},_={className:"comment",begin:"\\^"+a},w=t.COMMENT("\\^\\{","\\}"),S={className:"symbol",begin:"[:]{1,2}"+a},C={begin:"\\(",end:"\\)"},A={endsWithParent:!0,relevance:0},k={className:"name",relevance:0,keywords:s,begin:a,starts:A},I=[C,f,_,w,p,S,b,h,m,u];return C.contains=[t.COMMENT("comment",""),k,A],A.contains=I,b.contains=I,{name:"Hy",aliases:["hylang"],illegal:/\S/,contains:[t.SHEBANG(),C,f,_,w,p,S,b,h,m]}}return oJe=e,oJe}var lJe,tmn;function qti(){if(tmn)return lJe;tmn=1;function e(t){const r="\\[",a="\\]";return{name:"Inform 7",aliases:["i7"],case_insensitive:!0,keywords:{keyword:"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule"},contains:[{className:"string",begin:'"',end:'"',relevance:0,contains:[{className:"subst",begin:r,end:a}]},{className:"section",begin:/^(Volume|Book|Part|Chapter|Section|Table)\b/,end:"$"},{begin:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\b/,end:":",contains:[{begin:"\\(This",end:"\\)"}]},{className:"comment",begin:r,end:a,contains:["self"]}]}}return lJe=e,lJe}var cJe,nmn;function Hti(){if(nmn)return cJe;nmn=1;function e(o){return o?typeof o=="string"?o:o.source:null}function t(o){return r("(?=",o,")")}function r(...o){return o.map(h=>e(h)).join("")}function a(...o){return"("+o.map(h=>e(h)).join("|")+")"}function s(o){const u={className:"number",relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{begin:o.NUMBER_RE}]},h=o.COMMENT();h.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const f={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/}]},p={className:"literal",begin:/\bon|off|true|false|yes|no\b/},m={className:"string",contains:[o.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]},b={begin:/\[/,end:/\]/,contains:[h,p,f,m,u,"self"],relevance:0},C=a(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/),A=r(C,"(\\s*\\.\\s*",C,")*",t(/\s*=\s*[^#\s]/));return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,contains:[h,{className:"section",begin:/\[+/,end:/\]+/},{begin:A,className:"attr",starts:{end:/$/,contains:[h,b,p,f,m,u]}}]}}return cJe=s,cJe}var uJe,rmn;function Vti(){if(rmn)return uJe;rmn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s={className:"params",begin:"\\(",end:"\\)"},o=/(_[a-z_\d]+)?/,u=/([de][+-]?\d+)?/,h={className:"number",variants:[{begin:t(/\b\d+/,/\.(\d*)/,u,o)},{begin:t(/\b\d+/,u,o)},{begin:t(/\.\d+/,u,o)}],relevance:0};return{name:"IRPF90",case_insensitive:!0,keywords:{literal:".False. .True.",keyword:"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read",built_in:"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_of acosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here"},illegal:/\/\*/,contains:[a.inherit(a.APOS_STRING_MODE,{className:"string",relevance:0}),a.inherit(a.QUOTE_STRING_MODE,{className:"string",relevance:0}),{className:"function",beginKeywords:"subroutine function program",illegal:"[${=\\n]",contains:[a.UNDERSCORE_TITLE_MODE,s]},a.COMMENT("!","$",{relevance:0}),a.COMMENT("begin_doc","end_doc",{relevance:10}),h]}}return uJe=r,uJe}var hJe,imn;function Yti(){if(imn)return hJe;imn=1;function e(t){const r="[A-Za-zА-Яа-яёЁ_!][A-Za-zА-Яа-яёЁ_0-9]*",a="[A-Za-zА-Яа-яёЁ_][A-Za-zА-Яа-яёЁ_0-9]*",s="and и else иначе endexcept endfinally endforeach конецвсе endif конецесли endwhile конецпока except exitfor finally foreach все if если in в not не or или try while пока ",ce="SYSRES_CONST_ACCES_RIGHT_TYPE_EDIT SYSRES_CONST_ACCES_RIGHT_TYPE_FULL SYSRES_CONST_ACCES_RIGHT_TYPE_VIEW SYSRES_CONST_ACCESS_MODE_REQUISITE_CODE SYSRES_CONST_ACCESS_NO_ACCESS_VIEW SYSRES_CONST_ACCESS_NO_ACCESS_VIEW_CODE SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_RIGHTS_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW SYSRES_CONST_ACCESS_RIGHTS_VIEW_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_CODE SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_YES_CODE SYSRES_CONST_ACCESS_TYPE_CHANGE SYSRES_CONST_ACCESS_TYPE_CHANGE_CODE SYSRES_CONST_ACCESS_TYPE_EXISTS SYSRES_CONST_ACCESS_TYPE_EXISTS_CODE SYSRES_CONST_ACCESS_TYPE_FULL SYSRES_CONST_ACCESS_TYPE_FULL_CODE SYSRES_CONST_ACCESS_TYPE_VIEW SYSRES_CONST_ACCESS_TYPE_VIEW_CODE SYSRES_CONST_ACTION_TYPE_ABORT SYSRES_CONST_ACTION_TYPE_ACCEPT SYSRES_CONST_ACTION_TYPE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ADD_ATTACHMENT SYSRES_CONST_ACTION_TYPE_CHANGE_CARD SYSRES_CONST_ACTION_TYPE_CHANGE_KIND SYSRES_CONST_ACTION_TYPE_CHANGE_STORAGE SYSRES_CONST_ACTION_TYPE_CONTINUE SYSRES_CONST_ACTION_TYPE_COPY SYSRES_CONST_ACTION_TYPE_CREATE SYSRES_CONST_ACTION_TYPE_CREATE_VERSION SYSRES_CONST_ACTION_TYPE_DELETE SYSRES_CONST_ACTION_TYPE_DELETE_ATTACHMENT SYSRES_CONST_ACTION_TYPE_DELETE_VERSION SYSRES_CONST_ACTION_TYPE_DISABLE_DELEGATE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ENABLE_DELEGATE_ACCESS_RIGHTS SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE_AND_PASSWORD SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_PASSWORD SYSRES_CONST_ACTION_TYPE_EXPORT_WITH_LOCK SYSRES_CONST_ACTION_TYPE_EXPORT_WITHOUT_LOCK SYSRES_CONST_ACTION_TYPE_IMPORT_WITH_UNLOCK SYSRES_CONST_ACTION_TYPE_IMPORT_WITHOUT_UNLOCK SYSRES_CONST_ACTION_TYPE_LIFE_CYCLE_STAGE SYSRES_CONST_ACTION_TYPE_LOCK SYSRES_CONST_ACTION_TYPE_LOCK_FOR_SERVER SYSRES_CONST_ACTION_TYPE_LOCK_MODIFY SYSRES_CONST_ACTION_TYPE_MARK_AS_READED SYSRES_CONST_ACTION_TYPE_MARK_AS_UNREADED SYSRES_CONST_ACTION_TYPE_MODIFY SYSRES_CONST_ACTION_TYPE_MODIFY_CARD SYSRES_CONST_ACTION_TYPE_MOVE_TO_ARCHIVE SYSRES_CONST_ACTION_TYPE_OFF_ENCRYPTION SYSRES_CONST_ACTION_TYPE_PASSWORD_CHANGE SYSRES_CONST_ACTION_TYPE_PERFORM SYSRES_CONST_ACTION_TYPE_RECOVER_FROM_LOCAL_COPY SYSRES_CONST_ACTION_TYPE_RESTART SYSRES_CONST_ACTION_TYPE_RESTORE_FROM_ARCHIVE SYSRES_CONST_ACTION_TYPE_REVISION SYSRES_CONST_ACTION_TYPE_SEND_BY_MAIL SYSRES_CONST_ACTION_TYPE_SIGN SYSRES_CONST_ACTION_TYPE_START SYSRES_CONST_ACTION_TYPE_UNLOCK SYSRES_CONST_ACTION_TYPE_UNLOCK_FROM_SERVER SYSRES_CONST_ACTION_TYPE_VERSION_STATE SYSRES_CONST_ACTION_TYPE_VERSION_VISIBILITY SYSRES_CONST_ACTION_TYPE_VIEW SYSRES_CONST_ACTION_TYPE_VIEW_SHADOW_COPY SYSRES_CONST_ACTION_TYPE_WORKFLOW_DESCRIPTION_MODIFY SYSRES_CONST_ACTION_TYPE_WRITE_HISTORY SYSRES_CONST_ACTIVE_VERSION_STATE_PICK_VALUE SYSRES_CONST_ADD_REFERENCE_MODE_NAME SYSRES_CONST_ADDITION_REQUISITE_CODE SYSRES_CONST_ADDITIONAL_PARAMS_REQUISITE_CODE SYSRES_CONST_ADITIONAL_JOB_END_DATE_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_READ_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_START_DATE_REQUISITE_NAME SYSRES_CONST_ADITIONAL_JOB_STATE_REQUISITE_NAME SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION_CODE SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE_ACTION SYSRES_CONST_ALL_ACCEPT_CONDITION_RUS SYSRES_CONST_ALL_USERS_GROUP SYSRES_CONST_ALL_USERS_GROUP_NAME SYSRES_CONST_ALL_USERS_SERVER_GROUP_NAME SYSRES_CONST_ALLOWED_ACCESS_TYPE_CODE SYSRES_CONST_ALLOWED_ACCESS_TYPE_NAME SYSRES_CONST_APP_VIEWER_TYPE_REQUISITE_CODE SYSRES_CONST_APPROVING_SIGNATURE_NAME SYSRES_CONST_APPROVING_SIGNATURE_REQUISITE_CODE SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE_CODE SYSRES_CONST_ATTACH_TYPE_COMPONENT_TOKEN SYSRES_CONST_ATTACH_TYPE_DOC SYSRES_CONST_ATTACH_TYPE_EDOC SYSRES_CONST_ATTACH_TYPE_FOLDER SYSRES_CONST_ATTACH_TYPE_JOB SYSRES_CONST_ATTACH_TYPE_REFERENCE SYSRES_CONST_ATTACH_TYPE_TASK SYSRES_CONST_AUTH_ENCODED_PASSWORD SYSRES_CONST_AUTH_ENCODED_PASSWORD_CODE SYSRES_CONST_AUTH_NOVELL SYSRES_CONST_AUTH_PASSWORD SYSRES_CONST_AUTH_PASSWORD_CODE SYSRES_CONST_AUTH_WINDOWS SYSRES_CONST_AUTHENTICATING_SIGNATURE_NAME SYSRES_CONST_AUTHENTICATING_SIGNATURE_REQUISITE_CODE SYSRES_CONST_AUTO_ENUM_METHOD_FLAG SYSRES_CONST_AUTO_NUMERATION_CODE SYSRES_CONST_AUTO_STRONG_ENUM_METHOD_FLAG SYSRES_CONST_AUTOTEXT_NAME_REQUISITE_CODE SYSRES_CONST_AUTOTEXT_TEXT_REQUISITE_CODE SYSRES_CONST_AUTOTEXT_USAGE_ALL SYSRES_CONST_AUTOTEXT_USAGE_ALL_CODE SYSRES_CONST_AUTOTEXT_USAGE_SIGN SYSRES_CONST_AUTOTEXT_USAGE_SIGN_CODE SYSRES_CONST_AUTOTEXT_USAGE_WORK SYSRES_CONST_AUTOTEXT_USAGE_WORK_CODE SYSRES_CONST_AUTOTEXT_USE_ANYWHERE_CODE SYSRES_CONST_AUTOTEXT_USE_ON_SIGNING_CODE SYSRES_CONST_AUTOTEXT_USE_ON_WORK_CODE SYSRES_CONST_BEGIN_DATE_REQUISITE_CODE SYSRES_CONST_BLACK_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_BLUE_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_BTN_PART SYSRES_CONST_CALCULATED_ROLE_TYPE_CODE SYSRES_CONST_CALL_TYPE_VARIABLE_BUTTON_VALUE SYSRES_CONST_CALL_TYPE_VARIABLE_PROGRAM_VALUE SYSRES_CONST_CANCEL_MESSAGE_FUNCTION_RESULT SYSRES_CONST_CARD_PART SYSRES_CONST_CARD_REFERENCE_MODE_NAME SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_ENCRYPT_VALUE SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_AND_ENCRYPT_VALUE SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_VALUE SYSRES_CONST_CHECK_PARAM_VALUE_DATE_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_FLOAT_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_INTEGER_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_PICK_PARAM_TYPE SYSRES_CONST_CHECK_PARAM_VALUE_REEFRENCE_PARAM_TYPE SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_FEMININE SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_CODE_COMPONENT_TYPE_ADMIN SYSRES_CONST_CODE_COMPONENT_TYPE_DEVELOPER SYSRES_CONST_CODE_COMPONENT_TYPE_DOCS SYSRES_CONST_CODE_COMPONENT_TYPE_EDOC_CARDS SYSRES_CONST_CODE_COMPONENT_TYPE_EXTERNAL_EXECUTABLE SYSRES_CONST_CODE_COMPONENT_TYPE_OTHER SYSRES_CONST_CODE_COMPONENT_TYPE_REFERENCE SYSRES_CONST_CODE_COMPONENT_TYPE_REPORT SYSRES_CONST_CODE_COMPONENT_TYPE_SCRIPT SYSRES_CONST_CODE_COMPONENT_TYPE_URL SYSRES_CONST_CODE_REQUISITE_ACCESS SYSRES_CONST_CODE_REQUISITE_CODE SYSRES_CONST_CODE_REQUISITE_COMPONENT SYSRES_CONST_CODE_REQUISITE_DESCRIPTION SYSRES_CONST_CODE_REQUISITE_EXCLUDE_COMPONENT SYSRES_CONST_CODE_REQUISITE_RECORD SYSRES_CONST_COMMENT_REQ_CODE SYSRES_CONST_COMMON_SETTINGS_REQUISITE_CODE SYSRES_CONST_COMP_CODE_GRD SYSRES_CONST_COMPONENT_GROUP_TYPE_REQUISITE_CODE SYSRES_CONST_COMPONENT_TYPE_ADMIN_COMPONENTS SYSRES_CONST_COMPONENT_TYPE_DEVELOPER_COMPONENTS SYSRES_CONST_COMPONENT_TYPE_DOCS SYSRES_CONST_COMPONENT_TYPE_EDOC_CARDS SYSRES_CONST_COMPONENT_TYPE_EDOCS SYSRES_CONST_COMPONENT_TYPE_EXTERNAL_EXECUTABLE SYSRES_CONST_COMPONENT_TYPE_OTHER SYSRES_CONST_COMPONENT_TYPE_REFERENCE_TYPES SYSRES_CONST_COMPONENT_TYPE_REFERENCES SYSRES_CONST_COMPONENT_TYPE_REPORTS SYSRES_CONST_COMPONENT_TYPE_SCRIPTS SYSRES_CONST_COMPONENT_TYPE_URL SYSRES_CONST_COMPONENTS_REMOTE_SERVERS_VIEW_CODE SYSRES_CONST_CONDITION_BLOCK_DESCRIPTION SYSRES_CONST_CONST_FIRM_STATUS_COMMON SYSRES_CONST_CONST_FIRM_STATUS_INDIVIDUAL SYSRES_CONST_CONST_NEGATIVE_VALUE SYSRES_CONST_CONST_POSITIVE_VALUE SYSRES_CONST_CONST_SERVER_STATUS_DONT_REPLICATE SYSRES_CONST_CONST_SERVER_STATUS_REPLICATE SYSRES_CONST_CONTENTS_REQUISITE_CODE SYSRES_CONST_DATA_TYPE_BOOLEAN SYSRES_CONST_DATA_TYPE_DATE SYSRES_CONST_DATA_TYPE_FLOAT SYSRES_CONST_DATA_TYPE_INTEGER SYSRES_CONST_DATA_TYPE_PICK SYSRES_CONST_DATA_TYPE_REFERENCE SYSRES_CONST_DATA_TYPE_STRING SYSRES_CONST_DATA_TYPE_TEXT SYSRES_CONST_DATA_TYPE_VARIANT SYSRES_CONST_DATE_CLOSE_REQ_CODE SYSRES_CONST_DATE_FORMAT_DATE_ONLY_CHAR SYSRES_CONST_DATE_OPEN_REQ_CODE SYSRES_CONST_DATE_REQUISITE SYSRES_CONST_DATE_REQUISITE_CODE SYSRES_CONST_DATE_REQUISITE_NAME SYSRES_CONST_DATE_REQUISITE_TYPE SYSRES_CONST_DATE_TYPE_CHAR SYSRES_CONST_DATETIME_FORMAT_VALUE SYSRES_CONST_DEA_ACCESS_RIGHTS_ACTION_CODE SYSRES_CONST_DESCRIPTION_LOCALIZE_ID_REQUISITE_CODE SYSRES_CONST_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_DET1_PART SYSRES_CONST_DET2_PART SYSRES_CONST_DET3_PART SYSRES_CONST_DET4_PART SYSRES_CONST_DET5_PART SYSRES_CONST_DET6_PART SYSRES_CONST_DETAIL_DATASET_KEY_REQUISITE_CODE SYSRES_CONST_DETAIL_PICK_REQUISITE_CODE SYSRES_CONST_DETAIL_REQ_CODE SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_CODE SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_NAME SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_CODE SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_NAME SYSRES_CONST_DOCUMENT_STORAGES_CODE SYSRES_CONST_DOCUMENT_TEMPLATES_TYPE_NAME SYSRES_CONST_DOUBLE_REQUISITE_CODE SYSRES_CONST_EDITOR_CLOSE_FILE_OBSERV_TYPE_CODE SYSRES_CONST_EDITOR_CLOSE_PROCESS_OBSERV_TYPE_CODE SYSRES_CONST_EDITOR_TYPE_REQUISITE_CODE SYSRES_CONST_EDITORS_APPLICATION_NAME_REQUISITE_CODE SYSRES_CONST_EDITORS_CREATE_SEVERAL_PROCESSES_REQUISITE_CODE SYSRES_CONST_EDITORS_EXTENSION_REQUISITE_CODE SYSRES_CONST_EDITORS_OBSERVER_BY_PROCESS_TYPE SYSRES_CONST_EDITORS_REFERENCE_CODE SYSRES_CONST_EDITORS_REPLACE_SPEC_CHARS_REQUISITE_CODE SYSRES_CONST_EDITORS_USE_PLUGINS_REQUISITE_CODE SYSRES_CONST_EDITORS_VIEW_DOCUMENT_OPENED_TO_EDIT_CODE SYSRES_CONST_EDOC_CARD_TYPE_REQUISITE_CODE SYSRES_CONST_EDOC_CARD_TYPES_LINK_REQUISITE_CODE SYSRES_CONST_EDOC_CERTIFICATE_AND_PASSWORD_ENCODE_CODE SYSRES_CONST_EDOC_CERTIFICATE_ENCODE_CODE SYSRES_CONST_EDOC_DATE_REQUISITE_CODE SYSRES_CONST_EDOC_KIND_REFERENCE_CODE SYSRES_CONST_EDOC_KINDS_BY_TEMPLATE_ACTION_CODE SYSRES_CONST_EDOC_MANAGE_ACCESS_CODE SYSRES_CONST_EDOC_NONE_ENCODE_CODE SYSRES_CONST_EDOC_NUMBER_REQUISITE_CODE SYSRES_CONST_EDOC_PASSWORD_ENCODE_CODE SYSRES_CONST_EDOC_READONLY_ACCESS_CODE SYSRES_CONST_EDOC_SHELL_LIFE_TYPE_VIEW_VALUE SYSRES_CONST_EDOC_SIZE_RESTRICTION_PRIORITY_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_CHECK_ACCESS_RIGHTS_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_COMPUTER_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_DATABASE_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_EDIT_IN_STORAGE_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_LOCAL_PATH_REQUISITE_CODE SYSRES_CONST_EDOC_STORAGE_SHARED_SOURCE_NAME_REQUISITE_CODE SYSRES_CONST_EDOC_TEMPLATE_REQUISITE_CODE SYSRES_CONST_EDOC_TYPES_REFERENCE_CODE SYSRES_CONST_EDOC_VERSION_ACTIVE_STAGE_CODE SYSRES_CONST_EDOC_VERSION_DESIGN_STAGE_CODE SYSRES_CONST_EDOC_VERSION_OBSOLETE_STAGE_CODE SYSRES_CONST_EDOC_WRITE_ACCES_CODE SYSRES_CONST_EDOCUMENT_CARD_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE SYSRES_CONST_ENCODE_CERTIFICATE_TYPE_CODE SYSRES_CONST_END_DATE_REQUISITE_CODE SYSRES_CONST_ENUMERATION_TYPE_REQUISITE_CODE SYSRES_CONST_EXECUTE_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_EXECUTIVE_FILE_STORAGE_TYPE SYSRES_CONST_EXIST_CONST SYSRES_CONST_EXIST_VALUE SYSRES_CONST_EXPORT_LOCK_TYPE_ASK SYSRES_CONST_EXPORT_LOCK_TYPE_WITH_LOCK SYSRES_CONST_EXPORT_LOCK_TYPE_WITHOUT_LOCK SYSRES_CONST_EXPORT_VERSION_TYPE_ASK SYSRES_CONST_EXPORT_VERSION_TYPE_LAST SYSRES_CONST_EXPORT_VERSION_TYPE_LAST_ACTIVE SYSRES_CONST_EXTENSION_REQUISITE_CODE SYSRES_CONST_FILTER_NAME_REQUISITE_CODE SYSRES_CONST_FILTER_REQUISITE_CODE SYSRES_CONST_FILTER_TYPE_COMMON_CODE SYSRES_CONST_FILTER_TYPE_COMMON_NAME SYSRES_CONST_FILTER_TYPE_USER_CODE SYSRES_CONST_FILTER_TYPE_USER_NAME SYSRES_CONST_FILTER_VALUE_REQUISITE_NAME SYSRES_CONST_FLOAT_NUMBER_FORMAT_CHAR SYSRES_CONST_FLOAT_REQUISITE_TYPE SYSRES_CONST_FOLDER_AUTHOR_VALUE SYSRES_CONST_FOLDER_KIND_ANY_OBJECTS SYSRES_CONST_FOLDER_KIND_COMPONENTS SYSRES_CONST_FOLDER_KIND_EDOCS SYSRES_CONST_FOLDER_KIND_JOBS SYSRES_CONST_FOLDER_KIND_TASKS SYSRES_CONST_FOLDER_TYPE_COMMON SYSRES_CONST_FOLDER_TYPE_COMPONENT SYSRES_CONST_FOLDER_TYPE_FAVORITES SYSRES_CONST_FOLDER_TYPE_INBOX SYSRES_CONST_FOLDER_TYPE_OUTBOX SYSRES_CONST_FOLDER_TYPE_QUICK_LAUNCH SYSRES_CONST_FOLDER_TYPE_SEARCH SYSRES_CONST_FOLDER_TYPE_SHORTCUTS SYSRES_CONST_FOLDER_TYPE_USER SYSRES_CONST_FROM_DICTIONARY_ENUM_METHOD_FLAG SYSRES_CONST_FULL_SUBSTITUTE_TYPE SYSRES_CONST_FULL_SUBSTITUTE_TYPE_CODE SYSRES_CONST_FUNCTION_CANCEL_RESULT SYSRES_CONST_FUNCTION_CATEGORY_SYSTEM SYSRES_CONST_FUNCTION_CATEGORY_USER SYSRES_CONST_FUNCTION_FAILURE_RESULT SYSRES_CONST_FUNCTION_SAVE_RESULT SYSRES_CONST_GENERATED_REQUISITE SYSRES_CONST_GREEN_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_GROUP_ACCOUNT_TYPE_VALUE_CODE SYSRES_CONST_GROUP_CATEGORY_NORMAL_CODE SYSRES_CONST_GROUP_CATEGORY_NORMAL_NAME SYSRES_CONST_GROUP_CATEGORY_SERVICE_CODE SYSRES_CONST_GROUP_CATEGORY_SERVICE_NAME SYSRES_CONST_GROUP_COMMON_CATEGORY_FIELD_VALUE SYSRES_CONST_GROUP_FULL_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_RIGHTS_T_REQUISITE_CODE SYSRES_CONST_GROUP_SERVER_CODES_REQUISITE_CODE SYSRES_CONST_GROUP_SERVER_NAME_REQUISITE_CODE SYSRES_CONST_GROUP_SERVICE_CATEGORY_FIELD_VALUE SYSRES_CONST_GROUP_USER_REQUISITE_CODE SYSRES_CONST_GROUPS_REFERENCE_CODE SYSRES_CONST_GROUPS_REQUISITE_CODE SYSRES_CONST_HIDDEN_MODE_NAME SYSRES_CONST_HIGH_LVL_REQUISITE_CODE SYSRES_CONST_HISTORY_ACTION_CREATE_CODE SYSRES_CONST_HISTORY_ACTION_DELETE_CODE SYSRES_CONST_HISTORY_ACTION_EDIT_CODE SYSRES_CONST_HOUR_CHAR SYSRES_CONST_ID_REQUISITE_CODE SYSRES_CONST_IDSPS_REQUISITE_CODE SYSRES_CONST_IMAGE_MODE_COLOR SYSRES_CONST_IMAGE_MODE_GREYSCALE SYSRES_CONST_IMAGE_MODE_MONOCHROME SYSRES_CONST_IMPORTANCE_HIGH SYSRES_CONST_IMPORTANCE_LOW SYSRES_CONST_IMPORTANCE_NORMAL SYSRES_CONST_IN_DESIGN_VERSION_STATE_PICK_VALUE SYSRES_CONST_INCOMING_WORK_RULE_TYPE_CODE SYSRES_CONST_INT_REQUISITE SYSRES_CONST_INT_REQUISITE_TYPE SYSRES_CONST_INTEGER_NUMBER_FORMAT_CHAR SYSRES_CONST_INTEGER_TYPE_CHAR SYSRES_CONST_IS_GENERATED_REQUISITE_NEGATIVE_VALUE SYSRES_CONST_IS_PUBLIC_ROLE_REQUISITE_CODE SYSRES_CONST_IS_REMOTE_USER_NEGATIVE_VALUE SYSRES_CONST_IS_REMOTE_USER_POSITIVE_VALUE SYSRES_CONST_IS_STORED_REQUISITE_NEGATIVE_VALUE SYSRES_CONST_IS_STORED_REQUISITE_STORED_VALUE SYSRES_CONST_ITALIC_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_JOB_BLOCK_DESCRIPTION SYSRES_CONST_JOB_KIND_CONTROL_JOB SYSRES_CONST_JOB_KIND_JOB SYSRES_CONST_JOB_KIND_NOTICE SYSRES_CONST_JOB_STATE_ABORTED SYSRES_CONST_JOB_STATE_COMPLETE SYSRES_CONST_JOB_STATE_WORKING SYSRES_CONST_KIND_REQUISITE_CODE SYSRES_CONST_KIND_REQUISITE_NAME SYSRES_CONST_KINDS_CREATE_SHADOW_COPIES_REQUISITE_CODE SYSRES_CONST_KINDS_DEFAULT_EDOC_LIFE_STAGE_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALL_TEPLATES_ALLOWED_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALLOW_LIFE_CYCLE_STAGE_CHANGING_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_ALLOW_MULTIPLE_ACTIVE_VERSIONS_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_SHARE_ACCES_RIGHTS_BY_DEFAULT_CODE SYSRES_CONST_KINDS_EDOC_TEMPLATE_REQUISITE_CODE SYSRES_CONST_KINDS_EDOC_TYPE_REQUISITE_CODE SYSRES_CONST_KINDS_SIGNERS_REQUISITES_CODE SYSRES_CONST_KOD_INPUT_TYPE SYSRES_CONST_LAST_UPDATE_DATE_REQUISITE_CODE SYSRES_CONST_LIFE_CYCLE_START_STAGE_REQUISITE_CODE SYSRES_CONST_LILAC_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_LINK_OBJECT_KIND_COMPONENT SYSRES_CONST_LINK_OBJECT_KIND_DOCUMENT SYSRES_CONST_LINK_OBJECT_KIND_EDOC SYSRES_CONST_LINK_OBJECT_KIND_FOLDER SYSRES_CONST_LINK_OBJECT_KIND_JOB SYSRES_CONST_LINK_OBJECT_KIND_REFERENCE SYSRES_CONST_LINK_OBJECT_KIND_TASK SYSRES_CONST_LINK_REF_TYPE_REQUISITE_CODE SYSRES_CONST_LIST_REFERENCE_MODE_NAME SYSRES_CONST_LOCALIZATION_DICTIONARY_MAIN_VIEW_CODE SYSRES_CONST_MAIN_VIEW_CODE SYSRES_CONST_MANUAL_ENUM_METHOD_FLAG SYSRES_CONST_MASTER_COMP_TYPE_REQUISITE_CODE SYSRES_CONST_MASTER_TABLE_REC_ID_REQUISITE_CODE SYSRES_CONST_MAXIMIZED_MODE_NAME SYSRES_CONST_ME_VALUE SYSRES_CONST_MESSAGE_ATTENTION_CAPTION SYSRES_CONST_MESSAGE_CONFIRMATION_CAPTION SYSRES_CONST_MESSAGE_ERROR_CAPTION SYSRES_CONST_MESSAGE_INFORMATION_CAPTION SYSRES_CONST_MINIMIZED_MODE_NAME SYSRES_CONST_MINUTE_CHAR SYSRES_CONST_MODULE_REQUISITE_CODE SYSRES_CONST_MONITORING_BLOCK_DESCRIPTION SYSRES_CONST_MONTH_FORMAT_VALUE SYSRES_CONST_NAME_LOCALIZE_ID_REQUISITE_CODE SYSRES_CONST_NAME_REQUISITE_CODE SYSRES_CONST_NAME_SINGULAR_REQUISITE_CODE SYSRES_CONST_NAMEAN_INPUT_TYPE SYSRES_CONST_NEGATIVE_PICK_VALUE SYSRES_CONST_NEGATIVE_VALUE SYSRES_CONST_NO SYSRES_CONST_NO_PICK_VALUE SYSRES_CONST_NO_SIGNATURE_REQUISITE_CODE SYSRES_CONST_NO_VALUE SYSRES_CONST_NONE_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_NORMAL_ACCESS_RIGHTS_TYPE_CODE SYSRES_CONST_NORMAL_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_NORMAL_MODE_NAME SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_CODE SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_NAME SYSRES_CONST_NOTE_REQUISITE_CODE SYSRES_CONST_NOTICE_BLOCK_DESCRIPTION SYSRES_CONST_NUM_REQUISITE SYSRES_CONST_NUM_STR_REQUISITE_CODE SYSRES_CONST_NUMERATION_AUTO_NOT_STRONG SYSRES_CONST_NUMERATION_AUTO_STRONG SYSRES_CONST_NUMERATION_FROM_DICTONARY SYSRES_CONST_NUMERATION_MANUAL SYSRES_CONST_NUMERIC_TYPE_CHAR SYSRES_CONST_NUMREQ_REQUISITE_CODE SYSRES_CONST_OBSOLETE_VERSION_STATE_PICK_VALUE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_CODE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_FEMININE SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_MASCULINE SYSRES_CONST_OPTIONAL_FORM_COMP_REQCODE_PREFIX SYSRES_CONST_ORANGE_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_ORIGINALREF_REQUISITE_CODE SYSRES_CONST_OURFIRM_REF_CODE SYSRES_CONST_OURFIRM_REQUISITE_CODE SYSRES_CONST_OURFIRM_VAR SYSRES_CONST_OUTGOING_WORK_RULE_TYPE_CODE SYSRES_CONST_PICK_NEGATIVE_RESULT SYSRES_CONST_PICK_POSITIVE_RESULT SYSRES_CONST_PICK_REQUISITE SYSRES_CONST_PICK_REQUISITE_TYPE SYSRES_CONST_PICK_TYPE_CHAR SYSRES_CONST_PLAN_STATUS_REQUISITE_CODE SYSRES_CONST_PLATFORM_VERSION_COMMENT SYSRES_CONST_PLUGINS_SETTINGS_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_POSITIVE_PICK_VALUE SYSRES_CONST_POWER_TO_CREATE_ACTION_CODE SYSRES_CONST_POWER_TO_SIGN_ACTION_CODE SYSRES_CONST_PRIORITY_REQUISITE_CODE SYSRES_CONST_QUALIFIED_TASK_TYPE SYSRES_CONST_QUALIFIED_TASK_TYPE_CODE SYSRES_CONST_RECSTAT_REQUISITE_CODE SYSRES_CONST_RED_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_REF_ID_T_REF_TYPE_REQUISITE_CODE SYSRES_CONST_REF_REQUISITE SYSRES_CONST_REF_REQUISITE_TYPE SYSRES_CONST_REF_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE SYSRES_CONST_REFERENCE_RECORD_HISTORY_CREATE_ACTION_CODE SYSRES_CONST_REFERENCE_RECORD_HISTORY_DELETE_ACTION_CODE SYSRES_CONST_REFERENCE_RECORD_HISTORY_MODIFY_ACTION_CODE SYSRES_CONST_REFERENCE_TYPE_CHAR SYSRES_CONST_REFERENCE_TYPE_REQUISITE_NAME SYSRES_CONST_REFERENCES_ADD_PARAMS_REQUISITE_CODE SYSRES_CONST_REFERENCES_DISPLAY_REQUISITE_REQUISITE_CODE SYSRES_CONST_REMOTE_SERVER_STATUS_WORKING SYSRES_CONST_REMOTE_SERVER_TYPE_MAIN SYSRES_CONST_REMOTE_SERVER_TYPE_SECONDARY SYSRES_CONST_REMOTE_USER_FLAG_VALUE_CODE SYSRES_CONST_REPORT_APP_EDITOR_INTERNAL SYSRES_CONST_REPORT_BASE_REPORT_ID_REQUISITE_CODE SYSRES_CONST_REPORT_BASE_REPORT_REQUISITE_CODE SYSRES_CONST_REPORT_SCRIPT_REQUISITE_CODE SYSRES_CONST_REPORT_TEMPLATE_REQUISITE_CODE SYSRES_CONST_REPORT_VIEWER_CODE_REQUISITE_CODE SYSRES_CONST_REQ_ALLOW_COMPONENT_DEFAULT_VALUE SYSRES_CONST_REQ_ALLOW_RECORD_DEFAULT_VALUE SYSRES_CONST_REQ_ALLOW_SERVER_COMPONENT_DEFAULT_VALUE SYSRES_CONST_REQ_MODE_AVAILABLE_CODE SYSRES_CONST_REQ_MODE_EDIT_CODE SYSRES_CONST_REQ_MODE_HIDDEN_CODE SYSRES_CONST_REQ_MODE_NOT_AVAILABLE_CODE SYSRES_CONST_REQ_MODE_VIEW_CODE SYSRES_CONST_REQ_NUMBER_REQUISITE_CODE SYSRES_CONST_REQ_SECTION_VALUE SYSRES_CONST_REQ_TYPE_VALUE SYSRES_CONST_REQUISITE_FORMAT_BY_UNIT SYSRES_CONST_REQUISITE_FORMAT_DATE_FULL SYSRES_CONST_REQUISITE_FORMAT_DATE_TIME SYSRES_CONST_REQUISITE_FORMAT_LEFT SYSRES_CONST_REQUISITE_FORMAT_RIGHT SYSRES_CONST_REQUISITE_FORMAT_WITHOUT_UNIT SYSRES_CONST_REQUISITE_NUMBER_REQUISITE_CODE SYSRES_CONST_REQUISITE_SECTION_ACTIONS SYSRES_CONST_REQUISITE_SECTION_BUTTON SYSRES_CONST_REQUISITE_SECTION_BUTTONS SYSRES_CONST_REQUISITE_SECTION_CARD SYSRES_CONST_REQUISITE_SECTION_TABLE SYSRES_CONST_REQUISITE_SECTION_TABLE10 SYSRES_CONST_REQUISITE_SECTION_TABLE11 SYSRES_CONST_REQUISITE_SECTION_TABLE12 SYSRES_CONST_REQUISITE_SECTION_TABLE13 SYSRES_CONST_REQUISITE_SECTION_TABLE14 SYSRES_CONST_REQUISITE_SECTION_TABLE15 SYSRES_CONST_REQUISITE_SECTION_TABLE16 SYSRES_CONST_REQUISITE_SECTION_TABLE17 SYSRES_CONST_REQUISITE_SECTION_TABLE18 SYSRES_CONST_REQUISITE_SECTION_TABLE19 SYSRES_CONST_REQUISITE_SECTION_TABLE2 SYSRES_CONST_REQUISITE_SECTION_TABLE20 SYSRES_CONST_REQUISITE_SECTION_TABLE21 SYSRES_CONST_REQUISITE_SECTION_TABLE22 SYSRES_CONST_REQUISITE_SECTION_TABLE23 SYSRES_CONST_REQUISITE_SECTION_TABLE24 SYSRES_CONST_REQUISITE_SECTION_TABLE3 SYSRES_CONST_REQUISITE_SECTION_TABLE4 SYSRES_CONST_REQUISITE_SECTION_TABLE5 SYSRES_CONST_REQUISITE_SECTION_TABLE6 SYSRES_CONST_REQUISITE_SECTION_TABLE7 SYSRES_CONST_REQUISITE_SECTION_TABLE8 SYSRES_CONST_REQUISITE_SECTION_TABLE9 SYSRES_CONST_REQUISITES_PSEUDOREFERENCE_REQUISITE_NUMBER_REQUISITE_CODE SYSRES_CONST_RIGHT_ALIGNMENT_CODE SYSRES_CONST_ROLES_REFERENCE_CODE SYSRES_CONST_ROUTE_STEP_AFTER_RUS SYSRES_CONST_ROUTE_STEP_AND_CONDITION_RUS SYSRES_CONST_ROUTE_STEP_OR_CONDITION_RUS SYSRES_CONST_ROUTE_TYPE_COMPLEX SYSRES_CONST_ROUTE_TYPE_PARALLEL SYSRES_CONST_ROUTE_TYPE_SERIAL SYSRES_CONST_SBDATASETDESC_NEGATIVE_VALUE SYSRES_CONST_SBDATASETDESC_POSITIVE_VALUE SYSRES_CONST_SBVIEWSDESC_POSITIVE_VALUE SYSRES_CONST_SCRIPT_BLOCK_DESCRIPTION SYSRES_CONST_SEARCH_BY_TEXT_REQUISITE_CODE SYSRES_CONST_SEARCHES_COMPONENT_CONTENT SYSRES_CONST_SEARCHES_CRITERIA_ACTION_NAME SYSRES_CONST_SEARCHES_EDOC_CONTENT SYSRES_CONST_SEARCHES_FOLDER_CONTENT SYSRES_CONST_SEARCHES_JOB_CONTENT SYSRES_CONST_SEARCHES_REFERENCE_CODE SYSRES_CONST_SEARCHES_TASK_CONTENT SYSRES_CONST_SECOND_CHAR SYSRES_CONST_SECTION_REQUISITE_ACTIONS_VALUE SYSRES_CONST_SECTION_REQUISITE_CARD_VALUE SYSRES_CONST_SECTION_REQUISITE_CODE SYSRES_CONST_SECTION_REQUISITE_DETAIL_1_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_2_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_3_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_4_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_5_VALUE SYSRES_CONST_SECTION_REQUISITE_DETAIL_6_VALUE SYSRES_CONST_SELECT_REFERENCE_MODE_NAME SYSRES_CONST_SELECT_TYPE_SELECTABLE SYSRES_CONST_SELECT_TYPE_SELECTABLE_ONLY_CHILD SYSRES_CONST_SELECT_TYPE_SELECTABLE_WITH_CHILD SYSRES_CONST_SELECT_TYPE_UNSLECTABLE SYSRES_CONST_SERVER_TYPE_MAIN SYSRES_CONST_SERVICE_USER_CATEGORY_FIELD_VALUE SYSRES_CONST_SETTINGS_USER_REQUISITE_CODE SYSRES_CONST_SIGNATURE_AND_ENCODE_CERTIFICATE_TYPE_CODE SYSRES_CONST_SIGNATURE_CERTIFICATE_TYPE_CODE SYSRES_CONST_SINGULAR_TITLE_REQUISITE_CODE SYSRES_CONST_SQL_SERVER_AUTHENTIFICATION_FLAG_VALUE_CODE SYSRES_CONST_SQL_SERVER_ENCODE_AUTHENTIFICATION_FLAG_VALUE_CODE SYSRES_CONST_STANDART_ROUTE_REFERENCE_CODE SYSRES_CONST_STANDART_ROUTE_REFERENCE_COMMENT_REQUISITE_CODE SYSRES_CONST_STANDART_ROUTES_GROUPS_REFERENCE_CODE SYSRES_CONST_STATE_REQ_NAME SYSRES_CONST_STATE_REQUISITE_ACTIVE_VALUE SYSRES_CONST_STATE_REQUISITE_CLOSED_VALUE SYSRES_CONST_STATE_REQUISITE_CODE SYSRES_CONST_STATIC_ROLE_TYPE_CODE SYSRES_CONST_STATUS_PLAN_DEFAULT_VALUE SYSRES_CONST_STATUS_VALUE_AUTOCLEANING SYSRES_CONST_STATUS_VALUE_BLUE_SQUARE SYSRES_CONST_STATUS_VALUE_COMPLETE SYSRES_CONST_STATUS_VALUE_GREEN_SQUARE SYSRES_CONST_STATUS_VALUE_ORANGE_SQUARE SYSRES_CONST_STATUS_VALUE_PURPLE_SQUARE SYSRES_CONST_STATUS_VALUE_RED_SQUARE SYSRES_CONST_STATUS_VALUE_SUSPEND SYSRES_CONST_STATUS_VALUE_YELLOW_SQUARE SYSRES_CONST_STDROUTE_SHOW_TO_USERS_REQUISITE_CODE SYSRES_CONST_STORAGE_TYPE_FILE SYSRES_CONST_STORAGE_TYPE_SQL_SERVER SYSRES_CONST_STR_REQUISITE SYSRES_CONST_STRIKEOUT_LIFE_CYCLE_STAGE_DRAW_STYLE SYSRES_CONST_STRING_FORMAT_LEFT_ALIGN_CHAR SYSRES_CONST_STRING_FORMAT_RIGHT_ALIGN_CHAR SYSRES_CONST_STRING_REQUISITE_CODE SYSRES_CONST_STRING_REQUISITE_TYPE SYSRES_CONST_STRING_TYPE_CHAR SYSRES_CONST_SUBSTITUTES_PSEUDOREFERENCE_CODE SYSRES_CONST_SUBTASK_BLOCK_DESCRIPTION SYSRES_CONST_SYSTEM_SETTING_CURRENT_USER_PARAM_VALUE SYSRES_CONST_SYSTEM_SETTING_EMPTY_VALUE_PARAM_VALUE SYSRES_CONST_SYSTEM_VERSION_COMMENT SYSRES_CONST_TASK_ACCESS_TYPE_ALL SYSRES_CONST_TASK_ACCESS_TYPE_ALL_MEMBERS SYSRES_CONST_TASK_ACCESS_TYPE_MANUAL SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION_AND_PASSWORD SYSRES_CONST_TASK_ENCODE_TYPE_NONE SYSRES_CONST_TASK_ENCODE_TYPE_PASSWORD SYSRES_CONST_TASK_ROUTE_ALL_CONDITION SYSRES_CONST_TASK_ROUTE_AND_CONDITION SYSRES_CONST_TASK_ROUTE_OR_CONDITION SYSRES_CONST_TASK_STATE_ABORTED SYSRES_CONST_TASK_STATE_COMPLETE SYSRES_CONST_TASK_STATE_CONTINUED SYSRES_CONST_TASK_STATE_CONTROL SYSRES_CONST_TASK_STATE_INIT SYSRES_CONST_TASK_STATE_WORKING SYSRES_CONST_TASK_TITLE SYSRES_CONST_TASK_TYPES_GROUPS_REFERENCE_CODE SYSRES_CONST_TASK_TYPES_REFERENCE_CODE SYSRES_CONST_TEMPLATES_REFERENCE_CODE SYSRES_CONST_TEST_DATE_REQUISITE_NAME SYSRES_CONST_TEST_DEV_DATABASE_NAME SYSRES_CONST_TEST_DEV_SYSTEM_CODE SYSRES_CONST_TEST_EDMS_DATABASE_NAME SYSRES_CONST_TEST_EDMS_MAIN_CODE SYSRES_CONST_TEST_EDMS_MAIN_DB_NAME SYSRES_CONST_TEST_EDMS_SECOND_CODE SYSRES_CONST_TEST_EDMS_SECOND_DB_NAME SYSRES_CONST_TEST_EDMS_SYSTEM_CODE SYSRES_CONST_TEST_NUMERIC_REQUISITE_NAME SYSRES_CONST_TEXT_REQUISITE SYSRES_CONST_TEXT_REQUISITE_CODE SYSRES_CONST_TEXT_REQUISITE_TYPE SYSRES_CONST_TEXT_TYPE_CHAR SYSRES_CONST_TYPE_CODE_REQUISITE_CODE SYSRES_CONST_TYPE_REQUISITE_CODE SYSRES_CONST_UNDEFINED_LIFE_CYCLE_STAGE_FONT_COLOR SYSRES_CONST_UNITS_SECTION_ID_REQUISITE_CODE SYSRES_CONST_UNITS_SECTION_REQUISITE_CODE SYSRES_CONST_UNOPERATING_RECORD_FLAG_VALUE_CODE SYSRES_CONST_UNSTORED_DATA_REQUISITE_CODE SYSRES_CONST_UNSTORED_DATA_REQUISITE_NAME SYSRES_CONST_USE_ACCESS_TYPE_CODE SYSRES_CONST_USE_ACCESS_TYPE_NAME SYSRES_CONST_USER_ACCOUNT_TYPE_VALUE_CODE SYSRES_CONST_USER_ADDITIONAL_INFORMATION_REQUISITE_CODE SYSRES_CONST_USER_AND_GROUP_ID_FROM_PSEUDOREFERENCE_REQUISITE_CODE SYSRES_CONST_USER_CATEGORY_NORMAL SYSRES_CONST_USER_CERTIFICATE_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_STATE_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_SUBJECT_NAME_REQUISITE_CODE SYSRES_CONST_USER_CERTIFICATE_THUMBPRINT_REQUISITE_CODE SYSRES_CONST_USER_COMMON_CATEGORY SYSRES_CONST_USER_COMMON_CATEGORY_CODE SYSRES_CONST_USER_FULL_NAME_REQUISITE_CODE SYSRES_CONST_USER_GROUP_TYPE_REQUISITE_CODE SYSRES_CONST_USER_LOGIN_REQUISITE_CODE SYSRES_CONST_USER_REMOTE_CONTROLLER_REQUISITE_CODE SYSRES_CONST_USER_REMOTE_SYSTEM_REQUISITE_CODE SYSRES_CONST_USER_RIGHTS_T_REQUISITE_CODE SYSRES_CONST_USER_SERVER_NAME_REQUISITE_CODE SYSRES_CONST_USER_SERVICE_CATEGORY SYSRES_CONST_USER_SERVICE_CATEGORY_CODE SYSRES_CONST_USER_STATUS_ADMINISTRATOR_CODE SYSRES_CONST_USER_STATUS_ADMINISTRATOR_NAME SYSRES_CONST_USER_STATUS_DEVELOPER_CODE SYSRES_CONST_USER_STATUS_DEVELOPER_NAME SYSRES_CONST_USER_STATUS_DISABLED_CODE SYSRES_CONST_USER_STATUS_DISABLED_NAME SYSRES_CONST_USER_STATUS_SYSTEM_DEVELOPER_CODE SYSRES_CONST_USER_STATUS_USER_CODE SYSRES_CONST_USER_STATUS_USER_NAME SYSRES_CONST_USER_STATUS_USER_NAME_DEPRECATED SYSRES_CONST_USER_TYPE_FIELD_VALUE_USER SYSRES_CONST_USER_TYPE_REQUISITE_CODE SYSRES_CONST_USERS_CONTROLLER_REQUISITE_CODE SYSRES_CONST_USERS_IS_MAIN_SERVER_REQUISITE_CODE SYSRES_CONST_USERS_REFERENCE_CODE SYSRES_CONST_USERS_REGISTRATION_CERTIFICATES_ACTION_NAME SYSRES_CONST_USERS_REQUISITE_CODE SYSRES_CONST_USERS_SYSTEM_REQUISITE_CODE SYSRES_CONST_USERS_USER_ACCESS_RIGHTS_TYPR_REQUISITE_CODE SYSRES_CONST_USERS_USER_AUTHENTICATION_REQUISITE_CODE SYSRES_CONST_USERS_USER_COMPONENT_REQUISITE_CODE SYSRES_CONST_USERS_USER_GROUP_REQUISITE_CODE SYSRES_CONST_USERS_VIEW_CERTIFICATES_ACTION_NAME SYSRES_CONST_VIEW_DEFAULT_CODE SYSRES_CONST_VIEW_DEFAULT_NAME SYSRES_CONST_VIEWER_REQUISITE_CODE SYSRES_CONST_WAITING_BLOCK_DESCRIPTION SYSRES_CONST_WIZARD_FORM_LABEL_TEST_STRING SYSRES_CONST_WIZARD_QUERY_PARAM_HEIGHT_ETALON_STRING SYSRES_CONST_WIZARD_REFERENCE_COMMENT_REQUISITE_CODE SYSRES_CONST_WORK_RULES_DESCRIPTION_REQUISITE_CODE SYSRES_CONST_WORK_TIME_CALENDAR_REFERENCE_CODE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE_RUS SYSRES_CONST_WORK_WORKFLOW_SOFT_ROUTE_TYPE_VALUE_CODE_RUS SYSRES_CONST_WORKFLOW_ROUTE_TYPR_HARD SYSRES_CONST_WORKFLOW_ROUTE_TYPR_SOFT SYSRES_CONST_XML_ENCODING SYSRES_CONST_XREC_STAT_REQUISITE_CODE SYSRES_CONST_XRECID_FIELD_NAME SYSRES_CONST_YES SYSRES_CONST_YES_NO_2_REQUISITE_CODE SYSRES_CONST_YES_NO_REQUISITE_CODE SYSRES_CONST_YES_NO_T_REF_TYPE_REQUISITE_CODE SYSRES_CONST_YES_PICK_VALUE SYSRES_CONST_YES_VALUE "+"CR FALSE nil NO_VALUE NULL TAB TRUE YES_VALUE "+"ADMINISTRATORS_GROUP_NAME CUSTOMIZERS_GROUP_NAME DEVELOPERS_GROUP_NAME SERVICE_USERS_GROUP_NAME "+"DECISION_BLOCK_FIRST_OPERAND_PROPERTY DECISION_BLOCK_NAME_PROPERTY DECISION_BLOCK_OPERATION_PROPERTY DECISION_BLOCK_RESULT_TYPE_PROPERTY DECISION_BLOCK_SECOND_OPERAND_PROPERTY "+"ANY_FILE_EXTENTION COMPRESSED_DOCUMENT_EXTENSION EXTENDED_DOCUMENT_EXTENSION SHORT_COMPRESSED_DOCUMENT_EXTENSION SHORT_EXTENDED_DOCUMENT_EXTENSION "+"JOB_BLOCK_ABORT_DEADLINE_PROPERTY JOB_BLOCK_AFTER_FINISH_EVENT JOB_BLOCK_AFTER_QUERY_PARAMETERS_EVENT JOB_BLOCK_ATTACHMENT_PROPERTY JOB_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY JOB_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY JOB_BLOCK_BEFORE_QUERY_PARAMETERS_EVENT JOB_BLOCK_BEFORE_START_EVENT JOB_BLOCK_CREATED_JOBS_PROPERTY JOB_BLOCK_DEADLINE_PROPERTY JOB_BLOCK_EXECUTION_RESULTS_PROPERTY JOB_BLOCK_IS_PARALLEL_PROPERTY JOB_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY JOB_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY JOB_BLOCK_JOB_TEXT_PROPERTY JOB_BLOCK_NAME_PROPERTY JOB_BLOCK_NEED_SIGN_ON_PERFORM_PROPERTY JOB_BLOCK_PERFORMER_PROPERTY JOB_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY JOB_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY JOB_BLOCK_SUBJECT_PROPERTY "+"ENGLISH_LANGUAGE_CODE RUSSIAN_LANGUAGE_CODE "+"smHidden smMaximized smMinimized smNormal wmNo wmYes "+"COMPONENT_TOKEN_LINK_KIND DOCUMENT_LINK_KIND EDOCUMENT_LINK_KIND FOLDER_LINK_KIND JOB_LINK_KIND REFERENCE_LINK_KIND TASK_LINK_KIND "+"COMPONENT_TOKEN_LOCK_TYPE EDOCUMENT_VERSION_LOCK_TYPE "+"MONITOR_BLOCK_AFTER_FINISH_EVENT MONITOR_BLOCK_BEFORE_START_EVENT MONITOR_BLOCK_DEADLINE_PROPERTY MONITOR_BLOCK_INTERVAL_PROPERTY MONITOR_BLOCK_INTERVAL_TYPE_PROPERTY MONITOR_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY MONITOR_BLOCK_NAME_PROPERTY MONITOR_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY MONITOR_BLOCK_SEARCH_SCRIPT_PROPERTY "+"NOTICE_BLOCK_AFTER_FINISH_EVENT NOTICE_BLOCK_ATTACHMENT_PROPERTY NOTICE_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY NOTICE_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY NOTICE_BLOCK_BEFORE_START_EVENT NOTICE_BLOCK_CREATED_NOTICES_PROPERTY NOTICE_BLOCK_DEADLINE_PROPERTY NOTICE_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY NOTICE_BLOCK_NAME_PROPERTY NOTICE_BLOCK_NOTICE_TEXT_PROPERTY NOTICE_BLOCK_PERFORMER_PROPERTY NOTICE_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY NOTICE_BLOCK_SUBJECT_PROPERTY "+"dseAfterCancel dseAfterClose dseAfterDelete dseAfterDeleteOutOfTransaction dseAfterInsert dseAfterOpen dseAfterScroll dseAfterUpdate dseAfterUpdateOutOfTransaction dseBeforeCancel dseBeforeClose dseBeforeDelete dseBeforeDetailUpdate dseBeforeInsert dseBeforeOpen dseBeforeUpdate dseOnAnyRequisiteChange dseOnCloseRecord dseOnDeleteError dseOnOpenRecord dseOnPrepareUpdate dseOnUpdateError dseOnUpdateRatifiedRecord dseOnValidDelete dseOnValidUpdate reOnChange reOnChangeValues SELECTION_BEGIN_ROUTE_EVENT SELECTION_END_ROUTE_EVENT "+"CURRENT_PERIOD_IS_REQUIRED PREVIOUS_CARD_TYPE_NAME SHOW_RECORD_PROPERTIES_FORM "+"ACCESS_RIGHTS_SETTING_DIALOG_CODE ADMINISTRATOR_USER_CODE ANALYTIC_REPORT_TYPE asrtHideLocal asrtHideRemote CALCULATED_ROLE_TYPE_CODE COMPONENTS_REFERENCE_DEVELOPER_VIEW_CODE DCTS_TEST_PROTOCOLS_FOLDER_PATH E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED_BY_USER E_EDOC_VERSION_ALREDY_SIGNED E_EDOC_VERSION_ALREDY_SIGNED_BY_USER EDOC_TYPES_CODE_REQUISITE_FIELD_NAME EDOCUMENTS_ALIAS_NAME FILES_FOLDER_PATH FILTER_OPERANDS_DELIMITER FILTER_OPERATIONS_DELIMITER FORMCARD_NAME FORMLIST_NAME GET_EXTENDED_DOCUMENT_EXTENSION_CREATION_MODE GET_EXTENDED_DOCUMENT_EXTENSION_IMPORT_MODE INTEGRATED_REPORT_TYPE IS_BUILDER_APPLICATION_ROLE IS_BUILDER_APPLICATION_ROLE2 IS_BUILDER_USERS ISBSYSDEV LOG_FOLDER_PATH mbCancel mbNo mbNoToAll mbOK mbYes mbYesToAll MEMORY_DATASET_DESRIPTIONS_FILENAME mrNo mrNoToAll mrYes mrYesToAll MULTIPLE_SELECT_DIALOG_CODE NONOPERATING_RECORD_FLAG_FEMININE NONOPERATING_RECORD_FLAG_MASCULINE OPERATING_RECORD_FLAG_FEMININE OPERATING_RECORD_FLAG_MASCULINE PROFILING_SETTINGS_COMMON_SETTINGS_CODE_VALUE PROGRAM_INITIATED_LOOKUP_ACTION ratDelete ratEdit ratInsert REPORT_TYPE REQUIRED_PICK_VALUES_VARIABLE rmCard rmList SBRTE_PROGID_DEV SBRTE_PROGID_RELEASE STATIC_ROLE_TYPE_CODE SUPPRESS_EMPTY_TEMPLATE_CREATION SYSTEM_USER_CODE UPDATE_DIALOG_DATASET USED_IN_OBJECT_HINT_PARAM USER_INITIATED_LOOKUP_ACTION USER_NAME_FORMAT USER_SELECTION_RESTRICTIONS WORKFLOW_TEST_PROTOCOLS_FOLDER_PATH ELS_SUBTYPE_CONTROL_NAME ELS_FOLDER_KIND_CONTROL_NAME REPEAT_PROCESS_CURRENT_OBJECT_EXCEPTION_NAME "+"PRIVILEGE_COMPONENT_FULL_ACCESS PRIVILEGE_DEVELOPMENT_EXPORT PRIVILEGE_DEVELOPMENT_IMPORT PRIVILEGE_DOCUMENT_DELETE PRIVILEGE_ESD PRIVILEGE_FOLDER_DELETE PRIVILEGE_MANAGE_ACCESS_RIGHTS PRIVILEGE_MANAGE_REPLICATION PRIVILEGE_MANAGE_SESSION_SERVER PRIVILEGE_OBJECT_FULL_ACCESS PRIVILEGE_OBJECT_VIEW PRIVILEGE_RESERVE_LICENSE PRIVILEGE_SYSTEM_CUSTOMIZE PRIVILEGE_SYSTEM_DEVELOP PRIVILEGE_SYSTEM_INSTALL PRIVILEGE_TASK_DELETE PRIVILEGE_USER_PLUGIN_SETTINGS_CUSTOMIZE PRIVILEGES_PSEUDOREFERENCE_CODE "+"ACCESS_TYPES_PSEUDOREFERENCE_CODE ALL_AVAILABLE_COMPONENTS_PSEUDOREFERENCE_CODE ALL_AVAILABLE_PRIVILEGES_PSEUDOREFERENCE_CODE ALL_REPLICATE_COMPONENTS_PSEUDOREFERENCE_CODE AVAILABLE_DEVELOPERS_COMPONENTS_PSEUDOREFERENCE_CODE COMPONENTS_PSEUDOREFERENCE_CODE FILTRATER_SETTINGS_CONFLICTS_PSEUDOREFERENCE_CODE GROUPS_PSEUDOREFERENCE_CODE RECEIVE_PROTOCOL_PSEUDOREFERENCE_CODE REFERENCE_REQUISITE_PSEUDOREFERENCE_CODE REFERENCE_REQUISITES_PSEUDOREFERENCE_CODE REFTYPES_PSEUDOREFERENCE_CODE REPLICATION_SEANCES_DIARY_PSEUDOREFERENCE_CODE SEND_PROTOCOL_PSEUDOREFERENCE_CODE SUBSTITUTES_PSEUDOREFERENCE_CODE SYSTEM_SETTINGS_PSEUDOREFERENCE_CODE UNITS_PSEUDOREFERENCE_CODE USERS_PSEUDOREFERENCE_CODE VIEWERS_PSEUDOREFERENCE_CODE "+"CERTIFICATE_TYPE_ENCRYPT CERTIFICATE_TYPE_SIGN CERTIFICATE_TYPE_SIGN_AND_ENCRYPT "+"STORAGE_TYPE_FILE STORAGE_TYPE_NAS_CIFS STORAGE_TYPE_SAPERION STORAGE_TYPE_SQL_SERVER "+"COMPTYPE2_REQUISITE_DOCUMENTS_VALUE COMPTYPE2_REQUISITE_TASKS_VALUE COMPTYPE2_REQUISITE_FOLDERS_VALUE COMPTYPE2_REQUISITE_REFERENCES_VALUE "+"SYSREQ_CODE SYSREQ_COMPTYPE2 SYSREQ_CONST_AVAILABLE_FOR_WEB SYSREQ_CONST_COMMON_CODE SYSREQ_CONST_COMMON_VALUE SYSREQ_CONST_FIRM_CODE SYSREQ_CONST_FIRM_STATUS SYSREQ_CONST_FIRM_VALUE SYSREQ_CONST_SERVER_STATUS SYSREQ_CONTENTS SYSREQ_DATE_OPEN SYSREQ_DATE_CLOSE SYSREQ_DESCRIPTION SYSREQ_DESCRIPTION_LOCALIZE_ID SYSREQ_DOUBLE SYSREQ_EDOC_ACCESS_TYPE SYSREQ_EDOC_AUTHOR SYSREQ_EDOC_CREATED SYSREQ_EDOC_DELEGATE_RIGHTS_REQUISITE_CODE SYSREQ_EDOC_EDITOR SYSREQ_EDOC_ENCODE_TYPE SYSREQ_EDOC_ENCRYPTION_PLUGIN_NAME SYSREQ_EDOC_ENCRYPTION_PLUGIN_VERSION SYSREQ_EDOC_EXPORT_DATE SYSREQ_EDOC_EXPORTER SYSREQ_EDOC_KIND SYSREQ_EDOC_LIFE_STAGE_NAME SYSREQ_EDOC_LOCKED_FOR_SERVER_CODE SYSREQ_EDOC_MODIFIED SYSREQ_EDOC_NAME SYSREQ_EDOC_NOTE SYSREQ_EDOC_QUALIFIED_ID SYSREQ_EDOC_SESSION_KEY SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_NAME SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_VERSION SYSREQ_EDOC_SIGNATURE_TYPE SYSREQ_EDOC_SIGNED SYSREQ_EDOC_STORAGE SYSREQ_EDOC_STORAGES_ARCHIVE_STORAGE SYSREQ_EDOC_STORAGES_CHECK_RIGHTS SYSREQ_EDOC_STORAGES_COMPUTER_NAME SYSREQ_EDOC_STORAGES_EDIT_IN_STORAGE SYSREQ_EDOC_STORAGES_EXECUTIVE_STORAGE SYSREQ_EDOC_STORAGES_FUNCTION SYSREQ_EDOC_STORAGES_INITIALIZED SYSREQ_EDOC_STORAGES_LOCAL_PATH SYSREQ_EDOC_STORAGES_SAPERION_DATABASE_NAME SYSREQ_EDOC_STORAGES_SEARCH_BY_TEXT SYSREQ_EDOC_STORAGES_SERVER_NAME SYSREQ_EDOC_STORAGES_SHARED_SOURCE_NAME SYSREQ_EDOC_STORAGES_TYPE SYSREQ_EDOC_TEXT_MODIFIED SYSREQ_EDOC_TYPE_ACT_CODE SYSREQ_EDOC_TYPE_ACT_DESCRIPTION SYSREQ_EDOC_TYPE_ACT_DESCRIPTION_LOCALIZE_ID SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE_EXISTS SYSREQ_EDOC_TYPE_ACT_SECTION SYSREQ_EDOC_TYPE_ADD_PARAMS SYSREQ_EDOC_TYPE_COMMENT SYSREQ_EDOC_TYPE_EVENT_TEXT SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID SYSREQ_EDOC_TYPE_NAME_LOCALIZE_ID SYSREQ_EDOC_TYPE_NUMERATION_METHOD SYSREQ_EDOC_TYPE_PSEUDO_REQUISITE_CODE SYSREQ_EDOC_TYPE_REQ_CODE SYSREQ_EDOC_TYPE_REQ_DESCRIPTION SYSREQ_EDOC_TYPE_REQ_DESCRIPTION_LOCALIZE_ID SYSREQ_EDOC_TYPE_REQ_IS_LEADING SYSREQ_EDOC_TYPE_REQ_IS_REQUIRED SYSREQ_EDOC_TYPE_REQ_NUMBER SYSREQ_EDOC_TYPE_REQ_ON_CHANGE SYSREQ_EDOC_TYPE_REQ_ON_CHANGE_EXISTS SYSREQ_EDOC_TYPE_REQ_ON_SELECT SYSREQ_EDOC_TYPE_REQ_ON_SELECT_KIND SYSREQ_EDOC_TYPE_REQ_SECTION SYSREQ_EDOC_TYPE_VIEW_CARD SYSREQ_EDOC_TYPE_VIEW_CODE SYSREQ_EDOC_TYPE_VIEW_COMMENT SYSREQ_EDOC_TYPE_VIEW_IS_MAIN SYSREQ_EDOC_TYPE_VIEW_NAME SYSREQ_EDOC_TYPE_VIEW_NAME_LOCALIZE_ID SYSREQ_EDOC_VERSION_AUTHOR SYSREQ_EDOC_VERSION_CRC SYSREQ_EDOC_VERSION_DATA SYSREQ_EDOC_VERSION_EDITOR SYSREQ_EDOC_VERSION_EXPORT_DATE SYSREQ_EDOC_VERSION_EXPORTER SYSREQ_EDOC_VERSION_HIDDEN SYSREQ_EDOC_VERSION_LIFE_STAGE SYSREQ_EDOC_VERSION_MODIFIED SYSREQ_EDOC_VERSION_NOTE SYSREQ_EDOC_VERSION_SIGNATURE_TYPE SYSREQ_EDOC_VERSION_SIGNED SYSREQ_EDOC_VERSION_SIZE SYSREQ_EDOC_VERSION_SOURCE SYSREQ_EDOC_VERSION_TEXT_MODIFIED SYSREQ_EDOCKIND_DEFAULT_VERSION_STATE_CODE SYSREQ_FOLDER_KIND SYSREQ_FUNC_CATEGORY SYSREQ_FUNC_COMMENT SYSREQ_FUNC_GROUP SYSREQ_FUNC_GROUP_COMMENT SYSREQ_FUNC_GROUP_NUMBER SYSREQ_FUNC_HELP SYSREQ_FUNC_PARAM_DEF_VALUE SYSREQ_FUNC_PARAM_IDENT SYSREQ_FUNC_PARAM_NUMBER SYSREQ_FUNC_PARAM_TYPE SYSREQ_FUNC_TEXT SYSREQ_GROUP_CATEGORY SYSREQ_ID SYSREQ_LAST_UPDATE SYSREQ_LEADER_REFERENCE SYSREQ_LINE_NUMBER SYSREQ_MAIN_RECORD_ID SYSREQ_NAME SYSREQ_NAME_LOCALIZE_ID SYSREQ_NOTE SYSREQ_ORIGINAL_RECORD SYSREQ_OUR_FIRM SYSREQ_PROFILING_SETTINGS_BATCH_LOGING SYSREQ_PROFILING_SETTINGS_BATCH_SIZE SYSREQ_PROFILING_SETTINGS_PROFILING_ENABLED SYSREQ_PROFILING_SETTINGS_SQL_PROFILING_ENABLED SYSREQ_PROFILING_SETTINGS_START_LOGGED SYSREQ_RECORD_STATUS SYSREQ_REF_REQ_FIELD_NAME SYSREQ_REF_REQ_FORMAT SYSREQ_REF_REQ_GENERATED SYSREQ_REF_REQ_LENGTH SYSREQ_REF_REQ_PRECISION SYSREQ_REF_REQ_REFERENCE SYSREQ_REF_REQ_SECTION SYSREQ_REF_REQ_STORED SYSREQ_REF_REQ_TOKENS SYSREQ_REF_REQ_TYPE SYSREQ_REF_REQ_VIEW SYSREQ_REF_TYPE_ACT_CODE SYSREQ_REF_TYPE_ACT_DESCRIPTION SYSREQ_REF_TYPE_ACT_DESCRIPTION_LOCALIZE_ID SYSREQ_REF_TYPE_ACT_ON_EXECUTE SYSREQ_REF_TYPE_ACT_ON_EXECUTE_EXISTS SYSREQ_REF_TYPE_ACT_SECTION SYSREQ_REF_TYPE_ADD_PARAMS SYSREQ_REF_TYPE_COMMENT SYSREQ_REF_TYPE_COMMON_SETTINGS SYSREQ_REF_TYPE_DISPLAY_REQUISITE_NAME SYSREQ_REF_TYPE_EVENT_TEXT SYSREQ_REF_TYPE_MAIN_LEADING_REF SYSREQ_REF_TYPE_NAME_IN_SINGULAR SYSREQ_REF_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID SYSREQ_REF_TYPE_NAME_LOCALIZE_ID SYSREQ_REF_TYPE_NUMERATION_METHOD SYSREQ_REF_TYPE_REQ_CODE SYSREQ_REF_TYPE_REQ_DESCRIPTION SYSREQ_REF_TYPE_REQ_DESCRIPTION_LOCALIZE_ID SYSREQ_REF_TYPE_REQ_IS_CONTROL SYSREQ_REF_TYPE_REQ_IS_FILTER SYSREQ_REF_TYPE_REQ_IS_LEADING SYSREQ_REF_TYPE_REQ_IS_REQUIRED SYSREQ_REF_TYPE_REQ_NUMBER SYSREQ_REF_TYPE_REQ_ON_CHANGE SYSREQ_REF_TYPE_REQ_ON_CHANGE_EXISTS SYSREQ_REF_TYPE_REQ_ON_SELECT SYSREQ_REF_TYPE_REQ_ON_SELECT_KIND SYSREQ_REF_TYPE_REQ_SECTION SYSREQ_REF_TYPE_VIEW_CARD SYSREQ_REF_TYPE_VIEW_CODE SYSREQ_REF_TYPE_VIEW_COMMENT SYSREQ_REF_TYPE_VIEW_IS_MAIN SYSREQ_REF_TYPE_VIEW_NAME SYSREQ_REF_TYPE_VIEW_NAME_LOCALIZE_ID SYSREQ_REFERENCE_TYPE_ID SYSREQ_STATE SYSREQ_STATЕ SYSREQ_SYSTEM_SETTINGS_VALUE SYSREQ_TYPE SYSREQ_UNIT SYSREQ_UNIT_ID SYSREQ_USER_GROUPS_GROUP_FULL_NAME SYSREQ_USER_GROUPS_GROUP_NAME SYSREQ_USER_GROUPS_GROUP_SERVER_NAME SYSREQ_USERS_ACCESS_RIGHTS SYSREQ_USERS_AUTHENTICATION SYSREQ_USERS_CATEGORY SYSREQ_USERS_COMPONENT SYSREQ_USERS_COMPONENT_USER_IS_PUBLIC SYSREQ_USERS_DOMAIN SYSREQ_USERS_FULL_USER_NAME SYSREQ_USERS_GROUP SYSREQ_USERS_IS_MAIN_SERVER SYSREQ_USERS_LOGIN SYSREQ_USERS_REFERENCE_USER_IS_PUBLIC SYSREQ_USERS_STATUS SYSREQ_USERS_USER_CERTIFICATE SYSREQ_USERS_USER_CERTIFICATE_INFO SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_NAME SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_VERSION SYSREQ_USERS_USER_CERTIFICATE_STATE SYSREQ_USERS_USER_CERTIFICATE_SUBJECT_NAME SYSREQ_USERS_USER_CERTIFICATE_THUMBPRINT SYSREQ_USERS_USER_DEFAULT_CERTIFICATE SYSREQ_USERS_USER_DESCRIPTION SYSREQ_USERS_USER_GLOBAL_NAME SYSREQ_USERS_USER_LOGIN SYSREQ_USERS_USER_MAIN_SERVER SYSREQ_USERS_USER_TYPE SYSREQ_WORK_RULES_FOLDER_ID "+"RESULT_VAR_NAME RESULT_VAR_NAME_ENG "+"AUTO_NUMERATION_RULE_ID CANT_CHANGE_ID_REQUISITE_RULE_ID CANT_CHANGE_OURFIRM_REQUISITE_RULE_ID CHECK_CHANGING_REFERENCE_RECORD_USE_RULE_ID CHECK_CODE_REQUISITE_RULE_ID CHECK_DELETING_REFERENCE_RECORD_USE_RULE_ID CHECK_FILTRATER_CHANGES_RULE_ID CHECK_RECORD_INTERVAL_RULE_ID CHECK_REFERENCE_INTERVAL_RULE_ID CHECK_REQUIRED_DATA_FULLNESS_RULE_ID CHECK_REQUIRED_REQUISITES_FULLNESS_RULE_ID MAKE_RECORD_UNRATIFIED_RULE_ID RESTORE_AUTO_NUMERATION_RULE_ID SET_FIRM_CONTEXT_FROM_RECORD_RULE_ID SET_FIRST_RECORD_IN_LIST_FORM_RULE_ID SET_IDSPS_VALUE_RULE_ID SET_NEXT_CODE_VALUE_RULE_ID SET_OURFIRM_BOUNDS_RULE_ID SET_OURFIRM_REQUISITE_RULE_ID "+"SCRIPT_BLOCK_AFTER_FINISH_EVENT SCRIPT_BLOCK_BEFORE_START_EVENT SCRIPT_BLOCK_EXECUTION_RESULTS_PROPERTY SCRIPT_BLOCK_NAME_PROPERTY SCRIPT_BLOCK_SCRIPT_PROPERTY "+"SUBTASK_BLOCK_ABORT_DEADLINE_PROPERTY SUBTASK_BLOCK_AFTER_FINISH_EVENT SUBTASK_BLOCK_ASSIGN_PARAMS_EVENT SUBTASK_BLOCK_ATTACHMENTS_PROPERTY SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY SUBTASK_BLOCK_BEFORE_START_EVENT SUBTASK_BLOCK_CREATED_TASK_PROPERTY SUBTASK_BLOCK_CREATION_EVENT SUBTASK_BLOCK_DEADLINE_PROPERTY SUBTASK_BLOCK_IMPORTANCE_PROPERTY SUBTASK_BLOCK_INITIATOR_PROPERTY SUBTASK_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY SUBTASK_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY SUBTASK_BLOCK_JOBS_TYPE_PROPERTY SUBTASK_BLOCK_NAME_PROPERTY SUBTASK_BLOCK_PARALLEL_ROUTE_PROPERTY SUBTASK_BLOCK_PERFORMERS_PROPERTY SUBTASK_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY SUBTASK_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY SUBTASK_BLOCK_REQUIRE_SIGN_PROPERTY SUBTASK_BLOCK_STANDARD_ROUTE_PROPERTY SUBTASK_BLOCK_START_EVENT SUBTASK_BLOCK_STEP_CONTROL_PROPERTY SUBTASK_BLOCK_SUBJECT_PROPERTY SUBTASK_BLOCK_TASK_CONTROL_PROPERTY SUBTASK_BLOCK_TEXT_PROPERTY SUBTASK_BLOCK_UNLOCK_ATTACHMENTS_ON_STOP_PROPERTY SUBTASK_BLOCK_USE_STANDARD_ROUTE_PROPERTY SUBTASK_BLOCK_WAIT_FOR_TASK_COMPLETE_PROPERTY "+"SYSCOMP_CONTROL_JOBS SYSCOMP_FOLDERS SYSCOMP_JOBS SYSCOMP_NOTICES SYSCOMP_TASKS "+"SYSDLG_CREATE_EDOCUMENT SYSDLG_CREATE_EDOCUMENT_VERSION SYSDLG_CURRENT_PERIOD SYSDLG_EDIT_FUNCTION_HELP SYSDLG_EDOCUMENT_KINDS_FOR_TEMPLATE SYSDLG_EXPORT_MULTIPLE_EDOCUMENTS SYSDLG_EXPORT_SINGLE_EDOCUMENT SYSDLG_IMPORT_EDOCUMENT SYSDLG_MULTIPLE_SELECT SYSDLG_SETUP_ACCESS_RIGHTS SYSDLG_SETUP_DEFAULT_RIGHTS SYSDLG_SETUP_FILTER_CONDITION SYSDLG_SETUP_SIGN_RIGHTS SYSDLG_SETUP_TASK_OBSERVERS SYSDLG_SETUP_TASK_ROUTE SYSDLG_SETUP_USERS_LIST SYSDLG_SIGN_EDOCUMENT SYSDLG_SIGN_MULTIPLE_EDOCUMENTS "+"SYSREF_ACCESS_RIGHTS_TYPES SYSREF_ADMINISTRATION_HISTORY SYSREF_ALL_AVAILABLE_COMPONENTS SYSREF_ALL_AVAILABLE_PRIVILEGES SYSREF_ALL_REPLICATING_COMPONENTS SYSREF_AVAILABLE_DEVELOPERS_COMPONENTS SYSREF_CALENDAR_EVENTS SYSREF_COMPONENT_TOKEN_HISTORY SYSREF_COMPONENT_TOKENS SYSREF_COMPONENTS SYSREF_CONSTANTS SYSREF_DATA_RECEIVE_PROTOCOL SYSREF_DATA_SEND_PROTOCOL SYSREF_DIALOGS SYSREF_DIALOGS_REQUISITES SYSREF_EDITORS SYSREF_EDOC_CARDS SYSREF_EDOC_TYPES SYSREF_EDOCUMENT_CARD_REQUISITES SYSREF_EDOCUMENT_CARD_TYPES SYSREF_EDOCUMENT_CARD_TYPES_REFERENCE SYSREF_EDOCUMENT_CARDS SYSREF_EDOCUMENT_HISTORY SYSREF_EDOCUMENT_KINDS SYSREF_EDOCUMENT_REQUISITES SYSREF_EDOCUMENT_SIGNATURES SYSREF_EDOCUMENT_TEMPLATES SYSREF_EDOCUMENT_TEXT_STORAGES SYSREF_EDOCUMENT_VIEWS SYSREF_FILTERER_SETUP_CONFLICTS SYSREF_FILTRATER_SETTING_CONFLICTS SYSREF_FOLDER_HISTORY SYSREF_FOLDERS SYSREF_FUNCTION_GROUPS SYSREF_FUNCTION_PARAMS SYSREF_FUNCTIONS SYSREF_JOB_HISTORY SYSREF_LINKS SYSREF_LOCALIZATION_DICTIONARY SYSREF_LOCALIZATION_LANGUAGES SYSREF_MODULES SYSREF_PRIVILEGES SYSREF_RECORD_HISTORY SYSREF_REFERENCE_REQUISITES SYSREF_REFERENCE_TYPE_VIEWS SYSREF_REFERENCE_TYPES SYSREF_REFERENCES SYSREF_REFERENCES_REQUISITES SYSREF_REMOTE_SERVERS SYSREF_REPLICATION_SESSIONS_LOG SYSREF_REPLICATION_SESSIONS_PROTOCOL SYSREF_REPORTS SYSREF_ROLES SYSREF_ROUTE_BLOCK_GROUPS SYSREF_ROUTE_BLOCKS SYSREF_SCRIPTS SYSREF_SEARCHES SYSREF_SERVER_EVENTS SYSREF_SERVER_EVENTS_HISTORY SYSREF_STANDARD_ROUTE_GROUPS SYSREF_STANDARD_ROUTES SYSREF_STATUSES SYSREF_SYSTEM_SETTINGS SYSREF_TASK_HISTORY SYSREF_TASK_KIND_GROUPS SYSREF_TASK_KINDS SYSREF_TASK_RIGHTS SYSREF_TASK_SIGNATURES SYSREF_TASKS SYSREF_UNITS SYSREF_USER_GROUPS SYSREF_USER_GROUPS_REFERENCE SYSREF_USER_SUBSTITUTION SYSREF_USERS SYSREF_USERS_REFERENCE SYSREF_VIEWERS SYSREF_WORKING_TIME_CALENDARS "+"ACCESS_RIGHTS_TABLE_NAME EDMS_ACCESS_TABLE_NAME EDOC_TYPES_TABLE_NAME "+"TEST_DEV_DB_NAME TEST_DEV_SYSTEM_CODE TEST_EDMS_DB_NAME TEST_EDMS_MAIN_CODE TEST_EDMS_MAIN_DB_NAME TEST_EDMS_SECOND_CODE TEST_EDMS_SECOND_DB_NAME TEST_EDMS_SYSTEM_CODE TEST_ISB5_MAIN_CODE TEST_ISB5_SECOND_CODE TEST_SQL_SERVER_2005_NAME TEST_SQL_SERVER_NAME "+"ATTENTION_CAPTION cbsCommandLinks cbsDefault CONFIRMATION_CAPTION ERROR_CAPTION INFORMATION_CAPTION mrCancel mrOk "+"EDOC_VERSION_ACTIVE_STAGE_CODE EDOC_VERSION_DESIGN_STAGE_CODE EDOC_VERSION_OBSOLETE_STAGE_CODE "+"cpDataEnciphermentEnabled cpDigitalSignatureEnabled cpID cpIssuer cpPluginVersion cpSerial cpSubjectName cpSubjSimpleName cpValidFromDate cpValidToDate "+"ISBL_SYNTAX NO_SYNTAX XML_SYNTAX "+"WAIT_BLOCK_AFTER_FINISH_EVENT WAIT_BLOCK_BEFORE_START_EVENT WAIT_BLOCK_DEADLINE_PROPERTY WAIT_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY WAIT_BLOCK_NAME_PROPERTY WAIT_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY "+"SYSRES_COMMON SYSRES_CONST SYSRES_MBFUNC SYSRES_SBDATA SYSRES_SBGUI SYSRES_SBINTF SYSRES_SBREFDSC SYSRES_SQLERRORS SYSRES_SYSCOMP ",wT="atUser atGroup atRole "+"aemEnabledAlways aemDisabledAlways aemEnabledOnBrowse aemEnabledOnEdit aemDisabledOnBrowseEmpty "+"apBegin apEnd "+"alLeft alRight "+"asmNever asmNoButCustomize asmAsLastTime asmYesButCustomize asmAlways "+"cirCommon cirRevoked "+"ctSignature ctEncode ctSignatureEncode "+"clbUnchecked clbChecked clbGrayed "+"ceISB ceAlways ceNever "+"ctDocument ctReference ctScript ctUnknown ctReport ctDialog ctFunction ctFolder ctEDocument ctTask ctJob ctNotice ctControlJob "+"cfInternal cfDisplay "+"ciUnspecified ciWrite ciRead "+"ckFolder ckEDocument ckTask ckJob ckComponentToken ckAny ckReference ckScript ckReport ckDialog "+"ctISBLEditor ctBevel ctButton ctCheckListBox ctComboBox ctComboEdit ctGrid ctDBCheckBox ctDBComboBox ctDBEdit ctDBEllipsis ctDBMemo ctDBNavigator ctDBRadioGroup ctDBStatusLabel ctEdit ctGroupBox ctInplaceHint ctMemo ctPanel ctListBox ctRadioButton ctRichEdit ctTabSheet ctWebBrowser ctImage ctHyperLink ctLabel ctDBMultiEllipsis ctRibbon ctRichView ctInnerPanel ctPanelGroup ctBitButton "+"cctDate cctInteger cctNumeric cctPick cctReference cctString cctText "+"cltInternal cltPrimary cltGUI "+"dseBeforeOpen dseAfterOpen dseBeforeClose dseAfterClose dseOnValidDelete dseBeforeDelete dseAfterDelete dseAfterDeleteOutOfTransaction dseOnDeleteError dseBeforeInsert dseAfterInsert dseOnValidUpdate dseBeforeUpdate dseOnUpdateRatifiedRecord dseAfterUpdate dseAfterUpdateOutOfTransaction dseOnUpdateError dseAfterScroll dseOnOpenRecord dseOnCloseRecord dseBeforeCancel dseAfterCancel dseOnUpdateDeadlockError dseBeforeDetailUpdate dseOnPrepareUpdate dseOnAnyRequisiteChange "+"dssEdit dssInsert dssBrowse dssInActive "+"dftDate dftShortDate dftDateTime dftTimeStamp "+"dotDays dotHours dotMinutes dotSeconds "+"dtkndLocal dtkndUTC "+"arNone arView arEdit arFull "+"ddaView ddaEdit "+"emLock emEdit emSign emExportWithLock emImportWithUnlock emChangeVersionNote emOpenForModify emChangeLifeStage emDelete emCreateVersion emImport emUnlockExportedWithLock emStart emAbort emReInit emMarkAsReaded emMarkAsUnreaded emPerform emAccept emResume emChangeRights emEditRoute emEditObserver emRecoveryFromLocalCopy emChangeWorkAccessType emChangeEncodeTypeToCertificate emChangeEncodeTypeToPassword emChangeEncodeTypeToNone emChangeEncodeTypeToCertificatePassword emChangeStandardRoute emGetText emOpenForView emMoveToStorage emCreateObject emChangeVersionHidden emDeleteVersion emChangeLifeCycleStage emApprovingSign emExport emContinue emLockFromEdit emUnLockForEdit emLockForServer emUnlockFromServer emDelegateAccessRights emReEncode "+"ecotFile ecotProcess "+"eaGet eaCopy eaCreate eaCreateStandardRoute "+"edltAll edltNothing edltQuery "+"essmText essmCard "+"esvtLast esvtLastActive esvtSpecified "+"edsfExecutive edsfArchive "+"edstSQLServer edstFile "+"edvstNone edvstEDocumentVersionCopy edvstFile edvstTemplate edvstScannedFile "+"vsDefault vsDesign vsActive vsObsolete "+"etNone etCertificate etPassword etCertificatePassword "+"ecException ecWarning ecInformation "+"estAll estApprovingOnly "+"evtLast evtLastActive evtQuery "+"fdtString fdtNumeric fdtInteger fdtDate fdtText fdtUnknown fdtWideString fdtLargeInteger "+"ftInbox ftOutbox ftFavorites ftCommonFolder ftUserFolder ftComponents ftQuickLaunch ftShortcuts ftSearch "+"grhAuto grhX1 grhX2 grhX3 "+"hltText hltRTF hltHTML "+"iffBMP iffJPEG iffMultiPageTIFF iffSinglePageTIFF iffTIFF iffPNG "+"im8bGrayscale im24bRGB im1bMonochrome "+"itBMP itJPEG itWMF itPNG "+"ikhInformation ikhWarning ikhError ikhNoIcon "+"icUnknown icScript icFunction icIntegratedReport icAnalyticReport icDataSetEventHandler icActionHandler icFormEventHandler icLookUpEventHandler icRequisiteChangeEventHandler icBeforeSearchEventHandler icRoleCalculation icSelectRouteEventHandler icBlockPropertyCalculation icBlockQueryParamsEventHandler icChangeSearchResultEventHandler icBlockEventHandler icSubTaskInitEventHandler icEDocDataSetEventHandler icEDocLookUpEventHandler icEDocActionHandler icEDocFormEventHandler icEDocRequisiteChangeEventHandler icStructuredConversionRule icStructuredConversionEventBefore icStructuredConversionEventAfter icWizardEventHandler icWizardFinishEventHandler icWizardStepEventHandler icWizardStepFinishEventHandler icWizardActionEnableEventHandler icWizardActionExecuteEventHandler icCreateJobsHandler icCreateNoticesHandler icBeforeLookUpEventHandler icAfterLookUpEventHandler icTaskAbortEventHandler icWorkflowBlockActionHandler icDialogDataSetEventHandler icDialogActionHandler icDialogLookUpEventHandler icDialogRequisiteChangeEventHandler icDialogFormEventHandler icDialogValidCloseEventHandler icBlockFormEventHandler icTaskFormEventHandler icReferenceMethod icEDocMethod icDialogMethod icProcessMessageHandler "+"isShow isHide isByUserSettings "+"jkJob jkNotice jkControlJob "+"jtInner jtLeft jtRight jtFull jtCross "+"lbpAbove lbpBelow lbpLeft lbpRight "+"eltPerConnection eltPerUser "+"sfcUndefined sfcBlack sfcGreen sfcRed sfcBlue sfcOrange sfcLilac "+"sfsItalic sfsStrikeout sfsNormal "+"ldctStandardRoute ldctWizard ldctScript ldctFunction ldctRouteBlock ldctIntegratedReport ldctAnalyticReport ldctReferenceType ldctEDocumentType ldctDialog ldctServerEvents "+"mrcrtNone mrcrtUser mrcrtMaximal mrcrtCustom "+"vtEqual vtGreaterOrEqual vtLessOrEqual vtRange "+"rdYesterday rdToday rdTomorrow rdThisWeek rdThisMonth rdThisYear rdNextMonth rdNextWeek rdLastWeek rdLastMonth "+"rdWindow rdFile rdPrinter "+"rdtString rdtNumeric rdtInteger rdtDate rdtReference rdtAccount rdtText rdtPick rdtUnknown rdtLargeInteger rdtDocument "+"reOnChange reOnChangeValues "+"ttGlobal ttLocal ttUser ttSystem "+"ssmBrowse ssmSelect ssmMultiSelect ssmBrowseModal "+"smSelect smLike smCard "+"stNone stAuthenticating stApproving "+"sctString sctStream "+"sstAnsiSort sstNaturalSort "+"svtEqual svtContain "+"soatString soatNumeric soatInteger soatDatetime soatReferenceRecord soatText soatPick soatBoolean soatEDocument soatAccount soatIntegerCollection soatNumericCollection soatStringCollection soatPickCollection soatDatetimeCollection soatBooleanCollection soatReferenceRecordCollection soatEDocumentCollection soatAccountCollection soatContents soatUnknown "+"tarAbortByUser tarAbortByWorkflowException "+"tvtAllWords tvtExactPhrase tvtAnyWord "+"usNone usCompleted usRedSquare usBlueSquare usYellowSquare usGreenSquare usOrangeSquare usPurpleSquare usFollowUp "+"utUnknown utUser utDeveloper utAdministrator utSystemDeveloper utDisconnected "+"btAnd btDetailAnd btOr btNotOr btOnly "+"vmView vmSelect vmNavigation "+"vsmSingle vsmMultiple vsmMultipleCheck vsmNoSelection "+"wfatPrevious wfatNext wfatCancel wfatFinish "+"wfepUndefined wfepText3 wfepText6 wfepText9 wfepSpinEdit wfepDropDown wfepRadioGroup wfepFlag wfepText12 wfepText15 wfepText18 wfepText21 wfepText24 wfepText27 wfepText30 wfepRadioGroupColumn1 wfepRadioGroupColumn2 wfepRadioGroupColumn3 "+"wfetQueryParameter wfetText wfetDelimiter wfetLabel "+"wptString wptInteger wptNumeric wptBoolean wptDateTime wptPick wptText wptUser wptUserList wptEDocumentInfo wptEDocumentInfoList wptReferenceRecordInfo wptReferenceRecordInfoList wptFolderInfo wptTaskInfo wptContents wptFileName wptDate "+"wsrComplete wsrGoNext wsrGoPrevious wsrCustom wsrCancel wsrGoFinal "+"wstForm wstEDocument wstTaskCard wstReferenceRecordCard wstFinal "+"waAll waPerformers waManual "+"wsbStart wsbFinish wsbNotice wsbStep wsbDecision wsbWait wsbMonitor wsbScript wsbConnector wsbSubTask wsbLifeCycleStage wsbPause "+"wdtInteger wdtFloat wdtString wdtPick wdtDateTime wdtBoolean wdtTask wdtJob wdtFolder wdtEDocument wdtReferenceRecord wdtUser wdtGroup wdtRole wdtIntegerCollection wdtFloatCollection wdtStringCollection wdtPickCollection wdtDateTimeCollection wdtBooleanCollection wdtTaskCollection wdtJobCollection wdtFolderCollection wdtEDocumentCollection wdtReferenceRecordCollection wdtUserCollection wdtGroupCollection wdtRoleCollection wdtContents wdtUserList wdtSearchDescription wdtDeadLine wdtPickSet wdtAccountCollection "+"wiLow wiNormal wiHigh "+"wrtSoft wrtHard "+"wsInit wsRunning wsDone wsControlled wsAborted wsContinued "+"wtmFull wtmFromCurrent wtmOnlyCurrent ",d_="AddSubString AdjustLineBreaks AmountInWords Analysis ArrayDimCount ArrayHighBound ArrayLowBound ArrayOf ArrayReDim Assert Assigned BeginOfMonth BeginOfPeriod BuildProfilingOperationAnalysis CallProcedure CanReadFile CArrayElement CDataSetRequisite ChangeDate ChangeReferenceDataset Char CharPos CheckParam CheckParamValue CompareStrings ConstantExists ControlState ConvertDateStr Copy CopyFile CreateArray CreateCachedReference CreateConnection CreateDialog CreateDualListDialog CreateEditor CreateException CreateFile CreateFolderDialog CreateInputDialog CreateLinkFile CreateList CreateLock CreateMemoryDataSet CreateObject CreateOpenDialog CreateProgress CreateQuery CreateReference CreateReport CreateSaveDialog CreateScript CreateSQLPivotFunction CreateStringList CreateTreeListSelectDialog CSelectSQL CSQL CSubString CurrentUserID CurrentUserName CurrentVersion DataSetLocateEx DateDiff DateTimeDiff DateToStr DayOfWeek DeleteFile DirectoryExists DisableCheckAccessRights DisableCheckFullShowingRestriction DisableMassTaskSendingRestrictions DropTable DupeString EditText EnableCheckAccessRights EnableCheckFullShowingRestriction EnableMassTaskSendingRestrictions EndOfMonth EndOfPeriod ExceptionExists ExceptionsOff ExceptionsOn Execute ExecuteProcess Exit ExpandEnvironmentVariables ExtractFileDrive ExtractFileExt ExtractFileName ExtractFilePath ExtractParams FileExists FileSize FindFile FindSubString FirmContext ForceDirectories Format FormatDate FormatNumeric FormatSQLDate FormatString FreeException GetComponent GetComponentLaunchParam GetConstant GetLastException GetReferenceRecord GetRefTypeByRefID GetTableID GetTempFolder IfThen In IndexOf InputDialog InputDialogEx InteractiveMode IsFileLocked IsGraphicFile IsNumeric Length LoadString LoadStringFmt LocalTimeToUTC LowerCase Max MessageBox MessageBoxEx MimeDecodeBinary MimeDecodeString MimeEncodeBinary MimeEncodeString Min MoneyInWords MoveFile NewID Now OpenFile Ord Precision Raise ReadCertificateFromFile ReadFile ReferenceCodeByID ReferenceNumber ReferenceRequisiteMode ReferenceRequisiteValue RegionDateSettings RegionNumberSettings RegionTimeSettings RegRead RegWrite RenameFile Replace Round SelectServerCode SelectSQL ServerDateTime SetConstant SetManagedFolderFieldsState ShowConstantsInputDialog ShowMessage Sleep Split SQL SQL2XLSTAB SQLProfilingSendReport StrToDate SubString SubStringCount SystemSetting Time TimeDiff Today Transliterate Trim UpperCase UserStatus UTCToLocalTime ValidateXML VarIsClear VarIsEmpty VarIsNull WorkTimeDiff WriteFile WriteFileEx WriteObjectHistory Анализ БазаДанных БлокЕсть БлокЕстьРасш БлокИнфо БлокСнять БлокСнятьРасш БлокУстановить Ввод ВводМеню ВедС ВедСпр ВерхняяГраницаМассива ВнешПрогр Восст ВременнаяПапка Время ВыборSQL ВыбратьЗапись ВыделитьСтр Вызвать Выполнить ВыпПрогр ГрафическийФайл ГруппаДополнительно ДатаВремяСерв ДеньНедели ДиалогДаНет ДлинаСтр ДобПодстр ЕПусто ЕслиТо ЕЧисло ЗамПодстр ЗаписьСправочника ЗначПоляСпр ИДТипСпр ИзвлечьДиск ИзвлечьИмяФайла ИзвлечьПуть ИзвлечьРасширение ИзмДат ИзменитьРазмерМассива ИзмеренийМассива ИмяОрг ИмяПоляСпр Индекс ИндикаторЗакрыть ИндикаторОткрыть ИндикаторШаг ИнтерактивныйРежим ИтогТблСпр КодВидВедСпр КодВидСпрПоИД КодПоAnalit КодСимвола КодСпр КолПодстр КолПроп КонМес Конст КонстЕсть КонстЗнач КонТран КопироватьФайл КопияСтр КПериод КСтрТблСпр Макс МаксСтрТблСпр Массив Меню МенюРасш Мин НаборДанныхНайтиРасш НаимВидСпр НаимПоAnalit НаимСпр НастроитьПереводыСтрок НачМес НачТран НижняяГраницаМассива НомерСпр НПериод Окно Окр Окружение ОтлИнфДобавить ОтлИнфУдалить Отчет ОтчетАнал ОтчетИнт ПапкаСуществует Пауза ПВыборSQL ПереименоватьФайл Переменные ПереместитьФайл Подстр ПоискПодстр ПоискСтр ПолучитьИДТаблицы ПользовательДополнительно ПользовательИД ПользовательИмя ПользовательСтатус Прервать ПроверитьПараметр ПроверитьПараметрЗнач ПроверитьУсловие РазбСтр РазнВремя РазнДат РазнДатаВремя РазнРабВремя РегУстВрем РегУстДат РегУстЧсл РедТекст РеестрЗапись РеестрСписокИменПарам РеестрЧтение РеквСпр РеквСпрПр Сегодня Сейчас Сервер СерверПроцессИД СертификатФайлСчитать СжПроб Символ СистемаДиректумКод СистемаИнформация СистемаКод Содержит СоединениеЗакрыть СоединениеОткрыть СоздатьДиалог СоздатьДиалогВыбораИзДвухСписков СоздатьДиалогВыбораПапки СоздатьДиалогОткрытияФайла СоздатьДиалогСохраненияФайла СоздатьЗапрос СоздатьИндикатор СоздатьИсключение СоздатьКэшированныйСправочник СоздатьМассив СоздатьНаборДанных СоздатьОбъект СоздатьОтчет СоздатьПапку СоздатьРедактор СоздатьСоединение СоздатьСписок СоздатьСписокСтрок СоздатьСправочник СоздатьСценарий СоздСпр СостСпр Сохр СохрСпр СписокСистем Спр Справочник СпрБлокЕсть СпрБлокСнять СпрБлокСнятьРасш СпрБлокУстановить СпрИзмНабДан СпрКод СпрНомер СпрОбновить СпрОткрыть СпрОтменить СпрПарам СпрПолеЗнач СпрПолеИмя СпрРекв СпрРеквВведЗн СпрРеквНовые СпрРеквПр СпрРеквПредЗн СпрРеквРежим СпрРеквТипТекст СпрСоздать СпрСост СпрСохранить СпрТблИтог СпрТблСтр СпрТблСтрКол СпрТблСтрМакс СпрТблСтрМин СпрТблСтрПред СпрТблСтрСлед СпрТблСтрСозд СпрТблСтрУд СпрТекПредст СпрУдалить СравнитьСтр СтрВерхРегистр СтрНижнРегистр СтрТблСпр СумПроп Сценарий СценарийПарам ТекВерсия ТекОрг Точн Тран Транслитерация УдалитьТаблицу УдалитьФайл УдСпр УдСтрТблСпр Уст УстановкиКонстант ФайлАтрибутСчитать ФайлАтрибутУстановить ФайлВремя ФайлВремяУстановить ФайлВыбрать ФайлЗанят ФайлЗаписать ФайлИскать ФайлКопировать ФайлМожноЧитать ФайлОткрыть ФайлПереименовать ФайлПерекодировать ФайлПереместить ФайлПросмотреть ФайлРазмер ФайлСоздать ФайлСсылкаСоздать ФайлСуществует ФайлСчитать ФайлУдалить ФмтSQLДат ФмтДат ФмтСтр ФмтЧсл Формат ЦМассивЭлемент ЦНаборДанныхРеквизит ЦПодстр ",tE="AltState Application CallType ComponentTokens CreatedJobs CreatedNotices ControlState DialogResult Dialogs EDocuments EDocumentVersionSource Folders GlobalIDs Job Jobs InputValue LookUpReference LookUpRequisiteNames LookUpSearch Object ParentComponent Processes References Requisite ReportName Reports Result Scripts Searches SelectedAttachments SelectedItems SelectMode Sender ServerEvents ServiceFactory ShiftState SubTask SystemDialogs Tasks Wizard Wizards Work ВызовСпособ ИмяОтчета РеквЗнач ",qu="IApplication IAccessRights IAccountRepository IAccountSelectionRestrictions IAction IActionList IAdministrationHistoryDescription IAnchors IApplication IArchiveInfo IAttachment IAttachmentList ICheckListBox ICheckPointedList IColumn IComponent IComponentDescription IComponentToken IComponentTokenFactory IComponentTokenInfo ICompRecordInfo IConnection IContents IControl IControlJob IControlJobInfo IControlList ICrypto ICrypto2 ICustomJob ICustomJobInfo ICustomListBox ICustomObjectWizardStep ICustomWork ICustomWorkInfo IDataSet IDataSetAccessInfo IDataSigner IDateCriterion IDateRequisite IDateRequisiteDescription IDateValue IDeaAccessRights IDeaObjectInfo IDevelopmentComponentLock IDialog IDialogFactory IDialogPickRequisiteItems IDialogsFactory IDICSFactory IDocRequisite IDocumentInfo IDualListDialog IECertificate IECertificateInfo IECertificates IEditControl IEditorForm IEdmsExplorer IEdmsObject IEdmsObjectDescription IEdmsObjectFactory IEdmsObjectInfo IEDocument IEDocumentAccessRights IEDocumentDescription IEDocumentEditor IEDocumentFactory IEDocumentInfo IEDocumentStorage IEDocumentVersion IEDocumentVersionListDialog IEDocumentVersionSource IEDocumentWizardStep IEDocVerSignature IEDocVersionState IEnabledMode IEncodeProvider IEncrypter IEvent IEventList IException IExternalEvents IExternalHandler IFactory IField IFileDialog IFolder IFolderDescription IFolderDialog IFolderFactory IFolderInfo IForEach IForm IFormTitle IFormWizardStep IGlobalIDFactory IGlobalIDInfo IGrid IHasher IHistoryDescription IHyperLinkControl IImageButton IImageControl IInnerPanel IInplaceHint IIntegerCriterion IIntegerList IIntegerRequisite IIntegerValue IISBLEditorForm IJob IJobDescription IJobFactory IJobForm IJobInfo ILabelControl ILargeIntegerCriterion ILargeIntegerRequisite ILargeIntegerValue ILicenseInfo ILifeCycleStage IList IListBox ILocalIDInfo ILocalization ILock IMemoryDataSet IMessagingFactory IMetadataRepository INotice INoticeInfo INumericCriterion INumericRequisite INumericValue IObject IObjectDescription IObjectImporter IObjectInfo IObserver IPanelGroup IPickCriterion IPickProperty IPickRequisite IPickRequisiteDescription IPickRequisiteItem IPickRequisiteItems IPickValue IPrivilege IPrivilegeList IProcess IProcessFactory IProcessMessage IProgress IProperty IPropertyChangeEvent IQuery IReference IReferenceCriterion IReferenceEnabledMode IReferenceFactory IReferenceHistoryDescription IReferenceInfo IReferenceRecordCardWizardStep IReferenceRequisiteDescription IReferencesFactory IReferenceValue IRefRequisite IReport IReportFactory IRequisite IRequisiteDescription IRequisiteDescriptionList IRequisiteFactory IRichEdit IRouteStep IRule IRuleList ISchemeBlock IScript IScriptFactory ISearchCriteria ISearchCriterion ISearchDescription ISearchFactory ISearchFolderInfo ISearchForObjectDescription ISearchResultRestrictions ISecuredContext ISelectDialog IServerEvent IServerEventFactory IServiceDialog IServiceFactory ISignature ISignProvider ISignProvider2 ISignProvider3 ISimpleCriterion IStringCriterion IStringList IStringRequisite IStringRequisiteDescription IStringValue ISystemDialogsFactory ISystemInfo ITabSheet ITask ITaskAbortReasonInfo ITaskCardWizardStep ITaskDescription ITaskFactory ITaskInfo ITaskRoute ITextCriterion ITextRequisite ITextValue ITreeListSelectDialog IUser IUserList IValue IView IWebBrowserControl IWizard IWizardAction IWizardFactory IWizardFormElement IWizardParam IWizardPickParam IWizardReferenceParam IWizardStep IWorkAccessRights IWorkDescription IWorkflowAskableParam IWorkflowAskableParams IWorkflowBlock IWorkflowBlockResult IWorkflowEnabledMode IWorkflowParam IWorkflowPickParam IWorkflowReferenceParam IWorkState IWorkTreeCustomNode IWorkTreeJobNode IWorkTreeTaskNode IXMLEditorForm SBCrypto ",$b=ce+wT,Mf=tE,nE="null true false nil ",Pf={className:"number",begin:t.NUMBER_RE,relevance:0},ET={className:"string",variants:[{begin:'"',end:'"'},{begin:"'",end:"'"}]},Ub={className:"doctag",begin:"\\b(?:TODO|DONE|BEGIN|END|STUB|CHG|FIXME|NOTE|BUG|XXX)\\b",relevance:0},jA={className:"comment",begin:"//",end:"$",relevance:0,contains:[t.PHRASAL_WORDS_MODE,Ub]},WA={className:"comment",begin:"/\\*",end:"\\*/",relevance:0,contains:[t.PHRASAL_WORDS_MODE,Ub]},KA={variants:[jA,WA]},f0={$pattern:r,keyword:s,built_in:$b,class:Mf,literal:nE},rU={begin:"\\.\\s*"+t.UNDERSCORE_IDENT_RE,keywords:f0,relevance:0},lK={className:"type",begin:":[ \\t]*("+qu.trim().replace(/\s/g,"|")+")",end:"[ \\t]*=",excludeEnd:!0},cK={className:"variable",keywords:f0,begin:r,relevance:0,contains:[lK,rU]},uK=a+"\\(";return{name:"ISBL",case_insensitive:!0,keywords:f0,illegal:"\\$|\\?|%|,|;$|~|#|@|)?",f="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",p={className:"meta",begin:"@"+u,contains:[{begin:/\(/,end:/\)/,contains:["self"]}]};const m=a;return{name:"Java",aliases:["jsp"],keywords:f,illegal:/<\/|#/,contains:[o.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{begin:/import java\.[a-z]+\./,keywords:"import",relevance:2},o.C_LINE_COMMENT_MODE,o.C_BLOCK_COMMENT_MODE,o.APOS_STRING_MODE,o.QUOTE_STRING_MODE,{className:"class",beginKeywords:"class interface enum",end:/[{;=]/,excludeEnd:!0,relevance:1,keywords:"class interface enum",illegal:/[:"\[\]]/,contains:[{beginKeywords:"extends implements"},o.UNDERSCORE_TITLE_MODE]},{beginKeywords:"new throw return else",relevance:0},{className:"class",begin:"record\\s+"+o.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,excludeEnd:!0,end:/[{;=]/,keywords:f,contains:[{beginKeywords:"record"},{begin:o.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[o.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/,keywords:f,relevance:0,contains:[o.C_BLOCK_COMMENT_MODE]},o.C_LINE_COMMENT_MODE,o.C_BLOCK_COMMENT_MODE]},{className:"function",begin:"("+h+"\\s+)+"+o.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:f,contains:[{begin:o.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[o.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/,keywords:f,relevance:0,contains:[p,o.APOS_STRING_MODE,o.QUOTE_STRING_MODE,m,o.C_BLOCK_COMMENT_MODE]},o.C_LINE_COMMENT_MODE,o.C_BLOCK_COMMENT_MODE]},m,p]}}return dJe=s,dJe}var fJe,smn;function Wti(){if(smn)return fJe;smn=1;const e="[A-Za-z$_][0-9A-Za-z$_]*",t=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],r=["true","false","null","undefined","NaN","Infinity"],a=["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],s=["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],o=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],u=["arguments","this","super","console","window","document","localStorage","module","global"],h=[].concat(o,u,a,s);function f(_){return _?typeof _=="string"?_:_.source:null}function p(_){return m("(?=",_,")")}function m(..._){return _.map(S=>f(S)).join("")}function b(_){const w=(Q,{after:V})=>{const j="",end:""},A={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(Q,V)=>{const j=Q[0].length+Q.index,ee=Q.input[j];if(ee==="<"){V.ignoreMatch();return}ee===">"&&(w(Q,{after:j})||V.ignoreMatch())}},k={$pattern:e,keyword:t,literal:r,built_in:h},I="[0-9](_?[0-9])*",N=`\\.(${I})`,L="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",P={className:"number",variants:[{begin:`(\\b(${L})((${N})|\\.)?|(${N}))[eE][+-]?(${I})\\b`},{begin:`\\b(${L})\\b((${N})\\b|\\.)?|(${N})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},M={className:"subst",begin:"\\$\\{",end:"\\}",keywords:k,contains:[]},F={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[_.BACKSLASH_ESCAPE,M],subLanguage:"xml"}},U={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[_.BACKSLASH_ESCAPE,M],subLanguage:"css"}},$={className:"string",begin:"`",end:"`",contains:[_.BACKSLASH_ESCAPE,M]},B={className:"comment",variants:[_.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+",contains:[{className:"type",begin:"\\{",end:"\\}",relevance:0},{className:"variable",begin:S+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),_.C_BLOCK_COMMENT_MODE,_.C_LINE_COMMENT_MODE]},Z=[_.APOS_STRING_MODE,_.QUOTE_STRING_MODE,F,U,$,P,_.REGEXP_MODE];M.contains=Z.concat({begin:/\{/,end:/\}/,keywords:k,contains:["self"].concat(Z)});const z=[].concat(B,M.contains),Y=z.concat([{begin:/\(/,end:/\)/,keywords:k,contains:["self"].concat(z)}]),W={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:k,contains:Y};return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:k,exports:{PARAMS_CONTAINS:Y},illegal:/#(?![$_A-z])/,contains:[_.SHEBANG({label:"shebang",binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},_.APOS_STRING_MODE,_.QUOTE_STRING_MODE,F,U,$,B,P,{begin:m(/[{,\n]\s*/,p(m(/(((\/\/.*$)|(\/\*(\*[^/]|[^*])*\*\/))\s*)*/,S+"\\s*:"))),relevance:0,contains:[{className:"attr",begin:S+p("\\s*:"),relevance:0}]},{begin:"("+_.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[B,_.REGEXP_MODE,{className:"function",begin:"(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+_.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:_.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:k,contains:Y}]}]},{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{variants:[{begin:C.begin,end:C.end},{begin:A.begin,"on:begin":A.isTrulyOpeningTag,end:A.end}],subLanguage:"xml",contains:[{begin:A.begin,end:A.end,skip:!0,contains:["self"]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/[{;]/,excludeEnd:!0,keywords:k,contains:["self",_.inherit(_.TITLE_MODE,{begin:S}),W],illegal:/%/},{beginKeywords:"while if switch catch for"},{className:"function",begin:_.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,contains:[W,_.inherit(_.TITLE_MODE,{begin:S})]},{variants:[{begin:"\\."+S},{begin:"\\$"+S}],relevance:0},{className:"class",beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"[\]]/,contains:[{beginKeywords:"extends"},_.UNDERSCORE_TITLE_MODE]},{begin:/\b(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[_.inherit(_.TITLE_MODE,{begin:S}),"self",W]},{begin:"(get|set)\\s+(?="+S+"\\()",end:/\{/,keywords:"get set",contains:[_.inherit(_.TITLE_MODE,{begin:S}),{begin:/\(\)/},W]},{begin:/\$[(.]/}]}}return fJe=b,fJe}var pJe,omn;function Kti(){if(omn)return pJe;omn=1;function e(t){const a={className:"params",begin:/\(/,end:/\)/,contains:[{begin:/[\w-]+ *=/,returnBegin:!0,relevance:0,contains:[{className:"attr",begin:/[\w-]+/}]}],relevance:0},s={className:"function",begin:/:[\w\-.]+/,relevance:0},o={className:"string",begin:/\B([\/.])[\w\-.\/=]+/},u={className:"params",begin:/--[\w\-=\/]+/};return{name:"JBoss CLI",aliases:["wildfly-cli"],keywords:{$pattern:"[a-z-]+",keyword:"alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source",literal:"true false"},contains:[t.HASH_COMMENT_MODE,t.QUOTE_STRING_MODE,u,s,o,a]}}return pJe=e,pJe}var gJe,lmn;function Xti(){if(lmn)return gJe;lmn=1;function e(t){const r={literal:"true false null"},a=[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE],s=[t.QUOTE_STRING_MODE,t.C_NUMBER_MODE],o={end:",",endsWithParent:!0,excludeEnd:!0,contains:s,keywords:r},u={begin:/\{/,end:/\}/,contains:[{className:"attr",begin:/"/,end:/"/,contains:[t.BACKSLASH_ESCAPE],illegal:"\\n"},t.inherit(o,{begin:/:/})].concat(a),illegal:"\\S"},h={begin:"\\[",end:"\\]",contains:[t.inherit(o)],illegal:"\\S"};return s.push(u,h),a.forEach(function(f){s.push(f)}),{name:"JSON",contains:s,keywords:r,illegal:"\\S"}}return gJe=e,gJe}var mJe,cmn;function Qti(){if(cmn)return mJe;cmn=1;function e(t){var r="[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*",a=["baremodule","begin","break","catch","ccall","const","continue","do","else","elseif","end","export","false","finally","for","function","global","if","import","in","isa","let","local","macro","module","quote","return","true","try","using","where","while"],s=["ARGS","C_NULL","DEPOT_PATH","ENDIAN_BOM","ENV","Inf","Inf16","Inf32","Inf64","InsertionSort","LOAD_PATH","MergeSort","NaN","NaN16","NaN32","NaN64","PROGRAM_FILE","QuickSort","RoundDown","RoundFromZero","RoundNearest","RoundNearestTiesAway","RoundNearestTiesUp","RoundToZero","RoundUp","VERSION|0","devnull","false","im","missing","nothing","pi","stderr","stdin","stdout","true","undef","π","ℯ"],o=["AbstractArray","AbstractChannel","AbstractChar","AbstractDict","AbstractDisplay","AbstractFloat","AbstractIrrational","AbstractMatrix","AbstractRange","AbstractSet","AbstractString","AbstractUnitRange","AbstractVecOrMat","AbstractVector","Any","ArgumentError","Array","AssertionError","BigFloat","BigInt","BitArray","BitMatrix","BitSet","BitVector","Bool","BoundsError","CapturedException","CartesianIndex","CartesianIndices","Cchar","Cdouble","Cfloat","Channel","Char","Cint","Cintmax_t","Clong","Clonglong","Cmd","Colon","Complex","ComplexF16","ComplexF32","ComplexF64","CompositeException","Condition","Cptrdiff_t","Cshort","Csize_t","Cssize_t","Cstring","Cuchar","Cuint","Cuintmax_t","Culong","Culonglong","Cushort","Cvoid","Cwchar_t","Cwstring","DataType","DenseArray","DenseMatrix","DenseVecOrMat","DenseVector","Dict","DimensionMismatch","Dims","DivideError","DomainError","EOFError","Enum","ErrorException","Exception","ExponentialBackOff","Expr","Float16","Float32","Float64","Function","GlobalRef","HTML","IO","IOBuffer","IOContext","IOStream","IdDict","IndexCartesian","IndexLinear","IndexStyle","InexactError","InitError","Int","Int128","Int16","Int32","Int64","Int8","Integer","InterruptException","InvalidStateException","Irrational","KeyError","LinRange","LineNumberNode","LinearIndices","LoadError","MIME","Matrix","Method","MethodError","Missing","MissingException","Module","NTuple","NamedTuple","Nothing","Number","OrdinalRange","OutOfMemoryError","OverflowError","Pair","PartialQuickSort","PermutedDimsArray","Pipe","ProcessFailedException","Ptr","QuoteNode","Rational","RawFD","ReadOnlyMemoryError","Real","ReentrantLock","Ref","Regex","RegexMatch","RoundingMode","SegmentationFault","Set","Signed","Some","StackOverflowError","StepRange","StepRangeLen","StridedArray","StridedMatrix","StridedVecOrMat","StridedVector","String","StringIndexError","SubArray","SubString","SubstitutionString","Symbol","SystemError","Task","TaskFailedException","Text","TextDisplay","Timer","Tuple","Type","TypeError","TypeVar","UInt","UInt128","UInt16","UInt32","UInt64","UInt8","UndefInitializer","UndefKeywordError","UndefRefError","UndefVarError","Union","UnionAll","UnitRange","Unsigned","Val","Vararg","VecElement","VecOrMat","Vector","VersionNumber","WeakKeyDict","WeakRef"],u={$pattern:r,keyword:a,literal:s,built_in:o},h={keywords:u,illegal:/<\//},f={className:"number",begin:/(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,relevance:0},p={className:"string",begin:/'(.|\\[xXuU][a-zA-Z0-9]+)'/},m={className:"subst",begin:/\$\(/,end:/\)/,keywords:u},b={className:"variable",begin:"\\$"+r},_={className:"string",contains:[t.BACKSLASH_ESCAPE,m,b],variants:[{begin:/\w*"""/,end:/"""\w*/,relevance:10},{begin:/\w*"/,end:/"\w*/}]},w={className:"string",contains:[t.BACKSLASH_ESCAPE,m,b],begin:"`",end:"`"},S={className:"meta",begin:"@"+r},C={className:"comment",variants:[{begin:"#=",end:"=#",relevance:10},{begin:"#",end:"$"}]};return h.name="Julia",h.contains=[f,p,_,w,S,C,t.HASH_COMMENT_MODE,{className:"keyword",begin:"\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b"},{begin:/<:/}],m.contains=h.contains,h}return mJe=e,mJe}var bJe,umn;function Zti(){if(umn)return bJe;umn=1;function e(t){return{name:"Julia REPL",contains:[{className:"meta",begin:/^julia>/,relevance:10,starts:{end:/^(?![ ]{6})/,subLanguage:"julia"},aliases:["jldoctest"]}]}}return bJe=e,bJe}var yJe,hmn;function Jti(){if(hmn)return yJe;hmn=1;var e="[0-9](_*[0-9])*",t=`\\.(${e})`,r="[0-9a-fA-F](_*[0-9a-fA-F])*",a={className:"number",variants:[{begin:`(\\b(${e})((${t})|\\.)?|(${t}))[eE][+-]?(${e})[fFdD]?\\b`},{begin:`\\b(${e})((${t})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${t})[fFdD]?\\b`},{begin:`\\b(${e})[fFdD]\\b`},{begin:`\\b0[xX]((${r})\\.?|(${r})?\\.(${r}))[pP][+-]?(${e})[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${r})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};function s(o){const u={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},h={className:"keyword",begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",begin:/@\w+/}]}},f={className:"symbol",begin:o.UNDERSCORE_IDENT_RE+"@"},p={className:"subst",begin:/\$\{/,end:/\}/,contains:[o.C_NUMBER_MODE]},m={className:"variable",begin:"\\$"+o.UNDERSCORE_IDENT_RE},b={className:"string",variants:[{begin:'"""',end:'"""(?=[^"])',contains:[m,p]},{begin:"'",end:"'",illegal:/\n/,contains:[o.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,contains:[o.BACKSLASH_ESCAPE,m,p]}]};p.contains.push(b);const _={className:"meta",begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+o.UNDERSCORE_IDENT_RE+")?"},w={className:"meta",begin:"@"+o.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[o.inherit(b,{className:"meta-string"})]}]},S=a,C=o.COMMENT("/\\*","\\*/",{contains:[o.C_BLOCK_COMMENT_MODE]}),A={variants:[{className:"type",begin:o.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},k=A;return k.variants[1].contains=[A],A.variants[1].contains=[k],{name:"Kotlin",aliases:["kt","kts"],keywords:u,contains:[o.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),o.C_LINE_COMMENT_MODE,C,h,f,_,w,{className:"function",beginKeywords:"fun",end:"[(]|$",returnBegin:!0,excludeEnd:!0,keywords:u,relevance:5,contains:[{begin:o.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[o.UNDERSCORE_TITLE_MODE]},{className:"type",begin://,keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:u,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[A,o.C_LINE_COMMENT_MODE,C],relevance:0},o.C_LINE_COMMENT_MODE,C,_,w,b,o.C_NUMBER_MODE]},C]},{className:"class",beginKeywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,illegal:"extends implements",contains:[{beginKeywords:"public protected internal private constructor"},o.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,]|$/,excludeBegin:!0,returnEnd:!0},_,w]},b,{className:"meta",begin:"^#!/usr/bin/env",end:"$",illegal:` +`},S]}}return yJe=s,yJe}var vJe,dmn;function eni(){if(dmn)return vJe;dmn=1;function e(t){const r="[a-zA-Z_][\\w.]*",a="<\\?(lasso(script)?|=)",s="\\]|\\?>",o={$pattern:r+"|&[lg]t;",literal:"true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft",built_in:"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock",keyword:"cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else fail_if fail_ifnot fail if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome"},u=t.COMMENT("",{relevance:0}),h={className:"meta",begin:"\\[noprocess\\]",starts:{end:"\\[/noprocess\\]",returnEnd:!0,contains:[u]}},f={className:"meta",begin:"\\[/noprocess|"+a},p={className:"symbol",begin:"'"+r+"'"},m=[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.inherit(t.C_NUMBER_MODE,{begin:t.C_NUMBER_RE+"|(-?infinity|NaN)\\b"}),t.inherit(t.APOS_STRING_MODE,{illegal:null}),t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),{className:"string",begin:"`",end:"`"},{variants:[{begin:"[#$]"+r},{begin:"#",end:"\\d+",illegal:"\\W"}]},{className:"type",begin:"::\\s*",end:r,illegal:"\\W"},{className:"params",variants:[{begin:"-(?!infinity)"+r,relevance:0},{begin:"(\\.\\.\\.)"}]},{begin:/(->|\.)\s*/,relevance:0,contains:[p]},{className:"class",beginKeywords:"define",returnEnd:!0,end:"\\(|=>",contains:[t.inherit(t.TITLE_MODE,{begin:r+"(=(?!>))?|[-+*/%](?!>)"})]}];return{name:"Lasso",aliases:["ls","lassoscript"],case_insensitive:!0,keywords:o,contains:[{className:"meta",begin:s,relevance:0,starts:{end:"\\[|"+a,returnEnd:!0,relevance:0,contains:[u]}},h,f,{className:"meta",begin:"\\[no_square_brackets",starts:{end:"\\[/no_square_brackets\\]",keywords:o,contains:[{className:"meta",begin:s,relevance:0,starts:{end:"\\[noprocess\\]|"+a,returnEnd:!0,contains:[u]}},h,f].concat(m)}},{className:"meta",begin:"\\[",relevance:0},{className:"meta",begin:"^#!",end:"lasso9$",relevance:10}].concat(m)}}return vJe=e,vJe}var _Je,fmn;function tni(){if(fmn)return _Je;fmn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return"("+a.map(o=>e(o)).join("|")+")"}function r(a){const s=t(...["(?:NeedsTeXFormat|RequirePackage|GetIdInfo)","Provides(?:Expl)?(?:Package|Class|File)","(?:DeclareOption|ProcessOptions)","(?:documentclass|usepackage|input|include)","makeat(?:letter|other)","ExplSyntax(?:On|Off)","(?:new|renew|provide)?command","(?:re)newenvironment","(?:New|Renew|Provide|Declare)(?:Expandable)?DocumentCommand","(?:New|Renew|Provide|Declare)DocumentEnvironment","(?:(?:e|g|x)?def|let)","(?:begin|end)","(?:part|chapter|(?:sub){0,2}section|(?:sub)?paragraph)","caption","(?:label|(?:eq|page|name)?ref|(?:paren|foot|super)?cite)","(?:alpha|beta|[Gg]amma|[Dd]elta|(?:var)?epsilon|zeta|eta|[Tt]heta|vartheta)","(?:iota|(?:var)?kappa|[Ll]ambda|mu|nu|[Xx]i|[Pp]i|varpi|(?:var)rho)","(?:[Ss]igma|varsigma|tau|[Uu]psilon|[Pp]hi|varphi|chi|[Pp]si|[Oo]mega)","(?:frac|sum|prod|lim|infty|times|sqrt|leq|geq|left|right|middle|[bB]igg?)","(?:[lr]angle|q?quad|[lcvdi]?dots|d?dot|hat|tilde|bar)"].map(Z=>Z+"(?![a-zA-Z@:_])")),o=new RegExp(["(?:__)?[a-zA-Z]{2,}_[a-zA-Z](?:_?[a-zA-Z])+:[a-zA-Z]*","[lgc]__?[a-zA-Z](?:_?[a-zA-Z])*_[a-zA-Z]{2,}","[qs]__?[a-zA-Z](?:_?[a-zA-Z])+","use(?:_i)?:[a-zA-Z]*","(?:else|fi|or):","(?:if|cs|exp):w","(?:hbox|vbox):n","::[a-zA-Z]_unbraced","::[a-zA-Z:]"].map(Z=>Z+"(?![a-zA-Z:_])").join("|")),u=[{begin:/[a-zA-Z@]+/},{begin:/[^a-zA-Z@]?/}],h=[{begin:/\^{6}[0-9a-f]{6}/},{begin:/\^{5}[0-9a-f]{5}/},{begin:/\^{4}[0-9a-f]{4}/},{begin:/\^{3}[0-9a-f]{3}/},{begin:/\^{2}[0-9a-f]{2}/},{begin:/\^{2}[\u0000-\u007f]/}],f={className:"keyword",begin:/\\/,relevance:0,contains:[{endsParent:!0,begin:s},{endsParent:!0,begin:o},{endsParent:!0,variants:h},{endsParent:!0,relevance:0,variants:u}]},p={className:"params",relevance:0,begin:/#+\d?/},m={variants:h},b={className:"built_in",relevance:0,begin:/[$&^_]/},_={className:"meta",begin:"% !TeX",end:"$",relevance:10},w=a.COMMENT("%","$",{relevance:0}),S=[f,p,m,b,_,w],C={begin:/\{/,end:/\}/,relevance:0,contains:["self",...S]},A=a.inherit(C,{relevance:0,endsParent:!0,contains:[C,...S]}),k={begin:/\[/,end:/\]/,endsParent:!0,relevance:0,contains:[C,...S]},I={begin:/\s+/,relevance:0},N=[A],L=[k],P=function(Z,z){return{contains:[I],starts:{relevance:0,contains:Z,starts:z}}},M=function(Z,z){return{begin:"\\\\"+Z+"(?![a-zA-Z@:_])",keywords:{$pattern:/\\[a-zA-Z]+/,keyword:"\\"+Z},relevance:0,contains:[I],starts:z}},F=function(Z,z){return a.inherit({begin:"\\\\begin(?=[ ]*(\\r?\\n[ ]*)?\\{"+Z+"\\})",keywords:{$pattern:/\\[a-zA-Z]+/,keyword:"\\begin"},relevance:0},P(N,z))},U=(Z="string")=>a.END_SAME_AS_BEGIN({className:Z,begin:/(.|\r?\n)/,end:/(.|\r?\n)/,excludeBegin:!0,excludeEnd:!0,endsParent:!0}),$=function(Z){return{className:"string",end:"(?=\\\\end\\{"+Z+"\\})"}},G=(Z="string")=>({relevance:0,begin:/\{/,starts:{endsParent:!0,contains:[{className:Z,end:/(?=\})/,endsParent:!0,contains:[{begin:/\{/,end:/\}/,relevance:0,contains:["self"]}]}]}}),B=[...["verb","lstinline"].map(Z=>M(Z,{contains:[U()]})),M("mint",P(N,{contains:[U()]})),M("mintinline",P(N,{contains:[G(),U()]})),M("url",{contains:[G("link"),G("link")]}),M("hyperref",{contains:[G("link")]}),M("href",P(L,{contains:[G("link")]})),...[].concat(...["","\\*"].map(Z=>[F("verbatim"+Z,$("verbatim"+Z)),F("filecontents"+Z,P(N,$("filecontents"+Z))),...["","B","L"].map(z=>F(z+"Verbatim"+Z,P(L,$(z+"Verbatim"+Z))))])),F("minted",P(L,P(N,$("minted"))))];return{name:"LaTeX",aliases:["tex"],contains:[...B,...S]}}return _Je=r,_Je}var wJe,pmn;function nni(){if(pmn)return wJe;pmn=1;function e(t){return{name:"LDIF",contains:[{className:"attribute",begin:"^dn",end:": ",excludeEnd:!0,starts:{end:"$",relevance:0},relevance:10},{className:"attribute",begin:"^\\w",end:": ",excludeEnd:!0,starts:{end:"$",relevance:0}},{className:"literal",begin:"^-",end:"$"},t.HASH_COMMENT_MODE]}}return wJe=e,wJe}var EJe,gmn;function rni(){if(gmn)return EJe;gmn=1;function e(t){return{name:"Leaf",contains:[{className:"function",begin:"#+[A-Za-z_0-9]*\\(",end:/ \{/,returnBegin:!0,excludeEnd:!0,contains:[{className:"keyword",begin:"#+"},{className:"title",begin:"[A-Za-z_][A-Za-z_0-9]*"},{className:"params",begin:"\\(",end:"\\)",endsParent:!0,contains:[{className:"string",begin:'"',end:'"'},{className:"variable",begin:"[A-Za-z_][A-Za-z_0-9]*"}]}]}]}}return EJe=e,EJe}var xJe,mmn;function ini(){if(mmn)return xJe;mmn=1;const e=f=>({IMPORTANT:{className:"meta",begin:"!important"},HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[f.APOS_STRING_MODE,f.QUOTE_STRING_MODE]}}),t=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],r=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],a=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],s=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],o=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse(),u=a.concat(s);function h(f){const p=e(f),m=u,b="and or not only",_="[\\w-]+",w="("+_+"|@\\{"+_+"\\})",S=[],C=[],A=function(B){return{className:"string",begin:"~?"+B+".*?"+B}},k=function(B,Z,z){return{className:B,begin:Z,relevance:z}},I={$pattern:/[a-z-]+/,keyword:b,attribute:r.join(" ")},N={begin:"\\(",end:"\\)",contains:C,keywords:I,relevance:0};C.push(f.C_LINE_COMMENT_MODE,f.C_BLOCK_COMMENT_MODE,A("'"),A('"'),f.CSS_NUMBER_MODE,{begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",excludeEnd:!0}},p.HEXCOLOR,N,k("variable","@@?"+_,10),k("variable","@\\{"+_+"\\}"),k("built_in","~?`[^`]*?`"),{className:"attribute",begin:_+"\\s*:",end:":",returnBegin:!0,excludeEnd:!0},p.IMPORTANT);const L=C.concat({begin:/\{/,end:/\}/,contains:S}),P={beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"}].concat(C)},M={begin:w+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/},{className:"attribute",begin:"\\b("+o.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:C}}]},F={className:"keyword",begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{end:"[;{}]",keywords:I,returnEnd:!0,contains:C,relevance:0}},U={className:"variable",variants:[{begin:"@"+_+"\\s*:",relevance:15},{begin:"@"+_}],starts:{end:"[;}]",returnEnd:!0,contains:L}},$={variants:[{begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:w,end:/\{/}],returnBegin:!0,returnEnd:!0,illegal:`[<='$"]`,relevance:0,contains:[f.C_LINE_COMMENT_MODE,f.C_BLOCK_COMMENT_MODE,P,k("keyword","all\\b"),k("variable","@\\{"+_+"\\}"),{begin:"\\b("+t.join("|")+")\\b",className:"selector-tag"},k("selector-tag",w+"%?",0),k("selector-id","#"+w),k("selector-class","\\."+w,0),k("selector-tag","&",0),p.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",begin:":("+a.join("|")+")"},{className:"selector-pseudo",begin:"::("+s.join("|")+")"},{begin:"\\(",end:"\\)",contains:L},{begin:"!important"}]},G={begin:_+`:(:)?(${m.join("|")})`,returnBegin:!0,contains:[$]};return S.push(f.C_LINE_COMMENT_MODE,f.C_BLOCK_COMMENT_MODE,F,U,G,M,$),{name:"Less",case_insensitive:!0,illegal:`[=>'/<($"]`,contains:S}}return xJe=h,xJe}var SJe,bmn;function ani(){if(bmn)return SJe;bmn=1;function e(t){var r="[a-zA-Z_\\-+\\*\\/<=>&#][a-zA-Z0-9_\\-+*\\/<=>&#!]*",a="\\|[^]*?\\|",s="(-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|-)?\\d+)?",o={className:"literal",begin:"\\b(t{1}|nil)\\b"},u={className:"number",variants:[{begin:s,relevance:0},{begin:"#(b|B)[0-1]+(/[0-1]+)?"},{begin:"#(o|O)[0-7]+(/[0-7]+)?"},{begin:"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?"},{begin:"#(c|C)\\("+s+" +"+s,end:"\\)"}]},h=t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),f=t.COMMENT(";","$",{relevance:0}),p={begin:"\\*",end:"\\*"},m={className:"symbol",begin:"[:&]"+r},b={begin:r,relevance:0},_={begin:a},w={begin:"\\(",end:"\\)",contains:["self",o,h,u,b]},S={contains:[u,h,p,m,w,b],variants:[{begin:"['`]\\(",end:"\\)"},{begin:"\\(quote ",end:"\\)",keywords:{name:"quote"}},{begin:"'"+a}]},C={variants:[{begin:"'"+r},{begin:"#'"+r+"(::"+r+")*"}]},A={begin:"\\(\\s*",end:"\\)"},k={endsWithParent:!0,relevance:0};return A.contains=[{className:"name",variants:[{begin:r,relevance:0},{begin:a}]},k],k.contains=[S,C,A,o,u,h,f,p,m,_,b],{name:"Lisp",illegal:/\S/,contains:[u,t.SHEBANG(),o,h,f,S,C,A,b]}}return SJe=e,SJe}var TJe,ymn;function sni(){if(ymn)return TJe;ymn=1;function e(t){const r={className:"variable",variants:[{begin:"\\b([gtps][A-Z]{1}[a-zA-Z0-9]*)(\\[.+\\])?(?:\\s*?)"},{begin:"\\$_[A-Z]+"}],relevance:0},a=[t.C_BLOCK_COMMENT_MODE,t.HASH_COMMENT_MODE,t.COMMENT("--","$"),t.COMMENT("[^:]//","$")],s=t.inherit(t.TITLE_MODE,{variants:[{begin:"\\b_*rig[A-Z][A-Za-z0-9_\\-]*"},{begin:"\\b_[a-z0-9\\-]+"}]}),o=t.inherit(t.TITLE_MODE,{begin:"\\b([A-Za-z0-9_\\-]+)\\b"});return{name:"LiveCode",case_insensitive:!1,keywords:{keyword:"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys",literal:"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK",built_in:"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress difference directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge messageAuthenticationCode messageDigest millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetDriver libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load extension loadedExtensions multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract symmetric union unload vectorDotProduct wait write"},contains:[r,{className:"keyword",begin:"\\bend\\sif\\b"},{className:"function",beginKeywords:"function",end:"$",contains:[r,o,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,t.BINARY_NUMBER_MODE,t.C_NUMBER_MODE,s]},{className:"function",begin:"\\bend\\s+",end:"$",keywords:"end",contains:[o,s],relevance:0},{beginKeywords:"command on",end:"$",contains:[r,o,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,t.BINARY_NUMBER_MODE,t.C_NUMBER_MODE,s]},{className:"meta",variants:[{begin:"<\\?(rev|lc|livecode)",relevance:10},{begin:"<\\?"},{begin:"\\?>"}]},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,t.BINARY_NUMBER_MODE,t.C_NUMBER_MODE,s].concat(a),illegal:";$|^\\[|^=|&|\\{"}}return TJe=e,TJe}var CJe,vmn;function oni(){if(vmn)return CJe;vmn=1;const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],t=["true","false","null","undefined","NaN","Infinity"],r=["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],a=["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],s=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],o=["arguments","this","super","console","window","document","localStorage","module","global"],u=[].concat(s,o,r,a);function h(f){const p=["npm","print"],m=["yes","no","on","off","it","that","void"],b=["then","unless","until","loop","of","by","when","and","or","is","isnt","not","it","that","otherwise","from","to","til","fallthrough","case","enum","native","list","map","__hasProp","__extends","__slice","__bind","__indexOf"],_={keyword:e.concat(b),literal:t.concat(m),built_in:u.concat(p)},w="[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*",S=f.inherit(f.TITLE_MODE,{begin:w}),C={className:"subst",begin:/#\{/,end:/\}/,keywords:_},A={className:"subst",begin:/#[A-Za-z$_]/,end:/(?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,keywords:_},k=[f.BINARY_NUMBER_MODE,{className:"number",begin:"(\\b0[xX][a-fA-F0-9_]+)|(\\b\\d(\\d|_\\d)*(\\.(\\d(\\d|_\\d)*)?)?(_*[eE]([-+]\\d(_\\d|\\d)*)?)?[_a-z]*)",relevance:0,starts:{end:"(\\s*/)?",relevance:0}},{className:"string",variants:[{begin:/'''/,end:/'''/,contains:[f.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[f.BACKSLASH_ESCAPE]},{begin:/"""/,end:/"""/,contains:[f.BACKSLASH_ESCAPE,C,A]},{begin:/"/,end:/"/,contains:[f.BACKSLASH_ESCAPE,C,A]},{begin:/\\/,end:/(\s|$)/,excludeEnd:!0}]},{className:"regexp",variants:[{begin:"//",end:"//[gim]*",contains:[C,f.HASH_COMMENT_MODE]},{begin:/\/(?![ *])(\\.|[^\\\n])*?\/[gim]*(?=\W)/}]},{begin:"@"+w},{begin:"``",end:"``",excludeBegin:!0,excludeEnd:!0,subLanguage:"javascript"}];C.contains=k;const I={className:"params",begin:"\\(",returnBegin:!0,contains:[{begin:/\(/,end:/\)/,keywords:_,contains:["self"].concat(k)}]},N={begin:"(#=>|=>|\\|>>|-?->|!->)"};return{name:"LiveScript",aliases:["ls"],keywords:_,illegal:/\/\*/,contains:k.concat([f.COMMENT("\\/\\*","\\*\\/"),f.HASH_COMMENT_MODE,N,{className:"function",contains:[S,I],returnBegin:!0,variants:[{begin:"("+w+"\\s*(?:=|:=)\\s*)?(\\(.*\\)\\s*)?\\B->\\*?",end:"->\\*?"},{begin:"("+w+"\\s*(?:=|:=)\\s*)?!?(\\(.*\\)\\s*)?\\B[-~]{1,2}>\\*?",end:"[-~]{1,2}>\\*?"},{begin:"("+w+"\\s*(?:=|:=)\\s*)?(\\(.*\\)\\s*)?\\B!?[-~]{1,2}>\\*?",end:"!?[-~]{1,2}>\\*?"}]},{className:"class",beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[S]},S]},{begin:w+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}])}}return CJe=h,CJe}var AJe,_mn;function lni(){if(_mn)return AJe;_mn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s=/([-a-zA-Z$._][\w$.-]*)/,o={className:"type",begin:/\bi\d+(?=\s|\b)/},u={className:"operator",relevance:0,begin:/=/},h={className:"punctuation",relevance:0,begin:/,/},f={className:"number",variants:[{begin:/0[xX][a-fA-F0-9]+/},{begin:/-?\d+(?:[.]\d+)?(?:[eE][-+]?\d+(?:[.]\d+)?)?/}],relevance:0},p={className:"symbol",variants:[{begin:/^\s*[a-z]+:/}],relevance:0},m={className:"variable",variants:[{begin:t(/%/,s)},{begin:/%\d+/},{begin:/#\d+/}]},b={className:"title",variants:[{begin:t(/@/,s)},{begin:/@\d+/},{begin:t(/!/,s)},{begin:t(/!\d+/,s)},{begin:/!\d+/}]};return{name:"LLVM IR",keywords:"begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double",contains:[o,a.COMMENT(/;\s*$/,null,{relevance:0}),a.COMMENT(/;/,/$/),a.QUOTE_STRING_MODE,{className:"string",variants:[{begin:/"/,end:/[^\\]"/}]},b,h,u,m,p,f]}}return AJe=r,AJe}var kJe,wmn;function cni(){if(wmn)return kJe;wmn=1;function e(t){var r={className:"subst",begin:/\\[tn"\\]/},a={className:"string",begin:'"',end:'"',contains:[r]},s={className:"number",relevance:0,begin:t.C_NUMBER_RE},o={className:"literal",variants:[{begin:"\\b(PI|TWO_PI|PI_BY_TWO|DEG_TO_RAD|RAD_TO_DEG|SQRT2)\\b"},{begin:"\\b(XP_ERROR_(EXPERIENCES_DISABLED|EXPERIENCE_(DISABLED|SUSPENDED)|INVALID_(EXPERIENCE|PARAMETERS)|KEY_NOT_FOUND|MATURITY_EXCEEDED|NONE|NOT_(FOUND|PERMITTED(_LAND)?)|NO_EXPERIENCE|QUOTA_EXCEEDED|RETRY_UPDATE|STORAGE_EXCEPTION|STORE_DISABLED|THROTTLED|UNKNOWN_ERROR)|JSON_APPEND|STATUS_(PHYSICS|ROTATE_[XYZ]|PHANTOM|SANDBOX|BLOCK_GRAB(_OBJECT)?|(DIE|RETURN)_AT_EDGE|CAST_SHADOWS|OK|MALFORMED_PARAMS|TYPE_MISMATCH|BOUNDS_ERROR|NOT_(FOUND|SUPPORTED)|INTERNAL_ERROR|WHITELIST_FAILED)|AGENT(_(BY_(LEGACY_|USER)NAME|FLYING|ATTACHMENTS|SCRIPTED|MOUSELOOK|SITTING|ON_OBJECT|AWAY|WALKING|IN_AIR|TYPING|CROUCHING|BUSY|ALWAYS_RUN|AUTOPILOT|LIST_(PARCEL(_OWNER)?|REGION)))?|CAMERA_(PITCH|DISTANCE|BEHINDNESS_(ANGLE|LAG)|(FOCUS|POSITION)(_(THRESHOLD|LOCKED|LAG))?|FOCUS_OFFSET|ACTIVE)|ANIM_ON|LOOP|REVERSE|PING_PONG|SMOOTH|ROTATE|SCALE|ALL_SIDES|LINK_(ROOT|SET|ALL_(OTHERS|CHILDREN)|THIS)|ACTIVE|PASS(IVE|_(ALWAYS|IF_NOT_HANDLED|NEVER))|SCRIPTED|CONTROL_(FWD|BACK|(ROT_)?(LEFT|RIGHT)|UP|DOWN|(ML_)?LBUTTON)|PERMISSION_(RETURN_OBJECTS|DEBIT|OVERRIDE_ANIMATIONS|SILENT_ESTATE_MANAGEMENT|TAKE_CONTROLS|TRIGGER_ANIMATION|ATTACH|CHANGE_LINKS|(CONTROL|TRACK)_CAMERA|TELEPORT)|INVENTORY_(TEXTURE|SOUND|OBJECT|SCRIPT|LANDMARK|CLOTHING|NOTECARD|BODYPART|ANIMATION|GESTURE|ALL|NONE)|CHANGED_(INVENTORY|COLOR|SHAPE|SCALE|TEXTURE|LINK|ALLOWED_DROP|OWNER|REGION(_START)?|TELEPORT|MEDIA)|OBJECT_(CLICK_ACTION|HOVER_HEIGHT|LAST_OWNER_ID|(PHYSICS|SERVER|STREAMING)_COST|UNKNOWN_DETAIL|CHARACTER_TIME|PHANTOM|PHYSICS|TEMP_(ATTACHED|ON_REZ)|NAME|DESC|POS|PRIM_(COUNT|EQUIVALENCE)|RETURN_(PARCEL(_OWNER)?|REGION)|REZZER_KEY|ROO?T|VELOCITY|OMEGA|OWNER|GROUP(_TAG)?|CREATOR|ATTACHED_(POINT|SLOTS_AVAILABLE)|RENDER_WEIGHT|(BODY_SHAPE|PATHFINDING)_TYPE|(RUNNING|TOTAL)_SCRIPT_COUNT|TOTAL_INVENTORY_COUNT|SCRIPT_(MEMORY|TIME))|TYPE_(INTEGER|FLOAT|STRING|KEY|VECTOR|ROTATION|INVALID)|(DEBUG|PUBLIC)_CHANNEL|ATTACH_(AVATAR_CENTER|CHEST|HEAD|BACK|PELVIS|MOUTH|CHIN|NECK|NOSE|BELLY|[LR](SHOULDER|HAND|FOOT|EAR|EYE|[UL](ARM|LEG)|HIP)|(LEFT|RIGHT)_PEC|HUD_(CENTER_[12]|TOP_(RIGHT|CENTER|LEFT)|BOTTOM(_(RIGHT|LEFT))?)|[LR]HAND_RING1|TAIL_(BASE|TIP)|[LR]WING|FACE_(JAW|[LR]EAR|[LR]EYE|TOUNGE)|GROIN|HIND_[LR]FOOT)|LAND_(LEVEL|RAISE|LOWER|SMOOTH|NOISE|REVERT)|DATA_(ONLINE|NAME|BORN|SIM_(POS|STATUS|RATING)|PAYINFO)|PAYMENT_INFO_(ON_FILE|USED)|REMOTE_DATA_(CHANNEL|REQUEST|REPLY)|PSYS_(PART_(BF_(ZERO|ONE(_MINUS_(DEST_COLOR|SOURCE_(ALPHA|COLOR)))?|DEST_COLOR|SOURCE_(ALPHA|COLOR))|BLEND_FUNC_(DEST|SOURCE)|FLAGS|(START|END)_(COLOR|ALPHA|SCALE|GLOW)|MAX_AGE|(RIBBON|WIND|INTERP_(COLOR|SCALE)|BOUNCE|FOLLOW_(SRC|VELOCITY)|TARGET_(POS|LINEAR)|EMISSIVE)_MASK)|SRC_(MAX_AGE|PATTERN|ANGLE_(BEGIN|END)|BURST_(RATE|PART_COUNT|RADIUS|SPEED_(MIN|MAX))|ACCEL|TEXTURE|TARGET_KEY|OMEGA|PATTERN_(DROP|EXPLODE|ANGLE(_CONE(_EMPTY)?)?)))|VEHICLE_(REFERENCE_FRAME|TYPE_(NONE|SLED|CAR|BOAT|AIRPLANE|BALLOON)|(LINEAR|ANGULAR)_(FRICTION_TIMESCALE|MOTOR_DIRECTION)|LINEAR_MOTOR_OFFSET|HOVER_(HEIGHT|EFFICIENCY|TIMESCALE)|BUOYANCY|(LINEAR|ANGULAR)_(DEFLECTION_(EFFICIENCY|TIMESCALE)|MOTOR_(DECAY_)?TIMESCALE)|VERTICAL_ATTRACTION_(EFFICIENCY|TIMESCALE)|BANKING_(EFFICIENCY|MIX|TIMESCALE)|FLAG_(NO_DEFLECTION_UP|LIMIT_(ROLL_ONLY|MOTOR_UP)|HOVER_((WATER|TERRAIN|UP)_ONLY|GLOBAL_HEIGHT)|MOUSELOOK_(STEER|BANK)|CAMERA_DECOUPLED))|PRIM_(ALLOW_UNSIT|ALPHA_MODE(_(BLEND|EMISSIVE|MASK|NONE))?|NORMAL|SPECULAR|TYPE(_(BOX|CYLINDER|PRISM|SPHERE|TORUS|TUBE|RING|SCULPT))?|HOLE_(DEFAULT|CIRCLE|SQUARE|TRIANGLE)|MATERIAL(_(STONE|METAL|GLASS|WOOD|FLESH|PLASTIC|RUBBER))?|SHINY_(NONE|LOW|MEDIUM|HIGH)|BUMP_(NONE|BRIGHT|DARK|WOOD|BARK|BRICKS|CHECKER|CONCRETE|TILE|STONE|DISKS|GRAVEL|BLOBS|SIDING|LARGETILE|STUCCO|SUCTION|WEAVE)|TEXGEN_(DEFAULT|PLANAR)|SCRIPTED_SIT_ONLY|SCULPT_(TYPE_(SPHERE|TORUS|PLANE|CYLINDER|MASK)|FLAG_(MIRROR|INVERT))|PHYSICS(_(SHAPE_(CONVEX|NONE|PRIM|TYPE)))?|(POS|ROT)_LOCAL|SLICE|TEXT|FLEXIBLE|POINT_LIGHT|TEMP_ON_REZ|PHANTOM|POSITION|SIT_TARGET|SIZE|ROTATION|TEXTURE|NAME|OMEGA|DESC|LINK_TARGET|COLOR|BUMP_SHINY|FULLBRIGHT|TEXGEN|GLOW|MEDIA_(ALT_IMAGE_ENABLE|CONTROLS|(CURRENT|HOME)_URL|AUTO_(LOOP|PLAY|SCALE|ZOOM)|FIRST_CLICK_INTERACT|(WIDTH|HEIGHT)_PIXELS|WHITELIST(_ENABLE)?|PERMS_(INTERACT|CONTROL)|PARAM_MAX|CONTROLS_(STANDARD|MINI)|PERM_(NONE|OWNER|GROUP|ANYONE)|MAX_(URL_LENGTH|WHITELIST_(SIZE|COUNT)|(WIDTH|HEIGHT)_PIXELS)))|MASK_(BASE|OWNER|GROUP|EVERYONE|NEXT)|PERM_(TRANSFER|MODIFY|COPY|MOVE|ALL)|PARCEL_(MEDIA_COMMAND_(STOP|PAUSE|PLAY|LOOP|TEXTURE|URL|TIME|AGENT|UNLOAD|AUTO_ALIGN|TYPE|SIZE|DESC|LOOP_SET)|FLAG_(ALLOW_(FLY|(GROUP_)?SCRIPTS|LANDMARK|TERRAFORM|DAMAGE|CREATE_(GROUP_)?OBJECTS)|USE_(ACCESS_(GROUP|LIST)|BAN_LIST|LAND_PASS_LIST)|LOCAL_SOUND_ONLY|RESTRICT_PUSHOBJECT|ALLOW_(GROUP|ALL)_OBJECT_ENTRY)|COUNT_(TOTAL|OWNER|GROUP|OTHER|SELECTED|TEMP)|DETAILS_(NAME|DESC|OWNER|GROUP|AREA|ID|SEE_AVATARS))|LIST_STAT_(MAX|MIN|MEAN|MEDIAN|STD_DEV|SUM(_SQUARES)?|NUM_COUNT|GEOMETRIC_MEAN|RANGE)|PAY_(HIDE|DEFAULT)|REGION_FLAG_(ALLOW_DAMAGE|FIXED_SUN|BLOCK_TERRAFORM|SANDBOX|DISABLE_(COLLISIONS|PHYSICS)|BLOCK_FLY|ALLOW_DIRECT_TELEPORT|RESTRICT_PUSHOBJECT)|HTTP_(METHOD|MIMETYPE|BODY_(MAXLENGTH|TRUNCATED)|CUSTOM_HEADER|PRAGMA_NO_CACHE|VERBOSE_THROTTLE|VERIFY_CERT)|SIT_(INVALID_(AGENT|LINK_OBJECT)|NO(T_EXPERIENCE|_(ACCESS|EXPERIENCE_PERMISSION|SIT_TARGET)))|STRING_(TRIM(_(HEAD|TAIL))?)|CLICK_ACTION_(NONE|TOUCH|SIT|BUY|PAY|OPEN(_MEDIA)?|PLAY|ZOOM)|TOUCH_INVALID_FACE|PROFILE_(NONE|SCRIPT_MEMORY)|RC_(DATA_FLAGS|DETECT_PHANTOM|GET_(LINK_NUM|NORMAL|ROOT_KEY)|MAX_HITS|REJECT_(TYPES|AGENTS|(NON)?PHYSICAL|LAND))|RCERR_(CAST_TIME_EXCEEDED|SIM_PERF_LOW|UNKNOWN)|ESTATE_ACCESS_(ALLOWED_(AGENT|GROUP)_(ADD|REMOVE)|BANNED_AGENT_(ADD|REMOVE))|DENSITY|FRICTION|RESTITUTION|GRAVITY_MULTIPLIER|KFM_(COMMAND|CMD_(PLAY|STOP|PAUSE)|MODE|FORWARD|LOOP|PING_PONG|REVERSE|DATA|ROTATION|TRANSLATION)|ERR_(GENERIC|PARCEL_PERMISSIONS|MALFORMED_PARAMS|RUNTIME_PERMISSIONS|THROTTLED)|CHARACTER_(CMD_((SMOOTH_)?STOP|JUMP)|DESIRED_(TURN_)?SPEED|RADIUS|STAY_WITHIN_PARCEL|LENGTH|ORIENTATION|ACCOUNT_FOR_SKIPPED_FRAMES|AVOIDANCE_MODE|TYPE(_([ABCD]|NONE))?|MAX_(DECEL|TURN_RADIUS|(ACCEL|SPEED)))|PURSUIT_(OFFSET|FUZZ_FACTOR|GOAL_TOLERANCE|INTERCEPT)|REQUIRE_LINE_OF_SIGHT|FORCE_DIRECT_PATH|VERTICAL|HORIZONTAL|AVOID_(CHARACTERS|DYNAMIC_OBSTACLES|NONE)|PU_(EVADE_(HIDDEN|SPOTTED)|FAILURE_(DYNAMIC_PATHFINDING_DISABLED|INVALID_(GOAL|START)|NO_(NAVMESH|VALID_DESTINATION)|OTHER|TARGET_GONE|(PARCEL_)?UNREACHABLE)|(GOAL|SLOWDOWN_DISTANCE)_REACHED)|TRAVERSAL_TYPE(_(FAST|NONE|SLOW))?|CONTENT_TYPE_(ATOM|FORM|HTML|JSON|LLSD|RSS|TEXT|XHTML|XML)|GCNP_(RADIUS|STATIC)|(PATROL|WANDER)_PAUSE_AT_WAYPOINTS|OPT_(AVATAR|CHARACTER|EXCLUSION_VOLUME|LEGACY_LINKSET|MATERIAL_VOLUME|OTHER|STATIC_OBSTACLE|WALKABLE)|SIM_STAT_PCT_CHARS_STEPPED)\\b"},{begin:"\\b(FALSE|TRUE)\\b"},{begin:"\\b(ZERO_ROTATION)\\b"},{begin:"\\b(EOF|JSON_(ARRAY|DELETE|FALSE|INVALID|NULL|NUMBER|OBJECT|STRING|TRUE)|NULL_KEY|TEXTURE_(BLANK|DEFAULT|MEDIA|PLYWOOD|TRANSPARENT)|URL_REQUEST_(GRANTED|DENIED))\\b"},{begin:"\\b(ZERO_VECTOR|TOUCH_INVALID_(TEXCOORD|VECTOR))\\b"}]},u={className:"built_in",begin:"\\b(ll(AgentInExperience|(Create|DataSize|Delete|KeyCount|Keys|Read|Update)KeyValue|GetExperience(Details|ErrorMessage)|ReturnObjectsBy(ID|Owner)|Json(2List|[GS]etValue|ValueType)|Sin|Cos|Tan|Atan2|Sqrt|Pow|Abs|Fabs|Frand|Floor|Ceil|Round|Vec(Mag|Norm|Dist)|Rot(Between|2(Euler|Fwd|Left|Up))|(Euler|Axes)2Rot|Whisper|(Region|Owner)?Say|Shout|Listen(Control|Remove)?|Sensor(Repeat|Remove)?|Detected(Name|Key|Owner|Type|Pos|Vel|Grab|Rot|Group|LinkNumber)|Die|Ground|Wind|([GS]et)(AnimationOverride|MemoryLimit|PrimMediaParams|ParcelMusicURL|Object(Desc|Name)|PhysicsMaterial|Status|Scale|Color|Alpha|Texture|Pos|Rot|Force|Torque)|ResetAnimationOverride|(Scale|Offset|Rotate)Texture|(Rot)?Target(Remove)?|(Stop)?MoveToTarget|Apply(Rotational)?Impulse|Set(KeyframedMotion|ContentType|RegionPos|(Angular)?Velocity|Buoyancy|HoverHeight|ForceAndTorque|TimerEvent|ScriptState|Damage|TextureAnim|Sound(Queueing|Radius)|Vehicle(Type|(Float|Vector|Rotation)Param)|(Touch|Sit)?Text|Camera(Eye|At)Offset|PrimitiveParams|ClickAction|Link(Alpha|Color|PrimitiveParams(Fast)?|Texture(Anim)?|Camera|Media)|RemoteScriptAccessPin|PayPrice|LocalRot)|ScaleByFactor|Get((Max|Min)ScaleFactor|ClosestNavPoint|StaticPath|SimStats|Env|PrimitiveParams|Link(PrimitiveParams|Number(OfSides)?|Key|Name|Media)|HTTPHeader|FreeURLs|Object(Details|PermMask|PrimCount)|Parcel(MaxPrims|Details|Prim(Count|Owners))|Attached(List)?|(SPMax|Free|Used)Memory|Region(Name|TimeDilation|FPS|Corner|AgentCount)|Root(Position|Rotation)|UnixTime|(Parcel|Region)Flags|(Wall|GMT)clock|SimulatorHostname|BoundingBox|GeometricCenter|Creator|NumberOf(Prims|NotecardLines|Sides)|Animation(List)?|(Camera|Local)(Pos|Rot)|Vel|Accel|Omega|Time(stamp|OfDay)|(Object|CenterOf)?Mass|MassMKS|Energy|Owner|(Owner)?Key|SunDirection|Texture(Offset|Scale|Rot)|Inventory(Number|Name|Key|Type|Creator|PermMask)|Permissions(Key)?|StartParameter|List(Length|EntryType)|Date|Agent(Size|Info|Language|List)|LandOwnerAt|NotecardLine|Script(Name|State))|(Get|Reset|GetAndReset)Time|PlaySound(Slave)?|LoopSound(Master|Slave)?|(Trigger|Stop|Preload)Sound|((Get|Delete)Sub|Insert)String|To(Upper|Lower)|Give(InventoryList|Money)|RezObject|(Stop)?LookAt|Sleep|CollisionFilter|(Take|Release)Controls|DetachFromAvatar|AttachToAvatar(Temp)?|InstantMessage|(GetNext)?Email|StopHover|MinEventDelay|RotLookAt|String(Length|Trim)|(Start|Stop)Animation|TargetOmega|Request(Experience)?Permissions|(Create|Break)Link|BreakAllLinks|(Give|Remove)Inventory|Water|PassTouches|Request(Agent|Inventory)Data|TeleportAgent(Home|GlobalCoords)?|ModifyLand|CollisionSound|ResetScript|MessageLinked|PushObject|PassCollisions|AxisAngle2Rot|Rot2(Axis|Angle)|A(cos|sin)|AngleBetween|AllowInventoryDrop|SubStringIndex|List2(CSV|Integer|Json|Float|String|Key|Vector|Rot|List(Strided)?)|DeleteSubList|List(Statistics|Sort|Randomize|(Insert|Find|Replace)List)|EdgeOfWorld|AdjustSoundVolume|Key2Name|TriggerSoundLimited|EjectFromLand|(CSV|ParseString)2List|OverMyLand|SameGroup|UnSit|Ground(Slope|Normal|Contour)|GroundRepel|(Set|Remove)VehicleFlags|SitOnLink|(AvatarOn)?(Link)?SitTarget|Script(Danger|Profiler)|Dialog|VolumeDetect|ResetOtherScript|RemoteLoadScriptPin|(Open|Close)RemoteDataChannel|SendRemoteData|RemoteDataReply|(Integer|String)ToBase64|XorBase64|Log(10)?|Base64To(String|Integer)|ParseStringKeepNulls|RezAtRoot|RequestSimulatorData|ForceMouselook|(Load|Release|(E|Une)scape)URL|ParcelMedia(CommandList|Query)|ModPow|MapDestination|(RemoveFrom|AddTo|Reset)Land(Pass|Ban)List|(Set|Clear)CameraParams|HTTP(Request|Response)|TextBox|DetectedTouch(UV|Face|Pos|(N|Bin)ormal|ST)|(MD5|SHA1|DumpList2)String|Request(Secure)?URL|Clear(Prim|Link)Media|(Link)?ParticleSystem|(Get|Request)(Username|DisplayName)|RegionSayTo|CastRay|GenerateKey|TransferLindenDollars|ManageEstateAccess|(Create|Delete)Character|ExecCharacterCmd|Evade|FleeFrom|NavigateTo|PatrolPoints|Pursue|UpdateCharacter|WanderWithin))\\b"};return{name:"LSL (Linden Scripting Language)",illegal:":",contains:[a,{className:"comment",variants:[t.COMMENT("//","$"),t.COMMENT("/\\*","\\*/")],relevance:0},s,{className:"section",variants:[{begin:"\\b(state|default)\\b"},{begin:"\\b(state_(entry|exit)|touch(_(start|end))?|(land_)?collision(_(start|end))?|timer|listen|(no_)?sensor|control|(not_)?at_(rot_)?target|money|email|experience_permissions(_denied)?|run_time_permissions|changed|attach|dataserver|moving_(start|end)|link_message|(on|object)_rez|remote_data|http_re(sponse|quest)|path_update|transaction_result)\\b"}]},u,o,{className:"type",begin:"\\b(integer|float|string|key|vector|quaternion|rotation|list)\\b"}]}}return kJe=e,kJe}var RJe,Emn;function uni(){if(Emn)return RJe;Emn=1;function e(t){const r="\\[=*\\[",a="\\]=*\\]",s={begin:r,end:a,contains:["self"]},o=[t.COMMENT("--(?!"+r+")","$"),t.COMMENT("--"+r,a,{contains:[s],relevance:10})];return{name:"Lua",keywords:{$pattern:t.UNDERSCORE_IDENT_RE,literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},contains:o.concat([{className:"function",beginKeywords:"function",end:"\\)",contains:[t.inherit(t.TITLE_MODE,{begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",begin:"\\(",endsWithParent:!0,contains:o}].concat(o)},t.C_NUMBER_MODE,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,{className:"string",begin:r,end:a,contains:[s],relevance:5}])}}return RJe=e,RJe}var IJe,xmn;function hni(){if(xmn)return IJe;xmn=1;function e(t){const r={className:"variable",variants:[{begin:"\\$\\("+t.UNDERSCORE_IDENT_RE+"\\)",contains:[t.BACKSLASH_ESCAPE]},{begin:/\$[@%t(f)).join("")}function s(...u){return"("+u.map(f=>t(f)).join("|")+")"}function o(u){const h=/([2-9]|[1-2]\d|[3][0-5])\^\^/,f=/(\w*\.\w+|\w+\.\w*|\w+)/,p=/(\d*\.\d+|\d+\.\d*|\d+)/,m=s(a(h,f),p),w=s(/``[+-]?(\d*\.\d+|\d+\.\d*|\d+)/,/`([+-]?(\d*\.\d+|\d+\.\d*|\d+))?/),S=/\*\^[+-]?\d+/,A={className:"number",relevance:0,begin:a(m,r(w),r(S))},k=/[a-zA-Z$][a-zA-Z0-9$]*/,I=new Set(e),N={variants:[{className:"builtin-symbol",begin:k,"on:begin":(G,B)=>{I.has(G[0])||B.ignoreMatch()}},{className:"symbol",relevance:0,begin:k}]},L={className:"named-character",begin:/\\\[[$a-zA-Z][$a-zA-Z0-9]+\]/},P={className:"operator",relevance:0,begin:/[+\-*/,;.:@~=><&|_`'^?!%]+/},M={className:"pattern",relevance:0,begin:/([a-zA-Z$][a-zA-Z0-9$]*)?_+([a-zA-Z$][a-zA-Z0-9$]*)?/},F={className:"slot",relevance:0,begin:/#[a-zA-Z$][a-zA-Z0-9$]*|#+[0-9]?/},U={className:"brace",relevance:0,begin:/[[\](){}]/},$={className:"message-name",relevance:0,begin:a("::",k)};return{name:"Mathematica",aliases:["mma","wl"],classNameAliases:{brace:"punctuation",pattern:"type",slot:"type",symbol:"variable","named-character":"variable","builtin-symbol":"built_in","message-name":"string"},contains:[u.COMMENT(/\(\*/,/\*\)/,{contains:["self"]}),M,F,$,N,L,u.QUOTE_STRING_MODE,A,P,U]}}return NJe=o,NJe}var OJe,Tmn;function fni(){if(Tmn)return OJe;Tmn=1;function e(t){var r="('|\\.')+",a={relevance:0,contains:[{begin:r}]};return{name:"Matlab",keywords:{keyword:"arguments break case catch classdef continue else elseif end enumeration events for function global if methods otherwise parfor persistent properties return spmd switch try while",built_in:"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i|0 inf nan isnan isinf isfinite j|0 why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson max min nanmax nanmin mean nanmean type table readtable writetable sortrows sort figure plot plot3 scatter scatter3 cellfun legend intersect ismember procrustes hold num2cell "},illegal:'(//|"|#|/\\*|\\s+/\\w+)',contains:[{className:"function",beginKeywords:"function",end:"$",contains:[t.UNDERSCORE_TITLE_MODE,{className:"params",variants:[{begin:"\\(",end:"\\)"},{begin:"\\[",end:"\\]"}]}]},{className:"built_in",begin:/true|false/,relevance:0,starts:a},{begin:"[a-zA-Z][a-zA-Z_0-9]*"+r,relevance:0},{className:"number",begin:t.C_NUMBER_RE,relevance:0,starts:a},{className:"string",begin:"'",end:"'",contains:[t.BACKSLASH_ESCAPE,{begin:"''"}]},{begin:/\]|\}|\)/,relevance:0,starts:a},{className:"string",begin:'"',end:'"',contains:[t.BACKSLASH_ESCAPE,{begin:'""'}],starts:a},t.COMMENT("^\\s*%\\{\\s*$","^\\s*%\\}\\s*$"),t.COMMENT("%","$")]}}return OJe=e,OJe}var LJe,Cmn;function pni(){if(Cmn)return LJe;Cmn=1;function e(t){return{name:"Maxima",keywords:{$pattern:"[A-Za-z_%][0-9A-Za-z_%]*",keyword:"if then else elseif for thru do while unless step in and or not",literal:"true false unknown inf minf ind und %e %i %pi %phi %gamma",built_in:" abasep abs absint absolute_real_time acos acosh acot acoth acsc acsch activate addcol add_edge add_edges addmatrices addrow add_vertex add_vertices adjacency_matrix adjoin adjoint af agd airy airy_ai airy_bi airy_dai airy_dbi algsys alg_type alias allroots alphacharp alphanumericp amortization %and annuity_fv annuity_pv antid antidiff AntiDifference append appendfile apply apply1 apply2 applyb1 apropos args arit_amortization arithmetic arithsum array arrayapply arrayinfo arraymake arraysetapply ascii asec asech asin asinh askinteger asksign assoc assoc_legendre_p assoc_legendre_q assume assume_external_byte_order asympa at atan atan2 atanh atensimp atom atvalue augcoefmatrix augmented_lagrangian_method av average_degree backtrace bars barsplot barsplot_description base64 base64_decode bashindices batch batchload bc2 bdvac belln benefit_cost bern bernpoly bernstein_approx bernstein_expand bernstein_poly bessel bessel_i bessel_j bessel_k bessel_simplify bessel_y beta beta_incomplete beta_incomplete_generalized beta_incomplete_regularized bezout bfallroots bffac bf_find_root bf_fmin_cobyla bfhzeta bfloat bfloatp bfpsi bfpsi0 bfzeta biconnected_components bimetric binomial bipartition block blockmatrixp bode_gain bode_phase bothcoef box boxplot boxplot_description break bug_report build_info|10 buildq build_sample burn cabs canform canten cardinality carg cartan cartesian_product catch cauchy_matrix cbffac cdf_bernoulli cdf_beta cdf_binomial cdf_cauchy cdf_chi2 cdf_continuous_uniform cdf_discrete_uniform cdf_exp cdf_f cdf_gamma cdf_general_finite_discrete cdf_geometric cdf_gumbel cdf_hypergeometric cdf_laplace cdf_logistic cdf_lognormal cdf_negative_binomial cdf_noncentral_chi2 cdf_noncentral_student_t cdf_normal cdf_pareto cdf_poisson cdf_rank_sum cdf_rayleigh cdf_signed_rank cdf_student_t cdf_weibull cdisplay ceiling central_moment cequal cequalignore cf cfdisrep cfexpand cgeodesic cgreaterp cgreaterpignore changename changevar chaosgame charat charfun charfun2 charlist charp charpoly chdir chebyshev_t chebyshev_u checkdiv check_overlaps chinese cholesky christof chromatic_index chromatic_number cint circulant_graph clear_edge_weight clear_rules clear_vertex_label clebsch_gordan clebsch_graph clessp clesspignore close closefile cmetric coeff coefmatrix cograd col collapse collectterms columnop columnspace columnswap columnvector combination combine comp2pui compare compfile compile compile_file complement_graph complete_bipartite_graph complete_graph complex_number_p components compose_functions concan concat conjugate conmetderiv connected_components connect_vertices cons constant constantp constituent constvalue cont2part content continuous_freq contortion contour_plot contract contract_edge contragrad contrib_ode convert coord copy copy_file copy_graph copylist copymatrix cor cos cosh cot coth cov cov1 covdiff covect covers crc24sum create_graph create_list csc csch csetup cspline ctaylor ct_coordsys ctransform ctranspose cube_graph cuboctahedron_graph cunlisp cv cycle_digraph cycle_graph cylindrical days360 dblint deactivate declare declare_constvalue declare_dimensions declare_fundamental_dimensions declare_fundamental_units declare_qty declare_translated declare_unit_conversion declare_units declare_weights decsym defcon define define_alt_display define_variable defint defmatch defrule defstruct deftaylor degree_sequence del delete deleten delta demo demoivre denom depends derivdegree derivlist describe desolve determinant dfloat dgauss_a dgauss_b dgeev dgemm dgeqrf dgesv dgesvd diag diagmatrix diag_matrix diagmatrixp diameter diff digitcharp dimacs_export dimacs_import dimension dimensionless dimensions dimensions_as_list direct directory discrete_freq disjoin disjointp disolate disp dispcon dispform dispfun dispJordan display disprule dispterms distrib divide divisors divsum dkummer_m dkummer_u dlange dodecahedron_graph dotproduct dotsimp dpart draw draw2d draw3d drawdf draw_file draw_graph dscalar echelon edge_coloring edge_connectivity edges eigens_by_jacobi eigenvalues eigenvectors eighth einstein eivals eivects elapsed_real_time elapsed_run_time ele2comp ele2polynome ele2pui elem elementp elevation_grid elim elim_allbut eliminate eliminate_using ellipse elliptic_e elliptic_ec elliptic_eu elliptic_f elliptic_kc elliptic_pi ematrix empty_graph emptyp endcons entermatrix entertensor entier equal equalp equiv_classes erf erfc erf_generalized erfi errcatch error errormsg errors euler ev eval_string evenp every evolution evolution2d evundiff example exp expand expandwrt expandwrt_factored expint expintegral_chi expintegral_ci expintegral_e expintegral_e1 expintegral_ei expintegral_e_simplify expintegral_li expintegral_shi expintegral_si explicit explose exponentialize express expt exsec extdiff extract_linear_equations extremal_subset ezgcd %f f90 facsum factcomb factor factorfacsum factorial factorout factorsum facts fast_central_elements fast_linsolve fasttimes featurep fernfale fft fib fibtophi fifth filename_merge file_search file_type fillarray findde find_root find_root_abs find_root_error find_root_rel first fix flatten flength float floatnump floor flower_snark flush flush1deriv flushd flushnd flush_output fmin_cobyla forget fortran fourcos fourexpand fourier fourier_elim fourint fourintcos fourintsin foursimp foursin fourth fposition frame_bracket freeof freshline fresnel_c fresnel_s from_adjacency_matrix frucht_graph full_listify fullmap fullmapl fullratsimp fullratsubst fullsetify funcsolve fundamental_dimensions fundamental_units fundef funmake funp fv g0 g1 gamma gamma_greek gamma_incomplete gamma_incomplete_generalized gamma_incomplete_regularized gauss gauss_a gauss_b gaussprob gcd gcdex gcdivide gcfac gcfactor gd generalized_lambert_w genfact gen_laguerre genmatrix gensym geo_amortization geo_annuity_fv geo_annuity_pv geomap geometric geometric_mean geosum get getcurrentdirectory get_edge_weight getenv get_lu_factors get_output_stream_string get_pixel get_plot_option get_tex_environment get_tex_environment_default get_vertex_label gfactor gfactorsum ggf girth global_variances gn gnuplot_close gnuplot_replot gnuplot_reset gnuplot_restart gnuplot_start go Gosper GosperSum gr2d gr3d gradef gramschmidt graph6_decode graph6_encode graph6_export graph6_import graph_center graph_charpoly graph_eigenvalues graph_flow graph_order graph_periphery graph_product graph_size graph_union great_rhombicosidodecahedron_graph great_rhombicuboctahedron_graph grid_graph grind grobner_basis grotzch_graph hamilton_cycle hamilton_path hankel hankel_1 hankel_2 harmonic harmonic_mean hav heawood_graph hermite hessian hgfred hilbertmap hilbert_matrix hipow histogram histogram_description hodge horner hypergeometric i0 i1 %ibes ic1 ic2 ic_convert ichr1 ichr2 icosahedron_graph icosidodecahedron_graph icurvature ident identfor identity idiff idim idummy ieqn %if ifactors iframes ifs igcdex igeodesic_coords ilt image imagpart imetric implicit implicit_derivative implicit_plot indexed_tensor indices induced_subgraph inferencep inference_result infix info_display init_atensor init_ctensor in_neighbors innerproduct inpart inprod inrt integerp integer_partitions integrate intersect intersection intervalp intopois intosum invariant1 invariant2 inverse_fft inverse_jacobi_cd inverse_jacobi_cn inverse_jacobi_cs inverse_jacobi_dc inverse_jacobi_dn inverse_jacobi_ds inverse_jacobi_nc inverse_jacobi_nd inverse_jacobi_ns inverse_jacobi_sc inverse_jacobi_sd inverse_jacobi_sn invert invert_by_adjoint invert_by_lu inv_mod irr is is_biconnected is_bipartite is_connected is_digraph is_edge_in_graph is_graph is_graph_or_digraph ishow is_isomorphic isolate isomorphism is_planar isqrt isreal_p is_sconnected is_tree is_vertex_in_graph items_inference %j j0 j1 jacobi jacobian jacobi_cd jacobi_cn jacobi_cs jacobi_dc jacobi_dn jacobi_ds jacobi_nc jacobi_nd jacobi_ns jacobi_p jacobi_sc jacobi_sd jacobi_sn JF jn join jordan julia julia_set julia_sin %k kdels kdelta kill killcontext kostka kron_delta kronecker_product kummer_m kummer_u kurtosis kurtosis_bernoulli kurtosis_beta kurtosis_binomial kurtosis_chi2 kurtosis_continuous_uniform kurtosis_discrete_uniform kurtosis_exp kurtosis_f kurtosis_gamma kurtosis_general_finite_discrete kurtosis_geometric kurtosis_gumbel kurtosis_hypergeometric kurtosis_laplace kurtosis_logistic kurtosis_lognormal kurtosis_negative_binomial kurtosis_noncentral_chi2 kurtosis_noncentral_student_t kurtosis_normal kurtosis_pareto kurtosis_poisson kurtosis_rayleigh kurtosis_student_t kurtosis_weibull label labels lagrange laguerre lambda lambert_w laplace laplacian_matrix last lbfgs lc2kdt lcharp lc_l lcm lc_u ldefint ldisp ldisplay legendre_p legendre_q leinstein length let letrules letsimp levi_civita lfreeof lgtreillis lhs li liediff limit Lindstedt linear linearinterpol linear_program linear_regression line_graph linsolve listarray list_correlations listify list_matrix_entries list_nc_monomials listoftens listofvars listp lmax lmin load loadfile local locate_matrix_entry log logcontract log_gamma lopow lorentz_gauge lowercasep lpart lratsubst lreduce lriemann lsquares_estimates lsquares_estimates_approximate lsquares_estimates_exact lsquares_mse lsquares_residual_mse lsquares_residuals lsum ltreillis lu_backsub lucas lu_factor %m macroexpand macroexpand1 make_array makebox makefact makegamma make_graph make_level_picture makelist makeOrders make_poly_continent make_poly_country make_polygon make_random_state make_rgb_picture makeset make_string_input_stream make_string_output_stream make_transform mandelbrot mandelbrot_set map mapatom maplist matchdeclare matchfix mat_cond mat_fullunblocker mat_function mathml_display mat_norm matrix matrixmap matrixp matrix_size mattrace mat_trace mat_unblocker max max_clique max_degree max_flow maximize_lp max_independent_set max_matching maybe md5sum mean mean_bernoulli mean_beta mean_binomial mean_chi2 mean_continuous_uniform mean_deviation mean_discrete_uniform mean_exp mean_f mean_gamma mean_general_finite_discrete mean_geometric mean_gumbel mean_hypergeometric mean_laplace mean_logistic mean_lognormal mean_negative_binomial mean_noncentral_chi2 mean_noncentral_student_t mean_normal mean_pareto mean_poisson mean_rayleigh mean_student_t mean_weibull median median_deviation member mesh metricexpandall mgf1_sha1 min min_degree min_edge_cut minfactorial minimalPoly minimize_lp minimum_spanning_tree minor minpack_lsquares minpack_solve min_vertex_cover min_vertex_cut mkdir mnewton mod mode_declare mode_identity ModeMatrix moebius mon2schur mono monomial_dimensions multibernstein_poly multi_display_for_texinfo multi_elem multinomial multinomial_coeff multi_orbit multiplot_mode multi_pui multsym multthru mycielski_graph nary natural_unit nc_degree ncexpt ncharpoly negative_picture neighbors new newcontext newdet new_graph newline newton new_variable next_prime nicedummies niceindices ninth nofix nonarray noncentral_moment nonmetricity nonnegintegerp nonscalarp nonzeroandfreeof notequal nounify nptetrad npv nroots nterms ntermst nthroot nullity nullspace num numbered_boundaries numberp number_to_octets num_distinct_partitions numerval numfactor num_partitions nusum nzeta nzetai nzetar octets_to_number octets_to_oid odd_girth oddp ode2 ode_check odelin oid_to_octets op opena opena_binary openr openr_binary openw openw_binary operatorp opsubst optimize %or orbit orbits ordergreat ordergreatp orderless orderlessp orthogonal_complement orthopoly_recur orthopoly_weight outermap out_neighbors outofpois pade parabolic_cylinder_d parametric parametric_surface parg parGosper parse_string parse_timedate part part2cont partfrac partition partition_set partpol path_digraph path_graph pathname_directory pathname_name pathname_type pdf_bernoulli pdf_beta pdf_binomial pdf_cauchy pdf_chi2 pdf_continuous_uniform pdf_discrete_uniform pdf_exp pdf_f pdf_gamma pdf_general_finite_discrete pdf_geometric pdf_gumbel pdf_hypergeometric pdf_laplace pdf_logistic pdf_lognormal pdf_negative_binomial pdf_noncentral_chi2 pdf_noncentral_student_t pdf_normal pdf_pareto pdf_poisson pdf_rank_sum pdf_rayleigh pdf_signed_rank pdf_student_t pdf_weibull pearson_skewness permanent permut permutation permutations petersen_graph petrov pickapart picture_equalp picturep piechart piechart_description planar_embedding playback plog plot2d plot3d plotdf ploteq plsquares pochhammer points poisdiff poisexpt poisint poismap poisplus poissimp poissubst poistimes poistrim polar polarform polartorect polar_to_xy poly_add poly_buchberger poly_buchberger_criterion poly_colon_ideal poly_content polydecomp poly_depends_p poly_elimination_ideal poly_exact_divide poly_expand poly_expt poly_gcd polygon poly_grobner poly_grobner_equal poly_grobner_member poly_grobner_subsetp poly_ideal_intersection poly_ideal_polysaturation poly_ideal_polysaturation1 poly_ideal_saturation poly_ideal_saturation1 poly_lcm poly_minimization polymod poly_multiply polynome2ele polynomialp poly_normal_form poly_normalize poly_normalize_list poly_polysaturation_extension poly_primitive_part poly_pseudo_divide poly_reduced_grobner poly_reduction poly_saturation_extension poly_s_polynomial poly_subtract polytocompanion pop postfix potential power_mod powerseries powerset prefix prev_prime primep primes principal_components print printf printfile print_graph printpois printprops prodrac product properties propvars psi psubst ptriangularize pui pui2comp pui2ele pui2polynome pui_direct puireduc push put pv qput qrange qty quad_control quad_qag quad_qagi quad_qagp quad_qags quad_qawc quad_qawf quad_qawo quad_qaws quadrilateral quantile quantile_bernoulli quantile_beta quantile_binomial quantile_cauchy quantile_chi2 quantile_continuous_uniform quantile_discrete_uniform quantile_exp quantile_f quantile_gamma quantile_general_finite_discrete quantile_geometric quantile_gumbel quantile_hypergeometric quantile_laplace quantile_logistic quantile_lognormal quantile_negative_binomial quantile_noncentral_chi2 quantile_noncentral_student_t quantile_normal quantile_pareto quantile_poisson quantile_rayleigh quantile_student_t quantile_weibull quartile_skewness quit qunit quotient racah_v racah_w radcan radius random random_bernoulli random_beta random_binomial random_bipartite_graph random_cauchy random_chi2 random_continuous_uniform random_digraph random_discrete_uniform random_exp random_f random_gamma random_general_finite_discrete random_geometric random_graph random_graph1 random_gumbel random_hypergeometric random_laplace random_logistic random_lognormal random_negative_binomial random_network random_noncentral_chi2 random_noncentral_student_t random_normal random_pareto random_permutation random_poisson random_rayleigh random_regular_graph random_student_t random_tournament random_tree random_weibull range rank rat ratcoef ratdenom ratdiff ratdisrep ratexpand ratinterpol rational rationalize ratnumer ratnump ratp ratsimp ratsubst ratvars ratweight read read_array read_binary_array read_binary_list read_binary_matrix readbyte readchar read_hashed_array readline read_list read_matrix read_nested_list readonly read_xpm real_imagpart_to_conjugate realpart realroots rearray rectangle rectform rectform_log_if_constant recttopolar rediff reduce_consts reduce_order region region_boundaries region_boundaries_plus rem remainder remarray rembox remcomps remcon remcoord remfun remfunction remlet remove remove_constvalue remove_dimensions remove_edge remove_fundamental_dimensions remove_fundamental_units remove_plot_option remove_vertex rempart remrule remsym remvalue rename rename_file reset reset_displays residue resolvante resolvante_alternee1 resolvante_bipartite resolvante_diedrale resolvante_klein resolvante_klein3 resolvante_produit_sym resolvante_unitaire resolvante_vierer rest resultant return reveal reverse revert revert2 rgb2level rhs ricci riemann rinvariant risch rk rmdir rncombine romberg room rootscontract round row rowop rowswap rreduce run_testsuite %s save saving scalarp scaled_bessel_i scaled_bessel_i0 scaled_bessel_i1 scalefactors scanmap scatterplot scatterplot_description scene schur2comp sconcat scopy scsimp scurvature sdowncase sec sech second sequal sequalignore set_alt_display setdifference set_draw_defaults set_edge_weight setelmx setequalp setify setp set_partitions set_plot_option set_prompt set_random_state set_tex_environment set_tex_environment_default setunits setup_autoload set_up_dot_simplifications set_vertex_label seventh sexplode sf sha1sum sha256sum shortest_path shortest_weighted_path show showcomps showratvars sierpinskiale sierpinskimap sign signum similaritytransform simp_inequality simplify_sum simplode simpmetderiv simtran sin sinh sinsert sinvertcase sixth skewness skewness_bernoulli skewness_beta skewness_binomial skewness_chi2 skewness_continuous_uniform skewness_discrete_uniform skewness_exp skewness_f skewness_gamma skewness_general_finite_discrete skewness_geometric skewness_gumbel skewness_hypergeometric skewness_laplace skewness_logistic skewness_lognormal skewness_negative_binomial skewness_noncentral_chi2 skewness_noncentral_student_t skewness_normal skewness_pareto skewness_poisson skewness_rayleigh skewness_student_t skewness_weibull slength smake small_rhombicosidodecahedron_graph small_rhombicuboctahedron_graph smax smin smismatch snowmap snub_cube_graph snub_dodecahedron_graph solve solve_rec solve_rec_rat some somrac sort sparse6_decode sparse6_encode sparse6_export sparse6_import specint spherical spherical_bessel_j spherical_bessel_y spherical_hankel1 spherical_hankel2 spherical_harmonic spherical_to_xyz splice split sposition sprint sqfr sqrt sqrtdenest sremove sremovefirst sreverse ssearch ssort sstatus ssubst ssubstfirst staircase standardize standardize_inverse_trig starplot starplot_description status std std1 std_bernoulli std_beta std_binomial std_chi2 std_continuous_uniform std_discrete_uniform std_exp std_f std_gamma std_general_finite_discrete std_geometric std_gumbel std_hypergeometric std_laplace std_logistic std_lognormal std_negative_binomial std_noncentral_chi2 std_noncentral_student_t std_normal std_pareto std_poisson std_rayleigh std_student_t std_weibull stemplot stirling stirling1 stirling2 strim striml strimr string stringout stringp strong_components struve_h struve_l sublis sublist sublist_indices submatrix subsample subset subsetp subst substinpart subst_parallel substpart substring subvar subvarp sum sumcontract summand_to_rec supcase supcontext symbolp symmdifference symmetricp system take_channel take_inference tan tanh taylor taylorinfo taylorp taylor_simplifier taytorat tcl_output tcontract tellrat tellsimp tellsimpafter tentex tenth test_mean test_means_difference test_normality test_proportion test_proportions_difference test_rank_sum test_sign test_signed_rank test_variance test_variance_ratio tex tex1 tex_display texput %th third throw time timedate timer timer_info tldefint tlimit todd_coxeter toeplitz tokens to_lisp topological_sort to_poly to_poly_solve totaldisrep totalfourier totient tpartpol trace tracematrix trace_options transform_sample translate translate_file transpose treefale tree_reduce treillis treinat triangle triangularize trigexpand trigrat trigreduce trigsimp trunc truncate truncated_cube_graph truncated_dodecahedron_graph truncated_icosahedron_graph truncated_tetrahedron_graph tr_warnings_get tube tutte_graph ueivects uforget ultraspherical underlying_graph undiff union unique uniteigenvectors unitp units unit_step unitvector unorder unsum untellrat untimer untrace uppercasep uricci uriemann uvect vandermonde_matrix var var1 var_bernoulli var_beta var_binomial var_chi2 var_continuous_uniform var_discrete_uniform var_exp var_f var_gamma var_general_finite_discrete var_geometric var_gumbel var_hypergeometric var_laplace var_logistic var_lognormal var_negative_binomial var_noncentral_chi2 var_noncentral_student_t var_normal var_pareto var_poisson var_rayleigh var_student_t var_weibull vector vectorpotential vectorsimp verbify vers vertex_coloring vertex_connectivity vertex_degree vertex_distance vertex_eccentricity vertex_in_degree vertex_out_degree vertices vertices_to_cycle vertices_to_path %w weyl wheel_graph wiener_index wigner_3j wigner_6j wigner_9j with_stdout write_binary_data writebyte write_data writefile wronskian xreduce xthru %y Zeilberger zeroequiv zerofor zeromatrix zeromatrixp zeta zgeev zheev zlange zn_add_table zn_carmichael_lambda zn_characteristic_factors zn_determinant zn_factor_generators zn_invert_by_lu zn_log zn_mult_table absboxchar activecontexts adapt_depth additive adim aform algebraic algepsilon algexact aliases allbut all_dotsimp_denoms allocation allsym alphabetic animation antisymmetric arrays askexp assume_pos assume_pos_pred assumescalar asymbol atomgrad atrig1 axes axis_3d axis_bottom axis_left axis_right axis_top azimuth background background_color backsubst berlefact bernstein_explicit besselexpand beta_args_sum_to_integer beta_expand bftorat bftrunc bindtest border boundaries_array box boxchar breakup %c capping cauchysum cbrange cbtics center cflength cframe_flag cnonmet_flag color color_bar color_bar_tics colorbox columns commutative complex cone context contexts contour contour_levels cosnpiflag ctaypov ctaypt ctayswitch ctayvar ct_coords ctorsion_flag ctrgsimp cube current_let_rule_package cylinder data_file_name debugmode decreasing default_let_rule_package delay dependencies derivabbrev derivsubst detout diagmetric diff dim dimensions dispflag display2d|10 display_format_internal distribute_over doallmxops domain domxexpt domxmxops domxnctimes dontfactor doscmxops doscmxplus dot0nscsimp dot0simp dot1simp dotassoc dotconstrules dotdistrib dotexptsimp dotident dotscrules draw_graph_program draw_realpart edge_color edge_coloring edge_partition edge_type edge_width %edispflag elevation %emode endphi endtheta engineering_format_floats enhanced3d %enumer epsilon_lp erfflag erf_representation errormsg error_size error_syms error_type %e_to_numlog eval even evenfun evflag evfun ev_point expandwrt_denom expintexpand expintrep expon expop exptdispflag exptisolate exptsubst facexpand facsum_combine factlim factorflag factorial_expand factors_only fb feature features file_name file_output_append file_search_demo file_search_lisp file_search_maxima|10 file_search_tests file_search_usage file_type_lisp file_type_maxima|10 fill_color fill_density filled_func fixed_vertices flipflag float2bf font font_size fortindent fortspaces fpprec fpprintprec functions gamma_expand gammalim gdet genindex gensumnum GGFCFMAX GGFINFINITY globalsolve gnuplot_command gnuplot_curve_styles gnuplot_curve_titles gnuplot_default_term_command gnuplot_dumb_term_command gnuplot_file_args gnuplot_file_name gnuplot_out_file gnuplot_pdf_term_command gnuplot_pm3d gnuplot_png_term_command gnuplot_postamble gnuplot_preamble gnuplot_ps_term_command gnuplot_svg_term_command gnuplot_term gnuplot_view_args Gosper_in_Zeilberger gradefs grid grid2d grind halfangles head_angle head_both head_length head_type height hypergeometric_representation %iargs ibase icc1 icc2 icounter idummyx ieqnprint ifb ifc1 ifc2 ifg ifgi ifr iframe_bracket_form ifri igeowedge_flag ikt1 ikt2 imaginary inchar increasing infeval infinity inflag infolists inm inmc1 inmc2 intanalysis integer integervalued integrate_use_rootsof integration_constant integration_constant_counter interpolate_color intfaclim ip_grid ip_grid_in irrational isolate_wrt_times iterations itr julia_parameter %k1 %k2 keepfloat key key_pos kinvariant kt label label_alignment label_orientation labels lassociative lbfgs_ncorrections lbfgs_nfeval_max leftjust legend letrat let_rule_packages lfg lg lhospitallim limsubst linear linear_solver linechar linel|10 linenum line_type linewidth line_width linsolve_params linsolvewarn lispdisp listarith listconstvars listdummyvars lmxchar load_pathname loadprint logabs logarc logcb logconcoeffp logexpand lognegint logsimp logx logx_secondary logy logy_secondary logz lriem m1pbranch macroexpansion macros mainvar manual_demo maperror mapprint matrix_element_add matrix_element_mult matrix_element_transpose maxapplydepth maxapplyheight maxima_tempdir|10 maxima_userdir|10 maxnegex MAX_ORD maxposex maxpsifracdenom maxpsifracnum maxpsinegint maxpsiposint maxtayorder mesh_lines_color method mod_big_prime mode_check_errorp mode_checkp mode_check_warnp mod_test mod_threshold modular_linear_solver modulus multiplicative multiplicities myoptions nary negdistrib negsumdispflag newline newtonepsilon newtonmaxiter nextlayerfactor niceindicespref nm nmc noeval nolabels nonegative_lp noninteger nonscalar noun noundisp nouns np npi nticks ntrig numer numer_pbranch obase odd oddfun opacity opproperties opsubst optimprefix optionset orientation origin orthopoly_returns_intervals outative outchar packagefile palette partswitch pdf_file pfeformat phiresolution %piargs piece pivot_count_sx pivot_max_sx plot_format plot_options plot_realpart png_file pochhammer_max_index points pointsize point_size points_joined point_type poislim poisson poly_coefficient_ring poly_elimination_order polyfactor poly_grobner_algorithm poly_grobner_debug poly_monomial_order poly_primary_elimination_order poly_return_term_list poly_secondary_elimination_order poly_top_reduction_only posfun position powerdisp pred prederror primep_number_of_tests product_use_gamma program programmode promote_float_to_bigfloat prompt proportional_axes props psexpand ps_file radexpand radius radsubstflag rassociative ratalgdenom ratchristof ratdenomdivide rateinstein ratepsilon ratfac rational ratmx ratprint ratriemann ratsimpexpons ratvarswitch ratweights ratweyl ratwtlvl real realonly redraw refcheck resolution restart resultant ric riem rmxchar %rnum_list rombergabs rombergit rombergmin rombergtol rootsconmode rootsepsilon run_viewer same_xy same_xyz savedef savefactors scalar scalarmatrixp scale scale_lp setcheck setcheckbreak setval show_edge_color show_edges show_edge_type show_edge_width show_id show_label showtime show_vertex_color show_vertex_size show_vertex_type show_vertices show_weight simp simplified_output simplify_products simpproduct simpsum sinnpiflag solvedecomposes solveexplicit solvefactors solvenullwarn solveradcan solvetrigwarn space sparse sphere spring_embedding_depth sqrtdispflag stardisp startphi starttheta stats_numer stringdisp structures style sublis_apply_lambda subnumsimp sumexpand sumsplitfact surface surface_hide svg_file symmetric tab taylordepth taylor_logexpand taylor_order_coefficients taylor_truncate_polynomials tensorkill terminal testsuite_files thetaresolution timer_devalue title tlimswitch tr track transcompile transform transform_xy translate_fast_arrays transparent transrun tr_array_as_ref tr_bound_function_applyp tr_file_tty_messagesp tr_float_can_branch_complex tr_function_call_default trigexpandplus trigexpandtimes triginverses trigsign trivial_solutions tr_numer tr_optimize_max_loop tr_semicompile tr_state_vars tr_warn_bad_function_calls tr_warn_fexpr tr_warn_meval tr_warn_mode tr_warn_undeclared tr_warn_undefined_variable tstep ttyoff tube_extremes ufg ug %unitexpand unit_vectors uric uriem use_fast_arrays user_preamble usersetunits values vect_cross verbose vertex_color vertex_coloring vertex_partition vertex_size vertex_type view warnings weyl width windowname windowtitle wired_surface wireframe xaxis xaxis_color xaxis_secondary xaxis_type xaxis_width xlabel xlabel_secondary xlength xrange xrange_secondary xtics xtics_axis xtics_rotate xtics_rotate_secondary xtics_secondary xtics_secondary_axis xu_grid x_voxel xy_file xyplane xy_scale yaxis yaxis_color yaxis_secondary yaxis_type yaxis_width ylabel ylabel_secondary ylength yrange yrange_secondary ytics ytics_axis ytics_rotate ytics_rotate_secondary ytics_secondary ytics_secondary_axis yv_grid y_voxel yx_ratio zaxis zaxis_color zaxis_type zaxis_width zeroa zerob zerobern zeta%pi zlabel zlabel_rotate zlength zmin zn_primroot_limit zn_primroot_pretest",symbol:"_ __ %|0 %%|0"},contains:[{className:"comment",begin:"/\\*",end:"\\*/",contains:["self"]},t.QUOTE_STRING_MODE,{className:"number",relevance:0,variants:[{begin:"\\b(\\d+|\\d+\\.|\\.\\d+|\\d+\\.\\d+)[Ee][-+]?\\d+\\b"},{begin:"\\b(\\d+|\\d+\\.|\\.\\d+|\\d+\\.\\d+)[Bb][-+]?\\d+\\b",relevance:10},{begin:"\\b(\\.\\d+|\\d+\\.\\d+)\\b"},{begin:"\\b(\\d+|0[0-9A-Za-z]+)\\.?\\b"}]}],illegal:/@/}}return LJe=e,LJe}var DJe,Amn;function gni(){if(Amn)return DJe;Amn=1;function e(t){return{name:"MEL",keywords:"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform",illegal:""},{begin:"<=",relevance:0},{begin:"=>",relevance:0},{begin:"/\\\\"},{begin:"\\\\/"}]},{className:"built_in",variants:[{begin:":-\\|-->"},{begin:"=",relevance:0}]},a,t.C_BLOCK_COMMENT_MODE,s,t.NUMBER_MODE,o,u,{begin:/:-/},{begin:/\.$/}]}}return MJe=e,MJe}var PJe,Rmn;function bni(){if(Rmn)return PJe;Rmn=1;function e(t){return{name:"MIPS Assembly",case_insensitive:!0,aliases:["mips"],keywords:{$pattern:"\\.?"+t.IDENT_RE,meta:".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .ltorg ",built_in:"$0 $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30 $31 zero at v0 v1 a0 a1 a2 a3 a4 a5 a6 a7 t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 s0 s1 s2 s3 s4 s5 s6 s7 s8 k0 k1 gp sp fp ra $f0 $f1 $f2 $f2 $f4 $f5 $f6 $f7 $f8 $f9 $f10 $f11 $f12 $f13 $f14 $f15 $f16 $f17 $f18 $f19 $f20 $f21 $f22 $f23 $f24 $f25 $f26 $f27 $f28 $f29 $f30 $f31 Context Random EntryLo0 EntryLo1 Context PageMask Wired EntryHi HWREna BadVAddr Count Compare SR IntCtl SRSCtl SRSMap Cause EPC PRId EBase Config Config1 Config2 Config3 LLAddr Debug DEPC DESAVE CacheErr ECC ErrorEPC TagLo DataLo TagHi DataHi WatchLo WatchHi PerfCtl PerfCnt "},contains:[{className:"keyword",begin:"\\b(addi?u?|andi?|b(al)?|beql?|bgez(al)?l?|bgtzl?|blezl?|bltz(al)?l?|bnel?|cl[oz]|divu?|ext|ins|j(al)?|jalr(\\.hb)?|jr(\\.hb)?|lbu?|lhu?|ll|lui|lw[lr]?|maddu?|mfhi|mflo|movn|movz|move|msubu?|mthi|mtlo|mul|multu?|nop|nor|ori?|rotrv?|sb|sc|se[bh]|sh|sllv?|slti?u?|srav?|srlv?|subu?|sw[lr]?|xori?|wsbh|abs\\.[sd]|add\\.[sd]|alnv.ps|bc1[ft]l?|c\\.(s?f|un|u?eq|[ou]lt|[ou]le|ngle?|seq|l[et]|ng[et])\\.[sd]|(ceil|floor|round|trunc)\\.[lw]\\.[sd]|cfc1|cvt\\.d\\.[lsw]|cvt\\.l\\.[dsw]|cvt\\.ps\\.s|cvt\\.s\\.[dlw]|cvt\\.s\\.p[lu]|cvt\\.w\\.[dls]|div\\.[ds]|ldx?c1|luxc1|lwx?c1|madd\\.[sd]|mfc1|mov[fntz]?\\.[ds]|msub\\.[sd]|mth?c1|mul\\.[ds]|neg\\.[ds]|nmadd\\.[ds]|nmsub\\.[ds]|p[lu][lu]\\.ps|recip\\.fmt|r?sqrt\\.[ds]|sdx?c1|sub\\.[ds]|suxc1|swx?c1|break|cache|d?eret|[de]i|ehb|mfc0|mtc0|pause|prefx?|rdhwr|rdpgpr|sdbbp|ssnop|synci?|syscall|teqi?|tgei?u?|tlb(p|r|w[ir])|tlti?u?|tnei?|wait|wrpgpr)",end:"\\s"},t.COMMENT("[;#](?!\\s*$)","$"),t.C_BLOCK_COMMENT_MODE,t.QUOTE_STRING_MODE,{className:"string",begin:"'",end:"[^\\\\]'",relevance:0},{className:"title",begin:"\\|",end:"\\|",illegal:"\\n",relevance:0},{className:"number",variants:[{begin:"0x[0-9a-f]+"},{begin:"\\b-?\\d+"}],relevance:0},{className:"symbol",variants:[{begin:"^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:"},{begin:"^\\s*[0-9]+:"},{begin:"[0-9]+[bf]"}],relevance:0}],illegal:/\//}}return PJe=e,PJe}var BJe,Imn;function yni(){if(Imn)return BJe;Imn=1;function e(t){return{name:"Mizar",keywords:"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity",contains:[t.COMMENT("::","$")]}}return BJe=e,BJe}var FJe,Nmn;function vni(){if(Nmn)return FJe;Nmn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(...s){return s.map(u=>e(u)).join("")}function r(...s){return"("+s.map(u=>e(u)).join("|")+")"}function a(s){const o=["abs","accept","alarm","and","atan2","bind","binmode","bless","break","caller","chdir","chmod","chomp","chop","chown","chr","chroot","close","closedir","connect","continue","cos","crypt","dbmclose","dbmopen","defined","delete","die","do","dump","each","else","elsif","endgrent","endhostent","endnetent","endprotoent","endpwent","endservent","eof","eval","exec","exists","exit","exp","fcntl","fileno","flock","for","foreach","fork","format","formline","getc","getgrent","getgrgid","getgrnam","gethostbyaddr","gethostbyname","gethostent","getlogin","getnetbyaddr","getnetbyname","getnetent","getpeername","getpgrp","getpriority","getprotobyname","getprotobynumber","getprotoent","getpwent","getpwnam","getpwuid","getservbyname","getservbyport","getservent","getsockname","getsockopt","given","glob","gmtime","goto","grep","gt","hex","if","index","int","ioctl","join","keys","kill","last","lc","lcfirst","length","link","listen","local","localtime","log","lstat","lt","ma","map","mkdir","msgctl","msgget","msgrcv","msgsnd","my","ne","next","no","not","oct","open","opendir","or","ord","our","pack","package","pipe","pop","pos","print","printf","prototype","push","q|0","qq","quotemeta","qw","qx","rand","read","readdir","readline","readlink","readpipe","recv","redo","ref","rename","require","reset","return","reverse","rewinddir","rindex","rmdir","say","scalar","seek","seekdir","select","semctl","semget","semop","send","setgrent","sethostent","setnetent","setpgrp","setpriority","setprotoent","setpwent","setservent","setsockopt","shift","shmctl","shmget","shmread","shmwrite","shutdown","sin","sleep","socket","socketpair","sort","splice","split","sprintf","sqrt","srand","stat","state","study","sub","substr","symlink","syscall","sysopen","sysread","sysseek","system","syswrite","tell","telldir","tie","tied","time","times","tr","truncate","uc","ucfirst","umask","undef","unless","unlink","unpack","unshift","untie","until","use","utime","values","vec","wait","waitpid","wantarray","warn","when","while","write","x|0","xor","y|0"],u=/[dualxmsipngr]{0,12}/,h={$pattern:/[\w.]+/,keyword:o.join(" ")},f={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:h},p={begin:/->\{/,end:/\}/},m={variants:[{begin:/\$\d/},{begin:t(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")},{begin:/[$%@][^\s\w{]/,relevance:0}]},b=[s.BACKSLASH_ESCAPE,f,m],_=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],w=(A,k,I="\\1")=>{const N=I==="\\1"?I:t(I,k);return t(t("(?:",A,")"),k,/(?:\\.|[^\\\/])*?/,N,/(?:\\.|[^\\\/])*?/,I,u)},S=(A,k,I)=>t(t("(?:",A,")"),k,/(?:\\.|[^\\\/])*?/,I,u),C=[m,s.HASH_COMMENT_MODE,s.COMMENT(/^=\w/,/=cut/,{endsWithParent:!0}),p,{className:"string",contains:b,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[s.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[s.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\/\\/|"+s.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[s.HASH_COMMENT_MODE,{className:"regexp",variants:[{begin:w("s|tr|y",r(..._))},{begin:w("s|tr|y","\\(","\\)")},{begin:w("s|tr|y","\\[","\\]")},{begin:w("s|tr|y","\\{","\\}")}],relevance:2},{className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{begin:S("(?:m|qr)?",/\//,/\//)},{begin:S("m|qr",r(..._),/\1/)},{begin:S("m|qr",/\(/,/\)/)},{begin:S("m|qr",/\[/,/\]/)},{begin:S("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[s.TITLE_MODE]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return f.contains=C,p.contains=C,{name:"Perl",aliases:["pl","pm"],keywords:h,contains:C}}return FJe=a,FJe}var $Je,Omn;function _ni(){if(Omn)return $Je;Omn=1;function e(t){return{name:"Mojolicious",subLanguage:"xml",contains:[{className:"meta",begin:"^__(END|DATA)__$"},{begin:"^\\s*%{1,2}={0,2}",end:"$",subLanguage:"perl"},{begin:"<%{1,2}={0,2}",end:"={0,1}%>",subLanguage:"perl",excludeBegin:!0,excludeEnd:!0}]}}return $Je=e,$Je}var UJe,Lmn;function wni(){if(Lmn)return UJe;Lmn=1;function e(t){const r={className:"number",relevance:0,variants:[{begin:"[$][a-fA-F0-9]+"},t.NUMBER_MODE]};return{name:"Monkey",case_insensitive:!0,keywords:{keyword:"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw import",built_in:"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI",literal:"true false null and or shl shr mod"},illegal:/\/\*/,contains:[t.COMMENT("#rem","#end"),t.COMMENT("'","$",{relevance:0}),{className:"function",beginKeywords:"function method",end:"[(=:]|$",illegal:/\n/,contains:[t.UNDERSCORE_TITLE_MODE]},{className:"class",beginKeywords:"class interface",end:"$",contains:[{beginKeywords:"extends implements"},t.UNDERSCORE_TITLE_MODE]},{className:"built_in",begin:"\\b(self|super)\\b"},{className:"meta",begin:"\\s*#",end:"$",keywords:{"meta-keyword":"if else elseif endif end then"}},{className:"meta",begin:"^\\s*strict\\b"},{beginKeywords:"alias",end:"=",contains:[t.UNDERSCORE_TITLE_MODE]},t.QUOTE_STRING_MODE,r]}}return UJe=e,UJe}var zJe,Dmn;function Eni(){if(Dmn)return zJe;Dmn=1;function e(t){const r={keyword:"if then not for in while do return else elseif break continue switch and or unless when class extends super local import export from using",literal:"true false nil",built_in:"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table"},a="[A-Za-z$_][0-9A-Za-z$_]*",s={className:"subst",begin:/#\{/,end:/\}/,keywords:r},o=[t.inherit(t.C_NUMBER_MODE,{starts:{end:"(\\s*/)?",relevance:0}}),{className:"string",variants:[{begin:/'/,end:/'/,contains:[t.BACKSLASH_ESCAPE]},{begin:/"/,end:/"/,contains:[t.BACKSLASH_ESCAPE,s]}]},{className:"built_in",begin:"@__"+t.IDENT_RE},{begin:"@"+t.IDENT_RE},{begin:t.IDENT_RE+"\\\\"+t.IDENT_RE}];s.contains=o;const u=t.inherit(t.TITLE_MODE,{begin:a}),h="(\\(.*\\)\\s*)?\\B[-=]>",f={className:"params",begin:"\\([^\\(]",returnBegin:!0,contains:[{begin:/\(/,end:/\)/,keywords:r,contains:["self"].concat(o)}]};return{name:"MoonScript",aliases:["moon"],keywords:r,illegal:/\/\*/,contains:o.concat([t.COMMENT("--","$"),{className:"function",begin:"^\\s*"+a+"\\s*=\\s*"+h,end:"[-=]>",returnBegin:!0,contains:[u,f]},{begin:/[\(,:=]\s*/,relevance:0,contains:[{className:"function",begin:h,end:"[-=]>",returnBegin:!0,contains:[f]}]},{className:"class",beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[u]},u]},{className:"name",begin:a+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}])}}return zJe=e,zJe}var GJe,Mmn;function xni(){if(Mmn)return GJe;Mmn=1;function e(t){return{name:"N1QL",case_insensitive:!0,contains:[{beginKeywords:"build create index delete drop explain infer|10 insert merge prepare select update upsert|10",end:/;/,endsWithParent:!0,keywords:{keyword:"all alter analyze and any array as asc begin between binary boolean break bucket build by call case cast cluster collate collection commit connect continue correlate cover create database dataset datastore declare decrement delete derived desc describe distinct do drop each element else end every except exclude execute exists explain fetch first flatten for force from function grant group gsi having if ignore ilike in include increment index infer inline inner insert intersect into is join key keys keyspace known last left let letting like limit lsm map mapping matched materialized merge minus namespace nest not number object offset on option or order outer over parse partition password path pool prepare primary private privilege procedure public raw realm reduce rename return returning revoke right role rollback satisfies schema select self semi set show some start statistics string system then to transaction trigger truncate under union unique unknown unnest unset update upsert use user using validate value valued values via view when where while with within work xor",literal:"true false null missing|5",built_in:"array_agg array_append array_concat array_contains array_count array_distinct array_ifnull array_length array_max array_min array_position array_prepend array_put array_range array_remove array_repeat array_replace array_reverse array_sort array_sum avg count max min sum greatest least ifmissing ifmissingornull ifnull missingif nullif ifinf ifnan ifnanorinf naninf neginfif posinfif clock_millis clock_str date_add_millis date_add_str date_diff_millis date_diff_str date_part_millis date_part_str date_trunc_millis date_trunc_str duration_to_str millis str_to_millis millis_to_str millis_to_utc millis_to_zone_name now_millis now_str str_to_duration str_to_utc str_to_zone_name decode_json encode_json encoded_size poly_length base64 base64_encode base64_decode meta uuid abs acos asin atan atan2 ceil cos degrees e exp ln log floor pi power radians random round sign sin sqrt tan trunc object_length object_names object_pairs object_inner_pairs object_values object_inner_values object_add object_put object_remove object_unwrap regexp_contains regexp_like regexp_position regexp_replace contains initcap length lower ltrim position repeat replace rtrim split substr title trim upper isarray isatom isboolean isnumber isobject isstring type toarray toatom toboolean tonumber toobject tostring"},contains:[{className:"string",begin:"'",end:"'",contains:[t.BACKSLASH_ESCAPE]},{className:"string",begin:'"',end:'"',contains:[t.BACKSLASH_ESCAPE]},{className:"symbol",begin:"`",end:"`",contains:[t.BACKSLASH_ESCAPE],relevance:2},t.C_NUMBER_MODE,t.C_BLOCK_COMMENT_MODE]},t.C_BLOCK_COMMENT_MODE]}}return GJe=e,GJe}var qJe,Pmn;function Sni(){if(Pmn)return qJe;Pmn=1;function e(t){const r={className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{/,end:/\}/},{begin:/[$@]/+t.UNDERSCORE_IDENT_RE}]},a={endsWithParent:!0,keywords:{$pattern:"[a-z/_]+",literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},relevance:0,illegal:"=>",contains:[t.HASH_COMMENT_MODE,{className:"string",contains:[t.BACKSLASH_ESCAPE,r],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/}]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[r]},{className:"regexp",contains:[t.BACKSLASH_ESCAPE,r],variants:[{begin:"\\s\\^",end:"\\s|\\{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|\\{|;",returnEnd:!0},{begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number",begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{className:"number",begin:"\\b\\d+[kKmMgGdshdwy]*\\b",relevance:0},r]};return{name:"Nginx config",aliases:["nginxconf"],contains:[t.HASH_COMMENT_MODE,{begin:t.UNDERSCORE_IDENT_RE+"\\s+\\{",returnBegin:!0,end:/\{/,contains:[{className:"section",begin:t.UNDERSCORE_IDENT_RE}],relevance:0},{begin:t.UNDERSCORE_IDENT_RE+"\\s",end:";|\\{",returnBegin:!0,contains:[{className:"attribute",begin:t.UNDERSCORE_IDENT_RE,starts:a}],relevance:0}],illegal:"[^\\s\\}]"}}return qJe=e,qJe}var HJe,Bmn;function Tni(){if(Bmn)return HJe;Bmn=1;function e(t){return{name:"Nim",keywords:{keyword:"addr and as asm bind block break case cast const continue converter discard distinct div do elif else end enum except export finally for from func generic if import in include interface is isnot iterator let macro method mixin mod nil not notin object of or out proc ptr raise ref return shl shr static template try tuple type using var when while with without xor yield",literal:"shared guarded stdin stdout stderr result true false",built_in:"int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 float float32 float64 bool char string cstring pointer expr stmt void auto any range array openarray varargs seq set clong culong cchar cschar cshort cint csize clonglong cfloat cdouble clongdouble cuchar cushort cuint culonglong cstringarray semistatic"},contains:[{className:"meta",begin:/\{\./,end:/\.\}/,relevance:10},{className:"string",begin:/[a-zA-Z]\w*"/,end:/"/,contains:[{begin:/""/}]},{className:"string",begin:/([a-zA-Z]\w*)?"""/,end:/"""/},t.QUOTE_STRING_MODE,{className:"type",begin:/\b[A-Z]\w+\b/,relevance:0},{className:"number",relevance:0,variants:[{begin:/\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/},{begin:/\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/},{begin:/\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/},{begin:/\b(\d[_\d]*)('?[iIuUfF](8|16|32|64))?/}]},t.HASH_COMMENT_MODE]}}return HJe=e,HJe}var VJe,Fmn;function Cni(){if(Fmn)return VJe;Fmn=1;function e(t){const r={keyword:"rec with let in inherit assert if else then",literal:"true false or and null",built_in:"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation"},a={className:"subst",begin:/\$\{/,end:/\}/,keywords:r},s={begin:/[a-zA-Z0-9-_]+(\s*=)/,returnBegin:!0,relevance:0,contains:[{className:"attr",begin:/\S+/}]},o={className:"string",contains:[a],variants:[{begin:"''",end:"''"},{begin:'"',end:'"'}]},u=[t.NUMBER_MODE,t.HASH_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,o,s];return a.contains=u,{name:"Nix",aliases:["nixos"],keywords:r,contains:u}}return VJe=e,VJe}var YJe,$mn;function Ani(){if($mn)return YJe;$mn=1;function e(t){return{name:"Node REPL",contains:[{className:"meta",starts:{end:/ |$/,starts:{end:"$",subLanguage:"javascript"}},variants:[{begin:/^>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}}return YJe=e,YJe}var jJe,Umn;function kni(){if(Umn)return jJe;Umn=1;function e(t){const r={className:"variable",begin:/\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)/},a={className:"variable",begin:/\$+\{[\w.:-]+\}/},s={className:"variable",begin:/\$+\w+/,illegal:/\(\)\{\}/},o={className:"variable",begin:/\$+\([\w^.:-]+\)/},u={className:"params",begin:"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)"},h={className:"keyword",begin:/!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversion|gettlbversion|if|ifdef|ifmacrodef|ifmacrondef|ifndef|include|insertmacro|macro|macroend|makensis|packhdr|searchparse|searchreplace|system|tempfile|undef|verbose|warning)/},f={className:"meta",begin:/\$(\\[nrt]|\$)/},p={className:"class",begin:/\w+::\w+/},m={className:"string",variants:[{begin:'"',end:'"'},{begin:"'",end:"'"},{begin:"`",end:"`"}],illegal:/\n/,contains:[f,r,a,s,o]};return{name:"NSIS",case_insensitive:!1,keywords:{keyword:"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecShellWait ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileWriteUTF16LE FileSeek FileWrite FileWriteByte FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetKnownFolderPath GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfRtlLanguage IfShellVarContextAll IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText Int64Cmp Int64CmpU Int64Fmt IntCmp IntCmpU IntFmt IntOp IntPtrCmp IntPtrCmpU IntPtrOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadAndSetImage LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestLongPathAware ManifestMaxVersionTested ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PEAddResource PEDllCharacteristics PERemoveResource PESubsysVer Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegMultiStr WriteRegNone WriteRegStr WriteUninstaller XPStyle",literal:"admin all auto both bottom bzip2 colored components current custom directory false force hide highest ifdiff ifnewer instfiles lastused leave left license listonly lzma nevershow none normal notset off on open print right show silent silentlog smooth textonly top true try un.components un.custom un.directory un.instfiles un.license uninstConfirm user Win10 Win7 Win8 WinVista zlib"},contains:[t.HASH_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.COMMENT(";","$",{relevance:0}),{className:"function",beginKeywords:"Function PageEx Section SectionGroup",end:"$"},m,h,a,s,o,u,p,t.NUMBER_MODE]}}return jJe=e,jJe}var WJe,zmn;function Rni(){if(zmn)return WJe;zmn=1;function e(t){const r={className:"built_in",begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},a=/[a-zA-Z@][a-zA-Z0-9_]*/,s={$pattern:a,keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},o={$pattern:a,keyword:"@interface @class @protocol @implementation"};return{name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],keywords:s,illegal:"/,end:/$/,illegal:"\\n"},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+o.keyword.split(" ").join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:o,contains:[t.UNDERSCORE_TITLE_MODE]},{begin:"\\."+t.UNDERSCORE_IDENT_RE,relevance:0}]}}return WJe=e,WJe}var KJe,Gmn;function Ini(){if(Gmn)return KJe;Gmn=1;function e(t){return{name:"OCaml",aliases:["ml"],keywords:{$pattern:"[a-z_]\\w*!?",keyword:"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value",built_in:"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref",literal:"true false"},illegal:/\/\/|>>/,contains:[{className:"literal",begin:"\\[(\\|\\|)?\\]|\\(\\)",relevance:0},t.COMMENT("\\(\\*","\\*\\)",{contains:["self"]}),{className:"symbol",begin:"'[A-Za-z_](?!')[\\w']*"},{className:"type",begin:"`[A-Z][\\w']*"},{className:"type",begin:"\\b[A-Z][\\w']*",relevance:0},{begin:"[a-z_]\\w*'[\\w']*",relevance:0},t.inherit(t.APOS_STRING_MODE,{className:"string",relevance:0}),t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),{className:"number",begin:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",relevance:0},{begin:/->/}]}}return KJe=e,KJe}var XJe,qmn;function Nni(){if(qmn)return XJe;qmn=1;function e(t){const r={className:"keyword",begin:"\\$(f[asn]|t|vp[rtd]|children)"},a={className:"literal",begin:"false|true|PI|undef"},s={className:"number",begin:"\\b\\d+(\\.\\d+)?(e-?\\d+)?",relevance:0},o=t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),u={className:"meta",keywords:{"meta-keyword":"include use"},begin:"include|use <",end:">"},h={className:"params",begin:"\\(",end:"\\)",contains:["self",s,o,r,a]},f={begin:"[*!#%]",relevance:0},p={className:"function",beginKeywords:"module function",end:/=|\{/,contains:[h,t.UNDERSCORE_TITLE_MODE]};return{name:"OpenSCAD",aliases:["scad"],keywords:{keyword:"function module include use for intersection_for if else \\%",literal:"false true PI undef",built_in:"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign"},contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,s,u,o,r,f,p]}}return XJe=e,XJe}var QJe,Hmn;function Oni(){if(Hmn)return QJe;Hmn=1;function e(t){const r={$pattern:/\.?\w+/,keyword:"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained"},a=t.COMMENT(/\{/,/\}/,{relevance:0}),s=t.COMMENT("\\(\\*","\\*\\)",{relevance:10}),o={className:"string",begin:"'",end:"'",contains:[{begin:"''"}]},u={className:"string",begin:"(#\\d+)+"},h={className:"function",beginKeywords:"function constructor destructor procedure method",end:"[:;]",keywords:"function constructor|10 destructor|10 procedure|10 method|10",contains:[t.TITLE_MODE,{className:"params",begin:"\\(",end:"\\)",keywords:r,contains:[o,u]},a,s]};return{name:"Oxygene",case_insensitive:!0,keywords:r,illegal:'("|\\$[G-Zg-z]|\\/\\*||->)',contains:[a,s,t.C_LINE_COMMENT_MODE,o,u,t.NUMBER_MODE,h,{className:"class",begin:"=\\bclass\\b",end:"end;",keywords:r,contains:[o,u,a,s,t.C_LINE_COMMENT_MODE,h]}]}}return QJe=e,QJe}var ZJe,Vmn;function Lni(){if(Vmn)return ZJe;Vmn=1;function e(t){const r=t.COMMENT(/\{/,/\}/,{contains:["self"]});return{name:"Parser3",subLanguage:"xml",relevance:0,contains:[t.COMMENT("^#","$"),t.COMMENT(/\^rem\{/,/\}/,{relevance:10,contains:[r]}),{className:"meta",begin:"^@(?:BASE|USE|CLASS|OPTIONS)$",relevance:10},{className:"title",begin:"@[\\w\\-]+\\[[\\w^;\\-]*\\](?:\\[[\\w^;\\-]*\\])?(?:.*)$"},{className:"variable",begin:/\$\{?[\w\-.:]+\}?/},{className:"keyword",begin:/\^[\w\-.:]+/},{className:"number",begin:"\\^#[0-9a-fA-F]+"},t.C_NUMBER_MODE]}}return ZJe=e,ZJe}var JJe,Ymn;function Dni(){if(Ymn)return JJe;Ymn=1;function e(t){const r={className:"variable",begin:/\$[\w\d#@][\w\d_]*/},a={className:"variable",begin:/<(?!\/)/,end:/>/};return{name:"Packet Filter config",aliases:["pf.conf"],keywords:{$pattern:/[a-z0-9_<>-]+/,built_in:"block match pass load anchor|5 antispoof|10 set table",keyword:"in out log quick on rdomain inet inet6 proto from port os to route allow-opts divert-packet divert-reply divert-to flags group icmp-type icmp6-type label once probability recieved-on rtable prio queue tos tag tagged user keep fragment for os drop af-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robin source-hash static-port dup-to reply-to route-to parent bandwidth default min max qlimit block-policy debug fingerprints hostid limit loginterface optimization reassemble ruleset-optimization basic none profile skip state-defaults state-policy timeout const counters persist no modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppy source-track global rule max-src-nodes max-src-states max-src-conn max-src-conn-rate overload flush scrub|5 max-mss min-ttl no-df|10 random-id",literal:"all any no-route self urpf-failed egress|5 unknown"},contains:[t.HASH_COMMENT_MODE,t.NUMBER_MODE,t.QUOTE_STRING_MODE,r,a]}}return JJe=e,JJe}var eet,jmn;function Mni(){if(jmn)return eet;jmn=1;function e(t){const r=t.COMMENT("--","$"),a="[a-zA-Z_][a-zA-Z_0-9$]*",s="\\$([a-zA-Z_]?|[a-zA-Z_][a-zA-Z_0-9]*)\\$",o="<<\\s*"+a+"\\s*>>",u="ABORT ALTER ANALYZE BEGIN CALL CHECKPOINT|10 CLOSE CLUSTER COMMENT COMMIT COPY CREATE DEALLOCATE DECLARE DELETE DISCARD DO DROP END EXECUTE EXPLAIN FETCH GRANT IMPORT INSERT LISTEN LOAD LOCK MOVE NOTIFY PREPARE REASSIGN|10 REFRESH REINDEX RELEASE RESET REVOKE ROLLBACK SAVEPOINT SECURITY SELECT SET SHOW START TRUNCATE UNLISTEN|10 UPDATE VACUUM|10 VALUES AGGREGATE COLLATION CONVERSION|10 DATABASE DEFAULT PRIVILEGES DOMAIN TRIGGER EXTENSION FOREIGN WRAPPER|10 TABLE FUNCTION GROUP LANGUAGE LARGE OBJECT MATERIALIZED VIEW OPERATOR CLASS FAMILY POLICY PUBLICATION|10 ROLE RULE SCHEMA SEQUENCE SERVER STATISTICS SUBSCRIPTION SYSTEM TABLESPACE CONFIGURATION DICTIONARY PARSER TEMPLATE TYPE USER MAPPING PREPARED ACCESS METHOD CAST AS TRANSFORM TRANSACTION OWNED TO INTO SESSION AUTHORIZATION INDEX PROCEDURE ASSERTION ALL ANALYSE AND ANY ARRAY ASC ASYMMETRIC|10 BOTH CASE CHECK COLLATE COLUMN CONCURRENTLY|10 CONSTRAINT CROSS DEFERRABLE RANGE DESC DISTINCT ELSE EXCEPT FOR FREEZE|10 FROM FULL HAVING ILIKE IN INITIALLY INNER INTERSECT IS ISNULL JOIN LATERAL LEADING LIKE LIMIT NATURAL NOT NOTNULL NULL OFFSET ON ONLY OR ORDER OUTER OVERLAPS PLACING PRIMARY REFERENCES RETURNING SIMILAR SOME SYMMETRIC TABLESAMPLE THEN TRAILING UNION UNIQUE USING VARIADIC|10 VERBOSE WHEN WHERE WINDOW WITH BY RETURNS INOUT OUT SETOF|10 IF STRICT CURRENT CONTINUE OWNER LOCATION OVER PARTITION WITHIN BETWEEN ESCAPE EXTERNAL INVOKER DEFINER WORK RENAME VERSION CONNECTION CONNECT TABLES TEMP TEMPORARY FUNCTIONS SEQUENCES TYPES SCHEMAS OPTION CASCADE RESTRICT ADD ADMIN EXISTS VALID VALIDATE ENABLE DISABLE REPLICA|10 ALWAYS PASSING COLUMNS PATH REF VALUE OVERRIDING IMMUTABLE STABLE VOLATILE BEFORE AFTER EACH ROW PROCEDURAL ROUTINE NO HANDLER VALIDATOR OPTIONS STORAGE OIDS|10 WITHOUT INHERIT DEPENDS CALLED INPUT LEAKPROOF|10 COST ROWS NOWAIT SEARCH UNTIL ENCRYPTED|10 PASSWORD CONFLICT|10 INSTEAD INHERITS CHARACTERISTICS WRITE CURSOR ALSO STATEMENT SHARE EXCLUSIVE INLINE ISOLATION REPEATABLE READ COMMITTED SERIALIZABLE UNCOMMITTED LOCAL GLOBAL SQL PROCEDURES RECURSIVE SNAPSHOT ROLLUP CUBE TRUSTED|10 INCLUDE FOLLOWING PRECEDING UNBOUNDED RANGE GROUPS UNENCRYPTED|10 SYSID FORMAT DELIMITER HEADER QUOTE ENCODING FILTER OFF FORCE_QUOTE FORCE_NOT_NULL FORCE_NULL COSTS BUFFERS TIMING SUMMARY DISABLE_PAGE_SKIPPING RESTART CYCLE GENERATED IDENTITY DEFERRED IMMEDIATE LEVEL LOGGED UNLOGGED OF NOTHING NONE EXCLUDE ATTRIBUTE USAGE ROUTINES TRUE FALSE NAN INFINITY ",h="SUPERUSER NOSUPERUSER CREATEDB NOCREATEDB CREATEROLE NOCREATEROLE INHERIT NOINHERIT LOGIN NOLOGIN REPLICATION NOREPLICATION BYPASSRLS NOBYPASSRLS ",f="ALIAS BEGIN CONSTANT DECLARE END EXCEPTION RETURN PERFORM|10 RAISE GET DIAGNOSTICS STACKED|10 FOREACH LOOP ELSIF EXIT WHILE REVERSE SLICE DEBUG LOG INFO NOTICE WARNING ASSERT OPEN ",p="BIGINT INT8 BIGSERIAL SERIAL8 BIT VARYING VARBIT BOOLEAN BOOL BOX BYTEA CHARACTER CHAR VARCHAR CIDR CIRCLE DATE DOUBLE PRECISION FLOAT8 FLOAT INET INTEGER INT INT4 INTERVAL JSON JSONB LINE LSEG|10 MACADDR MACADDR8 MONEY NUMERIC DEC DECIMAL PATH POINT POLYGON REAL FLOAT4 SMALLINT INT2 SMALLSERIAL|10 SERIAL2|10 SERIAL|10 SERIAL4|10 TEXT TIME ZONE TIMETZ|10 TIMESTAMP TIMESTAMPTZ|10 TSQUERY|10 TSVECTOR|10 TXID_SNAPSHOT|10 UUID XML NATIONAL NCHAR INT4RANGE|10 INT8RANGE|10 NUMRANGE|10 TSRANGE|10 TSTZRANGE|10 DATERANGE|10 ANYELEMENT ANYARRAY ANYNONARRAY ANYENUM ANYRANGE CSTRING INTERNAL RECORD PG_DDL_COMMAND VOID UNKNOWN OPAQUE REFCURSOR NAME OID REGPROC|10 REGPROCEDURE|10 REGOPER|10 REGOPERATOR|10 REGCLASS|10 REGTYPE|10 REGROLE|10 REGNAMESPACE|10 REGCONFIG|10 REGDICTIONARY|10 ",m=p.trim().split(" ").map(function(A){return A.split("|")[0]}).join("|"),b="CURRENT_TIME CURRENT_TIMESTAMP CURRENT_USER CURRENT_CATALOG|10 CURRENT_DATE LOCALTIME LOCALTIMESTAMP CURRENT_ROLE|10 CURRENT_SCHEMA|10 SESSION_USER PUBLIC ",_="FOUND NEW OLD TG_NAME|10 TG_WHEN|10 TG_LEVEL|10 TG_OP|10 TG_RELID|10 TG_RELNAME|10 TG_TABLE_NAME|10 TG_TABLE_SCHEMA|10 TG_NARGS|10 TG_ARGV|10 TG_EVENT|10 TG_TAG|10 ROW_COUNT RESULT_OID|10 PG_CONTEXT|10 RETURNED_SQLSTATE COLUMN_NAME CONSTRAINT_NAME PG_DATATYPE_NAME|10 MESSAGE_TEXT TABLE_NAME SCHEMA_NAME PG_EXCEPTION_DETAIL|10 PG_EXCEPTION_HINT|10 PG_EXCEPTION_CONTEXT|10 ",w="SQLSTATE SQLERRM|10 SUCCESSFUL_COMPLETION WARNING DYNAMIC_RESULT_SETS_RETURNED IMPLICIT_ZERO_BIT_PADDING NULL_VALUE_ELIMINATED_IN_SET_FUNCTION PRIVILEGE_NOT_GRANTED PRIVILEGE_NOT_REVOKED STRING_DATA_RIGHT_TRUNCATION DEPRECATED_FEATURE NO_DATA NO_ADDITIONAL_DYNAMIC_RESULT_SETS_RETURNED SQL_STATEMENT_NOT_YET_COMPLETE CONNECTION_EXCEPTION CONNECTION_DOES_NOT_EXIST CONNECTION_FAILURE SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION SQLSERVER_REJECTED_ESTABLISHMENT_OF_SQLCONNECTION TRANSACTION_RESOLUTION_UNKNOWN PROTOCOL_VIOLATION TRIGGERED_ACTION_EXCEPTION FEATURE_NOT_SUPPORTED INVALID_TRANSACTION_INITIATION LOCATOR_EXCEPTION INVALID_LOCATOR_SPECIFICATION INVALID_GRANTOR INVALID_GRANT_OPERATION INVALID_ROLE_SPECIFICATION DIAGNOSTICS_EXCEPTION STACKED_DIAGNOSTICS_ACCESSED_WITHOUT_ACTIVE_HANDLER CASE_NOT_FOUND CARDINALITY_VIOLATION DATA_EXCEPTION ARRAY_SUBSCRIPT_ERROR CHARACTER_NOT_IN_REPERTOIRE DATETIME_FIELD_OVERFLOW DIVISION_BY_ZERO ERROR_IN_ASSIGNMENT ESCAPE_CHARACTER_CONFLICT INDICATOR_OVERFLOW INTERVAL_FIELD_OVERFLOW INVALID_ARGUMENT_FOR_LOGARITHM INVALID_ARGUMENT_FOR_NTILE_FUNCTION INVALID_ARGUMENT_FOR_NTH_VALUE_FUNCTION INVALID_ARGUMENT_FOR_POWER_FUNCTION INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION INVALID_CHARACTER_VALUE_FOR_CAST INVALID_DATETIME_FORMAT INVALID_ESCAPE_CHARACTER INVALID_ESCAPE_OCTET INVALID_ESCAPE_SEQUENCE NONSTANDARD_USE_OF_ESCAPE_CHARACTER INVALID_INDICATOR_PARAMETER_VALUE INVALID_PARAMETER_VALUE INVALID_REGULAR_EXPRESSION INVALID_ROW_COUNT_IN_LIMIT_CLAUSE INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE INVALID_TABLESAMPLE_ARGUMENT INVALID_TABLESAMPLE_REPEAT INVALID_TIME_ZONE_DISPLACEMENT_VALUE INVALID_USE_OF_ESCAPE_CHARACTER MOST_SPECIFIC_TYPE_MISMATCH NULL_VALUE_NOT_ALLOWED NULL_VALUE_NO_INDICATOR_PARAMETER NUMERIC_VALUE_OUT_OF_RANGE SEQUENCE_GENERATOR_LIMIT_EXCEEDED STRING_DATA_LENGTH_MISMATCH STRING_DATA_RIGHT_TRUNCATION SUBSTRING_ERROR TRIM_ERROR UNTERMINATED_C_STRING ZERO_LENGTH_CHARACTER_STRING FLOATING_POINT_EXCEPTION INVALID_TEXT_REPRESENTATION INVALID_BINARY_REPRESENTATION BAD_COPY_FILE_FORMAT UNTRANSLATABLE_CHARACTER NOT_AN_XML_DOCUMENT INVALID_XML_DOCUMENT INVALID_XML_CONTENT INVALID_XML_COMMENT INVALID_XML_PROCESSING_INSTRUCTION INTEGRITY_CONSTRAINT_VIOLATION RESTRICT_VIOLATION NOT_NULL_VIOLATION FOREIGN_KEY_VIOLATION UNIQUE_VIOLATION CHECK_VIOLATION EXCLUSION_VIOLATION INVALID_CURSOR_STATE INVALID_TRANSACTION_STATE ACTIVE_SQL_TRANSACTION BRANCH_TRANSACTION_ALREADY_ACTIVE HELD_CURSOR_REQUIRES_SAME_ISOLATION_LEVEL INAPPROPRIATE_ACCESS_MODE_FOR_BRANCH_TRANSACTION INAPPROPRIATE_ISOLATION_LEVEL_FOR_BRANCH_TRANSACTION NO_ACTIVE_SQL_TRANSACTION_FOR_BRANCH_TRANSACTION READ_ONLY_SQL_TRANSACTION SCHEMA_AND_DATA_STATEMENT_MIXING_NOT_SUPPORTED NO_ACTIVE_SQL_TRANSACTION IN_FAILED_SQL_TRANSACTION IDLE_IN_TRANSACTION_SESSION_TIMEOUT INVALID_SQL_STATEMENT_NAME TRIGGERED_DATA_CHANGE_VIOLATION INVALID_AUTHORIZATION_SPECIFICATION INVALID_PASSWORD DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST DEPENDENT_OBJECTS_STILL_EXIST INVALID_TRANSACTION_TERMINATION SQL_ROUTINE_EXCEPTION FUNCTION_EXECUTED_NO_RETURN_STATEMENT MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED INVALID_CURSOR_NAME EXTERNAL_ROUTINE_EXCEPTION CONTAINING_SQL_NOT_PERMITTED MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED EXTERNAL_ROUTINE_INVOCATION_EXCEPTION INVALID_SQLSTATE_RETURNED NULL_VALUE_NOT_ALLOWED TRIGGER_PROTOCOL_VIOLATED SRF_PROTOCOL_VIOLATED EVENT_TRIGGER_PROTOCOL_VIOLATED SAVEPOINT_EXCEPTION INVALID_SAVEPOINT_SPECIFICATION INVALID_CATALOG_NAME INVALID_SCHEMA_NAME TRANSACTION_ROLLBACK TRANSACTION_INTEGRITY_CONSTRAINT_VIOLATION SERIALIZATION_FAILURE STATEMENT_COMPLETION_UNKNOWN DEADLOCK_DETECTED SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION SYNTAX_ERROR INSUFFICIENT_PRIVILEGE CANNOT_COERCE GROUPING_ERROR WINDOWING_ERROR INVALID_RECURSION INVALID_FOREIGN_KEY INVALID_NAME NAME_TOO_LONG RESERVED_NAME DATATYPE_MISMATCH INDETERMINATE_DATATYPE COLLATION_MISMATCH INDETERMINATE_COLLATION WRONG_OBJECT_TYPE GENERATED_ALWAYS UNDEFINED_COLUMN UNDEFINED_FUNCTION UNDEFINED_TABLE UNDEFINED_PARAMETER UNDEFINED_OBJECT DUPLICATE_COLUMN DUPLICATE_CURSOR DUPLICATE_DATABASE DUPLICATE_FUNCTION DUPLICATE_PREPARED_STATEMENT DUPLICATE_SCHEMA DUPLICATE_TABLE DUPLICATE_ALIAS DUPLICATE_OBJECT AMBIGUOUS_COLUMN AMBIGUOUS_FUNCTION AMBIGUOUS_PARAMETER AMBIGUOUS_ALIAS INVALID_COLUMN_REFERENCE INVALID_COLUMN_DEFINITION INVALID_CURSOR_DEFINITION INVALID_DATABASE_DEFINITION INVALID_FUNCTION_DEFINITION INVALID_PREPARED_STATEMENT_DEFINITION INVALID_SCHEMA_DEFINITION INVALID_TABLE_DEFINITION INVALID_OBJECT_DEFINITION WITH_CHECK_OPTION_VIOLATION INSUFFICIENT_RESOURCES DISK_FULL OUT_OF_MEMORY TOO_MANY_CONNECTIONS CONFIGURATION_LIMIT_EXCEEDED PROGRAM_LIMIT_EXCEEDED STATEMENT_TOO_COMPLEX TOO_MANY_COLUMNS TOO_MANY_ARGUMENTS OBJECT_NOT_IN_PREREQUISITE_STATE OBJECT_IN_USE CANT_CHANGE_RUNTIME_PARAM LOCK_NOT_AVAILABLE OPERATOR_INTERVENTION QUERY_CANCELED ADMIN_SHUTDOWN CRASH_SHUTDOWN CANNOT_CONNECT_NOW DATABASE_DROPPED SYSTEM_ERROR IO_ERROR UNDEFINED_FILE DUPLICATE_FILE SNAPSHOT_TOO_OLD CONFIG_FILE_ERROR LOCK_FILE_EXISTS FDW_ERROR FDW_COLUMN_NAME_NOT_FOUND FDW_DYNAMIC_PARAMETER_VALUE_NEEDED FDW_FUNCTION_SEQUENCE_ERROR FDW_INCONSISTENT_DESCRIPTOR_INFORMATION FDW_INVALID_ATTRIBUTE_VALUE FDW_INVALID_COLUMN_NAME FDW_INVALID_COLUMN_NUMBER FDW_INVALID_DATA_TYPE FDW_INVALID_DATA_TYPE_DESCRIPTORS FDW_INVALID_DESCRIPTOR_FIELD_IDENTIFIER FDW_INVALID_HANDLE FDW_INVALID_OPTION_INDEX FDW_INVALID_OPTION_NAME FDW_INVALID_STRING_LENGTH_OR_BUFFER_LENGTH FDW_INVALID_STRING_FORMAT FDW_INVALID_USE_OF_NULL_POINTER FDW_TOO_MANY_HANDLES FDW_OUT_OF_MEMORY FDW_NO_SCHEMAS FDW_OPTION_NAME_NOT_FOUND FDW_REPLY_HANDLE FDW_SCHEMA_NOT_FOUND FDW_TABLE_NOT_FOUND FDW_UNABLE_TO_CREATE_EXECUTION FDW_UNABLE_TO_CREATE_REPLY FDW_UNABLE_TO_ESTABLISH_CONNECTION PLPGSQL_ERROR RAISE_EXCEPTION NO_DATA_FOUND TOO_MANY_ROWS ASSERT_FAILURE INTERNAL_ERROR DATA_CORRUPTED INDEX_CORRUPTED ",C="ARRAY_AGG AVG BIT_AND BIT_OR BOOL_AND BOOL_OR COUNT EVERY JSON_AGG JSONB_AGG JSON_OBJECT_AGG JSONB_OBJECT_AGG MAX MIN MODE STRING_AGG SUM XMLAGG CORR COVAR_POP COVAR_SAMP REGR_AVGX REGR_AVGY REGR_COUNT REGR_INTERCEPT REGR_R2 REGR_SLOPE REGR_SXX REGR_SXY REGR_SYY STDDEV STDDEV_POP STDDEV_SAMP VARIANCE VAR_POP VAR_SAMP PERCENTILE_CONT PERCENTILE_DISC ROW_NUMBER RANK DENSE_RANK PERCENT_RANK CUME_DIST NTILE LAG LEAD FIRST_VALUE LAST_VALUE NTH_VALUE NUM_NONNULLS NUM_NULLS ABS CBRT CEIL CEILING DEGREES DIV EXP FLOOR LN LOG MOD PI POWER RADIANS ROUND SCALE SIGN SQRT TRUNC WIDTH_BUCKET RANDOM SETSEED ACOS ACOSD ASIN ASIND ATAN ATAND ATAN2 ATAN2D COS COSD COT COTD SIN SIND TAN TAND BIT_LENGTH CHAR_LENGTH CHARACTER_LENGTH LOWER OCTET_LENGTH OVERLAY POSITION SUBSTRING TREAT TRIM UPPER ASCII BTRIM CHR CONCAT CONCAT_WS CONVERT CONVERT_FROM CONVERT_TO DECODE ENCODE INITCAP LEFT LENGTH LPAD LTRIM MD5 PARSE_IDENT PG_CLIENT_ENCODING QUOTE_IDENT|10 QUOTE_LITERAL|10 QUOTE_NULLABLE|10 REGEXP_MATCH REGEXP_MATCHES REGEXP_REPLACE REGEXP_SPLIT_TO_ARRAY REGEXP_SPLIT_TO_TABLE REPEAT REPLACE REVERSE RIGHT RPAD RTRIM SPLIT_PART STRPOS SUBSTR TO_ASCII TO_HEX TRANSLATE OCTET_LENGTH GET_BIT GET_BYTE SET_BIT SET_BYTE TO_CHAR TO_DATE TO_NUMBER TO_TIMESTAMP AGE CLOCK_TIMESTAMP|10 DATE_PART DATE_TRUNC ISFINITE JUSTIFY_DAYS JUSTIFY_HOURS JUSTIFY_INTERVAL MAKE_DATE MAKE_INTERVAL|10 MAKE_TIME MAKE_TIMESTAMP|10 MAKE_TIMESTAMPTZ|10 NOW STATEMENT_TIMESTAMP|10 TIMEOFDAY TRANSACTION_TIMESTAMP|10 ENUM_FIRST ENUM_LAST ENUM_RANGE AREA CENTER DIAMETER HEIGHT ISCLOSED ISOPEN NPOINTS PCLOSE POPEN RADIUS WIDTH BOX BOUND_BOX CIRCLE LINE LSEG PATH POLYGON ABBREV BROADCAST HOST HOSTMASK MASKLEN NETMASK NETWORK SET_MASKLEN TEXT INET_SAME_FAMILY INET_MERGE MACADDR8_SET7BIT ARRAY_TO_TSVECTOR GET_CURRENT_TS_CONFIG NUMNODE PLAINTO_TSQUERY PHRASETO_TSQUERY WEBSEARCH_TO_TSQUERY QUERYTREE SETWEIGHT STRIP TO_TSQUERY TO_TSVECTOR JSON_TO_TSVECTOR JSONB_TO_TSVECTOR TS_DELETE TS_FILTER TS_HEADLINE TS_RANK TS_RANK_CD TS_REWRITE TSQUERY_PHRASE TSVECTOR_TO_ARRAY TSVECTOR_UPDATE_TRIGGER TSVECTOR_UPDATE_TRIGGER_COLUMN XMLCOMMENT XMLCONCAT XMLELEMENT XMLFOREST XMLPI XMLROOT XMLEXISTS XML_IS_WELL_FORMED XML_IS_WELL_FORMED_DOCUMENT XML_IS_WELL_FORMED_CONTENT XPATH XPATH_EXISTS XMLTABLE XMLNAMESPACES TABLE_TO_XML TABLE_TO_XMLSCHEMA TABLE_TO_XML_AND_XMLSCHEMA QUERY_TO_XML QUERY_TO_XMLSCHEMA QUERY_TO_XML_AND_XMLSCHEMA CURSOR_TO_XML CURSOR_TO_XMLSCHEMA SCHEMA_TO_XML SCHEMA_TO_XMLSCHEMA SCHEMA_TO_XML_AND_XMLSCHEMA DATABASE_TO_XML DATABASE_TO_XMLSCHEMA DATABASE_TO_XML_AND_XMLSCHEMA XMLATTRIBUTES TO_JSON TO_JSONB ARRAY_TO_JSON ROW_TO_JSON JSON_BUILD_ARRAY JSONB_BUILD_ARRAY JSON_BUILD_OBJECT JSONB_BUILD_OBJECT JSON_OBJECT JSONB_OBJECT JSON_ARRAY_LENGTH JSONB_ARRAY_LENGTH JSON_EACH JSONB_EACH JSON_EACH_TEXT JSONB_EACH_TEXT JSON_EXTRACT_PATH JSONB_EXTRACT_PATH JSON_OBJECT_KEYS JSONB_OBJECT_KEYS JSON_POPULATE_RECORD JSONB_POPULATE_RECORD JSON_POPULATE_RECORDSET JSONB_POPULATE_RECORDSET JSON_ARRAY_ELEMENTS JSONB_ARRAY_ELEMENTS JSON_ARRAY_ELEMENTS_TEXT JSONB_ARRAY_ELEMENTS_TEXT JSON_TYPEOF JSONB_TYPEOF JSON_TO_RECORD JSONB_TO_RECORD JSON_TO_RECORDSET JSONB_TO_RECORDSET JSON_STRIP_NULLS JSONB_STRIP_NULLS JSONB_SET JSONB_INSERT JSONB_PRETTY CURRVAL LASTVAL NEXTVAL SETVAL COALESCE NULLIF GREATEST LEAST ARRAY_APPEND ARRAY_CAT ARRAY_NDIMS ARRAY_DIMS ARRAY_FILL ARRAY_LENGTH ARRAY_LOWER ARRAY_POSITION ARRAY_POSITIONS ARRAY_PREPEND ARRAY_REMOVE ARRAY_REPLACE ARRAY_TO_STRING ARRAY_UPPER CARDINALITY STRING_TO_ARRAY UNNEST ISEMPTY LOWER_INC UPPER_INC LOWER_INF UPPER_INF RANGE_MERGE GENERATE_SERIES GENERATE_SUBSCRIPTS CURRENT_DATABASE CURRENT_QUERY CURRENT_SCHEMA|10 CURRENT_SCHEMAS|10 INET_CLIENT_ADDR INET_CLIENT_PORT INET_SERVER_ADDR INET_SERVER_PORT ROW_SECURITY_ACTIVE FORMAT_TYPE TO_REGCLASS TO_REGPROC TO_REGPROCEDURE TO_REGOPER TO_REGOPERATOR TO_REGTYPE TO_REGNAMESPACE TO_REGROLE COL_DESCRIPTION OBJ_DESCRIPTION SHOBJ_DESCRIPTION TXID_CURRENT TXID_CURRENT_IF_ASSIGNED TXID_CURRENT_SNAPSHOT TXID_SNAPSHOT_XIP TXID_SNAPSHOT_XMAX TXID_SNAPSHOT_XMIN TXID_VISIBLE_IN_SNAPSHOT TXID_STATUS CURRENT_SETTING SET_CONFIG BRIN_SUMMARIZE_NEW_VALUES BRIN_SUMMARIZE_RANGE BRIN_DESUMMARIZE_RANGE GIN_CLEAN_PENDING_LIST SUPPRESS_REDUNDANT_UPDATES_TRIGGER LO_FROM_BYTEA LO_PUT LO_GET LO_CREAT LO_CREATE LO_UNLINK LO_IMPORT LO_EXPORT LOREAD LOWRITE GROUPING CAST ".trim().split(" ").map(function(A){return A.split("|")[0]}).join("|");return{name:"PostgreSQL",aliases:["postgres","postgresql"],case_insensitive:!0,keywords:{keyword:u+f+h,built_in:b+_+w},illegal:/:==|\W\s*\(\*|(^|\s)\$[a-z]|\{\{|[a-z]:\s*$|\.\.\.|TO:|DO:/,contains:[{className:"keyword",variants:[{begin:/\bTEXT\s*SEARCH\b/},{begin:/\b(PRIMARY|FOREIGN|FOR(\s+NO)?)\s+KEY\b/},{begin:/\bPARALLEL\s+(UNSAFE|RESTRICTED|SAFE)\b/},{begin:/\bSTORAGE\s+(PLAIN|EXTERNAL|EXTENDED|MAIN)\b/},{begin:/\bMATCH\s+(FULL|PARTIAL|SIMPLE)\b/},{begin:/\bNULLS\s+(FIRST|LAST)\b/},{begin:/\bEVENT\s+TRIGGER\b/},{begin:/\b(MAPPING|OR)\s+REPLACE\b/},{begin:/\b(FROM|TO)\s+(PROGRAM|STDIN|STDOUT)\b/},{begin:/\b(SHARE|EXCLUSIVE)\s+MODE\b/},{begin:/\b(LEFT|RIGHT)\s+(OUTER\s+)?JOIN\b/},{begin:/\b(FETCH|MOVE)\s+(NEXT|PRIOR|FIRST|LAST|ABSOLUTE|RELATIVE|FORWARD|BACKWARD)\b/},{begin:/\bPRESERVE\s+ROWS\b/},{begin:/\bDISCARD\s+PLANS\b/},{begin:/\bREFERENCING\s+(OLD|NEW)\b/},{begin:/\bSKIP\s+LOCKED\b/},{begin:/\bGROUPING\s+SETS\b/},{begin:/\b(BINARY|INSENSITIVE|SCROLL|NO\s+SCROLL)\s+(CURSOR|FOR)\b/},{begin:/\b(WITH|WITHOUT)\s+HOLD\b/},{begin:/\bWITH\s+(CASCADED|LOCAL)\s+CHECK\s+OPTION\b/},{begin:/\bEXCLUDE\s+(TIES|NO\s+OTHERS)\b/},{begin:/\bFORMAT\s+(TEXT|XML|JSON|YAML)\b/},{begin:/\bSET\s+((SESSION|LOCAL)\s+)?NAMES\b/},{begin:/\bIS\s+(NOT\s+)?UNKNOWN\b/},{begin:/\bSECURITY\s+LABEL\b/},{begin:/\bSTANDALONE\s+(YES|NO|NO\s+VALUE)\b/},{begin:/\bWITH\s+(NO\s+)?DATA\b/},{begin:/\b(FOREIGN|SET)\s+DATA\b/},{begin:/\bSET\s+(CATALOG|CONSTRAINTS)\b/},{begin:/\b(WITH|FOR)\s+ORDINALITY\b/},{begin:/\bIS\s+(NOT\s+)?DOCUMENT\b/},{begin:/\bXML\s+OPTION\s+(DOCUMENT|CONTENT)\b/},{begin:/\b(STRIP|PRESERVE)\s+WHITESPACE\b/},{begin:/\bNO\s+(ACTION|MAXVALUE|MINVALUE)\b/},{begin:/\bPARTITION\s+BY\s+(RANGE|LIST|HASH)\b/},{begin:/\bAT\s+TIME\s+ZONE\b/},{begin:/\bGRANTED\s+BY\b/},{begin:/\bRETURN\s+(QUERY|NEXT)\b/},{begin:/\b(ATTACH|DETACH)\s+PARTITION\b/},{begin:/\bFORCE\s+ROW\s+LEVEL\s+SECURITY\b/},{begin:/\b(INCLUDING|EXCLUDING)\s+(COMMENTS|CONSTRAINTS|DEFAULTS|IDENTITY|INDEXES|STATISTICS|STORAGE|ALL)\b/},{begin:/\bAS\s+(ASSIGNMENT|IMPLICIT|PERMISSIVE|RESTRICTIVE|ENUM|RANGE)\b/}]},{begin:/\b(FORMAT|FAMILY|VERSION)\s*\(/},{begin:/\bINCLUDE\s*\(/,keywords:"INCLUDE"},{begin:/\bRANGE(?!\s*(BETWEEN|UNBOUNDED|CURRENT|[-0-9]+))/},{begin:/\b(VERSION|OWNER|TEMPLATE|TABLESPACE|CONNECTION\s+LIMIT|PROCEDURE|RESTRICT|JOIN|PARSER|COPY|START|END|COLLATION|INPUT|ANALYZE|STORAGE|LIKE|DEFAULT|DELIMITER|ENCODING|COLUMN|CONSTRAINT|TABLE|SCHEMA)\s*=/},{begin:/\b(PG_\w+?|HAS_[A-Z_]+_PRIVILEGE)\b/,relevance:10},{begin:/\bEXTRACT\s*\(/,end:/\bFROM\b/,returnEnd:!0,keywords:{type:"CENTURY DAY DECADE DOW DOY EPOCH HOUR ISODOW ISOYEAR MICROSECONDS MILLENNIUM MILLISECONDS MINUTE MONTH QUARTER SECOND TIMEZONE TIMEZONE_HOUR TIMEZONE_MINUTE WEEK YEAR"}},{begin:/\b(XMLELEMENT|XMLPI)\s*\(\s*NAME/,keywords:{keyword:"NAME"}},{begin:/\b(XMLPARSE|XMLSERIALIZE)\s*\(\s*(DOCUMENT|CONTENT)/,keywords:{keyword:"DOCUMENT CONTENT"}},{beginKeywords:"CACHE INCREMENT MAXVALUE MINVALUE",end:t.C_NUMBER_RE,returnEnd:!0,keywords:"BY CACHE INCREMENT MAXVALUE MINVALUE"},{className:"type",begin:/\b(WITH|WITHOUT)\s+TIME\s+ZONE\b/},{className:"type",begin:/\bINTERVAL\s+(YEAR|MONTH|DAY|HOUR|MINUTE|SECOND)(\s+TO\s+(MONTH|HOUR|MINUTE|SECOND))?\b/},{begin:/\bRETURNS\s+(LANGUAGE_HANDLER|TRIGGER|EVENT_TRIGGER|FDW_HANDLER|INDEX_AM_HANDLER|TSM_HANDLER)\b/,keywords:{keyword:"RETURNS",type:"LANGUAGE_HANDLER TRIGGER EVENT_TRIGGER FDW_HANDLER INDEX_AM_HANDLER TSM_HANDLER"}},{begin:"\\b("+C+")\\s*\\("},{begin:"\\.("+m+")\\b"},{begin:"\\b("+m+")\\s+PATH\\b",keywords:{keyword:"PATH",type:p.replace("PATH ","")}},{className:"type",begin:"\\b("+m+")\\b"},{className:"string",begin:"'",end:"'",contains:[{begin:"''"}]},{className:"string",begin:"(e|E|u&|U&)'",end:"'",contains:[{begin:"\\\\."}],relevance:10},t.END_SAME_AS_BEGIN({begin:s,end:s,contains:[{subLanguage:["pgsql","perl","python","tcl","r","lua","java","php","ruby","bash","scheme","xml","json"],endsWithParent:!0}]}),{begin:'"',end:'"',contains:[{begin:'""'}]},t.C_NUMBER_MODE,t.C_BLOCK_COMMENT_MODE,r,{className:"meta",variants:[{begin:"%(ROW)?TYPE",relevance:10},{begin:"\\$\\d+"},{begin:"^#\\w",end:"$"}]},{className:"symbol",begin:o,relevance:10}]}}return eet=e,eet}var tet,Wmn;function Pni(){if(Wmn)return tet;Wmn=1;function e(t){const r={className:"variable",begin:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*(?![A-Za-z0-9])(?![$])"},a={className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{begin:/\?>/}]},s={className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},o=t.inherit(t.APOS_STRING_MODE,{illegal:null}),u=t.inherit(t.QUOTE_STRING_MODE,{illegal:null,contains:t.QUOTE_STRING_MODE.contains.concat(s)}),h=t.END_SAME_AS_BEGIN({begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/,contains:t.QUOTE_STRING_MODE.contains.concat(s)}),f={className:"string",contains:[t.BACKSLASH_ESCAPE,a],variants:[t.inherit(o,{begin:"b'",end:"'"}),t.inherit(u,{begin:'b"',end:'"'}),u,o,h]},p={className:"number",variants:[{begin:"\\b0b[01]+(?:_[01]+)*\\b"},{begin:"\\b0o[0-7]+(?:_[0-7]+)*\\b"},{begin:"\\b0x[\\da-f]+(?:_[\\da-f]+)*\\b"},{begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:e[+-]?\\d+)?"}],relevance:0},m={keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield",literal:"false null true",built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass"};return{aliases:["php3","php4","php5","php6","php7","php8"],case_insensitive:!0,keywords:m,contains:[t.HASH_COMMENT_MODE,t.COMMENT("//","$",{contains:[a]}),t.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),t.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0,keywords:"__halt_compiler"}),a,{className:"keyword",begin:/\$this\b/},r,{begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"},t.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{className:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:m,contains:["self",r,t.C_BLOCK_COMMENT_MODE,f,p]}]},{className:"class",variants:[{beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},t.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,contains:[t.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",relevance:0,end:";",contains:[t.UNDERSCORE_TITLE_MODE]},f,p]}}return tet=e,tet}var net,Kmn;function Bni(){if(Kmn)return net;Kmn=1;function e(t){return{name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},t.inherit(t.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),t.inherit(t.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}}return net=e,net}var ret,Xmn;function Fni(){if(Xmn)return ret;Xmn=1;function e(t){return{name:"Plain text",aliases:["text","txt"],disableAutodetect:!0}}return ret=e,ret}var iet,Qmn;function $ni(){if(Qmn)return iet;Qmn=1;function e(t){const r={keyword:"actor addressof and as be break class compile_error compile_intrinsic consume continue delegate digestof do else elseif embed end error for fun if ifdef in interface is isnt lambda let match new not object or primitive recover repeat return struct then trait try type until use var where while with xor",meta:"iso val tag trn box ref",literal:"this false true"},a={className:"string",begin:'"""',end:'"""',relevance:10},s={className:"string",begin:'"',end:'"',contains:[t.BACKSLASH_ESCAPE]},o={className:"string",begin:"'",end:"'",contains:[t.BACKSLASH_ESCAPE],relevance:0},u={className:"type",begin:"\\b_?[A-Z][\\w]*",relevance:0},h={begin:t.IDENT_RE+"'",relevance:0};return{name:"Pony",keywords:r,contains:[u,a,s,o,h,{className:"number",begin:"(-?)(\\b0[xX][a-fA-F0-9]+|\\b0[bB][01]+|(\\b\\d+(_\\d+)?(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",relevance:0},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]}}return iet=e,iet}var aet,Zmn;function Uni(){if(Zmn)return aet;Zmn=1;function e(t){const r=["string","char","byte","int","long","bool","decimal","single","double","DateTime","xml","array","hashtable","void"],a="Add|Clear|Close|Copy|Enter|Exit|Find|Format|Get|Hide|Join|Lock|Move|New|Open|Optimize|Pop|Push|Redo|Remove|Rename|Reset|Resize|Search|Select|Set|Show|Skip|Split|Step|Switch|Undo|Unlock|Watch|Backup|Checkpoint|Compare|Compress|Convert|ConvertFrom|ConvertTo|Dismount|Edit|Expand|Export|Group|Import|Initialize|Limit|Merge|Mount|Out|Publish|Restore|Save|Sync|Unpublish|Update|Approve|Assert|Build|Complete|Confirm|Deny|Deploy|Disable|Enable|Install|Invoke|Register|Request|Restart|Resume|Start|Stop|Submit|Suspend|Uninstall|Unregister|Wait|Debug|Measure|Ping|Repair|Resolve|Test|Trace|Connect|Disconnect|Read|Receive|Send|Write|Block|Grant|Protect|Revoke|Unblock|Unprotect|Use|ForEach|Sort|Tee|Where",s="-and|-as|-band|-bnot|-bor|-bxor|-casesensitive|-ccontains|-ceq|-cge|-cgt|-cle|-clike|-clt|-cmatch|-cne|-cnotcontains|-cnotlike|-cnotmatch|-contains|-creplace|-csplit|-eq|-exact|-f|-file|-ge|-gt|-icontains|-ieq|-ige|-igt|-ile|-ilike|-ilt|-imatch|-in|-ine|-inotcontains|-inotlike|-inotmatch|-ireplace|-is|-isnot|-isplit|-join|-le|-like|-lt|-match|-ne|-not|-notcontains|-notin|-notlike|-notmatch|-or|-regex|-replace|-shl|-shr|-split|-wildcard|-xor",o={$pattern:/-?[A-z\.\-]+\b/,keyword:"if else foreach return do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch hidden static parameter",built_in:"ac asnp cat cd CFS chdir clc clear clhy cli clp cls clv cnsn compare copy cp cpi cpp curl cvpa dbp del diff dir dnsn ebp echo|0 epal epcsv epsn erase etsn exsn fc fhx fl ft fw gal gbp gc gcb gci gcm gcs gdr gerr ghy gi gin gjb gl gm gmo gp gps gpv group gsn gsnp gsv gtz gu gv gwmi h history icm iex ihy ii ipal ipcsv ipmo ipsn irm ise iwmi iwr kill lp ls man md measure mi mount move mp mv nal ndr ni nmo npssc nsn nv ogv oh popd ps pushd pwd r rbp rcjb rcsn rd rdr ren ri rjb rm rmdir rmo rni rnp rp rsn rsnp rujb rv rvpa rwmi sajb sal saps sasv sbp sc scb select set shcm si sl sleep sls sort sp spjb spps spsv start stz sujb sv swmi tee trcm type wget where wjb write"},u=/\w[\w\d]*((-)[\w\d]+)*/,h={begin:"`[\\s\\S]",relevance:0},f={className:"variable",variants:[{begin:/\$\B/},{className:"keyword",begin:/\$this/},{begin:/\$[\w\d][\w\d_:]*/}]},p={className:"literal",begin:/\$(null|true|false)\b/},m={className:"string",variants:[{begin:/"/,end:/"/},{begin:/@"/,end:/^"@/}],contains:[h,f,{className:"variable",begin:/\$[A-z]/,end:/[^A-z]/}]},b={className:"string",variants:[{begin:/'/,end:/'/},{begin:/@'/,end:/^'@/}]},_={className:"doctag",variants:[{begin:/\.(synopsis|description|example|inputs|outputs|notes|link|component|role|functionality)/},{begin:/\.(parameter|forwardhelptargetname|forwardhelpcategory|remotehelprunspace|externalhelp)\s+\S+/}]},w=t.inherit(t.COMMENT(null,null),{variants:[{begin:/#/,end:/$/},{begin:/<#/,end:/#>/}],contains:[_]}),S={className:"built_in",variants:[{begin:"(".concat(a,")+(-)[\\w\\d]+")}]},C={className:"class",beginKeywords:"class enum",end:/\s*[{]/,excludeEnd:!0,relevance:0,contains:[t.TITLE_MODE]},A={className:"function",begin:/function\s+/,end:/\s*\{|$/,excludeEnd:!0,returnBegin:!0,relevance:0,contains:[{begin:"function",relevance:0,className:"keyword"},{className:"title",begin:u,relevance:0},{begin:/\(/,end:/\)/,className:"params",relevance:0,contains:[f]}]},k={begin:/using\s/,end:/$/,returnBegin:!0,contains:[m,b,{className:"keyword",begin:/(using|assembly|command|module|namespace|type)/}]},I={variants:[{className:"operator",begin:"(".concat(s,")\\b")},{className:"literal",begin:/(-)[\w\d]+/,relevance:0}]},N={className:"selector-tag",begin:/@\B/,relevance:0},L={className:"function",begin:/\[.*\]\s*[\w]+[ ]??\(/,end:/$/,returnBegin:!0,relevance:0,contains:[{className:"keyword",begin:"(".concat(o.keyword.toString().replace(/\s/g,"|"),")\\b"),endsParent:!0,relevance:0},t.inherit(t.TITLE_MODE,{endsParent:!0})]},P=[L,w,h,t.NUMBER_MODE,m,b,S,f,p,N],M={begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[].concat("self",P,{begin:"("+r.join("|")+")",className:"built_in",relevance:0},{className:"type",begin:/[\.\w\d]+/,relevance:0})};return L.contains.unshift(M),{name:"PowerShell",aliases:["ps","ps1"],case_insensitive:!0,keywords:o,contains:P.concat(C,A,k,I,M)}}return aet=e,aet}var set,Jmn;function zni(){if(Jmn)return set;Jmn=1;function e(t){return{name:"Processing",keywords:{keyword:"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private",literal:"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI",title:"setup draw",built_in:"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed"},contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,t.C_NUMBER_MODE]}}return set=e,set}var oet,ebn;function Gni(){if(ebn)return oet;ebn=1;function e(t){return{name:"Python profiler",contains:[t.C_NUMBER_MODE,{begin:"[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}",end:":",excludeEnd:!0},{begin:"(ncalls|tottime|cumtime)",end:"$",keywords:"ncalls tottime|10 cumtime|10 filename",relevance:10},{begin:"function calls",end:"$",contains:[t.C_NUMBER_MODE],relevance:10},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,{className:"string",begin:"\\(",end:"\\)$",excludeBegin:!0,excludeEnd:!0,relevance:0}]}}return oet=e,oet}var cet,tbn;function qni(){if(tbn)return cet;tbn=1;function e(t){const r={begin:/[a-z][A-Za-z0-9_]*/,relevance:0},a={className:"symbol",variants:[{begin:/[A-Z][a-zA-Z0-9_]*/},{begin:/_[A-Za-z0-9_]*/}],relevance:0},s={begin:/\(/,end:/\)/,relevance:0},o={begin:/\[/,end:/\]/},u={className:"comment",begin:/%/,end:/$/,contains:[t.PHRASAL_WORDS_MODE]},h={className:"string",begin:/`/,end:/`/,contains:[t.BACKSLASH_ESCAPE]},f={className:"string",begin:/0'(\\'|.)/},p={className:"string",begin:/0'\\s/},b=[r,a,s,{begin:/:-/},o,u,t.C_BLOCK_COMMENT_MODE,t.QUOTE_STRING_MODE,t.APOS_STRING_MODE,h,f,p,t.C_NUMBER_MODE];return s.contains=b,o.contains=b,{name:"Prolog",contains:b.concat([{begin:/\.$/}])}}return cet=e,cet}var uet,nbn;function Hni(){if(nbn)return uet;nbn=1;function e(t){var r="[ \\t\\f]*",a="[ \\t\\f]+",s=r+"[:=]"+r,o=a,u="("+s+"|"+o+")",h="([^\\\\\\W:= \\t\\f\\n]|\\\\.)+",f="([^\\\\:= \\t\\f\\n]|\\\\.)+",p={end:u,relevance:0,starts:{className:"string",end:/$/,relevance:0,contains:[{begin:"\\\\\\\\"},{begin:"\\\\\\n"}]}};return{name:".properties",case_insensitive:!0,illegal:/\S/,contains:[t.COMMENT("^\\s*[!#]","$"),{returnBegin:!0,variants:[{begin:h+s,relevance:1},{begin:h+o,relevance:0}],contains:[{className:"attr",begin:h,endsParent:!0,relevance:0}],starts:p},{begin:f+u,returnBegin:!0,relevance:0,contains:[{className:"meta",begin:f,endsParent:!0,relevance:0}],starts:p},{className:"attr",relevance:0,begin:f+r+"$"}]}}return uet=e,uet}var het,rbn;function Vni(){if(rbn)return het;rbn=1;function e(t){return{name:"Protocol Buffers",keywords:{keyword:"package import option optional required repeated group oneof",built_in:"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes",literal:"true false"},contains:[t.QUOTE_STRING_MODE,t.NUMBER_MODE,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,{className:"class",beginKeywords:"message enum service",end:/\{/,illegal:/\n/,contains:[t.inherit(t.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{className:"function",beginKeywords:"rpc",end:/[{;]/,excludeEnd:!0,keywords:"rpc returns"},{begin:/^\s*[A-Z_]+(?=\s*=[^\n]+;$)/}]}}return het=e,het}var det,ibn;function Yni(){if(ibn)return det;ibn=1;function e(t){const r={keyword:"and case default else elsif false if in import enherits node or true undef unless main settings $string ",literal:"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted",built_in:"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version"},a=t.COMMENT("#","$"),s="([A-Za-z_]|::)(\\w|::)*",o=t.inherit(t.TITLE_MODE,{begin:s}),u={className:"variable",begin:"\\$"+s},h={className:"string",contains:[t.BACKSLASH_ESCAPE,u],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/}]};return{name:"Puppet",aliases:["pp"],contains:[a,u,h,{beginKeywords:"class",end:"\\{|;",illegal:/=/,contains:[o,a]},{beginKeywords:"define",end:/\{/,contains:[{className:"section",begin:t.IDENT_RE,endsParent:!0}]},{begin:t.IDENT_RE+"\\s+\\{",returnBegin:!0,end:/\S/,contains:[{className:"keyword",begin:t.IDENT_RE},{begin:/\{/,end:/\}/,keywords:r,relevance:0,contains:[h,a,{begin:"[a-zA-Z_]+\\s*=>",returnBegin:!0,end:"=>",contains:[{className:"attr",begin:t.IDENT_RE}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},u]}],relevance:0}]}}return det=e,det}var fet,abn;function jni(){if(abn)return fet;abn=1;function e(t){const r={className:"string",begin:'(~)?"',end:'"',illegal:"\\n"},a={className:"symbol",begin:"#[a-zA-Z_]\\w*\\$?"};return{name:"PureBASIC",aliases:["pb","pbi"],keywords:"Align And Array As Break CallDebugger Case CompilerCase CompilerDefault CompilerElse CompilerElseIf CompilerEndIf CompilerEndSelect CompilerError CompilerIf CompilerSelect CompilerWarning Continue Data DataSection Debug DebugLevel Declare DeclareC DeclareCDLL DeclareDLL DeclareModule Default Define Dim DisableASM DisableDebugger DisableExplicit Else ElseIf EnableASM EnableDebugger EnableExplicit End EndDataSection EndDeclareModule EndEnumeration EndIf EndImport EndInterface EndMacro EndModule EndProcedure EndSelect EndStructure EndStructureUnion EndWith Enumeration EnumerationBinary Extends FakeReturn For ForEach ForEver Global Gosub Goto If Import ImportC IncludeBinary IncludeFile IncludePath Interface List Macro MacroExpandedCount Map Module NewList NewMap Next Not Or Procedure ProcedureC ProcedureCDLL ProcedureDLL ProcedureReturn Protected Prototype PrototypeC ReDim Read Repeat Restore Return Runtime Select Shared Static Step Structure StructureUnion Swap Threaded To UndefineMacro Until Until UnuseModule UseModule Wend While With XIncludeFile XOr",contains:[t.COMMENT(";","$",{relevance:0}),{className:"function",begin:"\\b(Procedure|Declare)(C|CDLL|DLL)?\\b",end:"\\(",excludeEnd:!0,returnBegin:!0,contains:[{className:"keyword",begin:"(Procedure|Declare)(C|CDLL|DLL)?",excludeEnd:!0},{className:"type",begin:"\\.\\w*"},t.UNDERSCORE_TITLE_MODE]},r,a]}}return fet=e,fet}var pet,sbn;function Wni(){if(sbn)return pet;sbn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(s){return r("(?=",s,")")}function r(...s){return s.map(u=>e(u)).join("")}function a(s){const p={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:["and","as","assert","async","await","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]},m={className:"meta",begin:/^(>>>|\.\.\.) /},b={className:"subst",begin:/\{/,end:/\}/,keywords:p,illegal:/#/},_={begin:/\{\{/,relevance:0},w={className:"string",contains:[s.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[s.BACKSLASH_ESCAPE,m],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[s.BACKSLASH_ESCAPE,m],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[s.BACKSLASH_ESCAPE,m,_,b]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[s.BACKSLASH_ESCAPE,m,_,b]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[s.BACKSLASH_ESCAPE,_,b]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[s.BACKSLASH_ESCAPE,_,b]},s.APOS_STRING_MODE,s.QUOTE_STRING_MODE]},S="[0-9](_?[0-9])*",C=`(\\b(${S}))?\\.(${S})|\\b(${S})\\.`,A={className:"number",relevance:0,variants:[{begin:`(\\b(${S})|(${C}))[eE][+-]?(${S})[jJ]?\\b`},{begin:`(${C})[jJ]?`},{begin:"\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\b"},{begin:"\\b0[bB](_?[01])+[lL]?\\b"},{begin:"\\b0[oO](_?[0-7])+[lL]?\\b"},{begin:"\\b0[xX](_?[0-9a-fA-F])+[lL]?\\b"},{begin:`\\b(${S})[jJ]\\b`}]},k={className:"comment",begin:t(/# type:/),end:/$/,keywords:p,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},I={className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:p,contains:["self",m,A,w,s.HASH_COMMENT_MODE]}]};return b.contains=[w,A,m],{name:"Python",aliases:["py","gyp","ipython"],keywords:p,illegal:/(<\/|->|\?)|=>/,contains:[m,A,{begin:/\bself\b/},{beginKeywords:"if",relevance:0},w,k,s.HASH_COMMENT_MODE,{variants:[{className:"function",beginKeywords:"def"},{className:"class",beginKeywords:"class"}],end:/:/,illegal:/[${=;\n,]/,contains:[s.UNDERSCORE_TITLE_MODE,I,{begin:/->/,endsWithParent:!0,keywords:p}]},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[A,I,w]}]}}return pet=a,pet}var get,obn;function Kni(){if(obn)return get;obn=1;function e(t){return{aliases:["pycon"],contains:[{className:"meta",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}}return get=e,get}var met,lbn;function Xni(){if(lbn)return met;lbn=1;function e(t){return{name:"Q",aliases:["k","kdb"],keywords:{$pattern:/(`?)[A-Za-z0-9_]+\b/,keyword:"do while select delete by update from",literal:"0b 1b",built_in:"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum",type:"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid"},contains:[t.C_LINE_COMMENT_MODE,t.QUOTE_STRING_MODE,t.C_NUMBER_MODE]}}return met=e,met}var bet,cbn;function Qni(){if(cbn)return bet;cbn=1;function e(a){return a?typeof a=="string"?a:a.source:null}function t(...a){return a.map(o=>e(o)).join("")}function r(a){const s={keyword:"in of on if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await import",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Behavior bool color coordinate date double enumeration font geocircle georectangle geoshape int list matrix4x4 parent point quaternion real rect size string url variant vector2d vector3d vector4d Promise"},o="[a-zA-Z_][a-zA-Z0-9\\._]*",u={className:"keyword",begin:"\\bproperty\\b",starts:{className:"string",end:"(:|=|;|,|//|/\\*|$)",returnEnd:!0}},h={className:"keyword",begin:"\\bsignal\\b",starts:{className:"string",end:"(\\(|:|=|;|,|//|/\\*|$)",returnEnd:!0}},f={className:"attribute",begin:"\\bid\\s*:",starts:{className:"string",end:o,returnEnd:!1}},p={begin:o+"\\s*:",returnBegin:!0,contains:[{className:"attribute",begin:o,end:"\\s*:",excludeEnd:!0,relevance:0}],relevance:0},m={begin:t(o,/\s*\{/),end:/\{/,returnBegin:!0,relevance:0,contains:[a.inherit(a.TITLE_MODE,{begin:o})]};return{name:"QML",aliases:["qt"],case_insensitive:!1,keywords:s,contains:[{className:"meta",begin:/^\s*['"]use (strict|asm)['"]/},a.APOS_STRING_MODE,a.QUOTE_STRING_MODE,{className:"string",begin:"`",end:"`",contains:[a.BACKSLASH_ESCAPE,{className:"subst",begin:"\\$\\{",end:"\\}"}]},a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,{className:"number",variants:[{begin:"\\b(0[bB][01]+)"},{begin:"\\b(0[oO][0-7]+)"},{begin:a.C_NUMBER_RE}],relevance:0},{begin:"("+a.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,a.REGEXP_MODE,{begin:/\s*[);\]]/,relevance:0,subLanguage:"xml"}],relevance:0},h,u,{className:"function",beginKeywords:"function",end:/\{/,excludeEnd:!0,contains:[a.inherit(a.TITLE_MODE,{begin:/[A-Za-z$_][0-9A-Za-z$_]*/}),{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE]}],illegal:/\[|%/},{begin:"\\."+a.IDENT_RE,relevance:0},f,p,m],illegal:/#/}}return bet=r,bet}var yet,ubn;function Zni(){if(ubn)return yet;ubn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(s){return r("(?=",s,")")}function r(...s){return s.map(u=>e(u)).join("")}function a(s){const o=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,u=/[a-zA-Z][a-zA-Z_0-9]*/;return{name:"R",illegal:/->/,keywords:{$pattern:o,keyword:"function if in break next repeat else for while",literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"},compilerExtensions:[(h,f)=>{if(!h.beforeMatch)return;if(h.starts)throw new Error("beforeMatch cannot be used with starts");const p=Object.assign({},h);Object.keys(h).forEach(m=>{delete h[m]}),h.begin=r(p.beforeMatch,t(p.begin)),h.starts={relevance:0,contains:[Object.assign(p,{endsParent:!0})]},h.relevance=0,delete p.beforeMatch}],contains:[s.COMMENT(/#'/,/$/,{contains:[{className:"doctag",begin:"@examples",starts:{contains:[{begin:/\n/},{begin:/#'\s*(?=@[a-zA-Z]+)/,endsParent:!0},{begin:/#'/,end:/$/,excludeBegin:!0}]}},{className:"doctag",begin:"@param",end:/$/,contains:[{className:"variable",variants:[{begin:o},{begin:/`(?:\\.|[^`\\])+`/}],endsParent:!0}]},{className:"doctag",begin:/@[a-zA-Z]+/},{className:"meta-keyword",begin:/\\[a-zA-Z]+/}]}),s.HASH_COMMENT_MODE,{className:"string",contains:[s.BACKSLASH_ESCAPE],variants:[s.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/}),s.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/}),s.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/}),s.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/}),s.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/}),s.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',relevance:0},{begin:"'",end:"'",relevance:0}]},{className:"number",relevance:0,beforeMatch:/([^a-zA-Z0-9._])/,variants:[{match:/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/},{match:/0[xX][0-9a-fA-F]+([pP][+-]?\d+)?[Li]?/},{match:/(\d+(\.\d*)?|\.\d+)([eE][+-]?\d+)?[Li]?/}]},{begin:"%",end:"%"},{begin:r(u,"\\s+<-\\s+")},{begin:"`",end:"`",contains:[{begin:/\\./}]}]}}return yet=a,yet}var vet,hbn;function Jni(){if(hbn)return vet;hbn=1;function e(t){function r(M){return M.map(function(F){return F.split("").map(function(U){return"\\"+U}).join("")}).join("|")}const a="~?[a-z$_][0-9a-zA-Z$_]*",s="`?[A-Z$_][0-9a-zA-Z$_]*",o="'?[a-z$_][0-9a-z$_]*",u="\\s*:\\s*[a-z$_][0-9a-z$_]*(\\(\\s*("+o+"\\s*(,"+o+"\\s*)*)?\\))?",h=a+"("+u+"){0,2}",f="("+r(["||","++","**","+.","*","/","*.","/.","..."])+"|\\|>|&&|==|===)",p="\\s+"+f+"\\s+",m={keyword:"and as asr assert begin class constraint do done downto else end exception external for fun function functor if in include inherit initializer land lazy let lor lsl lsr lxor match method mod module mutable new nonrec object of open or private rec sig struct then to try type val virtual when while with",built_in:"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 ref string unit ",literal:"true false"},b="\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",_={className:"number",relevance:0,variants:[{begin:b},{begin:"\\(-"+b+"\\)"}]},w={className:"operator",relevance:0,begin:f},S=[{className:"identifier",relevance:0,begin:a},w,_],C=[t.QUOTE_STRING_MODE,w,{className:"module",begin:"\\b"+s,returnBegin:!0,end:".",contains:[{className:"identifier",begin:s,relevance:0}]}],A=[{className:"module",begin:"\\b"+s,returnBegin:!0,end:".",relevance:0,contains:[{className:"identifier",begin:s,relevance:0}]}],k={begin:a,end:"(,|\\n|\\))",relevance:0,contains:[w,{className:"typing",begin:":",end:"(,|\\n)",returnBegin:!0,relevance:0,contains:A}]},I={className:"function",relevance:0,keywords:m,variants:[{begin:"\\s(\\(\\.?.*?\\)|"+a+")\\s*=>",end:"\\s*=>",returnBegin:!0,relevance:0,contains:[{className:"params",variants:[{begin:a},{begin:h},{begin:/\(\s*\)/}]}]},{begin:"\\s\\(\\.?[^;\\|]*\\)\\s*=>",end:"\\s=>",returnBegin:!0,relevance:0,contains:[{className:"params",relevance:0,variants:[k]}]},{begin:"\\(\\.\\s"+a+"\\)\\s*=>"}]};C.push(I);const N={className:"constructor",begin:s+"\\(",end:"\\)",illegal:"\\n",keywords:m,contains:[t.QUOTE_STRING_MODE,w,{className:"params",begin:"\\b"+a}]},L={className:"pattern-match",begin:"\\|",returnBegin:!0,keywords:m,end:"=>",relevance:0,contains:[N,w,{relevance:0,className:"constructor",begin:s}]},P={className:"module-access",keywords:m,returnBegin:!0,variants:[{begin:"\\b("+s+"\\.)+"+a},{begin:"\\b("+s+"\\.)+\\(",end:"\\)",returnBegin:!0,contains:[I,{begin:"\\(",end:"\\)",skip:!0}].concat(C)},{begin:"\\b("+s+"\\.)+\\{",end:/\}/}],contains:C};return A.push(P),{name:"ReasonML",aliases:["re"],keywords:m,illegal:"(:-|:=|\\$\\{|\\+=)",contains:[t.COMMENT("/\\*","\\*/",{illegal:"^(#,\\/\\/)"}),{className:"character",begin:"'(\\\\[^']+|[^'])'",illegal:"\\n",relevance:0},t.QUOTE_STRING_MODE,{className:"literal",begin:"\\(\\)",relevance:0},{className:"literal",begin:"\\[\\|",end:"\\|\\]",relevance:0,contains:S},{className:"literal",begin:"\\[",end:"\\]",relevance:0,contains:S},N,{className:"operator",begin:p,illegal:"-->",relevance:0},_,t.C_LINE_COMMENT_MODE,L,I,{className:"module-def",begin:"\\bmodule\\s+"+a+"\\s+"+s+"\\s+=\\s+\\{",end:/\}/,returnBegin:!0,keywords:m,relevance:0,contains:[{className:"module",relevance:0,begin:s},{begin:/\{/,end:/\}/,skip:!0}].concat(C)},P]}}return vet=e,vet}var _et,dbn;function eri(){if(dbn)return _et;dbn=1;function e(t){return{name:"RenderMan RIB",keywords:"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd",illegal:"/}],illegal:/./},t.COMMENT("^#","$"),f,p,h,{begin:/[\w-]+=([^\s{}[\]()>]+)/,relevance:0,returnBegin:!0,contains:[{className:"attribute",begin:/[^=]+/},{begin:/=/,endsWithParent:!0,relevance:0,contains:[f,p,h,{className:"literal",begin:"\\b("+o.split(" ").join("|")+")\\b"},{begin:/("[^"]*"|[^\s{}[\]]+)/}]}]},{className:"number",begin:/\*[0-9a-fA-F]+/},{begin:"\\b("+s.split(" ").join("|")+")([\\s[(\\]|])",returnBegin:!0,contains:[{className:"builtin-name",begin:/\w+/}]},{className:"built_in",variants:[{begin:"(\\.\\./|/|\\s)(("+u.split(" ").join("|")+");?\\s)+"},{begin:/\.\./,relevance:0}]}]}}return Eet=e,Eet}var xet,gbn;function rri(){if(gbn)return xet;gbn=1;function e(t){return{name:"RenderMan RSL",keywords:{keyword:"float color point normal vector matrix while for if do return else break extern continue",built_in:"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp"},illegal:""}]}}return Cet=e,Cet}var Aet,ybn;function sri(){if(ybn)return Aet;ybn=1;function e(t){return{name:"SAS",case_insensitive:!0,keywords:{literal:"null missing _all_ _automatic_ _character_ _infile_ _n_ _name_ _null_ _numeric_ _user_ _webout_",meta:"do if then else end until while abort array attrib by call cards cards4 catname continue datalines datalines4 delete delim delimiter display dm drop endsas error file filename footnote format goto in infile informat input keep label leave length libname link list lostcard merge missing modify options output out page put redirect remove rename replace retain return select set skip startsas stop title update waitsas where window x systask add and alter as cascade check create delete describe distinct drop foreign from group having index insert into in key like message modify msgtype not null on or order primary references reset restrict select set table unique update validate view where"},contains:[{className:"keyword",begin:/^\s*(proc [\w\d_]+|data|run|quit)[\s;]/},{className:"variable",begin:/&[a-zA-Z_&][a-zA-Z0-9_]*\.?/},{className:"emphasis",begin:/^\s*datalines|cards.*;/,end:/^\s*;\s*$/},{className:"built_in",begin:"%("+"bquote|nrbquote|cmpres|qcmpres|compstor|datatyp|display|do|else|end|eval|global|goto|if|index|input|keydef|label|left|length|let|local|lowcase|macro|mend|nrbquote|nrquote|nrstr|put|qcmpres|qleft|qlowcase|qscan|qsubstr|qsysfunc|qtrim|quote|qupcase|scan|str|substr|superq|syscall|sysevalf|sysexec|sysfunc|sysget|syslput|sysprod|sysrc|sysrput|then|to|trim|unquote|until|upcase|verify|while|window"+")"},{className:"name",begin:/%[a-zA-Z_][a-zA-Z_0-9]*/},{className:"meta",begin:"[^%]("+"abs|addr|airy|arcos|arsin|atan|attrc|attrn|band|betainv|blshift|bnot|bor|brshift|bxor|byte|cdf|ceil|cexist|cinv|close|cnonct|collate|compbl|compound|compress|cos|cosh|css|curobs|cv|daccdb|daccdbsl|daccsl|daccsyd|dacctab|dairy|date|datejul|datepart|datetime|day|dclose|depdb|depdbsl|depdbsl|depsl|depsl|depsyd|depsyd|deptab|deptab|dequote|dhms|dif|digamma|dim|dinfo|dnum|dopen|doptname|doptnum|dread|dropnote|dsname|erf|erfc|exist|exp|fappend|fclose|fcol|fdelete|fetch|fetchobs|fexist|fget|fileexist|filename|fileref|finfo|finv|fipname|fipnamel|fipstate|floor|fnonct|fnote|fopen|foptname|foptnum|fpoint|fpos|fput|fread|frewind|frlen|fsep|fuzz|fwrite|gaminv|gamma|getoption|getvarc|getvarn|hbound|hms|hosthelp|hour|ibessel|index|indexc|indexw|input|inputc|inputn|int|intck|intnx|intrr|irr|jbessel|juldate|kurtosis|lag|lbound|left|length|lgamma|libname|libref|log|log10|log2|logpdf|logpmf|logsdf|lowcase|max|mdy|mean|min|minute|mod|month|mopen|mort|n|netpv|nmiss|normal|note|npv|open|ordinal|pathname|pdf|peek|peekc|pmf|point|poisson|poke|probbeta|probbnml|probchi|probf|probgam|probhypr|probit|probnegb|probnorm|probt|put|putc|putn|qtr|quote|ranbin|rancau|ranexp|rangam|range|rank|rannor|ranpoi|rantbl|rantri|ranuni|repeat|resolve|reverse|rewind|right|round|saving|scan|sdf|second|sign|sin|sinh|skewness|soundex|spedis|sqrt|std|stderr|stfips|stname|stnamel|substr|sum|symget|sysget|sysmsg|sysprod|sysrc|system|tan|tanh|time|timepart|tinv|tnonct|today|translate|tranwrd|trigamma|trim|trimn|trunc|uniform|upcase|uss|var|varfmt|varinfmt|varlabel|varlen|varname|varnum|varray|varrayx|vartype|verify|vformat|vformatd|vformatdx|vformatn|vformatnx|vformatw|vformatwx|vformatx|vinarray|vinarrayx|vinformat|vinformatd|vinformatdx|vinformatn|vinformatnx|vinformatw|vinformatwx|vinformatx|vlabel|vlabelx|vlength|vlengthx|vname|vnamex|vtype|vtypex|weekday|year|yyq|zipfips|zipname|zipnamel|zipstate"+")[(]"},{className:"string",variants:[t.APOS_STRING_MODE,t.QUOTE_STRING_MODE]},t.COMMENT("\\*",";"),t.C_BLOCK_COMMENT_MODE]}}return Aet=e,Aet}var ket,vbn;function ori(){if(vbn)return ket;vbn=1;function e(t){const r={className:"meta",begin:"@[A-Za-z]+"},a={className:"subst",variants:[{begin:"\\$[A-Za-z0-9_]+"},{begin:/\$\{/,end:/\}/}]},s={className:"string",variants:[{begin:'"""',end:'"""'},{begin:'"',end:'"',illegal:"\\n",contains:[t.BACKSLASH_ESCAPE]},{begin:'[a-z]+"',end:'"',illegal:"\\n",contains:[t.BACKSLASH_ESCAPE,a]},{className:"string",begin:'[a-z]+"""',end:'"""',contains:[a],relevance:10}]},o={className:"symbol",begin:"'\\w[\\w\\d_]*(?!')"},u={className:"type",begin:"\\b[A-Z][A-Za-z0-9_]*",relevance:0},h={className:"title",begin:/[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,relevance:0},f={className:"class",beginKeywords:"class object trait type",end:/[:={\[\n;]/,excludeEnd:!0,contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,{beginKeywords:"extends with",relevance:10},{begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[u]},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,relevance:0,contains:[u]},h]},p={className:"function",beginKeywords:"def",end:/[:={\[(\n;]/,excludeEnd:!0,contains:[h]};return{name:"Scala",keywords:{literal:"true false null",keyword:"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"},contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,s,o,u,p,f,t.C_NUMBER_MODE,r]}}return ket=e,ket}var Ret,_bn;function lri(){if(_bn)return Ret;_bn=1;function e(t){const r="[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+",a="(-|\\+)?\\d+([./]\\d+)?",s=a+"[+\\-]"+a+"i",o={$pattern:r,"builtin-name":"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?"},u={className:"literal",begin:"(#t|#f|#\\\\"+r+"|#\\\\.)"},h={className:"number",variants:[{begin:a,relevance:0},{begin:s,relevance:0},{begin:"#b[0-1]+(/[0-1]+)?"},{begin:"#o[0-7]+(/[0-7]+)?"},{begin:"#x[0-9a-f]+(/[0-9a-f]+)?"}]},f=t.QUOTE_STRING_MODE,p=[t.COMMENT(";","$",{relevance:0}),t.COMMENT("#\\|","\\|#")],m={begin:r,relevance:0},b={className:"symbol",begin:"'"+r},_={endsWithParent:!0,relevance:0},w={variants:[{begin:/'/},{begin:"`"}],contains:[{begin:"\\(",end:"\\)",contains:["self",u,f,h,m,b]}]},S={className:"name",relevance:0,begin:r,keywords:o},A={variants:[{begin:"\\(",end:"\\)"},{begin:"\\[",end:"\\]"}],contains:[{begin:/lambda/,endsWithParent:!0,returnBegin:!0,contains:[S,{endsParent:!0,variants:[{begin:/\(/,end:/\)/},{begin:/\[/,end:/\]/}],contains:[m]}]},S,_]};return _.contains=[u,h,f,m,b,w,A].concat(p),{name:"Scheme",illegal:/\S/,contains:[t.SHEBANG(),h,f,b,w,A].concat(p)}}return Ret=e,Ret}var Iet,wbn;function cri(){if(wbn)return Iet;wbn=1;function e(t){const r=[t.C_NUMBER_MODE,{className:"string",begin:`'|"`,end:`'|"`,contains:[t.BACKSLASH_ESCAPE,{begin:"''"}]}];return{name:"Scilab",aliases:["sci"],keywords:{$pattern:/%?\w+/,keyword:"abort break case clear catch continue do elseif else endfunction end for function global if pause return resume select try then while",literal:"%f %F %t %T %pi %eps %inf %nan %e %i %z %s",built_in:"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp error exec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isempty isinfisnan isvector lasterror length load linspace list listfiles log10 log2 log max min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand real round sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tan type typename warning zeros matrix"},illegal:'("|#|/\\*|\\s+/\\w+)',contains:[{className:"function",beginKeywords:"function",end:"$",contains:[t.UNDERSCORE_TITLE_MODE,{className:"params",begin:"\\(",end:"\\)"}]},{begin:"[a-zA-Z_][a-zA-Z_0-9]*[\\.']+",relevance:0},{begin:"\\[",end:"\\][\\.']*",relevance:0,contains:r},t.COMMENT("//","$")].concat(r)}}return Iet=e,Iet}var Net,Ebn;function uri(){if(Ebn)return Net;Ebn=1;const e=h=>({IMPORTANT:{className:"meta",begin:"!important"},HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[h.APOS_STRING_MODE,h.QUOTE_STRING_MODE]}}),t=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],r=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],a=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],s=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],o=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse();function u(h){const f=e(h),p=s,m=a,b="@[a-z-]+",_="and or not only",S={className:"variable",begin:"(\\$"+"[a-zA-Z-][a-zA-Z0-9_-]*"+")\\b"};return{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[h.C_LINE_COMMENT_MODE,h.C_BLOCK_COMMENT_MODE,{className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},f.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",begin:"\\b("+t.join("|")+")\\b",relevance:0},{className:"selector-pseudo",begin:":("+m.join("|")+")"},{className:"selector-pseudo",begin:"::("+p.join("|")+")"},S,{begin:/\(/,end:/\)/,contains:[h.CSS_NUMBER_MODE]},{className:"attribute",begin:"\\b("+o.join("|")+")\\b"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:":",end:";",contains:[S,f.HEXCOLOR,h.CSS_NUMBER_MODE,h.QUOTE_STRING_MODE,h.APOS_STRING_MODE,f.IMPORTANT]},{begin:"@(page|font-face)",lexemes:b,keywords:"@page @font-face"},{begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:_,attribute:r.join(" ")},contains:[{begin:b,className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"},S,h.QUOTE_STRING_MODE,h.APOS_STRING_MODE,f.HEXCOLOR,h.CSS_NUMBER_MODE]}]}}return Net=u,Net}var Oet,xbn;function hri(){if(xbn)return Oet;xbn=1;function e(t){return{name:"Shell Session",aliases:["console"],contains:[{className:"meta",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#]/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}}return Oet=e,Oet}var Let,Sbn;function dri(){if(Sbn)return Let;Sbn=1;function e(t){const r=["add","and","cmp","cmpg","cmpl","const","div","double","float","goto","if","int","long","move","mul","neg","new","nop","not","or","rem","return","shl","shr","sput","sub","throw","ushr","xor"],a=["aget","aput","array","check","execute","fill","filled","goto/16","goto/32","iget","instance","invoke","iput","monitor","packed","sget","sparse"],s=["transient","constructor","abstract","final","synthetic","public","private","protected","static","bridge","system"];return{name:"Smali",contains:[{className:"string",begin:'"',end:'"',relevance:0},t.COMMENT("#","$",{relevance:0}),{className:"keyword",variants:[{begin:"\\s*\\.end\\s[a-zA-Z0-9]*"},{begin:"^[ ]*\\.[a-zA-Z]*",relevance:0},{begin:"\\s:[a-zA-Z_0-9]*",relevance:0},{begin:"\\s("+s.join("|")+")"}]},{className:"built_in",variants:[{begin:"\\s("+r.join("|")+")\\s"},{begin:"\\s("+r.join("|")+")((-|/)[a-zA-Z0-9]+)+\\s",relevance:10},{begin:"\\s("+a.join("|")+")((-|/)[a-zA-Z0-9]+)*\\s",relevance:10}]},{className:"class",begin:`L[^(;: +]*;`,relevance:0},{begin:"[vp][0-9]+"}]}}return Let=e,Let}var Det,Tbn;function fri(){if(Tbn)return Det;Tbn=1;function e(t){const r="[a-z][a-zA-Z0-9_]*",a={className:"string",begin:"\\$.{1}"},s={className:"symbol",begin:"#"+t.UNDERSCORE_IDENT_RE};return{name:"Smalltalk",aliases:["st"],keywords:"self super nil true false thisContext",contains:[t.COMMENT('"','"'),t.APOS_STRING_MODE,{className:"type",begin:"\\b[A-Z][A-Za-z0-9_]*",relevance:0},{begin:r+":",relevance:0},t.C_NUMBER_MODE,s,a,{begin:"\\|[ ]*"+r+"([ ]+"+r+")*[ ]*\\|",returnBegin:!0,end:/\|/,illegal:/\S/,contains:[{begin:"(\\|[ ]*)?"+r}]},{begin:"#\\(",end:"\\)",contains:[t.APOS_STRING_MODE,a,t.C_NUMBER_MODE,s]}]}}return Det=e,Det}var Met,Cbn;function pri(){if(Cbn)return Met;Cbn=1;function e(t){return{name:"SML (Standard ML)",aliases:["ml"],keywords:{$pattern:"[a-z_]\\w*!?",keyword:"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while",built_in:"array bool char exn int list option order real ref string substring vector unit word",literal:"true false NONE SOME LESS EQUAL GREATER nil"},illegal:/\/\/|>>/,contains:[{className:"literal",begin:/\[(\|\|)?\]|\(\)/,relevance:0},t.COMMENT("\\(\\*","\\*\\)",{contains:["self"]}),{className:"symbol",begin:"'[A-Za-z_](?!')[\\w']*"},{className:"type",begin:"`[A-Z][\\w']*"},{className:"type",begin:"\\b[A-Z][\\w']*",relevance:0},{begin:"[a-z_]\\w*'[\\w']*"},t.inherit(t.APOS_STRING_MODE,{className:"string",relevance:0}),t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),{className:"number",begin:"\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",relevance:0},{begin:/[-=]>/}]}}return Met=e,Met}var Pet,Abn;function gri(){if(Abn)return Pet;Abn=1;function e(t){const r={className:"variable",begin:/\b_+[a-zA-Z]\w*/},a={className:"title",begin:/[a-zA-Z][a-zA-Z0-9]+_fnc_\w*/},s={className:"string",variants:[{begin:'"',end:'"',contains:[{begin:'""',relevance:0}]},{begin:"'",end:"'",contains:[{begin:"''",relevance:0}]}]},o={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{"meta-keyword":"define undef ifdef ifndef else endif include"},contains:[{begin:/\\\n/,relevance:0},t.inherit(s,{className:"meta-string"}),{className:"meta-string",begin:/<[^\n>]*>/,end:/$/,illegal:"\\n"},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]};return{name:"SQF",case_insensitive:!0,keywords:{keyword:"case catch default do else exit exitWith for forEach from if private switch then throw to try waitUntil while with",built_in:"abs accTime acos action actionIDs actionKeys actionKeysImages actionKeysNames actionKeysNamesArray actionName actionParams activateAddons activatedAddons activateKey add3DENConnection add3DENEventHandler add3DENLayer addAction addBackpack addBackpackCargo addBackpackCargoGlobal addBackpackGlobal addCamShake addCuratorAddons addCuratorCameraArea addCuratorEditableObjects addCuratorEditingArea addCuratorPoints addEditorObject addEventHandler addForce addGoggles addGroupIcon addHandgunItem addHeadgear addItem addItemCargo addItemCargoGlobal addItemPool addItemToBackpack addItemToUniform addItemToVest addLiveStats addMagazine addMagazineAmmoCargo addMagazineCargo addMagazineCargoGlobal addMagazineGlobal addMagazinePool addMagazines addMagazineTurret addMenu addMenuItem addMissionEventHandler addMPEventHandler addMusicEventHandler addOwnedMine addPlayerScores addPrimaryWeaponItem addPublicVariableEventHandler addRating addResources addScore addScoreSide addSecondaryWeaponItem addSwitchableUnit addTeamMember addToRemainsCollector addTorque addUniform addVehicle addVest addWaypoint addWeapon addWeaponCargo addWeaponCargoGlobal addWeaponGlobal addWeaponItem addWeaponPool addWeaponTurret admin agent agents AGLToASL aimedAtTarget aimPos airDensityRTD airplaneThrottle airportSide AISFinishHeal alive all3DENEntities allAirports allControls allCurators allCutLayers allDead allDeadMen allDisplays allGroups allMapMarkers allMines allMissionObjects allow3DMode allowCrewInImmobile allowCuratorLogicIgnoreAreas allowDamage allowDammage allowFileOperations allowFleeing allowGetIn allowSprint allPlayers allSimpleObjects allSites allTurrets allUnits allUnitsUAV allVariables ammo ammoOnPylon and animate animateBay animateDoor animatePylon animateSource animationNames animationPhase animationSourcePhase animationState append apply armoryPoints arrayIntersect asin ASLToAGL ASLToATL assert assignAsCargo assignAsCargoIndex assignAsCommander assignAsDriver assignAsGunner assignAsTurret assignCurator assignedCargo assignedCommander assignedDriver assignedGunner assignedItems assignedTarget assignedTeam assignedVehicle assignedVehicleRole assignItem assignTeam assignToAirport atan atan2 atg ATLToASL attachedObject attachedObjects attachedTo attachObject attachTo attackEnabled backpack backpackCargo backpackContainer backpackItems backpackMagazines backpackSpaceFor behaviour benchmark binocular boundingBox boundingBoxReal boundingCenter breakOut breakTo briefingName buildingExit buildingPos buttonAction buttonSetAction cadetMode call callExtension camCommand camCommit camCommitPrepared camCommitted camConstuctionSetParams camCreate camDestroy cameraEffect cameraEffectEnableHUD cameraInterest cameraOn cameraView campaignConfigFile camPreload camPreloaded camPrepareBank camPrepareDir camPrepareDive camPrepareFocus camPrepareFov camPrepareFovRange camPreparePos camPrepareRelPos camPrepareTarget camSetBank camSetDir camSetDive camSetFocus camSetFov camSetFovRange camSetPos camSetRelPos camSetTarget camTarget camUseNVG canAdd canAddItemToBackpack canAddItemToUniform canAddItemToVest cancelSimpleTaskDestination canFire canMove canSlingLoad canStand canSuspend canTriggerDynamicSimulation canUnloadInCombat canVehicleCargo captive captiveNum cbChecked cbSetChecked ceil channelEnabled cheatsEnabled checkAIFeature checkVisibility className clearAllItemsFromBackpack clearBackpackCargo clearBackpackCargoGlobal clearGroupIcons clearItemCargo clearItemCargoGlobal clearItemPool clearMagazineCargo clearMagazineCargoGlobal clearMagazinePool clearOverlay clearRadio clearWeaponCargo clearWeaponCargoGlobal clearWeaponPool clientOwner closeDialog closeDisplay closeOverlay collapseObjectTree collect3DENHistory collectiveRTD combatMode commandArtilleryFire commandChat commander commandFire commandFollow commandFSM commandGetOut commandingMenu commandMove commandRadio commandStop commandSuppressiveFire commandTarget commandWatch comment commitOverlay compile compileFinal completedFSM composeText configClasses configFile configHierarchy configName configProperties configSourceAddonList configSourceMod configSourceModList confirmSensorTarget connectTerminalToUAV controlsGroupCtrl copyFromClipboard copyToClipboard copyWaypoints cos count countEnemy countFriendly countSide countType countUnknown create3DENComposition create3DENEntity createAgent createCenter createDialog createDiaryLink createDiaryRecord createDiarySubject createDisplay createGearDialog createGroup createGuardedPoint createLocation createMarker createMarkerLocal createMenu createMine createMissionDisplay createMPCampaignDisplay createSimpleObject createSimpleTask createSite createSoundSource createTask createTeam createTrigger createUnit createVehicle createVehicleCrew createVehicleLocal crew ctAddHeader ctAddRow ctClear ctCurSel ctData ctFindHeaderRows ctFindRowHeader ctHeaderControls ctHeaderCount ctRemoveHeaders ctRemoveRows ctrlActivate ctrlAddEventHandler ctrlAngle ctrlAutoScrollDelay ctrlAutoScrollRewind ctrlAutoScrollSpeed ctrlChecked ctrlClassName ctrlCommit ctrlCommitted ctrlCreate ctrlDelete ctrlEnable ctrlEnabled ctrlFade ctrlHTMLLoaded ctrlIDC ctrlIDD ctrlMapAnimAdd ctrlMapAnimClear ctrlMapAnimCommit ctrlMapAnimDone ctrlMapCursor ctrlMapMouseOver ctrlMapScale ctrlMapScreenToWorld ctrlMapWorldToScreen ctrlModel ctrlModelDirAndUp ctrlModelScale ctrlParent ctrlParentControlsGroup ctrlPosition ctrlRemoveAllEventHandlers ctrlRemoveEventHandler ctrlScale ctrlSetActiveColor ctrlSetAngle ctrlSetAutoScrollDelay ctrlSetAutoScrollRewind ctrlSetAutoScrollSpeed ctrlSetBackgroundColor ctrlSetChecked ctrlSetEventHandler ctrlSetFade ctrlSetFocus ctrlSetFont ctrlSetFontH1 ctrlSetFontH1B ctrlSetFontH2 ctrlSetFontH2B ctrlSetFontH3 ctrlSetFontH3B ctrlSetFontH4 ctrlSetFontH4B ctrlSetFontH5 ctrlSetFontH5B ctrlSetFontH6 ctrlSetFontH6B ctrlSetFontHeight ctrlSetFontHeightH1 ctrlSetFontHeightH2 ctrlSetFontHeightH3 ctrlSetFontHeightH4 ctrlSetFontHeightH5 ctrlSetFontHeightH6 ctrlSetFontHeightSecondary ctrlSetFontP ctrlSetFontPB ctrlSetFontSecondary ctrlSetForegroundColor ctrlSetModel ctrlSetModelDirAndUp ctrlSetModelScale ctrlSetPixelPrecision ctrlSetPosition ctrlSetScale ctrlSetStructuredText ctrlSetText ctrlSetTextColor ctrlSetTooltip ctrlSetTooltipColorBox ctrlSetTooltipColorShade ctrlSetTooltipColorText ctrlShow ctrlShown ctrlText ctrlTextHeight ctrlTextWidth ctrlType ctrlVisible ctRowControls ctRowCount ctSetCurSel ctSetData ctSetHeaderTemplate ctSetRowTemplate ctSetValue ctValue curatorAddons curatorCamera curatorCameraArea curatorCameraAreaCeiling curatorCoef curatorEditableObjects curatorEditingArea curatorEditingAreaType curatorMouseOver curatorPoints curatorRegisteredObjects curatorSelected curatorWaypointCost current3DENOperation currentChannel currentCommand currentMagazine currentMagazineDetail currentMagazineDetailTurret currentMagazineTurret currentMuzzle currentNamespace currentTask currentTasks currentThrowable currentVisionMode currentWaypoint currentWeapon currentWeaponMode currentWeaponTurret currentZeroing cursorObject cursorTarget customChat customRadio cutFadeOut cutObj cutRsc cutText damage date dateToNumber daytime deActivateKey debriefingText debugFSM debugLog deg delete3DENEntities deleteAt deleteCenter deleteCollection deleteEditorObject deleteGroup deleteGroupWhenEmpty deleteIdentity deleteLocation deleteMarker deleteMarkerLocal deleteRange deleteResources deleteSite deleteStatus deleteTeam deleteVehicle deleteVehicleCrew deleteWaypoint detach detectedMines diag_activeMissionFSMs diag_activeScripts diag_activeSQFScripts diag_activeSQSScripts diag_captureFrame diag_captureFrameToFile diag_captureSlowFrame diag_codePerformance diag_drawMode diag_enable diag_enabled diag_fps diag_fpsMin diag_frameNo diag_lightNewLoad diag_list diag_log diag_logSlowFrame diag_mergeConfigFile diag_recordTurretLimits diag_setLightNew diag_tickTime diag_toggle dialog diarySubjectExists didJIP didJIPOwner difficulty difficultyEnabled difficultyEnabledRTD difficultyOption direction directSay disableAI disableCollisionWith disableConversation disableDebriefingStats disableMapIndicators disableNVGEquipment disableRemoteSensors disableSerialization disableTIEquipment disableUAVConnectability disableUserInput displayAddEventHandler displayCtrl displayParent displayRemoveAllEventHandlers displayRemoveEventHandler displaySetEventHandler dissolveTeam distance distance2D distanceSqr distributionRegion do3DENAction doArtilleryFire doFire doFollow doFSM doGetOut doMove doorPhase doStop doSuppressiveFire doTarget doWatch drawArrow drawEllipse drawIcon drawIcon3D drawLine drawLine3D drawLink drawLocation drawPolygon drawRectangle drawTriangle driver drop dynamicSimulationDistance dynamicSimulationDistanceCoef dynamicSimulationEnabled dynamicSimulationSystemEnabled echo edit3DENMissionAttributes editObject editorSetEventHandler effectiveCommander emptyPositions enableAI enableAIFeature enableAimPrecision enableAttack enableAudioFeature enableAutoStartUpRTD enableAutoTrimRTD enableCamShake enableCaustics enableChannel enableCollisionWith enableCopilot enableDebriefingStats enableDiagLegend enableDynamicSimulation enableDynamicSimulationSystem enableEndDialog enableEngineArtillery enableEnvironment enableFatigue enableGunLights enableInfoPanelComponent enableIRLasers enableMimics enablePersonTurret enableRadio enableReload enableRopeAttach enableSatNormalOnDetail enableSaving enableSentences enableSimulation enableSimulationGlobal enableStamina enableTeamSwitch enableTraffic enableUAVConnectability enableUAVWaypoints enableVehicleCargo enableVehicleSensor enableWeaponDisassembly endLoadingScreen endMission engineOn enginesIsOnRTD enginesRpmRTD enginesTorqueRTD entities environmentEnabled estimatedEndServerTime estimatedTimeLeft evalObjectArgument everyBackpack everyContainer exec execEditorScript execFSM execVM exp expectedDestination exportJIPMessages eyeDirection eyePos face faction fadeMusic fadeRadio fadeSound fadeSpeech failMission fillWeaponsFromPool find findCover findDisplay findEditorObject findEmptyPosition findEmptyPositionReady findIf findNearestEnemy finishMissionInit finite fire fireAtTarget firstBackpack flag flagAnimationPhase flagOwner flagSide flagTexture fleeing floor flyInHeight flyInHeightASL fog fogForecast fogParams forceAddUniform forcedMap forceEnd forceFlagTexture forceFollowRoad forceMap forceRespawn forceSpeed forceWalk forceWeaponFire forceWeatherChange forEachMember forEachMemberAgent forEachMemberTeam forgetTarget format formation formationDirection formationLeader formationMembers formationPosition formationTask formatText formLeader freeLook fromEditor fuel fullCrew gearIDCAmmoCount gearSlotAmmoCount gearSlotData get3DENActionState get3DENAttribute get3DENCamera get3DENConnections get3DENEntity get3DENEntityID get3DENGrid get3DENIconsVisible get3DENLayerEntities get3DENLinesVisible get3DENMissionAttribute get3DENMouseOver get3DENSelected getAimingCoef getAllEnvSoundControllers getAllHitPointsDamage getAllOwnedMines getAllSoundControllers getAmmoCargo getAnimAimPrecision getAnimSpeedCoef getArray getArtilleryAmmo getArtilleryComputerSettings getArtilleryETA getAssignedCuratorLogic getAssignedCuratorUnit getBackpackCargo getBleedingRemaining getBurningValue getCameraViewDirection getCargoIndex getCenterOfMass getClientState getClientStateNumber getCompatiblePylonMagazines getConnectedUAV getContainerMaxLoad getCursorObjectParams getCustomAimCoef getDammage getDescription getDir getDirVisual getDLCAssetsUsage getDLCAssetsUsageByName getDLCs getEditorCamera getEditorMode getEditorObjectScope getElevationOffset getEnvSoundController getFatigue getForcedFlagTexture getFriend getFSMVariable getFuelCargo getGroupIcon getGroupIconParams getGroupIcons getHideFrom getHit getHitIndex getHitPointDamage getItemCargo getMagazineCargo getMarkerColor getMarkerPos getMarkerSize getMarkerType getMass getMissionConfig getMissionConfigValue getMissionDLCs getMissionLayerEntities getModelInfo getMousePosition getMusicPlayedTime getNumber getObjectArgument getObjectChildren getObjectDLC getObjectMaterials getObjectProxy getObjectTextures getObjectType getObjectViewDistance getOxygenRemaining getPersonUsedDLCs getPilotCameraDirection getPilotCameraPosition getPilotCameraRotation getPilotCameraTarget getPlateNumber getPlayerChannel getPlayerScores getPlayerUID getPos getPosASL getPosASLVisual getPosASLW getPosATL getPosATLVisual getPosVisual getPosWorld getPylonMagazines getRelDir getRelPos getRemoteSensorsDisabled getRepairCargo getResolution getShadowDistance getShotParents getSlingLoad getSoundController getSoundControllerResult getSpeed getStamina getStatValue getSuppression getTerrainGrid getTerrainHeightASL getText getTotalDLCUsageTime getUnitLoadout getUnitTrait getUserMFDText getUserMFDvalue getVariable getVehicleCargo getWeaponCargo getWeaponSway getWingsOrientationRTD getWingsPositionRTD getWPPos glanceAt globalChat globalRadio goggles goto group groupChat groupFromNetId groupIconSelectable groupIconsVisible groupId groupOwner groupRadio groupSelectedUnits groupSelectUnit gunner gusts halt handgunItems handgunMagazine handgunWeapon handsHit hasInterface hasPilotCamera hasWeapon hcAllGroups hcGroupParams hcLeader hcRemoveAllGroups hcRemoveGroup hcSelected hcSelectGroup hcSetGroup hcShowBar hcShownBar headgear hideBody hideObject hideObjectGlobal hideSelection hint hintC hintCadet hintSilent hmd hostMission htmlLoad HUDMovementLevels humidity image importAllGroups importance in inArea inAreaArray incapacitatedState inflame inflamed infoPanel infoPanelComponentEnabled infoPanelComponents infoPanels inGameUISetEventHandler inheritsFrom initAmbientLife inPolygon inputAction inRangeOfArtillery insertEditorObject intersect is3DEN is3DENMultiplayer isAbleToBreathe isAgent isArray isAutoHoverOn isAutonomous isAutotest isBleeding isBurning isClass isCollisionLightOn isCopilotEnabled isDamageAllowed isDedicated isDLCAvailable isEngineOn isEqualTo isEqualType isEqualTypeAll isEqualTypeAny isEqualTypeArray isEqualTypeParams isFilePatchingEnabled isFlashlightOn isFlatEmpty isForcedWalk isFormationLeader isGroupDeletedWhenEmpty isHidden isInRemainsCollector isInstructorFigureEnabled isIRLaserOn isKeyActive isKindOf isLaserOn isLightOn isLocalized isManualFire isMarkedForCollection isMultiplayer isMultiplayerSolo isNil isNull isNumber isObjectHidden isObjectRTD isOnRoad isPipEnabled isPlayer isRealTime isRemoteExecuted isRemoteExecutedJIP isServer isShowing3DIcons isSimpleObject isSprintAllowed isStaminaEnabled isSteamMission isStreamFriendlyUIEnabled isText isTouchingGround isTurnedOut isTutHintsEnabled isUAVConnectable isUAVConnected isUIContext isUniformAllowed isVehicleCargo isVehicleRadarOn isVehicleSensorEnabled isWalking isWeaponDeployed isWeaponRested itemCargo items itemsWithMagazines join joinAs joinAsSilent joinSilent joinString kbAddDatabase kbAddDatabaseTargets kbAddTopic kbHasTopic kbReact kbRemoveTopic kbTell kbWasSaid keyImage keyName knowsAbout land landAt landResult language laserTarget lbAdd lbClear lbColor lbColorRight lbCurSel lbData lbDelete lbIsSelected lbPicture lbPictureRight lbSelection lbSetColor lbSetColorRight lbSetCurSel lbSetData lbSetPicture lbSetPictureColor lbSetPictureColorDisabled lbSetPictureColorSelected lbSetPictureRight lbSetPictureRightColor lbSetPictureRightColorDisabled lbSetPictureRightColorSelected lbSetSelectColor lbSetSelectColorRight lbSetSelected lbSetText lbSetTextRight lbSetTooltip lbSetValue lbSize lbSort lbSortByValue lbText lbTextRight lbValue leader leaderboardDeInit leaderboardGetRows leaderboardInit leaderboardRequestRowsFriends leaderboardsRequestUploadScore leaderboardsRequestUploadScoreKeepBest leaderboardState leaveVehicle libraryCredits libraryDisclaimers lifeState lightAttachObject lightDetachObject lightIsOn lightnings limitSpeed linearConversion lineIntersects lineIntersectsObjs lineIntersectsSurfaces lineIntersectsWith linkItem list listObjects listRemoteTargets listVehicleSensors ln lnbAddArray lnbAddColumn lnbAddRow lnbClear lnbColor lnbCurSelRow lnbData lnbDeleteColumn lnbDeleteRow lnbGetColumnsPosition lnbPicture lnbSetColor lnbSetColumnsPos lnbSetCurSelRow lnbSetData lnbSetPicture lnbSetText lnbSetValue lnbSize lnbSort lnbSortByValue lnbText lnbValue load loadAbs loadBackpack loadFile loadGame loadIdentity loadMagazine loadOverlay loadStatus loadUniform loadVest local localize locationPosition lock lockCameraTo lockCargo lockDriver locked lockedCargo lockedDriver lockedTurret lockIdentity lockTurret lockWP log logEntities logNetwork logNetworkTerminate lookAt lookAtPos magazineCargo magazines magazinesAllTurrets magazinesAmmo magazinesAmmoCargo magazinesAmmoFull magazinesDetail magazinesDetailBackpack magazinesDetailUniform magazinesDetailVest magazinesTurret magazineTurretAmmo mapAnimAdd mapAnimClear mapAnimCommit mapAnimDone mapCenterOnCamera mapGridPosition markAsFinishedOnSteam markerAlpha markerBrush markerColor markerDir markerPos markerShape markerSize markerText markerType max members menuAction menuAdd menuChecked menuClear menuCollapse menuData menuDelete menuEnable menuEnabled menuExpand menuHover menuPicture menuSetAction menuSetCheck menuSetData menuSetPicture menuSetValue menuShortcut menuShortcutText menuSize menuSort menuText menuURL menuValue min mineActive mineDetectedBy missionConfigFile missionDifficulty missionName missionNamespace missionStart missionVersion mod modelToWorld modelToWorldVisual modelToWorldVisualWorld modelToWorldWorld modParams moonIntensity moonPhase morale move move3DENCamera moveInAny moveInCargo moveInCommander moveInDriver moveInGunner moveInTurret moveObjectToEnd moveOut moveTime moveTo moveToCompleted moveToFailed musicVolume name nameSound nearEntities nearestBuilding nearestLocation nearestLocations nearestLocationWithDubbing nearestObject nearestObjects nearestTerrainObjects nearObjects nearObjectsReady nearRoads nearSupplies nearTargets needReload netId netObjNull newOverlay nextMenuItemIndex nextWeatherChange nMenuItems not numberOfEnginesRTD numberToDate objectCurators objectFromNetId objectParent objStatus onBriefingGroup onBriefingNotes onBriefingPlan onBriefingTeamSwitch onCommandModeChanged onDoubleClick onEachFrame onGroupIconClick onGroupIconOverEnter onGroupIconOverLeave onHCGroupSelectionChanged onMapSingleClick onPlayerConnected onPlayerDisconnected onPreloadFinished onPreloadStarted onShowNewObject onTeamSwitch openCuratorInterface openDLCPage openMap openSteamApp openYoutubeVideo or orderGetIn overcast overcastForecast owner param params parseNumber parseSimpleArray parseText parsingNamespace particlesQuality pickWeaponPool pitch pixelGrid pixelGridBase pixelGridNoUIScale pixelH pixelW playableSlotsNumber playableUnits playAction playActionNow player playerRespawnTime playerSide playersNumber playGesture playMission playMove playMoveNow playMusic playScriptedMission playSound playSound3D position positionCameraToWorld posScreenToWorld posWorldToScreen ppEffectAdjust ppEffectCommit ppEffectCommitted ppEffectCreate ppEffectDestroy ppEffectEnable ppEffectEnabled ppEffectForceInNVG precision preloadCamera preloadObject preloadSound preloadTitleObj preloadTitleRsc preprocessFile preprocessFileLineNumbers primaryWeapon primaryWeaponItems primaryWeaponMagazine priority processDiaryLink productVersion profileName profileNamespace profileNameSteam progressLoadingScreen progressPosition progressSetPosition publicVariable publicVariableClient publicVariableServer pushBack pushBackUnique putWeaponPool queryItemsPool queryMagazinePool queryWeaponPool rad radioChannelAdd radioChannelCreate radioChannelRemove radioChannelSetCallSign radioChannelSetLabel radioVolume rain rainbow random rank rankId rating rectangular registeredTasks registerTask reload reloadEnabled remoteControl remoteExec remoteExecCall remoteExecutedOwner remove3DENConnection remove3DENEventHandler remove3DENLayer removeAction removeAll3DENEventHandlers removeAllActions removeAllAssignedItems removeAllContainers removeAllCuratorAddons removeAllCuratorCameraAreas removeAllCuratorEditingAreas removeAllEventHandlers removeAllHandgunItems removeAllItems removeAllItemsWithMagazines removeAllMissionEventHandlers removeAllMPEventHandlers removeAllMusicEventHandlers removeAllOwnedMines removeAllPrimaryWeaponItems removeAllWeapons removeBackpack removeBackpackGlobal removeCuratorAddons removeCuratorCameraArea removeCuratorEditableObjects removeCuratorEditingArea removeDrawIcon removeDrawLinks removeEventHandler removeFromRemainsCollector removeGoggles removeGroupIcon removeHandgunItem removeHeadgear removeItem removeItemFromBackpack removeItemFromUniform removeItemFromVest removeItems removeMagazine removeMagazineGlobal removeMagazines removeMagazinesTurret removeMagazineTurret removeMenuItem removeMissionEventHandler removeMPEventHandler removeMusicEventHandler removeOwnedMine removePrimaryWeaponItem removeSecondaryWeaponItem removeSimpleTask removeSwitchableUnit removeTeamMember removeUniform removeVest removeWeapon removeWeaponAttachmentCargo removeWeaponCargo removeWeaponGlobal removeWeaponTurret reportRemoteTarget requiredVersion resetCamShake resetSubgroupDirection resize resources respawnVehicle restartEditorCamera reveal revealMine reverse reversedMouseY roadAt roadsConnectedTo roleDescription ropeAttachedObjects ropeAttachedTo ropeAttachEnabled ropeAttachTo ropeCreate ropeCut ropeDestroy ropeDetach ropeEndPosition ropeLength ropes ropeUnwind ropeUnwound rotorsForcesRTD rotorsRpmRTD round runInitScript safeZoneH safeZoneW safeZoneWAbs safeZoneX safeZoneXAbs safeZoneY save3DENInventory saveGame saveIdentity saveJoysticks saveOverlay saveProfileNamespace saveStatus saveVar savingEnabled say say2D say3D scopeName score scoreSide screenshot screenToWorld scriptDone scriptName scudState secondaryWeapon secondaryWeaponItems secondaryWeaponMagazine select selectBestPlaces selectDiarySubject selectedEditorObjects selectEditorObject selectionNames selectionPosition selectLeader selectMax selectMin selectNoPlayer selectPlayer selectRandom selectRandomWeighted selectWeapon selectWeaponTurret sendAUMessage sendSimpleCommand sendTask sendTaskResult sendUDPMessage serverCommand serverCommandAvailable serverCommandExecutable serverName serverTime set set3DENAttribute set3DENAttributes set3DENGrid set3DENIconsVisible set3DENLayer set3DENLinesVisible set3DENLogicType set3DENMissionAttribute set3DENMissionAttributes set3DENModelsVisible set3DENObjectType set3DENSelected setAccTime setActualCollectiveRTD setAirplaneThrottle setAirportSide setAmmo setAmmoCargo setAmmoOnPylon setAnimSpeedCoef setAperture setApertureNew setArmoryPoints setAttributes setAutonomous setBehaviour setBleedingRemaining setBrakesRTD setCameraInterest setCamShakeDefParams setCamShakeParams setCamUseTI setCaptive setCenterOfMass setCollisionLight setCombatMode setCompassOscillation setConvoySeparation setCuratorCameraAreaCeiling setCuratorCoef setCuratorEditingAreaType setCuratorWaypointCost setCurrentChannel setCurrentTask setCurrentWaypoint setCustomAimCoef setCustomWeightRTD setDamage setDammage setDate setDebriefingText setDefaultCamera setDestination setDetailMapBlendPars setDir setDirection setDrawIcon setDriveOnPath setDropInterval setDynamicSimulationDistance setDynamicSimulationDistanceCoef setEditorMode setEditorObjectScope setEffectCondition setEngineRPMRTD setFace setFaceAnimation setFatigue setFeatureType setFlagAnimationPhase setFlagOwner setFlagSide setFlagTexture setFog setFormation setFormationTask setFormDir setFriend setFromEditor setFSMVariable setFuel setFuelCargo setGroupIcon setGroupIconParams setGroupIconsSelectable setGroupIconsVisible setGroupId setGroupIdGlobal setGroupOwner setGusts setHideBehind setHit setHitIndex setHitPointDamage setHorizonParallaxCoef setHUDMovementLevels setIdentity setImportance setInfoPanel setLeader setLightAmbient setLightAttenuation setLightBrightness setLightColor setLightDayLight setLightFlareMaxDistance setLightFlareSize setLightIntensity setLightnings setLightUseFlare setLocalWindParams setMagazineTurretAmmo setMarkerAlpha setMarkerAlphaLocal setMarkerBrush setMarkerBrushLocal setMarkerColor setMarkerColorLocal setMarkerDir setMarkerDirLocal setMarkerPos setMarkerPosLocal setMarkerShape setMarkerShapeLocal setMarkerSize setMarkerSizeLocal setMarkerText setMarkerTextLocal setMarkerType setMarkerTypeLocal setMass setMimic setMousePosition setMusicEffect setMusicEventHandler setName setNameSound setObjectArguments setObjectMaterial setObjectMaterialGlobal setObjectProxy setObjectTexture setObjectTextureGlobal setObjectViewDistance setOvercast setOwner setOxygenRemaining setParticleCircle setParticleClass setParticleFire setParticleParams setParticleRandom setPilotCameraDirection setPilotCameraRotation setPilotCameraTarget setPilotLight setPiPEffect setPitch setPlateNumber setPlayable setPlayerRespawnTime setPos setPosASL setPosASL2 setPosASLW setPosATL setPosition setPosWorld setPylonLoadOut setPylonsPriority setRadioMsg setRain setRainbow setRandomLip setRank setRectangular setRepairCargo setRotorBrakeRTD setShadowDistance setShotParents setSide setSimpleTaskAlwaysVisible setSimpleTaskCustomData setSimpleTaskDescription setSimpleTaskDestination setSimpleTaskTarget setSimpleTaskType setSimulWeatherLayers setSize setSkill setSlingLoad setSoundEffect setSpeaker setSpeech setSpeedMode setStamina setStaminaScheme setStatValue setSuppression setSystemOfUnits setTargetAge setTaskMarkerOffset setTaskResult setTaskState setTerrainGrid setText setTimeMultiplier setTitleEffect setTrafficDensity setTrafficDistance setTrafficGap setTrafficSpeed setTriggerActivation setTriggerArea setTriggerStatements setTriggerText setTriggerTimeout setTriggerType setType setUnconscious setUnitAbility setUnitLoadout setUnitPos setUnitPosWeak setUnitRank setUnitRecoilCoefficient setUnitTrait setUnloadInCombat setUserActionText setUserMFDText setUserMFDvalue setVariable setVectorDir setVectorDirAndUp setVectorUp setVehicleAmmo setVehicleAmmoDef setVehicleArmor setVehicleCargo setVehicleId setVehicleLock setVehiclePosition setVehicleRadar setVehicleReceiveRemoteTargets setVehicleReportOwnPosition setVehicleReportRemoteTargets setVehicleTIPars setVehicleVarName setVelocity setVelocityModelSpace setVelocityTransformation setViewDistance setVisibleIfTreeCollapsed setWantedRPMRTD setWaves setWaypointBehaviour setWaypointCombatMode setWaypointCompletionRadius setWaypointDescription setWaypointForceBehaviour setWaypointFormation setWaypointHousePosition setWaypointLoiterRadius setWaypointLoiterType setWaypointName setWaypointPosition setWaypointScript setWaypointSpeed setWaypointStatements setWaypointTimeout setWaypointType setWaypointVisible setWeaponReloadingTime setWind setWindDir setWindForce setWindStr setWingForceScaleRTD setWPPos show3DIcons showChat showCinemaBorder showCommandingMenu showCompass showCuratorCompass showGPS showHUD showLegend showMap shownArtilleryComputer shownChat shownCompass shownCuratorCompass showNewEditorObject shownGPS shownHUD shownMap shownPad shownRadio shownScoretable shownUAVFeed shownWarrant shownWatch showPad showRadio showScoretable showSubtitles showUAVFeed showWarrant showWatch showWaypoint showWaypoints side sideChat sideEnemy sideFriendly sideRadio simpleTasks simulationEnabled simulCloudDensity simulCloudOcclusion simulInClouds simulWeatherSync sin size sizeOf skill skillFinal skipTime sleep sliderPosition sliderRange sliderSetPosition sliderSetRange sliderSetSpeed sliderSpeed slingLoadAssistantShown soldierMagazines someAmmo sort soundVolume spawn speaker speed speedMode splitString sqrt squadParams stance startLoadingScreen step stop stopEngineRTD stopped str sunOrMoon supportInfo suppressFor surfaceIsWater surfaceNormal surfaceType swimInDepth switchableUnits switchAction switchCamera switchGesture switchLight switchMove synchronizedObjects synchronizedTriggers synchronizedWaypoints synchronizeObjectsAdd synchronizeObjectsRemove synchronizeTrigger synchronizeWaypoint systemChat systemOfUnits tan targetKnowledge targets targetsAggregate targetsQuery taskAlwaysVisible taskChildren taskCompleted taskCustomData taskDescription taskDestination taskHint taskMarkerOffset taskParent taskResult taskState taskType teamMember teamName teams teamSwitch teamSwitchEnabled teamType terminate terrainIntersect terrainIntersectASL terrainIntersectAtASL text textLog textLogFormat tg time timeMultiplier titleCut titleFadeOut titleObj titleRsc titleText toArray toFixed toLower toString toUpper triggerActivated triggerActivation triggerArea triggerAttachedVehicle triggerAttachObject triggerAttachVehicle triggerDynamicSimulation triggerStatements triggerText triggerTimeout triggerTimeoutCurrent triggerType turretLocal turretOwner turretUnit tvAdd tvClear tvCollapse tvCollapseAll tvCount tvCurSel tvData tvDelete tvExpand tvExpandAll tvPicture tvSetColor tvSetCurSel tvSetData tvSetPicture tvSetPictureColor tvSetPictureColorDisabled tvSetPictureColorSelected tvSetPictureRight tvSetPictureRightColor tvSetPictureRightColorDisabled tvSetPictureRightColorSelected tvSetText tvSetTooltip tvSetValue tvSort tvSortByValue tvText tvTooltip tvValue type typeName typeOf UAVControl uiNamespace uiSleep unassignCurator unassignItem unassignTeam unassignVehicle underwater uniform uniformContainer uniformItems uniformMagazines unitAddons unitAimPosition unitAimPositionVisual unitBackpack unitIsUAV unitPos unitReady unitRecoilCoefficient units unitsBelowHeight unlinkItem unlockAchievement unregisterTask updateDrawIcon updateMenuItem updateObjectTree useAISteeringComponent useAudioTimeForMoves userInputDisabled vectorAdd vectorCos vectorCrossProduct vectorDiff vectorDir vectorDirVisual vectorDistance vectorDistanceSqr vectorDotProduct vectorFromTo vectorMagnitude vectorMagnitudeSqr vectorModelToWorld vectorModelToWorldVisual vectorMultiply vectorNormalized vectorUp vectorUpVisual vectorWorldToModel vectorWorldToModelVisual vehicle vehicleCargoEnabled vehicleChat vehicleRadio vehicleReceiveRemoteTargets vehicleReportOwnPosition vehicleReportRemoteTargets vehicles vehicleVarName velocity velocityModelSpace verifySignature vest vestContainer vestItems vestMagazines viewDistance visibleCompass visibleGPS visibleMap visiblePosition visiblePositionASL visibleScoretable visibleWatch waves waypointAttachedObject waypointAttachedVehicle waypointAttachObject waypointAttachVehicle waypointBehaviour waypointCombatMode waypointCompletionRadius waypointDescription waypointForceBehaviour waypointFormation waypointHousePosition waypointLoiterRadius waypointLoiterType waypointName waypointPosition waypoints waypointScript waypointsEnabledUAV waypointShow waypointSpeed waypointStatements waypointTimeout waypointTimeoutCurrent waypointType waypointVisible weaponAccessories weaponAccessoriesCargo weaponCargo weaponDirection weaponInertia weaponLowered weapons weaponsItems weaponsItemsCargo weaponState weaponsTurret weightRTD WFSideText wind ",literal:"blufor civilian configNull controlNull displayNull east endl false grpNull independent lineBreak locationNull nil objNull opfor pi resistance scriptNull sideAmbientLife sideEmpty sideLogic sideUnknown taskNull teamMemberNull true west"},contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.NUMBER_MODE,r,a,s,o],illegal:/#|^\$ /}}return Pet=e,Pet}var Bet,kbn;function mri(){if(kbn)return Bet;kbn=1;function e(t){var r=t.COMMENT("--","$");return{name:"SQL (more)",aliases:["mysql","oracle"],disableAutodetect:!0,case_insensitive:!0,illegal:/[<>{}*]/,contains:[{beginKeywords:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with",end:/;/,endsWithParent:!0,keywords:{$pattern:/[\w\.]+/,keyword:"as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null unknown",built_in:"array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varchar2 varying void"},contains:[{className:"string",begin:"'",end:"'",contains:[{begin:"''"}]},{className:"string",begin:'"',end:'"',contains:[{begin:'""'}]},{className:"string",begin:"`",end:"`"},t.C_NUMBER_MODE,t.C_BLOCK_COMMENT_MODE,r,t.HASH_COMMENT_MODE]},t.C_BLOCK_COMMENT_MODE,r,t.HASH_COMMENT_MODE]}}return Bet=e,Bet}var Fet,Rbn;function bri(){if(Rbn)return Fet;Rbn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(...s){return s.map(u=>e(u)).join("")}function r(...s){return"("+s.map(u=>e(u)).join("|")+")"}function a(s){const o=s.COMMENT("--","$"),u={className:"string",variants:[{begin:/'/,end:/'/,contains:[{begin:/''/}]}]},h={begin:/"/,end:/"/,contains:[{begin:/""/}]},f=["true","false","unknown"],p=["double precision","large object","with timezone","without timezone"],m=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],b=["add","asc","collation","desc","final","first","last","view"],_=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update ","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year"],w=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],S=["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"],C=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],A=w,k=[..._,...b].filter(M=>!w.includes(M)),I={className:"variable",begin:/@[a-z0-9]+/},N={className:"operator",begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0},L={begin:t(/\b/,r(...A),/\s*\(/),keywords:{built_in:A}};function P(M,{exceptions:F,when:U}={}){const $=U;return F=F||[],M.map(G=>G.match(/\|\d+$/)||F.includes(G)?G:$(G)?`${G}|0`:G)}return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/,keyword:P(k,{when:M=>M.length<3}),literal:f,type:m,built_in:S},contains:[{begin:r(...C),keywords:{$pattern:/[\w\.]+/,keyword:k.concat(C),literal:f,type:m}},{className:"type",begin:r(...p)},L,I,u,h,s.C_NUMBER_MODE,s.C_BLOCK_COMMENT_MODE,o,N]}}return Fet=a,Fet}var $et,Ibn;function yri(){if(Ibn)return $et;Ibn=1;function e(t){const r=["functions","model","data","parameters","quantities","transformed","generated"],a=["for","in","if","else","while","break","continue","return"],s=["print","reject","increment_log_prob|10","integrate_ode|10","integrate_ode_rk45|10","integrate_ode_bdf|10","algebra_solver"],o=["int","real","vector","ordered","positive_ordered","simplex","unit_vector","row_vector","matrix","cholesky_factor_corr|10","cholesky_factor_cov|10","corr_matrix|10","cov_matrix|10","void"],u=["Phi","Phi_approx","abs","acos","acosh","algebra_solver","append_array","append_col","append_row","asin","asinh","atan","atan2","atanh","bernoulli_cdf","bernoulli_lccdf","bernoulli_lcdf","bernoulli_logit_lpmf","bernoulli_logit_rng","bernoulli_lpmf","bernoulli_rng","bessel_first_kind","bessel_second_kind","beta_binomial_cdf","beta_binomial_lccdf","beta_binomial_lcdf","beta_binomial_lpmf","beta_binomial_rng","beta_cdf","beta_lccdf","beta_lcdf","beta_lpdf","beta_rng","binary_log_loss","binomial_cdf","binomial_coefficient_log","binomial_lccdf","binomial_lcdf","binomial_logit_lpmf","binomial_lpmf","binomial_rng","block","categorical_logit_lpmf","categorical_logit_rng","categorical_lpmf","categorical_rng","cauchy_cdf","cauchy_lccdf","cauchy_lcdf","cauchy_lpdf","cauchy_rng","cbrt","ceil","chi_square_cdf","chi_square_lccdf","chi_square_lcdf","chi_square_lpdf","chi_square_rng","cholesky_decompose","choose","col","cols","columns_dot_product","columns_dot_self","cos","cosh","cov_exp_quad","crossprod","csr_extract_u","csr_extract_v","csr_extract_w","csr_matrix_times_vector","csr_to_dense_matrix","cumulative_sum","determinant","diag_matrix","diag_post_multiply","diag_pre_multiply","diagonal","digamma","dims","dirichlet_lpdf","dirichlet_rng","distance","dot_product","dot_self","double_exponential_cdf","double_exponential_lccdf","double_exponential_lcdf","double_exponential_lpdf","double_exponential_rng","e","eigenvalues_sym","eigenvectors_sym","erf","erfc","exp","exp2","exp_mod_normal_cdf","exp_mod_normal_lccdf","exp_mod_normal_lcdf","exp_mod_normal_lpdf","exp_mod_normal_rng","expm1","exponential_cdf","exponential_lccdf","exponential_lcdf","exponential_lpdf","exponential_rng","fabs","falling_factorial","fdim","floor","fma","fmax","fmin","fmod","frechet_cdf","frechet_lccdf","frechet_lcdf","frechet_lpdf","frechet_rng","gamma_cdf","gamma_lccdf","gamma_lcdf","gamma_lpdf","gamma_p","gamma_q","gamma_rng","gaussian_dlm_obs_lpdf","get_lp","gumbel_cdf","gumbel_lccdf","gumbel_lcdf","gumbel_lpdf","gumbel_rng","head","hypergeometric_lpmf","hypergeometric_rng","hypot","inc_beta","int_step","integrate_ode","integrate_ode_bdf","integrate_ode_rk45","inv","inv_Phi","inv_chi_square_cdf","inv_chi_square_lccdf","inv_chi_square_lcdf","inv_chi_square_lpdf","inv_chi_square_rng","inv_cloglog","inv_gamma_cdf","inv_gamma_lccdf","inv_gamma_lcdf","inv_gamma_lpdf","inv_gamma_rng","inv_logit","inv_sqrt","inv_square","inv_wishart_lpdf","inv_wishart_rng","inverse","inverse_spd","is_inf","is_nan","lbeta","lchoose","lgamma","lkj_corr_cholesky_lpdf","lkj_corr_cholesky_rng","lkj_corr_lpdf","lkj_corr_rng","lmgamma","lmultiply","log","log10","log1m","log1m_exp","log1m_inv_logit","log1p","log1p_exp","log2","log_determinant","log_diff_exp","log_falling_factorial","log_inv_logit","log_mix","log_rising_factorial","log_softmax","log_sum_exp","logistic_cdf","logistic_lccdf","logistic_lcdf","logistic_lpdf","logistic_rng","logit","lognormal_cdf","lognormal_lccdf","lognormal_lcdf","lognormal_lpdf","lognormal_rng","machine_precision","matrix_exp","max","mdivide_left_spd","mdivide_left_tri_low","mdivide_right_spd","mdivide_right_tri_low","mean","min","modified_bessel_first_kind","modified_bessel_second_kind","multi_gp_cholesky_lpdf","multi_gp_lpdf","multi_normal_cholesky_lpdf","multi_normal_cholesky_rng","multi_normal_lpdf","multi_normal_prec_lpdf","multi_normal_rng","multi_student_t_lpdf","multi_student_t_rng","multinomial_lpmf","multinomial_rng","multiply_log","multiply_lower_tri_self_transpose","neg_binomial_2_cdf","neg_binomial_2_lccdf","neg_binomial_2_lcdf","neg_binomial_2_log_lpmf","neg_binomial_2_log_rng","neg_binomial_2_lpmf","neg_binomial_2_rng","neg_binomial_cdf","neg_binomial_lccdf","neg_binomial_lcdf","neg_binomial_lpmf","neg_binomial_rng","negative_infinity","normal_cdf","normal_lccdf","normal_lcdf","normal_lpdf","normal_rng","not_a_number","num_elements","ordered_logistic_lpmf","ordered_logistic_rng","owens_t","pareto_cdf","pareto_lccdf","pareto_lcdf","pareto_lpdf","pareto_rng","pareto_type_2_cdf","pareto_type_2_lccdf","pareto_type_2_lcdf","pareto_type_2_lpdf","pareto_type_2_rng","pi","poisson_cdf","poisson_lccdf","poisson_lcdf","poisson_log_lpmf","poisson_log_rng","poisson_lpmf","poisson_rng","positive_infinity","pow","print","prod","qr_Q","qr_R","quad_form","quad_form_diag","quad_form_sym","rank","rayleigh_cdf","rayleigh_lccdf","rayleigh_lcdf","rayleigh_lpdf","rayleigh_rng","reject","rep_array","rep_matrix","rep_row_vector","rep_vector","rising_factorial","round","row","rows","rows_dot_product","rows_dot_self","scaled_inv_chi_square_cdf","scaled_inv_chi_square_lccdf","scaled_inv_chi_square_lcdf","scaled_inv_chi_square_lpdf","scaled_inv_chi_square_rng","sd","segment","sin","singular_values","sinh","size","skew_normal_cdf","skew_normal_lccdf","skew_normal_lcdf","skew_normal_lpdf","skew_normal_rng","softmax","sort_asc","sort_desc","sort_indices_asc","sort_indices_desc","sqrt","sqrt2","square","squared_distance","step","student_t_cdf","student_t_lccdf","student_t_lcdf","student_t_lpdf","student_t_rng","sub_col","sub_row","sum","tail","tan","tanh","target","tcrossprod","tgamma","to_array_1d","to_array_2d","to_matrix","to_row_vector","to_vector","trace","trace_gen_quad_form","trace_quad_form","trigamma","trunc","uniform_cdf","uniform_lccdf","uniform_lcdf","uniform_lpdf","uniform_rng","variance","von_mises_lpdf","von_mises_rng","weibull_cdf","weibull_lccdf","weibull_lcdf","weibull_lpdf","weibull_rng","wiener_lpdf","wishart_lpdf","wishart_rng"],h=["bernoulli","bernoulli_logit","beta","beta_binomial","binomial","binomial_logit","categorical","categorical_logit","cauchy","chi_square","dirichlet","double_exponential","exp_mod_normal","exponential","frechet","gamma","gaussian_dlm_obs","gumbel","hypergeometric","inv_chi_square","inv_gamma","inv_wishart","lkj_corr","lkj_corr_cholesky","logistic","lognormal","multi_gp","multi_gp_cholesky","multi_normal","multi_normal_cholesky","multi_normal_prec","multi_student_t","multinomial","neg_binomial","neg_binomial_2","neg_binomial_2_log","normal","ordered_logistic","pareto","pareto_type_2","poisson","poisson_log","rayleigh","scaled_inv_chi_square","skew_normal","student_t","uniform","von_mises","weibull","wiener","wishart"];return{name:"Stan",aliases:["stanfuncs"],keywords:{$pattern:t.IDENT_RE,title:r,keyword:a.concat(o).concat(s),built_in:u},contains:[t.C_LINE_COMMENT_MODE,t.COMMENT(/#/,/$/,{relevance:0,keywords:{"meta-keyword":"include"}}),t.COMMENT(/\/\*/,/\*\//,{relevance:0,contains:[{className:"doctag",begin:/@(return|param)/}]}),{begin:/<\s*lower\s*=/,keywords:"lower"},{begin:/[<,]\s*upper\s*=/,keywords:"upper"},{className:"keyword",begin:/\btarget\s*\+=/,relevance:10},{begin:"~\\s*("+t.IDENT_RE+")\\s*\\(",keywords:h},{className:"number",variants:[{begin:/\b\d+(?:\.\d*)?(?:[eE][+-]?\d+)?/},{begin:/\.\d+(?:[eE][+-]?\d+)?\b/}],relevance:0},{className:"string",begin:'"',end:'"',relevance:0}]}}return $et=e,$et}var Uet,Nbn;function vri(){if(Nbn)return Uet;Nbn=1;function e(t){return{name:"Stata",aliases:["do","ado"],case_insensitive:!0,keywords:"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey bias binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 bubble bubbleplot ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d|0 datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e|0 ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error esize est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 forest forestplot form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate funnel funnelplot g|0 gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h|0 hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l|0 la lab labbe labbeplot labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m|0 ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize menl meqparse mer merg merge meta mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n|0 nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trimfill trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u|0 unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5",contains:[{className:"symbol",begin:/`[a-zA-Z0-9_]+'/},{className:"variable",begin:/\$\{?[a-zA-Z0-9_]+\}?/},{className:"string",variants:[{begin:`\`"[^\r +]*?"'`},{begin:`"[^\r +"]*"`}]},{className:"built_in",variants:[{begin:"\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\()"}]},t.COMMENT("^[ ]*\\*.*$",!1),t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE]}}return Uet=e,Uet}var zet,Obn;function _ri(){if(Obn)return zet;Obn=1;function e(t){return{name:"STEP Part 21",aliases:["p21","step","stp"],case_insensitive:!0,keywords:{$pattern:"[A-Z_][A-Z0-9_.]*",keyword:"HEADER ENDSEC DATA"},contains:[{className:"meta",begin:"ISO-10303-21;",relevance:10},{className:"meta",begin:"END-ISO-10303-21;",relevance:10},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.COMMENT("/\\*\\*!","\\*/"),t.C_NUMBER_MODE,t.inherit(t.APOS_STRING_MODE,{illegal:null}),t.inherit(t.QUOTE_STRING_MODE,{illegal:null}),{className:"string",begin:"'",end:"'"},{className:"symbol",variants:[{begin:"#",end:"\\d+",illegal:"\\W"}]}]}}return zet=e,zet}var Get,Lbn;function wri(){if(Lbn)return Get;Lbn=1;const e=h=>({IMPORTANT:{className:"meta",begin:"!important"},HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"},ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[h.APOS_STRING_MODE,h.QUOTE_STRING_MODE]}}),t=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],r=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],a=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],s=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],o=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse();function u(h){const f=e(h),p="and or not only",m={className:"variable",begin:"\\$"+h.IDENT_RE},b=["charset","css","debug","extend","font-face","for","import","include","keyframes","media","mixin","page","warn","while"],_="(?=[.\\s\\n[:,(])";return{name:"Stylus",aliases:["styl"],case_insensitive:!1,keywords:"if else for in",illegal:"("+["\\?","(\\bReturn\\b)","(\\bEnd\\b)","(\\bend\\b)","(\\bdef\\b)",";","#\\s","\\*\\s","===\\s","\\|","%"].join("|")+")",contains:[h.QUOTE_STRING_MODE,h.APOS_STRING_MODE,h.C_LINE_COMMENT_MODE,h.C_BLOCK_COMMENT_MODE,f.HEXCOLOR,{begin:"\\.[a-zA-Z][a-zA-Z0-9_-]*"+_,className:"selector-class"},{begin:"#[a-zA-Z][a-zA-Z0-9_-]*"+_,className:"selector-id"},{begin:"\\b("+t.join("|")+")"+_,className:"selector-tag"},{className:"selector-pseudo",begin:"&?:("+a.join("|")+")"+_},{className:"selector-pseudo",begin:"&?::("+s.join("|")+")"+_},f.ATTRIBUTE_SELECTOR_MODE,{className:"keyword",begin:/@media/,starts:{end:/[{;}]/,keywords:{$pattern:/[a-z-]+/,keyword:p,attribute:r.join(" ")},contains:[h.CSS_NUMBER_MODE]}},{className:"keyword",begin:"@((-(o|moz|ms|webkit)-)?("+b.join("|")+"))\\b"},m,h.CSS_NUMBER_MODE,{className:"function",begin:"^[a-zA-Z][a-zA-Z0-9_-]*\\(.*\\)",illegal:"[\\n]",returnBegin:!0,contains:[{className:"title",begin:"\\b[a-zA-Z][a-zA-Z0-9_-]*"},{className:"params",begin:/\(/,end:/\)/,contains:[f.HEXCOLOR,m,h.APOS_STRING_MODE,h.CSS_NUMBER_MODE,h.QUOTE_STRING_MODE]}]},{className:"attribute",begin:"\\b("+o.join("|")+")\\b",starts:{end:/;|$/,contains:[f.HEXCOLOR,m,h.APOS_STRING_MODE,h.QUOTE_STRING_MODE,h.CSS_NUMBER_MODE,h.C_BLOCK_COMMENT_MODE,f.IMPORTANT],illegal:/\./,relevance:0}}]}}return Get=u,Get}var qet,Dbn;function Eri(){if(Dbn)return qet;Dbn=1;function e(t){return{name:"SubUnit",case_insensitive:!0,contains:[{className:"string",begin:`\\[ +(multipart)?`,end:`\\] +`},{className:"string",begin:"\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}.\\d+Z"},{className:"string",begin:"(\\+|-)\\d+"},{className:"keyword",relevance:10,variants:[{begin:"^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?"},{begin:"^progress(:?)(\\s+)?(pop|push)?"},{begin:"^tags:"},{begin:"^time:"}]}]}}return qet=e,qet}var Het,Mbn;function xri(){if(Mbn)return Het;Mbn=1;function e(F){return F?typeof F=="string"?F:F.source:null}function t(F){return r("(?=",F,")")}function r(...F){return F.map($=>e($)).join("")}function a(...F){return"("+F.map($=>e($)).join("|")+")"}const s=F=>r(/\b/,F,/\w$/.test(F)?/\b/:/\B/),o=["Protocol","Type"].map(s),u=["init","self"].map(s),h=["Any","Self"],f=["associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],p=["false","nil","true"],m=["assignment","associativity","higherThan","left","lowerThan","none","right"],b=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],_=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],w=a(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),S=a(w,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),C=r(w,S,"*"),A=a(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),k=a(A,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),I=r(A,k,"*"),N=r(/[A-Z]/,k,"*"),L=["autoclosure",r(/convention\(/,a("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",r(/objc\(/,I,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","testable","UIApplicationMain","unknown","usableFromInline"],P=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];function M(F){const U={match:/\s+/,relevance:0},$=F.COMMENT("/\\*","\\*/",{contains:["self"]}),G=[F.C_LINE_COMMENT_MODE,$],B={className:"keyword",begin:r(/\./,t(a(...o,...u))),end:a(...o,...u),excludeBegin:!0},Z={match:r(/\./,a(...f)),relevance:0},z=f.filter(fe=>typeof fe=="string").concat(["_|0"]),Y=f.filter(fe=>typeof fe!="string").concat(h).map(s),W={variants:[{className:"keyword",match:a(...Y,...u)}]},Q={$pattern:a(/\b\w+/,/#\w+/),keyword:z.concat(b),literal:p},V=[B,Z,W],j={match:r(/\./,a(..._)),relevance:0},ee={className:"built_in",match:r(/\b/,a(..._),/(?=\()/)},te=[j,ee],ne={match:/->/,relevance:0},se={className:"operator",relevance:0,variants:[{match:C},{match:`\\.(\\.|${S})+`}]},ie=[ne,se],ge="([0-9]_*)+",ce="([0-9a-fA-F]_*)+",be={className:"number",relevance:0,variants:[{match:`\\b(${ge})(\\.(${ge}))?([eE][+-]?(${ge}))?\\b`},{match:`\\b0x(${ce})(\\.(${ce}))?([pP][+-]?(${ge}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},ve=(fe="")=>({className:"subst",variants:[{match:r(/\\/,fe,/[0\\tnr"']/)},{match:r(/\\/,fe,/u\{[0-9a-fA-F]{1,8}\}/)}]}),De=(fe="")=>({className:"subst",match:r(/\\/,fe,/[\t ]*(?:[\r\n]|\r\n)/)}),ye=(fe="")=>({className:"subst",label:"interpol",begin:r(/\\/,fe,/\(/),end:/\)/}),Ee=(fe="")=>({begin:r(fe,/"""/),end:r(/"""/,fe),contains:[ve(fe),De(fe),ye(fe)]}),he=(fe="")=>({begin:r(fe,/"/),end:r(/"/,fe),contains:[ve(fe),ye(fe)]}),we={className:"string",variants:[Ee(),Ee("#"),Ee("##"),Ee("###"),he(),he("#"),he("##"),he("###")]},Ce={match:r(/`/,I,/`/)},Ie={className:"variable",match:/\$\d+/},Le={className:"variable",match:`\\$${k}+`},Fe=[Ce,Ie,Le],Ve={match:/(@|#)available/,className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:P,contains:[...ie,be,we]}]}},Oe={className:"keyword",match:r(/@/,a(...L))},Dt={className:"meta",match:r(/@/,I)},ot=[Ve,Oe,Dt],sn={match:t(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:r(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,k,"+")},{className:"type",match:N,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:r(/\s+&\s+/,t(N)),relevance:0}]},Kt={begin://,keywords:Q,contains:[...G,...V,...ot,ne,sn]};sn.contains.push(Kt);const Ft={match:r(I,/\s*:/),keywords:"_|0",relevance:0},Je={begin:/\(/,end:/\)/,relevance:0,keywords:Q,contains:["self",Ft,...G,...V,...te,...ie,be,we,...Fe,...ot,sn]},ht={beginKeywords:"func",contains:[{className:"title",match:a(Ce.match,I,C),endsParent:!0,relevance:0},U]},et={begin://,contains:[...G,sn]},qe={begin:a(t(r(I,/\s*:/)),t(r(I,/\s+/,I,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:I}]},He={begin:/\(/,end:/\)/,keywords:Q,contains:[qe,...G,...V,...ie,be,we,...ot,sn,Je],endsParent:!0,illegal:/["']/},Ge={className:"function",match:t(/\bfunc\b/),contains:[ht,et,He,U],illegal:[/\[/,/%/]},Ye={className:"function",match:/\b(subscript|init[?!]?)\s*(?=[<(])/,keywords:{keyword:"subscript init init? init!",$pattern:/\w+[?!]?/},contains:[et,He,U],illegal:/\[|%/},Ae={beginKeywords:"operator",end:F.MATCH_NOTHING_RE,contains:[{className:"title",match:C,endsParent:!0,relevance:0}]},Xe={beginKeywords:"precedencegroup",end:F.MATCH_NOTHING_RE,contains:[{className:"title",match:N,relevance:0},{begin:/{/,end:/}/,relevance:0,endsParent:!0,keywords:[...m,...p],contains:[sn]}]};for(const fe of we.variants){const Qe=fe.contains.find(mt=>mt.label==="interpol");Qe.keywords=Q;const Ke=[...V,...te,...ie,be,we,...Fe];Qe.contains=[...Ke,{begin:/\(/,end:/\)/,contains:["self",...Ke]}]}return{name:"Swift",keywords:Q,contains:[...G,Ge,Ye,{className:"class",beginKeywords:"struct protocol class extension enum",end:"\\{",excludeEnd:!0,keywords:Q,contains:[F.inherit(F.TITLE_MODE,{begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...V]},Ae,Xe,{beginKeywords:"import",end:/$/,contains:[...G],relevance:0},...V,...te,...ie,be,we,...Fe,...ot,sn,Je]}}return Het=M,Het}var Vet,Pbn;function Sri(){if(Pbn)return Vet;Pbn=1;function e(t){return{name:"Tagger Script",contains:[{className:"comment",begin:/\$noop\(/,end:/\)/,contains:[{begin:/\(/,end:/\)/,contains:["self",{begin:/\\./}]}],relevance:10},{className:"keyword",begin:/\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*/,end:/\(/,excludeEnd:!0},{className:"variable",begin:/%[_a-zA-Z0-9:]*/,end:"%"},{className:"symbol",begin:/\\./}]}}return Vet=e,Vet}var Yet,Bbn;function Tri(){if(Bbn)return Yet;Bbn=1;function e(t){var r="true false yes no null",a="[\\w#;/?:@&=+$,.~*'()[\\]]+",s={className:"attr",variants:[{begin:"\\w[\\w :\\/.-]*:(?=[ ]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ ]|$)'},{begin:"'\\w[\\w :\\/.-]*':(?=[ ]|$)"}]},o={className:"template-variable",variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]},u={className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/\S+/}],contains:[t.BACKSLASH_ESCAPE,o]},h=t.inherit(u,{variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),f="[0-9]{4}(-[0-9][0-9]){0,2}",p="([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?",m="(\\.[0-9]*)?",b="([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?",_={className:"number",begin:"\\b"+f+p+m+b+"\\b"},w={end:",",endsWithParent:!0,excludeEnd:!0,keywords:r,relevance:0},S={begin:/\{/,end:/\}/,contains:[w],illegal:"\\n",relevance:0},C={begin:"\\[",end:"\\]",contains:[w],illegal:"\\n",relevance:0},A=[s,{className:"meta",begin:"^---\\s*$",relevance:10},{className:"string",begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+a},{className:"type",begin:"!<"+a+">"},{className:"type",begin:"!"+a},{className:"type",begin:"!!"+a},{className:"meta",begin:"&"+t.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+t.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",relevance:0},t.HASH_COMMENT_MODE,{beginKeywords:r,keywords:{literal:r}},_,{className:"number",begin:t.C_NUMBER_RE+"\\b",relevance:0},S,C,u],k=[...A];return k.pop(),k.push(h),w.contains=k,{name:"YAML",case_insensitive:!0,aliases:["yml"],contains:A}}return Yet=e,Yet}var jet,Fbn;function Cri(){if(Fbn)return jet;Fbn=1;function e(t){return{name:"Test Anything Protocol",case_insensitive:!0,contains:[t.HASH_COMMENT_MODE,{className:"meta",variants:[{begin:"^TAP version (\\d+)$"},{begin:"^1\\.\\.(\\d+)$"}]},{begin:/---$/,end:"\\.\\.\\.$",subLanguage:"yaml",relevance:0},{className:"number",begin:" (\\d+) "},{className:"symbol",variants:[{begin:"^ok"},{begin:"^not ok"}]}]}}return jet=e,jet}var Wet,$bn;function Ari(){if($bn)return Wet;$bn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(s){return r("(",s,")?")}function r(...s){return s.map(u=>e(u)).join("")}function a(s){const o=/[a-zA-Z_][a-zA-Z0-9_]*/,u={className:"number",variants:[s.BINARY_NUMBER_MODE,s.C_NUMBER_MODE]};return{name:"Tcl",aliases:["tk"],keywords:"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while",contains:[s.COMMENT(";[ \\t]*#","$"),s.COMMENT("^[ \\t]*#","$"),{beginKeywords:"proc",end:"[\\{]",excludeEnd:!0,contains:[{className:"title",begin:"[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",end:"[ \\t\\n\\r]",endsWithParent:!0,excludeEnd:!0}]},{className:"variable",variants:[{begin:r(/\$/,t(/::/),o,"(::",o,")*")},{begin:"\\$\\{(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*",end:"\\}",contains:[u]}]},{className:"string",contains:[s.BACKSLASH_ESCAPE],variants:[s.inherit(s.QUOTE_STRING_MODE,{illegal:null})]},u]}}return Wet=a,Wet}var Ket,Ubn;function kri(){if(Ubn)return Ket;Ubn=1;function e(t){const r="bool byte i16 i32 i64 double string binary";return{name:"Thrift",keywords:{keyword:"namespace const typedef struct enum service exception void oneway set list map required optional",built_in:r,literal:"true false"},contains:[t.QUOTE_STRING_MODE,t.NUMBER_MODE,t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,{className:"class",beginKeywords:"struct enum service exception",end:/\{/,illegal:/\n/,contains:[t.inherit(t.TITLE_MODE,{starts:{endsWithParent:!0,excludeEnd:!0}})]},{begin:"\\b(set|list|map)\\s*<",end:">",keywords:r,contains:["self"]}]}}return Ket=e,Ket}var Xet,zbn;function Rri(){if(zbn)return Xet;zbn=1;function e(t){const r={className:"number",begin:"[1-9][0-9]*",relevance:0},a={className:"symbol",begin:":[^\\]]+"},s={className:"built_in",begin:"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\[",end:"\\]",contains:["self",r,a]},o={className:"built_in",begin:"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\[",end:"\\]",contains:["self",r,t.QUOTE_STRING_MODE,a]};return{name:"TP",keywords:{keyword:"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET PROG ATTR MN POS",literal:"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET"},contains:[s,o,{className:"keyword",begin:"/(PROG|ATTR|MN|POS|END)\\b"},{className:"keyword",begin:"(CALL|RUN|POINT_LOGIC|LBL)\\b"},{className:"keyword",begin:"\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)"},{className:"number",begin:"\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\b",relevance:0},t.COMMENT("//","[;$]"),t.COMMENT("!","[;$]"),t.COMMENT("--eg:","$"),t.QUOTE_STRING_MODE,{className:"string",begin:"'",end:"'"},t.C_NUMBER_MODE,{className:"variable",begin:"\\$[A-Za-z0-9_]+"}]}}return Xet=e,Xet}var Qet,Gbn;function Iri(){if(Gbn)return Qet;Gbn=1;function e(t){var r={className:"params",begin:"\\(",end:"\\)"},a="attribute block constant cycle date dump include max min parent random range source template_from_string",s={beginKeywords:a,keywords:{name:a},relevance:0,contains:[r]},o={begin:/\|[A-Za-z_]+:?/,keywords:"abs batch capitalize column convert_encoding date date_modify default escape filter first format inky_to_html inline_css join json_encode keys last length lower map markdown merge nl2br number_format raw reduce replace reverse round slice sort spaceless split striptags title trim upper url_encode",contains:[s]},u="apply autoescape block deprecated do embed extends filter flush for from if import include macro sandbox set use verbatim with";return u=u+" "+u.split(" ").map(function(h){return"end"+h}).join(" "),{name:"Twig",aliases:["craftcms"],case_insensitive:!0,subLanguage:"xml",contains:[t.COMMENT(/\{#/,/#\}/),{className:"template-tag",begin:/\{%/,end:/%\}/,contains:[{className:"name",begin:/\w+/,keywords:u,starts:{endsWithParent:!0,contains:[o,s],relevance:0}}]},{className:"template-variable",begin:/\{\{/,end:/\}\}/,contains:["self",o,s]}]}}return Qet=e,Qet}var Zet,qbn;function Nri(){if(qbn)return Zet;qbn=1;const e="[A-Za-z$_][0-9A-Za-z$_]*",t=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],r=["true","false","null","undefined","NaN","Infinity"],a=["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],s=["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],o=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],u=["arguments","this","super","console","window","document","localStorage","module","global"],h=[].concat(o,u,a,s);function f(w){return w?typeof w=="string"?w:w.source:null}function p(w){return m("(?=",w,")")}function m(...w){return w.map(C=>f(C)).join("")}function b(w){const S=(V,{after:j})=>{const ee="",end:""},k={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(V,j)=>{const ee=V[0].length+V.index,te=V.input[ee];if(te==="<"){j.ignoreMatch();return}te===">"&&(S(V,{after:ee})||j.ignoreMatch())}},I={$pattern:e,keyword:t,literal:r,built_in:h},N="[0-9](_?[0-9])*",L=`\\.(${N})`,P="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",M={className:"number",variants:[{begin:`(\\b(${P})((${L})|\\.)?|(${L}))[eE][+-]?(${N})\\b`},{begin:`\\b(${P})\\b((${L})\\b|\\.)?|(${L})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},F={className:"subst",begin:"\\$\\{",end:"\\}",keywords:I,contains:[]},U={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[w.BACKSLASH_ESCAPE,F],subLanguage:"xml"}},$={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[w.BACKSLASH_ESCAPE,F],subLanguage:"css"}},G={className:"string",begin:"`",end:"`",contains:[w.BACKSLASH_ESCAPE,F]},Z={className:"comment",variants:[w.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+",contains:[{className:"type",begin:"\\{",end:"\\}",relevance:0},{className:"variable",begin:C+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),w.C_BLOCK_COMMENT_MODE,w.C_LINE_COMMENT_MODE]},z=[w.APOS_STRING_MODE,w.QUOTE_STRING_MODE,U,$,G,M,w.REGEXP_MODE];F.contains=z.concat({begin:/\{/,end:/\}/,keywords:I,contains:["self"].concat(z)});const Y=[].concat(Z,F.contains),W=Y.concat([{begin:/\(/,end:/\)/,keywords:I,contains:["self"].concat(Y)}]),Q={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:I,contains:W};return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:I,exports:{PARAMS_CONTAINS:W},illegal:/#(?![$_A-z])/,contains:[w.SHEBANG({label:"shebang",binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},w.APOS_STRING_MODE,w.QUOTE_STRING_MODE,U,$,G,Z,M,{begin:m(/[{,\n]\s*/,p(m(/(((\/\/.*$)|(\/\*(\*[^/]|[^*])*\*\/))\s*)*/,C+"\\s*:"))),relevance:0,contains:[{className:"attr",begin:C+p("\\s*:"),relevance:0}]},{begin:"("+w.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",contains:[Z,w.REGEXP_MODE,{className:"function",begin:"(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+w.UNDERSCORE_IDENT_RE+")\\s*=>",returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:w.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:I,contains:W}]}]},{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{variants:[{begin:A.begin,end:A.end},{begin:k.begin,"on:begin":k.isTrulyOpeningTag,end:k.end}],subLanguage:"xml",contains:[{begin:k.begin,end:k.end,skip:!0,contains:["self"]}]}],relevance:0},{className:"function",beginKeywords:"function",end:/[{;]/,excludeEnd:!0,keywords:I,contains:["self",w.inherit(w.TITLE_MODE,{begin:C}),Q],illegal:/%/},{beginKeywords:"while if switch catch for"},{className:"function",begin:w.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,contains:[Q,w.inherit(w.TITLE_MODE,{begin:C})]},{variants:[{begin:"\\."+C},{begin:"\\$"+C}],relevance:0},{className:"class",beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"[\]]/,contains:[{beginKeywords:"extends"},w.UNDERSCORE_TITLE_MODE]},{begin:/\b(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[w.inherit(w.TITLE_MODE,{begin:C}),"self",Q]},{begin:"(get|set)\\s+(?="+C+"\\()",end:/\{/,keywords:"get set",contains:[w.inherit(w.TITLE_MODE,{begin:C}),{begin:/\(\)/},Q]},{begin:/\$[(.]/}]}}function _(w){const S=e,C={beginKeywords:"namespace",end:/\{/,excludeEnd:!0},A={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:"interface extends"},k={className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/},I=["any","void","number","boolean","string","object","never","enum"],N=["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"],L={$pattern:e,keyword:t.concat(N),literal:r,built_in:h.concat(I)},P={className:"meta",begin:"@"+S},M=($,G,B)=>{const Z=$.contains.findIndex(z=>z.label===G);if(Z===-1)throw new Error("can not find mode to replace");$.contains.splice(Z,1,B)},F=b(w);Object.assign(F.keywords,L),F.exports.PARAMS_CONTAINS.push(P),F.contains=F.contains.concat([P,C,A]),M(F,"shebang",w.SHEBANG()),M(F,"use_strict",k);const U=F.contains.find($=>$.className==="function");return U.relevance=0,Object.assign(F,{name:"TypeScript",aliases:["ts","tsx"]}),F}return Zet=_,Zet}var Jet,Hbn;function Ori(){if(Hbn)return Jet;Hbn=1;function e(t){return{name:"Vala",keywords:{keyword:"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override virtual delegate if while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var",built_in:"DBus GLib CCode Gee Object Gtk Posix",literal:"false true null"},contains:[{className:"class",beginKeywords:"class interface namespace",end:/\{/,excludeEnd:!0,illegal:"[^,:\\n\\s\\.]",contains:[t.UNDERSCORE_TITLE_MODE]},t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,{className:"string",begin:'"""',end:'"""',relevance:5},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,t.C_NUMBER_MODE,{className:"meta",begin:"^#",end:"$",relevance:2}]}}return Jet=e,Jet}var ett,Vbn;function Lri(){if(Vbn)return ett;Vbn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(...s){return s.map(u=>e(u)).join("")}function r(...s){return"("+s.map(u=>e(u)).join("|")+")"}function a(s){const o={className:"string",begin:/"(""|[^/n])"C\b/},u={className:"string",begin:/"/,end:/"/,illegal:/\n/,contains:[{begin:/""/}]},h=/\d{1,2}\/\d{1,2}\/\d{4}/,f=/\d{4}-\d{1,2}-\d{1,2}/,p=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,m=/\d{1,2}(:\d{1,2}){1,2}/,b={className:"literal",variants:[{begin:t(/# */,r(f,h),/ *#/)},{begin:t(/# */,m,/ *#/)},{begin:t(/# */,p,/ *#/)},{begin:t(/# */,r(f,h),/ +/,r(p,m),/ *#/)}]},_={className:"number",relevance:0,variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},w={className:"label",begin:/^\w+:/},S=s.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]}),C=s.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",literal:"true false nothing"},illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[o,u,b,_,w,S,C,{className:"meta",begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,end:/$/,keywords:{"meta-keyword":"const disable else elseif enable end externalsource if region then"},contains:[C]}]}}return ett=a,ett}var ttt,Ybn;function Dri(){if(Ybn)return ttt;Ybn=1;function e(s){return s?typeof s=="string"?s:s.source:null}function t(...s){return s.map(u=>e(u)).join("")}function r(...s){return"("+s.map(u=>e(u)).join("|")+")"}function a(s){const o="lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid split cint sin datepart ltrim sqr time derived eval date formatpercent exp inputbox left ascw chrw regexp cstr err".split(" "),u=["server","response","request","scriptengine","scriptenginebuildversion","scriptengineminorversion","scriptenginemajorversion"],h={begin:t(r(...o),"\\s*\\("),relevance:0,keywords:{built_in:o}};return{name:"VBScript",aliases:["vbs"],case_insensitive:!0,keywords:{keyword:"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto",built_in:u,literal:"true false null nothing empty"},illegal:"//",contains:[h,s.inherit(s.QUOTE_STRING_MODE,{contains:[{begin:'""'}]}),s.COMMENT(/'/,/$/,{relevance:0}),s.C_NUMBER_MODE]}}return ttt=a,ttt}var ntt,jbn;function Mri(){if(jbn)return ntt;jbn=1;function e(t){return{name:"VBScript in HTML",subLanguage:"xml",contains:[{begin:"<%",end:"%>",subLanguage:"vbscript"}]}}return ntt=e,ntt}var rtt,Wbn;function Pri(){if(Wbn)return rtt;Wbn=1;function e(t){return{name:"Verilog",aliases:["v","sv","svh"],case_insensitive:!1,keywords:{$pattern:/[\w\$]+/,keyword:"accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind bins binsof bit break buf|0 bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin function generate|5 genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import incdir include initial inout input inside instance int integer interconnect interface intersect join join_any join_none large let liblist library local localparam logic longint macromodule matches medium modport module nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 or output package packed parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor",literal:"null",built_in:"$finish $stop $exit $fatal $error $warning $info $realtime $time $printtimescale $bitstoreal $bitstoshortreal $itor $signed $cast $bits $stime $timeformat $realtobits $shortrealtobits $rtoi $unsigned $asserton $assertkill $assertpasson $assertfailon $assertnonvacuouson $assertoff $assertcontrol $assertpassoff $assertfailoff $assertvacuousoff $isunbounded $sampled $fell $changed $past_gclk $fell_gclk $changed_gclk $rising_gclk $steady_gclk $coverage_control $coverage_get $coverage_save $set_coverage_db_name $rose $stable $past $rose_gclk $stable_gclk $future_gclk $falling_gclk $changing_gclk $display $coverage_get_max $coverage_merge $get_coverage $load_coverage_db $typename $unpacked_dimensions $left $low $increment $clog2 $ln $log10 $exp $sqrt $pow $floor $ceil $sin $cos $tan $countbits $onehot $isunknown $fatal $warning $dimensions $right $high $size $asin $acos $atan $atan2 $hypot $sinh $cosh $tanh $asinh $acosh $atanh $countones $onehot0 $error $info $random $dist_chi_square $dist_erlang $dist_exponential $dist_normal $dist_poisson $dist_t $dist_uniform $q_initialize $q_remove $q_exam $async$and$array $async$nand$array $async$or$array $async$nor$array $sync$and$array $sync$nand$array $sync$or$array $sync$nor$array $q_add $q_full $psprintf $async$and$plane $async$nand$plane $async$or$plane $async$nor$plane $sync$and$plane $sync$nand$plane $sync$or$plane $sync$nor$plane $system $display $displayb $displayh $displayo $strobe $strobeb $strobeh $strobeo $write $readmemb $readmemh $writememh $value$plusargs $dumpvars $dumpon $dumplimit $dumpports $dumpportson $dumpportslimit $writeb $writeh $writeo $monitor $monitorb $monitorh $monitoro $writememb $dumpfile $dumpoff $dumpall $dumpflush $dumpportsoff $dumpportsall $dumpportsflush $fclose $fdisplay $fdisplayb $fdisplayh $fdisplayo $fstrobe $fstrobeb $fstrobeh $fstrobeo $swrite $swriteb $swriteh $swriteo $fscanf $fread $fseek $fflush $feof $fopen $fwrite $fwriteb $fwriteh $fwriteo $fmonitor $fmonitorb $fmonitorh $fmonitoro $sformat $sformatf $fgetc $ungetc $fgets $sscanf $rewind $ftell $ferror"},contains:[t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE,t.QUOTE_STRING_MODE,{className:"number",contains:[t.BACKSLASH_ESCAPE],variants:[{begin:"\\b((\\d+'(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{begin:"\\B(('(b|h|o|d|B|H|O|D))[0-9xzXZa-fA-F_]+)"},{begin:"\\b([0-9_])+",relevance:0}]},{className:"variable",variants:[{begin:"#\\((?!parameter).+\\)"},{begin:"\\.\\w+",relevance:0}]},{className:"meta",begin:"`",end:"$",keywords:{"meta-keyword":"define __FILE__ __LINE__ begin_keywords celldefine default_nettype define else elsif end_keywords endcelldefine endif ifdef ifndef include line nounconnected_drive pragma resetall timescale unconnected_drive undef undefineall"},relevance:0}]}}return rtt=e,rtt}var itt,Kbn;function Bri(){if(Kbn)return itt;Kbn=1;function e(t){const r="\\d(_|\\d)*",a="[eE][-+]?"+r,s=r+"(\\."+r+")?("+a+")?",o="\\w+",h="\\b("+(r+"#"+o+"(\\."+o+")?#("+a+")?")+"|"+s+")";return{name:"VHDL",case_insensitive:!0,keywords:{keyword:"abs access after alias all and architecture array assert assume assume_guarantee attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package parameter port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable view vmode vprop vunit wait when while with xnor xor",built_in:"boolean bit character integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_logic std_logic_vector unsigned signed boolean_vector integer_vector std_ulogic std_ulogic_vector unresolved_unsigned u_unsigned unresolved_signed u_signed real_vector time_vector",literal:"false true note warning error failure line text side width"},illegal:/\{/,contains:[t.C_BLOCK_COMMENT_MODE,t.COMMENT("--","$"),t.QUOTE_STRING_MODE,{className:"number",begin:h,relevance:0},{className:"string",begin:"'(U|X|0|1|Z|W|L|H|-)'",contains:[t.BACKSLASH_ESCAPE]},{className:"symbol",begin:"'[A-Za-z](_?[A-Za-z0-9])*",contains:[t.BACKSLASH_ESCAPE]}]}}return itt=e,itt}var att,Xbn;function Fri(){if(Xbn)return att;Xbn=1;function e(t){return{name:"Vim Script",keywords:{$pattern:/[!#@\w]+/,keyword:"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu go gr grepa gu gv ha helpf helpg helpt hi hid his ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf quita qa rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank",built_in:"synIDtrans atan2 range matcharg did_filetype asin feedkeys xor argv complete_check add getwinposx getqflist getwinposy screencol clearmatches empty extend getcmdpos mzeval garbagecollect setreg ceil sqrt diff_hlID inputsecret get getfperm getpid filewritable shiftwidth max sinh isdirectory synID system inputrestore winline atan visualmode inputlist tabpagewinnr round getregtype mapcheck hasmapto histdel argidx findfile sha256 exists toupper getcmdline taglist string getmatches bufnr strftime winwidth bufexists strtrans tabpagebuflist setcmdpos remote_read printf setloclist getpos getline bufwinnr float2nr len getcmdtype diff_filler luaeval resolve libcallnr foldclosedend reverse filter has_key bufname str2float strlen setline getcharmod setbufvar index searchpos shellescape undofile foldclosed setqflist buflisted strchars str2nr virtcol floor remove undotree remote_expr winheight gettabwinvar reltime cursor tabpagenr finddir localtime acos getloclist search tanh matchend rename gettabvar strdisplaywidth type abs py3eval setwinvar tolower wildmenumode log10 spellsuggest bufloaded synconcealed nextnonblank server2client complete settabwinvar executable input wincol setmatches getftype hlID inputsave searchpair or screenrow line settabvar histadd deepcopy strpart remote_peek and eval getftime submatch screenchar winsaveview matchadd mkdir screenattr getfontname libcall reltimestr getfsize winnr invert pow getbufline byte2line soundfold repeat fnameescape tagfiles sin strwidth spellbadword trunc maparg log lispindent hostname setpos globpath remote_foreground getchar synIDattr fnamemodify cscope_connection stridx winbufnr indent min complete_add nr2char searchpairpos inputdialog values matchlist items hlexists strridx browsedir expand fmod pathshorten line2byte argc count getwinvar glob foldtextresult getreg foreground cosh matchdelete has char2nr simplify histget searchdecl iconv winrestcmd pumvisible writefile foldlevel haslocaldir keys cos matchstr foldtext histnr tan tempname getcwd byteidx getbufvar islocked escape eventhandler remote_send serverlist winrestview synstack pyeval prevnonblank readfile cindent filereadable changenr exp"},illegal:/;/,contains:[t.NUMBER_MODE,{className:"string",begin:"'",end:"'",illegal:"\\n"},{className:"string",begin:/"(\\"|\n\\|[^"\n])*"/},t.COMMENT('"',"$"),{className:"variable",begin:/[bwtglsav]:[\w\d_]*/},{className:"function",beginKeywords:"function function!",end:"$",relevance:0,contains:[t.TITLE_MODE,{className:"params",begin:"\\(",end:"\\)"}]},{className:"symbol",begin:/<[\w-]+>/}]}}return att=e,att}var stt,Qbn;function $ri(){if(Qbn)return stt;Qbn=1;function e(t){return{name:"Intel x86 Assembly",case_insensitive:!0,keywords:{$pattern:"[.%]?"+t.IDENT_RE,keyword:"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63",built_in:"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr",meta:"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"},contains:[t.COMMENT(";","$",{relevance:0}),{className:"number",variants:[{begin:"\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*(\\.[0-9_]*)?(?:[pP](?:[+-]?[0-9_]+)?)?)\\b",relevance:0},{begin:"\\$[0-9][0-9A-Fa-f]*",relevance:0},{begin:"\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"},{begin:"\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"}]},t.QUOTE_STRING_MODE,{className:"string",variants:[{begin:"'",end:"[^\\\\]'"},{begin:"`",end:"[^\\\\]`"}],relevance:0},{className:"symbol",variants:[{begin:"^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)"},{begin:"^\\s*%%[A-Za-z0-9_$#@~.?]*:"}],relevance:0},{className:"subst",begin:"%[0-9]+",relevance:0},{className:"subst",begin:"%!S+",relevance:0},{className:"meta",begin:/^\s*\.[\w_-]+/}]}}return stt=e,stt}var ott,Zbn;function Uri(){if(Zbn)return ott;Zbn=1;function e(t){const a={$pattern:/[a-zA-Z][a-zA-Z0-9_?]*/,keyword:"if then else do while until for loop import with is as where when by data constant integer real text name boolean symbol infix prefix postfix block tree",literal:"true false nil",built_in:"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons "+"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts"},s={className:"string",begin:'"',end:'"',illegal:"\\n"},o={className:"string",begin:"'",end:"'",illegal:"\\n"},u={className:"string",begin:"<<",end:">>"},h={className:"number",begin:"[0-9]+#[0-9A-Z_]+(\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?"},f={beginKeywords:"import",end:"$",keywords:a,contains:[s]},p={className:"function",begin:/[a-z][^\n]*->/,returnBegin:!0,end:/->/,contains:[t.inherit(t.TITLE_MODE,{starts:{endsWithParent:!0,keywords:a}})]};return{name:"XL",aliases:["tao"],keywords:a,contains:[t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,s,o,u,p,f,h,t.NUMBER_MODE]}}return ott=e,ott}var ltt,Jbn;function zri(){if(Jbn)return ltt;Jbn=1;function e(t){return{name:"XQuery",aliases:["xpath","xq"],case_insensitive:!1,illegal:/(proc)|(abstract)|(extends)|(until)|(#)/,keywords:{$pattern:/[a-zA-Z$][a-zA-Z0-9_:-]*/,keyword:"module schema namespace boundary-space preserve no-preserve strip default collation base-uri ordering context decimal-format decimal-separator copy-namespaces empty-sequence except exponent-separator external grouping-separator inherit no-inherit lax minus-sign per-mille percent schema-attribute schema-element strict unordered zero-digit declare import option function validate variable for at in let where order group by return if then else tumbling sliding window start when only end previous next stable ascending descending allowing empty greatest least some every satisfies switch case typeswitch try catch and or to union intersect instance of treat as castable cast map array delete insert into replace value rename copy modify update",type:"item document-node node attribute document element comment namespace namespace-node processing-instruction text construction xs:anyAtomicType xs:untypedAtomic xs:duration xs:time xs:decimal xs:float xs:double xs:gYearMonth xs:gYear xs:gMonthDay xs:gMonth xs:gDay xs:boolean xs:base64Binary xs:hexBinary xs:anyURI xs:QName xs:NOTATION xs:dateTime xs:dateTimeStamp xs:date xs:string xs:normalizedString xs:token xs:language xs:NMTOKEN xs:Name xs:NCName xs:ID xs:IDREF xs:ENTITY xs:integer xs:nonPositiveInteger xs:negativeInteger xs:long xs:int xs:short xs:byte xs:nonNegativeInteger xs:unisignedLong xs:unsignedInt xs:unsignedShort xs:unsignedByte xs:positiveInteger xs:yearMonthDuration xs:dayTimeDuration",literal:"eq ne lt le gt ge is self:: child:: descendant:: descendant-or-self:: attribute:: following:: following-sibling:: parent:: ancestor:: ancestor-or-self:: preceding:: preceding-sibling:: NaN"},contains:[{className:"variable",begin:/[$][\w\-:]+/},{className:"built_in",variants:[{begin:/\barray:/,end:/(?:append|filter|flatten|fold-(?:left|right)|for-each(?:-pair)?|get|head|insert-before|join|put|remove|reverse|size|sort|subarray|tail)\b/},{begin:/\bmap:/,end:/(?:contains|entry|find|for-each|get|keys|merge|put|remove|size)\b/},{begin:/\bmath:/,end:/(?:a(?:cos|sin|tan[2]?)|cos|exp(?:10)?|log(?:10)?|pi|pow|sin|sqrt|tan)\b/},{begin:/\bop:/,end:/\(/,excludeEnd:!0},{begin:/\bfn:/,end:/\(/,excludeEnd:!0},{begin:/[^/,end:/(\/[\w._:-]+>)/,subLanguage:"xml",contains:[{begin:/\{/,end:/\}/,subLanguage:"xquery"},"self"]}]}}return ltt=e,ltt}var ctt,eyn;function Gri(){if(eyn)return ctt;eyn=1;function e(t){const r={className:"string",contains:[t.BACKSLASH_ESCAPE],variants:[t.inherit(t.APOS_STRING_MODE,{illegal:null}),t.inherit(t.QUOTE_STRING_MODE,{illegal:null})]},a=t.UNDERSCORE_TITLE_MODE,s={variants:[t.BINARY_NUMBER_MODE,t.C_NUMBER_MODE]},o="namespace class interface use extends function return abstract final public protected private static deprecated throw try catch Exception echo empty isset instanceof unset let var new const self require if else elseif switch case default do while loop for continue break likely unlikely __LINE__ __FILE__ __DIR__ __FUNCTION__ __CLASS__ __TRAIT__ __METHOD__ __NAMESPACE__ array boolean float double integer object resource string char long unsigned bool int uint ulong uchar true false null undefined";return{name:"Zephir",aliases:["zep"],keywords:o,contains:[t.C_LINE_COMMENT_MODE,t.COMMENT(/\/\*/,/\*\//,{contains:[{className:"doctag",begin:/@[A-Za-z]+/}]}),{className:"string",begin:/<<<['"]?\w+['"]?$/,end:/^\w+;/,contains:[t.BACKSLASH_ESCAPE]},{begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function",beginKeywords:"function fn",end:/[;{]/,excludeEnd:!0,illegal:/\$|\[|%/,contains:[a,{className:"params",begin:/\(/,end:/\)/,keywords:o,contains:["self",t.C_BLOCK_COMMENT_MODE,r,s]}]},{className:"class",beginKeywords:"class interface",end:/\{/,excludeEnd:!0,illegal:/[:($"]/,contains:[{beginKeywords:"extends implements"},a]},{beginKeywords:"namespace",end:/;/,illegal:/[.']/,contains:[a]},{beginKeywords:"use",end:/;/,contains:[a]},{begin:/=>/},r,s]}}return ctt=e,ctt}var In=LW,qri=In;In.registerLanguage("1c",pei());In.registerLanguage("abnf",gei());In.registerLanguage("accesslog",mei());In.registerLanguage("actionscript",bei());In.registerLanguage("ada",yei());In.registerLanguage("angelscript",vei());In.registerLanguage("apache",_ei());In.registerLanguage("applescript",wei());In.registerLanguage("arcade",Eei());In.registerLanguage("arduino",xei());In.registerLanguage("armasm",Sei());In.registerLanguage("xml",Tei());In.registerLanguage("asciidoc",Cei());In.registerLanguage("aspectj",Aei());In.registerLanguage("autohotkey",kei());In.registerLanguage("autoit",Rei());In.registerLanguage("avrasm",Iei());In.registerLanguage("awk",Nei());In.registerLanguage("axapta",Oei());In.registerLanguage("bash",Lei());In.registerLanguage("basic",Dei());In.registerLanguage("bnf",Mei());In.registerLanguage("brainfuck",Pei());In.registerLanguage("c-like",Bei());In.registerLanguage("c",Fei());In.registerLanguage("cal",$ei());In.registerLanguage("capnproto",Uei());In.registerLanguage("ceylon",zei());In.registerLanguage("clean",Gei());In.registerLanguage("clojure",qei());In.registerLanguage("clojure-repl",Hei());In.registerLanguage("cmake",Vei());In.registerLanguage("coffeescript",Yei());In.registerLanguage("coq",jei());In.registerLanguage("cos",Wei());In.registerLanguage("cpp",Kei());In.registerLanguage("crmsh",Xei());In.registerLanguage("crystal",Qei());In.registerLanguage("csharp",Zei());In.registerLanguage("csp",Jei());In.registerLanguage("css",eti());In.registerLanguage("d",tti());In.registerLanguage("markdown",nti());In.registerLanguage("dart",rti());In.registerLanguage("delphi",iti());In.registerLanguage("diff",ati());In.registerLanguage("django",sti());In.registerLanguage("dns",oti());In.registerLanguage("dockerfile",lti());In.registerLanguage("dos",cti());In.registerLanguage("dsconfig",uti());In.registerLanguage("dts",hti());In.registerLanguage("dust",dti());In.registerLanguage("ebnf",fti());In.registerLanguage("elixir",pti());In.registerLanguage("elm",gti());In.registerLanguage("ruby",mti());In.registerLanguage("erb",bti());In.registerLanguage("erlang-repl",yti());In.registerLanguage("erlang",vti());In.registerLanguage("excel",_ti());In.registerLanguage("fix",wti());In.registerLanguage("flix",Eti());In.registerLanguage("fortran",xti());In.registerLanguage("fsharp",Sti());In.registerLanguage("gams",Tti());In.registerLanguage("gauss",Cti());In.registerLanguage("gcode",Ati());In.registerLanguage("gherkin",kti());In.registerLanguage("glsl",Rti());In.registerLanguage("gml",Iti());In.registerLanguage("go",Nti());In.registerLanguage("golo",Oti());In.registerLanguage("gradle",Lti());In.registerLanguage("groovy",Dti());In.registerLanguage("haml",Mti());In.registerLanguage("handlebars",Pti());In.registerLanguage("haskell",Bti());In.registerLanguage("haxe",Fti());In.registerLanguage("hsp",$ti());In.registerLanguage("htmlbars",Uti());In.registerLanguage("http",zti());In.registerLanguage("hy",Gti());In.registerLanguage("inform7",qti());In.registerLanguage("ini",Hti());In.registerLanguage("irpf90",Vti());In.registerLanguage("isbl",Yti());In.registerLanguage("java",jti());In.registerLanguage("javascript",Wti());In.registerLanguage("jboss-cli",Kti());In.registerLanguage("json",Xti());In.registerLanguage("julia",Qti());In.registerLanguage("julia-repl",Zti());In.registerLanguage("kotlin",Jti());In.registerLanguage("lasso",eni());In.registerLanguage("latex",tni());In.registerLanguage("ldif",nni());In.registerLanguage("leaf",rni());In.registerLanguage("less",ini());In.registerLanguage("lisp",ani());In.registerLanguage("livecodeserver",sni());In.registerLanguage("livescript",oni());In.registerLanguage("llvm",lni());In.registerLanguage("lsl",cni());In.registerLanguage("lua",uni());In.registerLanguage("makefile",hni());In.registerLanguage("mathematica",dni());In.registerLanguage("matlab",fni());In.registerLanguage("maxima",pni());In.registerLanguage("mel",gni());In.registerLanguage("mercury",mni());In.registerLanguage("mipsasm",bni());In.registerLanguage("mizar",yni());In.registerLanguage("perl",vni());In.registerLanguage("mojolicious",_ni());In.registerLanguage("monkey",wni());In.registerLanguage("moonscript",Eni());In.registerLanguage("n1ql",xni());In.registerLanguage("nginx",Sni());In.registerLanguage("nim",Tni());In.registerLanguage("nix",Cni());In.registerLanguage("node-repl",Ani());In.registerLanguage("nsis",kni());In.registerLanguage("objectivec",Rni());In.registerLanguage("ocaml",Ini());In.registerLanguage("openscad",Nni());In.registerLanguage("oxygene",Oni());In.registerLanguage("parser3",Lni());In.registerLanguage("pf",Dni());In.registerLanguage("pgsql",Mni());In.registerLanguage("php",Pni());In.registerLanguage("php-template",Bni());In.registerLanguage("plaintext",Fni());In.registerLanguage("pony",$ni());In.registerLanguage("powershell",Uni());In.registerLanguage("processing",zni());In.registerLanguage("profile",Gni());In.registerLanguage("prolog",qni());In.registerLanguage("properties",Hni());In.registerLanguage("protobuf",Vni());In.registerLanguage("puppet",Yni());In.registerLanguage("purebasic",jni());In.registerLanguage("python",Wni());In.registerLanguage("python-repl",Kni());In.registerLanguage("q",Xni());In.registerLanguage("qml",Qni());In.registerLanguage("r",Zni());In.registerLanguage("reasonml",Jni());In.registerLanguage("rib",eri());In.registerLanguage("roboconf",tri());In.registerLanguage("routeros",nri());In.registerLanguage("rsl",rri());In.registerLanguage("ruleslanguage",iri());In.registerLanguage("rust",ari());In.registerLanguage("sas",sri());In.registerLanguage("scala",ori());In.registerLanguage("scheme",lri());In.registerLanguage("scilab",cri());In.registerLanguage("scss",uri());In.registerLanguage("shell",hri());In.registerLanguage("smali",dri());In.registerLanguage("smalltalk",fri());In.registerLanguage("sml",pri());In.registerLanguage("sqf",gri());In.registerLanguage("sql_more",mri());In.registerLanguage("sql",bri());In.registerLanguage("stan",yri());In.registerLanguage("stata",vri());In.registerLanguage("step21",_ri());In.registerLanguage("stylus",wri());In.registerLanguage("subunit",Eri());In.registerLanguage("swift",xri());In.registerLanguage("taggerscript",Sri());In.registerLanguage("yaml",Tri());In.registerLanguage("tap",Cri());In.registerLanguage("tcl",Ari());In.registerLanguage("thrift",kri());In.registerLanguage("tp",Rri());In.registerLanguage("twig",Iri());In.registerLanguage("typescript",Nri());In.registerLanguage("vala",Ori());In.registerLanguage("vbnet",Lri());In.registerLanguage("vbscript",Dri());In.registerLanguage("vbscript-html",Mri());In.registerLanguage("verilog",Pri());In.registerLanguage("vhdl",Bri());In.registerLanguage("vim",Fri());In.registerLanguage("x86asm",$ri());In.registerLanguage("xl",Uri());In.registerLanguage("xquery",zri());In.registerLanguage("zephir",Gri());const Hri=O1(qri),Vri=["1c","abnf","accesslog","actionscript","ada","angelscript","apache","applescript","arcade","arduino","armasm","asciidoc","aspectj","autohotkey","autoit","avrasm","awk","axapta","bash","basic","bnf","brainfuck","c-like","c","cal","capnproto","ceylon","clean","clojure-repl","clojure","cmake","coffeescript","coq","cos","cpp","crmsh","crystal","csharp","csp","css","d","dart","delphi","diff","django","dns","dockerfile","dos","dsconfig","dts","dust","ebnf","elixir","elm","erb","erlang-repl","erlang","excel","fix","flix","fortran","fsharp","gams","gauss","gcode","gherkin","glsl","gml","go","golo","gradle","groovy","haml","handlebars","haskell","haxe","hsp","htmlbars","http","hy","inform7","ini","irpf90","isbl","java","javascript","jboss-cli","json","julia-repl","julia","kotlin","lasso","latex","ldif","leaf","less","lisp","livecodeserver","livescript","llvm","lsl","lua","makefile","markdown","mathematica","matlab","maxima","mel","mercury","mipsasm","mizar","mojolicious","monkey","moonscript","n1ql","nginx","nim","nix","node-repl","nsis","objectivec","ocaml","openscad","oxygene","parser3","perl","pf","pgsql","php-template","php","plaintext","pony","powershell","processing","profile","prolog","properties","protobuf","puppet","purebasic","python-repl","python","q","qml","r","reasonml","rib","roboconf","routeros","rsl","ruby","ruleslanguage","rust","sas","scala","scheme","scilab","scss","shell","smali","smalltalk","sml","sqf","sql","sql_more","stan","stata","step21","stylus","subunit","swift","taggerscript","tap","tcl","thrift","tp","twig","typescript","vala","vbnet","vbscript-html","vbscript","verilog","vhdl","vim","x86asm","xl","xml","xquery","yaml","zephir"];var Yri=aJr(Hri,sJr);Yri.supportedLanguages=Vri;var lLn="Expected a function",tyn=NaN,jri="[object Symbol]",Wri=/^\s+|\s+$/g,Kri=/^[-+]0x[0-9a-f]+$/i,Xri=/^0b[01]+$/i,Qri=/^0o[0-7]+$/i,Zri=parseInt,Jri=typeof ml=="object"&&ml&&ml.Object===Object&&ml,eii=typeof self=="object"&&self&&self.Object===Object&&self,tii=Jri||eii||Function("return this")(),nii=Object.prototype,rii=nii.toString,iii=Math.max,aii=Math.min,utt=function(){return tii.Date.now()};function sii(e,t,r){var a,s,o,u,h,f,p=0,m=!1,b=!1,_=!0;if(typeof e!="function")throw new TypeError(lLn);t=nyn(t)||0,r4e(r)&&(m=!!r.leading,b="maxWait"in r,o=b?iii(nyn(r.maxWait)||0,t):o,_="trailing"in r?!!r.trailing:_);function w(M){var F=a,U=s;return a=s=void 0,p=M,u=e.apply(U,F),u}function S(M){return p=M,h=setTimeout(k,t),m?w(M):u}function C(M){var F=M-f,U=M-p,$=t-F;return b?aii($,o-U):$}function A(M){var F=M-f,U=M-p;return f===void 0||F>=t||F<0||b&&U>=o}function k(){var M=utt();if(A(M))return I(M);h=setTimeout(k,C(M))}function I(M){return h=void 0,_&&a?w(M):(a=s=void 0,u)}function N(){h!==void 0&&clearTimeout(h),p=0,a=f=s=h=void 0}function L(){return h===void 0?u:I(utt())}function P(){var M=utt(),F=A(M);if(a=arguments,s=this,f=M,F){if(h===void 0)return S(f);if(b)return h=setTimeout(k,t),w(f)}return h===void 0&&(h=setTimeout(k,t)),u}return P.cancel=N,P.flush=L,P}function oii(e,t,r){var a=!0,s=!0;if(typeof e!="function")throw new TypeError(lLn);return r4e(r)&&(a="leading"in r?!!r.leading:a,s="trailing"in r?!!r.trailing:s),sii(e,t,{leading:a,maxWait:t,trailing:s})}function r4e(e){var t=typeof e;return!!e&&(t=="object"||t=="function")}function lii(e){return!!e&&typeof e=="object"}function cii(e){return typeof e=="symbol"||lii(e)&&rii.call(e)==jri}function nyn(e){if(typeof e=="number")return e;if(cii(e))return tyn;if(r4e(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=r4e(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=e.replace(Wri,"");var r=Xri.test(e);return r||Qri.test(e)?Zri(e.slice(2),r?2:8):Kri.test(e)?tyn:+e}var uii=oii;const UTa=O1(uii);var fot={name:"mermaid",version:"11.12.2",description:"Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.",type:"module",module:"./dist/mermaid.core.mjs",types:"./dist/mermaid.d.ts",exports:{".":{types:"./dist/mermaid.d.ts",import:"./dist/mermaid.core.mjs",default:"./dist/mermaid.core.mjs"},"./*":"./*"},keywords:["diagram","markdown","flowchart","sequence diagram","gantt","class diagram","git graph","mindmap","packet diagram","c4 diagram","er diagram","pie chart","pie diagram","quadrant chart","requirement diagram","graph"],scripts:{clean:"rimraf dist",dev:"pnpm -w dev","docs:code":"typedoc src/defaultConfig.ts src/config.ts src/mermaid.ts && prettier --write ./src/docs/config/setup","docs:build":"rimraf ../../docs && pnpm docs:code && pnpm docs:spellcheck && tsx scripts/docs.cli.mts","docs:verify":"pnpm docs:code && pnpm docs:spellcheck && tsx scripts/docs.cli.mts --verify","docs:pre:vitepress":"pnpm --filter ./src/docs prefetch && rimraf src/vitepress && pnpm docs:code && tsx scripts/docs.cli.mts --vitepress && pnpm --filter ./src/vitepress install --no-frozen-lockfile --ignore-scripts","docs:build:vitepress":"pnpm docs:pre:vitepress && (cd src/vitepress && pnpm run build) && cpy --flat src/docs/landing/ ./src/vitepress/.vitepress/dist/landing","docs:dev":'pnpm docs:pre:vitepress && concurrently "pnpm --filter ./src/vitepress dev" "tsx scripts/docs.cli.mts --watch --vitepress"',"docs:dev:docker":'pnpm docs:pre:vitepress && concurrently "pnpm --filter ./src/vitepress dev:docker" "tsx scripts/docs.cli.mts --watch --vitepress"',"docs:serve":"pnpm docs:build:vitepress && vitepress serve src/vitepress","docs:spellcheck":'cspell "src/docs/**/*.md"',"docs:release-version":"tsx scripts/update-release-version.mts","docs:verify-version":"tsx scripts/update-release-version.mts --verify","types:build-config":"tsx scripts/create-types-from-json-schema.mts","types:verify-config":"tsx scripts/create-types-from-json-schema.mts --verify",checkCircle:"npx madge --circular ./src",prepublishOnly:"pnpm docs:verify-version"},repository:{type:"git",url:"https://github.com/mermaid-js/mermaid"},author:"Knut Sveidqvist",license:"MIT",standard:{ignore:["**/parser/*.js","dist/**/*.js","cypress/**/*.js"],globals:["page"]},dependencies:{"@braintree/sanitize-url":"^7.1.1","@iconify/utils":"^3.0.1","@mermaid-js/parser":"workspace:^","@types/d3":"^7.4.3",cytoscape:"^3.29.3","cytoscape-cose-bilkent":"^4.1.0","cytoscape-fcose":"^2.2.0",d3:"^7.9.0","d3-sankey":"^0.12.3","dagre-d3-es":"7.0.13",dayjs:"^1.11.18",dompurify:"^3.2.5",katex:"^0.16.22",khroma:"^2.1.0","lodash-es":"^4.17.21",marked:"^16.2.1",roughjs:"^4.6.6",stylis:"^4.3.6","ts-dedent":"^2.2.0",uuid:"^11.1.0"},devDependencies:{"@adobe/jsonschema2md":"^8.0.5","@iconify/types":"^2.0.0","@types/cytoscape":"^3.21.9","@types/cytoscape-fcose":"^2.2.4","@types/d3-sankey":"^0.12.4","@types/d3-scale":"^4.0.9","@types/d3-scale-chromatic":"^3.1.0","@types/d3-selection":"^3.0.11","@types/d3-shape":"^3.1.7","@types/jsdom":"^21.1.7","@types/katex":"^0.16.7","@types/lodash-es":"^4.17.12","@types/micromatch":"^4.0.9","@types/stylis":"^4.2.7","@types/uuid":"^10.0.0",ajv:"^8.17.1",canvas:"^3.1.2",chokidar:"3.6.0",concurrently:"^9.1.2","csstree-validator":"^4.0.1",globby:"^14.1.0",jison:"^0.4.18","js-base64":"^3.7.8",jsdom:"^26.1.0","json-schema-to-typescript":"^15.0.4",micromatch:"^4.0.8","path-browserify":"^1.0.1",prettier:"^3.5.3",remark:"^15.0.1","remark-frontmatter":"^5.0.0","remark-gfm":"^4.0.1",rimraf:"^6.0.1","start-server-and-test":"^2.0.13","type-fest":"^4.35.0",typedoc:"^0.28.12","typedoc-plugin-markdown":"^4.8.1",typescript:"~5.7.3","unist-util-flatmap":"^1.0.0","unist-util-visit":"^5.0.0",vitepress:"^1.6.4","vitepress-plugin-search":"1.0.4-alpha.22"},files:["dist/","README.md"],publishConfig:{access:"public"}},cLn=Object.defineProperty,X=(e,t)=>cLn(e,"name",{value:t,configurable:!0}),KCe=(e,t)=>{for(var r in t)cLn(e,r,{get:t[r],enumerable:!0})},V6={trace:0,debug:1,info:2,warn:3,error:4,fatal:5},it={trace:X((...e)=>{},"trace"),debug:X((...e)=>{},"debug"),info:X((...e)=>{},"info"),warn:X((...e)=>{},"warn"),error:X((...e)=>{},"error"),fatal:X((...e)=>{},"fatal")},B0t=X(function(e="fatal"){let t=V6.fatal;typeof e=="string"?e.toLowerCase()in V6&&(t=V6[e]):typeof e=="number"&&(t=e),it.trace=()=>{},it.debug=()=>{},it.info=()=>{},it.warn=()=>{},it.error=()=>{},it.fatal=()=>{},t<=V6.fatal&&(it.fatal=console.error?console.error.bind(console,Px("FATAL"),"color: orange"):console.log.bind(console,"\x1B[35m",Px("FATAL"))),t<=V6.error&&(it.error=console.error?console.error.bind(console,Px("ERROR"),"color: orange"):console.log.bind(console,"\x1B[31m",Px("ERROR"))),t<=V6.warn&&(it.warn=console.warn?console.warn.bind(console,Px("WARN"),"color: orange"):console.log.bind(console,"\x1B[33m",Px("WARN"))),t<=V6.info&&(it.info=console.info?console.info.bind(console,Px("INFO"),"color: lightblue"):console.log.bind(console,"\x1B[34m",Px("INFO"))),t<=V6.debug&&(it.debug=console.debug?console.debug.bind(console,Px("DEBUG"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",Px("DEBUG"))),t<=V6.trace&&(it.trace=console.debug?console.debug.bind(console,Px("TRACE"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",Px("TRACE")))},"setLogLevel"),Px=X(e=>`%c${Fc().format("ss.SSS")} : ${e} : `,"format");const QEe={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},a)=>{if(!t)return r*2.55;e/=360,t/=100,r/=100;const s=r<.5?r*(1+t):r+t-r*t,o=2*r-s;switch(a){case"r":return QEe.hue2rgb(o,s,e+1/3)*255;case"g":return QEe.hue2rgb(o,s,e)*255;case"b":return QEe.hue2rgb(o,s,e-1/3)*255}},rgb2hsl:({r:e,g:t,b:r},a)=>{e/=255,t/=255,r/=255;const s=Math.max(e,t,r),o=Math.min(e,t,r),u=(s+o)/2;if(a==="l")return u*100;if(s===o)return 0;const h=s-o,f=u>.5?h/(2-s-o):h/(s+o);if(a==="s")return f*100;switch(s){case e:return((t-r)/h+(tt>r?Math.min(t,Math.max(r,e)):Math.min(r,Math.max(t,e)),round:e=>Math.round(e*1e10)/1e10},dii={dec2hex:e=>{const t=Math.round(e).toString(16);return t.length>1?t:`0${t}`}},Lo={channel:QEe,lang:hii,unit:dii},VN={};for(let e=0;e<=255;e++)VN[e]=Lo.unit.dec2hex(e);const pb={ALL:0,RGB:1,HSL:2};let fii=class{constructor(){this.type=pb.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=pb.ALL}is(t){return this.type===t}};class pii{constructor(t,r){this.color=r,this.changed=!1,this.data=t,this.type=new fii}set(t,r){return this.color=r,this.changed=!1,this.data=t,this.type.type=pb.ALL,this}_ensureHSL(){const t=this.data,{h:r,s:a,l:s}=t;r===void 0&&(t.h=Lo.channel.rgb2hsl(t,"h")),a===void 0&&(t.s=Lo.channel.rgb2hsl(t,"s")),s===void 0&&(t.l=Lo.channel.rgb2hsl(t,"l"))}_ensureRGB(){const t=this.data,{r,g:a,b:s}=t;r===void 0&&(t.r=Lo.channel.hsl2rgb(t,"r")),a===void 0&&(t.g=Lo.channel.hsl2rgb(t,"g")),s===void 0&&(t.b=Lo.channel.hsl2rgb(t,"b"))}get r(){const t=this.data,r=t.r;return!this.type.is(pb.HSL)&&r!==void 0?r:(this._ensureHSL(),Lo.channel.hsl2rgb(t,"r"))}get g(){const t=this.data,r=t.g;return!this.type.is(pb.HSL)&&r!==void 0?r:(this._ensureHSL(),Lo.channel.hsl2rgb(t,"g"))}get b(){const t=this.data,r=t.b;return!this.type.is(pb.HSL)&&r!==void 0?r:(this._ensureHSL(),Lo.channel.hsl2rgb(t,"b"))}get h(){const t=this.data,r=t.h;return!this.type.is(pb.RGB)&&r!==void 0?r:(this._ensureRGB(),Lo.channel.rgb2hsl(t,"h"))}get s(){const t=this.data,r=t.s;return!this.type.is(pb.RGB)&&r!==void 0?r:(this._ensureRGB(),Lo.channel.rgb2hsl(t,"s"))}get l(){const t=this.data,r=t.l;return!this.type.is(pb.RGB)&&r!==void 0?r:(this._ensureRGB(),Lo.channel.rgb2hsl(t,"l"))}get a(){return this.data.a}set r(t){this.type.set(pb.RGB),this.changed=!0,this.data.r=t}set g(t){this.type.set(pb.RGB),this.changed=!0,this.data.g=t}set b(t){this.type.set(pb.RGB),this.changed=!0,this.data.b=t}set h(t){this.type.set(pb.HSL),this.changed=!0,this.data.h=t}set s(t){this.type.set(pb.HSL),this.changed=!0,this.data.s=t}set l(t){this.type.set(pb.HSL),this.changed=!0,this.data.l=t}set a(t){this.changed=!0,this.data.a=t}}const XCe=new pii({r:0,g:0,b:0,a:0},"transparent"),jV={re:/^#((?:[a-f0-9]{2}){2,4}|[a-f0-9]{3})$/i,parse:e=>{if(e.charCodeAt(0)!==35)return;const t=e.match(jV.re);if(!t)return;const r=t[1],a=parseInt(r,16),s=r.length,o=s%4===0,u=s>4,h=u?1:17,f=u?8:4,p=o?0:-1,m=u?255:15;return XCe.set({r:(a>>f*(p+3)&m)*h,g:(a>>f*(p+2)&m)*h,b:(a>>f*(p+1)&m)*h,a:o?(a&m)*h/255:1},e)},stringify:e=>{const{r:t,g:r,b:a,a:s}=e;return s<1?`#${VN[Math.round(t)]}${VN[Math.round(r)]}${VN[Math.round(a)]}${VN[Math.round(s*255)]}`:`#${VN[Math.round(t)]}${VN[Math.round(r)]}${VN[Math.round(a)]}`}},QB={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(QB.hueRe);if(t){const[,r,a]=t;switch(a){case"grad":return Lo.channel.clamp.h(parseFloat(r)*.9);case"rad":return Lo.channel.clamp.h(parseFloat(r)*180/Math.PI);case"turn":return Lo.channel.clamp.h(parseFloat(r)*360)}}return Lo.channel.clamp.h(parseFloat(e))},parse:e=>{const t=e.charCodeAt(0);if(t!==104&&t!==72)return;const r=e.match(QB.re);if(!r)return;const[,a,s,o,u,h]=r;return XCe.set({h:QB._hue2deg(a),s:Lo.channel.clamp.s(parseFloat(s)),l:Lo.channel.clamp.l(parseFloat(o)),a:u?Lo.channel.clamp.a(h?parseFloat(u)/100:parseFloat(u)):1},e)},stringify:e=>{const{h:t,s:r,l:a,a:s}=e;return s<1?`hsla(${Lo.lang.round(t)}, ${Lo.lang.round(r)}%, ${Lo.lang.round(a)}%, ${s})`:`hsl(${Lo.lang.round(t)}, ${Lo.lang.round(r)}%, ${Lo.lang.round(a)}%)`}},ase={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=ase.colors[e];if(t)return jV.parse(t)},stringify:e=>{const t=jV.stringify(e);for(const r in ase.colors)if(ase.colors[r]===t)return r}},Nie={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(Nie.re);if(!r)return;const[,a,s,o,u,h,f,p,m]=r;return XCe.set({r:Lo.channel.clamp.r(s?parseFloat(a)*2.55:parseFloat(a)),g:Lo.channel.clamp.g(u?parseFloat(o)*2.55:parseFloat(o)),b:Lo.channel.clamp.b(f?parseFloat(h)*2.55:parseFloat(h)),a:p?Lo.channel.clamp.a(m?parseFloat(p)/100:parseFloat(p)):1},e)},stringify:e=>{const{r:t,g:r,b:a,a:s}=e;return s<1?`rgba(${Lo.lang.round(t)}, ${Lo.lang.round(r)}, ${Lo.lang.round(a)}, ${Lo.lang.round(s)})`:`rgb(${Lo.lang.round(t)}, ${Lo.lang.round(r)}, ${Lo.lang.round(a)})`}},aT={format:{keyword:ase,hex:jV,rgb:Nie,rgba:Nie,hsl:QB,hsla:QB},parse:e=>{if(typeof e!="string")return e;const t=jV.parse(e)||Nie.parse(e)||QB.parse(e)||ase.parse(e);if(t)return t;throw new Error(`Unsupported color format: "${e}"`)},stringify:e=>!e.changed&&e.color?e.color:e.type.is(pb.HSL)||e.data.r===void 0?QB.stringify(e):e.a<1||!Number.isInteger(e.r)||!Number.isInteger(e.g)||!Number.isInteger(e.b)?Nie.stringify(e):jV.stringify(e)},uLn=(e,t)=>{const r=aT.parse(e);for(const a in t)r[a]=Lo.channel.clamp[a](t[a]);return aT.stringify(r)},Z2=(e,t,r=0,a=1)=>{if(typeof e!="number")return uLn(e,{a:t});const s=XCe.set({r:Lo.channel.clamp.r(e),g:Lo.channel.clamp.g(t),b:Lo.channel.clamp.b(r),a:Lo.channel.clamp.a(a)});return aT.stringify(s)},ece=(e,t)=>Lo.lang.round(aT.parse(e)[t]),gii=e=>{const{r:t,g:r,b:a}=aT.parse(e),s=.2126*Lo.channel.toLinear(t)+.7152*Lo.channel.toLinear(r)+.0722*Lo.channel.toLinear(a);return Lo.lang.round(s)},mii=e=>gii(e)>=.5,bv=e=>!mii(e),hLn=(e,t,r)=>{const a=aT.parse(e),s=a[t],o=Lo.channel.clamp[t](s+r);return s!==o&&(a[t]=o),aT.stringify(a)},Nr=(e,t)=>hLn(e,"l",t),qr=(e,t)=>hLn(e,"l",-t),gt=(e,t)=>{const r=aT.parse(e),a={};for(const s in t)t[s]&&(a[s]=r[s]+t[s]);return uLn(e,a)},bii=(e,t,r=50)=>{const{r:a,g:s,b:o,a:u}=aT.parse(e),{r:h,g:f,b:p,a:m}=aT.parse(t),b=r/100,_=b*2-1,w=u-m,C=((_*w===-1?_:(_+w)/(1+_*w))+1)/2,A=1-C,k=a*C+h*A,I=s*C+f*A,N=o*C+p*A,L=u*b+m*(1-b);return Z2(k,I,N,L)},ir=(e,t=100)=>{const r=aT.parse(e);return r.r=255-r.r,r.g=255-r.g,r.b=255-r.b,bii(r,e,t)};var dLn=/^-{3}\s*[\n\r](.*?)[\n\r]-{3}\s*[\n\r]+/s,sse=/%{2}{\s*(?:(\w+)\s*:|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi,yii=/\s*%%.*\n/gm,pY,fLn=(pY=class extends Error{constructor(t){super(t),this.name="UnknownDiagramError"}},X(pY,"UnknownDiagramError"),pY),IF={},F0t=X(function(e,t){e=e.replace(dLn,"").replace(sse,"").replace(yii,` +`);for(const[r,{detector:a}]of Object.entries(IF))if(a(e,t))return r;throw new fLn(`No diagram type detected matching given configuration for text: ${e}`)},"detectType"),pot=X((...e)=>{for(const{id:t,detector:r,loader:a}of e)pLn(t,r,a)},"registerLazyLoadedDiagrams"),pLn=X((e,t,r)=>{IF[e]&&it.warn(`Detector with key ${e} already exists. Overwriting.`),IF[e]={detector:t,loader:r},it.debug(`Detector with key ${e} added${r?" with loader":""}`)},"addDetector"),vii=X(e=>IF[e].loader,"getDiagramLoader"),got=X((e,t,{depth:r=2,clobber:a=!1}={})=>{const s={depth:r,clobber:a};return Array.isArray(t)&&!Array.isArray(e)?(t.forEach(o=>got(e,o,s)),e):Array.isArray(t)&&Array.isArray(e)?(t.forEach(o=>{e.includes(o)||e.push(o)}),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(o=>{typeof t[o]=="object"&&(e[o]===void 0||typeof e[o]=="object")?(e[o]===void 0&&(e[o]=Array.isArray(t[o])?[]:{}),e[o]=got(e[o],t[o],{depth:r-1,clobber:a})):(a||typeof e[o]!="object"&&typeof t[o]!="object")&&(e[o]=t[o])}),e)},"assignWithDepth"),W0=got,QCe="#ffffff",ZCe="#f2f2f2",Qy=X((e,t)=>t?gt(e,{s:-40,l:10}):gt(e,{s:-40,l:-10}),"mkBorder"),gY,_ii=(gY=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,a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I,N,L,P,M;if(this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#333"),this.secondaryColor=this.secondaryColor||gt(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||gt(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||Qy(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||Qy(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||Qy(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||Qy(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#333",this.secondaryTextColor=this.secondaryTextColor||ir(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||ir(this.tertiaryColor),this.lineColor=this.lineColor||ir(this.background),this.arrowheadColor=this.arrowheadColor||ir(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?qr(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||qr(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||ir(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||Nr(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||qr(this.mainBkg,5)||"#ffffff",this.rowEven=this.rowEven||qr(this.mainBkg,10)):(this.rowOdd=this.rowOdd||Nr(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||Nr(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||gt(this.primaryColor,{h:30}),this.cScale4=this.cScale4||gt(this.primaryColor,{h:60}),this.cScale5=this.cScale5||gt(this.primaryColor,{h:90}),this.cScale6=this.cScale6||gt(this.primaryColor,{h:120}),this.cScale7=this.cScale7||gt(this.primaryColor,{h:150}),this.cScale8=this.cScale8||gt(this.primaryColor,{h:210,l:150}),this.cScale9=this.cScale9||gt(this.primaryColor,{h:270}),this.cScale10=this.cScale10||gt(this.primaryColor,{h:300}),this.cScale11=this.cScale11||gt(this.primaryColor,{h:330}),this.darkMode)for(let F=0;F{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}},X(gY,"Theme"),gY),wii=X(e=>{const t=new _ii;return t.calculate(e),t},"getThemeVariables"),mY,Eii=(mY=class{constructor(){this.background="#333",this.primaryColor="#1f2020",this.secondaryColor=Nr(this.primaryColor,16),this.tertiaryColor=gt(this.primaryColor,{h:-160}),this.primaryBorderColor=ir(this.background),this.secondaryBorderColor=Qy(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Qy(this.tertiaryColor,this.darkMode),this.primaryTextColor=ir(this.primaryColor),this.secondaryTextColor=ir(this.secondaryColor),this.tertiaryTextColor=ir(this.tertiaryColor),this.lineColor=ir(this.background),this.textColor=ir(this.background),this.mainBkg="#1f2020",this.secondBkg="calculated",this.mainContrastColor="lightgrey",this.darkTextColor=Nr(ir("#323D47"),10),this.lineColor="calculated",this.border1="#ccc",this.border2=Z2(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=qr("#EAE8D9",30),this.altSectionBkgColor="calculated",this.sectionBkgColor2="#EAE8D9",this.excludeBkgColor=qr(this.sectionBkgColor,10),this.taskBorderColor=Z2(255,255,255,70),this.taskBkgColor="calculated",this.taskTextColor="calculated",this.taskTextLightColor="calculated",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor=Z2(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||Nr(this.mainBkg,5)||"#ffffff",this.rowEven=this.rowEven||qr(this.mainBkg,10),this.labelColor="calculated",this.errorBkgColor="#a44141",this.errorTextColor="#ddd"}updateColors(){var t,r,a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I,N,L,P;this.secondBkg=Nr(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=Nr(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=Nr(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=this.darkTextColor,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=gt(this.primaryColor,{h:64}),this.fillType3=gt(this.secondaryColor,{h:64}),this.fillType4=gt(this.primaryColor,{h:-64}),this.fillType5=gt(this.secondaryColor,{h:-64}),this.fillType6=gt(this.primaryColor,{h:128}),this.fillType7=gt(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||gt(this.primaryColor,{h:30}),this.cScale4=this.cScale4||gt(this.primaryColor,{h:60}),this.cScale5=this.cScale5||gt(this.primaryColor,{h:90}),this.cScale6=this.cScale6||gt(this.primaryColor,{h:120}),this.cScale7=this.cScale7||gt(this.primaryColor,{h:150}),this.cScale8=this.cScale8||gt(this.primaryColor,{h:210}),this.cScale9=this.cScale9||gt(this.primaryColor,{h:270}),this.cScale10=this.cScale10||gt(this.primaryColor,{h:300}),this.cScale11=this.cScale11||gt(this.primaryColor,{h:330});for(let M=0;M{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}},X(mY,"Theme"),mY),xii=X(e=>{const t=new Eii;return t.calculate(e),t},"getThemeVariables"),bY,Sii=(bY=class{constructor(){this.background="#f4f4f4",this.primaryColor="#ECECFF",this.secondaryColor=gt(this.primaryColor,{h:120}),this.secondaryColor="#ffffde",this.tertiaryColor=gt(this.primaryColor,{h:-160}),this.primaryBorderColor=Qy(this.primaryColor,this.darkMode),this.secondaryBorderColor=Qy(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Qy(this.tertiaryColor,this.darkMode),this.primaryTextColor=ir(this.primaryColor),this.secondaryTextColor=ir(this.secondaryColor),this.tertiaryTextColor=ir(this.tertiaryColor),this.lineColor=ir(this.background),this.textColor=ir(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=Z2(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,a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I,N,L,P;this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||gt(this.primaryColor,{h:30}),this.cScale4=this.cScale4||gt(this.primaryColor,{h:60}),this.cScale5=this.cScale5||gt(this.primaryColor,{h:90}),this.cScale6=this.cScale6||gt(this.primaryColor,{h:120}),this.cScale7=this.cScale7||gt(this.primaryColor,{h:150}),this.cScale8=this.cScale8||gt(this.primaryColor,{h:210}),this.cScale9=this.cScale9||gt(this.primaryColor,{h:270}),this.cScale10=this.cScale10||gt(this.primaryColor,{h:300}),this.cScale11=this.cScale11||gt(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||qr(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||qr(this.tertiaryColor,40);for(let M=0;M{this[a]==="calculated"&&(this[a]=void 0)}),typeof t!="object"){this.updateColors();return}const r=Object.keys(t);r.forEach(a=>{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}},X(bY,"Theme"),bY),JCe=X(e=>{const t=new Sii;return t.calculate(e),t},"getThemeVariables"),yY,Tii=(yY=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=Nr("#cde498",10),this.primaryBorderColor=Qy(this.primaryColor,this.darkMode),this.secondaryBorderColor=Qy(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Qy(this.tertiaryColor,this.darkMode),this.primaryTextColor=ir(this.primaryColor),this.secondaryTextColor=ir(this.secondaryColor),this.tertiaryTextColor=ir(this.primaryColor),this.lineColor=ir(this.background),this.textColor=ir(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,a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I,N,L,P;this.actorBorder=qr(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||gt(this.primaryColor,{h:30}),this.cScale4=this.cScale4||gt(this.primaryColor,{h:60}),this.cScale5=this.cScale5||gt(this.primaryColor,{h:90}),this.cScale6=this.cScale6||gt(this.primaryColor,{h:120}),this.cScale7=this.cScale7||gt(this.primaryColor,{h:150}),this.cScale8=this.cScale8||gt(this.primaryColor,{h:210}),this.cScale9=this.cScale9||gt(this.primaryColor,{h:270}),this.cScale10=this.cScale10||gt(this.primaryColor,{h:300}),this.cScale11=this.cScale11||gt(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||qr(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||qr(this.tertiaryColor,40);for(let M=0;M{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}},X(yY,"Theme"),yY),Cii=X(e=>{const t=new Tii;return t.calculate(e),t},"getThemeVariables"),vY,Aii=(vY=class{constructor(){this.primaryColor="#eee",this.contrast="#707070",this.secondaryColor=Nr(this.contrast,55),this.background="#ffffff",this.tertiaryColor=gt(this.primaryColor,{h:-160}),this.primaryBorderColor=Qy(this.primaryColor,this.darkMode),this.secondaryBorderColor=Qy(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=Qy(this.tertiaryColor,this.darkMode),this.primaryTextColor=ir(this.primaryColor),this.secondaryTextColor=ir(this.secondaryColor),this.tertiaryTextColor=ir(this.tertiaryColor),this.lineColor=ir(this.background),this.textColor=ir(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||Nr(this.mainBkg,75)||"#ffffff",this.rowEven=this.rowEven||"#f4f4f4",this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222"}updateColors(){var t,r,a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I,N,L,P;this.secondBkg=Nr(this.contrast,55),this.border2=this.contrast,this.actorBorder=Nr(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 M=0;M{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}},X(vY,"Theme"),vY),kii=X(e=>{const t=new Aii;return t.calculate(e),t},"getThemeVariables"),$7={base:{getThemeVariables:wii},dark:{getThemeVariables:xii},default:{getThemeVariables:JCe},forest:{getThemeVariables:Cii},neutral:{getThemeVariables:kii}},fC={flowchart:{useMaxWidth:!0,titleTopMargin:25,subGraphTitleMargin:{top:0,bottom:0},diagramPadding:8,htmlLabels:!0,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"},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},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},gLn={...fC,deterministicIDSeed:void 0,elk:{mergeEdges:!1,nodePlacementStrategy:"BRANDES_KOEPF",forceNodeModelOrder:!1,considerModelOrder:"NODES_AND_EDGES"},themeCSS:void 0,themeVariables:$7.default.getThemeVariables(),sequence:{...fC.sequence,messageFont:X(function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}},"messageFont"),noteFont:X(function(){return{fontFamily:this.noteFontFamily,fontSize:this.noteFontSize,fontWeight:this.noteFontWeight}},"noteFont"),actorFont:X(function(){return{fontFamily:this.actorFontFamily,fontSize:this.actorFontSize,fontWeight:this.actorFontWeight}},"actorFont")},class:{hideEmptyMembersBox:!1},gantt:{...fC.gantt,tickInterval:void 0,useWidth:void 0},c4:{...fC.c4,useWidth:void 0,personFont:X(function(){return{fontFamily:this.personFontFamily,fontSize:this.personFontSize,fontWeight:this.personFontWeight}},"personFont"),flowchart:{...fC.flowchart,inheritDir:!1},external_personFont:X(function(){return{fontFamily:this.external_personFontFamily,fontSize:this.external_personFontSize,fontWeight:this.external_personFontWeight}},"external_personFont"),systemFont:X(function(){return{fontFamily:this.systemFontFamily,fontSize:this.systemFontSize,fontWeight:this.systemFontWeight}},"systemFont"),external_systemFont:X(function(){return{fontFamily:this.external_systemFontFamily,fontSize:this.external_systemFontSize,fontWeight:this.external_systemFontWeight}},"external_systemFont"),system_dbFont:X(function(){return{fontFamily:this.system_dbFontFamily,fontSize:this.system_dbFontSize,fontWeight:this.system_dbFontWeight}},"system_dbFont"),external_system_dbFont:X(function(){return{fontFamily:this.external_system_dbFontFamily,fontSize:this.external_system_dbFontSize,fontWeight:this.external_system_dbFontWeight}},"external_system_dbFont"),system_queueFont:X(function(){return{fontFamily:this.system_queueFontFamily,fontSize:this.system_queueFontSize,fontWeight:this.system_queueFontWeight}},"system_queueFont"),external_system_queueFont:X(function(){return{fontFamily:this.external_system_queueFontFamily,fontSize:this.external_system_queueFontSize,fontWeight:this.external_system_queueFontWeight}},"external_system_queueFont"),containerFont:X(function(){return{fontFamily:this.containerFontFamily,fontSize:this.containerFontSize,fontWeight:this.containerFontWeight}},"containerFont"),external_containerFont:X(function(){return{fontFamily:this.external_containerFontFamily,fontSize:this.external_containerFontSize,fontWeight:this.external_containerFontWeight}},"external_containerFont"),container_dbFont:X(function(){return{fontFamily:this.container_dbFontFamily,fontSize:this.container_dbFontSize,fontWeight:this.container_dbFontWeight}},"container_dbFont"),external_container_dbFont:X(function(){return{fontFamily:this.external_container_dbFontFamily,fontSize:this.external_container_dbFontSize,fontWeight:this.external_container_dbFontWeight}},"external_container_dbFont"),container_queueFont:X(function(){return{fontFamily:this.container_queueFontFamily,fontSize:this.container_queueFontSize,fontWeight:this.container_queueFontWeight}},"container_queueFont"),external_container_queueFont:X(function(){return{fontFamily:this.external_container_queueFontFamily,fontSize:this.external_container_queueFontSize,fontWeight:this.external_container_queueFontWeight}},"external_container_queueFont"),componentFont:X(function(){return{fontFamily:this.componentFontFamily,fontSize:this.componentFontSize,fontWeight:this.componentFontWeight}},"componentFont"),external_componentFont:X(function(){return{fontFamily:this.external_componentFontFamily,fontSize:this.external_componentFontSize,fontWeight:this.external_componentFontWeight}},"external_componentFont"),component_dbFont:X(function(){return{fontFamily:this.component_dbFontFamily,fontSize:this.component_dbFontSize,fontWeight:this.component_dbFontWeight}},"component_dbFont"),external_component_dbFont:X(function(){return{fontFamily:this.external_component_dbFontFamily,fontSize:this.external_component_dbFontSize,fontWeight:this.external_component_dbFontWeight}},"external_component_dbFont"),component_queueFont:X(function(){return{fontFamily:this.component_queueFontFamily,fontSize:this.component_queueFontSize,fontWeight:this.component_queueFontWeight}},"component_queueFont"),external_component_queueFont:X(function(){return{fontFamily:this.external_component_queueFontFamily,fontSize:this.external_component_queueFontSize,fontWeight:this.external_component_queueFontWeight}},"external_component_queueFont"),boundaryFont:X(function(){return{fontFamily:this.boundaryFontFamily,fontSize:this.boundaryFontSize,fontWeight:this.boundaryFontWeight}},"boundaryFont"),messageFont:X(function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}},"messageFont")},pie:{...fC.pie,useWidth:984},xyChart:{...fC.xyChart,useWidth:void 0},requirement:{...fC.requirement,useWidth:void 0},packet:{...fC.packet},radar:{...fC.radar},treemap:{useMaxWidth:!0,padding:10,diagramPadding:8,showValues:!0,nodeWidth:100,nodeHeight:40,borderWidth:1,valueFontSize:12,labelFontSize:14,valueFormat:","}},mLn=X((e,t="")=>Object.keys(e).reduce((r,a)=>Array.isArray(e[a])?r:typeof e[a]=="object"&&e[a]!==null?[...r,t+a,...mLn(e[a],"")]:[...r,t+a],[]),"keyify"),Rii=new Set(mLn(gLn,"")),Cc=gLn,i4e=X(e=>{if(it.debug("sanitizeDirective called with",e),!(typeof e!="object"||e==null)){if(Array.isArray(e)){e.forEach(t=>i4e(t));return}for(const t of Object.keys(e)){if(it.debug("Checking key",t),t.startsWith("__")||t.includes("proto")||t.includes("constr")||!Rii.has(t)||e[t]==null){it.debug("sanitize deleting key: ",t),delete e[t];continue}if(typeof e[t]=="object"){it.debug("sanitizing object",t),i4e(e[t]);continue}const r=["themeCSS","fontFamily","altFontFamily"];for(const a of r)t.includes(a)&&(it.debug("sanitizing css option",t),e[t]=Iii(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]="")}it.debug("After sanitization",e)}},"sanitizeDirective"),Iii=X(e=>{let t=0,r=0;for(const a of e){if(t{let r=W0({},e),a={};for(const s of t)vLn(s),a=W0(a,s);if(r=W0(r,a),a.theme&&a.theme in $7){const s=W0({},a4e),o=W0(s.themeVariables||{},a.themeVariables);r.theme&&r.theme in $7&&(r.themeVariables=$7[r.theme].getThemeVariables(o))}return ose=r,_Ln(ose),ose},"updateCurrentConfig"),Nii=X(e=>(P2=W0({},Tj),P2=W0(P2,e),e.theme&&$7[e.theme]&&(P2.themeVariables=$7[e.theme].getThemeVariables(e.themeVariables)),eAe(P2,NF),P2),"setSiteConfig"),Oii=X(e=>{a4e=W0({},e)},"saveConfigFromInitialize"),Lii=X(e=>(P2=W0(P2,e),eAe(P2,NF),P2),"updateSiteConfig"),bLn=X(()=>W0({},P2),"getSiteConfig"),yLn=X(e=>(_Ln(e),W0(ose,e),$c()),"setConfig"),$c=X(()=>W0({},ose),"getConfig"),vLn=X(e=>{e&&(["secure",...P2.secure??[]].forEach(t=>{Object.hasOwn(e,t)&&(it.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"&&vLn(e[t])}))},"sanitize"),Dii=X(e=>{var t;i4e(e),e.fontFamily&&!((t=e.themeVariables)!=null&&t.fontFamily)&&(e.themeVariables={...e.themeVariables,fontFamily:e.fontFamily}),NF.push(e),eAe(P2,NF)},"addDirective"),s4e=X((e=P2)=>{NF=[],eAe(e,NF)},"reset"),Mii={LAZY_LOAD_DEPRECATED:"The configuration options lazyLoadedDiagrams and loadExternalDiagramsAtStartup are deprecated. Please use registerExternalDiagrams instead."},ryn={},Pii=X(e=>{ryn[e]||(it.warn(Mii[e]),ryn[e]=!0)},"issueWarning"),_Ln=X(e=>{e&&(e.lazyLoadedDiagrams||e.loadExternalDiagramsAtStartup)&&Pii("LAZY_LOAD_DEPRECATED")},"checkConfig"),Bii=X(()=>{let e={};a4e&&(e=W0(e,a4e));for(const t of NF)e=W0(e,t);return e},"getUserDefinedConfig"),DW=//gi,Fii=X(e=>e?xLn(e).replace(/\\n/g,"#br#").split("#br#"):[""],"getRows"),$ii=(()=>{let e=!1;return()=>{e||(wLn(),e=!0)}})();function wLn(){const e="data-temp-href-target";Sj.addHook("beforeSanitizeAttributes",t=>{t.tagName==="A"&&t.hasAttribute("target")&&t.setAttribute(e,t.getAttribute("target")??"")}),Sj.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"))})}X(wLn,"setupDompurifyHooks");var ELn=X(e=>($ii(),Sj.sanitize(e)),"removeScript"),iyn=X((e,t)=>{var r;if(((r=t.flowchart)==null?void 0:r.htmlLabels)!==!1){const a=t.securityLevel;a==="antiscript"||a==="strict"?e=ELn(e):a!=="loose"&&(e=xLn(e),e=e.replace(//g,">"),e=e.replace(/=/g,"="),e=qii(e))}return e},"sanitizeMore"),Ic=X((e,t)=>e&&(t.dompurifyConfig?e=Sj.sanitize(iyn(e,t),t.dompurifyConfig).toString():e=Sj.sanitize(iyn(e,t),{FORBID_TAGS:["style"]}).toString(),e),"sanitizeText"),Uii=X((e,t)=>typeof e=="string"?Ic(e,t):e.flat().map(r=>Ic(r,t)),"sanitizeTextOrArray"),zii=X(e=>DW.test(e),"hasBreaks"),Gii=X(e=>e.split(DW),"splitBreaks"),qii=X(e=>e.replace(/#br#/g,"
    "),"placeholderToBreak"),xLn=X(e=>e.replace(DW,"#br#"),"breakToPlaceholder"),tAe=X(e=>{let t="";return e&&(t=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,t=CSS.escape(t)),t},"getUrl"),nh=X(e=>!(e===!1||["false","null","0"].includes(String(e).trim().toLowerCase())),"evaluate"),Hii=X(function(...e){const t=e.filter(r=>!isNaN(r));return Math.max(...t)},"getMax"),Vii=X(function(...e){const t=e.filter(r=>!isNaN(r));return Math.min(...t)},"getMin"),WN=X(function(e){const t=e.split(/(,)/),r=[];for(let a=0;a0&&a+1Math.max(0,e.split(t).length-1),"countOccurrence"),Yii=X((e,t)=>{const r=mot(e,"~"),a=mot(t,"~");return r===1&&a===1},"shouldCombineSets"),jii=X(e=>{const t=mot(e,"~");let r=!1;if(t<=1)return e;t%2!==0&&e.startsWith("~")&&(e=e.substring(1),r=!0);const a=[...e];let s=a.indexOf("~"),o=a.lastIndexOf("~");for(;s!==-1&&o!==-1&&s!==o;)a[s]="<",a[o]=">",s=a.indexOf("~"),o=a.lastIndexOf("~");return r&&a.unshift("~"),a.join("")},"processSet"),ayn=X(()=>window.MathMLElement!==void 0,"isMathMLSupported"),bot=/\$\$(.*)\$\$/g,u0=X(e=>{var t;return(((t=e.match(bot))==null?void 0:t.length)??0)>0},"hasKatex"),tce=X(async(e,t)=>{const r=document.createElement("div");r.innerHTML=await nce(e,t),r.id="katex-temp",r.style.visibility="hidden",r.style.position="absolute",r.style.top="0";const a=document.querySelector("body");a==null||a.insertAdjacentElement("beforeend",r);const s={width:r.clientWidth,height:r.clientHeight};return r.remove(),s},"calculateMathMLDimensions"),Wii=X(async(e,t)=>{if(!u0(e))return e;if(!(ayn()||t.legacyMathML||t.forceLegacyMathML))return e.replace(bot,"MathML is unsupported in this environment.");{const{default:r}=await ea(async()=>{const{default:s}=await Promise.resolve().then(()=>CTi);return{default:s}},void 0),a=t.forceLegacyMathML||!ayn()&&t.legacyMathML?"htmlAndMathml":"mathml";return e.split(DW).map(s=>u0(s)?`
    ${s}
    `:`
    ${s}
    `).join("").replace(bot,(s,o)=>r.renderToString(o,{throwOnError:!0,displayMode:!0,output:a}).replace(/\n/g," ").replace(//g,""))}},"renderKatexUnsanitized"),nce=X(async(e,t)=>Ic(await Wii(e,t),t),"renderKatexSanitized"),Ti={getRows:Fii,sanitizeText:Ic,sanitizeTextOrArray:Uii,hasBreaks:zii,splitBreaks:Gii,lineBreakRegex:DW,removeScript:ELn,getUrl:tAe,evaluate:nh,getMax:Hii,getMin:Vii},Kii=X(function(e,t){for(let r of t)e.attr(r[0],r[1])},"d3Attrs"),Xii=X(function(e,t,r){let a=new Map;return r?(a.set("width","100%"),a.set("style",`max-width: ${t}px;`)):(a.set("height",e),a.set("width",t)),a},"calculateSvgSizeAttrs"),yv=X(function(e,t,r,a){const s=Xii(t,r,a);Kii(e,s)},"configureSvgSize"),rce=X(function(e,t,r,a){const s=t.node().getBBox(),o=s.width,u=s.height;it.info(`SVG bounds: ${o}x${u}`,s);let h=0,f=0;it.info(`Graph bounds: ${h}x${f}`,e),h=o+r*2,f=u+r*2,it.info(`Calculated bounds: ${h}x${f}`),yv(t,f,h,a);const p=`${s.x-r} ${s.y-r} ${s.width+2*r} ${s.height+2*r}`;t.attr("viewBox",p)},"setupGraphViewbox"),ZEe={},Qii=X((e,t,r)=>{let a="";return e in ZEe&&ZEe[e]?a=ZEe[e](r):it.warn(`No theme found for ${e}`),` & { + font-family: ${r.fontFamily}; + font-size: ${r.fontSize}; + fill: ${r.textColor} + } + @keyframes edge-animation-frame { + from { + stroke-dashoffset: 0; + } + } + @keyframes dash { + to { + stroke-dashoffset: 0; + } + } + & .edge-animation-slow { + stroke-dasharray: 9,5 !important; + stroke-dashoffset: 900; + animation: dash 50s linear infinite; + stroke-linecap: round; + } + & .edge-animation-fast { + stroke-dasharray: 9,5 !important; + stroke-dashoffset: 900; + animation: dash 20s linear infinite; + stroke-linecap: round; + } + /* Classes common for multiple diagrams */ + + & .error-icon { + fill: ${r.errorBkgColor}; + } + & .error-text { + fill: ${r.errorTextColor}; + stroke: ${r.errorTextColor}; + } + + & .edge-thickness-normal { + stroke-width: 1px; + } + & .edge-thickness-thick { + stroke-width: 3.5px + } + & .edge-pattern-solid { + stroke-dasharray: 0; + } + & .edge-thickness-invisible { + stroke-width: 0; + fill: none; + } + & .edge-pattern-dashed{ + stroke-dasharray: 3; + } + .edge-pattern-dotted { + stroke-dasharray: 2; + } + + & .marker { + fill: ${r.lineColor}; + stroke: ${r.lineColor}; + } + & .marker.cross { + stroke: ${r.lineColor}; + } + + & svg { + font-family: ${r.fontFamily}; + font-size: ${r.fontSize}; + } + & p { + margin: 0 + } + + ${a} + + ${t} +`},"getStyles"),Zii=X((e,t)=>{t!==void 0&&(ZEe[e]=t)},"addStylesForDiagram"),Jii=Qii,$0t={};KCe($0t,{clear:()=>M1,getAccDescription:()=>Bp,getAccTitle:()=>Mp,getDiagramTitle:()=>P1,setAccDescription:()=>Pp,setAccTitle:()=>N1,setDiagramTitle:()=>Og});var U0t="",z0t="",G0t="",q0t=X(e=>Ic(e,$c()),"sanitizeText"),M1=X(()=>{U0t="",G0t="",z0t=""},"clear"),N1=X(e=>{U0t=q0t(e).replace(/^\s+/g,"")},"setAccTitle"),Mp=X(()=>U0t,"getAccTitle"),Pp=X(e=>{G0t=q0t(e).replace(/\n\s+/g,` +`)},"setAccDescription"),Bp=X(()=>G0t,"getAccDescription"),Og=X(e=>{z0t=q0t(e)},"setDiagramTitle"),P1=X(()=>z0t,"getDiagramTitle"),syn=it,eai=B0t,nn=$c,yot=yLn,SLn=Tj,H0t=X(e=>Ic(e,nn()),"sanitizeText"),TLn=rce,tai=X(()=>$0t,"getCommonDb"),o4e={},l4e=X((e,t,r)=>{var a;o4e[e]&&syn.warn(`Diagram with id ${e} already registered. Overwriting.`),o4e[e]=t,r&&pLn(e,r),Zii(e,t.styles),(a=t.injectUtils)==null||a.call(t,syn,eai,nn,H0t,TLn,tai(),()=>{})},"registerDiagram"),vot=X(e=>{if(e in o4e)return o4e[e];throw new nai(e)},"getDiagram"),_Y,nai=(_Y=class extends Error{constructor(t){super(`Diagram ${t} not found.`)}},X(_Y,"DiagramNotFoundError"),_Y);function JEe(e,t){return e==null||t==null?NaN:et?1:e>=t?0:NaN}function rai(e,t){return e==null||t==null?NaN:te?1:t>=e?0:NaN}function V0t(e){let t,r,a;e.length!==2?(t=JEe,r=(h,f)=>JEe(e(h),f),a=(h,f)=>e(h)-f):(t=e===JEe||e===rai?e:iai,r=e,a=e);function s(h,f,p=0,m=h.length){if(p>>1;r(h[b],f)<0?p=b+1:m=b}while(p>>1;r(h[b],f)<=0?p=b+1:m=b}while(pp&&a(h[b-1],f)>-a(h[b],f)?b-1:b}return{left:s,center:u,right:o}}function iai(){return 0}function aai(e){return e===null?NaN:+e}const sai=V0t(JEe),oai=sai.right;V0t(aai).center;class oyn extends Map{constructor(t,r=uai){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:r}}),t!=null)for(const[a,s]of t)this.set(a,s)}get(t){return super.get(lyn(this,t))}has(t){return super.has(lyn(this,t))}set(t,r){return super.set(lai(this,t),r)}delete(t){return super.delete(cai(this,t))}}function lyn({_intern:e,_key:t},r){const a=t(r);return e.has(a)?e.get(a):r}function lai({_intern:e,_key:t},r){const a=t(r);return e.has(a)?e.get(a):(e.set(a,r),r)}function cai({_intern:e,_key:t},r){const a=t(r);return e.has(a)&&(r=e.get(a),e.delete(a)),r}function uai(e){return e!==null&&typeof e=="object"?e.valueOf():e}const hai=Math.sqrt(50),dai=Math.sqrt(10),fai=Math.sqrt(2);function c4e(e,t,r){const a=(t-e)/Math.max(0,r),s=Math.floor(Math.log10(a)),o=a/Math.pow(10,s),u=o>=hai?10:o>=dai?5:o>=fai?2:1;let h,f,p;return s<0?(p=Math.pow(10,-s)/u,h=Math.round(e*p),f=Math.round(t*p),h/pt&&--f,p=-p):(p=Math.pow(10,s)*u,h=Math.round(e/p),f=Math.round(t/p),h*pt&&--f),f0))return[];if(e===t)return[e];const a=t=s))return[];const h=o-s+1,f=new Array(h);if(a)if(u<0)for(let p=0;p=a)&&(r=a);else{let a=-1;for(let s of e)(s=t(s,++a,e))!=null&&(r=s)&&(r=s)}return r}function ALn(e,t){let r;if(t===void 0)for(const a of e)a!=null&&(r>a||r===void 0&&a>=a)&&(r=a);else{let a=-1;for(let s of e)(s=t(s,++a,e))!=null&&(r>s||r===void 0&&s>=s)&&(r=s)}return r}function gai(e,t,r){e=+e,t=+t,r=(s=arguments.length)<2?(t=e,e=0,1):s<3?1:+r;for(var a=-1,s=Math.max(0,Math.ceil((t-e)/r))|0,o=new Array(s);++a+e(t)}function _ai(e,t){return t=Math.max(0,e.bandwidth()-t*2)/2,e.round()&&(t=Math.round(t)),r=>+e(r)+t}function wai(){return!this.__axis}function kLn(e,t){var r=[],a=null,s=null,o=6,u=6,h=3,f=typeof window<"u"&&window.devicePixelRatio>1?0:.5,p=e===exe||e===V_e?-1:1,m=e===V_e||e===htt?"x":"y",b=e===exe||e===Eot?bai:yai;function _(w){var S=a??(t.ticks?t.ticks.apply(t,r):t.domain()),C=s??(t.tickFormat?t.tickFormat.apply(t,r):mai),A=Math.max(o,0)+h,k=t.range(),I=+k[0]+f,N=+k[k.length-1]+f,L=(t.bandwidth?_ai:vai)(t.copy(),f),P=w.selection?w.selection():w,M=P.selectAll(".domain").data([null]),F=P.selectAll(".tick").data(S,t).order(),U=F.exit(),$=F.enter().append("g").attr("class","tick"),G=F.select("line"),B=F.select("text");M=M.merge(M.enter().insert("path",".tick").attr("class","domain").attr("stroke","currentColor")),F=F.merge($),G=G.merge($.append("line").attr("stroke","currentColor").attr(m+"2",p*o)),B=B.merge($.append("text").attr("fill","currentColor").attr(m,p*A).attr("dy",e===exe?"0em":e===Eot?"0.71em":"0.32em")),w!==P&&(M=M.transition(w),F=F.transition(w),G=G.transition(w),B=B.transition(w),U=U.transition(w).attr("opacity",cyn).attr("transform",function(Z){return isFinite(Z=L(Z))?b(Z+f):this.getAttribute("transform")}),$.attr("opacity",cyn).attr("transform",function(Z){var z=this.parentNode.__axis;return b((z&&isFinite(z=z(Z))?z:L(Z))+f)})),U.remove(),M.attr("d",e===V_e||e===htt?u?"M"+p*u+","+I+"H"+f+"V"+N+"H"+p*u:"M"+f+","+I+"V"+N:u?"M"+I+","+p*u+"V"+f+"H"+N+"V"+p*u:"M"+I+","+f+"H"+N),F.attr("opacity",1).attr("transform",function(Z){return b(L(Z)+f)}),G.attr(m+"2",p*o),B.attr(m,p*A).text(C),P.filter(wai).attr("fill","none").attr("font-size",10).attr("font-family","sans-serif").attr("text-anchor",e===htt?"start":e===V_e?"end":"middle"),P.each(function(){this.__axis=L})}return _.scale=function(w){return arguments.length?(t=w,_):t},_.ticks=function(){return r=Array.from(arguments),_},_.tickArguments=function(w){return arguments.length?(r=w==null?[]:Array.from(w),_):r.slice()},_.tickValues=function(w){return arguments.length?(a=w==null?null:Array.from(w),_):a&&a.slice()},_.tickFormat=function(w){return arguments.length?(s=w,_):s},_.tickSize=function(w){return arguments.length?(o=u=+w,_):o},_.tickSizeInner=function(w){return arguments.length?(o=+w,_):o},_.tickSizeOuter=function(w){return arguments.length?(u=+w,_):u},_.tickPadding=function(w){return arguments.length?(h=+w,_):h},_.offset=function(w){return arguments.length?(f=+w,_):f},_}function RLn(e){return kLn(exe,e)}function ILn(e){return kLn(Eot,e)}var Eai={value:()=>{}};function NLn(){for(var e=0,t=arguments.length,r={},a;e=0&&(a=r.slice(s+1),r=r.slice(0,s)),r&&!t.hasOwnProperty(r))throw new Error("unknown type: "+r);return{type:r,name:a}})}txe.prototype=NLn.prototype={constructor:txe,on:function(e,t){var r=this._,a=xai(e+"",r),s,o=-1,u=a.length;if(arguments.length<2){for(;++o0)for(var r=new Array(s),a=0,s,o;a=0&&(t=e.slice(0,r))!=="xmlns"&&(e=e.slice(r+1)),hyn.hasOwnProperty(t)?{space:hyn[t],local:e}:e}function Tai(e){return function(){var t=this.ownerDocument,r=this.namespaceURI;return r===xot&&t.documentElement.namespaceURI===xot?t.createElement(e):t.createElementNS(r,e)}}function Cai(e){return function(){return this.ownerDocument.createElementNS(e.space,e.local)}}function OLn(e){var t=nAe(e);return(t.local?Cai:Tai)(t)}function Aai(){}function Y0t(e){return e==null?Aai:function(){return this.querySelector(e)}}function kai(e){typeof e!="function"&&(e=Y0t(e));for(var t=this._groups,r=t.length,a=new Array(r),s=0;s=N&&(N=I+1);!(P=A[N])&&++N=0;)(u=a[s])&&(o&&u.compareDocumentPosition(o)^4&&o.parentNode.insertBefore(u,o),o=u);return this}function Zai(e){e||(e=Jai);function t(b,_){return b&&_?e(b.__data__,_.__data__):!b-!_}for(var r=this._groups,a=r.length,s=new Array(a),o=0;ot?1:e>=t?0:NaN}function esi(){var e=arguments[0];return arguments[0]=this,e.apply(null,arguments),this}function tsi(){return Array.from(this)}function nsi(){for(var e=this._groups,t=0,r=e.length;t1?this.each((t==null?fsi:typeof t=="function"?gsi:psi)(e,t,r??"")):Cj(this.node(),e)}function Cj(e,t){return e.style.getPropertyValue(t)||FLn(e).getComputedStyle(e,null).getPropertyValue(t)}function bsi(e){return function(){delete this[e]}}function ysi(e,t){return function(){this[e]=t}}function vsi(e,t){return function(){var r=t.apply(this,arguments);r==null?delete this[e]:this[e]=r}}function _si(e,t){return arguments.length>1?this.each((t==null?bsi:typeof t=="function"?vsi:ysi)(e,t)):this.node()[e]}function $Ln(e){return e.trim().split(/^|\s+/)}function j0t(e){return e.classList||new ULn(e)}function ULn(e){this._node=e,this._names=$Ln(e.getAttribute("class")||"")}ULn.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 zLn(e,t){for(var r=j0t(e),a=-1,s=t.length;++a=0&&(r=t.slice(a+1),t=t.slice(0,a)),{type:t,name:r}})}function Wsi(e){return function(){var t=this.__on;if(t){for(var r=0,a=-1,s=t.length,o;r>8&15|t>>4&240,t>>4&15|t&240,(t&15)<<4|t&15,1):r===8?Y_e(t>>24&255,t>>16&255,t>>8&255,(t&255)/255):r===4?Y_e(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|t&240,((t&15)<<4|t&15)/255):null):(t=roi.exec(e))?new wb(t[1],t[2],t[3],1):(t=ioi.exec(e))?new wb(t[1]*255/100,t[2]*255/100,t[3]*255/100,1):(t=aoi.exec(e))?Y_e(t[1],t[2],t[3],t[4]):(t=soi.exec(e))?Y_e(t[1]*255/100,t[2]*255/100,t[3]*255/100,t[4]):(t=ooi.exec(e))?yyn(t[1],t[2]/100,t[3]/100,1):(t=loi.exec(e))?yyn(t[1],t[2]/100,t[3]/100,t[4]):dyn.hasOwnProperty(e)?gyn(dyn[e]):e==="transparent"?new wb(NaN,NaN,NaN,0):null}function gyn(e){return new wb(e>>16&255,e>>8&255,e&255,1)}function Y_e(e,t,r,a){return a<=0&&(e=t=r=NaN),new wb(e,t,r,a)}function VLn(e){return e instanceof x$||(e=OF(e)),e?(e=e.rgb(),new wb(e.r,e.g,e.b,e.opacity)):new wb}function Sot(e,t,r,a){return arguments.length===1?VLn(e):new wb(e,t,r,a??1)}function wb(e,t,r,a){this.r=+e,this.g=+t,this.b=+r,this.opacity=+a}ace(wb,Sot,rAe(x$,{brighter(e){return e=e==null?h4e:Math.pow(h4e,e),new wb(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=e==null?doe:Math.pow(doe,e),new wb(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new wb(fF(this.r),fF(this.g),fF(this.b),d4e(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:myn,formatHex:myn,formatHex8:hoi,formatRgb:byn,toString:byn}));function myn(){return`#${ZB(this.r)}${ZB(this.g)}${ZB(this.b)}`}function hoi(){return`#${ZB(this.r)}${ZB(this.g)}${ZB(this.b)}${ZB((isNaN(this.opacity)?1:this.opacity)*255)}`}function byn(){const e=d4e(this.opacity);return`${e===1?"rgb(":"rgba("}${fF(this.r)}, ${fF(this.g)}, ${fF(this.b)}${e===1?")":`, ${e})`}`}function d4e(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function fF(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function ZB(e){return e=fF(e),(e<16?"0":"")+e.toString(16)}function yyn(e,t,r,a){return a<=0?e=t=r=NaN:r<=0||r>=1?e=t=NaN:t<=0&&(e=NaN),new B3(e,t,r,a)}function YLn(e){if(e instanceof B3)return new B3(e.h,e.s,e.l,e.opacity);if(e instanceof x$||(e=OF(e)),!e)return new B3;if(e instanceof B3)return e;e=e.rgb();var t=e.r/255,r=e.g/255,a=e.b/255,s=Math.min(t,r,a),o=Math.max(t,r,a),u=NaN,h=o-s,f=(o+s)/2;return h?(t===o?u=(r-a)/h+(r0&&f<1?0:u,new B3(u,h,f,e.opacity)}function doi(e,t,r,a){return arguments.length===1?YLn(e):new B3(e,t,r,a??1)}function B3(e,t,r,a){this.h=+e,this.s=+t,this.l=+r,this.opacity=+a}ace(B3,doi,rAe(x$,{brighter(e){return e=e==null?h4e:Math.pow(h4e,e),new B3(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=e==null?doe:Math.pow(doe,e),new B3(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+(this.h<0)*360,t=isNaN(e)||isNaN(this.s)?0:this.s,r=this.l,a=r+(r<.5?r:1-r)*t,s=2*r-a;return new wb(dtt(e>=240?e-240:e+120,s,a),dtt(e,s,a),dtt(e<120?e+240:e-120,s,a),this.opacity)},clamp(){return new B3(vyn(this.h),j_e(this.s),j_e(this.l),d4e(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=d4e(this.opacity);return`${e===1?"hsl(":"hsla("}${vyn(this.h)}, ${j_e(this.s)*100}%, ${j_e(this.l)*100}%${e===1?")":`, ${e})`}`}}));function vyn(e){return e=(e||0)%360,e<0?e+360:e}function j_e(e){return Math.max(0,Math.min(1,e||0))}function dtt(e,t,r){return(e<60?t+(r-t)*e/60:e<180?r:e<240?t+(r-t)*(240-e)/60:t)*255}const foi=Math.PI/180,poi=180/Math.PI,f4e=18,jLn=.96422,WLn=1,KLn=.82521,XLn=4/29,KV=6/29,QLn=3*KV*KV,goi=KV*KV*KV;function ZLn(e){if(e instanceof lA)return new lA(e.l,e.a,e.b,e.opacity);if(e instanceof T7)return JLn(e);e instanceof wb||(e=VLn(e));var t=mtt(e.r),r=mtt(e.g),a=mtt(e.b),s=ftt((.2225045*t+.7168786*r+.0606169*a)/WLn),o,u;return t===r&&r===a?o=u=s:(o=ftt((.4360747*t+.3850649*r+.1430804*a)/jLn),u=ftt((.0139322*t+.0971045*r+.7141733*a)/KLn)),new lA(116*s-16,500*(o-s),200*(s-u),e.opacity)}function moi(e,t,r,a){return arguments.length===1?ZLn(e):new lA(e,t,r,a??1)}function lA(e,t,r,a){this.l=+e,this.a=+t,this.b=+r,this.opacity=+a}ace(lA,moi,rAe(x$,{brighter(e){return new lA(this.l+f4e*(e??1),this.a,this.b,this.opacity)},darker(e){return new lA(this.l-f4e*(e??1),this.a,this.b,this.opacity)},rgb(){var e=(this.l+16)/116,t=isNaN(this.a)?e:e+this.a/500,r=isNaN(this.b)?e:e-this.b/200;return t=jLn*ptt(t),e=WLn*ptt(e),r=KLn*ptt(r),new wb(gtt(3.1338561*t-1.6168667*e-.4906146*r),gtt(-.9787684*t+1.9161415*e+.033454*r),gtt(.0719453*t-.2289914*e+1.4052427*r),this.opacity)}}));function ftt(e){return e>goi?Math.pow(e,1/3):e/QLn+XLn}function ptt(e){return e>KV?e*e*e:QLn*(e-XLn)}function gtt(e){return 255*(e<=.0031308?12.92*e:1.055*Math.pow(e,1/2.4)-.055)}function mtt(e){return(e/=255)<=.04045?e/12.92:Math.pow((e+.055)/1.055,2.4)}function boi(e){if(e instanceof T7)return new T7(e.h,e.c,e.l,e.opacity);if(e instanceof lA||(e=ZLn(e)),e.a===0&&e.b===0)return new T7(NaN,0()=>e;function eDn(e,t){return function(r){return e+r*t}}function yoi(e,t,r){return e=Math.pow(e,r),t=Math.pow(t,r)-e,r=1/r,function(a){return Math.pow(e+a*t,r)}}function voi(e,t){var r=t-e;return r?eDn(e,r>180||r<-180?r-360*Math.round(r/360):r):iAe(isNaN(e)?t:e)}function _oi(e){return(e=+e)==1?lse:function(t,r){return r-t?yoi(t,r,e):iAe(isNaN(t)?r:t)}}function lse(e,t){var r=t-e;return r?eDn(e,r):iAe(isNaN(e)?t:e)}const p4e=function e(t){var r=_oi(t);function a(s,o){var u=r((s=Sot(s)).r,(o=Sot(o)).r),h=r(s.g,o.g),f=r(s.b,o.b),p=lse(s.opacity,o.opacity);return function(m){return s.r=u(m),s.g=h(m),s.b=f(m),s.opacity=p(m),s+""}}return a.gamma=e,a}(1);function woi(e,t){t||(t=[]);var r=e?Math.min(t.length,e.length):0,a=t.slice(),s;return function(o){for(s=0;sr&&(o=t.slice(r,o),h[u]?h[u]+=o:h[++u]=o),(a=a[0])===(s=s[0])?h[u]?h[u]+=s:h[++u]=s:(h[++u]=null,f.push({i:u,x:D3(a,s)})),r=btt.lastIndex;return r180?m+=360:m-p>180&&(p+=360),_.push({i:b.push(s(b)+"rotate(",null,a)-2,x:D3(p,m)})):m&&b.push(s(b)+"rotate("+m+a)}function h(p,m,b,_){p!==m?_.push({i:b.push(s(b)+"skewX(",null,a)-2,x:D3(p,m)}):m&&b.push(s(b)+"skewX("+m+a)}function f(p,m,b,_,w,S){if(p!==b||m!==_){var C=w.push(s(w)+"scale(",null,",",null,")");S.push({i:C-4,x:D3(p,b)},{i:C-2,x:D3(m,_)})}else(b!==1||_!==1)&&w.push(s(w)+"scale("+b+","+_+")")}return function(p,m){var b=[],_=[];return p=e(p),m=e(m),o(p.translateX,p.translateY,m.translateX,m.translateY,b,_),u(p.rotate,m.rotate,b,_),h(p.skewX,m.skewX,b,_),f(p.scaleX,p.scaleY,m.scaleX,m.scaleY,b,_),p=m=null,function(w){for(var S=-1,C=_.length,A;++S=0&&e._call.call(void 0,t),e=e._next;--Aj}function wyn(){LF=(m4e=poe.now())+aAe,Aj=Oie=0;try{Moi()}finally{Aj=0,Boi(),LF=0}}function Poi(){var e=poe.now(),t=e-m4e;t>aDn&&(aAe-=t,m4e=e)}function Boi(){for(var e,t=g4e,r,a=1/0;t;)t._call?(a>t._time&&(a=t._time),e=t,t=t._next):(r=t._next,t._next=null,t=e?e._next=r:g4e=r);Lie=e,kot(a)}function kot(e){if(!Aj){Oie&&(Oie=clearTimeout(Oie));var t=e-LF;t>24?(e<1/0&&(Oie=setTimeout(wyn,e-poe.now()-aAe)),Lre&&(Lre=clearInterval(Lre))):(Lre||(m4e=poe.now(),Lre=setInterval(Poi,aDn)),Aj=1,sDn(wyn))}}function Eyn(e,t,r){var a=new b4e;return t=t==null?0:+t,a.restart(s=>{a.stop(),e(s+t)},t,r),a}var Foi=NLn("start","end","cancel","interrupt"),$oi=[],lDn=0,xyn=1,Rot=2,nxe=3,Syn=4,Iot=5,rxe=6;function sAe(e,t,r,a,s,o){var u=e.__transition;if(!u)e.__transition={};else if(r in u)return;Uoi(e,r,{name:t,index:a,group:s,on:Foi,tween:$oi,time:o.time,delay:o.delay,duration:o.duration,ease:o.ease,timer:null,state:lDn})}function Q0t(e,t){var r=bT(e,t);if(r.state>lDn)throw new Error("too late; already scheduled");return r}function NA(e,t){var r=bT(e,t);if(r.state>nxe)throw new Error("too late; already running");return r}function bT(e,t){var r=e.__transition;if(!r||!(r=r[t]))throw new Error("transition not found");return r}function Uoi(e,t,r){var a=e.__transition,s;a[t]=r,r.timer=oDn(o,0,r.time);function o(p){r.state=xyn,r.timer.restart(u,r.delay,r.time),r.delay<=p&&u(p-r.delay)}function u(p){var m,b,_,w;if(r.state!==xyn)return f();for(m in a)if(w=a[m],w.name===r.name){if(w.state===nxe)return Eyn(u);w.state===Syn?(w.state=rxe,w.timer.stop(),w.on.call("interrupt",e,e.__data__,w.index,w.group),delete a[m]):+mRot&&a.state=0&&(t=t.slice(0,r)),!t||t==="start"})}function bli(e,t,r){var a,s,o=mli(t)?Q0t:NA;return function(){var u=o(this,e),h=u.on;h!==a&&(s=(a=h).copy()).on(t,r),u.on=s}}function yli(e,t){var r=this._id;return arguments.length<2?bT(this.node(),r).on.on(e):this.each(bli(r,e,t))}function vli(e){return function(){var t=this.parentNode;for(var r in this.__transition)if(+r!==e)return;t&&t.removeChild(this)}}function _li(){return this.on("end.remove",vli(this._id))}function wli(e){var t=this._name,r=this._id;typeof e!="function"&&(e=Y0t(e));for(var a=this._groups,s=a.length,o=new Array(s),u=0;u=0))throw new Error(`invalid digits: ${e}`);if(t>15)return dDn;const r=10**t;return function(a){this._+=a[0];for(let s=1,o=a.length;sAB)if(!(Math.abs(b*f-p*m)>AB)||!o)this._append`L${this._x1=t},${this._y1=r}`;else{let w=a-u,S=s-h,C=f*f+p*p,A=w*w+S*S,k=Math.sqrt(C),I=Math.sqrt(_),N=o*Math.tan((Not-Math.acos((C+_-A)/(2*k*I)))/2),L=N/I,P=N/k;Math.abs(L-1)>AB&&this._append`L${t+L*m},${r+L*b}`,this._append`A${o},${o},0,0,${+(b*w>m*S)},${this._x1=t+P*f},${this._y1=r+P*p}`}}arc(t,r,a,s,o,u){if(t=+t,r=+r,a=+a,u=!!u,a<0)throw new Error(`negative radius: ${a}`);let h=a*Math.cos(s),f=a*Math.sin(s),p=t+h,m=r+f,b=1^u,_=u?s-o:o-s;this._x1===null?this._append`M${p},${m}`:(Math.abs(this._x1-p)>AB||Math.abs(this._y1-m)>AB)&&this._append`L${p},${m}`,a&&(_<0&&(_=_%Oot+Oot),_>Yli?this._append`A${a},${a},0,1,${b},${t-h},${r-f}A${a},${a},0,1,${b},${this._x1=p},${this._y1=m}`:_>AB&&this._append`A${a},${a},0,${+(_>=Not)},${b},${this._x1=t+a*Math.cos(o)},${this._y1=r+a*Math.sin(o)}`)}rect(t,r,a,s){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+r}h${a=+a}v${+s}h${-a}Z`}toString(){return this._}};function Kli(e){if(!e.ok)throw new Error(e.status+" "+e.statusText);return e.text()}function Xli(e,t){return fetch(e,t).then(Kli)}function Qli(e){return(t,r)=>Xli(t,r).then(a=>new DOMParser().parseFromString(a,e))}var Zli=Qli("image/svg+xml");function Jli(e){return Math.abs(e=Math.round(e))>=1e21?e.toLocaleString("en").replace(/,/g,""):e.toString(10)}function y4e(e,t){if((r=(e=t?e.toExponential(t-1):e.toExponential()).indexOf("e"))<0)return null;var r,a=e.slice(0,r);return[a.length>1?a[0]+a.slice(2):a,+e.slice(r+1)]}function kj(e){return e=y4e(Math.abs(e)),e?e[1]:NaN}function eci(e,t){return function(r,a){for(var s=r.length,o=[],u=0,h=e[0],f=0;s>0&&h>0&&(f+h+1>a&&(h=Math.max(1,a-f)),o.push(r.substring(s-=h,s+h)),!((f+=h+1)>a));)h=e[u=(u+1)%e.length];return o.reverse().join(t)}}function tci(e){return function(t){return t.replace(/[0-9]/g,function(r){return e[+r]})}}var nci=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function v4e(e){if(!(t=nci.exec(e)))throw new Error("invalid format: "+e);var t;return new J0t({fill:t[1],align:t[2],sign:t[3],symbol:t[4],zero:t[5],width:t[6],comma:t[7],precision:t[8]&&t[8].slice(1),trim:t[9],type:t[10]})}v4e.prototype=J0t.prototype;function J0t(e){this.fill=e.fill===void 0?" ":e.fill+"",this.align=e.align===void 0?">":e.align+"",this.sign=e.sign===void 0?"-":e.sign+"",this.symbol=e.symbol===void 0?"":e.symbol+"",this.zero=!!e.zero,this.width=e.width===void 0?void 0:+e.width,this.comma=!!e.comma,this.precision=e.precision===void 0?void 0:+e.precision,this.trim=!!e.trim,this.type=e.type===void 0?"":e.type+""}J0t.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type};function rci(e){e:for(var t=e.length,r=1,a=-1,s;r0&&(a=0);break}return a>0?e.slice(0,a)+e.slice(s+1):e}var fDn;function ici(e,t){var r=y4e(e,t);if(!r)return e+"";var a=r[0],s=r[1],o=s-(fDn=Math.max(-8,Math.min(8,Math.floor(s/3)))*3)+1,u=a.length;return o===u?a:o>u?a+new Array(o-u+1).join("0"):o>0?a.slice(0,o)+"."+a.slice(o):"0."+new Array(1-o).join("0")+y4e(e,Math.max(0,t+o-1))[0]}function Tyn(e,t){var r=y4e(e,t);if(!r)return e+"";var a=r[0],s=r[1];return s<0?"0."+new Array(-s).join("0")+a:a.length>s+1?a.slice(0,s+1)+"."+a.slice(s+1):a+new Array(s-a.length+2).join("0")}const Cyn={"%":(e,t)=>(e*100).toFixed(t),b:e=>Math.round(e).toString(2),c:e=>e+"",d:Jli,e:(e,t)=>e.toExponential(t),f:(e,t)=>e.toFixed(t),g:(e,t)=>e.toPrecision(t),o:e=>Math.round(e).toString(8),p:(e,t)=>Tyn(e*100,t),r:Tyn,s:ici,X:e=>Math.round(e).toString(16).toUpperCase(),x:e=>Math.round(e).toString(16)};function Ayn(e){return e}var kyn=Array.prototype.map,Ryn=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function aci(e){var t=e.grouping===void 0||e.thousands===void 0?Ayn:eci(kyn.call(e.grouping,Number),e.thousands+""),r=e.currency===void 0?"":e.currency[0]+"",a=e.currency===void 0?"":e.currency[1]+"",s=e.decimal===void 0?".":e.decimal+"",o=e.numerals===void 0?Ayn:tci(kyn.call(e.numerals,String)),u=e.percent===void 0?"%":e.percent+"",h=e.minus===void 0?"−":e.minus+"",f=e.nan===void 0?"NaN":e.nan+"";function p(b){b=v4e(b);var _=b.fill,w=b.align,S=b.sign,C=b.symbol,A=b.zero,k=b.width,I=b.comma,N=b.precision,L=b.trim,P=b.type;P==="n"?(I=!0,P="g"):Cyn[P]||(N===void 0&&(N=12),L=!0,P="g"),(A||_==="0"&&w==="=")&&(A=!0,_="0",w="=");var M=C==="$"?r:C==="#"&&/[boxX]/.test(P)?"0"+P.toLowerCase():"",F=C==="$"?a:/[%p]/.test(P)?u:"",U=Cyn[P],$=/[defgprs%]/.test(P);N=N===void 0?6:/[gprs]/.test(P)?Math.max(1,Math.min(21,N)):Math.max(0,Math.min(20,N));function G(B){var Z=M,z=F,Y,W,Q;if(P==="c")z=U(B)+z,B="";else{B=+B;var V=B<0||1/B<0;if(B=isNaN(B)?f:U(Math.abs(B),N),L&&(B=rci(B)),V&&+B==0&&S!=="+"&&(V=!1),Z=(V?S==="("?S:h:S==="-"||S==="("?"":S)+Z,z=(P==="s"?Ryn[8+fDn/3]:"")+z+(V&&S==="("?")":""),$){for(Y=-1,W=B.length;++YQ||Q>57){z=(Q===46?s+B.slice(Y+1):B.slice(Y))+z,B=B.slice(0,Y);break}}}I&&!A&&(B=t(B,1/0));var j=Z.length+B.length+z.length,ee=j>1)+Z+B+z+ee.slice(j);break;default:B=ee+Z+B+z;break}return o(B)}return G.toString=function(){return b+""},G}function m(b,_){var w=p((b=v4e(b),b.type="f",b)),S=Math.max(-8,Math.min(8,Math.floor(kj(_)/3)))*3,C=Math.pow(10,-S),A=Ryn[8+S/3];return function(k){return w(C*k)+A}}return{format:p,formatPrefix:m}}var K_e,PB,pDn;sci({thousands:",",grouping:[3],currency:["$",""]});function sci(e){return K_e=aci(e),PB=K_e.format,pDn=K_e.formatPrefix,K_e}function oci(e){return Math.max(0,-kj(Math.abs(e)))}function lci(e,t){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(kj(t)/3)))*3-kj(Math.abs(e)))}function cci(e,t){return e=Math.abs(e),t=Math.abs(t)-e,Math.max(0,kj(t)-kj(e))+1}function uci(e){var t=0,r=e.children,a=r&&r.length;if(!a)t=1;else for(;--a>=0;)t+=r[a].value;e.value=t}function hci(){return this.eachAfter(uci)}function dci(e,t){let r=-1;for(const a of this)e.call(t,a,++r,this);return this}function fci(e,t){for(var r=this,a=[r],s,o,u=-1;r=a.pop();)if(e.call(t,r,++u,this),s=r.children)for(o=s.length-1;o>=0;--o)a.push(s[o]);return this}function pci(e,t){for(var r=this,a=[r],s=[],o,u,h,f=-1;r=a.pop();)if(s.push(r),o=r.children)for(u=0,h=o.length;u=0;)r+=a[s].value;t.value=r})}function bci(e){return this.eachBefore(function(t){t.children&&t.children.sort(e)})}function yci(e){for(var t=this,r=vci(t,e),a=[t];t!==r;)t=t.parent,a.push(t);for(var s=a.length;e!==r;)a.splice(s,0,e),e=e.parent;return a}function vci(e,t){if(e===t)return e;var r=e.ancestors(),a=t.ancestors(),s=null;for(e=r.pop(),t=a.pop();e===t;)s=e,e=r.pop(),t=a.pop();return s}function _ci(){for(var e=this,t=[e];e=e.parent;)t.push(e);return t}function wci(){return Array.from(this)}function Eci(){var e=[];return this.eachBefore(function(t){t.children||e.push(t)}),e}function xci(){var e=this,t=[];return e.each(function(r){r!==e&&t.push({source:r.parent,target:r})}),t}function*Sci(){var e=this,t,r=[e],a,s,o;do for(t=r.reverse(),r=[];e=t.pop();)if(yield e,a=e.children)for(s=0,o=a.length;s=0;--h)s.push(o=u[h]=new _4e(u[h])),o.parent=a,o.depth=a.depth+1;return r.eachBefore(Rci)}function Tci(){return e1t(this).eachBefore(kci)}function Cci(e){return e.children}function Aci(e){return Array.isArray(e)?e[1]:null}function kci(e){e.data.value!==void 0&&(e.value=e.data.value),e.data=e.data.data}function Rci(e){var t=0;do e.height=t;while((e=e.parent)&&e.height<++t)}function _4e(e){this.data=e,this.depth=this.height=0,this.parent=null}_4e.prototype=e1t.prototype={constructor:_4e,count:hci,each:dci,eachAfter:pci,eachBefore:fci,find:gci,sum:mci,sort:bci,path:yci,ancestors:_ci,descendants:wci,leaves:Eci,links:xci,copy:Tci,[Symbol.iterator]:Sci};function Ici(e){if(typeof e!="function")throw new Error;return e}function Dre(){return 0}function Mre(e){return function(){return e}}function Nci(e){e.x0=Math.round(e.x0),e.y0=Math.round(e.y0),e.x1=Math.round(e.x1),e.y1=Math.round(e.y1)}function Oci(e,t,r,a,s){for(var o=e.children,u,h=-1,f=o.length,p=e.value&&(a-t)/e.value;++hI&&(I=p),M=A*A*P,N=Math.max(I/M,M/k),N>L){A-=p;break}L=N}u.push(f={value:A,dice:w1?a:1)},r}(Dci);function Bci(){var e=Pci,t=!1,r=1,a=1,s=[0],o=Dre,u=Dre,h=Dre,f=Dre,p=Dre;function m(_){return _.x0=_.y0=0,_.x1=r,_.y1=a,_.eachBefore(b),s=[0],t&&_.eachBefore(Nci),_}function b(_){var w=s[_.depth],S=_.x0+w,C=_.y0+w,A=_.x1-w,k=_.y1-w;At&&(r=e,e=t,t=r),function(a){return Math.max(e,Math.min(t,a))}}function zci(e,t,r){var a=e[0],s=e[1],o=t[0],u=t[1];return s2?Gci:zci,f=p=null,b}function b(_){return _==null||isNaN(_=+_)?o:(f||(f=h(e.map(a),t,r)))(a(u(_)))}return b.invert=function(_){return u(s((p||(p=h(t,e.map(a),D3)))(_)))},b.domain=function(_){return arguments.length?(e=Array.from(_,$ci),m()):e.slice()},b.range=function(_){return arguments.length?(t=Array.from(_),m()):t.slice()},b.rangeRound=function(_){return t=Array.from(_),r=koi,m()},b.clamp=function(_){return arguments.length?(u=_?!0:kV,m()):u!==kV},b.interpolate=function(_){return arguments.length?(r=_,m()):r},b.unknown=function(_){return arguments.length?(o=_,b):o},function(_,w){return a=_,s=w,m()}}function mDn(){return qci()(kV,kV)}function Hci(e,t,r,a){var s=wot(e,t,r),o;switch(a=v4e(a??",f"),a.type){case"s":{var u=Math.max(Math.abs(e),Math.abs(t));return a.precision==null&&!isNaN(o=lci(s,u))&&(a.precision=o),pDn(a,u)}case"":case"e":case"g":case"p":case"r":{a.precision==null&&!isNaN(o=cci(s,Math.max(Math.abs(e),Math.abs(t))))&&(a.precision=o-(a.type==="e"));break}case"f":case"%":{a.precision==null&&!isNaN(o=oci(s))&&(a.precision=o-(a.type==="%")*2);break}}return PB(a)}function Vci(e){var t=e.domain;return e.ticks=function(r){var a=t();return pai(a[0],a[a.length-1],r??10)},e.tickFormat=function(r,a){var s=t();return Hci(s[0],s[s.length-1],r??10,a)},e.nice=function(r){r==null&&(r=10);var a=t(),s=0,o=a.length-1,u=a[s],h=a[o],f,p,m=10;for(h0;){if(p=_ot(u,h,r),p===f)return a[s]=u,a[o]=h,t(a);if(p>0)u=Math.floor(u/p)*p,h=Math.ceil(h/p)*p;else if(p<0)u=Math.ceil(u*p)/p,h=Math.floor(h*p)/p;else break;f=p}return e},e}function sT(){var e=mDn();return e.copy=function(){return gDn(e,sT())},oAe.apply(e,arguments),Vci(e)}function Yci(e,t){e=e.slice();var r=0,a=e.length-1,s=e[r],o=e[a],u;return o(e(o=new Date(+o)),o),s.ceil=o=>(e(o=new Date(o-1)),t(o,1),e(o),o),s.round=o=>{const u=s(o),h=s.ceil(o);return o-u(t(o=new Date(+o),u==null?1:Math.floor(u)),o),s.range=(o,u,h)=>{const f=[];if(o=s.ceil(o),h=h==null?1:Math.floor(h),!(o0))return f;let p;do f.push(p=new Date(+o)),t(o,h),e(o);while(pFp(u=>{if(u>=u)for(;e(u),!o(u);)u.setTime(u-1)},(u,h)=>{if(u>=u)if(h<0)for(;++h<=0;)for(;t(u,-1),!o(u););else for(;--h>=0;)for(;t(u,1),!o(u););}),r&&(s.count=(o,u)=>(ytt.setTime(+o),vtt.setTime(+u),e(ytt),e(vtt),Math.floor(r(ytt,vtt))),s.every=o=>(o=Math.floor(o),!isFinite(o)||!(o>0)?null:o>1?s.filter(a?u=>a(u)%o===0:u=>s.count(0,u)%o===0):s)),s}const VO=Fp(()=>{},(e,t)=>{e.setTime(+e+t)},(e,t)=>t-e);VO.every=e=>(e=Math.floor(e),!isFinite(e)||!(e>0)?null:e>1?Fp(t=>{t.setTime(Math.floor(t/e)*e)},(t,r)=>{t.setTime(+t+r*e)},(t,r)=>(r-t)/e):VO);VO.range;const C7=1e3,aS=C7*60,A7=aS*60,eR=A7*24,t1t=eR*7,Oyn=eR*30,_tt=eR*365,WC=Fp(e=>{e.setTime(e-e.getMilliseconds())},(e,t)=>{e.setTime(+e+t*C7)},(e,t)=>(t-e)/C7,e=>e.getUTCSeconds());WC.range;const DF=Fp(e=>{e.setTime(e-e.getMilliseconds()-e.getSeconds()*C7)},(e,t)=>{e.setTime(+e+t*aS)},(e,t)=>(t-e)/aS,e=>e.getMinutes());DF.range;const jci=Fp(e=>{e.setUTCSeconds(0,0)},(e,t)=>{e.setTime(+e+t*aS)},(e,t)=>(t-e)/aS,e=>e.getUTCMinutes());jci.range;const MF=Fp(e=>{e.setTime(e-e.getMilliseconds()-e.getSeconds()*C7-e.getMinutes()*aS)},(e,t)=>{e.setTime(+e+t*A7)},(e,t)=>(t-e)/A7,e=>e.getHours());MF.range;const Wci=Fp(e=>{e.setUTCMinutes(0,0,0)},(e,t)=>{e.setTime(+e+t*A7)},(e,t)=>(t-e)/A7,e=>e.getUTCHours());Wci.range;const tR=Fp(e=>e.setHours(0,0,0,0),(e,t)=>e.setDate(e.getDate()+t),(e,t)=>(t-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*aS)/eR,e=>e.getDate()-1);tR.range;const n1t=Fp(e=>{e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCDate(e.getUTCDate()+t)},(e,t)=>(t-e)/eR,e=>e.getUTCDate()-1);n1t.range;const Kci=Fp(e=>{e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCDate(e.getUTCDate()+t)},(e,t)=>(t-e)/eR,e=>Math.floor(e/eR));Kci.range;function S$(e){return Fp(t=>{t.setDate(t.getDate()-(t.getDay()+7-e)%7),t.setHours(0,0,0,0)},(t,r)=>{t.setDate(t.getDate()+r*7)},(t,r)=>(r-t-(r.getTimezoneOffset()-t.getTimezoneOffset())*aS)/t1t)}const MW=S$(0),Rj=S$(1),r1t=S$(2),i1t=S$(3),YO=S$(4),a1t=S$(5),s1t=S$(6);MW.range;Rj.range;r1t.range;i1t.range;YO.range;a1t.range;s1t.range;function T$(e){return Fp(t=>{t.setUTCDate(t.getUTCDate()-(t.getUTCDay()+7-e)%7),t.setUTCHours(0,0,0,0)},(t,r)=>{t.setUTCDate(t.getUTCDate()+r*7)},(t,r)=>(r-t)/t1t)}const bDn=T$(0),w4e=T$(1),Xci=T$(2),Qci=T$(3),Ij=T$(4),Zci=T$(5),Jci=T$(6);bDn.range;w4e.range;Xci.range;Qci.range;Ij.range;Zci.range;Jci.range;const PF=Fp(e=>{e.setDate(1),e.setHours(0,0,0,0)},(e,t)=>{e.setMonth(e.getMonth()+t)},(e,t)=>t.getMonth()-e.getMonth()+(t.getFullYear()-e.getFullYear())*12,e=>e.getMonth());PF.range;const eui=Fp(e=>{e.setUTCDate(1),e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCMonth(e.getUTCMonth()+t)},(e,t)=>t.getUTCMonth()-e.getUTCMonth()+(t.getUTCFullYear()-e.getUTCFullYear())*12,e=>e.getUTCMonth());eui.range;const nR=Fp(e=>{e.setMonth(0,1),e.setHours(0,0,0,0)},(e,t)=>{e.setFullYear(e.getFullYear()+t)},(e,t)=>t.getFullYear()-e.getFullYear(),e=>e.getFullYear());nR.every=e=>!isFinite(e=Math.floor(e))||!(e>0)?null:Fp(t=>{t.setFullYear(Math.floor(t.getFullYear()/e)*e),t.setMonth(0,1),t.setHours(0,0,0,0)},(t,r)=>{t.setFullYear(t.getFullYear()+r*e)});nR.range;const BF=Fp(e=>{e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCFullYear(e.getUTCFullYear()+t)},(e,t)=>t.getUTCFullYear()-e.getUTCFullYear(),e=>e.getUTCFullYear());BF.every=e=>!isFinite(e=Math.floor(e))||!(e>0)?null:Fp(t=>{t.setUTCFullYear(Math.floor(t.getUTCFullYear()/e)*e),t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},(t,r)=>{t.setUTCFullYear(t.getUTCFullYear()+r*e)});BF.range;function tui(e,t,r,a,s,o){const u=[[WC,1,C7],[WC,5,5*C7],[WC,15,15*C7],[WC,30,30*C7],[o,1,aS],[o,5,5*aS],[o,15,15*aS],[o,30,30*aS],[s,1,A7],[s,3,3*A7],[s,6,6*A7],[s,12,12*A7],[a,1,eR],[a,2,2*eR],[r,1,t1t],[t,1,Oyn],[t,3,3*Oyn],[e,1,_tt]];function h(p,m,b){const _=mA).right(u,_);if(w===u.length)return e.every(wot(p/_tt,m/_tt,b));if(w===0)return VO.every(Math.max(wot(p,m,b),1));const[S,C]=u[_/u[w-1][2]53)return null;"w"in we||(we.w=1),"Z"in we?(Ie=Ett(Pre(we.y,0,1)),Le=Ie.getUTCDay(),Ie=Le>4||Le===0?w4e.ceil(Ie):w4e(Ie),Ie=n1t.offset(Ie,(we.V-1)*7),we.y=Ie.getUTCFullYear(),we.m=Ie.getUTCMonth(),we.d=Ie.getUTCDate()+(we.w+6)%7):(Ie=wtt(Pre(we.y,0,1)),Le=Ie.getDay(),Ie=Le>4||Le===0?Rj.ceil(Ie):Rj(Ie),Ie=tR.offset(Ie,(we.V-1)*7),we.y=Ie.getFullYear(),we.m=Ie.getMonth(),we.d=Ie.getDate()+(we.w+6)%7)}else("W"in we||"U"in we)&&("w"in we||(we.w="u"in we?we.u%7:"W"in we?1:0),Le="Z"in we?Ett(Pre(we.y,0,1)).getUTCDay():wtt(Pre(we.y,0,1)).getDay(),we.m=0,we.d="W"in we?(we.w+6)%7+we.W*7-(Le+5)%7:we.w+we.U*7-(Le+6)%7);return"Z"in we?(we.H+=we.Z/100|0,we.M+=we.Z%100,Ett(we)):wtt(we)}}function U(ye,Ee,he,we){for(var Ce=0,Ie=Ee.length,Le=he.length,Fe,Ve;Ce=Le)return-1;if(Fe=Ee.charCodeAt(Ce++),Fe===37){if(Fe=Ee.charAt(Ce++),Ve=P[Fe in Lyn?Ee.charAt(Ce++):Fe],!Ve||(we=Ve(ye,he,we))<0)return-1}else if(Fe!=he.charCodeAt(we++))return-1}return we}function $(ye,Ee,he){var we=p.exec(Ee.slice(he));return we?(ye.p=m.get(we[0].toLowerCase()),he+we[0].length):-1}function G(ye,Ee,he){var we=w.exec(Ee.slice(he));return we?(ye.w=S.get(we[0].toLowerCase()),he+we[0].length):-1}function B(ye,Ee,he){var we=b.exec(Ee.slice(he));return we?(ye.w=_.get(we[0].toLowerCase()),he+we[0].length):-1}function Z(ye,Ee,he){var we=k.exec(Ee.slice(he));return we?(ye.m=I.get(we[0].toLowerCase()),he+we[0].length):-1}function z(ye,Ee,he){var we=C.exec(Ee.slice(he));return we?(ye.m=A.get(we[0].toLowerCase()),he+we[0].length):-1}function Y(ye,Ee,he){return U(ye,t,Ee,he)}function W(ye,Ee,he){return U(ye,r,Ee,he)}function Q(ye,Ee,he){return U(ye,a,Ee,he)}function V(ye){return u[ye.getDay()]}function j(ye){return o[ye.getDay()]}function ee(ye){return f[ye.getMonth()]}function te(ye){return h[ye.getMonth()]}function ne(ye){return s[+(ye.getHours()>=12)]}function se(ye){return 1+~~(ye.getMonth()/3)}function ie(ye){return u[ye.getUTCDay()]}function ge(ye){return o[ye.getUTCDay()]}function ce(ye){return f[ye.getUTCMonth()]}function be(ye){return h[ye.getUTCMonth()]}function ve(ye){return s[+(ye.getUTCHours()>=12)]}function De(ye){return 1+~~(ye.getUTCMonth()/3)}return{format:function(ye){var Ee=M(ye+="",N);return Ee.toString=function(){return ye},Ee},parse:function(ye){var Ee=F(ye+="",!1);return Ee.toString=function(){return ye},Ee},utcFormat:function(ye){var Ee=M(ye+="",L);return Ee.toString=function(){return ye},Ee},utcParse:function(ye){var Ee=F(ye+="",!0);return Ee.toString=function(){return ye},Ee}}}var Lyn={"-":"",_:" ",0:"0"},Lg=/^\s*\d+/,aui=/^%/,sui=/[\\^$*+?|[\]().{}]/g;function fu(e,t,r){var a=e<0?"-":"",s=(a?-e:e)+"",o=s.length;return a+(o[t.toLowerCase(),r]))}function lui(e,t,r){var a=Lg.exec(t.slice(r,r+1));return a?(e.w=+a[0],r+a[0].length):-1}function cui(e,t,r){var a=Lg.exec(t.slice(r,r+1));return a?(e.u=+a[0],r+a[0].length):-1}function uui(e,t,r){var a=Lg.exec(t.slice(r,r+2));return a?(e.U=+a[0],r+a[0].length):-1}function hui(e,t,r){var a=Lg.exec(t.slice(r,r+2));return a?(e.V=+a[0],r+a[0].length):-1}function dui(e,t,r){var a=Lg.exec(t.slice(r,r+2));return a?(e.W=+a[0],r+a[0].length):-1}function Dyn(e,t,r){var a=Lg.exec(t.slice(r,r+4));return a?(e.y=+a[0],r+a[0].length):-1}function Myn(e,t,r){var a=Lg.exec(t.slice(r,r+2));return a?(e.y=+a[0]+(+a[0]>68?1900:2e3),r+a[0].length):-1}function fui(e,t,r){var a=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(t.slice(r,r+6));return a?(e.Z=a[1]?0:-(a[2]+(a[3]||"00")),r+a[0].length):-1}function pui(e,t,r){var a=Lg.exec(t.slice(r,r+1));return a?(e.q=a[0]*3-3,r+a[0].length):-1}function gui(e,t,r){var a=Lg.exec(t.slice(r,r+2));return a?(e.m=a[0]-1,r+a[0].length):-1}function Pyn(e,t,r){var a=Lg.exec(t.slice(r,r+2));return a?(e.d=+a[0],r+a[0].length):-1}function mui(e,t,r){var a=Lg.exec(t.slice(r,r+3));return a?(e.m=0,e.d=+a[0],r+a[0].length):-1}function Byn(e,t,r){var a=Lg.exec(t.slice(r,r+2));return a?(e.H=+a[0],r+a[0].length):-1}function bui(e,t,r){var a=Lg.exec(t.slice(r,r+2));return a?(e.M=+a[0],r+a[0].length):-1}function yui(e,t,r){var a=Lg.exec(t.slice(r,r+2));return a?(e.S=+a[0],r+a[0].length):-1}function vui(e,t,r){var a=Lg.exec(t.slice(r,r+3));return a?(e.L=+a[0],r+a[0].length):-1}function _ui(e,t,r){var a=Lg.exec(t.slice(r,r+6));return a?(e.L=Math.floor(a[0]/1e3),r+a[0].length):-1}function wui(e,t,r){var a=aui.exec(t.slice(r,r+1));return a?r+a[0].length:-1}function Eui(e,t,r){var a=Lg.exec(t.slice(r));return a?(e.Q=+a[0],r+a[0].length):-1}function xui(e,t,r){var a=Lg.exec(t.slice(r));return a?(e.s=+a[0],r+a[0].length):-1}function Fyn(e,t){return fu(e.getDate(),t,2)}function Sui(e,t){return fu(e.getHours(),t,2)}function Tui(e,t){return fu(e.getHours()%12||12,t,2)}function Cui(e,t){return fu(1+tR.count(nR(e),e),t,3)}function yDn(e,t){return fu(e.getMilliseconds(),t,3)}function Aui(e,t){return yDn(e,t)+"000"}function kui(e,t){return fu(e.getMonth()+1,t,2)}function Rui(e,t){return fu(e.getMinutes(),t,2)}function Iui(e,t){return fu(e.getSeconds(),t,2)}function Nui(e){var t=e.getDay();return t===0?7:t}function Oui(e,t){return fu(MW.count(nR(e)-1,e),t,2)}function vDn(e){var t=e.getDay();return t>=4||t===0?YO(e):YO.ceil(e)}function Lui(e,t){return e=vDn(e),fu(YO.count(nR(e),e)+(nR(e).getDay()===4),t,2)}function Dui(e){return e.getDay()}function Mui(e,t){return fu(Rj.count(nR(e)-1,e),t,2)}function Pui(e,t){return fu(e.getFullYear()%100,t,2)}function Bui(e,t){return e=vDn(e),fu(e.getFullYear()%100,t,2)}function Fui(e,t){return fu(e.getFullYear()%1e4,t,4)}function $ui(e,t){var r=e.getDay();return e=r>=4||r===0?YO(e):YO.ceil(e),fu(e.getFullYear()%1e4,t,4)}function Uui(e){var t=e.getTimezoneOffset();return(t>0?"-":(t*=-1,"+"))+fu(t/60|0,"0",2)+fu(t%60,"0",2)}function $yn(e,t){return fu(e.getUTCDate(),t,2)}function zui(e,t){return fu(e.getUTCHours(),t,2)}function Gui(e,t){return fu(e.getUTCHours()%12||12,t,2)}function qui(e,t){return fu(1+n1t.count(BF(e),e),t,3)}function _Dn(e,t){return fu(e.getUTCMilliseconds(),t,3)}function Hui(e,t){return _Dn(e,t)+"000"}function Vui(e,t){return fu(e.getUTCMonth()+1,t,2)}function Yui(e,t){return fu(e.getUTCMinutes(),t,2)}function jui(e,t){return fu(e.getUTCSeconds(),t,2)}function Wui(e){var t=e.getUTCDay();return t===0?7:t}function Kui(e,t){return fu(bDn.count(BF(e)-1,e),t,2)}function wDn(e){var t=e.getUTCDay();return t>=4||t===0?Ij(e):Ij.ceil(e)}function Xui(e,t){return e=wDn(e),fu(Ij.count(BF(e),e)+(BF(e).getUTCDay()===4),t,2)}function Qui(e){return e.getUTCDay()}function Zui(e,t){return fu(w4e.count(BF(e)-1,e),t,2)}function Jui(e,t){return fu(e.getUTCFullYear()%100,t,2)}function ehi(e,t){return e=wDn(e),fu(e.getUTCFullYear()%100,t,2)}function thi(e,t){return fu(e.getUTCFullYear()%1e4,t,4)}function nhi(e,t){var r=e.getUTCDay();return e=r>=4||r===0?Ij(e):Ij.ceil(e),fu(e.getUTCFullYear()%1e4,t,4)}function rhi(){return"+0000"}function Uyn(){return"%"}function zyn(e){return+e}function Gyn(e){return Math.floor(+e/1e3)}var $H,Nj;ihi({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});function ihi(e){return $H=iui(e),Nj=$H.format,$H.parse,$H.utcFormat,$H.utcParse,$H}function ahi(e){return new Date(e)}function shi(e){return e instanceof Date?+e:+new Date(+e)}function EDn(e,t,r,a,s,o,u,h,f,p){var m=mDn(),b=m.invert,_=m.domain,w=p(".%L"),S=p(":%S"),C=p("%I:%M"),A=p("%I %p"),k=p("%a %d"),I=p("%b %d"),N=p("%B"),L=p("%Y");function P(M){return(f(M)1?0:e<-1?moe:Math.acos(e)}function Hyn(e){return e>=1?E4e:e<=-1?-E4e:Math.asin(e)}function SDn(e){let t=3;return e.digits=function(r){if(!arguments.length)return t;if(r==null)t=null;else{const a=Math.floor(r);if(!(a>=0))throw new RangeError(`invalid digits: ${r}`);t=a}return e},()=>new Wli(t)}function uhi(e){return e.innerRadius}function hhi(e){return e.outerRadius}function dhi(e){return e.startAngle}function fhi(e){return e.endAngle}function phi(e){return e&&e.padAngle}function ghi(e,t,r,a,s,o,u,h){var f=r-e,p=a-t,m=u-s,b=h-o,_=b*f-m*p;if(!(_*_Y*Y+W*W&&(U=G,$=B),{cx:U,cy:$,x01:-m,y01:-b,x11:U*(s/P-1),y11:$*(s/P-1)}}function _S(){var e=uhi,t=hhi,r=j0(0),a=null,s=dhi,o=fhi,u=phi,h=null,f=SDn(p);function p(){var m,b,_=+e.apply(this,arguments),w=+t.apply(this,arguments),S=s.apply(this,arguments)-E4e,C=o.apply(this,arguments)-E4e,A=qyn(C-S),k=C>S;if(h||(h=m=f()),w<_&&(b=w,w=_,_=b),!(w>gb))h.moveTo(0,0);else if(A>ixe-gb)h.moveTo(w*pB(S),w*pC(S)),h.arc(0,0,w,S,C,!k),_>gb&&(h.moveTo(_*pB(C),_*pC(C)),h.arc(0,0,_,C,S,k));else{var I=S,N=C,L=S,P=C,M=A,F=A,U=u.apply(this,arguments)/2,$=U>gb&&(a?+a.apply(this,arguments):RV(_*_+w*w)),G=xtt(qyn(w-_)/2,+r.apply(this,arguments)),B=G,Z=G,z,Y;if($>gb){var W=Hyn($/_*pC(U)),Q=Hyn($/w*pC(U));(M-=W*2)>gb?(W*=k?1:-1,L+=W,P-=W):(M=0,L=P=(S+C)/2),(F-=Q*2)>gb?(Q*=k?1:-1,I+=Q,N-=Q):(F=0,I=N=(S+C)/2)}var V=w*pB(I),j=w*pC(I),ee=_*pB(P),te=_*pC(P);if(G>gb){var ne=w*pB(N),se=w*pC(N),ie=_*pB(L),ge=_*pC(L),ce;if(Agb?Z>gb?(z=X_e(ie,ge,V,j,w,Z,k),Y=X_e(ne,se,ee,te,w,Z,k),h.moveTo(z.cx+z.x01,z.cy+z.y01),Zgb)||!(M>gb)?h.lineTo(ee,te):B>gb?(z=X_e(ee,te,ne,se,_,-B,k),Y=X_e(V,j,ie,ge,_,-B,k),h.lineTo(z.cx+z.x01,z.cy+z.y01),Be?1:t>=e?0:NaN}function vhi(e){return e}function ADn(){var e=vhi,t=yhi,r=null,a=j0(0),s=j0(ixe),o=j0(0);function u(h){var f,p=(h=TDn(h)).length,m,b,_=0,w=new Array(p),S=new Array(p),C=+a.apply(this,arguments),A=Math.min(ixe,Math.max(-ixe,s.apply(this,arguments)-C)),k,I=Math.min(Math.abs(A)/p,o.apply(this,arguments)),N=I*(A<0?-1:1),L;for(f=0;f0&&(_+=L);for(t!=null?w.sort(function(P,M){return t(S[P],S[M])}):r!=null&&w.sort(function(P,M){return r(h[P],h[M])}),f=0,b=_?(A-p*N)/_:0;f0?L*b:0)+N,S[m]={data:h[m],index:f,value:L,startAngle:C,endAngle:k,padAngle:I};return S}return u.value=function(h){return arguments.length?(e=typeof h=="function"?h:j0(+h),u):e},u.sortValues=function(h){return arguments.length?(t=h,r=null,u):t},u.sort=function(h){return arguments.length?(r=h,t=null,u):r},u.startAngle=function(h){return arguments.length?(a=typeof h=="function"?h:j0(+h),u):a},u.endAngle=function(h){return arguments.length?(s=typeof h=="function"?h:j0(+h),u):s},u.padAngle=function(h){return arguments.length?(o=typeof h=="function"?h:j0(+h),u):o},u}class kDn{constructor(t,r){this._context=t,this._x=r}areaStart(){this._line=0}areaEnd(){this._line=NaN}lineStart(){this._point=0}lineEnd(){(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line}point(t,r){switch(t=+t,r=+r,this._point){case 0:{this._point=1,this._line?this._context.lineTo(t,r):this._context.moveTo(t,r);break}case 1:this._point=2;default:{this._x?this._context.bezierCurveTo(this._x0=(this._x0+t)/2,this._y0,this._x0,r,t,r):this._context.bezierCurveTo(this._x0,this._y0=(this._y0+r)/2,t,this._y0,t,r);break}}this._x0=t,this._y0=r}}function l1t(e){return new kDn(e,!0)}function c1t(e){return new kDn(e,!1)}function jO(){}function x4e(e,t,r){e._context.bezierCurveTo((2*e._x0+e._x1)/3,(2*e._y0+e._y1)/3,(e._x0+2*e._x1)/3,(e._y0+2*e._y1)/3,(e._x0+4*e._x1+t)/6,(e._y0+4*e._y1+r)/6)}function lAe(e){this._context=e}lAe.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:x4e(this,this._x1,this._y1);case 2:this._context.lineTo(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;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:x4e(this,e,t);break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}};function j3(e){return new lAe(e)}function RDn(e){this._context=e}RDn.prototype={areaStart:jO,areaEnd:jO,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:{this._context.moveTo(this._x2,this._y2),this._context.closePath();break}case 2:{this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break}case 3:{this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4);break}}},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._x2=e,this._y2=t;break;case 1:this._point=2,this._x3=e,this._y3=t;break;case 2:this._point=3,this._x4=e,this._y4=t,this._context.moveTo((this._x0+4*this._x1+e)/6,(this._y0+4*this._y1+t)/6);break;default:x4e(this,e,t);break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}};function IDn(e){return new RDn(e)}function NDn(e){this._context=e}NDn.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=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;var r=(this._x0+4*this._x1+e)/6,a=(this._y0+4*this._y1+t)/6;this._line?this._context.lineTo(r,a):this._context.moveTo(r,a);break;case 3:this._point=4;default:x4e(this,e,t);break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}};function ODn(e){return new NDn(e)}function LDn(e,t){this._basis=new lAe(e),this._beta=t}LDn.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 a=e[0],s=t[0],o=e[r]-a,u=t[r]-s,h=-1,f;++h<=r;)f=h/r,this._basis.point(this._beta*e[h]+(1-this._beta)*(a+f*o),this._beta*t[h]+(1-this._beta)*(s+f*u));this._x=this._y=null,this._basis.lineEnd()},point:function(e,t){this._x.push(+e),this._y.push(+t)}};const DDn=function e(t){function r(a){return t===1?new lAe(a):new LDn(a,t)}return r.beta=function(a){return e(+a)},r}(.85);function S4e(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 u1t(e,t){this._context=e,this._k=(1-t)/6}u1t.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:S4e(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:S4e(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 h1t=function e(t){function r(a){return new u1t(a,t)}return r.tension=function(a){return e(+a)},r}(0);function d1t(e,t){this._context=e,this._k=(1-t)/6}d1t.prototype={areaStart:jO,areaEnd:jO,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:S4e(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 MDn=function e(t){function r(a){return new d1t(a,t)}return r.tension=function(a){return e(+a)},r}(0);function f1t(e,t){this._context=e,this._k=(1-t)/6}f1t.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:S4e(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 PDn=function e(t){function r(a){return new f1t(a,t)}return r.tension=function(a){return e(+a)},r}(0);function p1t(e,t,r){var a=e._x1,s=e._y1,o=e._x2,u=e._y2;if(e._l01_a>gb){var h=2*e._l01_2a+3*e._l01_a*e._l12_a+e._l12_2a,f=3*e._l01_a*(e._l01_a+e._l12_a);a=(a*h-e._x0*e._l12_2a+e._x2*e._l01_2a)/f,s=(s*h-e._y0*e._l12_2a+e._y2*e._l01_2a)/f}if(e._l23_a>gb){var p=2*e._l23_2a+3*e._l23_a*e._l12_a+e._l12_2a,m=3*e._l23_a*(e._l23_a+e._l12_a);o=(o*p+e._x1*e._l23_2a-t*e._l12_2a)/m,u=(u*p+e._y1*e._l23_2a-r*e._l12_2a)/m}e._context.bezierCurveTo(a,s,o,u,e._x2,e._y2)}function BDn(e,t){this._context=e,this._alpha=t}BDn.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,a=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+a*a,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:p1t(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 g1t=function e(t){function r(a){return t?new BDn(a,t):new u1t(a,0)}return r.alpha=function(a){return e(+a)},r}(.5);function FDn(e,t){this._context=e,this._alpha=t}FDn.prototype={areaStart:jO,areaEnd:jO,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,a=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+a*a,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:p1t(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 $Dn=function e(t){function r(a){return t?new FDn(a,t):new d1t(a,0)}return r.alpha=function(a){return e(+a)},r}(.5);function UDn(e,t){this._context=e,this._alpha=t}UDn.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,a=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+a*a,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:p1t(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 zDn=function e(t){function r(a){return t?new UDn(a,t):new f1t(a,0)}return r.alpha=function(a){return e(+a)},r}(.5);function GDn(e){this._context=e}GDn.prototype={areaStart:jO,areaEnd:jO,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(e,t){e=+e,t=+t,this._point?this._context.lineTo(e,t):(this._point=1,this._context.moveTo(e,t))}};function qDn(e){return new GDn(e)}function Vyn(e){return e<0?-1:1}function Yyn(e,t,r){var a=e._x1-e._x0,s=t-e._x1,o=(e._y1-e._y0)/(a||s<0&&-0),u=(r-e._y1)/(s||a<0&&-0),h=(o*s+u*a)/(a+s);return(Vyn(o)+Vyn(u))*Math.min(Math.abs(o),Math.abs(u),.5*Math.abs(h))||0}function jyn(e,t){var r=e._x1-e._x0;return r?(3*(e._y1-e._y0)/r-t)/2:t}function Stt(e,t,r){var a=e._x0,s=e._y0,o=e._x1,u=e._y1,h=(o-a)/3;e._context.bezierCurveTo(a+h,s+h*t,o-h,u-h*r,o,u)}function T4e(e){this._context=e}T4e.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:Stt(this,this._t0,jyn(this,this._t0));break}(this._line||this._line!==0&&this._point===1)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){var r=NaN;if(e=+e,t=+t,!(e===this._x1&&t===this._y1)){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,Stt(this,jyn(this,r=Yyn(this,e,t)),r);break;default:Stt(this,this._t0,r=Yyn(this,e,t));break}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t,this._t0=r}}};function HDn(e){this._context=new VDn(e)}(HDn.prototype=Object.create(T4e.prototype)).point=function(e,t){T4e.prototype.point.call(this,t,e)};function VDn(e){this._context=e}VDn.prototype={moveTo:function(e,t){this._context.moveTo(t,e)},closePath:function(){this._context.closePath()},lineTo:function(e,t){this._context.lineTo(t,e)},bezierCurveTo:function(e,t,r,a,s,o){this._context.bezierCurveTo(t,e,a,r,o,s)}};function m1t(e){return new T4e(e)}function b1t(e){return new HDn(e)}function YDn(e){this._context=e}YDn.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var e=this._x,t=this._y,r=e.length;if(r)if(this._line?this._context.lineTo(e[0],t[0]):this._context.moveTo(e[0],t[0]),r===2)this._context.lineTo(e[1],t[1]);else for(var a=Wyn(e),s=Wyn(t),o=0,u=1;u=0;--t)s[t]=(u[t]-s[t+1])/o[t];for(o[r-1]=(e[r]+s[r-1])/2,t=0;t=0&&(this._t=1-this._t,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;default:{if(this._t<=0)this._context.lineTo(this._x,t),this._context.lineTo(e,t);else{var r=this._x*(1-this._t)+e*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,t)}break}}this._x=e,this._y=t}};function v1t(e){return new cAe(e,.5)}function _1t(e){return new cAe(e,0)}function w1t(e){return new cAe(e,1)}function Die(e,t,r){this.k=e,this.x=t,this.y=r}Die.prototype={constructor:Die,scale:function(e){return e===1?this:new Die(this.k*e,this.x,this.y)},translate:function(e,t){return e===0&t===0?this:new Die(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+")"}};Die.prototype;var bR=X(e=>{var s;const{securityLevel:t}=nn();let r=gn("body");if(t==="sandbox"){const u=((s=gn(`#i${e}`).node())==null?void 0:s.contentDocument)??document;r=gn(u.body)}return r.select(`#${e}`)},"selectSvgElement");function E1t(e){return typeof e>"u"||e===null}X(E1t,"isNothing");function jDn(e){return typeof e=="object"&&e!==null}X(jDn,"isObject");function WDn(e){return Array.isArray(e)?e:E1t(e)?[]:[e]}X(WDn,"toArray");function KDn(e,t){var r,a,s,o;if(t)for(o=Object.keys(t),r=0,a=o.length;rh&&(o=" ... ",t=a-h+o.length),r-a>h&&(u=" ...",r=a+h-u.length),{str:o+e.slice(t,r).replace(/\t/g,"→")+u,pos:a-t+o.length}}X(axe,"getLine");function sxe(e,t){return Cp.repeat(" ",t-e.length)+e}X(sxe,"padStart");function ZDn(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,a=[0],s=[],o,u=-1;o=r.exec(e.buffer);)s.push(o.index),a.push(o.index+o[0].length),e.position<=o.index&&u<0&&(u=a.length-2);u<0&&(u=a.length-1);var h="",f,p,m=Math.min(e.line+t.linesAfter,s.length).toString().length,b=t.maxLength-(t.indent+m+3);for(f=1;f<=t.linesBefore&&!(u-f<0);f++)p=axe(e.buffer,a[u-f],s[u-f],e.position-(a[u]-a[u-f]),b),h=Cp.repeat(" ",t.indent)+sxe((e.line-f+1).toString(),m)+" | "+p.str+` +`+h;for(p=axe(e.buffer,a[u],s[u],e.position,b),h+=Cp.repeat(" ",t.indent)+sxe((e.line+1).toString(),m)+" | "+p.str+` +`,h+=Cp.repeat("-",t.indent+m+3+p.pos)+`^ +`,f=1;f<=t.linesAfter&&!(u+f>=s.length);f++)p=axe(e.buffer,a[u+f],s[u+f],e.position-(a[u]-a[u+f]),b),h+=Cp.repeat(" ",t.indent)+sxe((e.line+f+1).toString(),m)+" | "+p.str+` +`;return h.replace(/\n$/,"")}X(ZDn,"makeSnippet");var Chi=ZDn,Ahi=["kind","multi","resolve","construct","instanceOf","predicate","represent","representName","defaultStyle","styleAliases"],khi=["scalar","sequence","mapping"];function JDn(e){var t={};return e!==null&&Object.keys(e).forEach(function(r){e[r].forEach(function(a){t[String(a)]=r})}),t}X(JDn,"compileStyleAliases");function eMn(e,t){if(t=t||{},Object.keys(t).forEach(function(r){if(Ahi.indexOf(r)===-1)throw new z2('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=JDn(t.styleAliases||null),khi.indexOf(this.kind)===-1)throw new z2('Unknown kind "'+this.kind+'" is specified for "'+e+'" YAML type.')}X(eMn,"Type$1");var Sb=eMn;function Dot(e,t){var r=[];return e[t].forEach(function(a){var s=r.length;r.forEach(function(o,u){o.tag===a.tag&&o.kind===a.kind&&o.multi===a.multi&&(s=u)}),r[s]=a}),r}X(Dot,"compileList");function tMn(){var e={scalar:{},sequence:{},mapping:{},fallback:{},multi:{scalar:[],sequence:[],mapping:[],fallback:[]}},t,r;function a(s){s.multi?(e.multi[s.kind].push(s),e.multi.fallback.push(s)):e[s.kind][s.tag]=e.fallback[s.tag]=s}for(X(a,"collectType"),t=0,r=arguments.length;t=0?"0b"+e.toString(2):"-0b"+e.toString(2).slice(1)},"binary"),octal:X(function(e){return e>=0?"0o"+e.toString(8):"-0o"+e.toString(8).slice(1)},"octal"),decimal:X(function(e){return e.toString(10)},"decimal"),hexadecimal:X(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"]}}),Bhi=new RegExp("^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$");function pMn(e){return!(e===null||!Bhi.test(e)||e[e.length-1]==="_")}X(pMn,"resolveYamlFloat");function gMn(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)}X(gMn,"constructYamlFloat");var Fhi=/^[-+]?[0-9]+e/;function mMn(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(Cp.isNegativeZero(e))return"-0.0";return r=e.toString(10),Fhi.test(r)?r.replace("e",".e"):r}X(mMn,"representYamlFloat");function bMn(e){return Object.prototype.toString.call(e)==="[object Number]"&&(e%1!==0||Cp.isNegativeZero(e))}X(bMn,"isFloat");var $hi=new Sb("tag:yaml.org,2002:float",{kind:"scalar",resolve:pMn,construct:gMn,predicate:bMn,represent:mMn,defaultStyle:"lowercase"}),yMn=Lhi.extend({implicit:[Dhi,Mhi,Phi,$hi]}),Uhi=yMn,vMn=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),_Mn=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 wMn(e){return e===null?!1:vMn.exec(e)!==null||_Mn.exec(e)!==null}X(wMn,"resolveYamlTimestamp");function EMn(e){var t,r,a,s,o,u,h,f=0,p=null,m,b,_;if(t=vMn.exec(e),t===null&&(t=_Mn.exec(e)),t===null)throw new Error("Date resolve error");if(r=+t[1],a=+t[2]-1,s=+t[3],!t[4])return new Date(Date.UTC(r,a,s));if(o=+t[4],u=+t[5],h=+t[6],t[7]){for(f=t[7].slice(0,3);f.length<3;)f+="0";f=+f}return t[9]&&(m=+t[10],b=+(t[11]||0),p=(m*60+b)*6e4,t[9]==="-"&&(p=-p)),_=new Date(Date.UTC(r,a,s,o,u,h,f)),p&&_.setTime(_.getTime()-p),_}X(EMn,"constructYamlTimestamp");function xMn(e){return e.toISOString()}X(xMn,"representYamlTimestamp");var zhi=new Sb("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:wMn,construct:EMn,instanceOf:Date,represent:xMn});function SMn(e){return e==="<<"||e===null}X(SMn,"resolveYamlMerge");var Ghi=new Sb("tag:yaml.org,2002:merge",{kind:"scalar",resolve:SMn}),S1t=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/= +\r`;function TMn(e){if(e===null)return!1;var t,r,a=0,s=e.length,o=S1t;for(r=0;r64)){if(t<0)return!1;a+=6}return a%8===0}X(TMn,"resolveYamlBinary");function CMn(e){var t,r,a=e.replace(/[\r\n=]/g,""),s=a.length,o=S1t,u=0,h=[];for(t=0;t>16&255),h.push(u>>8&255),h.push(u&255)),u=u<<6|o.indexOf(a.charAt(t));return r=s%4*6,r===0?(h.push(u>>16&255),h.push(u>>8&255),h.push(u&255)):r===18?(h.push(u>>10&255),h.push(u>>2&255)):r===12&&h.push(u>>4&255),new Uint8Array(h)}X(CMn,"constructYamlBinary");function AMn(e){var t="",r=0,a,s,o=e.length,u=S1t;for(a=0;a>18&63],t+=u[r>>12&63],t+=u[r>>6&63],t+=u[r&63]),r=(r<<8)+e[a];return s=o%3,s===0?(t+=u[r>>18&63],t+=u[r>>12&63],t+=u[r>>6&63],t+=u[r&63]):s===2?(t+=u[r>>10&63],t+=u[r>>4&63],t+=u[r<<2&63],t+=u[64]):s===1&&(t+=u[r>>2&63],t+=u[r<<4&63],t+=u[64],t+=u[64]),t}X(AMn,"representYamlBinary");function kMn(e){return Object.prototype.toString.call(e)==="[object Uint8Array]"}X(kMn,"isBinary");var qhi=new Sb("tag:yaml.org,2002:binary",{kind:"scalar",resolve:TMn,construct:CMn,predicate:kMn,represent:AMn}),Hhi=Object.prototype.hasOwnProperty,Vhi=Object.prototype.toString;function RMn(e){if(e===null)return!0;var t=[],r,a,s,o,u,h=e;for(r=0,a=h.length;r>10)+55296,(e-65536&1023)+56320)}X(qMn,"charFromCodepoint");var HMn=new Array(256),VMn=new Array(256);for(gB=0;gB<256;gB++)HMn[gB]=Pot(gB)?1:0,VMn[gB]=Pot(gB);var gB;function YMn(e,t){this.input=e,this.filename=t.filename||null,this.schema=t.schema||MMn,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=[]}X(YMn,"State$1");function T1t(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=Chi(r),new z2(t,r)}X(T1t,"generateError");function ks(e,t){throw T1t(e,t)}X(ks,"throwError");function boe(e,t){e.onWarning&&e.onWarning.call(null,T1t(e,t))}X(boe,"throwWarning");var Xyn={YAML:X(function(t,r,a){var s,o,u;t.version!==null&&ks(t,"duplication of %YAML directive"),a.length!==1&&ks(t,"YAML directive accepts exactly one argument"),s=/^([0-9]+)\.([0-9]+)$/.exec(a[0]),s===null&&ks(t,"ill-formed argument of the YAML directive"),o=parseInt(s[1],10),u=parseInt(s[2],10),o!==1&&ks(t,"unacceptable YAML version of the document"),t.version=a[0],t.checkLineBreaks=u<2,u!==1&&u!==2&&boe(t,"unsupported YAML version of the document")},"handleYamlDirective"),TAG:X(function(t,r,a){var s,o;a.length!==2&&ks(t,"TAG directive accepts exactly two arguments"),s=a[0],o=a[1],FMn.test(s)||ks(t,"ill-formed tag handle (first argument) of the TAG directive"),WO.call(t.tagMap,s)&&ks(t,'there is a previously declared suffix for "'+s+'" tag handle'),$Mn.test(o)||ks(t,"ill-formed tag prefix (second argument) of the TAG directive");try{o=decodeURIComponent(o)}catch{ks(t,"tag prefix is malformed: "+o)}t.tagMap[s]=o},"handleTagDirective")};function U7(e,t,r,a){var s,o,u,h;if(t1&&(e.result+=Cp.repeat(` +`,t-1))}X(hAe,"writeFoldedLines");function jMn(e,t,r){var a,s,o,u,h,f,p,m,b=e.kind,_=e.result,w;if(w=e.input.charCodeAt(e.position),Zy(w)||JB(w)||w===35||w===38||w===42||w===33||w===124||w===62||w===39||w===34||w===37||w===64||w===96||(w===63||w===45)&&(s=e.input.charCodeAt(e.position+1),Zy(s)||r&&JB(s)))return!1;for(e.kind="scalar",e.result="",o=u=e.position,h=!1;w!==0;){if(w===58){if(s=e.input.charCodeAt(e.position+1),Zy(s)||r&&JB(s))break}else if(w===35){if(a=e.input.charCodeAt(e.position-1),Zy(a))break}else{if(e.position===e.lineStart&&sce(e)||r&&JB(w))break;if(W3(w))if(f=e.line,p=e.lineStart,m=e.lineIndent,K0(e,!1,-1),e.lineIndent>=t){h=!0,w=e.input.charCodeAt(e.position);continue}else{e.position=u,e.line=f,e.lineStart=p,e.lineIndent=m;break}}h&&(U7(e,o,u,!1),hAe(e,e.line-f),o=u=e.position,h=!1),AO(w)||(u=e.position+1),w=e.input.charCodeAt(++e.position)}return U7(e,o,u,!1),e.result?!0:(e.kind=b,e.result=_,!1)}X(jMn,"readPlainScalar");function WMn(e,t){var r,a,s;if(r=e.input.charCodeAt(e.position),r!==39)return!1;for(e.kind="scalar",e.result="",e.position++,a=s=e.position;(r=e.input.charCodeAt(e.position))!==0;)if(r===39)if(U7(e,a,e.position,!0),r=e.input.charCodeAt(++e.position),r===39)a=e.position,e.position++,s=e.position;else return!0;else W3(r)?(U7(e,a,s,!0),hAe(e,K0(e,!1,t)),a=s=e.position):e.position===e.lineStart&&sce(e)?ks(e,"unexpected end of the document within a single quoted scalar"):(e.position++,s=e.position);ks(e,"unexpected end of the stream within a single quoted scalar")}X(WMn,"readSingleQuotedScalar");function KMn(e,t){var r,a,s,o,u,h;if(h=e.input.charCodeAt(e.position),h!==34)return!1;for(e.kind="scalar",e.result="",e.position++,r=a=e.position;(h=e.input.charCodeAt(e.position))!==0;){if(h===34)return U7(e,r,e.position,!0),e.position++,!0;if(h===92){if(U7(e,r,e.position,!0),h=e.input.charCodeAt(++e.position),W3(h))K0(e,!1,t);else if(h<256&&HMn[h])e.result+=VMn[h],e.position++;else if((u=zMn(h))>0){for(s=u,o=0;s>0;s--)h=e.input.charCodeAt(++e.position),(u=UMn(h))>=0?o=(o<<4)+u:ks(e,"expected hexadecimal character");e.result+=qMn(o),e.position++}else ks(e,"unknown escape sequence");r=a=e.position}else W3(h)?(U7(e,r,a,!0),hAe(e,K0(e,!1,t)),r=a=e.position):e.position===e.lineStart&&sce(e)?ks(e,"unexpected end of the document within a double quoted scalar"):(e.position++,a=e.position)}ks(e,"unexpected end of the stream within a double quoted scalar")}X(KMn,"readDoubleQuotedScalar");function XMn(e,t){var r=!0,a,s,o,u=e.tag,h,f=e.anchor,p,m,b,_,w,S=Object.create(null),C,A,k,I;if(I=e.input.charCodeAt(e.position),I===91)m=93,w=!1,h=[];else if(I===123)m=125,w=!0,h={};else return!1;for(e.anchor!==null&&(e.anchorMap[e.anchor]=h),I=e.input.charCodeAt(++e.position);I!==0;){if(K0(e,!0,t),I=e.input.charCodeAt(e.position),I===m)return e.position++,e.tag=u,e.anchor=f,e.kind=w?"mapping":"sequence",e.result=h,!0;r?I===44&&ks(e,"expected the node content, but found ','"):ks(e,"missed comma between flow collection entries"),A=C=k=null,b=_=!1,I===63&&(p=e.input.charCodeAt(e.position+1),Zy(p)&&(b=_=!0,e.position++,K0(e,!0,t))),a=e.line,s=e.lineStart,o=e.position,FF(e,t,A4e,!1,!0),A=e.tag,C=e.result,K0(e,!0,t),I=e.input.charCodeAt(e.position),(_||e.line===a)&&I===58&&(b=!0,I=e.input.charCodeAt(++e.position),K0(e,!0,t),FF(e,t,A4e,!1,!0),k=e.result),w?eF(e,h,S,A,C,k,a,s,o):b?h.push(eF(e,null,S,A,C,k,a,s,o)):h.push(C),K0(e,!0,t),I=e.input.charCodeAt(e.position),I===44?(r=!0,I=e.input.charCodeAt(++e.position)):r=!1}ks(e,"unexpected end of the stream within a flow collection")}X(XMn,"readFlowCollection");function QMn(e,t){var r,a,s=Ttt,o=!1,u=!1,h=t,f=0,p=!1,m,b;if(b=e.input.charCodeAt(e.position),b===124)a=!1;else if(b===62)a=!0;else return!1;for(e.kind="scalar",e.result="";b!==0;)if(b=e.input.charCodeAt(++e.position),b===43||b===45)Ttt===s?s=b===43?Kyn:Qhi:ks(e,"repeat of a chomping mode identifier");else if((m=GMn(b))>=0)m===0?ks(e,"bad explicit indentation width of a block scalar; it cannot be less than one"):u?ks(e,"repeat of an indentation width identifier"):(h=t+m-1,u=!0);else break;if(AO(b)){do b=e.input.charCodeAt(++e.position);while(AO(b));if(b===35)do b=e.input.charCodeAt(++e.position);while(!W3(b)&&b!==0)}for(;b!==0;){for(uAe(e),e.lineIndent=0,b=e.input.charCodeAt(e.position);(!u||e.lineIndenth&&(h=e.lineIndent),W3(b)){f++;continue}if(e.lineIndentt)&&f!==0)ks(e,"bad indentation of a sequence entry");else if(e.lineIndentt)&&(A&&(u=e.line,h=e.lineStart,f=e.position),FF(e,t,k4e,!0,s)&&(A?S=e.result:C=e.result),A||(eF(e,b,_,w,S,C,u,h,f),w=S=C=null),K0(e,!0,-1),I=e.input.charCodeAt(e.position)),(e.line===o||e.lineIndent>t)&&I!==0)ks(e,"bad indentation of a mapping entry");else if(e.lineIndentt?f=1:e.lineIndent===t?f=0:e.lineIndentt?f=1:e.lineIndent===t?f=0:e.lineIndent tag; it should be "scalar", not "'+e.kind+'"'),b=0,_=e.implicitTypes.length;b<_;b+=1)if(S=e.implicitTypes[b],S.resolve(e.result)){e.result=S.construct(e.result),e.tag=S.tag,e.anchor!==null&&(e.anchorMap[e.anchor]=e.result);break}}else if(e.tag!=="!"){if(WO.call(e.typeMap[e.kind||"fallback"],e.tag))S=e.typeMap[e.kind||"fallback"][e.tag];else for(S=null,w=e.typeMap.multi[e.kind||"fallback"],b=0,_=w.length;b<_;b+=1)if(e.tag.slice(0,w[b].tag.length)===w[b].tag){S=w[b];break}S||ks(e,"unknown tag !<"+e.tag+">"),e.result!==null&&S.kind!==e.kind&&ks(e,"unacceptable node kind for !<"+e.tag+'> tag; it should be "'+S.kind+'", not "'+e.kind+'"'),S.resolve(e.result,e.tag)?(e.result=S.construct(e.result,e.tag),e.anchor!==null&&(e.anchorMap[e.anchor]=e.result)):ks(e,"cannot resolve a node with !<"+e.tag+"> explicit tag")}return e.listener!==null&&e.listener("close",e),e.tag!==null||e.anchor!==null||m}X(FF,"composeNode");function nPn(e){var t=e.position,r,a,s,o=!1,u;for(e.version=null,e.checkLineBreaks=e.legacy,e.tagMap=Object.create(null),e.anchorMap=Object.create(null);(u=e.input.charCodeAt(e.position))!==0&&(K0(e,!0,-1),u=e.input.charCodeAt(e.position),!(e.lineIndent>0||u!==37));){for(o=!0,u=e.input.charCodeAt(++e.position),r=e.position;u!==0&&!Zy(u);)u=e.input.charCodeAt(++e.position);for(a=e.input.slice(r,e.position),s=[],a.length<1&&ks(e,"directive name must not be less than one character in length");u!==0;){for(;AO(u);)u=e.input.charCodeAt(++e.position);if(u===35){do u=e.input.charCodeAt(++e.position);while(u!==0&&!W3(u));break}if(W3(u))break;for(r=e.position;u!==0&&!Zy(u);)u=e.input.charCodeAt(++e.position);s.push(e.input.slice(r,e.position))}u!==0&&uAe(e),WO.call(Xyn,a)?Xyn[a](e,a,s):boe(e,'unknown document directive "'+a+'"')}if(K0(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,K0(e,!0,-1)):o&&ks(e,"directives end mark is expected"),FF(e,e.lineIndent-1,k4e,!1,!0),K0(e,!0,-1),e.checkLineBreaks&&Jhi.test(e.input.slice(t,e.position))&&boe(e,"non-ASCII line breaks are interpreted as content"),e.documents.push(e.result),e.position===e.lineStart&&sce(e)){e.input.charCodeAt(e.position)===46&&(e.position+=3,K0(e,!0,-1));return}if(e.position"u"&&(r=t,t=null);var a=C1t(e,r);if(typeof t!="function")return a;for(var s=0,o=a.length;s=55296&&r<=56319&&t+1=56320&&a<=57343)?(r-55296)*1024+a-56320+65536:r}X(IV,"codePointAt");function k1t(e){var t=/^\n* /;return t.test(e)}X(k1t,"needIndentIndicator");var bPn=1,qot=2,yPn=3,vPn=4,uV=5;function _Pn(e,t,r,a,s,o,u,h){var f,p=0,m=null,b=!1,_=!1,w=a!==-1,S=-1,C=gPn(IV(e,0))&&mPn(IV(e,e.length-1));if(t||u)for(f=0;f=65536?f+=2:f++){if(p=IV(e,f),!Lj(p))return uV;C=C&&Got(p,m,h),m=p}else{for(f=0;f=65536?f+=2:f++){if(p=IV(e,f),p===yoe)b=!0,w&&(_=_||f-S-1>a&&e[S+1]!==" ",S=f);else if(!Lj(p))return uV;C=C&&Got(p,m,h),m=p}_=_||w&&f-S-1>a&&e[S+1]!==" "}return!b&&!_?C&&!u&&!s(e)?bPn:o===voe?uV:qot:r>9&&k1t(e)?uV:u?o===voe?uV:qot:_?vPn:yPn}X(_Pn,"chooseScalarStyle");function wPn(e,t,r,a,s){e.dump=function(){if(t.length===0)return e.quotingType===voe?'""':"''";if(!e.noCompatMode&&(_di.indexOf(t)!==-1||wdi.test(t)))return e.quotingType===voe?'"'+t+'"':"'"+t+"'";var o=e.indent*Math.max(1,r),u=e.lineWidth===-1?-1:Math.max(Math.min(e.lineWidth,40),e.lineWidth-o),h=a||e.flowLevel>-1&&r>=e.flowLevel;function f(p){return pPn(e,p)}switch(X(f,"testAmbiguity"),_Pn(t,h,e.indent,u,f,e.quotingType,e.forceQuotes&&!a,s)){case bPn:return t;case qot:return"'"+t.replace(/'/g,"''")+"'";case yPn:return"|"+Hot(t,e.indent)+Vot(Uot(t,o));case vPn:return">"+Hot(t,e.indent)+Vot(Uot(EPn(t,u),o));case uV:return'"'+xPn(t)+'"';default:throw new z2("impossible error: invalid scalar style")}}()}X(wPn,"writeScalar");function Hot(e,t){var r=k1t(e)?String(t):"",a=e[e.length-1]===` +`,s=a&&(e[e.length-2]===` +`||e===` +`),o=s?"+":a?"":"-";return r+o+` +`}X(Hot,"blockHeader");function Vot(e){return e[e.length-1]===` +`?e.slice(0,-1):e}X(Vot,"dropEndingNewline");function EPn(e,t){for(var r=/(\n+)([^\n]*)/g,a=function(){var p=e.indexOf(` +`);return p=p!==-1?p:e.length,r.lastIndex=p,Yot(e.slice(0,p),t)}(),s=e[0]===` +`||e[0]===" ",o,u;u=r.exec(e);){var h=u[1],f=u[2];o=f[0]===" ",a+=h+(!s&&!o&&f!==""?` +`:"")+Yot(f,t),s=o}return a}X(EPn,"foldString");function Yot(e,t){if(e===""||e[0]===" ")return e;for(var r=/ [^ ]/g,a,s=0,o,u=0,h=0,f="";a=r.exec(e);)h=a.index,h-s>t&&(o=u>s?u:h,f+=` +`+e.slice(s,o),s=o+1),u=h;return f+=` +`,e.length-s>t&&u>s?f+=e.slice(s,u)+` +`+e.slice(u+1):f+=e.slice(s),f.slice(1)}X(Yot,"foldLine");function xPn(e){for(var t="",r=0,a,s=0;s=65536?s+=2:s++)r=IV(e,s),a=Ob[r],!a&&Lj(r)?(t+=e[s],r>=65536&&(t+=e[s+1])):t+=a||dPn(r);return t}X(xPn,"escapeString");function SPn(e,t,r){var a="",s=e.tag,o,u,h;for(o=0,u=r.length;o"u"&&bA(e,t,null,!1,!1))&&(a!==""&&(a+=","+(e.condenseFlow?"":" ")),a+=e.dump);e.tag=s,e.dump="["+a+"]"}X(SPn,"writeFlowSequence");function jot(e,t,r,a){var s="",o=e.tag,u,h,f;for(u=0,h=r.length;u"u"&&bA(e,t+1,null,!0,!0,!1,!0))&&((!a||s!=="")&&(s+=I4e(e,t)),e.dump&&yoe===e.dump.charCodeAt(0)?s+="-":s+="- ",s+=e.dump);e.tag=o,e.dump=s||"[]"}X(jot,"writeBlockSequence");function TPn(e,t,r){var a="",s=e.tag,o=Object.keys(r),u,h,f,p,m;for(u=0,h=o.length;u1024&&(m+="? "),m+=e.dump+(e.condenseFlow?'"':"")+":"+(e.condenseFlow?"":" "),bA(e,t,p,!1,!1)&&(m+=e.dump,a+=m));e.tag=s,e.dump="{"+a+"}"}X(TPn,"writeFlowMapping");function CPn(e,t,r,a){var s="",o=e.tag,u=Object.keys(r),h,f,p,m,b,_;if(e.sortKeys===!0)u.sort();else if(typeof e.sortKeys=="function")u.sort(e.sortKeys);else if(e.sortKeys)throw new z2("sortKeys must be a boolean or a function");for(h=0,f=u.length;h1024,b&&(e.dump&&yoe===e.dump.charCodeAt(0)?_+="?":_+="? "),_+=e.dump,b&&(_+=I4e(e,t)),bA(e,t+1,m,!0,b)&&(e.dump&&yoe===e.dump.charCodeAt(0)?_+=":":_+=": ",_+=e.dump,s+=_));e.tag=o,e.dump=s||"{}"}X(CPn,"writeBlockMapping");function Wot(e,t,r){var a,s,o,u,h,f;for(s=r?e.explicitTypes:e.implicitTypes,o=0,u=s.length;o tag resolver accepts not "'+f+'" style');e.dump=a}return!0}return!1}X(Wot,"detectType");function bA(e,t,r,a,s,o,u){e.tag=null,e.dump=r,Wot(e,r,!1)||Wot(e,r,!0);var h=iPn.call(e.dump),f=a,p;a&&(a=e.flowLevel<0||e.flowLevel>t);var m=h==="[object Object]"||h==="[object Array]",b,_;if(m&&(b=e.duplicates.indexOf(r),_=b!==-1),(e.tag!==null&&e.tag!=="?"||_||e.indent!==2&&t>0)&&(s=!1),_&&e.usedDuplicates[b])e.dump="*ref_"+b;else{if(m&&_&&!e.usedDuplicates[b]&&(e.usedDuplicates[b]=!0),h==="[object Object]")a&&Object.keys(e.dump).length!==0?(CPn(e,t,e.dump,s),_&&(e.dump="&ref_"+b+e.dump)):(TPn(e,t,e.dump),_&&(e.dump="&ref_"+b+" "+e.dump));else if(h==="[object Array]")a&&e.dump.length!==0?(e.noArrayIndent&&!u&&t>0?jot(e,t-1,e.dump,s):jot(e,t,e.dump,s),_&&(e.dump="&ref_"+b+e.dump)):(SPn(e,t,e.dump),_&&(e.dump="&ref_"+b+" "+e.dump));else if(h==="[object String]")e.tag!=="?"&&wPn(e,e.dump,t,o,f);else{if(h==="[object Undefined]")return!1;if(e.skipInvalid)return!1;throw new z2("unacceptable kind of an object to dump "+h)}e.tag!==null&&e.tag!=="?"&&(p=encodeURI(e.tag[0]==="!"?e.tag.slice(1):e.tag).replace(/!/g,"%21"),e.tag[0]==="!"?p="!"+p:p.slice(0,18)==="tag:yaml.org,2002:"?p="!!"+p.slice(18):p="!<"+p+">",e.dump=p+" "+e.dump)}return!0}X(bA,"writeNode");function APn(e,t){var r=[],a=[],s,o;for(N4e(e,r,a),s=0,o=a.length;sArray.isArray(e)?{x:e[0],y:e[1]}:e,"pointTransformer"),kPn=X(e=>({x:X(function(t,r,a){let s=0;const o=Hd(a[0]).x=0?1:-1)}else if(r===a.length-1&&Object.hasOwn(bb,e.arrowTypeEnd)){const{angle:w,deltaX:S}=Mie(a[a.length-1],a[a.length-2]);s=bb[e.arrowTypeEnd]*Math.cos(w)*(S>=0?1:-1)}const u=Math.abs(Hd(t).x-Hd(a[a.length-1]).x),h=Math.abs(Hd(t).y-Hd(a[a.length-1]).y),f=Math.abs(Hd(t).x-Hd(a[0]).x),p=Math.abs(Hd(t).y-Hd(a[0]).y),m=bb[e.arrowTypeStart],b=bb[e.arrowTypeEnd],_=1;if(u0&&h0&&p=0?1:-1)}else if(r===a.length-1&&Object.hasOwn(bb,e.arrowTypeEnd)){const{angle:w,deltaY:S}=Mie(a[a.length-1],a[a.length-2]);s=bb[e.arrowTypeEnd]*Math.abs(Math.sin(w))*(S>=0?1:-1)}const u=Math.abs(Hd(t).y-Hd(a[a.length-1]).y),h=Math.abs(Hd(t).x-Hd(a[a.length-1]).x),f=Math.abs(Hd(t).y-Hd(a[0]).y),p=Math.abs(Hd(t).x-Hd(a[0]).x),m=bb[e.arrowTypeStart],b=bb[e.arrowTypeEnd],_=1;if(u0&&h0&&p{var s,o;const t=((s=e==null?void 0:e.subGraphTitleMargin)==null?void 0:s.top)??0,r=((o=e==null?void 0:e.subGraphTitleMargin)==null?void 0:o.bottom)??0,a=t+r;return{subGraphTitleTopMargin:t,subGraphTitleBottomMargin:r,subGraphTitleTotalMargin:a}},"getSubGraphTitleMargins"),Tdi=X(e=>{const{handDrawnSeed:t}=nn();return{fill:e,hachureAngle:120,hachureGap:4,fillWeight:2,roughness:.7,stroke:e,seed:t}},"solidStateFill"),PW=X(e=>{const t=Cdi([...e.cssCompiledStyles||[],...e.cssStyles||[],...e.labelStyle||[]]);return{stylesMap:t,stylesArray:[...t]}},"compileStyles"),Cdi=X(e=>{const t=new Map;return e.forEach(r=>{const[a,s]=r.split(":");t.set(a.trim(),s==null?void 0:s.trim())}),t},"styles2Map"),R1t=X(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"),Ia=X(e=>{const{stylesArray:t}=PW(e),r=[],a=[],s=[],o=[];return t.forEach(u=>{const h=u[0];R1t(h)?r.push(u.join(":")+" !important"):(a.push(u.join(":")+" !important"),h.includes("stroke")&&s.push(u.join(":")+" !important"),h==="fill"&&o.push(u.join(":")+" !important"))}),{labelStyles:r.join(";"),nodeStyles:a.join(";"),stylesArray:t,borderStyles:s,backgroundStyles:o}},"styles2String"),Ja=X((e,t)=>{var f;const{themeVariables:r,handDrawnSeed:a}=nn(),{nodeBorder:s,mainBkg:o}=r,{stylesMap:u}=PW(e);return Object.assign({roughness:.7,fill:u.get("fill")||o,fillStyle:"hachure",fillWeight:4,hachureGap:5.2,stroke:u.get("stroke")||s,seed:a,strokeWidth:((f=u.get("stroke-width"))==null?void 0:f.replace("px",""))||1.3,fillLineDash:[0,0],strokeLineDash:Adi(u.get("stroke-dasharray"))},t)},"userNodeOverrides"),Adi=X(e=>{if(!e)return[0,0];const t=e.trim().split(/\s+/).map(Number);if(t.length===1){const s=isNaN(t[0])?0:t[0];return[s,s]}const r=isNaN(t[0])?0:t[0],a=isNaN(t[1])?0:t[1];return[r,a]},"getStrokeDashArray"),I1t={},xg={};Object.defineProperty(xg,"__esModule",{value:!0});xg.BLANK_URL=xg.relativeFirstCharacters=xg.whitespaceEscapeCharsRegex=xg.urlSchemeRegex=xg.ctrlCharactersRegex=xg.htmlCtrlEntityRegex=xg.htmlEntitiesRegex=xg.invalidProtocolRegex=void 0;xg.invalidProtocolRegex=/^([^\w]*)(javascript|data|vbscript)/im;xg.htmlEntitiesRegex=/&#(\w+)(^\w|;)?/g;xg.htmlCtrlEntityRegex=/&(newline|tab);/gi;xg.ctrlCharactersRegex=/[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim;xg.urlSchemeRegex=/^.+(:|:)/gim;xg.whitespaceEscapeCharsRegex=/(\\|%5[cC])((%(6[eE]|72|74))|[nrt])/g;xg.relativeFirstCharacters=[".","/"];xg.BLANK_URL="about:blank";Object.defineProperty(I1t,"__esModule",{value:!0});var M9=I1t.sanitizeUrl=void 0,mb=xg;function kdi(e){return mb.relativeFirstCharacters.indexOf(e[0])>-1}function Rdi(e){var t=e.replace(mb.ctrlCharactersRegex,"");return t.replace(mb.htmlEntitiesRegex,function(r,a){return String.fromCharCode(a)})}function Idi(e){return URL.canParse(e)}function Zyn(e){try{return decodeURIComponent(e)}catch{return e}}function Ndi(e){if(!e)return mb.BLANK_URL;var t,r=Zyn(e.trim());do r=Rdi(r).replace(mb.htmlCtrlEntityRegex,"").replace(mb.ctrlCharactersRegex,"").replace(mb.whitespaceEscapeCharsRegex,"").trim(),r=Zyn(r),t=r.match(mb.ctrlCharactersRegex)||r.match(mb.htmlEntitiesRegex)||r.match(mb.htmlCtrlEntityRegex)||r.match(mb.whitespaceEscapeCharsRegex);while(t&&t.length>0);var a=r;if(!a)return mb.BLANK_URL;if(kdi(a))return a;var s=a.trimStart(),o=s.match(mb.urlSchemeRegex);if(!o)return a;var u=o[0].toLowerCase().trim();if(mb.invalidProtocolRegex.test(u))return mb.BLANK_URL;var h=s.replace(/\\/g,"/");if(u==="mailto:"||u.includes("://"))return h;if(u==="http:"||u==="https:"){if(!Idi(h))return mb.BLANK_URL;var f=new URL(h);return f.protocol=f.protocol.toLowerCase(),f.hostname=f.hostname.toLowerCase(),f.toString()}return h}M9=I1t.sanitizeUrl=Ndi;var RPn=typeof global=="object"&&global&&global.Object===Object&&global,Odi=typeof self=="object"&&self&&self.Object===Object&&self,OA=RPn||Odi||Function("return this")(),wS=OA.Symbol,IPn=Object.prototype,Ldi=IPn.hasOwnProperty,Ddi=IPn.toString,$re=wS?wS.toStringTag:void 0;function Mdi(e){var t=Ldi.call(e,$re),r=e[$re];try{e[$re]=void 0;var a=!0}catch{}var s=Ddi.call(e);return a&&(t?e[$re]=r:delete e[$re]),s}var Pdi=Object.prototype,Bdi=Pdi.toString;function Fdi(e){return Bdi.call(e)}var $di="[object Null]",Udi="[object Undefined]",Jyn=wS?wS.toStringTag:void 0;function C$(e){return e==null?e===void 0?Udi:$di:Jyn&&Jyn in Object(e)?Mdi(e):Fdi(e)}function $w(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}var zdi="[object AsyncFunction]",Gdi="[object Function]",qdi="[object GeneratorFunction]",Hdi="[object Proxy]";function KO(e){if(!$w(e))return!1;var t=C$(e);return t==Gdi||t==qdi||t==zdi||t==Hdi}var Ctt=OA["__core-js_shared__"],evn=function(){var e=/[^.]+$/.exec(Ctt&&Ctt.keys&&Ctt.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();function Vdi(e){return!!evn&&evn in e}var Ydi=Function.prototype,jdi=Ydi.toString;function A$(e){if(e!=null){try{return jdi.call(e)}catch{}try{return e+""}catch{}}return""}var Wdi=/[\\^$.*+?()[\]{}|]/g,Kdi=/^\[object .+?Constructor\]$/,Xdi=Function.prototype,Qdi=Object.prototype,Zdi=Xdi.toString,Jdi=Qdi.hasOwnProperty,efi=RegExp("^"+Zdi.call(Jdi).replace(Wdi,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function tfi(e){if(!$w(e)||Vdi(e))return!1;var t=KO(e)?efi:Kdi;return t.test(A$(e))}function nfi(e,t){return e==null?void 0:e[t]}function k$(e,t){var r=nfi(e,t);return tfi(r)?r:void 0}var woe=k$(Object,"create");function rfi(){this.__data__=woe?woe(null):{},this.size=0}function ifi(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}var afi="__lodash_hash_undefined__",sfi=Object.prototype,ofi=sfi.hasOwnProperty;function lfi(e){var t=this.__data__;if(woe){var r=t[e];return r===afi?void 0:r}return ofi.call(t,e)?t[e]:void 0}var cfi=Object.prototype,ufi=cfi.hasOwnProperty;function hfi(e){var t=this.__data__;return woe?t[e]!==void 0:ufi.call(t,e)}var dfi="__lodash_hash_undefined__";function ffi(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=woe&&t===void 0?dfi:t,this}function $F(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t-1}function _fi(e,t){var r=this.__data__,a=pAe(r,e);return a<0?(++this.size,r.push([e,t])):r[a][1]=t,this}function yR(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t-1&&e%1==0&&e<=zfi}function P9(e){return e!=null&&D1t(e.length)&&!KO(e)}function FPn(e){return yA(e)&&P9(e)}function Gfi(){return!1}var $Pn=typeof exports=="object"&&exports&&!exports.nodeType&&exports,svn=$Pn&&typeof module=="object"&&module&&!module.nodeType&&module,qfi=svn&&svn.exports===$Pn,ovn=qfi?OA.Buffer:void 0,Hfi=ovn?ovn.isBuffer:void 0,Mj=Hfi||Gfi,Vfi="[object Object]",Yfi=Function.prototype,jfi=Object.prototype,UPn=Yfi.toString,Wfi=jfi.hasOwnProperty,Kfi=UPn.call(Object);function zPn(e){if(!yA(e)||C$(e)!=Vfi)return!1;var t=L1t(e);if(t===null)return!0;var r=Wfi.call(t,"constructor")&&t.constructor;return typeof r=="function"&&r instanceof r&&UPn.call(r)==Kfi}var Xfi="[object Arguments]",Qfi="[object Array]",Zfi="[object Boolean]",Jfi="[object Date]",e0i="[object Error]",t0i="[object Function]",n0i="[object Map]",r0i="[object Number]",i0i="[object Object]",a0i="[object RegExp]",s0i="[object Set]",o0i="[object String]",l0i="[object WeakMap]",c0i="[object ArrayBuffer]",u0i="[object DataView]",h0i="[object Float32Array]",d0i="[object Float64Array]",f0i="[object Int8Array]",p0i="[object Int16Array]",g0i="[object Int32Array]",m0i="[object Uint8Array]",b0i="[object Uint8ClampedArray]",y0i="[object Uint16Array]",v0i="[object Uint32Array]",pd={};pd[h0i]=pd[d0i]=pd[f0i]=pd[p0i]=pd[g0i]=pd[m0i]=pd[b0i]=pd[y0i]=pd[v0i]=!0;pd[Xfi]=pd[Qfi]=pd[c0i]=pd[Zfi]=pd[u0i]=pd[Jfi]=pd[e0i]=pd[t0i]=pd[n0i]=pd[r0i]=pd[i0i]=pd[a0i]=pd[s0i]=pd[o0i]=pd[l0i]=!1;function _0i(e){return yA(e)&&D1t(e.length)&&!!pd[C$(e)]}function yAe(e){return function(t){return e(t)}}var GPn=typeof exports=="object"&&exports&&!exports.nodeType&&exports,cse=GPn&&typeof module=="object"&&module&&!module.nodeType&&module,w0i=cse&&cse.exports===GPn,Att=w0i&&RPn.process,Pj=function(){try{var e=cse&&cse.require&&cse.require("util").types;return e||Att&&Att.binding&&Att.binding("util")}catch{}}(),lvn=Pj&&Pj.isTypedArray,vAe=lvn?yAe(lvn):_0i;function Xot(e,t){if(!(t==="constructor"&&typeof e[t]=="function")&&t!="__proto__")return e[t]}var E0i=Object.prototype,x0i=E0i.hasOwnProperty;function _Ae(e,t,r){var a=e[t];(!(x0i.call(e,t)&&BW(a,r))||r===void 0&&!(t in e))&&mAe(e,t,r)}function lce(e,t,r,a){var s=!r;r||(r={});for(var o=-1,u=t.length;++o-1&&e%1==0&&e0){if(++t>=B0i)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}var YPn=U0i(P0i);function EAe(e,t){return YPn(VPn(e,t,I$),e+"")}function xoe(e,t,r){if(!$w(r))return!1;var a=typeof t;return(a=="number"?P9(r)&&wAe(t,r.length):a=="string"&&t in r)?BW(r[t],e):!1}function z0i(e){return EAe(function(t,r){var a=-1,s=r.length,o=s>1?r[s-1]:void 0,u=s>2?r[2]:void 0;for(o=e.length>3&&typeof o=="function"?(s--,o):void 0,u&&xoe(r[0],r[1],u)&&(o=s<3?void 0:o,s=1),t=Object(t);++ah.args);i4e(u),a=W0(a,[...u])}else a=r.args;if(!a)return;let s=F0t(e,t);const o="config";return a[o]!==void 0&&(s==="flowchart-v2"&&(s="flowchart"),a[s]=a[o],delete a[o]),a},"detectInit"),WPn=X(function(e,t=null){var r,a;try{const s=new RegExp(`[%]{2}(?![{]${q0i.source})(?=[}][%]{2}).* +`,"ig");e=e.trim().replace(s,"").replace(/'/gm,'"'),it.debug(`Detecting diagram directive${t!==null?" type:"+t:""} based on the text:${e}`);let o;const u=[];for(;(o=sse.exec(e))!==null;)if(o.index===sse.lastIndex&&sse.lastIndex++,o&&!t||t&&((r=o[1])!=null&&r.match(t))||t&&((a=o[2])!=null&&a.match(t))){const h=o[1]?o[1]:o[2],f=o[3]?o[3].trim():o[4]?JSON.parse(o[4].trim()):null;u.push({type:h,args:f})}return u.length===0?{type:e,args:null}:u.length===1?u[0]:u}catch(s){return it.error(`ERROR: ${s.message} - Unable to parse directive type: '${t}' based on the text: '${e}'`),{type:void 0,args:null}}},"detectDirective"),V0i=X(function(e){return e.replace(sse,"")},"removeDirectives"),Y0i=X(function(e,t){for(const[r,a]of t.entries())if(a.match(e))return r;return-1},"isSubstringInArray");function M1t(e,t){if(!e)return t;const r=`curve${e.charAt(0).toUpperCase()+e.slice(1)}`;return G0i[r]??t}X(M1t,"interpolateToCurve");function KPn(e,t){const r=e.trim();if(r)return t.securityLevel!=="loose"?M9(r):r}X(KPn,"formatUrl");var j0i=X((e,...t)=>{const r=e.split("."),a=r.length-1,s=r[a];let o=window;for(let u=0;u{r+=P1t(s,t),t=s});const a=r/2;return B1t(e,a)}X(XPn,"traverseEdge");function QPn(e){return e.length===1?e[0]:XPn(e)}X(QPn,"calcLabelPosition");var uvn=X((e,t=2)=>{const r=Math.pow(10,t);return Math.round(e*r)/r},"roundNumber"),B1t=X((e,t)=>{let r,a=t;for(const s of e){if(r){const o=P1t(s,r);if(o===0)return r;if(o=1)return{x:s.x,y:s.y};if(u>0&&u<1)return{x:uvn((1-u)*r.x+u*s.x,5),y:uvn((1-u)*r.y+u*s.y,5)}}}r=s}throw new Error("Could not find a suitable point for the given distance")},"calculatePoint"),W0i=X((e,t,r)=>{it.info(`our points ${JSON.stringify(t)}`),t[0]!==r&&(t=t.reverse());const s=B1t(t,25),o=e?10:5,u=Math.atan2(t[0].y-s.y,t[0].x-s.x),h={x:0,y:0};return h.x=Math.sin(u)*o+(t[0].x+s.x)/2,h.y=-Math.cos(u)*o+(t[0].y+s.y)/2,h},"calcCardinalityPosition");function ZPn(e,t,r){const a=structuredClone(r);it.info("our points",a),t!=="start_left"&&t!=="start_right"&&a.reverse();const s=25+e,o=B1t(a,s),u=10+e*.5,h=Math.atan2(a[0].y-o.y,a[0].x-o.x),f={x:0,y:0};return t==="start_left"?(f.x=Math.sin(h+Math.PI)*u+(a[0].x+o.x)/2,f.y=-Math.cos(h+Math.PI)*u+(a[0].y+o.y)/2):t==="end_right"?(f.x=Math.sin(h-Math.PI)*u+(a[0].x+o.x)/2-5,f.y=-Math.cos(h-Math.PI)*u+(a[0].y+o.y)/2-5):t==="end_left"?(f.x=Math.sin(h)*u+(a[0].x+o.x)/2-5,f.y=-Math.cos(h)*u+(a[0].y+o.y)/2-5):(f.x=Math.sin(h)*u+(a[0].x+o.x)/2,f.y=-Math.cos(h)*u+(a[0].y+o.y)/2),f}X(ZPn,"calcTerminalLabelPosition");function F1t(e){let t="",r="";for(const a of e)a!==void 0&&(a.startsWith("color:")||a.startsWith("text-align:")?r=r+a+";":t=t+a+";");return{style:t,labelStyle:r}}X(F1t,"getStylesFromArray");var hvn=0,JPn=X(()=>(hvn++,"id-"+Math.random().toString(36).substr(2,12)+"-"+hvn),"generateId");function eBn(e){let t="";const r="0123456789abcdef",a=r.length;for(let s=0;seBn(e.length),"random"),K0i=X(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"),X0i=X(function(e,t){const r=t.text.replace(Ti.lineBreakRegex," "),[,a]=N$(t.fontSize),s=e.append("text");s.attr("x",t.x),s.attr("y",t.y),s.style("text-anchor",t.anchor),s.style("font-family",t.fontFamily),s.style("font-size",a),s.style("font-weight",t.fontWeight),s.attr("fill",t.fill),t.class!==void 0&&s.attr("class",t.class);const o=s.append("tspan");return o.attr("x",t.x+t.textMargin*2),o.attr("fill",t.fill),o.text(r),s},"drawSimpleText"),nBn=_R((e,t,r)=>{if(!e||(r=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",joinWith:"
    "},r),Ti.lineBreakRegex.test(e)))return e;const a=e.split(" ").filter(Boolean),s=[];let o="";return a.forEach((u,h)=>{const f=nv(`${u} `,r),p=nv(o,r);if(f>t){const{hyphenatedStrings:_,remainingWord:w}=Q0i(u,t,"-",r);s.push(o,..._),o=w}else p+f>=t?(s.push(o),o=u):o=[o,u].filter(Boolean).join(" ");h+1===a.length&&s.push(o)}),s.filter(u=>u!=="").join(r.joinWith)},(e,t,r)=>`${e}${t}${r.fontSize}${r.fontWeight}${r.fontFamily}${r.joinWith}`),Q0i=_R((e,t,r="-",a)=>{a=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",margin:0},a);const s=[...e],o=[];let u="";return s.forEach((h,f)=>{const p=`${u}${h}`;if(nv(p,a)>=t){const b=f+1,_=s.length===b,w=`${p}${r}`;o.push(_?p:w),u=""}else u=p}),{hyphenatedStrings:o,remainingWord:u}},(e,t,r="-",a)=>`${e}${t}${r}${a.fontSize}${a.fontWeight}${a.fontFamily}`);function D4e(e,t){return $1t(e,t).height}X(D4e,"calculateTextHeight");function nv(e,t){return $1t(e,t).width}X(nv,"calculateTextWidth");var $1t=_R((e,t)=>{const{fontSize:r=12,fontFamily:a="Arial",fontWeight:s=400}=t;if(!e)return{width:0,height:0};const[,o]=N$(r),u=["sans-serif",a],h=e.split(Ti.lineBreakRegex),f=[],p=gn("body");if(!p.remove)return{width:0,height:0,lineHeight:0};const m=p.append("svg");for(const _ of u){let w=0;const S={width:0,height:0,lineHeight:0};for(const C of h){const A=K0i();A.text=C||jPn;const k=X0i(m,A).style("font-size",o).style("font-weight",s).style("font-family",_),I=(k._groups||k)[0][0].getBBox();if(I.width===0&&I.height===0)throw new Error("svg element not in render tree");S.width=Math.round(Math.max(S.width,I.width)),w=Math.round(I.height),S.height+=w,S.lineHeight=Math.round(Math.max(S.lineHeight,w))}f.push(S)}m.remove();const b=isNaN(f[1].height)||isNaN(f[1].width)||isNaN(f[1].lineHeight)||f[0].height>f[1].height&&f[0].width>f[1].width&&f[0].lineHeight>f[1].lineHeight?0:1;return f[b]},(e,t)=>`${e}${t.fontSize}${t.fontWeight}${t.fontFamily}`),wY,Z0i=(wY=class{constructor(t=!1,r){this.count=0,this.count=r?r.length:0,this.next=t?()=>this.count++:()=>Date.now()}},X(wY,"InitIDGenerator"),wY),Q_e,J0i=X(function(e){return Q_e=Q_e||document.createElement("div"),e=escape(e).replace(/%26/g,"&").replace(/%23/g,"#").replace(/%3B/g,";"),Q_e.innerHTML=e,unescape(Q_e.textContent)},"entityDecode");function U1t(e){return"str"in e}X(U1t,"isDetailedError");var e1i=X((e,t,r,a)=>{var o;if(!a)return;const s=(o=e.node())==null?void 0:o.getBBox();s&&e.append("text").text(a).attr("text-anchor","middle").attr("x",s.x+s.width/2).attr("y",-r).attr("class",t)},"insertTitle"),N$=X(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 cv(e,t){return XO({},e,t)}X(cv,"cleanAndMerge");var Vo={assignWithDepth:W0,wrapLabel:nBn,calculateTextHeight:D4e,calculateTextWidth:nv,calculateTextDimensions:$1t,cleanAndMerge:cv,detectInit:H0i,detectDirective:WPn,isSubstringInArray:Y0i,interpolateToCurve:M1t,calcLabelPosition:QPn,calcCardinalityPosition:W0i,calcTerminalLabelPosition:ZPn,formatUrl:KPn,getStylesFromArray:F1t,generateId:JPn,random:tBn,runFunc:j0i,entityDecode:J0i,insertTitle:e1i,isLabelCoordinateInPath:rBn,parseFontSize:N$,InitIDGenerator:Z0i},t1i=X(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 a=r.substring(1,r.length-1);return/^\+?\d+$/.test(a)?"fl°°"+a+"¶ß":"fl°"+a+"¶ß"}),t},"encodeEntities"),vA=X(function(e){return e.replace(/fl°°/g,"&#").replace(/fl°/g,"&").replace(/¶ß/g,";")},"decodeEntities"),XV=X((e,t,{counter:r=0,prefix:a,suffix:s},o)=>o||`${a?`${a}_`:""}${e}_${t}_${r}${s?`_${s}`:""}`,"getEdgeId");function Tb(e){return e??null}X(Tb,"handleUndefinedAttr");function rBn(e,t){const r=Math.round(e.x),a=Math.round(e.y),s=t.replace(/(\d+\.\d+)/g,o=>Math.round(parseFloat(o)).toString());return s.includes(r.toString())||s.includes(a.toString())}X(rBn,"isLabelCoordinateInPath");const n1i=Object.freeze({left:0,top:0,width:16,height:16}),M4e=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),iBn=Object.freeze({...n1i,...M4e}),r1i=Object.freeze({...iBn,body:"",hidden:!1}),i1i=Object.freeze({width:null,height:null}),a1i=Object.freeze({...i1i,...M4e}),s1i=(e,t,r,a="")=>{const s=e.split(":");if(e.slice(0,1)==="@"){if(s.length<2||s.length>3)return null;a=s.shift().slice(1)}if(s.length>3||!s.length)return null;if(s.length>1){const h=s.pop(),f=s.pop(),p={provider:s.length>0?s[0]:a,prefix:f,name:h};return ktt(p)?p:null}const o=s[0],u=o.split("-");if(u.length>1){const h={provider:a,prefix:u.shift(),name:u.join("-")};return ktt(h)?h:null}if(r&&a===""){const h={provider:a,prefix:"",name:o};return ktt(h,r)?h:null}return null},ktt=(e,t)=>e?!!((t&&e.prefix===""||e.prefix)&&e.name):!1;function o1i(e,t){const r={};!e.hFlip!=!t.hFlip&&(r.hFlip=!0),!e.vFlip!=!t.vFlip&&(r.vFlip=!0);const a=((e.rotate||0)+(t.rotate||0))%4;return a&&(r.rotate=a),r}function dvn(e,t){const r=o1i(e,t);for(const a in r1i)a in M4e?a in e&&!(a in r)&&(r[a]=M4e[a]):a in t?r[a]=t[a]:a in e&&(r[a]=e[a]);return r}function l1i(e,t){const r=e.icons,a=e.aliases||Object.create(null),s=Object.create(null);function o(u){if(r[u])return s[u]=[];if(!(u in s)){s[u]=null;const h=a[u]&&a[u].parent,f=h&&o(h);f&&(s[u]=[h].concat(f))}return s[u]}return(t||Object.keys(r).concat(Object.keys(a))).forEach(o),s}function fvn(e,t,r){const a=e.icons,s=e.aliases||Object.create(null);let o={};function u(h){o=dvn(a[h]||s[h],o)}return u(t),r.forEach(u),dvn(e,o)}function c1i(e,t){if(e.icons[t])return fvn(e,t,[]);const r=l1i(e,[t])[t];return r?fvn(e,t,r):null}const u1i=/(-?[0-9.]*[0-9]+[0-9.]*)/g,h1i=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function pvn(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 a=e.split(u1i);if(a===null||!a.length)return e;const s=[];let o=a.shift(),u=h1i.test(o);for(;;){if(u){const h=parseFloat(o);isNaN(h)?s.push(o):s.push(Math.ceil(h*t*r)/r)}else s.push(o);if(o=a.shift(),o===void 0)return s.join("");u=!u}}function d1i(e,t="defs"){let r="";const a=e.indexOf("<"+t);for(;a>=0;){const s=e.indexOf(">",a),o=e.indexOf("",o);if(u===-1)break;r+=e.slice(s+1,o).trim(),e=e.slice(0,a).trim()+e.slice(u+1)}return{defs:r,content:e}}function f1i(e,t){return e?""+e+""+t:t}function p1i(e,t,r){const a=d1i(e);return f1i(a.defs,t+a.content+r)}const g1i=e=>e==="unset"||e==="undefined"||e==="none";function m1i(e,t){const r={...iBn,...e},a={...a1i,...t},s={left:r.left,top:r.top,width:r.width,height:r.height};let o=r.body;[r,a].forEach(C=>{const A=[],k=C.hFlip,I=C.vFlip;let N=C.rotate;k?I?N+=2:(A.push("translate("+(s.width+s.left).toString()+" "+(0-s.top).toString()+")"),A.push("scale(-1 1)"),s.top=s.left=0):I&&(A.push("translate("+(0-s.left).toString()+" "+(s.height+s.top).toString()+")"),A.push("scale(1 -1)"),s.top=s.left=0);let L;switch(N<0&&(N-=Math.floor(N/4)*4),N=N%4,N){case 1:L=s.height/2+s.top,A.unshift("rotate(90 "+L.toString()+" "+L.toString()+")");break;case 2:A.unshift("rotate(180 "+(s.width/2+s.left).toString()+" "+(s.height/2+s.top).toString()+")");break;case 3:L=s.width/2+s.left,A.unshift("rotate(-90 "+L.toString()+" "+L.toString()+")");break}N%2===1&&(s.left!==s.top&&(L=s.left,s.left=s.top,s.top=L),s.width!==s.height&&(L=s.width,s.width=s.height,s.height=L)),A.length&&(o=p1i(o,'',""))});const u=a.width,h=a.height,f=s.width,p=s.height;let m,b;u===null?(b=h===null?"1em":h==="auto"?p:h,m=pvn(b,f/p)):(m=u==="auto"?f:u,b=h===null?pvn(m,p/f):h==="auto"?p:h);const _={},w=(C,A)=>{g1i(A)||(_[C]=A.toString())};w("width",m),w("height",b);const S=[s.left,s.top,f,p];return _.viewBox=S.join(" "),{attributes:_,viewBox:S,body:o}}const b1i=/\sid="(\S+)"/g,gvn=new Map;function y1i(e){e=e.replace(/[0-9]+$/,"")||"a";const t=gvn.get(e)||0;return gvn.set(e,t+1),t?`${e}${t}`:e}function v1i(e){const t=[];let r;for(;r=b1i.exec(e);)t.push(r[1]);if(!t.length)return e;const a="suffix"+(Math.random()*16777216|Date.now()).toString(16);return t.forEach(s=>{const o=y1i(s),u=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");e=e.replace(new RegExp('([#;"])('+u+')([")]|\\.[a-z])',"g"),"$1"+o+a+"$3")}),e=e.replace(new RegExp(a,"g"),""),e}function _1i(e,t){let r=e.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const a in t)r+=" "+a+'="'+t[a]+'"';return'"+e+""}function z1t(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var O$=z1t();function aBn(e){O$=e}var use={exec:()=>null};function pu(e,t=""){let r=typeof e=="string"?e:e.source,a={replace:(s,o)=>{let u=typeof o=="string"?o:o.source;return u=u.replace(Jy.caret,"$1"),r=r.replace(s,u),a},getRegex:()=>new RegExp(r,t)};return a}var w1i=(()=>{try{return!!new RegExp("(?<=1)(?/,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:/^
    /i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^$/,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")},E1i=/^(?:[ \t]*(?:\n|$))+/,x1i=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,S1i=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,cce=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,T1i=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,G1t=/(?:[*+-]|\d{1,9}[.)])/,sBn=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,oBn=pu(sBn).replace(/bull/g,G1t).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(),C1i=pu(sBn).replace(/bull/g,G1t).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(),q1t=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,A1i=/^[^\n]+/,H1t=/(?!\s*\])(?:\\[\s\S]|[^\[\]\\])+/,k1i=pu(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",H1t).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),R1i=pu(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,G1t).getRegex(),xAe="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",V1t=/|$))/,I1i=pu("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|\\n*|$)|\\n*|$)|)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",V1t).replace("tag",xAe).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),lBn=pu(q1t).replace("hr",cce).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",")|<(?:script|pre|style|textarea|!--)").replace("tag",xAe).getRegex(),N1i=pu(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",lBn).getRegex(),Y1t={blockquote:N1i,code:x1i,def:k1i,fences:S1i,heading:T1i,hr:cce,html:I1i,lheading:oBn,list:R1i,newline:E1i,paragraph:lBn,table:use,text:A1i},mvn=pu("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",cce).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",")|<(?:script|pre|style|textarea|!--)").replace("tag",xAe).getRegex(),O1i={...Y1t,lheading:C1i,table:mvn,paragraph:pu(q1t).replace("hr",cce).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",mvn).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",xAe).getRegex()},L1i={...Y1t,html:pu(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",V1t).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:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:use,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:pu(q1t).replace("hr",cce).replace("heading",` *#{1,6} *[^ +]`).replace("lheading",oBn).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},D1i=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,M1i=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,cBn=/^( {2,}|\\)\n(?!\s*$)/,P1i=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\`+)[^`]+\k(?!`))*?\]\((?:\\[\s\S]|[^\\\(\)]|\((?:\\[\s\S]|[^\\\(\)])*\))*\)/).replace("precode-",w1i?"(?`+)[^`]+\k(?!`)/).replace("html",/<(?! )[^<>]*?>/).getRegex(),dBn=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,z1i=pu(dBn,"u").replace(/punct/g,SAe).getRegex(),G1i=pu(dBn,"u").replace(/punct/g,hBn).getRegex(),fBn="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",q1i=pu(fBn,"gu").replace(/notPunctSpace/g,uBn).replace(/punctSpace/g,j1t).replace(/punct/g,SAe).getRegex(),H1i=pu(fBn,"gu").replace(/notPunctSpace/g,$1i).replace(/punctSpace/g,F1i).replace(/punct/g,hBn).getRegex(),V1i=pu("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,uBn).replace(/punctSpace/g,j1t).replace(/punct/g,SAe).getRegex(),Y1i=pu(/\\(punct)/,"gu").replace(/punct/g,SAe).getRegex(),j1i=pu(/^<(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(),W1i=pu(V1t).replace("(?:-->|$)","-->").getRegex(),K1i=pu("^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^").replace("comment",W1i).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),P4e=/(?:\[(?:\\[\s\S]|[^\[\]\\])*\]|\\[\s\S]|`+[^`]*?`+(?!`)|[^\[\]\\`])*?/,X1i=pu(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",P4e).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),pBn=pu(/^!?\[(label)\]\[(ref)\]/).replace("label",P4e).replace("ref",H1t).getRegex(),gBn=pu(/^!?\[(ref)\](?:\[\])?/).replace("ref",H1t).getRegex(),Q1i=pu("reflink|nolink(?!\\()","g").replace("reflink",pBn).replace("nolink",gBn).getRegex(),bvn=/[hH][tT][tT][pP][sS]?|[fF][tT][pP]/,W1t={_backpedal:use,anyPunctuation:Y1i,autolink:j1i,blockSkip:U1i,br:cBn,code:M1i,del:use,emStrongLDelim:z1i,emStrongRDelimAst:q1i,emStrongRDelimUnd:V1i,escape:D1i,link:X1i,nolink:gBn,punctuation:B1i,reflink:pBn,reflinkSearch:Q1i,tag:K1i,text:P1i,url:use},Z1i={...W1t,link:pu(/^!?\[(label)\]\((.*?)\)/).replace("label",P4e).getRegex(),reflink:pu(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",P4e).getRegex()},Qot={...W1t,emStrongRDelimAst:H1i,emStrongLDelim:G1i,url:pu(/^((?:protocol):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/).replace("protocol",bvn).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:pu(/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\":">",'"':""","'":"'"},yvn=e=>epi[e];function wC(e,t){if(t){if(Jy.escapeTest.test(e))return e.replace(Jy.escapeReplace,yvn)}else if(Jy.escapeTestNoEncode.test(e))return e.replace(Jy.escapeReplaceNoEncode,yvn);return e}function vvn(e){try{e=encodeURI(e).replace(Jy.percentDecode,"%")}catch{return null}return e}function _vn(e,t){var o;let r=e.replace(Jy.findPipe,(u,h,f)=>{let p=!1,m=h;for(;--m>=0&&f[m]==="\\";)p=!p;return p?"|":" |"}),a=r.split(Jy.splitPipe),s=0;if(a[0].trim()||a.shift(),a.length>0&&!((o=a.at(-1))!=null&&o.trim())&&a.pop(),t)if(a.length>t)a.splice(t);else for(;a.length0?-2:-1}function wvn(e,t,r,a,s){let o=t.href,u=t.title||null,h=e[1].replace(s.other.outputLinkReplace,"$1");a.state.inLink=!0;let f={type:e[0].charAt(0)==="!"?"image":"link",raw:r,href:o,title:u,text:h,tokens:a.inlineTokens(h)};return a.state.inLink=!1,f}function npi(e,t,r){let a=e.match(r.other.indentCodeCompensation);if(a===null)return t;let s=a[1];return t.split(` +`).map(o=>{let u=o.match(r.other.beginningSpace);if(u===null)return o;let[h]=u;return h.length>=s.length?o.slice(s.length):o}).join(` +`)}var B4e=class{constructor(t){Gi(this,"options");Gi(this,"rules");Gi(this,"lexer");this.options=t||O$}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 a=r[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:r[0],codeBlockStyle:"indented",text:this.options.pedantic?a:zre(a,` +`)}}}fences(t){let r=this.rules.block.fences.exec(t);if(r){let a=r[0],s=npi(a,r[3]||"",this.rules);return{type:"code",raw:a,lang:r[2]?r[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):r[2],text:s}}}heading(t){let r=this.rules.block.heading.exec(t);if(r){let a=r[2].trim();if(this.rules.other.endingHash.test(a)){let s=zre(a,"#");(this.options.pedantic||!s||this.rules.other.endingSpaceChar.test(s))&&(a=s.trim())}return{type:"heading",raw:r[0],depth:r[1].length,text:a,tokens:this.lexer.inline(a)}}}hr(t){let r=this.rules.block.hr.exec(t);if(r)return{type:"hr",raw:zre(r[0],` +`)}}blockquote(t){let r=this.rules.block.blockquote.exec(t);if(r){let a=zre(r[0],` +`).split(` +`),s="",o="",u=[];for(;a.length>0;){let h=!1,f=[],p;for(p=0;p1,o={type:"list",raw:"",ordered:s,start:s?+a.slice(0,-1):"",loose:!1,items:[]};a=s?`\\d{1,9}\\${a.slice(-1)}`:`\\${a}`,this.options.pedantic&&(a=s?a:"[*+-]");let u=this.rules.other.listItemRegex(a),h=!1;for(;t;){let p=!1,m="",b="";if(!(r=u.exec(t))||this.rules.block.hr.test(t))break;m=r[0],t=t.substring(m.length);let _=r[2].split(` +`,1)[0].replace(this.rules.other.listReplaceTabs,I=>" ".repeat(3*I.length)),w=t.split(` +`,1)[0],S=!_.trim(),C=0;if(this.options.pedantic?(C=2,b=_.trimStart()):S?C=r[1].length+1:(C=r[2].search(this.rules.other.nonSpaceChar),C=C>4?1:C,b=_.slice(C),C+=r[1].length),S&&this.rules.other.blankLine.test(w)&&(m+=w+` +`,t=t.substring(w.length+1),p=!0),!p){let I=this.rules.other.nextBulletRegex(C),N=this.rules.other.hrRegex(C),L=this.rules.other.fencesBeginRegex(C),P=this.rules.other.headingBeginRegex(C),M=this.rules.other.htmlBeginRegex(C);for(;t;){let F=t.split(` +`,1)[0],U;if(w=F,this.options.pedantic?(w=w.replace(this.rules.other.listReplaceNesting," "),U=w):U=w.replace(this.rules.other.tabCharGlobal," "),L.test(w)||P.test(w)||M.test(w)||I.test(w)||N.test(w))break;if(U.search(this.rules.other.nonSpaceChar)>=C||!w.trim())b+=` +`+U.slice(C);else{if(S||_.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||L.test(_)||P.test(_)||N.test(_))break;b+=` +`+w}!S&&!w.trim()&&(S=!0),m+=F+` +`,t=t.substring(F.length+1),_=U.slice(C)}}o.loose||(h?o.loose=!0:this.rules.other.doubleBlankLine.test(m)&&(h=!0));let A=null,k;this.options.gfm&&(A=this.rules.other.listIsTask.exec(b),A&&(k=A[0]!=="[ ] ",b=b.replace(this.rules.other.listReplaceTask,""))),o.items.push({type:"list_item",raw:m,task:!!A,checked:k,loose:!1,text:b,tokens:[]}),o.raw+=m}let f=o.items.at(-1);if(f)f.raw=f.raw.trimEnd(),f.text=f.text.trimEnd();else return;o.raw=o.raw.trimEnd();for(let p=0;p_.type==="space"),b=m.length>0&&m.some(_=>this.rules.other.anyLine.test(_.raw));o.loose=b}if(o.loose)for(let p=0;p({text:p,tokens:this.lexer.inline(p),header:!1,align:u.align[m]})));return u}}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 a=r[1].charAt(r[1].length-1)===` +`?r[1].slice(0,-1):r[1];return{type:"paragraph",raw:r[0],text:a,tokens:this.lexer.inline(a)}}}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 a=r[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(a)){if(!this.rules.other.endAngleBracket.test(a))return;let u=zre(a.slice(0,-1),"\\");if((a.length-u.length)%2===0)return}else{let u=tpi(r[2],"()");if(u===-2)return;if(u>-1){let h=(r[0].indexOf("!")===0?5:4)+r[1].length+u;r[2]=r[2].substring(0,u),r[0]=r[0].substring(0,h).trim(),r[3]=""}}let s=r[2],o="";if(this.options.pedantic){let u=this.rules.other.pedanticHrefTitle.exec(s);u&&(s=u[1],o=u[3])}else o=r[3]?r[3].slice(1,-1):"";return s=s.trim(),this.rules.other.startAngleBracket.test(s)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(a)?s=s.slice(1):s=s.slice(1,-1)),wvn(r,{href:s&&s.replace(this.rules.inline.anyPunctuation,"$1"),title:o&&o.replace(this.rules.inline.anyPunctuation,"$1")},r[0],this.lexer,this.rules)}}reflink(t,r){let a;if((a=this.rules.inline.reflink.exec(t))||(a=this.rules.inline.nolink.exec(t))){let s=(a[2]||a[1]).replace(this.rules.other.multipleSpaceGlobal," "),o=r[s.toLowerCase()];if(!o){let u=a[0].charAt(0);return{type:"text",raw:u,text:u}}return wvn(a,o,a[0],this.lexer,this.rules)}}emStrong(t,r,a=""){let s=this.rules.inline.emStrongLDelim.exec(t);if(!(!s||s[3]&&a.match(this.rules.other.unicodeAlphaNumeric))&&(!(s[1]||s[2])||!a||this.rules.inline.punctuation.exec(a))){let o=[...s[0]].length-1,u,h,f=o,p=0,m=s[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(m.lastIndex=0,r=r.slice(-1*t.length+o);(s=m.exec(r))!=null;){if(u=s[1]||s[2]||s[3]||s[4]||s[5]||s[6],!u)continue;if(h=[...u].length,s[3]||s[4]){f+=h;continue}else if((s[5]||s[6])&&o%3&&!((o+h)%3)){p+=h;continue}if(f-=h,f>0)continue;h=Math.min(h,h+f+p);let b=[...s[0]][0].length,_=t.slice(0,o+s.index+b+h);if(Math.min(o,h)%2){let S=_.slice(1,-1);return{type:"em",raw:_,text:S,tokens:this.lexer.inlineTokens(S)}}let w=_.slice(2,-2);return{type:"strong",raw:_,text:w,tokens:this.lexer.inlineTokens(w)}}}}codespan(t){let r=this.rules.inline.code.exec(t);if(r){let a=r[2].replace(this.rules.other.newLineCharGlobal," "),s=this.rules.other.nonSpaceChar.test(a),o=this.rules.other.startingSpaceChar.test(a)&&this.rules.other.endingSpaceChar.test(a);return s&&o&&(a=a.substring(1,a.length-1)),{type:"codespan",raw:r[0],text:a}}}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 a,s;return r[2]==="@"?(a=r[1],s="mailto:"+a):(a=r[1],s=a),{type:"link",raw:r[0],text:a,href:s,tokens:[{type:"text",raw:a,text:a}]}}}url(t){var a;let r;if(r=this.rules.inline.url.exec(t)){let s,o;if(r[2]==="@")s=r[0],o="mailto:"+s;else{let u;do u=r[0],r[0]=((a=this.rules.inline._backpedal.exec(r[0]))==null?void 0:a[0])??"";while(u!==r[0]);s=r[0],r[1]==="www."?o="http://"+r[0]:o=r[0]}return{type:"link",raw:r[0],text:s,href:o,tokens:[{type:"text",raw:s,text:s}]}}}inlineText(t){let r=this.rules.inline.text.exec(t);if(r){let a=this.lexer.state.inRawBlock;return{type:"text",raw:r[0],text:r[0],escaped:a}}}},M3=class Zot{constructor(t){Gi(this,"tokens");Gi(this,"options");Gi(this,"state");Gi(this,"tokenizer");Gi(this,"inlineQueue");this.tokens=[],this.tokens.links=Object.create(null),this.options=t||O$,this.options.tokenizer=this.options.tokenizer||new B4e,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:Jy,block:Z_e.normal,inline:Ure.normal};this.options.pedantic?(r.block=Z_e.pedantic,r.inline=Ure.pedantic):this.options.gfm&&(r.block=Z_e.gfm,this.options.breaks?r.inline=Ure.breaks:r.inline=Ure.gfm),this.tokenizer.rules=r}static get rules(){return{block:Z_e,inline:Ure}}static lex(t,r){return new Zot(r).lex(t)}static lexInline(t,r){return new Zot(r).inlineTokens(t)}lex(t){t=t.replace(Jy.carriageReturn,` +`),this.blockTokens(t,this.tokens);for(let r=0;r(h=p.call({lexer:this},t,r))?(t=t.substring(h.raw.length),r.push(h),!0):!1))continue;if(h=this.tokenizer.space(t)){t=t.substring(h.raw.length);let p=r.at(-1);h.raw.length===1&&p!==void 0?p.raw+=` +`:r.push(h);continue}if(h=this.tokenizer.code(t)){t=t.substring(h.raw.length);let p=r.at(-1);(p==null?void 0:p.type)==="paragraph"||(p==null?void 0:p.type)==="text"?(p.raw+=(p.raw.endsWith(` +`)?"":` +`)+h.raw,p.text+=` +`+h.text,this.inlineQueue.at(-1).src=p.text):r.push(h);continue}if(h=this.tokenizer.fences(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.heading(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.hr(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.blockquote(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.list(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.html(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.def(t)){t=t.substring(h.raw.length);let p=r.at(-1);(p==null?void 0:p.type)==="paragraph"||(p==null?void 0:p.type)==="text"?(p.raw+=(p.raw.endsWith(` +`)?"":` +`)+h.raw,p.text+=` +`+h.raw,this.inlineQueue.at(-1).src=p.text):this.tokens.links[h.tag]||(this.tokens.links[h.tag]={href:h.href,title:h.title},r.push(h));continue}if(h=this.tokenizer.table(t)){t=t.substring(h.raw.length),r.push(h);continue}if(h=this.tokenizer.lheading(t)){t=t.substring(h.raw.length),r.push(h);continue}let f=t;if((u=this.options.extensions)!=null&&u.startBlock){let p=1/0,m=t.slice(1),b;this.options.extensions.startBlock.forEach(_=>{b=_.call({lexer:this},m),typeof b=="number"&&b>=0&&(p=Math.min(p,b))}),p<1/0&&p>=0&&(f=t.substring(0,p+1))}if(this.state.top&&(h=this.tokenizer.paragraph(f))){let p=r.at(-1);a&&(p==null?void 0:p.type)==="paragraph"?(p.raw+=(p.raw.endsWith(` +`)?"":` +`)+h.raw,p.text+=` +`+h.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=p.text):r.push(h),a=f.length!==t.length,t=t.substring(h.raw.length);continue}if(h=this.tokenizer.text(t)){t=t.substring(h.raw.length);let p=r.at(-1);(p==null?void 0:p.type)==="text"?(p.raw+=(p.raw.endsWith(` +`)?"":` +`)+h.raw,p.text+=` +`+h.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=p.text):r.push(h);continue}if(t){let p="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(p);break}else throw new Error(p)}}return this.state.top=!0,r}inline(t,r=[]){return this.inlineQueue.push({src:t,tokens:r}),r}inlineTokens(t,r=[]){var f,p,m,b,_;let a=t,s=null;if(this.tokens.links){let w=Object.keys(this.tokens.links);if(w.length>0)for(;(s=this.tokenizer.rules.inline.reflinkSearch.exec(a))!=null;)w.includes(s[0].slice(s[0].lastIndexOf("[")+1,-1))&&(a=a.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+a.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(s=this.tokenizer.rules.inline.anyPunctuation.exec(a))!=null;)a=a.slice(0,s.index)+"++"+a.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);let o;for(;(s=this.tokenizer.rules.inline.blockSkip.exec(a))!=null;)o=s[2]?s[2].length:0,a=a.slice(0,s.index+o)+"["+"a".repeat(s[0].length-o-2)+"]"+a.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);a=((p=(f=this.options.hooks)==null?void 0:f.emStrongMask)==null?void 0:p.call({lexer:this},a))??a;let u=!1,h="";for(;t;){u||(h=""),u=!1;let w;if((b=(m=this.options.extensions)==null?void 0:m.inline)!=null&&b.some(C=>(w=C.call({lexer:this},t,r))?(t=t.substring(w.raw.length),r.push(w),!0):!1))continue;if(w=this.tokenizer.escape(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.tag(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.link(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.reflink(t,this.tokens.links)){t=t.substring(w.raw.length);let C=r.at(-1);w.type==="text"&&(C==null?void 0:C.type)==="text"?(C.raw+=w.raw,C.text+=w.text):r.push(w);continue}if(w=this.tokenizer.emStrong(t,a,h)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.codespan(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.br(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.del(t)){t=t.substring(w.raw.length),r.push(w);continue}if(w=this.tokenizer.autolink(t)){t=t.substring(w.raw.length),r.push(w);continue}if(!this.state.inLink&&(w=this.tokenizer.url(t))){t=t.substring(w.raw.length),r.push(w);continue}let S=t;if((_=this.options.extensions)!=null&&_.startInline){let C=1/0,A=t.slice(1),k;this.options.extensions.startInline.forEach(I=>{k=I.call({lexer:this},A),typeof k=="number"&&k>=0&&(C=Math.min(C,k))}),C<1/0&&C>=0&&(S=t.substring(0,C+1))}if(w=this.tokenizer.inlineText(S)){t=t.substring(w.raw.length),w.raw.slice(-1)!=="_"&&(h=w.raw.slice(-1)),u=!0;let C=r.at(-1);(C==null?void 0:C.type)==="text"?(C.raw+=w.raw,C.text+=w.text):r.push(w);continue}if(t){let C="Infinite loop on byte: "+t.charCodeAt(0);if(this.options.silent){console.error(C);break}else throw new Error(C)}}return r}},F4e=class{constructor(t){Gi(this,"options");Gi(this,"parser");this.options=t||O$}space(t){return""}code({text:t,lang:r,escaped:a}){var u;let s=(u=(r||"").match(Jy.notSpaceStart))==null?void 0:u[0],o=t.replace(Jy.endingNewline,"")+` +`;return s?'
    '+(a?o:wC(o,!0))+`
    +`:"
    "+(a?o:wC(o,!0))+`
    +`}blockquote({tokens:t}){return`
    +${this.parser.parse(t)}
    +`}html({text:t}){return t}def(t){return""}heading({tokens:t,depth:r}){return`${this.parser.parseInline(t)} +`}hr(t){return`
    +`}list(t){let r=t.ordered,a=t.start,s="";for(let h=0;h +`+s+" +`}listitem(t){var a;let r="";if(t.task){let s=this.checkbox({checked:!!t.checked});t.loose?((a=t.tokens[0])==null?void 0:a.type)==="paragraph"?(t.tokens[0].text=s+" "+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=s+" "+wC(t.tokens[0].tokens[0].text),t.tokens[0].tokens[0].escaped=!0)):t.tokens.unshift({type:"text",raw:s+" ",text:s+" ",escaped:!0}):r+=s+" "}return r+=this.parser.parse(t.tokens,!!t.loose),`
  • ${r}
  • +`}checkbox({checked:t}){return"'}paragraph({tokens:t}){return`

    ${this.parser.parseInline(t)}

    +`}table(t){let r="",a="";for(let o=0;o${s}`),` + +`+r+` +`+s+`
    +`}tablerow({text:t}){return` +${t} +`}tablecell(t){let r=this.parser.parseInline(t.tokens),a=t.header?"th":"td";return(t.align?`<${a} align="${t.align}">`:`<${a}>`)+r+` +`}strong({tokens:t}){return`${this.parser.parseInline(t)}`}em({tokens:t}){return`${this.parser.parseInline(t)}`}codespan({text:t}){return`${wC(t,!0)}`}br(t){return"
    "}del({tokens:t}){return`${this.parser.parseInline(t)}`}link({href:t,title:r,tokens:a}){let s=this.parser.parseInline(a),o=vvn(t);if(o===null)return s;t=o;let u='
    ",u}image({href:t,title:r,text:a,tokens:s}){s&&(a=this.parser.parseInline(s,this.parser.textRenderer));let o=vvn(t);if(o===null)return wC(a);t=o;let u=`${a}{let p=h[f].flat(1/0);a=a.concat(this.walkTokens(p,r))}):h.tokens&&(a=a.concat(this.walkTokens(h.tokens,r)))}}return a}use(...t){let r=this.defaults.extensions||{renderers:{},childTokens:{}};return t.forEach(a=>{let s={...a};if(s.async=this.defaults.async||s.async||!1,a.extensions&&(a.extensions.forEach(o=>{if(!o.name)throw new Error("extension name required");if("renderer"in o){let u=r.renderers[o.name];u?r.renderers[o.name]=function(...h){let f=o.renderer.apply(this,h);return f===!1&&(f=u.apply(this,h)),f}:r.renderers[o.name]=o.renderer}if("tokenizer"in o){if(!o.level||o.level!=="block"&&o.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let u=r[o.level];u?u.unshift(o.tokenizer):r[o.level]=[o.tokenizer],o.start&&(o.level==="block"?r.startBlock?r.startBlock.push(o.start):r.startBlock=[o.start]:o.level==="inline"&&(r.startInline?r.startInline.push(o.start):r.startInline=[o.start]))}"childTokens"in o&&o.childTokens&&(r.childTokens[o.name]=o.childTokens)}),s.extensions=r),a.renderer){let o=this.defaults.renderer||new F4e(this.defaults);for(let u in a.renderer){if(!(u in o))throw new Error(`renderer '${u}' does not exist`);if(["options","parser"].includes(u))continue;let h=u,f=a.renderer[h],p=o[h];o[h]=(...m)=>{let b=f.apply(o,m);return b===!1&&(b=p.apply(o,m)),b||""}}s.renderer=o}if(a.tokenizer){let o=this.defaults.tokenizer||new B4e(this.defaults);for(let u in a.tokenizer){if(!(u in o))throw new Error(`tokenizer '${u}' does not exist`);if(["options","rules","lexer"].includes(u))continue;let h=u,f=a.tokenizer[h],p=o[h];o[h]=(...m)=>{let b=f.apply(o,m);return b===!1&&(b=p.apply(o,m)),b}}s.tokenizer=o}if(a.hooks){let o=this.defaults.hooks||new Pie;for(let u in a.hooks){if(!(u in o))throw new Error(`hook '${u}' does not exist`);if(["options","block"].includes(u))continue;let h=u,f=a.hooks[h],p=o[h];Pie.passThroughHooks.has(u)?o[h]=m=>{if(this.defaults.async&&Pie.passThroughHooksRespectAsync.has(u))return(async()=>{let _=await f.call(o,m);return p.call(o,_)})();let b=f.call(o,m);return p.call(o,b)}:o[h]=(...m)=>{if(this.defaults.async)return(async()=>{let _=await f.apply(o,m);return _===!1&&(_=await p.apply(o,m)),_})();let b=f.apply(o,m);return b===!1&&(b=p.apply(o,m)),b}}s.hooks=o}if(a.walkTokens){let o=this.defaults.walkTokens,u=a.walkTokens;s.walkTokens=function(h){let f=[];return f.push(u.call(this,h)),o&&(f=f.concat(o.call(this,h))),f}}this.defaults={...this.defaults,...s}}),this}setOptions(t){return this.defaults={...this.defaults,...t},this}lexer(t,r){return M3.lex(t,r??this.defaults)}parser(t,r){return P3.parse(t,r??this.defaults)}parseMarkdown(t){return(r,a)=>{let s={...a},o={...this.defaults,...s},u=this.onError(!!o.silent,!!o.async);if(this.defaults.async===!0&&s.async===!1)return u(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 u(new Error("marked(): input parameter is undefined or null"));if(typeof r!="string")return u(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(r)+", string expected"));if(o.hooks&&(o.hooks.options=o,o.hooks.block=t),o.async)return(async()=>{let h=o.hooks?await o.hooks.preprocess(r):r,f=await(o.hooks?await o.hooks.provideLexer():t?M3.lex:M3.lexInline)(h,o),p=o.hooks?await o.hooks.processAllTokens(f):f;o.walkTokens&&await Promise.all(this.walkTokens(p,o.walkTokens));let m=await(o.hooks?await o.hooks.provideParser():t?P3.parse:P3.parseInline)(p,o);return o.hooks?await o.hooks.postprocess(m):m})().catch(u);try{o.hooks&&(r=o.hooks.preprocess(r));let h=(o.hooks?o.hooks.provideLexer():t?M3.lex:M3.lexInline)(r,o);o.hooks&&(h=o.hooks.processAllTokens(h)),o.walkTokens&&this.walkTokens(h,o.walkTokens);let f=(o.hooks?o.hooks.provideParser():t?P3.parse:P3.parseInline)(h,o);return o.hooks&&(f=o.hooks.postprocess(f)),f}catch(h){return u(h)}}}onError(t,r){return a=>{if(a.message+=` +Please report this to https://github.com/markedjs/marked.`,t){let s="

    An error occurred:

    "+wC(a.message+"",!0)+"
    ";return r?Promise.resolve(s):s}if(r)return Promise.reject(a);throw a}}},UF=new rpi;function $u(e,t){return UF.parse(e,t)}$u.options=$u.setOptions=function(e){return UF.setOptions(e),$u.defaults=UF.defaults,aBn($u.defaults),$u};$u.getDefaults=z1t;$u.defaults=O$;$u.use=function(...e){return UF.use(...e),$u.defaults=UF.defaults,aBn($u.defaults),$u};$u.walkTokens=function(e,t){return UF.walkTokens(e,t)};$u.parseInline=UF.parseInline;$u.Parser=P3;$u.parser=P3.parse;$u.Renderer=F4e;$u.TextRenderer=K1t;$u.Lexer=M3;$u.lexer=M3.lex;$u.Tokenizer=B4e;$u.Hooks=Pie;$u.parse=$u;$u.options;$u.setOptions;$u.use;$u.walkTokens;$u.parseInline;P3.parse;M3.lex;function TAe(e){for(var t=[],r=1;r?',height:80,width:80},elt=new Map,bBn=new Map,yBn=X(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(it.debug("Registering icon pack:",t.name),"loader"in t)bBn.set(t.name,t.loader);else if("icons"in t)elt.set(t.name,t.icons);else throw it.error("Invalid icon loader:",t),new Error('Invalid icon loader. Must have either "icons" or "loader" property.')}},"registerIconPacks"),vBn=X(async(e,t)=>{const r=s1i(e,!0,t!==void 0);if(!r)throw new Error(`Invalid icon name: ${e}`);const a=r.prefix||t;if(!a)throw new Error(`Icon name must contain a prefix: ${e}`);let s=elt.get(a);if(!s){const u=bBn.get(a);if(!u)throw new Error(`Icon set not found: ${r.prefix}`);try{s={...await u(),prefix:a},elt.set(a,s)}catch(h){throw it.error(h),new Error(`Failed to load icon set: ${r.prefix}`)}}const o=c1i(s,r.name);if(!o)throw new Error(`Icon not found: ${e}`);return o},"getRegisteredIconData"),ipi=X(async e=>{try{return await vBn(e),!0}catch{return!1}},"isIconAvailable"),QO=X(async(e,t,r)=>{let a;try{a=await vBn(e,t==null?void 0:t.fallbackPrefix)}catch(u){it.error(u),a=mBn}const s=m1i(a,t),o=_1i(v1i(s.body),{...s.attributes,...r});return Ic(o,$c())},"getIconSVG");function _Bn(e,{markdownAutoWrap:t}){const a=e.replace(//g,` +`).replace(/\n{2,}/g,` +`),s=TAe(a);return t===!1?s.replace(/ /g," "):s}X(_Bn,"preprocessMarkdown");function wBn(e,t={}){const r=_Bn(e,t),a=$u.lexer(r),s=[[]];let o=0;function u(h,f="normal"){h.type==="text"?h.text.split(` +`).forEach((m,b)=>{b!==0&&(o++,s.push([])),m.split(" ").forEach(_=>{_=_.replace(/'/g,"'"),_&&s[o].push({content:_,type:f})})}):h.type==="strong"||h.type==="em"?h.tokens.forEach(p=>{u(p,h.type)}):h.type==="html"&&s[o].push({content:h.text,type:"normal"})}return X(u,"processNode"),a.forEach(h=>{var f;h.type==="paragraph"?(f=h.tokens)==null||f.forEach(p=>{u(p)}):h.type==="html"?s[o].push({content:h.text,type:"normal"}):s[o].push({content:h.raw,type:"normal"})}),s}X(wBn,"markdownToLines");function EBn(e,{markdownAutoWrap:t}={}){const r=$u.lexer(e);function a(s){var o,u,h;return s.type==="text"?t===!1?s.text.replace(/\n */g,"
    ").replace(/ /g," "):s.text.replace(/\n */g,"
    "):s.type==="strong"?`${(o=s.tokens)==null?void 0:o.map(a).join("")}`:s.type==="em"?`${(u=s.tokens)==null?void 0:u.map(a).join("")}`:s.type==="paragraph"?`

    ${(h=s.tokens)==null?void 0:h.map(a).join("")}

    `:s.type==="space"?"":s.type==="html"?`${s.text}`:s.type==="escape"?s.text:(it.warn(`Unsupported markdown: ${s.type}`),s.raw)}return X(a,"output"),r.map(a).join("")}X(EBn,"markdownToHTML");function xBn(e){return Intl.Segmenter?[...new Intl.Segmenter().segment(e)].map(t=>t.segment):[...e]}X(xBn,"splitTextToChars");function SBn(e,t){const r=xBn(t.content);return X1t(e,[],r,t.type)}X(SBn,"splitWordToFitWidth");function X1t(e,t,r,a){if(r.length===0)return[{content:t.join(""),type:a},{content:"",type:a}];const[s,...o]=r,u=[...t,s];return e([{content:u.join(""),type:a}])?X1t(e,u,o,a):(t.length===0&&s&&(t.push(s),r.shift()),[{content:t.join(""),type:a},{content:r.join(""),type:a}])}X(X1t,"splitWordToFitWidthRecursion");function TBn(e,t){if(e.some(({content:r})=>r.includes(` +`)))throw new Error("splitLineToFitWidth does not support newlines in the line");return $4e(e,t)}X(TBn,"splitLineToFitWidth");function $4e(e,t,r=[],a=[]){if(e.length===0)return a.length>0&&r.push(a),r.length>0?r:[];let s="";e[0].content===" "&&(s=" ",e.shift());const o=e.shift()??{content:" ",type:"normal"},u=[...a];if(s!==""&&u.push({content:s,type:"normal"}),u.push(o),t(u))return $4e(e,t,r,u);if(a.length>0)r.push(a),e.unshift(o);else if(o.content){const[h,f]=SBn(t,o);r.push([h]),f.content&&e.unshift(f)}return $4e(e,t,r)}X($4e,"splitLineToFitWidthRecursion");function tlt(e,t){t&&e.attr("style",t)}X(tlt,"applyStyle");async function CBn(e,t,r,a,s=!1,o=$c()){const u=e.append("foreignObject");u.attr("width",`${10*r}px`),u.attr("height",`${10*r}px`);const h=u.append("xhtml:div"),f=u0(t.label)?await nce(t.label.replace(Ti.lineBreakRegex,` +`),o):Ic(t.label,o),p=t.isNode?"nodeLabel":"edgeLabel",m=h.append("span");m.html(f),tlt(m,t.labelStyle),m.attr("class",`${p} ${a}`),tlt(h,t.labelStyle),h.style("display","table-cell"),h.style("white-space","nowrap"),h.style("line-height","1.5"),h.style("max-width",r+"px"),h.style("text-align","center"),h.attr("xmlns","http://www.w3.org/1999/xhtml"),s&&h.attr("class","labelBkg");let b=h.node().getBoundingClientRect();return b.width===r&&(h.style("display","table"),h.style("white-space","break-spaces"),h.style("width",r+"px"),b=h.node().getBoundingClientRect()),u.node()}X(CBn,"addHtmlSpan");function CAe(e,t,r){return e.append("tspan").attr("class","text-outer-tspan").attr("x",0).attr("y",t*r-.1+"em").attr("dy",r+"em")}X(CAe,"createTspan");function ABn(e,t,r){const a=e.append("text"),s=CAe(a,1,t);AAe(s,r);const o=s.node().getComputedTextLength();return a.remove(),o}X(ABn,"computeWidthOfText");function kBn(e,t,r){var u;const a=e.append("text"),s=CAe(a,1,t);AAe(s,[{content:r,type:"normal"}]);const o=(u=s.node())==null?void 0:u.getBoundingClientRect();return o&&a.remove(),o}X(kBn,"computeDimensionOfText");function RBn(e,t,r,a=!1){const o=t.append("g"),u=o.insert("rect").attr("class","background").attr("style","stroke: none"),h=o.append("text").attr("y","-10.1");let f=0;for(const p of r){const m=X(_=>ABn(o,1.1,_)<=e,"checkWidth"),b=m(p)?[p]:TBn(p,m);for(const _ of b){const w=CAe(h,f,1.1);AAe(w,_),f++}}if(a){const p=h.node().getBBox(),m=2;return u.attr("x",p.x-m).attr("y",p.y-m).attr("width",p.width+2*m).attr("height",p.height+2*m),o.node()}else return h.node()}X(RBn,"createFormattedText");function AAe(e,t){e.text(""),t.forEach((r,a)=>{const s=e.append("tspan").attr("font-style",r.type==="em"?"italic":"normal").attr("class","text-inner-tspan").attr("font-weight",r.type==="strong"?"bold":"normal");a===0?s.text(r.content):s.text(" "+r.content)})}X(AAe,"updateTextContentAndStyles");async function Q1t(e,t={}){const r=[];e.replace(/(fa[bklrs]?):fa-([\w-]+)/g,(s,o,u)=>(r.push((async()=>{const h=`${o}:${u}`;return await ipi(h)?await QO(h,void 0,{class:"label-icon"}):``})()),s));const a=await Promise.all(r);return e.replace(/(fa[bklrs]?):fa-([\w-]+)/g,()=>a.shift()??"")}X(Q1t,"replaceIconSubstring");var Yw=X(async(e,t="",{style:r="",isTitle:a=!1,classes:s="",useHtmlLabels:o=!0,isNode:u=!0,width:h=200,addSvgBackground:f=!1}={},p)=>{if(it.debug("XYZ createText",t,r,a,s,o,u,"addSvgBackground: ",f),o){const m=EBn(t,p),b=await Q1t(vA(m),p),_=t.replace(/\\\\/g,"\\"),w={isNode:u,label:u0(t)?_:b,labelStyle:r.replace("fill:","color:")};return await CBn(e,w,h,s,f,p)}else{const m=t.replace(//g,"
    "),b=wBn(m.replace("
    ","
    "),p),_=RBn(h,e,b,t?f:!1);if(u){/stroke:/.exec(r)&&(r=r.replace("stroke:","lineColor:"));const w=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/color:/g,"fill:");gn(_).attr("style",w)}else{const w=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/background:/g,"fill:");gn(_).select("rect").attr("style",w.replace(/background:/g,"fill:"));const S=r.replace(/stroke:[^;]+;?/g,"").replace(/stroke-width:[^;]+;?/g,"").replace(/fill:[^;]+;?/g,"").replace(/color:/g,"fill:");gn(_).select("text").attr("style",S)}return _}},"createText");function Rtt(e,t,r){if(e&&e.length){const[a,s]=t,o=Math.PI/180*r,u=Math.cos(o),h=Math.sin(o);for(const f of e){const[p,m]=f;f[0]=(p-a)*u-(m-s)*h+a,f[1]=(p-a)*h+(m-s)*u+s}}}function api(e,t){return e[0]===t[0]&&e[1]===t[1]}function spi(e,t,r,a=1){const s=r,o=Math.max(t,.1),u=e[0]&&e[0][0]&&typeof e[0][0]=="number"?[e]:e,h=[0,0];if(s)for(const p of u)Rtt(p,h,s);const f=function(p,m,b){const _=[];for(const I of p){const N=[...I];api(N[0],N[N.length-1])||N.push([N[0][0],N[0][1]]),N.length>2&&_.push(N)}const w=[];m=Math.max(m,.1);const S=[];for(const I of _)for(let N=0;NI.yminN.ymin?1:I.xN.x?1:I.ymax===N.ymax?0:(I.ymax-N.ymax)/Math.abs(I.ymax-N.ymax)),!S.length)return w;let C=[],A=S[0].ymin,k=0;for(;C.length||S.length;){if(S.length){let I=-1;for(let N=0;NA);N++)I=N;S.splice(0,I+1).forEach(N=>{C.push({s:A,edge:N})})}if(C=C.filter(I=>!(I.edge.ymax<=A)),C.sort((I,N)=>I.edge.x===N.edge.x?0:(I.edge.x-N.edge.x)/Math.abs(I.edge.x-N.edge.x)),(b!==1||k%m==0)&&C.length>1)for(let I=0;I=C.length)break;const L=C[I].edge,P=C[N].edge;w.push([[Math.round(L.x),A],[Math.round(P.x),A]])}A+=b,C.forEach(I=>{I.edge.x=I.edge.x+b*I.edge.islope}),k++}return w}(u,o,a);if(s){for(const p of u)Rtt(p,h,-s);(function(p,m,b){const _=[];p.forEach(w=>_.push(...w)),Rtt(_,m,b)})(f,h,-s)}return f}function uce(e,t){var r;const a=t.hachureAngle+90;let s=t.hachureGap;s<0&&(s=4*t.strokeWidth),s=Math.round(Math.max(s,.1));let o=1;return t.roughness>=1&&(((r=t.randomizer)===null||r===void 0?void 0:r.next())||Math.random())>.7&&(o=s),spi(e,s,a,o||1)}let Z1t=class{constructor(t){this.helper=t}fillPolygons(t,r){return this._fillPolygons(t,r)}_fillPolygons(t,r){const a=uce(t,r);return{type:"fillSketch",ops:this.renderLines(a,r)}}renderLines(t,r){const a=[];for(const s of t)a.push(...this.helper.doubleLineOps(s[0][0],s[0][1],s[1][0],s[1][1],r));return a}};function kAe(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 opi extends Z1t{fillPolygons(t,r){let a=r.hachureGap;a<0&&(a=4*r.strokeWidth),a=Math.max(a,.1);const s=uce(t,Object.assign({},r,{hachureGap:a})),o=Math.PI/180*r.hachureAngle,u=[],h=.5*a*Math.cos(o),f=.5*a*Math.sin(o);for(const[p,m]of s)kAe([p,m])&&u.push([[p[0]-h,p[1]+f],[...m]],[[p[0]+h,p[1]-f],[...m]]);return{type:"fillSketch",ops:this.renderLines(u,r)}}}let lpi=class extends Z1t{fillPolygons(t,r){const a=this._fillPolygons(t,r),s=Object.assign({},r,{hachureAngle:r.hachureAngle+90}),o=this._fillPolygons(t,s);return a.ops=a.ops.concat(o.ops),a}},cpi=class{constructor(t){this.helper=t}fillPolygons(t,r){const a=uce(t,r=Object.assign({},r,{hachureAngle:0}));return this.dotsOnLines(a,r)}dotsOnLines(t,r){const a=[];let s=r.hachureGap;s<0&&(s=4*r.strokeWidth),s=Math.max(s,.1);let o=r.fillWeight;o<0&&(o=r.strokeWidth/2);const u=s/4;for(const h of t){const f=kAe(h),p=f/s,m=Math.ceil(p)-1,b=f-m*s,_=(h[0][0]+h[1][0])/2-s/4,w=Math.min(h[0][1],h[1][1]);for(let S=0;S{const h=kAe(u),f=Math.floor(h/(a+s)),p=(h+s-f*(a+s))/2;let m=u[0],b=u[1];m[0]>b[0]&&(m=u[1],b=u[0]);const _=Math.atan((b[1]-m[1])/(b[0]-m[0]));for(let w=0;w{const u=kAe(o),h=Math.round(u/(2*r));let f=o[0],p=o[1];f[0]>p[0]&&(f=o[1],p=o[0]);const m=Math.atan((p[1]-f[1])/(p[0]-f[0]));for(let b=0;bm%2?p+r:p+t);o.push({key:"C",data:f}),t=f[4],r=f[5];break}case"Q":o.push({key:"Q",data:[...h]}),t=h[2],r=h[3];break;case"q":{const f=h.map((p,m)=>m%2?p+r:p+t);o.push({key:"Q",data:f}),t=f[2],r=f[3];break}case"A":o.push({key:"A",data:[...h]}),t=h[5],r=h[6];break;case"a":t+=h[5],r+=h[6],o.push({key:"A",data:[h[0],h[1],h[2],h[3],h[4],t,r]});break;case"H":o.push({key:"H",data:[...h]}),t=h[0];break;case"h":t+=h[0],o.push({key:"H",data:[t]});break;case"V":o.push({key:"V",data:[...h]}),r=h[0];break;case"v":r+=h[0],o.push({key:"V",data:[r]});break;case"S":o.push({key:"S",data:[...h]}),t=h[2],r=h[3];break;case"s":{const f=h.map((p,m)=>m%2?p+r:p+t);o.push({key:"S",data:f}),t=f[2],r=f[3];break}case"T":o.push({key:"T",data:[...h]}),t=h[0],r=h[1];break;case"t":t+=h[0],r+=h[1],o.push({key:"T",data:[t,r]});break;case"Z":case"z":o.push({key:"Z",data:[]}),t=a,r=s}return o}function NBn(e){const t=[];let r="",a=0,s=0,o=0,u=0,h=0,f=0;for(const{key:p,data:m}of e){switch(p){case"M":t.push({key:"M",data:[...m]}),[a,s]=m,[o,u]=m;break;case"C":t.push({key:"C",data:[...m]}),a=m[4],s=m[5],h=m[2],f=m[3];break;case"L":t.push({key:"L",data:[...m]}),[a,s]=m;break;case"H":a=m[0],t.push({key:"L",data:[a,s]});break;case"V":s=m[0],t.push({key:"L",data:[a,s]});break;case"S":{let b=0,_=0;r==="C"||r==="S"?(b=a+(a-h),_=s+(s-f)):(b=a,_=s),t.push({key:"C",data:[b,_,...m]}),h=m[0],f=m[1],a=m[2],s=m[3];break}case"T":{const[b,_]=m;let w=0,S=0;r==="Q"||r==="T"?(w=a+(a-h),S=s+(s-f)):(w=a,S=s);const C=a+2*(w-a)/3,A=s+2*(S-s)/3,k=b+2*(w-b)/3,I=_+2*(S-_)/3;t.push({key:"C",data:[C,A,k,I,b,_]}),h=w,f=S,a=b,s=_;break}case"Q":{const[b,_,w,S]=m,C=a+2*(b-a)/3,A=s+2*(_-s)/3,k=w+2*(b-w)/3,I=S+2*(_-S)/3;t.push({key:"C",data:[C,A,k,I,w,S]}),h=b,f=_,a=w,s=S;break}case"A":{const b=Math.abs(m[0]),_=Math.abs(m[1]),w=m[2],S=m[3],C=m[4],A=m[5],k=m[6];b===0||_===0?(t.push({key:"C",data:[a,s,A,k,A,k]}),a=A,s=k):(a!==A||s!==k)&&(OBn(a,s,A,k,b,_,w,S,C).forEach(function(I){t.push({key:"C",data:I})}),a=A,s=k);break}case"Z":t.push({key:"Z",data:[]}),a=o,s=u}r=p}return t}function Gre(e,t,r){return[e*Math.cos(r)-t*Math.sin(r),e*Math.sin(r)+t*Math.cos(r)]}function OBn(e,t,r,a,s,o,u,h,f,p){const m=(b=u,Math.PI*b/180);var b;let _=[],w=0,S=0,C=0,A=0;if(p)[w,S,C,A]=p;else{[e,t]=Gre(e,t,-m),[r,a]=Gre(r,a,-m);const z=(e-r)/2,Y=(t-a)/2;let W=z*z/(s*s)+Y*Y/(o*o);W>1&&(W=Math.sqrt(W),s*=W,o*=W);const Q=s*s,V=o*o,j=Q*V-Q*Y*Y-V*z*z,ee=Q*Y*Y+V*z*z,te=(h===f?-1:1)*Math.sqrt(Math.abs(j/ee));C=te*s*Y/o+(e+r)/2,A=te*-o*z/s+(t+a)/2,w=Math.asin(parseFloat(((t-A)/o).toFixed(9))),S=Math.asin(parseFloat(((a-A)/o).toFixed(9))),eS&&(w-=2*Math.PI),!f&&S>w&&(S-=2*Math.PI)}let k=S-w;if(Math.abs(k)>120*Math.PI/180){const z=S,Y=r,W=a;S=f&&S>w?w+120*Math.PI/180*1:w+120*Math.PI/180*-1,_=OBn(r=C+s*Math.cos(S),a=A+o*Math.sin(S),Y,W,s,o,u,0,f,[S,z,C,A])}k=S-w;const I=Math.cos(w),N=Math.sin(w),L=Math.cos(S),P=Math.sin(S),M=Math.tan(k/4),F=4/3*s*M,U=4/3*o*M,$=[e,t],G=[e+F*N,t-U*I],B=[r+F*P,a-U*L],Z=[r,a];if(G[0]=2*$[0]-G[0],G[1]=2*$[1]-G[1],p)return[G,B,Z].concat(_);{_=[G,B,Z].concat(_);const z=[];for(let Y=0;Y<_.length;Y+=3){const W=Gre(_[Y][0],_[Y][1],m),Q=Gre(_[Y+1][0],_[Y+1][1],m),V=Gre(_[Y+2][0],_[Y+2][1],m);z.push([W[0],W[1],Q[0],Q[1],V[0],V[1]])}return z}}const ppi={randOffset:function(e,t){return yo(e,t)},randOffsetWithRange:function(e,t,r){return U4e(e,t,r)},ellipse:function(e,t,r,a,s){const o=DBn(r,a,s);return nlt(e,t,s,o).opset},doubleLineOps:function(e,t,r,a,s){return ZO(e,t,r,a,s,!0)}};function LBn(e,t,r,a,s){return{type:"path",ops:ZO(e,t,r,a,s)}}function oxe(e,t,r){const a=(e||[]).length;if(a>2){const s=[];for(let o=0;o2*Math.PI&&(w=0,S=2*Math.PI);const C=2*Math.PI/f.curveStepCount,A=Math.min(C/2,(S-w)/2),k=kvn(A,p,m,b,_,w,S,1,f);if(!f.disableMultiStroke){const I=kvn(A,p,m,b,_,w,S,1.5,f);k.push(...I)}return u&&(h?k.push(...ZO(p,m,p+b*Math.cos(w),m+_*Math.sin(w),f),...ZO(p,m,p+b*Math.cos(S),m+_*Math.sin(S),f)):k.push({op:"lineTo",data:[p,m]},{op:"lineTo",data:[p+b*Math.cos(w),m+_*Math.sin(w)]})),{type:"path",ops:k}}function Tvn(e,t){const r=NBn(IBn(J1t(e))),a=[];let s=[0,0],o=[0,0];for(const{key:u,data:h}of r)switch(u){case"M":o=[h[0],h[1]],s=[h[0],h[1]];break;case"L":a.push(...ZO(o[0],o[1],h[0],h[1],t)),o=[h[0],h[1]];break;case"C":{const[f,p,m,b,_,w]=h;a.push(...mpi(f,p,m,b,_,w,o,t)),o=[_,w];break}case"Z":a.push(...ZO(o[0],o[1],s[0],s[1],t)),o=[s[0],s[1]]}return{type:"path",ops:a}}function Ott(e,t){const r=[];for(const a of e)if(a.length){const s=t.maxRandomnessOffset||0,o=a.length;if(o>2){r.push({op:"move",data:[a[0][0]+yo(s,t),a[0][1]+yo(s,t)]});for(let u=1;u500?.4:-.0016668*f+1.233334;let m=s.maxRandomnessOffset||0;m*m*100>h&&(m=f/10);const b=m/2,_=.2+.2*MBn(s);let w=s.bowing*s.maxRandomnessOffset*(a-t)/200,S=s.bowing*s.maxRandomnessOffset*(e-r)/200;w=yo(w,s,p),S=yo(S,s,p);const C=[],A=()=>yo(b,s,p),k=()=>yo(m,s,p),I=s.preserveVertices;return u?C.push({op:"move",data:[e+(I?0:A()),t+(I?0:A())]}):C.push({op:"move",data:[e+(I?0:yo(m,s,p)),t+(I?0:yo(m,s,p))]}),u?C.push({op:"bcurveTo",data:[w+e+(r-e)*_+A(),S+t+(a-t)*_+A(),w+e+2*(r-e)*_+A(),S+t+2*(a-t)*_+A(),r+(I?0:A()),a+(I?0:A())]}):C.push({op:"bcurveTo",data:[w+e+(r-e)*_+k(),S+t+(a-t)*_+k(),w+e+2*(r-e)*_+k(),S+t+2*(a-t)*_+k(),r+(I?0:k()),a+(I?0:k())]}),C}function ewe(e,t,r){if(!e.length)return[];const a=[];a.push([e[0][0]+yo(t,r),e[0][1]+yo(t,r)]),a.push([e[0][0]+yo(t,r),e[0][1]+yo(t,r)]);for(let s=1;s3){const o=[],u=1-r.curveTightness;s.push({op:"move",data:[e[1][0],e[1][1]]});for(let h=1;h+21&&s.push(h)):s.push(h),s.push(e[t+3])}else{const f=e[t+0],p=e[t+1],m=e[t+2],b=e[t+3],_=kB(f,p,.5),w=kB(p,m,.5),S=kB(m,b,.5),C=kB(_,w,.5),A=kB(w,S,.5),k=kB(C,A,.5);ilt([f,_,C,k],0,r,s),ilt([k,A,S,b],0,r,s)}var o,u;return s}function ypi(e,t){return G4e(e,0,e.length,t)}function G4e(e,t,r,a,s){const o=s||[],u=e[t],h=e[r-1];let f=0,p=1;for(let m=t+1;mf&&(f=b,p=m)}return Math.sqrt(f)>a?(G4e(e,t,p+1,a,o),G4e(e,p,r,a,o)):(o.length||o.push(u),o.push(h)),o}function Ltt(e,t=.15,r){const a=[],s=(e.length-1)/3;for(let o=0;o0?G4e(a,0,a.length,r):a}const xw="none";let q4e=class{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,a){return{shape:t,sets:r||[],options:a||this.defaultOptions}}line(t,r,a,s,o){const u=this._o(o);return this._d("line",[LBn(t,r,a,s,u)],u)}rectangle(t,r,a,s,o){const u=this._o(o),h=[],f=gpi(t,r,a,s,u);if(u.fill){const p=[[t,r],[t+a,r],[t+a,r+s],[t,r+s]];u.fillStyle==="solid"?h.push(Ott([p],u)):h.push(UH([p],u))}return u.stroke!==xw&&h.push(f),this._d("rectangle",h,u)}ellipse(t,r,a,s,o){const u=this._o(o),h=[],f=DBn(a,s,u),p=nlt(t,r,u,f);if(u.fill)if(u.fillStyle==="solid"){const m=nlt(t,r,u,f).opset;m.type="fillPath",h.push(m)}else h.push(UH([p.estimatedPoints],u));return u.stroke!==xw&&h.push(p.opset),this._d("ellipse",h,u)}circle(t,r,a,s){const o=this.ellipse(t,r,a,a,s);return o.shape="circle",o}linearPath(t,r){const a=this._o(r);return this._d("linearPath",[oxe(t,!1,a)],a)}arc(t,r,a,s,o,u,h=!1,f){const p=this._o(f),m=[],b=Svn(t,r,a,s,o,u,h,!0,p);if(h&&p.fill)if(p.fillStyle==="solid"){const _=Object.assign({},p);_.disableMultiStroke=!0;const w=Svn(t,r,a,s,o,u,!0,!1,_);w.type="fillPath",m.push(w)}else m.push(function(_,w,S,C,A,k,I){const N=_,L=w;let P=Math.abs(S/2),M=Math.abs(C/2);P+=yo(.01*P,I),M+=yo(.01*M,I);let F=A,U=k;for(;F<0;)F+=2*Math.PI,U+=2*Math.PI;U-F>2*Math.PI&&(F=0,U=2*Math.PI);const $=(U-F)/I.curveStepCount,G=[];for(let B=F;B<=U;B+=$)G.push([N+P*Math.cos(B),L+M*Math.sin(B)]);return G.push([N+P*Math.cos(U),L+M*Math.sin(U)]),G.push([N,L]),UH([G],I)}(t,r,a,s,o,u,p));return p.stroke!==xw&&m.push(b),this._d("arc",m,p)}curve(t,r){const a=this._o(r),s=[],o=xvn(t,a);if(a.fill&&a.fill!==xw)if(a.fillStyle==="solid"){const u=xvn(t,Object.assign(Object.assign({},a),{disableMultiStroke:!0,roughness:a.roughness?a.roughness+a.fillShapeRoughnessGain:0}));s.push({type:"fillPath",ops:this._mergedShape(u.ops)})}else{const u=[],h=t;if(h.length){const f=typeof h[0][0]=="number"?[h]:h;for(const p of f)p.length<3?u.push(...p):p.length===3?u.push(...Ltt(Rvn([p[0],p[0],p[1],p[2]]),10,(1+a.roughness)/2)):u.push(...Ltt(Rvn(p),10,(1+a.roughness)/2))}u.length&&s.push(UH([u],a))}return a.stroke!==xw&&s.push(o),this._d("curve",s,a)}polygon(t,r){const a=this._o(r),s=[],o=oxe(t,!0,a);return a.fill&&(a.fillStyle==="solid"?s.push(Ott([t],a)):s.push(UH([t],a))),a.stroke!==xw&&s.push(o),this._d("polygon",s,a)}path(t,r){const a=this._o(r),s=[];if(!t)return this._d("path",s,a);t=(t||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");const o=a.fill&&a.fill!=="transparent"&&a.fill!==xw,u=a.stroke!==xw,h=!!(a.simplification&&a.simplification<1),f=function(m,b,_){const w=NBn(IBn(J1t(m))),S=[];let C=[],A=[0,0],k=[];const I=()=>{k.length>=4&&C.push(...Ltt(k,b)),k=[]},N=()=>{I(),C.length&&(S.push(C),C=[])};for(const{key:P,data:M}of w)switch(P){case"M":N(),A=[M[0],M[1]],C.push(A);break;case"L":I(),C.push([M[0],M[1]]);break;case"C":if(!k.length){const F=C.length?C[C.length-1]:A;k.push([F[0],F[1]])}k.push([M[0],M[1]]),k.push([M[2],M[3]]),k.push([M[4],M[5]]);break;case"Z":I(),C.push([A[0],A[1]])}if(N(),!_)return S;const L=[];for(const P of S){const M=ypi(P,_);M.length&&L.push(M)}return L}(t,1,h?4-4*(a.simplification||1):(1+a.roughness)/2),p=Tvn(t,a);if(o)if(a.fillStyle==="solid")if(f.length===1){const m=Tvn(t,Object.assign(Object.assign({},a),{disableMultiStroke:!0,roughness:a.roughness?a.roughness+a.fillShapeRoughnessGain:0}));s.push({type:"fillPath",ops:this._mergedShape(m.ops)})}else s.push(Ott(f,a));else s.push(UH(f,a));return u&&(h?f.forEach(m=>{s.push(oxe(m,!1,a))}):s.push(p)),this._d("path",s,a)}opsToPath(t,r){let a="";for(const s of t.ops){const o=typeof r=="number"&&r>=0?s.data.map(u=>+u.toFixed(r)):s.data;switch(s.op){case"move":a+=`M${o[0]} ${o[1]} `;break;case"bcurveTo":a+=`C${o[0]} ${o[1]}, ${o[2]} ${o[3]}, ${o[4]} ${o[5]} `;break;case"lineTo":a+=`L${o[0]} ${o[1]} `}}return a.trim()}toPaths(t){const r=t.sets||[],a=t.options||this.defaultOptions,s=[];for(const o of r){let u=null;switch(o.type){case"path":u={d:this.opsToPath(o),stroke:a.stroke,strokeWidth:a.strokeWidth,fill:xw};break;case"fillPath":u={d:this.opsToPath(o),stroke:xw,strokeWidth:0,fill:a.fill||xw};break;case"fillSketch":u=this.fillSketch(o,a)}u&&s.push(u)}return s}fillSketch(t,r){let a=r.fillWeight;return a<0&&(a=r.strokeWidth/2),{d:this.opsToPath(t),stroke:r.fill||xw,strokeWidth:a,fill:xw}}_mergedShape(t){return t.filter((r,a)=>a===0||r.op!=="move")}},vpi=class{constructor(t,r){this.canvas=t,this.ctx=this.canvas.getContext("2d"),this.gen=new q4e(r)}draw(t){const r=t.sets||[],a=t.options||this.getDefaultOptions(),s=this.ctx,o=t.options.fixedDecimalPlaceDigits;for(const u of r)switch(u.type){case"path":s.save(),s.strokeStyle=a.stroke==="none"?"transparent":a.stroke,s.lineWidth=a.strokeWidth,a.strokeLineDash&&s.setLineDash(a.strokeLineDash),a.strokeLineDashOffset&&(s.lineDashOffset=a.strokeLineDashOffset),this._drawToContext(s,u,o),s.restore();break;case"fillPath":{s.save(),s.fillStyle=a.fill||"";const h=t.shape==="curve"||t.shape==="polygon"||t.shape==="path"?"evenodd":"nonzero";this._drawToContext(s,u,o,h),s.restore();break}case"fillSketch":this.fillSketch(s,u,a)}}fillSketch(t,r,a){let s=a.fillWeight;s<0&&(s=a.strokeWidth/2),t.save(),a.fillLineDash&&t.setLineDash(a.fillLineDash),a.fillLineDashOffset&&(t.lineDashOffset=a.fillLineDashOffset),t.strokeStyle=a.fill||"",t.lineWidth=s,this._drawToContext(t,r,a.fixedDecimalPlaceDigits),t.restore()}_drawToContext(t,r,a,s="nonzero"){t.beginPath();for(const o of r.ops){const u=typeof a=="number"&&a>=0?o.data.map(h=>+h.toFixed(a)):o.data;switch(o.op){case"move":t.moveTo(u[0],u[1]);break;case"bcurveTo":t.bezierCurveTo(u[0],u[1],u[2],u[3],u[4],u[5]);break;case"lineTo":t.lineTo(u[0],u[1])}}r.type==="fillPath"?t.fill(s):t.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(t,r,a,s,o){const u=this.gen.line(t,r,a,s,o);return this.draw(u),u}rectangle(t,r,a,s,o){const u=this.gen.rectangle(t,r,a,s,o);return this.draw(u),u}ellipse(t,r,a,s,o){const u=this.gen.ellipse(t,r,a,s,o);return this.draw(u),u}circle(t,r,a,s){const o=this.gen.circle(t,r,a,s);return this.draw(o),o}linearPath(t,r){const a=this.gen.linearPath(t,r);return this.draw(a),a}polygon(t,r){const a=this.gen.polygon(t,r);return this.draw(a),a}arc(t,r,a,s,o,u,h=!1,f){const p=this.gen.arc(t,r,a,s,o,u,h,f);return this.draw(p),p}curve(t,r){const a=this.gen.curve(t,r);return this.draw(a),a}path(t,r){const a=this.gen.path(t,r);return this.draw(a),a}};const twe="http://www.w3.org/2000/svg";let _pi=class{constructor(t,r){this.svg=t,this.gen=new q4e(r)}draw(t){const r=t.sets||[],a=t.options||this.getDefaultOptions(),s=this.svg.ownerDocument||window.document,o=s.createElementNS(twe,"g"),u=t.options.fixedDecimalPlaceDigits;for(const h of r){let f=null;switch(h.type){case"path":f=s.createElementNS(twe,"path"),f.setAttribute("d",this.opsToPath(h,u)),f.setAttribute("stroke",a.stroke),f.setAttribute("stroke-width",a.strokeWidth+""),f.setAttribute("fill","none"),a.strokeLineDash&&f.setAttribute("stroke-dasharray",a.strokeLineDash.join(" ").trim()),a.strokeLineDashOffset&&f.setAttribute("stroke-dashoffset",`${a.strokeLineDashOffset}`);break;case"fillPath":f=s.createElementNS(twe,"path"),f.setAttribute("d",this.opsToPath(h,u)),f.setAttribute("stroke","none"),f.setAttribute("stroke-width","0"),f.setAttribute("fill",a.fill||""),t.shape!=="curve"&&t.shape!=="polygon"||f.setAttribute("fill-rule","evenodd");break;case"fillSketch":f=this.fillSketch(s,h,a)}f&&o.appendChild(f)}return o}fillSketch(t,r,a){let s=a.fillWeight;s<0&&(s=a.strokeWidth/2);const o=t.createElementNS(twe,"path");return o.setAttribute("d",this.opsToPath(r,a.fixedDecimalPlaceDigits)),o.setAttribute("stroke",a.fill||""),o.setAttribute("stroke-width",s+""),o.setAttribute("fill","none"),a.fillLineDash&&o.setAttribute("stroke-dasharray",a.fillLineDash.join(" ").trim()),a.fillLineDashOffset&&o.setAttribute("stroke-dashoffset",`${a.fillLineDashOffset}`),o}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}opsToPath(t,r){return this.gen.opsToPath(t,r)}line(t,r,a,s,o){const u=this.gen.line(t,r,a,s,o);return this.draw(u)}rectangle(t,r,a,s,o){const u=this.gen.rectangle(t,r,a,s,o);return this.draw(u)}ellipse(t,r,a,s,o){const u=this.gen.ellipse(t,r,a,s,o);return this.draw(u)}circle(t,r,a,s){const o=this.gen.circle(t,r,a,s);return this.draw(o)}linearPath(t,r){const a=this.gen.linearPath(t,r);return this.draw(a)}polygon(t,r){const a=this.gen.polygon(t,r);return this.draw(a)}arc(t,r,a,s,o,u,h=!1,f){const p=this.gen.arc(t,r,a,s,o,u,h,f);return this.draw(p)}curve(t,r){const a=this.gen.curve(t,r);return this.draw(a)}path(t,r){const a=this.gen.path(t,r);return this.draw(a)}};var Wa={canvas:(e,t)=>new vpi(e,t),svg:(e,t)=>new _pi(e,t),generator:e=>new q4e(e),newSeed:()=>q4e.newSeed()},oo=X(async(e,t,r)=>{var b,_;let a;const s=t.useHtmlLabels||nh((b=nn())==null?void 0:b.htmlLabels);r?a=r:a="node default";const o=e.insert("g").attr("class",a).attr("id",t.domId||t.id),u=o.insert("g").attr("class","label").attr("style",Tb(t.labelStyle));let h;t.label===void 0?h="":h=typeof t.label=="string"?t.label:t.label[0];const f=await Yw(u,Ic(vA(h),nn()),{useHtmlLabels:s,width:t.width||((_=nn().flowchart)==null?void 0:_.wrappingWidth),cssClasses:"markdown-node-label",style:t.labelStyle,addSvgBackground:!!t.icon||!!t.img});let p=f.getBBox();const m=((t==null?void 0:t.padding)??0)/2;if(s){const w=f.children[0],S=gn(f),C=w.getElementsByTagName("img");if(C){const A=h.replace(/]*>/g,"").trim()==="";await Promise.all([...C].map(k=>new Promise(I=>{function N(){if(k.style.display="flex",k.style.flexDirection="column",A){const L=nn().fontSize?nn().fontSize:window.getComputedStyle(document.body).fontSize,P=5,[M=Cc.fontSize]=N$(L),F=M*P+"px";k.style.minWidth=F,k.style.maxWidth=F}else k.style.width="100%";I(k)}X(N,"setupImage"),setTimeout(()=>{k.complete&&N()}),k.addEventListener("error",N),k.addEventListener("load",N)})))}p=w.getBoundingClientRect(),S.attr("width",p.width),S.attr("height",p.height)}return s?u.attr("transform","translate("+-p.width/2+", "+-p.height/2+")"):u.attr("transform","translate(0, "+-p.height/2+")"),t.centerLabel&&u.attr("transform","translate("+-p.width/2+", "+-p.height/2+")"),u.insert("rect",":first-child"),{shapeSvg:o,bbox:p,halfPadding:m,label:u}},"labelHelper"),Dtt=X(async(e,t,r)=>{var f,p,m,b,_,w;const a=r.useHtmlLabels||nh((p=(f=nn())==null?void 0:f.flowchart)==null?void 0:p.htmlLabels),s=e.insert("g").attr("class","label").attr("style",r.labelStyle||""),o=await Yw(s,Ic(vA(t),nn()),{useHtmlLabels:a,width:r.width||((b=(m=nn())==null?void 0:m.flowchart)==null?void 0:b.wrappingWidth),style:r.labelStyle,addSvgBackground:!!r.icon||!!r.img});let u=o.getBBox();const h=r.padding/2;if(nh((w=(_=nn())==null?void 0:_.flowchart)==null?void 0:w.htmlLabels)){const S=o.children[0],C=gn(o);u=S.getBoundingClientRect(),C.attr("width",u.width),C.attr("height",u.height)}return a?s.attr("transform","translate("+-u.width/2+", "+-u.height/2+")"):s.attr("transform","translate(0, "+-u.height/2+")"),r.centerLabel&&s.attr("transform","translate("+-u.width/2+", "+-u.height/2+")"),s.insert("rect",":first-child"),{shapeSvg:e,bbox:u,halfPadding:h,label:s}},"insertLabel"),es=X((e,t)=>{const r=t.node().getBBox();e.width=r.width,e.height=r.height},"updateNodeBounds"),Ys=X((e,t)=>(e.look==="handDrawn"?"rough-node":"node")+" "+e.cssClasses+" "+(t||""),"getNodeClasses");function hc(e){const t=e.map((r,a)=>`${a===0?"M":"L"}${r.x},${r.y}`);return t.push("Z"),t.join(" ")}X(hc,"createPathFromPoints");function JO(e,t,r,a,s,o){const u=[],f=r-e,p=a-t,m=f/o,b=2*Math.PI/m,_=t+p/2;for(let w=0;w<=50;w++){const S=w/50,C=e+S*f,A=_+s*Math.sin(b*(C-e));u.push({x:C,y:A})}return u}X(JO,"generateFullSineWavePoints");function Soe(e,t,r,a,s,o){const u=[],h=s*Math.PI/180,m=(o*Math.PI/180-h)/(a-1);for(let b=0;b{var r=e.x,a=e.y,s=t.x-r,o=t.y-a,u=e.width/2,h=e.height/2,f,p;return Math.abs(o)*u>Math.abs(s)*h?(o<0&&(h=-h),f=o===0?0:h*s/o,p=h):(s<0&&(u=-u),f=u,p=s===0?0:u*o/s),{x:r+f,y:a+p}},"intersectRect"),FW=wpi;function PBn(e,t){t&&e.attr("style",t)}X(PBn,"applyStyle");async function BBn(e){const t=gn(document.createElementNS("http://www.w3.org/2000/svg","foreignObject")),r=t.append("xhtml:div"),a=nn();let s=e.label;e.label&&u0(e.label)&&(s=await nce(e.label.replace(Ti.lineBreakRegex,` +`),a));const u='"+s+"";return r.html(Ic(u,a)),PBn(r,e.labelStyle),r.style("display","inline-block"),r.style("padding-right","1px"),r.style("white-space","nowrap"),r.attr("xmlns","http://www.w3.org/1999/xhtml"),t.node()}X(BBn,"addHtmlLabel");var Epi=X(async(e,t,r,a)=>{let s=e||"";if(typeof s=="object"&&(s=s[0]),nh(nn().flowchart.htmlLabels)){s=s.replace(/\\n|\n/g,"
    "),it.info("vertexText"+s);const o={isNode:a,label:vA(s).replace(/fa[blrs]?:fa-[\w-]+/g,h=>``),labelStyle:t&&t.replace("fill:","color:")};return await BBn(o)}else{const o=document.createElementNS("http://www.w3.org/2000/svg","text");o.setAttribute("style",t.replace("color:","fill:"));let u=[];typeof s=="string"?u=s.split(/\\n|\n|/gi):Array.isArray(s)?u=s:u=[];for(const h of u){const f=document.createElementNS("http://www.w3.org/2000/svg","tspan");f.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),f.setAttribute("dy","1em"),f.setAttribute("x","0"),r?f.setAttribute("class","title-row"):f.setAttribute("class","row"),f.textContent=h.trim(),o.appendChild(f)}return o}},"createLabel"),tF=Epi,B9=X((e,t,r,a,s)=>["M",e+s,t,"H",e+r-s,"A",s,s,0,0,1,e+r,t+s,"V",t+a-s,"A",s,s,0,0,1,e+r-s,t+a,"H",e+s,"A",s,s,0,0,1,e,t+a-s,"V",t+s,"A",s,s,0,0,1,e+s,t,"Z"].join(" "),"createRoundedRectPathD"),FBn=X(async(e,t)=>{it.info("Creating subgraph rect for ",t.id,t);const r=nn(),{themeVariables:a,handDrawnSeed:s}=r,{clusterBkg:o,clusterBorder:u}=a,{labelStyles:h,nodeStyles:f,borderStyles:p,backgroundStyles:m}=Ia(t),b=e.insert("g").attr("class","cluster "+t.cssClasses).attr("id",t.id).attr("data-look",t.look),_=nh(r.flowchart.htmlLabels),w=b.insert("g").attr("class","cluster-label "),S=await Yw(w,t.label,{style:t.labelStyle,useHtmlLabels:_,isNode:!0});let C=S.getBBox();if(nh(r.flowchart.htmlLabels)){const F=S.children[0],U=gn(S);C=F.getBoundingClientRect(),U.attr("width",C.width),U.attr("height",C.height)}const A=t.width<=C.width+t.padding?C.width+t.padding:t.width;t.width<=C.width+t.padding?t.diff=(A-t.width)/2-t.padding:t.diff=-t.padding;const k=t.height,I=t.x-A/2,N=t.y-k/2;it.trace("Data ",t,JSON.stringify(t));let L;if(t.look==="handDrawn"){const F=Wa.svg(b),U=Ja(t,{roughness:.7,fill:o,stroke:u,fillWeight:3,seed:s}),$=F.path(B9(I,N,A,k,0),U);L=b.insert(()=>(it.debug("Rough node insert CXC",$),$),":first-child"),L.select("path:nth-child(2)").attr("style",p.join(";")),L.select("path").attr("style",m.join(";").replace("fill","stroke"))}else L=b.insert("rect",":first-child"),L.attr("style",f).attr("rx",t.rx).attr("ry",t.ry).attr("x",I).attr("y",N).attr("width",A).attr("height",k);const{subGraphTitleTopMargin:P}=oce(r);if(w.attr("transform",`translate(${t.x-C.width/2}, ${t.y-t.height/2+P})`),h){const F=w.select("span");F&&F.attr("style",h)}const M=L.node().getBBox();return t.offsetX=0,t.width=M.width,t.height=M.height,t.offsetY=C.height-t.padding/2,t.intersect=function(F){return FW(t,F)},{cluster:b,labelBBox:C}},"rect"),xpi=X((e,t)=>{const r=e.insert("g").attr("class","note-cluster").attr("id",t.id),a=r.insert("rect",":first-child"),s=0*t.padding,o=s/2;a.attr("rx",t.rx).attr("ry",t.ry).attr("x",t.x-t.width/2-o).attr("y",t.y-t.height/2-o).attr("width",t.width+s).attr("height",t.height+s).attr("fill","none");const u=a.node().getBBox();return t.width=u.width,t.height=u.height,t.intersect=function(h){return FW(t,h)},{cluster:r,labelBBox:{width:0,height:0}}},"noteGroup"),Spi=X(async(e,t)=>{const r=nn(),{themeVariables:a,handDrawnSeed:s}=r,{altBackground:o,compositeBackground:u,compositeTitleBackground:h,nodeBorder:f}=a,p=e.insert("g").attr("class",t.cssClasses).attr("id",t.id).attr("data-id",t.id).attr("data-look",t.look),m=p.insert("g",":first-child"),b=p.insert("g").attr("class","cluster-label");let _=p.append("rect");const w=b.node().appendChild(await tF(t.label,t.labelStyle,void 0,!0));let S=w.getBBox();if(nh(r.flowchart.htmlLabels)){const $=w.children[0],G=gn(w);S=$.getBoundingClientRect(),G.attr("width",S.width),G.attr("height",S.height)}const C=0*t.padding,A=C/2,k=(t.width<=S.width+t.padding?S.width+t.padding:t.width)+C;t.width<=S.width+t.padding?t.diff=(k-t.width)/2-t.padding:t.diff=-t.padding;const I=t.height+C,N=t.height+C-S.height-6,L=t.x-k/2,P=t.y-I/2;t.width=k;const M=t.y-t.height/2-A+S.height+2;let F;if(t.look==="handDrawn"){const $=t.cssClasses.includes("statediagram-cluster-alt"),G=Wa.svg(p),B=t.rx||t.ry?G.path(B9(L,P,k,I,10),{roughness:.7,fill:h,fillStyle:"solid",stroke:f,seed:s}):G.rectangle(L,P,k,I,{seed:s});F=p.insert(()=>B,":first-child");const Z=G.rectangle(L,M,k,N,{fill:$?o:u,fillStyle:$?"hachure":"solid",stroke:f,seed:s});F=p.insert(()=>B,":first-child"),_=p.insert(()=>Z)}else F=m.insert("rect",":first-child"),F.attr("class","outer").attr("x",L).attr("y",P).attr("width",k).attr("height",I).attr("data-look",t.look),_.attr("class","inner").attr("x",L).attr("y",M).attr("width",k).attr("height",N);b.attr("transform",`translate(${t.x-S.width/2}, ${P+1-(nh(r.flowchart.htmlLabels)?0:3)})`);const U=F.node().getBBox();return t.height=U.height,t.offsetX=0,t.offsetY=S.height-t.padding/2,t.labelBBox=S,t.intersect=function($){return FW(t,$)},{cluster:p,labelBBox:S}},"roundedWithTitle"),Tpi=X(async(e,t)=>{it.info("Creating subgraph rect for ",t.id,t);const r=nn(),{themeVariables:a,handDrawnSeed:s}=r,{clusterBkg:o,clusterBorder:u}=a,{labelStyles:h,nodeStyles:f,borderStyles:p,backgroundStyles:m}=Ia(t),b=e.insert("g").attr("class","cluster "+t.cssClasses).attr("id",t.id).attr("data-look",t.look),_=nh(r.flowchart.htmlLabels),w=b.insert("g").attr("class","cluster-label "),S=await Yw(w,t.label,{style:t.labelStyle,useHtmlLabels:_,isNode:!0,width:t.width});let C=S.getBBox();if(nh(r.flowchart.htmlLabels)){const F=S.children[0],U=gn(S);C=F.getBoundingClientRect(),U.attr("width",C.width),U.attr("height",C.height)}const A=t.width<=C.width+t.padding?C.width+t.padding:t.width;t.width<=C.width+t.padding?t.diff=(A-t.width)/2-t.padding:t.diff=-t.padding;const k=t.height,I=t.x-A/2,N=t.y-k/2;it.trace("Data ",t,JSON.stringify(t));let L;if(t.look==="handDrawn"){const F=Wa.svg(b),U=Ja(t,{roughness:.7,fill:o,stroke:u,fillWeight:4,seed:s}),$=F.path(B9(I,N,A,k,t.rx),U);L=b.insert(()=>(it.debug("Rough node insert CXC",$),$),":first-child"),L.select("path:nth-child(2)").attr("style",p.join(";")),L.select("path").attr("style",m.join(";").replace("fill","stroke"))}else L=b.insert("rect",":first-child"),L.attr("style",f).attr("rx",t.rx).attr("ry",t.ry).attr("x",I).attr("y",N).attr("width",A).attr("height",k);const{subGraphTitleTopMargin:P}=oce(r);if(w.attr("transform",`translate(${t.x-C.width/2}, ${t.y-t.height/2+P})`),h){const F=w.select("span");F&&F.attr("style",h)}const M=L.node().getBBox();return t.offsetX=0,t.width=M.width,t.height=M.height,t.offsetY=C.height-t.padding/2,t.intersect=function(F){return FW(t,F)},{cluster:b,labelBBox:C}},"kanbanSection"),Cpi=X((e,t)=>{const r=nn(),{themeVariables:a,handDrawnSeed:s}=r,{nodeBorder:o}=a,u=e.insert("g").attr("class",t.cssClasses).attr("id",t.id).attr("data-look",t.look),h=u.insert("g",":first-child"),f=0*t.padding,p=t.width+f;t.diff=-t.padding;const m=t.height+f,b=t.x-p/2,_=t.y-m/2;t.width=p;let w;if(t.look==="handDrawn"){const A=Wa.svg(u).rectangle(b,_,p,m,{fill:"lightgrey",roughness:.5,strokeLineDash:[5],stroke:o,seed:s});w=u.insert(()=>A,":first-child")}else w=h.insert("rect",":first-child"),w.attr("class","divider").attr("x",b).attr("y",_).attr("width",p).attr("height",m).attr("data-look",t.look);const S=w.node().getBBox();return t.height=S.height,t.offsetX=0,t.offsetY=0,t.intersect=function(C){return FW(t,C)},{cluster:u,labelBBox:{}}},"divider"),Api=FBn,kpi={rect:FBn,squareRect:Api,roundedWithTitle:Spi,noteGroup:xpi,divider:Cpi,kanbanSection:Tpi},$Bn=new Map,ept=X(async(e,t)=>{const r=t.shape||"rect",a=await kpi[r](e,t);return $Bn.set(t.id,a),a},"insertCluster"),Rpi=X(()=>{$Bn=new Map},"clear");function UBn(e,t){return e.intersect(t)}X(UBn,"intersectNode");var Ipi=UBn;function zBn(e,t,r,a){var s=e.x,o=e.y,u=s-a.x,h=o-a.y,f=Math.sqrt(t*t*h*h+r*r*u*u),p=Math.abs(t*r*u/f);a.x0}X(alt,"sameSign");var Opi=HBn;function VBn(e,t,r){let a=e.x,s=e.y,o=[],u=Number.POSITIVE_INFINITY,h=Number.POSITIVE_INFINITY;typeof t.forEach=="function"?t.forEach(function(m){u=Math.min(u,m.x),h=Math.min(h,m.y)}):(u=Math.min(u,t.x),h=Math.min(h,t.y));let f=a-e.width/2-u,p=s-e.height/2-h;for(let m=0;m1&&o.sort(function(m,b){let _=m.x-r.x,w=m.y-r.y,S=Math.sqrt(_*_+w*w),C=b.x-r.x,A=b.y-r.y,k=Math.sqrt(C*C+A*A);return Sm,":first-child");return b.attr("class","anchor").attr("style",Tb(h)),es(t,b),t.intersect=function(_){return it.info("Circle intersect",t,u,_),Sa.circle(t,u,_)},o}X(YBn,"anchor");function slt(e,t,r,a,s,o,u){const f=(e+r)/2,p=(t+a)/2,m=Math.atan2(a-t,r-e),b=(r-e)/2,_=(a-t)/2,w=b/s,S=_/o,C=Math.sqrt(w**2+S**2);if(C>1)throw new Error("The given radii are too small to create an arc between the points.");const A=Math.sqrt(1-C**2),k=f+A*o*Math.sin(m)*(u?-1:1),I=p-A*s*Math.cos(m)*(u?-1:1),N=Math.atan2((t-I)/o,(e-k)/s);let P=Math.atan2((a-I)/o,(r-k)/s)-N;u&&P<0&&(P+=2*Math.PI),!u&&P>0&&(P-=2*Math.PI);const M=[];for(let F=0;F<20;F++){const U=F/19,$=N+U*P,G=k+s*Math.cos($),B=I+o*Math.sin($);M.push({x:G,y:B})}return M}X(slt,"generateArcPoints");async function jBn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=o.width+t.padding+20,h=o.height+t.padding,f=h/2,p=f/(2.5+h/50),{cssStyles:m}=t,b=[{x:u/2,y:-h/2},{x:-u/2,y:-h/2},...slt(-u/2,-h/2,-u/2,h/2,p,f,!1),{x:u/2,y:h/2},...slt(u/2,h/2,u/2,-h/2,p,f,!0)],_=Wa.svg(s),w=Ja(t,{});t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const S=hc(b),C=_.path(S,w),A=s.insert(()=>C,":first-child");return A.attr("class","basic label-container"),m&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",m),a&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",a),A.attr("transform",`translate(${p/2}, 0)`),es(t,A),t.intersect=function(k){return Sa.polygon(t,b,k)},s}X(jBn,"bowTieRect");function F9(e,t,r,a){return e.insert("polygon",":first-child").attr("points",a.map(function(s){return s.x+","+s.y}).join(" ")).attr("class","label-container").attr("transform","translate("+-t/2+","+r/2+")")}X(F9,"insertPolygonShape");async function WBn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=o.height+t.padding,h=12,f=o.width+t.padding+h,p=0,m=f,b=-u,_=0,w=[{x:p+h,y:b},{x:m,y:b},{x:m,y:_},{x:p,y:_},{x:p,y:b+h},{x:p+h,y:b}];let S;const{cssStyles:C}=t;if(t.look==="handDrawn"){const A=Wa.svg(s),k=Ja(t,{}),I=hc(w),N=A.path(I,k);S=s.insert(()=>N,":first-child").attr("transform",`translate(${-f/2}, ${u/2})`),C&&S.attr("style",C)}else S=F9(s,f,u,w);return a&&S.attr("style",a),es(t,S),t.intersect=function(A){return Sa.polygon(t,w,A)},s}X(WBn,"card");function KBn(e,t){const{nodeStyles:r}=Ia(t);t.label="";const a=e.insert("g").attr("class",Ys(t)).attr("id",t.domId??t.id),{cssStyles:s}=t,o=Math.max(28,t.width??0),u=[{x:0,y:o/2},{x:o/2,y:0},{x:0,y:-o/2},{x:-o/2,y:0}],h=Wa.svg(a),f=Ja(t,{});t.look!=="handDrawn"&&(f.roughness=0,f.fillStyle="solid");const p=hc(u),m=h.path(p,f),b=a.insert(()=>m,":first-child");return s&&t.look!=="handDrawn"&&b.selectAll("path").attr("style",s),r&&t.look!=="handDrawn"&&b.selectAll("path").attr("style",r),t.width=28,t.height=28,t.intersect=function(_){return Sa.polygon(t,u,_)},a}X(KBn,"choice");async function tpt(e,t,r){const{labelStyles:a,nodeStyles:s}=Ia(t);t.labelStyle=a;const{shapeSvg:o,bbox:u,halfPadding:h}=await oo(e,t,Ys(t)),f=(r==null?void 0:r.padding)??h,p=u.width/2+f;let m;const{cssStyles:b}=t;if(t.look==="handDrawn"){const _=Wa.svg(o),w=Ja(t,{}),S=_.circle(0,0,p*2,w);m=o.insert(()=>S,":first-child"),m.attr("class","basic label-container").attr("style",Tb(b))}else m=o.insert("circle",":first-child").attr("class","basic label-container").attr("style",s).attr("r",p).attr("cx",0).attr("cy",0);return es(t,m),t.calcIntersect=function(_,w){const S=_.width/2;return Sa.circle(_,S,w)},t.intersect=function(_){return it.info("Circle intersect",t,p,_),Sa.circle(t,p,_)},o}X(tpt,"circle");function XBn(e){const t=Math.cos(Math.PI/4),r=Math.sin(Math.PI/4),a=e*2,s={x:a/2*t,y:a/2*r},o={x:-(a/2)*t,y:a/2*r},u={x:-(a/2)*t,y:-(a/2)*r},h={x:a/2*t,y:-(a/2)*r};return`M ${o.x},${o.y} L ${h.x},${h.y} + M ${s.x},${s.y} L ${u.x},${u.y}`}X(XBn,"createLine");function QBn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r,t.label="";const s=e.insert("g").attr("class",Ys(t)).attr("id",t.domId??t.id),o=Math.max(30,(t==null?void 0:t.width)??0),{cssStyles:u}=t,h=Wa.svg(s),f=Ja(t,{});t.look!=="handDrawn"&&(f.roughness=0,f.fillStyle="solid");const p=h.circle(0,0,o*2,f),m=XBn(o),b=h.path(m,f),_=s.insert(()=>p,":first-child");return _.insert(()=>b),u&&t.look!=="handDrawn"&&_.selectAll("path").attr("style",u),a&&t.look!=="handDrawn"&&_.selectAll("path").attr("style",a),es(t,_),t.intersect=function(w){return it.info("crossedCircle intersect",t,{radius:o,point:w}),Sa.circle(t,o,w)},s}X(QBn,"crossedCircle");function i7(e,t,r,a=100,s=0,o=180){const u=[],h=s*Math.PI/180,m=(o*Math.PI/180-h)/(a-1);for(let b=0;bN,":first-child").attr("stroke-opacity",0),L.insert(()=>k,":first-child"),L.attr("class","text"),m&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",m),a&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",a),L.attr("transform",`translate(${p}, 0)`),u.attr("transform",`translate(${-h/2+p-(o.x-(o.left??0))},${-f/2+(t.padding??0)/2-(o.y-(o.top??0))})`),es(t,L),t.intersect=function(P){return Sa.polygon(t,_,P)},s}X(ZBn,"curlyBraceLeft");function a7(e,t,r,a=100,s=0,o=180){const u=[],h=s*Math.PI/180,m=(o*Math.PI/180-h)/(a-1);for(let b=0;bN,":first-child").attr("stroke-opacity",0),L.insert(()=>k,":first-child"),L.attr("class","text"),m&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",m),a&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",a),L.attr("transform",`translate(${-p}, 0)`),u.attr("transform",`translate(${-h/2+(t.padding??0)/2-(o.x-(o.left??0))},${-f/2+(t.padding??0)/2-(o.y-(o.top??0))})`),es(t,L),t.intersect=function(P){return Sa.polygon(t,_,P)},s}X(JBn,"curlyBraceRight");function um(e,t,r,a=100,s=0,o=180){const u=[],h=s*Math.PI/180,m=(o*Math.PI/180-h)/(a-1);for(let b=0;bF,":first-child").attr("stroke-opacity",0),U.insert(()=>I,":first-child"),U.insert(()=>P,":first-child"),U.attr("class","text"),m&&t.look!=="handDrawn"&&U.selectAll("path").attr("style",m),a&&t.look!=="handDrawn"&&U.selectAll("path").attr("style",a),U.attr("transform",`translate(${p-p/4}, 0)`),u.attr("transform",`translate(${-h/2+(t.padding??0)/2-(o.x-(o.left??0))},${-f/2+(t.padding??0)/2-(o.y-(o.top??0))})`),es(t,U),t.intersect=function($){return Sa.polygon(t,w,$)},s}X(eFn,"curlyBraces");async function tFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=80,h=20,f=Math.max(u,(o.width+(t.padding??0)*2)*1.25,(t==null?void 0:t.width)??0),p=Math.max(h,o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),m=p/2,{cssStyles:b}=t,_=Wa.svg(s),w=Ja(t,{});t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const S=f,C=p,A=S-m,k=C/4,I=[{x:A,y:0},{x:k,y:0},{x:0,y:C/2},{x:k,y:C},{x:A,y:C},...Soe(-A,-C/2,m,50,270,90)],N=hc(I),L=_.path(N,w),P=s.insert(()=>L,":first-child");return P.attr("class","basic label-container"),b&&t.look!=="handDrawn"&&P.selectChildren("path").attr("style",b),a&&t.look!=="handDrawn"&&P.selectChildren("path").attr("style",a),P.attr("transform",`translate(${-f/2}, ${-p/2})`),es(t,P),t.intersect=function(M){return Sa.polygon(t,I,M)},s}X(tFn,"curvedTrapezoid");var Dpi=X((e,t,r,a,s,o)=>[`M${e},${t+o}`,`a${s},${o} 0,0,0 ${r},0`,`a${s},${o} 0,0,0 ${-r},0`,`l0,${a}`,`a${s},${o} 0,0,0 ${r},0`,`l0,${-a}`].join(" "),"createCylinderPathD"),Mpi=X((e,t,r,a,s,o)=>[`M${e},${t+o}`,`M${e+r},${t+o}`,`a${s},${o} 0,0,0 ${-r},0`,`l0,${a}`,`a${s},${o} 0,0,0 ${r},0`,`l0,${-a}`].join(" "),"createOuterCylinderPathD"),Ppi=X((e,t,r,a,s,o)=>[`M${e-r/2},${-a/2}`,`a${s},${o} 0,0,0 ${r},0`].join(" "),"createInnerCylinderPathD");async function nFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+t.padding,t.width??0),f=h/2,p=f/(2.5+h/50),m=Math.max(o.height+p+t.padding,t.height??0);let b;const{cssStyles:_}=t;if(t.look==="handDrawn"){const w=Wa.svg(s),S=Mpi(0,0,h,m,f,p),C=Ppi(0,p,h,m,f,p),A=w.path(S,Ja(t,{})),k=w.path(C,Ja(t,{fill:"none"}));b=s.insert(()=>k,":first-child"),b=s.insert(()=>A,":first-child"),b.attr("class","basic label-container"),_&&b.attr("style",_)}else{const w=Dpi(0,0,h,m,f,p);b=s.insert("path",":first-child").attr("d",w).attr("class","basic label-container").attr("style",Tb(_)).attr("style",a)}return b.attr("label-offset-y",p),b.attr("transform",`translate(${-h/2}, ${-(m/2+p)})`),es(t,b),u.attr("transform",`translate(${-(o.width/2)-(o.x-(o.left??0))}, ${-(o.height/2)+(t.padding??0)/1.5-(o.y-(o.top??0))})`),t.intersect=function(w){const S=Sa.rect(t,w),C=S.x-(t.x??0);if(f!=0&&(Math.abs(C)<(t.width??0)/2||Math.abs(C)==(t.width??0)/2&&Math.abs(S.y-(t.y??0))>(t.height??0)/2-p)){let A=p*p*(1-C*C/(f*f));A>0&&(A=Math.sqrt(A)),A=p-A,w.y-(t.y??0)>0&&(A=-A),S.y+=A}return S},s}X(nFn,"cylinder");async function rFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=o.width+t.padding,f=o.height+t.padding,p=f*.2,m=-h/2,b=-f/2-p/2,{cssStyles:_}=t,w=Wa.svg(s),S=Ja(t,{});t.look!=="handDrawn"&&(S.roughness=0,S.fillStyle="solid");const C=[{x:m,y:b+p},{x:-m,y:b+p},{x:-m,y:-b},{x:m,y:-b},{x:m,y:b},{x:-m,y:b},{x:-m,y:b+p}],A=w.polygon(C.map(I=>[I.x,I.y]),S),k=s.insert(()=>A,":first-child");return k.attr("class","basic label-container"),_&&t.look!=="handDrawn"&&k.selectAll("path").attr("style",_),a&&t.look!=="handDrawn"&&k.selectAll("path").attr("style",a),u.attr("transform",`translate(${m+(t.padding??0)/2-(o.x-(o.left??0))}, ${b+p+(t.padding??0)/2-(o.y-(o.top??0))})`),es(t,k),t.intersect=function(I){return Sa.rect(t,I)},s}X(rFn,"dividedRectangle");async function iFn(e,t){var _,w;const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,halfPadding:u}=await oo(e,t,Ys(t)),f=o.width/2+u+5,p=o.width/2+u;let m;const{cssStyles:b}=t;if(t.look==="handDrawn"){const S=Wa.svg(s),C=Ja(t,{roughness:.2,strokeWidth:2.5}),A=Ja(t,{roughness:.2,strokeWidth:1.5}),k=S.circle(0,0,f*2,C),I=S.circle(0,0,p*2,A);m=s.insert("g",":first-child"),m.attr("class",Tb(t.cssClasses)).attr("style",Tb(b)),(_=m.node())==null||_.appendChild(k),(w=m.node())==null||w.appendChild(I)}else{m=s.insert("g",":first-child");const S=m.insert("circle",":first-child"),C=m.insert("circle");m.attr("class","basic label-container").attr("style",a),S.attr("class","outer-circle").attr("style",a).attr("r",f).attr("cx",0).attr("cy",0),C.attr("class","inner-circle").attr("style",a).attr("r",p).attr("cx",0).attr("cy",0)}return es(t,m),t.intersect=function(S){return it.info("DoubleCircle intersect",t,f,S),Sa.circle(t,f,S)},s}X(iFn,"doublecircle");function aFn(e,t,{config:{themeVariables:r}}){const{labelStyles:a,nodeStyles:s}=Ia(t);t.label="",t.labelStyle=a;const o=e.insert("g").attr("class",Ys(t)).attr("id",t.domId??t.id),u=7,{cssStyles:h}=t,f=Wa.svg(o),{nodeBorder:p}=r,m=Ja(t,{fillStyle:"solid"});t.look!=="handDrawn"&&(m.roughness=0);const b=f.circle(0,0,u*2,m),_=o.insert(()=>b,":first-child");return _.selectAll("path").attr("style",`fill: ${p} !important;`),h&&h.length>0&&t.look!=="handDrawn"&&_.selectAll("path").attr("style",h),s&&t.look!=="handDrawn"&&_.selectAll("path").attr("style",s),es(t,_),t.intersect=function(w){return it.info("filledCircle intersect",t,{radius:u,point:w}),Sa.circle(t,u,w)},o}X(aFn,"filledCircle");async function sFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=o.width+(t.padding??0),f=h+o.height,p=h+o.height,m=[{x:0,y:-f},{x:p,y:-f},{x:p/2,y:0}],{cssStyles:b}=t,_=Wa.svg(s),w=Ja(t,{});t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const S=hc(m),C=_.path(S,w),A=s.insert(()=>C,":first-child").attr("transform",`translate(${-f/2}, ${f/2})`);return b&&t.look!=="handDrawn"&&A.selectChildren("path").attr("style",b),a&&t.look!=="handDrawn"&&A.selectChildren("path").attr("style",a),t.width=h,t.height=f,es(t,A),u.attr("transform",`translate(${-o.width/2-(o.x-(o.left??0))}, ${-f/2+(t.padding??0)/2+(o.y-(o.top??0))})`),t.intersect=function(k){return it.info("Triangle intersect",t,m,k),Sa.polygon(t,m,k)},s}X(sFn,"flippedTriangle");function oFn(e,t,{dir:r,config:{state:a,themeVariables:s}}){const{nodeStyles:o}=Ia(t);t.label="";const u=e.insert("g").attr("class",Ys(t)).attr("id",t.domId??t.id),{cssStyles:h}=t;let f=Math.max(70,(t==null?void 0:t.width)??0),p=Math.max(10,(t==null?void 0:t.height)??0);r==="LR"&&(f=Math.max(10,(t==null?void 0:t.width)??0),p=Math.max(70,(t==null?void 0:t.height)??0));const m=-1*f/2,b=-1*p/2,_=Wa.svg(u),w=Ja(t,{stroke:s.lineColor,fill:s.lineColor});t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const S=_.rectangle(m,b,f,p,w),C=u.insert(()=>S,":first-child");h&&t.look!=="handDrawn"&&C.selectAll("path").attr("style",h),o&&t.look!=="handDrawn"&&C.selectAll("path").attr("style",o),es(t,C);const A=(a==null?void 0:a.padding)??0;return t.width&&t.height&&(t.width+=A/2||0,t.height+=A/2||0),t.intersect=function(k){return Sa.rect(t,k)},u}X(oFn,"forkJoin");async function lFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const s=80,o=50,{shapeSvg:u,bbox:h}=await oo(e,t,Ys(t)),f=Math.max(s,h.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),p=Math.max(o,h.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),m=p/2,{cssStyles:b}=t,_=Wa.svg(u),w=Ja(t,{});t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const S=[{x:-f/2,y:-p/2},{x:f/2-m,y:-p/2},...Soe(-f/2+m,0,m,50,90,270),{x:f/2-m,y:p/2},{x:-f/2,y:p/2}],C=hc(S),A=_.path(C,w),k=u.insert(()=>A,":first-child");return k.attr("class","basic label-container"),b&&t.look!=="handDrawn"&&k.selectChildren("path").attr("style",b),a&&t.look!=="handDrawn"&&k.selectChildren("path").attr("style",a),es(t,k),t.intersect=function(I){return it.info("Pill intersect",t,{radius:m,point:I}),Sa.polygon(t,S,I)},u}X(lFn,"halfRoundedRectangle");async function cFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=o.height+(t.padding??0),h=o.width+(t.padding??0)*2.5,{cssStyles:f}=t,p=Wa.svg(s),m=Ja(t,{});t.look!=="handDrawn"&&(m.roughness=0,m.fillStyle="solid");let b=h/2;const _=b/6;b=b+_;const w=u/2,S=w/2,C=b-S,A=[{x:-C,y:-w},{x:0,y:-w},{x:C,y:-w},{x:b,y:0},{x:C,y:w},{x:0,y:w},{x:-C,y:w},{x:-b,y:0}],k=hc(A),I=p.path(k,m),N=s.insert(()=>I,":first-child");return N.attr("class","basic label-container"),f&&t.look!=="handDrawn"&&N.selectChildren("path").attr("style",f),a&&t.look!=="handDrawn"&&N.selectChildren("path").attr("style",a),t.width=h,t.height=u,es(t,N),t.intersect=function(L){return Sa.polygon(t,A,L)},s}X(cFn,"hexagon");async function uFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.label="",t.labelStyle=r;const{shapeSvg:s}=await oo(e,t,Ys(t)),o=Math.max(30,(t==null?void 0:t.width)??0),u=Math.max(30,(t==null?void 0:t.height)??0),{cssStyles:h}=t,f=Wa.svg(s),p=Ja(t,{});t.look!=="handDrawn"&&(p.roughness=0,p.fillStyle="solid");const m=[{x:0,y:0},{x:o,y:0},{x:0,y:u},{x:o,y:u}],b=hc(m),_=f.path(b,p),w=s.insert(()=>_,":first-child");return w.attr("class","basic label-container"),h&&t.look!=="handDrawn"&&w.selectChildren("path").attr("style",h),a&&t.look!=="handDrawn"&&w.selectChildren("path").attr("style",a),w.attr("transform",`translate(${-o/2}, ${-u/2})`),es(t,w),t.intersect=function(S){return it.info("Pill intersect",t,{points:m}),Sa.polygon(t,m,S)},s}X(uFn,"hourglass");async function hFn(e,t,{config:{themeVariables:r,flowchart:a}}){const{labelStyles:s}=Ia(t);t.labelStyle=s;const o=t.assetHeight??48,u=t.assetWidth??48,h=Math.max(o,u),f=a==null?void 0:a.wrappingWidth;t.width=Math.max(h,f??0);const{shapeSvg:p,bbox:m,label:b}=await oo(e,t,"icon-shape default"),_=t.pos==="t",w=h,S=h,{nodeBorder:C}=r,{stylesMap:A}=PW(t),k=-S/2,I=-w/2,N=t.label?8:0,L=Wa.svg(p),P=Ja(t,{stroke:"none",fill:"none"});t.look!=="handDrawn"&&(P.roughness=0,P.fillStyle="solid");const M=L.rectangle(k,I,S,w,P),F=Math.max(S,m.width),U=w+m.height+N,$=L.rectangle(-F/2,-U/2,F,U,{...P,fill:"transparent",stroke:"none"}),G=p.insert(()=>M,":first-child"),B=p.insert(()=>$);if(t.icon){const Z=p.append("g");Z.html(`${await QO(t.icon,{height:h,width:h,fallbackPrefix:""})}`);const z=Z.node().getBBox(),Y=z.width,W=z.height,Q=z.x,V=z.y;Z.attr("transform",`translate(${-Y/2-Q},${_?m.height/2+N/2-W/2-V:-m.height/2-N/2-W/2-V})`),Z.attr("style",`color: ${A.get("stroke")??C};`)}return b.attr("transform",`translate(${-m.width/2-(m.x-(m.left??0))},${_?-U/2:U/2-m.height})`),G.attr("transform",`translate(0,${_?m.height/2+N/2:-m.height/2-N/2})`),es(t,B),t.intersect=function(Z){if(it.info("iconSquare intersect",t,Z),!t.label)return Sa.rect(t,Z);const z=t.x??0,Y=t.y??0,W=t.height??0;let Q=[];return _?Q=[{x:z-m.width/2,y:Y-W/2},{x:z+m.width/2,y:Y-W/2},{x:z+m.width/2,y:Y-W/2+m.height+N},{x:z+S/2,y:Y-W/2+m.height+N},{x:z+S/2,y:Y+W/2},{x:z-S/2,y:Y+W/2},{x:z-S/2,y:Y-W/2+m.height+N},{x:z-m.width/2,y:Y-W/2+m.height+N}]:Q=[{x:z-S/2,y:Y-W/2},{x:z+S/2,y:Y-W/2},{x:z+S/2,y:Y-W/2+w},{x:z+m.width/2,y:Y-W/2+w},{x:z+m.width/2/2,y:Y+W/2},{x:z-m.width/2,y:Y+W/2},{x:z-m.width/2,y:Y-W/2+w},{x:z-S/2,y:Y-W/2+w}],Sa.polygon(t,Q,Z)},p}X(hFn,"icon");async function dFn(e,t,{config:{themeVariables:r,flowchart:a}}){const{labelStyles:s}=Ia(t);t.labelStyle=s;const o=t.assetHeight??48,u=t.assetWidth??48,h=Math.max(o,u),f=a==null?void 0:a.wrappingWidth;t.width=Math.max(h,f??0);const{shapeSvg:p,bbox:m,label:b}=await oo(e,t,"icon-shape default"),_=20,w=t.label?8:0,S=t.pos==="t",{nodeBorder:C,mainBkg:A}=r,{stylesMap:k}=PW(t),I=Wa.svg(p),N=Ja(t,{});t.look!=="handDrawn"&&(N.roughness=0,N.fillStyle="solid");const L=k.get("fill");N.stroke=L??A;const P=p.append("g");t.icon&&P.html(`${await QO(t.icon,{height:h,width:h,fallbackPrefix:""})}`);const M=P.node().getBBox(),F=M.width,U=M.height,$=M.x,G=M.y,B=Math.max(F,U)*Math.SQRT2+_*2,Z=I.circle(0,0,B,N),z=Math.max(B,m.width),Y=B+m.height+w,W=I.rectangle(-z/2,-Y/2,z,Y,{...N,fill:"transparent",stroke:"none"}),Q=p.insert(()=>Z,":first-child"),V=p.insert(()=>W);return P.attr("transform",`translate(${-F/2-$},${S?m.height/2+w/2-U/2-G:-m.height/2-w/2-U/2-G})`),P.attr("style",`color: ${k.get("stroke")??C};`),b.attr("transform",`translate(${-m.width/2-(m.x-(m.left??0))},${S?-Y/2:Y/2-m.height})`),Q.attr("transform",`translate(0,${S?m.height/2+w/2:-m.height/2-w/2})`),es(t,V),t.intersect=function(j){return it.info("iconSquare intersect",t,j),Sa.rect(t,j)},p}X(dFn,"iconCircle");async function fFn(e,t,{config:{themeVariables:r,flowchart:a}}){const{labelStyles:s}=Ia(t);t.labelStyle=s;const o=t.assetHeight??48,u=t.assetWidth??48,h=Math.max(o,u),f=a==null?void 0:a.wrappingWidth;t.width=Math.max(h,f??0);const{shapeSvg:p,bbox:m,halfPadding:b,label:_}=await oo(e,t,"icon-shape default"),w=t.pos==="t",S=h+b*2,C=h+b*2,{nodeBorder:A,mainBkg:k}=r,{stylesMap:I}=PW(t),N=-C/2,L=-S/2,P=t.label?8:0,M=Wa.svg(p),F=Ja(t,{});t.look!=="handDrawn"&&(F.roughness=0,F.fillStyle="solid");const U=I.get("fill");F.stroke=U??k;const $=M.path(B9(N,L,C,S,5),F),G=Math.max(C,m.width),B=S+m.height+P,Z=M.rectangle(-G/2,-B/2,G,B,{...F,fill:"transparent",stroke:"none"}),z=p.insert(()=>$,":first-child").attr("class","icon-shape2"),Y=p.insert(()=>Z);if(t.icon){const W=p.append("g");W.html(`${await QO(t.icon,{height:h,width:h,fallbackPrefix:""})}`);const Q=W.node().getBBox(),V=Q.width,j=Q.height,ee=Q.x,te=Q.y;W.attr("transform",`translate(${-V/2-ee},${w?m.height/2+P/2-j/2-te:-m.height/2-P/2-j/2-te})`),W.attr("style",`color: ${I.get("stroke")??A};`)}return _.attr("transform",`translate(${-m.width/2-(m.x-(m.left??0))},${w?-B/2:B/2-m.height})`),z.attr("transform",`translate(0,${w?m.height/2+P/2:-m.height/2-P/2})`),es(t,Y),t.intersect=function(W){if(it.info("iconSquare intersect",t,W),!t.label)return Sa.rect(t,W);const Q=t.x??0,V=t.y??0,j=t.height??0;let ee=[];return w?ee=[{x:Q-m.width/2,y:V-j/2},{x:Q+m.width/2,y:V-j/2},{x:Q+m.width/2,y:V-j/2+m.height+P},{x:Q+C/2,y:V-j/2+m.height+P},{x:Q+C/2,y:V+j/2},{x:Q-C/2,y:V+j/2},{x:Q-C/2,y:V-j/2+m.height+P},{x:Q-m.width/2,y:V-j/2+m.height+P}]:ee=[{x:Q-C/2,y:V-j/2},{x:Q+C/2,y:V-j/2},{x:Q+C/2,y:V-j/2+S},{x:Q+m.width/2,y:V-j/2+S},{x:Q+m.width/2/2,y:V+j/2},{x:Q-m.width/2,y:V+j/2},{x:Q-m.width/2,y:V-j/2+S},{x:Q-C/2,y:V-j/2+S}],Sa.polygon(t,ee,W)},p}X(fFn,"iconRounded");async function pFn(e,t,{config:{themeVariables:r,flowchart:a}}){const{labelStyles:s}=Ia(t);t.labelStyle=s;const o=t.assetHeight??48,u=t.assetWidth??48,h=Math.max(o,u),f=a==null?void 0:a.wrappingWidth;t.width=Math.max(h,f??0);const{shapeSvg:p,bbox:m,halfPadding:b,label:_}=await oo(e,t,"icon-shape default"),w=t.pos==="t",S=h+b*2,C=h+b*2,{nodeBorder:A,mainBkg:k}=r,{stylesMap:I}=PW(t),N=-C/2,L=-S/2,P=t.label?8:0,M=Wa.svg(p),F=Ja(t,{});t.look!=="handDrawn"&&(F.roughness=0,F.fillStyle="solid");const U=I.get("fill");F.stroke=U??k;const $=M.path(B9(N,L,C,S,.1),F),G=Math.max(C,m.width),B=S+m.height+P,Z=M.rectangle(-G/2,-B/2,G,B,{...F,fill:"transparent",stroke:"none"}),z=p.insert(()=>$,":first-child"),Y=p.insert(()=>Z);if(t.icon){const W=p.append("g");W.html(`${await QO(t.icon,{height:h,width:h,fallbackPrefix:""})}`);const Q=W.node().getBBox(),V=Q.width,j=Q.height,ee=Q.x,te=Q.y;W.attr("transform",`translate(${-V/2-ee},${w?m.height/2+P/2-j/2-te:-m.height/2-P/2-j/2-te})`),W.attr("style",`color: ${I.get("stroke")??A};`)}return _.attr("transform",`translate(${-m.width/2-(m.x-(m.left??0))},${w?-B/2:B/2-m.height})`),z.attr("transform",`translate(0,${w?m.height/2+P/2:-m.height/2-P/2})`),es(t,Y),t.intersect=function(W){if(it.info("iconSquare intersect",t,W),!t.label)return Sa.rect(t,W);const Q=t.x??0,V=t.y??0,j=t.height??0;let ee=[];return w?ee=[{x:Q-m.width/2,y:V-j/2},{x:Q+m.width/2,y:V-j/2},{x:Q+m.width/2,y:V-j/2+m.height+P},{x:Q+C/2,y:V-j/2+m.height+P},{x:Q+C/2,y:V+j/2},{x:Q-C/2,y:V+j/2},{x:Q-C/2,y:V-j/2+m.height+P},{x:Q-m.width/2,y:V-j/2+m.height+P}]:ee=[{x:Q-C/2,y:V-j/2},{x:Q+C/2,y:V-j/2},{x:Q+C/2,y:V-j/2+S},{x:Q+m.width/2,y:V-j/2+S},{x:Q+m.width/2/2,y:V+j/2},{x:Q-m.width/2,y:V+j/2},{x:Q-m.width/2,y:V-j/2+S},{x:Q-C/2,y:V-j/2+S}],Sa.polygon(t,ee,W)},p}X(pFn,"iconSquare");async function gFn(e,t,{config:{flowchart:r}}){const a=new Image;a.src=(t==null?void 0:t.img)??"",await a.decode();const s=Number(a.naturalWidth.toString().replace("px","")),o=Number(a.naturalHeight.toString().replace("px",""));t.imageAspectRatio=s/o;const{labelStyles:u}=Ia(t);t.labelStyle=u;const h=r==null?void 0:r.wrappingWidth;t.defaultWidth=r==null?void 0:r.wrappingWidth;const f=Math.max(t.label?h??0:0,(t==null?void 0:t.assetWidth)??s),p=t.constraint==="on"&&t!=null&&t.assetHeight?t.assetHeight*t.imageAspectRatio:f,m=t.constraint==="on"?p/t.imageAspectRatio:(t==null?void 0:t.assetHeight)??o;t.width=Math.max(p,h??0);const{shapeSvg:b,bbox:_,label:w}=await oo(e,t,"image-shape default"),S=t.pos==="t",C=-p/2,A=-m/2,k=t.label?8:0,I=Wa.svg(b),N=Ja(t,{});t.look!=="handDrawn"&&(N.roughness=0,N.fillStyle="solid");const L=I.rectangle(C,A,p,m,N),P=Math.max(p,_.width),M=m+_.height+k,F=I.rectangle(-P/2,-M/2,P,M,{...N,fill:"none",stroke:"none"}),U=b.insert(()=>L,":first-child"),$=b.insert(()=>F);if(t.img){const G=b.append("image");G.attr("href",t.img),G.attr("width",p),G.attr("height",m),G.attr("preserveAspectRatio","none"),G.attr("transform",`translate(${-p/2},${S?M/2-m:-M/2})`)}return w.attr("transform",`translate(${-_.width/2-(_.x-(_.left??0))},${S?-m/2-_.height/2-k/2:m/2-_.height/2+k/2})`),U.attr("transform",`translate(0,${S?_.height/2+k/2:-_.height/2-k/2})`),es(t,$),t.intersect=function(G){if(it.info("iconSquare intersect",t,G),!t.label)return Sa.rect(t,G);const B=t.x??0,Z=t.y??0,z=t.height??0;let Y=[];return S?Y=[{x:B-_.width/2,y:Z-z/2},{x:B+_.width/2,y:Z-z/2},{x:B+_.width/2,y:Z-z/2+_.height+k},{x:B+p/2,y:Z-z/2+_.height+k},{x:B+p/2,y:Z+z/2},{x:B-p/2,y:Z+z/2},{x:B-p/2,y:Z-z/2+_.height+k},{x:B-_.width/2,y:Z-z/2+_.height+k}]:Y=[{x:B-p/2,y:Z-z/2},{x:B+p/2,y:Z-z/2},{x:B+p/2,y:Z-z/2+m},{x:B+_.width/2,y:Z-z/2+m},{x:B+_.width/2/2,y:Z+z/2},{x:B-_.width/2,y:Z+z/2},{x:B-_.width/2,y:Z-z/2+m},{x:B-p/2,y:Z-z/2+m}],Sa.polygon(t,Y,G)},b}X(gFn,"imageSquare");async function mFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),h=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),f=[{x:0,y:0},{x:u,y:0},{x:u+3*h/6,y:-h},{x:-3*h/6,y:-h}];let p;const{cssStyles:m}=t;if(t.look==="handDrawn"){const b=Wa.svg(s),_=Ja(t,{}),w=hc(f),S=b.path(w,_);p=s.insert(()=>S,":first-child").attr("transform",`translate(${-u/2}, ${h/2})`),m&&p.attr("style",m)}else p=F9(s,u,h,f);return a&&p.attr("style",a),t.width=u,t.height=h,es(t,p),t.intersect=function(b){return Sa.polygon(t,f,b)},s}X(mFn,"inv_trapezoid");async function RAe(e,t,r){const{labelStyles:a,nodeStyles:s}=Ia(t);t.labelStyle=a;const{shapeSvg:o,bbox:u}=await oo(e,t,Ys(t)),h=Math.max(u.width+r.labelPaddingX*2,(t==null?void 0:t.width)||0),f=Math.max(u.height+r.labelPaddingY*2,(t==null?void 0:t.height)||0),p=-h/2,m=-f/2;let b,{rx:_,ry:w}=t;const{cssStyles:S}=t;if(r!=null&&r.rx&&r.ry&&(_=r.rx,w=r.ry),t.look==="handDrawn"){const C=Wa.svg(o),A=Ja(t,{}),k=_||w?C.path(B9(p,m,h,f,_||0),A):C.rectangle(p,m,h,f,A);b=o.insert(()=>k,":first-child"),b.attr("class","basic label-container").attr("style",Tb(S))}else b=o.insert("rect",":first-child"),b.attr("class","basic label-container").attr("style",s).attr("rx",Tb(_)).attr("ry",Tb(w)).attr("x",p).attr("y",m).attr("width",h).attr("height",f);return es(t,b),t.calcIntersect=function(C,A){return Sa.rect(C,A)},t.intersect=function(C){return Sa.rect(t,C)},o}X(RAe,"drawRect");async function bFn(e,t){const{shapeSvg:r,bbox:a,label:s}=await oo(e,t,"label"),o=r.insert("rect",":first-child");return o.attr("width",.1).attr("height",.1),r.attr("class","label edgeLabel"),s.attr("transform",`translate(${-(a.width/2)-(a.x-(a.left??0))}, ${-(a.height/2)-(a.y-(a.top??0))})`),es(t,o),t.intersect=function(f){return Sa.rect(t,f)},r}X(bFn,"labelRect");async function yFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=Math.max(o.width+(t.padding??0),(t==null?void 0:t.width)??0),h=Math.max(o.height+(t.padding??0),(t==null?void 0:t.height)??0),f=[{x:0,y:0},{x:u+3*h/6,y:0},{x:u,y:-h},{x:-(3*h)/6,y:-h}];let p;const{cssStyles:m}=t;if(t.look==="handDrawn"){const b=Wa.svg(s),_=Ja(t,{}),w=hc(f),S=b.path(w,_);p=s.insert(()=>S,":first-child").attr("transform",`translate(${-u/2}, ${h/2})`),m&&p.attr("style",m)}else p=F9(s,u,h,f);return a&&p.attr("style",a),t.width=u,t.height=h,es(t,p),t.intersect=function(b){return Sa.polygon(t,f,b)},s}X(yFn,"lean_left");async function vFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=Math.max(o.width+(t.padding??0),(t==null?void 0:t.width)??0),h=Math.max(o.height+(t.padding??0),(t==null?void 0:t.height)??0),f=[{x:-3*h/6,y:0},{x:u,y:0},{x:u+3*h/6,y:-h},{x:0,y:-h}];let p;const{cssStyles:m}=t;if(t.look==="handDrawn"){const b=Wa.svg(s),_=Ja(t,{}),w=hc(f),S=b.path(w,_);p=s.insert(()=>S,":first-child").attr("transform",`translate(${-u/2}, ${h/2})`),m&&p.attr("style",m)}else p=F9(s,u,h,f);return a&&p.attr("style",a),t.width=u,t.height=h,es(t,p),t.intersect=function(b){return Sa.polygon(t,f,b)},s}X(vFn,"lean_right");function _Fn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.label="",t.labelStyle=r;const s=e.insert("g").attr("class",Ys(t)).attr("id",t.domId??t.id),{cssStyles:o}=t,u=Math.max(35,(t==null?void 0:t.width)??0),h=Math.max(35,(t==null?void 0:t.height)??0),f=7,p=[{x:u,y:0},{x:0,y:h+f/2},{x:u-2*f,y:h+f/2},{x:0,y:2*h},{x:u,y:h-f/2},{x:2*f,y:h-f/2}],m=Wa.svg(s),b=Ja(t,{});t.look!=="handDrawn"&&(b.roughness=0,b.fillStyle="solid");const _=hc(p),w=m.path(_,b),S=s.insert(()=>w,":first-child");return o&&t.look!=="handDrawn"&&S.selectAll("path").attr("style",o),a&&t.look!=="handDrawn"&&S.selectAll("path").attr("style",a),S.attr("transform",`translate(-${u/2},${-h})`),es(t,S),t.intersect=function(C){return it.info("lightningBolt intersect",t,C),Sa.polygon(t,p,C)},s}X(_Fn,"lightningBolt");var Bpi=X((e,t,r,a,s,o,u)=>[`M${e},${t+o}`,`a${s},${o} 0,0,0 ${r},0`,`a${s},${o} 0,0,0 ${-r},0`,`l0,${a}`,`a${s},${o} 0,0,0 ${r},0`,`l0,${-a}`,`M${e},${t+o+u}`,`a${s},${o} 0,0,0 ${r},0`].join(" "),"createCylinderPathD"),Fpi=X((e,t,r,a,s,o,u)=>[`M${e},${t+o}`,`M${e+r},${t+o}`,`a${s},${o} 0,0,0 ${-r},0`,`l0,${a}`,`a${s},${o} 0,0,0 ${r},0`,`l0,${-a}`,`M${e},${t+o+u}`,`a${s},${o} 0,0,0 ${r},0`].join(" "),"createOuterCylinderPathD"),$pi=X((e,t,r,a,s,o)=>[`M${e-r/2},${-a/2}`,`a${s},${o} 0,0,0 ${r},0`].join(" "),"createInnerCylinderPathD");async function wFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+(t.padding??0),t.width??0),f=h/2,p=f/(2.5+h/50),m=Math.max(o.height+p+(t.padding??0),t.height??0),b=m*.1;let _;const{cssStyles:w}=t;if(t.look==="handDrawn"){const S=Wa.svg(s),C=Fpi(0,0,h,m,f,p,b),A=$pi(0,p,h,m,f,p),k=Ja(t,{}),I=S.path(C,k),N=S.path(A,k);s.insert(()=>N,":first-child").attr("class","line"),_=s.insert(()=>I,":first-child"),_.attr("class","basic label-container"),w&&_.attr("style",w)}else{const S=Bpi(0,0,h,m,f,p,b);_=s.insert("path",":first-child").attr("d",S).attr("class","basic label-container").attr("style",Tb(w)).attr("style",a)}return _.attr("label-offset-y",p),_.attr("transform",`translate(${-h/2}, ${-(m/2+p)})`),es(t,_),u.attr("transform",`translate(${-(o.width/2)-(o.x-(o.left??0))}, ${-(o.height/2)+p-(o.y-(o.top??0))})`),t.intersect=function(S){const C=Sa.rect(t,S),A=C.x-(t.x??0);if(f!=0&&(Math.abs(A)<(t.width??0)/2||Math.abs(A)==(t.width??0)/2&&Math.abs(C.y-(t.y??0))>(t.height??0)/2-p)){let k=p*p*(1-A*A/(f*f));k>0&&(k=Math.sqrt(k)),k=p-k,S.y-(t.y??0)>0&&(k=-k),C.y+=k}return C},s}X(wFn,"linedCylinder");async function EFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),f=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),p=f/4,m=f+p,{cssStyles:b}=t,_=Wa.svg(s),w=Ja(t,{});t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const S=[{x:-h/2-h/2*.1,y:-m/2},{x:-h/2-h/2*.1,y:m/2},...JO(-h/2-h/2*.1,m/2,h/2+h/2*.1,m/2,p,.8),{x:h/2+h/2*.1,y:-m/2},{x:-h/2-h/2*.1,y:-m/2},{x:-h/2,y:-m/2},{x:-h/2,y:m/2*1.1},{x:-h/2,y:-m/2}],C=_.polygon(S.map(k=>[k.x,k.y]),w),A=s.insert(()=>C,":first-child");return A.attr("class","basic label-container"),b&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",b),a&&t.look!=="handDrawn"&&A.selectAll("path").attr("style",a),A.attr("transform",`translate(0,${-p/2})`),u.attr("transform",`translate(${-h/2+(t.padding??0)+h/2*.1/2-(o.x-(o.left??0))},${-f/2+(t.padding??0)-p/2-(o.y-(o.top??0))})`),es(t,A),t.intersect=function(k){return Sa.polygon(t,S,k)},s}X(EFn,"linedWaveEdgedRect");async function xFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),f=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),p=5,m=-h/2,b=-f/2,{cssStyles:_}=t,w=Wa.svg(s),S=Ja(t,{}),C=[{x:m-p,y:b+p},{x:m-p,y:b+f+p},{x:m+h-p,y:b+f+p},{x:m+h-p,y:b+f},{x:m+h,y:b+f},{x:m+h,y:b+f-p},{x:m+h+p,y:b+f-p},{x:m+h+p,y:b-p},{x:m+p,y:b-p},{x:m+p,y:b},{x:m,y:b},{x:m,y:b+p}],A=[{x:m,y:b+p},{x:m+h-p,y:b+p},{x:m+h-p,y:b+f},{x:m+h,y:b+f},{x:m+h,y:b},{x:m,y:b}];t.look!=="handDrawn"&&(S.roughness=0,S.fillStyle="solid");const k=hc(C),I=w.path(k,S),N=hc(A),L=w.path(N,{...S,fill:"none"}),P=s.insert(()=>L,":first-child");return P.insert(()=>I,":first-child"),P.attr("class","basic label-container"),_&&t.look!=="handDrawn"&&P.selectAll("path").attr("style",_),a&&t.look!=="handDrawn"&&P.selectAll("path").attr("style",a),u.attr("transform",`translate(${-(o.width/2)-p-(o.x-(o.left??0))}, ${-(o.height/2)+p-(o.y-(o.top??0))})`),es(t,P),t.intersect=function(M){return Sa.polygon(t,C,M)},s}X(xFn,"multiRect");async function SFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),f=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),p=f/4,m=f+p,b=-h/2,_=-m/2,w=5,{cssStyles:S}=t,C=JO(b-w,_+m+w,b+h-w,_+m+w,p,.8),A=C==null?void 0:C[C.length-1],k=[{x:b-w,y:_+w},{x:b-w,y:_+m+w},...C,{x:b+h-w,y:A.y-w},{x:b+h,y:A.y-w},{x:b+h,y:A.y-2*w},{x:b+h+w,y:A.y-2*w},{x:b+h+w,y:_-w},{x:b+w,y:_-w},{x:b+w,y:_},{x:b,y:_},{x:b,y:_+w}],I=[{x:b,y:_+w},{x:b+h-w,y:_+w},{x:b+h-w,y:A.y-w},{x:b+h,y:A.y-w},{x:b+h,y:_},{x:b,y:_}],N=Wa.svg(s),L=Ja(t,{});t.look!=="handDrawn"&&(L.roughness=0,L.fillStyle="solid");const P=hc(k),M=N.path(P,L),F=hc(I),U=N.path(F,L),$=s.insert(()=>M,":first-child");return $.insert(()=>U),$.attr("class","basic label-container"),S&&t.look!=="handDrawn"&&$.selectAll("path").attr("style",S),a&&t.look!=="handDrawn"&&$.selectAll("path").attr("style",a),$.attr("transform",`translate(0,${-p/2})`),u.attr("transform",`translate(${-(o.width/2)-w-(o.x-(o.left??0))}, ${-(o.height/2)+w-p/2-(o.y-(o.top??0))})`),es(t,$),t.intersect=function(G){return Sa.polygon(t,k,G)},s}X(SFn,"multiWaveEdgedRectangle");async function TFn(e,t,{config:{themeVariables:r}}){var I;const{labelStyles:a,nodeStyles:s}=Ia(t);t.labelStyle=a,t.useHtmlLabels||((I=$c().flowchart)==null?void 0:I.htmlLabels)!==!1||(t.centerLabel=!0);const{shapeSvg:u,bbox:h,label:f}=await oo(e,t,Ys(t)),p=Math.max(h.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),m=Math.max(h.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),b=-p/2,_=-m/2,{cssStyles:w}=t,S=Wa.svg(u),C=Ja(t,{fill:r.noteBkgColor,stroke:r.noteBorderColor});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const A=S.rectangle(b,_,p,m,C),k=u.insert(()=>A,":first-child");return k.attr("class","basic label-container"),w&&t.look!=="handDrawn"&&k.selectAll("path").attr("style",w),s&&t.look!=="handDrawn"&&k.selectAll("path").attr("style",s),f.attr("transform",`translate(${-h.width/2-(h.x-(h.left??0))}, ${-(h.height/2)-(h.y-(h.top??0))})`),es(t,k),t.intersect=function(N){return Sa.rect(t,N)},u}X(TFn,"note");var Upi=X((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 CFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=o.width+t.padding,h=o.height+t.padding,f=u+h,p=.5,m=[{x:f/2,y:0},{x:f,y:-f/2},{x:f/2,y:-f},{x:0,y:-f/2}];let b;const{cssStyles:_}=t;if(t.look==="handDrawn"){const w=Wa.svg(s),S=Ja(t,{}),C=Upi(0,0,f),A=w.path(C,S);b=s.insert(()=>A,":first-child").attr("transform",`translate(${-f/2+p}, ${f/2})`),_&&b.attr("style",_)}else b=F9(s,f,f,m),b.attr("transform",`translate(${-f/2+p}, ${f/2})`);return a&&b.attr("style",a),es(t,b),t.calcIntersect=function(w,S){const C=w.width,A=[{x:C/2,y:0},{x:C,y:-C/2},{x:C/2,y:-C},{x:0,y:-C/2}],k=Sa.polygon(w,A,S);return{x:k.x-.5,y:k.y-.5}},t.intersect=function(w){return this.calcIntersect(t,w)},s}X(CFn,"question");async function AFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+(t.padding??0),(t==null?void 0:t.width)??0),f=Math.max(o.height+(t.padding??0),(t==null?void 0:t.height)??0),p=-h/2,m=-f/2,b=m/2,_=[{x:p+b,y:m},{x:p,y:0},{x:p+b,y:-m},{x:-p,y:-m},{x:-p,y:m}],{cssStyles:w}=t,S=Wa.svg(s),C=Ja(t,{});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const A=hc(_),k=S.path(A,C),I=s.insert(()=>k,":first-child");return I.attr("class","basic label-container"),w&&t.look!=="handDrawn"&&I.selectAll("path").attr("style",w),a&&t.look!=="handDrawn"&&I.selectAll("path").attr("style",a),I.attr("transform",`translate(${-b/2},0)`),u.attr("transform",`translate(${-b/2-o.width/2-(o.x-(o.left??0))}, ${-(o.height/2)-(o.y-(o.top??0))})`),es(t,I),t.intersect=function(N){return Sa.polygon(t,_,N)},s}X(AFn,"rect_left_inv_arrow");async function kFn(e,t){var U,$;const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;let s;t.cssClasses?s="node "+t.cssClasses:s="node default";const o=e.insert("g").attr("class",s).attr("id",t.domId||t.id),u=o.insert("g"),h=o.insert("g").attr("class","label").attr("style",a),f=t.description,p=t.label,m=h.node().appendChild(await tF(p,t.labelStyle,!0,!0));let b={width:0,height:0};if(nh(($=(U=nn())==null?void 0:U.flowchart)==null?void 0:$.htmlLabels)){const G=m.children[0],B=gn(m);b=G.getBoundingClientRect(),B.attr("width",b.width),B.attr("height",b.height)}it.info("Text 2",f);const _=f||[],w=m.getBBox(),S=h.node().appendChild(await tF(_.join?_.join("
    "):_,t.labelStyle,!0,!0)),C=S.children[0],A=gn(S);b=C.getBoundingClientRect(),A.attr("width",b.width),A.attr("height",b.height);const k=(t.padding||0)/2;gn(S).attr("transform","translate( "+(b.width>w.width?0:(w.width-b.width)/2)+", "+(w.height+k+5)+")"),gn(m).attr("transform","translate( "+(b.width(it.debug("Rough node insert CXC",Z),z),":first-child"),M=o.insert(()=>(it.debug("Rough node insert CXC",Z),Z),":first-child")}else M=u.insert("rect",":first-child"),F=u.insert("line"),M.attr("class","outer title-state").attr("style",a).attr("x",-b.width/2-k).attr("y",-b.height/2-k).attr("width",b.width+(t.padding||0)).attr("height",b.height+(t.padding||0)),F.attr("class","divider").attr("x1",-b.width/2-k).attr("x2",b.width/2+k).attr("y1",-b.height/2-k+w.height+k).attr("y2",-b.height/2-k+w.height+k);return es(t,M),t.intersect=function(G){return Sa.rect(t,G)},o}X(kFn,"rectWithTitle");function Bie(e,t,r,a,s,o,u){const f=(e+r)/2,p=(t+a)/2,m=Math.atan2(a-t,r-e),b=(r-e)/2,_=(a-t)/2,w=b/s,S=_/o,C=Math.sqrt(w**2+S**2);if(C>1)throw new Error("The given radii are too small to create an arc between the points.");const A=Math.sqrt(1-C**2),k=f+A*o*Math.sin(m)*(u?-1:1),I=p-A*s*Math.cos(m)*(u?-1:1),N=Math.atan2((t-I)/o,(e-k)/s);let P=Math.atan2((a-I)/o,(r-k)/s)-N;u&&P<0&&(P+=2*Math.PI),!u&&P>0&&(P-=2*Math.PI);const M=[];for(let F=0;F<20;F++){const U=F/19,$=N+U*P,G=k+s*Math.cos($),B=I+o*Math.sin($);M.push({x:G,y:B})}return M}X(Bie,"generateArcPoints");async function RFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=(t==null?void 0:t.padding)??0,h=(t==null?void 0:t.padding)??0,f=(t!=null&&t.width?t==null?void 0:t.width:o.width)+u*2,p=(t!=null&&t.height?t==null?void 0:t.height:o.height)+h*2,m=t.radius||5,b=t.taper||5,{cssStyles:_}=t,w=Wa.svg(s),S=Ja(t,{});t.stroke&&(S.stroke=t.stroke),t.look!=="handDrawn"&&(S.roughness=0,S.fillStyle="solid");const C=[{x:-f/2+b,y:-p/2},{x:f/2-b,y:-p/2},...Bie(f/2-b,-p/2,f/2,-p/2+b,m,m,!0),{x:f/2,y:-p/2+b},{x:f/2,y:p/2-b},...Bie(f/2,p/2-b,f/2-b,p/2,m,m,!0),{x:f/2-b,y:p/2},{x:-f/2+b,y:p/2},...Bie(-f/2+b,p/2,-f/2,p/2-b,m,m,!0),{x:-f/2,y:p/2-b},{x:-f/2,y:-p/2+b},...Bie(-f/2,-p/2+b,-f/2+b,-p/2,m,m,!0)],A=hc(C),k=w.path(A,S),I=s.insert(()=>k,":first-child");return I.attr("class","basic label-container outer-path"),_&&t.look!=="handDrawn"&&I.selectChildren("path").attr("style",_),a&&t.look!=="handDrawn"&&I.selectChildren("path").attr("style",a),es(t,I),t.intersect=function(N){return Sa.polygon(t,C,N)},s}X(RFn,"roundedRect");async function IFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=(t==null?void 0:t.padding)??0,f=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),p=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),m=-o.width/2-h,b=-o.height/2-h,{cssStyles:_}=t,w=Wa.svg(s),S=Ja(t,{});t.look!=="handDrawn"&&(S.roughness=0,S.fillStyle="solid");const C=[{x:m,y:b},{x:m+f+8,y:b},{x:m+f+8,y:b+p},{x:m-8,y:b+p},{x:m-8,y:b},{x:m,y:b},{x:m,y:b+p}],A=w.polygon(C.map(I=>[I.x,I.y]),S),k=s.insert(()=>A,":first-child");return k.attr("class","basic label-container").attr("style",Tb(_)),a&&t.look!=="handDrawn"&&k.selectAll("path").attr("style",a),_&&t.look!=="handDrawn"&&k.selectAll("path").attr("style",a),u.attr("transform",`translate(${-f/2+4+(t.padding??0)-(o.x-(o.left??0))},${-p/2+(t.padding??0)-(o.y-(o.top??0))})`),es(t,k),t.intersect=function(I){return Sa.rect(t,I)},s}X(IFn,"shadedProcess");async function NFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),f=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),p=-h/2,m=-f/2,{cssStyles:b}=t,_=Wa.svg(s),w=Ja(t,{});t.look!=="handDrawn"&&(w.roughness=0,w.fillStyle="solid");const S=[{x:p,y:m},{x:p,y:m+f},{x:p+h,y:m+f},{x:p+h,y:m-f/2}],C=hc(S),A=_.path(C,w),k=s.insert(()=>A,":first-child");return k.attr("class","basic label-container"),b&&t.look!=="handDrawn"&&k.selectChildren("path").attr("style",b),a&&t.look!=="handDrawn"&&k.selectChildren("path").attr("style",a),k.attr("transform",`translate(0, ${f/4})`),u.attr("transform",`translate(${-h/2+(t.padding??0)-(o.x-(o.left??0))}, ${-f/4+(t.padding??0)-(o.y-(o.top??0))})`),es(t,k),t.intersect=function(I){return Sa.polygon(t,S,I)},s}X(NFn,"slopedRect");async function OFn(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 RAe(e,t,r)}X(OFn,"squareRect");async function LFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=o.height+t.padding,h=o.width+u/4+t.padding,f=u/2,{cssStyles:p}=t,m=Wa.svg(s),b=Ja(t,{});t.look!=="handDrawn"&&(b.roughness=0,b.fillStyle="solid");const _=[{x:-h/2+f,y:-u/2},{x:h/2-f,y:-u/2},...Soe(-h/2+f,0,f,50,90,270),{x:h/2-f,y:u/2},...Soe(h/2-f,0,f,50,270,450)],w=hc(_),S=m.path(w,b),C=s.insert(()=>S,":first-child");return C.attr("class","basic label-container outer-path"),p&&t.look!=="handDrawn"&&C.selectChildren("path").attr("style",p),a&&t.look!=="handDrawn"&&C.selectChildren("path").attr("style",a),es(t,C),t.intersect=function(A){return Sa.polygon(t,_,A)},s}X(LFn,"stadium");async function DFn(e,t){return RAe(e,t,{rx:5,ry:5})}X(DFn,"state");function MFn(e,t,{config:{themeVariables:r}}){const{labelStyles:a,nodeStyles:s}=Ia(t);t.labelStyle=a;const{cssStyles:o}=t,{lineColor:u,stateBorder:h,nodeBorder:f}=r,p=e.insert("g").attr("class","node default").attr("id",t.domId||t.id),m=Wa.svg(p),b=Ja(t,{});t.look!=="handDrawn"&&(b.roughness=0,b.fillStyle="solid");const _=m.circle(0,0,14,{...b,stroke:u,strokeWidth:2}),w=h??f,S=m.circle(0,0,5,{...b,fill:w,stroke:w,strokeWidth:2,fillStyle:"solid"}),C=p.insert(()=>_,":first-child");return C.insert(()=>S),o&&C.selectAll("path").attr("style",o),s&&C.selectAll("path").attr("style",s),es(t,C),t.intersect=function(A){return Sa.circle(t,7,A)},p}X(MFn,"stateEnd");function PFn(e,t,{config:{themeVariables:r}}){const{lineColor:a}=r,s=e.insert("g").attr("class","node default").attr("id",t.domId||t.id);let o;if(t.look==="handDrawn"){const h=Wa.svg(s).circle(0,0,14,Tdi(a));o=s.insert(()=>h),o.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14)}else o=s.insert("circle",":first-child"),o.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14);return es(t,o),t.intersect=function(u){return Sa.circle(t,7,u)},s}X(PFn,"stateStart");async function BFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=((t==null?void 0:t.padding)||0)/2,h=o.width+t.padding,f=o.height+t.padding,p=-o.width/2-u,m=-o.height/2-u,b=[{x:0,y:0},{x:h,y:0},{x:h,y:-f},{x:0,y:-f},{x:0,y:0},{x:-8,y:0},{x:h+8,y:0},{x:h+8,y:-f},{x:-8,y:-f},{x:-8,y:0}];if(t.look==="handDrawn"){const _=Wa.svg(s),w=Ja(t,{}),S=_.rectangle(p-8,m,h+16,f,w),C=_.line(p,m,p,m+f,w),A=_.line(p+h,m,p+h,m+f,w);s.insert(()=>C,":first-child"),s.insert(()=>A,":first-child");const k=s.insert(()=>S,":first-child"),{cssStyles:I}=t;k.attr("class","basic label-container").attr("style",Tb(I)),es(t,k)}else{const _=F9(s,h,f,b);a&&_.attr("style",a),es(t,_)}return t.intersect=function(_){return Sa.polygon(t,b,_)},s}X(BFn,"subroutine");async function FFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),h=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),f=-u/2,p=-h/2,m=.2*h,b=.2*h,{cssStyles:_}=t,w=Wa.svg(s),S=Ja(t,{}),C=[{x:f-m/2,y:p},{x:f+u+m/2,y:p},{x:f+u+m/2,y:p+h},{x:f-m/2,y:p+h}],A=[{x:f+u-m/2,y:p+h},{x:f+u+m/2,y:p+h},{x:f+u+m/2,y:p+h-b}];t.look!=="handDrawn"&&(S.roughness=0,S.fillStyle="solid");const k=hc(C),I=w.path(k,S),N=hc(A),L=w.path(N,{...S,fillStyle:"solid"}),P=s.insert(()=>L,":first-child");return P.insert(()=>I,":first-child"),P.attr("class","basic label-container"),_&&t.look!=="handDrawn"&&P.selectAll("path").attr("style",_),a&&t.look!=="handDrawn"&&P.selectAll("path").attr("style",a),es(t,P),t.intersect=function(M){return Sa.polygon(t,C,M)},s}X(FFn,"taggedRect");async function $Fn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),f=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),p=f/4,m=.2*h,b=.2*f,_=f+p,{cssStyles:w}=t,S=Wa.svg(s),C=Ja(t,{});t.look!=="handDrawn"&&(C.roughness=0,C.fillStyle="solid");const A=[{x:-h/2-h/2*.1,y:_/2},...JO(-h/2-h/2*.1,_/2,h/2+h/2*.1,_/2,p,.8),{x:h/2+h/2*.1,y:-_/2},{x:-h/2-h/2*.1,y:-_/2}],k=-h/2+h/2*.1,I=-_/2-b*.4,N=[{x:k+h-m,y:(I+f)*1.4},{x:k+h,y:I+f-b},{x:k+h,y:(I+f)*.9},...JO(k+h,(I+f)*1.3,k+h-m,(I+f)*1.5,-f*.03,.5)],L=hc(A),P=S.path(L,C),M=hc(N),F=S.path(M,{...C,fillStyle:"solid"}),U=s.insert(()=>F,":first-child");return U.insert(()=>P,":first-child"),U.attr("class","basic label-container"),w&&t.look!=="handDrawn"&&U.selectAll("path").attr("style",w),a&&t.look!=="handDrawn"&&U.selectAll("path").attr("style",a),U.attr("transform",`translate(0,${-p/2})`),u.attr("transform",`translate(${-h/2+(t.padding??0)-(o.x-(o.left??0))},${-f/2+(t.padding??0)-p/2-(o.y-(o.top??0))})`),es(t,U),t.intersect=function($){return Sa.polygon(t,A,$)},s}X($Fn,"taggedWaveEdgedRectangle");async function UFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=Math.max(o.width+t.padding,(t==null?void 0:t.width)||0),h=Math.max(o.height+t.padding,(t==null?void 0:t.height)||0),f=-u/2,p=-h/2,m=s.insert("rect",":first-child");return m.attr("class","text").attr("style",a).attr("rx",0).attr("ry",0).attr("x",f).attr("y",p).attr("width",u).attr("height",h),es(t,m),t.intersect=function(b){return Sa.rect(t,b)},s}X(UFn,"text");var zpi=X((e,t,r,a,s,o)=>`M${e},${t} + a${s},${o} 0,0,1 0,${-a} + l${r},0 + a${s},${o} 0,0,1 0,${a} + M${r},${-a} + a${s},${o} 0,0,0 0,${a} + l${-r},0`,"createCylinderPathD"),Gpi=X((e,t,r,a,s,o)=>[`M${e},${t}`,`M${e+r},${t}`,`a${s},${o} 0,0,0 0,${-a}`,`l${-r},0`,`a${s},${o} 0,0,0 0,${a}`,`l${r},0`].join(" "),"createOuterCylinderPathD"),qpi=X((e,t,r,a,s,o)=>[`M${e+r/2},${-a/2}`,`a${s},${o} 0,0,0 0,${a}`].join(" "),"createInnerCylinderPathD");async function zFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u,halfPadding:h}=await oo(e,t,Ys(t)),f=t.look==="neo"?h*2:h,p=o.height+f,m=p/2,b=m/(2.5+p/50),_=o.width+b+f,{cssStyles:w}=t;let S;if(t.look==="handDrawn"){const C=Wa.svg(s),A=Gpi(0,0,_,p,b,m),k=qpi(0,0,_,p,b,m),I=C.path(A,Ja(t,{})),N=C.path(k,Ja(t,{fill:"none"}));S=s.insert(()=>N,":first-child"),S=s.insert(()=>I,":first-child"),S.attr("class","basic label-container"),w&&S.attr("style",w)}else{const C=zpi(0,0,_,p,b,m);S=s.insert("path",":first-child").attr("d",C).attr("class","basic label-container").attr("style",Tb(w)).attr("style",a),S.attr("class","basic label-container"),w&&S.selectAll("path").attr("style",w),a&&S.selectAll("path").attr("style",a)}return S.attr("label-offset-x",b),S.attr("transform",`translate(${-_/2}, ${p/2} )`),u.attr("transform",`translate(${-(o.width/2)-b-(o.x-(o.left??0))}, ${-(o.height/2)-(o.y-(o.top??0))})`),es(t,S),t.intersect=function(C){const A=Sa.rect(t,C),k=A.y-(t.y??0);if(m!=0&&(Math.abs(k)<(t.height??0)/2||Math.abs(k)==(t.height??0)/2&&Math.abs(A.x-(t.x??0))>(t.width??0)/2-b)){let I=b*b*(1-k*k/(m*m));I!=0&&(I=Math.sqrt(Math.abs(I))),I=b-I,C.x-(t.x??0)>0&&(I=-I),A.x+=I}return A},s}X(zFn,"tiltedCylinder");async function GFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=o.width+t.padding,h=o.height+t.padding,f=[{x:-3*h/6,y:0},{x:u+3*h/6,y:0},{x:u,y:-h},{x:0,y:-h}];let p;const{cssStyles:m}=t;if(t.look==="handDrawn"){const b=Wa.svg(s),_=Ja(t,{}),w=hc(f),S=b.path(w,_);p=s.insert(()=>S,":first-child").attr("transform",`translate(${-u/2}, ${h/2})`),m&&p.attr("style",m)}else p=F9(s,u,h,f);return a&&p.attr("style",a),t.width=u,t.height=h,es(t,p),t.intersect=function(b){return Sa.polygon(t,f,b)},s}X(GFn,"trapezoid");async function qFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=60,h=20,f=Math.max(u,o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),p=Math.max(h,o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),{cssStyles:m}=t,b=Wa.svg(s),_=Ja(t,{});t.look!=="handDrawn"&&(_.roughness=0,_.fillStyle="solid");const w=[{x:-f/2*.8,y:-p/2},{x:f/2*.8,y:-p/2},{x:f/2,y:-p/2*.6},{x:f/2,y:p/2},{x:-f/2,y:p/2},{x:-f/2,y:-p/2*.6}],S=hc(w),C=b.path(S,_),A=s.insert(()=>C,":first-child");return A.attr("class","basic label-container"),m&&t.look!=="handDrawn"&&A.selectChildren("path").attr("style",m),a&&t.look!=="handDrawn"&&A.selectChildren("path").attr("style",a),es(t,A),t.intersect=function(k){return Sa.polygon(t,w,k)},s}X(qFn,"trapezoidalPentagon");async function HFn(e,t){var I;const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=nh((I=nn().flowchart)==null?void 0:I.htmlLabels),f=o.width+(t.padding??0),p=f+o.height,m=f+o.height,b=[{x:0,y:0},{x:m,y:0},{x:m/2,y:-p}],{cssStyles:_}=t,w=Wa.svg(s),S=Ja(t,{});t.look!=="handDrawn"&&(S.roughness=0,S.fillStyle="solid");const C=hc(b),A=w.path(C,S),k=s.insert(()=>A,":first-child").attr("transform",`translate(${-p/2}, ${p/2})`);return _&&t.look!=="handDrawn"&&k.selectChildren("path").attr("style",_),a&&t.look!=="handDrawn"&&k.selectChildren("path").attr("style",a),t.width=f,t.height=p,es(t,k),u.attr("transform",`translate(${-o.width/2-(o.x-(o.left??0))}, ${p/2-(o.height+(t.padding??0)/(h?2:1)-(o.y-(o.top??0)))})`),t.intersect=function(N){return it.info("Triangle intersect",t,b,N),Sa.polygon(t,b,N)},s}X(HFn,"triangle");async function VFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),f=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),p=f/8,m=f+p,{cssStyles:b}=t,w=70-h,S=w>0?w/2:0,C=Wa.svg(s),A=Ja(t,{});t.look!=="handDrawn"&&(A.roughness=0,A.fillStyle="solid");const k=[{x:-h/2-S,y:m/2},...JO(-h/2-S,m/2,h/2+S,m/2,p,.8),{x:h/2+S,y:-m/2},{x:-h/2-S,y:-m/2}],I=hc(k),N=C.path(I,A),L=s.insert(()=>N,":first-child");return L.attr("class","basic label-container"),b&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",b),a&&t.look!=="handDrawn"&&L.selectAll("path").attr("style",a),L.attr("transform",`translate(0,${-p/2})`),u.attr("transform",`translate(${-h/2+(t.padding??0)-(o.x-(o.left??0))},${-f/2+(t.padding??0)-p-(o.y-(o.top??0))})`),es(t,L),t.intersect=function(P){return Sa.polygon(t,k,P)},s}X(VFn,"waveEdgedRectangle");async function YFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o}=await oo(e,t,Ys(t)),u=100,h=50,f=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),p=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),m=f/p;let b=f,_=p;b>_*m?_=b/m:b=_*m,b=Math.max(b,u),_=Math.max(_,h);const w=Math.min(_*.2,_/4),S=_+w*2,{cssStyles:C}=t,A=Wa.svg(s),k=Ja(t,{});t.look!=="handDrawn"&&(k.roughness=0,k.fillStyle="solid");const I=[{x:-b/2,y:S/2},...JO(-b/2,S/2,b/2,S/2,w,1),{x:b/2,y:-S/2},...JO(b/2,-S/2,-b/2,-S/2,w,-1)],N=hc(I),L=A.path(N,k),P=s.insert(()=>L,":first-child");return P.attr("class","basic label-container"),C&&t.look!=="handDrawn"&&P.selectAll("path").attr("style",C),a&&t.look!=="handDrawn"&&P.selectAll("path").attr("style",a),es(t,P),t.intersect=function(M){return Sa.polygon(t,I,M)},s}X(YFn,"waveRectangle");async function jFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,label:u}=await oo(e,t,Ys(t)),h=Math.max(o.width+(t.padding??0)*2,(t==null?void 0:t.width)??0),f=Math.max(o.height+(t.padding??0)*2,(t==null?void 0:t.height)??0),p=5,m=-h/2,b=-f/2,{cssStyles:_}=t,w=Wa.svg(s),S=Ja(t,{}),C=[{x:m-p,y:b-p},{x:m-p,y:b+f},{x:m+h,y:b+f},{x:m+h,y:b-p}],A=`M${m-p},${b-p} L${m+h},${b-p} L${m+h},${b+f} L${m-p},${b+f} L${m-p},${b-p} + M${m-p},${b} L${m+h},${b} + M${m},${b-p} L${m},${b+f}`;t.look!=="handDrawn"&&(S.roughness=0,S.fillStyle="solid");const k=w.path(A,S),I=s.insert(()=>k,":first-child");return I.attr("transform",`translate(${p/2}, ${p/2})`),I.attr("class","basic label-container"),_&&t.look!=="handDrawn"&&I.selectAll("path").attr("style",_),a&&t.look!=="handDrawn"&&I.selectAll("path").attr("style",a),u.attr("transform",`translate(${-(o.width/2)+p/2-(o.x-(o.left??0))}, ${-(o.height/2)+p/2-(o.y-(o.top??0))})`),es(t,I),t.intersect=function(N){return Sa.polygon(t,C,N)},s}X(jFn,"windowPane");async function npt(e,t){var se,ie,ge,ce;const r=t;if(r.alias&&(t.label=r.alias),t.look==="handDrawn"){const{themeVariables:be}=$c(),{background:ve}=be,De={...t,id:t.id+"-background",look:"default",cssStyles:["stroke: none",`fill: ${ve}`]};await npt(e,De)}const a=$c();t.useHtmlLabels=a.htmlLabels;let s=((se=a.er)==null?void 0:se.diagramPadding)??10,o=((ie=a.er)==null?void 0:ie.entityPadding)??6;const{cssStyles:u}=t,{labelStyles:h,nodeStyles:f}=Ia(t);if(r.attributes.length===0&&t.label){const be={rx:0,ry:0,labelPaddingX:s,labelPaddingY:s*1.5};nv(t.label,a)+be.labelPaddingX*20){const be=b.width+s*2-(C+A+k+I);C+=be/P,A+=be/P,k>0&&(k+=be/P),I>0&&(I+=be/P)}const F=C+A+k+I,U=Wa.svg(m),$=Ja(t,{});t.look!=="handDrawn"&&($.roughness=0,$.fillStyle="solid");let G=0;S.length>0&&(G=S.reduce((be,ve)=>be+((ve==null?void 0:ve.rowHeight)??0),0));const B=Math.max(M.width+s*2,(t==null?void 0:t.width)||0,F),Z=Math.max((G??0)+b.height,(t==null?void 0:t.height)||0),z=-B/2,Y=-Z/2;m.selectAll("g:not(:first-child)").each((be,ve,De)=>{const ye=gn(De[ve]),Ee=ye.attr("transform");let he=0,we=0;if(Ee){const Ie=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(Ee);Ie&&(he=parseFloat(Ie[1]),we=parseFloat(Ie[2]),ye.attr("class").includes("attribute-name")?he+=C:ye.attr("class").includes("attribute-keys")?he+=C+A:ye.attr("class").includes("attribute-comment")&&(he+=C+A+k))}ye.attr("transform",`translate(${z+s/2+he}, ${we+Y+b.height+o/2})`)}),m.select(".name").attr("transform","translate("+-b.width/2+", "+(Y+o/2)+")");const W=U.rectangle(z,Y,B,Z,$),Q=m.insert(()=>W,":first-child").attr("style",u.join("")),{themeVariables:V}=$c(),{rowEven:j,rowOdd:ee,nodeBorder:te}=V;w.push(0);for(const[be,ve]of S.entries()){const ye=(be+1)%2===0&&ve.yOffset!==0,Ee=U.rectangle(z,b.height+Y+(ve==null?void 0:ve.yOffset),B,ve==null?void 0:ve.rowHeight,{...$,fill:ye?j:ee,stroke:te});m.insert(()=>Ee,"g.label").attr("style",u.join("")).attr("class",`row-rect-${ye?"even":"odd"}`)}let ne=U.line(z,b.height+Y,B+z,b.height+Y,$);m.insert(()=>ne).attr("class","divider"),ne=U.line(C+z,b.height+Y,C+z,Z+Y,$),m.insert(()=>ne).attr("class","divider"),N&&(ne=U.line(C+A+z,b.height+Y,C+A+z,Z+Y,$),m.insert(()=>ne).attr("class","divider")),L&&(ne=U.line(C+A+k+z,b.height+Y,C+A+k+z,Z+Y,$),m.insert(()=>ne).attr("class","divider"));for(const be of w)ne=U.line(z,b.height+Y+be,B+z,b.height+Y+be,$),m.insert(()=>ne).attr("class","divider");if(es(t,Q),f&&t.look!=="handDrawn"){const be=f.split(";"),ve=(ce=be==null?void 0:be.filter(De=>De.includes("stroke")))==null?void 0:ce.map(De=>`${De}`).join("; ");m.selectAll("path").attr("style",ve??""),m.selectAll(".row-rect-even path").attr("style",f)}return t.intersect=function(be){return Sa.rect(t,be)},m}X(npt,"erBox");async function hV(e,t,r,a=0,s=0,o=[],u=""){const h=e.insert("g").attr("class",`label ${o.join(" ")}`).attr("transform",`translate(${a}, ${s})`).attr("style",u);t!==WN(t)&&(t=WN(t),t=t.replaceAll("<","<").replaceAll(">",">"));const f=h.node().appendChild(await Yw(h,t,{width:nv(t,r)+100,style:u,useHtmlLabels:r.htmlLabels},r));if(t.includes("<")||t.includes(">")){let m=f.children[0];for(m.textContent=m.textContent.replaceAll("<","<").replaceAll(">",">");m.childNodes[0];)m=m.childNodes[0],m.textContent=m.textContent.replaceAll("<","<").replaceAll(">",">")}let p=f.getBBox();if(nh(r.htmlLabels)){const m=f.children[0];m.style.textAlign="start";const b=gn(f);p=m.getBoundingClientRect(),b.attr("width",p.width),b.attr("height",p.height)}return p}X(hV,"addText");async function WFn(e,t,r,a,s=r.class.padding??12){const o=a?0:3,u=e.insert("g").attr("class",Ys(t)).attr("id",t.domId||t.id);let h=null,f=null,p=null,m=null,b=0,_=0,w=0;if(h=u.insert("g").attr("class","annotation-group text"),t.annotations.length>0){const I=t.annotations[0];await Fie(h,{text:`«${I}»`},0),b=h.node().getBBox().height}f=u.insert("g").attr("class","label-group text"),await Fie(f,t,0,["font-weight: bolder"]);const S=f.node().getBBox();_=S.height,p=u.insert("g").attr("class","members-group text");let C=0;for(const I of t.members){const N=await Fie(p,I,C,[I.parseClassifier()]);C+=N+o}w=p.node().getBBox().height,w<=0&&(w=s/2),m=u.insert("g").attr("class","methods-group text");let A=0;for(const I of t.methods){const N=await Fie(m,I,A,[I.parseClassifier()]);A+=N+o}let k=u.node().getBBox();if(h!==null){const I=h.node().getBBox();h.attr("transform",`translate(${-I.width/2})`)}return f.attr("transform",`translate(${-S.width/2}, ${b})`),k=u.node().getBBox(),p.attr("transform",`translate(0, ${b+_+s*2})`),k=u.node().getBBox(),m.attr("transform",`translate(0, ${b+_+(w?w+s*4:s*2)})`),k=u.node().getBBox(),{shapeSvg:u,bbox:k}}X(WFn,"textHelper");async function Fie(e,t,r,a=[]){const s=e.insert("g").attr("class","label").attr("style",a.join("; ")),o=$c();let u="useHtmlLabels"in t?t.useHtmlLabels:nh(o.htmlLabels)??!0,h="";"text"in t?h=t.text:h=t.label,!u&&h.startsWith("\\")&&(h=h.substring(1)),u0(h)&&(u=!0);const f=await Yw(s,H0t(vA(h)),{width:nv(h,o)+50,classes:"markdown-node-label",useHtmlLabels:u},o);let p,m=1;if(u){const b=f.children[0],_=gn(f);m=b.innerHTML.split("
    ").length,b.innerHTML.includes("")&&(m+=b.innerHTML.split("").length-1);const w=b.getElementsByTagName("img");if(w){const S=h.replace(/]*>/g,"").trim()==="";await Promise.all([...w].map(C=>new Promise(A=>{function k(){var I;if(C.style.display="flex",C.style.flexDirection="column",S){const N=((I=o.fontSize)==null?void 0:I.toString())??window.getComputedStyle(document.body).fontSize,P=parseInt(N,10)*5+"px";C.style.minWidth=P,C.style.maxWidth=P}else C.style.width="100%";A(C)}X(k,"setupImage"),setTimeout(()=>{C.complete&&k()}),C.addEventListener("error",k),C.addEventListener("load",k)})))}p=b.getBoundingClientRect(),_.attr("width",p.width),_.attr("height",p.height)}else{a.includes("font-weight: bolder")&&gn(f).selectAll("tspan").attr("font-weight",""),m=f.children.length;const b=f.children[0];(f.textContent===""||f.textContent.includes(">"))&&(b.textContent=h[0]+h.substring(1).replaceAll(">",">").replaceAll("<","<").trim(),h[1]===" "&&(b.textContent=b.textContent[0]+" "+b.textContent.substring(1))),b.textContent==="undefined"&&(b.textContent=""),p=f.getBBox()}return s.attr("transform","translate(0,"+(-p.height/(2*m)+r)+")"),p.height}X(Fie,"addText");async function KFn(e,t){var $,G;const r=nn(),a=r.class.padding??12,s=a,o=t.useHtmlLabels??nh(r.htmlLabels)??!0,u=t;u.annotations=u.annotations??[],u.members=u.members??[],u.methods=u.methods??[];const{shapeSvg:h,bbox:f}=await WFn(e,t,r,o,s),{labelStyles:p,nodeStyles:m}=Ia(t);t.labelStyle=p,t.cssStyles=u.styles||"";const b=(($=u.styles)==null?void 0:$.join(";"))||m||"";t.cssStyles||(t.cssStyles=b.replaceAll("!important","").split(";"));const _=u.members.length===0&&u.methods.length===0&&!((G=r.class)!=null&&G.hideEmptyMembersBox),w=Wa.svg(h),S=Ja(t,{});t.look!=="handDrawn"&&(S.roughness=0,S.fillStyle="solid");const C=f.width;let A=f.height;u.members.length===0&&u.methods.length===0?A+=s:u.members.length>0&&u.methods.length===0&&(A+=s*2);const k=-C/2,I=-A/2,N=w.rectangle(k-a,I-a-(_?a:u.members.length===0&&u.methods.length===0?-a/2:0),C+2*a,A+2*a+(_?a*2:u.members.length===0&&u.methods.length===0?-a:0),S),L=h.insert(()=>N,":first-child");L.attr("class","basic label-container");const P=L.node().getBBox();h.selectAll(".text").each((B,Z,z)=>{var ee;const Y=gn(z[Z]),W=Y.attr("transform");let Q=0;if(W){const ne=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(W);ne&&(Q=parseFloat(ne[2]))}let V=Q+I+a-(_?a:u.members.length===0&&u.methods.length===0?-a/2:0);o||(V-=4);let j=k;(Y.attr("class").includes("label-group")||Y.attr("class").includes("annotation-group"))&&(j=-((ee=Y.node())==null?void 0:ee.getBBox().width)/2||0,h.selectAll("text").each(function(te,ne,se){window.getComputedStyle(se[ne]).textAnchor==="middle"&&(j=0)})),Y.attr("transform",`translate(${j}, ${V})`)});const M=h.select(".annotation-group").node().getBBox().height-(_?a/2:0)||0,F=h.select(".label-group").node().getBBox().height-(_?a/2:0)||0,U=h.select(".members-group").node().getBBox().height-(_?a/2:0)||0;if(u.members.length>0||u.methods.length>0||_){const B=w.line(P.x,M+F+I+a,P.x+P.width,M+F+I+a,S);h.insert(()=>B).attr("class","divider").attr("style",b)}if(_||u.members.length>0||u.methods.length>0){const B=w.line(P.x,M+F+U+I+s*2+a,P.x+P.width,M+F+U+I+a+s*2,S);h.insert(()=>B).attr("class","divider").attr("style",b)}if(u.look!=="handDrawn"&&h.selectAll("path").attr("style",b),L.select(":nth-child(2)").attr("style",b),h.selectAll(".divider").select("path").attr("style",b),t.labelStyle?h.selectAll("span").attr("style",t.labelStyle):h.selectAll("span").attr("style",b),!o){const B=RegExp(/color\s*:\s*([^;]*)/),Z=B.exec(b);if(Z){const z=Z[0].replace("color","fill");h.selectAll("tspan").attr("style",z)}else if(p){const z=B.exec(p);if(z){const Y=z[0].replace("color","fill");h.selectAll("tspan").attr("style",Y)}}}return es(t,L),t.intersect=function(B){return Sa.rect(t,B)},h}X(KFn,"classBox");async function XFn(e,t){var M,F;const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const s=t,o=t,u=20,h=20,f="verifyMethod"in t,p=Ys(t),m=e.insert("g").attr("class",p).attr("id",t.domId??t.id);let b;f?b=await EC(m,`<<${s.type}>>`,0,t.labelStyle):b=await EC(m,"<<Element>>",0,t.labelStyle);let _=b;const w=await EC(m,s.name,_,t.labelStyle+"; font-weight: bold;");if(_+=w+h,f){const U=await EC(m,`${s.requirementId?`ID: ${s.requirementId}`:""}`,_,t.labelStyle);_+=U;const $=await EC(m,`${s.text?`Text: ${s.text}`:""}`,_,t.labelStyle);_+=$;const G=await EC(m,`${s.risk?`Risk: ${s.risk}`:""}`,_,t.labelStyle);_+=G,await EC(m,`${s.verifyMethod?`Verification: ${s.verifyMethod}`:""}`,_,t.labelStyle)}else{const U=await EC(m,`${o.type?`Type: ${o.type}`:""}`,_,t.labelStyle);_+=U,await EC(m,`${o.docRef?`Doc Ref: ${o.docRef}`:""}`,_,t.labelStyle)}const S=(((M=m.node())==null?void 0:M.getBBox().width)??200)+u,C=(((F=m.node())==null?void 0:F.getBBox().height)??200)+u,A=-S/2,k=-C/2,I=Wa.svg(m),N=Ja(t,{});t.look!=="handDrawn"&&(N.roughness=0,N.fillStyle="solid");const L=I.rectangle(A,k,S,C,N),P=m.insert(()=>L,":first-child");if(P.attr("class","basic label-container").attr("style",a),m.selectAll(".label").each((U,$,G)=>{const B=gn(G[$]),Z=B.attr("transform");let z=0,Y=0;if(Z){const j=RegExp(/translate\(([^,]+),([^)]+)\)/).exec(Z);j&&(z=parseFloat(j[1]),Y=parseFloat(j[2]))}const W=Y-C/2;let Q=A+u/2;($===0||$===1)&&(Q=z),B.attr("transform",`translate(${Q}, ${W+u})`)}),_>b+w+h){const U=I.line(A,k+b+w+h,A+S,k+b+w+h,N);m.insert(()=>U).attr("style",a)}return es(t,P),t.intersect=function(U){return Sa.rect(t,U)},m}X(XFn,"requirementBox");async function EC(e,t,r,a=""){if(t==="")return 0;const s=e.insert("g").attr("class","label").attr("style",a),o=nn(),u=o.htmlLabels??!0,h=await Yw(s,H0t(vA(t)),{width:nv(t,o)+50,classes:"markdown-node-label",useHtmlLabels:u,style:a},o);let f;if(u){const p=h.children[0],m=gn(h);f=p.getBoundingClientRect(),m.attr("width",f.width),m.attr("height",f.height)}else{const p=h.children[0];for(const m of p.children)m.textContent=m.textContent.replaceAll(">",">").replaceAll("<","<"),a&&m.setAttribute("style",a);f=h.getBBox(),f.height+=6}return s.attr("transform",`translate(${-f.width/2},${-f.height/2+r})`),f.height}X(EC,"addText");var Hpi=X(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 QFn(e,t,{config:r}){var Z,z;const{labelStyles:a,nodeStyles:s}=Ia(t);t.labelStyle=a||"";const o=10,u=t.width;t.width=(t.width??200)-10;const{shapeSvg:h,bbox:f,label:p}=await oo(e,t,Ys(t)),m=t.padding||10;let b="",_;"ticket"in t&&t.ticket&&((Z=r==null?void 0:r.kanban)!=null&&Z.ticketBaseUrl)&&(b=(z=r==null?void 0:r.kanban)==null?void 0:z.ticketBaseUrl.replace("#TICKET#",t.ticket),_=h.insert("svg:a",":first-child").attr("class","kanban-ticket-link").attr("xlink:href",b).attr("target","_blank"));const w={useHtmlLabels:t.useHtmlLabels,labelStyle:t.labelStyle||"",width:t.width,img:t.img,padding:t.padding||8,centerLabel:!1};let S,C;_?{label:S,bbox:C}=await Dtt(_,"ticket"in t&&t.ticket||"",w):{label:S,bbox:C}=await Dtt(h,"ticket"in t&&t.ticket||"",w);const{label:A,bbox:k}=await Dtt(h,"assigned"in t&&t.assigned||"",w);t.width=u;const I=10,N=(t==null?void 0:t.width)||0,L=Math.max(C.height,k.height)/2,P=Math.max(f.height+I*2,(t==null?void 0:t.height)||0)+L,M=-N/2,F=-P/2;p.attr("transform","translate("+(m-N/2)+", "+(-L-f.height/2)+")"),S.attr("transform","translate("+(m-N/2)+", "+(-L+f.height/2)+")"),A.attr("transform","translate("+(m+N/2-k.width-2*o)+", "+(-L+f.height/2)+")");let U;const{rx:$,ry:G}=t,{cssStyles:B}=t;if(t.look==="handDrawn"){const Y=Wa.svg(h),W=Ja(t,{}),Q=$||G?Y.path(B9(M,F,N,P,$||0),W):Y.rectangle(M,F,N,P,W);U=h.insert(()=>Q,":first-child"),U.attr("class","basic label-container").attr("style",B||null)}else{U=h.insert("rect",":first-child"),U.attr("class","basic label-container __APA__").attr("style",s).attr("rx",$??5).attr("ry",G??5).attr("x",M).attr("y",F).attr("width",N).attr("height",P);const Y="priority"in t&&t.priority;if(Y){const W=h.append("line"),Q=M+2,V=F+Math.floor(($??0)/2),j=F+P-Math.floor(($??0)/2);W.attr("x1",Q).attr("y1",V).attr("x2",Q).attr("y2",j).attr("stroke-width","4").attr("stroke",Hpi(Y))}}return es(t,U),t.height=P,t.intersect=function(Y){return Sa.rect(t,Y)},h}X(QFn,"kanbanItem");async function ZFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,halfPadding:u,label:h}=await oo(e,t,Ys(t)),f=o.width+10*u,p=o.height+8*u,m=.15*f,{cssStyles:b}=t,_=o.width+20,w=o.height+20,S=Math.max(f,_),C=Math.max(p,w);h.attr("transform",`translate(${-o.width/2}, ${-o.height/2})`);let A;const k=`M0 0 + a${m},${m} 1 0,0 ${S*.25},${-1*C*.1} + a${m},${m} 1 0,0 ${S*.25},0 + a${m},${m} 1 0,0 ${S*.25},0 + a${m},${m} 1 0,0 ${S*.25},${C*.1} + + a${m},${m} 1 0,0 ${S*.15},${C*.33} + a${m*.8},${m*.8} 1 0,0 0,${C*.34} + a${m},${m} 1 0,0 ${-1*S*.15},${C*.33} + + a${m},${m} 1 0,0 ${-1*S*.25},${C*.15} + a${m},${m} 1 0,0 ${-1*S*.25},0 + a${m},${m} 1 0,0 ${-1*S*.25},0 + a${m},${m} 1 0,0 ${-1*S*.25},${-1*C*.15} + + a${m},${m} 1 0,0 ${-1*S*.1},${-1*C*.33} + a${m*.8},${m*.8} 1 0,0 0,${-1*C*.34} + a${m},${m} 1 0,0 ${S*.1},${-1*C*.33} + H0 V0 Z`;if(t.look==="handDrawn"){const I=Wa.svg(s),N=Ja(t,{}),L=I.path(k,N);A=s.insert(()=>L,":first-child"),A.attr("class","basic label-container").attr("style",Tb(b))}else A=s.insert("path",":first-child").attr("class","basic label-container").attr("style",a).attr("d",k);return A.attr("transform",`translate(${-S/2}, ${-C/2})`),es(t,A),t.calcIntersect=function(I,N){return Sa.rect(I,N)},t.intersect=function(I){return it.info("Bang intersect",t,I),Sa.rect(t,I)},s}X(ZFn,"bang");async function JFn(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,halfPadding:u,label:h}=await oo(e,t,Ys(t)),f=o.width+2*u,p=o.height+2*u,m=.15*f,b=.25*f,_=.35*f,w=.2*f,{cssStyles:S}=t;let C;const A=`M0 0 + a${m},${m} 0 0,1 ${f*.25},${-1*f*.1} + a${_},${_} 1 0,1 ${f*.4},${-1*f*.1} + a${b},${b} 1 0,1 ${f*.35},${f*.2} + + a${m},${m} 1 0,1 ${f*.15},${p*.35} + a${w},${w} 1 0,1 ${-1*f*.15},${p*.65} + + a${b},${m} 1 0,1 ${-1*f*.25},${f*.15} + a${_},${_} 1 0,1 ${-1*f*.5},0 + a${m},${m} 1 0,1 ${-1*f*.25},${-1*f*.15} + + a${m},${m} 1 0,1 ${-1*f*.1},${-1*p*.35} + a${w},${w} 1 0,1 ${f*.1},${-1*p*.65} + H0 V0 Z`;if(t.look==="handDrawn"){const k=Wa.svg(s),I=Ja(t,{}),N=k.path(A,I);C=s.insert(()=>N,":first-child"),C.attr("class","basic label-container").attr("style",Tb(S))}else C=s.insert("path",":first-child").attr("class","basic label-container").attr("style",a).attr("d",A);return h.attr("transform",`translate(${-o.width/2}, ${-o.height/2})`),C.attr("transform",`translate(${-f/2}, ${-p/2})`),es(t,C),t.calcIntersect=function(k,I){return Sa.rect(k,I)},t.intersect=function(k){return it.info("Cloud intersect",t,k),Sa.rect(t,k)},s}X(JFn,"cloud");async function e$n(e,t){const{labelStyles:r,nodeStyles:a}=Ia(t);t.labelStyle=r;const{shapeSvg:s,bbox:o,halfPadding:u,label:h}=await oo(e,t,Ys(t)),f=o.width+8*u,p=o.height+2*u,m=5,b=` + M${-f/2} ${p/2-m} + v${-p+2*m} + q0,-${m} ${m},-${m} + h${f-2*m} + q${m},0 ${m},${m} + v${p-2*m} + q0,${m} -${m},${m} + h${-f+2*m} + q-${m},0 -${m},-${m} + Z + `,_=s.append("path").attr("id","node-"+t.id).attr("class","node-bkg node-"+t.type).attr("style",a).attr("d",b);return s.append("line").attr("class","node-line-").attr("x1",-f/2).attr("y1",p/2).attr("x2",f/2).attr("y2",p/2),h.attr("transform",`translate(${-o.width/2}, ${-o.height/2})`),s.append(()=>h.node()),es(t,_),t.calcIntersect=function(w,S){return Sa.rect(w,S)},t.intersect=function(w){return Sa.rect(t,w)},s}X(e$n,"defaultMindmapNode");async function t$n(e,t){const r={padding:t.padding??0};return tpt(e,t,r)}X(t$n,"mindmapCircle");var Vpi=[{semanticName:"Process",name:"Rectangle",shortName:"rect",description:"Standard process shape",aliases:["proc","process","rectangle"],internalAliases:["squareRect"],handler:OFn},{semanticName:"Event",name:"Rounded Rectangle",shortName:"rounded",description:"Represents an event",aliases:["event"],internalAliases:["roundedRect"],handler:RFn},{semanticName:"Terminal Point",name:"Stadium",shortName:"stadium",description:"Terminal point",aliases:["terminal","pill"],handler:LFn},{semanticName:"Subprocess",name:"Framed Rectangle",shortName:"fr-rect",description:"Subprocess",aliases:["subprocess","subproc","framed-rectangle","subroutine"],handler:BFn},{semanticName:"Database",name:"Cylinder",shortName:"cyl",description:"Database storage",aliases:["db","database","cylinder"],handler:nFn},{semanticName:"Start",name:"Circle",shortName:"circle",description:"Starting point",aliases:["circ"],handler:tpt},{semanticName:"Bang",name:"Bang",shortName:"bang",description:"Bang",aliases:["bang"],handler:ZFn},{semanticName:"Cloud",name:"Cloud",shortName:"cloud",description:"cloud",aliases:["cloud"],handler:JFn},{semanticName:"Decision",name:"Diamond",shortName:"diam",description:"Decision-making step",aliases:["decision","diamond","question"],handler:CFn},{semanticName:"Prepare Conditional",name:"Hexagon",shortName:"hex",description:"Preparation or condition step",aliases:["hexagon","prepare"],handler:cFn},{semanticName:"Data Input/Output",name:"Lean Right",shortName:"lean-r",description:"Represents input or output",aliases:["lean-right","in-out"],internalAliases:["lean_right"],handler:vFn},{semanticName:"Data Input/Output",name:"Lean Left",shortName:"lean-l",description:"Represents output or input",aliases:["lean-left","out-in"],internalAliases:["lean_left"],handler:yFn},{semanticName:"Priority Action",name:"Trapezoid Base Bottom",shortName:"trap-b",description:"Priority action",aliases:["priority","trapezoid-bottom","trapezoid"],handler:GFn},{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:mFn},{semanticName:"Stop",name:"Double Circle",shortName:"dbl-circ",description:"Represents a stop point",aliases:["double-circle"],internalAliases:["doublecircle"],handler:iFn},{semanticName:"Text Block",name:"Text Block",shortName:"text",description:"Text block",handler:UFn},{semanticName:"Card",name:"Notched Rectangle",shortName:"notch-rect",description:"Represents a card",aliases:["card","notched-rectangle"],handler:WBn},{semanticName:"Lined/Shaded Process",name:"Lined Rectangle",shortName:"lin-rect",description:"Lined process shape",aliases:["lined-rectangle","lined-process","lin-proc","shaded-process"],handler:IFn},{semanticName:"Start",name:"Small Circle",shortName:"sm-circ",description:"Small starting point",aliases:["start","small-circle"],internalAliases:["stateStart"],handler:PFn},{semanticName:"Stop",name:"Framed Circle",shortName:"fr-circ",description:"Stop point",aliases:["stop","framed-circle"],internalAliases:["stateEnd"],handler:MFn},{semanticName:"Fork/Join",name:"Filled Rectangle",shortName:"fork",description:"Fork or join in process flow",aliases:["join"],internalAliases:["forkJoin"],handler:oFn},{semanticName:"Collate",name:"Hourglass",shortName:"hourglass",description:"Represents a collate operation",aliases:["hourglass","collate"],handler:uFn},{semanticName:"Comment",name:"Curly Brace",shortName:"brace",description:"Adds a comment",aliases:["comment","brace-l"],handler:ZBn},{semanticName:"Comment Right",name:"Curly Brace",shortName:"brace-r",description:"Adds a comment",handler:JBn},{semanticName:"Comment with braces on both sides",name:"Curly Braces",shortName:"braces",description:"Adds a comment",handler:eFn},{semanticName:"Com Link",name:"Lightning Bolt",shortName:"bolt",description:"Communication link",aliases:["com-link","lightning-bolt"],handler:_Fn},{semanticName:"Document",name:"Document",shortName:"doc",description:"Represents a document",aliases:["doc","document"],handler:VFn},{semanticName:"Delay",name:"Half-Rounded Rectangle",shortName:"delay",description:"Represents a delay",aliases:["half-rounded-rectangle"],handler:lFn},{semanticName:"Direct Access Storage",name:"Horizontal Cylinder",shortName:"h-cyl",description:"Direct access storage",aliases:["das","horizontal-cylinder"],handler:zFn},{semanticName:"Disk Storage",name:"Lined Cylinder",shortName:"lin-cyl",description:"Disk storage",aliases:["disk","lined-cylinder"],handler:wFn},{semanticName:"Display",name:"Curved Trapezoid",shortName:"curv-trap",description:"Represents a display",aliases:["curved-trapezoid","display"],handler:tFn},{semanticName:"Divided Process",name:"Divided Rectangle",shortName:"div-rect",description:"Divided process shape",aliases:["div-proc","divided-rectangle","divided-process"],handler:rFn},{semanticName:"Extract",name:"Triangle",shortName:"tri",description:"Extraction process",aliases:["extract","triangle"],handler:HFn},{semanticName:"Internal Storage",name:"Window Pane",shortName:"win-pane",description:"Internal storage",aliases:["internal-storage","window-pane"],handler:jFn},{semanticName:"Junction",name:"Filled Circle",shortName:"f-circ",description:"Junction point",aliases:["junction","filled-circle"],handler:aFn},{semanticName:"Loop Limit",name:"Trapezoidal Pentagon",shortName:"notch-pent",description:"Loop limit step",aliases:["loop-limit","notched-pentagon"],handler:qFn},{semanticName:"Manual File",name:"Flipped Triangle",shortName:"flip-tri",description:"Manual file operation",aliases:["manual-file","flipped-triangle"],handler:sFn},{semanticName:"Manual Input",name:"Sloped Rectangle",shortName:"sl-rect",description:"Manual input step",aliases:["manual-input","sloped-rectangle"],handler:NFn},{semanticName:"Multi-Document",name:"Stacked Document",shortName:"docs",description:"Multiple documents",aliases:["documents","st-doc","stacked-document"],handler:SFn},{semanticName:"Multi-Process",name:"Stacked Rectangle",shortName:"st-rect",description:"Multiple processes",aliases:["procs","processes","stacked-rectangle"],handler:xFn},{semanticName:"Stored Data",name:"Bow Tie Rectangle",shortName:"bow-rect",description:"Stored data",aliases:["stored-data","bow-tie-rectangle"],handler:jBn},{semanticName:"Summary",name:"Crossed Circle",shortName:"cross-circ",description:"Summary",aliases:["summary","crossed-circle"],handler:QBn},{semanticName:"Tagged Document",name:"Tagged Document",shortName:"tag-doc",description:"Tagged document",aliases:["tag-doc","tagged-document"],handler:$Fn},{semanticName:"Tagged Process",name:"Tagged Rectangle",shortName:"tag-rect",description:"Tagged process",aliases:["tagged-rectangle","tag-proc","tagged-process"],handler:FFn},{semanticName:"Paper Tape",name:"Flag",shortName:"flag",description:"Paper tape",aliases:["paper-tape"],handler:YFn},{semanticName:"Odd",name:"Odd",shortName:"odd",description:"Odd shape",internalAliases:["rect_left_inv_arrow"],handler:AFn},{semanticName:"Lined Document",name:"Lined Document",shortName:"lin-doc",description:"Lined document",aliases:["lined-document"],handler:EFn}],Ypi=X(()=>{const t=[...Object.entries({state:DFn,choice:KBn,note:TFn,rectWithTitle:kFn,labelRect:bFn,iconSquare:pFn,iconCircle:dFn,icon:hFn,iconRounded:fFn,imageSquare:gFn,anchor:YBn,kanbanItem:QFn,mindmapCircle:t$n,defaultMindmapNode:e$n,classBox:KFn,erBox:npt,requirementBox:XFn}),...Vpi.flatMap(r=>[r.shortName,..."aliases"in r?r.aliases:[],..."internalAliases"in r?r.internalAliases:[]].map(s=>[s,r.handler]))];return Object.fromEntries(t)},"generateShapeMap"),n$n=Ypi();function r$n(e){return e in n$n}X(r$n,"isValidShape");var IAe=new Map;async function NAe(e,t,r){let a,s;t.shape==="rect"&&(t.rx&&t.ry?t.shape="roundedRect":t.shape="squareRect");const o=t.shape?n$n[t.shape]:void 0;if(!o)throw new Error(`No such shape: ${t.shape}. Please check your syntax.`);if(t.link){let u;r.config.securityLevel==="sandbox"?u="_top":t.linkTarget&&(u=t.linkTarget||"_blank"),a=e.insert("svg:a").attr("xlink:href",t.link).attr("target",u??null),s=await o(a,t,r)}else s=await o(e,t,r),a=s;return t.tooltip&&s.attr("title",t.tooltip),IAe.set(t.id,a),t.haveCallback&&a.attr("class",a.attr("class")+" clickable"),a}X(NAe,"insertNode");var jpi=X((e,t)=>{IAe.set(t.id,e)},"setNodeElem"),Wpi=X(()=>{IAe.clear()},"clear"),olt=X(e=>{const t=IAe.get(e.id);it.trace("Transforming node",e.diff,e,"translate("+(e.x-e.width/2-5)+", "+e.width/2+")");const r=8,a=e.diff||0;return e.clusterNode?t.attr("transform","translate("+(e.x+a-e.width/2)+", "+(e.y-e.height/2-r)+")"):t.attr("transform","translate("+e.x+", "+e.y+")"),a},"positionNode"),Kpi=X((e,t,r,a,s,o)=>{t.arrowTypeStart&&Ivn(e,"start",t.arrowTypeStart,r,a,s,o),t.arrowTypeEnd&&Ivn(e,"end",t.arrowTypeEnd,r,a,s,o)},"addEdgeMarkers"),Xpi={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}},Ivn=X((e,t,r,a,s,o,u)=>{var b;const h=Xpi[r];if(!h){it.warn(`Unknown arrow type: ${r}`);return}const f=h.type,m=`${s}_${o}-${f}${t==="start"?"Start":"End"}`;if(u&&u.trim()!==""){const _=u.replace(/[^\dA-Za-z]/g,"_"),w=`${m}_${_}`;if(!document.getElementById(w)){const S=document.getElementById(m);if(S){const C=S.cloneNode(!0);C.id=w,C.querySelectorAll("path, circle, line").forEach(k=>{k.setAttribute("stroke",u),h.fill&&k.setAttribute("fill",u)}),(b=S.parentNode)==null||b.appendChild(C)}}e.attr(`marker-${t}`,`url(${a}#${w})`)}else e.attr(`marker-${t}`,`url(${a}#${m})`)},"addEdgeMarker"),H4e=new Map,gm=new Map,Qpi=X(()=>{H4e.clear(),gm.clear()},"clear"),nwe=X(e=>e?e.reduce((r,a)=>r+";"+a,""):"","getLabelStyles"),i$n=X(async(e,t)=>{let r=nh(nn().flowchart.htmlLabels);const{labelStyles:a}=Ia(t);t.labelStyle=a;const s=await Yw(e,t.label,{style:t.labelStyle,useHtmlLabels:r,addSvgBackground:!0,isNode:!1});it.info("abc82",t,t.labelType);const o=e.insert("g").attr("class","edgeLabel"),u=o.insert("g").attr("class","label").attr("data-id",t.id);u.node().appendChild(s);let h=s.getBBox();if(r){const p=s.children[0],m=gn(s);h=p.getBoundingClientRect(),m.attr("width",h.width),m.attr("height",h.height)}u.attr("transform","translate("+-h.width/2+", "+-h.height/2+")"),H4e.set(t.id,o),t.width=h.width,t.height=h.height;let f;if(t.startLabelLeft){const p=await tF(t.startLabelLeft,nwe(t.labelStyle)),m=e.insert("g").attr("class","edgeTerminals"),b=m.insert("g").attr("class","inner");f=b.node().appendChild(p);const _=p.getBBox();b.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"),gm.get(t.id)||gm.set(t.id,{}),gm.get(t.id).startLeft=m,$ie(f,t.startLabelLeft)}if(t.startLabelRight){const p=await tF(t.startLabelRight,nwe(t.labelStyle)),m=e.insert("g").attr("class","edgeTerminals"),b=m.insert("g").attr("class","inner");f=m.node().appendChild(p),b.node().appendChild(p);const _=p.getBBox();b.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"),gm.get(t.id)||gm.set(t.id,{}),gm.get(t.id).startRight=m,$ie(f,t.startLabelRight)}if(t.endLabelLeft){const p=await tF(t.endLabelLeft,nwe(t.labelStyle)),m=e.insert("g").attr("class","edgeTerminals"),b=m.insert("g").attr("class","inner");f=b.node().appendChild(p);const _=p.getBBox();b.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"),m.node().appendChild(p),gm.get(t.id)||gm.set(t.id,{}),gm.get(t.id).endLeft=m,$ie(f,t.endLabelLeft)}if(t.endLabelRight){const p=await tF(t.endLabelRight,nwe(t.labelStyle)),m=e.insert("g").attr("class","edgeTerminals"),b=m.insert("g").attr("class","inner");f=b.node().appendChild(p);const _=p.getBBox();b.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"),m.node().appendChild(p),gm.get(t.id)||gm.set(t.id,{}),gm.get(t.id).endRight=m,$ie(f,t.endLabelRight)}return s},"insertEdgeLabel");function $ie(e,t){nn().flowchart.htmlLabels&&e&&(e.style.width=t.length*9+"px",e.style.height="12px")}X($ie,"setTerminalWidth");var a$n=X((e,t)=>{it.debug("Moving label abc88 ",e.id,e.label,H4e.get(e.id),t);let r=t.updatedPath?t.updatedPath:t.originalPath;const a=nn(),{subGraphTitleTotalMargin:s}=oce(a);if(e.label){const o=H4e.get(e.id);let u=e.x,h=e.y;if(r){const f=Vo.calcLabelPosition(r);it.debug("Moving label "+e.label+" from (",u,",",h,") to (",f.x,",",f.y,") abc88"),t.updatedPath&&(u=f.x,h=f.y)}o.attr("transform",`translate(${u}, ${h+s/2})`)}if(e.startLabelLeft){const o=gm.get(e.id).startLeft;let u=e.x,h=e.y;if(r){const f=Vo.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_left",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}if(e.startLabelRight){const o=gm.get(e.id).startRight;let u=e.x,h=e.y;if(r){const f=Vo.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_right",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}if(e.endLabelLeft){const o=gm.get(e.id).endLeft;let u=e.x,h=e.y;if(r){const f=Vo.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_left",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}if(e.endLabelRight){const o=gm.get(e.id).endRight;let u=e.x,h=e.y;if(r){const f=Vo.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_right",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}},"positionEdgeLabel"),Zpi=X((e,t)=>{const r=e.x,a=e.y,s=Math.abs(t.x-r),o=Math.abs(t.y-a),u=e.width/2,h=e.height/2;return s>=u||o>=h},"outsideNode"),Jpi=X((e,t,r)=>{it.debug(`intersection calc abc89: + outsidePoint: ${JSON.stringify(t)} + insidePoint : ${JSON.stringify(r)} + node : x:${e.x} y:${e.y} w:${e.width} h:${e.height}`);const a=e.x,s=e.y,o=Math.abs(a-r.x),u=e.width/2;let h=r.xMath.abs(a-t.x)*f){let b=r.y{it.warn("abc88 cutPathAtIntersect",e,t);let r=[],a=e[0],s=!1;return e.forEach(o=>{if(it.info("abc88 checking point",o,t),!Zpi(t,o)&&!s){const u=Jpi(t,a,o);it.debug("abc88 inside",o,a,u),it.debug("abc88 intersection",u,t);let h=!1;r.forEach(f=>{h=h||f.x===u.x&&f.y===u.y}),r.some(f=>f.x===u.x&&f.y===u.y)?it.warn("abc88 no intersect",u,r):r.push(u),s=!0}else it.warn("abc88 outside",o,a),a=o,s||r.push(o)}),it.debug("returning points",r),r},"cutPathAtIntersect");function s$n(e){const t=[],r=[];for(let a=1;a5&&Math.abs(o.y-s.y)>5||s.y===o.y&&o.x===u.x&&Math.abs(o.x-s.x)>5&&Math.abs(o.y-u.y)>5)&&(t.push(o),r.push(a))}return{cornerPoints:t,cornerPointPositions:r}}X(s$n,"extractCornerPoints");var Ovn=X(function(e,t,r){const a=t.x-e.x,s=t.y-e.y,o=Math.sqrt(a*a+s*s),u=r/o;return{x:t.x-u*a,y:t.y-u*s}},"findAdjacentPoint"),egi=X(function(e){const{cornerPointPositions:t}=s$n(e),r=[];for(let a=0;a10&&Math.abs(o.y-s.y)>=10){it.debug("Corner point fixing",Math.abs(o.x-s.x),Math.abs(o.y-s.y));const w=5;u.x===h.x?_={x:p<0?h.x-w+b:h.x+w-b,y:m<0?h.y-b:h.y+b}:_={x:p<0?h.x-b:h.x+b,y:m<0?h.y-w+b:h.y+w-b}}else it.debug("Corner point skipping fixing",Math.abs(o.x-s.x),Math.abs(o.y-s.y));r.push(_,f)}else r.push(e[a]);return r},"fixCorners"),tgi=X((e,t,r)=>{const a=e-t-r,s=2,o=2,u=s+o,h=Math.floor(a/u),f=Array(h).fill(`${s} ${o}`).join(" ");return`0 ${t} ${f} ${r}`},"generateDashArray"),o$n=X(function(e,t,r,a,s,o,u,h=!1){var Y;const{handDrawnSeed:f}=nn();let p=t.points,m=!1;const b=s;var _=o;const w=[];for(const W in t.cssCompiledStyles)R1t(W)||w.push(t.cssCompiledStyles[W]);it.debug("UIO intersect check",t.points,_.x,b.x),_.intersect&&b.intersect&&!h&&(p=p.slice(1,t.points.length-1),p.unshift(b.intersect(p[0])),it.debug("Last point UIO",t.start,"-->",t.end,p[p.length-1],_,_.intersect(p[p.length-1])),p.push(_.intersect(p[p.length-1])));const S=btoa(JSON.stringify(p));t.toCluster&&(it.info("to cluster abc88",r.get(t.toCluster)),p=Nvn(t.points,r.get(t.toCluster).node),m=!0),t.fromCluster&&(it.debug("from cluster abc88",r.get(t.fromCluster),JSON.stringify(p,null,2)),p=Nvn(p.reverse(),r.get(t.fromCluster).node).reverse(),m=!0);let C=p.filter(W=>!Number.isNaN(W.y));C=egi(C);let A=j3;switch(A=Cg,t.curve){case"linear":A=Cg;break;case"basis":A=j3;break;case"cardinal":A=h1t;break;case"bumpX":A=l1t;break;case"bumpY":A=c1t;break;case"catmullRom":A=g1t;break;case"monotoneX":A=m1t;break;case"monotoneY":A=b1t;break;case"natural":A=y1t;break;case"step":A=v1t;break;case"stepAfter":A=w1t;break;case"stepBefore":A=_1t;break;default:A=j3}const{x:k,y:I}=kPn(t),N=r_().x(k).y(I).curve(A);let L;switch(t.thickness){case"normal":L="edge-thickness-normal";break;case"thick":L="edge-thickness-thick";break;case"invisible":L="edge-thickness-invisible";break;default:L="edge-thickness-normal"}switch(t.pattern){case"solid":L+=" edge-pattern-solid";break;case"dotted":L+=" edge-pattern-dotted";break;case"dashed":L+=" edge-pattern-dashed";break;default:L+=" edge-pattern-solid"}let P,M=t.curve==="rounded"?l$n(c$n(C,t),5):N(C);const F=Array.isArray(t.style)?t.style:[t.style];let U=F.find(W=>W==null?void 0:W.startsWith("stroke:")),$=!1;if(t.look==="handDrawn"){const W=Wa.svg(e);Object.assign([],C);const Q=W.path(M,{roughness:.3,seed:f});L+=" transition",P=gn(Q).select("path").attr("id",t.id).attr("class"," "+L+(t.classes?" "+t.classes:"")).attr("style",F?F.reduce((j,ee)=>j+";"+ee,""):"");let V=P.attr("d");P.attr("d",V),e.node().appendChild(P.node())}else{const W=w.join(";"),Q=F?F.reduce((ie,ge)=>ie+ge+";",""):"";let V="";t.animate&&(V=" edge-animation-fast"),t.animation&&(V=" edge-animation-"+t.animation);const j=(W?W+";"+Q+";":Q)+";"+(F?F.reduce((ie,ge)=>ie+";"+ge,""):"");P=e.append("path").attr("d",M).attr("id",t.id).attr("class"," "+L+(t.classes?" "+t.classes:"")+(V??"")).attr("style",j),U=(Y=j.match(/stroke:([^;]+)/))==null?void 0:Y[1],$=t.animate===!0||!!t.animation||W.includes("animation");const ee=P.node(),te=typeof ee.getTotalLength=="function"?ee.getTotalLength():0,ne=Qyn[t.arrowTypeStart]||0,se=Qyn[t.arrowTypeEnd]||0;if(t.look==="neo"&&!$){const ge=`stroke-dasharray: ${t.pattern==="dotted"||t.pattern==="dashed"?tgi(te,ne,se):`0 ${ne} ${te-ne-se} ${se}`}; stroke-dashoffset: 0;`;P.attr("style",ge+P.attr("style"))}}P.attr("data-edge",!0),P.attr("data-et","edge"),P.attr("data-id",t.id),P.attr("data-points",S),t.showPoints&&C.forEach(W=>{e.append("circle").style("stroke","red").style("fill","red").attr("r",1).attr("cx",W.x).attr("cy",W.y)});let G="";(nn().flowchart.arrowMarkerAbsolute||nn().state.arrowMarkerAbsolute)&&(G=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,G=G.replace(/\(/g,"\\(").replace(/\)/g,"\\)")),it.info("arrowTypeStart",t.arrowTypeStart),it.info("arrowTypeEnd",t.arrowTypeEnd),Kpi(P,t,G,u,a,U);const B=Math.floor(p.length/2),Z=p[B];Vo.isLabelCoordinateInPath(Z,P.attr("d"))||(m=!0);let z={};return m&&(z.updatedPath=p),z.originalPath=t.points,z},"insertEdge");function l$n(e,t){if(e.length<2)return"";let r="";const a=e.length,s=1e-5;for(let o=0;o({...s}));if(e.length>=2&&bb[t.arrowTypeStart]){const s=bb[t.arrowTypeStart],o=e[0],u=e[1],{angle:h}=llt(o,u),f=s*Math.cos(h),p=s*Math.sin(h);r[0].x=o.x+f,r[0].y=o.y+p}const a=e.length;if(a>=2&&bb[t.arrowTypeEnd]){const s=bb[t.arrowTypeEnd],o=e[a-1],u=e[a-2],{angle:h}=llt(u,o),f=s*Math.cos(h),p=s*Math.sin(h);r[a-1].x=o.x-f,r[a-1].y=o.y-p}return r}X(c$n,"applyMarkerOffsetsToPoints");var ngi=X((e,t,r,a)=>{t.forEach(s=>{ygi[s](e,r,a)})},"insertMarkers"),rgi=X((e,t,r)=>{it.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"),igi=X((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"),agi=X((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"),sgi=X((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"),ogi=X((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("stroke","black").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("stroke","black").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6)},"lollipop"),lgi=X((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"),cgi=X((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"),ugi=X((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"),hgi=X((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"),dgi=X((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"),fgi=X((e,t,r)=>{const a=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");a.append("circle").attr("fill","white").attr("cx",21).attr("cy",9).attr("r",6),a.append("path").attr("d","M9,0 L9,18");const s=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");s.append("circle").attr("fill","white").attr("cx",9).attr("cy",9).attr("r",6),s.append("path").attr("d","M21,0 L21,18")},"zero_or_one"),pgi=X((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"),ggi=X((e,t,r)=>{const a=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");a.append("circle").attr("fill","white").attr("cx",48).attr("cy",18).attr("r",6),a.append("path").attr("d","M0,18 Q18,0 36,18 Q18,36 0,18");const s=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");s.append("circle").attr("fill","white").attr("cx",9).attr("cy",18).attr("r",6),s.append("path").attr("d","M21,18 Q39,0 57,18 Q39,36 21,18")},"zero_or_more"),mgi=X((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 + L20,10 + M20,10 + L0,20`)},"requirement_arrow"),bgi=X((e,t,r)=>{const a=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");a.append("circle").attr("cx",10).attr("cy",10).attr("r",9).attr("fill","none"),a.append("line").attr("x1",1).attr("x2",19).attr("y1",10).attr("y2",10),a.append("line").attr("y1",1).attr("y2",19).attr("x1",10).attr("x2",10)},"requirement_contains"),ygi={extension:rgi,composition:igi,aggregation:agi,dependency:sgi,lollipop:ogi,point:lgi,circle:cgi,cross:ugi,barb:hgi,only_one:dgi,zero_or_one:fgi,one_or_more:pgi,zero_or_more:ggi,requirement_arrow:mgi,requirement_contains:bgi},u$n=ngi,vgi={common:Ti,getConfig:$c,insertCluster:ept,insertEdge:o$n,insertEdgeLabel:i$n,insertMarkers:u$n,insertNode:NAe,interpolateToCurve:M1t,labelHelper:oo,log:it,positionEdgeLabel:a$n},Toe={},h$n=X(e=>{for(const t of e)Toe[t.name]=t},"registerLayoutLoaders"),_gi=X(()=>{h$n([{name:"dagre",loader:X(async()=>await ea(()=>Promise.resolve().then(()=>I6i),void 0),"loader")},{name:"cose-bilkent",loader:X(async()=>await ea(()=>Promise.resolve().then(()=>d9i),void 0),"loader")}])},"registerDefaultLayoutLoaders");_gi();var $W=X(async(e,t)=>{if(!(e.layoutAlgorithm in Toe))throw new Error(`Unknown layout algorithm: ${e.layoutAlgorithm}`);const r=Toe[e.layoutAlgorithm];return(await r.loader()).render(e,t,vgi,{algorithm:r.algorithm})},"render"),hce=X((e="",{fallback:t="dagre"}={})=>{if(e in Toe)return e;if(t in Toe)return it.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"),wgi=MPn(Object.keys,Object),Egi=Object.prototype,xgi=Egi.hasOwnProperty;function d$n(e){if(!bAe(e))return wgi(e);var t=[];for(var r in Object(e))xgi.call(e,r)&&r!="constructor"&&t.push(r);return t}var clt=k$(OA,"DataView"),ult=k$(OA,"Promise"),QV=k$(OA,"Set"),hlt=k$(OA,"WeakMap"),Lvn="[object Map]",Sgi="[object Object]",Dvn="[object Promise]",Mvn="[object Set]",Pvn="[object WeakMap]",Bvn="[object DataView]",Tgi=A$(clt),Cgi=A$(Eoe),Agi=A$(ult),kgi=A$(QV),Rgi=A$(hlt),Qx=C$;(clt&&Qx(new clt(new ArrayBuffer(1)))!=Bvn||Eoe&&Qx(new Eoe)!=Lvn||ult&&Qx(ult.resolve())!=Dvn||QV&&Qx(new QV)!=Mvn||hlt&&Qx(new hlt)!=Pvn)&&(Qx=function(e){var t=C$(e),r=t==Sgi?e.constructor:void 0,a=r?A$(r):"";if(a)switch(a){case Tgi:return Bvn;case Cgi:return Lvn;case Agi:return Dvn;case kgi:return Mvn;case Rgi:return Pvn}return t});var Igi="[object Map]",Ngi="[object Set]",Ogi=Object.prototype,Lgi=Ogi.hasOwnProperty;function uA(e){if(e==null)return!0;if(P9(e)&&(Z0(e)||typeof e=="string"||typeof e.splice=="function"||Mj(e)||vAe(e)||Dj(e)))return!e.length;var t=Qx(e);if(t==Igi||t==Ngi)return!e.size;if(bAe(e))return!d$n(e).length;for(var r in e)if(Lgi.call(e,r))return!1;return!0}var f$n="c4",Dgi=X(e=>/^\s*C4Context|C4Container|C4Component|C4Dynamic|C4Deployment/.test(e),"detector"),Mgi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>lLi);return{diagram:t}},void 0);return{id:f$n,diagram:e}},"loader"),Pgi={id:f$n,detector:Dgi,loader:Mgi},Bgi=Pgi,p$n="flowchart",Fgi=X((e,t)=>{var r,a;return((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="dagre-wrapper"||((a=t==null?void 0:t.flowchart)==null?void 0:a.defaultRenderer)==="elk"?!1:/^\s*graph/.test(e)},"detector"),$gi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>qgt);return{diagram:t}},void 0);return{id:p$n,diagram:e}},"loader"),Ugi={id:p$n,detector:Fgi,loader:$gi},zgi=Ugi,g$n="flowchart-v2",Ggi=X((e,t)=>{var r,a,s;return((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="dagre-d3"?!1:(((a=t==null?void 0:t.flowchart)==null?void 0:a.defaultRenderer)==="elk"&&(t.layout="elk"),/^\s*graph/.test(e)&&((s=t==null?void 0:t.flowchart)==null?void 0:s.defaultRenderer)==="dagre-wrapper"?!0:/^\s*flowchart/.test(e))},"detector"),qgi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>qgt);return{diagram:t}},void 0);return{id:g$n,diagram:e}},"loader"),Hgi={id:g$n,detector:Ggi,loader:qgi},Vgi=Hgi,m$n="er",Ygi=X(e=>/^\s*erDiagram/.test(e),"detector"),jgi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>kLi);return{diagram:t}},void 0);return{id:m$n,diagram:e}},"loader"),Wgi={id:m$n,detector:Ygi,loader:jgi},Kgi=Wgi,b$n="gitGraph",Xgi=X(e=>/^\s*gitGraph/.test(e),"detector"),Qgi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>wYi);return{diagram:t}},void 0);return{id:b$n,diagram:e}},"loader"),Zgi={id:b$n,detector:Xgi,loader:Qgi},Jgi=Zgi,y$n="gantt",emi=X(e=>/^\s*gantt/.test(e),"detector"),tmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>gji);return{diagram:t}},void 0);return{id:y$n,diagram:e}},"loader"),nmi={id:y$n,detector:emi,loader:tmi},rmi=nmi,v$n="info",imi=X(e=>/^\s*info/.test(e),"detector"),ami=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>xji);return{diagram:t}},void 0);return{id:v$n,diagram:e}},"loader"),smi={id:v$n,detector:imi,loader:ami},_$n="pie",omi=X(e=>/^\s*pie/.test(e),"detector"),lmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Uji);return{diagram:t}},void 0);return{id:_$n,diagram:e}},"loader"),cmi={id:_$n,detector:omi,loader:lmi},w$n="quadrantChart",umi=X(e=>/^\s*quadrantChart/.test(e),"detector"),hmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Kji);return{diagram:t}},void 0);return{id:w$n,diagram:e}},"loader"),dmi={id:w$n,detector:umi,loader:hmi},fmi=dmi,E$n="xychart",pmi=X(e=>/^\s*xychart(-beta)?/.test(e),"detector"),gmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>uWi);return{diagram:t}},void 0);return{id:E$n,diagram:e}},"loader"),mmi={id:E$n,detector:pmi,loader:gmi},bmi=mmi,x$n="requirement",ymi=X(e=>/^\s*requirement(Diagram)?/.test(e),"detector"),vmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>bWi);return{diagram:t}},void 0);return{id:x$n,diagram:e}},"loader"),_mi={id:x$n,detector:ymi,loader:vmi},wmi=_mi,S$n="sequence",Emi=X(e=>/^\s*sequenceDiagram/.test(e),"detector"),xmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>iKi);return{diagram:t}},void 0);return{id:S$n,diagram:e}},"loader"),Smi={id:S$n,detector:Emi,loader:xmi},Tmi=Smi,T$n="class",Cmi=X((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"),Ami=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>uKi);return{diagram:t}},void 0);return{id:T$n,diagram:e}},"loader"),kmi={id:T$n,detector:Cmi,loader:Ami},Rmi=kmi,C$n="classDiagram",Imi=X((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"),Nmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>dKi);return{diagram:t}},void 0);return{id:C$n,diagram:e}},"loader"),Omi={id:C$n,detector:Imi,loader:Nmi},Lmi=Omi,A$n="state",Dmi=X((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"),Mmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>tXi);return{diagram:t}},void 0);return{id:A$n,diagram:e}},"loader"),Pmi={id:A$n,detector:Dmi,loader:Mmi},Bmi=Pmi,k$n="stateDiagram",Fmi=X((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"),$mi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>rXi);return{diagram:t}},void 0);return{id:k$n,diagram:e}},"loader"),Umi={id:k$n,detector:Fmi,loader:$mi},zmi=Umi,R$n="journey",Gmi=X(e=>/^\s*journey/.test(e),"detector"),qmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>TXi);return{diagram:t}},void 0);return{id:R$n,diagram:e}},"loader"),Hmi={id:R$n,detector:Gmi,loader:qmi},Vmi=Hmi,Ymi=X((e,t,r)=>{it.debug(`rendering svg for syntax error +`);const a=bR(t),s=a.append("g");a.attr("viewBox","0 0 2412 512"),yv(a,100,512,!0),s.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"),s.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"),s.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"),s.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"),s.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"),s.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"),s.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"),s.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"),I$n={draw:Ymi},jmi=I$n,Wmi={db:{},renderer:I$n,parser:{parse:X(()=>{},"parse")}},Kmi=Wmi,N$n="flowchart-elk",Xmi=X((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"),Qmi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>qgt);return{diagram:t}},void 0);return{id:N$n,diagram:e}},"loader"),Zmi={id:N$n,detector:Xmi,loader:Qmi},Jmi=Zmi,O$n="timeline",ebi=X(e=>/^\s*timeline/.test(e),"detector"),tbi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>jXi);return{diagram:t}},void 0);return{id:O$n,diagram:e}},"loader"),nbi={id:O$n,detector:ebi,loader:tbi},rbi=nbi,L$n="mindmap",ibi=X(e=>/^\s*mindmap/.test(e),"detector"),abi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>oQi);return{diagram:t}},void 0);return{id:L$n,diagram:e}},"loader"),sbi={id:L$n,detector:ibi,loader:abi},obi=sbi,D$n="kanban",lbi=X(e=>/^\s*kanban/.test(e),"detector"),cbi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>AQi);return{diagram:t}},void 0);return{id:D$n,diagram:e}},"loader"),ubi={id:D$n,detector:lbi,loader:cbi},hbi=ubi,M$n="sankey",dbi=X(e=>/^\s*sankey(-beta)?/.test(e),"detector"),fbi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>sZi);return{diagram:t}},void 0);return{id:M$n,diagram:e}},"loader"),pbi={id:M$n,detector:dbi,loader:fbi},gbi=pbi,P$n="packet",mbi=X(e=>/^\s*packet(-beta)?/.test(e),"detector"),bbi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>bZi);return{diagram:t}},void 0);return{id:P$n,diagram:e}},"loader"),ybi={id:P$n,detector:mbi,loader:bbi},B$n="radar",vbi=X(e=>/^\s*radar-beta/.test(e),"detector"),_bi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>FZi);return{diagram:t}},void 0);return{id:B$n,diagram:e}},"loader"),wbi={id:B$n,detector:vbi,loader:_bi},F$n="block",Ebi=X(e=>/^\s*block(-beta)?/.test(e),"detector"),xbi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>uea);return{diagram:t}},void 0);return{id:F$n,diagram:e}},"loader"),Sbi={id:F$n,detector:Ebi,loader:xbi},Tbi=Sbi,$$n="architecture",Cbi=X(e=>/^\s*architecture/.test(e),"detector"),Abi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Dea);return{diagram:t}},void 0);return{id:$$n,diagram:e}},"loader"),kbi={id:$$n,detector:Cbi,loader:Abi},Rbi=kbi,U$n="treemap",Ibi=X(e=>/^\s*treemap/.test(e),"detector"),Nbi=X(async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Vea);return{diagram:t}},void 0);return{id:U$n,diagram:e}},"loader"),Obi={id:U$n,detector:Ibi,loader:Nbi},Fvn=!1,OAe=X(()=>{Fvn||(Fvn=!0,l4e("error",Kmi,e=>e.toLowerCase().trim()==="error"),l4e("---",{db:{clear:X(()=>{},"clear")},styles:{},renderer:{draw:X(()=>{},"draw")},parser:{parse:X(()=>{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:X(()=>null,"init")},e=>e.toLowerCase().trimStart().startsWith("---")),pot(Jmi,obi,Rbi),pot(Bgi,hbi,Lmi,Rmi,Kgi,rmi,smi,cmi,wmi,Tmi,Vgi,zgi,rbi,Jgi,zmi,Bmi,Vmi,fmi,gbi,ybi,bmi,Tbi,wbi,Obi))},"addDiagrams"),Lbi=X(async()=>{it.debug("Loading registered diagrams");const t=(await Promise.allSettled(Object.entries(IF).map(async([r,{detector:a,loader:s}])=>{if(s)try{vot(r)}catch{try{const{diagram:o,id:u}=await s();l4e(u,o,a)}catch(o){throw it.error(`Failed to load external diagram with key ${r}. Removing from detectors.`),delete IF[r],o}}}))).filter(r=>r.status==="rejected");if(t.length>0){it.error(`Failed to load ${t.length} external diagrams`);for(const r of t)it.error(r);throw new Error(`Failed to load ${t.length} external diagrams`)}},"loadRegisteredDiagrams"),Dbi="graphics-document document";function z$n(e,t){e.attr("role",Dbi),t!==""&&e.attr("aria-roledescription",t)}X(z$n,"setA11yDiagramInfo");function G$n(e,t,r,a){if(e.insert!==void 0){if(r){const s=`chart-desc-${a}`;e.attr("aria-describedby",s),e.insert("desc",":first-child").attr("id",s).text(r)}if(t){const s=`chart-title-${a}`;e.attr("aria-labelledby",s),e.insert("title",":first-child").attr("id",s).text(t)}}}X(G$n,"addSVGa11yTitleDescription");var mF,dlt=(mF=class{constructor(t,r,a,s,o){this.type=t,this.text=r,this.db=a,this.parser=s,this.renderer=o}static async fromText(t,r={}){var p,m;const a=$c(),s=F0t(t,a);t=t1i(t)+` +`;try{vot(s)}catch{const b=vii(s);if(!b)throw new fLn(`Diagram ${s} not found.`);const{id:_,diagram:w}=await b();l4e(_,w)}const{db:o,parser:u,renderer:h,init:f}=vot(s);return u.parser&&(u.parser.yy=o),(p=o.clear)==null||p.call(o),f==null||f(a),r.title&&((m=o.setDiagramTitle)==null||m.call(o,r.title)),await u.parse(t),new mF(s,t,o,u,h)}async render(t,r){await this.renderer.draw(this.text,t,r,this)}getParser(){return this.parser}getType(){return this.type}},X(mF,"Diagram"),mF),$vn=[],Mbi=X(()=>{$vn.forEach(e=>{e()}),$vn=[]},"attachFunctions"),Pbi=X(e=>e.replace(/^\s*%%(?!{)[^\n]+\n?/gm,"").trimStart(),"cleanupComments");function q$n(e){const t=e.match(dLn);if(!t)return{text:e,metadata:{}};let r=fAe(t[1],{schema:dAe})??{};r=typeof r=="object"&&!Array.isArray(r)?r:{};const a={};return r.displayMode&&(a.displayMode=r.displayMode.toString()),r.title&&(a.title=r.title.toString()),r.config&&(a.config=r.config),{text:e.slice(t[0].length),metadata:a}}X(q$n,"extractFrontMatter");var Bbi=X(e=>e.replace(/\r\n?/g,` +`).replace(/<(\w+)([^>]*)>/g,(t,r,a)=>"<"+r+a.replace(/="([^"]*)"/g,"='$1'")+">"),"cleanupText"),Fbi=X(e=>{const{text:t,metadata:r}=q$n(e),{displayMode:a,title:s,config:o={}}=r;return a&&(o.gantt||(o.gantt={}),o.gantt.displayMode=a),{title:s,config:o,text:t}},"processFrontmatter"),$bi=X(e=>{const t=Vo.detectInit(e)??{},r=Vo.detectDirective(e,"wrap");return Array.isArray(r)?t.wrap=r.some(({type:a})=>a==="wrap"):(r==null?void 0:r.type)==="wrap"&&(t.wrap=!0),{text:V0i(e),directive:t}},"processDirectives");function rpt(e){const t=Bbi(e),r=Fbi(t),a=$bi(r.text),s=cv(r.config,a.directive);return e=Pbi(a.text),{code:e,title:r.title,config:s}}X(rpt,"preprocessDiagram");function H$n(e){const t=new TextEncoder().encode(e),r=Array.from(t,a=>String.fromCodePoint(a)).join("");return btoa(r)}X(H$n,"toBase64");var Ubi=5e4,zbi="graph TB;a[Maximum text size in diagram exceeded];style a fill:#faa",Gbi="sandbox",qbi="loose",Hbi="http://www.w3.org/2000/svg",Vbi="http://www.w3.org/1999/xlink",Ybi="http://www.w3.org/1999/xhtml",jbi="100%",Wbi="100%",Kbi="border:0;margin:0;",Xbi="margin:0",Qbi="allow-top-navigation-by-user-activation allow-popups",Zbi='The "iframe" tag is not supported by your browser.',Jbi=["foreignobject"],eyi=["dominant-baseline"];function ipt(e){const t=rpt(e);return s4e(),Dii(t.config??{}),t}X(ipt,"processAndSetConfigs");async function V$n(e,t){OAe();try{const{code:r,config:a}=ipt(e);return{diagramType:(await j$n(r)).type,config:a}}catch(r){if(t!=null&&t.suppressErrors)return!1;throw r}}X(V$n,"parse");var Uvn=X((e,t,r=[])=>` +.${e} ${t} { ${r.join(" !important; ")} !important; }`,"cssImportantStyles"),tyi=X((e,t=new Map)=>{var a;let r="";if(e.themeCSS!==void 0&&(r+=` +${e.themeCSS}`),e.fontFamily!==void 0&&(r+=` +:root { --mermaid-font-family: ${e.fontFamily}}`),e.altFontFamily!==void 0&&(r+=` +:root { --mermaid-alt-font-family: ${e.altFontFamily}}`),t instanceof Map){const h=e.htmlLabels??((a=e.flowchart)==null?void 0:a.htmlLabels)?["> *","span"]:["rect","polygon","ellipse","circle","path"];t.forEach(f=>{uA(f.styles)||h.forEach(p=>{r+=Uvn(f.id,p,f.styles)}),uA(f.textStyles)||(r+=Uvn(f.id,"tspan",((f==null?void 0:f.textStyles)||[]).map(p=>p.replace("color","fill"))))})}return r},"createCssStyles"),nyi=X((e,t,r,a)=>{const s=tyi(e,r),o=Jii(t,s,e.themeVariables);return Gse(RAn(`${a}{${o}}`),NAn)},"createUserStyles"),ryi=X((e="",t,r)=>{let a=e;return!r&&!t&&(a=a.replace(/marker-end="url\([\d+./:=?A-Za-z-]*?#/g,'marker-end="url(#')),a=vA(a),a=a.replace(/
    /g,"
    "),a},"cleanUpSvgCode"),iyi=X((e="",t)=>{var s,o;const r=(o=(s=t==null?void 0:t.viewBox)==null?void 0:s.baseVal)!=null&&o.height?t.viewBox.baseVal.height+"px":Wbi,a=H$n(`${e}`);return``},"putIntoIFrame"),zvn=X((e,t,r,a,s)=>{const o=e.append("div");o.attr("id",r),a&&o.attr("style",a);const u=o.append("svg").attr("id",t).attr("width","100%").attr("xmlns",Hbi);return s&&u.attr("xmlns:xlink",s),u.append("g"),e},"appendDivSvgG");function flt(e,t){return e.append("iframe").attr("id",t).attr("style","width: 100%; height: 100%;").attr("sandbox","")}X(flt,"sandboxedIframe");var ayi=X((e,t,r,a)=>{var s,o,u;(s=e.getElementById(t))==null||s.remove(),(o=e.getElementById(r))==null||o.remove(),(u=e.getElementById(a))==null||u.remove()},"removeExistingElements"),syi=X(async function(e,t,r){var Z,z,Y,W,Q,V;OAe();const a=ipt(t);t=a.code;const s=$c();it.debug(s),t.length>((s==null?void 0:s.maxTextSize)??Ubi)&&(t=zbi);const o="#"+e,u="i"+e,h="#"+u,f="d"+e,p="#"+f,m=X(()=>{const ee=gn(_?h:p).node();ee&&"remove"in ee&&ee.remove()},"removeTempElements");let b=gn("body");const _=s.securityLevel===Gbi,w=s.securityLevel===qbi,S=s.fontFamily;if(r!==void 0){if(r&&(r.innerHTML=""),_){const j=flt(gn(r),u);b=gn(j.nodes()[0].contentDocument.body),b.node().style.margin=0}else b=gn(r);zvn(b,e,f,`font-family: ${S}`,Vbi)}else{if(ayi(document,e,f,u),_){const j=flt(gn("body"),u);b=gn(j.nodes()[0].contentDocument.body),b.node().style.margin=0}else b=gn("body");zvn(b,e,f)}let C,A;try{C=await dlt.fromText(t,{title:a.title})}catch(j){if(s.suppressErrorRendering)throw m(),j;C=await dlt.fromText("error"),A=j}const k=b.select(p).node(),I=C.type,N=k.firstChild,L=N.firstChild,P=(z=(Z=C.renderer).getClasses)==null?void 0:z.call(Z,t,C),M=nyi(s,I,P,o),F=document.createElement("style");F.innerHTML=M,N.insertBefore(F,L);try{await C.renderer.draw(t,e,fot.version,C)}catch(j){throw s.suppressErrorRendering?m():jmi.draw(t,e,fot.version),j}const U=b.select(`${p} svg`),$=(W=(Y=C.db).getAccTitle)==null?void 0:W.call(Y),G=(V=(Q=C.db).getAccDescription)==null?void 0:V.call(Q);W$n(I,U,$,G),b.select(`[id="${e}"]`).selectAll("foreignobject > *").attr("xmlns",Ybi);let B=b.select(p).node().innerHTML;if(it.debug("config.arrowMarkerAbsolute",s.arrowMarkerAbsolute),B=ryi(B,_,nh(s.arrowMarkerAbsolute)),_){const j=b.select(p+" svg").node();B=iyi(B,j)}else w||(B=Sj.sanitize(B,{ADD_TAGS:Jbi,ADD_ATTR:eyi,HTML_INTEGRATION_POINTS:{foreignobject:!0}}));if(Mbi(),A)throw A;return m(),{diagramType:I,svg:B,bindFunctions:C.db.bindFunctions}},"render");function Y$n(e={}){var a;const t=W0({},e);t!=null&&t.fontFamily&&!((a=t.themeVariables)!=null&&a.fontFamily)&&(t.themeVariables||(t.themeVariables={}),t.themeVariables.fontFamily=t.fontFamily),Oii(t),t!=null&&t.theme&&t.theme in $7?t.themeVariables=$7[t.theme].getThemeVariables(t.themeVariables):t&&(t.themeVariables=$7.default.getThemeVariables(t.themeVariables));const r=typeof t=="object"?Nii(t):bLn();B0t(r.logLevel),OAe()}X(Y$n,"initialize");var j$n=X((e,t={})=>{const{code:r}=rpt(e);return dlt.fromText(r,t)},"getDiagramFromText");function W$n(e,t,r,a){z$n(t,e),G$n(t,r,a,t.attr("id"))}X(W$n,"addA11yInfo");var zF=Object.freeze({render:syi,parse:V$n,getDiagramFromText:j$n,initialize:Y$n,getConfig:$c,setConfig:yLn,getSiteConfig:bLn,updateSiteConfig:Lii,reset:X(()=>{s4e()},"reset"),globalReset:X(()=>{s4e(Tj)},"globalReset"),defaultConfig:Tj});B0t($c().logLevel);s4e($c());var oyi=X((e,t,r)=>{it.warn(e),U1t(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"),K$n=X(async function(e={querySelector:".mermaid"}){try{await lyi(e)}catch(t){if(U1t(t)&&it.error(t.str),Mw.parseError&&Mw.parseError(t),!e.suppressErrors)throw it.error("Use the suppressErrors option to suppress these errors"),t}},"run"),lyi=X(async function({postRenderCallback:e,querySelector:t,nodes:r}={querySelector:".mermaid"}){const a=zF.getConfig();it.debug(`${e?"":"No "}Callback function found`);let s;if(r)s=r;else if(t)s=document.querySelectorAll(t);else throw new Error("Nodes and querySelector are both undefined");it.debug(`Found ${s.length} diagrams`),(a==null?void 0:a.startOnLoad)!==void 0&&(it.debug("Start On Load: "+(a==null?void 0:a.startOnLoad)),zF.updateSiteConfig({startOnLoad:a==null?void 0:a.startOnLoad}));const o=new Vo.InitIDGenerator(a.deterministicIds,a.deterministicIDSeed);let u;const h=[];for(const f of Array.from(s)){if(it.info("Rendering diagram: "+f.id),f.getAttribute("data-processed"))continue;f.setAttribute("data-processed","true");const p=`mermaid-${o.next()}`;u=f.innerHTML,u=TAe(Vo.entityDecode(u)).trim().replace(//gi,"
    ");const m=Vo.detectInit(u);m&&it.debug("Detected early reinit: ",m);try{const{svg:b,bindFunctions:_}=await J$n(p,u,f);f.innerHTML=b,e&&await e(p),_&&_(f)}catch(b){oyi(b,h,Mw.parseError)}}if(h.length>0)throw h[0]},"runThrowsErrors"),X$n=X(function(e){zF.initialize(e)},"initialize"),cyi=X(async function(e,t,r){it.warn("mermaid.init is deprecated. Please use run instead."),e&&X$n(e);const a={postRenderCallback:r,querySelector:".mermaid"};typeof t=="string"?a.querySelector=t:t&&(t instanceof HTMLElement?a.nodes=[t]:a.nodes=t),await K$n(a)},"init"),uyi=X(async(e,{lazyLoad:t=!0}={})=>{OAe(),pot(...e),t===!1&&await Lbi()},"registerExternalDiagrams"),Q$n=X(function(){if(Mw.startOnLoad){const{startOnLoad:e}=zF.getConfig();e&&Mw.run().catch(t=>it.error("Mermaid failed to initialize",t))}},"contentLoaded");typeof document<"u"&&window.addEventListener("load",Q$n,!1);var hyi=X(function(e){Mw.parseError=e},"setParseErrorHandler"),V4e=[],Mtt=!1,Z$n=X(async()=>{if(!Mtt){for(Mtt=!0;V4e.length>0;){const e=V4e.shift();if(e)try{await e()}catch(t){it.error("Error executing queue",t)}}Mtt=!1}},"executeQueue"),dyi=X(async(e,t)=>new Promise((r,a)=>{const s=X(()=>new Promise((o,u)=>{zF.parse(e,t).then(h=>{o(h),r(h)},h=>{var f;it.error("Error parsing",h),(f=Mw.parseError)==null||f.call(Mw,h),u(h),a(h)})}),"performCall");V4e.push(s),Z$n().catch(a)}),"parse"),J$n=X((e,t,r)=>new Promise((a,s)=>{const o=X(()=>new Promise((u,h)=>{zF.render(e,t,r).then(f=>{u(f),a(f)},f=>{var p;it.error("Error parsing",f),(p=Mw.parseError)==null||p.call(Mw,f),h(f),s(f)})}),"performCall");V4e.push(o),Z$n().catch(s)}),"render"),fyi=X(()=>Object.keys(IF).map(e=>({id:e})),"getRegisteredDiagramsMetadata"),Mw={startOnLoad:!0,mermaidAPI:zF,parse:dyi,render:J$n,init:cyi,run:K$n,registerExternalDiagrams:uyi,registerLayoutLoaders:h$n,initialize:X$n,parseError:void 0,contentLoaded:Q$n,setParseErrorHandler:hyi,detectType:F0t,registerIconPacks:yBn,getRegisteredDiagramsMetadata:fyi},r5a=Mw;/*! Check if previously processed *//*! + * Wait for document loaded before starting the execution + */function zy(e){this.content=e}zy.prototype={constructor:zy,find:function(e){for(var t=0;t>1}};zy.from=function(e){if(e instanceof zy)return e;var t=[];if(e)for(var r in e)t.push(r,e[r]);return new zy(t)};var GF={8:"Backspace",9:"Tab",10:"Enter",12:"NumLock",13:"Enter",16:"Shift",17:"Control",18:"Alt",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",44:"PrintScreen",45:"Insert",46:"Delete",59:";",61:"=",91:"Meta",92:"Meta",106:"*",107:"+",108:",",109:"-",110:".",111:"/",144:"NumLock",145:"ScrollLock",160:"Shift",161:"Shift",162:"Control",163:"Control",164:"Alt",165:"Alt",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},Y4e={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},pyi=typeof navigator<"u"&&/Mac/.test(navigator.platform),gyi=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for(var vm=0;vm<10;vm++)GF[48+vm]=GF[96+vm]=String(vm);for(var vm=1;vm<=24;vm++)GF[vm+111]="F"+vm;for(var vm=65;vm<=90;vm++)GF[vm]=String.fromCharCode(vm+32),Y4e[vm]=String.fromCharCode(vm);for(var Ptt in GF)Y4e.hasOwnProperty(Ptt)||(Y4e[Ptt]=GF[Ptt]);function i5a(e){var t=pyi&&e.metaKey&&e.shiftKey&&!e.ctrlKey&&!e.altKey||gyi&&e.shiftKey&&e.key&&e.key.length==1||e.key=="Unidentified",r=!t&&e.key||(e.shiftKey?Y4e:GF)[e.keyCode]||e.key||"Unidentified";return r=="Esc"&&(r="Escape"),r=="Del"&&(r="Delete"),r=="Left"&&(r="ArrowLeft"),r=="Up"&&(r="ArrowUp"),r=="Right"&&(r="ArrowRight"),r=="Down"&&(r="ArrowDown"),r}const{getOwnPropertyNames:myi,getOwnPropertySymbols:byi}=Object,{hasOwnProperty:yyi}=Object.prototype;function Btt(e,t){return function(a,s,o){return e(a,s,o)&&t(a,s,o)}}function rwe(e){return function(r,a,s){if(!r||!a||typeof r!="object"||typeof a!="object")return e(r,a,s);const{cache:o}=s,u=o.get(r),h=o.get(a);if(u&&h)return u===a&&h===r;o.set(r,a),o.set(a,r);const f=e(r,a,s);return o.delete(r),o.delete(a),f}}function vyi(e){return e!=null?e[Symbol.toStringTag]:void 0}function Gvn(e){return myi(e).concat(byi(e))}const _yi=Object.hasOwn||((e,t)=>yyi.call(e,t));function L$(e,t){return e===t||!e&&!t&&e!==e&&t!==t}const wyi="__v",Eyi="__o",xyi="_owner",{getOwnPropertyDescriptor:qvn,keys:Hvn}=Object;function Syi(e,t){return e.byteLength===t.byteLength&&j4e(new Uint8Array(e),new Uint8Array(t))}function Tyi(e,t,r){let a=e.length;if(t.length!==a)return!1;for(;a-- >0;)if(!r.equals(e[a],t[a],a,a,e,t,r))return!1;return!0}function Cyi(e,t){return e.byteLength===t.byteLength&&j4e(new Uint8Array(e.buffer,e.byteOffset,e.byteLength),new Uint8Array(t.buffer,t.byteOffset,t.byteLength))}function Ayi(e,t){return L$(e.getTime(),t.getTime())}function kyi(e,t){return e.name===t.name&&e.message===t.message&&e.cause===t.cause&&e.stack===t.stack}function Ryi(e,t){return e===t}function Vvn(e,t,r){const a=e.size;if(a!==t.size)return!1;if(!a)return!0;const s=new Array(a),o=e.entries();let u,h,f=0;for(;(u=o.next())&&!u.done;){const p=t.entries();let m=!1,b=0;for(;(h=p.next())&&!h.done;){if(s[b]){b++;continue}const _=u.value,w=h.value;if(r.equals(_[0],w[0],f,b,e,t,r)&&r.equals(_[1],w[1],_[0],w[0],e,t,r)){m=s[b]=!0;break}b++}if(!m)return!1;f++}return!0}const Iyi=L$;function Nyi(e,t,r){const a=Hvn(e);let s=a.length;if(Hvn(t).length!==s)return!1;for(;s-- >0;)if(!eUn(e,t,r,a[s]))return!1;return!0}function Hre(e,t,r){const a=Gvn(e);let s=a.length;if(Gvn(t).length!==s)return!1;let o,u,h;for(;s-- >0;)if(o=a[s],!eUn(e,t,r,o)||(u=qvn(e,o),h=qvn(t,o),(u||h)&&(!u||!h||u.configurable!==h.configurable||u.enumerable!==h.enumerable||u.writable!==h.writable)))return!1;return!0}function Oyi(e,t){return L$(e.valueOf(),t.valueOf())}function Lyi(e,t){return e.source===t.source&&e.flags===t.flags}function Yvn(e,t,r){const a=e.size;if(a!==t.size)return!1;if(!a)return!0;const s=new Array(a),o=e.values();let u,h;for(;(u=o.next())&&!u.done;){const f=t.values();let p=!1,m=0;for(;(h=f.next())&&!h.done;){if(!s[m]&&r.equals(u.value,h.value,u.value,h.value,e,t,r)){p=s[m]=!0;break}m++}if(!p)return!1}return!0}function j4e(e,t){let r=e.byteLength;if(t.byteLength!==r||e.byteOffset!==t.byteOffset)return!1;for(;r-- >0;)if(e[r]!==t[r])return!1;return!0}function Dyi(e,t){return e.hostname===t.hostname&&e.pathname===t.pathname&&e.protocol===t.protocol&&e.port===t.port&&e.hash===t.hash&&e.username===t.username&&e.password===t.password}function eUn(e,t,r,a){return(a===xyi||a===Eyi||a===wyi)&&(e.$$typeof||t.$$typeof)?!0:_yi(t,a)&&r.equals(e[a],t[a],a,a,e,t,r)}const Myi="[object ArrayBuffer]",Pyi="[object Arguments]",Byi="[object Boolean]",Fyi="[object DataView]",$yi="[object Date]",Uyi="[object Error]",zyi="[object Map]",Gyi="[object Number]",qyi="[object Object]",Hyi="[object RegExp]",Vyi="[object Set]",Yyi="[object String]",jyi={"[object Int8Array]":!0,"[object Uint8Array]":!0,"[object Uint8ClampedArray]":!0,"[object Int16Array]":!0,"[object Uint16Array]":!0,"[object Int32Array]":!0,"[object Uint32Array]":!0,"[object Float16Array]":!0,"[object Float32Array]":!0,"[object Float64Array]":!0,"[object BigInt64Array]":!0,"[object BigUint64Array]":!0},Wyi="[object URL]",Kyi=Object.prototype.toString;function Xyi({areArrayBuffersEqual:e,areArraysEqual:t,areDataViewsEqual:r,areDatesEqual:a,areErrorsEqual:s,areFunctionsEqual:o,areMapsEqual:u,areNumbersEqual:h,areObjectsEqual:f,arePrimitiveWrappersEqual:p,areRegExpsEqual:m,areSetsEqual:b,areTypedArraysEqual:_,areUrlsEqual:w,unknownTagComparators:S}){return function(A,k,I){if(A===k)return!0;if(A==null||k==null)return!1;const N=typeof A;if(N!==typeof k)return!1;if(N!=="object")return N==="number"?h(A,k,I):N==="function"?o(A,k,I):!1;const L=A.constructor;if(L!==k.constructor)return!1;if(L===Object)return f(A,k,I);if(Array.isArray(A))return t(A,k,I);if(L===Date)return a(A,k,I);if(L===RegExp)return m(A,k,I);if(L===Map)return u(A,k,I);if(L===Set)return b(A,k,I);const P=Kyi.call(A);if(P===$yi)return a(A,k,I);if(P===Hyi)return m(A,k,I);if(P===zyi)return u(A,k,I);if(P===Vyi)return b(A,k,I);if(P===qyi)return typeof A.then!="function"&&typeof k.then!="function"&&f(A,k,I);if(P===Wyi)return w(A,k,I);if(P===Uyi)return s(A,k,I);if(P===Pyi)return f(A,k,I);if(jyi[P])return _(A,k,I);if(P===Myi)return e(A,k,I);if(P===Fyi)return r(A,k,I);if(P===Byi||P===Gyi||P===Yyi)return p(A,k,I);if(S){let M=S[P];if(!M){const F=vyi(A);F&&(M=S[F])}if(M)return M(A,k,I)}return!1}}function Qyi({circular:e,createCustomConfig:t,strict:r}){let a={areArrayBuffersEqual:Syi,areArraysEqual:r?Hre:Tyi,areDataViewsEqual:Cyi,areDatesEqual:Ayi,areErrorsEqual:kyi,areFunctionsEqual:Ryi,areMapsEqual:r?Btt(Vvn,Hre):Vvn,areNumbersEqual:Iyi,areObjectsEqual:r?Hre:Nyi,arePrimitiveWrappersEqual:Oyi,areRegExpsEqual:Lyi,areSetsEqual:r?Btt(Yvn,Hre):Yvn,areTypedArraysEqual:r?Btt(j4e,Hre):j4e,areUrlsEqual:Dyi,unknownTagComparators:void 0};if(t&&(a=Object.assign({},a,t(a))),e){const s=rwe(a.areArraysEqual),o=rwe(a.areMapsEqual),u=rwe(a.areObjectsEqual),h=rwe(a.areSetsEqual);a=Object.assign({},a,{areArraysEqual:s,areMapsEqual:o,areObjectsEqual:u,areSetsEqual:h})}return a}function Zyi(e){return function(t,r,a,s,o,u,h){return e(t,r,h)}}function Jyi({circular:e,comparator:t,createState:r,equals:a,strict:s}){if(r)return function(h,f){const{cache:p=e?new WeakMap:void 0,meta:m}=r();return t(h,f,{cache:p,equals:a,meta:m,strict:s})};if(e)return function(h,f){return t(h,f,{cache:new WeakMap,equals:a,meta:void 0,strict:s})};const o={cache:void 0,equals:a,meta:void 0,strict:s};return function(h,f){return t(h,f,o)}}const a5a=$9();$9({strict:!0});$9({circular:!0});$9({circular:!0,strict:!0});$9({createInternalComparator:()=>L$});$9({strict:!0,createInternalComparator:()=>L$});$9({circular:!0,createInternalComparator:()=>L$});$9({circular:!0,createInternalComparator:()=>L$,strict:!0});function $9(e={}){const{circular:t=!1,createInternalComparator:r,createState:a,strict:s=!1}=e,o=Qyi(e),u=Xyi(o),h=r?r(u):Zyi(u);return Jyi({circular:t,comparator:u,createState:a,equals:h,strict:s})}const evi="aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3nlop4pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2o0dyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rckmsd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0stone5umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2olterskluwer11odside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2",tvi="ελ1υ2бг1ел3дети4ею2католик6ом3мкд2он1сква6онлайн5рг3рус2ф2сайт3рб3укр3қаз3հայ3ישראל5קום3ابوظبي5رامكو5لاردن4بحرين5جزائر5سعودية6عليان5مغرب5مارات5یران5بارت2زار4يتك3ھارت5تونس4سودان3رية5شبكة4عراق2ب2مان4فلسطين6قطر3كاثوليك6وم3مصر2ليسيا5وريتانيا7قع4همراه5پاکستان7ڀارت4कॉम3नेट3भारत0म्3ोत5संगठन5বাংলা5ভারত2ৰত4ਭਾਰਤ4ભારત4ଭାରତ4இந்தியா6லங்கை6சிங்கப்பூர்11భారత్5ಭಾರತ4ഭാരതം5ලංකා4คอม3ไทย3ລາວ3გე2みんな3アマゾン4クラウド4グーグル4コム2ストア3セール3ファッション6ポイント4世界2中信1国1國1文网3亚马逊3企业2佛山2信息2健康2八卦2公司1益2台湾1灣2商城1店1标2嘉里0大酒店5在线2大拿2天主教3娱乐2家電2广东2微博2慈善2我爱你3手机2招聘2政务1府2新加坡2闻2时尚2書籍2机构2淡马锡3游戏2澳門2点看2移动2组织机构4网址1店1站1络2联通2谷歌2购物2通販2集团2電訊盈科4飞利浦3食品2餐厅2香格里拉3港2닷넷1컴2삼성2한국2",plt="numeric",glt="ascii",mlt="alpha",hse="asciinumeric",Uie="alphanumeric",blt="domain",tUn="emoji",nvi="scheme",rvi="slashscheme",Ftt="whitespace";function ivi(e,t){return e in t||(t[e]=[]),t[e]}function nF(e,t,r){t[plt]&&(t[hse]=!0,t[Uie]=!0),t[glt]&&(t[hse]=!0,t[mlt]=!0),t[hse]&&(t[Uie]=!0),t[mlt]&&(t[Uie]=!0),t[Uie]&&(t[blt]=!0),t[tUn]&&(t[blt]=!0);for(const a in t){const s=ivi(a,r);s.indexOf(e)<0&&s.push(e)}}function avi(e,t){const r={};for(const a in t)t[a].indexOf(e)>=0&&(r[a]=!0);return r}function B2(e=null){this.j={},this.jr=[],this.jd=null,this.t=e}B2.groups={};B2.prototype={accepts(){return!!this.t},go(e){const t=this,r=t.j[e];if(r)return r;for(let a=0;ae.ta(t,r,a,s),i0=(e,t,r,a,s)=>e.tr(t,r,a,s),jvn=(e,t,r,a,s)=>e.ts(t,r,a,s),Di=(e,t,r,a,s)=>e.tt(t,r,a,s),s7="WORD",ylt="UWORD",nUn="ASCIINUMERICAL",rUn="ALPHANUMERICAL",Coe="LOCALHOST",vlt="TLD",_lt="UTLD",cxe="SCHEME",dV="SLASH_SCHEME",apt="NUM",wlt="WS",spt="NL",dse="OPENBRACE",fse="CLOSEBRACE",W4e="OPENBRACKET",K4e="CLOSEBRACKET",X4e="OPENPAREN",Q4e="CLOSEPAREN",Z4e="OPENANGLEBRACKET",J4e="CLOSEANGLEBRACKET",e3e="FULLWIDTHLEFTPAREN",t3e="FULLWIDTHRIGHTPAREN",n3e="LEFTCORNERBRACKET",r3e="RIGHTCORNERBRACKET",i3e="LEFTWHITECORNERBRACKET",a3e="RIGHTWHITECORNERBRACKET",s3e="FULLWIDTHLESSTHAN",o3e="FULLWIDTHGREATERTHAN",l3e="AMPERSAND",c3e="APOSTROPHE",u3e="ASTERISK",KN="AT",h3e="BACKSLASH",d3e="BACKTICK",f3e="CARET",eO="COLON",opt="COMMA",p3e="DOLLAR",CC="DOT",g3e="EQUALS",lpt="EXCLAMATION",Vx="HYPHEN",pse="PERCENT",m3e="PIPE",b3e="PLUS",y3e="POUND",gse="QUERY",cpt="QUOTE",iUn="FULLWIDTHMIDDLEDOT",upt="SEMI",AC="SLASH",mse="TILDE",v3e="UNDERSCORE",aUn="EMOJI",_3e="SYM";var sUn=Object.freeze({__proto__:null,ALPHANUMERICAL:rUn,AMPERSAND:l3e,APOSTROPHE:c3e,ASCIINUMERICAL:nUn,ASTERISK:u3e,AT:KN,BACKSLASH:h3e,BACKTICK:d3e,CARET:f3e,CLOSEANGLEBRACKET:J4e,CLOSEBRACE:fse,CLOSEBRACKET:K4e,CLOSEPAREN:Q4e,COLON:eO,COMMA:opt,DOLLAR:p3e,DOT:CC,EMOJI:aUn,EQUALS:g3e,EXCLAMATION:lpt,FULLWIDTHGREATERTHAN:o3e,FULLWIDTHLEFTPAREN:e3e,FULLWIDTHLESSTHAN:s3e,FULLWIDTHMIDDLEDOT:iUn,FULLWIDTHRIGHTPAREN:t3e,HYPHEN:Vx,LEFTCORNERBRACKET:n3e,LEFTWHITECORNERBRACKET:i3e,LOCALHOST:Coe,NL:spt,NUM:apt,OPENANGLEBRACKET:Z4e,OPENBRACE:dse,OPENBRACKET:W4e,OPENPAREN:X4e,PERCENT:pse,PIPE:m3e,PLUS:b3e,POUND:y3e,QUERY:gse,QUOTE:cpt,RIGHTCORNERBRACKET:r3e,RIGHTWHITECORNERBRACKET:a3e,SCHEME:cxe,SEMI:upt,SLASH:AC,SLASH_SCHEME:dV,SYM:_3e,TILDE:mse,TLD:vlt,UNDERSCORE:v3e,UTLD:_lt,UWORD:ylt,WORD:s7,WS:wlt});const j6=/[a-z]/,Vre=new RegExp("\\p{L}","u"),$tt=new RegExp("\\p{Emoji}","u"),W6=/\d/,Utt=/\s/,Wvn="\r",ztt=` +`,svi="️",ovi="‍",Gtt="";let iwe=null,awe=null;function lvi(e=[]){const t={};B2.groups=t;const r=new B2;iwe==null&&(iwe=Kvn(evi)),awe==null&&(awe=Kvn(tvi)),Di(r,"'",c3e),Di(r,"{",dse),Di(r,"}",fse),Di(r,"[",W4e),Di(r,"]",K4e),Di(r,"(",X4e),Di(r,")",Q4e),Di(r,"<",Z4e),Di(r,">",J4e),Di(r,"(",e3e),Di(r,")",t3e),Di(r,"「",n3e),Di(r,"」",r3e),Di(r,"『",i3e),Di(r,"』",a3e),Di(r,"<",s3e),Di(r,">",o3e),Di(r,"&",l3e),Di(r,"*",u3e),Di(r,"@",KN),Di(r,"`",d3e),Di(r,"^",f3e),Di(r,":",eO),Di(r,",",opt),Di(r,"$",p3e),Di(r,".",CC),Di(r,"=",g3e),Di(r,"!",lpt),Di(r,"-",Vx),Di(r,"%",pse),Di(r,"|",m3e),Di(r,"+",b3e),Di(r,"#",y3e),Di(r,"?",gse),Di(r,'"',cpt),Di(r,"/",AC),Di(r,";",upt),Di(r,"~",mse),Di(r,"_",v3e),Di(r,"\\",h3e),Di(r,"・",iUn);const a=i0(r,W6,apt,{[plt]:!0});i0(a,W6,a);const s=i0(a,j6,nUn,{[hse]:!0}),o=i0(a,Vre,rUn,{[Uie]:!0}),u=i0(r,j6,s7,{[glt]:!0});i0(u,W6,s),i0(u,j6,u),i0(s,W6,s),i0(s,j6,s);const h=i0(r,Vre,ylt,{[mlt]:!0});i0(h,j6),i0(h,W6,o),i0(h,Vre,h),i0(o,W6,o),i0(o,j6),i0(o,Vre,o);const f=Di(r,ztt,spt,{[Ftt]:!0}),p=Di(r,Wvn,wlt,{[Ftt]:!0}),m=i0(r,Utt,wlt,{[Ftt]:!0});Di(r,Gtt,m),Di(p,ztt,f),Di(p,Gtt,m),i0(p,Utt,m),Di(m,Wvn),Di(m,ztt),i0(m,Utt,m),Di(m,Gtt,m);const b=i0(r,$tt,aUn,{[tUn]:!0});Di(b,"#"),i0(b,$tt,b),Di(b,svi,b);const _=Di(b,ovi);Di(_,"#"),i0(_,$tt,b);const w=[[j6,u],[W6,s]],S=[[j6,null],[Vre,h],[W6,o]];for(let C=0;CC[0]>A[0]?1:-1);for(let C=0;C=0?I[blt]=!0:j6.test(A)?W6.test(A)?I[hse]=!0:I[glt]=!0:I[plt]=!0,jvn(r,A,A,I)}return jvn(r,"localhost",Coe,{ascii:!0}),r.jd=new B2(_3e),{start:r,tokens:Object.assign({groups:t},sUn)}}function oUn(e,t){const r=cvi(t.replace(/[A-Z]/g,h=>h.toLowerCase())),a=r.length,s=[];let o=0,u=0;for(;u=0&&(b+=r[u].length,_++),p+=r[u].length,o+=r[u].length,u++;o-=b,u-=_,p-=b,s.push({t:m.t,v:t.slice(o-p,o),s:o-p,e:o})}return s}function cvi(e){const t=[],r=e.length;let a=0;for(;a56319||a+1===r||(o=e.charCodeAt(a+1))<56320||o>57343?e[a]:e.slice(a,a+2);t.push(u),a+=u.length}return t}function LN(e,t,r,a,s){let o;const u=t.length;for(let h=0;h=0;)o++;if(o>0){t.push(r.join(""));for(let u=parseInt(e.substring(a,a+o),10);u>0;u--)r.pop();a+=o}else r.push(e[a]),a++}return t}const Aoe={defaultProtocol:"http",events:null,format:Xvn,formatHref:Xvn,nl2br:!1,tagName:"a",target:null,rel:null,validate:!0,truncate:1/0,className:null,attributes:null,ignoreTags:[],render:null};function hpt(e,t=null){let r=Object.assign({},Aoe);e&&(r=Object.assign(r,e instanceof hpt?e.o:e));const a=r.ignoreTags,s=[];for(let o=0;or?a.substring(0,r)+"…":a},toFormattedHref(e){return e.get("formatHref",this.toHref(e.get("defaultProtocol")),this)},startIndex(){return this.tk[0].s},endIndex(){return this.tk[this.tk.length-1].e},toObject(e=Aoe.defaultProtocol){return{type:this.t,value:this.toString(),isLink:this.isLink,href:this.toHref(e),start:this.startIndex(),end:this.endIndex()}},toFormattedObject(e){return{type:this.t,value:this.toFormattedString(e),isLink:this.isLink,href:this.toFormattedHref(e),start:this.startIndex(),end:this.endIndex()}},validate(e){return e.get("validate",this.toString(),this)},render(e){const t=this,r=this.toHref(e.get("defaultProtocol")),a=e.get("formatHref",r,this),s=e.get("tagName",r,t),o=this.toFormattedString(e),u={},h=e.get("className",r,t),f=e.get("target",r,t),p=e.get("rel",r,t),m=e.getObj("attributes",r,t),b=e.getObj("events",r,t);return u.href=a,h&&(u.class=h),f&&(u.target=f),p&&(u.rel=p),m&&Object.assign(u,m),{tagName:s,attributes:u,content:o,eventListeners:b}}};function LAe(e,t){class r extends lUn{constructor(s,o){super(s,o),this.t=e}}for(const a in t)r.prototype[a]=t[a];return r.t=e,r}const Qvn=LAe("email",{isLink:!0,toHref(){return"mailto:"+this.toString()}}),Zvn=LAe("text"),uvi=LAe("nl"),swe=LAe("url",{isLink:!0,toHref(e=Aoe.defaultProtocol){return this.hasProtocol()?this.v:`${e}://${this.v}`},hasProtocol(){const e=this.tk;return e.length>=2&&e[0].t!==Coe&&e[1].t===eO}}),Bx=e=>new B2(e);function hvi({groups:e}){const t=e.domain.concat([l3e,u3e,KN,h3e,d3e,f3e,p3e,g3e,Vx,apt,pse,m3e,b3e,y3e,AC,_3e,mse,v3e]),r=[c3e,eO,opt,CC,lpt,pse,gse,cpt,upt,Z4e,J4e,dse,fse,K4e,W4e,X4e,Q4e,e3e,t3e,n3e,r3e,i3e,a3e,s3e,o3e],a=[l3e,c3e,u3e,h3e,d3e,f3e,p3e,g3e,Vx,dse,fse,pse,m3e,b3e,y3e,gse,AC,_3e,mse,v3e],s=Bx(),o=Di(s,mse);Dl(o,a,o),Dl(o,e.domain,o);const u=Bx(),h=Bx(),f=Bx();Dl(s,e.domain,u),Dl(s,e.scheme,h),Dl(s,e.slashscheme,f),Dl(u,a,o),Dl(u,e.domain,u);const p=Di(u,KN);Di(o,KN,p),Di(h,KN,p),Di(f,KN,p);const m=Di(o,CC);Dl(m,a,o),Dl(m,e.domain,o);const b=Bx();Dl(p,e.domain,b),Dl(b,e.domain,b);const _=Di(b,CC);Dl(_,e.domain,b);const w=Bx(Qvn);Dl(_,e.tld,w),Dl(_,e.utld,w),Di(p,Coe,w);const S=Di(b,Vx);Di(S,Vx,S),Dl(S,e.domain,b),Dl(w,e.domain,b),Di(w,CC,_),Di(w,Vx,S);const C=Di(w,eO);Dl(C,e.numeric,Qvn);const A=Di(u,Vx),k=Di(u,CC);Di(A,Vx,A),Dl(A,e.domain,u),Dl(k,a,o),Dl(k,e.domain,u);const I=Bx(swe);Dl(k,e.tld,I),Dl(k,e.utld,I),Dl(I,e.domain,u),Dl(I,a,o),Di(I,CC,k),Di(I,Vx,A),Di(I,KN,p);const N=Di(I,eO),L=Bx(swe);Dl(N,e.numeric,L);const P=Bx(swe),M=Bx();Dl(P,t,P),Dl(P,r,M),Dl(M,t,P),Dl(M,r,M),Di(I,AC,P),Di(L,AC,P);const F=Di(h,eO),U=Di(f,eO),$=Di(U,AC),G=Di($,AC);Dl(h,e.domain,u),Di(h,CC,k),Di(h,Vx,A),Dl(f,e.domain,u),Di(f,CC,k),Di(f,Vx,A),Dl(F,e.domain,P),Di(F,AC,P),Di(F,gse,P),Dl(G,e.domain,P),Dl(G,t,P),Di(G,AC,P);const B=[[dse,fse],[W4e,K4e],[X4e,Q4e],[Z4e,J4e],[e3e,t3e],[n3e,r3e],[i3e,a3e],[s3e,o3e]];for(let Z=0;Z=0&&_++,s++,m++;if(_<0)s-=m,s0&&(o.push(qtt(Zvn,t,u)),u=[]),s-=_,m-=_;const w=b.t,S=r.slice(s-m,s);o.push(qtt(w,t,S))}}return u.length>0&&o.push(qtt(Zvn,t,u)),o}function qtt(e,t,r){const a=r[0].s,s=r[r.length-1].e,o=t.slice(a,s);return new e(o,r)}const fvi=typeof console<"u"&&console&&console.warn||(()=>{}),pvi="until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.",md={scanner:null,parser:null,tokenQueue:[],pluginQueue:[],customSchemes:[],initialized:!1};function s5a(){return B2.groups={},md.scanner=null,md.parser=null,md.tokenQueue=[],md.pluginQueue=[],md.customSchemes=[],md.initialized=!1,md}function o5a(e,t=!1){if(md.initialized&&fvi(`linkifyjs: already initialized - will not register custom scheme "${e}" ${pvi}`),!/^[0-9a-z]+(-[0-9a-z]+)*$/.test(e))throw new Error(`linkifyjs: incorrect scheme format. +1. Must only contain digits, lowercase ASCII letters or "-" +2. Cannot start or end with "-" +3. "-" cannot repeat`);md.customSchemes.push([e,t])}function gvi(){md.scanner=lvi(md.customSchemes);for(let e=0;e=r?Cb.empty:this.sliceInner(Math.max(0,t),Math.min(this.length,r))};Cb.prototype.get=function(t){if(!(t<0||t>=this.length))return this.getInner(t)};Cb.prototype.forEach=function(t,r,a){r===void 0&&(r=0),a===void 0&&(a=this.length),r<=a?this.forEachInner(t,r,a,0):this.forEachInvertedInner(t,r,a,0)};Cb.prototype.map=function(t,r,a){r===void 0&&(r=0),a===void 0&&(a=this.length);var s=[];return this.forEach(function(o,u){return s.push(t(o,u))},r,a),s};Cb.from=function(t){return t instanceof Cb?t:t&&t.length?new uUn(t):Cb.empty};var uUn=function(e){function t(a){e.call(this),this.values=a}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var r={length:{configurable:!0},depth:{configurable:!0}};return t.prototype.flatten=function(){return this.values},t.prototype.sliceInner=function(s,o){return s==0&&o==this.length?this:new t(this.values.slice(s,o))},t.prototype.getInner=function(s){return this.values[s]},t.prototype.forEachInner=function(s,o,u,h){for(var f=o;f=u;f--)if(s(this.values[f],h+f)===!1)return!1},t.prototype.leafAppend=function(s){if(this.length+s.length<=w3e)return new t(this.values.concat(s.flatten()))},t.prototype.leafPrepend=function(s){if(this.length+s.length<=w3e)return new t(s.flatten().concat(this.values))},r.length.get=function(){return this.values.length},r.depth.get=function(){return 0},Object.defineProperties(t.prototype,r),t}(Cb);Cb.empty=new uUn([]);var mvi=function(e){function t(r,a){e.call(this),this.left=r,this.right=a,this.length=r.length+a.length,this.depth=Math.max(r.depth,a.depth)+1}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.flatten=function(){return this.left.flatten().concat(this.right.flatten())},t.prototype.getInner=function(a){return ah&&this.right.forEachInner(a,Math.max(s-h,0),Math.min(this.length,o)-h,u+h)===!1)return!1},t.prototype.forEachInvertedInner=function(a,s,o,u){var h=this.left.length;if(s>h&&this.right.forEachInvertedInner(a,s-h,Math.max(o,h)-h,u+h)===!1||o=o?this.right.slice(a-o,s-o):this.left.slice(a,o).append(this.right.slice(0,s-o))},t.prototype.leafAppend=function(a){var s=this.right.leafAppend(a);if(s)return new t(this.left,s)},t.prototype.leafPrepend=function(a){var s=this.left.leafPrepend(a);if(s)return new t(s,this.right)},t.prototype.appendInner=function(a){return this.left.depth>=Math.max(this.right.depth,a.depth)+1?new t(this.left,new t(this.right,a)):new t(this,a)},t}(Cb);function bvi(){const e=navigator.userAgentData;return e!=null&&e.platform?e.platform:navigator.platform}function yvi(){const e=navigator.userAgentData;return e&&Array.isArray(e.brands)?e.brands.map(t=>{let{brand:r,version:a}=t;return r+"/"+a}).join(" "):navigator.userAgent}function hUn(){return/apple/i.test(navigator.vendor)}function vvi(){return bvi().toLowerCase().startsWith("mac")&&!navigator.maxTouchPoints}function _vi(){return yvi().includes("jsdom/")}const Jvn="data-floating-ui-focusable",wvi="input:not([type='hidden']):not([disabled]),[contenteditable]:not([contenteditable='false']),textarea:not([disabled])";function Elt(e){let t=e.activeElement;for(;((r=t)==null||(r=r.shadowRoot)==null?void 0:r.activeElement)!=null;){var r;t=t.shadowRoot.activeElement}return t}function Bj(e,t){if(!e||!t)return!1;const r=t.getRootNode==null?void 0:t.getRootNode();if(e.contains(t))return!0;if(r&&fst(r)){let a=t;for(;a;){if(e===a)return!0;a=a.parentNode||a.host}}return!1}function fV(e){return"composedPath"in e?e.composedPath()[0]:e.target}function Htt(e,t){if(t==null)return!1;if("composedPath"in e)return e.composedPath().includes(t);const r=e;return r.target!=null&&t.contains(r.target)}function Evi(e){return e.matches("html,body")}function KC(e){return(e==null?void 0:e.ownerDocument)||document}function xvi(e){return Fw(e)&&e.matches(wvi)}function Svi(e){if(!e||_vi())return!0;try{return e.matches(":focus-visible")}catch{return!0}}function Tvi(e){return e?e.hasAttribute(Jvn)?e:e.querySelector("["+Jvn+"]")||e:null}function uxe(e,t,r){return r===void 0&&(r=!0),e.filter(s=>{var o;return s.parentId===t&&(!r||((o=s.context)==null?void 0:o.open))}).flatMap(s=>[s,...uxe(e,s.id,r)])}function Cvi(e){return"nativeEvent"in e}function xlt(e,t){const r=["mouse","pen"];return r.push("",void 0),r.includes(e)}var Avi=typeof document<"u",kvi=function(){},X3=Avi?ue.useLayoutEffect:kvi;const Rvi={...g$};function owe(e){const t=ue.useRef(e);return X3(()=>{t.current=e}),t}const Ivi=Rvi.useInsertionEffect,Nvi=Ivi||(e=>e());function UC(e){const t=ue.useRef(()=>{});return Nvi(()=>{t.current=e}),ue.useCallback(function(){for(var r=arguments.length,a=new Array(r),s=0;s({getShadowRoot:!0,displayCheck:typeof ResizeObserver=="function"&&ResizeObserver.toString().includes("[native code]")?"full":"none"});function fUn(e,t){const r=O6n(e,dUn()),a=r.length;if(a===0)return;const s=Elt(KC(e)),o=r.indexOf(s),u=o===-1?t===1?0:a-1:o+t;return r[u]}function Ovi(e){return fUn(KC(e).body,1)||e}function Lvi(e){return fUn(KC(e).body,-1)||e}function Vtt(e,t){const r=t||e.currentTarget,a=e.relatedTarget;return!a||!Bj(r,a)}function Dvi(e){O6n(e,dUn()).forEach(r=>{r.dataset.tabindex=r.getAttribute("tabindex")||"",r.setAttribute("tabindex","-1")})}function e2n(e){e.querySelectorAll("[data-tabindex]").forEach(r=>{const a=r.dataset.tabindex;delete r.dataset.tabindex,a?r.setAttribute("tabindex",a):r.removeAttribute("tabindex")})}function c5a(e){const t=ue.useRef(void 0),r=ue.useCallback(a=>{const s=e.map(o=>{if(o!=null){if(typeof o=="function"){const u=o,h=u(a);return typeof h=="function"?h:()=>{u(null)}}return o.current=a,()=>{o.current=null}}});return()=>{s.forEach(o=>o==null?void 0:o())}},e);return ue.useMemo(()=>e.every(a=>a==null)?null:a=>{t.current&&(t.current(),t.current=void 0),a!=null&&(t.current=r(a))},e)}const Mvi="data-floating-ui-focusable",t2n="active",n2n="selected",Pvi={...g$};let r2n=!1,Bvi=0;const i2n=()=>"floating-ui-"+Math.random().toString(36).slice(2,6)+Bvi++;function Fvi(){const[e,t]=ue.useState(()=>r2n?i2n():void 0);return X3(()=>{e==null&&t(i2n())},[]),ue.useEffect(()=>{r2n=!0},[]),e}const $vi=Pvi.useId,dpt=$vi||Fvi;function Uvi(){const e=new Map;return{emit(t,r){var a;(a=e.get(t))==null||a.forEach(s=>s(r))},on(t,r){e.has(t)||e.set(t,new Set),e.get(t).add(r)},off(t,r){var a;(a=e.get(t))==null||a.delete(r)}}}const zvi=ue.createContext(null),Gvi=ue.createContext(null),fpt=()=>{var e;return((e=ue.useContext(zvi))==null?void 0:e.id)||null},ppt=()=>ue.useContext(Gvi);function dce(e){return"data-floating-ui-"+e}function zx(e){e.current!==-1&&(clearTimeout(e.current),e.current=-1)}const a2n=dce("safe-polygon");function Ytt(e,t,r){if(r&&!xlt(r))return 0;if(typeof e=="number")return e;if(typeof e=="function"){const a=e();return typeof a=="number"?a:a==null?void 0:a[t]}return e==null?void 0:e[t]}function jtt(e){return typeof e=="function"?e():e}function u5a(e,t){t===void 0&&(t={});const{open:r,onOpenChange:a,dataRef:s,events:o,elements:u}=e,{enabled:h=!0,delay:f=0,handleClose:p=null,mouseOnly:m=!1,restMs:b=0,move:_=!0}=t,w=ppt(),S=fpt(),C=owe(p),A=owe(f),k=owe(r),I=owe(b),N=ue.useRef(),L=ue.useRef(-1),P=ue.useRef(),M=ue.useRef(-1),F=ue.useRef(!0),U=ue.useRef(!1),$=ue.useRef(()=>{}),G=ue.useRef(!1),B=UC(()=>{var V;const j=(V=s.current.openEvent)==null?void 0:V.type;return(j==null?void 0:j.includes("mouse"))&&j!=="mousedown"});ue.useEffect(()=>{if(!h)return;function V(j){let{open:ee}=j;ee||(zx(L),zx(M),F.current=!0,G.current=!1)}return o.on("openchange",V),()=>{o.off("openchange",V)}},[h,o]),ue.useEffect(()=>{if(!h||!C.current||!r)return;function V(ee){B()&&a(!1,ee,"hover")}const j=KC(u.floating).documentElement;return j.addEventListener("mouseleave",V),()=>{j.removeEventListener("mouseleave",V)}},[u.floating,r,a,h,C,B]);const Z=ue.useCallback(function(V,j,ee){j===void 0&&(j=!0),ee===void 0&&(ee="hover");const te=Ytt(A.current,"close",N.current);te&&!P.current?(zx(L),L.current=window.setTimeout(()=>a(!1,V,ee),te)):j&&(zx(L),a(!1,V,ee))},[A,a]),z=UC(()=>{$.current(),P.current=void 0}),Y=UC(()=>{if(U.current){const V=KC(u.floating).body;V.style.pointerEvents="",V.removeAttribute(a2n),U.current=!1}}),W=UC(()=>s.current.openEvent?["click","mousedown"].includes(s.current.openEvent.type):!1);ue.useEffect(()=>{if(!h)return;function V(se){if(zx(L),F.current=!1,m&&!xlt(N.current)||jtt(I.current)>0&&!Ytt(A.current,"open"))return;const ie=Ytt(A.current,"open",N.current);ie?L.current=window.setTimeout(()=>{k.current||a(!0,se,"hover")},ie):r||a(!0,se,"hover")}function j(se){if(W()){Y();return}$.current();const ie=KC(u.floating);if(zx(M),G.current=!1,C.current&&s.current.floatingContext){r||zx(L),P.current=C.current({...s.current.floatingContext,tree:w,x:se.clientX,y:se.clientY,onClose(){Y(),z(),W()||Z(se,!0,"safe-polygon")}});const ce=P.current;ie.addEventListener("mousemove",ce),$.current=()=>{ie.removeEventListener("mousemove",ce)};return}(N.current==="touch"?!Bj(u.floating,se.relatedTarget):!0)&&Z(se)}function ee(se){W()||s.current.floatingContext&&(C.current==null||C.current({...s.current.floatingContext,tree:w,x:se.clientX,y:se.clientY,onClose(){Y(),z(),W()||Z(se)}})(se))}function te(){zx(L)}function ne(se){W()||Z(se,!1)}if(yd(u.domReference)){const se=u.domReference,ie=u.floating;return r&&se.addEventListener("mouseleave",ee),_&&se.addEventListener("mousemove",V,{once:!0}),se.addEventListener("mouseenter",V),se.addEventListener("mouseleave",j),ie&&(ie.addEventListener("mouseleave",ee),ie.addEventListener("mouseenter",te),ie.addEventListener("mouseleave",ne)),()=>{r&&se.removeEventListener("mouseleave",ee),_&&se.removeEventListener("mousemove",V),se.removeEventListener("mouseenter",V),se.removeEventListener("mouseleave",j),ie&&(ie.removeEventListener("mouseleave",ee),ie.removeEventListener("mouseenter",te),ie.removeEventListener("mouseleave",ne))}}},[u,h,e,m,_,Z,z,Y,a,r,k,w,A,C,s,W,I]),X3(()=>{var V;if(h&&r&&(V=C.current)!=null&&(V=V.__options)!=null&&V.blockPointerEvents&&B()){U.current=!0;const ee=u.floating;if(yd(u.domReference)&&ee){var j;const te=KC(u.floating).body;te.setAttribute(a2n,"");const ne=u.domReference,se=w==null||(j=w.nodesRef.current.find(ie=>ie.id===S))==null||(j=j.context)==null?void 0:j.elements.floating;return se&&(se.style.pointerEvents=""),te.style.pointerEvents="none",ne.style.pointerEvents="auto",ee.style.pointerEvents="auto",()=>{te.style.pointerEvents="",ne.style.pointerEvents="",ee.style.pointerEvents=""}}}},[h,r,S,u,w,C,B]),X3(()=>{r||(N.current=void 0,G.current=!1,z(),Y())},[r,z,Y]),ue.useEffect(()=>()=>{z(),zx(L),zx(M),Y()},[h,u.domReference,z,Y]);const Q=ue.useMemo(()=>{function V(j){N.current=j.pointerType}return{onPointerDown:V,onPointerEnter:V,onMouseMove(j){const{nativeEvent:ee}=j;function te(){!F.current&&!k.current&&a(!0,ee,"hover")}m&&!xlt(N.current)||r||jtt(I.current)===0||G.current&&j.movementX**2+j.movementY**2<2||(zx(M),N.current==="touch"?te():(G.current=!0,M.current=window.setTimeout(te,jtt(I.current))))}}},[m,a,r,k,I]);return ue.useMemo(()=>h?{reference:Q}:{},[h,Q])}const s2n=()=>{},qvi=ue.createContext({delay:0,initialDelay:0,timeoutMs:0,currentId:null,setCurrentId:s2n,setState:s2n,isInstantPhase:!1});function h5a(e){const{children:t,delay:r,timeoutMs:a=0}=e,[s,o]=ue.useReducer((f,p)=>({...f,...p}),{delay:r,timeoutMs:a,initialDelay:r,currentId:null,isInstantPhase:!1}),u=ue.useRef(null),h=ue.useCallback(f=>{o({currentId:f})},[]);return X3(()=>{s.currentId?u.current===null?u.current=s.currentId:s.isInstantPhase||o({isInstantPhase:!0}):(s.isInstantPhase&&o({isInstantPhase:!1}),u.current=null)},[s.currentId,s.isInstantPhase]),ct.jsx(qvi.Provider,{value:ue.useMemo(()=>({...s,setState:o,setCurrentId:h}),[s,h]),children:t})}const Hvi={border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"fixed",whiteSpace:"nowrap",width:"1px",top:0,left:0},o2n=ue.forwardRef(function(t,r){const[a,s]=ue.useState();X3(()=>{hUn()&&s("button")},[]);const o={ref:r,tabIndex:0,role:a,"aria-hidden":a?void 0:!0,[dce("focus-guard")]:"",style:Hvi};return ct.jsx("span",{...t,...o})}),Vvi={clipPath:"inset(50%)",position:"fixed",top:0,left:0},pUn=ue.createContext(null),l2n=dce("portal");function Yvi(e){e===void 0&&(e={});const{id:t,root:r}=e,a=dpt(),s=jvi(),[o,u]=ue.useState(null),h=ue.useRef(null);return X3(()=>()=>{o==null||o.remove(),queueMicrotask(()=>{h.current=null})},[o]),X3(()=>{if(!a||h.current)return;const f=t?document.getElementById(t):null;if(!f)return;const p=document.createElement("div");p.id=a,p.setAttribute(l2n,""),f.appendChild(p),h.current=p,u(p)},[t,a]),X3(()=>{if(r===null||!a||h.current)return;let f=r||(s==null?void 0:s.portalNode);f&&!Ydt(f)&&(f=f.current),f=f||document.body;let p=null;t&&(p=document.createElement("div"),p.id=t,f.appendChild(p));const m=document.createElement("div");m.id=a,m.setAttribute(l2n,""),f=p||f,f.appendChild(m),h.current=m,u(m)},[t,r,a,s]),o}function d5a(e){const{children:t,id:r,root:a,preserveTabOrder:s=!0}=e,o=Yvi({id:r,root:a}),[u,h]=ue.useState(null),f=ue.useRef(null),p=ue.useRef(null),m=ue.useRef(null),b=ue.useRef(null),_=u==null?void 0:u.modal,w=u==null?void 0:u.open,S=!!u&&!u.modal&&u.open&&s&&!!(a||o);return ue.useEffect(()=>{if(!o||!s||_)return;function C(A){o&&Vtt(A)&&(A.type==="focusin"?e2n:Dvi)(o)}return o.addEventListener("focusin",C,!0),o.addEventListener("focusout",C,!0),()=>{o.removeEventListener("focusin",C,!0),o.removeEventListener("focusout",C,!0)}},[o,s,_]),ue.useEffect(()=>{o&&(w||e2n(o))},[w,o]),ct.jsxs(pUn.Provider,{value:ue.useMemo(()=>({preserveTabOrder:s,beforeOutsideRef:f,afterOutsideRef:p,beforeInsideRef:m,afterInsideRef:b,portalNode:o,setFocusManagerState:h}),[s,o]),children:[S&&o&&ct.jsx(o2n,{"data-type":"outside",ref:f,onFocus:C=>{if(Vtt(C,o)){var A;(A=m.current)==null||A.focus()}else{const k=u?u.domReference:null,I=Lvi(k);I==null||I.focus()}}}),S&&o&&ct.jsx("span",{"aria-owns":o.id,style:Vvi}),o&&w9.createPortal(t,o),S&&o&&ct.jsx(o2n,{"data-type":"outside",ref:p,onFocus:C=>{if(Vtt(C,o)){var A;(A=b.current)==null||A.focus()}else{const k=u?u.domReference:null,I=Ovi(k);I==null||I.focus(),u!=null&&u.closeOnFocusOut&&(u==null||u.onOpenChange(!1,C.nativeEvent,"focus-out"))}}})]})}const jvi=()=>ue.useContext(pUn),Wvi={pointerdown:"onPointerDown",mousedown:"onMouseDown",click:"onClick"},Kvi={pointerdown:"onPointerDownCapture",mousedown:"onMouseDownCapture",click:"onClickCapture"},c2n=e=>{var t,r;return{escapeKey:typeof e=="boolean"?e:(t=e==null?void 0:e.escapeKey)!=null?t:!1,outsidePress:typeof e=="boolean"?e:(r=e==null?void 0:e.outsidePress)!=null?r:!0}};function f5a(e,t){t===void 0&&(t={});const{open:r,onOpenChange:a,elements:s,dataRef:o}=e,{enabled:u=!0,escapeKey:h=!0,outsidePress:f=!0,outsidePressEvent:p="pointerdown",referencePress:m=!1,referencePressEvent:b="pointerdown",ancestorScroll:_=!1,bubbles:w,capture:S}=t,C=ppt(),A=UC(typeof f=="function"?f:()=>!1),k=typeof f=="function"?A:f,I=ue.useRef(!1),{escapeKey:N,outsidePress:L}=c2n(w),{escapeKey:P,outsidePress:M}=c2n(S),F=ue.useRef(!1),U=UC(Y=>{var W;if(!r||!u||!h||Y.key!=="Escape"||F.current)return;const Q=(W=o.current.floatingContext)==null?void 0:W.nodeId,V=C?uxe(C.nodesRef.current,Q):[];if(!N&&(Y.stopPropagation(),V.length>0)){let j=!0;if(V.forEach(ee=>{var te;if((te=ee.context)!=null&&te.open&&!ee.context.dataRef.current.__escapeKeyBubbles){j=!1;return}}),!j)return}a(!1,Cvi(Y)?Y.nativeEvent:Y,"escape-key")}),$=UC(Y=>{var W;const Q=()=>{var V;U(Y),(V=fV(Y))==null||V.removeEventListener("keydown",Q)};(W=fV(Y))==null||W.addEventListener("keydown",Q)}),G=UC(Y=>{var W;const Q=o.current.insideReactTree;o.current.insideReactTree=!1;const V=I.current;if(I.current=!1,p==="click"&&V||Q||typeof k=="function"&&!k(Y))return;const j=fV(Y),ee="["+dce("inert")+"]",te=KC(s.floating).querySelectorAll(ee);let ne=yd(j)?j:null;for(;ne&&!P7(ne);){const ce=j7(ne);if(P7(ce)||!yd(ce))break;ne=ce}if(te.length&&yd(j)&&!Evi(j)&&!Bj(j,s.floating)&&Array.from(te).every(ce=>!Bj(ne,ce)))return;if(Fw(j)&&z){const ce=P7(j),be=gS(j),ve=/auto|scroll/,De=ce||ve.test(be.overflowX),ye=ce||ve.test(be.overflowY),Ee=De&&j.clientWidth>0&&j.scrollWidth>j.clientWidth,he=ye&&j.clientHeight>0&&j.scrollHeight>j.clientHeight,we=be.direction==="rtl",Ce=he&&(we?Y.offsetX<=j.offsetWidth-j.clientWidth:Y.offsetX>j.clientWidth),Ie=Ee&&Y.offsetY>j.clientHeight;if(Ce||Ie)return}const se=(W=o.current.floatingContext)==null?void 0:W.nodeId,ie=C&&uxe(C.nodesRef.current,se).some(ce=>{var be;return Htt(Y,(be=ce.context)==null?void 0:be.elements.floating)});if(Htt(Y,s.floating)||Htt(Y,s.domReference)||ie)return;const ge=C?uxe(C.nodesRef.current,se):[];if(ge.length>0){let ce=!0;if(ge.forEach(be=>{var ve;if((ve=be.context)!=null&&ve.open&&!be.context.dataRef.current.__outsidePressBubbles){ce=!1;return}}),!ce)return}a(!1,Y,"outside-press")}),B=UC(Y=>{var W;const Q=()=>{var V;G(Y),(V=fV(Y))==null||V.removeEventListener(p,Q)};(W=fV(Y))==null||W.addEventListener(p,Q)});ue.useEffect(()=>{if(!r||!u)return;o.current.__escapeKeyBubbles=N,o.current.__outsidePressBubbles=L;let Y=-1;function W(te){a(!1,te,"ancestor-scroll")}function Q(){window.clearTimeout(Y),F.current=!0}function V(){Y=window.setTimeout(()=>{F.current=!1},H5e()?5:0)}const j=KC(s.floating);h&&(j.addEventListener("keydown",P?$:U,P),j.addEventListener("compositionstart",Q),j.addEventListener("compositionend",V)),k&&j.addEventListener(p,M?B:G,M);let ee=[];return _&&(yd(s.domReference)&&(ee=wO(s.domReference)),yd(s.floating)&&(ee=ee.concat(wO(s.floating))),!yd(s.reference)&&s.reference&&s.reference.contextElement&&(ee=ee.concat(wO(s.reference.contextElement)))),ee=ee.filter(te=>{var ne;return te!==((ne=j.defaultView)==null?void 0:ne.visualViewport)}),ee.forEach(te=>{te.addEventListener("scroll",W,{passive:!0})}),()=>{h&&(j.removeEventListener("keydown",P?$:U,P),j.removeEventListener("compositionstart",Q),j.removeEventListener("compositionend",V)),k&&j.removeEventListener(p,M?B:G,M),ee.forEach(te=>{te.removeEventListener("scroll",W)}),window.clearTimeout(Y)}},[o,s,h,k,p,r,a,_,u,N,L,U,P,$,G,M,B]),ue.useEffect(()=>{o.current.insideReactTree=!1},[o,k,p]);const Z=ue.useMemo(()=>({onKeyDown:U,...m&&{[Wvi[b]]:Y=>{a(!1,Y.nativeEvent,"reference-press")},...b!=="click"&&{onClick(Y){a(!1,Y.nativeEvent,"reference-press")}}}}),[U,a,m,b]),z=ue.useMemo(()=>({onKeyDown:U,onMouseDown(){I.current=!0},onMouseUp(){I.current=!0},[Kvi[p]]:()=>{o.current.insideReactTree=!0}}),[U,p,o]);return ue.useMemo(()=>u?{reference:Z,floating:z}:{},[u,Z,z])}function Xvi(e){const{open:t=!1,onOpenChange:r,elements:a}=e,s=dpt(),o=ue.useRef({}),[u]=ue.useState(()=>Uvi()),h=fpt()!=null,[f,p]=ue.useState(a.reference),m=UC((w,S,C)=>{o.current.openEvent=w?S:void 0,u.emit("openchange",{open:w,event:S,reason:C,nested:h}),r==null||r(w,S,C)}),b=ue.useMemo(()=>({setPositionReference:p}),[]),_=ue.useMemo(()=>({reference:f||a.reference||null,floating:a.floating||null,domReference:a.reference}),[f,a.reference,a.floating]);return ue.useMemo(()=>({dataRef:o,open:t,onOpenChange:m,elements:_,events:u,floatingId:s,refs:b}),[t,m,_,u,s,b])}function p5a(e){e===void 0&&(e={});const{nodeId:t}=e,r=Xvi({...e,elements:{reference:null,floating:null,...e.elements}}),a=e.rootContext||r,s=a.elements,[o,u]=ue.useState(null),[h,f]=ue.useState(null),m=(s==null?void 0:s.domReference)||o,b=ue.useRef(null),_=ppt();X3(()=>{m&&(b.current=m)},[m]);const w=Zdt({...e,elements:{...s,...h&&{reference:h}}}),S=ue.useCallback(N=>{const L=yd(N)?{getBoundingClientRect:()=>N.getBoundingClientRect(),getClientRects:()=>N.getClientRects(),contextElement:N}:N;f(L),w.refs.setReference(L)},[w.refs]),C=ue.useCallback(N=>{(yd(N)||N===null)&&(b.current=N,u(N)),(yd(w.refs.reference.current)||w.refs.reference.current===null||N!==null&&!yd(N))&&w.refs.setReference(N)},[w.refs]),A=ue.useMemo(()=>({...w.refs,setReference:C,setPositionReference:S,domReference:b}),[w.refs,C,S]),k=ue.useMemo(()=>({...w.elements,domReference:m}),[w.elements,m]),I=ue.useMemo(()=>({...w,...a,refs:A,elements:k,nodeId:t}),[w,A,k,t,a]);return X3(()=>{a.dataRef.current.floatingContext=I;const N=_==null?void 0:_.nodesRef.current.find(L=>L.id===t);N&&(N.context=I)}),ue.useMemo(()=>({...w,context:I,refs:A,elements:k}),[w,A,k,I])}function Wtt(){return vvi()&&hUn()}function g5a(e,t){t===void 0&&(t={});const{open:r,onOpenChange:a,events:s,dataRef:o,elements:u}=e,{enabled:h=!0,visibleOnly:f=!0}=t,p=ue.useRef(!1),m=ue.useRef(-1),b=ue.useRef(!0);ue.useEffect(()=>{if(!h)return;const w=X2(u.domReference);function S(){!r&&Fw(u.domReference)&&u.domReference===Elt(KC(u.domReference))&&(p.current=!0)}function C(){b.current=!0}function A(){b.current=!1}return w.addEventListener("blur",S),Wtt()&&(w.addEventListener("keydown",C,!0),w.addEventListener("pointerdown",A,!0)),()=>{w.removeEventListener("blur",S),Wtt()&&(w.removeEventListener("keydown",C,!0),w.removeEventListener("pointerdown",A,!0))}},[u.domReference,r,h]),ue.useEffect(()=>{if(!h)return;function w(S){let{reason:C}=S;(C==="reference-press"||C==="escape-key")&&(p.current=!0)}return s.on("openchange",w),()=>{s.off("openchange",w)}},[s,h]),ue.useEffect(()=>()=>{zx(m)},[]);const _=ue.useMemo(()=>({onMouseLeave(){p.current=!1},onFocus(w){if(p.current)return;const S=fV(w.nativeEvent);if(f&&yd(S)){if(Wtt()&&!w.relatedTarget){if(!b.current&&!xvi(S))return}else if(!Svi(S))return}a(!0,w.nativeEvent,"focus")},onBlur(w){p.current=!1;const S=w.relatedTarget,C=w.nativeEvent,A=yd(S)&&S.hasAttribute(dce("focus-guard"))&&S.getAttribute("data-type")==="outside";m.current=window.setTimeout(()=>{var k;const I=Elt(u.domReference?u.domReference.ownerDocument:document);!S&&I===u.domReference||Bj((k=o.current.floatingContext)==null?void 0:k.refs.floating.current,I)||Bj(u.domReference,I)||A||a(!1,C,"focus")})}}),[o,u.domReference,a,f]);return ue.useMemo(()=>h?{reference:_}:{},[h,_])}function Ktt(e,t,r){const a=new Map,s=r==="item";let o=e;if(s&&e){const{[t2n]:u,[n2n]:h,...f}=e;o=f}return{...r==="floating"&&{tabIndex:-1,[Mvi]:""},...o,...t.map(u=>{const h=u?u[r]:null;return typeof h=="function"?e?h(e):null:h}).concat(e).reduce((u,h)=>(h&&Object.entries(h).forEach(f=>{let[p,m]=f;if(!(s&&[t2n,n2n].includes(p)))if(p.indexOf("on")===0){if(a.has(p)||a.set(p,[]),typeof m=="function"){var b;(b=a.get(p))==null||b.push(m),u[p]=function(){for(var _,w=arguments.length,S=new Array(w),C=0;CA(...S)).find(A=>A!==void 0)}}}else u[p]=m}),u),{})}}function m5a(e){e===void 0&&(e=[]);const t=e.map(h=>h==null?void 0:h.reference),r=e.map(h=>h==null?void 0:h.floating),a=e.map(h=>h==null?void 0:h.item),s=ue.useCallback(h=>Ktt(h,e,"reference"),t),o=ue.useCallback(h=>Ktt(h,e,"floating"),r),u=ue.useCallback(h=>Ktt(h,e,"item"),a);return ue.useMemo(()=>({getReferenceProps:s,getFloatingProps:o,getItemProps:u}),[s,o,u])}const Qvi=new Map([["select","listbox"],["combobox","listbox"],["label",!1]]);function b5a(e,t){var r,a;t===void 0&&(t={});const{open:s,elements:o,floatingId:u}=e,{enabled:h=!0,role:f="dialog"}=t,p=dpt(),m=((r=o.domReference)==null?void 0:r.id)||p,b=ue.useMemo(()=>{var I;return((I=Tvi(o.floating))==null?void 0:I.id)||u},[o.floating,u]),_=(a=Qvi.get(f))!=null?a:f,S=fpt()!=null,C=ue.useMemo(()=>_==="tooltip"||f==="label"?{["aria-"+(f==="label"?"labelledby":"describedby")]:s?b:void 0}:{"aria-expanded":s?"true":"false","aria-haspopup":_==="alertdialog"?"dialog":_,"aria-controls":s?b:void 0,..._==="listbox"&&{role:"combobox"},..._==="menu"&&{id:m},..._==="menu"&&S&&{role:"menuitem"},...f==="select"&&{"aria-autocomplete":"none"},...f==="combobox"&&{"aria-autocomplete":"list"}},[_,b,S,s,m,f]),A=ue.useMemo(()=>{const I={id:b,..._&&{role:_}};return _==="tooltip"||f==="label"?I:{...I,..._==="menu"&&{"aria-labelledby":m}}},[_,b,m,f]),k=ue.useCallback(I=>{let{active:N,selected:L}=I;const P={role:"option",...N&&{id:b+"-fui-option"}};switch(f){case"select":case"combobox":return{...P,"aria-selected":L}}return{}},[b,f]);return ue.useMemo(()=>h?{reference:C,floating:A,item:k}:{},[h,C,A,k])}var gpt={};(function(e){(function(t){t(typeof DO_NOT_EXPORT_CRC>"u"?e:{})})(function(t){t.version="0.3.0";function r(){for(var p=0,m=new Array(256),b=0;b!=256;++b)p=b,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,p=p&1?-306674912^p>>>1:p>>>1,m[b]=p;return typeof Int32Array<"u"?new Int32Array(m):m}var a=r(),s=typeof Buffer<"u";function o(p){if(p.length>32768&&s)return h(new Buffer(p));for(var m=-1,b=p.length-1,_=0;_>>8,m=a[(m^p.charCodeAt(_++))&255]^m>>>8;return _===b&&(m=m>>>8^a[(m^p.charCodeAt(_))&255]),m^-1}function u(p){if(p.length>1e4)return h(p);for(var m=-1,b=0,_=p.length-3;b<_;)m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255];for(;b<_+3;)m=m>>>8^a[(m^p[b++])&255];return m^-1}function h(p){for(var m=-1,b=0,_=p.length-7;b<_;)m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255],m=m>>>8^a[(m^p[b++])&255];for(;b<_+7;)m=m>>>8^a[(m^p[b++])&255];return m^-1}function f(p){for(var m=-1,b=0,_=p.length,w,S;b<_;)w=p.charCodeAt(b++),w<128?m=m>>>8^a[(m^w)&255]:w<2048?(m=m>>>8^a[(m^(192|w>>6&31))&255],m=m>>>8^a[(m^(128|w&63))&255]):w>=55296&&w<57344?(w=(w&1023)+64,S=p.charCodeAt(b++)&1023,m=m>>>8^a[(m^(240|w>>8&7))&255],m=m>>>8^a[(m^(128|w>>2&63))&255],m=m>>>8^a[(m^(128|S>>6&15|w&3))&255],m=m>>>8^a[(m^(128|S&63))&255]):(m=m>>>8^a[(m^(224|w>>12&15))&255],m=m>>>8^a[(m^(128|w>>6&63))&255],m=m>>>8^a[(m^(128|w&63))&255]);return m^-1}t.table=a,t.bstr=o,t.buf=u,t.str=f})})(gpt);var Zvi=gpt,Jvi=n2i,kC=new Uint8Array(4),e2i=new Int32Array(kC.buffer),t2i=new Uint32Array(kC.buffer);function n2i(e){if(e[0]!==137)throw new Error("Invalid .png file header");if(e[1]!==80)throw new Error("Invalid .png file header");if(e[2]!==78)throw new Error("Invalid .png file header");if(e[3]!==71)throw new Error("Invalid .png file header");if(e[4]!==13)throw new Error("Invalid .png file header: possibly caused by DOS-Unix line ending conversion?");if(e[5]!==10)throw new Error("Invalid .png file header: possibly caused by DOS-Unix line ending conversion?");if(e[6]!==26)throw new Error("Invalid .png file header");if(e[7]!==10)throw new Error("Invalid .png file header: possibly caused by DOS-Unix line ending conversion?");for(var t=!1,r=[],a=8;a=80)throw new Error('Keyword "'+e+'" is longer than the 79-character limit imposed by the PNG specification');for(var r=e.length+t.length+1,a=new Uint8Array(r),s=0,o,u=0;uo;)a[s-o]=e[s];return a},l2i=o2i,c2i=gpt,u2i=f2i,RC=new Uint8Array(4),h2i=new Int32Array(RC.buffer),d2i=new Uint32Array(RC.buffer);function f2i(e){var t=8,r=t,a;for(a=0;a=0;)e[t]=0}const m2i=0,mUn=1,b2i=2,y2i=3,v2i=258,mpt=29,fce=256,koe=fce+1+mpt,ZV=30,bpt=19,bUn=2*koe+1,rF=15,Xtt=16,_2i=7,ypt=256,yUn=16,vUn=17,_Un=18,Slt=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),hxe=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),w2i=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),wUn=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),E2i=512,d7=new Array((koe+2)*2);UW(d7);const bse=new Array(ZV*2);UW(bse);const Roe=new Array(E2i);UW(Roe);const Ioe=new Array(v2i-y2i+1);UW(Ioe);const vpt=new Array(mpt);UW(vpt);const E3e=new Array(ZV);UW(E3e);function Qtt(e,t,r,a,s){this.static_tree=e,this.extra_bits=t,this.extra_base=r,this.elems=a,this.max_length=s,this.has_stree=e&&e.length}let EUn,xUn,SUn;function Ztt(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}const TUn=e=>e<256?Roe[e]:Roe[256+(e>>>7)],Noe=(e,t)=>{e.pending_buf[e.pending++]=t&255,e.pending_buf[e.pending++]=t>>>8&255},j2=(e,t,r)=>{e.bi_valid>Xtt-r?(e.bi_buf|=t<>Xtt-e.bi_valid,e.bi_valid+=r-Xtt):(e.bi_buf|=t<{j2(e,r[t*2],r[t*2+1])},CUn=(e,t)=>{let r=0;do r|=e&1,e>>>=1,r<<=1;while(--t>0);return r>>>1},x2i=e=>{e.bi_valid===16?(Noe(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):e.bi_valid>=8&&(e.pending_buf[e.pending++]=e.bi_buf&255,e.bi_buf>>=8,e.bi_valid-=8)},S2i=(e,t)=>{const r=t.dyn_tree,a=t.max_code,s=t.stat_desc.static_tree,o=t.stat_desc.has_stree,u=t.stat_desc.extra_bits,h=t.stat_desc.extra_base,f=t.stat_desc.max_length;let p,m,b,_,w,S,C=0;for(_=0;_<=rF;_++)e.bl_count[_]=0;for(r[e.heap[e.heap_max]*2+1]=0,p=e.heap_max+1;pf&&(_=f,C++),r[m*2+1]=_,!(m>a)&&(e.bl_count[_]++,w=0,m>=h&&(w=u[m-h]),S=r[m*2],e.opt_len+=S*(_+w),o&&(e.static_len+=S*(s[m*2+1]+w)));if(C!==0){do{for(_=f-1;e.bl_count[_]===0;)_--;e.bl_count[_]--,e.bl_count[_+1]+=2,e.bl_count[f]--,C-=2}while(C>0);for(_=f;_!==0;_--)for(m=e.bl_count[_];m!==0;)b=e.heap[--p],!(b>a)&&(r[b*2+1]!==_&&(e.opt_len+=(_-r[b*2+1])*r[b*2],r[b*2+1]=_),m--)}},AUn=(e,t,r)=>{const a=new Array(rF+1);let s=0,o,u;for(o=1;o<=rF;o++)a[o]=s=s+r[o-1]<<1;for(u=0;u<=t;u++){let h=e[u*2+1];h!==0&&(e[u*2]=CUn(a[h]++,h))}},T2i=()=>{let e,t,r,a,s;const o=new Array(rF+1);for(r=0,a=0;a>=7;a{let t;for(t=0;t{e.bi_valid>8?Noe(e,e.bi_buf):e.bi_valid>0&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0},C2i=(e,t,r,a)=>{RUn(e),Noe(e,r),Noe(e,~r),e.pending_buf.set(e.window.subarray(t,t+r),e.pending),e.pending+=r},d2n=(e,t,r,a)=>{const s=t*2,o=r*2;return e[s]{const a=e.heap[r];let s=r<<1;for(;s<=e.heap_len&&(s{let a,s,o=0,u,h;if(e.last_lit!==0)do a=e.pending_buf[e.d_buf+o*2]<<8|e.pending_buf[e.d_buf+o*2+1],s=e.pending_buf[e.l_buf+o],o++,a===0?zC(e,s,t):(u=Ioe[s],zC(e,u+fce+1,t),h=Slt[u],h!==0&&(s-=vpt[u],j2(e,s,h)),a--,u=TUn(a),zC(e,u,r),h=hxe[u],h!==0&&(a-=E3e[u],j2(e,a,h)));while(o{const r=t.dyn_tree,a=t.stat_desc.static_tree,s=t.stat_desc.has_stree,o=t.stat_desc.elems;let u,h,f=-1,p;for(e.heap_len=0,e.heap_max=bUn,u=0;u>1;u>=1;u--)Jtt(e,r,u);p=o;do u=e.heap[1],e.heap[1]=e.heap[e.heap_len--],Jtt(e,r,1),h=e.heap[1],e.heap[--e.heap_max]=u,e.heap[--e.heap_max]=h,r[p*2]=r[u*2]+r[h*2],e.depth[p]=(e.depth[u]>=e.depth[h]?e.depth[u]:e.depth[h])+1,r[u*2+1]=r[h*2+1]=p,e.heap[1]=p++,Jtt(e,r,1);while(e.heap_len>=2);e.heap[--e.heap_max]=e.heap[1],S2i(e,t),AUn(r,f,e.bl_count)},p2n=(e,t,r)=>{let a,s=-1,o,u=t[0*2+1],h=0,f=7,p=4;for(u===0&&(f=138,p=3),t[(r+1)*2+1]=65535,a=0;a<=r;a++)o=u,u=t[(a+1)*2+1],!(++h{let a,s=-1,o,u=t[0*2+1],h=0,f=7,p=4;for(u===0&&(f=138,p=3),a=0;a<=r;a++)if(o=u,u=t[(a+1)*2+1],!(++h{let t;for(p2n(e,e.dyn_ltree,e.l_desc.max_code),p2n(e,e.dyn_dtree,e.d_desc.max_code),Tlt(e,e.bl_desc),t=bpt-1;t>=3&&e.bl_tree[wUn[t]*2+1]===0;t--);return e.opt_len+=3*(t+1)+5+5+4,t},k2i=(e,t,r,a)=>{let s;for(j2(e,t-257,5),j2(e,r-1,5),j2(e,a-4,4),s=0;s{let t=4093624447,r;for(r=0;r<=31;r++,t>>>=1)if(t&1&&e.dyn_ltree[r*2]!==0)return u2n;if(e.dyn_ltree[9*2]!==0||e.dyn_ltree[10*2]!==0||e.dyn_ltree[13*2]!==0)return h2n;for(r=32;r{m2n||(T2i(),m2n=!0),e.l_desc=new Ztt(e.dyn_ltree,EUn),e.d_desc=new Ztt(e.dyn_dtree,xUn),e.bl_desc=new Ztt(e.bl_tree,SUn),e.bi_buf=0,e.bi_valid=0,kUn(e)},IUn=(e,t,r,a)=>{j2(e,(m2i<<1)+(a?1:0),3),C2i(e,t,r)},N2i=e=>{j2(e,mUn<<1,3),zC(e,ypt,d7),x2i(e)},O2i=(e,t,r,a)=>{let s,o,u=0;e.level>0?(e.strm.data_type===g2i&&(e.strm.data_type=R2i(e)),Tlt(e,e.l_desc),Tlt(e,e.d_desc),u=A2i(e),s=e.opt_len+3+7>>>3,o=e.static_len+3+7>>>3,o<=s&&(s=o)):s=o=r+5,r+4<=s&&t!==-1?IUn(e,t,r,a):e.strategy===p2i||o===s?(j2(e,(mUn<<1)+(a?1:0),3),f2n(e,d7,bse)):(j2(e,(b2i<<1)+(a?1:0),3),k2i(e,e.l_desc.max_code+1,e.d_desc.max_code+1,u+1),f2n(e,e.dyn_ltree,e.dyn_dtree)),kUn(e),a&&RUn(e)},L2i=(e,t,r)=>(e.pending_buf[e.d_buf+e.last_lit*2]=t>>>8&255,e.pending_buf[e.d_buf+e.last_lit*2+1]=t&255,e.pending_buf[e.l_buf+e.last_lit]=r&255,e.last_lit++,t===0?e.dyn_ltree[r*2]++:(e.matches++,t--,e.dyn_ltree[(Ioe[r]+fce+1)*2]++,e.dyn_dtree[TUn(t)*2]++),e.last_lit===e.lit_bufsize-1);var D2i=I2i,M2i=IUn,P2i=O2i,B2i=L2i,F2i=N2i,$2i={_tr_init:D2i,_tr_stored_block:M2i,_tr_flush_block:P2i,_tr_tally:B2i,_tr_align:F2i};const U2i=(e,t,r,a)=>{let s=e&65535|0,o=e>>>16&65535|0,u=0;for(;r!==0;){u=r>2e3?2e3:r,r-=u;do s=s+t[a++]|0,o=o+s|0;while(--u);s%=65521,o%=65521}return s|o<<16|0};var Ooe=U2i;const z2i=()=>{let e,t=[];for(var r=0;r<256;r++){e=r;for(var a=0;a<8;a++)e=e&1?3988292384^e>>>1:e>>>1;t[r]=e}return t},G2i=new Uint32Array(z2i()),q2i=(e,t,r,a)=>{const s=G2i,o=a+r;e^=-1;for(let u=a;u>>8^s[(e^t[u])&255];return e^-1};var Eg=q2i,qF={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},DAe={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:H2i,_tr_stored_block:V2i,_tr_flush_block:Y2i,_tr_tally:kO,_tr_align:j2i}=$2i,{Z_NO_FLUSH:D$,Z_PARTIAL_FLUSH:W2i,Z_FULL_FLUSH:K2i,Z_FINISH:RO,Z_BLOCK:b2n,Z_OK:GC,Z_STREAM_END:y2n,Z_STREAM_ERROR:hS,Z_DATA_ERROR:X2i,Z_BUF_ERROR:ent,Z_DEFAULT_COMPRESSION:Q2i,Z_FILTERED:Z2i,Z_HUFFMAN_ONLY:lwe,Z_RLE:J2i,Z_FIXED:e_i,Z_DEFAULT_STRATEGY:t_i,Z_UNKNOWN:n_i,Z_DEFLATED:MAe}=DAe,r_i=9,i_i=15,a_i=8,s_i=29,o_i=256,Clt=o_i+1+s_i,l_i=30,c_i=19,u_i=2*Clt+1,h_i=15,kc=3,fO=258,Q3=fO+kc+1,d_i=32,PAe=42,Alt=69,dxe=73,fxe=91,pxe=103,iF=113,zie=666,Ap=1,pce=2,HF=3,zW=4,f_i=3,pO=(e,t)=>(e.msg=qF[t],t),v2n=e=>(e<<1)-(e>4?9:0),tO=e=>{let t=e.length;for(;--t>=0;)e[t]=0};let p_i=(e,t,r)=>(t<{const t=e.state;let r=t.pending;r>e.avail_out&&(r=e.avail_out),r!==0&&(e.output.set(t.pending_buf.subarray(t.pending_out,t.pending_out+r),e.next_out),e.next_out+=r,t.pending_out+=r,e.total_out+=r,e.avail_out-=r,t.pending-=r,t.pending===0&&(t.pending_out=0))},xm=(e,t)=>{Y2i(e,e.block_start>=0?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,YN(e.strm)},lu=(e,t)=>{e.pending_buf[e.pending++]=t},Yre=(e,t)=>{e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=t&255},g_i=(e,t,r,a)=>{let s=e.avail_in;return s>a&&(s=a),s===0?0:(e.avail_in-=s,t.set(e.input.subarray(e.next_in,e.next_in+s),r),e.state.wrap===1?e.adler=Ooe(e.adler,t,s,r):e.state.wrap===2&&(e.adler=Eg(e.adler,t,s,r)),e.next_in+=s,e.total_in+=s,s)},NUn=(e,t)=>{let r=e.max_chain_length,a=e.strstart,s,o,u=e.prev_length,h=e.nice_match;const f=e.strstart>e.w_size-Q3?e.strstart-(e.w_size-Q3):0,p=e.window,m=e.w_mask,b=e.prev,_=e.strstart+fO;let w=p[a+u-1],S=p[a+u];e.prev_length>=e.good_match&&(r>>=2),h>e.lookahead&&(h=e.lookahead);do if(s=t,!(p[s+u]!==S||p[s+u-1]!==w||p[s]!==p[a]||p[++s]!==p[a+1])){a+=2,s++;do;while(p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&p[++a]===p[++s]&&a<_);if(o=fO-(_-a),a=_-fO,o>u){if(e.match_start=t,u=o,o>=h)break;w=p[a+u-1],S=p[a+u]}}while((t=b[t&m])>f&&--r!==0);return u<=e.lookahead?u:e.lookahead},VF=e=>{const t=e.w_size;let r,a,s,o,u;do{if(o=e.window_size-e.lookahead-e.strstart,e.strstart>=t+(t-Q3)){e.window.set(e.window.subarray(t,t+t),0),e.match_start-=t,e.strstart-=t,e.block_start-=t,a=e.hash_size,r=a;do s=e.head[--r],e.head[r]=s>=t?s-t:0;while(--a);a=t,r=a;do s=e.prev[--r],e.prev[r]=s>=t?s-t:0;while(--a);o+=t}if(e.strm.avail_in===0)break;if(a=g_i(e.strm,e.window,e.strstart+e.lookahead,o),e.lookahead+=a,e.lookahead+e.insert>=kc)for(u=e.strstart-e.insert,e.ins_h=e.window[u],e.ins_h=IO(e,e.ins_h,e.window[u+1]);e.insert&&(e.ins_h=IO(e,e.ins_h,e.window[u+kc-1]),e.prev[u&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=u,u++,e.insert--,!(e.lookahead+e.insert{let r=65535;for(r>e.pending_buf_size-5&&(r=e.pending_buf_size-5);;){if(e.lookahead<=1){if(VF(e),e.lookahead===0&&t===D$)return Ap;if(e.lookahead===0)break}e.strstart+=e.lookahead,e.lookahead=0;const a=e.block_start+r;if((e.strstart===0||e.strstart>=a)&&(e.lookahead=e.strstart-a,e.strstart=a,xm(e,!1),e.strm.avail_out===0)||e.strstart-e.block_start>=e.w_size-Q3&&(xm(e,!1),e.strm.avail_out===0))return Ap}return e.insert=0,t===RO?(xm(e,!0),e.strm.avail_out===0?HF:zW):(e.strstart>e.block_start&&(xm(e,!1),e.strm.avail_out===0),Ap)},tnt=(e,t)=>{let r,a;for(;;){if(e.lookahead=kc&&(e.ins_h=IO(e,e.ins_h,e.window[e.strstart+kc-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),r!==0&&e.strstart-r<=e.w_size-Q3&&(e.match_length=NUn(e,r)),e.match_length>=kc)if(a=kO(e,e.strstart-e.match_start,e.match_length-kc),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=kc){e.match_length--;do e.strstart++,e.ins_h=IO(e,e.ins_h,e.window[e.strstart+kc-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart;while(--e.match_length!==0);e.strstart++}else e.strstart+=e.match_length,e.match_length=0,e.ins_h=e.window[e.strstart],e.ins_h=IO(e,e.ins_h,e.window[e.strstart+1]);else a=kO(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++;if(a&&(xm(e,!1),e.strm.avail_out===0))return Ap}return e.insert=e.strstart{let r,a,s;for(;;){if(e.lookahead=kc&&(e.ins_h=IO(e,e.ins_h,e.window[e.strstart+kc-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),e.prev_length=e.match_length,e.prev_match=e.match_start,e.match_length=kc-1,r!==0&&e.prev_length4096)&&(e.match_length=kc-1)),e.prev_length>=kc&&e.match_length<=e.prev_length){s=e.strstart+e.lookahead-kc,a=kO(e,e.strstart-1-e.prev_match,e.prev_length-kc),e.lookahead-=e.prev_length-1,e.prev_length-=2;do++e.strstart<=s&&(e.ins_h=IO(e,e.ins_h,e.window[e.strstart+kc-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart);while(--e.prev_length!==0);if(e.match_available=0,e.match_length=kc-1,e.strstart++,a&&(xm(e,!1),e.strm.avail_out===0))return Ap}else if(e.match_available){if(a=kO(e,0,e.window[e.strstart-1]),a&&xm(e,!1),e.strstart++,e.lookahead--,e.strm.avail_out===0)return Ap}else e.match_available=1,e.strstart++,e.lookahead--}return e.match_available&&(a=kO(e,0,e.window[e.strstart-1]),e.match_available=0),e.insert=e.strstart{let r,a,s,o;const u=e.window;for(;;){if(e.lookahead<=fO){if(VF(e),e.lookahead<=fO&&t===D$)return Ap;if(e.lookahead===0)break}if(e.match_length=0,e.lookahead>=kc&&e.strstart>0&&(s=e.strstart-1,a=u[s],a===u[++s]&&a===u[++s]&&a===u[++s])){o=e.strstart+fO;do;while(a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&a===u[++s]&&se.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=kc?(r=kO(e,1,e.match_length-kc),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(r=kO(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),r&&(xm(e,!1),e.strm.avail_out===0))return Ap}return e.insert=0,t===RO?(xm(e,!0),e.strm.avail_out===0?HF:zW):e.last_lit&&(xm(e,!1),e.strm.avail_out===0)?Ap:pce},y_i=(e,t)=>{let r;for(;;){if(e.lookahead===0&&(VF(e),e.lookahead===0)){if(t===D$)return Ap;break}if(e.match_length=0,r=kO(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,r&&(xm(e,!1),e.strm.avail_out===0))return Ap}return e.insert=0,t===RO?(xm(e,!0),e.strm.avail_out===0?HF:zW):e.last_lit&&(xm(e,!1),e.strm.avail_out===0)?Ap:pce};function gC(e,t,r,a,s){this.good_length=e,this.max_lazy=t,this.nice_length=r,this.max_chain=a,this.func=s}const Gie=[new gC(0,0,0,0,m_i),new gC(4,4,8,4,tnt),new gC(4,5,16,8,tnt),new gC(4,6,32,32,tnt),new gC(4,4,16,16,zH),new gC(8,16,32,32,zH),new gC(8,16,128,128,zH),new gC(8,32,128,256,zH),new gC(32,128,258,1024,zH),new gC(32,258,258,4096,zH)],v_i=e=>{e.window_size=2*e.w_size,tO(e.head),e.max_lazy_match=Gie[e.level].max_lazy,e.good_match=Gie[e.level].good_length,e.nice_match=Gie[e.level].nice_length,e.max_chain_length=Gie[e.level].max_chain,e.strstart=0,e.block_start=0,e.lookahead=0,e.insert=0,e.match_length=e.prev_length=kc-1,e.match_available=0,e.ins_h=0};function __i(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=MAe,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(u_i*2),this.dyn_dtree=new Uint16Array((2*l_i+1)*2),this.bl_tree=new Uint16Array((2*c_i+1)*2),tO(this.dyn_ltree),tO(this.dyn_dtree),tO(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(h_i+1),this.heap=new Uint16Array(2*Clt+1),tO(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(2*Clt+1),tO(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const OUn=e=>{if(!e||!e.state)return pO(e,hS);e.total_in=e.total_out=0,e.data_type=n_i;const t=e.state;return t.pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=t.wrap?PAe:iF,e.adler=t.wrap===2?0:1,t.last_flush=D$,H2i(t),GC},LUn=e=>{const t=OUn(e);return t===GC&&v_i(e.state),t},w_i=(e,t)=>!e||!e.state||e.state.wrap!==2?hS:(e.state.gzhead=t,GC),DUn=(e,t,r,a,s,o)=>{if(!e)return hS;let u=1;if(t===Q2i&&(t=6),a<0?(u=0,a=-a):a>15&&(u=2,a-=16),s<1||s>r_i||r!==MAe||a<8||a>15||t<0||t>9||o<0||o>e_i)return pO(e,hS);a===8&&(a=9);const h=new __i;return e.state=h,h.strm=e,h.wrap=u,h.gzhead=null,h.w_bits=a,h.w_size=1<DUn(e,t,MAe,i_i,a_i,t_i),x_i=(e,t)=>{let r,a;if(!e||!e.state||t>b2n||t<0)return e?pO(e,hS):hS;const s=e.state;if(!e.output||!e.input&&e.avail_in!==0||s.status===zie&&t!==RO)return pO(e,e.avail_out===0?ent:hS);s.strm=e;const o=s.last_flush;if(s.last_flush=t,s.status===PAe)if(s.wrap===2)e.adler=0,lu(s,31),lu(s,139),lu(s,8),s.gzhead?(lu(s,(s.gzhead.text?1:0)+(s.gzhead.hcrc?2:0)+(s.gzhead.extra?4:0)+(s.gzhead.name?8:0)+(s.gzhead.comment?16:0)),lu(s,s.gzhead.time&255),lu(s,s.gzhead.time>>8&255),lu(s,s.gzhead.time>>16&255),lu(s,s.gzhead.time>>24&255),lu(s,s.level===9?2:s.strategy>=lwe||s.level<2?4:0),lu(s,s.gzhead.os&255),s.gzhead.extra&&s.gzhead.extra.length&&(lu(s,s.gzhead.extra.length&255),lu(s,s.gzhead.extra.length>>8&255)),s.gzhead.hcrc&&(e.adler=Eg(e.adler,s.pending_buf,s.pending,0)),s.gzindex=0,s.status=Alt):(lu(s,0),lu(s,0),lu(s,0),lu(s,0),lu(s,0),lu(s,s.level===9?2:s.strategy>=lwe||s.level<2?4:0),lu(s,f_i),s.status=iF);else{let u=MAe+(s.w_bits-8<<4)<<8,h=-1;s.strategy>=lwe||s.level<2?h=0:s.level<6?h=1:s.level===6?h=2:h=3,u|=h<<6,s.strstart!==0&&(u|=d_i),u+=31-u%31,s.status=iF,Yre(s,u),s.strstart!==0&&(Yre(s,e.adler>>>16),Yre(s,e.adler&65535)),e.adler=1}if(s.status===Alt)if(s.gzhead.extra){for(r=s.pending;s.gzindex<(s.gzhead.extra.length&65535)&&!(s.pending===s.pending_buf_size&&(s.gzhead.hcrc&&s.pending>r&&(e.adler=Eg(e.adler,s.pending_buf,s.pending-r,r)),YN(e),r=s.pending,s.pending===s.pending_buf_size));)lu(s,s.gzhead.extra[s.gzindex]&255),s.gzindex++;s.gzhead.hcrc&&s.pending>r&&(e.adler=Eg(e.adler,s.pending_buf,s.pending-r,r)),s.gzindex===s.gzhead.extra.length&&(s.gzindex=0,s.status=dxe)}else s.status=dxe;if(s.status===dxe)if(s.gzhead.name){r=s.pending;do{if(s.pending===s.pending_buf_size&&(s.gzhead.hcrc&&s.pending>r&&(e.adler=Eg(e.adler,s.pending_buf,s.pending-r,r)),YN(e),r=s.pending,s.pending===s.pending_buf_size)){a=1;break}s.gzindexr&&(e.adler=Eg(e.adler,s.pending_buf,s.pending-r,r)),a===0&&(s.gzindex=0,s.status=fxe)}else s.status=fxe;if(s.status===fxe)if(s.gzhead.comment){r=s.pending;do{if(s.pending===s.pending_buf_size&&(s.gzhead.hcrc&&s.pending>r&&(e.adler=Eg(e.adler,s.pending_buf,s.pending-r,r)),YN(e),r=s.pending,s.pending===s.pending_buf_size)){a=1;break}s.gzindexr&&(e.adler=Eg(e.adler,s.pending_buf,s.pending-r,r)),a===0&&(s.status=pxe)}else s.status=pxe;if(s.status===pxe&&(s.gzhead.hcrc?(s.pending+2>s.pending_buf_size&&YN(e),s.pending+2<=s.pending_buf_size&&(lu(s,e.adler&255),lu(s,e.adler>>8&255),e.adler=0,s.status=iF)):s.status=iF),s.pending!==0){if(YN(e),e.avail_out===0)return s.last_flush=-1,GC}else if(e.avail_in===0&&v2n(t)<=v2n(o)&&t!==RO)return pO(e,ent);if(s.status===zie&&e.avail_in!==0)return pO(e,ent);if(e.avail_in!==0||s.lookahead!==0||t!==D$&&s.status!==zie){let u=s.strategy===lwe?y_i(s,t):s.strategy===J2i?b_i(s,t):Gie[s.level].func(s,t);if((u===HF||u===zW)&&(s.status=zie),u===Ap||u===HF)return e.avail_out===0&&(s.last_flush=-1),GC;if(u===pce&&(t===W2i?j2i(s):t!==b2n&&(V2i(s,0,0,!1),t===K2i&&(tO(s.head),s.lookahead===0&&(s.strstart=0,s.block_start=0,s.insert=0))),YN(e),e.avail_out===0))return s.last_flush=-1,GC}return t!==RO?GC:s.wrap<=0?y2n:(s.wrap===2?(lu(s,e.adler&255),lu(s,e.adler>>8&255),lu(s,e.adler>>16&255),lu(s,e.adler>>24&255),lu(s,e.total_in&255),lu(s,e.total_in>>8&255),lu(s,e.total_in>>16&255),lu(s,e.total_in>>24&255)):(Yre(s,e.adler>>>16),Yre(s,e.adler&65535)),YN(e),s.wrap>0&&(s.wrap=-s.wrap),s.pending!==0?GC:y2n)},S_i=e=>{if(!e||!e.state)return hS;const t=e.state.status;return t!==PAe&&t!==Alt&&t!==dxe&&t!==fxe&&t!==pxe&&t!==iF&&t!==zie?pO(e,hS):(e.state=null,t===iF?pO(e,X2i):GC)},T_i=(e,t)=>{let r=t.length;if(!e||!e.state)return hS;const a=e.state,s=a.wrap;if(s===2||s===1&&a.status!==PAe||a.lookahead)return hS;if(s===1&&(e.adler=Ooe(e.adler,t,r,0)),a.wrap=0,r>=a.w_size){s===0&&(tO(a.head),a.strstart=0,a.block_start=0,a.insert=0);let f=new Uint8Array(a.w_size);f.set(t.subarray(r-a.w_size,r),0),t=f,r=a.w_size}const o=e.avail_in,u=e.next_in,h=e.input;for(e.avail_in=r,e.next_in=0,e.input=t,VF(a);a.lookahead>=kc;){let f=a.strstart,p=a.lookahead-(kc-1);do a.ins_h=IO(a,a.ins_h,a.window[f+kc-1]),a.prev[f&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=f,f++;while(--p);a.strstart=f,a.lookahead=kc-1,VF(a)}return a.strstart+=a.lookahead,a.block_start=a.strstart,a.insert=a.lookahead,a.lookahead=0,a.match_length=a.prev_length=kc-1,a.match_available=0,e.next_in=u,e.input=h,e.avail_in=o,a.wrap=s,GC};var C_i=E_i,A_i=DUn,k_i=LUn,R_i=OUn,I_i=w_i,N_i=x_i,O_i=S_i,L_i=T_i,D_i="pako deflate (from Nodeca project)",yse={deflateInit:C_i,deflateInit2:A_i,deflateReset:k_i,deflateResetKeep:R_i,deflateSetHeader:I_i,deflate:N_i,deflateEnd:O_i,deflateSetDictionary:L_i,deflateInfo:D_i};const M_i=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var P_i=function(e){const t=Array.prototype.slice.call(arguments,1);for(;t.length;){const r=t.shift();if(r){if(typeof r!="object")throw new TypeError(r+"must be non-object");for(const a in r)M_i(r,a)&&(e[a]=r[a])}}return e},B_i=e=>{let t=0;for(let a=0,s=e.length;a=252?6:e>=248?5:e>=240?4:e>=224?3:e>=192?2:1;Loe[254]=Loe[254]=1;var F_i=e=>{let t,r,a,s,o,u=e.length,h=0;for(s=0;s>>6,t[o++]=128|r&63):r<65536?(t[o++]=224|r>>>12,t[o++]=128|r>>>6&63,t[o++]=128|r&63):(t[o++]=240|r>>>18,t[o++]=128|r>>>12&63,t[o++]=128|r>>>6&63,t[o++]=128|r&63);return t};const $_i=(e,t)=>{if(t<65534&&e.subarray&&MUn)return String.fromCharCode.apply(null,e.length===t?e:e.subarray(0,t));let r="";for(let a=0;a{let r,a;const s=t||e.length,o=new Array(s*2);for(a=0,r=0;r4){o[a++]=65533,r+=h-1;continue}for(u&=h===2?31:h===3?15:7;h>1&&r1){o[a++]=65533;continue}u<65536?o[a++]=u:(u-=65536,o[a++]=55296|u>>10&1023,o[a++]=56320|u&1023)}return $_i(o,a)},z_i=(e,t)=>{t=t||e.length,t>e.length&&(t=e.length);let r=t-1;for(;r>=0&&(e[r]&192)===128;)r--;return r<0||r===0?t:r+Loe[e[r]]>t?r:t},Doe={string2buf:F_i,buf2string:U_i,utf8border:z_i};function G_i(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}var PUn=G_i;const BUn=Object.prototype.toString,{Z_NO_FLUSH:q_i,Z_SYNC_FLUSH:H_i,Z_FULL_FLUSH:V_i,Z_FINISH:Y_i,Z_OK:x3e,Z_STREAM_END:j_i,Z_DEFAULT_COMPRESSION:W_i,Z_DEFAULT_STRATEGY:K_i,Z_DEFLATED:X_i}=DAe;function FAe(e){this.options=BAe.assign({level:W_i,method:X_i,chunkSize:16384,windowBits:15,memLevel:8,strategy:K_i},e||{});let t=this.options;t.raw&&t.windowBits>0?t.windowBits=-t.windowBits:t.gzip&&t.windowBits>0&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new PUn,this.strm.avail_out=0;let r=yse.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(r!==x3e)throw new Error(qF[r]);if(t.header&&yse.deflateSetHeader(this.strm,t.header),t.dictionary){let a;if(typeof t.dictionary=="string"?a=Doe.string2buf(t.dictionary):BUn.call(t.dictionary)==="[object ArrayBuffer]"?a=new Uint8Array(t.dictionary):a=t.dictionary,r=yse.deflateSetDictionary(this.strm,a),r!==x3e)throw new Error(qF[r]);this._dict_set=!0}}FAe.prototype.push=function(e,t){const r=this.strm,a=this.options.chunkSize;let s,o;if(this.ended)return!1;for(t===~~t?o=t:o=t===!0?Y_i:q_i,typeof e=="string"?r.input=Doe.string2buf(e):BUn.call(e)==="[object ArrayBuffer]"?r.input=new Uint8Array(e):r.input=e,r.next_in=0,r.avail_in=r.input.length;;){if(r.avail_out===0&&(r.output=new Uint8Array(a),r.next_out=0,r.avail_out=a),(o===H_i||o===V_i)&&r.avail_out<=6){this.onData(r.output.subarray(0,r.next_out)),r.avail_out=0;continue}if(s=yse.deflate(r,o),s===j_i)return r.next_out>0&&this.onData(r.output.subarray(0,r.next_out)),s=yse.deflateEnd(this.strm),this.onEnd(s),this.ended=!0,s===x3e;if(r.avail_out===0){this.onData(r.output);continue}if(o>0&&r.next_out>0){this.onData(r.output.subarray(0,r.next_out)),r.avail_out=0;continue}if(r.avail_in===0)break}return!0};FAe.prototype.onData=function(e){this.chunks.push(e)};FAe.prototype.onEnd=function(e){e===x3e&&(this.result=BAe.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg};function Q_i(e,t){const r=new FAe(t);if(r.push(e,!0),r.err)throw r.msg||qF[r.err];return r.result}var Z_i=Q_i,J_i={deflate:Z_i};const cwe=30,ewi=12;var twi=function(t,r){let a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I,N,L,P,M,F,U,$,G;const B=t.state;a=t.next_in,$=t.input,s=a+(t.avail_in-5),o=t.next_out,G=t.output,u=o-(r-t.avail_out),h=o+(t.avail_out-257),f=B.dmax,p=B.wsize,m=B.whave,b=B.wnext,_=B.window,w=B.hold,S=B.bits,C=B.lencode,A=B.distcode,k=(1<>>24,w>>>=L,S-=L,L=N>>>16&255,L===0)G[o++]=N&65535;else if(L&16){P=N&65535,L&=15,L&&(S>>=L,S-=L),S<15&&(w+=$[a++]<>>24,w>>>=L,S-=L,L=N>>>16&255,L&16){if(M=N&65535,L&=15,Sf){t.msg="invalid distance too far back",B.mode=cwe;break e}if(w>>>=L,S-=L,L=o-u,M>L){if(L=M-L,L>m&&B.sane){t.msg="invalid distance too far back",B.mode=cwe;break e}if(F=0,U=_,b===0){if(F+=p-L,L2;)G[o++]=U[F++],G[o++]=U[F++],G[o++]=U[F++],P-=3;P&&(G[o++]=U[F++],P>1&&(G[o++]=U[F++]))}else{F=o-M;do G[o++]=G[F++],G[o++]=G[F++],G[o++]=G[F++],P-=3;while(P>2);P&&(G[o++]=G[F++],P>1&&(G[o++]=G[F++]))}}else if(L&64){t.msg="invalid distance code",B.mode=cwe;break e}else{N=A[(N&65535)+(w&(1<>3,a-=P,S-=P<<3,w&=(1<{const f=h.bits;let p=0,m=0,b=0,_=0,w=0,S=0,C=0,A=0,k=0,I=0,N,L,P,M,F,U=null,$=0,G;const B=new Uint16Array(GH+1),Z=new Uint16Array(GH+1);let z=null,Y=0,W,Q,V;for(p=0;p<=GH;p++)B[p]=0;for(m=0;m=1&&B[_]===0;_--);if(w>_&&(w=_),_===0)return s[o++]=1<<24|64<<16|0,s[o++]=1<<24|64<<16|0,h.bits=1,0;for(b=1;b<_&&B[b]===0;b++);for(w0&&(e===E2n||_!==1))return-1;for(Z[1]=0,p=1;p_2n||e===x2n&&k>w2n)return 1;for(;;){W=p-C,u[m]G?(Q=z[Y+u[m]],V=U[$+u[m]]):(Q=96,V=0),N=1<>C)+L]=W<<24|Q<<16|V|0;while(L!==0);for(N=1<>=1;if(N!==0?(I&=N-1,I+=N):I=0,m++,--B[p]===0){if(p===_)break;p=t[r+u[m]]}if(p>w&&(I&M)!==P){for(C===0&&(C=w),F+=b,S=p-C,A=1<_2n||e===x2n&&k>w2n)return 1;P=I&M,s[P]=w<<24|S<<16|F-o|0}}return I!==0&&(s[F+I]=p-C<<24|64<<16|0),h.bits=w,0};var vse=swi;const owi=0,FUn=1,$Un=2,{Z_FINISH:S2n,Z_BLOCK:lwi,Z_TREES:uwe,Z_OK:YF,Z_STREAM_END:cwi,Z_NEED_DICT:uwi,Z_STREAM_ERROR:ES,Z_DATA_ERROR:UUn,Z_MEM_ERROR:zUn,Z_BUF_ERROR:hwi,Z_DEFLATED:T2n}=DAe,GUn=1,C2n=2,A2n=3,k2n=4,R2n=5,I2n=6,N2n=7,O2n=8,L2n=9,D2n=10,S3e=11,K6=12,rnt=13,M2n=14,int=15,P2n=16,B2n=17,F2n=18,$2n=19,hwe=20,dwe=21,U2n=22,z2n=23,G2n=24,q2n=25,H2n=26,ant=27,V2n=28,Y2n=29,qd=30,qUn=31,dwi=32,fwi=852,pwi=592,gwi=15,mwi=gwi,j2n=e=>(e>>>24&255)+(e>>>8&65280)+((e&65280)<<8)+((e&255)<<24);function bwi(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}const HUn=e=>{if(!e||!e.state)return ES;const t=e.state;return e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=t.wrap&1),t.mode=GUn,t.last=0,t.havedict=0,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new Int32Array(fwi),t.distcode=t.distdyn=new Int32Array(pwi),t.sane=1,t.back=-1,YF},VUn=e=>{if(!e||!e.state)return ES;const t=e.state;return t.wsize=0,t.whave=0,t.wnext=0,HUn(e)},YUn=(e,t)=>{let r;if(!e||!e.state)return ES;const a=e.state;return t<0?(r=0,t=-t):(r=(t>>4)+1,t<48&&(t&=15)),t&&(t<8||t>15)?ES:(a.window!==null&&a.wbits!==t&&(a.window=null),a.wrap=r,a.wbits=t,VUn(e))},jUn=(e,t)=>{if(!e)return ES;const r=new bwi;e.state=r,r.window=null;const a=YUn(e,t);return a!==YF&&(e.state=null),a},ywi=e=>jUn(e,mwi);let W2n=!0,snt,ont;const vwi=e=>{if(W2n){snt=new Int32Array(512),ont=new Int32Array(32);let t=0;for(;t<144;)e.lens[t++]=8;for(;t<256;)e.lens[t++]=9;for(;t<280;)e.lens[t++]=7;for(;t<288;)e.lens[t++]=8;for(vse(FUn,e.lens,0,288,snt,0,e.work,{bits:9}),t=0;t<32;)e.lens[t++]=5;vse($Un,e.lens,0,32,ont,0,e.work,{bits:5}),W2n=!1}e.lencode=snt,e.lenbits=9,e.distcode=ont,e.distbits=5},WUn=(e,t,r,a)=>{let s;const o=e.state;return o.window===null&&(o.wsize=1<=o.wsize?(o.window.set(t.subarray(r-o.wsize,r),0),o.wnext=0,o.whave=o.wsize):(s=o.wsize-o.wnext,s>a&&(s=a),o.window.set(t.subarray(r-a,r-a+s),o.wnext),a-=s,a?(o.window.set(t.subarray(r-a,r),0),o.wnext=a,o.whave=o.wsize):(o.wnext+=s,o.wnext===o.wsize&&(o.wnext=0),o.whave{let r,a,s,o,u,h,f,p,m,b,_,w,S,C,A=0,k,I,N,L,P,M,F,U;const $=new Uint8Array(4);let G,B;const Z=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(!e||!e.state||!e.output||!e.input&&e.avail_in!==0)return ES;r=e.state,r.mode===K6&&(r.mode=rnt),u=e.next_out,s=e.output,f=e.avail_out,o=e.next_in,a=e.input,h=e.avail_in,p=r.hold,m=r.bits,b=h,_=f,U=YF;e:for(;;)switch(r.mode){case GUn:if(r.wrap===0){r.mode=rnt;break}for(;m<16;){if(h===0)break e;h--,p+=a[o++]<>>8&255,r.check=Eg(r.check,$,2,0),p=0,m=0,r.mode=C2n;break}if(r.flags=0,r.head&&(r.head.done=!1),!(r.wrap&1)||(((p&255)<<8)+(p>>8))%31){e.msg="incorrect header check",r.mode=qd;break}if((p&15)!==T2n){e.msg="unknown compression method",r.mode=qd;break}if(p>>>=4,m-=4,F=(p&15)+8,r.wbits===0)r.wbits=F;else if(F>r.wbits){e.msg="invalid window size",r.mode=qd;break}r.dmax=1<>8&1),r.flags&512&&($[0]=p&255,$[1]=p>>>8&255,r.check=Eg(r.check,$,2,0)),p=0,m=0,r.mode=A2n;case A2n:for(;m<32;){if(h===0)break e;h--,p+=a[o++]<>>8&255,$[2]=p>>>16&255,$[3]=p>>>24&255,r.check=Eg(r.check,$,4,0)),p=0,m=0,r.mode=k2n;case k2n:for(;m<16;){if(h===0)break e;h--,p+=a[o++]<>8),r.flags&512&&($[0]=p&255,$[1]=p>>>8&255,r.check=Eg(r.check,$,2,0)),p=0,m=0,r.mode=R2n;case R2n:if(r.flags&1024){for(;m<16;){if(h===0)break e;h--,p+=a[o++]<>>8&255,r.check=Eg(r.check,$,2,0)),p=0,m=0}else r.head&&(r.head.extra=null);r.mode=I2n;case I2n:if(r.flags&1024&&(w=r.length,w>h&&(w=h),w&&(r.head&&(F=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Uint8Array(r.head.extra_len)),r.head.extra.set(a.subarray(o,o+w),F)),r.flags&512&&(r.check=Eg(r.check,a,w,o)),h-=w,o+=w,r.length-=w),r.length))break e;r.length=0,r.mode=N2n;case N2n:if(r.flags&2048){if(h===0)break e;w=0;do F=a[o+w++],r.head&&F&&r.length<65536&&(r.head.name+=String.fromCharCode(F));while(F&&w>9&1,r.head.done=!0),e.adler=r.check=0,r.mode=K6;break;case D2n:for(;m<32;){if(h===0)break e;h--,p+=a[o++]<>>=m&7,m-=m&7,r.mode=ant;break}for(;m<3;){if(h===0)break e;h--,p+=a[o++]<>>=1,m-=1,p&3){case 0:r.mode=M2n;break;case 1:if(vwi(r),r.mode=hwe,t===uwe){p>>>=2,m-=2;break e}break;case 2:r.mode=B2n;break;case 3:e.msg="invalid block type",r.mode=qd}p>>>=2,m-=2;break;case M2n:for(p>>>=m&7,m-=m&7;m<32;){if(h===0)break e;h--,p+=a[o++]<>>16^65535)){e.msg="invalid stored block lengths",r.mode=qd;break}if(r.length=p&65535,p=0,m=0,r.mode=int,t===uwe)break e;case int:r.mode=P2n;case P2n:if(w=r.length,w){if(w>h&&(w=h),w>f&&(w=f),w===0)break e;s.set(a.subarray(o,o+w),u),h-=w,o+=w,f-=w,u+=w,r.length-=w;break}r.mode=K6;break;case B2n:for(;m<14;){if(h===0)break e;h--,p+=a[o++]<>>=5,m-=5,r.ndist=(p&31)+1,p>>>=5,m-=5,r.ncode=(p&15)+4,p>>>=4,m-=4,r.nlen>286||r.ndist>30){e.msg="too many length or distance symbols",r.mode=qd;break}r.have=0,r.mode=F2n;case F2n:for(;r.have>>=3,m-=3}for(;r.have<19;)r.lens[Z[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,G={bits:r.lenbits},U=vse(owi,r.lens,0,19,r.lencode,0,r.work,G),r.lenbits=G.bits,U){e.msg="invalid code lengths set",r.mode=qd;break}r.have=0,r.mode=$2n;case $2n:for(;r.have>>24,I=A>>>16&255,N=A&65535,!(k<=m);){if(h===0)break e;h--,p+=a[o++]<>>=k,m-=k,r.lens[r.have++]=N;else{if(N===16){for(B=k+2;m>>=k,m-=k,r.have===0){e.msg="invalid bit length repeat",r.mode=qd;break}F=r.lens[r.have-1],w=3+(p&3),p>>>=2,m-=2}else if(N===17){for(B=k+3;m>>=k,m-=k,F=0,w=3+(p&7),p>>>=3,m-=3}else{for(B=k+7;m>>=k,m-=k,F=0,w=11+(p&127),p>>>=7,m-=7}if(r.have+w>r.nlen+r.ndist){e.msg="invalid bit length repeat",r.mode=qd;break}for(;w--;)r.lens[r.have++]=F}}if(r.mode===qd)break;if(r.lens[256]===0){e.msg="invalid code -- missing end-of-block",r.mode=qd;break}if(r.lenbits=9,G={bits:r.lenbits},U=vse(FUn,r.lens,0,r.nlen,r.lencode,0,r.work,G),r.lenbits=G.bits,U){e.msg="invalid literal/lengths set",r.mode=qd;break}if(r.distbits=6,r.distcode=r.distdyn,G={bits:r.distbits},U=vse($Un,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,G),r.distbits=G.bits,U){e.msg="invalid distances set",r.mode=qd;break}if(r.mode=hwe,t===uwe)break e;case hwe:r.mode=dwe;case dwe:if(h>=6&&f>=258){e.next_out=u,e.avail_out=f,e.next_in=o,e.avail_in=h,r.hold=p,r.bits=m,twi(e,_),u=e.next_out,s=e.output,f=e.avail_out,o=e.next_in,a=e.input,h=e.avail_in,p=r.hold,m=r.bits,r.mode===K6&&(r.back=-1);break}for(r.back=0;A=r.lencode[p&(1<>>24,I=A>>>16&255,N=A&65535,!(k<=m);){if(h===0)break e;h--,p+=a[o++]<>L)],k=A>>>24,I=A>>>16&255,N=A&65535,!(L+k<=m);){if(h===0)break e;h--,p+=a[o++]<>>=L,m-=L,r.back+=L}if(p>>>=k,m-=k,r.back+=k,r.length=N,I===0){r.mode=H2n;break}if(I&32){r.back=-1,r.mode=K6;break}if(I&64){e.msg="invalid literal/length code",r.mode=qd;break}r.extra=I&15,r.mode=U2n;case U2n:if(r.extra){for(B=r.extra;m>>=r.extra,m-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=z2n;case z2n:for(;A=r.distcode[p&(1<>>24,I=A>>>16&255,N=A&65535,!(k<=m);){if(h===0)break e;h--,p+=a[o++]<>L)],k=A>>>24,I=A>>>16&255,N=A&65535,!(L+k<=m);){if(h===0)break e;h--,p+=a[o++]<>>=L,m-=L,r.back+=L}if(p>>>=k,m-=k,r.back+=k,I&64){e.msg="invalid distance code",r.mode=qd;break}r.offset=N,r.extra=I&15,r.mode=G2n;case G2n:if(r.extra){for(B=r.extra;m>>=r.extra,m-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){e.msg="invalid distance too far back",r.mode=qd;break}r.mode=q2n;case q2n:if(f===0)break e;if(w=_-f,r.offset>w){if(w=r.offset-w,w>r.whave&&r.sane){e.msg="invalid distance too far back",r.mode=qd;break}w>r.wnext?(w-=r.wnext,S=r.wsize-w):S=r.wnext-w,w>r.length&&(w=r.length),C=r.window}else C=s,S=u-r.offset,w=r.length;w>f&&(w=f),f-=w,r.length-=w;do s[u++]=C[S++];while(--w);r.length===0&&(r.mode=dwe);break;case H2n:if(f===0)break e;s[u++]=r.length,f--,r.mode=dwe;break;case ant:if(r.wrap){for(;m<32;){if(h===0)break e;h--,p|=a[o++]<{if(!e||!e.state)return ES;let t=e.state;return t.window&&(t.window=null),e.state=null,YF},Ewi=(e,t)=>{if(!e||!e.state)return ES;const r=e.state;return r.wrap&2?(r.head=t,t.done=!1,YF):ES},xwi=(e,t)=>{const r=t.length;let a,s,o;return!e||!e.state||(a=e.state,a.wrap!==0&&a.mode!==S3e)?ES:a.mode===S3e&&(s=1,s=Ooe(s,t,r,0),s!==a.check)?UUn:(o=WUn(e,t,r,r),o?(a.mode=qUn,zUn):(a.havedict=1,YF))};var Swi=VUn,Twi=YUn,Cwi=HUn,Awi=ywi,kwi=jUn,Rwi=_wi,Iwi=wwi,Nwi=Ewi,Owi=xwi,Lwi="pako inflate (from Nodeca project)",f7={inflateReset:Swi,inflateReset2:Twi,inflateResetKeep:Cwi,inflateInit:Awi,inflateInit2:kwi,inflate:Rwi,inflateEnd:Iwi,inflateGetHeader:Nwi,inflateSetDictionary:Owi,inflateInfo:Lwi};function Dwi(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}var Mwi=Dwi;const KUn=Object.prototype.toString,{Z_NO_FLUSH:Pwi,Z_FINISH:Bwi,Z_OK:Moe,Z_STREAM_END:lnt,Z_NEED_DICT:cnt,Z_STREAM_ERROR:Fwi,Z_DATA_ERROR:K2n,Z_MEM_ERROR:$wi}=DAe;function $Ae(e){this.options=BAe.assign({chunkSize:1024*64,windowBits:15,to:""},e||{});const t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,t.windowBits===0&&(t.windowBits=-15)),t.windowBits>=0&&t.windowBits<16&&!(e&&e.windowBits)&&(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&(t.windowBits&15||(t.windowBits|=15)),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new PUn,this.strm.avail_out=0;let r=f7.inflateInit2(this.strm,t.windowBits);if(r!==Moe)throw new Error(qF[r]);if(this.header=new Mwi,f7.inflateGetHeader(this.strm,this.header),t.dictionary&&(typeof t.dictionary=="string"?t.dictionary=Doe.string2buf(t.dictionary):KUn.call(t.dictionary)==="[object ArrayBuffer]"&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw&&(r=f7.inflateSetDictionary(this.strm,t.dictionary),r!==Moe)))throw new Error(qF[r])}$Ae.prototype.push=function(e,t){const r=this.strm,a=this.options.chunkSize,s=this.options.dictionary;let o,u,h;if(this.ended)return!1;for(t===~~t?u=t:u=t===!0?Bwi:Pwi,KUn.call(e)==="[object ArrayBuffer]"?r.input=new Uint8Array(e):r.input=e,r.next_in=0,r.avail_in=r.input.length;;){for(r.avail_out===0&&(r.output=new Uint8Array(a),r.next_out=0,r.avail_out=a),o=f7.inflate(r,u),o===cnt&&s&&(o=f7.inflateSetDictionary(r,s),o===Moe?o=f7.inflate(r,u):o===K2n&&(o=cnt));r.avail_in>0&&o===lnt&&r.state.wrap>0&&e[r.next_in]!==0;)f7.inflateReset(r),o=f7.inflate(r,u);switch(o){case Fwi:case K2n:case cnt:case $wi:return this.onEnd(o),this.ended=!0,!1}if(h=r.avail_out,r.next_out&&(r.avail_out===0||o===lnt))if(this.options.to==="string"){let f=Doe.utf8border(r.output,r.next_out),p=r.next_out-f,m=Doe.buf2string(r.output,f);r.next_out=p,r.avail_out=a-p,p&&r.output.set(r.output.subarray(f,f+p),0),this.onData(m)}else this.onData(r.output.length===r.next_out?r.output:r.output.subarray(0,r.next_out));if(!(o===Moe&&h===0)){if(o===lnt)return o=f7.inflateEnd(this.strm),this.onEnd(o),this.ended=!0,!0;if(r.avail_in===0)break}}return!0};$Ae.prototype.onData=function(e){this.chunks.push(e)};$Ae.prototype.onEnd=function(e){e===Moe&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=BAe.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg};function Uwi(e,t){const r=new $Ae(t);if(r.push(e),r.err)throw r.msg||qF[r.err];return r.result}var zwi=Uwi,Gwi={inflate:zwi};const{deflate:qwi}=J_i,{inflate:Hwi}=Gwi;var _5a=qwi,w5a=Hwi;const Vwi="#ffffff",Ywi="#000000",jwi=["#f8f9fa","#f1f3f5","#e9ecef","#dee2e6","#ced4da","#adb5bd","#868e96","#495057","#343a40","#212529"],Wwi=["#fff5f5","#ffe3e3","#ffc9c9","#ffa8a8","#ff8787","#ff6b6b","#fa5252","#f03e3e","#e03131","#c92a2a"],Kwi=["#fff0f6","#ffdeeb","#fcc2d7","#faa2c1","#f783ac","#f06595","#e64980","#d6336c","#c2255c","#a61e4d"],Xwi=["#f8f0fc","#f3d9fa","#eebefa","#e599f7","#da77f2","#cc5de8","#be4bdb","#ae3ec9","#9c36b5","#862e9c"],Qwi=["#f3f0ff","#e5dbff","#d0bfff","#b197fc","#9775fa","#845ef7","#7950f2","#7048e8","#6741d9","#5f3dc4"],Zwi=["#edf2ff","#dbe4ff","#bac8ff","#91a7ff","#748ffc","#5c7cfa","#4c6ef5","#4263eb","#3b5bdb","#364fc7"],Jwi=["#e7f5ff","#d0ebff","#a5d8ff","#74c0fc","#4dabf7","#339af0","#228be6","#1c7ed6","#1971c2","#1864ab"],eEi=["#e3fafc","#c5f6fa","#99e9f2","#66d9e8","#3bc9db","#22b8cf","#15aabf","#1098ad","#0c8599","#0b7285"],tEi=["#e6fcf5","#c3fae8","#96f2d7","#63e6be","#38d9a9","#20c997","#12b886","#0ca678","#099268","#087f5b"],nEi=["#ebfbee","#d3f9d8","#b2f2bb","#8ce99a","#69db7c","#51cf66","#40c057","#37b24d","#2f9e44","#2b8a3e"],rEi=["#f4fce3","#e9fac8","#d8f5a2","#c0eb75","#a9e34b","#94d82d","#82c91e","#74b816","#66a80f","#5c940d"],iEi=["#fff9db","#fff3bf","#ffec99","#ffe066","#ffd43b","#fcc419","#fab005","#f59f00","#f08c00","#e67700"],aEi=["#fff4e6","#ffe8cc","#ffd8a8","#ffc078","#ffa94d","#ff922b","#fd7e14","#f76707","#e8590c","#d9480f"],E5a={white:Vwi,black:Ywi,gray:jwi,red:Wwi,pink:Kwi,grape:Xwi,violet:Qwi,indigo:Zwi,blue:Jwi,cyan:eEi,teal:tEi,green:nEi,lime:rEi,yellow:iEi,orange:aEi};let x5a=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce((t,r)=>(r&=63,r<36?t+=r.toString(36):r<62?t+=(r-26).toString(36).toUpperCase():r>62?t+="-":t+="_",t),"");var XUn={exports:{}};(function(e,t){(function(r,a){e.exports=a()})(ml,function(){var r=function(){this._listeners={}};r.prototype.addEventListener=function(p,m){this._listeners[p]=this._listeners[p]||[],this._listeners[p].indexOf(m)<0&&this._listeners[p].push(m)},r.prototype.removeEventListener=function(p,m){if(this._listeners[p]){var b=this._listeners[p].indexOf(m);b>=0&&this._listeners[p].splice(b,1)}},r.prototype.dispatchEvent=function(p){if(this._listeners[p.type]&&this._listeners[p.type].length)for(var m=this._listeners[p.type].slice(),b=0,_=m.length;b<_;++b)m[b].call(this,p)};var a=function(p){return typeof p.constructor=="function"&&p.constructor.name==="GeneratorFunction"},s=function(p){return{next:function(){var m=p();return m?{value:m}:{done:!0}}}},o=function(p){var m=!1;return{next:function(){return m?{done:!0}:(m=!0,{value:p})}}},u=function(p,m){var b=typeof p;if(b==="object"){if(typeof p.next=="function")return p;if(typeof p.then=="function")return o(p)}return b==="function"?a(p)?p():s(p):o(m.resolve(p))},h=function(p,m,b){this.target=p,this.type=m,this.data=b},f=function(p,m,b){if(r.call(this),typeof m!="number"||Math.floor(m)!==m||m<1)throw new Error("Invalid concurrency");this._concurrency=m,this._options=b||{},this._options.promise=this._options.promise||Promise,this._iterator=u(p,this._options.promise),this._done=!1,this._size=0,this._promise=null,this._callbacks=null};return f.prototype=new r,f.prototype.constructor=f,f.prototype.concurrency=function(p){return typeof p<"u"&&(this._concurrency=p,this.active()&&this._proceed()),this._concurrency},f.prototype.size=function(){return this._size},f.prototype.active=function(){return!!this._promise},f.prototype.promise=function(){return this._promise},f.prototype.start=function(){var p=this,m=this._options.promise;return this._promise=new m(function(b,_){p._callbacks={reject:_,resolve:b},p._proceed()}),this._promise},f.prototype._fireEvent=function(p,m){this.dispatchEvent(new h(this,p,m))},f.prototype._settle=function(p){p?this._callbacks.reject(p):this._callbacks.resolve(),this._promise=null,this._callbacks=null},f.prototype._onPooledPromiseFulfilled=function(p,m){this._size--,this.active()&&(this._fireEvent("fulfilled",{promise:p,result:m}),this._proceed())},f.prototype._onPooledPromiseRejected=function(p,m){this._size--,this.active()&&(this._fireEvent("rejected",{promise:p,error:m}),this._settle(m||new Error("Unknown error")))},f.prototype._trackPromise=function(p){var m=this;p.then(function(b){m._onPooledPromiseFulfilled(p,b)},function(b){m._onPooledPromiseRejected(p,b)}).catch(function(b){m._settle(new Error("Promise processing failed: "+b))})},f.prototype._proceed=function(){if(!this._done){for(var p={done:!1};this._sizea.push(...s)),klt(a,t,r)}function lEi(e,t){return e[0]===t[0]&&e[1]===t[1]}function cEi(e,t,r,a=1){const s=r,o=Math.max(t,.1),u=e[0]&&e[0][0]&&typeof e[0][0]=="number"?[e]:e,h=[0,0];if(s)for(const p of u)klt(p,h,s);const f=uEi(u,o,a);if(s){for(const p of u)klt(p,h,-s);oEi(f,h,-s)}return f}function uEi(e,t,r){const a=[];for(const p of e){const m=[...p];lEi(m[0],m[m.length-1])||m.push([m[0][0],m[0][1]]),m.length>2&&a.push(m)}const s=[];t=Math.max(t,.1);const o=[];for(const p of a)for(let m=0;mp.yminm.ymin?1:p.xm.x?1:p.ymax===m.ymax?0:(p.ymax-m.ymax)/Math.abs(p.ymax-m.ymax)),!o.length)return s;let u=[],h=o[0].ymin,f=0;for(;u.length||o.length;){if(o.length){let p=-1;for(let b=0;bh);b++)p=b;o.splice(0,p+1).forEach(b=>{u.push({s:h,edge:b})})}if(u=u.filter(p=>!(p.edge.ymax<=h)),u.sort((p,m)=>p.edge.x===m.edge.x?0:(p.edge.x-m.edge.x)/Math.abs(p.edge.x-m.edge.x)),(r!==1||f%t===0)&&u.length>1)for(let p=0;p=u.length)break;const b=u[p].edge,_=u[m].edge;s.push([[Math.round(b.x),h],[Math.round(_.x),h]])}h+=r,u.forEach(p=>{p.edge.x=p.edge.x+r*p.edge.islope}),f++}return s}function gce(e,t){var r;const a=t.hachureAngle+90;let s=t.hachureGap;s<0&&(s=t.strokeWidth*4),s=Math.max(s,.1);let o=1;return t.roughness>=1&&(((r=t.randomizer)===null||r===void 0?void 0:r.next())||Math.random())>.7&&(o=s),cEi(e,s,a,o||1)}class _pt{constructor(t){this.helper=t}fillPolygons(t,r){return this._fillPolygons(t,r)}_fillPolygons(t,r){const a=gce(t,r);return{type:"fillSketch",ops:this.renderLines(a,r)}}renderLines(t,r){const a=[];for(const s of t)a.push(...this.helper.doubleLineOps(s[0][0],s[0][1],s[1][0],s[1][1],r));return a}}function UAe(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 hEi extends _pt{fillPolygons(t,r){let a=r.hachureGap;a<0&&(a=r.strokeWidth*4),a=Math.max(a,.1);const s=Object.assign({},r,{hachureGap:a}),o=gce(t,s),u=Math.PI/180*r.hachureAngle,h=[],f=a*.5*Math.cos(u),p=a*.5*Math.sin(u);for(const[b,_]of o)UAe([b,_])&&h.push([[b[0]-f,b[1]+p],[..._]],[[b[0]+f,b[1]-p],[..._]]);return{type:"fillSketch",ops:this.renderLines(h,r)}}}class dEi extends _pt{fillPolygons(t,r){const a=this._fillPolygons(t,r),s=Object.assign({},r,{hachureAngle:r.hachureAngle+90}),o=this._fillPolygons(t,s);return a.ops=a.ops.concat(o.ops),a}}class fEi{constructor(t){this.helper=t}fillPolygons(t,r){r=Object.assign({},r,{hachureAngle:0});const a=gce(t,r);return this.dotsOnLines(a,r)}dotsOnLines(t,r){const a=[];let s=r.hachureGap;s<0&&(s=r.strokeWidth*4),s=Math.max(s,.1);let o=r.fillWeight;o<0&&(o=r.strokeWidth/2);const u=s/4;for(const h of t){const f=UAe(h),p=f/s,m=Math.ceil(p)-1,b=f-m*s,_=(h[0][0]+h[1][0])/2-s/4,w=Math.min(h[0][1],h[1][1]);for(let S=0;S{const h=UAe(u),f=Math.floor(h/(a+s)),p=(h+s-f*(a+s))/2;let m=u[0],b=u[1];m[0]>b[0]&&(m=u[1],b=u[0]);const _=Math.atan((b[1]-m[1])/(b[0]-m[0]));for(let w=0;w{const u=UAe(o),h=Math.round(u/(2*r));let f=o[0],p=o[1];f[0]>p[0]&&(f=o[1],p=o[0]);const m=Math.atan((p[1]-f[1])/(p[0]-f[0]));for(let b=0;bm%2?p+r:p+t);o.push({key:"C",data:f}),t=f[4],r=f[5];break}case"Q":o.push({key:"Q",data:[...h]}),t=h[2],r=h[3];break;case"q":{const f=h.map((p,m)=>m%2?p+r:p+t);o.push({key:"Q",data:f}),t=f[2],r=f[3];break}case"A":o.push({key:"A",data:[...h]}),t=h[5],r=h[6];break;case"a":t+=h[5],r+=h[6],o.push({key:"A",data:[h[0],h[1],h[2],h[3],h[4],t,r]});break;case"H":o.push({key:"H",data:[...h]}),t=h[0];break;case"h":t+=h[0],o.push({key:"H",data:[t]});break;case"V":o.push({key:"V",data:[...h]}),r=h[0];break;case"v":r+=h[0],o.push({key:"V",data:[r]});break;case"S":o.push({key:"S",data:[...h]}),t=h[2],r=h[3];break;case"s":{const f=h.map((p,m)=>m%2?p+r:p+t);o.push({key:"S",data:f}),t=f[2],r=f[3];break}case"T":o.push({key:"T",data:[...h]}),t=h[0],r=h[1];break;case"t":t+=h[0],r+=h[1],o.push({key:"T",data:[t,r]});break;case"Z":case"z":o.push({key:"Z",data:[]}),t=a,r=s;break}return o}function JUn(e){const t=[];let r="",a=0,s=0,o=0,u=0,h=0,f=0;for(const{key:p,data:m}of e){switch(p){case"M":t.push({key:"M",data:[...m]}),[a,s]=m,[o,u]=m;break;case"C":t.push({key:"C",data:[...m]}),a=m[4],s=m[5],h=m[2],f=m[3];break;case"L":t.push({key:"L",data:[...m]}),[a,s]=m;break;case"H":a=m[0],t.push({key:"L",data:[a,s]});break;case"V":s=m[0],t.push({key:"L",data:[a,s]});break;case"S":{let b=0,_=0;r==="C"||r==="S"?(b=a+(a-h),_=s+(s-f)):(b=a,_=s),t.push({key:"C",data:[b,_,...m]}),h=m[0],f=m[1],a=m[2],s=m[3];break}case"T":{const[b,_]=m;let w=0,S=0;r==="Q"||r==="T"?(w=a+(a-h),S=s+(s-f)):(w=a,S=s);const C=a+2*(w-a)/3,A=s+2*(S-s)/3,k=b+2*(w-b)/3,I=_+2*(S-_)/3;t.push({key:"C",data:[C,A,k,I,b,_]}),h=w,f=S,a=b,s=_;break}case"Q":{const[b,_,w,S]=m,C=a+2*(b-a)/3,A=s+2*(_-s)/3,k=w+2*(b-w)/3,I=S+2*(_-S)/3;t.push({key:"C",data:[C,A,k,I,w,S]}),h=b,f=_,a=w,s=S;break}case"A":{const b=Math.abs(m[0]),_=Math.abs(m[1]),w=m[2],S=m[3],C=m[4],A=m[5],k=m[6];b===0||_===0?(t.push({key:"C",data:[a,s,A,k,A,k]}),a=A,s=k):(a!==A||s!==k)&&(ezn(a,s,A,k,b,_,w,S,C).forEach(function(N){t.push({key:"C",data:N})}),a=A,s=k);break}case"Z":t.push({key:"Z",data:[]}),a=o,s=u;break}r=p}return t}function wEi(e){return Math.PI*e/180}function jre(e,t,r){const a=e*Math.cos(r)-t*Math.sin(r),s=e*Math.sin(r)+t*Math.cos(r);return[a,s]}function ezn(e,t,r,a,s,o,u,h,f,p){const m=wEi(u);let b=[],_=0,w=0,S=0,C=0;if(p)[_,w,S,C]=p;else{[e,t]=jre(e,t,-m),[r,a]=jre(r,a,-m);const Z=(e-r)/2,z=(t-a)/2;let Y=Z*Z/(s*s)+z*z/(o*o);Y>1&&(Y=Math.sqrt(Y),s=Y*s,o=Y*o);const W=h===f?-1:1,Q=s*s,V=o*o,j=Q*V-Q*z*z-V*Z*Z,ee=Q*z*z+V*Z*Z,te=W*Math.sqrt(Math.abs(j/ee));S=te*s*z/o+(e+r)/2,C=te*-o*Z/s+(t+a)/2,_=Math.asin(parseFloat(((t-C)/o).toFixed(9))),w=Math.asin(parseFloat(((a-C)/o).toFixed(9))),ew&&(_=_-Math.PI*2),!f&&w>_&&(w=w-Math.PI*2)}let A=w-_;if(Math.abs(A)>Math.PI*120/180){const Z=w,z=r,Y=a;f&&w>_?w=_+Math.PI*120/180*1:w=_+Math.PI*120/180*-1,r=S+s*Math.cos(w),a=C+o*Math.sin(w),b=ezn(r,a,z,Y,s,o,u,0,f,[w,Z,S,C])}A=w-_;const k=Math.cos(_),I=Math.sin(_),N=Math.cos(w),L=Math.sin(w),P=Math.tan(A/4),M=4/3*s*P,F=4/3*o*P,U=[e,t],$=[e+M*I,t-F*k],G=[r+M*L,a-F*N],B=[r,a];if($[0]=2*U[0]-$[0],$[1]=2*U[1]-$[1],p)return[$,G,B].concat(b);{b=[$,G,B].concat(b);const Z=[];for(let z=0;z2){const s=[];for(let o=0;oMath.PI*2&&(w=0,S=Math.PI*2);const C=Math.PI*2/f.curveStepCount,A=Math.min(C/2,(S-w)/2),k=n_n(A,p,m,b,_,w,S,1,f);if(!f.disableMultiStroke){const I=n_n(A,p,m,b,_,w,S,1.5,f);k.push(...I)}return u&&(h?k.push(...rR(p,m,p+b*Math.cos(w),m+_*Math.sin(w),f),...rR(p,m,p+b*Math.cos(S),m+_*Math.sin(S),f)):k.push({op:"lineTo",data:[p,m]},{op:"lineTo",data:[p+b*Math.cos(w),m+_*Math.sin(w)]})),{type:"path",ops:k}}function Z2n(e,t){const r=JUn(ZUn(wpt(e))),a=[];let s=[0,0],o=[0,0];for(const{key:u,data:h}of r)switch(u){case"M":{o=[h[0],h[1]],s=[h[0],h[1]];break}case"L":a.push(...rR(o[0],o[1],h[0],h[1],t)),o=[h[0],h[1]];break;case"C":{const[f,p,m,b,_,w]=h;a.push(...NEi(f,p,m,b,_,w,o,t)),o=[_,w];break}case"Z":a.push(...rR(o[0],o[1],s[0],s[1],t)),o=[s[0],s[1]];break}return{type:"path",ops:a}}function hnt(e,t){const r=[];for(const a of e)if(a.length){const s=t.maxRandomnessOffset||0,o=a.length;if(o>2){r.push({op:"move",data:[a[0][0]+vo(s,t),a[0][1]+vo(s,t)]});for(let u=1;uMath.PI*2&&(b=0,_=Math.PI*2);const w=(_-b)/u.curveStepCount,S=[];for(let C=b;C<=_;C=C+w)S.push([h+p*Math.cos(C),f+m*Math.sin(C)]);return S.push([h+p*Math.cos(_),f+m*Math.sin(_)]),S.push([h,f]),pV([S],u)}function AEi(e,t){return vo(e,t)}function kEi(e,t,r){return T3e(e,t,r)}function REi(e,t,r,a,s){return rR(e,t,r,a,s,!0)}function IEi(e){const t=Object.assign({},e);return t.randomizer=void 0,e.seed&&(t.seed=e.seed+1),t}function rzn(e){return e.randomizer||(e.randomizer=new yEi(e.seed||0)),e.randomizer.next()}function T3e(e,t,r,a=1){return r.roughness*a*(rzn(r)*(t-e)+e)}function vo(e,t,r=1){return T3e(-e,e,t,r)}function rR(e,t,r,a,s,o=!1){const u=o?s.disableMultiStrokeFill:s.disableMultiStroke,h=J2n(e,t,r,a,s,!0,!1);if(u)return h;const f=J2n(e,t,r,a,s,!0,!0);return h.concat(f)}function J2n(e,t,r,a,s,o,u){const h=Math.pow(e-r,2)+Math.pow(t-a,2),f=Math.sqrt(h);let p=1;f<200?p=1:f>500?p=.4:p=-.0016668*f+1.233334;let m=s.maxRandomnessOffset||0;m*m*100>h&&(m=f/10);const b=m/2,_=.2+rzn(s)*.2;let w=s.bowing*s.maxRandomnessOffset*(a-t)/200,S=s.bowing*s.maxRandomnessOffset*(e-r)/200;w=vo(w,s,p),S=vo(S,s,p);const C=[],A=()=>vo(b,s,p),k=()=>vo(m,s,p),I=s.preserveVertices;return u?C.push({op:"move",data:[e+(I?0:A()),t+(I?0:A())]}):C.push({op:"move",data:[e+(I?0:vo(m,s,p)),t+(I?0:vo(m,s,p))]}),u?C.push({op:"bcurveTo",data:[w+e+(r-e)*_+A(),S+t+(a-t)*_+A(),w+e+2*(r-e)*_+A(),S+t+2*(a-t)*_+A(),r+(I?0:A()),a+(I?0:A())]}):C.push({op:"bcurveTo",data:[w+e+(r-e)*_+k(),S+t+(a-t)*_+k(),w+e+2*(r-e)*_+k(),S+t+2*(a-t)*_+k(),r+(I?0:k()),a+(I?0:k())]}),C}function e_n(e,t,r){const a=[];a.push([e[0][0]+vo(t,r),e[0][1]+vo(t,r)]),a.push([e[0][0]+vo(t,r),e[0][1]+vo(t,r)]);for(let s=1;s3){const o=[],u=1-r.curveTightness;s.push({op:"move",data:[e[1][0],e[1][1]]});for(let h=1;h+21&&s.push(o):s.push(o),s.push(e[t+3])}else{const u=e[t+0],h=e[t+1],f=e[t+2],p=e[t+3],m=RB(u,h,.5),b=RB(h,f,.5),_=RB(f,p,.5),w=RB(m,b,.5),S=RB(b,_,.5),C=RB(w,S,.5);Nlt([u,m,w,C],0,r,s),Nlt([C,S,_,p],0,r,s)}return s}function PEi(e,t){return A3e(e,0,e.length,t)}function A3e(e,t,r,a,s){const o=s||[],u=e[t],h=e[r-1];let f=0,p=1;for(let m=t+1;mf&&(f=b,p=m)}return Math.sqrt(f)>a?(A3e(e,t,p+1,a,o),A3e(e,p,r,a,o)):(o.length||o.push(u),o.push(h)),o}function izn(e,t=.15,r){const a=[],s=(e.length-1)/3;for(let o=0;o0?A3e(a,0,a.length,r):a}function BEi(e,t,r){const a=wpt(e),s=JUn(ZUn(a)),o=[];let u=[],h=[0,0],f=[];const p=()=>{f.length>=4&&u.push(...izn(f,t)),f=[]},m=()=>{p(),u.length&&(o.push(u),u=[])};for(const{key:_,data:w}of s)switch(_){case"M":m(),h=[w[0],w[1]],u.push(h);break;case"L":p(),u.push([w[0],w[1]]);break;case"C":if(!f.length){const S=u.length?u[u.length-1]:h;f.push([S[0],S[1]])}f.push([w[0],w[1]]),f.push([w[2],w[3]]),f.push([w[4],w[5]]);break;case"Z":p(),u.push([h[0],h[1]]);break}if(m(),!r)return o;const b=[];for(const _ of o){const w=PEi(_,r);w.length&&b.push(w)}return b}const Sw="none";class k3e{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 bEi()}_o(t){return t?Object.assign({},this.defaultOptions,t):this.defaultOptions}_d(t,r,a){return{shape:t,sets:r||[],options:a||this.defaultOptions}}line(t,r,a,s,o){const u=this._o(o);return this._d("line",[tzn(t,r,a,s,u)],u)}rectangle(t,r,a,s,o){const u=this._o(o),h=[],f=SEi(t,r,a,s,u);if(u.fill){const p=[[t,r],[t+a,r],[t+a,r+s],[t,r+s]];u.fillStyle==="solid"?h.push(hnt([p],u)):h.push(pV([p],u))}return u.stroke!==Sw&&h.push(f),this._d("rectangle",h,u)}ellipse(t,r,a,s,o){const u=this._o(o),h=[],f=nzn(a,s,u),p=Ilt(t,r,u,f);if(u.fill)if(u.fillStyle==="solid"){const m=Ilt(t,r,u,f).opset;m.type="fillPath",h.push(m)}else h.push(pV([p.estimatedPoints],u));return u.stroke!==Sw&&h.push(p.opset),this._d("ellipse",h,u)}circle(t,r,a,s){const o=this.ellipse(t,r,a,a,s);return o.shape="circle",o}linearPath(t,r){const a=this._o(r);return this._d("linearPath",[gxe(t,!1,a)],a)}arc(t,r,a,s,o,u,h=!1,f){const p=this._o(f),m=[],b=Q2n(t,r,a,s,o,u,h,!0,p);if(h&&p.fill)if(p.fillStyle==="solid"){const _=Object.assign({},p);_.disableMultiStroke=!0;const w=Q2n(t,r,a,s,o,u,!0,!1,_);w.type="fillPath",m.push(w)}else m.push(CEi(t,r,a,s,o,u,p));return p.stroke!==Sw&&m.push(b),this._d("arc",m,p)}curve(t,r){const a=this._o(r),s=[],o=X2n(t,a);if(a.fill&&a.fill!==Sw&&t.length>=3)if(a.fillStyle==="solid"){const u=X2n(t,Object.assign(Object.assign({},a),{disableMultiStroke:!0,roughness:a.roughness?a.roughness+a.fillShapeRoughnessGain:0}));s.push({type:"fillPath",ops:this._mergedShape(u.ops)})}else{const u=OEi(t),h=izn(u,10,(1+a.roughness)/2);s.push(pV([h],a))}return a.stroke!==Sw&&s.push(o),this._d("curve",s,a)}polygon(t,r){const a=this._o(r),s=[],o=gxe(t,!0,a);return a.fill&&(a.fillStyle==="solid"?s.push(hnt([t],a)):s.push(pV([t],a))),a.stroke!==Sw&&s.push(o),this._d("polygon",s,a)}path(t,r){const a=this._o(r),s=[];if(!t)return this._d("path",s,a);t=(t||"").replace(/\n/g," ").replace(/(-\s)/g,"-").replace("/(ss)/g"," ");const o=a.fill&&a.fill!=="transparent"&&a.fill!==Sw,u=a.stroke!==Sw,h=!!(a.simplification&&a.simplification<1),f=h?4-4*(a.simplification||1):(1+a.roughness)/2,p=BEi(t,1,f),m=Z2n(t,a);if(o)if(a.fillStyle==="solid")if(p.length===1){const b=Z2n(t,Object.assign(Object.assign({},a),{disableMultiStroke:!0,roughness:a.roughness?a.roughness+a.fillShapeRoughnessGain:0}));s.push({type:"fillPath",ops:this._mergedShape(b.ops)})}else s.push(hnt(p,a));else s.push(pV(p,a));return u&&(h?p.forEach(b=>{s.push(gxe(b,!1,a))}):s.push(m)),this._d("path",s,a)}opsToPath(t,r){let a="";for(const s of t.ops){const o=typeof r=="number"&&r>=0?s.data.map(u=>+u.toFixed(r)):s.data;switch(s.op){case"move":a+=`M${o[0]} ${o[1]} `;break;case"bcurveTo":a+=`C${o[0]} ${o[1]}, ${o[2]} ${o[3]}, ${o[4]} ${o[5]} `;break;case"lineTo":a+=`L${o[0]} ${o[1]} `;break}}return a.trim()}toPaths(t){const r=t.sets||[],a=t.options||this.defaultOptions,s=[];for(const o of r){let u=null;switch(o.type){case"path":u={d:this.opsToPath(o),stroke:a.stroke,strokeWidth:a.strokeWidth,fill:Sw};break;case"fillPath":u={d:this.opsToPath(o),stroke:Sw,strokeWidth:0,fill:a.fill||Sw};break;case"fillSketch":u=this.fillSketch(o,a);break}u&&s.push(u)}return s}fillSketch(t,r){let a=r.fillWeight;return a<0&&(a=r.strokeWidth/2),{d:this.opsToPath(t),stroke:r.fill||Sw,strokeWidth:a,fill:Sw}}_mergedShape(t){return t.filter((r,a)=>a===0?!0:r.op!=="move")}}class FEi{constructor(t,r){this.canvas=t,this.ctx=this.canvas.getContext("2d"),this.gen=new k3e(r)}draw(t){const r=t.sets||[],a=t.options||this.getDefaultOptions(),s=this.ctx,o=t.options.fixedDecimalPlaceDigits;for(const u of r)switch(u.type){case"path":s.save(),s.strokeStyle=a.stroke==="none"?"transparent":a.stroke,s.lineWidth=a.strokeWidth,a.strokeLineDash&&s.setLineDash(a.strokeLineDash),a.strokeLineDashOffset&&(s.lineDashOffset=a.strokeLineDashOffset),this._drawToContext(s,u,o),s.restore();break;case"fillPath":{s.save(),s.fillStyle=a.fill||"";const h=t.shape==="curve"||t.shape==="polygon"||t.shape==="path"?"evenodd":"nonzero";this._drawToContext(s,u,o,h),s.restore();break}case"fillSketch":this.fillSketch(s,u,a);break}}fillSketch(t,r,a){let s=a.fillWeight;s<0&&(s=a.strokeWidth/2),t.save(),a.fillLineDash&&t.setLineDash(a.fillLineDash),a.fillLineDashOffset&&(t.lineDashOffset=a.fillLineDashOffset),t.strokeStyle=a.fill||"",t.lineWidth=s,this._drawToContext(t,r,a.fixedDecimalPlaceDigits),t.restore()}_drawToContext(t,r,a,s="nonzero"){t.beginPath();for(const o of r.ops){const u=typeof a=="number"&&a>=0?o.data.map(h=>+h.toFixed(a)):o.data;switch(o.op){case"move":t.moveTo(u[0],u[1]);break;case"bcurveTo":t.bezierCurveTo(u[0],u[1],u[2],u[3],u[4],u[5]);break;case"lineTo":t.lineTo(u[0],u[1]);break}}r.type==="fillPath"?t.fill(s):t.stroke()}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}line(t,r,a,s,o){const u=this.gen.line(t,r,a,s,o);return this.draw(u),u}rectangle(t,r,a,s,o){const u=this.gen.rectangle(t,r,a,s,o);return this.draw(u),u}ellipse(t,r,a,s,o){const u=this.gen.ellipse(t,r,a,s,o);return this.draw(u),u}circle(t,r,a,s){const o=this.gen.circle(t,r,a,s);return this.draw(o),o}linearPath(t,r){const a=this.gen.linearPath(t,r);return this.draw(a),a}polygon(t,r){const a=this.gen.polygon(t,r);return this.draw(a),a}arc(t,r,a,s,o,u,h=!1,f){const p=this.gen.arc(t,r,a,s,o,u,h,f);return this.draw(p),p}curve(t,r){const a=this.gen.curve(t,r);return this.draw(a),a}path(t,r){const a=this.gen.path(t,r);return this.draw(a),a}}const pwe="http://www.w3.org/2000/svg";class $Ei{constructor(t,r){this.svg=t,this.gen=new k3e(r)}draw(t){const r=t.sets||[],a=t.options||this.getDefaultOptions(),s=this.svg.ownerDocument||window.document,o=s.createElementNS(pwe,"g"),u=t.options.fixedDecimalPlaceDigits;for(const h of r){let f=null;switch(h.type){case"path":{f=s.createElementNS(pwe,"path"),f.setAttribute("d",this.opsToPath(h,u)),f.setAttribute("stroke",a.stroke),f.setAttribute("stroke-width",a.strokeWidth+""),f.setAttribute("fill","none"),a.strokeLineDash&&f.setAttribute("stroke-dasharray",a.strokeLineDash.join(" ").trim()),a.strokeLineDashOffset&&f.setAttribute("stroke-dashoffset",`${a.strokeLineDashOffset}`);break}case"fillPath":{f=s.createElementNS(pwe,"path"),f.setAttribute("d",this.opsToPath(h,u)),f.setAttribute("stroke","none"),f.setAttribute("stroke-width","0"),f.setAttribute("fill",a.fill||""),(t.shape==="curve"||t.shape==="polygon")&&f.setAttribute("fill-rule","evenodd");break}case"fillSketch":{f=this.fillSketch(s,h,a);break}}f&&o.appendChild(f)}return o}fillSketch(t,r,a){let s=a.fillWeight;s<0&&(s=a.strokeWidth/2);const o=t.createElementNS(pwe,"path");return o.setAttribute("d",this.opsToPath(r,a.fixedDecimalPlaceDigits)),o.setAttribute("stroke",a.fill||""),o.setAttribute("stroke-width",s+""),o.setAttribute("fill","none"),a.fillLineDash&&o.setAttribute("stroke-dasharray",a.fillLineDash.join(" ").trim()),a.fillLineDashOffset&&o.setAttribute("stroke-dashoffset",`${a.fillLineDashOffset}`),o}get generator(){return this.gen}getDefaultOptions(){return this.gen.defaultOptions}opsToPath(t,r){return this.gen.opsToPath(t,r)}line(t,r,a,s,o){const u=this.gen.line(t,r,a,s,o);return this.draw(u)}rectangle(t,r,a,s,o){const u=this.gen.rectangle(t,r,a,s,o);return this.draw(u)}ellipse(t,r,a,s,o){const u=this.gen.ellipse(t,r,a,s,o);return this.draw(u)}circle(t,r,a,s){const o=this.gen.circle(t,r,a,s);return this.draw(o)}linearPath(t,r){const a=this.gen.linearPath(t,r);return this.draw(a)}polygon(t,r){const a=this.gen.polygon(t,r);return this.draw(a)}arc(t,r,a,s,o,u,h=!1,f){const p=this.gen.arc(t,r,a,s,o,u,h,f);return this.draw(p)}curve(t,r){const a=this.gen.curve(t,r);return this.draw(a)}path(t,r){const a=this.gen.path(t,r);return this.draw(a)}}const T5a={canvas(e,t){return new FEi(e,t)},svg(e,t){return new $Ei(e,t)},generator(e){return new k3e(e)},newSeed(){return k3e.newSeed()}};function r_n(e,t,r,a=s=>s){return e*a(.5-t*(.5-r))}function UEi(e){return[-e[0],-e[1]]}function C3(e,t){return[e[0]+t[0],e[1]+t[1]]}function Yx(e,t){return[e[0]-t[0],e[1]-t[1]]}function S3(e,t){return[e[0]*t,e[1]*t]}function zEi(e,t){return[e[0]/t,e[1]/t]}function Kre(e){return[e[1],-e[0]]}function i_n(e,t){return e[0]*t[0]+e[1]*t[1]}function GEi(e,t){return e[0]===t[0]&&e[1]===t[1]}function qEi(e){return Math.hypot(e[0],e[1])}function HEi(e){return e[0]*e[0]+e[1]*e[1]}function a_n(e,t){return HEi(Yx(e,t))}function azn(e){return zEi(e,qEi(e))}function VEi(e,t){return Math.hypot(e[1]-t[1],e[0]-t[0])}function Xre(e,t,r){let a=Math.sin(r),s=Math.cos(r),o=e[0]-t[0],u=e[1]-t[1],h=o*s-u*a,f=o*a+u*s;return[h+t[0],f+t[1]]}function Olt(e,t,r){return C3(e,S3(Yx(t,e),r))}function s_n(e,t,r){return C3(e,S3(t,r))}var{min:qH,PI:YEi}=Math,o_n=.275,Qre=YEi+1e-4;function jEi(e,t={}){let{size:r=16,smoothing:a=.5,thinning:s=.5,simulatePressure:o=!0,easing:u=V=>V,start:h={},end:f={},last:p=!1}=t,{cap:m=!0,easing:b=V=>V*(2-V)}=h,{cap:_=!0,easing:w=V=>--V*V*V+1}=f;if(e.length===0||r<=0)return[];let S=e[e.length-1].runningLength,C=h.taper===!1?0:h.taper===!0?Math.max(r,S):h.taper,A=f.taper===!1?0:f.taper===!0?Math.max(r,S):f.taper,k=Math.pow(r*a,2),I=[],N=[],L=e.slice(0,10).reduce((V,j)=>{let ee=j.pressure;if(o){let te=qH(1,j.distance/r),ne=qH(1,1-te);ee=qH(1,V+(ne-V)*(te*o_n))}return(V+ee)/2},e[0].pressure),P=r_n(r,s,e[e.length-1].pressure,u),M,F=e[0].vector,U=e[0].point,$=U,G=U,B=$,Z=!1;for(let V=0;Vk)&&(I.push(G),U=G),B=C3(ee,ye),(V<=1||a_n($,B)>k)&&(N.push(B),$=B),L=j,F=te}let z=e[0].point.slice(0,2),Y=e.length>1?e[e.length-1].point.slice(0,2):C3(e[0].point,[1,1]),W=[],Q=[];if(e.length===1){if(!(C||A)||p){let V=s_n(z,azn(Kre(Yx(z,Y))),-(M||P)),j=[];for(let ee=1/13,te=ee;te<=1;te+=ee)j.push(Xre(V,z,Qre*2*te));return j}}else{if(!(C||A&&e.length===1))if(m)for(let j=1/13,ee=j;ee<=1;ee+=j){let te=Xre(N[0],z,Qre*ee);W.push(te)}else{let j=Yx(I[0],N[0]),ee=S3(j,.5),te=S3(j,.51);W.push(Yx(z,ee),Yx(z,te),C3(z,te),C3(z,ee))}let V=Kre(UEi(e[e.length-1].vector));if(A||C&&e.length===1)Q.push(Y);else if(_){let j=s_n(Y,V,P);for(let ee=1/29,te=ee;te<1;te+=ee)Q.push(Xre(j,Y,Qre*3*te))}else Q.push(C3(Y,S3(V,P)),C3(Y,S3(V,P*.99)),Yx(Y,S3(V,P*.99)),Yx(Y,S3(V,P)))}return I.concat(Q,N.reverse(),W)}function WEi(e,t={}){var r;let{streamline:a=.5,size:s=16,last:o=!1}=t;if(e.length===0)return[];let u=.15+(1-a)*.85,h=Array.isArray(e[0])?e:e.map(({x:w,y:S,pressure:C=.5})=>[w,S,C]);if(h.length===2){let w=h[1];h=h.slice(0,-1);for(let S=1;S<5;S++)h.push(Olt(h[0],w,S/4))}h.length===1&&(h=[...h,[...C3(h[0],[1,1]),...h[0].slice(2)]]);let f=[{point:[h[0][0],h[0][1]],pressure:h[0][2]>=0?h[0][2]:.25,vector:[1,1],distance:0,runningLength:0}],p=!1,m=0,b=f[0],_=h.length-1;for(let w=1;w=0?h[w][2]:.5,vector:azn(Yx(b.point,S)),distance:C,runningLength:m},f.push(b)}return f[0].vector=((r=f[1])==null?void 0:r.vector)||[0,0],f}function C5a(e,t={}){return jEi(WEi(e,t),t)}function szn(e){var t,r,a="";if(typeof e=="string"||typeof e=="number")a+=e;else if(typeof e=="object")if(Array.isArray(e))for(t=0;t1&&s.push(o):s.push(o),s.push(e[t+3])}else{const u=e[t+0],h=e[t+1],f=e[t+2],p=e[t+3],m=IB(u,h,.5),b=IB(h,f,.5),_=IB(f,p,.5),w=IB(m,b,.5),S=IB(b,_,.5),C=IB(w,S,.5);Llt([u,m,w,C],0,r,s),Llt([C,S,_,p],0,r,s)}return s}function k5a(e,t){return R3e(e,0,e.length,t)}function R3e(e,t,r,a,s){const o=s||[],u=e[t],h=e[r-1];let f=0,p=1;for(let m=t+1;mf&&(f=b,p=m)}return Math.sqrt(f)>a?(R3e(e,t,p+1,a,o),R3e(e,p,r,a,o)):(o.length||o.push(u),o.push(h)),o}function R5a(e,t=.15,r){const a=[],s=(e.length-1)/3;for(let o=0;o-1}function axi(e){return e.replace(JEi,function(t,r){return String.fromCharCode(r)})}function sxi(e){var t=axi(e||"").replace(exi,"").replace(txi,"").trim();if(!t)return"about:blank";if(ixi(t))return t;var r=t.match(nxi);if(!r)return t;var a=r[0];return ZEi.test(a)?"about:blank":t}U9=Ept.sanitizeUrl=sxi;const ozn="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";function NV(e,t,r){const a=r[0];if(t!=null&&e>=t)throw new Error(e+" >= "+t);if(e.slice(-1)===a||t&&t.slice(-1)===a)throw new Error("trailing zero");if(t){let u=0;for(;(e[u]||a)===t[u];)u++;if(u>0)return t.slice(0,u)+NV(e.slice(u),t.slice(u),r)}const s=e?r.indexOf(e[0]):0,o=t!=null?r.indexOf(t[0]):r.length;if(o-s>1){const u=Math.round(.5*(s+o));return r[u]}else return t&&t.length>1?t.slice(0,1):r[s]+NV(e.slice(1),null,r)}function lzn(e){if(e.length!==czn(e[0]))throw new Error("invalid integer part of order key: "+e)}function czn(e){if(e>="a"&&e<="z")return e.charCodeAt(0)-97+2;if(e>="A"&&e<="Z")return 90-e.charCodeAt(0)+2;throw new Error("invalid order key head: "+e)}function qie(e){const t=czn(e[0]);if(t>e.length)throw new Error("invalid order key: "+e);return e.slice(0,t)}function l_n(e,t){if(e==="A"+t[0].repeat(26))throw new Error("invalid order key: "+e);const r=qie(e);if(e.slice(r.length).slice(-1)===t[0])throw new Error("invalid order key: "+e)}function c_n(e,t){lzn(e);const[r,...a]=e.split("");let s=!0;for(let o=a.length-1;s&&o>=0;o--){const u=t.indexOf(a[o])+1;u===t.length?a[o]=t[0]:(a[o]=t[u],s=!1)}if(s){if(r==="Z")return"a"+t[0];if(r==="z")return null;const o=String.fromCharCode(r.charCodeAt(0)+1);return o>"a"?a.push(t[0]):a.pop(),o+a.join("")}else return r+a.join("")}function oxi(e,t){lzn(e);const[r,...a]=e.split("");let s=!0;for(let o=a.length-1;s&&o>=0;o--){const u=t.indexOf(a[o])-1;u===-1?a[o]=t.slice(-1):(a[o]=t[u],s=!1)}if(s){if(r==="a")return"Z"+t.slice(-1);if(r==="A")return null;const o=String.fromCharCode(r.charCodeAt(0)-1);return o<"Z"?a.push(t.slice(-1)):a.pop(),o+a.join("")}else return r+a.join("")}function HH(e,t,r=ozn){if(e!=null&&l_n(e,r),t!=null&&l_n(t,r),e!=null&&t!=null&&e>=t)throw new Error(e+" >= "+t);if(e==null){if(t==null)return"a"+r[0];const f=qie(t),p=t.slice(f.length);if(f==="A"+r[0].repeat(26))return f+NV("",p,r);if(f{if(typeof self>"u")return!1;if("top"in self&&self!==top)try{}catch{return!1}else if("showOpenFilePicker"in self)return"showOpenFilePicker";return!1})(),lxi=xpt?ea(()=>Promise.resolve().then(()=>Wea),void 0):ea(()=>Promise.resolve().then(()=>Xea),void 0);async function I5a(...e){return(await lxi).default(...e)}xpt?ea(()=>Promise.resolve().then(()=>Zea),void 0):ea(()=>Promise.resolve().then(()=>eta),void 0);const cxi=xpt?ea(()=>Promise.resolve().then(()=>nta),void 0):ea(()=>Promise.resolve().then(()=>ita),void 0);async function N5a(...e){return(await cxi).default(...e)}const iR={};let uxi=0;function hxi(e,t){const r=`atom${++uxi}`,a={toString(){return(iR?"production":void 0)!=="production"&&this.debugLabel?r+":"+this.debugLabel:r}};return typeof e=="function"?a.read=e:(a.init=e,a.read=dxi,a.write=fxi),a}function dxi(e){return e(this)}function fxi(e,t,r){return t(this,typeof r=="function"?r(e(this)):r)}const h_n=(e,t)=>e.unstable_is?e.unstable_is(t):t===e,Dlt=e=>"init"in e,dnt=e=>!!e.write,I3e=new WeakMap,Mlt=e=>{var t;return Plt(e)&&!((t=I3e.get(e))!=null&&t[1])},pxi=(e,t)=>{const r=I3e.get(e);if(r)r[1]=!0,r[0].forEach(a=>a(t));else if((iR?"production":void 0)!=="production")throw new Error("[Bug] cancelable promise not found")},gxi=e=>{if(I3e.has(e))return;const t=[new Set,!1];I3e.set(e,t);const r=()=>{t[1]=!0};e.then(r,r),e.onCancel=a=>{t[0].add(a)}},Plt=e=>typeof(e==null?void 0:e.then)=="function",d_n=e=>"v"in e||"e"in e,gwe=e=>{if("e"in e)throw e.e;if((iR?"production":void 0)!=="production"&&!("v"in e))throw new Error("[Bug] atom state is not initialized");return e.v},uzn=(e,t,r)=>{r.p.has(e)||(r.p.add(e),t.then(()=>{r.p.delete(e)},()=>{r.p.delete(e)}))},f_n=(e,t,r,a,s)=>{var o;if((iR?"production":void 0)!=="production"&&a===t)throw new Error("[Bug] atom cannot depend on itself");r.d.set(a,s.n),Mlt(r.v)&&uzn(t,r.v,s),(o=s.m)==null||o.t.add(t),e&&mxi(e,a,t)},Zre=()=>({D:new Map,H:new Set,M:new Set,L:new Set}),_se=(e,t,r)=>{e[t].add(r)},p_n=(e,t,r)=>{e.D.has(t)||(e.D.set(t,new Set),_se(e,"M",()=>{var a;(a=r.m)==null||a.l.forEach(s=>_se(e,"M",s))}))},mxi=(e,t,r)=>{const a=e.D.get(t);a&&a.add(r)},bxi=(e,t)=>e.D.get(t),mB=e=>{let t,r=!1;const a=s=>{try{s()}catch(o){r||(t=o,r=!0)}};for(;e.H.size||e.M.size||e.L.size;)e.D.clear(),e.H.forEach(a),e.H.clear(),e.M.forEach(a),e.M.clear(),e.L.forEach(a),e.L.clear();if(r)throw t},hzn=(...[e,t,r,a])=>{const s=(k,I,N)=>{const L="v"in I,P=I.v,M=Mlt(I.v)?I.v:null;if(Plt(N)){gxi(N);for(const F of I.d.keys())uzn(k,N,e(F));I.v=N}else I.v=N;delete I.e,delete I.x,(!L||!Object.is(P,I.v))&&(++I.n,M&&pxi(M,N))},o=(k,I)=>{var N;const L=e(I);if(d_n(L)&&(L.m&&!L.x||Array.from(L.d).every(([G,B])=>o(k,G).n===B)))return L;L.d.clear();let P=!0;const M=G=>{if(h_n(I,G)){const Z=e(G);if(!d_n(Z))if(Dlt(G))s(G,Z,G.init);else throw new Error("no atom init");return gwe(Z)}const B=o(k,G);try{return gwe(B)}finally{if(P)f_n(k,I,L,G,B);else{const Z=Zre();f_n(Z,I,L,G,B),b(Z,I,L),mB(Z)}}};let F,U;const $={get signal(){return F||(F=new AbortController),F.signal},get setSelf(){return(iR?"production":void 0)!=="production"&&!dnt(I)&&console.warn("setSelf function cannot be used with read-only atom"),!U&&dnt(I)&&(U=(...G)=>{if((iR?"production":void 0)!=="production"&&P&&console.warn("setSelf function cannot be called in sync"),!P)return m(I,...G)}),U}};try{const G=t(I,M,$);if(s(I,L,G),Plt(G)){(N=G.onCancel)==null||N.call(G,()=>F==null?void 0:F.abort());const B=()=>{if(L.m){const Z=Zre();b(Z,I,L),mB(Z)}};G.then(B,B)}return L}catch(G){return delete L.v,L.e=G,delete L.x,++L.n,L}finally{P=!1}},u=k=>gwe(o(void 0,k)),h=(k,I,N)=>{var L,P;const M=new Map;for(const F of((L=N.m)==null?void 0:L.t)||[]){const U=e(F);U.m&&M.set(F,U)}for(const F of N.p)M.set(F,e(F));return(P=bxi(k,I))==null||P.forEach(F=>{M.set(F,e(F))}),M},f=(k,I,N)=>{const L=[],P=new Set,M=new Set,F=[[I,N]];for(;F.length>0;){const[U,$]=F[F.length-1];if(M.has(U)){F.pop();continue}if(P.has(U)){L.push([U,$,$.n]),M.add(U),$.x=!0,F.pop();continue}P.add(U);for(const[G,B]of h(k,U,$))U!==G&&!P.has(G)&&F.push([G,B])}_se(k,"H",()=>{const U=new Set([I]);for(let $=L.length-1;$>=0;--$){const[G,B,Z]=L[$];let z=!1;for(const Y of B.d.keys())if(Y!==G&&U.has(Y)){z=!0;break}z&&(o(k,G),b(k,G,B),Z!==B.n&&(p_n(k,G,B),U.add(G))),delete B.x}})},p=(k,I,...N)=>{let L=!0;const P=F=>gwe(o(k,F)),M=(F,...U)=>{const $=e(F);try{if(h_n(I,F)){if(!Dlt(F))throw new Error("atom not writable");const G=$.n,B=U[0];s(F,$,B),b(k,F,$),G!==$.n&&(p_n(k,F,$),f(k,F,$));return}else return p(k,F,...U)}finally{L||mB(k)}};try{return r(I,P,M,...N)}finally{L=!1}},m=(k,...I)=>{const N=Zre();try{return p(N,k,...I)}finally{mB(N)}},b=(k,I,N)=>{if(N.m&&!Mlt(N.v)){for(const L of N.d.keys())N.m.d.has(L)||(_(k,L,e(L)).t.add(I),N.m.d.add(L));for(const L of N.m.d||[])if(!N.d.has(L)){N.m.d.delete(L);const P=w(k,L,e(L));P==null||P.t.delete(I)}}},_=(k,I,N)=>{if(!N.m){o(k,I);for(const L of N.d.keys())_(k,L,e(L)).t.add(I);if(N.m={l:new Set,d:new Set(N.d.keys()),t:new Set},dnt(I)){const L=N.m;let P;const M=(F,U)=>{let $=!0;P=(...G)=>{try{return p(F,I,...G)}finally{$||mB(F)}};try{return U()}finally{$=!1}};_se(k,"L",()=>{const F=M(k,()=>a(I,(...U)=>P(...U)));F&&(L.u=U=>M(U,F))})}}return N.m},w=(k,I,N)=>{if(N.m&&!N.m.l.size&&!Array.from(N.m.t).some(L=>{var P;return(P=e(L).m)==null?void 0:P.d.has(I)})){const L=N.m.u;L&&_se(k,"L",()=>L(k)),delete N.m;for(const P of N.d.keys()){const M=w(k,P,e(P));M==null||M.t.delete(I)}return}return N.m};return{get:u,set:m,sub:(k,I)=>{const N=Zre(),L=e(k),M=_(N,k,L).l;return M.add(I),mB(N),()=>{M.delete(I);const F=Zre();w(F,k,L),mB(F)}},unstable_derive:k=>hzn(...k(e,t,r,a))}},yxi=e=>{const t=new WeakMap,r=new Set;let a,s=0;const o=e.unstable_derive((f,p,m,b)=>(a=f,[_=>{let w=t.get(_);if(!w){const S=f(_);w=new Proxy(S,{set(C,A,k){return A==="m"&&r.add(_),Reflect.set(C,A,k)},deleteProperty(C,A){return A==="m"&&r.delete(_),Reflect.deleteProperty(C,A)}}),t.set(_,w)}return w},p,(_,w,S,...C)=>s?S(_,...C):m(_,w,S,...C),b])),u=o.set;return Object.assign(o,{dev4_get_internal_weak_map:()=>({get:f=>{const p=a(f);if(p.n!==0)return p}}),dev4_get_mounted_atoms:()=>r,dev4_restore_atoms:f=>{u({read:()=>null,write:(m,b)=>{++s;try{for(const[_,w]of f)Dlt(_)&&b(_,w)}finally{--s}}})}})},dzn=()=>{const e=new WeakMap,r=hzn(a=>{if((iR?"production":void 0)!=="production"&&!a)throw new Error("Atom is undefined or null");let s=e.get(a);return s||(s={d:new Map,p:new Set,n:0},e.set(a,s)),s},(a,...s)=>a.read(...s),(a,...s)=>a.write(...s),(a,...s)=>{var o;return(o=a.onMount)==null?void 0:o.call(a,...s)});return(iR?"production":void 0)!=="production"?yxi(r):r};let Jre;const vxi=()=>(Jre||(Jre=dzn(),(iR?"production":void 0)!=="production"&&(globalThis.__JOTAI_DEFAULT_STORE__||(globalThis.__JOTAI_DEFAULT_STORE__=Jre),globalThis.__JOTAI_DEFAULT_STORE__!==Jre&&console.warn("Detected multiple Jotai instances. It may cause unexpected behavior with the default store. https://github.com/pmndrs/jotai/discussions/2044"))),Jre),fzn={},_xi=ue.createContext(void 0),zAe=e=>{const t=ue.useContext(_xi);return(e==null?void 0:e.store)||t||vxi()},Blt=e=>typeof(e==null?void 0:e.then)=="function",pzn=e=>{e.status="pending",e.then(t=>{e.status="fulfilled",e.value=t},t=>{e.status="rejected",e.reason=t})},wxi=Er.use||(e=>{if(e.status==="pending")throw e;if(e.status==="fulfilled")return e.value;throw e.status==="rejected"?e.reason:(pzn(e),e)}),fnt=new WeakMap,g_n=e=>{let t=fnt.get(e);return t||(t=new Promise((r,a)=>{let s=e;const o=f=>p=>{s===f&&r(p)},u=f=>p=>{s===f&&a(p)},h=f=>{"onCancel"in f&&typeof f.onCancel=="function"&&f.onCancel(p=>{if((fzn?"production":void 0)!=="production"&&p===f)throw new Error("[Bug] p is not updated even after cancelation");Blt(p)?(fnt.set(p,t),s=p,p.then(o(p),u(p)),h(p)):r(p)})};e.then(o(e),u(e)),h(e)}),fnt.set(e,t)),t};function gzn(e,t){const r=zAe(t),[[a,s,o],u]=ue.useReducer(p=>{const m=r.get(e);return Object.is(p[0],m)&&p[1]===r&&p[2]===e?p:[m,r,e]},void 0,()=>[r.get(e),r,e]);let h=a;(s!==r||o!==e)&&(u(),h=r.get(e));const f=t==null?void 0:t.delay;if(ue.useEffect(()=>{const p=r.sub(e,()=>{if(typeof f=="number"){const m=r.get(e);Blt(m)&&pzn(g_n(m)),setTimeout(u,f);return}u()});return u(),p},[r,e,f]),ue.useDebugValue(h),Blt(h)){const p=g_n(h);return wxi(p)}return h}function mzn(e,t){const r=zAe(t);return ue.useCallback((...s)=>{if((fzn?"production":void 0)!=="production"&&!("write"in e))throw new Error("not writable atom");return r.set(e,...s)},[r,e])}function Exi(e,t){return[gzn(e,t),mzn(e,t)]}const m_n=new WeakMap;function xxi(e,t){const r=zAe(t),a=Sxi(r);for(const[s,o]of e)(!a.has(s)||t!=null&&t.dangerouslyForceHydrate)&&(a.add(s),r.set(s,o))}const Sxi=e=>{let t=m_n.get(e);return t||(t=new WeakSet,m_n.set(e,t)),t};function OV(){return OV=Object.assign?Object.assign.bind():function(e){for(var t=1;t{const h=ue.useContext(e);if(!h)throw new Error("Missing Provider from createIsolation");return zAe(OV({store:h},u))};return{Provider:t,useStore:r,useAtom:(u,h)=>{const f=r();return Exi(u,OV({store:f},h))},useAtomValue:(u,h)=>{const f=r();return gzn(u,OV({store:f},h))},useSetAtom:(u,h)=>{const f=r();return mzn(u,OV({store:f},h))}}}const{read:L5a,write:D5a}=hxi(null);ue.createContext({scope:void 0,baseStore:void 0});function NO(e,t,{checkForDefaultPrevented:r=!0}={}){return function(s){if(e==null||e(s),r===!1||!s.defaultPrevented)return t==null?void 0:t(s)}}function b_n(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function bzn(...e){return t=>{let r=!1;const a=e.map(s=>{const o=b_n(s,t);return!r&&typeof o=="function"&&(r=!0),o});if(r)return()=>{for(let s=0;s{var k;const{scope:_,children:w,...S}=b,C=((k=_==null?void 0:_[e])==null?void 0:k[f])||h,A=ue.useMemo(()=>S,Object.values(S));return ct.jsx(C.Provider,{value:A,children:w})};p.displayName=o+"Provider";function m(b,_){var C;const w=((C=_==null?void 0:_[e])==null?void 0:C[f])||h,S=ue.useContext(w);if(S)return S;if(u!==void 0)return u;throw new Error(`\`${b}\` must be used within \`${o}\``)}return[p,m]}const s=()=>{const o=r.map(u=>ue.createContext(u));return function(h){const f=(h==null?void 0:h[e])||o;return ue.useMemo(()=>({[`__scope${e}`]:{...h,[e]:f}}),[h,f])}};return s.scopeName=e,[a,Txi(s,...t)]}function Txi(...e){const t=e[0];if(e.length===1)return t;const r=()=>{const a=e.map(s=>({useScope:s(),scopeName:s.scopeName}));return function(o){const u=a.reduce((h,{useScope:f,scopeName:p})=>{const b=f(o)[`__scope${p}`];return{...h,...b}},{});return ue.useMemo(()=>({[`__scope${t.scopeName}`]:u}),[u])}};return r.scopeName=t.scopeName,r}var Spt=ue.forwardRef((e,t)=>{const{children:r,...a}=e,s=ue.Children.toArray(r),o=s.find(Axi);if(o){const u=o.props.children,h=s.map(f=>f===o?ue.Children.count(u)>1?ue.Children.only(null):ue.isValidElement(u)?u.props.children:null:f);return ct.jsx(Flt,{...a,ref:t,children:ue.isValidElement(u)?ue.cloneElement(u,void 0,h):null})}return ct.jsx(Flt,{...a,ref:t,children:r})});Spt.displayName="Slot";var Flt=ue.forwardRef((e,t)=>{const{children:r,...a}=e;if(ue.isValidElement(r)){const s=Rxi(r),o=kxi(a,r.props);return r.type!==ue.Fragment&&(o.ref=t?bzn(t,s):s),ue.cloneElement(r,o)}return ue.Children.count(r)>1?ue.Children.only(null):null});Flt.displayName="SlotClone";var Cxi=({children:e})=>ct.jsx(ct.Fragment,{children:e});function Axi(e){return ue.isValidElement(e)&&e.type===Cxi}function kxi(e,t){const r={...t};for(const a in t){const s=e[a],o=t[a];/^on[A-Z]/.test(a)?s&&o?r[a]=(...h)=>{o(...h),s(...h)}:s&&(r[a]=s):a==="style"?r[a]={...s,...o}:a==="className"&&(r[a]=[s,o].filter(Boolean).join(" "))}return{...e,...r}}function Rxi(e){var a,s;let t=(a=Object.getOwnPropertyDescriptor(e.props,"ref"))==null?void 0:a.get,r=t&&"isReactWarning"in t&&t.isReactWarning;return r?e.ref:(t=(s=Object.getOwnPropertyDescriptor(e,"ref"))==null?void 0:s.get,r=t&&"isReactWarning"in t&&t.isReactWarning,r?e.props.ref:e.props.ref||e.ref)}var Ixi=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","span","svg","ul"],wR=Ixi.reduce((e,t)=>{const r=ue.forwardRef((a,s)=>{const{asChild:o,...u}=a,h=o?Spt:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),ct.jsx(h,{...u,ref:s})});return r.displayName=`Primitive.${t}`,{...e,[t]:r}},{});function Nxi(e,t){e&&w9.flushSync(()=>e.dispatchEvent(t))}function e9(e){const t=ue.useRef(e);return ue.useEffect(()=>{t.current=e}),ue.useMemo(()=>(...r)=>{var a;return(a=t.current)==null?void 0:a.call(t,...r)},[])}function Oxi(e,t=globalThis==null?void 0:globalThis.document){const r=e9(e);ue.useEffect(()=>{const a=s=>{s.key==="Escape"&&r(s)};return t.addEventListener("keydown",a,{capture:!0}),()=>t.removeEventListener("keydown",a,{capture:!0})},[r,t])}var Lxi="DismissableLayer",$lt="dismissableLayer.update",Dxi="dismissableLayer.pointerDownOutside",Mxi="dismissableLayer.focusOutside",y_n,vzn=ue.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),_zn=ue.forwardRef((e,t)=>{const{disableOutsidePointerEvents:r=!1,onEscapeKeyDown:a,onPointerDownOutside:s,onFocusOutside:o,onInteractOutside:u,onDismiss:h,...f}=e,p=ue.useContext(vzn),[m,b]=ue.useState(null),_=(m==null?void 0:m.ownerDocument)??(globalThis==null?void 0:globalThis.document),[,w]=ue.useState({}),S=z9(t,F=>b(F)),C=Array.from(p.layers),[A]=[...p.layersWithOutsidePointerEventsDisabled].slice(-1),k=C.indexOf(A),I=m?C.indexOf(m):-1,N=p.layersWithOutsidePointerEventsDisabled.size>0,L=I>=k,P=Fxi(F=>{const U=F.target,$=[...p.branches].some(G=>G.contains(U));!L||$||(s==null||s(F),u==null||u(F),F.defaultPrevented||h==null||h())},_),M=$xi(F=>{const U=F.target;[...p.branches].some(G=>G.contains(U))||(o==null||o(F),u==null||u(F),F.defaultPrevented||h==null||h())},_);return Oxi(F=>{I===p.layers.size-1&&(a==null||a(F),!F.defaultPrevented&&h&&(F.preventDefault(),h()))},_),ue.useEffect(()=>{if(m)return r&&(p.layersWithOutsidePointerEventsDisabled.size===0&&(y_n=_.body.style.pointerEvents,_.body.style.pointerEvents="none"),p.layersWithOutsidePointerEventsDisabled.add(m)),p.layers.add(m),v_n(),()=>{r&&p.layersWithOutsidePointerEventsDisabled.size===1&&(_.body.style.pointerEvents=y_n)}},[m,_,r,p]),ue.useEffect(()=>()=>{m&&(p.layers.delete(m),p.layersWithOutsidePointerEventsDisabled.delete(m),v_n())},[m,p]),ue.useEffect(()=>{const F=()=>w({});return document.addEventListener($lt,F),()=>document.removeEventListener($lt,F)},[]),ct.jsx(wR.div,{...f,ref:S,style:{pointerEvents:N?L?"auto":"none":void 0,...e.style},onFocusCapture:NO(e.onFocusCapture,M.onFocusCapture),onBlurCapture:NO(e.onBlurCapture,M.onBlurCapture),onPointerDownCapture:NO(e.onPointerDownCapture,P.onPointerDownCapture)})});_zn.displayName=Lxi;var Pxi="DismissableLayerBranch",Bxi=ue.forwardRef((e,t)=>{const r=ue.useContext(vzn),a=ue.useRef(null),s=z9(t,a);return ue.useEffect(()=>{const o=a.current;if(o)return r.branches.add(o),()=>{r.branches.delete(o)}},[r.branches]),ct.jsx(wR.div,{...e,ref:s})});Bxi.displayName=Pxi;function Fxi(e,t=globalThis==null?void 0:globalThis.document){const r=e9(e),a=ue.useRef(!1),s=ue.useRef(()=>{});return ue.useEffect(()=>{const o=h=>{if(h.target&&!a.current){let f=function(){wzn(Dxi,r,p,{discrete:!0})};const p={originalEvent:h};h.pointerType==="touch"?(t.removeEventListener("click",s.current),s.current=f,t.addEventListener("click",s.current,{once:!0})):f()}else t.removeEventListener("click",s.current);a.current=!1},u=window.setTimeout(()=>{t.addEventListener("pointerdown",o)},0);return()=>{window.clearTimeout(u),t.removeEventListener("pointerdown",o),t.removeEventListener("click",s.current)}},[t,r]),{onPointerDownCapture:()=>a.current=!0}}function $xi(e,t=globalThis==null?void 0:globalThis.document){const r=e9(e),a=ue.useRef(!1);return ue.useEffect(()=>{const s=o=>{o.target&&!a.current&&wzn(Mxi,r,{originalEvent:o},{discrete:!1})};return t.addEventListener("focusin",s),()=>t.removeEventListener("focusin",s)},[t,r]),{onFocusCapture:()=>a.current=!0,onBlurCapture:()=>a.current=!1}}function v_n(){const e=new CustomEvent($lt);document.dispatchEvent(e)}function wzn(e,t,r,{discrete:a}){const s=r.originalEvent.target,o=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:r});t&&s.addEventListener(e,t,{once:!0}),a?Nxi(s,o):s.dispatchEvent(o)}var pnt=0;function Uxi(){ue.useEffect(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??__n()),document.body.insertAdjacentElement("beforeend",e[1]??__n()),pnt++,()=>{pnt===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(t=>t.remove()),pnt--}},[])}function __n(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}var gnt="focusScope.autoFocusOnMount",mnt="focusScope.autoFocusOnUnmount",w_n={bubbles:!1,cancelable:!0},zxi="FocusScope",Ezn=ue.forwardRef((e,t)=>{const{loop:r=!1,trapped:a=!1,onMountAutoFocus:s,onUnmountAutoFocus:o,...u}=e,[h,f]=ue.useState(null),p=e9(s),m=e9(o),b=ue.useRef(null),_=z9(t,C=>f(C)),w=ue.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;ue.useEffect(()=>{if(a){let C=function(N){if(w.paused||!h)return;const L=N.target;h.contains(L)?b.current=L:jN(b.current,{select:!0})},A=function(N){if(w.paused||!h)return;const L=N.relatedTarget;L!==null&&(h.contains(L)||jN(b.current,{select:!0}))},k=function(N){if(document.activeElement===document.body)for(const P of N)P.removedNodes.length>0&&jN(h)};document.addEventListener("focusin",C),document.addEventListener("focusout",A);const I=new MutationObserver(k);return h&&I.observe(h,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",C),document.removeEventListener("focusout",A),I.disconnect()}}},[a,h,w.paused]),ue.useEffect(()=>{if(h){x_n.add(w);const C=document.activeElement;if(!h.contains(C)){const k=new CustomEvent(gnt,w_n);h.addEventListener(gnt,p),h.dispatchEvent(k),k.defaultPrevented||(Gxi(jxi(xzn(h)),{select:!0}),document.activeElement===C&&jN(h))}return()=>{h.removeEventListener(gnt,p),setTimeout(()=>{const k=new CustomEvent(mnt,w_n);h.addEventListener(mnt,m),h.dispatchEvent(k),k.defaultPrevented||jN(C??document.body,{select:!0}),h.removeEventListener(mnt,m),x_n.remove(w)},0)}}},[h,p,m,w]);const S=ue.useCallback(C=>{if(!r&&!a||w.paused)return;const A=C.key==="Tab"&&!C.altKey&&!C.ctrlKey&&!C.metaKey,k=document.activeElement;if(A&&k){const I=C.currentTarget,[N,L]=qxi(I);N&&L?!C.shiftKey&&k===L?(C.preventDefault(),r&&jN(N,{select:!0})):C.shiftKey&&k===N&&(C.preventDefault(),r&&jN(L,{select:!0})):k===I&&C.preventDefault()}},[r,a,w.paused]);return ct.jsx(wR.div,{tabIndex:-1,...u,ref:_,onKeyDown:S})});Ezn.displayName=zxi;function Gxi(e,{select:t=!1}={}){const r=document.activeElement;for(const a of e)if(jN(a,{select:t}),document.activeElement!==r)return}function qxi(e){const t=xzn(e),r=E_n(t,e),a=E_n(t.reverse(),e);return[r,a]}function xzn(e){const t=[],r=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:a=>{const s=a.tagName==="INPUT"&&a.type==="hidden";return a.disabled||a.hidden||s?NodeFilter.FILTER_SKIP:a.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;r.nextNode();)t.push(r.currentNode);return t}function E_n(e,t){for(const r of e)if(!Hxi(r,{upTo:t}))return r}function Hxi(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function Vxi(e){return e instanceof HTMLInputElement&&"select"in e}function jN(e,{select:t=!1}={}){if(e&&e.focus){const r=document.activeElement;e.focus({preventScroll:!0}),e!==r&&Vxi(e)&&t&&e.select()}}var x_n=Yxi();function Yxi(){let e=[];return{add(t){const r=e[0];t!==r&&(r==null||r.pause()),e=S_n(e,t),e.unshift(t)},remove(t){var r;e=S_n(e,t),(r=e[0])==null||r.resume()}}}function S_n(e,t){const r=[...e],a=r.indexOf(t);return a!==-1&&r.splice(a,1),r}function jxi(e){return e.filter(t=>t.tagName!=="A")}var jF=globalThis!=null&&globalThis.document?ue.useLayoutEffect:()=>{},Wxi=g$.useId||(()=>{}),Kxi=0;function Xxi(e){const[t,r]=ue.useState(Wxi());return jF(()=>{r(a=>a??String(Kxi++))},[e]),e||(t?`radix-${t}`:"")}var Qxi="Arrow",Szn=ue.forwardRef((e,t)=>{const{children:r,width:a=10,height:s=5,...o}=e;return ct.jsx(wR.svg,{...o,ref:t,width:a,height:s,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:e.asChild?r:ct.jsx("polygon",{points:"0,0 30,0 15,10"})})});Szn.displayName=Qxi;var Zxi=Szn;function Jxi(e){const[t,r]=ue.useState(void 0);return jF(()=>{if(e){r({width:e.offsetWidth,height:e.offsetHeight});const a=new ResizeObserver(s=>{if(!Array.isArray(s)||!s.length)return;const o=s[0];let u,h;if("borderBoxSize"in o){const f=o.borderBoxSize,p=Array.isArray(f)?f[0]:f;u=p.inlineSize,h=p.blockSize}else u=e.offsetWidth,h=e.offsetHeight;r({width:u,height:h})});return a.observe(e,{box:"border-box"}),()=>a.unobserve(e)}else r(void 0)},[e]),t}var Tpt="Popper",[Tzn,Czn]=yzn(Tpt),[eSi,Azn]=Tzn(Tpt),kzn=e=>{const{__scopePopper:t,children:r}=e,[a,s]=ue.useState(null);return ct.jsx(eSi,{scope:t,anchor:a,onAnchorChange:s,children:r})};kzn.displayName=Tpt;var Rzn="PopperAnchor",Izn=ue.forwardRef((e,t)=>{const{__scopePopper:r,virtualRef:a,...s}=e,o=Azn(Rzn,r),u=ue.useRef(null),h=z9(t,u);return ue.useEffect(()=>{o.onAnchorChange((a==null?void 0:a.current)||u.current)}),a?null:ct.jsx(wR.div,{...s,ref:h})});Izn.displayName=Rzn;var Cpt="PopperContent",[tSi,nSi]=Tzn(Cpt),Nzn=ue.forwardRef((e,t)=>{var ve,De,ye,Ee,he,we;const{__scopePopper:r,side:a="bottom",sideOffset:s=0,align:o="center",alignOffset:u=0,arrowPadding:h=0,avoidCollisions:f=!0,collisionBoundary:p=[],collisionPadding:m=0,sticky:b="partial",hideWhenDetached:_=!1,updatePositionStrategy:w="optimized",onPlaced:S,...C}=e,A=Azn(Cpt,r),[k,I]=ue.useState(null),N=z9(t,Ce=>I(Ce)),[L,P]=ue.useState(null),M=Jxi(L),F=(M==null?void 0:M.width)??0,U=(M==null?void 0:M.height)??0,$=a+(o!=="center"?"-"+o:""),G=typeof m=="number"?m:{top:0,right:0,bottom:0,left:0,...m},B=Array.isArray(p)?p:[p],Z=B.length>0,z={padding:G,boundary:B.filter(iSi),altBoundary:Z},{refs:Y,floatingStyles:W,placement:Q,isPositioned:V,middlewareData:j}=Zdt({strategy:"fixed",placement:$,whileElementsMounted:(...Ce)=>U6n(...Ce,{animationFrame:w==="always"}),elements:{reference:A.anchor},middleware:[G6n({mainAxis:s+U,alignmentAxis:u}),f&&q6n({mainAxis:!0,crossAxis:!1,limiter:b==="partial"?H6n():void 0,...z}),f&&V6n({...z}),Y6n({...z,apply:({elements:Ce,rects:Ie,availableWidth:Le,availableHeight:Fe})=>{const{width:Ve,height:Oe}=Ie.reference,Dt=Ce.floating.style;Dt.setProperty("--radix-popper-available-width",`${Le}px`),Dt.setProperty("--radix-popper-available-height",`${Fe}px`),Dt.setProperty("--radix-popper-anchor-width",`${Ve}px`),Dt.setProperty("--radix-popper-anchor-height",`${Oe}px`)}}),L&&W6n({element:L,padding:h}),aSi({arrowWidth:F,arrowHeight:U}),_&&j6n({strategy:"referenceHidden",...z})]}),[ee,te]=Dzn(Q),ne=e9(S);jF(()=>{V&&(ne==null||ne())},[V,ne]);const se=(ve=j.arrow)==null?void 0:ve.x,ie=(De=j.arrow)==null?void 0:De.y,ge=((ye=j.arrow)==null?void 0:ye.centerOffset)!==0,[ce,be]=ue.useState();return jF(()=>{k&&be(window.getComputedStyle(k).zIndex)},[k]),ct.jsx("div",{ref:Y.setFloating,"data-radix-popper-content-wrapper":"",style:{...W,transform:V?W.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:ce,"--radix-popper-transform-origin":[(Ee=j.transformOrigin)==null?void 0:Ee.x,(he=j.transformOrigin)==null?void 0:he.y].join(" "),...((we=j.hide)==null?void 0:we.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:ct.jsx(tSi,{scope:r,placedSide:ee,onArrowChange:P,arrowX:se,arrowY:ie,shouldHideArrow:ge,children:ct.jsx(wR.div,{"data-side":ee,"data-align":te,...C,ref:N,style:{...C.style,animation:V?void 0:"none"}})})})});Nzn.displayName=Cpt;var Ozn="PopperArrow",rSi={top:"bottom",right:"left",bottom:"top",left:"right"},Lzn=ue.forwardRef(function(t,r){const{__scopePopper:a,...s}=t,o=nSi(Ozn,a),u=rSi[o.placedSide];return ct.jsx("span",{ref:o.onArrowChange,style:{position:"absolute",left:o.arrowX,top:o.arrowY,[u]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[o.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[o.placedSide],visibility:o.shouldHideArrow?"hidden":void 0},children:ct.jsx(Zxi,{...s,ref:r,style:{...s.style,display:"block"}})})});Lzn.displayName=Ozn;function iSi(e){return e!==null}var aSi=e=>({name:"transformOrigin",options:e,fn(t){var A,k,I;const{placement:r,rects:a,middlewareData:s}=t,u=((A=s.arrow)==null?void 0:A.centerOffset)!==0,h=u?0:e.arrowWidth,f=u?0:e.arrowHeight,[p,m]=Dzn(r),b={start:"0%",center:"50%",end:"100%"}[m],_=(((k=s.arrow)==null?void 0:k.x)??0)+h/2,w=(((I=s.arrow)==null?void 0:I.y)??0)+f/2;let S="",C="";return p==="bottom"?(S=u?b:`${_}px`,C=`${-f}px`):p==="top"?(S=u?b:`${_}px`,C=`${a.floating.height+f}px`):p==="right"?(S=`${-f}px`,C=u?b:`${w}px`):p==="left"&&(S=`${a.floating.width+f}px`,C=u?b:`${w}px`),{data:{x:S,y:C}}}});function Dzn(e){const[t,r="center"]=e.split("-");return[t,r]}var sSi=kzn,Mzn=Izn,oSi=Nzn,lSi=Lzn,cSi="Portal",Pzn=ue.forwardRef((e,t)=>{var h;const{container:r,...a}=e,[s,o]=ue.useState(!1);jF(()=>o(!0),[]);const u=r||s&&((h=globalThis==null?void 0:globalThis.document)==null?void 0:h.body);return u?odt.createPortal(ct.jsx(wR.div,{...a,ref:t}),u):null});Pzn.displayName=cSi;function uSi(e,t){return ue.useReducer((r,a)=>t[r][a]??r,e)}var Apt=e=>{const{present:t,children:r}=e,a=hSi(t),s=typeof r=="function"?r({present:a.isPresent}):ue.Children.only(r),o=z9(a.ref,dSi(s));return typeof r=="function"||a.isPresent?ue.cloneElement(s,{ref:o}):null};Apt.displayName="Presence";function hSi(e){const[t,r]=ue.useState(),a=ue.useRef({}),s=ue.useRef(e),o=ue.useRef("none"),u=e?"mounted":"unmounted",[h,f]=uSi(u,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return ue.useEffect(()=>{const p=mwe(a.current);o.current=h==="mounted"?p:"none"},[h]),jF(()=>{const p=a.current,m=s.current;if(m!==e){const _=o.current,w=mwe(p);e?f("MOUNT"):w==="none"||(p==null?void 0:p.display)==="none"?f("UNMOUNT"):f(m&&_!==w?"ANIMATION_OUT":"UNMOUNT"),s.current=e}},[e,f]),jF(()=>{if(t){let p;const m=t.ownerDocument.defaultView??window,b=w=>{const C=mwe(a.current).includes(w.animationName);if(w.target===t&&C&&(f("ANIMATION_END"),!s.current)){const A=t.style.animationFillMode;t.style.animationFillMode="forwards",p=m.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=A)})}},_=w=>{w.target===t&&(o.current=mwe(a.current))};return t.addEventListener("animationstart",_),t.addEventListener("animationcancel",b),t.addEventListener("animationend",b),()=>{m.clearTimeout(p),t.removeEventListener("animationstart",_),t.removeEventListener("animationcancel",b),t.removeEventListener("animationend",b)}}else f("ANIMATION_END")},[t,f]),{isPresent:["mounted","unmountSuspended"].includes(h),ref:ue.useCallback(p=>{p&&(a.current=getComputedStyle(p)),r(p)},[])}}function mwe(e){return(e==null?void 0:e.animationName)||"none"}function dSi(e){var a,s;let t=(a=Object.getOwnPropertyDescriptor(e.props,"ref"))==null?void 0:a.get,r=t&&"isReactWarning"in t&&t.isReactWarning;return r?e.ref:(t=(s=Object.getOwnPropertyDescriptor(e,"ref"))==null?void 0:s.get,r=t&&"isReactWarning"in t&&t.isReactWarning,r?e.props.ref:e.props.ref||e.ref)}function fSi({prop:e,defaultProp:t,onChange:r=()=>{}}){const[a,s]=pSi({defaultProp:t,onChange:r}),o=e!==void 0,u=o?e:a,h=e9(r),f=ue.useCallback(p=>{if(o){const b=typeof p=="function"?p(e):p;b!==e&&h(b)}else s(p)},[o,e,s,h]);return[u,f]}function pSi({defaultProp:e,onChange:t}){const r=ue.useState(e),[a]=r,s=ue.useRef(a),o=e9(t);return ue.useEffect(()=>{s.current!==a&&(o(a),s.current=a)},[a,s,o]),r}var kpt="Popover",[Bzn]=yzn(kpt,[Czn]),mce=Czn(),[gSi,G9]=Bzn(kpt),Fzn=e=>{const{__scopePopover:t,children:r,open:a,defaultOpen:s,onOpenChange:o,modal:u=!1}=e,h=mce(t),f=ue.useRef(null),[p,m]=ue.useState(!1),[b=!1,_]=fSi({prop:a,defaultProp:s,onChange:o});return ct.jsx(sSi,{...h,children:ct.jsx(gSi,{scope:t,contentId:Xxi(),triggerRef:f,open:b,onOpenChange:_,onOpenToggle:ue.useCallback(()=>_(w=>!w),[_]),hasCustomAnchor:p,onCustomAnchorAdd:ue.useCallback(()=>m(!0),[]),onCustomAnchorRemove:ue.useCallback(()=>m(!1),[]),modal:u,children:r})})};Fzn.displayName=kpt;var $zn="PopoverAnchor",mSi=ue.forwardRef((e,t)=>{const{__scopePopover:r,...a}=e,s=G9($zn,r),o=mce(r),{onCustomAnchorAdd:u,onCustomAnchorRemove:h}=s;return ue.useEffect(()=>(u(),()=>h()),[u,h]),ct.jsx(Mzn,{...o,...a,ref:t})});mSi.displayName=$zn;var Uzn="PopoverTrigger",zzn=ue.forwardRef((e,t)=>{const{__scopePopover:r,...a}=e,s=G9(Uzn,r),o=mce(r),u=z9(t,s.triggerRef),h=ct.jsx(wR.button,{type:"button","aria-haspopup":"dialog","aria-expanded":s.open,"aria-controls":s.contentId,"data-state":jzn(s.open),...a,ref:u,onClick:NO(e.onClick,s.onOpenToggle)});return s.hasCustomAnchor?h:ct.jsx(Mzn,{asChild:!0,...o,children:h})});zzn.displayName=Uzn;var Rpt="PopoverPortal",[bSi,ySi]=Bzn(Rpt,{forceMount:void 0}),Gzn=e=>{const{__scopePopover:t,forceMount:r,children:a,container:s}=e,o=G9(Rpt,t);return ct.jsx(bSi,{scope:t,forceMount:r,children:ct.jsx(Apt,{present:r||o.open,children:ct.jsx(Pzn,{asChild:!0,container:s,children:a})})})};Gzn.displayName=Rpt;var Fj="PopoverContent",qzn=ue.forwardRef((e,t)=>{const r=ySi(Fj,e.__scopePopover),{forceMount:a=r.forceMount,...s}=e,o=G9(Fj,e.__scopePopover);return ct.jsx(Apt,{present:a||o.open,children:o.modal?ct.jsx(vSi,{...s,ref:t}):ct.jsx(_Si,{...s,ref:t})})});qzn.displayName=Fj;var vSi=ue.forwardRef((e,t)=>{const r=G9(Fj,e.__scopePopover),a=ue.useRef(null),s=z9(t,a),o=ue.useRef(!1);return ue.useEffect(()=>{const u=a.current;if(u)return Vle(u)},[]),ct.jsx(kW,{as:Spt,allowPinchZoom:!0,children:ct.jsx(Hzn,{...e,ref:s,trapFocus:r.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:NO(e.onCloseAutoFocus,u=>{var h;u.preventDefault(),o.current||(h=r.triggerRef.current)==null||h.focus()}),onPointerDownOutside:NO(e.onPointerDownOutside,u=>{const h=u.detail.originalEvent,f=h.button===0&&h.ctrlKey===!0,p=h.button===2||f;o.current=p},{checkForDefaultPrevented:!1}),onFocusOutside:NO(e.onFocusOutside,u=>u.preventDefault(),{checkForDefaultPrevented:!1})})})}),_Si=ue.forwardRef((e,t)=>{const r=G9(Fj,e.__scopePopover),a=ue.useRef(!1),s=ue.useRef(!1);return ct.jsx(Hzn,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:o=>{var u,h;(u=e.onCloseAutoFocus)==null||u.call(e,o),o.defaultPrevented||(a.current||(h=r.triggerRef.current)==null||h.focus(),o.preventDefault()),a.current=!1,s.current=!1},onInteractOutside:o=>{var f,p;(f=e.onInteractOutside)==null||f.call(e,o),o.defaultPrevented||(a.current=!0,o.detail.originalEvent.type==="pointerdown"&&(s.current=!0));const u=o.target;((p=r.triggerRef.current)==null?void 0:p.contains(u))&&o.preventDefault(),o.detail.originalEvent.type==="focusin"&&s.current&&o.preventDefault()}})}),Hzn=ue.forwardRef((e,t)=>{const{__scopePopover:r,trapFocus:a,onOpenAutoFocus:s,onCloseAutoFocus:o,disableOutsidePointerEvents:u,onEscapeKeyDown:h,onPointerDownOutside:f,onFocusOutside:p,onInteractOutside:m,...b}=e,_=G9(Fj,r),w=mce(r);return Uxi(),ct.jsx(Ezn,{asChild:!0,loop:!0,trapped:a,onMountAutoFocus:s,onUnmountAutoFocus:o,children:ct.jsx(_zn,{asChild:!0,disableOutsidePointerEvents:u,onInteractOutside:m,onEscapeKeyDown:h,onPointerDownOutside:f,onFocusOutside:p,onDismiss:()=>_.onOpenChange(!1),children:ct.jsx(oSi,{"data-state":jzn(_.open),role:"dialog",id:_.contentId,...w,...b,ref:t,style:{...b.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-popover-content-available-width":"var(--radix-popper-available-width)","--radix-popover-content-available-height":"var(--radix-popper-available-height)","--radix-popover-trigger-width":"var(--radix-popper-anchor-width)","--radix-popover-trigger-height":"var(--radix-popper-anchor-height)"}})})})}),Vzn="PopoverClose",wSi=ue.forwardRef((e,t)=>{const{__scopePopover:r,...a}=e,s=G9(Vzn,r);return ct.jsx(wR.button,{type:"button",...a,ref:t,onClick:NO(e.onClick,()=>s.onOpenChange(!1))})});wSi.displayName=Vzn;var ESi="PopoverArrow",Yzn=ue.forwardRef((e,t)=>{const{__scopePopover:r,...a}=e,s=mce(r);return ct.jsx(lSi,{...s,...a,ref:t})});Yzn.displayName=ESi;function jzn(e){return e?"open":"closed"}var M5a=Fzn,P5a=zzn,B5a=Gzn,F5a=qzn,$5a=Yzn,Wzn={exports:{}};(function(e,t){(function(){var r={};e.exports=r,r.simpleFilter=function(a,s){return s.filter(function(o){return r.test(a,o)})},r.test=function(a,s){return r.match(a,s)!==null},r.match=function(a,s,o){o=o||{};var u=0,h=[],f=s.length,p=0,m=0,b=o.pre||"",_=o.post||"",w=o.caseSensitive&&s||s.toLowerCase(),S;a=o.caseSensitive&&a||a.toLowerCase();for(var C=0;C{let t;const r=new Set,a=(m,b)=>{const _=typeof m=="function"?m(t):m;if(!Object.is(_,t)){const w=t;t=b??(typeof _!="object"||_===null)?_:Object.assign({},t,_),r.forEach(S=>S(t,w))}},s=()=>t,f={setState:a,getState:s,getInitialState:()=>p,subscribe:m=>(r.add(m),()=>r.delete(m)),destroy:()=>{(SSi?"production":void 0)!=="production"&&console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),r.clear()}},p=t=e(a,s,f);return f},TSi=e=>e?T_n(e):T_n,Kzn={},{useDebugValue:CSi}=Er,{useSyncExternalStoreWithSelector:ASi}=BFr;let C_n=!1;const kSi=e=>e;function RSi(e,t=kSi,r){(Kzn?"production":void 0)!=="production"&&r&&!C_n&&(console.warn("[DEPRECATED] Use `createWithEqualityFn` instead of `create` or use `useStoreWithEqualityFn` instead of `useStore`. They can be imported from 'zustand/traditional'. https://github.com/pmndrs/zustand/discussions/1937"),C_n=!0);const a=ASi(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,r);return CSi(a),a}const A_n=e=>{(Kzn?"production":void 0)!=="production"&&typeof e!="function"&&console.warn("[DEPRECATED] Passing a vanilla store will be unsupported in a future version. Instead use `import { useStore } from 'zustand'`.");const t=typeof e=="function"?TSi(e):e,r=(a,s)=>RSi(t,a,s);return Object.assign(r,t),r},ISi=e=>e?A_n(e):A_n;var k_n,R_n;const I_n=typeof window<"u"&&((k_n=window.document)!=null&&k_n.createElement||((R_n=window.navigator)==null?void 0:R_n.product)==="ReactNative")?Er.useLayoutEffect:Er.useEffect;function z5a(){const e=ISi(t=>({current:new Array,version:0,set:t}));return{In:({children:t})=>{const r=e(s=>s.set),a=e(s=>s.version);return I_n(()=>{r(s=>({version:s.version+1}))},[]),I_n(()=>(r(({current:s})=>({current:[...s,t]})),()=>r(({current:s})=>({current:s.filter(o=>o!==t)}))),[t,a]),null},Out:()=>{const t=e(r=>r.current);return Er.createElement(Er.Fragment,null,t)}}}function z7(e,t,{checkForDefaultPrevented:r=!0}={}){return function(s){if(e==null||e(s),r===!1||!s.defaultPrevented)return t==null?void 0:t(s)}}function Ipt(e,t=[]){let r=[];function a(o,u){const h=ue.createContext(u),f=r.length;r=[...r,u];function p(b){const{scope:_,children:w,...S}=b,C=(_==null?void 0:_[e][f])||h,A=ue.useMemo(()=>S,Object.values(S));return ue.createElement(C.Provider,{value:A},w)}function m(b,_){const w=(_==null?void 0:_[e][f])||h,S=ue.useContext(w);if(S)return S;if(u!==void 0)return u;throw new Error(`\`${b}\` must be used within \`${o}\``)}return p.displayName=o+"Provider",[p,m]}const s=()=>{const o=r.map(u=>ue.createContext(u));return function(h){const f=(h==null?void 0:h[e])||o;return ue.useMemo(()=>({[`__scope${e}`]:{...h,[e]:f}}),[h,f])}};return s.scopeName=e,[a,NSi(s,...t)]}function NSi(...e){const t=e[0];if(e.length===1)return t;const r=()=>{const a=e.map(s=>({useScope:s(),scopeName:s.scopeName}));return function(o){const u=a.reduce((h,{useScope:f,scopeName:p})=>{const b=f(o)[`__scope${p}`];return{...h,...b}},{});return ue.useMemo(()=>({[`__scope${t.scopeName}`]:u}),[u])}};return r.scopeName=t.scopeName,r}function OSi(e,t){typeof e=="function"?e(t):e!=null&&(e.current=t)}function Xzn(...e){return t=>e.forEach(r=>OSi(r,t))}function N3e(...e){return ue.useCallback(Xzn(...e),e)}const O3e=ue.forwardRef((e,t)=>{const{children:r,...a}=e,s=ue.Children.toArray(r),o=s.find(DSi);if(o){const u=o.props.children,h=s.map(f=>f===o?ue.Children.count(u)>1?ue.Children.only(null):ue.isValidElement(u)?u.props.children:null:f);return ue.createElement(Ult,n_({},a,{ref:t}),ue.isValidElement(u)?ue.cloneElement(u,void 0,h):null)}return ue.createElement(Ult,n_({},a,{ref:t}),r)});O3e.displayName="Slot";const Ult=ue.forwardRef((e,t)=>{const{children:r,...a}=e;return ue.isValidElement(r)?ue.cloneElement(r,{...MSi(a,r.props),ref:Xzn(t,r.ref)}):ue.Children.count(r)>1?ue.Children.only(null):null});Ult.displayName="SlotClone";const LSi=({children:e})=>ue.createElement(ue.Fragment,null,e);function DSi(e){return ue.isValidElement(e)&&e.type===LSi}function MSi(e,t){const r={...t};for(const a in t){const s=e[a],o=t[a];/^on[A-Z]/.test(a)?s&&o?r[a]=(...h)=>{o(...h),s(...h)}:s&&(r[a]=s):a==="style"?r[a]={...s,...o}:a==="className"&&(r[a]=[s,o].filter(Boolean).join(" "))}return{...e,...r}}function PSi(e){const t=e+"CollectionProvider",[r,a]=Ipt(t),[s,o]=r(t,{collectionRef:{current:null},itemMap:new Map}),u=w=>{const{scope:S,children:C}=w,A=Er.useRef(null),k=Er.useRef(new Map).current;return Er.createElement(s,{scope:S,itemMap:k,collectionRef:A},C)},h=e+"CollectionSlot",f=Er.forwardRef((w,S)=>{const{scope:C,children:A}=w,k=o(h,C),I=N3e(S,k.collectionRef);return Er.createElement(O3e,{ref:I},A)}),p=e+"CollectionItemSlot",m="data-radix-collection-item",b=Er.forwardRef((w,S)=>{const{scope:C,children:A,...k}=w,I=Er.useRef(null),N=N3e(S,I),L=o(p,C);return Er.useEffect(()=>(L.itemMap.set(I,{ref:I,...k}),()=>void L.itemMap.delete(I))),Er.createElement(O3e,{[m]:"",ref:N},A)});function _(w){const S=o(e+"CollectionConsumer",w);return Er.useCallback(()=>{const A=S.collectionRef.current;if(!A)return[];const k=Array.from(A.querySelectorAll(`[${m}]`));return Array.from(S.itemMap.values()).sort((L,P)=>k.indexOf(L.ref.current)-k.indexOf(P.ref.current))},[S.collectionRef,S.itemMap])}return[{Provider:u,Slot:f,ItemSlot:b},_,a]}const zlt=globalThis!=null&&globalThis.document?ue.useLayoutEffect:()=>{},BSi=g$.useId||(()=>{});let FSi=0;function Qzn(e){const[t,r]=ue.useState(BSi());return zlt(()=>{r(a=>a??String(FSi++))},[e]),e||(t?`radix-${t}`:"")}const $Si=["a","button","div","h2","h3","img","label","li","nav","ol","p","span","svg","ul"],GW=$Si.reduce((e,t)=>{const r=ue.forwardRef((a,s)=>{const{asChild:o,...u}=a,h=o?O3e:t;return ue.useEffect(()=>{window[Symbol.for("radix-ui")]=!0},[]),ue.createElement(h,n_({},u,{ref:s}))});return r.displayName=`Primitive.${t}`,{...e,[t]:r}},{});function Npt(e){const t=ue.useRef(e);return ue.useEffect(()=>{t.current=e}),ue.useMemo(()=>(...r)=>{var a;return(a=t.current)===null||a===void 0?void 0:a.call(t,...r)},[])}function Zzn({prop:e,defaultProp:t,onChange:r=()=>{}}){const[a,s]=USi({defaultProp:t,onChange:r}),o=e!==void 0,u=o?e:a,h=Npt(r),f=ue.useCallback(p=>{if(o){const b=typeof p=="function"?p(e):p;b!==e&&h(b)}else s(p)},[o,e,s,h]);return[u,f]}function USi({defaultProp:e,onChange:t}){const r=ue.useState(e),[a]=r,s=ue.useRef(a),o=Npt(t);return ue.useEffect(()=>{s.current!==a&&(o(a),s.current=a)},[a,s,o]),r}const zSi=ue.createContext(void 0);function Jzn(e){const t=ue.useContext(zSi);return e||t||"ltr"}const bnt="rovingFocusGroup.onEntryFocus",GSi={bubbles:!1,cancelable:!0},Opt="RovingFocusGroup",[Glt,eGn,qSi]=PSi(Opt),[HSi,tGn]=Ipt(Opt,[qSi]),[VSi,YSi]=HSi(Opt),jSi=ue.forwardRef((e,t)=>ue.createElement(Glt.Provider,{scope:e.__scopeRovingFocusGroup},ue.createElement(Glt.Slot,{scope:e.__scopeRovingFocusGroup},ue.createElement(WSi,n_({},e,{ref:t}))))),WSi=ue.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:r,orientation:a,loop:s=!1,dir:o,currentTabStopId:u,defaultCurrentTabStopId:h,onCurrentTabStopIdChange:f,onEntryFocus:p,...m}=e,b=ue.useRef(null),_=N3e(t,b),w=Jzn(o),[S=null,C]=Zzn({prop:u,defaultProp:h,onChange:f}),[A,k]=ue.useState(!1),I=Npt(p),N=eGn(r),L=ue.useRef(!1),[P,M]=ue.useState(0);return ue.useEffect(()=>{const F=b.current;if(F)return F.addEventListener(bnt,I),()=>F.removeEventListener(bnt,I)},[I]),ue.createElement(VSi,{scope:r,orientation:a,dir:w,loop:s,currentTabStopId:S,onItemFocus:ue.useCallback(F=>C(F),[C]),onItemShiftTab:ue.useCallback(()=>k(!0),[]),onFocusableItemAdd:ue.useCallback(()=>M(F=>F+1),[]),onFocusableItemRemove:ue.useCallback(()=>M(F=>F-1),[])},ue.createElement(GW.div,n_({tabIndex:A||P===0?-1:0,"data-orientation":a},m,{ref:_,style:{outline:"none",...e.style},onMouseDown:z7(e.onMouseDown,()=>{L.current=!0}),onFocus:z7(e.onFocus,F=>{const U=!L.current;if(F.target===F.currentTarget&&U&&!A){const $=new CustomEvent(bnt,GSi);if(F.currentTarget.dispatchEvent($),!$.defaultPrevented){const G=N().filter(W=>W.focusable),B=G.find(W=>W.active),Z=G.find(W=>W.id===S),Y=[B,Z,...G].filter(Boolean).map(W=>W.ref.current);nGn(Y)}}L.current=!1}),onBlur:z7(e.onBlur,()=>k(!1))})))}),KSi="RovingFocusGroupItem",XSi=ue.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:r,focusable:a=!0,active:s=!1,tabStopId:o,...u}=e,h=Qzn(),f=o||h,p=YSi(KSi,r),m=p.currentTabStopId===f,b=eGn(r),{onFocusableItemAdd:_,onFocusableItemRemove:w}=p;return ue.useEffect(()=>{if(a)return _(),()=>w()},[a,_,w]),ue.createElement(Glt.ItemSlot,{scope:r,id:f,focusable:a,active:s},ue.createElement(GW.span,n_({tabIndex:m?0:-1,"data-orientation":p.orientation},u,{ref:t,onMouseDown:z7(e.onMouseDown,S=>{a?p.onItemFocus(f):S.preventDefault()}),onFocus:z7(e.onFocus,()=>p.onItemFocus(f)),onKeyDown:z7(e.onKeyDown,S=>{if(S.key==="Tab"&&S.shiftKey){p.onItemShiftTab();return}if(S.target!==S.currentTarget)return;const C=JSi(S,p.orientation,p.dir);if(C!==void 0){S.preventDefault();let k=b().filter(I=>I.focusable).map(I=>I.ref.current);if(C==="last")k.reverse();else if(C==="prev"||C==="next"){C==="prev"&&k.reverse();const I=k.indexOf(S.currentTarget);k=p.loop?e4i(k,I+1):k.slice(I+1)}setTimeout(()=>nGn(k))}})})))}),QSi={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function ZSi(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function JSi(e,t,r){const a=ZSi(e.key,r);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(a))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(a)))return QSi[a]}function nGn(e){const t=document.activeElement;for(const r of e)if(r===t||(r.focus(),document.activeElement!==t))return}function e4i(e,t){return e.map((r,a)=>e[(t+a)%e.length])}const t4i=jSi,n4i=XSi;function r4i(e,t){return ue.useReducer((r,a)=>{const s=t[r][a];return s??r},e)}const rGn=e=>{const{present:t,children:r}=e,a=i4i(t),s=typeof r=="function"?r({present:a.isPresent}):ue.Children.only(r),o=N3e(a.ref,s.ref);return typeof r=="function"||a.isPresent?ue.cloneElement(s,{ref:o}):null};rGn.displayName="Presence";function i4i(e){const[t,r]=ue.useState(),a=ue.useRef({}),s=ue.useRef(e),o=ue.useRef("none"),u=e?"mounted":"unmounted",[h,f]=r4i(u,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return ue.useEffect(()=>{const p=bwe(a.current);o.current=h==="mounted"?p:"none"},[h]),zlt(()=>{const p=a.current,m=s.current;if(m!==e){const _=o.current,w=bwe(p);e?f("MOUNT"):w==="none"||(p==null?void 0:p.display)==="none"?f("UNMOUNT"):f(m&&_!==w?"ANIMATION_OUT":"UNMOUNT"),s.current=e}},[e,f]),zlt(()=>{if(t){const p=b=>{const w=bwe(a.current).includes(b.animationName);b.target===t&&w&&w9.flushSync(()=>f("ANIMATION_END"))},m=b=>{b.target===t&&(o.current=bwe(a.current))};return t.addEventListener("animationstart",m),t.addEventListener("animationcancel",p),t.addEventListener("animationend",p),()=>{t.removeEventListener("animationstart",m),t.removeEventListener("animationcancel",p),t.removeEventListener("animationend",p)}}else f("ANIMATION_END")},[t,f]),{isPresent:["mounted","unmountSuspended"].includes(h),ref:ue.useCallback(p=>{p&&(a.current=getComputedStyle(p)),r(p)},[])}}function bwe(e){return(e==null?void 0:e.animationName)||"none"}const iGn="Tabs",[a4i]=Ipt(iGn,[tGn]),aGn=tGn(),[s4i,Lpt]=a4i(iGn),o4i=ue.forwardRef((e,t)=>{const{__scopeTabs:r,value:a,onValueChange:s,defaultValue:o,orientation:u="horizontal",dir:h,activationMode:f="automatic",...p}=e,m=Jzn(h),[b,_]=Zzn({prop:a,onChange:s,defaultProp:o});return ue.createElement(s4i,{scope:r,baseId:Qzn(),value:b,onValueChange:_,orientation:u,dir:m,activationMode:f},ue.createElement(GW.div,n_({dir:m,"data-orientation":u},p,{ref:t})))}),l4i="TabsList",c4i=ue.forwardRef((e,t)=>{const{__scopeTabs:r,loop:a=!0,...s}=e,o=Lpt(l4i,r),u=aGn(r);return ue.createElement(t4i,n_({asChild:!0},u,{orientation:o.orientation,dir:o.dir,loop:a}),ue.createElement(GW.div,n_({role:"tablist","aria-orientation":o.orientation},s,{ref:t})))}),u4i="TabsTrigger",h4i=ue.forwardRef((e,t)=>{const{__scopeTabs:r,value:a,disabled:s=!1,...o}=e,u=Lpt(u4i,r),h=aGn(r),f=sGn(u.baseId,a),p=oGn(u.baseId,a),m=a===u.value;return ue.createElement(n4i,n_({asChild:!0},h,{focusable:!s,active:m}),ue.createElement(GW.button,n_({type:"button",role:"tab","aria-selected":m,"aria-controls":p,"data-state":m?"active":"inactive","data-disabled":s?"":void 0,disabled:s,id:f},o,{ref:t,onMouseDown:z7(e.onMouseDown,b=>{!s&&b.button===0&&b.ctrlKey===!1?u.onValueChange(a):b.preventDefault()}),onKeyDown:z7(e.onKeyDown,b=>{[" ","Enter"].includes(b.key)&&u.onValueChange(a)}),onFocus:z7(e.onFocus,()=>{const b=u.activationMode!=="manual";!m&&!s&&b&&u.onValueChange(a)})})))}),d4i="TabsContent",f4i=ue.forwardRef((e,t)=>{const{__scopeTabs:r,value:a,forceMount:s,children:o,...u}=e,h=Lpt(d4i,r),f=sGn(h.baseId,a),p=oGn(h.baseId,a),m=a===h.value,b=ue.useRef(m);return ue.useEffect(()=>{const _=requestAnimationFrame(()=>b.current=!1);return()=>cancelAnimationFrame(_)},[]),ue.createElement(rGn,{present:s||m},({present:_})=>ue.createElement(GW.div,n_({"data-state":m?"active":"inactive","data-orientation":h.orientation,role:"tabpanel","aria-labelledby":f,hidden:!_,id:p,tabIndex:0},u,{ref:t,style:{...e.style,animationDuration:b.current?"0s":void 0}}),_&&o))});function sGn(e,t){return`${e}-trigger-${t}`}function oGn(e,t){return`${e}-content-${t}`}const G5a=o4i,q5a=c4i,H5a=h4i,V5a=f4i;var p4i="Expected a function",N_n=NaN,g4i="[object Symbol]",m4i=/^\s+|\s+$/g,b4i=/^[-+]0x[0-9a-f]+$/i,y4i=/^0b[01]+$/i,v4i=/^0o[0-7]+$/i,_4i=parseInt,w4i=typeof ml=="object"&&ml&&ml.Object===Object&&ml,E4i=typeof self=="object"&&self&&self.Object===Object&&self,x4i=w4i||E4i||Function("return this")(),S4i=Object.prototype,T4i=S4i.toString,C4i=Math.max,A4i=Math.min,ynt=function(){return x4i.Date.now()};function k4i(e,t,r){var a,s,o,u,h,f,p=0,m=!1,b=!1,_=!0;if(typeof e!="function")throw new TypeError(p4i);t=O_n(t)||0,qlt(r)&&(m=!!r.leading,b="maxWait"in r,o=b?C4i(O_n(r.maxWait)||0,t):o,_="trailing"in r?!!r.trailing:_);function w(M){var F=a,U=s;return a=s=void 0,p=M,u=e.apply(U,F),u}function S(M){return p=M,h=setTimeout(k,t),m?w(M):u}function C(M){var F=M-f,U=M-p,$=t-F;return b?A4i($,o-U):$}function A(M){var F=M-f,U=M-p;return f===void 0||F>=t||F<0||b&&U>=o}function k(){var M=ynt();if(A(M))return I(M);h=setTimeout(k,C(M))}function I(M){return h=void 0,_&&a?w(M):(a=s=void 0,u)}function N(){h!==void 0&&clearTimeout(h),p=0,a=f=s=h=void 0}function L(){return h===void 0?u:I(ynt())}function P(){var M=ynt(),F=A(M);if(a=arguments,s=this,f=M,F){if(h===void 0)return S(f);if(b)return h=setTimeout(k,t),w(f)}return h===void 0&&(h=setTimeout(k,t)),u}return P.cancel=N,P.flush=L,P}function qlt(e){var t=typeof e;return!!e&&(t=="object"||t=="function")}function R4i(e){return!!e&&typeof e=="object"}function I4i(e){return typeof e=="symbol"||R4i(e)&&T4i.call(e)==g4i}function O_n(e){if(typeof e=="number")return e;if(I4i(e))return N_n;if(qlt(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=qlt(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=e.replace(m4i,"");var r=y4i.test(e);return r||v4i.test(e)?_4i(e.slice(2),r?2:8):b4i.test(e)?N_n:+e}var N4i=k4i;const Y5a=O1(N4i);class D2{constructor(t,r,a){this.lexer=void 0,this.start=void 0,this.end=void 0,this.lexer=t,this.start=r,this.end=a}static range(t,r){return r?!t||!t.loc||!r.loc||t.loc.lexer!==r.loc.lexer?null:new D2(t.loc.lexer,t.loc.start,r.loc.end):t&&t.loc}}class Pw{constructor(t,r){this.text=void 0,this.loc=void 0,this.noexpand=void 0,this.treatAsRelax=void 0,this.text=t,this.loc=r}range(t,r){return new Pw(r,D2.range(this,t))}}class Ri{constructor(t,r){this.name=void 0,this.position=void 0,this.length=void 0,this.rawMessage=void 0;var a="KaTeX parse error: "+t,s,o,u=r&&r.loc;if(u&&u.start<=u.end){var h=u.lexer.input;s=u.start,o=u.end,s===h.length?a+=" at end of input: ":a+=" at position "+(s+1)+": ";var f=h.slice(s,o).replace(/[^]/g,"$&̲"),p;s>15?p="…"+h.slice(s-15,s):p=h.slice(0,s);var m;o+15":">","<":"<",'"':""","'":"'"},P4i=/[&><"']/g;function B4i(e){return String(e).replace(P4i,t=>M4i[t])}var lGn=function e(t){return t.type==="ordgroup"||t.type==="color"?t.body.length===1?e(t.body[0]):t:t.type==="font"?e(t.body):t},F4i=function(t){var r=lGn(t);return r.type==="mathord"||r.type==="textord"||r.type==="atom"},$4i=function(t){if(!t)throw new Error("Expected non-null, but got "+String(t));return t},U4i=function(t){var r=/^[\x00-\x20]*([^\\/#?]*?)(:|�*58|�*3a|&colon)/i.exec(t);return r?r[2]!==":"||!/^[a-zA-Z][a-zA-Z0-9+\-.]*$/.test(r[1])?null:r[1].toLowerCase():"_relative"},hu={deflt:O4i,escape:B4i,hyphenate:D4i,getBaseElem:lGn,isCharacterBox:F4i,protocolFromUrl:U4i},wse={displayMode:{type:"boolean",description:"Render math in display mode, which puts the math in display style (so \\int and \\sum are large, for example), and centers the math on the page on its own line.",cli:"-d, --display-mode"},output:{type:{enum:["htmlAndMathml","html","mathml"]},description:"Determines the markup language of the output.",cli:"-F, --format "},leqno:{type:"boolean",description:"Render display math in leqno style (left-justified tags)."},fleqn:{type:"boolean",description:"Render display math flush left."},throwOnError:{type:"boolean",default:!0,cli:"-t, --no-throw-on-error",cliDescription:"Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error."},errorColor:{type:"string",default:"#cc0000",cli:"-c, --error-color ",cliDescription:"A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option.",cliProcessor:e=>"#"+e},macros:{type:"object",cli:"-m, --macro ",cliDescription:"Define custom macro of the form '\\foo:expansion' (use multiple -m arguments for multiple macros).",cliDefault:[],cliProcessor:(e,t)=>(t.push(e),t)},minRuleThickness:{type:"number",description:"Specifies a minimum thickness, in ems, for fraction lines, `\\sqrt` top lines, `{array}` vertical lines, `\\hline`, `\\hdashline`, `\\underline`, `\\overline`, and the borders of `\\fbox`, `\\boxed`, and `\\fcolorbox`.",processor:e=>Math.max(0,e),cli:"--min-rule-thickness ",cliProcessor:parseFloat},colorIsTextColor:{type:"boolean",description:"Makes \\color behave like LaTeX's 2-argument \\textcolor, instead of LaTeX's one-argument \\color mode change.",cli:"-b, --color-is-text-color"},strict:{type:[{enum:["warn","ignore","error"]},"boolean","function"],description:"Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX.",cli:"-S, --strict",cliDefault:!1},trust:{type:["boolean","function"],description:"Trust the input, enabling all HTML features such as \\url.",cli:"-T, --trust"},maxSize:{type:"number",default:1/0,description:"If non-zero, all user-specified sizes, e.g. in \\rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large",processor:e=>Math.max(0,e),cli:"-s, --max-size ",cliProcessor:parseInt},maxExpand:{type:"number",default:1e3,description:"Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.",processor:e=>Math.max(0,e),cli:"-e, --max-expand ",cliProcessor:e=>e==="Infinity"?1/0:parseInt(e)},globalGroup:{type:"boolean",cli:!1}};function z4i(e){if(e.default)return e.default;var t=e.type,r=Array.isArray(t)?t[0]:t;if(typeof r!="string")return r.enum[0];switch(r){case"boolean":return!1;case"string":return"";case"number":return 0;case"object":return{}}}class Dpt{constructor(t){this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,this.globalGroup=void 0,t=t||{};for(var r in wse)if(wse.hasOwnProperty(r)){var a=wse[r];this[r]=t[r]!==void 0?a.processor?a.processor(t[r]):t[r]:z4i(a)}}reportNonstrict(t,r,a){var s=this.strict;if(typeof s=="function"&&(s=s(t,r,a)),!(!s||s==="ignore")){if(s===!0||s==="error")throw new Ri("LaTeX-incompatible input and strict mode is set to 'error': "+(r+" ["+t+"]"),a);s==="warn"?typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(r+" ["+t+"]")):typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+s+"': "+r+" ["+t+"]"))}}useStrictBehavior(t,r,a){var s=this.strict;if(typeof s=="function")try{s=s(t,r,a)}catch{s="error"}return!s||s==="ignore"?!1:s===!0||s==="error"?!0:s==="warn"?(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+(r+" ["+t+"]")),!1):(typeof console<"u"&&console.warn("LaTeX-incompatible input and strict mode is set to "+("unrecognized '"+s+"': "+r+" ["+t+"]")),!1)}isTrusted(t){if(t.url&&!t.protocol){var r=hu.protocolFromUrl(t.url);if(r==null)return!1;t.protocol=r}var a=typeof this.trust=="function"?this.trust(t):this.trust;return!!a}}class DN{constructor(t,r,a){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=t,this.size=r,this.cramped=a}sup(){return MC[G4i[this.id]]}sub(){return MC[q4i[this.id]]}fracNum(){return MC[H4i[this.id]]}fracDen(){return MC[V4i[this.id]]}cramp(){return MC[Y4i[this.id]]}text(){return MC[j4i[this.id]]}isTight(){return this.size>=2}}var Mpt=0,L3e=1,JV=2,G7=3,Poe=4,sS=5,$j=6,ev=7,MC=[new DN(Mpt,0,!1),new DN(L3e,0,!0),new DN(JV,1,!1),new DN(G7,1,!0),new DN(Poe,2,!1),new DN(sS,2,!0),new DN($j,3,!1),new DN(ev,3,!0)],G4i=[Poe,sS,Poe,sS,$j,ev,$j,ev],q4i=[sS,sS,sS,sS,ev,ev,ev,ev],H4i=[JV,G7,Poe,sS,$j,ev,$j,ev],V4i=[G7,G7,sS,sS,ev,ev,ev,ev],Y4i=[L3e,L3e,G7,G7,sS,sS,ev,ev],j4i=[Mpt,L3e,JV,G7,JV,G7,JV,G7],Js={DISPLAY:MC[Mpt],TEXT:MC[JV],SCRIPT:MC[Poe],SCRIPTSCRIPT:MC[$j]},Hlt=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"armenian",blocks:[[1328,1423]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];function W4i(e){for(var t=0;t=s[0]&&e<=s[1])return r.name}return null}var yxe=[];Hlt.forEach(e=>e.blocks.forEach(t=>yxe.push(...t)));function cGn(e){for(var t=0;t=yxe[t]&&e<=yxe[t+1])return!0;return!1}var VH=80,K4i=function(t,r){return"M95,"+(622+t+r)+` +c-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14 +c0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54 +c44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10 +s173,378,173,378c0.7,0,35.3,-71,104,-213c68.7,-142,137.5,-285,206.5,-429 +c69,-144,104.5,-217.7,106.5,-221 +l`+t/2.075+" -"+t+` +c5.3,-9.3,12,-14,20,-14 +H400000v`+(40+t)+`H845.2724 +s-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7 +c-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z +M`+(834+t)+" "+r+"h400000v"+(40+t)+"h-400000z"},X4i=function(t,r){return"M263,"+(601+t+r)+`c0.7,0,18,39.7,52,119 +c34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120 +c340,-704.7,510.7,-1060.3,512,-1067 +l`+t/2.084+" -"+t+` +c4.7,-7.3,11,-11,19,-11 +H40000v`+(40+t)+`H1012.3 +s-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232 +c-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1 +s-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26 +c-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z +M`+(1001+t)+" "+r+"h400000v"+(40+t)+"h-400000z"},Q4i=function(t,r){return"M983 "+(10+t+r)+` +l`+t/3.13+" -"+t+` +c4,-6.7,10,-10,18,-10 H400000v`+(40+t)+` +H1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7 +s-12,0,-12,0c-1.3,-3.3,-3.7,-11.7,-7,-25c-35.3,-125.3,-106.7,-373.3,-214,-744 +c-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30 +c26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722 +c56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5 +c53.7,-170.3,84.5,-266.8,92.5,-289.5z +M`+(1001+t)+" "+r+"h400000v"+(40+t)+"h-400000z"},Z4i=function(t,r){return"M424,"+(2398+t+r)+` +c-1.3,-0.7,-38.5,-172,-111.5,-514c-73,-342,-109.8,-513.3,-110.5,-514 +c0,-2,-10.7,14.3,-32,49c-4.7,7.3,-9.8,15.7,-15.5,25c-5.7,9.3,-9.8,16,-12.5,20 +s-5,7,-5,7c-4,-3.3,-8.3,-7.7,-13,-13s-13,-13,-13,-13s76,-122,76,-122s77,-121,77,-121 +s209,968,209,968c0,-2,84.7,-361.7,254,-1079c169.3,-717.3,254.7,-1077.7,256,-1081 +l`+t/4.223+" -"+t+`c4,-6.7,10,-10,18,-10 H400000 +v`+(40+t)+`H1014.6 +s-87.3,378.7,-272.6,1166c-185.3,787.3,-279.3,1182.3,-282,1185 +c-2,6,-10,9,-24,9 +c-8,0,-12,-0.7,-12,-2z M`+(1001+t)+" "+r+` +h400000v`+(40+t)+"h-400000z"},J4i=function(t,r){return"M473,"+(2713+t+r)+` +c339.3,-1799.3,509.3,-2700,510,-2702 l`+t/5.298+" -"+t+` +c3.3,-7.3,9.3,-11,18,-11 H400000v`+(40+t)+`H1017.7 +s-90.5,478,-276.2,1466c-185.7,988,-279.5,1483,-281.5,1485c-2,6,-10,9,-24,9 +c-8,0,-12,-0.7,-12,-2c0,-1.3,-5.3,-32,-16,-92c-50.7,-293.3,-119.7,-693.3,-207,-1200 +c0,-1.3,-5.3,8.7,-16,30c-10.7,21.3,-21.3,42.7,-32,64s-16,33,-16,33s-26,-26,-26,-26 +s76,-153,76,-153s77,-151,77,-151c0.7,0.7,35.7,202,105,604c67.3,400.7,102,602.7,104, +606zM`+(1001+t)+" "+r+"h400000v"+(40+t)+"H1017.7z"},e3i=function(t){var r=t/2;return"M400000 "+t+" H0 L"+r+" 0 l65 45 L145 "+(t-80)+" H400000z"},t3i=function(t,r,a){var s=a-54-r-t;return"M702 "+(t+r)+"H400000"+(40+t)+` +H742v`+s+`l-4 4-4 4c-.667.7 -2 1.5-4 2.5s-4.167 1.833-6.5 2.5-5.5 1-9.5 1 +h-12l-28-84c-16.667-52-96.667 -294.333-240-727l-212 -643 -85 170 +c-4-3.333-8.333-7.667-13 -13l-13-13l77-155 77-156c66 199.333 139 419.667 +219 661 l218 661zM702 `+r+"H400000v"+(40+t)+"H742z"},n3i=function(t,r,a){r=1e3*r;var s="";switch(t){case"sqrtMain":s=K4i(r,VH);break;case"sqrtSize1":s=X4i(r,VH);break;case"sqrtSize2":s=Q4i(r,VH);break;case"sqrtSize3":s=Z4i(r,VH);break;case"sqrtSize4":s=J4i(r,VH);break;case"sqrtTall":s=t3i(r,VH,a)}return s},r3i=function(t,r){switch(t){case"⎜":return"M291 0 H417 V"+r+" H291z M291 0 H417 V"+r+" H291z";case"∣":return"M145 0 H188 V"+r+" H145z M145 0 H188 V"+r+" H145z";case"∥":return"M145 0 H188 V"+r+" H145z M145 0 H188 V"+r+" H145z"+("M367 0 H410 V"+r+" H367z M367 0 H410 V"+r+" H367z");case"⎟":return"M457 0 H583 V"+r+" H457z M457 0 H583 V"+r+" H457z";case"⎢":return"M319 0 H403 V"+r+" H319z M319 0 H403 V"+r+" H319z";case"⎥":return"M263 0 H347 V"+r+" H263z M263 0 H347 V"+r+" H263z";case"⎪":return"M384 0 H504 V"+r+" H384z M384 0 H504 V"+r+" H384z";case"⏐":return"M312 0 H355 V"+r+" H312z M312 0 H355 V"+r+" H312z";case"‖":return"M257 0 H300 V"+r+" H257z M257 0 H300 V"+r+" H257z"+("M478 0 H521 V"+r+" H478z M478 0 H521 V"+r+" H478z");default:return""}},L_n={doubleleftarrow:`M262 157 +l10-10c34-36 62.7-77 86-123 3.3-8 5-13.3 5-16 0-5.3-6.7-8-20-8-7.3 + 0-12.2.5-14.5 1.5-2.3 1-4.8 4.5-7.5 10.5-49.3 97.3-121.7 169.3-217 216-28 + 14-57.3 25-88 33-6.7 2-11 3.8-13 5.5-2 1.7-3 4.2-3 7.5s1 5.8 3 7.5 +c2 1.7 6.3 3.5 13 5.5 68 17.3 128.2 47.8 180.5 91.5 52.3 43.7 93.8 96.2 124.5 + 157.5 9.3 8 15.3 12.3 18 13h6c12-.7 18-4 18-10 0-2-1.7-7-5-15-23.3-46-52-87 +-86-123l-10-10h399738v-40H218c328 0 0 0 0 0l-10-8c-26.7-20-65.7-43-117-69 2.7 +-2 6-3.7 10-5 36.7-16 72.3-37.3 107-64l10-8h399782v-40z +m8 0v40h399730v-40zm0 194v40h399730v-40z`,doublerightarrow:`M399738 392l +-10 10c-34 36-62.7 77-86 123-3.3 8-5 13.3-5 16 0 5.3 6.7 8 20 8 7.3 0 12.2-.5 + 14.5-1.5 2.3-1 4.8-4.5 7.5-10.5 49.3-97.3 121.7-169.3 217-216 28-14 57.3-25 88 +-33 6.7-2 11-3.8 13-5.5 2-1.7 3-4.2 3-7.5s-1-5.8-3-7.5c-2-1.7-6.3-3.5-13-5.5-68 +-17.3-128.2-47.8-180.5-91.5-52.3-43.7-93.8-96.2-124.5-157.5-9.3-8-15.3-12.3-18 +-13h-6c-12 .7-18 4-18 10 0 2 1.7 7 5 15 23.3 46 52 87 86 123l10 10H0v40h399782 +c-328 0 0 0 0 0l10 8c26.7 20 65.7 43 117 69-2.7 2-6 3.7-10 5-36.7 16-72.3 37.3 +-107 64l-10 8H0v40zM0 157v40h399730v-40zm0 194v40h399730v-40z`,leftarrow:`M400000 241H110l3-3c68.7-52.7 113.7-120 + 135-202 4-14.7 6-23 6-25 0-7.3-7-11-21-11-8 0-13.2.8-15.5 2.5-2.3 1.7-4.2 5.8 +-5.5 12.5-1.3 4.7-2.7 10.3-4 17-12 48.7-34.8 92-68.5 130S65.3 228.3 18 247 +c-10 4-16 7.7-18 11 0 8.7 6 14.3 18 17 47.3 18.7 87.8 47 121.5 85S196 441.3 208 + 490c.7 2 1.3 5 2 9s1.2 6.7 1.5 8c.3 1.3 1 3.3 2 6s2.2 4.5 3.5 5.5c1.3 1 3.3 + 1.8 6 2.5s6 1 10 1c14 0 21-3.7 21-11 0-2-2-10.3-6-25-20-79.3-65-146.7-135-202 + l-3-3h399890zM100 241v40h399900v-40z`,leftbrace:`M6 548l-6-6v-35l6-11c56-104 135.3-181.3 238-232 57.3-28.7 117 +-45 179-50h399577v120H403c-43.3 7-81 15-113 26-100.7 33-179.7 91-237 174-2.7 + 5-6 9-10 13-.7 1-7.3 1-20 1H6z`,leftbraceunder:`M0 6l6-6h17c12.688 0 19.313.3 20 1 4 4 7.313 8.3 10 13 + 35.313 51.3 80.813 93.8 136.5 127.5 55.688 33.7 117.188 55.8 184.5 66.5.688 + 0 2 .3 4 1 18.688 2.7 76 4.3 172 5h399450v120H429l-6-1c-124.688-8-235-61.7 +-331-161C60.687 138.7 32.312 99.3 7 54L0 41V6z`,leftgroup:`M400000 80 +H435C64 80 168.3 229.4 21 260c-5.9 1.2-18 0-18 0-2 0-3-1-3-3v-38C76 61 257 0 + 435 0h399565z`,leftgroupunder:`M400000 262 +H435C64 262 168.3 112.6 21 82c-5.9-1.2-18 0-18 0-2 0-3 1-3 3v38c76 158 257 219 + 435 219h399565z`,leftharpoon:`M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3 +-3.3 10.2-9.5 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5 +-18.3 3-21-1.3-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7 +-196 228-6.7 4.7-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40z`,leftharpoonplus:`M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3-3.3 10.2-9.5 + 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5-18.3 3-21-1.3 +-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7-196 228-6.7 4.7 +-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40zM0 435v40h400000v-40z +m0 0v40h400000v-40z`,leftharpoondown:`M7 241c-4 4-6.333 8.667-7 14 0 5.333.667 9 2 11s5.333 + 5.333 12 10c90.667 54 156 130 196 228 3.333 10.667 6.333 16.333 9 17 2 .667 5 + 1 9 1h5c10.667 0 16.667-2 18-6 2-2.667 1-9.667-3-21-32-87.333-82.667-157.667 +-152-211l-3-3h399907v-40zM93 281 H400000 v-40L7 241z`,leftharpoondownplus:`M7 435c-4 4-6.3 8.7-7 14 0 5.3.7 9 2 11s5.3 5.3 12 + 10c90.7 54 156 130 196 228 3.3 10.7 6.3 16.3 9 17 2 .7 5 1 9 1h5c10.7 0 16.7 +-2 18-6 2-2.7 1-9.7-3-21-32-87.3-82.7-157.7-152-211l-3-3h399907v-40H7zm93 0 +v40h399900v-40zM0 241v40h399900v-40zm0 0v40h399900v-40z`,lefthook:`M400000 281 H103s-33-11.2-61-33.5S0 197.3 0 164s14.2-61.2 42.5 +-83.5C70.8 58.2 104 47 142 47 c16.7 0 25 6.7 25 20 0 12-8.7 18.7-26 20-40 3.3 +-68.7 15.7-86 37-10 12-15 25.3-15 40 0 22.7 9.8 40.7 29.5 54 19.7 13.3 43.5 21 + 71.5 23h399859zM103 281v-40h399897v40z`,leftlinesegment:`M40 281 V428 H0 V94 H40 V241 H400000 v40z +M40 281 V428 H0 V94 H40 V241 H400000 v40z`,leftmapsto:`M40 281 V448H0V74H40V241H400000v40z +M40 281 V448H0V74H40V241H400000v40z`,leftToFrom:`M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23 +-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69-70-101l-7-8h399905v-40H95l7-8 +c28.7-32 52-65.7 70-101 10.7-23.3 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 265.3 + 68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z`,longequal:`M0 50 h400000 v40H0z m0 194h40000v40H0z +M0 50 h400000 v40H0z m0 194h40000v40H0z`,midbrace:`M200428 334 +c-100.7-8.3-195.3-44-280-108-55.3-42-101.7-93-139-153l-9-14c-2.7 4-5.7 8.7-9 14 +-53.3 86.7-123.7 153-211 199-66.7 36-137.3 56.3-212 62H0V214h199568c178.3-11.7 + 311.7-78.3 403-201 6-8 9.7-12 11-12 .7-.7 6.7-1 18-1s17.3.3 18 1c1.3 0 5 4 11 + 12 44.7 59.3 101.3 106.3 170 141s145.3 54.3 229 60h199572v120z`,midbraceunder:`M199572 214 +c100.7 8.3 195.3 44 280 108 55.3 42 101.7 93 139 153l9 14c2.7-4 5.7-8.7 9-14 + 53.3-86.7 123.7-153 211-199 66.7-36 137.3-56.3 212-62h199568v120H200432c-178.3 + 11.7-311.7 78.3-403 201-6 8-9.7 12-11 12-.7.7-6.7 1-18 1s-17.3-.3-18-1c-1.3 0 +-5-4-11-12-44.7-59.3-101.3-106.3-170-141s-145.3-54.3-229-60H0V214z`,oiintSize1:`M512.6 71.6c272.6 0 320.3 106.8 320.3 178.2 0 70.8-47.7 177.6 +-320.3 177.6S193.1 320.6 193.1 249.8c0-71.4 46.9-178.2 319.5-178.2z +m368.1 178.2c0-86.4-60.9-215.4-368.1-215.4-306.4 0-367.3 129-367.3 215.4 0 85.8 +60.9 214.8 367.3 214.8 307.2 0 368.1-129 368.1-214.8z`,oiintSize2:`M757.8 100.1c384.7 0 451.1 137.6 451.1 230 0 91.3-66.4 228.8 +-451.1 228.8-386.3 0-452.7-137.5-452.7-228.8 0-92.4 66.4-230 452.7-230z +m502.4 230c0-111.2-82.4-277.2-502.4-277.2s-504 166-504 277.2 +c0 110 84 276 504 276s502.4-166 502.4-276z`,oiiintSize1:`M681.4 71.6c408.9 0 480.5 106.8 480.5 178.2 0 70.8-71.6 177.6 +-480.5 177.6S202.1 320.6 202.1 249.8c0-71.4 70.5-178.2 479.3-178.2z +m525.8 178.2c0-86.4-86.8-215.4-525.7-215.4-437.9 0-524.7 129-524.7 215.4 0 +85.8 86.8 214.8 524.7 214.8 438.9 0 525.7-129 525.7-214.8z`,oiiintSize2:`M1021.2 53c603.6 0 707.8 165.8 707.8 277.2 0 110-104.2 275.8 +-707.8 275.8-606 0-710.2-165.8-710.2-275.8C311 218.8 415.2 53 1021.2 53z +m770.4 277.1c0-131.2-126.4-327.6-770.5-327.6S248.4 198.9 248.4 330.1 +c0 130 128.8 326.4 772.7 326.4s770.5-196.4 770.5-326.4z`,rightarrow:`M0 241v40h399891c-47.3 35.3-84 78-110 128 +-16.7 32-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 + 11 8 0 13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 + 39-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85 +-40.5-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5 +-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67 + 151.7 139 205zm0 0v40h399900v-40z`,rightbrace:`M400000 542l +-6 6h-17c-12.7 0-19.3-.3-20-1-4-4-7.3-8.3-10-13-35.3-51.3-80.8-93.8-136.5-127.5 +s-117.2-55.8-184.5-66.5c-.7 0-2-.3-4-1-18.7-2.7-76-4.3-172-5H0V214h399571l6 1 +c124.7 8 235 61.7 331 161 31.3 33.3 59.7 72.7 85 118l7 13v35z`,rightbraceunder:`M399994 0l6 6v35l-6 11c-56 104-135.3 181.3-238 232-57.3 + 28.7-117 45-179 50H-300V214h399897c43.3-7 81-15 113-26 100.7-33 179.7-91 237 +-174 2.7-5 6-9 10-13 .7-1 7.3-1 20-1h17z`,rightgroup:`M0 80h399565c371 0 266.7 149.4 414 180 5.9 1.2 18 0 18 0 2 0 + 3-1 3-3v-38c-76-158-257-219-435-219H0z`,rightgroupunder:`M0 262h399565c371 0 266.7-149.4 414-180 5.9-1.2 18 0 18 + 0 2 0 3 1 3 3v38c-76 158-257 219-435 219H0z`,rightharpoon:`M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3 +-3.7-15.3-11-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2 +-10.7 0-16.7 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 + 69.2 92 94.5zm0 0v40h399900v-40z`,rightharpoonplus:`M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3-3.7-15.3-11 +-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2-10.7 0-16.7 + 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 69.2 92 94.5z +m0 0v40h399900v-40z m100 194v40h399900v-40zm0 0v40h399900v-40z`,rightharpoondown:`M399747 511c0 7.3 6.7 11 20 11 8 0 13-.8 15-2.5s4.7-6.8 + 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 8.5-5.8 9.5 +-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3-64.7 57-92 95 +-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 241v40h399900v-40z`,rightharpoondownplus:`M399747 705c0 7.3 6.7 11 20 11 8 0 13-.8 + 15-2.5s4.7-6.8 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 + 8.5-5.8 9.5-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3 +-64.7 57-92 95-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 435v40h399900v-40z +m0-194v40h400000v-40zm0 0v40h400000v-40z`,righthook:`M399859 241c-764 0 0 0 0 0 40-3.3 68.7-15.7 86-37 10-12 15-25.3 + 15-40 0-22.7-9.8-40.7-29.5-54-19.7-13.3-43.5-21-71.5-23-17.3-1.3-26-8-26-20 0 +-13.3 8.7-20 26-20 38 0 71 11.2 99 33.5 0 0 7 5.6 21 16.7 14 11.2 21 33.5 21 + 66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z`,rightlinesegment:`M399960 241 V94 h40 V428 h-40 V281 H0 v-40z +M399960 241 V94 h40 V428 h-40 V281 H0 v-40z`,rightToFrom:`M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23 + 1 0 1.3 5.3 13.7 16 37 18 35.3 41.3 69 70 101l7 8H0v40h399905l-7 8c-28.7 32 +-52 65.7-70 101-10.7 23.3-16 35.7-16 37 0 .7 7.7 1 23 1h23c24-69.3 71.3-125 142 +-167z M100 147v40h399900v-40zM0 341v40h399900v-40z`,twoheadleftarrow:`M0 167c68 40 + 115.7 95.7 143 167h22c15.3 0 23-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69 +-70-101l-7-8h125l9 7c50.7 39.3 85 86 103 140h46c0-4.7-6.3-18.7-19-42-18-35.3 +-40-67.3-66-96l-9-9h399716v-40H284l9-9c26-28.7 48-60.7 66-96 12.7-23.333 19 +-37.333 19-42h-46c-18 54-52.3 100.7-103 140l-9 7H95l7-8c28.7-32 52-65.7 70-101 + 10.7-23.333 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 71.3 68 127 0 167z`,twoheadrightarrow:`M400000 167 +c-68-40-115.7-95.7-143-167h-22c-15.3 0-23 .3-23 1 0 1.3 5.3 13.7 16 37 18 35.3 + 41.3 69 70 101l7 8h-125l-9-7c-50.7-39.3-85-86-103-140h-46c0 4.7 6.3 18.7 19 42 + 18 35.3 40 67.3 66 96l9 9H0v40h399716l-9 9c-26 28.7-48 60.7-66 96-12.7 23.333 +-19 37.333-19 42h46c18-54 52.3-100.7 103-140l9-7h125l-7 8c-28.7 32-52 65.7-70 + 101-10.7 23.333-16 35.7-16 37 0 .7 7.7 1 23 1h22c27.3-71.3 75-127 143-167z`,tilde1:`M200 55.538c-77 0-168 73.953-177 73.953-3 0-7 +-2.175-9-5.437L2 97c-1-2-2-4-2-6 0-4 2-7 5-9l20-12C116 12 171 0 207 0c86 0 + 114 68 191 68 78 0 168-68 177-68 4 0 7 2 9 5l12 19c1 2.175 2 4.35 2 6.525 0 + 4.35-2 7.613-5 9.788l-19 13.05c-92 63.077-116.937 75.308-183 76.128 +-68.267.847-113-73.952-191-73.952z`,tilde2:`M344 55.266c-142 0-300.638 81.316-311.5 86.418 +-8.01 3.762-22.5 10.91-23.5 5.562L1 120c-1-2-1-3-1-4 0-5 3-9 8-10l18.4-9C160.9 + 31.9 283 0 358 0c148 0 188 122 331 122s314-97 326-97c4 0 8 2 10 7l7 21.114 +c1 2.14 1 3.21 1 4.28 0 5.347-3 9.626-7 10.696l-22.3 12.622C852.6 158.372 751 + 181.476 676 181.476c-149 0-189-126.21-332-126.21z`,tilde3:`M786 59C457 59 32 175.242 13 175.242c-6 0-10-3.457 +-11-10.37L.15 138c-1-7 3-12 10-13l19.2-6.4C378.4 40.7 634.3 0 804.3 0c337 0 + 411.8 157 746.8 157 328 0 754-112 773-112 5 0 10 3 11 9l1 14.075c1 8.066-.697 + 16.595-6.697 17.492l-21.052 7.31c-367.9 98.146-609.15 122.696-778.15 122.696 + -338 0-409-156.573-744-156.573z`,tilde4:`M786 58C457 58 32 177.487 13 177.487c-6 0-10-3.345 +-11-10.035L.15 143c-1-7 3-12 10-13l22-6.7C381.2 35 637.15 0 807.15 0c337 0 409 + 177 744 177 328 0 754-127 773-127 5 0 10 3 11 9l1 14.794c1 7.805-3 13.38-9 + 14.495l-20.7 5.574c-366.85 99.79-607.3 139.372-776.3 139.372-338 0-409 + -175.236-744-175.236z`,vec:`M377 20c0-5.333 1.833-10 5.5-14S391 0 397 0c4.667 0 8.667 1.667 12 5 +3.333 2.667 6.667 9 10 19 6.667 24.667 20.333 43.667 41 57 7.333 4.667 11 +10.667 11 18 0 6-1 10-3 12s-6.667 5-14 9c-28.667 14.667-53.667 35.667-75 63 +-1.333 1.333-3.167 3.5-5.5 6.5s-4 4.833-5 5.5c-1 .667-2.5 1.333-4.5 2s-4.333 1 +-7 1c-4.667 0-9.167-1.833-13.5-5.5S337 184 337 178c0-12.667 15.667-32.333 47-59 +H213l-171-1c-8.667-6-13-12.333-13-19 0-4.667 4.333-11.333 13-20h359 +c-16-25.333-24-45-24-59z`,widehat1:`M529 0h5l519 115c5 1 9 5 9 10 0 1-1 2-1 3l-4 22 +c-1 5-5 9-11 9h-2L532 67 19 159h-2c-5 0-9-4-11-9l-5-22c-1-6 2-12 8-13z`,widehat2:`M1181 0h2l1171 176c6 0 10 5 10 11l-2 23c-1 6-5 10 +-11 10h-1L1182 67 15 220h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widehat3:`M1181 0h2l1171 236c6 0 10 5 10 11l-2 23c-1 6-5 10 +-11 10h-1L1182 67 15 280h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widehat4:`M1181 0h2l1171 296c6 0 10 5 10 11l-2 23c-1 6-5 10 +-11 10h-1L1182 67 15 340h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z`,widecheck1:`M529,159h5l519,-115c5,-1,9,-5,9,-10c0,-1,-1,-2,-1,-3l-4,-22c-1, +-5,-5,-9,-11,-9h-2l-512,92l-513,-92h-2c-5,0,-9,4,-11,9l-5,22c-1,6,2,12,8,13z`,widecheck2:`M1181,220h2l1171,-176c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10, +-11,-10h-1l-1168,153l-1167,-153h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,widecheck3:`M1181,280h2l1171,-236c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10, +-11,-10h-1l-1168,213l-1167,-213h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,widecheck4:`M1181,340h2l1171,-296c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10, +-11,-10h-1l-1168,273l-1167,-273h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z`,baraboveleftarrow:`M400000 620h-399890l3 -3c68.7 -52.7 113.7 -120 135 -202 +c4 -14.7 6 -23 6 -25c0 -7.3 -7 -11 -21 -11c-8 0 -13.2 0.8 -15.5 2.5 +c-2.3 1.7 -4.2 5.8 -5.5 12.5c-1.3 4.7 -2.7 10.3 -4 17c-12 48.7 -34.8 92 -68.5 130 +s-74.2 66.3 -121.5 85c-10 4 -16 7.7 -18 11c0 8.7 6 14.3 18 17c47.3 18.7 87.8 47 +121.5 85s56.5 81.3 68.5 130c0.7 2 1.3 5 2 9s1.2 6.7 1.5 8c0.3 1.3 1 3.3 2 6 +s2.2 4.5 3.5 5.5c1.3 1 3.3 1.8 6 2.5s6 1 10 1c14 0 21 -3.7 21 -11 +c0 -2 -2 -10.3 -6 -25c-20 -79.3 -65 -146.7 -135 -202l-3 -3h399890z +M100 620v40h399900v-40z M0 241v40h399900v-40zM0 241v40h399900v-40z`,rightarrowabovebar:`M0 241v40h399891c-47.3 35.3-84 78-110 128-16.7 32 +-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 11 8 0 +13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 39 +-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85-40.5 +-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5 +-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67 +151.7 139 205zm96 379h399894v40H0zm0 0h399904v40H0z`,baraboveshortleftharpoon:`M507,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11 +c1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17 +c2,0.7,5,1,9,1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21 +c-32,-87.3,-82.7,-157.7,-152,-211c0,0,-3,-3,-3,-3l399351,0l0,-40 +c-398570,0,-399437,0,-399437,0z M593 435 v40 H399500 v-40z +M0 281 v-40 H399908 v40z M0 281 v-40 H399908 v40z`,rightharpoonaboveshortbar:`M0,241 l0,40c399126,0,399993,0,399993,0 +c4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199, +-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6 +c-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z +M0 241 v40 H399908 v-40z M0 475 v-40 H399500 v40z M0 475 v-40 H399500 v40z`,shortbaraboveleftharpoon:`M7,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11 +c1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17c2,0.7,5,1,9, +1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21c-32,-87.3,-82.7,-157.7, +-152,-211c0,0,-3,-3,-3,-3l399907,0l0,-40c-399126,0,-399993,0,-399993,0z +M93 435 v40 H400000 v-40z M500 241 v40 H400000 v-40z M500 241 v40 H400000 v-40z`,shortrightharpoonabovebar:`M53,241l0,40c398570,0,399437,0,399437,0 +c4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199, +-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6 +c-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z +M500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z`},i3i=function(t,r){switch(t){case"lbrack":return"M403 1759 V84 H666 V0 H319 V1759 v"+r+` v1759 h347 v-84 +H403z M403 1759 V0 H319 V1759 v`+r+" v1759 h84z";case"rbrack":return"M347 1759 V0 H0 V84 H263 V1759 v"+r+` v1759 H0 v84 H347z +M347 1759 V0 H263 V1759 v`+r+" v1759 h84z";case"vert":return"M145 15 v585 v"+r+` v585 c2.667,10,9.667,15,21,15 +c10,0,16.667,-5,20,-15 v-585 v`+-r+` v-585 c-2.667,-10,-9.667,-15,-21,-15 +c-10,0,-16.667,5,-20,15z M188 15 H145 v585 v`+r+" v585 h43z";case"doublevert":return"M145 15 v585 v"+r+` v585 c2.667,10,9.667,15,21,15 +c10,0,16.667,-5,20,-15 v-585 v`+-r+` v-585 c-2.667,-10,-9.667,-15,-21,-15 +c-10,0,-16.667,5,-20,15z M188 15 H145 v585 v`+r+` v585 h43z +M367 15 v585 v`+r+` v585 c2.667,10,9.667,15,21,15 +c10,0,16.667,-5,20,-15 v-585 v`+-r+` v-585 c-2.667,-10,-9.667,-15,-21,-15 +c-10,0,-16.667,5,-20,15z M410 15 H367 v585 v`+r+" v585 h43z";case"lfloor":return"M319 602 V0 H403 V602 v"+r+` v1715 h263 v84 H319z +MM319 602 V0 H403 V602 v`+r+" v1715 H319z";case"rfloor":return"M319 602 V0 H403 V602 v"+r+` v1799 H0 v-84 H319z +MM319 602 V0 H403 V602 v`+r+" v1715 H319z";case"lceil":return"M403 1759 V84 H666 V0 H319 V1759 v"+r+` v602 h84z +M403 1759 V0 H319 V1759 v`+r+" v602 h84z";case"rceil":return"M347 1759 V0 H0 V84 H263 V1759 v"+r+` v602 h84z +M347 1759 V0 h-84 V1759 v`+r+" v602 h84z";case"lparen":return`M863,9c0,-2,-2,-5,-6,-9c0,0,-17,0,-17,0c-12.7,0,-19.3,0.3,-20,1 +c-5.3,5.3,-10.3,11,-15,17c-242.7,294.7,-395.3,682,-458,1162c-21.3,163.3,-33.3,349, +-36,557 l0,`+(r+84)+`c0.2,6,0,26,0,60c2,159.3,10,310.7,24,454c53.3,528,210, +949.7,470,1265c4.7,6,9.7,11.7,15,17c0.7,0.7,7,1,19,1c0,0,18,0,18,0c4,-4,6,-7,6,-9 +c0,-2.7,-3.3,-8.7,-10,-18c-135.3,-192.7,-235.5,-414.3,-300.5,-665c-65,-250.7,-102.5, +-544.7,-112.5,-882c-2,-104,-3,-167,-3,-189 +l0,-`+(r+92)+`c0,-162.7,5.7,-314,17,-454c20.7,-272,63.7,-513,129,-723c65.3, +-210,155.3,-396.3,270,-559c6.7,-9.3,10,-15.3,10,-18z`;case"rparen":return`M76,0c-16.7,0,-25,3,-25,9c0,2,2,6.3,6,13c21.3,28.7,42.3,60.3, +63,95c96.7,156.7,172.8,332.5,228.5,527.5c55.7,195,92.8,416.5,111.5,664.5 +c11.3,139.3,17,290.7,17,454c0,28,1.7,43,3.3,45l0,`+(r+9)+` +c-3,4,-3.3,16.7,-3.3,38c0,162,-5.7,313.7,-17,455c-18.7,248,-55.8,469.3,-111.5,664 +c-55.7,194.7,-131.8,370.3,-228.5,527c-20.7,34.7,-41.7,66.3,-63,95c-2,3.3,-4,7,-6,11 +c0,7.3,5.7,11,17,11c0,0,11,0,11,0c9.3,0,14.3,-0.3,15,-1c5.3,-5.3,10.3,-11,15,-17 +c242.7,-294.7,395.3,-681.7,458,-1161c21.3,-164.7,33.3,-350.7,36,-558 +l0,-`+(r+144)+`c-2,-159.3,-10,-310.7,-24,-454c-53.3,-528,-210,-949.7, +-470,-1265c-4.7,-6,-9.7,-11.7,-15,-17c-0.7,-0.7,-6.7,-1,-18,-1z`;default:throw new Error("Unknown stretchy delimiter.")}};let bce=class{constructor(t){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=t,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}hasClass(t){return this.classes.includes(t)}toNode(){for(var t=document.createDocumentFragment(),r=0;rr.toText();return this.children.map(t).join("")}};var XC={"AMS-Regular":{32:[0,0,0,0,.25],65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],160:[0,0,0,0,.25],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{32:[0,0,0,0,.25],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473],160:[0,0,0,0,.25]},"Fraktur-Regular":{32:[0,0,0,0,.25],33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],160:[0,0,0,0,.25],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],160:[0,0,0,0,.25],163:[0,.69444,0,0,.86853],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8773:[.027,.638,0,0,.894],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{32:[0,0,0,0,.25],33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],160:[0,0,0,0,.25],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],160:[0,0,0,0,.25],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],163:[0,.69444,0,0,.76909],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.123,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,.778],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.673,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.903,0,0,.278],8943:[-.19,.313,0,0,1.172],8945:[-.1,.823,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.745,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.745,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{32:[0,0,0,0,.25],48:[0,.44444,0,0,.575],49:[0,.44444,0,0,.575],50:[0,.44444,0,0,.575],51:[.19444,.44444,0,0,.575],52:[.19444,.44444,0,0,.575],53:[.19444,.44444,0,0,.575],54:[0,.64444,0,0,.575],55:[.19444,.44444,0,0,.575],56:[0,.64444,0,0,.575],57:[.19444,.44444,0,0,.575],65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],160:[0,0,0,0,.25],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333],57649:[0,.44444,0,0,.39352],57911:[.19444,.44444,0,0,.43889]},"Math-Italic":{32:[0,0,0,0,.25],48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],160:[0,0,0,0,.25],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059],57649:[0,.43056,0,.02778,.32246],57911:[.19444,.43056,0,.08334,.38403]},"SansSerif-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],160:[0,0,0,0,.25],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],160:[0,0,0,0,.25],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],160:[0,0,0,0,.25],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{32:[0,0,0,0,.25],65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212],160:[0,0,0,0,.25]},"Size1-Regular":{32:[0,0,0,0,.25],40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],160:[0,0,0,0,.25],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{32:[0,0,0,0,.25],40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],160:[0,0,0,0,.25],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{32:[0,0,0,0,.25],40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],160:[0,0,0,0,.25],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{32:[0,0,0,0,.25],40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],160:[0,0,0,0,.25],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}},ywe={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},D_n={Å:"A",Ð:"D",Þ:"o",å:"a",ð:"d",þ:"o",А:"A",Б:"B",В:"B",Г:"F",Д:"A",Е:"E",Ж:"K",З:"3",И:"N",Й:"N",К:"K",Л:"N",М:"M",Н:"H",О:"O",П:"N",Р:"P",С:"C",Т:"T",У:"y",Ф:"O",Х:"X",Ц:"U",Ч:"h",Ш:"W",Щ:"W",Ъ:"B",Ы:"X",Ь:"B",Э:"3",Ю:"X",Я:"R",а:"a",б:"b",в:"a",г:"r",д:"y",е:"e",ж:"m",з:"e",и:"n",й:"n",к:"n",л:"n",м:"m",н:"n",о:"o",п:"n",р:"p",с:"c",т:"o",у:"y",ф:"b",х:"x",ц:"n",ч:"n",ш:"w",щ:"w",ъ:"a",ы:"m",ь:"a",э:"e",ю:"m",я:"r"};function uGn(e,t){XC[e]=t}function Ppt(e,t,r){if(!XC[t])throw new Error("Font metrics not found for font: "+t+".");var a=e.charCodeAt(0),s=XC[t][a];if(!s&&e[0]in D_n&&(a=D_n[e[0]].charCodeAt(0),s=XC[t][a]),!s&&r==="text"&&cGn(a)&&(s=XC[t][77]),s)return{depth:s[0],height:s[1],italic:s[2],skew:s[3],width:s[4]}}var vnt={};function a3i(e){var t;if(e>=5?t=0:e>=3?t=1:t=2,!vnt[t]){var r=vnt[t]={cssEmPerMu:ywe.quad[t]/18};for(var a in ywe)ywe.hasOwnProperty(a)&&(r[a]=ywe[a][t])}return vnt[t]}var s3i=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],M_n=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],P_n=function(t,r){return r.size<2?t:s3i[t-1][r.size-1]};class p7{constructor(t){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=t.style,this.color=t.color,this.size=t.size||p7.BASESIZE,this.textSize=t.textSize||this.size,this.phantom=!!t.phantom,this.font=t.font||"",this.fontFamily=t.fontFamily||"",this.fontWeight=t.fontWeight||"",this.fontShape=t.fontShape||"",this.sizeMultiplier=M_n[this.size-1],this.maxSize=t.maxSize,this.minRuleThickness=t.minRuleThickness,this._fontMetrics=void 0}extend(t){var r={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};for(var a in t)t.hasOwnProperty(a)&&(r[a]=t[a]);return new p7(r)}havingStyle(t){return this.style===t?this:this.extend({style:t,size:P_n(this.textSize,t)})}havingCrampedStyle(){return this.havingStyle(this.style.cramp())}havingSize(t){return this.size===t&&this.textSize===t?this:this.extend({style:this.style.text(),size:t,textSize:t,sizeMultiplier:M_n[t-1]})}havingBaseStyle(t){t=t||this.style.text();var r=P_n(p7.BASESIZE,t);return this.size===r&&this.textSize===p7.BASESIZE&&this.style===t?this:this.extend({style:t,size:r})}havingBaseSizing(){var t;switch(this.style.id){case 4:case 5:t=3;break;case 6:case 7:t=1;break;default:t=6}return this.extend({style:this.style.text(),size:t})}withColor(t){return this.extend({color:t})}withPhantom(){return this.extend({phantom:!0})}withFont(t){return this.extend({font:t})}withTextFontFamily(t){return this.extend({fontFamily:t,font:""})}withTextFontWeight(t){return this.extend({fontWeight:t,font:""})}withTextFontShape(t){return this.extend({fontShape:t,font:""})}sizingClasses(t){return t.size!==this.size?["sizing","reset-size"+t.size,"size"+this.size]:[]}baseSizingClasses(){return this.size!==p7.BASESIZE?["sizing","reset-size"+this.size,"size"+p7.BASESIZE]:[]}fontMetrics(){return this._fontMetrics||(this._fontMetrics=a3i(this.size)),this._fontMetrics}getColor(){return this.phantom?"transparent":this.color}}p7.BASESIZE=6;var Vlt={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:803/800,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:803/800},o3i={ex:!0,em:!0,mu:!0},hGn=function(t){return typeof t!="string"&&(t=t.unit),t in Vlt||t in o3i||t==="ex"},Rf=function(t,r){var a;if(t.unit in Vlt)a=Vlt[t.unit]/r.fontMetrics().ptPerEm/r.sizeMultiplier;else if(t.unit==="mu")a=r.fontMetrics().cssEmPerMu;else{var s;if(r.style.isTight()?s=r.havingStyle(r.style.text()):s=r,t.unit==="ex")a=s.fontMetrics().xHeight;else if(t.unit==="em")a=s.fontMetrics().quad;else throw new Ri("Invalid unit: '"+t.unit+"'");s!==r&&(a*=s.sizeMultiplier/r.sizeMultiplier)}return Math.min(t.number*a,r.maxSize)},Qi=function(t){return+t.toFixed(4)+"em"},t9=function(t){return t.filter(r=>r).join(" ")},dGn=function(t,r,a){if(this.classes=t||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=a||{},r){r.style.isTight()&&this.classes.push("mtight");var s=r.getColor();s&&(this.style.color=s)}},fGn=function(t){var r=document.createElement(t);r.className=t9(this.classes);for(var a in this.style)this.style.hasOwnProperty(a)&&(r.style[a]=this.style[a]);for(var s in this.attributes)this.attributes.hasOwnProperty(s)&&r.setAttribute(s,this.attributes[s]);for(var o=0;o/=\x00-\x1f]/,pGn=function(t){var r="<"+t;this.classes.length&&(r+=' class="'+hu.escape(t9(this.classes))+'"');var a="";for(var s in this.style)this.style.hasOwnProperty(s)&&(a+=hu.hyphenate(s)+":"+this.style[s]+";");a&&(r+=' style="'+hu.escape(a)+'"');for(var o in this.attributes)if(this.attributes.hasOwnProperty(o)){if(l3i.test(o))throw new Ri("Invalid attribute name '"+o+"'");r+=" "+o+'="'+hu.escape(this.attributes[o])+'"'}r+=">";for(var u=0;u",r};class yce{constructor(t,r,a,s){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,dGn.call(this,t,a,s),this.children=r||[]}setAttribute(t,r){this.attributes[t]=r}hasClass(t){return this.classes.includes(t)}toNode(){return fGn.call(this,"span")}toMarkup(){return pGn.call(this,"span")}}class Bpt{constructor(t,r,a,s){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,dGn.call(this,r,s),this.children=a||[],this.setAttribute("href",t)}setAttribute(t,r){this.attributes[t]=r}hasClass(t){return this.classes.includes(t)}toNode(){return fGn.call(this,"a")}toMarkup(){return pGn.call(this,"a")}}class c3i{constructor(t,r,a){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=r,this.src=t,this.classes=["mord"],this.style=a}hasClass(t){return this.classes.includes(t)}toNode(){var t=document.createElement("img");t.src=this.src,t.alt=this.alt,t.className="mord";for(var r in this.style)this.style.hasOwnProperty(r)&&(t.style[r]=this.style[r]);return t}toMarkup(){var t=''+hu.escape(this.alt)+'0&&(r=document.createElement("span"),r.style.marginRight=Qi(this.italic)),this.classes.length>0&&(r=r||document.createElement("span"),r.className=t9(this.classes));for(var a in this.style)this.style.hasOwnProperty(a)&&(r=r||document.createElement("span"),r.style[a]=this.style[a]);return r?(r.appendChild(t),r):t}toMarkup(){var t=!1,r="0&&(a+="margin-right:"+this.italic+"em;");for(var s in this.style)this.style.hasOwnProperty(s)&&(a+=hu.hyphenate(s)+":"+this.style[s]+";");a&&(t=!0,r+=' style="'+hu.escape(a)+'"');var o=hu.escape(this.text);return t?(r+=">",r+=o,r+="",r):o}}class aR{constructor(t,r){this.children=void 0,this.attributes=void 0,this.children=t||[],this.attributes=r||{}}toNode(){var t="http://www.w3.org/2000/svg",r=document.createElementNS(t,"svg");for(var a in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,a)&&r.setAttribute(a,this.attributes[a]);for(var s=0;s':''}}class Ylt{constructor(t){this.attributes=void 0,this.attributes=t||{}}toNode(){var t="http://www.w3.org/2000/svg",r=document.createElementNS(t,"line");for(var a in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,a)&&r.setAttribute(a,this.attributes[a]);return r}toMarkup(){var t=" but got "+String(e)+".")}var d3i={bin:1,close:1,inner:1,open:1,punct:1,rel:1},f3i={"accent-token":1,mathord:1,"op-token":1,spacing:1,textord:1},td={math:{},text:{}};function Re(e,t,r,a,s,o){td[e][s]={font:t,group:r,replace:a},o&&a&&(td[e][a]=td[e][s])}var Be="math",di="text",rt="main",Wt="ams",Xd="accent-token",Oa="bin",vv="close",qW="inner",Qs="mathord",B1="op-token",jw="open",GAe="punct",tn="rel",ER="spacing",Tn="textord";Re(Be,rt,tn,"≡","\\equiv",!0);Re(Be,rt,tn,"≺","\\prec",!0);Re(Be,rt,tn,"≻","\\succ",!0);Re(Be,rt,tn,"∼","\\sim",!0);Re(Be,rt,tn,"⊥","\\perp");Re(Be,rt,tn,"⪯","\\preceq",!0);Re(Be,rt,tn,"⪰","\\succeq",!0);Re(Be,rt,tn,"≃","\\simeq",!0);Re(Be,rt,tn,"∣","\\mid",!0);Re(Be,rt,tn,"≪","\\ll",!0);Re(Be,rt,tn,"≫","\\gg",!0);Re(Be,rt,tn,"≍","\\asymp",!0);Re(Be,rt,tn,"∥","\\parallel");Re(Be,rt,tn,"⋈","\\bowtie",!0);Re(Be,rt,tn,"⌣","\\smile",!0);Re(Be,rt,tn,"⊑","\\sqsubseteq",!0);Re(Be,rt,tn,"⊒","\\sqsupseteq",!0);Re(Be,rt,tn,"≐","\\doteq",!0);Re(Be,rt,tn,"⌢","\\frown",!0);Re(Be,rt,tn,"∋","\\ni",!0);Re(Be,rt,tn,"∝","\\propto",!0);Re(Be,rt,tn,"⊢","\\vdash",!0);Re(Be,rt,tn,"⊣","\\dashv",!0);Re(Be,rt,tn,"∋","\\owns");Re(Be,rt,GAe,".","\\ldotp");Re(Be,rt,GAe,"⋅","\\cdotp");Re(Be,rt,Tn,"#","\\#");Re(di,rt,Tn,"#","\\#");Re(Be,rt,Tn,"&","\\&");Re(di,rt,Tn,"&","\\&");Re(Be,rt,Tn,"ℵ","\\aleph",!0);Re(Be,rt,Tn,"∀","\\forall",!0);Re(Be,rt,Tn,"ℏ","\\hbar",!0);Re(Be,rt,Tn,"∃","\\exists",!0);Re(Be,rt,Tn,"∇","\\nabla",!0);Re(Be,rt,Tn,"♭","\\flat",!0);Re(Be,rt,Tn,"ℓ","\\ell",!0);Re(Be,rt,Tn,"♮","\\natural",!0);Re(Be,rt,Tn,"♣","\\clubsuit",!0);Re(Be,rt,Tn,"℘","\\wp",!0);Re(Be,rt,Tn,"♯","\\sharp",!0);Re(Be,rt,Tn,"♢","\\diamondsuit",!0);Re(Be,rt,Tn,"ℜ","\\Re",!0);Re(Be,rt,Tn,"♡","\\heartsuit",!0);Re(Be,rt,Tn,"ℑ","\\Im",!0);Re(Be,rt,Tn,"♠","\\spadesuit",!0);Re(Be,rt,Tn,"§","\\S",!0);Re(di,rt,Tn,"§","\\S");Re(Be,rt,Tn,"¶","\\P",!0);Re(di,rt,Tn,"¶","\\P");Re(Be,rt,Tn,"†","\\dag");Re(di,rt,Tn,"†","\\dag");Re(di,rt,Tn,"†","\\textdagger");Re(Be,rt,Tn,"‡","\\ddag");Re(di,rt,Tn,"‡","\\ddag");Re(di,rt,Tn,"‡","\\textdaggerdbl");Re(Be,rt,vv,"⎱","\\rmoustache",!0);Re(Be,rt,jw,"⎰","\\lmoustache",!0);Re(Be,rt,vv,"⟯","\\rgroup",!0);Re(Be,rt,jw,"⟮","\\lgroup",!0);Re(Be,rt,Oa,"∓","\\mp",!0);Re(Be,rt,Oa,"⊖","\\ominus",!0);Re(Be,rt,Oa,"⊎","\\uplus",!0);Re(Be,rt,Oa,"⊓","\\sqcap",!0);Re(Be,rt,Oa,"∗","\\ast");Re(Be,rt,Oa,"⊔","\\sqcup",!0);Re(Be,rt,Oa,"◯","\\bigcirc",!0);Re(Be,rt,Oa,"∙","\\bullet",!0);Re(Be,rt,Oa,"‡","\\ddagger");Re(Be,rt,Oa,"≀","\\wr",!0);Re(Be,rt,Oa,"⨿","\\amalg");Re(Be,rt,Oa,"&","\\And");Re(Be,rt,tn,"⟵","\\longleftarrow",!0);Re(Be,rt,tn,"⇐","\\Leftarrow",!0);Re(Be,rt,tn,"⟸","\\Longleftarrow",!0);Re(Be,rt,tn,"⟶","\\longrightarrow",!0);Re(Be,rt,tn,"⇒","\\Rightarrow",!0);Re(Be,rt,tn,"⟹","\\Longrightarrow",!0);Re(Be,rt,tn,"↔","\\leftrightarrow",!0);Re(Be,rt,tn,"⟷","\\longleftrightarrow",!0);Re(Be,rt,tn,"⇔","\\Leftrightarrow",!0);Re(Be,rt,tn,"⟺","\\Longleftrightarrow",!0);Re(Be,rt,tn,"↦","\\mapsto",!0);Re(Be,rt,tn,"⟼","\\longmapsto",!0);Re(Be,rt,tn,"↗","\\nearrow",!0);Re(Be,rt,tn,"↩","\\hookleftarrow",!0);Re(Be,rt,tn,"↪","\\hookrightarrow",!0);Re(Be,rt,tn,"↘","\\searrow",!0);Re(Be,rt,tn,"↼","\\leftharpoonup",!0);Re(Be,rt,tn,"⇀","\\rightharpoonup",!0);Re(Be,rt,tn,"↙","\\swarrow",!0);Re(Be,rt,tn,"↽","\\leftharpoondown",!0);Re(Be,rt,tn,"⇁","\\rightharpoondown",!0);Re(Be,rt,tn,"↖","\\nwarrow",!0);Re(Be,rt,tn,"⇌","\\rightleftharpoons",!0);Re(Be,Wt,tn,"≮","\\nless",!0);Re(Be,Wt,tn,"","\\@nleqslant");Re(Be,Wt,tn,"","\\@nleqq");Re(Be,Wt,tn,"⪇","\\lneq",!0);Re(Be,Wt,tn,"≨","\\lneqq",!0);Re(Be,Wt,tn,"","\\@lvertneqq");Re(Be,Wt,tn,"⋦","\\lnsim",!0);Re(Be,Wt,tn,"⪉","\\lnapprox",!0);Re(Be,Wt,tn,"⊀","\\nprec",!0);Re(Be,Wt,tn,"⋠","\\npreceq",!0);Re(Be,Wt,tn,"⋨","\\precnsim",!0);Re(Be,Wt,tn,"⪹","\\precnapprox",!0);Re(Be,Wt,tn,"≁","\\nsim",!0);Re(Be,Wt,tn,"","\\@nshortmid");Re(Be,Wt,tn,"∤","\\nmid",!0);Re(Be,Wt,tn,"⊬","\\nvdash",!0);Re(Be,Wt,tn,"⊭","\\nvDash",!0);Re(Be,Wt,tn,"⋪","\\ntriangleleft");Re(Be,Wt,tn,"⋬","\\ntrianglelefteq",!0);Re(Be,Wt,tn,"⊊","\\subsetneq",!0);Re(Be,Wt,tn,"","\\@varsubsetneq");Re(Be,Wt,tn,"⫋","\\subsetneqq",!0);Re(Be,Wt,tn,"","\\@varsubsetneqq");Re(Be,Wt,tn,"≯","\\ngtr",!0);Re(Be,Wt,tn,"","\\@ngeqslant");Re(Be,Wt,tn,"","\\@ngeqq");Re(Be,Wt,tn,"⪈","\\gneq",!0);Re(Be,Wt,tn,"≩","\\gneqq",!0);Re(Be,Wt,tn,"","\\@gvertneqq");Re(Be,Wt,tn,"⋧","\\gnsim",!0);Re(Be,Wt,tn,"⪊","\\gnapprox",!0);Re(Be,Wt,tn,"⊁","\\nsucc",!0);Re(Be,Wt,tn,"⋡","\\nsucceq",!0);Re(Be,Wt,tn,"⋩","\\succnsim",!0);Re(Be,Wt,tn,"⪺","\\succnapprox",!0);Re(Be,Wt,tn,"≆","\\ncong",!0);Re(Be,Wt,tn,"","\\@nshortparallel");Re(Be,Wt,tn,"∦","\\nparallel",!0);Re(Be,Wt,tn,"⊯","\\nVDash",!0);Re(Be,Wt,tn,"⋫","\\ntriangleright");Re(Be,Wt,tn,"⋭","\\ntrianglerighteq",!0);Re(Be,Wt,tn,"","\\@nsupseteqq");Re(Be,Wt,tn,"⊋","\\supsetneq",!0);Re(Be,Wt,tn,"","\\@varsupsetneq");Re(Be,Wt,tn,"⫌","\\supsetneqq",!0);Re(Be,Wt,tn,"","\\@varsupsetneqq");Re(Be,Wt,tn,"⊮","\\nVdash",!0);Re(Be,Wt,tn,"⪵","\\precneqq",!0);Re(Be,Wt,tn,"⪶","\\succneqq",!0);Re(Be,Wt,tn,"","\\@nsubseteqq");Re(Be,Wt,Oa,"⊴","\\unlhd");Re(Be,Wt,Oa,"⊵","\\unrhd");Re(Be,Wt,tn,"↚","\\nleftarrow",!0);Re(Be,Wt,tn,"↛","\\nrightarrow",!0);Re(Be,Wt,tn,"⇍","\\nLeftarrow",!0);Re(Be,Wt,tn,"⇏","\\nRightarrow",!0);Re(Be,Wt,tn,"↮","\\nleftrightarrow",!0);Re(Be,Wt,tn,"⇎","\\nLeftrightarrow",!0);Re(Be,Wt,tn,"△","\\vartriangle");Re(Be,Wt,Tn,"ℏ","\\hslash");Re(Be,Wt,Tn,"▽","\\triangledown");Re(Be,Wt,Tn,"◊","\\lozenge");Re(Be,Wt,Tn,"Ⓢ","\\circledS");Re(Be,Wt,Tn,"®","\\circledR");Re(di,Wt,Tn,"®","\\circledR");Re(Be,Wt,Tn,"∡","\\measuredangle",!0);Re(Be,Wt,Tn,"∄","\\nexists");Re(Be,Wt,Tn,"℧","\\mho");Re(Be,Wt,Tn,"Ⅎ","\\Finv",!0);Re(Be,Wt,Tn,"⅁","\\Game",!0);Re(Be,Wt,Tn,"‵","\\backprime");Re(Be,Wt,Tn,"▲","\\blacktriangle");Re(Be,Wt,Tn,"▼","\\blacktriangledown");Re(Be,Wt,Tn,"■","\\blacksquare");Re(Be,Wt,Tn,"⧫","\\blacklozenge");Re(Be,Wt,Tn,"★","\\bigstar");Re(Be,Wt,Tn,"∢","\\sphericalangle",!0);Re(Be,Wt,Tn,"∁","\\complement",!0);Re(Be,Wt,Tn,"ð","\\eth",!0);Re(di,rt,Tn,"ð","ð");Re(Be,Wt,Tn,"╱","\\diagup");Re(Be,Wt,Tn,"╲","\\diagdown");Re(Be,Wt,Tn,"□","\\square");Re(Be,Wt,Tn,"□","\\Box");Re(Be,Wt,Tn,"◊","\\Diamond");Re(Be,Wt,Tn,"¥","\\yen",!0);Re(di,Wt,Tn,"¥","\\yen",!0);Re(Be,Wt,Tn,"✓","\\checkmark",!0);Re(di,Wt,Tn,"✓","\\checkmark");Re(Be,Wt,Tn,"ℶ","\\beth",!0);Re(Be,Wt,Tn,"ℸ","\\daleth",!0);Re(Be,Wt,Tn,"ℷ","\\gimel",!0);Re(Be,Wt,Tn,"ϝ","\\digamma",!0);Re(Be,Wt,Tn,"ϰ","\\varkappa");Re(Be,Wt,jw,"┌","\\@ulcorner",!0);Re(Be,Wt,vv,"┐","\\@urcorner",!0);Re(Be,Wt,jw,"└","\\@llcorner",!0);Re(Be,Wt,vv,"┘","\\@lrcorner",!0);Re(Be,Wt,tn,"≦","\\leqq",!0);Re(Be,Wt,tn,"⩽","\\leqslant",!0);Re(Be,Wt,tn,"⪕","\\eqslantless",!0);Re(Be,Wt,tn,"≲","\\lesssim",!0);Re(Be,Wt,tn,"⪅","\\lessapprox",!0);Re(Be,Wt,tn,"≊","\\approxeq",!0);Re(Be,Wt,Oa,"⋖","\\lessdot");Re(Be,Wt,tn,"⋘","\\lll",!0);Re(Be,Wt,tn,"≶","\\lessgtr",!0);Re(Be,Wt,tn,"⋚","\\lesseqgtr",!0);Re(Be,Wt,tn,"⪋","\\lesseqqgtr",!0);Re(Be,Wt,tn,"≑","\\doteqdot");Re(Be,Wt,tn,"≓","\\risingdotseq",!0);Re(Be,Wt,tn,"≒","\\fallingdotseq",!0);Re(Be,Wt,tn,"∽","\\backsim",!0);Re(Be,Wt,tn,"⋍","\\backsimeq",!0);Re(Be,Wt,tn,"⫅","\\subseteqq",!0);Re(Be,Wt,tn,"⋐","\\Subset",!0);Re(Be,Wt,tn,"⊏","\\sqsubset",!0);Re(Be,Wt,tn,"≼","\\preccurlyeq",!0);Re(Be,Wt,tn,"⋞","\\curlyeqprec",!0);Re(Be,Wt,tn,"≾","\\precsim",!0);Re(Be,Wt,tn,"⪷","\\precapprox",!0);Re(Be,Wt,tn,"⊲","\\vartriangleleft");Re(Be,Wt,tn,"⊴","\\trianglelefteq");Re(Be,Wt,tn,"⊨","\\vDash",!0);Re(Be,Wt,tn,"⊪","\\Vvdash",!0);Re(Be,Wt,tn,"⌣","\\smallsmile");Re(Be,Wt,tn,"⌢","\\smallfrown");Re(Be,Wt,tn,"≏","\\bumpeq",!0);Re(Be,Wt,tn,"≎","\\Bumpeq",!0);Re(Be,Wt,tn,"≧","\\geqq",!0);Re(Be,Wt,tn,"⩾","\\geqslant",!0);Re(Be,Wt,tn,"⪖","\\eqslantgtr",!0);Re(Be,Wt,tn,"≳","\\gtrsim",!0);Re(Be,Wt,tn,"⪆","\\gtrapprox",!0);Re(Be,Wt,Oa,"⋗","\\gtrdot");Re(Be,Wt,tn,"⋙","\\ggg",!0);Re(Be,Wt,tn,"≷","\\gtrless",!0);Re(Be,Wt,tn,"⋛","\\gtreqless",!0);Re(Be,Wt,tn,"⪌","\\gtreqqless",!0);Re(Be,Wt,tn,"≖","\\eqcirc",!0);Re(Be,Wt,tn,"≗","\\circeq",!0);Re(Be,Wt,tn,"≜","\\triangleq",!0);Re(Be,Wt,tn,"∼","\\thicksim");Re(Be,Wt,tn,"≈","\\thickapprox");Re(Be,Wt,tn,"⫆","\\supseteqq",!0);Re(Be,Wt,tn,"⋑","\\Supset",!0);Re(Be,Wt,tn,"⊐","\\sqsupset",!0);Re(Be,Wt,tn,"≽","\\succcurlyeq",!0);Re(Be,Wt,tn,"⋟","\\curlyeqsucc",!0);Re(Be,Wt,tn,"≿","\\succsim",!0);Re(Be,Wt,tn,"⪸","\\succapprox",!0);Re(Be,Wt,tn,"⊳","\\vartriangleright");Re(Be,Wt,tn,"⊵","\\trianglerighteq");Re(Be,Wt,tn,"⊩","\\Vdash",!0);Re(Be,Wt,tn,"∣","\\shortmid");Re(Be,Wt,tn,"∥","\\shortparallel");Re(Be,Wt,tn,"≬","\\between",!0);Re(Be,Wt,tn,"⋔","\\pitchfork",!0);Re(Be,Wt,tn,"∝","\\varpropto");Re(Be,Wt,tn,"◀","\\blacktriangleleft");Re(Be,Wt,tn,"∴","\\therefore",!0);Re(Be,Wt,tn,"∍","\\backepsilon");Re(Be,Wt,tn,"▶","\\blacktriangleright");Re(Be,Wt,tn,"∵","\\because",!0);Re(Be,Wt,tn,"⋘","\\llless");Re(Be,Wt,tn,"⋙","\\gggtr");Re(Be,Wt,Oa,"⊲","\\lhd");Re(Be,Wt,Oa,"⊳","\\rhd");Re(Be,Wt,tn,"≂","\\eqsim",!0);Re(Be,rt,tn,"⋈","\\Join");Re(Be,Wt,tn,"≑","\\Doteq",!0);Re(Be,Wt,Oa,"∔","\\dotplus",!0);Re(Be,Wt,Oa,"∖","\\smallsetminus");Re(Be,Wt,Oa,"⋒","\\Cap",!0);Re(Be,Wt,Oa,"⋓","\\Cup",!0);Re(Be,Wt,Oa,"⩞","\\doublebarwedge",!0);Re(Be,Wt,Oa,"⊟","\\boxminus",!0);Re(Be,Wt,Oa,"⊞","\\boxplus",!0);Re(Be,Wt,Oa,"⋇","\\divideontimes",!0);Re(Be,Wt,Oa,"⋉","\\ltimes",!0);Re(Be,Wt,Oa,"⋊","\\rtimes",!0);Re(Be,Wt,Oa,"⋋","\\leftthreetimes",!0);Re(Be,Wt,Oa,"⋌","\\rightthreetimes",!0);Re(Be,Wt,Oa,"⋏","\\curlywedge",!0);Re(Be,Wt,Oa,"⋎","\\curlyvee",!0);Re(Be,Wt,Oa,"⊝","\\circleddash",!0);Re(Be,Wt,Oa,"⊛","\\circledast",!0);Re(Be,Wt,Oa,"⋅","\\centerdot");Re(Be,Wt,Oa,"⊺","\\intercal",!0);Re(Be,Wt,Oa,"⋒","\\doublecap");Re(Be,Wt,Oa,"⋓","\\doublecup");Re(Be,Wt,Oa,"⊠","\\boxtimes",!0);Re(Be,Wt,tn,"⇢","\\dashrightarrow",!0);Re(Be,Wt,tn,"⇠","\\dashleftarrow",!0);Re(Be,Wt,tn,"⇇","\\leftleftarrows",!0);Re(Be,Wt,tn,"⇆","\\leftrightarrows",!0);Re(Be,Wt,tn,"⇚","\\Lleftarrow",!0);Re(Be,Wt,tn,"↞","\\twoheadleftarrow",!0);Re(Be,Wt,tn,"↢","\\leftarrowtail",!0);Re(Be,Wt,tn,"↫","\\looparrowleft",!0);Re(Be,Wt,tn,"⇋","\\leftrightharpoons",!0);Re(Be,Wt,tn,"↶","\\curvearrowleft",!0);Re(Be,Wt,tn,"↺","\\circlearrowleft",!0);Re(Be,Wt,tn,"↰","\\Lsh",!0);Re(Be,Wt,tn,"⇈","\\upuparrows",!0);Re(Be,Wt,tn,"↿","\\upharpoonleft",!0);Re(Be,Wt,tn,"⇃","\\downharpoonleft",!0);Re(Be,rt,tn,"⊶","\\origof",!0);Re(Be,rt,tn,"⊷","\\imageof",!0);Re(Be,Wt,tn,"⊸","\\multimap",!0);Re(Be,Wt,tn,"↭","\\leftrightsquigarrow",!0);Re(Be,Wt,tn,"⇉","\\rightrightarrows",!0);Re(Be,Wt,tn,"⇄","\\rightleftarrows",!0);Re(Be,Wt,tn,"↠","\\twoheadrightarrow",!0);Re(Be,Wt,tn,"↣","\\rightarrowtail",!0);Re(Be,Wt,tn,"↬","\\looparrowright",!0);Re(Be,Wt,tn,"↷","\\curvearrowright",!0);Re(Be,Wt,tn,"↻","\\circlearrowright",!0);Re(Be,Wt,tn,"↱","\\Rsh",!0);Re(Be,Wt,tn,"⇊","\\downdownarrows",!0);Re(Be,Wt,tn,"↾","\\upharpoonright",!0);Re(Be,Wt,tn,"⇂","\\downharpoonright",!0);Re(Be,Wt,tn,"⇝","\\rightsquigarrow",!0);Re(Be,Wt,tn,"⇝","\\leadsto");Re(Be,Wt,tn,"⇛","\\Rrightarrow",!0);Re(Be,Wt,tn,"↾","\\restriction");Re(Be,rt,Tn,"‘","`");Re(Be,rt,Tn,"$","\\$");Re(di,rt,Tn,"$","\\$");Re(di,rt,Tn,"$","\\textdollar");Re(Be,rt,Tn,"%","\\%");Re(di,rt,Tn,"%","\\%");Re(Be,rt,Tn,"_","\\_");Re(di,rt,Tn,"_","\\_");Re(di,rt,Tn,"_","\\textunderscore");Re(Be,rt,Tn,"∠","\\angle",!0);Re(Be,rt,Tn,"∞","\\infty",!0);Re(Be,rt,Tn,"′","\\prime");Re(Be,rt,Tn,"△","\\triangle");Re(Be,rt,Tn,"Γ","\\Gamma",!0);Re(Be,rt,Tn,"Δ","\\Delta",!0);Re(Be,rt,Tn,"Θ","\\Theta",!0);Re(Be,rt,Tn,"Λ","\\Lambda",!0);Re(Be,rt,Tn,"Ξ","\\Xi",!0);Re(Be,rt,Tn,"Π","\\Pi",!0);Re(Be,rt,Tn,"Σ","\\Sigma",!0);Re(Be,rt,Tn,"Υ","\\Upsilon",!0);Re(Be,rt,Tn,"Φ","\\Phi",!0);Re(Be,rt,Tn,"Ψ","\\Psi",!0);Re(Be,rt,Tn,"Ω","\\Omega",!0);Re(Be,rt,Tn,"A","Α");Re(Be,rt,Tn,"B","Β");Re(Be,rt,Tn,"E","Ε");Re(Be,rt,Tn,"Z","Ζ");Re(Be,rt,Tn,"H","Η");Re(Be,rt,Tn,"I","Ι");Re(Be,rt,Tn,"K","Κ");Re(Be,rt,Tn,"M","Μ");Re(Be,rt,Tn,"N","Ν");Re(Be,rt,Tn,"O","Ο");Re(Be,rt,Tn,"P","Ρ");Re(Be,rt,Tn,"T","Τ");Re(Be,rt,Tn,"X","Χ");Re(Be,rt,Tn,"¬","\\neg",!0);Re(Be,rt,Tn,"¬","\\lnot");Re(Be,rt,Tn,"⊤","\\top");Re(Be,rt,Tn,"⊥","\\bot");Re(Be,rt,Tn,"∅","\\emptyset");Re(Be,Wt,Tn,"∅","\\varnothing");Re(Be,rt,Qs,"α","\\alpha",!0);Re(Be,rt,Qs,"β","\\beta",!0);Re(Be,rt,Qs,"γ","\\gamma",!0);Re(Be,rt,Qs,"δ","\\delta",!0);Re(Be,rt,Qs,"ϵ","\\epsilon",!0);Re(Be,rt,Qs,"ζ","\\zeta",!0);Re(Be,rt,Qs,"η","\\eta",!0);Re(Be,rt,Qs,"θ","\\theta",!0);Re(Be,rt,Qs,"ι","\\iota",!0);Re(Be,rt,Qs,"κ","\\kappa",!0);Re(Be,rt,Qs,"λ","\\lambda",!0);Re(Be,rt,Qs,"μ","\\mu",!0);Re(Be,rt,Qs,"ν","\\nu",!0);Re(Be,rt,Qs,"ξ","\\xi",!0);Re(Be,rt,Qs,"ο","\\omicron",!0);Re(Be,rt,Qs,"π","\\pi",!0);Re(Be,rt,Qs,"ρ","\\rho",!0);Re(Be,rt,Qs,"σ","\\sigma",!0);Re(Be,rt,Qs,"τ","\\tau",!0);Re(Be,rt,Qs,"υ","\\upsilon",!0);Re(Be,rt,Qs,"ϕ","\\phi",!0);Re(Be,rt,Qs,"χ","\\chi",!0);Re(Be,rt,Qs,"ψ","\\psi",!0);Re(Be,rt,Qs,"ω","\\omega",!0);Re(Be,rt,Qs,"ε","\\varepsilon",!0);Re(Be,rt,Qs,"ϑ","\\vartheta",!0);Re(Be,rt,Qs,"ϖ","\\varpi",!0);Re(Be,rt,Qs,"ϱ","\\varrho",!0);Re(Be,rt,Qs,"ς","\\varsigma",!0);Re(Be,rt,Qs,"φ","\\varphi",!0);Re(Be,rt,Oa,"∗","*",!0);Re(Be,rt,Oa,"+","+");Re(Be,rt,Oa,"−","-",!0);Re(Be,rt,Oa,"⋅","\\cdot",!0);Re(Be,rt,Oa,"∘","\\circ",!0);Re(Be,rt,Oa,"÷","\\div",!0);Re(Be,rt,Oa,"±","\\pm",!0);Re(Be,rt,Oa,"×","\\times",!0);Re(Be,rt,Oa,"∩","\\cap",!0);Re(Be,rt,Oa,"∪","\\cup",!0);Re(Be,rt,Oa,"∖","\\setminus",!0);Re(Be,rt,Oa,"∧","\\land");Re(Be,rt,Oa,"∨","\\lor");Re(Be,rt,Oa,"∧","\\wedge",!0);Re(Be,rt,Oa,"∨","\\vee",!0);Re(Be,rt,Tn,"√","\\surd");Re(Be,rt,jw,"⟨","\\langle",!0);Re(Be,rt,jw,"∣","\\lvert");Re(Be,rt,jw,"∥","\\lVert");Re(Be,rt,vv,"?","?");Re(Be,rt,vv,"!","!");Re(Be,rt,vv,"⟩","\\rangle",!0);Re(Be,rt,vv,"∣","\\rvert");Re(Be,rt,vv,"∥","\\rVert");Re(Be,rt,tn,"=","=");Re(Be,rt,tn,":",":");Re(Be,rt,tn,"≈","\\approx",!0);Re(Be,rt,tn,"≅","\\cong",!0);Re(Be,rt,tn,"≥","\\ge");Re(Be,rt,tn,"≥","\\geq",!0);Re(Be,rt,tn,"←","\\gets");Re(Be,rt,tn,">","\\gt",!0);Re(Be,rt,tn,"∈","\\in",!0);Re(Be,rt,tn,"","\\@not");Re(Be,rt,tn,"⊂","\\subset",!0);Re(Be,rt,tn,"⊃","\\supset",!0);Re(Be,rt,tn,"⊆","\\subseteq",!0);Re(Be,rt,tn,"⊇","\\supseteq",!0);Re(Be,Wt,tn,"⊈","\\nsubseteq",!0);Re(Be,Wt,tn,"⊉","\\nsupseteq",!0);Re(Be,rt,tn,"⊨","\\models");Re(Be,rt,tn,"←","\\leftarrow",!0);Re(Be,rt,tn,"≤","\\le");Re(Be,rt,tn,"≤","\\leq",!0);Re(Be,rt,tn,"<","\\lt",!0);Re(Be,rt,tn,"→","\\rightarrow",!0);Re(Be,rt,tn,"→","\\to");Re(Be,Wt,tn,"≱","\\ngeq",!0);Re(Be,Wt,tn,"≰","\\nleq",!0);Re(Be,rt,ER," ","\\ ");Re(Be,rt,ER," ","\\space");Re(Be,rt,ER," ","\\nobreakspace");Re(di,rt,ER," ","\\ ");Re(di,rt,ER," "," ");Re(di,rt,ER," ","\\space");Re(di,rt,ER," ","\\nobreakspace");Re(Be,rt,ER,null,"\\nobreak");Re(Be,rt,ER,null,"\\allowbreak");Re(Be,rt,GAe,",",",");Re(Be,rt,GAe,";",";");Re(Be,Wt,Oa,"⊼","\\barwedge",!0);Re(Be,Wt,Oa,"⊻","\\veebar",!0);Re(Be,rt,Oa,"⊙","\\odot",!0);Re(Be,rt,Oa,"⊕","\\oplus",!0);Re(Be,rt,Oa,"⊗","\\otimes",!0);Re(Be,rt,Tn,"∂","\\partial",!0);Re(Be,rt,Oa,"⊘","\\oslash",!0);Re(Be,Wt,Oa,"⊚","\\circledcirc",!0);Re(Be,Wt,Oa,"⊡","\\boxdot",!0);Re(Be,rt,Oa,"△","\\bigtriangleup");Re(Be,rt,Oa,"▽","\\bigtriangledown");Re(Be,rt,Oa,"†","\\dagger");Re(Be,rt,Oa,"⋄","\\diamond");Re(Be,rt,Oa,"⋆","\\star");Re(Be,rt,Oa,"◃","\\triangleleft");Re(Be,rt,Oa,"▹","\\triangleright");Re(Be,rt,jw,"{","\\{");Re(di,rt,Tn,"{","\\{");Re(di,rt,Tn,"{","\\textbraceleft");Re(Be,rt,vv,"}","\\}");Re(di,rt,Tn,"}","\\}");Re(di,rt,Tn,"}","\\textbraceright");Re(Be,rt,jw,"{","\\lbrace");Re(Be,rt,vv,"}","\\rbrace");Re(Be,rt,jw,"[","\\lbrack",!0);Re(di,rt,Tn,"[","\\lbrack",!0);Re(Be,rt,vv,"]","\\rbrack",!0);Re(di,rt,Tn,"]","\\rbrack",!0);Re(Be,rt,jw,"(","\\lparen",!0);Re(Be,rt,vv,")","\\rparen",!0);Re(di,rt,Tn,"<","\\textless",!0);Re(di,rt,Tn,">","\\textgreater",!0);Re(Be,rt,jw,"⌊","\\lfloor",!0);Re(Be,rt,vv,"⌋","\\rfloor",!0);Re(Be,rt,jw,"⌈","\\lceil",!0);Re(Be,rt,vv,"⌉","\\rceil",!0);Re(Be,rt,Tn,"\\","\\backslash");Re(Be,rt,Tn,"∣","|");Re(Be,rt,Tn,"∣","\\vert");Re(di,rt,Tn,"|","\\textbar",!0);Re(Be,rt,Tn,"∥","\\|");Re(Be,rt,Tn,"∥","\\Vert");Re(di,rt,Tn,"∥","\\textbardbl");Re(di,rt,Tn,"~","\\textasciitilde");Re(di,rt,Tn,"\\","\\textbackslash");Re(di,rt,Tn,"^","\\textasciicircum");Re(Be,rt,tn,"↑","\\uparrow",!0);Re(Be,rt,tn,"⇑","\\Uparrow",!0);Re(Be,rt,tn,"↓","\\downarrow",!0);Re(Be,rt,tn,"⇓","\\Downarrow",!0);Re(Be,rt,tn,"↕","\\updownarrow",!0);Re(Be,rt,tn,"⇕","\\Updownarrow",!0);Re(Be,rt,B1,"∐","\\coprod");Re(Be,rt,B1,"⋁","\\bigvee");Re(Be,rt,B1,"⋀","\\bigwedge");Re(Be,rt,B1,"⨄","\\biguplus");Re(Be,rt,B1,"⋂","\\bigcap");Re(Be,rt,B1,"⋃","\\bigcup");Re(Be,rt,B1,"∫","\\int");Re(Be,rt,B1,"∫","\\intop");Re(Be,rt,B1,"∬","\\iint");Re(Be,rt,B1,"∭","\\iiint");Re(Be,rt,B1,"∏","\\prod");Re(Be,rt,B1,"∑","\\sum");Re(Be,rt,B1,"⨂","\\bigotimes");Re(Be,rt,B1,"⨁","\\bigoplus");Re(Be,rt,B1,"⨀","\\bigodot");Re(Be,rt,B1,"∮","\\oint");Re(Be,rt,B1,"∯","\\oiint");Re(Be,rt,B1,"∰","\\oiiint");Re(Be,rt,B1,"⨆","\\bigsqcup");Re(Be,rt,B1,"∫","\\smallint");Re(di,rt,qW,"…","\\textellipsis");Re(Be,rt,qW,"…","\\mathellipsis");Re(di,rt,qW,"…","\\ldots",!0);Re(Be,rt,qW,"…","\\ldots",!0);Re(Be,rt,qW,"⋯","\\@cdots",!0);Re(Be,rt,qW,"⋱","\\ddots",!0);Re(Be,rt,Tn,"⋮","\\varvdots");Re(di,rt,Tn,"⋮","\\varvdots");Re(Be,rt,Xd,"ˊ","\\acute");Re(Be,rt,Xd,"ˋ","\\grave");Re(Be,rt,Xd,"¨","\\ddot");Re(Be,rt,Xd,"~","\\tilde");Re(Be,rt,Xd,"ˉ","\\bar");Re(Be,rt,Xd,"˘","\\breve");Re(Be,rt,Xd,"ˇ","\\check");Re(Be,rt,Xd,"^","\\hat");Re(Be,rt,Xd,"⃗","\\vec");Re(Be,rt,Xd,"˙","\\dot");Re(Be,rt,Xd,"˚","\\mathring");Re(Be,rt,Qs,"","\\@imath");Re(Be,rt,Qs,"","\\@jmath");Re(Be,rt,Tn,"ı","ı");Re(Be,rt,Tn,"ȷ","ȷ");Re(di,rt,Tn,"ı","\\i",!0);Re(di,rt,Tn,"ȷ","\\j",!0);Re(di,rt,Tn,"ß","\\ss",!0);Re(di,rt,Tn,"æ","\\ae",!0);Re(di,rt,Tn,"œ","\\oe",!0);Re(di,rt,Tn,"ø","\\o",!0);Re(di,rt,Tn,"Æ","\\AE",!0);Re(di,rt,Tn,"Œ","\\OE",!0);Re(di,rt,Tn,"Ø","\\O",!0);Re(di,rt,Xd,"ˊ","\\'");Re(di,rt,Xd,"ˋ","\\`");Re(di,rt,Xd,"ˆ","\\^");Re(di,rt,Xd,"˜","\\~");Re(di,rt,Xd,"ˉ","\\=");Re(di,rt,Xd,"˘","\\u");Re(di,rt,Xd,"˙","\\.");Re(di,rt,Xd,"¸","\\c");Re(di,rt,Xd,"˚","\\r");Re(di,rt,Xd,"ˇ","\\v");Re(di,rt,Xd,"¨",'\\"');Re(di,rt,Xd,"˝","\\H");Re(di,rt,Xd,"◯","\\textcircled");var gGn={"--":!0,"---":!0,"``":!0,"''":!0};Re(di,rt,Tn,"–","--",!0);Re(di,rt,Tn,"–","\\textendash");Re(di,rt,Tn,"—","---",!0);Re(di,rt,Tn,"—","\\textemdash");Re(di,rt,Tn,"‘","`",!0);Re(di,rt,Tn,"‘","\\textquoteleft");Re(di,rt,Tn,"’","'",!0);Re(di,rt,Tn,"’","\\textquoteright");Re(di,rt,Tn,"“","``",!0);Re(di,rt,Tn,"“","\\textquotedblleft");Re(di,rt,Tn,"”","''",!0);Re(di,rt,Tn,"”","\\textquotedblright");Re(Be,rt,Tn,"°","\\degree",!0);Re(di,rt,Tn,"°","\\degree");Re(di,rt,Tn,"°","\\textdegree",!0);Re(Be,rt,Tn,"£","\\pounds");Re(Be,rt,Tn,"£","\\mathsterling",!0);Re(di,rt,Tn,"£","\\pounds");Re(di,rt,Tn,"£","\\textsterling",!0);Re(Be,Wt,Tn,"✠","\\maltese");Re(di,Wt,Tn,"✠","\\maltese");var F_n='0123456789/@."';for(var _nt=0;_nt0)return I3(o,p,s,r,u.concat(m));if(f){var b,_;if(f==="boldsymbol"){var w=m3i(o,s,r,u,a);b=w.fontName,_=[w.fontClass]}else h?(b=yGn[f].fontName,_=[f]):(b=Ewe(f,r.fontWeight,r.fontShape),_=[f,r.fontWeight,r.fontShape]);if(qAe(o,b,s).metrics)return I3(o,b,s,r,u.concat(_));if(gGn.hasOwnProperty(o)&&b.slice(0,10)==="Typewriter"){for(var S=[],C=0;C{if(t9(e.classes)!==t9(t.classes)||e.skew!==t.skew||e.maxFontSize!==t.maxFontSize)return!1;if(e.classes.length===1){var r=e.classes[0];if(r==="mbin"||r==="mord")return!1}for(var a in e.style)if(e.style.hasOwnProperty(a)&&e.style[a]!==t.style[a])return!1;for(var s in t.style)if(t.style.hasOwnProperty(s)&&e.style[s]!==t.style[s])return!1;return!0},v3i=e=>{for(var t=0;tr&&(r=u.height),u.depth>a&&(a=u.depth),u.maxFontSize>s&&(s=u.maxFontSize)}t.height=r,t.depth=a,t.maxFontSize=s},O2=function(t,r,a,s){var o=new yce(t,r,a,s);return Fpt(o),o},mGn=(e,t,r,a)=>new yce(e,t,r,a),_3i=function(t,r,a){var s=O2([t],[],r);return s.height=Math.max(a||r.fontMetrics().defaultRuleThickness,r.minRuleThickness),s.style.borderBottomWidth=Qi(s.height),s.maxFontSize=1,s},w3i=function(t,r,a,s){var o=new Bpt(t,r,a,s);return Fpt(o),o},bGn=function(t){var r=new bce(t);return Fpt(r),r},E3i=function(t,r){return t instanceof bce?O2([],[t],r):t},x3i=function(t){if(t.positionType==="individualShift"){for(var r=t.children,a=[r[0]],s=-r[0].shift-r[0].elem.depth,o=s,u=1;u{var r=O2(["mspace"],[],t),a=Rf(e,t);return r.style.marginRight=Qi(a),r},Ewe=function(t,r,a){var s="";switch(t){case"amsrm":s="AMS";break;case"textrm":s="Main";break;case"textsf":s="SansSerif";break;case"texttt":s="Typewriter";break;default:s=t}var o;return r==="textbf"&&a==="textit"?o="BoldItalic":r==="textbf"?o="Bold":r==="textit"?o="Italic":o="Regular",s+"-"+o},yGn={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathnormal:{variant:"italic",fontName:"Math-Italic"},mathsfit:{variant:"sans-serif-italic",fontName:"SansSerif-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},vGn={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]},C3i=function(t,r){var[a,s,o]=vGn[t],u=new n9(a),h=new aR([u],{width:Qi(s),height:Qi(o),style:"width:"+Qi(s),viewBox:"0 0 "+1e3*s+" "+1e3*o,preserveAspectRatio:"xMinYMin"}),f=mGn(["overlay"],[h],r);return f.height=o,f.style.height=Qi(o),f.style.width=Qi(s),f},er={fontMap:yGn,makeSymbol:I3,mathsym:g3i,makeSpan:O2,makeSvgSpan:mGn,makeLineSpan:_3i,makeAnchor:w3i,makeFragment:bGn,wrapFragment:E3i,makeVList:S3i,makeOrd:b3i,makeGlue:T3i,staticSvg:C3i,svgData:vGn,tryCombineChars:v3i},Af={number:3,unit:"mu"},yB={number:4,unit:"mu"},X6={number:5,unit:"mu"},A3i={mord:{mop:Af,mbin:yB,mrel:X6,minner:Af},mop:{mord:Af,mop:Af,mrel:X6,minner:Af},mbin:{mord:yB,mop:yB,mopen:yB,minner:yB},mrel:{mord:X6,mop:X6,mopen:X6,minner:X6},mopen:{},mclose:{mop:Af,mbin:yB,mrel:X6,minner:Af},mpunct:{mord:Af,mop:Af,mrel:X6,mopen:Af,mclose:Af,mpunct:Af,minner:Af},minner:{mord:Af,mop:Af,mbin:yB,mrel:X6,mopen:Af,mpunct:Af,minner:Af}},k3i={mord:{mop:Af},mop:{mord:Af,mop:Af},mbin:{},mrel:{},mopen:{},mclose:{mop:Af},mpunct:{},minner:{mop:Af}},_Gn={},M3e={},P3e={};function ga(e){for(var{type:t,names:r,props:a,handler:s,htmlBuilder:o,mathmlBuilder:u}=e,h={type:t,numArgs:a.numArgs,argTypes:a.argTypes,allowedInArgument:!!a.allowedInArgument,allowedInText:!!a.allowedInText,allowedInMath:a.allowedInMath===void 0?!0:a.allowedInMath,numOptionalArgs:a.numOptionalArgs||0,infix:!!a.infix,primitive:!!a.primitive,handler:s},f=0;f{var A=C.classes[0],k=S.classes[0];A==="mbin"&&I3i.includes(k)?C.classes[0]="mord":k==="mbin"&&R3i.includes(A)&&(S.classes[0]="mord")},{node:b},_,w),q_n(o,(S,C)=>{var A=Wlt(C),k=Wlt(S),I=A&&k?S.hasClass("mtight")?k3i[A][k]:A3i[A][k]:null;if(I)return er.makeGlue(I,p)},{node:b},_,w),o},q_n=function e(t,r,a,s,o){s&&t.push(s);for(var u=0;u_=>{t.splice(b+1,0,_),u++})(u)}s&&t.pop()},wGn=function(t){return t instanceof bce||t instanceof Bpt||t instanceof yce&&t.hasClass("enclosing")?t:null},L3i=function e(t,r){var a=wGn(t);if(a){var s=a.children;if(s.length){if(r==="right")return e(s[s.length-1],"right");if(r==="left")return e(s[0],"left")}}return t},Wlt=function(t,r){return t?(r&&(t=L3i(t,r)),O3i[t.classes[0]]||null):null},Boe=function(t,r){var a=["nulldelimiter"].concat(t.baseSizingClasses());return sR(r.concat(a))},jc=function(t,r,a){if(!t)return sR();if(M3e[t.type]){var s=M3e[t.type](t,r);if(a&&r.size!==a.size){s=sR(r.sizingClasses(a),[s],r);var o=r.sizeMultiplier/a.sizeMultiplier;s.height*=o,s.depth*=o}return s}else throw new Ri("Got group of unknown type: '"+t.type+"'")};function xwe(e,t){var r=sR(["base"],e,t),a=sR(["strut"]);return a.style.height=Qi(r.height+r.depth),r.depth&&(a.style.verticalAlign=Qi(-r.depth)),r.children.unshift(a),r}function Klt(e,t){var r=null;e.length===1&&e[0].type==="tag"&&(r=e[0].tag,e=e[0].body);var a=Lp(e,t,"root"),s;a.length===2&&a[1].hasClass("tag")&&(s=a.pop());for(var o=[],u=[],h=0;h0&&(o.push(xwe(u,t)),u=[]),o.push(a[h]));u.length>0&&o.push(xwe(u,t));var p;r?(p=xwe(Lp(r,t,!0)),p.classes=["tag"],o.push(p)):s&&o.push(s);var m=sR(["katex-html"],o);if(m.setAttribute("aria-hidden","true"),p){var b=p.children[0];b.style.height=Qi(m.height+m.depth),m.depth&&(b.style.verticalAlign=Qi(-m.depth))}return m}function EGn(e){return new bce(e)}class Nw{constructor(t,r,a){this.type=void 0,this.attributes=void 0,this.children=void 0,this.classes=void 0,this.type=t,this.attributes={},this.children=r||[],this.classes=a||[]}setAttribute(t,r){this.attributes[t]=r}getAttribute(t){return this.attributes[t]}toNode(){var t=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(var r in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,r)&&t.setAttribute(r,this.attributes[r]);this.classes.length>0&&(t.className=t9(this.classes));for(var a=0;a0&&(t+=' class ="'+hu.escape(t9(this.classes))+'"'),t+=">";for(var a=0;a",t}toText(){return this.children.map(t=>t.toText()).join("")}}class QC{constructor(t){this.text=void 0,this.text=t}toNode(){return document.createTextNode(this.text)}toMarkup(){return hu.escape(this.toText())}toText(){return this.text}}class D3i{constructor(t){this.width=void 0,this.character=void 0,this.width=t,t>=.05555&&t<=.05556?this.character=" ":t>=.1666&&t<=.1667?this.character=" ":t>=.2222&&t<=.2223?this.character=" ":t>=.2777&&t<=.2778?this.character="  ":t>=-.05556&&t<=-.05555?this.character=" ⁣":t>=-.1667&&t<=-.1666?this.character=" ⁣":t>=-.2223&&t<=-.2222?this.character=" ⁣":t>=-.2778&&t<=-.2777?this.character=" ⁣":this.character=null}toNode(){if(this.character)return document.createTextNode(this.character);var t=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return t.setAttribute("width",Qi(this.width)),t}toMarkup(){return this.character?""+this.character+"":''}toText(){return this.character?this.character:" "}}var Si={MathNode:Nw,TextNode:QC,SpaceNode:D3i,newDocumentFragment:EGn},SS=function(t,r,a){return td[r][t]&&td[r][t].replace&&t.charCodeAt(0)!==55349&&!(gGn.hasOwnProperty(t)&&a&&(a.fontFamily&&a.fontFamily.slice(4,6)==="tt"||a.font&&a.font.slice(4,6)==="tt"))&&(t=td[r][t].replace),new Si.TextNode(t)},$pt=function(t){return t.length===1?t[0]:new Si.MathNode("mrow",t)},Upt=function(t,r){if(r.fontFamily==="texttt")return"monospace";if(r.fontFamily==="textsf")return r.fontShape==="textit"&&r.fontWeight==="textbf"?"sans-serif-bold-italic":r.fontShape==="textit"?"sans-serif-italic":r.fontWeight==="textbf"?"bold-sans-serif":"sans-serif";if(r.fontShape==="textit"&&r.fontWeight==="textbf")return"bold-italic";if(r.fontShape==="textit")return"italic";if(r.fontWeight==="textbf")return"bold";var a=r.font;if(!a||a==="mathnormal")return null;var s=t.mode;if(a==="mathit")return"italic";if(a==="boldsymbol")return t.type==="textord"?"bold":"bold-italic";if(a==="mathbf")return"bold";if(a==="mathbb")return"double-struck";if(a==="mathsfit")return"sans-serif-italic";if(a==="mathfrak")return"fraktur";if(a==="mathscr"||a==="mathcal")return"script";if(a==="mathsf")return"sans-serif";if(a==="mathtt")return"monospace";var o=t.text;if(["\\imath","\\jmath"].includes(o))return null;td[s][o]&&td[s][o].replace&&(o=td[s][o].replace);var u=er.fontMap[a].fontName;return Ppt(o,u,s)?er.fontMap[a].variant:null};function Snt(e){if(!e)return!1;if(e.type==="mi"&&e.children.length===1){var t=e.children[0];return t instanceof QC&&t.text==="."}else if(e.type==="mo"&&e.children.length===1&&e.getAttribute("separator")==="true"&&e.getAttribute("lspace")==="0em"&&e.getAttribute("rspace")==="0em"){var r=e.children[0];return r instanceof QC&&r.text===","}else return!1}var l_=function(t,r,a){if(t.length===1){var s=Bh(t[0],r);return a&&s instanceof Nw&&s.type==="mo"&&(s.setAttribute("lspace","0em"),s.setAttribute("rspace","0em")),[s]}for(var o=[],u,h=0;h=1&&(u.type==="mn"||Snt(u))){var p=f.children[0];p instanceof Nw&&p.type==="mn"&&(p.children=[...u.children,...p.children],o.pop())}else if(u.type==="mi"&&u.children.length===1){var m=u.children[0];if(m instanceof QC&&m.text==="̸"&&(f.type==="mo"||f.type==="mi"||f.type==="mn")){var b=f.children[0];b instanceof QC&&b.text.length>0&&(b.text=b.text.slice(0,1)+"̸"+b.text.slice(1),o.pop())}}}o.push(f),u=f}return o},r9=function(t,r,a){return $pt(l_(t,r,a))},Bh=function(t,r){if(!t)return new Si.MathNode("mrow");if(P3e[t.type]){var a=P3e[t.type](t,r);return a}else throw new Ri("Got group of unknown type: '"+t.type+"'")};function H_n(e,t,r,a,s){var o=l_(e,r),u;o.length===1&&o[0]instanceof Nw&&["mrow","mtable"].includes(o[0].type)?u=o[0]:u=new Si.MathNode("mrow",o);var h=new Si.MathNode("annotation",[new Si.TextNode(t)]);h.setAttribute("encoding","application/x-tex");var f=new Si.MathNode("semantics",[u,h]),p=new Si.MathNode("math",[f]);p.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML"),a&&p.setAttribute("display","block");var m=s?"katex":"katex-mathml";return er.makeSpan([m],[p])}var xGn=function(t){return new p7({style:t.displayMode?Js.DISPLAY:Js.TEXT,maxSize:t.maxSize,minRuleThickness:t.minRuleThickness})},SGn=function(t,r){if(r.displayMode){var a=["katex-display"];r.leqno&&a.push("leqno"),r.fleqn&&a.push("fleqn"),t=er.makeSpan(a,[t])}return t},M3i=function(t,r,a){var s=xGn(a),o;if(a.output==="mathml")return H_n(t,r,s,a.displayMode,!0);if(a.output==="html"){var u=Klt(t,s);o=er.makeSpan(["katex"],[u])}else{var h=H_n(t,r,s,a.displayMode,!1),f=Klt(t,s);o=er.makeSpan(["katex"],[h,f])}return SGn(o,a)},P3i=function(t,r,a){var s=xGn(a),o=Klt(t,s),u=er.makeSpan(["katex"],[o]);return SGn(u,a)},B3i={widehat:"^",widecheck:"ˇ",widetilde:"~",utilde:"~",overleftarrow:"←",underleftarrow:"←",xleftarrow:"←",overrightarrow:"→",underrightarrow:"→",xrightarrow:"→",underbrace:"⏟",overbrace:"⏞",overgroup:"⏠",undergroup:"⏡",overleftrightarrow:"↔",underleftrightarrow:"↔",xleftrightarrow:"↔",Overrightarrow:"⇒",xRightarrow:"⇒",overleftharpoon:"↼",xleftharpoonup:"↼",overrightharpoon:"⇀",xrightharpoonup:"⇀",xLeftarrow:"⇐",xLeftrightarrow:"⇔",xhookleftarrow:"↩",xhookrightarrow:"↪",xmapsto:"↦",xrightharpoondown:"⇁",xleftharpoondown:"↽",xrightleftharpoons:"⇌",xleftrightharpoons:"⇋",xtwoheadleftarrow:"↞",xtwoheadrightarrow:"↠",xlongequal:"=",xtofrom:"⇄",xrightleftarrows:"⇄",xrightequilibrium:"⇌",xleftequilibrium:"⇋","\\cdrightarrow":"→","\\cdleftarrow":"←","\\cdlongequal":"="},F3i=function(t){var r=new Si.MathNode("mo",[new Si.TextNode(B3i[t.replace(/^\\/,"")])]);return r.setAttribute("stretchy","true"),r},$3i={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],"\\cdrightarrow":[["rightarrow"],3,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],"\\cdleftarrow":[["leftarrow"],3,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],"\\cdlongequal":[["longequal"],3,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]},U3i=function(t){return t.type==="ordgroup"?t.body.length:1},z3i=function(t,r){function a(){var h=4e5,f=t.label.slice(1);if(["widehat","widecheck","widetilde","utilde"].includes(f)){var p=t,m=U3i(p.base),b,_,w;if(m>5)f==="widehat"||f==="widecheck"?(b=420,h=2364,w=.42,_=f+"4"):(b=312,h=2340,w=.34,_="tilde4");else{var S=[1,1,2,2,3,3][m];f==="widehat"||f==="widecheck"?(h=[0,1062,2364,2364,2364][S],b=[0,239,300,360,420][S],w=[0,.24,.3,.3,.36,.42][S],_=f+S):(h=[0,600,1033,2339,2340][S],b=[0,260,286,306,312][S],w=[0,.26,.286,.3,.306,.34][S],_="tilde"+S)}var C=new n9(_),A=new aR([C],{width:"100%",height:Qi(w),viewBox:"0 0 "+h+" "+b,preserveAspectRatio:"none"});return{span:er.makeSvgSpan([],[A],r),minWidth:0,height:w}}else{var k=[],I=$3i[f],[N,L,P]=I,M=P/1e3,F=N.length,U,$;if(F===1){var G=I[3];U=["hide-tail"],$=[G]}else if(F===2)U=["halfarrow-left","halfarrow-right"],$=["xMinYMin","xMaxYMin"];else if(F===3)U=["brace-left","brace-center","brace-right"],$=["xMinYMin","xMidYMin","xMaxYMin"];else throw new Error(`Correct katexImagesData or update code here to support + `+F+" children.");for(var B=0;B0&&(s.style.minWidth=Qi(o)),s},G3i=function(t,r,a,s,o){var u,h=t.height+t.depth+a+s;if(/fbox|color|angl/.test(r)){if(u=er.makeSpan(["stretchy",r],[],o),r==="fbox"){var f=o.color&&o.getColor();f&&(u.style.borderColor=f)}}else{var p=[];/^[bx]cancel$/.test(r)&&p.push(new Ylt({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(r)&&p.push(new Ylt({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));var m=new aR(p,{width:"100%",height:Qi(h)});u=er.makeSvgSpan([],[m],o)}return u.height=h,u.style.height=Qi(h),u},oR={encloseSpan:G3i,mathMLnode:F3i,svgSpan:z3i};function xl(e,t){if(!e||e.type!==t)throw new Error("Expected node of type "+t+", but got "+(e?"node of type "+e.type:String(e)));return e}function zpt(e){var t=HAe(e);if(!t)throw new Error("Expected node of symbol group type, but got "+(e?"node of type "+e.type:String(e)));return t}function HAe(e){return e&&(e.type==="atom"||f3i.hasOwnProperty(e.type))?e:null}var Gpt=(e,t)=>{var r,a,s;e&&e.type==="supsub"?(a=xl(e.base,"accent"),r=a.base,e.base=r,s=h3i(jc(e,t)),e.base=a):(a=xl(e,"accent"),r=a.base);var o=jc(r,t.havingCrampedStyle()),u=a.isShifty&&hu.isCharacterBox(r),h=0;if(u){var f=hu.getBaseElem(r),p=jc(f,t.havingCrampedStyle());h=B_n(p).skew}var m=a.label==="\\c",b=m?o.height+o.depth:Math.min(o.height,t.fontMetrics().xHeight),_;if(a.isStretchy)_=oR.svgSpan(a,t),_=er.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:o},{type:"elem",elem:_,wrapperClasses:["svg-align"],wrapperStyle:h>0?{width:"calc(100% - "+Qi(2*h)+")",marginLeft:Qi(2*h)}:void 0}]},t);else{var w,S;a.label==="\\vec"?(w=er.staticSvg("vec",t),S=er.svgData.vec[1]):(w=er.makeOrd({mode:a.mode,text:a.label},t,"textord"),w=B_n(w),w.italic=0,S=w.width,m&&(b+=w.depth)),_=er.makeSpan(["accent-body"],[w]);var C=a.label==="\\textcircled";C&&(_.classes.push("accent-full"),b=o.height);var A=h;C||(A-=S/2),_.style.left=Qi(A),a.label==="\\textcircled"&&(_.style.top=".2em"),_=er.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:o},{type:"kern",size:-b},{type:"elem",elem:_}]},t)}var k=er.makeSpan(["mord","accent"],[_],t);return s?(s.children[0]=k,s.height=Math.max(k.height,s.height),s.classes[0]="mord",s):k},TGn=(e,t)=>{var r=e.isStretchy?oR.mathMLnode(e.label):new Si.MathNode("mo",[SS(e.label,e.mode)]),a=new Si.MathNode("mover",[Bh(e.base,t),r]);return a.setAttribute("accent","true"),a},q3i=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map(e=>"\\"+e).join("|"));ga({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],props:{numArgs:1},handler:(e,t)=>{var r=B3e(t[0]),a=!q3i.test(e.funcName),s=!a||e.funcName==="\\widehat"||e.funcName==="\\widetilde"||e.funcName==="\\widecheck";return{type:"accent",mode:e.parser.mode,label:e.funcName,isStretchy:a,isShifty:s,base:r}},htmlBuilder:Gpt,mathmlBuilder:TGn});ga({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\c","\\r","\\H","\\v","\\textcircled"],props:{numArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["primitive"]},handler:(e,t)=>{var r=t[0],a=e.parser.mode;return a==="math"&&(e.parser.settings.reportNonstrict("mathVsTextAccents","LaTeX's accent "+e.funcName+" works only in text mode"),a="text"),{type:"accent",mode:a,label:e.funcName,isStretchy:!1,isShifty:!0,base:r}},htmlBuilder:Gpt,mathmlBuilder:TGn});ga({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],props:{numArgs:1},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0];return{type:"accentUnder",mode:r.mode,label:a,base:s}},htmlBuilder:(e,t)=>{var r=jc(e.base,t),a=oR.svgSpan(e,t),s=e.label==="\\utilde"?.12:0,o=er.makeVList({positionType:"top",positionData:r.height,children:[{type:"elem",elem:a,wrapperClasses:["svg-align"]},{type:"kern",size:s},{type:"elem",elem:r}]},t);return er.makeSpan(["mord","accentunder"],[o],t)},mathmlBuilder:(e,t)=>{var r=oR.mathMLnode(e.label),a=new Si.MathNode("munder",[Bh(e.base,t),r]);return a.setAttribute("accentunder","true"),a}});var Swe=e=>{var t=new Si.MathNode("mpadded",e?[e]:[]);return t.setAttribute("width","+0.6em"),t.setAttribute("lspace","0.3em"),t};ga({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium","\\\\cdrightarrow","\\\\cdleftarrow","\\\\cdlongequal"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){var{parser:a,funcName:s}=e;return{type:"xArrow",mode:a.mode,label:s,body:t[0],below:r[0]}},htmlBuilder(e,t){var r=t.style,a=t.havingStyle(r.sup()),s=er.wrapFragment(jc(e.body,a,t),t),o=e.label.slice(0,2)==="\\x"?"x":"cd";s.classes.push(o+"-arrow-pad");var u;e.below&&(a=t.havingStyle(r.sub()),u=er.wrapFragment(jc(e.below,a,t),t),u.classes.push(o+"-arrow-pad"));var h=oR.svgSpan(e,t),f=-t.fontMetrics().axisHeight+.5*h.height,p=-t.fontMetrics().axisHeight-.5*h.height-.111;(s.depth>.25||e.label==="\\xleftequilibrium")&&(p-=s.depth);var m;if(u){var b=-t.fontMetrics().axisHeight+u.height+.5*h.height+.111;m=er.makeVList({positionType:"individualShift",children:[{type:"elem",elem:s,shift:p},{type:"elem",elem:h,shift:f},{type:"elem",elem:u,shift:b}]},t)}else m=er.makeVList({positionType:"individualShift",children:[{type:"elem",elem:s,shift:p},{type:"elem",elem:h,shift:f}]},t);return m.children[0].children[0].children[1].classes.push("svg-align"),er.makeSpan(["mrel","x-arrow"],[m],t)},mathmlBuilder(e,t){var r=oR.mathMLnode(e.label);r.setAttribute("minsize",e.label.charAt(0)==="x"?"1.75em":"3.0em");var a;if(e.body){var s=Swe(Bh(e.body,t));if(e.below){var o=Swe(Bh(e.below,t));a=new Si.MathNode("munderover",[r,o,s])}else a=new Si.MathNode("mover",[r,s])}else if(e.below){var u=Swe(Bh(e.below,t));a=new Si.MathNode("munder",[r,u])}else a=Swe(),a=new Si.MathNode("mover",[r,a]);return a}});var H3i=er.makeSpan;function CGn(e,t){var r=Lp(e.body,t,!0);return H3i([e.mclass],r,t)}function AGn(e,t){var r,a=l_(e.body,t);return e.mclass==="minner"?r=new Si.MathNode("mpadded",a):e.mclass==="mord"?e.isCharacterBox?(r=a[0],r.type="mi"):r=new Si.MathNode("mi",a):(e.isCharacterBox?(r=a[0],r.type="mo"):r=new Si.MathNode("mo",a),e.mclass==="mbin"?(r.attributes.lspace="0.22em",r.attributes.rspace="0.22em"):e.mclass==="mpunct"?(r.attributes.lspace="0em",r.attributes.rspace="0.17em"):e.mclass==="mopen"||e.mclass==="mclose"?(r.attributes.lspace="0em",r.attributes.rspace="0em"):e.mclass==="minner"&&(r.attributes.lspace="0.0556em",r.attributes.width="+0.1111em")),r}ga({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],props:{numArgs:1,primitive:!0},handler(e,t){var{parser:r,funcName:a}=e,s=t[0];return{type:"mclass",mode:r.mode,mclass:"m"+a.slice(5),body:Q0(s),isCharacterBox:hu.isCharacterBox(s)}},htmlBuilder:CGn,mathmlBuilder:AGn});var VAe=e=>{var t=e.type==="ordgroup"&&e.body.length?e.body[0]:e;return t.type==="atom"&&(t.family==="bin"||t.family==="rel")?"m"+t.family:"mord"};ga({type:"mclass",names:["\\@binrel"],props:{numArgs:2},handler(e,t){var{parser:r}=e;return{type:"mclass",mode:r.mode,mclass:VAe(t[0]),body:Q0(t[1]),isCharacterBox:hu.isCharacterBox(t[1])}}});ga({type:"mclass",names:["\\stackrel","\\overset","\\underset"],props:{numArgs:2},handler(e,t){var{parser:r,funcName:a}=e,s=t[1],o=t[0],u;a!=="\\stackrel"?u=VAe(s):u="mrel";var h={type:"op",mode:s.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:a!=="\\stackrel",body:Q0(s)},f={type:"supsub",mode:o.mode,base:h,sup:a==="\\underset"?null:o,sub:a==="\\underset"?o:null};return{type:"mclass",mode:r.mode,mclass:u,body:[f],isCharacterBox:hu.isCharacterBox(f)}},htmlBuilder:CGn,mathmlBuilder:AGn});ga({type:"pmb",names:["\\pmb"],props:{numArgs:1,allowedInText:!0},handler(e,t){var{parser:r}=e;return{type:"pmb",mode:r.mode,mclass:VAe(t[0]),body:Q0(t[0])}},htmlBuilder(e,t){var r=Lp(e.body,t,!0),a=er.makeSpan([e.mclass],r,t);return a.style.textShadow="0.02em 0.01em 0.04px",a},mathmlBuilder(e,t){var r=l_(e.body,t),a=new Si.MathNode("mstyle",r);return a.setAttribute("style","text-shadow: 0.02em 0.01em 0.04px"),a}});var V3i={">":"\\\\cdrightarrow","<":"\\\\cdleftarrow","=":"\\\\cdlongequal",A:"\\uparrow",V:"\\downarrow","|":"\\Vert",".":"no arrow"},V_n=()=>({type:"styling",body:[],mode:"math",style:"display"}),Y_n=e=>e.type==="textord"&&e.text==="@",Y3i=(e,t)=>(e.type==="mathord"||e.type==="atom")&&e.text===t;function j3i(e,t,r){var a=V3i[e];switch(a){case"\\\\cdrightarrow":case"\\\\cdleftarrow":return r.callFunction(a,[t[0]],[t[1]]);case"\\uparrow":case"\\downarrow":{var s=r.callFunction("\\\\cdleft",[t[0]],[]),o={type:"atom",text:a,mode:"math",family:"rel"},u=r.callFunction("\\Big",[o],[]),h=r.callFunction("\\\\cdright",[t[1]],[]),f={type:"ordgroup",mode:"math",body:[s,u,h]};return r.callFunction("\\\\cdparent",[f],[])}case"\\\\cdlongequal":return r.callFunction("\\\\cdlongequal",[],[]);case"\\Vert":{var p={type:"textord",text:"\\Vert",mode:"math"};return r.callFunction("\\Big",[p],[])}default:return{type:"textord",text:" ",mode:"math"}}}function W3i(e){var t=[];for(e.gullet.beginGroup(),e.gullet.macros.set("\\cr","\\\\\\relax"),e.gullet.beginGroup();;){t.push(e.parseExpression(!1,"\\\\")),e.gullet.endGroup(),e.gullet.beginGroup();var r=e.fetch().text;if(r==="&"||r==="\\\\")e.consume();else if(r==="\\end"){t[t.length-1].length===0&&t.pop();break}else throw new Ri("Expected \\\\ or \\cr or \\end",e.nextToken)}for(var a=[],s=[a],o=0;o-1))if("<>AV".indexOf(p)>-1)for(var b=0;b<2;b++){for(var _=!0,w=f+1;wAV=|." after @',u[f]);var S=j3i(p,m,e),C={type:"styling",body:[S],mode:"math",style:"display"};a.push(C),h=V_n()}o%2===0?a.push(h):a.shift(),a=[],s.push(a)}e.gullet.endGroup(),e.gullet.endGroup();var A=new Array(s[0].length).fill({type:"align",align:"c",pregap:.25,postgap:.25});return{type:"array",mode:"math",body:s,arraystretch:1,addJot:!0,rowGaps:[null],cols:A,colSeparationType:"CD",hLinesBeforeRow:new Array(s.length+1).fill([])}}ga({type:"cdlabel",names:["\\\\cdleft","\\\\cdright"],props:{numArgs:1},handler(e,t){var{parser:r,funcName:a}=e;return{type:"cdlabel",mode:r.mode,side:a.slice(4),label:t[0]}},htmlBuilder(e,t){var r=t.havingStyle(t.style.sup()),a=er.wrapFragment(jc(e.label,r,t),t);return a.classes.push("cd-label-"+e.side),a.style.bottom=Qi(.8-a.depth),a.height=0,a.depth=0,a},mathmlBuilder(e,t){var r=new Si.MathNode("mrow",[Bh(e.label,t)]);return r=new Si.MathNode("mpadded",[r]),r.setAttribute("width","0"),e.side==="left"&&r.setAttribute("lspace","-1width"),r.setAttribute("voffset","0.7em"),r=new Si.MathNode("mstyle",[r]),r.setAttribute("displaystyle","false"),r.setAttribute("scriptlevel","1"),r}});ga({type:"cdlabelparent",names:["\\\\cdparent"],props:{numArgs:1},handler(e,t){var{parser:r}=e;return{type:"cdlabelparent",mode:r.mode,fragment:t[0]}},htmlBuilder(e,t){var r=er.wrapFragment(jc(e.fragment,t),t);return r.classes.push("cd-vert-arrow"),r},mathmlBuilder(e,t){return new Si.MathNode("mrow",[Bh(e.fragment,t)])}});ga({type:"textord",names:["\\@char"],props:{numArgs:1,allowedInText:!0},handler(e,t){for(var{parser:r}=e,a=xl(t[0],"ordgroup"),s=a.body,o="",u=0;u=1114111)throw new Ri("\\@char with invalid code point "+o);return f<=65535?p=String.fromCharCode(f):(f-=65536,p=String.fromCharCode((f>>10)+55296,(f&1023)+56320)),{type:"textord",mode:r.mode,text:p}}});var kGn=(e,t)=>{var r=Lp(e.body,t.withColor(e.color),!1);return er.makeFragment(r)},RGn=(e,t)=>{var r=l_(e.body,t.withColor(e.color)),a=new Si.MathNode("mstyle",r);return a.setAttribute("mathcolor",e.color),a};ga({type:"color",names:["\\textcolor"],props:{numArgs:2,allowedInText:!0,argTypes:["color","original"]},handler(e,t){var{parser:r}=e,a=xl(t[0],"color-token").color,s=t[1];return{type:"color",mode:r.mode,color:a,body:Q0(s)}},htmlBuilder:kGn,mathmlBuilder:RGn});ga({type:"color",names:["\\color"],props:{numArgs:1,allowedInText:!0,argTypes:["color"]},handler(e,t){var{parser:r,breakOnTokenText:a}=e,s=xl(t[0],"color-token").color;r.gullet.macros.set("\\current@color",s);var o=r.parseExpression(!0,a);return{type:"color",mode:r.mode,color:s,body:o}},htmlBuilder:kGn,mathmlBuilder:RGn});ga({type:"cr",names:["\\\\"],props:{numArgs:0,numOptionalArgs:0,allowedInText:!0},handler(e,t,r){var{parser:a}=e,s=a.gullet.future().text==="["?a.parseSizeGroup(!0):null,o=!a.settings.displayMode||!a.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode");return{type:"cr",mode:a.mode,newLine:o,size:s&&xl(s,"size").value}},htmlBuilder(e,t){var r=er.makeSpan(["mspace"],[],t);return e.newLine&&(r.classes.push("newline"),e.size&&(r.style.marginTop=Qi(Rf(e.size,t)))),r},mathmlBuilder(e,t){var r=new Si.MathNode("mspace");return e.newLine&&(r.setAttribute("linebreak","newline"),e.size&&r.setAttribute("height",Qi(Rf(e.size,t)))),r}});var Xlt={"\\global":"\\global","\\long":"\\\\globallong","\\\\globallong":"\\\\globallong","\\def":"\\gdef","\\gdef":"\\gdef","\\edef":"\\xdef","\\xdef":"\\xdef","\\let":"\\\\globallet","\\futurelet":"\\\\globalfuture"},IGn=e=>{var t=e.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(t))throw new Ri("Expected a control sequence",e);return t},K3i=e=>{var t=e.gullet.popToken();return t.text==="="&&(t=e.gullet.popToken(),t.text===" "&&(t=e.gullet.popToken())),t},NGn=(e,t,r,a)=>{var s=e.gullet.macros.get(r.text);s==null&&(r.noexpand=!0,s={tokens:[r],numArgs:0,unexpandable:!e.gullet.isExpandable(r.text)}),e.gullet.macros.set(t,s,a)};ga({type:"internal",names:["\\global","\\long","\\\\globallong"],props:{numArgs:0,allowedInText:!0},handler(e){var{parser:t,funcName:r}=e;t.consumeSpaces();var a=t.fetch();if(Xlt[a.text])return(r==="\\global"||r==="\\\\globallong")&&(a.text=Xlt[a.text]),xl(t.parseFunction(),"internal");throw new Ri("Invalid token after macro prefix",a)}});ga({type:"internal",names:["\\def","\\gdef","\\edef","\\xdef"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){var{parser:t,funcName:r}=e,a=t.gullet.popToken(),s=a.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(s))throw new Ri("Expected a control sequence",a);for(var o=0,u,h=[[]];t.gullet.future().text!=="{";)if(a=t.gullet.popToken(),a.text==="#"){if(t.gullet.future().text==="{"){u=t.gullet.future(),h[o].push("{");break}if(a=t.gullet.popToken(),!/^[1-9]$/.test(a.text))throw new Ri('Invalid argument number "'+a.text+'"');if(parseInt(a.text)!==o+1)throw new Ri('Argument number "'+a.text+'" out of order');o++,h.push([])}else{if(a.text==="EOF")throw new Ri("Expected a macro definition");h[o].push(a.text)}var{tokens:f}=t.gullet.consumeArg();return u&&f.unshift(u),(r==="\\edef"||r==="\\xdef")&&(f=t.gullet.expandTokens(f),f.reverse()),t.gullet.macros.set(s,{tokens:f,numArgs:o,delimiters:h},r===Xlt[r]),{type:"internal",mode:t.mode}}});ga({type:"internal",names:["\\let","\\\\globallet"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){var{parser:t,funcName:r}=e,a=IGn(t.gullet.popToken());t.gullet.consumeSpaces();var s=K3i(t);return NGn(t,a,s,r==="\\\\globallet"),{type:"internal",mode:t.mode}}});ga({type:"internal",names:["\\futurelet","\\\\globalfuture"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){var{parser:t,funcName:r}=e,a=IGn(t.gullet.popToken()),s=t.gullet.popToken(),o=t.gullet.popToken();return NGn(t,a,o,r==="\\\\globalfuture"),t.gullet.pushToken(o),t.gullet.pushToken(s),{type:"internal",mode:t.mode}}});var Hie=function(t,r,a){var s=td.math[t]&&td.math[t].replace,o=Ppt(s||t,r,a);if(!o)throw new Error("Unsupported symbol "+t+" and font size "+r+".");return o},qpt=function(t,r,a,s){var o=a.havingBaseStyle(r),u=er.makeSpan(s.concat(o.sizingClasses(a)),[t],a),h=o.sizeMultiplier/a.sizeMultiplier;return u.height*=h,u.depth*=h,u.maxFontSize=o.sizeMultiplier,u},OGn=function(t,r,a){var s=r.havingBaseStyle(a),o=(1-r.sizeMultiplier/s.sizeMultiplier)*r.fontMetrics().axisHeight;t.classes.push("delimcenter"),t.style.top=Qi(o),t.height-=o,t.depth+=o},X3i=function(t,r,a,s,o,u){var h=er.makeSymbol(t,"Main-Regular",o,s),f=qpt(h,r,s,u);return a&&OGn(f,s,r),f},Q3i=function(t,r,a,s){return er.makeSymbol(t,"Size"+r+"-Regular",a,s)},LGn=function(t,r,a,s,o,u){var h=Q3i(t,r,o,s),f=qpt(er.makeSpan(["delimsizing","size"+r],[h],s),Js.TEXT,s,u);return a&&OGn(f,s,Js.TEXT),f},Tnt=function(t,r,a){var s;r==="Size1-Regular"?s="delim-size1":s="delim-size4";var o=er.makeSpan(["delimsizinginner",s],[er.makeSpan([],[er.makeSymbol(t,r,a)])]);return{type:"elem",elem:o}},Cnt=function(t,r,a){var s=XC["Size4-Regular"][t.charCodeAt(0)]?XC["Size4-Regular"][t.charCodeAt(0)][4]:XC["Size1-Regular"][t.charCodeAt(0)][4],o=new n9("inner",r3i(t,Math.round(1e3*r))),u=new aR([o],{width:Qi(s),height:Qi(r),style:"width:"+Qi(s),viewBox:"0 0 "+1e3*s+" "+Math.round(1e3*r),preserveAspectRatio:"xMinYMin"}),h=er.makeSvgSpan([],[u],a);return h.height=r,h.style.height=Qi(r),h.style.width=Qi(s),{type:"elem",elem:h}},Qlt=.008,Twe={type:"kern",size:-1*Qlt},Z3i=["|","\\lvert","\\rvert","\\vert"],J3i=["\\|","\\lVert","\\rVert","\\Vert"],DGn=function(t,r,a,s,o,u){var h,f,p,m,b="",_=0;h=p=m=t,f=null;var w="Size1-Regular";t==="\\uparrow"?p=m="⏐":t==="\\Uparrow"?p=m="‖":t==="\\downarrow"?h=p="⏐":t==="\\Downarrow"?h=p="‖":t==="\\updownarrow"?(h="\\uparrow",p="⏐",m="\\downarrow"):t==="\\Updownarrow"?(h="\\Uparrow",p="‖",m="\\Downarrow"):Z3i.includes(t)?(p="∣",b="vert",_=333):J3i.includes(t)?(p="∥",b="doublevert",_=556):t==="["||t==="\\lbrack"?(h="⎡",p="⎢",m="⎣",w="Size4-Regular",b="lbrack",_=667):t==="]"||t==="\\rbrack"?(h="⎤",p="⎥",m="⎦",w="Size4-Regular",b="rbrack",_=667):t==="\\lfloor"||t==="⌊"?(p=h="⎢",m="⎣",w="Size4-Regular",b="lfloor",_=667):t==="\\lceil"||t==="⌈"?(h="⎡",p=m="⎢",w="Size4-Regular",b="lceil",_=667):t==="\\rfloor"||t==="⌋"?(p=h="⎥",m="⎦",w="Size4-Regular",b="rfloor",_=667):t==="\\rceil"||t==="⌉"?(h="⎤",p=m="⎥",w="Size4-Regular",b="rceil",_=667):t==="("||t==="\\lparen"?(h="⎛",p="⎜",m="⎝",w="Size4-Regular",b="lparen",_=875):t===")"||t==="\\rparen"?(h="⎞",p="⎟",m="⎠",w="Size4-Regular",b="rparen",_=875):t==="\\{"||t==="\\lbrace"?(h="⎧",f="⎨",m="⎩",p="⎪",w="Size4-Regular"):t==="\\}"||t==="\\rbrace"?(h="⎫",f="⎬",m="⎭",p="⎪",w="Size4-Regular"):t==="\\lgroup"||t==="⟮"?(h="⎧",m="⎩",p="⎪",w="Size4-Regular"):t==="\\rgroup"||t==="⟯"?(h="⎫",m="⎭",p="⎪",w="Size4-Regular"):t==="\\lmoustache"||t==="⎰"?(h="⎧",m="⎭",p="⎪",w="Size4-Regular"):(t==="\\rmoustache"||t==="⎱")&&(h="⎫",m="⎩",p="⎪",w="Size4-Regular");var S=Hie(h,w,o),C=S.height+S.depth,A=Hie(p,w,o),k=A.height+A.depth,I=Hie(m,w,o),N=I.height+I.depth,L=0,P=1;if(f!==null){var M=Hie(f,w,o);L=M.height+M.depth,P=2}var F=C+N+L,U=Math.max(0,Math.ceil((r-F)/(P*k))),$=F+U*P*k,G=s.fontMetrics().axisHeight;a&&(G*=s.sizeMultiplier);var B=$/2-G,Z=[];if(b.length>0){var z=$-C-N,Y=Math.round($*1e3),W=i3i(b,Math.round(z*1e3)),Q=new n9(b,W),V=(_/1e3).toFixed(3)+"em",j=(Y/1e3).toFixed(3)+"em",ee=new aR([Q],{width:V,height:j,viewBox:"0 0 "+_+" "+Y}),te=er.makeSvgSpan([],[ee],s);te.height=Y/1e3,te.style.width=V,te.style.height=j,Z.push({type:"elem",elem:te})}else{if(Z.push(Tnt(m,w,o)),Z.push(Twe),f===null){var ne=$-C-N+2*Qlt;Z.push(Cnt(p,ne,s))}else{var se=($-C-N-L)/2+2*Qlt;Z.push(Cnt(p,se,s)),Z.push(Twe),Z.push(Tnt(f,w,o)),Z.push(Twe),Z.push(Cnt(p,se,s))}Z.push(Twe),Z.push(Tnt(h,w,o))}var ie=s.havingBaseStyle(Js.TEXT),ge=er.makeVList({positionType:"bottom",positionData:B,children:Z},ie);return qpt(er.makeSpan(["delimsizing","mult"],[ge],ie),Js.TEXT,s,u)},Ant=80,knt=.08,Rnt=function(t,r,a,s,o){var u=n3i(t,s,a),h=new n9(t,u),f=new aR([h],{width:"400em",height:Qi(r),viewBox:"0 0 400000 "+a,preserveAspectRatio:"xMinYMin slice"});return er.makeSvgSpan(["hide-tail"],[f],o)},eTi=function(t,r){var a=r.havingBaseSizing(),s=FGn("\\surd",t*a.sizeMultiplier,BGn,a),o=a.sizeMultiplier,u=Math.max(0,r.minRuleThickness-r.fontMetrics().sqrtRuleThickness),h,f=0,p=0,m=0,b;return s.type==="small"?(m=1e3+1e3*u+Ant,t<1?o=1:t<1.4&&(o=.7),f=(1+u+knt)/o,p=(1+u)/o,h=Rnt("sqrtMain",f,m,u,r),h.style.minWidth="0.853em",b=.833/o):s.type==="large"?(m=(1e3+Ant)*Ese[s.size],p=(Ese[s.size]+u)/o,f=(Ese[s.size]+u+knt)/o,h=Rnt("sqrtSize"+s.size,f,m,u,r),h.style.minWidth="1.02em",b=1/o):(f=t+u+knt,p=t+u,m=Math.floor(1e3*t+u)+Ant,h=Rnt("sqrtTall",f,m,u,r),h.style.minWidth="0.742em",b=1.056),h.height=p,h.style.height=Qi(f),{span:h,advanceWidth:b,ruleWidth:(r.fontMetrics().sqrtRuleThickness+u)*o}},MGn=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","⌊","⌋","\\lceil","\\rceil","⌈","⌉","\\surd"],tTi=["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","⟮","⟯","\\lmoustache","\\rmoustache","⎰","⎱"],PGn=["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"],Ese=[0,1.2,1.8,2.4,3],nTi=function(t,r,a,s,o){if(t==="<"||t==="\\lt"||t==="⟨"?t="\\langle":(t===">"||t==="\\gt"||t==="⟩")&&(t="\\rangle"),MGn.includes(t)||PGn.includes(t))return LGn(t,r,!1,a,s,o);if(tTi.includes(t))return DGn(t,Ese[r],!1,a,s,o);throw new Ri("Illegal delimiter: '"+t+"'")},rTi=[{type:"small",style:Js.SCRIPTSCRIPT},{type:"small",style:Js.SCRIPT},{type:"small",style:Js.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],iTi=[{type:"small",style:Js.SCRIPTSCRIPT},{type:"small",style:Js.SCRIPT},{type:"small",style:Js.TEXT},{type:"stack"}],BGn=[{type:"small",style:Js.SCRIPTSCRIPT},{type:"small",style:Js.SCRIPT},{type:"small",style:Js.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],aTi=function(t){if(t.type==="small")return"Main-Regular";if(t.type==="large")return"Size"+t.size+"-Regular";if(t.type==="stack")return"Size4-Regular";throw new Error("Add support for delim type '"+t.type+"' here.")},FGn=function(t,r,a,s){for(var o=Math.min(2,3-s.style.size),u=o;ur)return a[u]}return a[a.length-1]},$Gn=function(t,r,a,s,o,u){t==="<"||t==="\\lt"||t==="⟨"?t="\\langle":(t===">"||t==="\\gt"||t==="⟩")&&(t="\\rangle");var h;PGn.includes(t)?h=rTi:MGn.includes(t)?h=BGn:h=iTi;var f=FGn(t,r,h,s);return f.type==="small"?X3i(t,f.style,a,s,o,u):f.type==="large"?LGn(t,f.size,a,s,o,u):DGn(t,r,a,s,o,u)},sTi=function(t,r,a,s,o,u){var h=s.fontMetrics().axisHeight*s.sizeMultiplier,f=901,p=5/s.fontMetrics().ptPerEm,m=Math.max(r-h,a+h),b=Math.max(m/500*f,2*m-p);return $Gn(t,b,!0,s,o,u)},q7={sqrtImage:eTi,sizedDelim:nTi,sizeToMaxHeight:Ese,customSizedDelim:$Gn,leftRightDelim:sTi},j_n={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},oTi=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","⌊","⌋","\\lceil","\\rceil","⌈","⌉","<",">","\\langle","⟨","\\rangle","⟩","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","⟮","⟯","\\lmoustache","\\rmoustache","⎰","⎱","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."];function YAe(e,t){var r=HAe(e);if(r&&oTi.includes(r.text))return r;throw r?new Ri("Invalid delimiter '"+r.text+"' after '"+t.funcName+"'",e):new Ri("Invalid delimiter type '"+e.type+"'",e)}ga({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],props:{numArgs:1,argTypes:["primitive"]},handler:(e,t)=>{var r=YAe(t[0],e);return{type:"delimsizing",mode:e.parser.mode,size:j_n[e.funcName].size,mclass:j_n[e.funcName].mclass,delim:r.text}},htmlBuilder:(e,t)=>e.delim==="."?er.makeSpan([e.mclass]):q7.sizedDelim(e.delim,e.size,t,e.mode,[e.mclass]),mathmlBuilder:e=>{var t=[];e.delim!=="."&&t.push(SS(e.delim,e.mode));var r=new Si.MathNode("mo",t);e.mclass==="mopen"||e.mclass==="mclose"?r.setAttribute("fence","true"):r.setAttribute("fence","false"),r.setAttribute("stretchy","true");var a=Qi(q7.sizeToMaxHeight[e.size]);return r.setAttribute("minsize",a),r.setAttribute("maxsize",a),r}});function W_n(e){if(!e.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}ga({type:"leftright-right",names:["\\right"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{var r=e.parser.gullet.macros.get("\\current@color");if(r&&typeof r!="string")throw new Ri("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:e.parser.mode,delim:YAe(t[0],e).text,color:r}}});ga({type:"leftright",names:["\\left"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{var r=YAe(t[0],e),a=e.parser;++a.leftrightDepth;var s=a.parseExpression(!1);--a.leftrightDepth,a.expect("\\right",!1);var o=xl(a.parseFunction(),"leftright-right");return{type:"leftright",mode:a.mode,body:s,left:r.text,right:o.delim,rightColor:o.color}},htmlBuilder:(e,t)=>{W_n(e);for(var r=Lp(e.body,t,!0,["mopen","mclose"]),a=0,s=0,o=!1,u=0;u{W_n(e);var r=l_(e.body,t);if(e.left!=="."){var a=new Si.MathNode("mo",[SS(e.left,e.mode)]);a.setAttribute("fence","true"),r.unshift(a)}if(e.right!=="."){var s=new Si.MathNode("mo",[SS(e.right,e.mode)]);s.setAttribute("fence","true"),e.rightColor&&s.setAttribute("mathcolor",e.rightColor),r.push(s)}return $pt(r)}});ga({type:"middle",names:["\\middle"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{var r=YAe(t[0],e);if(!e.parser.leftrightDepth)throw new Ri("\\middle without preceding \\left",r);return{type:"middle",mode:e.parser.mode,delim:r.text}},htmlBuilder:(e,t)=>{var r;if(e.delim===".")r=Boe(t,[]);else{r=q7.sizedDelim(e.delim,1,t,e.mode,[]);var a={delim:e.delim,options:t};r.isMiddle=a}return r},mathmlBuilder:(e,t)=>{var r=e.delim==="\\vert"||e.delim==="|"?SS("|","text"):SS(e.delim,e.mode),a=new Si.MathNode("mo",[r]);return a.setAttribute("fence","true"),a.setAttribute("lspace","0.05em"),a.setAttribute("rspace","0.05em"),a}});var Hpt=(e,t)=>{var r=er.wrapFragment(jc(e.body,t),t),a=e.label.slice(1),s=t.sizeMultiplier,o,u=0,h=hu.isCharacterBox(e.body);if(a==="sout")o=er.makeSpan(["stretchy","sout"]),o.height=t.fontMetrics().defaultRuleThickness/s,u=-.5*t.fontMetrics().xHeight;else if(a==="phase"){var f=Rf({number:.6,unit:"pt"},t),p=Rf({number:.35,unit:"ex"},t),m=t.havingBaseSizing();s=s/m.sizeMultiplier;var b=r.height+r.depth+f+p;r.style.paddingLeft=Qi(b/2+f);var _=Math.floor(1e3*b*s),w=e3i(_),S=new aR([new n9("phase",w)],{width:"400em",height:Qi(_/1e3),viewBox:"0 0 400000 "+_,preserveAspectRatio:"xMinYMin slice"});o=er.makeSvgSpan(["hide-tail"],[S],t),o.style.height=Qi(b),u=r.depth+f+p}else{/cancel/.test(a)?h||r.classes.push("cancel-pad"):a==="angl"?r.classes.push("anglpad"):r.classes.push("boxpad");var C=0,A=0,k=0;/box/.test(a)?(k=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness),C=t.fontMetrics().fboxsep+(a==="colorbox"?0:k),A=C):a==="angl"?(k=Math.max(t.fontMetrics().defaultRuleThickness,t.minRuleThickness),C=4*k,A=Math.max(0,.25-r.depth)):(C=h?.2:0,A=C),o=oR.encloseSpan(r,a,C,A,t),/fbox|boxed|fcolorbox/.test(a)?(o.style.borderStyle="solid",o.style.borderWidth=Qi(k)):a==="angl"&&k!==.049&&(o.style.borderTopWidth=Qi(k),o.style.borderRightWidth=Qi(k)),u=r.depth+A,e.backgroundColor&&(o.style.backgroundColor=e.backgroundColor,e.borderColor&&(o.style.borderColor=e.borderColor))}var I;if(e.backgroundColor)I=er.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:u},{type:"elem",elem:r,shift:0}]},t);else{var N=/cancel|phase/.test(a)?["svg-align"]:[];I=er.makeVList({positionType:"individualShift",children:[{type:"elem",elem:r,shift:0},{type:"elem",elem:o,shift:u,wrapperClasses:N}]},t)}return/cancel/.test(a)&&(I.height=r.height,I.depth=r.depth),/cancel/.test(a)&&!h?er.makeSpan(["mord","cancel-lap"],[I],t):er.makeSpan(["mord"],[I],t)},Vpt=(e,t)=>{var r=0,a=new Si.MathNode(e.label.indexOf("colorbox")>-1?"mpadded":"menclose",[Bh(e.body,t)]);switch(e.label){case"\\cancel":a.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":a.setAttribute("notation","downdiagonalstrike");break;case"\\phase":a.setAttribute("notation","phasorangle");break;case"\\sout":a.setAttribute("notation","horizontalstrike");break;case"\\fbox":a.setAttribute("notation","box");break;case"\\angl":a.setAttribute("notation","actuarial");break;case"\\fcolorbox":case"\\colorbox":if(r=t.fontMetrics().fboxsep*t.fontMetrics().ptPerEm,a.setAttribute("width","+"+2*r+"pt"),a.setAttribute("height","+"+2*r+"pt"),a.setAttribute("lspace",r+"pt"),a.setAttribute("voffset",r+"pt"),e.label==="\\fcolorbox"){var s=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness);a.setAttribute("style","border: "+s+"em solid "+String(e.borderColor))}break;case"\\xcancel":a.setAttribute("notation","updiagonalstrike downdiagonalstrike");break}return e.backgroundColor&&a.setAttribute("mathbackground",e.backgroundColor),a};ga({type:"enclose",names:["\\colorbox"],props:{numArgs:2,allowedInText:!0,argTypes:["color","text"]},handler(e,t,r){var{parser:a,funcName:s}=e,o=xl(t[0],"color-token").color,u=t[1];return{type:"enclose",mode:a.mode,label:s,backgroundColor:o,body:u}},htmlBuilder:Hpt,mathmlBuilder:Vpt});ga({type:"enclose",names:["\\fcolorbox"],props:{numArgs:3,allowedInText:!0,argTypes:["color","color","text"]},handler(e,t,r){var{parser:a,funcName:s}=e,o=xl(t[0],"color-token").color,u=xl(t[1],"color-token").color,h=t[2];return{type:"enclose",mode:a.mode,label:s,backgroundColor:u,borderColor:o,body:h}},htmlBuilder:Hpt,mathmlBuilder:Vpt});ga({type:"enclose",names:["\\fbox"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!0},handler(e,t){var{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\fbox",body:t[0]}}});ga({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\sout","\\phase"],props:{numArgs:1},handler(e,t){var{parser:r,funcName:a}=e,s=t[0];return{type:"enclose",mode:r.mode,label:a,body:s}},htmlBuilder:Hpt,mathmlBuilder:Vpt});ga({type:"enclose",names:["\\angl"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!1},handler(e,t){var{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\angl",body:t[0]}}});var UGn={};function LA(e){for(var{type:t,names:r,props:a,handler:s,htmlBuilder:o,mathmlBuilder:u}=e,h={type:t,numArgs:a.numArgs||0,allowedInText:!1,numOptionalArgs:0,handler:s},f=0;f{var t=e.parser.settings;if(!t.displayMode)throw new Ri("{"+e.envName+"} can be used only in display mode.")};function Ypt(e){if(e.indexOf("ed")===-1)return e.indexOf("*")===-1}function q9(e,t,r){var{hskipBeforeAndAfter:a,addJot:s,cols:o,arraystretch:u,colSeparationType:h,autoTag:f,singleRow:p,emptySingleRow:m,maxNumCols:b,leqno:_}=t;if(e.gullet.beginGroup(),p||e.gullet.macros.set("\\cr","\\\\\\relax"),!u){var w=e.gullet.expandMacroAsText("\\arraystretch");if(w==null)u=1;else if(u=parseFloat(w),!u||u<0)throw new Ri("Invalid \\arraystretch: "+w)}e.gullet.beginGroup();var S=[],C=[S],A=[],k=[],I=f!=null?[]:void 0;function N(){f&&e.gullet.macros.set("\\@eqnsw","1",!0)}function L(){I&&(e.gullet.macros.get("\\df@tag")?(I.push(e.subparse([new Pw("\\df@tag")])),e.gullet.macros.set("\\df@tag",void 0,!0)):I.push(!!f&&e.gullet.macros.get("\\@eqnsw")==="1"))}for(N(),k.push(K_n(e));;){var P=e.parseExpression(!1,p?"\\end":"\\\\");e.gullet.endGroup(),e.gullet.beginGroup(),P={type:"ordgroup",mode:e.mode,body:P},r&&(P={type:"styling",mode:e.mode,style:r,body:[P]}),S.push(P);var M=e.fetch().text;if(M==="&"){if(b&&S.length===b){if(p||h)throw new Ri("Too many tab characters: &",e.nextToken);e.settings.reportNonstrict("textEnv","Too few columns specified in the {array} column argument.")}e.consume()}else if(M==="\\end"){L(),S.length===1&&P.type==="styling"&&P.body[0].body.length===0&&(C.length>1||!m)&&C.pop(),k.length0&&(N+=.25),p.push({pos:N,isDashed:Oe[Dt]})}for(L(u[0]),a=0;a0&&(B+=I,FOe))for(a=0;a=h)){var ve=void 0;(s>0||t.hskipBeforeAndAfter)&&(ve=hu.deflt(se.pregap,_),ve!==0&&(W=er.makeSpan(["arraycolsep"],[]),W.style.width=Qi(ve),Y.push(W)));var De=[];for(a=0;a0){for(var we=er.makeLineSpan("hline",r,m),Ce=er.makeLineSpan("hdashline",r,m),Ie=[{type:"elem",elem:f,shift:0}];p.length>0;){var Le=p.pop(),Fe=Le.pos-Z;Le.isDashed?Ie.push({type:"elem",elem:Ce,shift:Fe}):Ie.push({type:"elem",elem:we,shift:Fe})}f=er.makeVList({positionType:"individualShift",children:Ie},r)}if(V.length===0)return er.makeSpan(["mord"],[f],r);var Ve=er.makeVList({positionType:"individualShift",children:V},r);return Ve=er.makeSpan(["tag"],[Ve],r),er.makeFragment([f,Ve])},lTi={c:"center ",l:"left ",r:"right "},MA=function(t,r){for(var a=[],s=new Si.MathNode("mtd",[],["mtr-glue"]),o=new Si.MathNode("mtd",[],["mml-eqn-num"]),u=0;u0){var S=t.cols,C="",A=!1,k=0,I=S.length;S[0].type==="separator"&&(_+="top ",k=1),S[S.length-1].type==="separator"&&(_+="bottom ",I-=1);for(var N=k;N0?"left ":"",_+=U[U.length-1].length>0?"right ":"";for(var $=1;$-1?"alignat":"align",o=t.envName==="split",u=q9(t.parser,{cols:a,addJot:!0,autoTag:o?void 0:Ypt(t.envName),emptySingleRow:!0,colSeparationType:s,maxNumCols:o?2:void 0,leqno:t.parser.settings.leqno},"display"),h,f=0,p={type:"ordgroup",mode:t.mode,body:[]};if(r[0]&&r[0].type==="ordgroup"){for(var m="",b=0;b0&&w&&(A=1),a[S]={type:"align",align:C,pregap:A,postgap:0}}return u.colSeparationType=w?"align":"alignat",u};LA({type:"array",names:["array","darray"],props:{numArgs:1},handler(e,t){var r=HAe(t[0]),a=r?[t[0]]:xl(t[0],"ordgroup").body,s=a.map(function(u){var h=zpt(u),f=h.text;if("lcr".indexOf(f)!==-1)return{type:"align",align:f};if(f==="|")return{type:"separator",separator:"|"};if(f===":")return{type:"separator",separator:":"};throw new Ri("Unknown column alignment: "+f,u)}),o={cols:s,hskipBeforeAndAfter:!0,maxNumCols:s.length};return q9(e.parser,o,jpt(e.envName))},htmlBuilder:DA,mathmlBuilder:MA});LA({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix","matrix*","pmatrix*","bmatrix*","Bmatrix*","vmatrix*","Vmatrix*"],props:{numArgs:0},handler(e){var t={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[e.envName.replace("*","")],r="c",a={hskipBeforeAndAfter:!1,cols:[{type:"align",align:r}]};if(e.envName.charAt(e.envName.length-1)==="*"){var s=e.parser;if(s.consumeSpaces(),s.fetch().text==="["){if(s.consume(),s.consumeSpaces(),r=s.fetch().text,"lcr".indexOf(r)===-1)throw new Ri("Expected l or c or r",s.nextToken);s.consume(),s.consumeSpaces(),s.expect("]"),s.consume(),a.cols=[{type:"align",align:r}]}}var o=q9(e.parser,a,jpt(e.envName)),u=Math.max(0,...o.body.map(h=>h.length));return o.cols=new Array(u).fill({type:"align",align:r}),t?{type:"leftright",mode:e.mode,body:[o],left:t[0],right:t[1],rightColor:void 0}:o},htmlBuilder:DA,mathmlBuilder:MA});LA({type:"array",names:["smallmatrix"],props:{numArgs:0},handler(e){var t={arraystretch:.5},r=q9(e.parser,t,"script");return r.colSeparationType="small",r},htmlBuilder:DA,mathmlBuilder:MA});LA({type:"array",names:["subarray"],props:{numArgs:1},handler(e,t){var r=HAe(t[0]),a=r?[t[0]]:xl(t[0],"ordgroup").body,s=a.map(function(u){var h=zpt(u),f=h.text;if("lc".indexOf(f)!==-1)return{type:"align",align:f};throw new Ri("Unknown column alignment: "+f,u)});if(s.length>1)throw new Ri("{subarray} can contain only one column");var o={cols:s,hskipBeforeAndAfter:!1,arraystretch:.5};if(o=q9(e.parser,o,"script"),o.body.length>0&&o.body[0].length>1)throw new Ri("{subarray} can contain only one column");return o},htmlBuilder:DA,mathmlBuilder:MA});LA({type:"array",names:["cases","dcases","rcases","drcases"],props:{numArgs:0},handler(e){var t={arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},r=q9(e.parser,t,jpt(e.envName));return{type:"leftright",mode:e.mode,body:[r],left:e.envName.indexOf("r")>-1?".":"\\{",right:e.envName.indexOf("r")>-1?"\\}":".",rightColor:void 0}},htmlBuilder:DA,mathmlBuilder:MA});LA({type:"array",names:["align","align*","aligned","split"],props:{numArgs:0},handler:GGn,htmlBuilder:DA,mathmlBuilder:MA});LA({type:"array",names:["gathered","gather","gather*"],props:{numArgs:0},handler(e){["gather","gather*"].includes(e.envName)&&jAe(e);var t={cols:[{type:"align",align:"c"}],addJot:!0,colSeparationType:"gather",autoTag:Ypt(e.envName),emptySingleRow:!0,leqno:e.parser.settings.leqno};return q9(e.parser,t,"display")},htmlBuilder:DA,mathmlBuilder:MA});LA({type:"array",names:["alignat","alignat*","alignedat"],props:{numArgs:1},handler:GGn,htmlBuilder:DA,mathmlBuilder:MA});LA({type:"array",names:["equation","equation*"],props:{numArgs:0},handler(e){jAe(e);var t={autoTag:Ypt(e.envName),emptySingleRow:!0,singleRow:!0,maxNumCols:1,leqno:e.parser.settings.leqno};return q9(e.parser,t,"display")},htmlBuilder:DA,mathmlBuilder:MA});LA({type:"array",names:["CD"],props:{numArgs:0},handler(e){return jAe(e),W3i(e.parser)},htmlBuilder:DA,mathmlBuilder:MA});pt("\\nonumber","\\gdef\\@eqnsw{0}");pt("\\notag","\\nonumber");ga({type:"text",names:["\\hline","\\hdashline"],props:{numArgs:0,allowedInText:!0,allowedInMath:!0},handler(e,t){throw new Ri(e.funcName+" valid only within array environment")}});var X_n=UGn;ga({type:"environment",names:["\\begin","\\end"],props:{numArgs:1,argTypes:["text"]},handler(e,t){var{parser:r,funcName:a}=e,s=t[0];if(s.type!=="ordgroup")throw new Ri("Invalid environment name",s);for(var o="",u=0;u{var r=e.font,a=t.withFont(r);return jc(e.body,a)},HGn=(e,t)=>{var r=e.font,a=t.withFont(r);return Bh(e.body,a)},Q_n={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak","\\bm":"\\boldsymbol"};ga({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathsfit","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],props:{numArgs:1,allowedInArgument:!0},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=B3e(t[0]),o=a;return o in Q_n&&(o=Q_n[o]),{type:"font",mode:r.mode,font:o.slice(1),body:s}},htmlBuilder:qGn,mathmlBuilder:HGn});ga({type:"mclass",names:["\\boldsymbol","\\bm"],props:{numArgs:1},handler:(e,t)=>{var{parser:r}=e,a=t[0],s=hu.isCharacterBox(a);return{type:"mclass",mode:r.mode,mclass:VAe(a),body:[{type:"font",mode:r.mode,font:"boldsymbol",body:a}],isCharacterBox:s}}});ga({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it","\\cal"],props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{var{parser:r,funcName:a,breakOnTokenText:s}=e,{mode:o}=r,u=r.parseExpression(!0,s),h="math"+a.slice(1);return{type:"font",mode:o,font:h,body:{type:"ordgroup",mode:r.mode,body:u}}},htmlBuilder:qGn,mathmlBuilder:HGn});var VGn=(e,t)=>{var r=t;return e==="display"?r=r.id>=Js.SCRIPT.id?r.text():Js.DISPLAY:e==="text"&&r.size===Js.DISPLAY.size?r=Js.TEXT:e==="script"?r=Js.SCRIPT:e==="scriptscript"&&(r=Js.SCRIPTSCRIPT),r},Wpt=(e,t)=>{var r=VGn(e.size,t.style),a=r.fracNum(),s=r.fracDen(),o;o=t.havingStyle(a);var u=jc(e.numer,o,t);if(e.continued){var h=8.5/t.fontMetrics().ptPerEm,f=3.5/t.fontMetrics().ptPerEm;u.height=u.height0?S=3*_:S=7*_,C=t.fontMetrics().denom1):(b>0?(w=t.fontMetrics().num2,S=_):(w=t.fontMetrics().num3,S=3*_),C=t.fontMetrics().denom2);var A;if(m){var I=t.fontMetrics().axisHeight;w-u.depth-(I+.5*b){var r=new Si.MathNode("mfrac",[Bh(e.numer,t),Bh(e.denom,t)]);if(!e.hasBarLine)r.setAttribute("linethickness","0px");else if(e.barSize){var a=Rf(e.barSize,t);r.setAttribute("linethickness",Qi(a))}var s=VGn(e.size,t.style);if(s.size!==t.style.size){r=new Si.MathNode("mstyle",[r]);var o=s.size===Js.DISPLAY.size?"true":"false";r.setAttribute("displaystyle",o),r.setAttribute("scriptlevel","0")}if(e.leftDelim!=null||e.rightDelim!=null){var u=[];if(e.leftDelim!=null){var h=new Si.MathNode("mo",[new Si.TextNode(e.leftDelim.replace("\\",""))]);h.setAttribute("fence","true"),u.push(h)}if(u.push(r),e.rightDelim!=null){var f=new Si.MathNode("mo",[new Si.TextNode(e.rightDelim.replace("\\",""))]);f.setAttribute("fence","true"),u.push(f)}return $pt(u)}return r};ga({type:"genfrac",names:["\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],props:{numArgs:2,allowedInArgument:!0},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0],o=t[1],u,h=null,f=null,p="auto";switch(a){case"\\dfrac":case"\\frac":case"\\tfrac":u=!0;break;case"\\\\atopfrac":u=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":u=!1,h="(",f=")";break;case"\\\\bracefrac":u=!1,h="\\{",f="\\}";break;case"\\\\brackfrac":u=!1,h="[",f="]";break;default:throw new Error("Unrecognized genfrac command")}switch(a){case"\\dfrac":case"\\dbinom":p="display";break;case"\\tfrac":case"\\tbinom":p="text";break}return{type:"genfrac",mode:r.mode,continued:!1,numer:s,denom:o,hasBarLine:u,leftDelim:h,rightDelim:f,size:p,barSize:null}},htmlBuilder:Wpt,mathmlBuilder:Kpt});ga({type:"genfrac",names:["\\cfrac"],props:{numArgs:2},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0],o=t[1];return{type:"genfrac",mode:r.mode,continued:!0,numer:s,denom:o,hasBarLine:!0,leftDelim:null,rightDelim:null,size:"display",barSize:null}}});ga({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],props:{numArgs:0,infix:!0},handler(e){var{parser:t,funcName:r,token:a}=e,s;switch(r){case"\\over":s="\\frac";break;case"\\choose":s="\\binom";break;case"\\atop":s="\\\\atopfrac";break;case"\\brace":s="\\\\bracefrac";break;case"\\brack":s="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:t.mode,replaceWith:s,token:a}}});var Z_n=["display","text","script","scriptscript"],J_n=function(t){var r=null;return t.length>0&&(r=t,r=r==="."?null:r),r};ga({type:"genfrac",names:["\\genfrac"],props:{numArgs:6,allowedInArgument:!0,argTypes:["math","math","size","text","math","math"]},handler(e,t){var{parser:r}=e,a=t[4],s=t[5],o=B3e(t[0]),u=o.type==="atom"&&o.family==="open"?J_n(o.text):null,h=B3e(t[1]),f=h.type==="atom"&&h.family==="close"?J_n(h.text):null,p=xl(t[2],"size"),m,b=null;p.isBlank?m=!0:(b=p.value,m=b.number>0);var _="auto",w=t[3];if(w.type==="ordgroup"){if(w.body.length>0){var S=xl(w.body[0],"textord");_=Z_n[Number(S.text)]}}else w=xl(w,"textord"),_=Z_n[Number(w.text)];return{type:"genfrac",mode:r.mode,numer:a,denom:s,continued:!1,hasBarLine:m,barSize:b,leftDelim:u,rightDelim:f,size:_}},htmlBuilder:Wpt,mathmlBuilder:Kpt});ga({type:"infix",names:["\\above"],props:{numArgs:1,argTypes:["size"],infix:!0},handler(e,t){var{parser:r,funcName:a,token:s}=e;return{type:"infix",mode:r.mode,replaceWith:"\\\\abovefrac",size:xl(t[0],"size").value,token:s}}});ga({type:"genfrac",names:["\\\\abovefrac"],props:{numArgs:3,argTypes:["math","size","math"]},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0],o=$4i(xl(t[1],"infix").size),u=t[2],h=o.number>0;return{type:"genfrac",mode:r.mode,numer:s,denom:u,continued:!1,hasBarLine:h,barSize:o,leftDelim:null,rightDelim:null,size:"auto"}},htmlBuilder:Wpt,mathmlBuilder:Kpt});var YGn=(e,t)=>{var r=t.style,a,s;e.type==="supsub"?(a=e.sup?jc(e.sup,t.havingStyle(r.sup()),t):jc(e.sub,t.havingStyle(r.sub()),t),s=xl(e.base,"horizBrace")):s=xl(e,"horizBrace");var o=jc(s.base,t.havingBaseStyle(Js.DISPLAY)),u=oR.svgSpan(s,t),h;if(s.isOver?(h=er.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:o},{type:"kern",size:.1},{type:"elem",elem:u}]},t),h.children[0].children[0].children[1].classes.push("svg-align")):(h=er.makeVList({positionType:"bottom",positionData:o.depth+.1+u.height,children:[{type:"elem",elem:u},{type:"kern",size:.1},{type:"elem",elem:o}]},t),h.children[0].children[0].children[0].classes.push("svg-align")),a){var f=er.makeSpan(["mord",s.isOver?"mover":"munder"],[h],t);s.isOver?h=er.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:f},{type:"kern",size:.2},{type:"elem",elem:a}]},t):h=er.makeVList({positionType:"bottom",positionData:f.depth+.2+a.height+a.depth,children:[{type:"elem",elem:a},{type:"kern",size:.2},{type:"elem",elem:f}]},t)}return er.makeSpan(["mord",s.isOver?"mover":"munder"],[h],t)},cTi=(e,t)=>{var r=oR.mathMLnode(e.label);return new Si.MathNode(e.isOver?"mover":"munder",[Bh(e.base,t),r])};ga({type:"horizBrace",names:["\\overbrace","\\underbrace"],props:{numArgs:1},handler(e,t){var{parser:r,funcName:a}=e;return{type:"horizBrace",mode:r.mode,label:a,isOver:/^\\over/.test(a),base:t[0]}},htmlBuilder:YGn,mathmlBuilder:cTi});ga({type:"href",names:["\\href"],props:{numArgs:2,argTypes:["url","original"],allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=t[1],s=xl(t[0],"url").url;return r.settings.isTrusted({command:"\\href",url:s})?{type:"href",mode:r.mode,href:s,body:Q0(a)}:r.formatUnsupportedCmd("\\href")},htmlBuilder:(e,t)=>{var r=Lp(e.body,t,!1);return er.makeAnchor(e.href,[],r,t)},mathmlBuilder:(e,t)=>{var r=r9(e.body,t);return r instanceof Nw||(r=new Nw("mrow",[r])),r.setAttribute("href",e.href),r}});ga({type:"href",names:["\\url"],props:{numArgs:1,argTypes:["url"],allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=xl(t[0],"url").url;if(!r.settings.isTrusted({command:"\\url",url:a}))return r.formatUnsupportedCmd("\\url");for(var s=[],o=0;o{var{parser:r,funcName:a,token:s}=e,o=xl(t[0],"raw").string,u=t[1];r.settings.strict&&r.settings.reportNonstrict("htmlExtension","HTML extension is disabled on strict mode");var h,f={};switch(a){case"\\htmlClass":f.class=o,h={command:"\\htmlClass",class:o};break;case"\\htmlId":f.id=o,h={command:"\\htmlId",id:o};break;case"\\htmlStyle":f.style=o,h={command:"\\htmlStyle",style:o};break;case"\\htmlData":{for(var p=o.split(","),m=0;m{var r=Lp(e.body,t,!1),a=["enclosing"];e.attributes.class&&a.push(...e.attributes.class.trim().split(/\s+/));var s=er.makeSpan(a,r,t);for(var o in e.attributes)o!=="class"&&e.attributes.hasOwnProperty(o)&&s.setAttribute(o,e.attributes[o]);return s},mathmlBuilder:(e,t)=>r9(e.body,t)});ga({type:"htmlmathml",names:["\\html@mathml"],props:{numArgs:2,allowedInText:!0},handler:(e,t)=>{var{parser:r}=e;return{type:"htmlmathml",mode:r.mode,html:Q0(t[0]),mathml:Q0(t[1])}},htmlBuilder:(e,t)=>{var r=Lp(e.html,t,!1);return er.makeFragment(r)},mathmlBuilder:(e,t)=>r9(e.mathml,t)});var Int=function(t){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(t))return{number:+t,unit:"bp"};var r=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(t);if(!r)throw new Ri("Invalid size: '"+t+"' in \\includegraphics");var a={number:+(r[1]+r[2]),unit:r[3]};if(!hGn(a))throw new Ri("Invalid unit: '"+a.unit+"' in \\includegraphics.");return a};ga({type:"includegraphics",names:["\\includegraphics"],props:{numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1},handler:(e,t,r)=>{var{parser:a}=e,s={number:0,unit:"em"},o={number:.9,unit:"em"},u={number:0,unit:"em"},h="";if(r[0])for(var f=xl(r[0],"raw").string,p=f.split(","),m=0;m{var r=Rf(e.height,t),a=0;e.totalheight.number>0&&(a=Rf(e.totalheight,t)-r);var s=0;e.width.number>0&&(s=Rf(e.width,t));var o={height:Qi(r+a)};s>0&&(o.width=Qi(s)),a>0&&(o.verticalAlign=Qi(-a));var u=new c3i(e.src,e.alt,o);return u.height=r,u.depth=a,u},mathmlBuilder:(e,t)=>{var r=new Si.MathNode("mglyph",[]);r.setAttribute("alt",e.alt);var a=Rf(e.height,t),s=0;if(e.totalheight.number>0&&(s=Rf(e.totalheight,t)-a,r.setAttribute("valign",Qi(-s))),r.setAttribute("height",Qi(a+s)),e.width.number>0){var o=Rf(e.width,t);r.setAttribute("width",Qi(o))}return r.setAttribute("src",e.src),r}});ga({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],props:{numArgs:1,argTypes:["size"],primitive:!0,allowedInText:!0},handler(e,t){var{parser:r,funcName:a}=e,s=xl(t[0],"size");if(r.settings.strict){var o=a[1]==="m",u=s.value.unit==="mu";o?(u||r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+a+" supports only mu units, "+("not "+s.value.unit+" units")),r.mode!=="math"&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+a+" works only in math mode")):u&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+a+" doesn't support mu units")}return{type:"kern",mode:r.mode,dimension:s.value}},htmlBuilder(e,t){return er.makeGlue(e.dimension,t)},mathmlBuilder(e,t){var r=Rf(e.dimension,t);return new Si.SpaceNode(r)}});ga({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0];return{type:"lap",mode:r.mode,alignment:a.slice(5),body:s}},htmlBuilder:(e,t)=>{var r;e.alignment==="clap"?(r=er.makeSpan([],[jc(e.body,t)]),r=er.makeSpan(["inner"],[r],t)):r=er.makeSpan(["inner"],[jc(e.body,t)]);var a=er.makeSpan(["fix"],[]),s=er.makeSpan([e.alignment],[r,a],t),o=er.makeSpan(["strut"]);return o.style.height=Qi(s.height+s.depth),s.depth&&(o.style.verticalAlign=Qi(-s.depth)),s.children.unshift(o),s=er.makeSpan(["thinbox"],[s],t),er.makeSpan(["mord","vbox"],[s],t)},mathmlBuilder:(e,t)=>{var r=new Si.MathNode("mpadded",[Bh(e.body,t)]);if(e.alignment!=="rlap"){var a=e.alignment==="llap"?"-1":"-0.5";r.setAttribute("lspace",a+"width")}return r.setAttribute("width","0px"),r}});ga({type:"styling",names:["\\(","$"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){var{funcName:r,parser:a}=e,s=a.mode;a.switchMode("math");var o=r==="\\("?"\\)":"$",u=a.parseExpression(!1,o);return a.expect(o),a.switchMode(s),{type:"styling",mode:a.mode,style:"text",body:u}}});ga({type:"text",names:["\\)","\\]"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){throw new Ri("Mismatched "+e.funcName)}});var ewn=(e,t)=>{switch(t.style.size){case Js.DISPLAY.size:return e.display;case Js.TEXT.size:return e.text;case Js.SCRIPT.size:return e.script;case Js.SCRIPTSCRIPT.size:return e.scriptscript;default:return e.text}};ga({type:"mathchoice",names:["\\mathchoice"],props:{numArgs:4,primitive:!0},handler:(e,t)=>{var{parser:r}=e;return{type:"mathchoice",mode:r.mode,display:Q0(t[0]),text:Q0(t[1]),script:Q0(t[2]),scriptscript:Q0(t[3])}},htmlBuilder:(e,t)=>{var r=ewn(e,t),a=Lp(r,t,!1);return er.makeFragment(a)},mathmlBuilder:(e,t)=>{var r=ewn(e,t);return r9(r,t)}});var jGn=(e,t,r,a,s,o,u)=>{e=er.makeSpan([],[e]);var h=r&&hu.isCharacterBox(r),f,p;if(t){var m=jc(t,a.havingStyle(s.sup()),a);p={elem:m,kern:Math.max(a.fontMetrics().bigOpSpacing1,a.fontMetrics().bigOpSpacing3-m.depth)}}if(r){var b=jc(r,a.havingStyle(s.sub()),a);f={elem:b,kern:Math.max(a.fontMetrics().bigOpSpacing2,a.fontMetrics().bigOpSpacing4-b.height)}}var _;if(p&&f){var w=a.fontMetrics().bigOpSpacing5+f.elem.height+f.elem.depth+f.kern+e.depth+u;_=er.makeVList({positionType:"bottom",positionData:w,children:[{type:"kern",size:a.fontMetrics().bigOpSpacing5},{type:"elem",elem:f.elem,marginLeft:Qi(-o)},{type:"kern",size:f.kern},{type:"elem",elem:e},{type:"kern",size:p.kern},{type:"elem",elem:p.elem,marginLeft:Qi(o)},{type:"kern",size:a.fontMetrics().bigOpSpacing5}]},a)}else if(f){var S=e.height-u;_=er.makeVList({positionType:"top",positionData:S,children:[{type:"kern",size:a.fontMetrics().bigOpSpacing5},{type:"elem",elem:f.elem,marginLeft:Qi(-o)},{type:"kern",size:f.kern},{type:"elem",elem:e}]},a)}else if(p){var C=e.depth+u;_=er.makeVList({positionType:"bottom",positionData:C,children:[{type:"elem",elem:e},{type:"kern",size:p.kern},{type:"elem",elem:p.elem,marginLeft:Qi(o)},{type:"kern",size:a.fontMetrics().bigOpSpacing5}]},a)}else return e;var A=[_];if(f&&o!==0&&!h){var k=er.makeSpan(["mspace"],[],a);k.style.marginRight=Qi(o),A.unshift(k)}return er.makeSpan(["mop","op-limits"],A,a)},WGn=["\\smallint"],HW=(e,t)=>{var r,a,s=!1,o;e.type==="supsub"?(r=e.sup,a=e.sub,o=xl(e.base,"op"),s=!0):o=xl(e,"op");var u=t.style,h=!1;u.size===Js.DISPLAY.size&&o.symbol&&!WGn.includes(o.name)&&(h=!0);var f;if(o.symbol){var p=h?"Size2-Regular":"Size1-Regular",m="";if((o.name==="\\oiint"||o.name==="\\oiiint")&&(m=o.name.slice(1),o.name=m==="oiint"?"\\iint":"\\iiint"),f=er.makeSymbol(o.name,p,"math",t,["mop","op-symbol",h?"large-op":"small-op"]),m.length>0){var b=f.italic,_=er.staticSvg(m+"Size"+(h?"2":"1"),t);f=er.makeVList({positionType:"individualShift",children:[{type:"elem",elem:f,shift:0},{type:"elem",elem:_,shift:h?.08:0}]},t),o.name="\\"+m,f.classes.unshift("mop"),f.italic=b}}else if(o.body){var w=Lp(o.body,t,!0);w.length===1&&w[0]instanceof xS?(f=w[0],f.classes[0]="mop"):f=er.makeSpan(["mop"],w,t)}else{for(var S=[],C=1;C{var r;if(e.symbol)r=new Nw("mo",[SS(e.name,e.mode)]),WGn.includes(e.name)&&r.setAttribute("largeop","false");else if(e.body)r=new Nw("mo",l_(e.body,t));else{r=new Nw("mi",[new QC(e.name.slice(1))]);var a=new Nw("mo",[SS("⁡","text")]);e.parentIsSupSub?r=new Nw("mrow",[r,a]):r=EGn([r,a])}return r},uTi={"∏":"\\prod","∐":"\\coprod","∑":"\\sum","⋀":"\\bigwedge","⋁":"\\bigvee","⋂":"\\bigcap","⋃":"\\bigcup","⨀":"\\bigodot","⨁":"\\bigoplus","⨂":"\\bigotimes","⨄":"\\biguplus","⨆":"\\bigsqcup"};ga({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","∏","∐","∑","⋀","⋁","⋂","⋃","⨀","⨁","⨂","⨄","⨆"],props:{numArgs:0},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=a;return s.length===1&&(s=uTi[s]),{type:"op",mode:r.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:s}},htmlBuilder:HW,mathmlBuilder:vce});ga({type:"op",names:["\\mathop"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{var{parser:r}=e,a=t[0];return{type:"op",mode:r.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:Q0(a)}},htmlBuilder:HW,mathmlBuilder:vce});var hTi={"∫":"\\int","∬":"\\iint","∭":"\\iiint","∮":"\\oint","∯":"\\oiint","∰":"\\oiiint"};ga({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],props:{numArgs:0},handler(e){var{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:HW,mathmlBuilder:vce});ga({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],props:{numArgs:0},handler(e){var{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:HW,mathmlBuilder:vce});ga({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","∫","∬","∭","∮","∯","∰"],props:{numArgs:0,allowedInArgument:!0},handler(e){var{parser:t,funcName:r}=e,a=r;return a.length===1&&(a=hTi[a]),{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:a}},htmlBuilder:HW,mathmlBuilder:vce});var KGn=(e,t)=>{var r,a,s=!1,o;e.type==="supsub"?(r=e.sup,a=e.sub,o=xl(e.base,"operatorname"),s=!0):o=xl(e,"operatorname");var u;if(o.body.length>0){for(var h=o.body.map(b=>{var _=b.text;return typeof _=="string"?{type:"textord",mode:b.mode,text:_}:b}),f=Lp(h,t.withFont("mathrm"),!0),p=0;p{for(var r=l_(e.body,t.withFont("mathrm")),a=!0,s=0;sm.toText()).join("");r=[new Si.TextNode(h)]}var f=new Si.MathNode("mi",r);f.setAttribute("mathvariant","normal");var p=new Si.MathNode("mo",[SS("⁡","text")]);return e.parentIsSupSub?new Si.MathNode("mrow",[f,p]):Si.newDocumentFragment([f,p])};ga({type:"operatorname",names:["\\operatorname@","\\operatornamewithlimits"],props:{numArgs:1},handler:(e,t)=>{var{parser:r,funcName:a}=e,s=t[0];return{type:"operatorname",mode:r.mode,body:Q0(s),alwaysHandleSupSub:a==="\\operatornamewithlimits",limits:!1,parentIsSupSub:!1}},htmlBuilder:KGn,mathmlBuilder:dTi});pt("\\operatorname","\\@ifstar\\operatornamewithlimits\\operatorname@");M$({type:"ordgroup",htmlBuilder(e,t){return e.semisimple?er.makeFragment(Lp(e.body,t,!1)):er.makeSpan(["mord"],Lp(e.body,t,!0),t)},mathmlBuilder(e,t){return r9(e.body,t,!0)}});ga({type:"overline",names:["\\overline"],props:{numArgs:1},handler(e,t){var{parser:r}=e,a=t[0];return{type:"overline",mode:r.mode,body:a}},htmlBuilder(e,t){var r=jc(e.body,t.havingCrampedStyle()),a=er.makeLineSpan("overline-line",t),s=t.fontMetrics().defaultRuleThickness,o=er.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r},{type:"kern",size:3*s},{type:"elem",elem:a},{type:"kern",size:s}]},t);return er.makeSpan(["mord","overline"],[o],t)},mathmlBuilder(e,t){var r=new Si.MathNode("mo",[new Si.TextNode("‾")]);r.setAttribute("stretchy","true");var a=new Si.MathNode("mover",[Bh(e.body,t),r]);return a.setAttribute("accent","true"),a}});ga({type:"phantom",names:["\\phantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=t[0];return{type:"phantom",mode:r.mode,body:Q0(a)}},htmlBuilder:(e,t)=>{var r=Lp(e.body,t.withPhantom(),!1);return er.makeFragment(r)},mathmlBuilder:(e,t)=>{var r=l_(e.body,t);return new Si.MathNode("mphantom",r)}});ga({type:"hphantom",names:["\\hphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=t[0];return{type:"hphantom",mode:r.mode,body:a}},htmlBuilder:(e,t)=>{var r=er.makeSpan([],[jc(e.body,t.withPhantom())]);if(r.height=0,r.depth=0,r.children)for(var a=0;a{var r=l_(Q0(e.body),t),a=new Si.MathNode("mphantom",r),s=new Si.MathNode("mpadded",[a]);return s.setAttribute("height","0px"),s.setAttribute("depth","0px"),s}});ga({type:"vphantom",names:["\\vphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{var{parser:r}=e,a=t[0];return{type:"vphantom",mode:r.mode,body:a}},htmlBuilder:(e,t)=>{var r=er.makeSpan(["inner"],[jc(e.body,t.withPhantom())]),a=er.makeSpan(["fix"],[]);return er.makeSpan(["mord","rlap"],[r,a],t)},mathmlBuilder:(e,t)=>{var r=l_(Q0(e.body),t),a=new Si.MathNode("mphantom",r),s=new Si.MathNode("mpadded",[a]);return s.setAttribute("width","0px"),s}});ga({type:"raisebox",names:["\\raisebox"],props:{numArgs:2,argTypes:["size","hbox"],allowedInText:!0},handler(e,t){var{parser:r}=e,a=xl(t[0],"size").value,s=t[1];return{type:"raisebox",mode:r.mode,dy:a,body:s}},htmlBuilder(e,t){var r=jc(e.body,t),a=Rf(e.dy,t);return er.makeVList({positionType:"shift",positionData:-a,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){var r=new Si.MathNode("mpadded",[Bh(e.body,t)]),a=e.dy.number+e.dy.unit;return r.setAttribute("voffset",a),r}});ga({type:"internal",names:["\\relax"],props:{numArgs:0,allowedInText:!0,allowedInArgument:!0},handler(e){var{parser:t}=e;return{type:"internal",mode:t.mode}}});ga({type:"rule",names:["\\rule"],props:{numArgs:2,numOptionalArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["size","size","size"]},handler(e,t,r){var{parser:a}=e,s=r[0],o=xl(t[0],"size"),u=xl(t[1],"size");return{type:"rule",mode:a.mode,shift:s&&xl(s,"size").value,width:o.value,height:u.value}},htmlBuilder(e,t){var r=er.makeSpan(["mord","rule"],[],t),a=Rf(e.width,t),s=Rf(e.height,t),o=e.shift?Rf(e.shift,t):0;return r.style.borderRightWidth=Qi(a),r.style.borderTopWidth=Qi(s),r.style.bottom=Qi(o),r.width=a,r.height=s+o,r.depth=-o,r.maxFontSize=s*1.125*t.sizeMultiplier,r},mathmlBuilder(e,t){var r=Rf(e.width,t),a=Rf(e.height,t),s=e.shift?Rf(e.shift,t):0,o=t.color&&t.getColor()||"black",u=new Si.MathNode("mspace");u.setAttribute("mathbackground",o),u.setAttribute("width",Qi(r)),u.setAttribute("height",Qi(a));var h=new Si.MathNode("mpadded",[u]);return s>=0?h.setAttribute("height",Qi(s)):(h.setAttribute("height",Qi(s)),h.setAttribute("depth",Qi(-s))),h.setAttribute("voffset",Qi(s)),h}});function XGn(e,t,r){for(var a=Lp(e,t,!1),s=t.sizeMultiplier/r.sizeMultiplier,o=0;o{var r=t.havingSize(e.size);return XGn(e.body,r,t)};ga({type:"sizing",names:twn,props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{var{breakOnTokenText:r,funcName:a,parser:s}=e,o=s.parseExpression(!1,r);return{type:"sizing",mode:s.mode,size:twn.indexOf(a)+1,body:o}},htmlBuilder:fTi,mathmlBuilder:(e,t)=>{var r=t.havingSize(e.size),a=l_(e.body,r),s=new Si.MathNode("mstyle",a);return s.setAttribute("mathsize",Qi(r.sizeMultiplier)),s}});ga({type:"smash",names:["\\smash"],props:{numArgs:1,numOptionalArgs:1,allowedInText:!0},handler:(e,t,r)=>{var{parser:a}=e,s=!1,o=!1,u=r[0]&&xl(r[0],"ordgroup");if(u)for(var h="",f=0;f{var r=er.makeSpan([],[jc(e.body,t)]);if(!e.smashHeight&&!e.smashDepth)return r;if(e.smashHeight&&(r.height=0,r.children))for(var a=0;a{var r=new Si.MathNode("mpadded",[Bh(e.body,t)]);return e.smashHeight&&r.setAttribute("height","0px"),e.smashDepth&&r.setAttribute("depth","0px"),r}});ga({type:"sqrt",names:["\\sqrt"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){var{parser:a}=e,s=r[0],o=t[0];return{type:"sqrt",mode:a.mode,body:o,index:s}},htmlBuilder(e,t){var r=jc(e.body,t.havingCrampedStyle());r.height===0&&(r.height=t.fontMetrics().xHeight),r=er.wrapFragment(r,t);var a=t.fontMetrics(),s=a.defaultRuleThickness,o=s;t.style.idr.height+r.depth+u&&(u=(u+b-r.height-r.depth)/2);var _=f.height-r.height-u-p;r.style.paddingLeft=Qi(m);var w=er.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r,wrapperClasses:["svg-align"]},{type:"kern",size:-(r.height+_)},{type:"elem",elem:f},{type:"kern",size:p}]},t);if(e.index){var S=t.havingStyle(Js.SCRIPTSCRIPT),C=jc(e.index,S,t),A=.6*(w.height-w.depth),k=er.makeVList({positionType:"shift",positionData:-A,children:[{type:"elem",elem:C}]},t),I=er.makeSpan(["root"],[k]);return er.makeSpan(["mord","sqrt"],[I,w],t)}else return er.makeSpan(["mord","sqrt"],[w],t)},mathmlBuilder(e,t){var{body:r,index:a}=e;return a?new Si.MathNode("mroot",[Bh(r,t),Bh(a,t)]):new Si.MathNode("msqrt",[Bh(r,t)])}});var nwn={display:Js.DISPLAY,text:Js.TEXT,script:Js.SCRIPT,scriptscript:Js.SCRIPTSCRIPT};ga({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e,t){var{breakOnTokenText:r,funcName:a,parser:s}=e,o=s.parseExpression(!0,r),u=a.slice(1,a.length-5);return{type:"styling",mode:s.mode,style:u,body:o}},htmlBuilder(e,t){var r=nwn[e.style],a=t.havingStyle(r).withFont("");return XGn(e.body,a,t)},mathmlBuilder(e,t){var r=nwn[e.style],a=t.havingStyle(r),s=l_(e.body,a),o=new Si.MathNode("mstyle",s),u={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]},h=u[e.style];return o.setAttribute("scriptlevel",h[0]),o.setAttribute("displaystyle",h[1]),o}});var pTi=function(t,r){var a=t.base;if(a)if(a.type==="op"){var s=a.limits&&(r.style.size===Js.DISPLAY.size||a.alwaysHandleSupSub);return s?HW:null}else if(a.type==="operatorname"){var o=a.alwaysHandleSupSub&&(r.style.size===Js.DISPLAY.size||a.limits);return o?KGn:null}else{if(a.type==="accent")return hu.isCharacterBox(a.base)?Gpt:null;if(a.type==="horizBrace"){var u=!t.sub;return u===a.isOver?YGn:null}else return null}else return null};M$({type:"supsub",htmlBuilder(e,t){var r=pTi(e,t);if(r)return r(e,t);var{base:a,sup:s,sub:o}=e,u=jc(a,t),h,f,p=t.fontMetrics(),m=0,b=0,_=a&&hu.isCharacterBox(a);if(s){var w=t.havingStyle(t.style.sup());h=jc(s,w,t),_||(m=u.height-w.fontMetrics().supDrop*w.sizeMultiplier/t.sizeMultiplier)}if(o){var S=t.havingStyle(t.style.sub());f=jc(o,S,t),_||(b=u.depth+S.fontMetrics().subDrop*S.sizeMultiplier/t.sizeMultiplier)}var C;t.style===Js.DISPLAY?C=p.sup1:t.style.cramped?C=p.sup3:C=p.sup2;var A=t.sizeMultiplier,k=Qi(.5/p.ptPerEm/A),I=null;if(f){var N=e.base&&e.base.type==="op"&&e.base.name&&(e.base.name==="\\oiint"||e.base.name==="\\oiiint");(u instanceof xS||N)&&(I=Qi(-u.italic))}var L;if(h&&f){m=Math.max(m,C,h.depth+.25*p.xHeight),b=Math.max(b,p.sub2);var P=p.defaultRuleThickness,M=4*P;if(m-h.depth-(f.height-b)0&&(m+=F,b-=F)}var U=[{type:"elem",elem:f,shift:b,marginRight:k,marginLeft:I},{type:"elem",elem:h,shift:-m,marginRight:k}];L=er.makeVList({positionType:"individualShift",children:U},t)}else if(f){b=Math.max(b,p.sub1,f.height-.8*p.xHeight);var $=[{type:"elem",elem:f,marginLeft:I,marginRight:k}];L=er.makeVList({positionType:"shift",positionData:b,children:$},t)}else if(h)m=Math.max(m,C,h.depth+.25*p.xHeight),L=er.makeVList({positionType:"shift",positionData:-m,children:[{type:"elem",elem:h,marginRight:k}]},t);else throw new Error("supsub must have either sup or sub.");var G=Wlt(u,"right")||"mord";return er.makeSpan([G],[u,er.makeSpan(["msupsub"],[L])],t)},mathmlBuilder(e,t){var r=!1,a,s;e.base&&e.base.type==="horizBrace"&&(s=!!e.sup,s===e.base.isOver&&(r=!0,a=e.base.isOver)),e.base&&(e.base.type==="op"||e.base.type==="operatorname")&&(e.base.parentIsSupSub=!0);var o=[Bh(e.base,t)];e.sub&&o.push(Bh(e.sub,t)),e.sup&&o.push(Bh(e.sup,t));var u;if(r)u=a?"mover":"munder";else if(e.sub)if(e.sup){var p=e.base;p&&p.type==="op"&&p.limits&&t.style===Js.DISPLAY||p&&p.type==="operatorname"&&p.alwaysHandleSupSub&&(t.style===Js.DISPLAY||p.limits)?u="munderover":u="msubsup"}else{var f=e.base;f&&f.type==="op"&&f.limits&&(t.style===Js.DISPLAY||f.alwaysHandleSupSub)||f&&f.type==="operatorname"&&f.alwaysHandleSupSub&&(f.limits||t.style===Js.DISPLAY)?u="munder":u="msub"}else{var h=e.base;h&&h.type==="op"&&h.limits&&(t.style===Js.DISPLAY||h.alwaysHandleSupSub)||h&&h.type==="operatorname"&&h.alwaysHandleSupSub&&(h.limits||t.style===Js.DISPLAY)?u="mover":u="msup"}return new Si.MathNode(u,o)}});M$({type:"atom",htmlBuilder(e,t){return er.mathsym(e.text,e.mode,t,["m"+e.family])},mathmlBuilder(e,t){var r=new Si.MathNode("mo",[SS(e.text,e.mode)]);if(e.family==="bin"){var a=Upt(e,t);a==="bold-italic"&&r.setAttribute("mathvariant",a)}else e.family==="punct"?r.setAttribute("separator","true"):(e.family==="open"||e.family==="close")&&r.setAttribute("stretchy","false");return r}});var QGn={mi:"italic",mn:"normal",mtext:"normal"};M$({type:"mathord",htmlBuilder(e,t){return er.makeOrd(e,t,"mathord")},mathmlBuilder(e,t){var r=new Si.MathNode("mi",[SS(e.text,e.mode,t)]),a=Upt(e,t)||"italic";return a!==QGn[r.type]&&r.setAttribute("mathvariant",a),r}});M$({type:"textord",htmlBuilder(e,t){return er.makeOrd(e,t,"textord")},mathmlBuilder(e,t){var r=SS(e.text,e.mode,t),a=Upt(e,t)||"normal",s;return e.mode==="text"?s=new Si.MathNode("mtext",[r]):/[0-9]/.test(e.text)?s=new Si.MathNode("mn",[r]):e.text==="\\prime"?s=new Si.MathNode("mo",[r]):s=new Si.MathNode("mi",[r]),a!==QGn[s.type]&&s.setAttribute("mathvariant",a),s}});var Nnt={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},Ont={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};M$({type:"spacing",htmlBuilder(e,t){if(Ont.hasOwnProperty(e.text)){var r=Ont[e.text].className||"";if(e.mode==="text"){var a=er.makeOrd(e,t,"textord");return a.classes.push(r),a}else return er.makeSpan(["mspace",r],[er.mathsym(e.text,e.mode,t)],t)}else{if(Nnt.hasOwnProperty(e.text))return er.makeSpan(["mspace",Nnt[e.text]],[],t);throw new Ri('Unknown type of space "'+e.text+'"')}},mathmlBuilder(e,t){var r;if(Ont.hasOwnProperty(e.text))r=new Si.MathNode("mtext",[new Si.TextNode(" ")]);else{if(Nnt.hasOwnProperty(e.text))return new Si.MathNode("mspace");throw new Ri('Unknown type of space "'+e.text+'"')}return r}});var rwn=()=>{var e=new Si.MathNode("mtd",[]);return e.setAttribute("width","50%"),e};M$({type:"tag",mathmlBuilder(e,t){var r=new Si.MathNode("mtable",[new Si.MathNode("mtr",[rwn(),new Si.MathNode("mtd",[r9(e.body,t)]),rwn(),new Si.MathNode("mtd",[r9(e.tag,t)])])]);return r.setAttribute("width","100%"),r}});var iwn={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},awn={"\\textbf":"textbf","\\textmd":"textmd"},gTi={"\\textit":"textit","\\textup":"textup"},swn=(e,t)=>{var r=e.font;if(r){if(iwn[r])return t.withTextFontFamily(iwn[r]);if(awn[r])return t.withTextFontWeight(awn[r]);if(r==="\\emph")return t.fontShape==="textit"?t.withTextFontShape("textup"):t.withTextFontShape("textit")}else return t;return t.withTextFontShape(gTi[r])};ga({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup","\\emph"],props:{numArgs:1,argTypes:["text"],allowedInArgument:!0,allowedInText:!0},handler(e,t){var{parser:r,funcName:a}=e,s=t[0];return{type:"text",mode:r.mode,body:Q0(s),font:a}},htmlBuilder(e,t){var r=swn(e,t),a=Lp(e.body,r,!0);return er.makeSpan(["mord","text"],a,r)},mathmlBuilder(e,t){var r=swn(e,t);return r9(e.body,r)}});ga({type:"underline",names:["\\underline"],props:{numArgs:1,allowedInText:!0},handler(e,t){var{parser:r}=e;return{type:"underline",mode:r.mode,body:t[0]}},htmlBuilder(e,t){var r=jc(e.body,t),a=er.makeLineSpan("underline-line",t),s=t.fontMetrics().defaultRuleThickness,o=er.makeVList({positionType:"top",positionData:r.height,children:[{type:"kern",size:s},{type:"elem",elem:a},{type:"kern",size:3*s},{type:"elem",elem:r}]},t);return er.makeSpan(["mord","underline"],[o],t)},mathmlBuilder(e,t){var r=new Si.MathNode("mo",[new Si.TextNode("‾")]);r.setAttribute("stretchy","true");var a=new Si.MathNode("munder",[Bh(e.body,t),r]);return a.setAttribute("accentunder","true"),a}});ga({type:"vcenter",names:["\\vcenter"],props:{numArgs:1,argTypes:["original"],allowedInText:!1},handler(e,t){var{parser:r}=e;return{type:"vcenter",mode:r.mode,body:t[0]}},htmlBuilder(e,t){var r=jc(e.body,t),a=t.fontMetrics().axisHeight,s=.5*(r.height-a-(r.depth+a));return er.makeVList({positionType:"shift",positionData:s,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){return new Si.MathNode("mpadded",[Bh(e.body,t)],["vcenter"])}});ga({type:"verb",names:["\\verb"],props:{numArgs:0,allowedInText:!0},handler(e,t,r){throw new Ri("\\verb ended by end of line instead of matching delimiter")},htmlBuilder(e,t){for(var r=own(e),a=[],s=t.havingStyle(t.style.text()),o=0;oe.body.replace(/ /g,e.star?"␣":" "),gO=_Gn,ZGn=`[ \r + ]`,mTi="\\\\[a-zA-Z@]+",bTi="\\\\[^\uD800-\uDFFF]",yTi="("+mTi+")"+ZGn+"*",vTi=`\\\\( +|[ \r ]+ +?)[ \r ]*`,Zlt="[̀-ͯ]",_Ti=new RegExp(Zlt+"+$"),wTi="("+ZGn+"+)|"+(vTi+"|")+"([!-\\[\\]-‧‪-퟿豈-￿]"+(Zlt+"*")+"|[\uD800-\uDBFF][\uDC00-\uDFFF]"+(Zlt+"*")+"|\\\\verb\\*([^]).*?\\4|\\\\verb([^*a-zA-Z]).*?\\5"+("|"+yTi)+("|"+bTi+")");let lwn=class{constructor(t,r){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=t,this.settings=r,this.tokenRegex=new RegExp(wTi,"g"),this.catcodes={"%":14,"~":13}}setCatcode(t,r){this.catcodes[t]=r}lex(){var t=this.input,r=this.tokenRegex.lastIndex;if(r===t.length)return new Pw("EOF",new D2(this,r,r));var a=this.tokenRegex.exec(t);if(a===null||a.index!==r)throw new Ri("Unexpected character: '"+t[r]+"'",new Pw(t[r],new D2(this,r,r+1)));var s=a[6]||a[3]||(a[2]?"\\ ":" ");if(this.catcodes[s]===14){var o=t.indexOf(` +`,this.tokenRegex.lastIndex);return o===-1?(this.tokenRegex.lastIndex=t.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=o+1,this.lex()}return new Pw(s,new D2(this,r,this.tokenRegex.lastIndex))}};class ETi{constructor(t,r){t===void 0&&(t={}),r===void 0&&(r={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=r,this.builtins=t,this.undefStack=[]}beginGroup(){this.undefStack.push({})}endGroup(){if(this.undefStack.length===0)throw new Ri("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");var t=this.undefStack.pop();for(var r in t)t.hasOwnProperty(r)&&(t[r]==null?delete this.current[r]:this.current[r]=t[r])}endGroups(){for(;this.undefStack.length>0;)this.endGroup()}has(t){return this.current.hasOwnProperty(t)||this.builtins.hasOwnProperty(t)}get(t){return this.current.hasOwnProperty(t)?this.current[t]:this.builtins[t]}set(t,r,a){if(a===void 0&&(a=!1),a){for(var s=0;s0&&(this.undefStack[this.undefStack.length-1][t]=r)}else{var o=this.undefStack[this.undefStack.length-1];o&&!o.hasOwnProperty(t)&&(o[t]=this.current[t])}r==null?delete this.current[t]:this.current[t]=r}}var xTi=zGn;pt("\\noexpand",function(e){var t=e.popToken();return e.isExpandable(t.text)&&(t.noexpand=!0,t.treatAsRelax=!0),{tokens:[t],numArgs:0}});pt("\\expandafter",function(e){var t=e.popToken();return e.expandOnce(!0),{tokens:[t],numArgs:0}});pt("\\@firstoftwo",function(e){var t=e.consumeArgs(2);return{tokens:t[0],numArgs:0}});pt("\\@secondoftwo",function(e){var t=e.consumeArgs(2);return{tokens:t[1],numArgs:0}});pt("\\@ifnextchar",function(e){var t=e.consumeArgs(3);e.consumeSpaces();var r=e.future();return t[0].length===1&&t[0][0].text===r.text?{tokens:t[1],numArgs:0}:{tokens:t[2],numArgs:0}});pt("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}");pt("\\TextOrMath",function(e){var t=e.consumeArgs(2);return e.mode==="text"?{tokens:t[0],numArgs:0}:{tokens:t[1],numArgs:0}});var cwn={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};pt("\\char",function(e){var t=e.popToken(),r,a="";if(t.text==="'")r=8,t=e.popToken();else if(t.text==='"')r=16,t=e.popToken();else if(t.text==="`")if(t=e.popToken(),t.text[0]==="\\")a=t.text.charCodeAt(1);else{if(t.text==="EOF")throw new Ri("\\char` missing argument");a=t.text.charCodeAt(0)}else r=10;if(r){if(a=cwn[t.text],a==null||a>=r)throw new Ri("Invalid base-"+r+" digit "+t.text);for(var s;(s=cwn[e.future().text])!=null&&s{var s=e.consumeArg().tokens;if(s.length!==1)throw new Ri("\\newcommand's first argument must be a macro name");var o=s[0].text,u=e.isDefined(o);if(u&&!t)throw new Ri("\\newcommand{"+o+"} attempting to redefine "+(o+"; use \\renewcommand"));if(!u&&!r)throw new Ri("\\renewcommand{"+o+"} when command "+o+" does not yet exist; use \\newcommand");var h=0;if(s=e.consumeArg().tokens,s.length===1&&s[0].text==="["){for(var f="",p=e.expandNextToken();p.text!=="]"&&p.text!=="EOF";)f+=p.text,p=e.expandNextToken();if(!f.match(/^\s*[0-9]+\s*$/))throw new Ri("Invalid number of arguments: "+f);h=parseInt(f),s=e.consumeArg().tokens}return u&&a||e.macros.set(o,{tokens:s,numArgs:h}),""};pt("\\newcommand",e=>Xpt(e,!1,!0,!1));pt("\\renewcommand",e=>Xpt(e,!0,!1,!1));pt("\\providecommand",e=>Xpt(e,!0,!0,!0));pt("\\message",e=>{var t=e.consumeArgs(1)[0];return console.log(t.reverse().map(r=>r.text).join("")),""});pt("\\errmessage",e=>{var t=e.consumeArgs(1)[0];return console.error(t.reverse().map(r=>r.text).join("")),""});pt("\\show",e=>{var t=e.popToken(),r=t.text;return console.log(t,e.macros.get(r),gO[r],td.math[r],td.text[r]),""});pt("\\bgroup","{");pt("\\egroup","}");pt("~","\\nobreakspace");pt("\\lq","`");pt("\\rq","'");pt("\\aa","\\r a");pt("\\AA","\\r A");pt("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`©}");pt("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}");pt("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`®}");pt("ℬ","\\mathscr{B}");pt("ℰ","\\mathscr{E}");pt("ℱ","\\mathscr{F}");pt("ℋ","\\mathscr{H}");pt("ℐ","\\mathscr{I}");pt("ℒ","\\mathscr{L}");pt("ℳ","\\mathscr{M}");pt("ℛ","\\mathscr{R}");pt("ℭ","\\mathfrak{C}");pt("ℌ","\\mathfrak{H}");pt("ℨ","\\mathfrak{Z}");pt("\\Bbbk","\\Bbb{k}");pt("·","\\cdotp");pt("\\llap","\\mathllap{\\textrm{#1}}");pt("\\rlap","\\mathrlap{\\textrm{#1}}");pt("\\clap","\\mathclap{\\textrm{#1}}");pt("\\mathstrut","\\vphantom{(}");pt("\\underbar","\\underline{\\text{#1}}");pt("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}}{\\char"338}');pt("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`≠}}");pt("\\ne","\\neq");pt("≠","\\neq");pt("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`∉}}");pt("∉","\\notin");pt("≘","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`≘}}");pt("≙","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`≘}}");pt("≚","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`≚}}");pt("≛","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`≛}}");pt("≝","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`≝}}");pt("≞","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`≞}}");pt("≟","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`≟}}");pt("⟂","\\perp");pt("‼","\\mathclose{!\\mkern-0.8mu!}");pt("∌","\\notni");pt("⌜","\\ulcorner");pt("⌝","\\urcorner");pt("⌞","\\llcorner");pt("⌟","\\lrcorner");pt("©","\\copyright");pt("®","\\textregistered");pt("️","\\textregistered");pt("\\ulcorner",'\\html@mathml{\\@ulcorner}{\\mathop{\\char"231c}}');pt("\\urcorner",'\\html@mathml{\\@urcorner}{\\mathop{\\char"231d}}');pt("\\llcorner",'\\html@mathml{\\@llcorner}{\\mathop{\\char"231e}}');pt("\\lrcorner",'\\html@mathml{\\@lrcorner}{\\mathop{\\char"231f}}');pt("\\vdots","{\\varvdots\\rule{0pt}{15pt}}");pt("⋮","\\vdots");pt("\\varGamma","\\mathit{\\Gamma}");pt("\\varDelta","\\mathit{\\Delta}");pt("\\varTheta","\\mathit{\\Theta}");pt("\\varLambda","\\mathit{\\Lambda}");pt("\\varXi","\\mathit{\\Xi}");pt("\\varPi","\\mathit{\\Pi}");pt("\\varSigma","\\mathit{\\Sigma}");pt("\\varUpsilon","\\mathit{\\Upsilon}");pt("\\varPhi","\\mathit{\\Phi}");pt("\\varPsi","\\mathit{\\Psi}");pt("\\varOmega","\\mathit{\\Omega}");pt("\\substack","\\begin{subarray}{c}#1\\end{subarray}");pt("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu\\relax");pt("\\boxed","\\fbox{$\\displaystyle{#1}$}");pt("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;");pt("\\implies","\\DOTSB\\;\\Longrightarrow\\;");pt("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");pt("\\dddot","{\\overset{\\raisebox{-0.1ex}{\\normalsize ...}}{#1}}");pt("\\ddddot","{\\overset{\\raisebox{-0.1ex}{\\normalsize ....}}{#1}}");var uwn={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"};pt("\\dots",function(e){var t="\\dotso",r=e.expandAfterFuture().text;return r in uwn?t=uwn[r]:(r.slice(0,4)==="\\not"||r in td.math&&["bin","rel"].includes(td.math[r].group))&&(t="\\dotsb"),t});var Qpt={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};pt("\\dotso",function(e){var t=e.future().text;return t in Qpt?"\\ldots\\,":"\\ldots"});pt("\\dotsc",function(e){var t=e.future().text;return t in Qpt&&t!==","?"\\ldots\\,":"\\ldots"});pt("\\cdots",function(e){var t=e.future().text;return t in Qpt?"\\@cdots\\,":"\\@cdots"});pt("\\dotsb","\\cdots");pt("\\dotsm","\\cdots");pt("\\dotsi","\\!\\cdots");pt("\\dotsx","\\ldots\\,");pt("\\DOTSI","\\relax");pt("\\DOTSB","\\relax");pt("\\DOTSX","\\relax");pt("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax");pt("\\,","\\tmspace+{3mu}{.1667em}");pt("\\thinspace","\\,");pt("\\>","\\mskip{4mu}");pt("\\:","\\tmspace+{4mu}{.2222em}");pt("\\medspace","\\:");pt("\\;","\\tmspace+{5mu}{.2777em}");pt("\\thickspace","\\;");pt("\\!","\\tmspace-{3mu}{.1667em}");pt("\\negthinspace","\\!");pt("\\negmedspace","\\tmspace-{4mu}{.2222em}");pt("\\negthickspace","\\tmspace-{5mu}{.277em}");pt("\\enspace","\\kern.5em ");pt("\\enskip","\\hskip.5em\\relax");pt("\\quad","\\hskip1em\\relax");pt("\\qquad","\\hskip2em\\relax");pt("\\tag","\\@ifstar\\tag@literal\\tag@paren");pt("\\tag@paren","\\tag@literal{({#1})}");pt("\\tag@literal",e=>{if(e.macros.get("\\df@tag"))throw new Ri("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"});pt("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}");pt("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)");pt("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}");pt("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1");pt("\\newline","\\\\\\relax");pt("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");var JGn=Qi(XC["Main-Regular"][84][1]-.7*XC["Main-Regular"][65][1]);pt("\\LaTeX","\\textrm{\\html@mathml{"+("L\\kern-.36em\\raisebox{"+JGn+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{LaTeX}}");pt("\\KaTeX","\\textrm{\\html@mathml{"+("K\\kern-.17em\\raisebox{"+JGn+"}{\\scriptstyle A}")+"\\kern-.15em\\TeX}{KaTeX}}");pt("\\hspace","\\@ifstar\\@hspacer\\@hspace");pt("\\@hspace","\\hskip #1\\relax");pt("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax");pt("\\ordinarycolon",":");pt("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}");pt("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}');pt("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}');pt("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}');pt("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}');pt("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}');pt("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}');pt("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}');pt("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}');pt("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}');pt("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}');pt("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}');pt("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}');pt("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}');pt("∷","\\dblcolon");pt("∹","\\eqcolon");pt("≔","\\coloneqq");pt("≕","\\eqqcolon");pt("⩴","\\Coloneqq");pt("\\ratio","\\vcentcolon");pt("\\coloncolon","\\dblcolon");pt("\\colonequals","\\coloneqq");pt("\\coloncolonequals","\\Coloneqq");pt("\\equalscolon","\\eqqcolon");pt("\\equalscoloncolon","\\Eqqcolon");pt("\\colonminus","\\coloneq");pt("\\coloncolonminus","\\Coloneq");pt("\\minuscolon","\\eqcolon");pt("\\minuscoloncolon","\\Eqcolon");pt("\\coloncolonapprox","\\Colonapprox");pt("\\coloncolonsim","\\Colonsim");pt("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}");pt("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}");pt("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}");pt("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}");pt("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`∌}}");pt("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}");pt("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}");pt("\\injlim","\\DOTSB\\operatorname*{inj\\,lim}");pt("\\projlim","\\DOTSB\\operatorname*{proj\\,lim}");pt("\\varlimsup","\\DOTSB\\operatorname*{\\overline{lim}}");pt("\\varliminf","\\DOTSB\\operatorname*{\\underline{lim}}");pt("\\varinjlim","\\DOTSB\\operatorname*{\\underrightarrow{lim}}");pt("\\varprojlim","\\DOTSB\\operatorname*{\\underleftarrow{lim}}");pt("\\gvertneqq","\\html@mathml{\\@gvertneqq}{≩}");pt("\\lvertneqq","\\html@mathml{\\@lvertneqq}{≨}");pt("\\ngeqq","\\html@mathml{\\@ngeqq}{≱}");pt("\\ngeqslant","\\html@mathml{\\@ngeqslant}{≱}");pt("\\nleqq","\\html@mathml{\\@nleqq}{≰}");pt("\\nleqslant","\\html@mathml{\\@nleqslant}{≰}");pt("\\nshortmid","\\html@mathml{\\@nshortmid}{∤}");pt("\\nshortparallel","\\html@mathml{\\@nshortparallel}{∦}");pt("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{⊈}");pt("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{⊉}");pt("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{⊊}");pt("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{⫋}");pt("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{⊋}");pt("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{⫌}");pt("\\imath","\\html@mathml{\\@imath}{ı}");pt("\\jmath","\\html@mathml{\\@jmath}{ȷ}");pt("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`⟦}}");pt("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`⟧}}");pt("⟦","\\llbracket");pt("⟧","\\rrbracket");pt("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`⦃}}");pt("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`⦄}}");pt("⦃","\\lBrace");pt("⦄","\\rBrace");pt("\\minuso","\\mathbin{\\html@mathml{{\\mathrlap{\\mathchoice{\\kern{0.145em}}{\\kern{0.145em}}{\\kern{0.1015em}}{\\kern{0.0725em}}\\circ}{-}}}{\\char`⦵}}");pt("⦵","\\minuso");pt("\\darr","\\downarrow");pt("\\dArr","\\Downarrow");pt("\\Darr","\\Downarrow");pt("\\lang","\\langle");pt("\\rang","\\rangle");pt("\\uarr","\\uparrow");pt("\\uArr","\\Uparrow");pt("\\Uarr","\\Uparrow");pt("\\N","\\mathbb{N}");pt("\\R","\\mathbb{R}");pt("\\Z","\\mathbb{Z}");pt("\\alef","\\aleph");pt("\\alefsym","\\aleph");pt("\\Alpha","\\mathrm{A}");pt("\\Beta","\\mathrm{B}");pt("\\bull","\\bullet");pt("\\Chi","\\mathrm{X}");pt("\\clubs","\\clubsuit");pt("\\cnums","\\mathbb{C}");pt("\\Complex","\\mathbb{C}");pt("\\Dagger","\\ddagger");pt("\\diamonds","\\diamondsuit");pt("\\empty","\\emptyset");pt("\\Epsilon","\\mathrm{E}");pt("\\Eta","\\mathrm{H}");pt("\\exist","\\exists");pt("\\harr","\\leftrightarrow");pt("\\hArr","\\Leftrightarrow");pt("\\Harr","\\Leftrightarrow");pt("\\hearts","\\heartsuit");pt("\\image","\\Im");pt("\\infin","\\infty");pt("\\Iota","\\mathrm{I}");pt("\\isin","\\in");pt("\\Kappa","\\mathrm{K}");pt("\\larr","\\leftarrow");pt("\\lArr","\\Leftarrow");pt("\\Larr","\\Leftarrow");pt("\\lrarr","\\leftrightarrow");pt("\\lrArr","\\Leftrightarrow");pt("\\Lrarr","\\Leftrightarrow");pt("\\Mu","\\mathrm{M}");pt("\\natnums","\\mathbb{N}");pt("\\Nu","\\mathrm{N}");pt("\\Omicron","\\mathrm{O}");pt("\\plusmn","\\pm");pt("\\rarr","\\rightarrow");pt("\\rArr","\\Rightarrow");pt("\\Rarr","\\Rightarrow");pt("\\real","\\Re");pt("\\reals","\\mathbb{R}");pt("\\Reals","\\mathbb{R}");pt("\\Rho","\\mathrm{P}");pt("\\sdot","\\cdot");pt("\\sect","\\S");pt("\\spades","\\spadesuit");pt("\\sub","\\subset");pt("\\sube","\\subseteq");pt("\\supe","\\supseteq");pt("\\Tau","\\mathrm{T}");pt("\\thetasym","\\vartheta");pt("\\weierp","\\wp");pt("\\Zeta","\\mathrm{Z}");pt("\\argmin","\\DOTSB\\operatorname*{arg\\,min}");pt("\\argmax","\\DOTSB\\operatorname*{arg\\,max}");pt("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits");pt("\\bra","\\mathinner{\\langle{#1}|}");pt("\\ket","\\mathinner{|{#1}\\rangle}");pt("\\braket","\\mathinner{\\langle{#1}\\rangle}");pt("\\Bra","\\left\\langle#1\\right|");pt("\\Ket","\\left|#1\\right\\rangle");var eqn=e=>t=>{var r=t.consumeArg().tokens,a=t.consumeArg().tokens,s=t.consumeArg().tokens,o=t.consumeArg().tokens,u=t.macros.get("|"),h=t.macros.get("\\|");t.macros.beginGroup();var f=b=>_=>{e&&(_.macros.set("|",u),s.length&&_.macros.set("\\|",h));var w=b;if(!b&&s.length){var S=_.future();S.text==="|"&&(_.popToken(),w=!0)}return{tokens:w?s:a,numArgs:0}};t.macros.set("|",f(!1)),s.length&&t.macros.set("\\|",f(!0));var p=t.consumeArg().tokens,m=t.expandTokens([...o,...p,...r]);return t.macros.endGroup(),{tokens:m.reverse(),numArgs:0}};pt("\\bra@ket",eqn(!1));pt("\\bra@set",eqn(!0));pt("\\Braket","\\bra@ket{\\left\\langle}{\\,\\middle\\vert\\,}{\\,\\middle\\vert\\,}{\\right\\rangle}");pt("\\Set","\\bra@set{\\left\\{\\:}{\\;\\middle\\vert\\;}{\\;\\middle\\Vert\\;}{\\:\\right\\}}");pt("\\set","\\bra@set{\\{\\,}{\\mid}{}{\\,\\}}");pt("\\angln","{\\angl n}");pt("\\blue","\\textcolor{##6495ed}{#1}");pt("\\orange","\\textcolor{##ffa500}{#1}");pt("\\pink","\\textcolor{##ff00af}{#1}");pt("\\red","\\textcolor{##df0030}{#1}");pt("\\green","\\textcolor{##28ae7b}{#1}");pt("\\gray","\\textcolor{gray}{#1}");pt("\\purple","\\textcolor{##9d38bd}{#1}");pt("\\blueA","\\textcolor{##ccfaff}{#1}");pt("\\blueB","\\textcolor{##80f6ff}{#1}");pt("\\blueC","\\textcolor{##63d9ea}{#1}");pt("\\blueD","\\textcolor{##11accd}{#1}");pt("\\blueE","\\textcolor{##0c7f99}{#1}");pt("\\tealA","\\textcolor{##94fff5}{#1}");pt("\\tealB","\\textcolor{##26edd5}{#1}");pt("\\tealC","\\textcolor{##01d1c1}{#1}");pt("\\tealD","\\textcolor{##01a995}{#1}");pt("\\tealE","\\textcolor{##208170}{#1}");pt("\\greenA","\\textcolor{##b6ffb0}{#1}");pt("\\greenB","\\textcolor{##8af281}{#1}");pt("\\greenC","\\textcolor{##74cf70}{#1}");pt("\\greenD","\\textcolor{##1fab54}{#1}");pt("\\greenE","\\textcolor{##0d923f}{#1}");pt("\\goldA","\\textcolor{##ffd0a9}{#1}");pt("\\goldB","\\textcolor{##ffbb71}{#1}");pt("\\goldC","\\textcolor{##ff9c39}{#1}");pt("\\goldD","\\textcolor{##e07d10}{#1}");pt("\\goldE","\\textcolor{##a75a05}{#1}");pt("\\redA","\\textcolor{##fca9a9}{#1}");pt("\\redB","\\textcolor{##ff8482}{#1}");pt("\\redC","\\textcolor{##f9685d}{#1}");pt("\\redD","\\textcolor{##e84d39}{#1}");pt("\\redE","\\textcolor{##bc2612}{#1}");pt("\\maroonA","\\textcolor{##ffbde0}{#1}");pt("\\maroonB","\\textcolor{##ff92c6}{#1}");pt("\\maroonC","\\textcolor{##ed5fa6}{#1}");pt("\\maroonD","\\textcolor{##ca337c}{#1}");pt("\\maroonE","\\textcolor{##9e034e}{#1}");pt("\\purpleA","\\textcolor{##ddd7ff}{#1}");pt("\\purpleB","\\textcolor{##c6b9fc}{#1}");pt("\\purpleC","\\textcolor{##aa87ff}{#1}");pt("\\purpleD","\\textcolor{##7854ab}{#1}");pt("\\purpleE","\\textcolor{##543b78}{#1}");pt("\\mintA","\\textcolor{##f5f9e8}{#1}");pt("\\mintB","\\textcolor{##edf2df}{#1}");pt("\\mintC","\\textcolor{##e0e5cc}{#1}");pt("\\grayA","\\textcolor{##f6f7f7}{#1}");pt("\\grayB","\\textcolor{##f0f1f2}{#1}");pt("\\grayC","\\textcolor{##e3e5e6}{#1}");pt("\\grayD","\\textcolor{##d6d8da}{#1}");pt("\\grayE","\\textcolor{##babec2}{#1}");pt("\\grayF","\\textcolor{##888d93}{#1}");pt("\\grayG","\\textcolor{##626569}{#1}");pt("\\grayH","\\textcolor{##3b3e40}{#1}");pt("\\grayI","\\textcolor{##21242c}{#1}");pt("\\kaBlue","\\textcolor{##314453}{#1}");pt("\\kaGreen","\\textcolor{##71B307}{#1}");var tqn={"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0};class STi{constructor(t,r,a){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=r,this.expansionCount=0,this.feed(t),this.macros=new ETi(xTi,r.macros),this.mode=a,this.stack=[]}feed(t){this.lexer=new lwn(t,this.settings)}switchMode(t){this.mode=t}beginGroup(){this.macros.beginGroup()}endGroup(){this.macros.endGroup()}endGroups(){this.macros.endGroups()}future(){return this.stack.length===0&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]}popToken(){return this.future(),this.stack.pop()}pushToken(t){this.stack.push(t)}pushTokens(t){this.stack.push(...t)}scanArgument(t){var r,a,s;if(t){if(this.consumeSpaces(),this.future().text!=="[")return null;r=this.popToken(),{tokens:s,end:a}=this.consumeArg(["]"])}else({tokens:s,start:r,end:a}=this.consumeArg());return this.pushToken(new Pw("EOF",a.loc)),this.pushTokens(s),new Pw("",D2.range(r,a))}consumeSpaces(){for(;;){var t=this.future();if(t.text===" ")this.stack.pop();else break}}consumeArg(t){var r=[],a=t&&t.length>0;a||this.consumeSpaces();var s=this.future(),o,u=0,h=0;do{if(o=this.popToken(),r.push(o),o.text==="{")++u;else if(o.text==="}"){if(--u,u===-1)throw new Ri("Extra }",o)}else if(o.text==="EOF")throw new Ri("Unexpected end of input in a macro argument, expected '"+(t&&a?t[h]:"}")+"'",o);if(t&&a)if((u===0||u===1&&t[h]==="{")&&o.text===t[h]){if(++h,h===t.length){r.splice(-h,h);break}}else h=0}while(u!==0||a);return s.text==="{"&&r[r.length-1].text==="}"&&(r.pop(),r.shift()),r.reverse(),{tokens:r,start:s,end:o}}consumeArgs(t,r){if(r){if(r.length!==t+1)throw new Ri("The length of delimiters doesn't match the number of args!");for(var a=r[0],s=0;sthis.settings.maxExpand)throw new Ri("Too many expansions: infinite loop or need to increase maxExpand setting")}expandOnce(t){var r=this.popToken(),a=r.text,s=r.noexpand?null:this._getExpansion(a);if(s==null||t&&s.unexpandable){if(t&&s==null&&a[0]==="\\"&&!this.isDefined(a))throw new Ri("Undefined control sequence: "+a);return this.pushToken(r),!1}this.countExpansion(1);var o=s.tokens,u=this.consumeArgs(s.numArgs,s.delimiters);if(s.numArgs){o=o.slice();for(var h=o.length-1;h>=0;--h){var f=o[h];if(f.text==="#"){if(h===0)throw new Ri("Incomplete placeholder at end of macro body",f);if(f=o[--h],f.text==="#")o.splice(h+1,1);else if(/^[1-9]$/.test(f.text))o.splice(h,2,...u[+f.text-1]);else throw new Ri("Not a valid argument number",f)}}}return this.pushTokens(o),o.length}expandAfterFuture(){return this.expandOnce(),this.future()}expandNextToken(){for(;;)if(this.expandOnce()===!1){var t=this.stack.pop();return t.treatAsRelax&&(t.text="\\relax"),t}throw new Error}expandMacro(t){return this.macros.has(t)?this.expandTokens([new Pw(t)]):void 0}expandTokens(t){var r=[],a=this.stack.length;for(this.pushTokens(t);this.stack.length>a;)if(this.expandOnce(!0)===!1){var s=this.stack.pop();s.treatAsRelax&&(s.noexpand=!1,s.treatAsRelax=!1),r.push(s)}return this.countExpansion(r.length),r}expandMacroAsText(t){var r=this.expandMacro(t);return r&&r.map(a=>a.text).join("")}_getExpansion(t){var r=this.macros.get(t);if(r==null)return r;if(t.length===1){var a=this.lexer.catcodes[t];if(a!=null&&a!==13)return}var s=typeof r=="function"?r(this):r;if(typeof s=="string"){var o=0;if(s.indexOf("#")!==-1)for(var u=s.replace(/##/g,"");u.indexOf("#"+(o+1))!==-1;)++o;for(var h=new lwn(s,this.settings),f=[],p=h.lex();p.text!=="EOF";)f.push(p),p=h.lex();f.reverse();var m={tokens:f,numArgs:o};return m}return s}isDefined(t){return this.macros.has(t)||gO.hasOwnProperty(t)||td.math.hasOwnProperty(t)||td.text.hasOwnProperty(t)||tqn.hasOwnProperty(t)}isExpandable(t){var r=this.macros.get(t);return r!=null?typeof r=="string"||typeof r=="function"||!r.unexpandable:gO.hasOwnProperty(t)&&!gO[t].primitive}}var hwn=/^[₊₋₌₍₎₀₁₂₃₄₅₆₇₈₉ₐₑₕᵢⱼₖₗₘₙₒₚᵣₛₜᵤᵥₓᵦᵧᵨᵩᵪ]/,Cwe=Object.freeze({"₊":"+","₋":"-","₌":"=","₍":"(","₎":")","₀":"0","₁":"1","₂":"2","₃":"3","₄":"4","₅":"5","₆":"6","₇":"7","₈":"8","₉":"9","ₐ":"a","ₑ":"e","ₕ":"h","ᵢ":"i","ⱼ":"j","ₖ":"k","ₗ":"l","ₘ":"m","ₙ":"n","ₒ":"o","ₚ":"p","ᵣ":"r","ₛ":"s","ₜ":"t","ᵤ":"u","ᵥ":"v","ₓ":"x","ᵦ":"β","ᵧ":"γ","ᵨ":"ρ","ᵩ":"ϕ","ᵪ":"χ","⁺":"+","⁻":"-","⁼":"=","⁽":"(","⁾":")","⁰":"0","¹":"1","²":"2","³":"3","⁴":"4","⁵":"5","⁶":"6","⁷":"7","⁸":"8","⁹":"9","ᴬ":"A","ᴮ":"B","ᴰ":"D","ᴱ":"E","ᴳ":"G","ᴴ":"H","ᴵ":"I","ᴶ":"J","ᴷ":"K","ᴸ":"L","ᴹ":"M","ᴺ":"N","ᴼ":"O","ᴾ":"P","ᴿ":"R","ᵀ":"T","ᵁ":"U","ⱽ":"V","ᵂ":"W","ᵃ":"a","ᵇ":"b","ᶜ":"c","ᵈ":"d","ᵉ":"e","ᶠ":"f","ᵍ":"g",ʰ:"h","ⁱ":"i",ʲ:"j","ᵏ":"k",ˡ:"l","ᵐ":"m",ⁿ:"n","ᵒ":"o","ᵖ":"p",ʳ:"r",ˢ:"s","ᵗ":"t","ᵘ":"u","ᵛ":"v",ʷ:"w",ˣ:"x",ʸ:"y","ᶻ":"z","ᵝ":"β","ᵞ":"γ","ᵟ":"δ","ᵠ":"ϕ","ᵡ":"χ","ᶿ":"θ"}),Lnt={"́":{text:"\\'",math:"\\acute"},"̀":{text:"\\`",math:"\\grave"},"̈":{text:'\\"',math:"\\ddot"},"̃":{text:"\\~",math:"\\tilde"},"̄":{text:"\\=",math:"\\bar"},"̆":{text:"\\u",math:"\\breve"},"̌":{text:"\\v",math:"\\check"},"̂":{text:"\\^",math:"\\hat"},"̇":{text:"\\.",math:"\\dot"},"̊":{text:"\\r",math:"\\mathring"},"̋":{text:"\\H"},"̧":{text:"\\c"}},dwn={á:"á",à:"à",ä:"ä",ǟ:"ǟ",ã:"ã",ā:"ā",ă:"ă",ắ:"ắ",ằ:"ằ",ẵ:"ẵ",ǎ:"ǎ",â:"â",ấ:"ấ",ầ:"ầ",ẫ:"ẫ",ȧ:"ȧ",ǡ:"ǡ",å:"å",ǻ:"ǻ",ḃ:"ḃ",ć:"ć",ḉ:"ḉ",č:"č",ĉ:"ĉ",ċ:"ċ",ç:"ç",ď:"ď",ḋ:"ḋ",ḑ:"ḑ",é:"é",è:"è",ë:"ë",ẽ:"ẽ",ē:"ē",ḗ:"ḗ",ḕ:"ḕ",ĕ:"ĕ",ḝ:"ḝ",ě:"ě",ê:"ê",ế:"ế",ề:"ề",ễ:"ễ",ė:"ė",ȩ:"ȩ",ḟ:"ḟ",ǵ:"ǵ",ḡ:"ḡ",ğ:"ğ",ǧ:"ǧ",ĝ:"ĝ",ġ:"ġ",ģ:"ģ",ḧ:"ḧ",ȟ:"ȟ",ĥ:"ĥ",ḣ:"ḣ",ḩ:"ḩ",í:"í",ì:"ì",ï:"ï",ḯ:"ḯ",ĩ:"ĩ",ī:"ī",ĭ:"ĭ",ǐ:"ǐ",î:"î",ǰ:"ǰ",ĵ:"ĵ",ḱ:"ḱ",ǩ:"ǩ",ķ:"ķ",ĺ:"ĺ",ľ:"ľ",ļ:"ļ",ḿ:"ḿ",ṁ:"ṁ",ń:"ń",ǹ:"ǹ",ñ:"ñ",ň:"ň",ṅ:"ṅ",ņ:"ņ",ó:"ó",ò:"ò",ö:"ö",ȫ:"ȫ",õ:"õ",ṍ:"ṍ",ṏ:"ṏ",ȭ:"ȭ",ō:"ō",ṓ:"ṓ",ṑ:"ṑ",ŏ:"ŏ",ǒ:"ǒ",ô:"ô",ố:"ố",ồ:"ồ",ỗ:"ỗ",ȯ:"ȯ",ȱ:"ȱ",ő:"ő",ṕ:"ṕ",ṗ:"ṗ",ŕ:"ŕ",ř:"ř",ṙ:"ṙ",ŗ:"ŗ",ś:"ś",ṥ:"ṥ",š:"š",ṧ:"ṧ",ŝ:"ŝ",ṡ:"ṡ",ş:"ş",ẗ:"ẗ",ť:"ť",ṫ:"ṫ",ţ:"ţ",ú:"ú",ù:"ù",ü:"ü",ǘ:"ǘ",ǜ:"ǜ",ǖ:"ǖ",ǚ:"ǚ",ũ:"ũ",ṹ:"ṹ",ū:"ū",ṻ:"ṻ",ŭ:"ŭ",ǔ:"ǔ",û:"û",ů:"ů",ű:"ű",ṽ:"ṽ",ẃ:"ẃ",ẁ:"ẁ",ẅ:"ẅ",ŵ:"ŵ",ẇ:"ẇ",ẘ:"ẘ",ẍ:"ẍ",ẋ:"ẋ",ý:"ý",ỳ:"ỳ",ÿ:"ÿ",ỹ:"ỹ",ȳ:"ȳ",ŷ:"ŷ",ẏ:"ẏ",ẙ:"ẙ",ź:"ź",ž:"ž",ẑ:"ẑ",ż:"ż",Á:"Á",À:"À",Ä:"Ä",Ǟ:"Ǟ",Ã:"Ã",Ā:"Ā",Ă:"Ă",Ắ:"Ắ",Ằ:"Ằ",Ẵ:"Ẵ",Ǎ:"Ǎ",Â:"Â",Ấ:"Ấ",Ầ:"Ầ",Ẫ:"Ẫ",Ȧ:"Ȧ",Ǡ:"Ǡ",Å:"Å",Ǻ:"Ǻ",Ḃ:"Ḃ",Ć:"Ć",Ḉ:"Ḉ",Č:"Č",Ĉ:"Ĉ",Ċ:"Ċ",Ç:"Ç",Ď:"Ď",Ḋ:"Ḋ",Ḑ:"Ḑ",É:"É",È:"È",Ë:"Ë",Ẽ:"Ẽ",Ē:"Ē",Ḗ:"Ḗ",Ḕ:"Ḕ",Ĕ:"Ĕ",Ḝ:"Ḝ",Ě:"Ě",Ê:"Ê",Ế:"Ế",Ề:"Ề",Ễ:"Ễ",Ė:"Ė",Ȩ:"Ȩ",Ḟ:"Ḟ",Ǵ:"Ǵ",Ḡ:"Ḡ",Ğ:"Ğ",Ǧ:"Ǧ",Ĝ:"Ĝ",Ġ:"Ġ",Ģ:"Ģ",Ḧ:"Ḧ",Ȟ:"Ȟ",Ĥ:"Ĥ",Ḣ:"Ḣ",Ḩ:"Ḩ",Í:"Í",Ì:"Ì",Ï:"Ï",Ḯ:"Ḯ",Ĩ:"Ĩ",Ī:"Ī",Ĭ:"Ĭ",Ǐ:"Ǐ",Î:"Î",İ:"İ",Ĵ:"Ĵ",Ḱ:"Ḱ",Ǩ:"Ǩ",Ķ:"Ķ",Ĺ:"Ĺ",Ľ:"Ľ",Ļ:"Ļ",Ḿ:"Ḿ",Ṁ:"Ṁ",Ń:"Ń",Ǹ:"Ǹ",Ñ:"Ñ",Ň:"Ň",Ṅ:"Ṅ",Ņ:"Ņ",Ó:"Ó",Ò:"Ò",Ö:"Ö",Ȫ:"Ȫ",Õ:"Õ",Ṍ:"Ṍ",Ṏ:"Ṏ",Ȭ:"Ȭ",Ō:"Ō",Ṓ:"Ṓ",Ṑ:"Ṑ",Ŏ:"Ŏ",Ǒ:"Ǒ",Ô:"Ô",Ố:"Ố",Ồ:"Ồ",Ỗ:"Ỗ",Ȯ:"Ȯ",Ȱ:"Ȱ",Ő:"Ő",Ṕ:"Ṕ",Ṗ:"Ṗ",Ŕ:"Ŕ",Ř:"Ř",Ṙ:"Ṙ",Ŗ:"Ŗ",Ś:"Ś",Ṥ:"Ṥ",Š:"Š",Ṧ:"Ṧ",Ŝ:"Ŝ",Ṡ:"Ṡ",Ş:"Ş",Ť:"Ť",Ṫ:"Ṫ",Ţ:"Ţ",Ú:"Ú",Ù:"Ù",Ü:"Ü",Ǘ:"Ǘ",Ǜ:"Ǜ",Ǖ:"Ǖ",Ǚ:"Ǚ",Ũ:"Ũ",Ṹ:"Ṹ",Ū:"Ū",Ṻ:"Ṻ",Ŭ:"Ŭ",Ǔ:"Ǔ",Û:"Û",Ů:"Ů",Ű:"Ű",Ṽ:"Ṽ",Ẃ:"Ẃ",Ẁ:"Ẁ",Ẅ:"Ẅ",Ŵ:"Ŵ",Ẇ:"Ẇ",Ẍ:"Ẍ",Ẋ:"Ẋ",Ý:"Ý",Ỳ:"Ỳ",Ÿ:"Ÿ",Ỹ:"Ỹ",Ȳ:"Ȳ",Ŷ:"Ŷ",Ẏ:"Ẏ",Ź:"Ź",Ž:"Ž",Ẑ:"Ẑ",Ż:"Ż",ά:"ά",ὰ:"ὰ",ᾱ:"ᾱ",ᾰ:"ᾰ",έ:"έ",ὲ:"ὲ",ή:"ή",ὴ:"ὴ",ί:"ί",ὶ:"ὶ",ϊ:"ϊ",ΐ:"ΐ",ῒ:"ῒ",ῑ:"ῑ",ῐ:"ῐ",ό:"ό",ὸ:"ὸ",ύ:"ύ",ὺ:"ὺ",ϋ:"ϋ",ΰ:"ΰ",ῢ:"ῢ",ῡ:"ῡ",ῠ:"ῠ",ώ:"ώ",ὼ:"ὼ",Ύ:"Ύ",Ὺ:"Ὺ",Ϋ:"Ϋ",Ῡ:"Ῡ",Ῠ:"Ῠ",Ώ:"Ώ",Ὼ:"Ὼ"};let nqn=class rqn{constructor(t,r){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new STi(t,r,this.mode),this.settings=r,this.leftrightDepth=0}expect(t,r){if(r===void 0&&(r=!0),this.fetch().text!==t)throw new Ri("Expected '"+t+"', got '"+this.fetch().text+"'",this.fetch());r&&this.consume()}consume(){this.nextToken=null}fetch(){return this.nextToken==null&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken}switchMode(t){this.mode=t,this.gullet.switchMode(t)}parse(){this.settings.globalGroup||this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");try{var t=this.parseExpression(!1);return this.expect("EOF"),this.settings.globalGroup||this.gullet.endGroup(),t}finally{this.gullet.endGroups()}}subparse(t){var r=this.nextToken;this.consume(),this.gullet.pushToken(new Pw("}")),this.gullet.pushTokens(t);var a=this.parseExpression(!1);return this.expect("}"),this.nextToken=r,a}parseExpression(t,r){for(var a=[];;){this.mode==="math"&&this.consumeSpaces();var s=this.fetch();if(rqn.endOfExpression.indexOf(s.text)!==-1||r&&s.text===r||t&&gO[s.text]&&gO[s.text].infix)break;var o=this.parseAtom(r);if(o){if(o.type==="internal")continue}else break;a.push(o)}return this.mode==="text"&&this.formLigatures(a),this.handleInfixNodes(a)}handleInfixNodes(t){for(var r=-1,a,s=0;s=0&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+r[0]+'" used in math mode',t);var h=td[this.mode][r].group,f=D2.range(t),p;if(d3i.hasOwnProperty(h)){var m=h;p={type:"atom",mode:this.mode,family:m,loc:f,text:r}}else p={type:h,mode:this.mode,loc:f,text:r};u=p}else if(r.charCodeAt(0)>=128)this.settings.strict&&(cGn(r.charCodeAt(0))?this.mode==="math"&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+r[0]+'" used in math mode',t):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+r[0]+'"'+(" ("+r.charCodeAt(0)+")"),t)),u={type:"textord",mode:"text",loc:D2.range(t),text:r};else return null;if(this.consume(),o)for(var b=0;b-1}function Tp(e){return P9(e)?qPn(e):d$n(e)}var HTi=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,VTi=/^\w*$/;function egt(e,t){if(Z0(e))return!1;var r=typeof e;return r=="number"||r=="symbol"||r=="boolean"||e==null||WF(e)?!0:VTi.test(e)||!HTi.test(e)||t!=null&&e in Object(t)}var YTi=500;function jTi(e){var t=_R(e,function(a){return r.size===YTi&&r.clear(),a}),r=t.cache;return t}var WTi=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,KTi=/\\(\\)?/g,XTi=jTi(function(e){var t=[];return e.charCodeAt(0)===46&&t.push(""),e.replace(WTi,function(r,a,s,o){t.push(s?o.replace(KTi,"$1"):a||r)}),t});function fqn(e){return e==null?"":uqn(e)}function KAe(e,t){return Z0(e)?e:egt(e,t)?[e]:XTi(fqn(e))}function _ce(e){if(typeof e=="string"||WF(e))return e;var t=e+"";return t=="0"&&1/e==-1/0?"-0":t}function XAe(e,t){t=KAe(t,e);for(var r=0,a=t.length;e!=null&&rh))return!1;var p=o.get(e),m=o.get(t);if(p&&m)return p==t&&m==e;var b=-1,_=!0,w=r&ECi?new Foe:void 0;for(o.set(e,t),o.set(t,e);++b2?t[2]:void 0;for(s&&xoe(t[0],t[1],s)&&(a=1);++r-1?s[o?t[u]:u]:void 0}}var oAi=Math.max;function lAi(e,t,r){var a=e==null?0:e.length;if(!a)return-1;var s=r==null?0:FTi(r);return s<0&&(s=oAi(a+s,0)),dqn(e,xR(t),s)}var VW=sAi(lAi);function Rqn(e,t){var r=-1,a=P9(e)?Array(e.length):[];return JAe(e,function(s,o,u){a[++r]=t(s,o,u)}),a}function wo(e,t){var r=Z0(e)?eY:Rqn;return r(e,xR(t))}function cAi(e,t){return QAe(wo(e,t))}function Iqn(e,t){return e==null?e:N1t(e,sgt(t),R$)}function Nqn(e,t){return e&&agt(e,sgt(t))}function uAi(e,t){return e>t}var hAi=Object.prototype,dAi=hAi.hasOwnProperty;function fAi(e,t){return e!=null&&dAi.call(e,t)}function Ho(e,t){return e!=null&&Cqn(e,t,fAi)}function pAi(e,t){return eY(t,function(r){return e[r]})}function Ag(e){return e==null?[]:pAi(e,Tp(e))}function gl(e){return e===void 0}function Oqn(e,t){return et||o&&u&&f&&!h&&!p||a&&u&&f||!r&&f||!s)return 1;if(!a&&!o&&!p&&e=h)return f;var p=r[a];return f*(p=="desc"?-1:1)}}return e.index-t.index}function _Ai(e,t,r){t.length?t=eY(t,function(o){return Z0(o)?function(u){return XAe(u,o.length===1?o[0]:o)}:o}):t=[I$];var a=-1;t=eY(t,yAe(xR));var s=Rqn(e,function(o,u,h){var f=eY(t,function(p){return p(o)});return{criteria:f,index:++a,value:o}});return bAi(s,function(o,u){return vAi(o,u,r)})}function wAi(e,t){return mAi(e,t,function(r,a){return Aqn(e,a)})}var lR=JTi(function(e,t){return e==null?{}:wAi(e,t)}),EAi=Math.ceil,xAi=Math.max;function SAi(e,t,r,a){for(var s=-1,o=xAi(EAi((t-e)/(r||1)),0),u=Array(o);o--;)u[++s]=e,e+=r;return u}function TAi(e){return function(t,r,a){return a&&typeof a!="number"&&xoe(t,r,a)&&(r=a=void 0),t=vxe(t),r===void 0?(r=t,t=0):r=vxe(r),a=a===void 0?t1&&xoe(e,t[0],t[1])?t=[]:r>2&&xoe(t[0],t[1],t[2])&&(t=[t[0]]),_Ai(e,QAe(t),[])}),AAi=1/0,kAi=QV&&1/rgt(new QV([,-0]))[1]==AAi?function(e){return new QV(e)}:$Ti,RAi=200;function Lqn(e,t,r){var a=-1,s=qTi,o=e.length,u=!0,h=[],f=h;if(o>=RAi){var p=t?null:kAi(e);if(p)return rgt(p);u=!1,s=Eqn,f=new Foe}else f=t?[]:h;e:for(;++a1?s.setNode(o,r):s.setNode(o)}),this}setNode(t,r){return Object.prototype.hasOwnProperty.call(this._nodes,t)?(arguments.length>1&&(this._nodes[t]=r),this):(this._nodes[t]=arguments.length>1?r:this._defaultNodeLabelFn(t),this._isCompound&&(this._parent[t]=vB,this._children[t]={},this._children[vB][t]=!0),this._in[t]={},this._preds[t]={},this._out[t]={},this._sucs[t]={},++this._nodeCount,this)}node(t){return this._nodes[t]}hasNode(t){return Object.prototype.hasOwnProperty.call(this._nodes,t)}removeNode(t){if(Object.prototype.hasOwnProperty.call(this._nodes,t)){var r=a=>this.removeEdge(this._edgeObjs[a]);delete this._nodes[t],this._isCompound&&(this._removeFromParentsChildList(t),delete this._parent[t],Zt(this.children(t),a=>{this.setParent(a)}),delete this._children[t]),Zt(Tp(this._in[t]),r),delete this._in[t],delete this._preds[t],Zt(Tp(this._out[t]),r),delete this._out[t],delete this._sucs[t],--this._nodeCount}return this}setParent(t,r){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(gl(r))r=vB;else{r+="";for(var a=r;!gl(a);a=this.parent(a))if(a===t)throw new Error("Setting "+r+" as parent of "+t+" would create a cycle");this.setNode(r)}return this.setNode(t),this._removeFromParentsChildList(t),this._parent[t]=r,this._children[r][t]=!0,this}_removeFromParentsChildList(t){delete this._children[this._parent[t]][t]}parent(t){if(this._isCompound){var r=this._parent[t];if(r!==vB)return r}}children(t){if(gl(t)&&(t=vB),this._isCompound){var r=this._children[t];if(r)return Tp(r)}else{if(t===vB)return this.nodes();if(this.hasNode(t))return[]}}predecessors(t){var r=this._preds[t];if(r)return Tp(r)}successors(t){var r=this._sucs[t];if(r)return Tp(r)}neighbors(t){var r=this.predecessors(t);if(r)return Dqn(r,this.successors(t))}isLeaf(t){var r;return this.isDirected()?r=this.successors(t):r=this.neighbors(t),r.length===0}filterNodes(t){var r=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});r.setGraph(this.graph());var a=this;Zt(this._nodes,function(u,h){t(h)&&r.setNode(h,u)}),Zt(this._edgeObjs,function(u){r.hasNode(u.v)&&r.hasNode(u.w)&&r.setEdge(u,a.edge(u))});var s={};function o(u){var h=a.parent(u);return h===void 0||r.hasNode(h)?(s[u]=h,h):h in s?s[h]:o(h)}return this._isCompound&&Zt(r.nodes(),function(u){r.setParent(u,o(u))}),r}setDefaultEdgeLabel(t){return KO(t)||(t=$3(t)),this._defaultEdgeLabelFn=t,this}edgeCount(){return this._edgeCount}edges(){return Ag(this._edgeObjs)}setPath(t,r){var a=this,s=arguments;return TS(t,function(o,u){return s.length>1?a.setEdge(o,u,r):a.setEdge(o,u),u}),this}setEdge(){var t,r,a,s,o=!1,u=arguments[0];typeof u=="object"&&u!==null&&"v"in u?(t=u.v,r=u.w,a=u.name,arguments.length===2&&(s=arguments[1],o=!0)):(t=u,r=arguments[1],a=arguments[3],arguments.length>2&&(s=arguments[2],o=!0)),t=""+t,r=""+r,gl(a)||(a=""+a);var h=Vie(this._isDirected,t,r,a);if(Object.prototype.hasOwnProperty.call(this._edgeLabels,h))return o&&(this._edgeLabels[h]=s),this;if(!gl(a)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(t),this.setNode(r),this._edgeLabels[h]=o?s:this._defaultEdgeLabelFn(t,r,a);var f=DAi(this._isDirected,t,r,a);return t=f.v,r=f.w,Object.freeze(f),this._edgeObjs[h]=f,kwn(this._preds[r],t),kwn(this._sucs[t],r),this._in[r][h]=f,this._out[t][h]=f,this._edgeCount++,this}edge(t,r,a){var s=arguments.length===1?Mnt(this._isDirected,arguments[0]):Vie(this._isDirected,t,r,a);return this._edgeLabels[s]}hasEdge(t,r,a){var s=arguments.length===1?Mnt(this._isDirected,arguments[0]):Vie(this._isDirected,t,r,a);return Object.prototype.hasOwnProperty.call(this._edgeLabels,s)}removeEdge(t,r,a){var s=arguments.length===1?Mnt(this._isDirected,arguments[0]):Vie(this._isDirected,t,r,a),o=this._edgeObjs[s];return o&&(t=o.v,r=o.w,delete this._edgeLabels[s],delete this._edgeObjs[s],Rwn(this._preds[r],t),Rwn(this._sucs[t],r),delete this._in[r][s],delete this._out[t][s],this._edgeCount--),this}inEdges(t,r){var a=this._in[t];if(a){var s=Ag(a);return r?Rp(s,function(o){return o.v===r}):s}}outEdges(t,r){var a=this._out[t];if(a){var s=Ag(a);return r?Rp(s,function(o){return o.w===r}):s}}nodeEdges(t,r){var a=this.inEdges(t,r);if(a)return a.concat(this.outEdges(t,r))}};c_.prototype._nodeCount=0;c_.prototype._edgeCount=0;function kwn(e,t){e[t]?e[t]++:e[t]=1}function Rwn(e,t){--e[t]||delete e[t]}function Vie(e,t,r,a){var s=""+t,o=""+r;if(!e&&s>o){var u=s;s=o,o=u}return s+Awn+o+Awn+(gl(a)?LAi:a)}function DAi(e,t,r,a){var s=""+t,o=""+r;if(!e&&s>o){var u=s;s=o,o=u}var h={v:s,w:o};return a&&(h.name=a),h}function Mnt(e,t){return Vie(e,t.v,t.w,t.name)}let MAi=class{constructor(){var t={};t._next=t._prev=t,this._sentinel=t}dequeue(){var t=this._sentinel,r=t._prev;if(r!==t)return Iwn(r),r}enqueue(t){var r=this._sentinel;t._prev&&t._next&&Iwn(t),t._next=r._next,r._next._prev=t,r._next=t,t._prev=r}toString(){for(var t=[],r=this._sentinel,a=r._prev;a!==r;)t.push(JSON.stringify(a,PAi)),a=a._prev;return"["+t.join(", ")+"]"}};function Iwn(e){e._prev._next=e._next,e._next._prev=e._prev,delete e._next,delete e._prev}function PAi(e,t){if(e!=="_next"&&e!=="_prev")return t}var BAi=$3(1);function FAi(e,t){if(e.nodeCount()<=1)return[];var r=UAi(e,t||BAi),a=$Ai(r.graph,r.buckets,r.zeroIdx);return MS(wo(a,function(s){return e.outEdges(s.v,s.w)}))}function $Ai(e,t,r){for(var a=[],s=t[t.length-1],o=t[0],u;e.nodeCount();){for(;u=o.dequeue();)Pnt(e,t,r,u);for(;u=s.dequeue();)Pnt(e,t,r,u);if(e.nodeCount()){for(var h=t.length-2;h>0;--h)if(u=t[h].dequeue(),u){a=a.concat(Pnt(e,t,r,u,!0));break}}}return a}function Pnt(e,t,r,a,s){var o=s?[]:void 0;return Zt(e.inEdges(a.v),function(u){var h=e.edge(u),f=e.node(u.v);s&&o.push({v:u.v,w:u.w}),f.out-=h,ect(t,r,f)}),Zt(e.outEdges(a.v),function(u){var h=e.edge(u),f=u.w,p=e.node(f);p.in-=h,ect(t,r,p)}),e.removeNode(a.v),o}function UAi(e,t){var r=new c_,a=0,s=0;Zt(e.nodes(),function(h){r.setNode(h,{v:h,in:0,out:0})}),Zt(e.edges(),function(h){var f=r.edge(h.v,h.w)||0,p=t(h),m=f+p;r.setEdge(h.v,h.w,m),s=Math.max(s,r.node(h.v).out+=p),a=Math.max(a,r.node(h.w).in+=p)});var o=Uw(s+a+3).map(function(){return new MAi}),u=a+1;return Zt(r.nodes(),function(h){ect(o,u,r.node(h))}),{graph:r,buckets:o,zeroIdx:u}}function ect(e,t,r){r.out?r.in?e[r.out-r.in+t].enqueue(r):e[e.length-1].enqueue(r):e[0].enqueue(r)}function zAi(e){var t=e.graph().acyclicer==="greedy"?FAi(e,r(e)):GAi(e);Zt(t,function(a){var s=e.edge(a);e.removeEdge(a),s.forwardName=a.name,s.reversed=!0,e.setEdge(a.w,a.v,s,P$("rev"))});function r(a){return function(s){return a.edge(s).weight}}}function GAi(e){var t=[],r={},a={};function s(o){Object.prototype.hasOwnProperty.call(a,o)||(a[o]=!0,r[o]=!0,Zt(e.outEdges(o),function(u){Object.prototype.hasOwnProperty.call(r,u.w)?t.push(u):s(u.w)}),delete r[o])}return Zt(e.nodes(),s),t}function qAi(e){Zt(e.edges(),function(t){var r=e.edge(t);if(r.reversed){e.removeEdge(t);var a=r.forwardName;delete r.reversed,delete r.forwardName,e.setEdge(t.w,t.v,r,a)}})}function jW(e,t,r,a){var s;do s=P$(a);while(e.hasNode(s));return r.dummy=t,e.setNode(s,r),s}function HAi(e){var t=new c_().setGraph(e.graph());return Zt(e.nodes(),function(r){t.setNode(r,e.node(r))}),Zt(e.edges(),function(r){var a=t.edge(r.v,r.w)||{weight:0,minlen:1},s=e.edge(r);t.setEdge(r.v,r.w,{weight:a.weight+s.weight,minlen:Math.max(a.minlen,s.minlen)})}),t}function Pqn(e){var t=new c_({multigraph:e.isMultigraph()}).setGraph(e.graph());return Zt(e.nodes(),function(r){e.children(r).length||t.setNode(r,e.node(r))}),Zt(e.edges(),function(r){t.setEdge(r,e.edge(r))}),t}function Nwn(e,t){var r=e.x,a=e.y,s=t.x-r,o=t.y-a,u=e.width/2,h=e.height/2;if(!s&&!o)throw new Error("Not possible to find intersection inside of the rectangle");var f,p;return Math.abs(o)*u>Math.abs(s)*h?(o<0&&(h=-h),f=h*s/o,p=h):(s<0&&(u=-u),f=u,p=u*o/s),{x:r+f,y:a+p}}function eke(e){var t=wo(Uw(Bqn(e)+1),function(){return[]});return Zt(e.nodes(),function(r){var a=e.node(r),s=a.rank;gl(s)||(t[s][a.order]=r)}),t}function VAi(e){var t=oT(wo(e.nodes(),function(r){return e.node(r).rank}));Zt(e.nodes(),function(r){var a=e.node(r);Ho(a,"rank")&&(a.rank-=t)})}function YAi(e){var t=oT(wo(e.nodes(),function(o){return e.node(o).rank})),r=[];Zt(e.nodes(),function(o){var u=e.node(o).rank-t;r[u]||(r[u]=[]),r[u].push(o)});var a=0,s=e.graph().nodeRankFactor;Zt(r,function(o,u){gl(o)&&u%s!==0?--a:a&&Zt(o,function(h){e.node(h).rank+=a})})}function Own(e,t,r,a){var s={width:0,height:0};return arguments.length>=4&&(s.rank=r,s.order=a),jW(e,"border",s,t)}function Bqn(e){return i_(wo(e.nodes(),function(t){var r=e.node(t).rank;if(!gl(r))return r}))}function jAi(e,t){var r={lhs:[],rhs:[]};return Zt(e,function(a){t(a)?r.lhs.push(a):r.rhs.push(a)}),r}function WAi(e,t){return t()}function KAi(e){function t(r){var a=e.children(r),s=e.node(r);if(a.length&&Zt(a,t),Object.prototype.hasOwnProperty.call(s,"minRank")){s.borderLeft=[],s.borderRight=[];for(var o=s.minRank,u=s.maxRank+1;ou.lim&&(h=u,f=!0);var p=Rp(t.edges(),function(m){return f===Mwn(e,e.node(m.v),h)&&f!==Mwn(e,e.node(m.w),h)});return YW(p,function(m){return $oe(t,m)})}function Yqn(e,t,r,a){var s=r.v,o=r.w;e.removeEdge(s,o),e.setEdge(a.v,a.w,{}),ugt(e),cgt(e,t),uki(e,t)}function uki(e,t){var r=VW(e.nodes(),function(s){return!t.node(s).parent}),a=lki(e,r);a=a.slice(1),Zt(a,function(s){var o=e.node(s).parent,u=t.edge(s,o),h=!1;u||(u=t.edge(o,s),h=!0),t.node(s).rank=t.node(o).rank+(h?u.minlen:-u.minlen)})}function hki(e,t,r){return e.hasEdge(t,r)}function Mwn(e,t,r){return r.low<=t.lim&&t.lim<=r.lim}function dki(e){switch(e.graph().ranker){case"network-simplex":Pwn(e);break;case"tight-tree":pki(e);break;case"longest-path":fki(e);break;default:Pwn(e)}}var fki=lgt;function pki(e){lgt(e),$qn(e)}function Pwn(e){B$(e)}function gki(e){var t=jW(e,"root",{},"_root"),r=mki(e),a=i_(Ag(r))-1,s=2*a+1;e.graph().nestingRoot=t,Zt(e.edges(),function(u){e.edge(u).minlen*=s});var o=bki(e)+1;Zt(e.children(),function(u){jqn(e,t,s,o,a,r,u)}),e.graph().nodeRankFactor=s}function jqn(e,t,r,a,s,o,u){var h=e.children(u);if(!h.length){u!==t&&e.setEdge(t,u,{weight:0,minlen:r});return}var f=Own(e,"_bt"),p=Own(e,"_bb"),m=e.node(u);e.setParent(f,u),m.borderTop=f,e.setParent(p,u),m.borderBottom=p,Zt(h,function(b){jqn(e,t,r,a,s,o,b);var _=e.node(b),w=_.borderTop?_.borderTop:b,S=_.borderBottom?_.borderBottom:b,C=_.borderTop?a:2*a,A=w!==S?1:s-o[u]+1;e.setEdge(f,w,{weight:C,minlen:A,nestingEdge:!0}),e.setEdge(S,p,{weight:C,minlen:A,nestingEdge:!0})}),e.parent(u)||e.setEdge(t,f,{weight:0,minlen:s+o[u]})}function mki(e){var t={};function r(a,s){var o=e.children(a);o&&o.length&&Zt(o,function(u){r(u,s+1)}),t[a]=s}return Zt(e.children(),function(a){r(a,1)}),t}function bki(e){return TS(e.edges(),function(t,r){return t+e.edge(r).weight},0)}function yki(e){var t=e.graph();e.removeNode(t.nestingRoot),delete t.nestingRoot,Zt(e.edges(),function(r){var a=e.edge(r);a.nestingEdge&&e.removeEdge(r)})}function vki(e,t,r){var a={},s;Zt(r,function(o){for(var u=e.parent(o),h,f;u;){if(h=e.parent(u),h?(f=a[h],a[h]=u):(f=s,s=u),f&&f!==u){t.setEdge(f,u);return}u=h}})}function _ki(e,t,r){var a=wki(e),s=new c_({compound:!0}).setGraph({root:a}).setDefaultNodeLabel(function(o){return e.node(o)});return Zt(e.nodes(),function(o){var u=e.node(o),h=e.parent(o);(u.rank===t||u.minRank<=t&&t<=u.maxRank)&&(s.setNode(o),s.setParent(o,h||a),Zt(e[r](o),function(f){var p=f.v===o?f.w:f.v,m=s.edge(p,o),b=gl(m)?0:m.weight;s.setEdge(p,o,{weight:e.edge(f).weight+b})}),Object.prototype.hasOwnProperty.call(u,"minRank")&&s.setNode(o,{borderLeft:u.borderLeft[t],borderRight:u.borderRight[t]}))}),s}function wki(e){for(var t;e.hasNode(t=P$("_root")););return t}function Eki(e,t){for(var r=0,a=1;a0;)m%2&&(b+=h[m+1]),m=m-1>>1,h[m]+=p.weight;f+=p.weight*b})),f}function Ski(e){var t={},r=Rp(e.nodes(),function(h){return!e.children(h).length}),a=i_(wo(r,function(h){return e.node(h).rank})),s=wo(Uw(a+1),function(){return[]});function o(h){if(!Ho(t,h)){t[h]=!0;var f=e.node(h);s[f.rank].push(h),Zt(e.successors(h),o)}}var u=PA(r,function(h){return e.node(h).rank});return Zt(u,o),s}function Tki(e,t){return wo(t,function(r){var a=e.inEdges(r);if(a.length){var s=TS(a,function(o,u){var h=e.edge(u),f=e.node(u.v);return{sum:o.sum+h.weight*f.order,weight:o.weight+h.weight}},{sum:0,weight:0});return{v:r,barycenter:s.sum/s.weight,weight:s.weight}}else return{v:r}})}function Cki(e,t){var r={};Zt(e,function(s,o){var u=r[s.v]={indegree:0,in:[],out:[],vs:[s.v],i:o};gl(s.barycenter)||(u.barycenter=s.barycenter,u.weight=s.weight)}),Zt(t.edges(),function(s){var o=r[s.v],u=r[s.w];!gl(o)&&!gl(u)&&(u.indegree++,o.out.push(r[s.w]))});var a=Rp(r,function(s){return!s.indegree});return Aki(a)}function Aki(e){var t=[];function r(o){return function(u){u.merged||(gl(u.barycenter)||gl(o.barycenter)||u.barycenter>=o.barycenter)&&kki(o,u)}}function a(o){return function(u){u.in.push(o),--u.indegree===0&&e.push(u)}}for(;e.length;){var s=e.pop();t.push(s),Zt(s.in.reverse(),r(s)),Zt(s.out,a(s))}return wo(Rp(t,function(o){return!o.merged}),function(o){return lR(o,["vs","i","barycenter","weight"])})}function kki(e,t){var r=0,a=0;e.weight&&(r+=e.barycenter*e.weight,a+=e.weight),t.weight&&(r+=t.barycenter*t.weight,a+=t.weight),e.vs=t.vs.concat(e.vs),e.barycenter=r/a,e.weight=a,e.i=Math.min(t.i,e.i),t.merged=!0}function Rki(e,t){var r=jAi(e,function(m){return Object.prototype.hasOwnProperty.call(m,"barycenter")}),a=r.lhs,s=PA(r.rhs,function(m){return-m.i}),o=[],u=0,h=0,f=0;a.sort(Iki(!!t)),f=Bwn(o,s,f),Zt(a,function(m){f+=m.vs.length,o.push(m.vs),u+=m.barycenter*m.weight,h+=m.weight,f=Bwn(o,s,f)});var p={vs:MS(o)};return h&&(p.barycenter=u/h,p.weight=h),p}function Bwn(e,t,r){for(var a;t.length&&(a=i9(t)).i<=r;)t.pop(),e.push(a.vs),r++;return r}function Iki(e){return function(t,r){return t.barycenterr.barycenter?1:e?r.i-t.i:t.i-r.i}}function Wqn(e,t,r,a){var s=e.children(t),o=e.node(t),u=o?o.borderLeft:void 0,h=o?o.borderRight:void 0,f={};u&&(s=Rp(s,function(S){return S!==u&&S!==h}));var p=Tki(e,s);Zt(p,function(S){if(e.children(S.v).length){var C=Wqn(e,S.v,r,a);f[S.v]=C,Object.prototype.hasOwnProperty.call(C,"barycenter")&&Oki(S,C)}});var m=Cki(p,r);Nki(m,f);var b=Rki(m,a);if(u&&(b.vs=MS([u,b.vs,h]),e.predecessors(u).length)){var _=e.node(e.predecessors(u)[0]),w=e.node(e.predecessors(h)[0]);Object.prototype.hasOwnProperty.call(b,"barycenter")||(b.barycenter=0,b.weight=0),b.barycenter=(b.barycenter*b.weight+_.order+w.order)/(b.weight+2),b.weight+=2}return b}function Nki(e,t){Zt(e,function(r){r.vs=MS(r.vs.map(function(a){return t[a]?t[a].vs:a}))})}function Oki(e,t){gl(e.barycenter)?(e.barycenter=t.barycenter,e.weight=t.weight):(e.barycenter=(e.barycenter*e.weight+t.barycenter*t.weight)/(e.weight+t.weight),e.weight+=t.weight)}function Lki(e){var t=Bqn(e),r=Fwn(e,Uw(1,t+1),"inEdges"),a=Fwn(e,Uw(t-1,-1,-1),"outEdges"),s=Ski(e);$wn(e,s);for(var o=Number.POSITIVE_INFINITY,u,h=0,f=0;f<4;++h,++f){Dki(h%2?r:a,h%4>=2),s=eke(e);var p=Eki(e,s);pu||h>t[f].lim));for(p=f,f=a;(f=e.parent(f))!==p;)o.push(f);return{path:s.concat(o.reverse()),lca:p}}function Bki(e){var t={},r=0;function a(s){var o=r;Zt(e.children(s),a),t[s]={low:o,lim:r++}}return Zt(e.children(),a),t}function Fki(e,t){var r={};function a(s,o){var u=0,h=0,f=s.length,p=i9(o);return Zt(o,function(m,b){var _=Uki(e,m),w=_?e.node(_).order:f;(_||m===p)&&(Zt(o.slice(h,b+1),function(S){Zt(e.predecessors(S),function(C){var A=e.node(C),k=A.order;(kp)&&Kqn(r,_,m)})})}function s(o,u){var h=-1,f,p=0;return Zt(u,function(m,b){if(e.node(m).dummy==="border"){var _=e.predecessors(m);_.length&&(f=e.node(_[0]).order,a(u,p,b,h,f),p=b,h=f)}a(u,p,u.length,f,o.length)}),u}return TS(t,s),r}function Uki(e,t){if(e.node(t).dummy)return VW(e.predecessors(t),function(r){return e.node(r).dummy})}function Kqn(e,t,r){if(t>r){var a=t;t=r,r=a}Object.prototype.hasOwnProperty.call(e,t)||Object.defineProperty(e,t,{enumerable:!0,configurable:!0,value:{},writable:!0});var s=e[t];Object.defineProperty(s,r,{enumerable:!0,configurable:!0,value:!0,writable:!0})}function zki(e,t,r){if(t>r){var a=t;t=r,r=a}return!!e[t]&&Object.prototype.hasOwnProperty.call(e[t],r)}function Gki(e,t,r,a){var s={},o={},u={};return Zt(t,function(h){Zt(h,function(f,p){s[f]=f,o[f]=f,u[f]=p})}),Zt(t,function(h){var f=-1;Zt(h,function(p){var m=a(p);if(m.length){m=PA(m,function(C){return u[C]});for(var b=(m.length-1)/2,_=Math.floor(b),w=Math.ceil(b);_<=w;++_){var S=m[_];o[p]===p&&f{var a=r(" buildLayoutGraph",()=>c6i(e));r(" runLayout",()=>Jki(a,r)),r(" updateInputGraph",()=>e6i(e,a))})}function Jki(e,t){t(" makeSpaceForEdgeLabels",()=>u6i(e)),t(" removeSelfEdges",()=>v6i(e)),t(" acyclic",()=>zAi(e)),t(" nestingGraph.run",()=>gki(e)),t(" rank",()=>dki(Pqn(e))),t(" injectEdgeLabelProxies",()=>h6i(e)),t(" removeEmptyRanks",()=>YAi(e)),t(" nestingGraph.cleanup",()=>yki(e)),t(" normalizeRanks",()=>VAi(e)),t(" assignRankMinMax",()=>d6i(e)),t(" removeEdgeLabelProxies",()=>f6i(e)),t(" normalize.run",()=>eki(e)),t(" parentDummyChains",()=>Mki(e)),t(" addBorderSegments",()=>KAi(e)),t(" order",()=>Lki(e)),t(" insertSelfEdges",()=>_6i(e)),t(" adjustCoordinateSystem",()=>XAi(e)),t(" position",()=>Qki(e)),t(" positionSelfEdges",()=>w6i(e)),t(" removeBorderNodes",()=>y6i(e)),t(" normalize.undo",()=>nki(e)),t(" fixupEdgeLabelCoords",()=>m6i(e)),t(" undoCoordinateSystem",()=>QAi(e)),t(" translateGraph",()=>p6i(e)),t(" assignNodeIntersects",()=>g6i(e)),t(" reversePoints",()=>b6i(e)),t(" acyclic.undo",()=>qAi(e))}function e6i(e,t){Zt(e.nodes(),function(r){var a=e.node(r),s=t.node(r);a&&(a.x=s.x,a.y=s.y,t.children(r).length&&(a.width=s.width,a.height=s.height))}),Zt(e.edges(),function(r){var a=e.edge(r),s=t.edge(r);a.points=s.points,Object.prototype.hasOwnProperty.call(s,"x")&&(a.x=s.x,a.y=s.y)}),e.graph().width=t.graph().width,e.graph().height=t.graph().height}var t6i=["nodesep","edgesep","ranksep","marginx","marginy"],n6i={ranksep:50,edgesep:20,nodesep:50,rankdir:"tb"},r6i=["acyclicer","ranker","rankdir","align"],i6i=["width","height"],a6i={width:0,height:0},s6i=["minlen","weight","width","height","labeloffset"],o6i={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},l6i=["labelpos"];function c6i(e){var t=new c_({multigraph:!0,compound:!0}),r=Unt(e.graph());return t.setGraph(XO({},n6i,$nt(r,t6i),lR(r,r6i))),Zt(e.nodes(),function(a){var s=Unt(e.node(a));t.setNode(a,BB($nt(s,i6i),a6i)),t.setParent(a,e.parent(a))}),Zt(e.edges(),function(a){var s=Unt(e.edge(a));t.setEdge(a,XO({},o6i,$nt(s,s6i),lR(s,l6i)))}),t}function u6i(e){var t=e.graph();t.ranksep/=2,Zt(e.edges(),function(r){var a=e.edge(r);a.minlen*=2,a.labelpos.toLowerCase()!=="c"&&(t.rankdir==="TB"||t.rankdir==="BT"?a.width+=a.labeloffset:a.height+=a.labeloffset)})}function h6i(e){Zt(e.edges(),function(t){var r=e.edge(t);if(r.width&&r.height){var a=e.node(t.v),s=e.node(t.w),o={rank:(s.rank-a.rank)/2+a.rank,e:t};jW(e,"edge-proxy",o,"_ep")}})}function d6i(e){var t=0;Zt(e.nodes(),function(r){var a=e.node(r);a.borderTop&&(a.minRank=e.node(a.borderTop).rank,a.maxRank=e.node(a.borderBottom).rank,t=i_(t,a.maxRank))}),e.graph().maxRank=t}function f6i(e){Zt(e.nodes(),function(t){var r=e.node(t);r.dummy==="edge-proxy"&&(e.edge(r.e).labelRank=r.rank,e.removeNode(t))})}function p6i(e){var t=Number.POSITIVE_INFINITY,r=0,a=Number.POSITIVE_INFINITY,s=0,o=e.graph(),u=o.marginx||0,h=o.marginy||0;function f(p){var m=p.x,b=p.y,_=p.width,w=p.height;t=Math.min(t,m-_/2),r=Math.max(r,m+_/2),a=Math.min(a,b-w/2),s=Math.max(s,b+w/2)}Zt(e.nodes(),function(p){f(e.node(p))}),Zt(e.edges(),function(p){var m=e.edge(p);Object.prototype.hasOwnProperty.call(m,"x")&&f(m)}),t-=u,a-=h,Zt(e.nodes(),function(p){var m=e.node(p);m.x-=t,m.y-=a}),Zt(e.edges(),function(p){var m=e.edge(p);Zt(m.points,function(b){b.x-=t,b.y-=a}),Object.prototype.hasOwnProperty.call(m,"x")&&(m.x-=t),Object.prototype.hasOwnProperty.call(m,"y")&&(m.y-=a)}),o.width=r-t+u,o.height=s-a+h}function g6i(e){Zt(e.edges(),function(t){var r=e.edge(t),a=e.node(t.v),s=e.node(t.w),o,u;r.points?(o=r.points[0],u=r.points[r.points.length-1]):(r.points=[],o=s,u=a),r.points.unshift(Nwn(a,o)),r.points.push(Nwn(s,u))})}function m6i(e){Zt(e.edges(),function(t){var r=e.edge(t);if(Object.prototype.hasOwnProperty.call(r,"x"))switch((r.labelpos==="l"||r.labelpos==="r")&&(r.width-=r.labeloffset),r.labelpos){case"l":r.x-=r.width/2+r.labeloffset;break;case"r":r.x+=r.width/2+r.labeloffset;break}})}function b6i(e){Zt(e.edges(),function(t){var r=e.edge(t);r.reversed&&r.points.reverse()})}function y6i(e){Zt(e.nodes(),function(t){if(e.children(t).length){var r=e.node(t),a=e.node(r.borderTop),s=e.node(r.borderBottom),o=e.node(i9(r.borderLeft)),u=e.node(i9(r.borderRight));r.width=Math.abs(u.x-o.x),r.height=Math.abs(s.y-a.y),r.x=o.x+r.width/2,r.y=a.y+r.height/2}}),Zt(e.nodes(),function(t){e.node(t).dummy==="border"&&e.removeNode(t)})}function v6i(e){Zt(e.edges(),function(t){if(t.v===t.w){var r=e.node(t.v);r.selfEdges||(r.selfEdges=[]),r.selfEdges.push({e:t,label:e.edge(t)}),e.removeEdge(t)}})}function _6i(e){var t=eke(e);Zt(t,function(r){var a=0;Zt(r,function(s,o){var u=e.node(s);u.order=o+a,Zt(u.selfEdges,function(h){jW(e,"selfedge",{width:h.label.width,height:h.label.height,rank:u.rank,order:o+ ++a,e:h.e,label:h.label},"_se")}),delete u.selfEdges})})}function w6i(e){Zt(e.nodes(),function(t){var r=e.node(t);if(r.dummy==="selfedge"){var a=e.node(r.e.v),s=a.x+a.width/2,o=a.y,u=r.x-s,h=a.height/2;e.setEdge(r.e,r.label),e.removeNode(t),r.label.points=[{x:s+2*u/3,y:o-h},{x:s+5*u/6,y:o-h},{x:s+u,y:o},{x:s+5*u/6,y:o+h},{x:s+2*u/3,y:o+h}],r.label.x=r.x,r.label.y=r.y}})}function $nt(e,t){return H9(lR(e,t),Number)}function Unt(e){var t={};return Zt(e,function(r,a){t[a.toLowerCase()]=r}),t}function ZC(e){var t={options:{directed:e.isDirected(),multigraph:e.isMultigraph(),compound:e.isCompound()},nodes:E6i(e),edges:x6i(e)};return gl(e.graph())||(t.value=ZAe(e.graph())),t}function E6i(e){return wo(e.nodes(),function(t){var r=e.node(t),a=e.parent(t),s={v:t};return gl(r)||(s.value=r),gl(a)||(s.parent=a),s})}function x6i(e){return wo(e.edges(),function(t){var r=e.edge(t),a={v:t.v,w:t.w};return gl(t.name)||(a.name=t.name),gl(r)||(a.value=r),a})}var Yl=new Map,aF=new Map,Qqn=new Map,S6i=X(()=>{aF.clear(),Qqn.clear(),Yl.clear()},"clear"),F3e=X((e,t)=>{const r=aF.get(t)||[];return it.trace("In isDescendant",t," ",e," = ",r.includes(e)),r.includes(e)},"isDescendant"),T6i=X((e,t)=>{const r=aF.get(t)||[];return it.info("Descendants of ",t," is ",r),it.info("Edge is ",e),e.v===t||e.w===t?!1:r?r.includes(e.v)||F3e(e.v,t)||F3e(e.w,t)||r.includes(e.w):(it.debug("Tilt, ",t,",not in descendants"),!1)},"edgeInCluster"),Zqn=X((e,t,r,a)=>{it.warn("Copying children of ",e,"root",a,"data",t.node(e),a);const s=t.children(e)||[];e!==a&&s.push(e),it.warn("Copying (nodes) clusterId",e,"nodes",s),s.forEach(o=>{if(t.children(o).length>0)Zqn(o,t,r,a);else{const u=t.node(o);it.info("cp ",o," to ",a," with parent ",e),r.setNode(o,u),a!==t.parent(o)&&(it.warn("Setting parent",o,t.parent(o)),r.setParent(o,t.parent(o))),e!==a&&o!==e?(it.debug("Setting parent",o,e),r.setParent(o,e)):(it.info("In copy ",e,"root",a,"data",t.node(e),a),it.debug("Not Setting parent for node=",o,"cluster!==rootId",e!==a,"node!==clusterId",o!==e));const h=t.edges(o);it.debug("Copying Edges",h),h.forEach(f=>{it.info("Edge",f);const p=t.edge(f.v,f.w,f.name);it.info("Edge data",p,a);try{T6i(f,a)?(it.info("Copying as ",f.v,f.w,p,f.name),r.setEdge(f.v,f.w,p,f.name),it.info("newGraph edges ",r.edges(),r.edge(r.edges()[0]))):it.info("Skipping copy of edge ",f.v,"-->",f.w," rootId: ",a," clusterId:",e)}catch(m){it.error(m)}})}it.debug("Removing node",o),t.removeNode(o)})},"copy"),Jqn=X((e,t)=>{const r=t.children(e);let a=[...r];for(const s of r)Qqn.set(s,e),a=[...a,...Jqn(s,t)];return a},"extractDescendants"),C6i=X((e,t,r)=>{const a=e.edges().filter(f=>f.v===t||f.w===t),s=e.edges().filter(f=>f.v===r||f.w===r),o=a.map(f=>({v:f.v===t?r:f.v,w:f.w===t?t:f.w})),u=s.map(f=>({v:f.v,w:f.w}));return o.filter(f=>u.some(p=>f.v===p.v&&f.w===p.w))},"findCommonEdges"),Uoe=X((e,t,r)=>{const a=t.children(e);if(it.trace("Searching children of id ",e,a),a.length<1)return e;let s;for(const o of a){const u=Uoe(o,t,r),h=C6i(t,r,u);if(u)if(h.length>0)s=u;else return u}return s},"findNonClusterChild"),Uwn=X(e=>!Yl.has(e)||!Yl.get(e).externalConnections?e:Yl.has(e)?Yl.get(e).id:e,"getAnchorId"),A6i=X((e,t)=>{if(!e||t>10){it.debug("Opting out, no graph ");return}else it.debug("Opting in, graph ");e.nodes().forEach(function(r){e.children(r).length>0&&(it.warn("Cluster identified",r," Replacement id in edges: ",Uoe(r,e,r)),aF.set(r,Jqn(r,e)),Yl.set(r,{id:Uoe(r,e,r),clusterData:e.node(r)}))}),e.nodes().forEach(function(r){const a=e.children(r),s=e.edges();a.length>0?(it.debug("Cluster identified",r,aF),s.forEach(o=>{const u=F3e(o.v,r),h=F3e(o.w,r);u^h&&(it.warn("Edge: ",o," leaves cluster ",r),it.warn("Descendants of XXX ",r,": ",aF.get(r)),Yl.get(r).externalConnections=!0)})):it.debug("Not a cluster ",r,aF)});for(let r of Yl.keys()){const a=Yl.get(r).id,s=e.parent(a);s!==r&&Yl.has(s)&&!Yl.get(s).externalConnections&&(Yl.get(r).id=s)}e.edges().forEach(function(r){const a=e.edge(r);it.warn("Edge "+r.v+" -> "+r.w+": "+JSON.stringify(r)),it.warn("Edge "+r.v+" -> "+r.w+": "+JSON.stringify(e.edge(r)));let s=r.v,o=r.w;if(it.warn("Fix XXX",Yl,"ids:",r.v,r.w,"Translating: ",Yl.get(r.v)," --- ",Yl.get(r.w)),Yl.get(r.v)||Yl.get(r.w)){if(it.warn("Fixing and trying - removing XXX",r.v,r.w,r.name),s=Uwn(r.v),o=Uwn(r.w),e.removeEdge(r.v,r.w,r.name),s!==r.v){const u=e.parent(s);Yl.get(u).externalConnections=!0,a.fromCluster=r.v}if(o!==r.w){const u=e.parent(o);Yl.get(u).externalConnections=!0,a.toCluster=r.w}it.warn("Fix Replacing with XXX",s,o,r.name),e.setEdge(s,o,a,r.name)}}),it.warn("Adjusted Graph",ZC(e)),eHn(e,0),it.trace(Yl)},"adjustClustersAndEdges"),eHn=X((e,t)=>{var s,o;if(it.warn("extractor - ",t,ZC(e),e.children("D")),t>10){it.error("Bailing out");return}let r=e.nodes(),a=!1;for(const u of r){const h=e.children(u);a=a||h.length>0}if(!a){it.debug("Done, no node has children",e.nodes());return}it.debug("Nodes = ",r,t);for(const u of r)if(it.debug("Extracting node",u,Yl,Yl.has(u)&&!Yl.get(u).externalConnections,!e.parent(u),e.node(u),e.children("D")," Depth ",t),!Yl.has(u))it.debug("Not a cluster",u,t);else if(!Yl.get(u).externalConnections&&e.children(u)&&e.children(u).length>0){it.warn("Cluster without external connections, without a parent and with children",u,t);let f=e.graph().rankdir==="TB"?"LR":"TB";(o=(s=Yl.get(u))==null?void 0:s.clusterData)!=null&&o.dir&&(f=Yl.get(u).clusterData.dir,it.warn("Fixing dir",Yl.get(u).clusterData.dir,f));const p=new c_({multigraph:!0,compound:!0}).setGraph({rankdir:f,nodesep:50,ranksep:50,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}});it.warn("Old graph before copy",ZC(e)),Zqn(u,e,p,u),e.setNode(u,{clusterNode:!0,id:u,clusterData:Yl.get(u).clusterData,label:Yl.get(u).label,graph:p}),it.warn("New graph after copy node: (",u,")",ZC(p)),it.debug("Old graph after copy",ZC(e))}else it.warn("Cluster ** ",u," **not meeting the criteria !externalConnections:",!Yl.get(u).externalConnections," no parent: ",!e.parent(u)," children ",e.children(u)&&e.children(u).length>0,e.children("D"),t),it.debug(Yl);r=e.nodes(),it.warn("New list of nodes",r);for(const u of r){const h=e.node(u);it.warn(" Now next level",u,h),h!=null&&h.clusterNode&&eHn(h.graph,t+1)}},"extractor"),tHn=X((e,t)=>{if(t.length===0)return[];let r=Object.assign([],t);return t.forEach(a=>{const s=e.children(a),o=tHn(e,s);r=[...r,...o]}),r},"sorter"),k6i=X(e=>tHn(e,e.children()),"sortNodesByHierarchy"),nHn=X(async(e,t,r,a,s,o)=>{it.warn("Graph in recursive render:XAX",ZC(t),s);const u=t.graph().rankdir;it.trace("Dir in recursive render - dir:",u);const h=e.insert("g").attr("class","root");t.nodes()?it.info("Recursive render XXX",t.nodes()):it.info("No nodes found for",t),t.edges().length>0&&it.info("Recursive edges",t.edge(t.edges()[0]));const f=h.insert("g").attr("class","clusters"),p=h.insert("g").attr("class","edgePaths"),m=h.insert("g").attr("class","edgeLabels"),b=h.insert("g").attr("class","nodes");await Promise.all(t.nodes().map(async function(C){const A=t.node(C);if(s!==void 0){const k=JSON.parse(JSON.stringify(s.clusterData));it.trace(`Setting data for parent cluster XXX + Node.id = `,C,` + data=`,k.height,` +Parent cluster`,s.height),t.setNode(s.id,k),t.parent(C)||(it.trace("Setting parent",C,s.id),t.setParent(C,s.id,k))}if(it.info("(Insert) Node XXX"+C+": "+JSON.stringify(t.node(C))),A!=null&&A.clusterNode){it.info("Cluster identified XBX",C,A.width,t.node(C));const{ranksep:k,nodesep:I}=t.graph();A.graph.setGraph({...A.graph.graph(),ranksep:k+25,nodesep:I});const N=await nHn(b,A.graph,r,a,t.node(C),o),L=N.elem;es(A,L),A.diff=N.diff||0,it.info("New compound node after recursive render XAX",C,"width",A.width,"height",A.height),jpi(L,A)}else t.children(C).length>0?(it.trace("Cluster - the non recursive path XBX",C,A.id,A,A.width,"Graph:",t),it.trace(Uoe(A.id,t)),Yl.set(A.id,{id:Uoe(A.id,t),node:A})):(it.trace("Node - the non recursive path XAX",C,b,t.node(C),u),await NAe(b,t.node(C),{config:o,dir:u}))})),await X(async()=>{const C=t.edges().map(async function(A){const k=t.edge(A.v,A.w,A.name);it.info("Edge "+A.v+" -> "+A.w+": "+JSON.stringify(A)),it.info("Edge "+A.v+" -> "+A.w+": ",A," ",JSON.stringify(t.edge(A))),it.info("Fix",Yl,"ids:",A.v,A.w,"Translating: ",Yl.get(A.v),Yl.get(A.w)),await i$n(m,k)});await Promise.all(C)},"processEdges")(),it.info("Graph before layout:",JSON.stringify(ZC(t))),it.info("############################################# XXX"),it.info("### Layout ### XXX"),it.info("############################################# XXX"),Xqn(t),it.info("Graph after layout:",JSON.stringify(ZC(t)));let w=0,{subGraphTitleTotalMargin:S}=oce(o);return await Promise.all(k6i(t).map(async function(C){var k;const A=t.node(C);if(it.info("Position XBX => "+C+": ("+A.x,","+A.y,") width: ",A.width," height: ",A.height),A!=null&&A.clusterNode)A.y+=S,it.info("A tainted cluster node XBX1",C,A.id,A.width,A.height,A.x,A.y,t.parent(C)),Yl.get(A.id).node=A,olt(A);else if(t.children(C).length>0){it.info("A pure cluster node XBX1",C,A.id,A.x,A.y,A.width,A.height,t.parent(C)),A.height+=S,t.node(A.parentId);const I=(A==null?void 0:A.padding)/2||0,N=((k=A==null?void 0:A.labelBBox)==null?void 0:k.height)||0,L=N-I||0;it.debug("OffsetY",L,"labelHeight",N,"halfPadding",I),await ept(f,A),Yl.get(A.id).node=A}else{const I=t.node(A.parentId);A.y+=S/2,it.info("A regular node XBX1 - using the padding",A.id,"parent",A.parentId,A.width,A.height,A.x,A.y,"offsetY",A.offsetY,"parent",I,I==null?void 0:I.offsetY,A),olt(A)}})),t.edges().forEach(function(C){const A=t.edge(C);it.info("Edge "+C.v+" -> "+C.w+": "+JSON.stringify(A),A),A.points.forEach(L=>L.y+=S/2);const k=t.node(C.v);var I=t.node(C.w);const N=o$n(p,A,Yl,r,k,I,a);a$n(A,N)}),t.nodes().forEach(function(C){const A=t.node(C);it.info(C,A.type,A.diff),A.isGroup&&(w=A.diff)}),it.warn("Returning from recursive render XAX",h,w),{elem:h,diff:w}},"recursiveRender"),R6i=X(async(e,t)=>{var o,u,h,f,p,m;const r=new c_({multigraph:!0,compound:!0}).setGraph({rankdir:e.direction,nodesep:((o=e.config)==null?void 0:o.nodeSpacing)||((h=(u=e.config)==null?void 0:u.flowchart)==null?void 0:h.nodeSpacing)||e.nodeSpacing,ranksep:((f=e.config)==null?void 0:f.rankSpacing)||((m=(p=e.config)==null?void 0:p.flowchart)==null?void 0:m.rankSpacing)||e.rankSpacing,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}}),a=t.select("g");u$n(a,e.markers,e.type,e.diagramId),Wpi(),Qpi(),Rpi(),S6i(),e.nodes.forEach(b=>{r.setNode(b.id,{...b}),b.parentId&&r.setParent(b.id,b.parentId)}),it.debug("Edges:",e.edges),e.edges.forEach(b=>{if(b.start===b.end){const _=b.start,w=_+"---"+_+"---1",S=_+"---"+_+"---2",C=r.node(_);r.setNode(w,{domId:w,id:w,parentId:C.parentId,labelStyle:"",label:"",padding:0,shape:"labelRect",style:"",width:10,height:10}),r.setParent(w,C.parentId),r.setNode(S,{domId:S,id:S,parentId:C.parentId,labelStyle:"",padding:0,shape:"labelRect",label:"",style:"",width:10,height:10}),r.setParent(S,C.parentId);const A=structuredClone(b),k=structuredClone(b),I=structuredClone(b);A.label="",A.arrowTypeEnd="none",A.id=_+"-cyclic-special-1",k.arrowTypeStart="none",k.arrowTypeEnd="none",k.id=_+"-cyclic-special-mid",I.label="",C.isGroup&&(A.fromCluster=_,I.toCluster=_),I.id=_+"-cyclic-special-2",I.arrowTypeStart="none",r.setEdge(_,w,A,_+"-cyclic-special-0"),r.setEdge(w,S,k,_+"-cyclic-special-1"),r.setEdge(S,_,I,_+"-cyce.length)&&(t=e.length);for(var r=0,a=Array(t);r=e.length?{done:!0}:{done:!1,value:e[a++]}},e:function(f){throw f},f:s}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var o,u=!0,h=!1;return{s:function(){r=r.call(e)},n:function(){var f=r.next();return u=f.done,f},e:function(f){h=!0,o=f},f:function(){try{u||r.return==null||r.return()}finally{if(h)throw o}}}}function rHn(e,t,r){return(t=iHn(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function D6i(e){if(typeof Symbol<"u"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function M6i(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var a,s,o,u,h=[],f=!0,p=!1;try{if(o=(r=r.call(e)).next,t===0){if(Object(r)!==r)return;f=!1}else for(;!(f=(a=o.call(r)).done)&&(h.push(a.value),h.length!==t);f=!0);}catch(m){p=!0,s=m}finally{try{if(!f&&r.return!=null&&(u=r.return(),Object(u)!==u))return}finally{if(p)throw s}}return h}}function P6i(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function B6i(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function S1(e,t){return N6i(e)||M6i(e,t)||hgt(e,t)||P6i()}function $3e(e){return O6i(e)||D6i(e)||hgt(e)||B6i()}function F6i(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var a=r.call(e,t);if(typeof a!="object")return a;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}function iHn(e){var t=F6i(e,"string");return typeof t=="symbol"?t:t+""}function Dp(e){"@babel/helpers - typeof";return Dp=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Dp(e)}function hgt(e,t){if(e){if(typeof e=="string")return tct(e,t);var r={}.toString.call(e).slice(8,-1);return r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set"?Array.from(e):r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?tct(e,t):void 0}}var vp=typeof window>"u"?null:window,zwn=vp?vp.navigator:null;vp&&vp.document;var $6i=Dp(""),aHn=Dp({}),U6i=Dp(function(){}),z6i=typeof HTMLElement>"u"?"undefined":Dp(HTMLElement),wce=function(t){return t&&t.instanceString&&Of(t.instanceString)?t.instanceString():null},Ns=function(t){return t!=null&&Dp(t)==$6i},Of=function(t){return t!=null&&Dp(t)===U6i},Mh=function(t){return!Bw(t)&&(Array.isArray?Array.isArray(t):t!=null&&t instanceof Array)},Vc=function(t){return t!=null&&Dp(t)===aHn&&!Mh(t)&&t.constructor===Object},G6i=function(t){return t!=null&&Dp(t)===aHn},aa=function(t){return t!=null&&Dp(t)===Dp(1)&&!isNaN(t)},q6i=function(t){return aa(t)&&Math.floor(t)===t},U3e=function(t){if(z6i!=="undefined")return t!=null&&t instanceof HTMLElement},Bw=function(t){return Ece(t)||sHn(t)},Ece=function(t){return wce(t)==="collection"&&t._private.single},sHn=function(t){return wce(t)==="collection"&&!t._private.single},dgt=function(t){return wce(t)==="core"},oHn=function(t){return wce(t)==="stylesheet"},H6i=function(t){return wce(t)==="event"},a9=function(t){return t==null?!0:!!(t===""||t.match(/^\s+$/))},V6i=function(t){return typeof HTMLElement>"u"?!1:t instanceof HTMLElement},Y6i=function(t){return Vc(t)&&aa(t.x1)&&aa(t.x2)&&aa(t.y1)&&aa(t.y2)},j6i=function(t){return G6i(t)&&Of(t.then)},W6i=function(){return zwn&&zwn.userAgent.match(/msie|trident|edge/i)},Uj=function(t,r){r||(r=function(){if(arguments.length===1)return arguments[0];if(arguments.length===0)return"undefined";for(var o=[],u=0;ur?1:0},t7i=function(t,r){return-1*cHn(t,r)},eo=Object.assign!=null?Object.assign.bind(Object):function(e){for(var t=arguments,r=1;r1&&(A-=1),A<1/6?S+(C-S)*6*A:A<1/2?C:A<2/3?S+(C-S)*(2/3-A)*6:S}var b=new RegExp("^"+Q6i+"$").exec(t);if(b){if(a=parseInt(b[1]),a<0?a=(360- -1*a%360)%360:a>360&&(a=a%360),a/=360,s=parseFloat(b[2]),s<0||s>100||(s=s/100,o=parseFloat(b[3]),o<0||o>100)||(o=o/100,u=b[4],u!==void 0&&(u=parseFloat(u),u<0||u>1)))return;if(s===0)h=f=p=Math.round(o*255);else{var _=o<.5?o*(1+s):o+s-o*s,w=2*o-_;h=Math.round(255*m(w,_,a+1/3)),f=Math.round(255*m(w,_,a)),p=Math.round(255*m(w,_,a-1/3))}r=[h,f,p,u]}return r},i7i=function(t){var r,a=new RegExp("^"+K6i+"$").exec(t);if(a){r=[];for(var s=[],o=1;o<=3;o++){var u=a[o];if(u[u.length-1]==="%"&&(s[o]=!0),u=parseFloat(u),s[o]&&(u=u/100*255),u<0||u>255)return;r.push(Math.floor(u))}var h=s[1]||s[2]||s[3],f=s[1]&&s[2]&&s[3];if(h&&!f)return;var p=a[4];if(p!==void 0){if(p=parseFloat(p),p<0||p>1)return;r.push(p)}}return r},a7i=function(t){return s7i[t.toLowerCase()]},uHn=function(t){return(Mh(t)?t:null)||a7i(t)||n7i(t)||i7i(t)||r7i(t)},s7i={transparent:[0,0,0,0],aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},hHn=function(t){for(var r=t.map,a=t.keys,s=a.length,o=0;o=f||Y<0||I&&W>=_}function U(){var z=t();if(F(z))return $(z);S=setTimeout(U,M(z))}function $(z){return S=void 0,N&&m?L(z):(m=b=void 0,w)}function G(){S!==void 0&&clearTimeout(S),A=0,m=C=b=S=void 0}function B(){return S===void 0?w:$(t())}function Z(){var z=t(),Y=F(z);if(m=arguments,b=this,C=z,Y){if(S===void 0)return P(C);if(I)return clearTimeout(S),S=setTimeout(U,f),L(C)}return S===void 0&&(S=setTimeout(U,f)),w}return Z.cancel=G,Z.flush=B,Z}return ert=u,ert}var m7i=g7i(),Cce=xce(m7i),trt=vp?vp.performance:null,pHn=trt&&trt.now?function(){return trt.now()}:function(){return Date.now()},b7i=function(){if(vp){if(vp.requestAnimationFrame)return function(e){vp.requestAnimationFrame(e)};if(vp.mozRequestAnimationFrame)return function(e){vp.mozRequestAnimationFrame(e)};if(vp.webkitRequestAnimationFrame)return function(e){vp.webkitRequestAnimationFrame(e)};if(vp.msRequestAnimationFrame)return function(e){vp.msRequestAnimationFrame(e)}}return function(e){e&&setTimeout(function(){e(pHn())},1e3/60)}}(),z3e=function(t){return b7i(t)},cR=pHn,FB=9261,gHn=65599,gV=5381,mHn=function(t){for(var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:FB,a=r,s;s=t.next(),!s.done;)a=a*gHn+s.value|0;return a},zoe=function(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:FB;return r*gHn+t|0},Goe=function(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:gV;return(r<<5)+r+t|0},y7i=function(t,r){return t*2097152+r},PN=function(t){return t[0]*2097152+t[1]},Rwe=function(t,r){return[zoe(t[0],r[0]),Goe(t[1],r[1])]},rEn=function(t,r){var a={value:0,done:!1},s=0,o=t.length,u={next:function(){return s=0;s--)t[s]===r&&t.splice(s,1)},bgt=function(t){t.splice(0,t.length)},k7i=function(t,r){for(var a=0;a"u"?"undefined":Dp(Set))!==I7i?Set:N7i,rke=function(t,r){var a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;if(t===void 0||r===void 0||!dgt(t)){jd("An element must have a core reference and parameters set");return}var s=r.group;if(s==null&&(r.data&&r.data.source!=null&&r.data.target!=null?s="edges":s="nodes"),s!=="nodes"&&s!=="edges"){jd("An element must be of type `nodes` or `edges`; you specified `"+s+"`");return}this.length=1,this[0]=this;var o=this._private={cy:t,single:!0,data:r.data||{},position:r.position||{x:0,y:0},autoWidth:void 0,autoHeight:void 0,autoPadding:void 0,compoundBoundsClean:!1,listeners:[],group:s,style:{},rstyle:{},styleCxts:[],styleKeys:{},removed:!0,selected:!!r.selected,selectable:r.selectable===void 0?!0:!!r.selectable,locked:!!r.locked,grabbed:!1,grabbable:r.grabbable===void 0?!0:!!r.grabbable,pannable:r.pannable===void 0?s==="edges":!!r.pannable,active:!1,classes:new WW,animation:{current:[],queue:[]},rscratch:{},scratch:r.scratch||{},edges:[],children:[],parent:r.parent&&r.parent.isNode()?r.parent:null,traversalCache:{},backgrounding:!1,bbCache:null,bbCacheShift:{x:0,y:0},bodyBounds:null,overlayBounds:null,labelBounds:{all:null,source:null,target:null,main:null},arrowBounds:{source:null,target:null,"mid-source":null,"mid-target":null}};if(o.position.x==null&&(o.position.x=0),o.position.y==null&&(o.position.y=0),r.renderedPosition){var u=r.renderedPosition,h=t.pan(),f=t.zoom();o.position={x:(u.x-h.x)/f,y:(u.y-h.y)/f}}var p=[];Mh(r.classes)?p=r.classes:Ns(r.classes)&&(p=r.classes.split(/\s+/));for(var m=0,b=p.length;mI?1:0},m=function(k,I,N,L,P){var M;if(N==null&&(N=0),P==null&&(P=a),N<0)throw new Error("lo must be non-negative");for(L==null&&(L=k.length);NG;0<=G?$++:$--)U.push($);return U}).apply(this).reverse(),F=[],L=0,P=M.length;LB;0<=B?++U:--U)Z.push(u(k,N));return Z},C=function(k,I,N,L){var P,M,F;for(L==null&&(L=a),P=k[N];N>I;){if(F=N-1>>1,M=k[F],L(P,M)<0){k[N]=M,N=F;continue}break}return k[N]=P},A=function(k,I,N){var L,P,M,F,U;for(N==null&&(N=a),P=k.length,U=I,M=k[I],L=2*I+1;L0;){var M=I.pop(),F=A(M),U=M.id();if(_[U]=F,F!==1/0)for(var $=M.neighborhood().intersect(S),G=0;G<$.length;G++){var B=$[G],Z=B.id(),z=P(M,B),Y=F+z.dist;Y0)for(j.unshift(V);b[te];){var ne=b[te];j.unshift(ne.edge),j.unshift(ne.node),ee=ne.node,te=ee.id()}return h.spawn(j)}}}},F7i={kruskal:function(t){t=t||function(N){return 1};for(var r=this.byGroup(),a=r.nodes,s=r.edges,o=a.length,u=new Array(o),h=a,f=function(L){for(var P=0;P0;){if(P(),F++,L===m){for(var U=[],$=o,G=m,B=k[G];U.unshift($),B!=null&&U.unshift(B),$=A[G],$!=null;)G=$.id(),B=k[G];return{found:!0,distance:b[L],path:this.spawn(U),steps:F}}w[L]=!0;for(var Z=N._private.edges,z=0;zB&&(S[G]=B,I[G]=$,N[G]=P),!o){var Z=$*m+U;!o&&S[Z]>B&&(S[Z]=B,I[Z]=U,N[Z]=P)}}}for(var z=0;z1&&arguments[1]!==void 0?arguments[1]:u,ot=N(Oe),sn=[],Kt=ot;;){if(Kt==null)return r.spawn();var Ft=I(Kt),Je=Ft.edge,ht=Ft.pred;if(sn.unshift(Kt[0]),Kt.same(Dt)&&sn.length>0)break;Je!=null&&sn.unshift(Je),Kt=ht}return f.spawn(sn)},M=0;M=0;m--){var b=p[m],_=b[1],w=b[2];(r[_]===h&&r[w]===f||r[_]===f&&r[w]===h)&&p.splice(m,1)}for(var S=0;Ss;){var o=Math.floor(Math.random()*r.length);r=Y7i(o,t,r),a--}return r},j7i={kargerStein:function(){var t=this,r=this.byGroup(),a=r.nodes,s=r.edges;s.unmergeBy(function(j){return j.isLoop()});var o=a.length,u=s.length,h=Math.ceil(Math.pow(Math.log(o)/Math.LN2,2)),f=Math.floor(o/V7i);if(o<2){jd("At least 2 nodes are required for Karger-Stein algorithm");return}for(var p=[],m=0;m1&&arguments[1]!==void 0?arguments[1]:0,a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:t.length,s=1/0,o=r;o1&&arguments[1]!==void 0?arguments[1]:0,a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:t.length,s=-1/0,o=r;o1&&arguments[1]!==void 0?arguments[1]:0,a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:t.length,s=0,o=0,u=r;u1&&arguments[1]!==void 0?arguments[1]:0,a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:t.length,s=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,o=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,u=arguments.length>5&&arguments[5]!==void 0?arguments[5]:!0;s?t=t.slice(r,a):(a0&&t.splice(0,r));for(var h=0,f=t.length-1;f>=0;f--){var p=t[f];u?isFinite(p)||(t[f]=-1/0,h++):t.splice(f,1)}o&&t.sort(function(_,w){return _-w});var m=t.length,b=Math.floor(m/2);return m%2!==0?t[b+1+h]:(t[b-1+h]+t[b+h])/2},J7i=function(t){return Math.PI*t/180},Iwe=function(t,r){return Math.atan2(r,t)-Math.PI/2},ygt=Math.log2||function(e){return Math.log(e)/Math.log(2)},vgt=function(t){return t>0?1:t<0?-1:0},XF=function(t,r){return Math.sqrt(NB(t,r))},NB=function(t,r){var a=r.x-t.x,s=r.y-t.y;return a*a+s*s},eRi=function(t){for(var r=t.length,a=0,s=0;s=t.x1&&t.y2>=t.y1)return{x1:t.x1,y1:t.y1,x2:t.x2,y2:t.y2,w:t.x2-t.x1,h:t.y2-t.y1};if(t.w!=null&&t.h!=null&&t.w>=0&&t.h>=0)return{x1:t.x1,y1:t.y1,x2:t.x1+t.w,y2:t.y1+t.h,w:t.w,h:t.h}}},nRi=function(t){return{x1:t.x1,x2:t.x2,w:t.w,y1:t.y1,y2:t.y2,h:t.h}},rRi=function(t){t.x1=1/0,t.y1=1/0,t.x2=-1/0,t.y2=-1/0,t.w=0,t.h=0},iRi=function(t,r){t.x1=Math.min(t.x1,r.x1),t.x2=Math.max(t.x2,r.x2),t.w=t.x2-t.x1,t.y1=Math.min(t.y1,r.y1),t.y2=Math.max(t.y2,r.y2),t.h=t.y2-t.y1},xHn=function(t,r,a){t.x1=Math.min(t.x1,r),t.x2=Math.max(t.x2,r),t.w=t.x2-t.x1,t.y1=Math.min(t.y1,a),t.y2=Math.max(t.y2,a),t.h=t.y2-t.y1},wxe=function(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return t.x1-=r,t.x2+=r,t.y1-=r,t.y2+=r,t.w=t.x2-t.x1,t.h=t.y2-t.y1,t},Exe=function(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[0],a,s,o,u;if(r.length===1)a=s=o=u=r[0];else if(r.length===2)a=o=r[0],u=s=r[1];else if(r.length===4){var h=S1(r,4);a=h[0],s=h[1],o=h[2],u=h[3]}return t.x1-=u,t.x2+=s,t.y1-=a,t.y2+=o,t.w=t.x2-t.x1,t.h=t.y2-t.y1,t},cEn=function(t,r){t.x1=r.x1,t.y1=r.y1,t.x2=r.x2,t.y2=r.y2,t.w=t.x2-t.x1,t.h=t.y2-t.y1},_gt=function(t,r){return!(t.x1>r.x2||r.x1>t.x2||t.x2r.y2||r.y1>t.y2)},bO=function(t,r,a){return t.x1<=r&&r<=t.x2&&t.y1<=a&&a<=t.y2},uEn=function(t,r){return bO(t,r.x,r.y)},SHn=function(t,r){return bO(t,r.x1,r.y1)&&bO(t,r.x2,r.y2)},aRi=(irt=Math.hypot)!==null&&irt!==void 0?irt:function(e,t){return Math.sqrt(e*e+t*t)};function sRi(e,t){if(e.length<3)throw new Error("Need at least 3 vertices");var r=function(U,$){return{x:U.x+$.x,y:U.y+$.y}},a=function(U,$){return{x:U.x-$.x,y:U.y-$.y}},s=function(U,$){return{x:U.x*$,y:U.y*$}},o=function(U,$){return U.x*$.y-U.y*$.x},u=function(U){var $=aRi(U.x,U.y);return $===0?{x:0,y:0}:{x:U.x/$,y:U.y/$}},h=function(U){for(var $=0,G=0;G7&&arguments[7]!==void 0?arguments[7]:"auto",p=f==="auto"?o9(o,u):f,m=o/2,b=u/2;p=Math.min(p,m,b);var _=p!==m,w=p!==b,S;if(_){var C=a-m+p-h,A=s-b-h,k=a+m-p+h,I=A;if(S=yO(t,r,a,s,C,A,k,I,!1),S.length>0)return S}if(w){var N=a+m+h,L=s-b+p-h,P=N,M=s+b-p+h;if(S=yO(t,r,a,s,N,L,P,M,!1),S.length>0)return S}if(_){var F=a-m+p-h,U=s+b+h,$=a+m-p+h,G=U;if(S=yO(t,r,a,s,F,U,$,G,!1),S.length>0)return S}if(w){var B=a-m-h,Z=s-b+p-h,z=B,Y=s+b-p+h;if(S=yO(t,r,a,s,B,Z,z,Y,!1),S.length>0)return S}var W;{var Q=a-m+p,V=s-b+p;if(W=Yie(t,r,a,s,Q,V,p+h),W.length>0&&W[0]<=Q&&W[1]<=V)return[W[0],W[1]]}{var j=a+m-p,ee=s-b+p;if(W=Yie(t,r,a,s,j,ee,p+h),W.length>0&&W[0]>=j&&W[1]<=ee)return[W[0],W[1]]}{var te=a+m-p,ne=s+b-p;if(W=Yie(t,r,a,s,te,ne,p+h),W.length>0&&W[0]>=te&&W[1]>=ne)return[W[0],W[1]]}{var se=a-m+p,ie=s+b-p;if(W=Yie(t,r,a,s,se,ie,p+h),W.length>0&&W[0]<=se&&W[1]>=ie)return[W[0],W[1]]}return[]},lRi=function(t,r,a,s,o,u,h){var f=h,p=Math.min(a,o),m=Math.max(a,o),b=Math.min(s,u),_=Math.max(s,u);return p-f<=t&&t<=m+f&&b-f<=r&&r<=_+f},cRi=function(t,r,a,s,o,u,h,f,p){var m={x1:Math.min(a,h,o)-p,x2:Math.max(a,h,o)+p,y1:Math.min(s,f,u)-p,y2:Math.max(s,f,u)+p};return!(tm.x2||rm.y2)},uRi=function(t,r,a,s){a-=s;var o=r*r-4*t*a;if(o<0)return[];var u=Math.sqrt(o),h=2*t,f=(-r+u)/h,p=(-r-u)/h;return[f,p]},hRi=function(t,r,a,s,o){var u=1e-5;t===0&&(t=u),r/=t,a/=t,s/=t;var h,f,p,m,b,_,w,S;if(f=(3*a-r*r)/9,p=-(27*s)+r*(9*a-2*(r*r)),p/=54,h=f*f*f+p*p,o[1]=0,w=r/3,h>0){b=p+Math.sqrt(h),b=b<0?-Math.pow(-b,1/3):Math.pow(b,1/3),_=p-Math.sqrt(h),_=_<0?-Math.pow(-_,1/3):Math.pow(_,1/3),o[0]=-w+b+_,w+=(b+_)/2,o[4]=o[2]=-w,w=Math.sqrt(3)*(-_+b)/2,o[3]=w,o[5]=-w;return}if(o[5]=o[3]=0,h===0){S=p<0?-Math.pow(-p,1/3):Math.pow(p,1/3),o[0]=-w+2*S,o[4]=o[2]=-(S+w);return}f=-f,m=f*f*f,m=Math.acos(p/Math.sqrt(m)),S=2*Math.sqrt(f),o[0]=-w+S*Math.cos(m/3),o[2]=-w+S*Math.cos((m+2*Math.PI)/3),o[4]=-w+S*Math.cos((m+4*Math.PI)/3)},dRi=function(t,r,a,s,o,u,h,f){var p=1*a*a-4*a*o+2*a*h+4*o*o-4*o*h+h*h+s*s-4*s*u+2*s*f+4*u*u-4*u*f+f*f,m=1*9*a*o-3*a*a-3*a*h-6*o*o+3*o*h+9*s*u-3*s*s-3*s*f-6*u*u+3*u*f,b=1*3*a*a-6*a*o+a*h-a*t+2*o*o+2*o*t-h*t+3*s*s-6*s*u+s*f-s*r+2*u*u+2*u*r-f*r,_=1*a*o-a*a+a*t-o*t+s*u-s*s+s*r-u*r,w=[];hRi(p,m,b,_,w);for(var S=1e-7,C=[],A=0;A<6;A+=2)Math.abs(w[A+1])=0&&w[A]<=1&&C.push(w[A]);C.push(1),C.push(0);for(var k=-1,I,N,L,P=0;P=0?Lp?(t-o)*(t-o)+(r-u)*(r-u):m-_},$2=function(t,r,a){for(var s,o,u,h,f,p=0,m=0;m=t&&t>=u||s<=t&&t<=u)f=(t-s)/(u-s)*(h-o)+o,f>r&&p++;else continue;return p%2!==0},uR=function(t,r,a,s,o,u,h,f,p){var m=new Array(a.length),b;f[0]!=null?(b=Math.atan(f[1]/f[0]),f[0]<0?b=b+Math.PI/2:b=-b-Math.PI/2):b=f;for(var _=Math.cos(-b),w=Math.sin(-b),S=0;S0){var A=H3e(m,-p);C=q3e(A)}else C=m;return $2(t,r,C)},pRi=function(t,r,a,s,o,u,h,f){for(var p=new Array(a.length*2),m=0;m=0&&A<=1&&I.push(A),k>=0&&k<=1&&I.push(k),I.length===0)return[];var N=I[0]*f[0]+t,L=I[0]*f[1]+r;if(I.length>1){if(I[0]==I[1])return[N,L];var P=I[1]*f[0]+t,M=I[1]*f[1]+r;return[N,L,P,M]}else return[N,L]},art=function(t,r,a){return r<=t&&t<=a||a<=t&&t<=r?t:t<=r&&r<=a||a<=r&&r<=t?r:a},yO=function(t,r,a,s,o,u,h,f,p){var m=t-o,b=a-t,_=h-o,w=r-u,S=s-r,C=f-u,A=_*w-C*m,k=b*w-S*m,I=C*b-_*S;if(I!==0){var N=A/I,L=k/I,P=.001,M=0-P,F=1+P;return M<=N&&N<=F&&M<=L&&L<=F?[t+N*b,r+N*S]:p?[t+N*b,r+N*S]:[]}else return A===0||k===0?art(t,a,h)===h?[h,f]:art(t,a,o)===o?[o,u]:art(o,h,a)===a?[a,s]:[]:[]},mRi=function(t,r,a,s,o){var u=[],h=s/2,f=o/2,p=r,m=a;u.push({x:p+h*t[0],y:m+f*t[1]});for(var b=1;b0){var C=H3e(b,-f);w=q3e(C)}else w=b}else w=a;for(var A,k,I,N,L=0;L2){for(var S=[m[0],m[1]],C=Math.pow(S[0]-t,2)+Math.pow(S[1]-r,2),A=1;Am&&(m=L)},get:function(N){return p[N]}},_=0;_0?W=Y.edgesTo(z)[0]:W=z.edgesTo(Y)[0];var Q=s(W);z=z.id(),F[z]>F[B]+Q&&(F[z]=F[B]+Q,U.nodes.indexOf(z)<0?U.push(z):U.updateItem(z),M[z]=0,P[z]=[]),F[z]==F[B]+Q&&(M[z]=M[z]+M[B],P[z].push(B))}else for(var V=0;V0;){for(var ne=L.pop(),se=0;se0&&h.push(a[f]);h.length!==0&&o.push(s.collection(h))}return o},NRi=function(t,r){for(var a=0;a5&&arguments[5]!==void 0?arguments[5]:DRi,h=s,f,p,m=0;m=2?eie(t,r,a,0,gEn,MRi):eie(t,r,a,0,pEn)},squaredEuclidean:function(t,r,a){return eie(t,r,a,0,gEn)},manhattan:function(t,r,a){return eie(t,r,a,0,pEn)},max:function(t,r,a){return eie(t,r,a,-1/0,PRi)}};zj["squared-euclidean"]=zj.squaredEuclidean;zj.squaredeuclidean=zj.squaredEuclidean;function ake(e,t,r,a,s,o){var u;return Of(e)?u=e:u=zj[e]||zj.euclidean,t===0&&Of(e)?u(s,o):u(t,r,a,s,o)}var BRi=Nm({k:2,m:2,sensitivityThreshold:1e-4,distance:"euclidean",maxIterations:10,attributes:[],testMode:!1,testCentroids:null}),Egt=function(t){return BRi(t)},V3e=function(t,r,a,s,o){var u=o!=="kMedoids",h=u?function(b){return a[b]}:function(b){return s[b](a)},f=function(_){return s[_](r)},p=a,m=r;return ake(t,s.length,h,f,p,m)},ort=function(t,r,a){for(var s=a.length,o=new Array(s),u=new Array(s),h=new Array(r),f=null,p=0;pa)return!1}return!0},URi=function(t,r,a){for(var s=0;sh&&(h=r[p][m],f=m);o[f].push(t[p])}for(var b=0;b=o.threshold||o.mode==="dendrogram"&&t.length===1)return!1;var S=r[u],C=r[s[u]],A;o.mode==="dendrogram"?A={left:S,right:C,key:S.key}:A={value:S.value.concat(C.value),key:S.key},t[S.index]=A,t.splice(C.index,1),r[S.key]=A;for(var k=0;ka[C.key][I.key]&&(f=a[C.key][I.key])):o.linkage==="max"?(f=a[S.key][I.key],a[S.key][I.key]0&&s.push(o);return s},wEn=function(t,r,a){for(var s=[],o=0;oh&&(u=p,h=r[o*t+p])}u>0&&s.push(u)}for(var m=0;mp&&(f=m,p=b)}a[o]=u[f]}return s=wEn(t,r,a),s},EEn=function(t){for(var r=this.cy(),a=this.nodes(),s=ZRi(t),o={},u=0;u=B?(Z=B,B=Y,z=W):Y>Z&&(Z=Y);for(var Q=0;Q0?1:0;F[$%s.minIterations*h+se]=ie,ne+=ie}if(ne>0&&($>=s.minIterations-1||$==s.maxIterations-1)){for(var ge=0,ce=0;ce1||M>1)&&(h=!0),b[N]=[],I.outgoers().forEach(function(U){U.isEdge()&&b[N].push(U.id())})}else _[N]=[void 0,I.target().id()]}):u.forEach(function(I){var N=I.id();if(I.isNode()){var L=I.degree(!0);L%2&&(f?p?h=!0:p=N:f=N),b[N]=[],I.connectedEdges().forEach(function(P){return b[N].push(P.id())})}else _[N]=[I.source().id(),I.target().id()]});var w={found:!1,trail:void 0};if(h)return w;if(p&&f)if(o){if(m&&p!=m)return w;m=p}else{if(m&&p!=m&&f!=m)return w;m||(m=p)}else m||(m=u[0].id());var S=function(N){for(var L=N,P=[N],M,F,U;b[L].length;)M=b[L].shift(),F=_[M][0],U=_[M][1],L!=U?(b[U]=b[U].filter(function($){return $!=M}),L=U):!o&&L!=F&&(b[F]=b[F].filter(function($){return $!=M}),L=F),P.unshift(M),P.unshift(L);return P},C=[],A=[];for(A=S(m);A.length!=1;)b[A[0]].length==0?(C.unshift(u.getElementById(A.shift())),C.unshift(u.getElementById(A.shift()))):A=S(A.shift()).concat(A);C.unshift(u.getElementById(A.shift()));for(var k in b)if(b[k].length)return w;return w.found=!0,w.trail=this.spawn(C,!0),w}},Owe=function(){var t=this,r={},a=0,s=0,o=[],u=[],h={},f=function(_,w){for(var S=u.length-1,C=[],A=t.spawn();u[S].x!=_||u[S].y!=w;)C.push(u.pop().edge),S--;C.push(u.pop().edge),C.forEach(function(k){var I=k.connectedNodes().intersection(t);A.merge(k),I.forEach(function(N){var L=N.id(),P=N.connectedEdges().intersection(t);A.merge(N),r[L].cutVertex?A.merge(P.filter(function(M){return M.isLoop()})):A.merge(P)})}),o.push(A)},p=function(_,w,S){_===S&&(s+=1),r[w]={id:a,low:a++,cutVertex:!1};var C=t.getElementById(w).connectedEdges().intersection(t);if(C.size()===0)o.push(t.spawn(t.getElementById(w)));else{var A,k,I,N;C.forEach(function(L){A=L.source().id(),k=L.target().id(),I=A===w?k:A,I!==S&&(N=L.id(),h[N]||(h[N]=!0,u.push({x:w,y:I,edge:L})),I in r?r[w].low=Math.min(r[w].low,r[I].id):(p(_,I,w),r[w].low=Math.min(r[w].low,r[I].low),r[w].id<=r[I].low&&(r[w].cutVertex=!0,f(w,I))))})}};t.forEach(function(b){if(b.isNode()){var _=b.id();_ in r||(s=0,p(_,_),r[_].cutVertex=s>1)}});var m=Object.keys(r).filter(function(b){return r[b].cutVertex}).map(function(b){return t.getElementById(b)});return{cut:t.spawn(m),components:o}},s8i={hopcroftTarjanBiconnected:Owe,htbc:Owe,htb:Owe,hopcroftTarjanBiconnectedComponents:Owe},Lwe=function(){var t=this,r={},a=0,s=[],o=[],u=t.spawn(t),h=function(p){o.push(p),r[p]={index:a,low:a++,explored:!1};var m=t.getElementById(p).connectedEdges().intersection(t);if(m.forEach(function(C){var A=C.target().id();A!==p&&(A in r||h(A),r[A].explored||(r[p].low=Math.min(r[p].low,r[A].low)))}),r[p].index===r[p].low){for(var b=t.spawn();;){var _=o.pop();if(b.merge(t.getElementById(_)),r[_].low=r[p].index,r[_].explored=!0,_===p)break}var w=b.edgesWith(b),S=b.merge(w);s.push(S),u=u.difference(S)}};return t.forEach(function(f){if(f.isNode()){var p=f.id();p in r||h(p)}}),{cut:u,components:s}},o8i={tarjanStronglyConnected:Lwe,tsc:Lwe,tscc:Lwe,tarjanStronglyConnectedComponents:Lwe},OHn={};[qoe,B7i,F7i,U7i,G7i,H7i,j7i,_Ri,nY,rY,ict,LRi,YRi,XRi,r8i,a8i,s8i,o8i].forEach(function(e){eo(OHn,e)});/*! +Embeddable Minimum Strictly-Compliant Promises/A+ 1.1.1 Thenable +Copyright (c) 2013-2014 Ralf S. Engelschall (http://engelschall.com) +Licensed under The MIT License (http://opensource.org/licenses/MIT) +*/var LHn=0,DHn=1,MHn=2,lT=function(t){if(!(this instanceof lT))return new lT(t);this.id="Thenable/1.0.7",this.state=LHn,this.fulfillValue=void 0,this.rejectReason=void 0,this.onFulfilled=[],this.onRejected=[],this.proxy={then:this.then.bind(this)},typeof t=="function"&&t.call(this,this.fulfill.bind(this),this.reject.bind(this))};lT.prototype={fulfill:function(t){return xEn(this,DHn,"fulfillValue",t)},reject:function(t){return xEn(this,MHn,"rejectReason",t)},then:function(t,r){var a=this,s=new lT;return a.onFulfilled.push(TEn(t,s,"fulfill")),a.onRejected.push(TEn(r,s,"reject")),PHn(a),s.proxy}};var xEn=function(t,r,a,s){return t.state===LHn&&(t.state=r,t[a]=s,PHn(t)),t},PHn=function(t){t.state===DHn?SEn(t,"onFulfilled",t.fulfillValue):t.state===MHn&&SEn(t,"onRejected",t.rejectReason)},SEn=function(t,r,a){if(t[r].length!==0){var s=t[r];t[r]=[];var o=function(){for(var h=0;h0}},clearQueue:function(){return function(){var r=this,a=r.length!==void 0,s=a?r:[r],o=this._private.cy||this;if(!o.styleEnabled())return this;for(var u=0;u-1}return Rrt=t,Rrt}var Irt,WEn;function C8i(){if(WEn)return Irt;WEn=1;var e=lke();function t(r,a){var s=this.__data__,o=e(s,r);return o<0?(++this.size,s.push([r,a])):s[o][1]=a,this}return Irt=t,Irt}var Nrt,KEn;function A8i(){if(KEn)return Nrt;KEn=1;var e=E8i(),t=x8i(),r=S8i(),a=T8i(),s=C8i();function o(u){var h=-1,f=u==null?0:u.length;for(this.clear();++h-1&&a%1==0&&a0&&this.spawn(s).updateStyle().emit("class"),r},addClass:function(t){return this.toggleClass(t,!0)},hasClass:function(t){var r=this[0];return r!=null&&r._private.classes.has(t)},toggleClass:function(t,r){Mh(t)||(t=t.match(/\S+/g)||[]);for(var a=this,s=r===void 0,o=[],u=0,h=a.length;u0&&this.spawn(o).updateStyle().emit("class"),a},removeClass:function(t){return this.toggleClass(t,!1)},flashClass:function(t,r){var a=this;if(r==null)r=250;else if(r===0)return a;return a.addClass(t),setTimeout(function(){a.removeClass(t)},r),a}};xxe.className=xxe.classNames=xxe.classes;var Hc={metaChar:"[\\!\\\"\\#\\$\\%\\&\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]",comparatorOp:"=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=",boolOp:"\\?|\\!|\\^",string:`"(?:\\\\"|[^"])*"|'(?:\\\\'|[^'])*'`,number:Ip,meta:"degree|indegree|outdegree",separator:"\\s*,\\s*",descendant:"\\s+",child:"\\s+>\\s+",subject:"\\$",group:"node|edge|\\*",directedEdge:"\\s+->\\s+",undirectedEdge:"\\s+<->\\s+"};Hc.variable="(?:[\\w-.]|(?:\\\\"+Hc.metaChar+"))+";Hc.className="(?:[\\w-]|(?:\\\\"+Hc.metaChar+"))+";Hc.value=Hc.string+"|"+Hc.number;Hc.id=Hc.variable;(function(){var e,t,r;for(e=Hc.comparatorOp.split("|"),r=0;r=0)&&t!=="="&&(Hc.comparatorOp+="|\\!"+t)})();var yh=function(){return{checks:[]}},Ua={GROUP:0,COLLECTION:1,FILTER:2,DATA_COMPARE:3,DATA_EXIST:4,DATA_BOOL:5,META_COMPARE:6,STATE:7,ID:8,CLASS:9,UNDIRECTED_EDGE:10,DIRECTED_EDGE:11,NODE_SOURCE:12,NODE_TARGET:13,NODE_NEIGHBOR:14,CHILD:15,DESCENDANT:16,PARENT:17,ANCESTOR:18,COMPOUND_SPLIT:19,TRUE:20},lct=[{selector:":selected",matches:function(t){return t.selected()}},{selector:":unselected",matches:function(t){return!t.selected()}},{selector:":selectable",matches:function(t){return t.selectable()}},{selector:":unselectable",matches:function(t){return!t.selectable()}},{selector:":locked",matches:function(t){return t.locked()}},{selector:":unlocked",matches:function(t){return!t.locked()}},{selector:":visible",matches:function(t){return t.visible()}},{selector:":hidden",matches:function(t){return!t.visible()}},{selector:":transparent",matches:function(t){return t.transparent()}},{selector:":grabbed",matches:function(t){return t.grabbed()}},{selector:":free",matches:function(t){return!t.grabbed()}},{selector:":removed",matches:function(t){return t.removed()}},{selector:":inside",matches:function(t){return!t.removed()}},{selector:":grabbable",matches:function(t){return t.grabbable()}},{selector:":ungrabbable",matches:function(t){return!t.grabbable()}},{selector:":animated",matches:function(t){return t.animated()}},{selector:":unanimated",matches:function(t){return!t.animated()}},{selector:":parent",matches:function(t){return t.isParent()}},{selector:":childless",matches:function(t){return t.isChildless()}},{selector:":child",matches:function(t){return t.isChild()}},{selector:":orphan",matches:function(t){return t.isOrphan()}},{selector:":nonorphan",matches:function(t){return t.isChild()}},{selector:":compound",matches:function(t){return t.isNode()?t.isParent():t.source().isParent()||t.target().isParent()}},{selector:":loop",matches:function(t){return t.isLoop()}},{selector:":simple",matches:function(t){return t.isSimple()}},{selector:":active",matches:function(t){return t.active()}},{selector:":inactive",matches:function(t){return!t.active()}},{selector:":backgrounding",matches:function(t){return t.backgrounding()}},{selector:":nonbackgrounding",matches:function(t){return!t.backgrounding()}}].sort(function(e,t){return t7i(e.selector,t.selector)}),iIi=function(){for(var e={},t,r=0;r0&&m.edgeCount>0)return Uu("The selector `"+t+"` is invalid because it uses both a compound selector and an edge selector"),!1;if(m.edgeCount>1)return Uu("The selector `"+t+"` is invalid because it uses multiple edge selectors"),!1;m.edgeCount===1&&Uu("The selector `"+t+"` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.")}return!0},uIi=function(){if(this.toStringCache!=null)return this.toStringCache;for(var t=function(m){return m??""},r=function(m){return Ns(m)?'"'+m+'"':t(m)},a=function(m){return" "+m+" "},s=function(m,b){var _=m.type,w=m.value;switch(_){case Ua.GROUP:{var S=t(w);return S.substring(0,S.length-1)}case Ua.DATA_COMPARE:{var C=m.field,A=m.operator;return"["+C+a(t(A))+r(w)+"]"}case Ua.DATA_BOOL:{var k=m.operator,I=m.field;return"["+t(k)+I+"]"}case Ua.DATA_EXIST:{var N=m.field;return"["+N+"]"}case Ua.META_COMPARE:{var L=m.operator,P=m.field;return"[["+P+a(t(L))+r(w)+"]]"}case Ua.STATE:return w;case Ua.ID:return"#"+w;case Ua.CLASS:return"."+w;case Ua.PARENT:case Ua.CHILD:return o(m.parent,b)+a(">")+o(m.child,b);case Ua.ANCESTOR:case Ua.DESCENDANT:return o(m.ancestor,b)+" "+o(m.descendant,b);case Ua.COMPOUND_SPLIT:{var M=o(m.left,b),F=o(m.subject,b),U=o(m.right,b);return M+(M.length>0?" ":"")+F+U}case Ua.TRUE:return""}},o=function(m,b){return m.checks.reduce(function(_,w,S){return _+(b===m&&S===0?"$":"")+s(w,b)},"")},u="",h=0;h1&&h=0&&(r=r.replace("!",""),b=!0),r.indexOf("@")>=0&&(r=r.replace("@",""),m=!0),(o||h||m)&&(f=!o&&!u?"":""+t,p=""+a),m&&(t=f=f.toLowerCase(),a=p=p.toLowerCase()),r){case"*=":s=f.indexOf(p)>=0;break;case"$=":s=f.indexOf(p,f.length-p.length)>=0;break;case"^=":s=f.indexOf(p)===0;break;case"=":s=t===a;break;case">":_=!0,s=t>a;break;case">=":_=!0,s=t>=a;break;case"<":_=!0,s=t0;){var m=s.shift();t(m),o.add(m.id()),h&&a(s,o,m)}return e}function HHn(e,t,r){if(r.isParent())for(var a=r._private.children,s=0;s1&&arguments[1]!==void 0?arguments[1]:!0;return Cgt(this,e,t,HHn)};function VHn(e,t,r){if(r.isChild()){var a=r._private.parent;t.has(a.id())||e.push(a)}}Gj.forEachUp=function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return Cgt(this,e,t,VHn)};function yIi(e,t,r){VHn(e,t,r),HHn(e,t,r)}Gj.forEachUpAndDown=function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;return Cgt(this,e,t,yIi)};Gj.ancestors=Gj.parents;var Yoe,YHn;Yoe=YHn={data:Fu.data({field:"data",bindingEvent:"data",allowBinding:!0,allowSetting:!0,settingEvent:"data",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,immutableKeys:{id:!0,source:!0,target:!0,parent:!0},updateStyle:!0}),removeData:Fu.removeData({field:"data",event:"data",triggerFnName:"trigger",triggerEvent:!0,immutableKeys:{id:!0,source:!0,target:!0,parent:!0},updateStyle:!0}),scratch:Fu.data({field:"scratch",bindingEvent:"scratch",allowBinding:!0,allowSetting:!0,settingEvent:"scratch",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,updateStyle:!0}),removeScratch:Fu.removeData({field:"scratch",event:"scratch",triggerFnName:"trigger",triggerEvent:!0,updateStyle:!0}),rscratch:Fu.data({field:"rscratch",allowBinding:!1,allowSetting:!0,settingTriggersEvent:!1,allowGetting:!0}),removeRscratch:Fu.removeData({field:"rscratch",triggerEvent:!1}),id:function(){var t=this[0];if(t)return t._private.data.id}};Yoe.attr=Yoe.data;Yoe.removeAttr=Yoe.removeData;var vIi=YHn,uke={};function ait(e){return function(t){var r=this;if(t===void 0&&(t=!0),r.length!==0)if(r.isNode()&&!r.removed()){for(var a=0,s=r[0],o=s._private.edges,u=0;ut}),minIndegree:jH("indegree",function(e,t){return et}),minOutdegree:jH("outdegree",function(e,t){return et})});eo(uke,{totalDegree:function(t){for(var r=0,a=this.nodes(),s=0;s0,_=b;b&&(m=m[0]);var w=_?m.position():{x:0,y:0};r!==void 0?p.position(t,r+w[t]):o!==void 0&&p.position({x:o.x+w.x,y:o.y+w.y})}else{var S=a.position(),C=h?a.parent():null,A=C&&C.length>0,k=A;A&&(C=C[0]);var I=k?C.position():{x:0,y:0};return o={x:S.x-I.x,y:S.y-I.y},t===void 0?o:o[t]}else if(!u)return;return this}};Z3.modelPosition=Z3.point=Z3.position;Z3.modelPositions=Z3.points=Z3.positions;Z3.renderedPoint=Z3.renderedPosition;Z3.relativePoint=Z3.relativePosition;var _Ii=jHn,iY,j9;iY=j9={};j9.renderedBoundingBox=function(e){var t=this.boundingBox(e),r=this.cy(),a=r.zoom(),s=r.pan(),o=t.x1*a+s.x,u=t.x2*a+s.x,h=t.y1*a+s.y,f=t.y2*a+s.y;return{x1:o,x2:u,y1:h,y2:f,w:u-o,h:f-h}};j9.dirtyCompoundBoundsCache=function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,t=this.cy();return!t.styleEnabled()||!t.hasCompoundNodes()?this:(this.forEachUp(function(r){if(r.isParent()){var a=r._private;a.compoundBoundsClean=!1,a.bbCache=null,e||r.emitAndNotify("bounds")}}),this)};j9.updateCompoundBounds=function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,t=this.cy();if(!t.styleEnabled()||!t.hasCompoundNodes())return this;if(!e&&t.batching())return this;function r(u){if(!u.isParent())return;var h=u._private,f=u.children(),p=u.pstyle("compound-sizing-wrt-labels").value==="include",m={width:{val:u.pstyle("min-width").pfValue,left:u.pstyle("min-width-bias-left"),right:u.pstyle("min-width-bias-right")},height:{val:u.pstyle("min-height").pfValue,top:u.pstyle("min-height-bias-top"),bottom:u.pstyle("min-height-bias-bottom")}},b=f.boundingBox({includeLabels:p,includeOverlays:!1,useCache:!1}),_=h.position;(b.w===0||b.h===0)&&(b={w:u.pstyle("width").pfValue,h:u.pstyle("height").pfValue},b.x1=_.x-b.w/2,b.x2=_.x+b.w/2,b.y1=_.y-b.h/2,b.y2=_.y+b.h/2);function w($,G,B){var Z=0,z=0,Y=G+B;return $>0&&Y>0&&(Z=G/Y*$,z=B/Y*$),{biasDiff:Z,biasComplementDiff:z}}function S($,G,B,Z){if(B.units==="%")switch(Z){case"width":return $>0?B.pfValue*$:0;case"height":return G>0?B.pfValue*G:0;case"average":return $>0&&G>0?B.pfValue*($+G)/2:0;case"min":return $>0&&G>0?$>G?B.pfValue*G:B.pfValue*$:0;case"max":return $>0&&G>0?$>G?B.pfValue*$:B.pfValue*G:0;default:return 0}else return B.units==="px"?B.pfValue:0}var C=m.width.left.value;m.width.left.units==="px"&&m.width.val>0&&(C=C*100/m.width.val);var A=m.width.right.value;m.width.right.units==="px"&&m.width.val>0&&(A=A*100/m.width.val);var k=m.height.top.value;m.height.top.units==="px"&&m.height.val>0&&(k=k*100/m.height.val);var I=m.height.bottom.value;m.height.bottom.units==="px"&&m.height.val>0&&(I=I*100/m.height.val);var N=w(m.width.val-b.w,C,A),L=N.biasDiff,P=N.biasComplementDiff,M=w(m.height.val-b.h,k,I),F=M.biasDiff,U=M.biasComplementDiff;h.autoPadding=S(b.w,b.h,u.pstyle("padding"),u.pstyle("padding-relative-to").value),h.autoWidth=Math.max(b.w,m.width.val),_.x=(-L+b.x1+b.x2+P)/2,h.autoHeight=Math.max(b.h,m.height.val),_.y=(-F+b.y1+b.y2+U)/2}for(var a=0;at.x2?s:t.x2,t.y1=at.y2?o:t.y2,t.w=t.x2-t.x1,t.h=t.y2-t.y1)},XN=function(t,r){return r==null?t:N3(t,r.x1,r.y1,r.x2,r.y2)},tie=function(t,r,a){return F2(t,r,a)},Dwe=function(t,r,a){if(!r.cy().headless()){var s=r._private,o=s.rstyle,u=o.arrowWidth/2,h=r.pstyle(a+"-arrow-shape").value,f,p;if(h!=="none"){a==="source"?(f=o.srcX,p=o.srcY):a==="target"?(f=o.tgtX,p=o.tgtY):(f=o.midX,p=o.midY);var m=s.arrowBounds=s.arrowBounds||{},b=m[a]=m[a]||{};b.x1=f-u,b.y1=p-u,b.x2=f+u,b.y2=p+u,b.w=b.x2-b.x1,b.h=b.y2-b.y1,wxe(b,1),N3(t,b.x1,b.y1,b.x2,b.y2)}}},sit=function(t,r,a){if(!r.cy().headless()){var s;a?s=a+"-":s="";var o=r._private,u=o.rstyle,h=r.pstyle(s+"label").strValue;if(h){var f=r.pstyle("text-halign"),p=r.pstyle("text-valign"),m=tie(u,"labelWidth",a),b=tie(u,"labelHeight",a),_=tie(u,"labelX",a),w=tie(u,"labelY",a),S=r.pstyle(s+"text-margin-x").pfValue,C=r.pstyle(s+"text-margin-y").pfValue,A=r.isEdge(),k=r.pstyle(s+"text-rotation"),I=r.pstyle("text-outline-width").pfValue,N=r.pstyle("text-border-width").pfValue,L=N/2,P=r.pstyle("text-background-padding").pfValue,M=2,F=b,U=m,$=U/2,G=F/2,B,Z,z,Y;if(A)B=_-$,Z=_+$,z=w-G,Y=w+G;else{switch(f.value){case"left":B=_-U,Z=_;break;case"center":B=_-$,Z=_+$;break;case"right":B=_,Z=_+U;break}switch(p.value){case"top":z=w-F,Y=w;break;case"center":z=w-G,Y=w+G;break;case"bottom":z=w,Y=w+F;break}}var W=S-Math.max(I,L)-P-M,Q=S+Math.max(I,L)+P+M,V=C-Math.max(I,L)-P-M,j=C+Math.max(I,L)+P+M;B+=W,Z+=Q,z+=V,Y+=j;var ee=a||"main",te=o.labelBounds,ne=te[ee]=te[ee]||{};ne.x1=B,ne.y1=z,ne.x2=Z,ne.y2=Y,ne.w=Z-B,ne.h=Y-z,ne.leftPad=W,ne.rightPad=Q,ne.topPad=V,ne.botPad=j;var se=A&&k.strValue==="autorotate",ie=k.pfValue!=null&&k.pfValue!==0;if(se||ie){var ge=se?tie(o.rstyle,"labelAngle",a):k.pfValue,ce=Math.cos(ge),be=Math.sin(ge),ve=(B+Z)/2,De=(z+Y)/2;if(!A){switch(f.value){case"left":ve=Z;break;case"right":ve=B;break}switch(p.value){case"top":De=Y;break;case"bottom":De=z;break}}var ye=function(Ve,Oe){return Ve=Ve-ve,Oe=Oe-De,{x:Ve*ce-Oe*be+ve,y:Ve*be+Oe*ce+De}},Ee=ye(B,z),he=ye(B,Y),we=ye(Z,z),Ce=ye(Z,Y);B=Math.min(Ee.x,he.x,we.x,Ce.x),Z=Math.max(Ee.x,he.x,we.x,Ce.x),z=Math.min(Ee.y,he.y,we.y,Ce.y),Y=Math.max(Ee.y,he.y,we.y,Ce.y)}var Ie=ee+"Rot",Le=te[Ie]=te[Ie]||{};Le.x1=B,Le.y1=z,Le.x2=Z,Le.y2=Y,Le.w=Z-B,Le.h=Y-z,N3(t,B,z,Z,Y),N3(o.labelBounds.all,B,z,Z,Y)}return t}},Sxn=function(t,r){if(!r.cy().headless()){var a=r.pstyle("outline-opacity").value,s=r.pstyle("outline-width").value,o=r.pstyle("outline-offset").value,u=s+o;KHn(t,r,a,u,"outside",u/2)}},KHn=function(t,r,a,s,o,u){if(!(a===0||s<=0||o==="inside")){var h=r.cy(),f=r.pstyle("shape").value,p=h.renderer().nodeShapes[f],m=r.position(),b=m.x,_=m.y,w=r.width(),S=r.height();if(p.hasMiterBounds){o==="center"&&(s/=2);var C=p.miterBounds(b,_,w,S,s);XN(t,C)}else u!=null&&u>0&&Exe(t,[u,u,u,u])}},wIi=function(t,r){if(!r.cy().headless()){var a=r.pstyle("border-opacity").value,s=r.pstyle("border-width").pfValue,o=r.pstyle("border-position").value;KHn(t,r,a,s,o)}},EIi=function(t,r){var a=t._private.cy,s=a.styleEnabled(),o=a.headless(),u=uv(),h=t._private,f=t.isNode(),p=t.isEdge(),m,b,_,w,S,C,A=h.rstyle,k=f&&s?t.pstyle("bounds-expansion").pfValue:[0],I=function(Fe){return Fe.pstyle("display").value!=="none"},N=!s||I(t)&&(!p||I(t.source())&&I(t.target()));if(N){var L=0,P=0;s&&r.includeOverlays&&(L=t.pstyle("overlay-opacity").value,L!==0&&(P=t.pstyle("overlay-padding").value));var M=0,F=0;s&&r.includeUnderlays&&(M=t.pstyle("underlay-opacity").value,M!==0&&(F=t.pstyle("underlay-padding").value));var U=Math.max(P,F),$=0,G=0;if(s&&($=t.pstyle("width").pfValue,G=$/2),f&&r.includeNodes){var B=t.position();S=B.x,C=B.y;var Z=t.outerWidth(),z=Z/2,Y=t.outerHeight(),W=Y/2;m=S-z,b=S+z,_=C-W,w=C+W,N3(u,m,_,b,w),s&&Sxn(u,t),s&&r.includeOutlines&&!o&&Sxn(u,t),s&&wIi(u,t)}else if(p&&r.includeEdges)if(s&&!o){var Q=t.pstyle("curve-style").strValue;if(m=Math.min(A.srcX,A.midX,A.tgtX),b=Math.max(A.srcX,A.midX,A.tgtX),_=Math.min(A.srcY,A.midY,A.tgtY),w=Math.max(A.srcY,A.midY,A.tgtY),m-=G,b+=G,_-=G,w+=G,N3(u,m,_,b,w),Q==="haystack"){var V=A.haystackPts;if(V&&V.length===2){if(m=V[0].x,_=V[0].y,b=V[1].x,w=V[1].y,m>b){var j=m;m=b,b=j}if(_>w){var ee=_;_=w,w=ee}N3(u,m-G,_-G,b+G,w+G)}}else if(Q==="bezier"||Q==="unbundled-bezier"||mO(Q,"segments")||mO(Q,"taxi")){var te;switch(Q){case"bezier":case"unbundled-bezier":te=A.bezierPts;break;case"segments":case"taxi":case"round-segments":case"round-taxi":te=A.linePts;break}if(te!=null)for(var ne=0;neb){var ve=m;m=b,b=ve}if(_>w){var De=_;_=w,w=De}m-=G,b+=G,_-=G,w+=G,N3(u,m,_,b,w)}if(s&&r.includeEdges&&p&&(Dwe(u,t,"mid-source"),Dwe(u,t,"mid-target"),Dwe(u,t,"source"),Dwe(u,t,"target")),s){var ye=t.pstyle("ghost").value==="yes";if(ye){var Ee=t.pstyle("ghost-offset-x").pfValue,he=t.pstyle("ghost-offset-y").pfValue;N3(u,u.x1+Ee,u.y1+he,u.x2+Ee,u.y2+he)}}var we=h.bodyBounds=h.bodyBounds||{};cEn(we,u),Exe(we,k),wxe(we,1),s&&(m=u.x1,b=u.x2,_=u.y1,w=u.y2,N3(u,m-U,_-U,b+U,w+U));var Ce=h.overlayBounds=h.overlayBounds||{};cEn(Ce,u),Exe(Ce,k),wxe(Ce,1);var Ie=h.labelBounds=h.labelBounds||{};Ie.all!=null?rRi(Ie.all):Ie.all=uv(),s&&r.includeLabels&&(r.includeMainLabels&&sit(u,t,null),p&&(r.includeSourceLabels&&sit(u,t,"source"),r.includeTargetLabels&&sit(u,t,"target")))}return u.x1=Zx(u.x1),u.y1=Zx(u.y1),u.x2=Zx(u.x2),u.y2=Zx(u.y2),u.w=Zx(u.x2-u.x1),u.h=Zx(u.y2-u.y1),u.w>0&&u.h>0&&N&&(Exe(u,k),wxe(u,1)),u},XHn=function(t){var r=0,a=function(u){return(u?1:0)<0&&arguments[0]!==void 0?arguments[0]:BIi,t=arguments.length>1?arguments[1]:void 0,r=0;r=0;h--)u(h);return this};u9.removeAllListeners=function(){return this.removeListener("*")};u9.emit=u9.trigger=function(e,t,r){var a=this.listeners,s=a.length;return this.emitting++,Mh(t)||(t=[t]),FIi(this,function(o,u){r!=null&&(a=[{event:u.event,type:u.type,namespace:u.namespace,callback:r}],s=a.length);for(var h=function(){var m=a[f];if(m.type===u.type&&(!m.namespace||m.namespace===u.namespace||m.namespace===PIi)&&o.eventMatches(o.context,m,u)){var b=[u];t!=null&&k7i(b,t),o.beforeEmit(o.context,m,u),m.conf&&m.conf.one&&(o.listeners=o.listeners.filter(function(S){return S!==m}));var _=o.callbackContext(o.context,m,u),w=m.callback.apply(_,b);o.afterEmit(o.context,m,u),w===!1&&(u.stopPropagation(),u.preventDefault())}},f=0;f1&&!u){var h=this.length-1,f=this[h],p=f._private.data.id;this[h]=void 0,this[t]=f,o.set(p,{ele:f,index:t})}return this.length--,this},unmergeOne:function(t){t=t[0];var r=this._private,a=t._private.data.id,s=r.map,o=s.get(a);if(!o)return this;var u=o.index;return this.unmergeAt(u),this},unmerge:function(t){var r=this._private.cy;if(!t)return this;if(t&&Ns(t)){var a=t;t=r.mutableElements().filter(a)}for(var s=0;s=0;r--){var a=this[r];t(a)&&this.unmergeAt(r)}return this},map:function(t,r){for(var a=[],s=this,o=0;oa&&(a=f,s=h)}return{value:a,ele:s}},min:function(t,r){for(var a=1/0,s,o=this,u=0;u=0&&o"u"?"undefined":Dp(Symbol))!=t&&Dp(Symbol.iterator)!=t;r&&(Y3e[Symbol.iterator]=function(){var a=this,s={value:void 0,done:!1},o=0,u=this.length;return rHn({next:function(){return o1&&arguments[1]!==void 0?arguments[1]:!0,a=this[0],s=a.cy();if(s.styleEnabled()&&a){a._private.styleDirty&&(a._private.styleDirty=!1,s.style().apply(a));var o=a._private.style[t];return o??(r?s.style().getDefaultProperty(t):null)}},numericStyle:function(t){var r=this[0];if(r.cy().styleEnabled()&&r){var a=r.pstyle(t);return a.pfValue!==void 0?a.pfValue:a.value}},numericStyleUnits:function(t){var r=this[0];if(r.cy().styleEnabled()&&r)return r.pstyle(t).units},renderedStyle:function(t){var r=this.cy();if(!r.styleEnabled())return this;var a=this[0];if(a)return r.style().getRenderedStyle(a,t)},style:function(t,r){var a=this.cy();if(!a.styleEnabled())return this;var s=!1,o=a.style();if(Vc(t)){var u=t;o.applyBypass(this,u,s),this.emitAndNotify("style")}else if(Ns(t))if(r===void 0){var h=this[0];return h?o.getStylePropertyValue(h,t):void 0}else o.applyBypass(this,t,r,s),this.emitAndNotify("style");else if(t===void 0){var f=this[0];return f?o.getRawStyle(f):void 0}return this},removeStyle:function(t){var r=this.cy();if(!r.styleEnabled())return this;var a=!1,s=r.style(),o=this;if(t===void 0)for(var u=0;u0&&t.push(m[0]),t.push(h[0])}return this.spawn(t,!0).filter(e)},"neighborhood"),closedNeighborhood:function(t){return this.neighborhood().add(this).filter(t)},openNeighborhood:function(t){return this.neighborhood(t)}});kb.neighbourhood=kb.neighborhood;kb.closedNeighbourhood=kb.closedNeighborhood;kb.openNeighbourhood=kb.openNeighborhood;eo(kb,{source:oS(function(t){var r=this[0],a;return r&&(a=r._private.source||r.cy().collection()),a&&t?a.filter(t):a},"source"),target:oS(function(t){var r=this[0],a;return r&&(a=r._private.target||r.cy().collection()),a&&t?a.filter(t):a},"target"),sources:Mxn({attr:"source"}),targets:Mxn({attr:"target"})});function Mxn(e){return function(r){for(var a=[],s=0;s0);return u},component:function(){var t=this[0];return t.cy().mutableElements().components(t)[0]}});kb.componentsOf=kb.components;var Cm=function(t,r){var a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,s=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;if(t===void 0){jd("A collection must have a reference to the core");return}var o=new k7,u=!1;if(!r)r=[];else if(r.length>0&&Vc(r[0])&&!Ece(r[0])){u=!0;for(var h=[],f=new WW,p=0,m=r.length;p0&&arguments[0]!==void 0?arguments[0]:!0,t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,r=this,a=r.cy(),s=a._private,o=[],u=[],h,f=0,p=r.length;f0){for(var ee=h.length===r.length?r:new Cm(a,h),te=0;te0&&arguments[0]!==void 0?arguments[0]:!0,t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,r=this,a=[],s={},o=r._private.cy;function u(Y){for(var W=Y._private.edges,Q=0;Q0&&(e?B.emitAndNotify("remove"):t&&B.emit("remove"));for(var Z=0;Z0?Z=Y:B=Y;while(Math.abs(z)>u&&++W=o?I(G,W):Q===0?W:L(G,B,B+p)}var M=!1;function F(){M=!0,(e!==t||r!==a)&&N()}var U=function(B){return M||F(),e===t&&r===a?B:B===0?0:B===1?1:A(P(B),t,a)};U.getControlPoints=function(){return[{x:e,y:t},{x:r,y:a}]};var $="generateBezier("+[e,t,r,a]+")";return U.toString=function(){return $},U}/*! Runge-Kutta spring physics function generator. Adapted from Framer.js, copyright Koen Bok. MIT License: http://en.wikipedia.org/wiki/MIT_License */var KIi=function(){function e(a){return-a.tension*a.x-a.friction*a.v}function t(a,s,o){var u={x:a.x+o.dx*s,v:a.v+o.dv*s,tension:a.tension,friction:a.friction};return{dx:u.v,dv:e(u)}}function r(a,s){var o={dx:a.v,dv:e(a)},u=t(a,s*.5,o),h=t(a,s*.5,u),f=t(a,s,h),p=1/6*(o.dx+2*(u.dx+h.dx)+f.dx),m=1/6*(o.dv+2*(u.dv+h.dv)+f.dv);return a.x=a.x+p*s,a.v=a.v+m*s,a}return function a(s,o,u){var h={x:-1,v:0,tension:null,friction:null},f=[0],p=0,m=1/1e4,b=16/1e3,_,w,S;for(s=parseFloat(s)||500,o=parseFloat(o)||20,u=u||null,h.tension=s,h.friction=o,_=u!==null,_?(p=a(s,o),w=p/u*b):w=b;S=r(S||h,w),f.push(1+S.x),p+=16,Math.abs(S.x)>m&&Math.abs(S.v)>m;);return _?function(C){return f[C*(f.length-1)|0]}:p}}(),Kh=function(t,r,a,s){var o=WIi(t,r,a,s);return function(u,h,f){return u+(h-u)*o(f)}},Txe={linear:function(t,r,a){return t+(r-t)*a},ease:Kh(.25,.1,.25,1),"ease-in":Kh(.42,0,1,1),"ease-out":Kh(0,0,.58,1),"ease-in-out":Kh(.42,0,.58,1),"ease-in-sine":Kh(.47,0,.745,.715),"ease-out-sine":Kh(.39,.575,.565,1),"ease-in-out-sine":Kh(.445,.05,.55,.95),"ease-in-quad":Kh(.55,.085,.68,.53),"ease-out-quad":Kh(.25,.46,.45,.94),"ease-in-out-quad":Kh(.455,.03,.515,.955),"ease-in-cubic":Kh(.55,.055,.675,.19),"ease-out-cubic":Kh(.215,.61,.355,1),"ease-in-out-cubic":Kh(.645,.045,.355,1),"ease-in-quart":Kh(.895,.03,.685,.22),"ease-out-quart":Kh(.165,.84,.44,1),"ease-in-out-quart":Kh(.77,0,.175,1),"ease-in-quint":Kh(.755,.05,.855,.06),"ease-out-quint":Kh(.23,1,.32,1),"ease-in-out-quint":Kh(.86,0,.07,1),"ease-in-expo":Kh(.95,.05,.795,.035),"ease-out-expo":Kh(.19,1,.22,1),"ease-in-out-expo":Kh(1,0,0,1),"ease-in-circ":Kh(.6,.04,.98,.335),"ease-out-circ":Kh(.075,.82,.165,1),"ease-in-out-circ":Kh(.785,.135,.15,.86),spring:function(t,r,a){if(a===0)return Txe.linear;var s=KIi(t,r,a);return function(o,u,h){return o+(u-o)*s(h)}},"cubic-bezier":Kh};function Fxn(e,t,r,a,s){if(a===1||t===r)return r;var o=s(t,r,a);return e==null||((e.roundValue||e.color)&&(o=Math.round(o)),e.min!==void 0&&(o=Math.max(o,e.min)),e.max!==void 0&&(o=Math.min(o,e.max))),o}function $xn(e,t){return e.pfValue!=null||e.value!=null?e.pfValue!=null&&(t==null||t.type.units!=="%")?e.pfValue:e.value:e}function WH(e,t,r,a,s){var o=s!=null?s.type:null;r<0?r=0:r>1&&(r=1);var u=$xn(e,s),h=$xn(t,s);if(aa(u)&&aa(h))return Fxn(o,u,h,r,a);if(Mh(u)&&Mh(h)){for(var f=[],p=0;p0?(w==="spring"&&S.push(u.duration),u.easingImpl=Txe[w].apply(null,S)):u.easingImpl=Txe[w]}var C=u.easingImpl,A;if(u.duration===0?A=1:A=(r-f)/u.duration,u.applying&&(A=u.progress),A<0?A=0:A>1&&(A=1),u.delay==null){var k=u.startPosition,I=u.position;if(I&&s&&!e.locked()){var N={};rie(k.x,I.x)&&(N.x=WH(k.x,I.x,A,C)),rie(k.y,I.y)&&(N.y=WH(k.y,I.y,A,C)),e.position(N)}var L=u.startPan,P=u.pan,M=o.pan,F=P!=null&&a;F&&(rie(L.x,P.x)&&(M.x=WH(L.x,P.x,A,C)),rie(L.y,P.y)&&(M.y=WH(L.y,P.y,A,C)),e.emit("pan"));var U=u.startZoom,$=u.zoom,G=$!=null&&a;G&&(rie(U,$)&&(o.zoom=Hoe(o.minZoom,WH(U,$,A,C),o.maxZoom)),e.emit("zoom")),(F||G)&&e.emit("viewport");var B=u.style;if(B&&B.length>0&&s){for(var Z=0;Z=0;F--){var U=M[F];U()}M.splice(0,M.length)},I=w.length-1;I>=0;I--){var N=w[I],L=N._private;if(L.stopped){w.splice(I,1),L.hooked=!1,L.playing=!1,L.started=!1,k(L.frames);continue}!L.playing&&!L.applying||(L.playing&&L.applying&&(L.applying=!1),L.started||QIi(m,N,e),XIi(m,N,e,b),L.applying&&(L.applying=!1),k(L.frames),L.step!=null&&L.step(e),N.completed()&&(w.splice(I,1),L.hooked=!1,L.playing=!1,L.started=!1,k(L.completes)),C=!0)}return!b&&w.length===0&&S.length===0&&a.push(m),C}for(var o=!1,u=0;u0?t.notify("draw",r):t.notify("draw")),r.unmerge(a),t.emit("step")}var ZIi={animate:Fu.animate(),animation:Fu.animation(),animated:Fu.animated(),clearQueue:Fu.clearQueue(),delay:Fu.delay(),delayAnimation:Fu.delayAnimation(),stop:Fu.stop(),addToAnimationPool:function(t){var r=this;r.styleEnabled()&&r._private.aniEles.merge(t)},stopAnimationLoop:function(){this._private.animationsRunning=!1},startAnimationLoop:function(){var t=this;if(t._private.animationsRunning=!0,!t.styleEnabled())return;function r(){t._private.animationsRunning&&z3e(function(o){Uxn(o,t),r()})}var a=t.renderer();a&&a.beforeRender?a.beforeRender(function(o,u){Uxn(u,t)},a.beforeRenderPriorities.animations):r()}},JIi={qualifierCompare:function(t,r){return t==null||r==null?t==null&&r==null:t.sameText(r)},eventMatches:function(t,r,a){var s=r.qualifier;return s!=null?t!==a.target&&Ece(a.target)&&s.matches(a.target):!0},addEventFields:function(t,r){r.cy=t,r.target=t},callbackContext:function(t,r,a){return r.qualifier!=null?a.target:t}},Bwe=function(t){return Ns(t)?new l9(t):t},oVn={createEmitter:function(){var t=this._private;return t.emitter||(t.emitter=new hke(JIi,this)),this},emitter:function(){return this._private.emitter},on:function(t,r,a){return this.emitter().on(t,Bwe(r),a),this},removeListener:function(t,r,a){return this.emitter().removeListener(t,Bwe(r),a),this},removeAllListeners:function(){return this.emitter().removeAllListeners(),this},one:function(t,r,a){return this.emitter().one(t,Bwe(r),a),this},once:function(t,r,a){return this.emitter().one(t,Bwe(r),a),this},emit:function(t,r){return this.emitter().emit(t,r),this},emitAndNotify:function(t,r){return this.emit(t),this.notify(t,r),this}};Fu.eventAliasesOn(oVn);var uct={png:function(t){var r=this._private.renderer;return t=t||{},r.png(t)},jpg:function(t){var r=this._private.renderer;return t=t||{},t.bg=t.bg||"#fff",r.jpg(t)}};uct.jpeg=uct.jpg;var Cxe={layout:function(t){var r=this;if(t==null){jd("Layout options must be specified to make a layout");return}if(t.name==null){jd("A `name` must be specified to make a layout");return}var a=t.name,s=r.extension("layout",a);if(s==null){jd("No such layout `"+a+"` found. Did you forget to import it and `cytoscape.use()` it?");return}var o;Ns(t.eles)?o=r.$(t.eles):o=t.eles!=null?t.eles:r.$();var u=new s(eo({},t,{cy:r,eles:o}));return u}};Cxe.createLayout=Cxe.makeLayout=Cxe.layout;var eNi={notify:function(t,r){var a=this._private;if(this.batching()){a.batchNotifications=a.batchNotifications||{};var s=a.batchNotifications[t]=a.batchNotifications[t]||this.collection();r!=null&&s.merge(r);return}if(a.notificationsEnabled){var o=this.renderer();this.destroyed()||!o||o.notify(t,r)}},notifications:function(t){var r=this._private;return t===void 0?r.notificationsEnabled:(r.notificationsEnabled=!!t,this)},noNotifications:function(t){this.notifications(!1),t(),this.notifications(!0)},batching:function(){return this._private.batchCount>0},startBatch:function(){var t=this._private;return t.batchCount==null&&(t.batchCount=0),t.batchCount===0&&(t.batchStyleEles=this.collection(),t.batchNotifications={}),t.batchCount++,this},endBatch:function(){var t=this._private;if(t.batchCount===0)return this;if(t.batchCount--,t.batchCount===0){t.batchStyleEles.updateStyle();var r=this.renderer();Object.keys(t.batchNotifications).forEach(function(a){var s=t.batchNotifications[a];s.empty()?r.notify(a):r.notify(a,s)})}return this},batch:function(t){return this.startBatch(),t(),this.endBatch(),this},batchData:function(t){var r=this;return this.batch(function(){for(var a=Object.keys(t),s=0;s0;)r.removeChild(r.childNodes[0]);t._private.renderer=null,t.mutableElements().forEach(function(a){var s=a._private;s.rscratch={},s.rstyle={},s.animation.current=[],s.animation.queue=[]})},onRender:function(t){return this.on("render",t)},offRender:function(t){return this.off("render",t)}};hct.invalidateDimensions=hct.resize;var Axe={collection:function(t,r){return Ns(t)?this.$(t):Bw(t)?t.collection():Mh(t)?(r||(r={}),new Cm(this,t,r.unique,r.removed)):new Cm(this)},nodes:function(t){var r=this.$(function(a){return a.isNode()});return t?r.filter(t):r},edges:function(t){var r=this.$(function(a){return a.isEdge()});return t?r.filter(t):r},$:function(t){var r=this._private.elements;return t?r.filter(t):r.spawnSelf()},mutableElements:function(){return this._private.elements}};Axe.elements=Axe.filter=Axe.$;var Dg={},Sse="t",nNi="f";Dg.apply=function(e){for(var t=this,r=t._private,a=r.cy,s=a.collection(),o=0;o0;if(_||b&&w){var S=void 0;_&&w||_?S=p.properties:w&&(S=p.mappedProperties);for(var C=0;C1&&(L=1),h.color){var M=a.valueMin[0],F=a.valueMax[0],U=a.valueMin[1],$=a.valueMax[1],G=a.valueMin[2],B=a.valueMax[2],Z=a.valueMin[3]==null?1:a.valueMin[3],z=a.valueMax[3]==null?1:a.valueMax[3],Y=[Math.round(M+(F-M)*L),Math.round(U+($-U)*L),Math.round(G+(B-G)*L),Math.round(Z+(z-Z)*L)];o={bypass:a.bypass,name:a.name,value:Y,strValue:"rgb("+Y[0]+", "+Y[1]+", "+Y[2]+")"}}else if(h.number){var W=a.valueMin+(a.valueMax-a.valueMin)*L;o=this.parse(a.name,W,a.bypass,_)}else return!1;if(!o)return C(),!1;o.mapping=a,a=o;break}case u.data:{for(var Q=a.field.split("."),V=b.data,j=0;j0&&o>0){for(var h={},f=!1,p=0;p0?e.delayAnimation(u).play().promise().then(N):N()}).then(function(){return e.animation({style:h,duration:o,easing:e.pstyle("transition-timing-function").value,queue:!1}).play().promise()}).then(function(){r.removeBypasses(e,s),e.emitAndNotify("style"),a.transitioning=!1})}else a.transitioning&&(this.removeBypasses(e,s),e.emitAndNotify("style"),a.transitioning=!1)};Dg.checkTrigger=function(e,t,r,a,s,o){var u=this.properties[t],h=s(u);e.removed()||h!=null&&h(r,a,e)&&o(u)};Dg.checkZOrderTrigger=function(e,t,r,a){var s=this;this.checkTrigger(e,t,r,a,function(o){return o.triggersZOrder},function(){s._private.cy.notify("zorder",e)})};Dg.checkBoundsTrigger=function(e,t,r,a){this.checkTrigger(e,t,r,a,function(s){return s.triggersBounds},function(s){e.dirtyCompoundBoundsCache(),e.dirtyBoundingBoxCache()})};Dg.checkConnectedEdgesBoundsTrigger=function(e,t,r,a){this.checkTrigger(e,t,r,a,function(s){return s.triggersBoundsOfConnectedEdges},function(s){e.connectedEdges().forEach(function(o){o.dirtyBoundingBoxCache()})})};Dg.checkParallelEdgesBoundsTrigger=function(e,t,r,a){this.checkTrigger(e,t,r,a,function(s){return s.triggersBoundsOfParallelEdges},function(s){e.parallelEdges().forEach(function(o){o.dirtyBoundingBoxCache()})})};Dg.checkTriggers=function(e,t,r,a){e.dirtyStyleCache(),this.checkZOrderTrigger(e,t,r,a),this.checkBoundsTrigger(e,t,r,a),this.checkConnectedEdgesBoundsTrigger(e,t,r,a),this.checkParallelEdgesBoundsTrigger(e,t,r,a)};var Rce={};Rce.applyBypass=function(e,t,r,a){var s=this,o=[],u=!0;if(t==="*"||t==="**"){if(r!==void 0)for(var h=0;hs.length?a=a.substr(s.length):a=""}function f(){o.length>u.length?o=o.substr(u.length):o=""}for(;;){var p=a.match(/^\s*$/);if(p)break;var m=a.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/);if(!m){Uu("Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: "+a);break}s=m[0];var b=m[1];if(b!=="core"){var _=new l9(b);if(_.invalid){Uu("Skipping parsing of block: Invalid selector found in string stylesheet: "+b),h();continue}}var w=m[2],S=!1;o=w;for(var C=[];;){var A=o.match(/^\s*$/);if(A)break;var k=o.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/);if(!k){Uu("Skipping parsing of block: Invalid formatting of style property and value definitions found in:"+w),S=!0;break}u=k[0];var I=k[1],N=k[2],L=t.properties[I];if(!L){Uu("Skipping property: Invalid property name in: "+u),f();continue}var P=r.parse(I,N);if(!P){Uu("Skipping property: Invalid property definition in: "+u),f();continue}C.push({name:I,val:N}),f()}if(S){h();break}r.selector(b);for(var M=0;M=7&&t[0]==="d"&&(m=new RegExp(h.data.regex).exec(t))){if(r)return!1;var _=h.data;return{name:e,value:m,strValue:""+t,mapped:_,field:m[1],bypass:r}}else if(t.length>=10&&t[0]==="m"&&(b=new RegExp(h.mapData.regex).exec(t))){if(r||p.multiple)return!1;var w=h.mapData;if(!(p.color||p.number))return!1;var S=this.parse(e,b[4]);if(!S||S.mapped)return!1;var C=this.parse(e,b[5]);if(!C||C.mapped)return!1;if(S.pfValue===C.pfValue||S.strValue===C.strValue)return Uu("`"+e+": "+t+"` is not a valid mapper because the output range is zero; converting to `"+e+": "+S.strValue+"`"),this.parse(e,S.strValue);if(p.color){var A=S.value,k=C.value,I=A[0]===k[0]&&A[1]===k[1]&&A[2]===k[2]&&(A[3]===k[3]||(A[3]==null||A[3]===1)&&(k[3]==null||k[3]===1));if(I)return!1}return{name:e,value:b,strValue:""+t,mapped:w,field:b[1],fieldMin:parseFloat(b[2]),fieldMax:parseFloat(b[3]),valueMin:S.value,valueMax:C.value,bypass:r}}}if(p.multiple&&a!=="multiple"){var N;if(f?N=t.split(/\s+/):Mh(t)?N=t:N=[t],p.evenMultiple&&N.length%2!==0)return null;for(var L=[],P=[],M=[],F="",U=!1,$=0;$0?" ":"")+G.strValue}return p.validate&&!p.validate(L,P)?null:p.singleEnum&&U?L.length===1&&Ns(L[0])?{name:e,value:L[0],strValue:L[0],bypass:r}:null:{name:e,value:L,pfValue:M,strValue:F,bypass:r,units:P}}var B=function(){for(var ye=0;yep.max||p.strictMax&&t===p.max))return null;var Q={name:e,value:t,strValue:""+t+(Z||""),units:Z,bypass:r};return p.unitless||Z!=="px"&&Z!=="em"?Q.pfValue=t:Q.pfValue=Z==="px"||!Z?t:this.getEmSizeInPixels()*t,(Z==="ms"||Z==="s")&&(Q.pfValue=Z==="ms"?t:1e3*t),(Z==="deg"||Z==="rad")&&(Q.pfValue=Z==="rad"?t:J7i(t)),Z==="%"&&(Q.pfValue=t/100),Q}else if(p.propList){var V=[],j=""+t;if(j!=="none"){for(var ee=j.split(/\s*,\s*|\s+/),te=0;te0&&h>0&&!isNaN(a.w)&&!isNaN(a.h)&&a.w>0&&a.h>0){f=Math.min((u-2*r)/a.w,(h-2*r)/a.h),f=f>this._private.maxZoom?this._private.maxZoom:f,f=f=a.minZoom&&(a.maxZoom=r),this},minZoom:function(t){return t===void 0?this._private.minZoom:this.zoomRange({min:t})},maxZoom:function(t){return t===void 0?this._private.maxZoom:this.zoomRange({max:t})},getZoomedViewport:function(t){var r=this._private,a=r.pan,s=r.zoom,o,u,h=!1;if(r.zoomingEnabled||(h=!0),aa(t)?u=t:Vc(t)&&(u=t.level,t.position!=null?o=ike(t.position,s,a):t.renderedPosition!=null&&(o=t.renderedPosition),o!=null&&!r.panningEnabled&&(h=!0)),u=u>r.maxZoom?r.maxZoom:u,u=ur.maxZoom||!r.zoomingEnabled?u=!0:(r.zoom=f,o.push("zoom"))}if(s&&(!u||!t.cancelOnFailedZoom)&&r.panningEnabled){var p=t.pan;aa(p.x)&&(r.pan.x=p.x,h=!1),aa(p.y)&&(r.pan.y=p.y,h=!1),h||o.push("pan")}return o.length>0&&(o.push("viewport"),this.emit(o.join(" ")),this.notify("viewport")),this},center:function(t){var r=this.getCenterPan(t);return r&&(this._private.pan=r,this.emit("pan viewport"),this.notify("viewport")),this},getCenterPan:function(t,r){if(this._private.panningEnabled){if(Ns(t)){var a=t;t=this.mutableElements().filter(a)}else Bw(t)||(t=this.mutableElements());if(t.length!==0){var s=t.boundingBox(),o=this.width(),u=this.height();r=r===void 0?this._private.zoom:r;var h={x:(o-r*(s.x1+s.x2))/2,y:(u-r*(s.y1+s.y2))/2};return h}}},reset:function(){return!this._private.panningEnabled||!this._private.zoomingEnabled?this:(this.viewport({pan:{x:0,y:0},zoom:1}),this)},invalidateSize:function(){this._private.sizeCache=null},size:function(){var t=this._private,r=t.container,a=this;return t.sizeCache=t.sizeCache||(r?function(){var s=a.window().getComputedStyle(r),o=function(h){return parseFloat(s.getPropertyValue(h))};return{width:r.clientWidth-o("padding-left")-o("padding-right"),height:r.clientHeight-o("padding-top")-o("padding-bottom")}}():{width:1,height:1})},width:function(){return this.size().width},height:function(){return this.size().height},extent:function(){var t=this._private.pan,r=this._private.zoom,a=this.renderedExtent(),s={x1:(a.x1-t.x)/r,x2:(a.x2-t.x)/r,y1:(a.y1-t.y)/r,y2:(a.y2-t.y)/r};return s.w=s.x2-s.x1,s.h=s.y2-s.y1,s},renderedExtent:function(){var t=this.width(),r=this.height();return{x1:0,y1:0,x2:t,y2:r,w:t,h:r}},multiClickDebounceTime:function(t){if(t)this._private.multiClickDebounceTime=t;else return this._private.multiClickDebounceTime;return this}};ZF.centre=ZF.center;ZF.autolockNodes=ZF.autolock;ZF.autoungrabifyNodes=ZF.autoungrabify;var Woe={data:Fu.data({field:"data",bindingEvent:"data",allowBinding:!0,allowSetting:!0,settingEvent:"data",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,updateStyle:!0}),removeData:Fu.removeData({field:"data",event:"data",triggerFnName:"trigger",triggerEvent:!0,updateStyle:!0}),scratch:Fu.data({field:"scratch",bindingEvent:"scratch",allowBinding:!0,allowSetting:!0,settingEvent:"scratch",settingTriggersEvent:!0,triggerFnName:"trigger",allowGetting:!0,updateStyle:!0}),removeScratch:Fu.removeData({field:"scratch",event:"scratch",triggerFnName:"trigger",triggerEvent:!0,updateStyle:!0})};Woe.attr=Woe.data;Woe.removeAttr=Woe.removeData;var Koe=function(t){var r=this;t=eo({},t);var a=t.container;a&&!U3e(a)&&U3e(a[0])&&(a=a[0]);var s=a?a._cyreg:null;s=s||{},s&&s.cy&&(s.cy.destroy(),s={});var o=s.readies=s.readies||[];a&&(a._cyreg=s),s.cy=r;var u=vp!==void 0&&a!==void 0&&!t.headless,h=t;h.layout=eo({name:u?"grid":"null"},h.layout),h.renderer=eo({name:u?"canvas":"null"},h.renderer);var f=function(S,C,A){return C!==void 0?C:A!==void 0?A:S},p=this._private={container:a,ready:!1,options:h,elements:new Cm(this),listeners:[],aniEles:new Cm(this),data:h.data||{},scratch:{},layout:null,renderer:null,destroyed:!1,notificationsEnabled:!0,minZoom:1e-50,maxZoom:1e50,zoomingEnabled:f(!0,h.zoomingEnabled),userZoomingEnabled:f(!0,h.userZoomingEnabled),panningEnabled:f(!0,h.panningEnabled),userPanningEnabled:f(!0,h.userPanningEnabled),boxSelectionEnabled:f(!0,h.boxSelectionEnabled),autolock:f(!1,h.autolock,h.autolockNodes),autoungrabify:f(!1,h.autoungrabify,h.autoungrabifyNodes),autounselectify:f(!1,h.autounselectify),styleEnabled:h.styleEnabled===void 0?u:h.styleEnabled,zoom:aa(h.zoom)?h.zoom:1,pan:{x:Vc(h.pan)&&aa(h.pan.x)?h.pan.x:0,y:Vc(h.pan)&&aa(h.pan.y)?h.pan.y:0},animation:{current:[],queue:[]},hasCompoundNodes:!1,multiClickDebounceTime:f(250,h.multiClickDebounceTime)};this.createEmitter(),this.selectionType(h.selectionType),this.zoomRange({min:h.minZoom,max:h.maxZoom});var m=function(S,C){var A=S.some(j6i);if(A)return KW.all(S).then(C);C(S)};p.styleEnabled&&r.setStyle([]);var b=eo({},h,h.renderer);r.initRenderer(b);var _=function(S,C,A){r.notifications(!1);var k=r.mutableElements();k.length>0&&k.remove(),S!=null&&(Vc(S)||Mh(S))&&r.add(S),r.one("layoutready",function(N){r.notifications(!0),r.emit(N),r.one("load",C),r.emitAndNotify("load")}).one("layoutstop",function(){r.one("done",A),r.emit("done")});var I=eo({},r._private.options.layout);I.eles=r.elements(),r.layout(I).run()};m([h.style,h.elements],function(w){var S=w[0],C=w[1];p.styleEnabled&&r.style().append(S),_(C,function(){r.startAnimationLoop(),p.ready=!0,Of(h.ready)&&r.on("ready",h.ready);for(var A=0;A0,h=!!e.boundingBox,f=uv(h?e.boundingBox:structuredClone(t.extent())),p;if(Bw(e.roots))p=e.roots;else if(Mh(e.roots)){for(var m=[],b=0;b0;){var Y=z(),W=$(Y,B);if(W)Y.outgoers().filter(function(Dt){return Dt.isNode()&&r.has(Dt)}).forEach(Z);else if(W===null){Uu("Detected double maximal shift for node `"+Y.id()+"`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.");break}}}var Q=0;if(e.avoidOverlap)for(var V=0;V0&&k[0].length<=3?Je/2:0),et=2*Math.PI/k[Kt].length*Ft;return Kt===0&&k[0].length===1&&(ht=1),{x:we.x+ht*Math.cos(et),y:we.y+ht*Math.sin(et)}}else{var qe=k[Kt].length,He=Math.max(qe===1?0:h?(f.w-e.padding*2-Ce.w)/((e.grid?Le:qe)-1):(f.w-e.padding*2-Ce.w)/((e.grid?Le:qe)+1),Q),Ge={x:we.x+(Ft+1-(qe+1)/2)*He,y:we.y+(Kt+1-(ce+1)/2)*Ie};return Ge}},Ve={downward:0,leftward:90,upward:180,rightward:-90};Object.keys(Ve).indexOf(e.direction)===-1&&jd("Invalid direction '".concat(e.direction,"' specified for breadthfirst layout. Valid values are: ").concat(Object.keys(Ve).join(", ")));var Oe=function(ot){return E7i(Fe(ot),f,Ve[e.direction])};return r.nodes().layoutPositions(this,e,Oe),this};var oNi={fit:!0,padding:30,boundingBox:void 0,avoidOverlap:!0,nodeDimensionsIncludeLabels:!1,spacingFactor:void 0,radius:void 0,startAngle:3/2*Math.PI,sweep:void 0,clockwise:!0,sort:void 0,animate:!1,animationDuration:500,animationEasing:void 0,animateFilter:function(t,r){return!0},ready:void 0,stop:void 0,transform:function(t,r){return r}};function cVn(e){this.options=eo({},oNi,e)}cVn.prototype.run=function(){var e=this.options,t=e,r=e.cy,a=t.eles,s=t.counterclockwise!==void 0?!t.counterclockwise:t.clockwise,o=a.nodes().not(":parent");t.sort&&(o=o.sort(t.sort));for(var u=uv(t.boundingBox?t.boundingBox:{x1:0,y1:0,w:r.width(),h:r.height()}),h={x:u.x1+u.w/2,y:u.y1+u.h/2},f=t.sweep===void 0?2*Math.PI-2*Math.PI/o.length:t.sweep,p=f/Math.max(1,o.length-1),m,b=0,_=0;_1&&t.avoidOverlap){b*=1.75;var k=Math.cos(p)-Math.cos(0),I=Math.sin(p)-Math.sin(0),N=Math.sqrt(b*b/(k*k+I*I));m=Math.max(N,m)}var L=function(M,F){var U=t.startAngle+F*p*(s?1:-1),$=m*Math.cos(U),G=m*Math.sin(U),B={x:h.x+$,y:h.y+G};return B};return a.nodes().layoutPositions(this,t,L),this};var lNi={fit:!0,padding:30,startAngle:3/2*Math.PI,sweep:void 0,clockwise:!0,equidistant:!1,minNodeSpacing:10,boundingBox:void 0,avoidOverlap:!0,nodeDimensionsIncludeLabels:!1,height:void 0,width:void 0,spacingFactor:void 0,concentric:function(t){return t.degree()},levelWidth:function(t){return t.maxDegree()/4},animate:!1,animationDuration:500,animationEasing:void 0,animateFilter:function(t,r){return!0},ready:void 0,stop:void 0,transform:function(t,r){return r}};function uVn(e){this.options=eo({},lNi,e)}uVn.prototype.run=function(){for(var e=this.options,t=e,r=t.counterclockwise!==void 0?!t.counterclockwise:t.clockwise,a=e.cy,s=t.eles,o=s.nodes().not(":parent"),u=uv(t.boundingBox?t.boundingBox:{x1:0,y1:0,w:a.width(),h:a.height()}),h={x:u.x1+u.w/2,y:u.y1+u.h/2},f=[],p=0,m=0;m0){var P=Math.abs(I[0].value-L.value);P>=A&&(I=[],k.push(I))}I.push(L)}var M=p+t.minNodeSpacing;if(!t.avoidOverlap){var F=k.length>0&&k[0].length>1,U=Math.min(u.w,u.h)/2-M,$=U/(k.length+F?1:0);M=Math.min(M,$)}for(var G=0,B=0;B1&&t.avoidOverlap){var W=Math.cos(Y)-Math.cos(0),Q=Math.sin(Y)-Math.sin(0),V=Math.sqrt(M*M/(W*W+Q*Q));G=Math.max(V,G)}Z.r=G,G+=M}if(t.equidistant){for(var j=0,ee=0,te=0;te=e.numIter||(gNi(a,e),a.temperature=a.temperature*e.coolingFactor,a.temperature=e.animationThreshold&&o(),z3e(m)}};m()}else{for(;p;)p=u(f),f++;qxn(a,e),h()}return this};mke.prototype.stop=function(){return this.stopped=!0,this.thread&&this.thread.stop(),this.emit("layoutstop"),this};mke.prototype.destroy=function(){return this.thread&&this.thread.stop(),this};var uNi=function(t,r,a){for(var s=a.eles.edges(),o=a.eles.nodes(),u=uv(a.boundingBox?a.boundingBox:{x1:0,y1:0,w:t.width(),h:t.height()}),h={isCompound:t.hasCompoundNodes(),layoutNodes:[],idToIndex:{},nodeSize:o.size(),graphSet:[],indexToGraph:[],layoutEdges:[],edgeSize:s.size(),temperature:a.initialTemp,clientWidth:u.w,clientHeight:u.h,boundingBox:u},f=a.eles.components(),p={},m=0;m0){h.graphSet.push(U);for(var m=0;ms.count?0:s.graph},hVn=function(t,r,a,s){var o=s.graphSet[a];if(-10)var b=s.nodeOverlap*m,_=Math.sqrt(h*h+f*f),w=b*h/_,S=b*f/_;else var C=W3e(t,h,f),A=W3e(r,-1*h,-1*f),k=A.x-C.x,I=A.y-C.y,N=k*k+I*I,_=Math.sqrt(N),b=(t.nodeRepulsion+r.nodeRepulsion)/N,w=b*k/_,S=b*I/_;t.isLocked||(t.offsetX-=w,t.offsetY-=S),r.isLocked||(r.offsetX+=w,r.offsetY+=S)}},yNi=function(t,r,a,s){if(a>0)var o=t.maxX-r.minX;else var o=r.maxX-t.minX;if(s>0)var u=t.maxY-r.minY;else var u=r.maxY-t.minY;return o>=0&&u>=0?Math.sqrt(o*o+u*u):0},W3e=function(t,r,a){var s=t.positionX,o=t.positionY,u=t.height||1,h=t.width||1,f=a/r,p=u/h,m={};return r===0&&0a?(m.x=s,m.y=o+u/2,m):0r&&-1*p<=f&&f<=p?(m.x=s-h/2,m.y=o-h*a/2/r,m):0=p)?(m.x=s+u*r/2/a,m.y=o+u/2,m):(0>a&&(f<=-1*p||f>=p)&&(m.x=s-u*r/2/a,m.y=o-u/2),m)},vNi=function(t,r){for(var a=0;aa){var A=r.gravity*w/C,k=r.gravity*S/C;_.offsetX+=A,_.offsetY+=k}}}}},wNi=function(t,r){var a=[],s=0,o=-1;for(a.push.apply(a,t.graphSet[0]),o+=t.graphSet[0].length;s<=o;){var u=a[s++],h=t.idToIndex[u],f=t.layoutNodes[h],p=f.children;if(0a)var o={x:a*t/s,y:a*r/s};else var o={x:t,y:r};return o},fVn=function(t,r){var a=t.parentId;if(a!=null){var s=r.layoutNodes[r.idToIndex[a]],o=!1;if((s.maxX==null||t.maxX+s.padRight>s.maxX)&&(s.maxX=t.maxX+s.padRight,o=!0),(s.minX==null||t.minX-s.padLefts.maxY)&&(s.maxY=t.maxY+s.padBottom,o=!0),(s.minY==null||t.minY-s.padTopk&&(S+=A+r.componentSpacing,w=0,C=0,A=0)}}},SNi={fit:!0,padding:30,boundingBox:void 0,avoidOverlap:!0,avoidOverlapPadding:10,nodeDimensionsIncludeLabels:!1,spacingFactor:void 0,condense:!1,rows:void 0,cols:void 0,position:function(t){},sort:void 0,animate:!1,animationDuration:500,animationEasing:void 0,animateFilter:function(t,r){return!0},ready:void 0,stop:void 0,transform:function(t,r){return r}};function pVn(e){this.options=eo({},SNi,e)}pVn.prototype.run=function(){var e=this.options,t=e,r=e.cy,a=t.eles,s=a.nodes().not(":parent");t.sort&&(s=s.sort(t.sort));var o=uv(t.boundingBox?t.boundingBox:{x1:0,y1:0,w:r.width(),h:r.height()});if(o.h===0||o.w===0)a.nodes().layoutPositions(this,t,function(ie){return{x:o.x1,y:o.y1}});else{var u=s.size(),h=Math.sqrt(u*o.h/o.w),f=Math.round(h),p=Math.round(o.w/o.h*h),m=function(ge){if(ge==null)return Math.min(f,p);var ce=Math.min(f,p);ce==f?f=ge:p=ge},b=function(ge){if(ge==null)return Math.max(f,p);var ce=Math.max(f,p);ce==f?f=ge:p=ge},_=t.rows,w=t.cols!=null?t.cols:t.columns;if(_!=null&&w!=null)f=_,p=w;else if(_!=null&&w==null)f=_,p=Math.ceil(u/f);else if(_==null&&w!=null)p=w,f=Math.ceil(u/p);else if(p*f>u){var S=m(),C=b();(S-1)*C>=u?m(S-1):(C-1)*S>=u&&b(C-1)}else for(;p*f=u?b(k+1):m(A+1)}var I=o.w/p,N=o.h/f;if(t.condense&&(I=0,N=0),t.avoidOverlap)for(var L=0;L=p&&(W=0,Y++)},V={},j=0;j(W=fRi(e,t,Q[V],Q[V+1],Q[V+2],Q[V+3])))return A(F,W),!0}else if($.edgeType==="bezier"||$.edgeType==="multibezier"||$.edgeType==="self"||$.edgeType==="compound"){for(var Q=$.allpts,V=0;V+5<$.allpts.length;V+=4)if(cRi(e,t,Q[V],Q[V+1],Q[V+2],Q[V+3],Q[V+4],Q[V+5],Y)&&z>(W=dRi(e,t,Q[V],Q[V+1],Q[V+2],Q[V+3],Q[V+4],Q[V+5])))return A(F,W),!0}for(var j=j||U.source,ee=ee||U.target,te=s.getArrowWidth(G,B),ne=[{name:"source",x:$.arrowStartX,y:$.arrowStartY,angle:$.srcArrowAngle},{name:"target",x:$.arrowEndX,y:$.arrowEndY,angle:$.tgtArrowAngle},{name:"mid-source",x:$.midX,y:$.midY,angle:$.midsrcArrowAngle},{name:"mid-target",x:$.midX,y:$.midY,angle:$.midtgtArrowAngle}],V=0;V0&&(k(j),k(ee))}function N(F,U,$){return F2(F,U,$)}function L(F,U){var $=F._private,G=_,B;U?B=U+"-":B="",F.boundingBox();var Z=$.labelBounds[U||"main"],z=F.pstyle(B+"label").value,Y=F.pstyle("text-events").strValue==="yes";if(!(!Y||!z)){var W=N($.rscratch,"labelX",U),Q=N($.rscratch,"labelY",U),V=N($.rscratch,"labelAngle",U),j=F.pstyle(B+"text-margin-x").pfValue,ee=F.pstyle(B+"text-margin-y").pfValue,te=Z.x1-G-j,ne=Z.x2+G-j,se=Z.y1-G-ee,ie=Z.y2+G-ee;if(V){var ge=Math.cos(V),ce=Math.sin(V),be=function(Ce,Ie){return Ce=Ce-W,Ie=Ie-Q,{x:Ce*ge-Ie*ce+W,y:Ce*ce+Ie*ge+Q}},ve=be(te,se),De=be(te,ie),ye=be(ne,se),Ee=be(ne,ie),he=[ve.x+j,ve.y+ee,ye.x+j,ye.y+ee,Ee.x+j,Ee.y+ee,De.x+j,De.y+ee];if($2(e,t,he))return A(F),!0}else if(bO(Z,e,t))return A(F),!0}}for(var P=u.length-1;P>=0;P--){var M=u[P];M.isNode()?k(M)||L(M):I(M)||L(M)||L(M,"source")||L(M,"target")}return h};F$.getAllInBox=function(e,t,r,a){var s=this.getCachedZSortedEles().interactive,o=this.cy.zoom(),u=2/o,h=[],f=Math.min(e,r),p=Math.max(e,r),m=Math.min(t,a),b=Math.max(t,a);e=f,r=p,t=m,a=b;var _=uv({x1:e,y1:t,x2:r,y2:a}),w=[{x:_.x1,y:_.y1},{x:_.x2,y:_.y1},{x:_.x2,y:_.y2},{x:_.x1,y:_.y2}],S=[[w[0],w[1]],[w[1],w[2]],[w[2],w[3]],[w[3],w[0]]];function C(Ce,Ie,Le){return F2(Ce,Ie,Le)}function A(Ce,Ie){var Le=Ce._private,Fe=u,Ve="";Ce.boundingBox();var Oe=Le.labelBounds.main;if(!Oe)return null;var Dt=C(Le.rscratch,"labelX",Ie),ot=C(Le.rscratch,"labelY",Ie),sn=C(Le.rscratch,"labelAngle",Ie),Kt=Ce.pstyle(Ve+"text-margin-x").pfValue,Ft=Ce.pstyle(Ve+"text-margin-y").pfValue,Je=Oe.x1-Fe-Kt,ht=Oe.x2+Fe-Kt,et=Oe.y1-Fe-Ft,qe=Oe.y2+Fe-Ft;if(sn){var He=Math.cos(sn),Ge=Math.sin(sn),Ye=function(Xe,fe){return Xe=Xe-Dt,fe=fe-ot,{x:Xe*He-fe*Ge+Dt,y:Xe*Ge+fe*He+ot}};return[Ye(Je,et),Ye(ht,et),Ye(ht,qe),Ye(Je,qe)]}else return[{x:Je,y:et},{x:ht,y:et},{x:ht,y:qe},{x:Je,y:qe}]}function k(Ce,Ie,Le,Fe){function Ve(Oe,Dt,ot){return(ot.y-Oe.y)*(Dt.x-Oe.x)>(Dt.y-Oe.y)*(ot.x-Oe.x)}return Ve(Ce,Le,Fe)!==Ve(Ie,Le,Fe)&&Ve(Ce,Ie,Le)!==Ve(Ce,Ie,Fe)}for(var I=0;I0?-(Math.PI-t.ang):Math.PI+t.ang},INi=function(t,r,a,s,o){if(t!==Wxn?Kxn(r,t,xC):RNi(Gx,xC),Kxn(r,a,Gx),Yxn=xC.nx*Gx.ny-xC.ny*Gx.nx,jxn=xC.nx*Gx.nx-xC.ny*-Gx.ny,Q6=Math.asin(Math.max(-1,Math.min(1,Yxn))),Math.abs(Q6)<1e-6){dct=r.x,fct=r.y,OB=XH=0;return}$B=1,kxe=!1,jxn<0?Q6<0?Q6=Math.PI+Q6:(Q6=Math.PI-Q6,$B=-1,kxe=!0):Q6>0&&($B=-1,kxe=!0),r.radius!==void 0?XH=r.radius:XH=s,_B=Q6/2,Fwe=Math.min(xC.len/2,Gx.len/2),o?(mC=Math.abs(Math.cos(_B)*XH/Math.sin(_B)),mC>Fwe?(mC=Fwe,OB=Math.abs(mC*Math.sin(_B)/Math.cos(_B))):OB=XH):(mC=Math.min(Fwe,XH),OB=Math.abs(mC*Math.sin(_B)/Math.cos(_B))),pct=r.x+Gx.nx*mC,gct=r.y+Gx.ny*mC,dct=pct-Gx.ny*OB*$B,fct=gct+Gx.nx*OB*$B,yVn=r.x+xC.nx*mC,vVn=r.y+xC.ny*mC,Wxn=r};function _Vn(e,t){t.radius===0?e.lineTo(t.cx,t.cy):e.arc(t.cx,t.cy,t.radius,t.startAngle,t.endAngle,t.counterClockwise)}function Ogt(e,t,r,a){var s=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0;return a===0||t.radius===0?{cx:t.x,cy:t.y,radius:0,startX:t.x,startY:t.y,stopX:t.x,stopY:t.y,startAngle:void 0,endAngle:void 0,counterClockwise:void 0}:(INi(e,t,r,a,s),{cx:dct,cy:fct,radius:OB,startX:yVn,startY:vVn,stopX:pct,stopY:gct,startAngle:xC.ang+Math.PI/2*$B,endAngle:Gx.ang-Math.PI/2*$B,counterClockwise:kxe})}var Xoe=.01,NNi=Math.sqrt(2*Xoe),Lb={};Lb.findMidptPtsEtc=function(e,t){var r=t.posPts,a=t.intersectionPts,s=t.vectorNormInverse,o,u=e.pstyle("source-endpoint"),h=e.pstyle("target-endpoint"),f=u.units!=null&&h.units!=null,p=function(P,M,F,U){var $=U-M,G=F-P,B=Math.sqrt(G*G+$*$);return{x:-$/B,y:G/B}},m=e.pstyle("edge-distances").value;switch(m){case"node-position":o=r;break;case"intersection":o=a;break;case"endpoints":{if(f){var b=this.manualEndptToPx(e.source()[0],u),_=S1(b,2),w=_[0],S=_[1],C=this.manualEndptToPx(e.target()[0],h),A=S1(C,2),k=A[0],I=A[1],N={x1:w,y1:S,x2:k,y2:I};s=p(w,S,k,I),o=N}else Uu("Edge ".concat(e.id()," has edge-distances:endpoints specified without manual endpoints specified via source-endpoint and target-endpoint. Falling back on edge-distances:intersection (default).")),o=a;break}}return{midptPts:o,vectorNormInverse:s}};Lb.findHaystackPoints=function(e){for(var t=0;t0?Math.max(fe-Qe,0):Math.min(fe+Qe,0)},z=Z(G,U),Y=Z(B,$),W=!1;I===p?k=Math.abs(z)>Math.abs(Y)?s:a:I===f||I===h?(k=a,W=!0):(I===o||I===u)&&(k=s,W=!0);var Q=k===a,V=Q?Y:z,j=Q?B:G,ee=vgt(j),te=!1;!(W&&(L||M))&&(I===h&&j<0||I===f&&j>0||I===o&&j>0||I===u&&j<0)&&(ee*=-1,V=ee*Math.abs(V),te=!0);var ne;if(L){var se=P<0?1+P:P;ne=se*V}else{var ie=P<0?V:0;ne=ie+P*ee}var ge=function(fe){return Math.abs(fe)=Math.abs(V)},ce=ge(ne),be=ge(Math.abs(V)-Math.abs(ne)),ve=ce||be;if(ve&&!te)if(Q){var De=Math.abs(j)<=_/2,ye=Math.abs(G)<=w/2;if(De){var Ee=(m.x1+m.x2)/2,he=m.y1,we=m.y2;r.segpts=[Ee,he,Ee,we]}else if(ye){var Ce=(m.y1+m.y2)/2,Ie=m.x1,Le=m.x2;r.segpts=[Ie,Ce,Le,Ce]}else r.segpts=[m.x1,m.y2]}else{var Fe=Math.abs(j)<=b/2,Ve=Math.abs(B)<=S/2;if(Fe){var Oe=(m.y1+m.y2)/2,Dt=m.x1,ot=m.x2;r.segpts=[Dt,Oe,ot,Oe]}else if(Ve){var sn=(m.x1+m.x2)/2,Kt=m.y1,Ft=m.y2;r.segpts=[sn,Kt,sn,Ft]}else r.segpts=[m.x2,m.y1]}else if(Q){var Je=m.y1+ne+(A?_/2*ee:0),ht=m.x1,et=m.x2;r.segpts=[ht,Je,et,Je]}else{var qe=m.x1+ne+(A?b/2*ee:0),He=m.y1,Ge=m.y2;r.segpts=[qe,He,qe,Ge]}if(r.isRound){var Ye=e.pstyle("taxi-radius").value,Ae=e.pstyle("radius-type").value[0]==="arc-radius";r.radii=new Array(r.segpts.length/2).fill(Ye),r.isArcRadius=new Array(r.segpts.length/2).fill(Ae)}};Lb.tryToCorrectInvalidPoints=function(e,t){var r=e._private.rscratch;if(r.edgeType==="bezier"){var a=t.srcPos,s=t.tgtPos,o=t.srcW,u=t.srcH,h=t.tgtW,f=t.tgtH,p=t.srcShape,m=t.tgtShape,b=t.srcCornerRadius,_=t.tgtCornerRadius,w=t.srcRs,S=t.tgtRs,C=!aa(r.startX)||!aa(r.startY),A=!aa(r.arrowStartX)||!aa(r.arrowStartY),k=!aa(r.endX)||!aa(r.endY),I=!aa(r.arrowEndX)||!aa(r.arrowEndY),N=3,L=this.getArrowWidth(e.pstyle("width").pfValue,e.pstyle("arrow-scale").value)*this.arrowShapeWidth,P=N*L,M=XF({x:r.ctrlpts[0],y:r.ctrlpts[1]},{x:r.startX,y:r.startY}),F=Mj.poolIndex()){var ee=V;V=j,j=ee}var te=z.srcPos=V.position(),ne=z.tgtPos=j.position(),se=z.srcW=V.outerWidth(),ie=z.srcH=V.outerHeight(),ge=z.tgtW=j.outerWidth(),ce=z.tgtH=j.outerHeight(),be=z.srcShape=r.nodeShapes[t.getNodeShape(V)],ve=z.tgtShape=r.nodeShapes[t.getNodeShape(j)],De=z.srcCornerRadius=V.pstyle("corner-radius").value==="auto"?"auto":V.pstyle("corner-radius").pfValue,ye=z.tgtCornerRadius=j.pstyle("corner-radius").value==="auto"?"auto":j.pstyle("corner-radius").pfValue,Ee=z.tgtRs=j._private.rscratch,he=z.srcRs=V._private.rscratch;z.dirCounts={north:0,west:0,south:0,east:0,northwest:0,southwest:0,northeast:0,southeast:0};for(var we=0;we=NNi||(et=Math.sqrt(Math.max(ht*ht,Xoe)+Math.max(Je*Je,Xoe)));var qe=z.vector={x:ht,y:Je},He=z.vectorNorm={x:qe.x/et,y:qe.y/et},Ge={x:-He.y,y:He.x};z.nodesOverlap=!aa(et)||ve.checkPoint(Oe[0],Oe[1],0,ge,ce,ne.x,ne.y,ye,Ee)||be.checkPoint(ot[0],ot[1],0,se,ie,te.x,te.y,De,he),z.vectorNormInverse=Ge,Y={nodesOverlap:z.nodesOverlap,dirCounts:z.dirCounts,calculatedIntersection:!0,hasBezier:z.hasBezier,hasUnbundled:z.hasUnbundled,eles:z.eles,srcPos:ne,srcRs:Ee,tgtPos:te,tgtRs:he,srcW:ge,srcH:ce,tgtW:se,tgtH:ie,srcIntn:sn,tgtIntn:Dt,srcShape:ve,tgtShape:be,posPts:{x1:Ft.x2,y1:Ft.y2,x2:Ft.x1,y2:Ft.y1},intersectionPts:{x1:Kt.x2,y1:Kt.y2,x2:Kt.x1,y2:Kt.y1},vector:{x:-qe.x,y:-qe.y},vectorNorm:{x:-He.x,y:-He.y},vectorNormInverse:{x:-Ge.x,y:-Ge.y}}}var Ye=Ve?Y:z;Ie.nodesOverlap=Ye.nodesOverlap,Ie.srcIntn=Ye.srcIntn,Ie.tgtIntn=Ye.tgtIntn,Ie.isRound=Le.startsWith("round"),s&&(V.isParent()||V.isChild()||j.isParent()||j.isChild())&&(V.parents().anySame(j)||j.parents().anySame(V)||V.same(j)&&V.isParent())?t.findCompoundLoopPoints(Ce,Ye,we,Fe):V===j?t.findLoopPoints(Ce,Ye,we,Fe):Le.endsWith("segments")?t.findSegmentsPoints(Ce,Ye):Le.endsWith("taxi")?t.findTaxiPoints(Ce,Ye):Le==="straight"||!Fe&&z.eles.length%2===1&&we===Math.floor(z.eles.length/2)?t.findStraightEdgePoints(Ce):t.findBezierPoints(Ce,Ye,we,Fe,Ve),t.findEndpoints(Ce),t.tryToCorrectInvalidPoints(Ce,Ye),t.checkForInvalidEdgeWarning(Ce),t.storeAllpts(Ce),t.storeEdgeProjections(Ce),t.calculateArrowAngles(Ce),t.recalculateEdgeLabelProjections(Ce),t.calculateLabelAngles(Ce)}},F=0;F0){var Oe=p,Dt=NB(Oe,LV(u)),ot=NB(Oe,LV(Ve)),sn=Dt;if(ot2){var Kt=NB(Oe,{x:Ve[2],y:Ve[3]});Kt0){var Ke=m,mt=NB(Ke,LV(u)),lt=NB(Ke,LV(Qe)),$t=mt;if(lt2){var Ut=NB(Ke,{x:Qe[2],y:Qe[3]});Ut<$t&&(u=[Qe[2],Qe[3]])}}}var Jt=Nwe(u,ee,o.arrowShapes[_].spacing(e)+S),wn=Nwe(u,ee,o.arrowShapes[_].gap(e)+S);I.startX=wn[0],I.startY=wn[1],I.arrowStartX=Jt[0],I.arrowStartY=Jt[1],G&&(!aa(I.startX)||!aa(I.startY)||!aa(I.endX)||!aa(I.endY)?I.badLine=!0:I.badLine=!1)};Ice.getSourceEndpoint=function(e){var t=e[0]._private.rscratch;switch(this.recalculateRenderedStyle(e),t.edgeType){case"haystack":return{x:t.haystackPts[0],y:t.haystackPts[1]};default:return{x:t.arrowStartX,y:t.arrowStartY}}};Ice.getTargetEndpoint=function(e){var t=e[0]._private.rscratch;switch(this.recalculateRenderedStyle(e),t.edgeType){case"haystack":return{x:t.haystackPts[2],y:t.haystackPts[3]};default:return{x:t.arrowEndX,y:t.arrowEndY}}};var Lgt={};function ONi(e,t,r){for(var a=function(p,m,b,_){return _g(p,m,b,_)},s=t._private,o=s.rstyle.bezierPts,u=0;u=S||F){A={cp:L,segment:M};break}}if(A)break}var U=A.cp,$=A.segment,G=(S-k)/$.length,B=$.t1-$.t0,Z=w?$.t0+B*G:$.t1-B*G;Z=Hoe(0,Z,1),t=tY(U.p0,U.p1,U.p2,Z),_=LNi(U.p0,U.p1,U.p2,Z);break}case"straight":case"segments":case"haystack":{for(var z=0,Y,W,Q,V,j=a.allpts.length,ee=0;ee+3=S));ee+=2);var te=S-W,ne=te/Y;ne=Hoe(0,ne,1),t=tRi(Q,V,ne),_=xVn(Q,V);break}}u("labelX",b,t.x),u("labelY",b,t.y),u("labelAutoAngle",b,_)}};p("source"),p("target"),this.applyLabelDimensions(e)}};BA.applyLabelDimensions=function(e){this.applyPrefixedLabelDimensions(e),e.isEdge()&&(this.applyPrefixedLabelDimensions(e,"source"),this.applyPrefixedLabelDimensions(e,"target"))};BA.applyPrefixedLabelDimensions=function(e,t){var r=e._private,a=this.getLabelText(e,t),s=KF(a,e._private.labelDimsKey);if(F2(r.rscratch,"prefixedLabelDimsKey",t)!==s){g7(r.rscratch,"prefixedLabelDimsKey",t,s);var o=this.calculateLabelDimensions(e,a),u=e.pstyle("line-height").pfValue,h=e.pstyle("text-wrap").strValue,f=F2(r.rscratch,"labelWrapCachedLines",t)||[],p=h!=="wrap"?1:Math.max(f.length,1),m=o.height/p,b=m*u,_=o.width,w=o.height+(p-1)*(u-1)*m;g7(r.rstyle,"labelWidth",t,_),g7(r.rscratch,"labelWidth",t,_),g7(r.rstyle,"labelHeight",t,w),g7(r.rscratch,"labelHeight",t,w),g7(r.rscratch,"labelLineHeight",t,b)}};BA.getLabelText=function(e,t){var r=e._private,a=t?t+"-":"",s=e.pstyle(a+"label").strValue,o=e.pstyle("text-transform").value,u=function(ie,ge){return ge?(g7(r.rscratch,ie,t,ge),ge):F2(r.rscratch,ie,t)};if(!s)return"";o=="none"||(o=="uppercase"?s=s.toUpperCase():o=="lowercase"&&(s=s.toLowerCase()));var h=e.pstyle("text-wrap").value;if(h==="wrap"){var f=u("labelKey");if(f!=null&&u("labelWrapKey")===f)return u("labelWrapCachedText");for(var p="​",m=s.split(` +`),b=e.pstyle("text-max-width").pfValue,_=e.pstyle("text-overflow-wrap").value,w=_==="anywhere",S=[],C=/[\s\u200b]+|$/g,A=0;Ab){var P=k.matchAll(C),M="",F=0,U=W2(P),$;try{for(U.s();!($=U.n()).done;){var G=$.value,B=G[0],Z=k.substring(F,G.index);F=G.index+B.length;var z=M.length===0?Z:M+Z+B,Y=this.calculateLabelDimensions(e,z),W=Y.width;W<=b?M+=Z+B:(M&&S.push(M),M=Z+B)}}catch(se){U.e(se)}finally{U.f()}M.match(/^[\s\u200b]+$/)||S.push(M)}else S.push(k)}u("labelWrapCachedLines",S),s=u("labelWrapCachedText",S.join(` +`)),u("labelWrapKey",f)}else if(h==="ellipsis"){var Q=e.pstyle("text-max-width").pfValue,V="",j="…",ee=!1;if(this.calculateLabelDimensions(e,s).widthQ)break;V+=s[te],te===s.length-1&&(ee=!0)}return ee||(V+=j),V}return s};BA.getLabelJustification=function(e){var t=e.pstyle("text-justification").strValue,r=e.pstyle("text-halign").strValue;if(t==="auto")if(e.isNode())switch(r){case"left":return"right";case"right":return"left";default:return"center"}else return"center";else return t};BA.calculateLabelDimensions=function(e,t){var r=this,a=r.cy.window(),s=a.document,o=0,u=e.pstyle("font-style").strValue,h=e.pstyle("font-size").pfValue,f=e.pstyle("font-family").strValue,p=e.pstyle("font-weight").strValue,m=this.labelCalcCanvas,b=this.labelCalcCanvasContext;if(!m){m=this.labelCalcCanvas=s.createElement("canvas"),b=this.labelCalcCanvasContext=m.getContext("2d");var _=m.style;_.position="absolute",_.left="-9999px",_.top="-9999px",_.zIndex="-1",_.visibility="hidden",_.pointerEvents="none"}b.font="".concat(u," ").concat(p," ").concat(h,"px ").concat(f);for(var w=0,S=0,C=t.split(` +`),A=0;A1&&arguments[1]!==void 0?arguments[1]:!0;if(t.merge(u),h)for(var f=0;f=e.desktopTapThreshold2}var Cr=o(fe);Ar&&(e.hoverData.tapholdCancelled=!0);var Zr=function(){var Pt=e.hoverData.dragDelta=e.hoverData.dragDelta||[];Pt.length===0?(Pt.push(vn[0]),Pt.push(vn[1])):(Pt[0]+=vn[0],Pt[1]+=vn[1])};Ke=!0,s(Wn,["mousemove","vmousemove","tapdrag"],fe,{x:Ut[0],y:Ut[1]});var Pr=function(Pt){return{originalEvent:fe,type:Pt,position:{x:Ut[0],y:Ut[1]}}},Ci=function(){e.data.bgActivePosistion=void 0,e.hoverData.selecting||mt.emit(Pr("boxstart")),Vn[4]=1,e.hoverData.selecting=!0,e.redrawHint("select",!0),e.redraw()};if(e.hoverData.which===3){if(Ar){var ds=Pr("cxtdrag");zn?zn.emit(ds):mt.emit(ds),e.hoverData.cxtDragged=!0,(!e.hoverData.cxtOver||Wn!==e.hoverData.cxtOver)&&(e.hoverData.cxtOver&&e.hoverData.cxtOver.emit(Pr("cxtdragout")),e.hoverData.cxtOver=Wn,Wn&&Wn.emit(Pr("cxtdragover")))}}else if(e.hoverData.dragging){if(Ke=!0,mt.panningEnabled()&&mt.userPanningEnabled()){var ta;if(e.hoverData.justStartedPan){var Os=e.hoverData.mdownPos;ta={x:(Ut[0]-Os[0])*lt,y:(Ut[1]-Os[1])*lt},e.hoverData.justStartedPan=!1}else ta={x:vn[0]*lt,y:vn[1]*lt};mt.panBy(ta),mt.emit(Pr("dragpan")),e.hoverData.dragged=!0}Ut=e.projectIntoViewport(fe.clientX,fe.clientY)}else if(Vn[4]==1&&(zn==null||zn.pannable())){if(Ar){if(!e.hoverData.dragging&&mt.boxSelectionEnabled()&&(Cr||!mt.panningEnabled()||!mt.userPanningEnabled()))Ci();else if(!e.hoverData.selecting&&mt.panningEnabled()&&mt.userPanningEnabled()){var uo=u(zn,e.hoverData.downs);uo&&(e.hoverData.dragging=!0,e.hoverData.justStartedPan=!0,Vn[4]=0,e.data.bgActivePosistion=LV(Jt),e.redrawHint("select",!0),e.redraw())}zn&&zn.pannable()&&zn.active()&&zn.unactivate()}}else{if(zn&&zn.pannable()&&zn.active()&&zn.unactivate(),(!zn||!zn.grabbed())&&Wn!=Dn&&(Dn&&s(Dn,["mouseout","tapdragout"],fe,{x:Ut[0],y:Ut[1]}),Wn&&s(Wn,["mouseover","tapdragover"],fe,{x:Ut[0],y:Ut[1]}),e.hoverData.last=Wn),zn)if(Ar){if(mt.boxSelectionEnabled()&&Cr)zn&&zn.grabbed()&&(k(Cn),zn.emit(Pr("freeon")),Cn.emit(Pr("free")),e.dragData.didDrag&&(zn.emit(Pr("dragfreeon")),Cn.emit(Pr("dragfree")))),Ci();else if(zn&&zn.grabbed()&&e.nodeIsDraggable(zn)){var Ls=!e.dragData.didDrag;Ls&&e.redrawHint("eles",!0),e.dragData.didDrag=!0,e.hoverData.draggingEles||C(Cn,{inDragLayer:!0});var La={x:0,y:0};if(aa(vn[0])&&aa(vn[1])&&(La.x+=vn[0],La.y+=vn[1],Ls)){var to=e.hoverData.dragDelta;to&&aa(to[0])&&aa(to[1])&&(La.x+=to[0],La.y+=to[1])}e.hoverData.draggingEles=!0,Cn.silentShift(La).emit(Pr("position")).emit(Pr("drag")),e.redrawHint("drag",!0),e.redraw()}}else Zr();Ke=!0}if(Vn[2]=Ut[0],Vn[3]=Ut[1],Ke)return fe.stopPropagation&&fe.stopPropagation(),fe.preventDefault&&fe.preventDefault(),!1}},!1);var Z,z,Y;e.registerBinding(t,"mouseup",function(fe){if(!(e.hoverData.which===1&&fe.which!==1&&e.hoverData.capture)){var Qe=e.hoverData.capture;if(Qe){e.hoverData.capture=!1;var Ke=e.cy,mt=e.projectIntoViewport(fe.clientX,fe.clientY),lt=e.selection,$t=e.findNearestElement(mt[0],mt[1],!0,!1),Ut=e.dragData.possibleDragElements,Jt=e.hoverData.down,wn=o(fe);e.data.bgActivePosistion&&(e.redrawHint("select",!0),e.redraw()),e.hoverData.tapholdCancelled=!0,e.data.bgActivePosistion=void 0,Jt&&Jt.unactivate();var Vn=function(ur){return{originalEvent:fe,type:ur,position:{x:mt[0],y:mt[1]}}};if(e.hoverData.which===3){var Wn=Vn("cxttapend");if(Jt?Jt.emit(Wn):Ke.emit(Wn),!e.hoverData.cxtDragged){var Dn=Vn("cxttap");Jt?Jt.emit(Dn):Ke.emit(Dn)}e.hoverData.cxtDragged=!1,e.hoverData.which=null}else if(e.hoverData.which===1){if(s($t,["mouseup","tapend","vmouseup"],fe,{x:mt[0],y:mt[1]}),!e.dragData.didDrag&&!e.hoverData.dragged&&!e.hoverData.selecting&&!e.hoverData.isOverThresholdDrag&&(s(Jt,["click","tap","vclick"],fe,{x:mt[0],y:mt[1]}),z=!1,fe.timeStamp-Y<=Ke.multiClickDebounceTime()?(Z&&clearTimeout(Z),z=!0,Y=null,s(Jt,["dblclick","dbltap","vdblclick"],fe,{x:mt[0],y:mt[1]})):(Z=setTimeout(function(){z||s(Jt,["oneclick","onetap","voneclick"],fe,{x:mt[0],y:mt[1]})},Ke.multiClickDebounceTime()),Y=fe.timeStamp)),Jt==null&&!e.dragData.didDrag&&!e.hoverData.selecting&&!e.hoverData.dragged&&!o(fe)&&(Ke.$(r).unselect(["tapunselect"]),Ut.length>0&&e.redrawHint("eles",!0),e.dragData.possibleDragElements=Ut=Ke.collection()),$t==Jt&&!e.dragData.didDrag&&!e.hoverData.selecting&&$t!=null&&$t._private.selectable&&(e.hoverData.dragging||(Ke.selectionType()==="additive"||wn?$t.selected()?$t.unselect(["tapunselect"]):$t.select(["tapselect"]):wn||(Ke.$(r).unmerge($t).unselect(["tapunselect"]),$t.select(["tapselect"]))),e.redrawHint("eles",!0)),e.hoverData.selecting){var zn=Ke.collection(e.getAllInBox(lt[0],lt[1],lt[2],lt[3]));e.redrawHint("select",!0),zn.length>0&&e.redrawHint("eles",!0),Ke.emit(Vn("boxend"));var vn=function(ur){return ur.selectable()&&!ur.selected()};Ke.selectionType()==="additive"||wn||Ke.$(r).unmerge(zn).unselect(),zn.emit(Vn("box")).stdFilter(vn).select().emit(Vn("boxselect")),e.redraw()}if(e.hoverData.dragging&&(e.hoverData.dragging=!1,e.redrawHint("select",!0),e.redrawHint("eles",!0),e.redraw()),!lt[4]){e.redrawHint("drag",!0),e.redrawHint("eles",!0);var Cn=Jt&&Jt.grabbed();k(Ut),Cn&&(Jt.emit(Vn("freeon")),Ut.emit(Vn("free")),e.dragData.didDrag&&(Jt.emit(Vn("dragfreeon")),Ut.emit(Vn("dragfree"))))}}lt[4]=0,e.hoverData.down=null,e.hoverData.cxtStarted=!1,e.hoverData.draggingEles=!1,e.hoverData.selecting=!1,e.hoverData.isOverThresholdDrag=!1,e.dragData.didDrag=!1,e.hoverData.dragged=!1,e.hoverData.dragDelta=[],e.hoverData.mdownPos=null,e.hoverData.mdownGPos=null,e.hoverData.which=null}}},!1);var W=[],Q=4,V,j=1e5,ee=function(fe,Qe){for(var Ke=0;Ke=Q){var mt=W;if(V=ee(mt,5),!V){var lt=Math.abs(mt[0]);V=te(mt)&<>5}if(V)for(var $t=0;$t5&&(Ke=vgt(Ke)*5),Dn=Ke/-250,V&&(Dn/=j,Dn*=3),Dn=Dn*e.wheelSensitivity;var zn=fe.deltaMode===1;zn&&(Dn*=33);var vn=Ut.zoom()*Math.pow(10,Dn);fe.type==="gesturechange"&&(vn=e.gestureStartZoom*fe.scale),Ut.zoom({level:vn,renderedPosition:{x:Wn[0],y:Wn[1]}}),Ut.emit({type:fe.type==="gesturechange"?"pinchzoom":"scrollzoom",originalEvent:fe,position:{x:Vn[0],y:Vn[1]}})}}}};e.registerBinding(e.container,"wheel",ne,!0),e.registerBinding(t,"scroll",function(fe){e.scrollingPage=!0,clearTimeout(e.scrollingPageTimeout),e.scrollingPageTimeout=setTimeout(function(){e.scrollingPage=!1},250)},!0),e.registerBinding(e.container,"gesturestart",function(fe){e.gestureStartZoom=e.cy.zoom(),e.hasTouchStarted||fe.preventDefault()},!0),e.registerBinding(e.container,"gesturechange",function(Xe){e.hasTouchStarted||ne(Xe)},!0),e.registerBinding(e.container,"mouseout",function(fe){var Qe=e.projectIntoViewport(fe.clientX,fe.clientY);e.cy.emit({originalEvent:fe,type:"mouseout",position:{x:Qe[0],y:Qe[1]}})},!1),e.registerBinding(e.container,"mouseover",function(fe){var Qe=e.projectIntoViewport(fe.clientX,fe.clientY);e.cy.emit({originalEvent:fe,type:"mouseover",position:{x:Qe[0],y:Qe[1]}})},!1);var se,ie,ge,ce,be,ve,De,ye,Ee,he,we,Ce,Ie,Le=function(fe,Qe,Ke,mt){return Math.sqrt((Ke-fe)*(Ke-fe)+(mt-Qe)*(mt-Qe))},Fe=function(fe,Qe,Ke,mt){return(Ke-fe)*(Ke-fe)+(mt-Qe)*(mt-Qe)},Ve;e.registerBinding(e.container,"touchstart",Ve=function(fe){if(e.hasTouchStarted=!0,!!G(fe)){N(),e.touchData.capture=!0,e.data.bgActivePosistion=void 0;var Qe=e.cy,Ke=e.touchData.now,mt=e.touchData.earlier;if(fe.touches[0]){var lt=e.projectIntoViewport(fe.touches[0].clientX,fe.touches[0].clientY);Ke[0]=lt[0],Ke[1]=lt[1]}if(fe.touches[1]){var lt=e.projectIntoViewport(fe.touches[1].clientX,fe.touches[1].clientY);Ke[2]=lt[0],Ke[3]=lt[1]}if(fe.touches[2]){var lt=e.projectIntoViewport(fe.touches[2].clientX,fe.touches[2].clientY);Ke[4]=lt[0],Ke[5]=lt[1]}var $t=function(Cr){return{originalEvent:fe,type:Cr,position:{x:Ke[0],y:Ke[1]}}};if(fe.touches[1]){e.touchData.singleTouchMoved=!0,k(e.dragData.touchDragEles);var Ut=e.findContainerClientCoords();Ee=Ut[0],he=Ut[1],we=Ut[2],Ce=Ut[3],se=fe.touches[0].clientX-Ee,ie=fe.touches[0].clientY-he,ge=fe.touches[1].clientX-Ee,ce=fe.touches[1].clientY-he,Ie=0<=se&&se<=we&&0<=ge&&ge<=we&&0<=ie&&ie<=Ce&&0<=ce&&ce<=Ce;var Jt=Qe.pan(),wn=Qe.zoom();be=Le(se,ie,ge,ce),ve=Fe(se,ie,ge,ce),De=[(se+ge)/2,(ie+ce)/2],ye=[(De[0]-Jt.x)/wn,(De[1]-Jt.y)/wn];var Vn=200,Wn=Vn*Vn;if(ve=1){for(var On=e.touchData.startPosition=[null,null,null,null,null,null],Ir=0;Ir=e.touchTapThreshold2}if(Qe&&e.touchData.cxt){fe.preventDefault();var Ir=fe.touches[0].clientX-Ee,Ln=fe.touches[0].clientY-he,pr=fe.touches[1].clientX-Ee,Cr=fe.touches[1].clientY-he,Zr=Fe(Ir,Ln,pr,Cr),Pr=Zr/ve,Ci=150,ds=Ci*Ci,ta=1.5,Os=ta*ta;if(Pr>=Os||Zr>=ds){e.touchData.cxt=!1,e.data.bgActivePosistion=void 0,e.redrawHint("select",!0);var uo=wn("cxttapend");e.touchData.start?(e.touchData.start.unactivate().emit(uo),e.touchData.start=null):mt.emit(uo)}}if(Qe&&e.touchData.cxt){var uo=wn("cxtdrag");e.data.bgActivePosistion=void 0,e.redrawHint("select",!0),e.touchData.start?e.touchData.start.emit(uo):mt.emit(uo),e.touchData.start&&(e.touchData.start._private.grabbed=!1),e.touchData.cxtDragged=!0;var Ls=e.findNearestElement(lt[0],lt[1],!0,!0);(!e.touchData.cxtOver||Ls!==e.touchData.cxtOver)&&(e.touchData.cxtOver&&e.touchData.cxtOver.emit(wn("cxtdragout")),e.touchData.cxtOver=Ls,Ls&&Ls.emit(wn("cxtdragover")))}else if(Qe&&fe.touches[2]&&mt.boxSelectionEnabled())fe.preventDefault(),e.data.bgActivePosistion=void 0,this.lastThreeTouch=+new Date,e.touchData.selecting||mt.emit(wn("boxstart")),e.touchData.selecting=!0,e.touchData.didSelect=!0,Ke[4]=1,!Ke||Ke.length===0||Ke[0]===void 0?(Ke[0]=(lt[0]+lt[2]+lt[4])/3,Ke[1]=(lt[1]+lt[3]+lt[5])/3,Ke[2]=(lt[0]+lt[2]+lt[4])/3+1,Ke[3]=(lt[1]+lt[3]+lt[5])/3+1):(Ke[2]=(lt[0]+lt[2]+lt[4])/3,Ke[3]=(lt[1]+lt[3]+lt[5])/3),e.redrawHint("select",!0),e.redraw();else if(Qe&&fe.touches[1]&&!e.touchData.didSelect&&mt.zoomingEnabled()&&mt.panningEnabled()&&mt.userZoomingEnabled()&&mt.userPanningEnabled()){fe.preventDefault(),e.data.bgActivePosistion=void 0,e.redrawHint("select",!0);var La=e.dragData.touchDragEles;if(La){e.redrawHint("drag",!0);for(var to=0;to0&&!e.hoverData.draggingEles&&!e.swipePanning&&e.data.bgActivePosistion!=null&&(e.data.bgActivePosistion=void 0,e.redrawHint("select",!0),e.redraw())}},!1);var Dt;e.registerBinding(t,"touchcancel",Dt=function(fe){var Qe=e.touchData.start;e.touchData.capture=!1,Qe&&Qe.unactivate()});var ot,sn,Kt,Ft;if(e.registerBinding(t,"touchend",ot=function(fe){var Qe=e.touchData.start,Ke=e.touchData.capture;if(Ke)fe.touches.length===0&&(e.touchData.capture=!1),fe.preventDefault();else return;var mt=e.selection;e.swipePanning=!1,e.hoverData.draggingEles=!1;var lt=e.cy,$t=lt.zoom(),Ut=e.touchData.now,Jt=e.touchData.earlier;if(fe.touches[0]){var wn=e.projectIntoViewport(fe.touches[0].clientX,fe.touches[0].clientY);Ut[0]=wn[0],Ut[1]=wn[1]}if(fe.touches[1]){var wn=e.projectIntoViewport(fe.touches[1].clientX,fe.touches[1].clientY);Ut[2]=wn[0],Ut[3]=wn[1]}if(fe.touches[2]){var wn=e.projectIntoViewport(fe.touches[2].clientX,fe.touches[2].clientY);Ut[4]=wn[0],Ut[5]=wn[1]}var Vn=function(ds){return{originalEvent:fe,type:ds,position:{x:Ut[0],y:Ut[1]}}};Qe&&Qe.unactivate();var Wn;if(e.touchData.cxt){if(Wn=Vn("cxttapend"),Qe?Qe.emit(Wn):lt.emit(Wn),!e.touchData.cxtDragged){var Dn=Vn("cxttap");Qe?Qe.emit(Dn):lt.emit(Dn)}e.touchData.start&&(e.touchData.start._private.grabbed=!1),e.touchData.cxt=!1,e.touchData.start=null,e.redraw();return}if(!fe.touches[2]&<.boxSelectionEnabled()&&e.touchData.selecting){e.touchData.selecting=!1;var zn=lt.collection(e.getAllInBox(mt[0],mt[1],mt[2],mt[3]));mt[0]=void 0,mt[1]=void 0,mt[2]=void 0,mt[3]=void 0,mt[4]=0,e.redrawHint("select",!0),lt.emit(Vn("boxend"));var vn=function(ds){return ds.selectable()&&!ds.selected()};zn.emit(Vn("box")).stdFilter(vn).select().emit(Vn("boxselect")),zn.nonempty()&&e.redrawHint("eles",!0),e.redraw()}if(Qe!=null&&Qe.unactivate(),fe.touches[2])e.data.bgActivePosistion=void 0,e.redrawHint("select",!0);else if(!fe.touches[1]){if(!fe.touches[0]){if(!fe.touches[0]){e.data.bgActivePosistion=void 0,e.redrawHint("select",!0);var Cn=e.dragData.touchDragEles;if(Qe!=null){var Ar=Qe._private.grabbed;k(Cn),e.redrawHint("drag",!0),e.redrawHint("eles",!0),Ar&&(Qe.emit(Vn("freeon")),Cn.emit(Vn("free")),e.dragData.didDrag&&(Qe.emit(Vn("dragfreeon")),Cn.emit(Vn("dragfree")))),s(Qe,["touchend","tapend","vmouseup","tapdragout"],fe,{x:Ut[0],y:Ut[1]}),Qe.unactivate(),e.touchData.start=null}else{var ur=e.findNearestElement(Ut[0],Ut[1],!0,!0);s(ur,["touchend","tapend","vmouseup","tapdragout"],fe,{x:Ut[0],y:Ut[1]})}var On=e.touchData.startPosition[0]-Ut[0],Ir=On*On,Ln=e.touchData.startPosition[1]-Ut[1],pr=Ln*Ln,Cr=Ir+pr,Zr=Cr*$t*$t;e.touchData.singleTouchMoved||(Qe||lt.$(":selected").unselect(["tapunselect"]),s(Qe,["tap","vclick"],fe,{x:Ut[0],y:Ut[1]}),sn=!1,fe.timeStamp-Ft<=lt.multiClickDebounceTime()?(Kt&&clearTimeout(Kt),sn=!0,Ft=null,s(Qe,["dbltap","vdblclick"],fe,{x:Ut[0],y:Ut[1]})):(Kt=setTimeout(function(){sn||s(Qe,["onetap","voneclick"],fe,{x:Ut[0],y:Ut[1]})},lt.multiClickDebounceTime()),Ft=fe.timeStamp)),Qe!=null&&!e.dragData.didDrag&&Qe._private.selectable&&Zr"u"){var Je=[],ht=function(fe){return{clientX:fe.clientX,clientY:fe.clientY,force:1,identifier:fe.pointerId,pageX:fe.pageX,pageY:fe.pageY,radiusX:fe.width/2,radiusY:fe.height/2,screenX:fe.screenX,screenY:fe.screenY,target:fe.target}},et=function(fe){return{event:fe,touch:ht(fe)}},qe=function(fe){Je.push(et(fe))},He=function(fe){for(var Qe=0;Qe0)return se[0]}return null},S=Object.keys(_),C=0;C0?w:THn(o,u,t,r,a,s,h,f)},checkPoint:function(t,r,a,s,o,u,h,f){f=f==="auto"?o9(s,o):f;var p=2*f;if(uR(t,r,this.points,u,h,s,o-p,[0,-1],a)||uR(t,r,this.points,u,h,s-p,o,[0,-1],a))return!0;var m=s/2+2*a,b=o/2+2*a,_=[u-m,h-b,u-m,h,u+m,h,u+m,h-b];return!!($2(t,r,_)||sF(t,r,p,p,u+s/2-f,h+o/2-f,a)||sF(t,r,p,p,u-s/2+f,h+o/2-f,a))}}};SR.registerNodeShapes=function(){var e=this.nodeShapes={},t=this;this.generateEllipse(),this.generatePolygon("triangle",Gy(3,0)),this.generateRoundPolygon("round-triangle",Gy(3,0)),this.generatePolygon("rectangle",Gy(4,0)),e.square=e.rectangle,this.generateRoundRectangle(),this.generateCutRectangle(),this.generateBarrel(),this.generateBottomRoundrectangle();{var r=[0,1,1,0,0,-1,-1,0];this.generatePolygon("diamond",r),this.generateRoundPolygon("round-diamond",r)}this.generatePolygon("pentagon",Gy(5,0)),this.generateRoundPolygon("round-pentagon",Gy(5,0)),this.generatePolygon("hexagon",Gy(6,0)),this.generateRoundPolygon("round-hexagon",Gy(6,0)),this.generatePolygon("heptagon",Gy(7,0)),this.generateRoundPolygon("round-heptagon",Gy(7,0)),this.generatePolygon("octagon",Gy(8,0)),this.generateRoundPolygon("round-octagon",Gy(8,0));var a=new Array(20);{var s=nct(5,0),o=nct(5,Math.PI/5),u=.5*(3-Math.sqrt(5));u*=1.57;for(var h=0;h=t.deqFastCost*L)break}else if(p){if(I>=t.deqCost*w||I>=t.deqAvgCost*_)break}else if(N>=t.deqNoDrawCost*cit)break;var P=t.deq(a,A,C);if(P.length>0)for(var M=0;M0&&(t.onDeqd(a,S),!p&&t.shouldRedraw(a,S,A,C)&&o())},h=t.priority||mgt;s.beforeRender(u,h(a))}}}},MNi=function(){function e(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:G3e;V9(this,e),this.idsByKey=new k7,this.keyForId=new k7,this.cachesByLvl=new k7,this.lvls=[],this.getKey=t,this.doesEleInvalidateKey=r}return Y9(e,[{key:"getIdsFor",value:function(r){r==null&&jd("Can not get id list for null key");var a=this.idsByKey,s=this.idsByKey.get(r);return s||(s=new WW,a.set(r,s)),s}},{key:"addIdForKey",value:function(r,a){r!=null&&this.getIdsFor(r).add(a)}},{key:"deleteIdForKey",value:function(r,a){r!=null&&this.getIdsFor(r).delete(a)}},{key:"getNumberOfIdsForKey",value:function(r){return r==null?0:this.getIdsFor(r).size}},{key:"updateKeyMappingFor",value:function(r){var a=r.id(),s=this.keyForId.get(a),o=this.getKey(r);this.deleteIdForKey(s,a),this.addIdForKey(o,a),this.keyForId.set(a,o)}},{key:"deleteKeyMappingFor",value:function(r){var a=r.id(),s=this.keyForId.get(a);this.deleteIdForKey(s,a),this.keyForId.delete(a)}},{key:"keyHasChangedFor",value:function(r){var a=r.id(),s=this.keyForId.get(a),o=this.getKey(r);return s!==o}},{key:"isInvalid",value:function(r){return this.keyHasChangedFor(r)||this.doesEleInvalidateKey(r)}},{key:"getCachesAt",value:function(r){var a=this.cachesByLvl,s=this.lvls,o=a.get(r);return o||(o=new k7,a.set(r,o),s.push(r)),o}},{key:"getCache",value:function(r,a){return this.getCachesAt(a).get(r)}},{key:"get",value:function(r,a){var s=this.getKey(r),o=this.getCache(s,a);return o!=null&&this.updateKeyMappingFor(r),o}},{key:"getForCachedKey",value:function(r,a){var s=this.keyForId.get(r.id()),o=this.getCache(s,a);return o}},{key:"hasCache",value:function(r,a){return this.getCachesAt(a).has(r)}},{key:"has",value:function(r,a){var s=this.getKey(r);return this.hasCache(s,a)}},{key:"setCache",value:function(r,a,s){s.key=r,this.getCachesAt(a).set(r,s)}},{key:"set",value:function(r,a,s){var o=this.getKey(r);this.setCache(o,a,s),this.updateKeyMappingFor(r)}},{key:"deleteCache",value:function(r,a){this.getCachesAt(a).delete(r)}},{key:"delete",value:function(r,a){var s=this.getKey(r);this.deleteCache(s,a)}},{key:"invalidateKey",value:function(r){var a=this;this.lvls.forEach(function(s){return a.deleteCache(r,s)})}},{key:"invalidate",value:function(r){var a=r.id(),s=this.keyForId.get(a);this.deleteKeyMappingFor(r);var o=this.doesEleInvalidateKey(r);return o&&this.invalidateKey(s),o||this.getNumberOfIdsForKey(s)===0}}])}(),Jxn=25,$we=50,Rxe=-4,mct=3,RVn=7.99,PNi=8,BNi=1024,FNi=1024,$Ni=1024,UNi=.2,zNi=.8,GNi=10,qNi=.15,HNi=.1,VNi=.9,YNi=.9,jNi=100,WNi=1,MV={dequeue:"dequeue",downscale:"downscale",highQuality:"highQuality"},KNi=Nm({getKey:null,doesEleInvalidateKey:G3e,drawElement:null,getBoundingBox:null,getRotationPoint:null,getRotationOffset:null,isVisible:yHn,allowEdgeTxrCaching:!0,allowParentTxrCaching:!0}),Wie=function(t,r){var a=this;a.renderer=t,a.onDequeues=[];var s=KNi(r);eo(a,s),a.lookup=new MNi(s.getKey,s.doesEleInvalidateKey),a.setupDequeueing()},$p=Wie.prototype;$p.reasons=MV;$p.getTextureQueue=function(e){var t=this;return t.eleImgCaches=t.eleImgCaches||{},t.eleImgCaches[e]=t.eleImgCaches[e]||[]};$p.getRetiredTextureQueue=function(e){var t=this,r=t.eleImgCaches.retired=t.eleImgCaches.retired||{},a=r[e]=r[e]||[];return a};$p.getElementQueue=function(){var e=this,t=e.eleCacheQueue=e.eleCacheQueue||new Ace(function(r,a){return a.reqs-r.reqs});return t};$p.getElementKeyToQueue=function(){var e=this,t=e.eleKeyToCacheQueue=e.eleKeyToCacheQueue||{};return t};$p.getElement=function(e,t,r,a,s){var o=this,u=this.renderer,h=u.cy.zoom(),f=this.lookup;if(!t||t.w===0||t.h===0||isNaN(t.w)||isNaN(t.h)||!e.visible()||e.removed()||!o.allowEdgeTxrCaching&&e.isEdge()||!o.allowParentTxrCaching&&e.isParent())return null;if(a==null&&(a=Math.ceil(ygt(h*r))),a=RVn||a>mct)return null;var p=Math.pow(2,a),m=t.h*p,b=t.w*p,_=u.eleTextBiggerThanMin(e,p);if(!this.isVisible(e,_))return null;var w=f.get(e,a);if(w&&w.invalidated&&(w.invalidated=!1,w.texture.invalidatedWidth-=w.width),w)return w;var S;if(m<=Jxn?S=Jxn:m<=$we?S=$we:S=Math.ceil(m/$we)*$we,m>$Ni||b>FNi)return null;var C=o.getTextureQueue(S),A=C[C.length-2],k=function(){return o.recycleTexture(S,b)||o.addTexture(S,b)};A||(A=C[C.length-1]),A||(A=k()),A.width-A.usedWidtha;B--)$=o.getElement(e,t,r,B,MV.downscale);G()}else return o.queueElement(e,M.level-1),M;else{var Z;if(!N&&!L&&!P)for(var z=a-1;z>=Rxe;z--){var Y=f.get(e,z);if(Y){Z=Y;break}}if(I(Z))return o.queueElement(e,a),Z;A.context.translate(A.usedWidth,0),A.context.scale(p,p),this.drawElement(A.context,e,t,_,!1),A.context.scale(1/p,1/p),A.context.translate(-A.usedWidth,0)}return w={x:A.usedWidth,texture:A,level:a,scale:p,width:b,height:m,scaledLabelShown:_},A.usedWidth+=Math.ceil(b+PNi),A.eleCaches.push(w),f.set(e,a,w),o.checkTextureFullness(A),w};$p.invalidateElements=function(e){for(var t=0;t=UNi*e.width&&this.retireTexture(e)};$p.checkTextureFullness=function(e){var t=this,r=t.getTextureQueue(e.height);e.usedWidth/e.width>zNi&&e.fullnessChecks>=GNi?s9(r,e):e.fullnessChecks++};$p.retireTexture=function(e){var t=this,r=e.height,a=t.getTextureQueue(r),s=this.lookup;s9(a,e),e.retired=!0;for(var o=e.eleCaches,u=0;u=t)return u.retired=!1,u.usedWidth=0,u.invalidatedWidth=0,u.fullnessChecks=0,bgt(u.eleCaches),u.context.setTransform(1,0,0,1,0,0),u.context.clearRect(0,0,u.width,u.height),s9(s,u),a.push(u),u}};$p.queueElement=function(e,t){var r=this,a=r.getElementQueue(),s=r.getElementKeyToQueue(),o=this.getKey(e),u=s[o];if(u)u.level=Math.max(u.level,t),u.eles.merge(e),u.reqs++,a.updateItem(u);else{var h={eles:e.spawn().merge(e),level:t,reqs:1,key:o};a.push(h),s[o]=h}};$p.dequeue=function(e){for(var t=this,r=t.getElementQueue(),a=t.getElementKeyToQueue(),s=[],o=t.lookup,u=0;u0;u++){var h=r.pop(),f=h.key,p=h.eles[0],m=o.hasCache(p,h.level);if(a[f]=null,m)continue;s.push(h);var b=t.getBoundingBox(p);t.getElement(p,b,e,h.level,MV.dequeue)}return s};$p.removeFromQueue=function(e){var t=this,r=t.getElementQueue(),a=t.getElementKeyToQueue(),s=this.getKey(e),o=a[s];o!=null&&(o.eles.length===1?(o.reqs=ggt,r.updateItem(o),r.pop(),a[s]=null):o.eles.unmerge(e))};$p.onDequeue=function(e){this.onDequeues.push(e)};$p.offDequeue=function(e){s9(this.onDequeues,e)};$p.setupDequeueing=kVn.setupDequeueing({deqRedrawThreshold:jNi,deqCost:qNi,deqAvgCost:HNi,deqNoDrawCost:VNi,deqFastCost:YNi,deq:function(t,r,a){return t.dequeue(r,a)},onDeqd:function(t,r){for(var a=0;a=QNi||r>X3e)return null}a.validateLayersElesOrdering(r,e);var f=a.layersByLevel,p=Math.pow(2,r),m=f[r]=f[r]||[],b,_=a.levelIsComplete(r,e),w,S=function(){var G=function(W){if(a.validateLayersElesOrdering(W,e),a.levelIsComplete(W,e))return w=f[W],!0},B=function(W){if(!w)for(var Q=r+W;Tse<=Q&&Q<=X3e&&!G(Q);Q+=W);};B(1),B(-1);for(var Z=m.length-1;Z>=0;Z--){var z=m[Z];z.invalid&&s9(m,z)}};if(!_)S();else return m;var C=function(){if(!b){b=uv();for(var G=0;GtSn||z>tSn)return null;var Y=Z*z;if(Y>aOi)return null;var W=a.makeLayer(b,r);if(B!=null){var Q=m.indexOf(B)+1;m.splice(Q,0,W)}else(G.insert===void 0||G.insert)&&m.unshift(W);return W};if(a.skipping&&!h)return null;for(var k=null,I=e.length/XNi,N=!h,L=0;L=I||!SHn(k.bb,P.boundingBox()))&&(k=A({insert:!0,after:k}),!k))return null;w||N?a.queueLayer(k,P):a.drawEleInLayer(k,P,r,t),k.eles.push(P),F[r]=k}return w||(N?null:m)};Om.getEleLevelForLayerLevel=function(e,t){return e};Om.drawEleInLayer=function(e,t,r,a){var s=this,o=this.renderer,u=e.context,h=t.boundingBox();h.w===0||h.h===0||!t.visible()||(r=s.getEleLevelForLayerLevel(r,a),o.setImgSmoothing(u,!1),o.drawCachedElement(u,t,null,null,r,sOi),o.setImgSmoothing(u,!0))};Om.levelIsComplete=function(e,t){var r=this,a=r.layersByLevel[e];if(!a||a.length===0)return!1;for(var s=0,o=0;o0||u.invalid)return!1;s+=u.eles.length}return s===t.length};Om.validateLayersElesOrdering=function(e,t){var r=this.layersByLevel[e];if(r)for(var a=0;a0){t=!0;break}}return t};Om.invalidateElements=function(e){var t=this;e.length!==0&&(t.lastInvalidationTime=cR(),!(e.length===0||!t.haveLayers())&&t.updateElementsInLayers(e,function(a,s,o){t.invalidateLayer(a)}))};Om.invalidateLayer=function(e){if(this.lastInvalidationTime=cR(),!e.invalid){var t=e.level,r=e.eles,a=this.layersByLevel[t];s9(a,e),e.elesQueue=[],e.invalid=!0,e.replacement&&(e.replacement.invalid=!0);for(var s=0;s3&&arguments[3]!==void 0?arguments[3]:!0,s=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,o=arguments.length>5&&arguments[5]!==void 0?arguments[5]:!0,u=this,h=t._private.rscratch;if(!(o&&!t.visible())&&!(h.badLine||h.allpts==null||isNaN(h.allpts[0]))){var f;r&&(f=r,e.translate(-f.x1,-f.y1));var p=o?t.pstyle("opacity").value:1,m=o?t.pstyle("line-opacity").value:1,b=t.pstyle("curve-style").value,_=t.pstyle("line-style").value,w=t.pstyle("width").pfValue,S=t.pstyle("line-cap").value,C=t.pstyle("line-outline-width").value,A=t.pstyle("line-outline-color").value,k=p*m,I=p*m,N=function(){var W=arguments.length>0&&arguments[0]!==void 0?arguments[0]:k;b==="straight-triangle"?(u.eleStrokeStyle(e,t,W),u.drawEdgeTrianglePath(t,e,h.allpts)):(e.lineWidth=w,e.lineCap=S,u.eleStrokeStyle(e,t,W),u.drawEdgePath(t,e,h.allpts,_),e.lineCap="butt")},L=function(){var W=arguments.length>0&&arguments[0]!==void 0?arguments[0]:k;if(e.lineWidth=w+C,e.lineCap=S,C>0)u.colorStrokeStyle(e,A[0],A[1],A[2],W);else{e.lineCap="butt";return}b==="straight-triangle"?u.drawEdgeTrianglePath(t,e,h.allpts):(u.drawEdgePath(t,e,h.allpts,_),e.lineCap="butt")},P=function(){s&&u.drawEdgeOverlay(e,t)},M=function(){s&&u.drawEdgeUnderlay(e,t)},F=function(){var W=arguments.length>0&&arguments[0]!==void 0?arguments[0]:I;u.drawArrowheads(e,t,W)},U=function(){u.drawElementText(e,t,null,a)};e.lineJoin="round";var $=t.pstyle("ghost").value==="yes";if($){var G=t.pstyle("ghost-offset-x").pfValue,B=t.pstyle("ghost-offset-y").pfValue,Z=t.pstyle("ghost-opacity").value,z=k*Z;e.translate(G,B),N(z),F(z),e.translate(-G,-B)}else L();M(),N(),F(),P(),U(),r&&e.translate(f.x1,f.y1)}};var OVn=function(t){if(!["overlay","underlay"].includes(t))throw new Error("Invalid state");return function(r,a){if(a.visible()){var s=a.pstyle("".concat(t,"-opacity")).value;if(s!==0){var o=this,u=o.usePaths(),h=a._private.rscratch,f=a.pstyle("".concat(t,"-padding")).pfValue,p=2*f,m=a.pstyle("".concat(t,"-color")).value;r.lineWidth=p,h.edgeType==="self"&&!u?r.lineCap="butt":r.lineCap="round",o.colorStrokeStyle(r,m[0],m[1],m[2],s),o.drawEdgePath(a,r,h.allpts,"solid")}}}};TR.drawEdgeOverlay=OVn("overlay");TR.drawEdgeUnderlay=OVn("underlay");TR.drawEdgePath=function(e,t,r,a){var s=e._private.rscratch,o=t,u,h=!1,f=this.usePaths(),p=e.pstyle("line-dash-pattern").pfValue,m=e.pstyle("line-dash-offset").pfValue;if(f){var b=r.join("$"),_=s.pathCacheKey&&s.pathCacheKey===b;_?(u=t=s.pathCache,h=!0):(u=t=new Path2D,s.pathCacheKey=b,s.pathCache=u)}if(o.setLineDash)switch(a){case"dotted":o.setLineDash([1,1]);break;case"dashed":o.setLineDash(p),o.lineDashOffset=m;break;case"solid":o.setLineDash([]);break}if(!h&&!s.badLine)switch(t.beginPath&&t.beginPath(),t.moveTo(r[0],r[1]),s.edgeType){case"bezier":case"self":case"compound":case"multibezier":for(var w=2;w+35&&arguments[5]!==void 0?arguments[5]:!0,u=this;if(a==null){if(o&&!u.eleTextBiggerThanMin(t))return}else if(a===!1)return;if(t.isNode()){var h=t.pstyle("label");if(!h||!h.value)return;var f=u.getLabelJustification(t);e.textAlign=f,e.textBaseline="bottom"}else{var p=t.element()._private.rscratch.badLine,m=t.pstyle("label"),b=t.pstyle("source-label"),_=t.pstyle("target-label");if(p||(!m||!m.value)&&(!b||!b.value)&&(!_||!_.value))return;e.textAlign="center",e.textBaseline="bottom"}var w=!r,S;r&&(S=r,e.translate(-S.x1,-S.y1)),s==null?(u.drawText(e,t,null,w,o),t.isEdge()&&(u.drawText(e,t,"source",w,o),u.drawText(e,t,"target",w,o))):u.drawText(e,t,s,w,o),r&&e.translate(S.x1,S.y1)};$$.getFontCache=function(e){var t;this.fontCaches=this.fontCaches||[];for(var r=0;r2&&arguments[2]!==void 0?arguments[2]:!0,a=t.pstyle("font-style").strValue,s=t.pstyle("font-size").pfValue+"px",o=t.pstyle("font-family").strValue,u=t.pstyle("font-weight").strValue,h=r?t.effectiveOpacity()*t.pstyle("text-opacity").value:1,f=t.pstyle("text-outline-opacity").value*h,p=t.pstyle("color").value,m=t.pstyle("text-outline-color").value;e.font=a+" "+u+" "+s+" "+o,e.lineJoin="round",this.colorFillStyle(e,p[0],p[1],p[2],h),this.colorStrokeStyle(e,m[0],m[1],m[2],f)};function bOi(e,t,r,a,s){var o=Math.min(a,s),u=o/2,h=t+a/2,f=r+s/2;e.beginPath(),e.arc(h,f,u,0,Math.PI*2),e.closePath()}function aSn(e,t,r,a,s){var o=arguments.length>5&&arguments[5]!==void 0?arguments[5]:5,u=Math.min(o,a/2,s/2);e.beginPath(),e.moveTo(t+u,r),e.lineTo(t+a-u,r),e.quadraticCurveTo(t+a,r,t+a,r+u),e.lineTo(t+a,r+s-u),e.quadraticCurveTo(t+a,r+s,t+a-u,r+s),e.lineTo(t+u,r+s),e.quadraticCurveTo(t,r+s,t,r+s-u),e.lineTo(t,r+u),e.quadraticCurveTo(t,r,t+u,r),e.closePath()}$$.getTextAngle=function(e,t){var r,a=e._private,s=a.rscratch,o=t?t+"-":"",u=e.pstyle(o+"text-rotation");if(u.strValue==="autorotate"){var h=F2(s,"labelAngle",t);r=e.isEdge()?h:0}else u.strValue==="none"?r=0:r=u.pfValue;return r};$$.drawText=function(e,t,r){var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,s=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,o=t._private,u=o.rscratch,h=s?t.effectiveOpacity():1;if(!(s&&(h===0||t.pstyle("text-opacity").value===0))){r==="main"&&(r=null);var f=F2(u,"labelX",r),p=F2(u,"labelY",r),m,b,_=this.getLabelText(t,r);if(_!=null&&_!==""&&!isNaN(f)&&!isNaN(p)){this.setupTextStyle(e,t,s);var w=r?r+"-":"",S=F2(u,"labelWidth",r),C=F2(u,"labelHeight",r),A=t.pstyle(w+"text-margin-x").pfValue,k=t.pstyle(w+"text-margin-y").pfValue,I=t.isEdge(),N=t.pstyle("text-halign").value,L=t.pstyle("text-valign").value;I&&(N="center",L="center"),f+=A,p+=k;var P;switch(a?P=this.getTextAngle(t,r):P=0,P!==0&&(m=f,b=p,e.translate(m,b),e.rotate(P),f=0,p=0),L){case"top":break;case"center":p+=C/2;break;case"bottom":p+=C;break}var M=t.pstyle("text-background-opacity").value,F=t.pstyle("text-border-opacity").value,U=t.pstyle("text-border-width").pfValue,$=t.pstyle("text-background-padding").pfValue,G=t.pstyle("text-background-shape").strValue,B=G==="round-rectangle"||G==="roundrectangle",Z=G==="circle",z=2;if(M>0||U>0&&F>0){var Y=e.fillStyle,W=e.strokeStyle,Q=e.lineWidth,V=t.pstyle("text-background-color").value,j=t.pstyle("text-border-color").value,ee=t.pstyle("text-border-style").value,te=M>0,ne=U>0&&F>0,se=f-$;switch(N){case"left":se-=S;break;case"center":se-=S/2;break}var ie=p-C-$,ge=S+2*$,ce=C+2*$;if(te&&(e.fillStyle="rgba(".concat(V[0],",").concat(V[1],",").concat(V[2],",").concat(M*h,")")),ne&&(e.strokeStyle="rgba(".concat(j[0],",").concat(j[1],",").concat(j[2],",").concat(F*h,")"),e.lineWidth=U,e.setLineDash))switch(ee){case"dotted":e.setLineDash([1,1]);break;case"dashed":e.setLineDash([4,2]);break;case"double":e.lineWidth=U/4,e.setLineDash([]);break;case"solid":default:e.setLineDash([]);break}if(B?(e.beginPath(),aSn(e,se,ie,ge,ce,z)):Z?(e.beginPath(),bOi(e,se,ie,ge,ce)):(e.beginPath(),e.rect(se,ie,ge,ce)),te&&e.fill(),ne&&e.stroke(),ne&&ee==="double"){var be=U/2;e.beginPath(),B?aSn(e,se+be,ie+be,ge-2*be,ce-2*be,z):e.rect(se+be,ie+be,ge-2*be,ce-2*be),e.stroke()}e.fillStyle=Y,e.strokeStyle=W,e.lineWidth=Q,e.setLineDash&&e.setLineDash([])}var ve=2*t.pstyle("text-outline-width").pfValue;if(ve>0&&(e.lineWidth=ve),t.pstyle("text-wrap").value==="wrap"){var De=F2(u,"labelWrapCachedLines",r),ye=F2(u,"labelLineHeight",r),Ee=S/2,he=this.getLabelJustification(t);switch(he==="auto"||(N==="left"?he==="left"?f+=-S:he==="center"&&(f+=-Ee):N==="center"?he==="left"?f+=-Ee:he==="right"&&(f+=Ee):N==="right"&&(he==="center"?f+=Ee:he==="right"&&(f+=S))),L){case"top":p-=(De.length-1)*ye;break;case"center":case"bottom":p-=(De.length-1)*ye;break}for(var we=0;we0&&e.strokeText(De[we],f,p),e.fillText(De[we],f,p),p+=ye}else ve>0&&e.strokeText(_,f,p),e.fillText(_,f,p);P!==0&&(e.rotate(-P),e.translate(-m,-b))}}};var W9={};W9.drawNode=function(e,t,r){var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,s=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,o=arguments.length>5&&arguments[5]!==void 0?arguments[5]:!0,u=this,h,f,p=t._private,m=p.rscratch,b=t.position();if(!(!aa(b.x)||!aa(b.y))&&!(o&&!t.visible())){var _=o?t.effectiveOpacity():1,w=u.usePaths(),S,C=!1,A=t.padding();h=t.width()+2*A,f=t.height()+2*A;var k;r&&(k=r,e.translate(-k.x1,-k.y1));for(var I=t.pstyle("background-image"),N=I.value,L=new Array(N.length),P=new Array(N.length),M=0,F=0;F0&&arguments[0]!==void 0?arguments[0]:z;u.eleFillStyle(e,t,Ae)},ye=function(){var Ae=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ne;u.colorStrokeStyle(e,Y[0],Y[1],Y[2],Ae)},Ee=function(){var Ae=arguments.length>0&&arguments[0]!==void 0?arguments[0]:ce;u.colorStrokeStyle(e,ie[0],ie[1],ie[2],Ae)},he=function(Ae,Xe,fe,Qe){var Ke=u.nodePathCache=u.nodePathCache||[],mt=bHn(fe==="polygon"?fe+","+Qe.join(","):fe,""+Xe,""+Ae,""+ve),lt=Ke[mt],$t,Ut=!1;return lt!=null?($t=lt,Ut=!0,m.pathCache=$t):($t=new Path2D,Ke[mt]=m.pathCache=$t),{path:$t,cacheHit:Ut}},we=t.pstyle("shape").strValue,Ce=t.pstyle("shape-polygon-points").pfValue;if(w){e.translate(b.x,b.y);var Ie=he(h,f,we,Ce);S=Ie.path,C=Ie.cacheHit}var Le=function(){if(!C){var Ae=b;w&&(Ae={x:0,y:0}),u.nodeShapes[u.getNodeShape(t)].draw(S||e,Ae.x,Ae.y,h,f,ve,m)}w?e.fill(S):e.fill()},Fe=function(){for(var Ae=arguments.length>0&&arguments[0]!==void 0?arguments[0]:_,Xe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,fe=p.backgrounding,Qe=0,Ke=0;Ke0&&arguments[0]!==void 0?arguments[0]:!1,Xe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:_;u.hasPie(t)&&(u.drawPie(e,t,Xe),Ae&&(w||u.nodeShapes[u.getNodeShape(t)].draw(e,b.x,b.y,h,f,ve,m)))},Oe=function(){var Ae=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1,Xe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:_;u.hasStripe(t)&&(e.save(),w?e.clip(m.pathCache):(u.nodeShapes[u.getNodeShape(t)].draw(e,b.x,b.y,h,f,ve,m),e.clip()),u.drawStripe(e,t,Xe),e.restore(),Ae&&(w||u.nodeShapes[u.getNodeShape(t)].draw(e,b.x,b.y,h,f,ve,m)))},Dt=function(){var Ae=arguments.length>0&&arguments[0]!==void 0?arguments[0]:_,Xe=(B>0?B:-B)*Ae,fe=B>0?0:255;B!==0&&(u.colorFillStyle(e,fe,fe,fe,Xe),w?e.fill(S):e.fill())},ot=function(){if(Z>0){if(e.lineWidth=Z,e.lineCap=V,e.lineJoin=Q,e.setLineDash)switch(W){case"dotted":e.setLineDash([1,1]);break;case"dashed":e.setLineDash(ee),e.lineDashOffset=te;break;case"solid":case"double":e.setLineDash([]);break}if(j!=="center"){if(e.save(),e.lineWidth*=2,j==="inside")w?e.clip(S):e.clip();else{var Ae=new Path2D;Ae.rect(-h/2-Z,-f/2-Z,h+2*Z,f+2*Z),Ae.addPath(S),e.clip(Ae,"evenodd")}w?e.stroke(S):e.stroke(),e.restore()}else w?e.stroke(S):e.stroke();if(W==="double"){e.lineWidth=Z/3;var Xe=e.globalCompositeOperation;e.globalCompositeOperation="destination-out",w?e.stroke(S):e.stroke(),e.globalCompositeOperation=Xe}e.setLineDash&&e.setLineDash([])}},sn=function(){if(se>0){if(e.lineWidth=se,e.lineCap="butt",e.setLineDash)switch(ge){case"dotted":e.setLineDash([1,1]);break;case"dashed":e.setLineDash([4,2]);break;case"solid":case"double":e.setLineDash([]);break}var Ae=b;w&&(Ae={x:0,y:0});var Xe=u.getNodeShape(t),fe=Z;j==="inside"&&(fe=0),j==="outside"&&(fe*=2);var Qe=(h+fe+(se+be))/h,Ke=(f+fe+(se+be))/f,mt=h*Qe,lt=f*Ke,$t=u.nodeShapes[Xe].points,Ut;if(w){var Jt=he(mt,lt,Xe,$t);Ut=Jt.path}if(Xe==="ellipse")u.drawEllipsePath(Ut||e,Ae.x,Ae.y,mt,lt);else if(["round-diamond","round-heptagon","round-hexagon","round-octagon","round-pentagon","round-polygon","round-triangle","round-tag"].includes(Xe)){var wn=0,Vn=0,Wn=0;Xe==="round-diamond"?wn=(fe+be+se)*1.4:Xe==="round-heptagon"?(wn=(fe+be+se)*1.075,Wn=-(fe/2+be+se)/35):Xe==="round-hexagon"?wn=(fe+be+se)*1.12:Xe==="round-pentagon"?(wn=(fe+be+se)*1.13,Wn=-(fe/2+be+se)/15):Xe==="round-tag"?(wn=(fe+be+se)*1.12,Vn=(fe/2+se+be)*.07):Xe==="round-triangle"&&(wn=(fe+be+se)*(Math.PI/2),Wn=-(fe+be/2+se)/Math.PI),wn!==0&&(Qe=(h+wn)/h,mt=h*Qe,["round-hexagon","round-tag"].includes(Xe)||(Ke=(f+wn)/f,lt=f*Ke)),ve=ve==="auto"?AHn(mt,lt):ve;for(var Dn=mt/2,zn=lt/2,vn=ve+(fe+se+be)/2,Cn=new Array($t.length/2),Ar=new Array($t.length/2),ur=0;ur<$t.length/2;ur++)Cn[ur]={x:Ae.x+Vn+Dn*$t[ur*2],y:Ae.y+Wn+zn*$t[ur*2+1]};var On,Ir,Ln,pr,Cr=Cn.length;for(Ir=Cn[Cr-1],On=0;On0){if(s=s||a.position(),o==null||u==null){var w=a.padding();o=a.width()+2*w,u=a.height()+2*w}h.colorFillStyle(r,m[0],m[1],m[2],p),h.nodeShapes[b].draw(r,s.x,s.y,o+f*2,u+f*2,_),r.fill()}}}};W9.drawNodeOverlay=LVn("overlay");W9.drawNodeUnderlay=LVn("underlay");W9.hasPie=function(e){return e=e[0],e._private.hasPie};W9.hasStripe=function(e){return e=e[0],e._private.hasStripe};W9.drawPie=function(e,t,r,a){t=t[0],a=a||t.position();var s=t.cy().style(),o=t.pstyle("pie-size"),u=t.pstyle("pie-hole"),h=t.pstyle("pie-start-angle").pfValue,f=a.x,p=a.y,m=t.width(),b=t.height(),_=Math.min(m,b)/2,w,S=0,C=this.usePaths();if(C&&(f=0,p=0),o.units==="%"?_=_*o.pfValue:o.pfValue!==void 0&&(_=o.pfValue/2),u.units==="%"?w=_*u.pfValue:u.pfValue!==void 0&&(w=u.pfValue/2),!(w>=_))for(var A=1;A<=s.pieBackgroundN;A++){var k=t.pstyle("pie-"+A+"-background-size").value,I=t.pstyle("pie-"+A+"-background-color").value,N=t.pstyle("pie-"+A+"-background-opacity").value*r,L=k/100;L+S>1&&(L=1-S);var P=1.5*Math.PI+2*Math.PI*S;P+=h;var M=2*Math.PI*L,F=P+M;k===0||S>=1||S+L>1||(w===0?(e.beginPath(),e.moveTo(f,p),e.arc(f,p,_,P,F),e.closePath()):(e.beginPath(),e.arc(f,p,_,P,F),e.arc(f,p,w,F,P,!0),e.closePath()),this.colorFillStyle(e,I[0],I[1],I[2],N),e.fill(),S+=L)}};W9.drawStripe=function(e,t,r,a){t=t[0],a=a||t.position();var s=t.cy().style(),o=a.x,u=a.y,h=t.width(),f=t.height(),p=0,m=this.usePaths();e.save();var b=t.pstyle("stripe-direction").value,_=t.pstyle("stripe-size");switch(b){case"vertical":break;case"righward":e.rotate(-Math.PI/2);break}var w=h,S=f;_.units==="%"?(w=w*_.pfValue,S=S*_.pfValue):_.pfValue!==void 0&&(w=_.pfValue,S=_.pfValue),m&&(o=0,u=0),u-=w/2,o-=S/2;for(var C=1;C<=s.stripeBackgroundN;C++){var A=t.pstyle("stripe-"+C+"-background-size").value,k=t.pstyle("stripe-"+C+"-background-color").value,I=t.pstyle("stripe-"+C+"-background-opacity").value*r,N=A/100;N+p>1&&(N=1-p),!(A===0||p>=1||p+N>1)&&(e.beginPath(),e.rect(o,u+S*p,w,S*N),e.closePath(),this.colorFillStyle(e,k[0],k[1],k[2],I),e.fill(),p+=N)}e.restore()};var _v={},yOi=100;_v.getPixelRatio=function(){var e=this.data.contexts[0];if(this.forcedPixelRatio!=null)return this.forcedPixelRatio;var t=this.cy.window(),r=e.backingStorePixelRatio||e.webkitBackingStorePixelRatio||e.mozBackingStorePixelRatio||e.msBackingStorePixelRatio||e.oBackingStorePixelRatio||e.backingStorePixelRatio||1;return(t.devicePixelRatio||1)/r};_v.paintCache=function(e){for(var t=this.paintCaches=this.paintCaches||[],r=!0,a,s=0;st.minMbLowQualFrames&&(t.motionBlurPxRatio=t.mbPxRBlurry)),t.clearingMotionBlur&&(t.motionBlurPxRatio=1),t.textureDrawLastFrame&&!b&&(m[t.NODE]=!0,m[t.SELECT_BOX]=!0);var I=r.style(),N=r.zoom(),L=u!==void 0?u:N,P=r.pan(),M={x:P.x,y:P.y},F={zoom:N,pan:{x:P.x,y:P.y}},U=t.prevViewport,$=U===void 0||F.zoom!==U.zoom||F.pan.x!==U.pan.x||F.pan.y!==U.pan.y;!$&&!(C&&!S)&&(t.motionBlurPxRatio=1),h&&(M=h),L*=f,M.x*=f,M.y*=f;var G=t.getCachedZSortedEles();function B(ye,Ee,he,we,Ce){var Ie=ye.globalCompositeOperation;ye.globalCompositeOperation="destination-out",t.colorFillStyle(ye,255,255,255,t.motionBlurTransparency),ye.fillRect(Ee,he,we,Ce),ye.globalCompositeOperation=Ie}function Z(ye,Ee){var he,we,Ce,Ie;!t.clearingMotionBlur&&(ye===p.bufferContexts[t.MOTIONBLUR_BUFFER_NODE]||ye===p.bufferContexts[t.MOTIONBLUR_BUFFER_DRAG])?(he={x:P.x*w,y:P.y*w},we=N*w,Ce=t.canvasWidth*w,Ie=t.canvasHeight*w):(he=M,we=L,Ce=t.canvasWidth,Ie=t.canvasHeight),ye.setTransform(1,0,0,1,0,0),Ee==="motionBlur"?B(ye,0,0,Ce,Ie):!a&&(Ee===void 0||Ee)&&ye.clearRect(0,0,Ce,Ie),s||(ye.translate(he.x,he.y),ye.scale(we,we)),h&&ye.translate(h.x,h.y),u&&ye.scale(u,u)}if(b||(t.textureDrawLastFrame=!1),b){if(t.textureDrawLastFrame=!0,!t.textureCache){t.textureCache={},t.textureCache.bb=r.mutableElements().boundingBox(),t.textureCache.texture=t.data.bufferCanvases[t.TEXTURE_BUFFER];var z=t.data.bufferContexts[t.TEXTURE_BUFFER];z.setTransform(1,0,0,1,0,0),z.clearRect(0,0,t.canvasWidth*t.textureMult,t.canvasHeight*t.textureMult),t.render({forcedContext:z,drawOnlyNodeLayer:!0,forcedPxRatio:f*t.textureMult});var F=t.textureCache.viewport={zoom:r.zoom(),pan:r.pan(),width:t.canvasWidth,height:t.canvasHeight};F.mpan={x:(0-F.pan.x)/F.zoom,y:(0-F.pan.y)/F.zoom}}m[t.DRAG]=!1,m[t.NODE]=!1;var Y=p.contexts[t.NODE],W=t.textureCache.texture,F=t.textureCache.viewport;Y.setTransform(1,0,0,1,0,0),_?B(Y,0,0,F.width,F.height):Y.clearRect(0,0,F.width,F.height);var Q=I.core("outside-texture-bg-color").value,V=I.core("outside-texture-bg-opacity").value;t.colorFillStyle(Y,Q[0],Q[1],Q[2],V),Y.fillRect(0,0,F.width,F.height);var N=r.zoom();Z(Y,!1),Y.clearRect(F.mpan.x,F.mpan.y,F.width/F.zoom/f,F.height/F.zoom/f),Y.drawImage(W,F.mpan.x,F.mpan.y,F.width/F.zoom/f,F.height/F.zoom/f)}else t.textureOnViewport&&!a&&(t.textureCache=null);var j=r.extent(),ee=t.pinching||t.hoverData.dragging||t.swipePanning||t.data.wheelZooming||t.hoverData.draggingEles||t.cy.animated(),te=t.hideEdgesOnViewport&&ee,ne=[];if(ne[t.NODE]=!m[t.NODE]&&_&&!t.clearedForMotionBlur[t.NODE]||t.clearingMotionBlur,ne[t.NODE]&&(t.clearedForMotionBlur[t.NODE]=!0),ne[t.DRAG]=!m[t.DRAG]&&_&&!t.clearedForMotionBlur[t.DRAG]||t.clearingMotionBlur,ne[t.DRAG]&&(t.clearedForMotionBlur[t.DRAG]=!0),m[t.NODE]||s||o||ne[t.NODE]){var se=_&&!ne[t.NODE]&&w!==1,Y=a||(se?t.data.bufferContexts[t.MOTIONBLUR_BUFFER_NODE]:p.contexts[t.NODE]),ie=_&&!se?"motionBlur":void 0;Z(Y,ie),te?t.drawCachedNodes(Y,G.nondrag,f,j):t.drawLayeredElements(Y,G.nondrag,f,j),t.debug&&t.drawDebugPoints(Y,G.nondrag),!s&&!_&&(m[t.NODE]=!1)}if(!o&&(m[t.DRAG]||s||ne[t.DRAG])){var se=_&&!ne[t.DRAG]&&w!==1,Y=a||(se?t.data.bufferContexts[t.MOTIONBLUR_BUFFER_DRAG]:p.contexts[t.DRAG]);Z(Y,_&&!se?"motionBlur":void 0),te?t.drawCachedNodes(Y,G.drag,f,j):t.drawCachedElements(Y,G.drag,f,j),t.debug&&t.drawDebugPoints(Y,G.drag),!s&&!_&&(m[t.DRAG]=!1)}if(this.drawSelectionRectangle(e,Z),_&&w!==1){var ge=p.contexts[t.NODE],ce=t.data.bufferCanvases[t.MOTIONBLUR_BUFFER_NODE],be=p.contexts[t.DRAG],ve=t.data.bufferCanvases[t.MOTIONBLUR_BUFFER_DRAG],De=function(Ee,he,we){Ee.setTransform(1,0,0,1,0,0),we||!k?Ee.clearRect(0,0,t.canvasWidth,t.canvasHeight):B(Ee,0,0,t.canvasWidth,t.canvasHeight);var Ce=w;Ee.drawImage(he,0,0,t.canvasWidth*Ce,t.canvasHeight*Ce,0,0,t.canvasWidth,t.canvasHeight)};(m[t.NODE]||ne[t.NODE])&&(De(ge,ce,ne[t.NODE]),m[t.NODE]=!1),(m[t.DRAG]||ne[t.DRAG])&&(De(be,ve,ne[t.DRAG]),m[t.DRAG]=!1)}t.prevViewport=F,t.clearingMotionBlur&&(t.clearingMotionBlur=!1,t.motionBlurCleared=!0,t.motionBlur=!0),_&&(t.motionBlurTimeout=setTimeout(function(){t.motionBlurTimeout=null,t.clearedForMotionBlur[t.NODE]=!1,t.clearedForMotionBlur[t.DRAG]=!1,t.motionBlur=!1,t.clearingMotionBlur=!b,t.mbFrames=0,m[t.NODE]=!0,m[t.DRAG]=!0,t.redraw()},yOi)),a||r.emit("render")};var iie;_v.drawSelectionRectangle=function(e,t){var r=this,a=r.cy,s=r.data,o=a.style(),u=e.drawOnlyNodeLayer,h=e.drawAllLayers,f=s.canvasNeedsRedraw,p=e.forcedContext;if(r.showFps||!u&&f[r.SELECT_BOX]&&!h){var m=p||s.contexts[r.SELECT_BOX];if(t(m),r.selection[4]==1&&(r.hoverData.selecting||r.touchData.selecting)){var b=r.cy.zoom(),_=o.core("selection-box-border-width").value/b;m.lineWidth=_,m.fillStyle="rgba("+o.core("selection-box-color").value[0]+","+o.core("selection-box-color").value[1]+","+o.core("selection-box-color").value[2]+","+o.core("selection-box-opacity").value+")",m.fillRect(r.selection[0],r.selection[1],r.selection[2]-r.selection[0],r.selection[3]-r.selection[1]),_>0&&(m.strokeStyle="rgba("+o.core("selection-box-border-color").value[0]+","+o.core("selection-box-border-color").value[1]+","+o.core("selection-box-border-color").value[2]+","+o.core("selection-box-opacity").value+")",m.strokeRect(r.selection[0],r.selection[1],r.selection[2]-r.selection[0],r.selection[3]-r.selection[1]))}if(s.bgActivePosistion&&!r.hoverData.selecting){var b=r.cy.zoom(),w=s.bgActivePosistion;m.fillStyle="rgba("+o.core("active-bg-color").value[0]+","+o.core("active-bg-color").value[1]+","+o.core("active-bg-color").value[2]+","+o.core("active-bg-opacity").value+")",m.beginPath(),m.arc(w.x,w.y,o.core("active-bg-size").pfValue/b,0,2*Math.PI),m.fill()}var S=r.lastRedrawTime;if(r.showFps&&S){S=Math.round(S);var C=Math.round(1e3/S),A="1 frame = "+S+" ms = "+C+" fps";if(m.setTransform(1,0,0,1,0,0),m.fillStyle="rgba(255, 0, 0, 0.75)",m.strokeStyle="rgba(255, 0, 0, 0.75)",m.font="30px Arial",!iie){var k=m.measureText(A);iie=k.actualBoundingBoxAscent}m.fillText(A,0,iie);var I=60;m.strokeRect(0,iie+10,250,20),m.fillRect(0,iie+10,250*Math.min(C/I,1),20)}h||(f[r.SELECT_BOX]=!1)}};function sSn(e,t,r){var a=e.createShader(t);if(e.shaderSource(a,r),e.compileShader(a),!e.getShaderParameter(a,e.COMPILE_STATUS))throw new Error(e.getShaderInfoLog(a));return a}function vOi(e,t,r){var a=sSn(e,e.VERTEX_SHADER,t),s=sSn(e,e.FRAGMENT_SHADER,r),o=e.createProgram();if(e.attachShader(o,a),e.attachShader(o,s),e.linkProgram(o),!e.getProgramParameter(o,e.LINK_STATUS))throw new Error("Could not initialize shaders");return o}function _Oi(e,t,r){r===void 0&&(r=t);var a=e.makeOffscreenCanvas(t,r),s=a.context=a.getContext("2d");return a.clear=function(){return s.clearRect(0,0,a.width,a.height)},a.clear(),a}function Mgt(e){var t=e.pixelRatio,r=e.cy.zoom(),a=e.cy.pan();return{zoom:r*t,pan:{x:a.x*t,y:a.y*t}}}function wOi(e){var t=e.pixelRatio,r=e.cy.zoom();return r*t}function EOi(e,t,r,a,s){var o=a*r+t.x,u=s*r+t.y;return u=Math.round(e.canvasHeight-u),[o,u]}function xOi(e){return e.pstyle("background-fill").value!=="solid"||e.pstyle("background-image").strValue!=="none"?!1:e.pstyle("border-width").value===0||e.pstyle("border-opacity").value===0?!0:e.pstyle("border-style").value==="solid"}function SOi(e,t){if(e.length!==t.length)return!1;for(var r=0;r>0&255)/255,r[1]=(e>>8&255)/255,r[2]=(e>>16&255)/255,r[3]=(e>>24&255)/255,r}function TOi(e){return e[0]+(e[1]<<8)+(e[2]<<16)+(e[3]<<24)}function COi(e,t){var r=e.createTexture();return r.buffer=function(a){e.bindTexture(e.TEXTURE_2D,r),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.LINEAR),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.LINEAR_MIPMAP_NEAREST),e.pixelStorei(e.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,e.RGBA,e.UNSIGNED_BYTE,a),e.generateMipmap(e.TEXTURE_2D),e.bindTexture(e.TEXTURE_2D,null)},r.deleteTexture=function(){e.deleteTexture(r)},r}function DVn(e,t){switch(t){case"float":return[1,e.FLOAT,4];case"vec2":return[2,e.FLOAT,4];case"vec3":return[3,e.FLOAT,4];case"vec4":return[4,e.FLOAT,4];case"int":return[1,e.INT,4];case"ivec2":return[2,e.INT,4]}}function MVn(e,t,r){switch(t){case e.FLOAT:return new Float32Array(r);case e.INT:return new Int32Array(r)}}function AOi(e,t,r,a,s,o){switch(t){case e.FLOAT:return new Float32Array(r.buffer,o*a,s);case e.INT:return new Int32Array(r.buffer,o*a,s)}}function kOi(e,t,r,a){var s=DVn(e,t),o=S1(s,2),u=o[0],h=o[1],f=MVn(e,h,a),p=e.createBuffer();return e.bindBuffer(e.ARRAY_BUFFER,p),e.bufferData(e.ARRAY_BUFFER,f,e.STATIC_DRAW),h===e.FLOAT?e.vertexAttribPointer(r,u,h,!1,0,0):h===e.INT&&e.vertexAttribIPointer(r,u,h,0,0),e.enableVertexAttribArray(r),e.bindBuffer(e.ARRAY_BUFFER,null),p}function bC(e,t,r,a){var s=DVn(e,r),o=S1(s,3),u=o[0],h=o[1],f=o[2],p=MVn(e,h,t*u),m=u*f,b=e.createBuffer();e.bindBuffer(e.ARRAY_BUFFER,b),e.bufferData(e.ARRAY_BUFFER,t*m,e.DYNAMIC_DRAW),e.enableVertexAttribArray(a),h===e.FLOAT?e.vertexAttribPointer(a,u,h,!1,m,0):h===e.INT&&e.vertexAttribIPointer(a,u,h,m,0),e.vertexAttribDivisor(a,1),e.bindBuffer(e.ARRAY_BUFFER,null);for(var _=new Array(t),w=0;wu&&(h=u/a,f=a*h,p=s*h),{scale:h,texW:f,texH:p}}},{key:"draw",value:function(r,a,s){var o=this;if(this.locked)throw new Error("can't draw, atlas is locked");var u=this.texSize,h=this.texRows,f=this.texHeight,p=this.getScale(a),m=p.scale,b=p.texW,_=p.texH,w=function(N,L){if(s&&L){var P=L.context,M=N.x,F=N.row,U=M,$=f*F;P.save(),P.translate(U,$),P.scale(m,m),s(P,a),P.restore()}},S=[null,null],C=function(){w(o.freePointer,o.canvas),S[0]={x:o.freePointer.x,y:o.freePointer.row*f,w:b,h:_},S[1]={x:o.freePointer.x+b,y:o.freePointer.row*f,w:0,h:_},o.freePointer.x+=b,o.freePointer.x==u&&(o.freePointer.x=0,o.freePointer.row++)},A=function(){var N=o.scratch,L=o.canvas;N.clear(),w({x:0,row:0},N);var P=u-o.freePointer.x,M=b-P,F=f;{var U=o.freePointer.x,$=o.freePointer.row*f,G=P;L.context.drawImage(N,0,0,G,F,U,$,G,F),S[0]={x:U,y:$,w:G,h:_}}{var B=P,Z=(o.freePointer.row+1)*f,z=M;L&&L.context.drawImage(N,B,0,z,F,0,Z,z,F),S[1]={x:0,y:Z,w:z,h:_}}o.freePointer.x=M,o.freePointer.row++},k=function(){o.freePointer.x=0,o.freePointer.row++};if(this.freePointer.x+b<=u)C();else{if(this.freePointer.row>=h-1)return!1;this.freePointer.x===u?(k(),C()):this.enableWrapping?A():(k(),C())}return this.keyToLocation.set(r,S),this.needsBuffer=!0,S}},{key:"getOffsets",value:function(r){return this.keyToLocation.get(r)}},{key:"isEmpty",value:function(){return this.freePointer.x===0&&this.freePointer.row===0}},{key:"canFit",value:function(r){if(this.locked)return!1;var a=this.texSize,s=this.texRows,o=this.getScale(r),u=o.texW;return this.freePointer.x+u>a?this.freePointer.row1&&arguments[1]!==void 0?arguments[1]:{},o=s.forceRedraw,u=o===void 0?!1:o,h=s.filterEle,f=h===void 0?function(){return!0}:h,p=s.filterType,m=p===void 0?function(){return!0}:p,b=!1,_=!1,w=W2(r),S;try{for(w.s();!(S=w.n()).done;){var C=S.value;if(f(C)){var A=W2(this.renderTypes.values()),k;try{var I=function(){var L=k.value,P=L.type;if(m(P)){var M=a.collections.get(L.collection),F=L.getKey(C),U=Array.isArray(F)?F:[F];if(u)U.forEach(function(Z){return M.markKeyForGC(Z)}),_=!0;else{var $=L.getID?L.getID(C):C.id(),G=a._key(P,$),B=a.typeAndIdToKey.get(G);B!==void 0&&!SOi(U,B)&&(b=!0,a.typeAndIdToKey.delete(G),B.forEach(function(Z){return M.markKeyForGC(Z)}))}}};for(A.s();!(k=A.n()).done;)I()}catch(N){A.e(N)}finally{A.f()}}}}catch(N){w.e(N)}finally{w.f()}return _&&(this.gc(),b=!1),b}},{key:"gc",value:function(){var r=W2(this.collections.values()),a;try{for(r.s();!(a=r.n()).done;){var s=a.value;s.gc()}}catch(o){r.e(o)}finally{r.f()}}},{key:"getOrCreateAtlas",value:function(r,a,s,o){var u=this.renderTypes.get(a),h=this.collections.get(u.collection),f=!1,p=h.draw(o,s,function(_){u.drawClipped?(_.save(),_.beginPath(),_.rect(0,0,s.w,s.h),_.clip(),u.drawElement(_,r,s,!0,!0),_.restore()):u.drawElement(_,r,s,!0,!0),f=!0});if(f){var m=u.getID?u.getID(r):r.id(),b=this._key(a,m);this.typeAndIdToKey.has(b)?this.typeAndIdToKey.get(b).push(o):this.typeAndIdToKey.set(b,[o])}return p}},{key:"getAtlasInfo",value:function(r,a){var s=this,o=this.renderTypes.get(a),u=o.getKey(r),h=Array.isArray(u)?u:[u];return h.map(function(f){var p=o.getBoundingBox(r,f),m=s.getOrCreateAtlas(r,a,p,f),b=m.getOffsets(f),_=S1(b,2),w=_[0],S=_[1];return{atlas:m,tex:w,tex1:w,tex2:S,bb:p}})}},{key:"getDebugInfo",value:function(){var r=[],a=W2(this.collections),s;try{for(a.s();!(s=a.n()).done;){var o=S1(s.value,2),u=o[0],h=o[1],f=h.getCounts(),p=f.keyCount,m=f.atlasCount;r.push({type:u,keyCount:p,atlasCount:m})}}catch(b){a.e(b)}finally{a.f()}return r}}])}(),BOi=function(){function e(t){V9(this,e),this.globalOptions=t,this.atlasSize=t.webglTexSize,this.maxAtlasesPerBatch=t.webglTexPerBatch,this.batchAtlases=[]}return Y9(e,[{key:"getMaxAtlasesPerBatch",value:function(){return this.maxAtlasesPerBatch}},{key:"getAtlasSize",value:function(){return this.atlasSize}},{key:"getIndexArray",value:function(){return Array.from({length:this.maxAtlasesPerBatch},function(r,a){return a})}},{key:"startBatch",value:function(){this.batchAtlases=[]}},{key:"getAtlasCount",value:function(){return this.batchAtlases.length}},{key:"getAtlases",value:function(){return this.batchAtlases}},{key:"canAddToCurrentBatch",value:function(r){return this.batchAtlases.length===this.maxAtlasesPerBatch?this.batchAtlases.includes(r):!0}},{key:"getAtlasIndexForBatch",value:function(r){var a=this.batchAtlases.indexOf(r);if(a<0){if(this.batchAtlases.length===this.maxAtlasesPerBatch)throw new Error("cannot add more atlases to batch");this.batchAtlases.push(r),a=this.batchAtlases.length-1}return a}}])}(),FOi=` + float circleSD(vec2 p, float r) { + return distance(vec2(0), p) - r; // signed distance + } +`,$Oi=` + float rectangleSD(vec2 p, vec2 b) { + vec2 d = abs(p)-b; + return distance(vec2(0),max(d,0.0)) + min(max(d.x,d.y),0.0); + } +`,UOi=` + float roundRectangleSD(vec2 p, vec2 b, vec4 cr) { + cr.xy = (p.x > 0.0) ? cr.xy : cr.zw; + cr.x = (p.y > 0.0) ? cr.x : cr.y; + vec2 q = abs(p) - b + cr.x; + return min(max(q.x, q.y), 0.0) + distance(vec2(0), max(q, 0.0)) - cr.x; + } +`,zOi=` + float ellipseSD(vec2 p, vec2 ab) { + p = abs( p ); // symmetry + + // find root with Newton solver + vec2 q = ab*(p-ab); + float w = (q.x1.0) ? d : -d; + } +`,Cse={SCREEN:{name:"screen",screen:!0},PICKING:{name:"picking",picking:!0}},Q3e={IGNORE:1,USE_BB:2},dit=0,uSn=1,hSn=2,fit=3,ZH=4,Uwe=5,aie=6,sie=7,GOi=function(){function e(t,r,a){V9(this,e),this.r=t,this.gl=r,this.maxInstances=a.webglBatchSize,this.atlasSize=a.webglTexSize,this.bgColor=a.bgColor,this.debug=a.webglDebug,this.batchDebugInfo=[],a.enableWrapping=!0,a.createTextureCanvas=_Oi,this.atlasManager=new POi(t,a),this.batchManager=new BOi(a),this.simpleShapeOptions=new Map,this.program=this._createShaderProgram(Cse.SCREEN),this.pickingProgram=this._createShaderProgram(Cse.PICKING),this.vao=this._createVAO()}return Y9(e,[{key:"addAtlasCollection",value:function(r,a){this.atlasManager.addAtlasCollection(r,a)}},{key:"addTextureAtlasRenderType",value:function(r,a){this.atlasManager.addRenderType(r,a)}},{key:"addSimpleShapeRenderType",value:function(r,a){this.simpleShapeOptions.set(r,a)}},{key:"invalidate",value:function(r){var a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},s=a.type,o=this.atlasManager;return s?o.invalidate(r,{filterType:function(h){return h===s},forceRedraw:!0}):o.invalidate(r)}},{key:"gc",value:function(){this.atlasManager.gc()}},{key:"_createShaderProgram",value:function(r){var a=this.gl,s=`#version 300 es + precision highp float; + + uniform mat3 uPanZoomMatrix; + uniform int uAtlasSize; + + // instanced + in vec2 aPosition; // a vertex from the unit square + + in mat3 aTransform; // used to transform verticies, eg into a bounding box + in int aVertType; // the type of thing we are rendering + + // the z-index that is output when using picking mode + in vec4 aIndex; + + // For textures + in int aAtlasId; // which shader unit/atlas to use + in vec4 aTex; // x/y/w/h of texture in atlas + + // for edges + in vec4 aPointAPointB; + in vec4 aPointCPointD; + in vec2 aLineWidth; // also used for node border width + + // simple shapes + in vec4 aCornerRadius; // for round-rectangle [top-right, bottom-right, top-left, bottom-left] + in vec4 aColor; // also used for edges + in vec4 aBorderColor; // aLineWidth is used for border width + + // output values passed to the fragment shader + out vec2 vTexCoord; + out vec4 vColor; + out vec2 vPosition; + // flat values are not interpolated + flat out int vAtlasId; + flat out int vVertType; + flat out vec2 vTopRight; + flat out vec2 vBotLeft; + flat out vec4 vCornerRadius; + flat out vec4 vBorderColor; + flat out vec2 vBorderWidth; + flat out vec4 vIndex; + + void main(void) { + int vid = gl_VertexID; + vec2 position = aPosition; // TODO make this a vec3, simplifies some code below + + if(aVertType == `.concat(dit,`) { + float texX = aTex.x; // texture coordinates + float texY = aTex.y; + float texW = aTex.z; + float texH = aTex.w; + + if(vid == 1 || vid == 2 || vid == 4) { + texX += texW; + } + if(vid == 2 || vid == 4 || vid == 5) { + texY += texH; + } + + float d = float(uAtlasSize); + vTexCoord = vec2(texX / d, texY / d); // tex coords must be between 0 and 1 + + gl_Position = vec4(uPanZoomMatrix * aTransform * vec3(position, 1.0), 1.0); + } + else if(aVertType == `).concat(ZH," || aVertType == ").concat(sie,` + || aVertType == `).concat(Uwe," || aVertType == ").concat(aie,`) { // simple shapes + + // the bounding box is needed by the fragment shader + vBotLeft = (aTransform * vec3(0, 0, 1)).xy; // flat + vTopRight = (aTransform * vec3(1, 1, 1)).xy; // flat + vPosition = (aTransform * vec3(position, 1)).xy; // will be interpolated + + // calculations are done in the fragment shader, just pass these along + vColor = aColor; + vCornerRadius = aCornerRadius; + vBorderColor = aBorderColor; + vBorderWidth = aLineWidth; + + gl_Position = vec4(uPanZoomMatrix * aTransform * vec3(position, 1.0), 1.0); + } + else if(aVertType == `).concat(uSn,`) { + vec2 source = aPointAPointB.xy; + vec2 target = aPointAPointB.zw; + + // adjust the geometry so that the line is centered on the edge + position.y = position.y - 0.5; + + // stretch the unit square into a long skinny rectangle + vec2 xBasis = target - source; + vec2 yBasis = normalize(vec2(-xBasis.y, xBasis.x)); + vec2 point = source + xBasis * position.x + yBasis * aLineWidth[0] * position.y; + + gl_Position = vec4(uPanZoomMatrix * vec3(point, 1.0), 1.0); + vColor = aColor; + } + else if(aVertType == `).concat(hSn,`) { + vec2 pointA = aPointAPointB.xy; + vec2 pointB = aPointAPointB.zw; + vec2 pointC = aPointCPointD.xy; + vec2 pointD = aPointCPointD.zw; + + // adjust the geometry so that the line is centered on the edge + position.y = position.y - 0.5; + + vec2 p0, p1, p2, pos; + if(position.x == 0.0) { // The left side of the unit square + p0 = pointA; + p1 = pointB; + p2 = pointC; + pos = position; + } else { // The right side of the unit square, use same approach but flip the geometry upside down + p0 = pointD; + p1 = pointC; + p2 = pointB; + pos = vec2(0.0, -position.y); + } + + vec2 p01 = p1 - p0; + vec2 p12 = p2 - p1; + vec2 p21 = p1 - p2; + + // Find the normal vector. + vec2 tangent = normalize(normalize(p12) + normalize(p01)); + vec2 normal = vec2(-tangent.y, tangent.x); + + // Find the vector perpendicular to p0 -> p1. + vec2 p01Norm = normalize(vec2(-p01.y, p01.x)); + + // Determine the bend direction. + float sigma = sign(dot(p01 + p21, normal)); + float width = aLineWidth[0]; + + if(sign(pos.y) == -sigma) { + // This is an intersecting vertex. Adjust the position so that there's no overlap. + vec2 point = 0.5 * width * normal * -sigma / dot(normal, p01Norm); + gl_Position = vec4(uPanZoomMatrix * vec3(p1 + point, 1.0), 1.0); + } else { + // This is a non-intersecting vertex. Treat it like a mitre join. + vec2 point = 0.5 * width * normal * sigma * dot(normal, p01Norm); + gl_Position = vec4(uPanZoomMatrix * vec3(p1 + point, 1.0), 1.0); + } + + vColor = aColor; + } + else if(aVertType == `).concat(fit,` && vid < 3) { + // massage the first triangle into an edge arrow + if(vid == 0) + position = vec2(-0.15, -0.3); + if(vid == 1) + position = vec2( 0.0, 0.0); + if(vid == 2) + position = vec2( 0.15, -0.3); + + gl_Position = vec4(uPanZoomMatrix * aTransform * vec3(position, 1.0), 1.0); + vColor = aColor; + } + else { + gl_Position = vec4(2.0, 0.0, 0.0, 1.0); // discard vertex by putting it outside webgl clip space + } + + vAtlasId = aAtlasId; + vVertType = aVertType; + vIndex = aIndex; + } + `),o=this.batchManager.getIndexArray(),u=`#version 300 es + precision highp float; + + // declare texture unit for each texture atlas in the batch + `.concat(o.map(function(p){return"uniform sampler2D uTexture".concat(p,";")}).join(` + `),` + + uniform vec4 uBGColor; + uniform float uZoom; + + in vec2 vTexCoord; + in vec4 vColor; + in vec2 vPosition; // model coordinates + + flat in int vAtlasId; + flat in vec4 vIndex; + flat in int vVertType; + flat in vec2 vTopRight; + flat in vec2 vBotLeft; + flat in vec4 vCornerRadius; + flat in vec4 vBorderColor; + flat in vec2 vBorderWidth; + + out vec4 outColor; + + `).concat(FOi,` + `).concat($Oi,` + `).concat(UOi,` + `).concat(zOi,` + + vec4 blend(vec4 top, vec4 bot) { // blend colors with premultiplied alpha + return vec4( + top.rgb + (bot.rgb * (1.0 - top.a)), + top.a + (bot.a * (1.0 - top.a)) + ); + } + + vec4 distInterp(vec4 cA, vec4 cB, float d) { // interpolate color using Signed Distance + // scale to the zoom level so that borders don't look blurry when zoomed in + // note 1.5 is an aribitrary value chosen because it looks good + return mix(cA, cB, 1.0 - smoothstep(0.0, 1.5 / uZoom, abs(d))); + } + + void main(void) { + if(vVertType == `).concat(dit,`) { + // look up the texel from the texture unit + `).concat(o.map(function(p){return"if(vAtlasId == ".concat(p,") outColor = texture(uTexture").concat(p,", vTexCoord);")}).join(` + else `),` + } + else if(vVertType == `).concat(fit,`) { + // mimics how canvas renderer uses context.globalCompositeOperation = 'destination-out'; + outColor = blend(vColor, uBGColor); + outColor.a = 1.0; // make opaque, masks out line under arrow + } + else if(vVertType == `).concat(ZH,` && vBorderWidth == vec2(0.0)) { // simple rectangle with no border + outColor = vColor; // unit square is already transformed to the rectangle, nothing else needs to be done + } + else if(vVertType == `).concat(ZH," || vVertType == ").concat(sie,` + || vVertType == `).concat(Uwe," || vVertType == ").concat(aie,`) { // use SDF + + float outerBorder = vBorderWidth[0]; + float innerBorder = vBorderWidth[1]; + float borderPadding = outerBorder * 2.0; + float w = vTopRight.x - vBotLeft.x - borderPadding; + float h = vTopRight.y - vBotLeft.y - borderPadding; + vec2 b = vec2(w/2.0, h/2.0); // half width, half height + vec2 p = vPosition - vec2(vTopRight.x - b[0] - outerBorder, vTopRight.y - b[1] - outerBorder); // translate to center + + float d; // signed distance + if(vVertType == `).concat(ZH,`) { + d = rectangleSD(p, b); + } else if(vVertType == `).concat(sie,` && w == h) { + d = circleSD(p, b.x); // faster than ellipse + } else if(vVertType == `).concat(sie,`) { + d = ellipseSD(p, b); + } else { + d = roundRectangleSD(p, b, vCornerRadius.wzyx); + } + + // use the distance to interpolate a color to smooth the edges of the shape, doesn't need multisampling + // we must smooth colors inwards, because we can't change pixels outside the shape's bounding box + if(d > 0.0) { + if(d > outerBorder) { + discard; + } else { + outColor = distInterp(vBorderColor, vec4(0), d - outerBorder); + } + } else { + if(d > innerBorder) { + vec4 outerColor = outerBorder == 0.0 ? vec4(0) : vBorderColor; + vec4 innerBorderColor = blend(vBorderColor, vColor); + outColor = distInterp(innerBorderColor, outerColor, d); + } + else { + vec4 outerColor; + if(innerBorder == 0.0 && outerBorder == 0.0) { + outerColor = vec4(0); + } else if(innerBorder == 0.0) { + outerColor = vBorderColor; + } else { + outerColor = blend(vBorderColor, vColor); + } + outColor = distInterp(vColor, outerColor, d - innerBorder); + } + } + } + else { + outColor = vColor; + } + + `).concat(r.picking?`if(outColor.a == 0.0) discard; + else outColor = vIndex;`:"",` + } + `),h=vOi(a,s,u);h.aPosition=a.getAttribLocation(h,"aPosition"),h.aIndex=a.getAttribLocation(h,"aIndex"),h.aVertType=a.getAttribLocation(h,"aVertType"),h.aTransform=a.getAttribLocation(h,"aTransform"),h.aAtlasId=a.getAttribLocation(h,"aAtlasId"),h.aTex=a.getAttribLocation(h,"aTex"),h.aPointAPointB=a.getAttribLocation(h,"aPointAPointB"),h.aPointCPointD=a.getAttribLocation(h,"aPointCPointD"),h.aLineWidth=a.getAttribLocation(h,"aLineWidth"),h.aColor=a.getAttribLocation(h,"aColor"),h.aCornerRadius=a.getAttribLocation(h,"aCornerRadius"),h.aBorderColor=a.getAttribLocation(h,"aBorderColor"),h.uPanZoomMatrix=a.getUniformLocation(h,"uPanZoomMatrix"),h.uAtlasSize=a.getUniformLocation(h,"uAtlasSize"),h.uBGColor=a.getUniformLocation(h,"uBGColor"),h.uZoom=a.getUniformLocation(h,"uZoom"),h.uTextures=[];for(var f=0;f1&&arguments[1]!==void 0?arguments[1]:Cse.SCREEN;this.panZoomMatrix=r,this.renderTarget=a,this.batchDebugInfo=[],this.wrappedCount=0,this.simpleCount=0,this.startBatch()}},{key:"startBatch",value:function(){this.instanceCount=0,this.batchManager.startBatch()}},{key:"endFrame",value:function(){this.endBatch()}},{key:"_isVisible",value:function(r,a){return r.visible()?a&&a.isVisible?a.isVisible(r):!0:!1}},{key:"drawTexture",value:function(r,a,s){var o=this.atlasManager,u=this.batchManager,h=o.getRenderTypeOpts(s);if(this._isVisible(r,h)&&!(r.isEdge()&&!this._isValidEdge(r))){if(this.renderTarget.picking&&h.getTexPickingMode){var f=h.getTexPickingMode(r);if(f===Q3e.IGNORE)return;if(f==Q3e.USE_BB){this.drawPickingRectangle(r,a,s);return}}var p=o.getAtlasInfo(r,s),m=W2(p),b;try{for(m.s();!(b=m.n()).done;){var _=b.value,w=_.atlas,S=_.tex1,C=_.tex2;u.canAddToCurrentBatch(w)||this.endBatch();for(var A=u.getAtlasIndexForBatch(w),k=0,I=[[S,!0],[C,!1]];k=this.maxInstances&&this.endBatch()}}}}catch(B){m.e(B)}finally{m.f()}}}},{key:"setTransformMatrix",value:function(r,a,s,o){var u=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!0,h=0;if(s.shapeProps&&s.shapeProps.padding&&(h=r.pstyle(s.shapeProps.padding).pfValue),o){var f=o.bb,p=o.tex1,m=o.tex2,b=p.w/(p.w+m.w);u||(b=1-b);var _=this._getAdjustedBB(f,h,u,b);this._applyTransformMatrix(a,_,s,r)}else{var w=s.getBoundingBox(r),S=this._getAdjustedBB(w,h,!0,1);this._applyTransformMatrix(a,S,s,r)}}},{key:"_applyTransformMatrix",value:function(r,a,s,o){var u,h;lSn(r);var f=s.getRotation?s.getRotation(o):0;if(f!==0){var p=s.getRotationPoint(o),m=p.x,b=p.y;Ixe(r,r,[m,b]),cSn(r,r,f);var _=s.getRotationOffset(o);u=_.x+(a.xOffset||0),h=_.y+(a.yOffset||0)}else u=a.x1,h=a.y1;Ixe(r,r,[u,h]),bct(r,r,[a.w,a.h])}},{key:"_getAdjustedBB",value:function(r,a,s,o){var u=r.x1,h=r.y1,f=r.w,p=r.h,m=r.yOffset;a&&(u-=a,h-=a,f+=2*a,p+=2*a);var b=0,_=f*o;return s&&o<1?f=_:!s&&o<1&&(b=f-_,u+=b,f=_),{x1:u,y1:h,w:f,h:p,xOffset:b,yOffset:m}}},{key:"drawPickingRectangle",value:function(r,a,s){var o=this.atlasManager.getRenderTypeOpts(s),u=this.instanceCount;this.vertTypeBuffer.getView(u)[0]=ZH;var h=this.indexBuffer.getView(u);QH(a,h);var f=this.colorBuffer.getView(u);wB([0,0,0],1,f);var p=this.transformBuffer.getMatrixView(u);this.setTransformMatrix(r,p,o),this.simpleCount++,this.instanceCount++,this.instanceCount>=this.maxInstances&&this.endBatch()}},{key:"drawNode",value:function(r,a,s){var o=this.simpleShapeOptions.get(s);if(this._isVisible(r,o)){var u=o.shapeProps,h=this._getVertTypeForShape(r,u.shape);if(h===void 0||o.isSimple&&!o.isSimple(r)){this.drawTexture(r,a,s);return}var f=this.instanceCount;if(this.vertTypeBuffer.getView(f)[0]=h,h===Uwe||h===aie){var p=o.getBoundingBox(r),m=this._getCornerRadius(r,u.radius,p),b=this.cornerRadiusBuffer.getView(f);b[0]=m,b[1]=m,b[2]=m,b[3]=m,h===aie&&(b[0]=0,b[2]=0)}var _=this.indexBuffer.getView(f);QH(a,_);var w=r.pstyle(u.color).value,S=r.pstyle(u.opacity).value,C=this.colorBuffer.getView(f);wB(w,S,C);var A=this.lineWidthBuffer.getView(f);if(A[0]=0,A[1]=0,u.border){var k=r.pstyle("border-width").value;if(k>0){var I=r.pstyle("border-color").value,N=r.pstyle("border-opacity").value,L=this.borderColorBuffer.getView(f);wB(I,N,L);var P=r.pstyle("border-position").value;if(P==="inside")A[0]=0,A[1]=-k;else if(P==="outside")A[0]=k,A[1]=0;else{var M=k/2;A[0]=M,A[1]=-M}}}var F=this.transformBuffer.getMatrixView(f);this.setTransformMatrix(r,F,o),this.simpleCount++,this.instanceCount++,this.instanceCount>=this.maxInstances&&this.endBatch()}}},{key:"_getVertTypeForShape",value:function(r,a){var s=r.pstyle(a).value;switch(s){case"rectangle":return ZH;case"ellipse":return sie;case"roundrectangle":case"round-rectangle":return Uwe;case"bottom-round-rectangle":return aie;default:return}}},{key:"_getCornerRadius",value:function(r,a,s){var o=s.w,u=s.h;if(r.pstyle(a).value==="auto")return o9(o,u);var h=r.pstyle(a).pfValue,f=o/2,p=u/2;return Math.min(h,p,f)}},{key:"drawEdgeArrow",value:function(r,a,s){if(r.visible()){var o=r._private.rscratch,u,h,f;if(s==="source"?(u=o.arrowStartX,h=o.arrowStartY,f=o.srcArrowAngle):(u=o.arrowEndX,h=o.arrowEndY,f=o.tgtArrowAngle),!(isNaN(u)||u==null||isNaN(h)||h==null||isNaN(f)||f==null)){var p=r.pstyle(s+"-arrow-shape").value;if(p!=="none"){var m=r.pstyle(s+"-arrow-color").value,b=r.pstyle("opacity").value,_=r.pstyle("line-opacity").value,w=b*_,S=r.pstyle("width").pfValue,C=r.pstyle("arrow-scale").value,A=this.r.getArrowWidth(S,C),k=this.instanceCount,I=this.transformBuffer.getMatrixView(k);lSn(I),Ixe(I,I,[u,h]),bct(I,I,[A,A]),cSn(I,I,f),this.vertTypeBuffer.getView(k)[0]=fit;var N=this.indexBuffer.getView(k);QH(a,N);var L=this.colorBuffer.getView(k);wB(m,w,L),this.instanceCount++,this.instanceCount>=this.maxInstances&&this.endBatch()}}}}},{key:"drawEdgeLine",value:function(r,a){if(r.visible()){var s=this._getEdgePoints(r);if(s){var o=r.pstyle("opacity").value,u=r.pstyle("line-opacity").value,h=r.pstyle("width").pfValue,f=r.pstyle("line-color").value,p=o*u;if(s.length/2+this.instanceCount>this.maxInstances&&this.endBatch(),s.length==4){var m=this.instanceCount;this.vertTypeBuffer.getView(m)[0]=uSn;var b=this.indexBuffer.getView(m);QH(a,b);var _=this.colorBuffer.getView(m);wB(f,p,_);var w=this.lineWidthBuffer.getView(m);w[0]=h;var S=this.pointAPointBBuffer.getView(m);S[0]=s[0],S[1]=s[1],S[2]=s[2],S[3]=s[3],this.instanceCount++,this.instanceCount>=this.maxInstances&&this.endBatch()}else for(var C=0;C=this.maxInstances&&this.endBatch()}}}}},{key:"_isValidEdge",value:function(r){var a=r._private.rscratch;return!(a.badLine||a.allpts==null||isNaN(a.allpts[0]))}},{key:"_getEdgePoints",value:function(r){var a=r._private.rscratch;if(this._isValidEdge(r)){var s=a.allpts;if(s.length==4)return s;var o=this._getNumSegments(r);return this._getCurveSegmentPoints(s,o)}}},{key:"_getNumSegments",value:function(r){var a=15;return Math.min(Math.max(a,5),this.maxInstances)}},{key:"_getCurveSegmentPoints",value:function(r,a){if(r.length==4)return r;for(var s=Array((a+1)*2),o=0;o<=a;o++)if(o==0)s[0]=r[0],s[1]=r[1];else if(o==a)s[o*2]=r[r.length-2],s[o*2+1]=r[r.length-1];else{var u=o/a;this._setCurvePoint(r,u,s,o*2)}return s}},{key:"_setCurvePoint",value:function(r,a,s,o){if(r.length<=2)s[o]=r[0],s[o+1]=r[1];else{for(var u=Array(r.length-2),h=0;h0}},h=function(b){var _=b.pstyle("text-events").strValue==="yes";return _?Q3e.USE_BB:Q3e.IGNORE},f=function(b){var _=b.position(),w=_.x,S=_.y,C=b.outerWidth(),A=b.outerHeight();return{w:C,h:A,x1:w-C/2,y1:S-A/2}};r.drawing.addAtlasCollection("node",{texRows:e.webglTexRowsNodes}),r.drawing.addAtlasCollection("label",{texRows:e.webglTexRows}),r.drawing.addTextureAtlasRenderType("node-body",{collection:"node",getKey:t.getStyleKey,getBoundingBox:t.getElementBox,drawElement:t.drawElement}),r.drawing.addSimpleShapeRenderType("node-body",{getBoundingBox:f,isSimple:xOi,shapeProps:{shape:"shape",color:"background-color",opacity:"background-opacity",radius:"corner-radius",border:!0}}),r.drawing.addSimpleShapeRenderType("node-overlay",{getBoundingBox:f,isVisible:u("overlay"),shapeProps:{shape:"overlay-shape",color:"overlay-color",opacity:"overlay-opacity",padding:"overlay-padding",radius:"overlay-corner-radius"}}),r.drawing.addSimpleShapeRenderType("node-underlay",{getBoundingBox:f,isVisible:u("underlay"),shapeProps:{shape:"underlay-shape",color:"underlay-color",opacity:"underlay-opacity",padding:"underlay-padding",radius:"underlay-corner-radius"}}),r.drawing.addTextureAtlasRenderType("label",{collection:"label",getTexPickingMode:h,getKey:pit(t.getLabelKey,null),getBoundingBox:git(t.getLabelBox,null),drawClipped:!0,drawElement:t.drawLabel,getRotation:s(null),getRotationPoint:t.getLabelRotationPoint,getRotationOffset:t.getLabelRotationOffset,isVisible:o("label")}),r.drawing.addTextureAtlasRenderType("edge-source-label",{collection:"label",getTexPickingMode:h,getKey:pit(t.getSourceLabelKey,"source"),getBoundingBox:git(t.getSourceLabelBox,"source"),drawClipped:!0,drawElement:t.drawSourceLabel,getRotation:s("source"),getRotationPoint:t.getSourceLabelRotationPoint,getRotationOffset:t.getSourceLabelRotationOffset,isVisible:o("source-label")}),r.drawing.addTextureAtlasRenderType("edge-target-label",{collection:"label",getTexPickingMode:h,getKey:pit(t.getTargetLabelKey,"target"),getBoundingBox:git(t.getTargetLabelBox,"target"),drawClipped:!0,drawElement:t.drawTargetLabel,getRotation:s("target"),getRotationPoint:t.getTargetLabelRotationPoint,getRotationOffset:t.getTargetLabelRotationOffset,isVisible:o("target-label")});var p=Cce(function(){console.log("garbage collect flag set"),r.data.gc=!0},1e4);r.onUpdateEleCalcs(function(m,b){var _=!1;b&&b.length>0&&(_|=r.drawing.invalidate(b)),_&&p()}),HOi(r)};function qOi(e){var t=e.cy.container(),r=t&&t.style&&t.style.backgroundColor||"white";return uHn(r)}function BVn(e,t){var r=e._private.rscratch;return F2(r,"labelWrapCachedLines",t)||[]}var pit=function(t,r){return function(a){var s=t(a),o=BVn(a,r);return o.length>1?o.map(function(u,h){return"".concat(s,"_").concat(h)}):s}},git=function(t,r){return function(a,s){var o=t(a);if(typeof s=="string"){var u=s.indexOf("_");if(u>0){var h=Number(s.substring(u+1)),f=BVn(a,r),p=o.h/f.length,m=p*h,b=o.y1+m;return{x1:o.x1,w:o.w,y1:b,h:p,yOffset:m}}}return o}};function HOi(e){{var t=e.render;e.render=function(o){o=o||{};var u=e.cy;e.webgl&&(u.zoom()>RVn?(VOi(e),t.call(e,o)):(YOi(e),$Vn(e,o,Cse.SCREEN)))}}{var r=e.matchCanvasSize;e.matchCanvasSize=function(o){r.call(e,o),e.pickingFrameBuffer.setFramebufferAttachmentSizes(e.canvasWidth,e.canvasHeight),e.pickingFrameBuffer.needsDraw=!0}}e.findNearestElements=function(o,u,h,f){return ZOi(e,o,u)};{var a=e.invalidateCachedZSortedEles;e.invalidateCachedZSortedEles=function(){a.call(e),e.pickingFrameBuffer.needsDraw=!0}}{var s=e.notify;e.notify=function(o,u){s.call(e,o,u),o==="viewport"||o==="bounds"?e.pickingFrameBuffer.needsDraw=!0:o==="background"&&e.drawing.invalidate(u,{type:"node-body"})}}}function VOi(e){var t=e.data.contexts[e.WEBGL];t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT)}function YOi(e){var t=function(a){a.save(),a.setTransform(1,0,0,1,0,0),a.clearRect(0,0,e.canvasWidth,e.canvasHeight),a.restore()};t(e.data.contexts[e.NODE]),t(e.data.contexts[e.DRAG])}function jOi(e){var t=e.canvasWidth,r=e.canvasHeight,a=Mgt(e),s=a.pan,o=a.zoom,u=hit();Ixe(u,u,[s.x,s.y]),bct(u,u,[o,o]);var h=hit();OOi(h,t,r);var f=hit();return NOi(f,h,u),f}function FVn(e,t){var r=e.canvasWidth,a=e.canvasHeight,s=Mgt(e),o=s.pan,u=s.zoom;t.setTransform(1,0,0,1,0,0),t.clearRect(0,0,r,a),t.translate(o.x,o.y),t.scale(u,u)}function WOi(e,t){e.drawSelectionRectangle(t,function(r){return FVn(e,r)})}function KOi(e){var t=e.data.contexts[e.NODE];t.save(),FVn(e,t),t.strokeStyle="rgba(0, 0, 0, 0.3)",t.beginPath(),t.moveTo(-1e3,0),t.lineTo(1e3,0),t.stroke(),t.beginPath(),t.moveTo(0,-1e3),t.lineTo(0,1e3),t.stroke(),t.restore()}function XOi(e){var t=function(s,o,u){for(var h=s.atlasManager.getAtlasCollection(o),f=e.data.contexts[e.NODE],p=h.atlases,m=0;m=0&&L.add(F)}return L}function ZOi(e,t,r){var a=QOi(e,t,r),s=e.getCachedZSortedEles(),o,u,h=W2(a),f;try{for(h.s();!(f=h.n()).done;){var p=f.value,m=s[p];if(!o&&m.isNode()&&(o=m),!u&&m.isEdge()&&(u=m),o&&u)break}}catch(b){h.e(b)}finally{h.f()}return[o,u].filter(Boolean)}function mit(e,t,r){var a=e.drawing;t+=1,r.isNode()?(a.drawNode(r,t,"node-underlay"),a.drawNode(r,t,"node-body"),a.drawTexture(r,t,"label"),a.drawNode(r,t,"node-overlay")):(a.drawEdgeLine(r,t),a.drawEdgeArrow(r,t,"source"),a.drawEdgeArrow(r,t,"target"),a.drawTexture(r,t,"label"),a.drawTexture(r,t,"edge-source-label"),a.drawTexture(r,t,"edge-target-label"))}function $Vn(e,t,r){var a;e.webglDebug&&(a=performance.now());var s=e.drawing,o=0;if(r.screen&&e.data.canvasNeedsRedraw[e.SELECT_BOX]&&WOi(e,t),e.data.canvasNeedsRedraw[e.NODE]||r.picking){var u=e.data.contexts[e.WEBGL];r.screen?(u.clearColor(0,0,0,0),u.enable(u.BLEND),u.blendFunc(u.ONE,u.ONE_MINUS_SRC_ALPHA)):u.disable(u.BLEND),u.clear(u.COLOR_BUFFER_BIT|u.DEPTH_BUFFER_BIT),u.viewport(0,0,u.canvas.width,u.canvas.height);var h=jOi(e),f=e.getCachedZSortedEles();if(o=f.length,s.startFrame(h,r),r.screen){for(var p=0;p0&&u>0){w.clearRect(0,0,o,u),w.globalCompositeOperation="source-over";var S=this.getCachedZSortedEles();if(e.full)w.translate(-a.x1*p,-a.y1*p),w.scale(p,p),this.drawElements(w,S),w.scale(1/p,1/p),w.translate(a.x1*p,a.y1*p);else{var C=t.pan(),A={x:C.x*p,y:C.y*p};p*=t.zoom(),w.translate(A.x,A.y),w.scale(p,p),this.drawElements(w,S),w.scale(1/p,1/p),w.translate(-A.x,-A.y)}e.bg&&(w.globalCompositeOperation="destination-over",w.fillStyle=e.bg,w.rect(0,0,o,u),w.fill())}return _};function JOi(e,t){for(var r=atob(e),a=new ArrayBuffer(r.length),s=new Uint8Array(a),o=0;o"u"?"undefined":Dp(OffscreenCanvas))!=="undefined")r=new OffscreenCanvas(e,t);else{var a=this.cy.window(),s=a.document;r=s.createElement("canvas"),r.width=e,r.height=t}return r};[NVn,FA,TR,Dgt,$$,W9,_v,PVn,K9,Oce,GVn].forEach(function(e){eo(Vl,e)});var n9i=[{name:"null",impl:bVn},{name:"base",impl:AVn},{name:"canvas",impl:e9i}],r9i=[{type:"layout",extensions:kNi},{type:"renderer",extensions:n9i}],HVn={},VVn={};function YVn(e,t,r){var a=r,s=function(U){Uu("Can not register `"+t+"` for `"+e+"` since `"+U+"` already exists in the prototype and can not be overridden")};if(e==="core"){if(Koe.prototype[t])return s(t);Koe.prototype[t]=r}else if(e==="collection"){if(Cm.prototype[t])return s(t);Cm.prototype[t]=r}else if(e==="layout"){for(var o=function(U){this.options=U,r.call(this,U),Vc(this._private)||(this._private={}),this._private.cy=U.cy,this._private.listeners=[],this.createEmitter()},u=o.prototype=Object.create(r.prototype),h=[],f=0;fS&&(this.rect.x-=(this.labelWidth-S)/2,this.setWidth(this.labelWidth)),this.labelHeight>C&&(this.labelPos=="center"?this.rect.y-=(this.labelHeight-C)/2:this.labelPos=="top"&&(this.rect.y-=this.labelHeight-C),this.setHeight(this.labelHeight))}}},b.prototype.getInclusionTreeDepth=function(){if(this.inclusionTreeDepth==u.MAX_VALUE)throw"assert failed";return this.inclusionTreeDepth},b.prototype.transform=function(w){var S=this.rect.x;S>f.WORLD_BOUNDARY?S=f.WORLD_BOUNDARY:S<-f.WORLD_BOUNDARY&&(S=-f.WORLD_BOUNDARY);var C=this.rect.y;C>f.WORLD_BOUNDARY?C=f.WORLD_BOUNDARY:C<-f.WORLD_BOUNDARY&&(C=-f.WORLD_BOUNDARY);var A=new m(S,C),k=w.inverseTransformPoint(A);this.setLocation(k.x,k.y)},b.prototype.getLeft=function(){return this.rect.x},b.prototype.getRight=function(){return this.rect.x+this.rect.width},b.prototype.getTop=function(){return this.rect.y},b.prototype.getBottom=function(){return this.rect.y+this.rect.height},b.prototype.getParent=function(){return this.owner==null?null:this.owner.getParent()},r.exports=b},function(r,a,s){function o(u,h){u==null&&h==null?(this.x=0,this.y=0):(this.x=u,this.y=h)}o.prototype.getX=function(){return this.x},o.prototype.getY=function(){return this.y},o.prototype.setX=function(u){this.x=u},o.prototype.setY=function(u){this.y=u},o.prototype.getDifference=function(u){return new DimensionD(this.x-u.x,this.y-u.y)},o.prototype.getCopy=function(){return new o(this.x,this.y)},o.prototype.translate=function(u){return this.x+=u.width,this.y+=u.height,this},r.exports=o},function(r,a,s){var o=s(2),u=s(10),h=s(0),f=s(6),p=s(3),m=s(1),b=s(13),_=s(12),w=s(11);function S(A,k,I){o.call(this,I),this.estimatedSize=u.MIN_VALUE,this.margin=h.DEFAULT_GRAPH_MARGIN,this.edges=[],this.nodes=[],this.isConnected=!1,this.parent=A,k!=null&&k instanceof f?this.graphManager=k:k!=null&&k instanceof Layout&&(this.graphManager=k.graphManager)}S.prototype=Object.create(o.prototype);for(var C in o)S[C]=o[C];S.prototype.getNodes=function(){return this.nodes},S.prototype.getEdges=function(){return this.edges},S.prototype.getGraphManager=function(){return this.graphManager},S.prototype.getParent=function(){return this.parent},S.prototype.getLeft=function(){return this.left},S.prototype.getRight=function(){return this.right},S.prototype.getTop=function(){return this.top},S.prototype.getBottom=function(){return this.bottom},S.prototype.isConnected=function(){return this.isConnected},S.prototype.add=function(A,k,I){if(k==null&&I==null){var N=A;if(this.graphManager==null)throw"Graph has no graph mgr!";if(this.getNodes().indexOf(N)>-1)throw"Node already in graph!";return N.owner=this,this.getNodes().push(N),N}else{var L=A;if(!(this.getNodes().indexOf(k)>-1&&this.getNodes().indexOf(I)>-1))throw"Source or target not in graph!";if(!(k.owner==I.owner&&k.owner==this))throw"Both owners must be this graph!";return k.owner!=I.owner?null:(L.source=k,L.target=I,L.isInterGraph=!1,this.getEdges().push(L),k.edges.push(L),I!=k&&I.edges.push(L),L)}},S.prototype.remove=function(A){var k=A;if(A instanceof p){if(k==null)throw"Node is null!";if(!(k.owner!=null&&k.owner==this))throw"Owner graph is invalid!";if(this.graphManager==null)throw"Owner graph manager is invalid!";for(var I=k.edges.slice(),N,L=I.length,P=0;P-1&&U>-1))throw"Source and/or target doesn't know this edge!";N.source.edges.splice(F,1),N.target!=N.source&&N.target.edges.splice(U,1);var M=N.source.owner.getEdges().indexOf(N);if(M==-1)throw"Not in owner's edge list!";N.source.owner.getEdges().splice(M,1)}},S.prototype.updateLeftTop=function(){for(var A=u.MAX_VALUE,k=u.MAX_VALUE,I,N,L,P=this.getNodes(),M=P.length,F=0;FI&&(A=I),k>N&&(k=N)}return A==u.MAX_VALUE?null:(P[0].getParent().paddingLeft!=null?L=P[0].getParent().paddingLeft:L=this.margin,this.left=k-L,this.top=A-L,new _(this.left,this.top))},S.prototype.updateBounds=function(A){for(var k=u.MAX_VALUE,I=-u.MAX_VALUE,N=u.MAX_VALUE,L=-u.MAX_VALUE,P,M,F,U,$,G=this.nodes,B=G.length,Z=0;ZP&&(k=P),IF&&(N=F),LP&&(k=P),IF&&(N=F),L=this.nodes.length){var B=0;I.forEach(function(Z){Z.owner==A&&B++}),B==this.nodes.length&&(this.isConnected=!0)}},r.exports=S},function(r,a,s){var o,u=s(1);function h(f){o=s(5),this.layout=f,this.graphs=[],this.edges=[]}h.prototype.addRoot=function(){var f=this.layout.newGraph(),p=this.layout.newNode(null),m=this.add(f,p);return this.setRootGraph(m),this.rootGraph},h.prototype.add=function(f,p,m,b,_){if(m==null&&b==null&&_==null){if(f==null)throw"Graph is null!";if(p==null)throw"Parent node is null!";if(this.graphs.indexOf(f)>-1)throw"Graph already in this graph mgr!";if(this.graphs.push(f),f.parent!=null)throw"Already has a parent!";if(p.child!=null)throw"Already has a child!";return f.parent=p,p.child=f,f}else{_=m,b=p,m=f;var w=b.getOwner(),S=_.getOwner();if(!(w!=null&&w.getGraphManager()==this))throw"Source not in this graph mgr!";if(!(S!=null&&S.getGraphManager()==this))throw"Target not in this graph mgr!";if(w==S)return m.isInterGraph=!1,w.add(m,b,_);if(m.isInterGraph=!0,m.source=b,m.target=_,this.edges.indexOf(m)>-1)throw"Edge already in inter-graph edge list!";if(this.edges.push(m),!(m.source!=null&&m.target!=null))throw"Edge source and/or target is null!";if(!(m.source.edges.indexOf(m)==-1&&m.target.edges.indexOf(m)==-1))throw"Edge already in source and/or target incidency list!";return m.source.edges.push(m),m.target.edges.push(m),m}},h.prototype.remove=function(f){if(f instanceof o){var p=f;if(p.getGraphManager()!=this)throw"Graph not in this graph mgr";if(!(p==this.rootGraph||p.parent!=null&&p.parent.graphManager==this))throw"Invalid parent node!";var m=[];m=m.concat(p.getEdges());for(var b,_=m.length,w=0;w<_;w++)b=m[w],p.remove(b);var S=[];S=S.concat(p.getNodes());var C;_=S.length;for(var w=0;w<_;w++)C=S[w],p.remove(C);p==this.rootGraph&&this.setRootGraph(null);var A=this.graphs.indexOf(p);this.graphs.splice(A,1),p.parent=null}else if(f instanceof u){if(b=f,b==null)throw"Edge is null!";if(!b.isInterGraph)throw"Not an inter-graph edge!";if(!(b.source!=null&&b.target!=null))throw"Source and/or target is null!";if(!(b.source.edges.indexOf(b)!=-1&&b.target.edges.indexOf(b)!=-1))throw"Source and/or target doesn't know this edge!";var A=b.source.edges.indexOf(b);if(b.source.edges.splice(A,1),A=b.target.edges.indexOf(b),b.target.edges.splice(A,1),!(b.source.owner!=null&&b.source.owner.getGraphManager()!=null))throw"Edge owner graph or owner graph manager is null!";if(b.source.owner.getGraphManager().edges.indexOf(b)==-1)throw"Not in owner graph manager's edge list!";var A=b.source.owner.getGraphManager().edges.indexOf(b);b.source.owner.getGraphManager().edges.splice(A,1)}},h.prototype.updateBounds=function(){this.rootGraph.updateBounds(!0)},h.prototype.getGraphs=function(){return this.graphs},h.prototype.getAllNodes=function(){if(this.allNodes==null){for(var f=[],p=this.getGraphs(),m=p.length,b=0;b=f.getRight()?p[0]+=Math.min(f.getX()-h.getX(),h.getRight()-f.getRight()):f.getX()<=h.getX()&&f.getRight()>=h.getRight()&&(p[0]+=Math.min(h.getX()-f.getX(),f.getRight()-h.getRight())),h.getY()<=f.getY()&&h.getBottom()>=f.getBottom()?p[1]+=Math.min(f.getY()-h.getY(),h.getBottom()-f.getBottom()):f.getY()<=h.getY()&&f.getBottom()>=h.getBottom()&&(p[1]+=Math.min(h.getY()-f.getY(),f.getBottom()-h.getBottom()));var _=Math.abs((f.getCenterY()-h.getCenterY())/(f.getCenterX()-h.getCenterX()));f.getCenterY()===h.getCenterY()&&f.getCenterX()===h.getCenterX()&&(_=1);var w=_*p[0],S=p[1]/_;p[0]w)return p[0]=m,p[1]=C,p[2]=_,p[3]=G,!1;if(b_)return p[0]=S,p[1]=b,p[2]=U,p[3]=w,!1;if(m<_)return p[0]=A,p[1]=b,p[2]=M,p[3]=w,!1}else{var Q=h.height/h.width,V=f.height/f.width,j=(w-b)/(_-m),ee=void 0,te=void 0,ne=void 0,se=void 0,ie=void 0,ge=void 0;if(-Q===j?m>_?(p[0]=k,p[1]=I,Y=!0):(p[0]=A,p[1]=C,Y=!0):Q===j&&(m>_?(p[0]=S,p[1]=C,Y=!0):(p[0]=N,p[1]=I,Y=!0)),-V===j?_>m?(p[2]=$,p[3]=G,W=!0):(p[2]=U,p[3]=F,W=!0):V===j&&(_>m?(p[2]=M,p[3]=F,W=!0):(p[2]=B,p[3]=G,W=!0)),Y&&W)return!1;if(m>_?b>w?(ee=this.getCardinalDirection(Q,j,4),te=this.getCardinalDirection(V,j,2)):(ee=this.getCardinalDirection(-Q,j,3),te=this.getCardinalDirection(-V,j,1)):b>w?(ee=this.getCardinalDirection(-Q,j,1),te=this.getCardinalDirection(-V,j,3)):(ee=this.getCardinalDirection(Q,j,2),te=this.getCardinalDirection(V,j,4)),!Y)switch(ee){case 1:se=C,ne=m+-P/j,p[0]=ne,p[1]=se;break;case 2:ne=N,se=b+L*j,p[0]=ne,p[1]=se;break;case 3:se=I,ne=m+P/j,p[0]=ne,p[1]=se;break;case 4:ne=k,se=b+-L*j,p[0]=ne,p[1]=se;break}if(!W)switch(te){case 1:ge=F,ie=_+-z/j,p[2]=ie,p[3]=ge;break;case 2:ie=B,ge=w+Z*j,p[2]=ie,p[3]=ge;break;case 3:ge=G,ie=_+z/j,p[2]=ie,p[3]=ge;break;case 4:ie=$,ge=w+-Z*j,p[2]=ie,p[3]=ge;break}}return!1},u.getCardinalDirection=function(h,f,p){return h>f?p:1+p%4},u.getIntersection=function(h,f,p,m){if(m==null)return this.getIntersection2(h,f,p);var b=h.x,_=h.y,w=f.x,S=f.y,C=p.x,A=p.y,k=m.x,I=m.y,N=void 0,L=void 0,P=void 0,M=void 0,F=void 0,U=void 0,$=void 0,G=void 0,B=void 0;return P=S-_,F=b-w,$=w*_-b*S,M=I-A,U=C-k,G=k*A-C*I,B=P*U-M*F,B===0?null:(N=(F*G-U*$)/B,L=(M*$-P*G)/B,new o(N,L))},u.angleOfVector=function(h,f,p,m){var b=void 0;return h!==p?(b=Math.atan((m-f)/(p-h)),p0?1:u<0?-1:0},o.floor=function(u){return u<0?Math.ceil(u):Math.floor(u)},o.ceil=function(u){return u<0?Math.floor(u):Math.ceil(u)},r.exports=o},function(r,a,s){function o(){}o.MAX_VALUE=2147483647,o.MIN_VALUE=-2147483648,r.exports=o},function(r,a,s){var o=function(){function b(_,w){for(var S=0;S"u"?"undefined":o(h);return h==null||f!="object"&&f!="function"},r.exports=u},function(r,a,s){function o(C){if(Array.isArray(C)){for(var A=0,k=Array(C.length);A0&&A;){for(P.push(F[0]);P.length>0&&A;){var U=P[0];P.splice(0,1),L.add(U);for(var $=U.getEdges(),N=0;N<$.length;N++){var G=$[N].getOtherEnd(U);if(M.get(U)!=G)if(!L.has(G))P.push(G),M.set(G,U);else{A=!1;break}}}if(!A)C=[];else{var B=[].concat(o(L));C.push(B);for(var N=0;N-1&&F.splice(z,1)}L=new Set,M=new Map}}return C},S.prototype.createDummyNodesForBendpoints=function(C){for(var A=[],k=C.source,I=this.graphManager.calcLowestCommonAncestor(C.source,C.target),N=0;N0){for(var I=this.edgeToDummyNodes.get(k),N=0;N=0&&A.splice(G,1);var B=M.getNeighborsList();B.forEach(function(Y){if(k.indexOf(Y)<0){var W=I.get(Y),Q=W-1;Q==1&&U.push(Y),I.set(Y,Q)}})}k=k.concat(U),(A.length==1||A.length==2)&&(N=!0,L=A[0])}return L},S.prototype.setGraphManager=function(C){this.graphManager=C},r.exports=S},function(r,a,s){function o(){}o.seed=1,o.x=0,o.nextDouble=function(){return o.x=Math.sin(o.seed++)*1e4,o.x-Math.floor(o.x)},r.exports=o},function(r,a,s){var o=s(4);function u(h,f){this.lworldOrgX=0,this.lworldOrgY=0,this.ldeviceOrgX=0,this.ldeviceOrgY=0,this.lworldExtX=1,this.lworldExtY=1,this.ldeviceExtX=1,this.ldeviceExtY=1}u.prototype.getWorldOrgX=function(){return this.lworldOrgX},u.prototype.setWorldOrgX=function(h){this.lworldOrgX=h},u.prototype.getWorldOrgY=function(){return this.lworldOrgY},u.prototype.setWorldOrgY=function(h){this.lworldOrgY=h},u.prototype.getWorldExtX=function(){return this.lworldExtX},u.prototype.setWorldExtX=function(h){this.lworldExtX=h},u.prototype.getWorldExtY=function(){return this.lworldExtY},u.prototype.setWorldExtY=function(h){this.lworldExtY=h},u.prototype.getDeviceOrgX=function(){return this.ldeviceOrgX},u.prototype.setDeviceOrgX=function(h){this.ldeviceOrgX=h},u.prototype.getDeviceOrgY=function(){return this.ldeviceOrgY},u.prototype.setDeviceOrgY=function(h){this.ldeviceOrgY=h},u.prototype.getDeviceExtX=function(){return this.ldeviceExtX},u.prototype.setDeviceExtX=function(h){this.ldeviceExtX=h},u.prototype.getDeviceExtY=function(){return this.ldeviceExtY},u.prototype.setDeviceExtY=function(h){this.ldeviceExtY=h},u.prototype.transformX=function(h){var f=0,p=this.lworldExtX;return p!=0&&(f=this.ldeviceOrgX+(h-this.lworldOrgX)*this.ldeviceExtX/p),f},u.prototype.transformY=function(h){var f=0,p=this.lworldExtY;return p!=0&&(f=this.ldeviceOrgY+(h-this.lworldOrgY)*this.ldeviceExtY/p),f},u.prototype.inverseTransformX=function(h){var f=0,p=this.ldeviceExtX;return p!=0&&(f=this.lworldOrgX+(h-this.ldeviceOrgX)*this.lworldExtX/p),f},u.prototype.inverseTransformY=function(h){var f=0,p=this.ldeviceExtY;return p!=0&&(f=this.lworldOrgY+(h-this.ldeviceOrgY)*this.lworldExtY/p),f},u.prototype.inverseTransformPoint=function(h){var f=new o(this.inverseTransformX(h.x),this.inverseTransformY(h.y));return f},r.exports=u},function(r,a,s){function o(w){if(Array.isArray(w)){for(var S=0,C=Array(w.length);Sh.ADAPTATION_LOWER_NODE_LIMIT&&(this.coolingFactor=Math.max(this.coolingFactor*h.COOLING_ADAPTATION_FACTOR,this.coolingFactor-(w-h.ADAPTATION_LOWER_NODE_LIMIT)/(h.ADAPTATION_UPPER_NODE_LIMIT-h.ADAPTATION_LOWER_NODE_LIMIT)*this.coolingFactor*(1-h.COOLING_ADAPTATION_FACTOR))),this.maxNodeDisplacement=h.MAX_NODE_DISPLACEMENT_INCREMENTAL):(w>h.ADAPTATION_LOWER_NODE_LIMIT?this.coolingFactor=Math.max(h.COOLING_ADAPTATION_FACTOR,1-(w-h.ADAPTATION_LOWER_NODE_LIMIT)/(h.ADAPTATION_UPPER_NODE_LIMIT-h.ADAPTATION_LOWER_NODE_LIMIT)*(1-h.COOLING_ADAPTATION_FACTOR)):this.coolingFactor=1,this.initialCoolingFactor=this.coolingFactor,this.maxNodeDisplacement=h.MAX_NODE_DISPLACEMENT),this.maxIterations=Math.max(this.getAllNodes().length*5,this.maxIterations),this.totalDisplacementThreshold=this.displacementThresholdPerNode*this.getAllNodes().length,this.repulsionRange=this.calcRepulsionRange()},b.prototype.calcSpringForces=function(){for(var w=this.getAllEdges(),S,C=0;C0&&arguments[0]!==void 0?arguments[0]:!0,S=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,C,A,k,I,N=this.getAllNodes(),L;if(this.useFRGridVariant)for(this.totalIterations%h.GRID_CALCULATION_CHECK_PERIOD==1&&w&&this.updateGrid(),L=new Set,C=0;CP||L>P)&&(w.gravitationForceX=-this.gravityConstant*k,w.gravitationForceY=-this.gravityConstant*I)):(P=S.getEstimatedSize()*this.compoundGravityRangeFactor,(N>P||L>P)&&(w.gravitationForceX=-this.gravityConstant*k*this.compoundGravityConstant,w.gravitationForceY=-this.gravityConstant*I*this.compoundGravityConstant))},b.prototype.isConverged=function(){var w,S=!1;return this.totalIterations>this.maxIterations/3&&(S=Math.abs(this.totalDisplacement-this.oldTotalDisplacement)<2),w=this.totalDisplacement=N.length||P>=N[0].length)){for(var M=0;Mb}}]),p}();r.exports=f},function(r,a,s){var o=function(){function f(p,m){for(var b=0;b2&&arguments[2]!==void 0?arguments[2]:1,_=arguments.length>3&&arguments[3]!==void 0?arguments[3]:-1,w=arguments.length>4&&arguments[4]!==void 0?arguments[4]:-1;u(this,f),this.sequence1=p,this.sequence2=m,this.match_score=b,this.mismatch_penalty=_,this.gap_penalty=w,this.iMax=p.length+1,this.jMax=m.length+1,this.grid=new Array(this.iMax);for(var S=0;S=0;p--){var m=this.listeners[p];m.event===h&&m.callback===f&&this.listeners.splice(p,1)}},u.emit=function(h,f){for(var p=0;pm.coolingFactor*m.maxNodeDisplacement&&(this.displacementX=m.coolingFactor*m.maxNodeDisplacement*h.sign(this.displacementX)),Math.abs(this.displacementY)>m.coolingFactor*m.maxNodeDisplacement&&(this.displacementY=m.coolingFactor*m.maxNodeDisplacement*h.sign(this.displacementY)),this.child==null?this.moveBy(this.displacementX,this.displacementY):this.child.getNodes().length==0?this.moveBy(this.displacementX,this.displacementY):this.propogateDisplacementToChildren(this.displacementX,this.displacementY),m.totalDisplacement+=Math.abs(this.displacementX)+Math.abs(this.displacementY),this.springForceX=0,this.springForceY=0,this.repulsionForceX=0,this.repulsionForceY=0,this.gravitationForceX=0,this.gravitationForceY=0,this.displacementX=0,this.displacementY=0},f.prototype.propogateDisplacementToChildren=function(m,b){for(var _=this.getChild().getNodes(),w,S=0;S<_.length;S++)w=_[S],w.getChild()==null?(w.moveBy(m,b),w.displacementX+=m,w.displacementY+=b):w.propogateDisplacementToChildren(m,b)},f.prototype.setPred1=function(m){this.pred1=m},f.prototype.getPred1=function(){return pred1},f.prototype.getPred2=function(){return pred2},f.prototype.setNext=function(m){this.next=m},f.prototype.getNext=function(){return next},f.prototype.setProcessed=function(m){this.processed=m},f.prototype.isProcessed=function(){return processed},a.exports=f},function(a,s,o){var u=o(0).FDLayout,h=o(4),f=o(3),p=o(5),m=o(2),b=o(1),_=o(0).FDLayoutConstants,w=o(0).LayoutConstants,S=o(0).Point,C=o(0).PointD,A=o(0).Layout,k=o(0).Integer,I=o(0).IGeometry,N=o(0).LGraph,L=o(0).Transform;function P(){u.call(this),this.toBeTiled={}}P.prototype=Object.create(u.prototype);for(var M in u)P[M]=u[M];P.prototype.newGraphManager=function(){var F=new h(this);return this.graphManager=F,F},P.prototype.newGraph=function(F){return new f(null,this.graphManager,F)},P.prototype.newNode=function(F){return new p(this.graphManager,F)},P.prototype.newEdge=function(F){return new m(null,null,F)},P.prototype.initParameters=function(){u.prototype.initParameters.call(this,arguments),this.isSubLayout||(b.DEFAULT_EDGE_LENGTH<10?this.idealEdgeLength=10:this.idealEdgeLength=b.DEFAULT_EDGE_LENGTH,this.useSmartIdealEdgeLengthCalculation=b.DEFAULT_USE_SMART_IDEAL_EDGE_LENGTH_CALCULATION,this.springConstant=_.DEFAULT_SPRING_STRENGTH,this.repulsionConstant=_.DEFAULT_REPULSION_STRENGTH,this.gravityConstant=_.DEFAULT_GRAVITY_STRENGTH,this.compoundGravityConstant=_.DEFAULT_COMPOUND_GRAVITY_STRENGTH,this.gravityRangeFactor=_.DEFAULT_GRAVITY_RANGE_FACTOR,this.compoundGravityRangeFactor=_.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR,this.prunedNodesAll=[],this.growTreeIterations=0,this.afterGrowthIterations=0,this.isTreeGrowing=!1,this.isGrowthFinished=!1,this.coolingCycle=0,this.maxCoolingCycle=this.maxIterations/_.CONVERGENCE_CHECK_PERIOD,this.finalTemperature=_.CONVERGENCE_CHECK_PERIOD/this.maxIterations,this.coolingAdjuster=1)},P.prototype.layout=function(){var F=w.DEFAULT_CREATE_BENDS_AS_NEEDED;return F&&(this.createBendpoints(),this.graphManager.resetAllEdges()),this.level=0,this.classicLayout()},P.prototype.classicLayout=function(){if(this.nodesWithGravity=this.calculateNodesToApplyGravitationTo(),this.graphManager.setAllNodesToApplyGravitation(this.nodesWithGravity),this.calcNoOfChildrenForAllNodes(),this.graphManager.calcLowestCommonAncestors(),this.graphManager.calcInclusionTreeDepths(),this.graphManager.getRoot().calcEstimatedSize(),this.calcIdealEdgeLengths(),this.incremental){if(b.TREE_REDUCTION_ON_INCREMENTAL){this.reduceTrees(),this.graphManager.resetAllNodesToApplyGravitation();var U=new Set(this.getAllNodes()),$=this.nodesWithGravity.filter(function(Z){return U.has(Z)});this.graphManager.setAllNodesToApplyGravitation($)}}else{var F=this.getFlatForest();if(F.length>0)this.positionNodesRadially(F);else{this.reduceTrees(),this.graphManager.resetAllNodesToApplyGravitation();var U=new Set(this.getAllNodes()),$=this.nodesWithGravity.filter(function(G){return U.has(G)});this.graphManager.setAllNodesToApplyGravitation($),this.positionNodesRandomly()}}return this.initSpringEmbedder(),this.runSpringEmbedder(),!0},P.prototype.tick=function(){if(this.totalIterations++,this.totalIterations===this.maxIterations&&!this.isTreeGrowing&&!this.isGrowthFinished)if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;if(this.totalIterations%_.CONVERGENCE_CHECK_PERIOD==0&&!this.isTreeGrowing&&!this.isGrowthFinished){if(this.isConverged())if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;this.coolingCycle++,this.layoutQuality==0?this.coolingAdjuster=this.coolingCycle:this.layoutQuality==1&&(this.coolingAdjuster=this.coolingCycle/3),this.coolingFactor=Math.max(this.initialCoolingFactor-Math.pow(this.coolingCycle,Math.log(100*(this.initialCoolingFactor-this.finalTemperature))/Math.log(this.maxCoolingCycle))/100*this.coolingAdjuster,this.finalTemperature),this.animationPeriod=Math.ceil(this.initialAnimationPeriod*Math.sqrt(this.coolingFactor))}if(this.isTreeGrowing){if(this.growTreeIterations%10==0)if(this.prunedNodesAll.length>0){this.graphManager.updateBounds(),this.updateGrid(),this.growTree(this.prunedNodesAll),this.graphManager.resetAllNodesToApplyGravitation();var F=new Set(this.getAllNodes()),U=this.nodesWithGravity.filter(function(B){return F.has(B)});this.graphManager.setAllNodesToApplyGravitation(U),this.graphManager.updateBounds(),this.updateGrid(),this.coolingFactor=_.DEFAULT_COOLING_FACTOR_INCREMENTAL}else this.isTreeGrowing=!1,this.isGrowthFinished=!0;this.growTreeIterations++}if(this.isGrowthFinished){if(this.isConverged())return!0;this.afterGrowthIterations%10==0&&(this.graphManager.updateBounds(),this.updateGrid()),this.coolingFactor=_.DEFAULT_COOLING_FACTOR_INCREMENTAL*((100-this.afterGrowthIterations)/100),this.afterGrowthIterations++}var $=!this.isTreeGrowing&&!this.isGrowthFinished,G=this.growTreeIterations%10==1&&this.isTreeGrowing||this.afterGrowthIterations%10==1&&this.isGrowthFinished;return this.totalDisplacement=0,this.graphManager.updateBounds(),this.calcSpringForces(),this.calcRepulsionForces($,G),this.calcGravitationalForces(),this.moveNodes(),this.animate(),!1},P.prototype.getPositionsData=function(){for(var F=this.graphManager.getAllNodes(),U={},$=0;$1){var Y;for(Y=0;YG&&(G=Math.floor(z.y)),Z=Math.floor(z.x+b.DEFAULT_COMPONENT_SEPERATION)}this.transform(new C(w.WORLD_CENTER_X-z.x/2,w.WORLD_CENTER_Y-z.y/2))},P.radialLayout=function(F,U,$){var G=Math.max(this.maxDiagonalInTree(F),b.DEFAULT_RADIAL_SEPARATION);P.branchRadialLayout(U,null,0,359,0,G);var B=N.calculateBounds(F),Z=new L;Z.setDeviceOrgX(B.getMinX()),Z.setDeviceOrgY(B.getMinY()),Z.setWorldOrgX($.x),Z.setWorldOrgY($.y);for(var z=0;z1;){var ge=ie[0];ie.splice(0,1);var ce=j.indexOf(ge);ce>=0&&j.splice(ce,1),ne--,ee--}U!=null?se=(j.indexOf(ie[0])+1)%ne:se=0;for(var be=Math.abs(G-$)/ee,ve=se;te!=ee;ve=++ve%ne){var De=j[ve].getOtherEnd(F);if(De!=U){var ye=($+te*be)%360,Ee=(ye+be)%360;P.branchRadialLayout(De,F,ye,Ee,B+Z,Z),te++}}},P.maxDiagonalInTree=function(F){for(var U=k.MIN_VALUE,$=0;$U&&(U=B)}return U},P.prototype.calcRepulsionRange=function(){return 2*(this.level+1)*this.idealEdgeLength},P.prototype.groupZeroDegreeMembers=function(){var F=this,U={};this.memberGroups={},this.idToDummyNode={};for(var $=[],G=this.graphManager.getAllNodes(),B=0;B"u"&&(U[Y]=[]),U[Y]=U[Y].concat(Z)}Object.keys(U).forEach(function(W){if(U[W].length>1){var Q="DummyCompound_"+W;F.memberGroups[Q]=U[W];var V=U[W][0].getParent(),j=new p(F.graphManager);j.id=Q,j.paddingLeft=V.paddingLeft||0,j.paddingRight=V.paddingRight||0,j.paddingBottom=V.paddingBottom||0,j.paddingTop=V.paddingTop||0,F.idToDummyNode[Q]=j;var ee=F.getGraphManager().add(F.newGraph(),j),te=V.getChild();te.add(j);for(var ne=0;ne=0;F--){var U=this.compoundOrder[F],$=U.id,G=U.paddingLeft,B=U.paddingTop;this.adjustLocations(this.tiledMemberPack[$],U.rect.x,U.rect.y,G,B)}},P.prototype.repopulateZeroDegreeMembers=function(){var F=this,U=this.tiledZeroDegreePack;Object.keys(U).forEach(function($){var G=F.idToDummyNode[$],B=G.paddingLeft,Z=G.paddingTop;F.adjustLocations(U[$],G.rect.x,G.rect.y,B,Z)})},P.prototype.getToBeTiled=function(F){var U=F.id;if(this.toBeTiled[U]!=null)return this.toBeTiled[U];var $=F.getChild();if($==null)return this.toBeTiled[U]=!1,!1;for(var G=$.getNodes(),B=0;B0)return this.toBeTiled[U]=!1,!1;if(Z.getChild()==null){this.toBeTiled[Z.id]=!1;continue}if(!this.getToBeTiled(Z))return this.toBeTiled[U]=!1,!1}return this.toBeTiled[U]=!0,!0},P.prototype.getNodeDegree=function(F){F.id;for(var U=F.getEdges(),$=0,G=0;GW&&(W=V.rect.height)}$+=W+F.verticalPadding}},P.prototype.tileCompoundMembers=function(F,U){var $=this;this.tiledMemberPack=[],Object.keys(F).forEach(function(G){var B=U[G];$.tiledMemberPack[G]=$.tileNodes(F[G],B.paddingLeft+B.paddingRight),B.rect.width=$.tiledMemberPack[G].width,B.rect.height=$.tiledMemberPack[G].height})},P.prototype.tileNodes=function(F,U){var $=b.TILING_PADDING_VERTICAL,G=b.TILING_PADDING_HORIZONTAL,B={rows:[],rowWidth:[],rowHeight:[],width:0,height:U,verticalPadding:$,horizontalPadding:G};F.sort(function(Y,W){return Y.rect.width*Y.rect.height>W.rect.width*W.rect.height?-1:Y.rect.width*Y.rect.height0&&(z+=F.horizontalPadding),F.rowWidth[$]=z,F.width0&&(Y+=F.verticalPadding);var W=0;Y>F.rowHeight[$]&&(W=F.rowHeight[$],F.rowHeight[$]=Y,W=F.rowHeight[$]-W),F.height+=W,F.rows[$].push(U)},P.prototype.getShortestRowIndex=function(F){for(var U=-1,$=Number.MAX_VALUE,G=0;G$&&(U=G,$=F.rowWidth[G]);return U},P.prototype.canAddHorizontal=function(F,U,$){var G=this.getShortestRowIndex(F);if(G<0)return!0;var B=F.rowWidth[G];if(B+F.horizontalPadding+U<=F.width)return!0;var Z=0;F.rowHeight[G]<$&&G>0&&(Z=$+F.verticalPadding-F.rowHeight[G]);var z;F.width-B>=U+F.horizontalPadding?z=(F.height+Z)/(B+U+F.horizontalPadding):z=(F.height+Z)/F.width,Z=$+F.verticalPadding;var Y;return F.widthZ&&U!=$){G.splice(-1,1),F.rows[$].push(B),F.rowWidth[U]=F.rowWidth[U]-Z,F.rowWidth[$]=F.rowWidth[$]+Z,F.width=F.rowWidth[instance.getLongestRowIndex(F)];for(var z=Number.MIN_VALUE,Y=0;Yz&&(z=G[Y].height);U>0&&(z+=F.verticalPadding);var W=F.rowHeight[U]+F.rowHeight[$];F.rowHeight[U]=z,F.rowHeight[$]0)for(var te=B;te<=Z;te++)ee[0]+=this.grid[te][z-1].length+this.grid[te][z].length-1;if(Z0)for(var te=z;te<=Y;te++)ee[3]+=this.grid[B-1][te].length+this.grid[B][te].length-1;for(var ne=k.MAX_VALUE,se,ie,ge=0;ge0){var Y;Y=L.getGraphManager().add(L.newGraph(),$),this.processChildrenList(Y,U,L)}}},C.prototype.stop=function(){return this.stopped=!0,this};var k=function(N){N("layout","cose-bilkent",C)};typeof cytoscape<"u"&&k(cytoscape),a.exports=k}])})})(WVn);var c9i=WVn.exports;const KVn=O1(c9i);CS.use(KVn);function XVn(e,t){e.forEach(r=>{const a={id:r.id,labelText:r.label,height:r.height,width:r.width,padding:r.padding??0};Object.keys(r).forEach(s=>{["id","label","height","width","padding","x","y"].includes(s)||(a[s]=r[s])}),t.add({group:"nodes",data:a,position:{x:r.x??0,y:r.y??0}})})}X(XVn,"addNodes");function QVn(e,t){e.forEach(r=>{const a={id:r.id,source:r.start,target:r.end};Object.keys(r).forEach(s=>{["id","start","end"].includes(s)||(a[s]=r[s])}),t.add({group:"edges",data:a})})}X(QVn,"addEdges");function ZVn(e){return new Promise(t=>{const r=gn("body").append("div").attr("id","cy").attr("style","display:none"),a=CS({container:document.getElementById("cy"),style:[{selector:"edge",style:{"curve-style":"bezier"}}]});r.remove(),XVn(e.nodes,a),QVn(e.edges,a),a.nodes().forEach(function(o){o.layoutDimensions=()=>{const u=o.data();return{w:u.width,h:u.height}}});const s={name:"cose-bilkent",quality:"proof",styleEnabled:!1,animate:!1};a.layout(s).run(),a.ready(o=>{it.info("Cytoscape ready",o),t(a)})})}X(ZVn,"createCytoscapeInstance");function JVn(e){return e.nodes().map(t=>{const r=t.data(),a=t.position(),s={id:r.id,x:a.x,y:a.y};return Object.keys(r).forEach(o=>{o!=="id"&&(s[o]=r[o])}),s})}X(JVn,"extractPositionedNodes");function eYn(e){return e.edges().map(t=>{const r=t.data(),a=t._private.rscratch,s={id:r.id,source:r.source,target:r.target,startX:a.startX,startY:a.startY,midX:a.midX,midY:a.midY,endX:a.endX,endY:a.endY};return Object.keys(r).forEach(o=>{["id","source","target"].includes(o)||(s[o]=r[o])}),s})}X(eYn,"extractPositionedEdges");async function tYn(e,t){it.debug("Starting cose-bilkent layout algorithm");try{nYn(e);const r=await ZVn(e),a=JVn(r),s=eYn(r);return it.debug(`Layout completed: ${a.length} nodes, ${s.length} edges`),{nodes:a,edges:s}}catch(r){throw it.error("Error in cose-bilkent layout algorithm:",r),r}}X(tYn,"executeCoseBilkentLayout");function nYn(e){if(!e)throw new Error("Layout data is required");if(!e.config)throw new Error("Configuration is required in layout data");if(!e.rootNode)throw new Error("Root node is required");if(!e.nodes||!Array.isArray(e.nodes))throw new Error("No nodes found in layout data");if(!Array.isArray(e.edges))throw new Error("Edges array is required in layout data");return!0}X(nYn,"validateLayoutData");var u9i=X(async(e,t,{insertCluster:r,insertEdge:a,insertEdgeLabel:s,insertMarkers:o,insertNode:u,log:h,positionEdgeLabel:f},{algorithm:p})=>{const m={},b={},_=t.select("g");o(_,e.markers,e.type,e.diagramId);const w=_.insert("g").attr("class","subgraphs"),S=_.insert("g").attr("class","edgePaths"),C=_.insert("g").attr("class","edgeLabels"),A=_.insert("g").attr("class","nodes");h.debug("Inserting nodes into DOM for dimension calculation"),await Promise.all(e.nodes.map(async N=>{if(N.isGroup){const L={...N};b[N.id]=L,m[N.id]=L,await r(w,N)}else{const L={...N};m[N.id]=L;const P=await u(A,N,{config:e.config,dir:e.direction||"TB"}),M=P.node().getBBox();L.width=M.width,L.height=M.height,L.domId=P,h.debug(`Node ${N.id} dimensions: ${M.width}x${M.height}`)}})),h.debug("Running cose-bilkent layout algorithm");const k={...e,nodes:e.nodes.map(N=>{const L=m[N.id];return{...N,width:L.width,height:L.height}})},I=await tYn(k,e.config);h.debug("Positioning nodes based on layout results"),I.nodes.forEach(N=>{const L=m[N.id];L!=null&&L.domId&&(L.domId.attr("transform",`translate(${N.x}, ${N.y})`),L.x=N.x,L.y=N.y,h.debug(`Positioned node ${L.id} at center (${N.x}, ${N.y})`))}),I.edges.forEach(N=>{const L=e.edges.find(P=>P.id===N.id);L&&(L.points=[{x:N.startX,y:N.startY},{x:N.midX,y:N.midY},{x:N.endX,y:N.endY}])}),h.debug("Inserting and positioning edges"),await Promise.all(e.edges.map(async N=>{await s(C,N);const L=m[N.start??""],P=m[N.end??""];if(L&&P){const M=I.edges.find(F=>F.id===N.id);if(M){h.debug("APA01 positionedEdge",M);const F={...N},U=a(S,F,b,e.type,L,P,e.diagramId);f(F,U)}else{const F={...N,points:[{x:L.x||0,y:L.y||0},{x:P.x||0,y:P.y||0}]},U=a(S,F,b,e.type,L,P,e.diagramId);f(F,U)}}})),h.debug("Cose-bilkent rendering completed")},"render"),h9i=u9i;const d9i=Object.freeze(Object.defineProperty({__proto__:null,render:h9i},Symbol.toStringTag,{value:"Module"}));var vke=X((e,t)=>{const r=e.append("rect");if(r.attr("x",t.x),r.attr("y",t.y),r.attr("fill",t.fill),r.attr("stroke",t.stroke),r.attr("width",t.width),r.attr("height",t.height),t.name&&r.attr("name",t.name),t.rx&&r.attr("rx",t.rx),t.ry&&r.attr("ry",t.ry),t.attrs!==void 0)for(const a in t.attrs)r.attr(a,t.attrs[a]);return t.class&&r.attr("class",t.class),r},"drawRect"),rYn=X((e,t)=>{const r={x:t.startx,y:t.starty,width:t.stopx-t.startx,height:t.stopy-t.starty,fill:t.fill,stroke:t.stroke,class:"rect"};vke(e,r).lower()},"drawBackgroundRect"),f9i=X((e,t)=>{const r=t.text.replace(DW," "),a=e.append("text");a.attr("x",t.x),a.attr("y",t.y),a.attr("class","legend"),a.style("text-anchor",t.anchor),t.class&&a.attr("class",t.class);const s=a.append("tspan");return s.attr("x",t.x+t.textMargin*2),s.text(r),a},"drawText"),Pgt=X((e,t,r,a)=>{const s=e.append("image");s.attr("x",t),s.attr("y",r);const o=M9(a);s.attr("xlink:href",o)},"drawImage"),Bgt=X((e,t,r,a)=>{const s=e.append("use");s.attr("x",t),s.attr("y",r);const o=M9(a);s.attr("xlink:href",`#${o}`)},"drawEmbeddedImage"),Ww=X(()=>({x:0,y:0,width:100,height:100,fill:"#EDF2AE",stroke:"#666",anchor:"start",rx:0,ry:0}),"getNoteRect"),Fgt=X(()=>({x:0,y:0,width:100,height:100,"text-anchor":"start",style:"#666",textMargin:0,rx:0,ry:0,tspan:!0}),"getTextObj"),J3e=function(){var e=X(function(Ft,Je,ht,et){for(ht=ht||{},et=Ft.length;et--;ht[Ft[et]]=Je);return ht},"o"),t=[1,24],r=[1,25],a=[1,26],s=[1,27],o=[1,28],u=[1,63],h=[1,64],f=[1,65],p=[1,66],m=[1,67],b=[1,68],_=[1,69],w=[1,29],S=[1,30],C=[1,31],A=[1,32],k=[1,33],I=[1,34],N=[1,35],L=[1,36],P=[1,37],M=[1,38],F=[1,39],U=[1,40],$=[1,41],G=[1,42],B=[1,43],Z=[1,44],z=[1,45],Y=[1,46],W=[1,47],Q=[1,48],V=[1,50],j=[1,51],ee=[1,52],te=[1,53],ne=[1,54],se=[1,55],ie=[1,56],ge=[1,57],ce=[1,58],be=[1,59],ve=[1,60],De=[14,42],ye=[14,34,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],Ee=[12,14,34,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],he=[1,82],we=[1,83],Ce=[1,84],Ie=[1,85],Le=[12,14,42],Fe=[12,14,33,42],Ve=[12,14,33,42,76,77,79,80],Oe=[12,33],Dt=[34,36,37,38,39,40,41,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],ot={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,mermaidDoc:4,direction:5,direction_tb:6,direction_bt:7,direction_rl:8,direction_lr:9,graphConfig:10,C4_CONTEXT:11,NEWLINE:12,statements:13,EOF:14,C4_CONTAINER:15,C4_COMPONENT:16,C4_DYNAMIC:17,C4_DEPLOYMENT:18,otherStatements:19,diagramStatements:20,otherStatement:21,title:22,accDescription:23,acc_title:24,acc_title_value:25,acc_descr:26,acc_descr_value:27,acc_descr_multiline_value:28,boundaryStatement:29,boundaryStartStatement:30,boundaryStopStatement:31,boundaryStart:32,LBRACE:33,ENTERPRISE_BOUNDARY:34,attributes:35,SYSTEM_BOUNDARY:36,BOUNDARY:37,CONTAINER_BOUNDARY:38,NODE:39,NODE_L:40,NODE_R:41,RBRACE:42,diagramStatement:43,PERSON:44,PERSON_EXT:45,SYSTEM:46,SYSTEM_DB:47,SYSTEM_QUEUE:48,SYSTEM_EXT:49,SYSTEM_EXT_DB:50,SYSTEM_EXT_QUEUE:51,CONTAINER:52,CONTAINER_DB:53,CONTAINER_QUEUE:54,CONTAINER_EXT:55,CONTAINER_EXT_DB:56,CONTAINER_EXT_QUEUE:57,COMPONENT:58,COMPONENT_DB:59,COMPONENT_QUEUE:60,COMPONENT_EXT:61,COMPONENT_EXT_DB:62,COMPONENT_EXT_QUEUE:63,REL:64,BIREL:65,REL_U:66,REL_D:67,REL_L:68,REL_R:69,REL_B:70,REL_INDEX:71,UPDATE_EL_STYLE:72,UPDATE_REL_STYLE:73,UPDATE_LAYOUT_CONFIG:74,attribute:75,STR:76,STR_KEY:77,STR_VALUE:78,ATTRIBUTE:79,ATTRIBUTE_EMPTY:80,$accept:0,$end:1},terminals_:{2:"error",6:"direction_tb",7:"direction_bt",8:"direction_rl",9:"direction_lr",11:"C4_CONTEXT",12:"NEWLINE",14:"EOF",15:"C4_CONTAINER",16:"C4_COMPONENT",17:"C4_DYNAMIC",18:"C4_DEPLOYMENT",22:"title",23:"accDescription",24:"acc_title",25:"acc_title_value",26:"acc_descr",27:"acc_descr_value",28:"acc_descr_multiline_value",33:"LBRACE",34:"ENTERPRISE_BOUNDARY",36:"SYSTEM_BOUNDARY",37:"BOUNDARY",38:"CONTAINER_BOUNDARY",39:"NODE",40:"NODE_L",41:"NODE_R",42:"RBRACE",44:"PERSON",45:"PERSON_EXT",46:"SYSTEM",47:"SYSTEM_DB",48:"SYSTEM_QUEUE",49:"SYSTEM_EXT",50:"SYSTEM_EXT_DB",51:"SYSTEM_EXT_QUEUE",52:"CONTAINER",53:"CONTAINER_DB",54:"CONTAINER_QUEUE",55:"CONTAINER_EXT",56:"CONTAINER_EXT_DB",57:"CONTAINER_EXT_QUEUE",58:"COMPONENT",59:"COMPONENT_DB",60:"COMPONENT_QUEUE",61:"COMPONENT_EXT",62:"COMPONENT_EXT_DB",63:"COMPONENT_EXT_QUEUE",64:"REL",65:"BIREL",66:"REL_U",67:"REL_D",68:"REL_L",69:"REL_R",70:"REL_B",71:"REL_INDEX",72:"UPDATE_EL_STYLE",73:"UPDATE_REL_STYLE",74:"UPDATE_LAYOUT_CONFIG",76:"STR",77:"STR_KEY",78:"STR_VALUE",79:"ATTRIBUTE",80:"ATTRIBUTE_EMPTY"},productions_:[0,[3,1],[3,1],[5,1],[5,1],[5,1],[5,1],[4,1],[10,4],[10,4],[10,4],[10,4],[10,4],[13,1],[13,1],[13,2],[19,1],[19,2],[19,3],[21,1],[21,1],[21,2],[21,2],[21,1],[29,3],[30,3],[30,3],[30,4],[32,2],[32,2],[32,2],[32,2],[32,2],[32,2],[32,2],[31,1],[20,1],[20,2],[20,3],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,1],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[35,1],[35,2],[75,1],[75,2],[75,1],[75,1]],performAction:X(function(Je,ht,et,qe,He,Ge,Ye){var Ae=Ge.length-1;switch(He){case 3:qe.setDirection("TB");break;case 4:qe.setDirection("BT");break;case 5:qe.setDirection("RL");break;case 6:qe.setDirection("LR");break;case 8:case 9:case 10:case 11:case 12:qe.setC4Type(Ge[Ae-3]);break;case 19:qe.setTitle(Ge[Ae].substring(6)),this.$=Ge[Ae].substring(6);break;case 20:qe.setAccDescription(Ge[Ae].substring(15)),this.$=Ge[Ae].substring(15);break;case 21:this.$=Ge[Ae].trim(),qe.setTitle(this.$);break;case 22:case 23:this.$=Ge[Ae].trim(),qe.setAccDescription(this.$);break;case 28:Ge[Ae].splice(2,0,"ENTERPRISE"),qe.addPersonOrSystemBoundary(...Ge[Ae]),this.$=Ge[Ae];break;case 29:Ge[Ae].splice(2,0,"SYSTEM"),qe.addPersonOrSystemBoundary(...Ge[Ae]),this.$=Ge[Ae];break;case 30:qe.addPersonOrSystemBoundary(...Ge[Ae]),this.$=Ge[Ae];break;case 31:Ge[Ae].splice(2,0,"CONTAINER"),qe.addContainerBoundary(...Ge[Ae]),this.$=Ge[Ae];break;case 32:qe.addDeploymentNode("node",...Ge[Ae]),this.$=Ge[Ae];break;case 33:qe.addDeploymentNode("nodeL",...Ge[Ae]),this.$=Ge[Ae];break;case 34:qe.addDeploymentNode("nodeR",...Ge[Ae]),this.$=Ge[Ae];break;case 35:qe.popBoundaryParseStack();break;case 39:qe.addPersonOrSystem("person",...Ge[Ae]),this.$=Ge[Ae];break;case 40:qe.addPersonOrSystem("external_person",...Ge[Ae]),this.$=Ge[Ae];break;case 41:qe.addPersonOrSystem("system",...Ge[Ae]),this.$=Ge[Ae];break;case 42:qe.addPersonOrSystem("system_db",...Ge[Ae]),this.$=Ge[Ae];break;case 43:qe.addPersonOrSystem("system_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 44:qe.addPersonOrSystem("external_system",...Ge[Ae]),this.$=Ge[Ae];break;case 45:qe.addPersonOrSystem("external_system_db",...Ge[Ae]),this.$=Ge[Ae];break;case 46:qe.addPersonOrSystem("external_system_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 47:qe.addContainer("container",...Ge[Ae]),this.$=Ge[Ae];break;case 48:qe.addContainer("container_db",...Ge[Ae]),this.$=Ge[Ae];break;case 49:qe.addContainer("container_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 50:qe.addContainer("external_container",...Ge[Ae]),this.$=Ge[Ae];break;case 51:qe.addContainer("external_container_db",...Ge[Ae]),this.$=Ge[Ae];break;case 52:qe.addContainer("external_container_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 53:qe.addComponent("component",...Ge[Ae]),this.$=Ge[Ae];break;case 54:qe.addComponent("component_db",...Ge[Ae]),this.$=Ge[Ae];break;case 55:qe.addComponent("component_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 56:qe.addComponent("external_component",...Ge[Ae]),this.$=Ge[Ae];break;case 57:qe.addComponent("external_component_db",...Ge[Ae]),this.$=Ge[Ae];break;case 58:qe.addComponent("external_component_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 60:qe.addRel("rel",...Ge[Ae]),this.$=Ge[Ae];break;case 61:qe.addRel("birel",...Ge[Ae]),this.$=Ge[Ae];break;case 62:qe.addRel("rel_u",...Ge[Ae]),this.$=Ge[Ae];break;case 63:qe.addRel("rel_d",...Ge[Ae]),this.$=Ge[Ae];break;case 64:qe.addRel("rel_l",...Ge[Ae]),this.$=Ge[Ae];break;case 65:qe.addRel("rel_r",...Ge[Ae]),this.$=Ge[Ae];break;case 66:qe.addRel("rel_b",...Ge[Ae]),this.$=Ge[Ae];break;case 67:Ge[Ae].splice(0,1),qe.addRel("rel",...Ge[Ae]),this.$=Ge[Ae];break;case 68:qe.updateElStyle("update_el_style",...Ge[Ae]),this.$=Ge[Ae];break;case 69:qe.updateRelStyle("update_rel_style",...Ge[Ae]),this.$=Ge[Ae];break;case 70:qe.updateLayoutConfig("update_layout_config",...Ge[Ae]),this.$=Ge[Ae];break;case 71:this.$=[Ge[Ae]];break;case 72:Ge[Ae].unshift(Ge[Ae-1]),this.$=Ge[Ae];break;case 73:case 75:this.$=Ge[Ae].trim();break;case 74:let Xe={};Xe[Ge[Ae-1].trim()]=Ge[Ae].trim(),this.$=Xe;break;case 76:this.$="";break}},"anonymous"),table:[{3:1,4:2,5:3,6:[1,5],7:[1,6],8:[1,7],9:[1,8],10:4,11:[1,9],15:[1,10],16:[1,11],17:[1,12],18:[1,13]},{1:[3]},{1:[2,1]},{1:[2,2]},{1:[2,7]},{1:[2,3]},{1:[2,4]},{1:[2,5]},{1:[2,6]},{12:[1,14]},{12:[1,15]},{12:[1,16]},{12:[1,17]},{12:[1,18]},{13:19,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{13:70,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{13:71,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{13:72,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{13:73,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{14:[1,74]},e(De,[2,13],{43:23,29:49,30:61,32:62,20:75,34:u,36:h,37:f,38:p,39:m,40:b,41:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve}),e(De,[2,14]),e(ye,[2,16],{12:[1,76]}),e(De,[2,36],{12:[1,77]}),e(Ee,[2,19]),e(Ee,[2,20]),{25:[1,78]},{27:[1,79]},e(Ee,[2,23]),{35:80,75:81,76:he,77:we,79:Ce,80:Ie},{35:86,75:81,76:he,77:we,79:Ce,80:Ie},{35:87,75:81,76:he,77:we,79:Ce,80:Ie},{35:88,75:81,76:he,77:we,79:Ce,80:Ie},{35:89,75:81,76:he,77:we,79:Ce,80:Ie},{35:90,75:81,76:he,77:we,79:Ce,80:Ie},{35:91,75:81,76:he,77:we,79:Ce,80:Ie},{35:92,75:81,76:he,77:we,79:Ce,80:Ie},{35:93,75:81,76:he,77:we,79:Ce,80:Ie},{35:94,75:81,76:he,77:we,79:Ce,80:Ie},{35:95,75:81,76:he,77:we,79:Ce,80:Ie},{35:96,75:81,76:he,77:we,79:Ce,80:Ie},{35:97,75:81,76:he,77:we,79:Ce,80:Ie},{35:98,75:81,76:he,77:we,79:Ce,80:Ie},{35:99,75:81,76:he,77:we,79:Ce,80:Ie},{35:100,75:81,76:he,77:we,79:Ce,80:Ie},{35:101,75:81,76:he,77:we,79:Ce,80:Ie},{35:102,75:81,76:he,77:we,79:Ce,80:Ie},{35:103,75:81,76:he,77:we,79:Ce,80:Ie},{35:104,75:81,76:he,77:we,79:Ce,80:Ie},e(Le,[2,59]),{35:105,75:81,76:he,77:we,79:Ce,80:Ie},{35:106,75:81,76:he,77:we,79:Ce,80:Ie},{35:107,75:81,76:he,77:we,79:Ce,80:Ie},{35:108,75:81,76:he,77:we,79:Ce,80:Ie},{35:109,75:81,76:he,77:we,79:Ce,80:Ie},{35:110,75:81,76:he,77:we,79:Ce,80:Ie},{35:111,75:81,76:he,77:we,79:Ce,80:Ie},{35:112,75:81,76:he,77:we,79:Ce,80:Ie},{35:113,75:81,76:he,77:we,79:Ce,80:Ie},{35:114,75:81,76:he,77:we,79:Ce,80:Ie},{35:115,75:81,76:he,77:we,79:Ce,80:Ie},{20:116,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{12:[1,118],33:[1,117]},{35:119,75:81,76:he,77:we,79:Ce,80:Ie},{35:120,75:81,76:he,77:we,79:Ce,80:Ie},{35:121,75:81,76:he,77:we,79:Ce,80:Ie},{35:122,75:81,76:he,77:we,79:Ce,80:Ie},{35:123,75:81,76:he,77:we,79:Ce,80:Ie},{35:124,75:81,76:he,77:we,79:Ce,80:Ie},{35:125,75:81,76:he,77:we,79:Ce,80:Ie},{14:[1,126]},{14:[1,127]},{14:[1,128]},{14:[1,129]},{1:[2,8]},e(De,[2,15]),e(ye,[2,17],{21:22,19:130,22:t,23:r,24:a,26:s,28:o}),e(De,[2,37],{19:20,20:21,21:22,43:23,29:49,30:61,32:62,13:131,22:t,23:r,24:a,26:s,28:o,34:u,36:h,37:f,38:p,39:m,40:b,41:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve}),e(Ee,[2,21]),e(Ee,[2,22]),e(Le,[2,39]),e(Fe,[2,71],{75:81,35:132,76:he,77:we,79:Ce,80:Ie}),e(Ve,[2,73]),{78:[1,133]},e(Ve,[2,75]),e(Ve,[2,76]),e(Le,[2,40]),e(Le,[2,41]),e(Le,[2,42]),e(Le,[2,43]),e(Le,[2,44]),e(Le,[2,45]),e(Le,[2,46]),e(Le,[2,47]),e(Le,[2,48]),e(Le,[2,49]),e(Le,[2,50]),e(Le,[2,51]),e(Le,[2,52]),e(Le,[2,53]),e(Le,[2,54]),e(Le,[2,55]),e(Le,[2,56]),e(Le,[2,57]),e(Le,[2,58]),e(Le,[2,60]),e(Le,[2,61]),e(Le,[2,62]),e(Le,[2,63]),e(Le,[2,64]),e(Le,[2,65]),e(Le,[2,66]),e(Le,[2,67]),e(Le,[2,68]),e(Le,[2,69]),e(Le,[2,70]),{31:134,42:[1,135]},{12:[1,136]},{33:[1,137]},e(Oe,[2,28]),e(Oe,[2,29]),e(Oe,[2,30]),e(Oe,[2,31]),e(Oe,[2,32]),e(Oe,[2,33]),e(Oe,[2,34]),{1:[2,9]},{1:[2,10]},{1:[2,11]},{1:[2,12]},e(ye,[2,18]),e(De,[2,38]),e(Fe,[2,72]),e(Ve,[2,74]),e(Le,[2,24]),e(Le,[2,35]),e(Dt,[2,25]),e(Dt,[2,26],{12:[1,138]}),e(Dt,[2,27])],defaultActions:{2:[2,1],3:[2,2],4:[2,7],5:[2,3],6:[2,4],7:[2,5],8:[2,6],74:[2,8],126:[2,9],127:[2,10],128:[2,11],129:[2,12]},parseError:X(function(Je,ht){if(ht.recoverable)this.trace(Je);else{var et=new Error(Je);throw et.hash=ht,et}},"parseError"),parse:X(function(Je){var ht=this,et=[0],qe=[],He=[null],Ge=[],Ye=this.table,Ae="",Xe=0,fe=0,Qe=2,Ke=1,mt=Ge.slice.call(arguments,1),lt=Object.create(this.lexer),$t={yy:{}};for(var Ut in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Ut)&&($t.yy[Ut]=this.yy[Ut]);lt.setInput(Je,$t.yy),$t.yy.lexer=lt,$t.yy.parser=this,typeof lt.yylloc>"u"&&(lt.yylloc={});var Jt=lt.yylloc;Ge.push(Jt);var wn=lt.options&<.options.ranges;typeof $t.yy.parseError=="function"?this.parseError=$t.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Vn(Cr){et.length=et.length-2*Cr,He.length=He.length-Cr,Ge.length=Ge.length-Cr}X(Vn,"popStack");function Wn(){var Cr;return Cr=qe.pop()||lt.lex()||Ke,typeof Cr!="number"&&(Cr instanceof Array&&(qe=Cr,Cr=qe.pop()),Cr=ht.symbols_[Cr]||Cr),Cr}X(Wn,"lex");for(var Dn,zn,vn,Cn,Ar={},ur,On,Ir,Ln;;){if(zn=et[et.length-1],this.defaultActions[zn]?vn=this.defaultActions[zn]:((Dn===null||typeof Dn>"u")&&(Dn=Wn()),vn=Ye[zn]&&Ye[zn][Dn]),typeof vn>"u"||!vn.length||!vn[0]){var pr="";Ln=[];for(ur in Ye[zn])this.terminals_[ur]&&ur>Qe&&Ln.push("'"+this.terminals_[ur]+"'");lt.showPosition?pr="Parse error on line "+(Xe+1)+`: +`+lt.showPosition()+` +Expecting `+Ln.join(", ")+", got '"+(this.terminals_[Dn]||Dn)+"'":pr="Parse error on line "+(Xe+1)+": Unexpected "+(Dn==Ke?"end of input":"'"+(this.terminals_[Dn]||Dn)+"'"),this.parseError(pr,{text:lt.match,token:this.terminals_[Dn]||Dn,line:lt.yylineno,loc:Jt,expected:Ln})}if(vn[0]instanceof Array&&vn.length>1)throw new Error("Parse Error: multiple actions possible at state: "+zn+", token: "+Dn);switch(vn[0]){case 1:et.push(Dn),He.push(lt.yytext),Ge.push(lt.yylloc),et.push(vn[1]),Dn=null,fe=lt.yyleng,Ae=lt.yytext,Xe=lt.yylineno,Jt=lt.yylloc;break;case 2:if(On=this.productions_[vn[1]][1],Ar.$=He[He.length-On],Ar._$={first_line:Ge[Ge.length-(On||1)].first_line,last_line:Ge[Ge.length-1].last_line,first_column:Ge[Ge.length-(On||1)].first_column,last_column:Ge[Ge.length-1].last_column},wn&&(Ar._$.range=[Ge[Ge.length-(On||1)].range[0],Ge[Ge.length-1].range[1]]),Cn=this.performAction.apply(Ar,[Ae,fe,Xe,$t.yy,vn[1],He,Ge].concat(mt)),typeof Cn<"u")return Cn;On&&(et=et.slice(0,-1*On*2),He=He.slice(0,-1*On),Ge=Ge.slice(0,-1*On)),et.push(this.productions_[vn[1]][0]),He.push(Ar.$),Ge.push(Ar._$),Ir=Ye[et[et.length-2]][et[et.length-1]],et.push(Ir);break;case 3:return!0}}return!0},"parse")},sn=function(){var Ft={EOF:1,parseError:X(function(ht,et){if(this.yy.parser)this.yy.parser.parseError(ht,et);else throw new Error(ht)},"parseError"),setInput:X(function(Je,ht){return this.yy=ht||this.yy||{},this._input=Je,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var Je=this._input[0];this.yytext+=Je,this.yyleng++,this.offset++,this.match+=Je,this.matched+=Je;var ht=Je.match(/(?:\r\n?|\n).*/g);return ht?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Je},"input"),unput:X(function(Je){var ht=Je.length,et=Je.split(/(?:\r\n?|\n)/g);this._input=Je+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-ht),this.offset-=ht;var qe=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),et.length-1&&(this.yylineno-=et.length-1);var He=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:et?(et.length===qe.length?this.yylloc.first_column:0)+qe[qe.length-et.length].length-et[0].length:this.yylloc.first_column-ht},this.options.ranges&&(this.yylloc.range=[He[0],He[0]+this.yyleng-ht]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(Je){this.unput(this.match.slice(Je))},"less"),pastInput:X(function(){var Je=this.matched.substr(0,this.matched.length-this.match.length);return(Je.length>20?"...":"")+Je.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var Je=this.match;return Je.length<20&&(Je+=this._input.substr(0,20-Je.length)),(Je.substr(0,20)+(Je.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var Je=this.pastInput(),ht=new Array(Je.length+1).join("-");return Je+this.upcomingInput()+` +`+ht+"^"},"showPosition"),test_match:X(function(Je,ht){var et,qe,He;if(this.options.backtrack_lexer&&(He={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(He.yylloc.range=this.yylloc.range.slice(0))),qe=Je[0].match(/(?:\r\n?|\n).*/g),qe&&(this.yylineno+=qe.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:qe?qe[qe.length-1].length-qe[qe.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Je[0].length},this.yytext+=Je[0],this.match+=Je[0],this.matches=Je,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Je[0].length),this.matched+=Je[0],et=this.performAction.call(this,this.yy,this,ht,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),et)return et;if(this._backtrack){for(var Ge in He)this[Ge]=He[Ge];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Je,ht,et,qe;this._more||(this.yytext="",this.match="");for(var He=this._currentRules(),Ge=0;Geht[0].length)){if(ht=et,qe=Ge,this.options.backtrack_lexer){if(Je=this.test_match(et,He[Ge]),Je!==!1)return Je;if(this._backtrack){ht=!1;continue}else return!1}else if(!this.options.flex)break}return ht?(Je=this.test_match(ht,He[qe]),Je!==!1?Je:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var ht=this.next();return ht||this.lex()},"lex"),begin:X(function(ht){this.conditionStack.push(ht)},"begin"),popState:X(function(){var ht=this.conditionStack.length-1;return ht>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(ht){return ht=this.conditionStack.length-1-Math.abs(ht||0),ht>=0?this.conditionStack[ht]:"INITIAL"},"topState"),pushState:X(function(ht){this.begin(ht)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{},performAction:X(function(ht,et,qe,He){switch(qe){case 0:return 6;case 1:return 7;case 2:return 8;case 3:return 9;case 4:return 22;case 5:return 23;case 6:return this.begin("acc_title"),24;case 7:return this.popState(),"acc_title_value";case 8:return this.begin("acc_descr"),26;case 9:return this.popState(),"acc_descr_value";case 10:this.begin("acc_descr_multiline");break;case 11:this.popState();break;case 12:return"acc_descr_multiline_value";case 13:break;case 14:c;break;case 15:return 12;case 16:break;case 17:return 11;case 18:return 15;case 19:return 16;case 20:return 17;case 21:return 18;case 22:return this.begin("person_ext"),45;case 23:return this.begin("person"),44;case 24:return this.begin("system_ext_queue"),51;case 25:return this.begin("system_ext_db"),50;case 26:return this.begin("system_ext"),49;case 27:return this.begin("system_queue"),48;case 28:return this.begin("system_db"),47;case 29:return this.begin("system"),46;case 30:return this.begin("boundary"),37;case 31:return this.begin("enterprise_boundary"),34;case 32:return this.begin("system_boundary"),36;case 33:return this.begin("container_ext_queue"),57;case 34:return this.begin("container_ext_db"),56;case 35:return this.begin("container_ext"),55;case 36:return this.begin("container_queue"),54;case 37:return this.begin("container_db"),53;case 38:return this.begin("container"),52;case 39:return this.begin("container_boundary"),38;case 40:return this.begin("component_ext_queue"),63;case 41:return this.begin("component_ext_db"),62;case 42:return this.begin("component_ext"),61;case 43:return this.begin("component_queue"),60;case 44:return this.begin("component_db"),59;case 45:return this.begin("component"),58;case 46:return this.begin("node"),39;case 47:return this.begin("node"),39;case 48:return this.begin("node_l"),40;case 49:return this.begin("node_r"),41;case 50:return this.begin("rel"),64;case 51:return this.begin("birel"),65;case 52:return this.begin("rel_u"),66;case 53:return this.begin("rel_u"),66;case 54:return this.begin("rel_d"),67;case 55:return this.begin("rel_d"),67;case 56:return this.begin("rel_l"),68;case 57:return this.begin("rel_l"),68;case 58:return this.begin("rel_r"),69;case 59:return this.begin("rel_r"),69;case 60:return this.begin("rel_b"),70;case 61:return this.begin("rel_index"),71;case 62:return this.begin("update_el_style"),72;case 63:return this.begin("update_rel_style"),73;case 64:return this.begin("update_layout_config"),74;case 65:return"EOF_IN_STRUCT";case 66:return this.begin("attribute"),"ATTRIBUTE_EMPTY";case 67:this.begin("attribute");break;case 68:this.popState(),this.popState();break;case 69:return 80;case 70:break;case 71:return 80;case 72:this.begin("string");break;case 73:this.popState();break;case 74:return"STR";case 75:this.begin("string_kv");break;case 76:return this.begin("string_kv_key"),"STR_KEY";case 77:this.popState(),this.begin("string_kv_value");break;case 78:return"STR_VALUE";case 79:this.popState(),this.popState();break;case 80:return"STR";case 81:return"LBRACE";case 82:return"RBRACE";case 83:return"SPACE";case 84:return"EOL";case 85:return 14}},"anonymous"),rules:[/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:title\s[^#\n;]+)/,/^(?:accDescription\s[^#\n;]+)/,/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,/^(?:%%[^\n]*(\r?\n)*)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:C4Context\b)/,/^(?:C4Container\b)/,/^(?:C4Component\b)/,/^(?:C4Dynamic\b)/,/^(?:C4Deployment\b)/,/^(?:Person_Ext\b)/,/^(?:Person\b)/,/^(?:SystemQueue_Ext\b)/,/^(?:SystemDb_Ext\b)/,/^(?:System_Ext\b)/,/^(?:SystemQueue\b)/,/^(?:SystemDb\b)/,/^(?:System\b)/,/^(?:Boundary\b)/,/^(?:Enterprise_Boundary\b)/,/^(?:System_Boundary\b)/,/^(?:ContainerQueue_Ext\b)/,/^(?:ContainerDb_Ext\b)/,/^(?:Container_Ext\b)/,/^(?:ContainerQueue\b)/,/^(?:ContainerDb\b)/,/^(?:Container\b)/,/^(?:Container_Boundary\b)/,/^(?:ComponentQueue_Ext\b)/,/^(?:ComponentDb_Ext\b)/,/^(?:Component_Ext\b)/,/^(?:ComponentQueue\b)/,/^(?:ComponentDb\b)/,/^(?:Component\b)/,/^(?:Deployment_Node\b)/,/^(?:Node\b)/,/^(?:Node_L\b)/,/^(?:Node_R\b)/,/^(?:Rel\b)/,/^(?:BiRel\b)/,/^(?:Rel_Up\b)/,/^(?:Rel_U\b)/,/^(?:Rel_Down\b)/,/^(?:Rel_D\b)/,/^(?:Rel_Left\b)/,/^(?:Rel_L\b)/,/^(?:Rel_Right\b)/,/^(?:Rel_R\b)/,/^(?:Rel_Back\b)/,/^(?:RelIndex\b)/,/^(?:UpdateElementStyle\b)/,/^(?:UpdateRelStyle\b)/,/^(?:UpdateLayoutConfig\b)/,/^(?:$)/,/^(?:[(][ ]*[,])/,/^(?:[(])/,/^(?:[)])/,/^(?:,,)/,/^(?:,)/,/^(?:[ ]*["]["])/,/^(?:[ ]*["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:[ ]*[\$])/,/^(?:[^=]*)/,/^(?:[=][ ]*["])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:[^,]+)/,/^(?:\{)/,/^(?:\})/,/^(?:[\s]+)/,/^(?:[\n\r]+)/,/^(?:$)/],conditions:{acc_descr_multiline:{rules:[11,12],inclusive:!1},acc_descr:{rules:[9],inclusive:!1},acc_title:{rules:[7],inclusive:!1},string_kv_value:{rules:[78,79],inclusive:!1},string_kv_key:{rules:[77],inclusive:!1},string_kv:{rules:[76],inclusive:!1},string:{rules:[73,74],inclusive:!1},attribute:{rules:[68,69,70,71,72,75,80],inclusive:!1},update_layout_config:{rules:[65,66,67,68],inclusive:!1},update_rel_style:{rules:[65,66,67,68],inclusive:!1},update_el_style:{rules:[65,66,67,68],inclusive:!1},rel_b:{rules:[65,66,67,68],inclusive:!1},rel_r:{rules:[65,66,67,68],inclusive:!1},rel_l:{rules:[65,66,67,68],inclusive:!1},rel_d:{rules:[65,66,67,68],inclusive:!1},rel_u:{rules:[65,66,67,68],inclusive:!1},rel_bi:{rules:[],inclusive:!1},rel:{rules:[65,66,67,68],inclusive:!1},node_r:{rules:[65,66,67,68],inclusive:!1},node_l:{rules:[65,66,67,68],inclusive:!1},node:{rules:[65,66,67,68],inclusive:!1},index:{rules:[],inclusive:!1},rel_index:{rules:[65,66,67,68],inclusive:!1},component_ext_queue:{rules:[],inclusive:!1},component_ext_db:{rules:[65,66,67,68],inclusive:!1},component_ext:{rules:[65,66,67,68],inclusive:!1},component_queue:{rules:[65,66,67,68],inclusive:!1},component_db:{rules:[65,66,67,68],inclusive:!1},component:{rules:[65,66,67,68],inclusive:!1},container_boundary:{rules:[65,66,67,68],inclusive:!1},container_ext_queue:{rules:[65,66,67,68],inclusive:!1},container_ext_db:{rules:[65,66,67,68],inclusive:!1},container_ext:{rules:[65,66,67,68],inclusive:!1},container_queue:{rules:[65,66,67,68],inclusive:!1},container_db:{rules:[65,66,67,68],inclusive:!1},container:{rules:[65,66,67,68],inclusive:!1},birel:{rules:[65,66,67,68],inclusive:!1},system_boundary:{rules:[65,66,67,68],inclusive:!1},enterprise_boundary:{rules:[65,66,67,68],inclusive:!1},boundary:{rules:[65,66,67,68],inclusive:!1},system_ext_queue:{rules:[65,66,67,68],inclusive:!1},system_ext_db:{rules:[65,66,67,68],inclusive:!1},system_ext:{rules:[65,66,67,68],inclusive:!1},system_queue:{rules:[65,66,67,68],inclusive:!1},system_db:{rules:[65,66,67,68],inclusive:!1},system:{rules:[65,66,67,68],inclusive:!1},person_ext:{rules:[65,66,67,68],inclusive:!1},person:{rules:[65,66,67,68],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,8,10,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,81,82,83,84,85],inclusive:!0}}};return Ft}();ot.lexer=sn;function Kt(){this.yy={}}return X(Kt,"Parser"),Kt.prototype=ot,ot.Parser=Kt,new Kt}();J3e.parser=J3e;var p9i=J3e,cT=[],DO=[""],rv="global",J3="",wA=[{alias:"global",label:{text:"global"},type:{text:"global"},tags:null,link:null,parentBoundary:""}],Qoe=[],$gt="",Ugt=!1,eTe=4,tTe=2,iYn,g9i=X(function(){return iYn},"getC4Type"),m9i=X(function(e){iYn=Ic(e,nn())},"setC4Type"),b9i=X(function(e,t,r,a,s,o,u,h,f){if(e==null||t===void 0||t===null||r===void 0||r===null||a===void 0||a===null)return;let p={};const m=Qoe.find(b=>b.from===t&&b.to===r);if(m?p=m:Qoe.push(p),p.type=e,p.from=t,p.to=r,p.label={text:a},s==null)p.techn={text:""};else if(typeof s=="object"){let[b,_]=Object.entries(s)[0];p[b]={text:_}}else p.techn={text:s};if(o==null)p.descr={text:""};else if(typeof o=="object"){let[b,_]=Object.entries(o)[0];p[b]={text:_}}else p.descr={text:o};if(typeof u=="object"){let[b,_]=Object.entries(u)[0];p[b]=_}else p.sprite=u;if(typeof h=="object"){let[b,_]=Object.entries(h)[0];p[b]=_}else p.tags=h;if(typeof f=="object"){let[b,_]=Object.entries(f)[0];p[b]=_}else p.link=f;p.wrap=X9()},"addRel"),y9i=X(function(e,t,r,a,s,o,u){if(t===null||r===null)return;let h={};const f=cT.find(p=>p.alias===t);if(f&&t===f.alias?h=f:(h.alias=t,cT.push(h)),r==null?h.label={text:""}:h.label={text:r},a==null)h.descr={text:""};else if(typeof a=="object"){let[p,m]=Object.entries(a)[0];h[p]={text:m}}else h.descr={text:a};if(typeof s=="object"){let[p,m]=Object.entries(s)[0];h[p]=m}else h.sprite=s;if(typeof o=="object"){let[p,m]=Object.entries(o)[0];h[p]=m}else h.tags=o;if(typeof u=="object"){let[p,m]=Object.entries(u)[0];h[p]=m}else h.link=u;h.typeC4Shape={text:e},h.parentBoundary=rv,h.wrap=X9()},"addPersonOrSystem"),v9i=X(function(e,t,r,a,s,o,u,h){if(t===null||r===null)return;let f={};const p=cT.find(m=>m.alias===t);if(p&&t===p.alias?f=p:(f.alias=t,cT.push(f)),r==null?f.label={text:""}:f.label={text:r},a==null)f.techn={text:""};else if(typeof a=="object"){let[m,b]=Object.entries(a)[0];f[m]={text:b}}else f.techn={text:a};if(s==null)f.descr={text:""};else if(typeof s=="object"){let[m,b]=Object.entries(s)[0];f[m]={text:b}}else f.descr={text:s};if(typeof o=="object"){let[m,b]=Object.entries(o)[0];f[m]=b}else f.sprite=o;if(typeof u=="object"){let[m,b]=Object.entries(u)[0];f[m]=b}else f.tags=u;if(typeof h=="object"){let[m,b]=Object.entries(h)[0];f[m]=b}else f.link=h;f.wrap=X9(),f.typeC4Shape={text:e},f.parentBoundary=rv},"addContainer"),_9i=X(function(e,t,r,a,s,o,u,h){if(t===null||r===null)return;let f={};const p=cT.find(m=>m.alias===t);if(p&&t===p.alias?f=p:(f.alias=t,cT.push(f)),r==null?f.label={text:""}:f.label={text:r},a==null)f.techn={text:""};else if(typeof a=="object"){let[m,b]=Object.entries(a)[0];f[m]={text:b}}else f.techn={text:a};if(s==null)f.descr={text:""};else if(typeof s=="object"){let[m,b]=Object.entries(s)[0];f[m]={text:b}}else f.descr={text:s};if(typeof o=="object"){let[m,b]=Object.entries(o)[0];f[m]=b}else f.sprite=o;if(typeof u=="object"){let[m,b]=Object.entries(u)[0];f[m]=b}else f.tags=u;if(typeof h=="object"){let[m,b]=Object.entries(h)[0];f[m]=b}else f.link=h;f.wrap=X9(),f.typeC4Shape={text:e},f.parentBoundary=rv},"addComponent"),w9i=X(function(e,t,r,a,s){if(e===null||t===null)return;let o={};const u=wA.find(h=>h.alias===e);if(u&&e===u.alias?o=u:(o.alias=e,wA.push(o)),t==null?o.label={text:""}:o.label={text:t},r==null)o.type={text:"system"};else if(typeof r=="object"){let[h,f]=Object.entries(r)[0];o[h]={text:f}}else o.type={text:r};if(typeof a=="object"){let[h,f]=Object.entries(a)[0];o[h]=f}else o.tags=a;if(typeof s=="object"){let[h,f]=Object.entries(s)[0];o[h]=f}else o.link=s;o.parentBoundary=rv,o.wrap=X9(),J3=rv,rv=e,DO.push(J3)},"addPersonOrSystemBoundary"),E9i=X(function(e,t,r,a,s){if(e===null||t===null)return;let o={};const u=wA.find(h=>h.alias===e);if(u&&e===u.alias?o=u:(o.alias=e,wA.push(o)),t==null?o.label={text:""}:o.label={text:t},r==null)o.type={text:"container"};else if(typeof r=="object"){let[h,f]=Object.entries(r)[0];o[h]={text:f}}else o.type={text:r};if(typeof a=="object"){let[h,f]=Object.entries(a)[0];o[h]=f}else o.tags=a;if(typeof s=="object"){let[h,f]=Object.entries(s)[0];o[h]=f}else o.link=s;o.parentBoundary=rv,o.wrap=X9(),J3=rv,rv=e,DO.push(J3)},"addContainerBoundary"),x9i=X(function(e,t,r,a,s,o,u,h){if(t===null||r===null)return;let f={};const p=wA.find(m=>m.alias===t);if(p&&t===p.alias?f=p:(f.alias=t,wA.push(f)),r==null?f.label={text:""}:f.label={text:r},a==null)f.type={text:"node"};else if(typeof a=="object"){let[m,b]=Object.entries(a)[0];f[m]={text:b}}else f.type={text:a};if(s==null)f.descr={text:""};else if(typeof s=="object"){let[m,b]=Object.entries(s)[0];f[m]={text:b}}else f.descr={text:s};if(typeof u=="object"){let[m,b]=Object.entries(u)[0];f[m]=b}else f.tags=u;if(typeof h=="object"){let[m,b]=Object.entries(h)[0];f[m]=b}else f.link=h;f.nodeType=e,f.parentBoundary=rv,f.wrap=X9(),J3=rv,rv=t,DO.push(J3)},"addDeploymentNode"),S9i=X(function(){rv=J3,DO.pop(),J3=DO.pop(),DO.push(J3)},"popBoundaryParseStack"),T9i=X(function(e,t,r,a,s,o,u,h,f,p,m){let b=cT.find(_=>_.alias===t);if(!(b===void 0&&(b=wA.find(_=>_.alias===t),b===void 0))){if(r!=null)if(typeof r=="object"){let[_,w]=Object.entries(r)[0];b[_]=w}else b.bgColor=r;if(a!=null)if(typeof a=="object"){let[_,w]=Object.entries(a)[0];b[_]=w}else b.fontColor=a;if(s!=null)if(typeof s=="object"){let[_,w]=Object.entries(s)[0];b[_]=w}else b.borderColor=s;if(o!=null)if(typeof o=="object"){let[_,w]=Object.entries(o)[0];b[_]=w}else b.shadowing=o;if(u!=null)if(typeof u=="object"){let[_,w]=Object.entries(u)[0];b[_]=w}else b.shape=u;if(h!=null)if(typeof h=="object"){let[_,w]=Object.entries(h)[0];b[_]=w}else b.sprite=h;if(f!=null)if(typeof f=="object"){let[_,w]=Object.entries(f)[0];b[_]=w}else b.techn=f;if(p!=null)if(typeof p=="object"){let[_,w]=Object.entries(p)[0];b[_]=w}else b.legendText=p;if(m!=null)if(typeof m=="object"){let[_,w]=Object.entries(m)[0];b[_]=w}else b.legendSprite=m}},"updateElStyle"),C9i=X(function(e,t,r,a,s,o,u){const h=Qoe.find(f=>f.from===t&&f.to===r);if(h!==void 0){if(a!=null)if(typeof a=="object"){let[f,p]=Object.entries(a)[0];h[f]=p}else h.textColor=a;if(s!=null)if(typeof s=="object"){let[f,p]=Object.entries(s)[0];h[f]=p}else h.lineColor=s;if(o!=null)if(typeof o=="object"){let[f,p]=Object.entries(o)[0];h[f]=parseInt(p)}else h.offsetX=parseInt(o);if(u!=null)if(typeof u=="object"){let[f,p]=Object.entries(u)[0];h[f]=parseInt(p)}else h.offsetY=parseInt(u)}},"updateRelStyle"),A9i=X(function(e,t,r){let a=eTe,s=tTe;if(typeof t=="object"){const o=Object.values(t)[0];a=parseInt(o)}else a=parseInt(t);if(typeof r=="object"){const o=Object.values(r)[0];s=parseInt(o)}else s=parseInt(r);a>=1&&(eTe=a),s>=1&&(tTe=s)},"updateLayoutConfig"),k9i=X(function(){return eTe},"getC4ShapeInRow"),R9i=X(function(){return tTe},"getC4BoundaryInRow"),I9i=X(function(){return rv},"getCurrentBoundaryParse"),N9i=X(function(){return J3},"getParentBoundaryParse"),aYn=X(function(e){return e==null?cT:cT.filter(t=>t.parentBoundary===e)},"getC4ShapeArray"),O9i=X(function(e){return cT.find(t=>t.alias===e)},"getC4Shape"),L9i=X(function(e){return Object.keys(aYn(e))},"getC4ShapeKeys"),sYn=X(function(e){return e==null?wA:wA.filter(t=>t.parentBoundary===e)},"getBoundaries"),D9i=sYn,M9i=X(function(){return Qoe},"getRels"),P9i=X(function(){return $gt},"getTitle"),B9i=X(function(e){Ugt=e},"setWrap"),X9=X(function(){return Ugt},"autoWrap"),F9i=X(function(){cT=[],wA=[{alias:"global",label:{text:"global"},type:{text:"global"},tags:null,link:null,parentBoundary:""}],J3="",rv="global",DO=[""],Qoe=[],DO=[""],$gt="",Ugt=!1,eTe=4,tTe=2},"clear"),$9i={SOLID:0,DOTTED:1,NOTE:2,SOLID_CROSS:3,DOTTED_CROSS:4,SOLID_OPEN:5,DOTTED_OPEN:6,LOOP_START:10,LOOP_END:11,ALT_START:12,ALT_ELSE:13,ALT_END:14,OPT_START:15,OPT_END:16,ACTIVE_START:17,ACTIVE_END:18,PAR_START:19,PAR_AND:20,PAR_END:21,RECT_START:22,RECT_END:23,SOLID_POINT:24,DOTTED_POINT:25},U9i={FILLED:0,OPEN:1},z9i={LEFTOF:0,RIGHTOF:1,OVER:2},G9i=X(function(e){$gt=Ic(e,nn())},"setTitle"),wct={addPersonOrSystem:y9i,addPersonOrSystemBoundary:w9i,addContainer:v9i,addContainerBoundary:E9i,addComponent:_9i,addDeploymentNode:x9i,popBoundaryParseStack:S9i,addRel:b9i,updateElStyle:T9i,updateRelStyle:C9i,updateLayoutConfig:A9i,autoWrap:X9,setWrap:B9i,getC4ShapeArray:aYn,getC4Shape:O9i,getC4ShapeKeys:L9i,getBoundaries:sYn,getBoundarys:D9i,getCurrentBoundaryParse:I9i,getParentBoundaryParse:N9i,getRels:M9i,getTitle:P9i,getC4Type:g9i,getC4ShapeInRow:k9i,getC4BoundaryInRow:R9i,setAccTitle:N1,getAccTitle:Mp,getAccDescription:Bp,setAccDescription:Pp,getConfig:X(()=>nn().c4,"getConfig"),clear:F9i,LINETYPE:$9i,ARROWTYPE:U9i,PLACEMENT:z9i,setTitle:G9i,setC4Type:m9i},zgt=X(function(e,t){return vke(e,t)},"drawRect"),oYn=X(function(e,t,r,a,s,o){const u=e.append("image");u.attr("width",t),u.attr("height",r),u.attr("x",a),u.attr("y",s);let h=o.startsWith("data:image/png;base64")?o:M9(o);u.attr("xlink:href",h)},"drawImage"),q9i=X((e,t,r)=>{const a=e.append("g");let s=0;for(let o of t){let u=o.textColor?o.textColor:"#444444",h=o.lineColor?o.lineColor:"#444444",f=o.offsetX?parseInt(o.offsetX):0,p=o.offsetY?parseInt(o.offsetY):0,m="";if(s===0){let _=a.append("line");_.attr("x1",o.startPoint.x),_.attr("y1",o.startPoint.y),_.attr("x2",o.endPoint.x),_.attr("y2",o.endPoint.y),_.attr("stroke-width","1"),_.attr("stroke",h),_.style("fill","none"),o.type!=="rel_b"&&_.attr("marker-end","url("+m+"#arrowhead)"),(o.type==="birel"||o.type==="rel_b")&&_.attr("marker-start","url("+m+"#arrowend)"),s=-1}else{let _=a.append("path");_.attr("fill","none").attr("stroke-width","1").attr("stroke",h).attr("d","Mstartx,starty Qcontrolx,controly stopx,stopy ".replaceAll("startx",o.startPoint.x).replaceAll("starty",o.startPoint.y).replaceAll("controlx",o.startPoint.x+(o.endPoint.x-o.startPoint.x)/2-(o.endPoint.x-o.startPoint.x)/4).replaceAll("controly",o.startPoint.y+(o.endPoint.y-o.startPoint.y)/2).replaceAll("stopx",o.endPoint.x).replaceAll("stopy",o.endPoint.y)),o.type!=="rel_b"&&_.attr("marker-end","url("+m+"#arrowhead)"),(o.type==="birel"||o.type==="rel_b")&&_.attr("marker-start","url("+m+"#arrowend)")}let b=r.messageFont();R7(r)(o.label.text,a,Math.min(o.startPoint.x,o.endPoint.x)+Math.abs(o.endPoint.x-o.startPoint.x)/2+f,Math.min(o.startPoint.y,o.endPoint.y)+Math.abs(o.endPoint.y-o.startPoint.y)/2+p,o.label.width,o.label.height,{fill:u},b),o.techn&&o.techn.text!==""&&(b=r.messageFont(),R7(r)("["+o.techn.text+"]",a,Math.min(o.startPoint.x,o.endPoint.x)+Math.abs(o.endPoint.x-o.startPoint.x)/2+f,Math.min(o.startPoint.y,o.endPoint.y)+Math.abs(o.endPoint.y-o.startPoint.y)/2+r.messageFontSize+5+p,Math.max(o.label.width,o.techn.width),o.techn.height,{fill:u,"font-style":"italic"},b))}},"drawRels"),H9i=X(function(e,t,r){const a=e.append("g");let s=t.bgColor?t.bgColor:"none",o=t.borderColor?t.borderColor:"#444444",u=t.fontColor?t.fontColor:"black",h={"stroke-width":1,"stroke-dasharray":"7.0,7.0"};t.nodeType&&(h={"stroke-width":1});let f={x:t.x,y:t.y,fill:s,stroke:o,width:t.width,height:t.height,rx:2.5,ry:2.5,attrs:h};zgt(a,f);let p=r.boundaryFont();p.fontWeight="bold",p.fontSize=p.fontSize+2,p.fontColor=u,R7(r)(t.label.text,a,t.x,t.y+t.label.Y,t.width,t.height,{fill:"#444444"},p),t.type&&t.type.text!==""&&(p=r.boundaryFont(),p.fontColor=u,R7(r)(t.type.text,a,t.x,t.y+t.type.Y,t.width,t.height,{fill:"#444444"},p)),t.descr&&t.descr.text!==""&&(p=r.boundaryFont(),p.fontSize=p.fontSize-2,p.fontColor=u,R7(r)(t.descr.text,a,t.x,t.y+t.descr.Y,t.width,t.height,{fill:"#444444"},p))},"drawBoundary"),V9i=X(function(e,t,r){var b;let a=t.bgColor?t.bgColor:r[t.typeC4Shape.text+"_bg_color"],s=t.borderColor?t.borderColor:r[t.typeC4Shape.text+"_border_color"],o=t.fontColor?t.fontColor:"#FFFFFF",u="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAACD0lEQVR4Xu2YoU4EMRCGT+4j8Ai8AhaH4QHgAUjQuFMECUgMIUgwJAgMhgQsAYUiJCiQIBBY+EITsjfTdme6V24v4c8vyGbb+ZjOtN0bNcvjQXmkH83WvYBWto6PLm6v7p7uH1/w2fXD+PBycX1Pv2l3IdDm/vn7x+dXQiAubRzoURa7gRZWd0iGRIiJbOnhnfYBQZNJjNbuyY2eJG8fkDE3bbG4ep6MHUAsgYxmE3nVs6VsBWJSGccsOlFPmLIViMzLOB7pCVO2AtHJMohH7Fh6zqitQK7m0rJvAVYgGcEpe//PLdDz65sM4pF9N7ICcXDKIB5Nv6j7tD0NoSdM2QrU9Gg0ewE1LqBhHR3BBdvj2vapnidjHxD/q6vd7Pvhr31AwcY8eXMTXAKECZZJFXuEq27aLgQK5uLMohCenGGuGewOxSjBvYBqeG6B+Nqiblggdjnc+ZXDy+FNFpFzw76O3UBAROuXh6FoiAcf5g9eTvUgzy0nWg6I8cXHRUpg5bOVBCo+KDpFajOf23GgPme7RSQ+lacIENUgJ6gg1k6HjgOlqnLqip4tEuhv0hNEMXUD0clyXE3p6pZA0S2nnvTlXwLJEZWlb7cTQH1+USgTN4VhAenm/wea1OCAOmqo6fE1WCb9WSKBah+rbUWPWAmE2Rvk0ApiB45eOyNAzU8xcTvj8KvkKEoOaIYeHNA3ZuygAvFMUO0AAAAASUVORK5CYII=";switch(t.typeC4Shape.text){case"person":u="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAACD0lEQVR4Xu2YoU4EMRCGT+4j8Ai8AhaH4QHgAUjQuFMECUgMIUgwJAgMhgQsAYUiJCiQIBBY+EITsjfTdme6V24v4c8vyGbb+ZjOtN0bNcvjQXmkH83WvYBWto6PLm6v7p7uH1/w2fXD+PBycX1Pv2l3IdDm/vn7x+dXQiAubRzoURa7gRZWd0iGRIiJbOnhnfYBQZNJjNbuyY2eJG8fkDE3bbG4ep6MHUAsgYxmE3nVs6VsBWJSGccsOlFPmLIViMzLOB7pCVO2AtHJMohH7Fh6zqitQK7m0rJvAVYgGcEpe//PLdDz65sM4pF9N7ICcXDKIB5Nv6j7tD0NoSdM2QrU9Gg0ewE1LqBhHR3BBdvj2vapnidjHxD/q6vd7Pvhr31AwcY8eXMTXAKECZZJFXuEq27aLgQK5uLMohCenGGuGewOxSjBvYBqeG6B+Nqiblggdjnc+ZXDy+FNFpFzw76O3UBAROuXh6FoiAcf5g9eTvUgzy0nWg6I8cXHRUpg5bOVBCo+KDpFajOf23GgPme7RSQ+lacIENUgJ6gg1k6HjgOlqnLqip4tEuhv0hNEMXUD0clyXE3p6pZA0S2nnvTlXwLJEZWlb7cTQH1+USgTN4VhAenm/wea1OCAOmqo6fE1WCb9WSKBah+rbUWPWAmE2Rvk0ApiB45eOyNAzU8xcTvj8KvkKEoOaIYeHNA3ZuygAvFMUO0AAAAASUVORK5CYII=";break;case"external_person":u="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAAB6ElEQVR4Xu2YLY+EMBCG9+dWr0aj0Wg0Go1Go0+j8Xdv2uTCvv1gpt0ebHKPuhDaeW4605Z9mJvx4AdXUyTUdd08z+u6flmWZRnHsWkafk9DptAwDPu+f0eAYtu2PEaGWuj5fCIZrBAC2eLBAnRCsEkkxmeaJp7iDJ2QMDdHsLg8SxKFEJaAo8lAXnmuOFIhTMpxxKATebo4UiFknuNo4OniSIXQyRxEA3YsnjGCVEjVXD7yLUAqxBGUyPv/Y4W2beMgGuS7kVQIBycH0fD+oi5pezQETxdHKmQKGk1eQEYldK+jw5GxPfZ9z7Mk0Qnhf1W1m3w//EUn5BDmSZsbR44QQLBEqrBHqOrmSKaQAxdnLArCrxZcM7A7ZKs4ioRq8LFC+NpC3WCBJsvpVw5edm9iEXFuyNfxXAgSwfrFQ1c0iNda8AdejvUgnktOtJQQxmcfFzGglc5WVCj7oDgFqU18boeFSs52CUh8LE8BIVQDT1ABrB0HtgSEYlX5doJnCwv9TXocKCaKbnwhdDKPq4lf3SwU3HLq4V/+WYhHVMa/3b4IlfyikAduCkcBc7mQ3/z/Qq/cTuikhkzB12Ae/mcJC9U+Vo8Ej1gWAtgbeGgFsAMHr50BIWOLCbezvhpBFUdY6EJuJ/QDW0XoMX60zZ0AAAAASUVORK5CYII=";break}const h=e.append("g");h.attr("class","person-man");const f=Ww();switch(t.typeC4Shape.text){case"person":case"external_person":case"system":case"external_system":case"container":case"external_container":case"component":case"external_component":f.x=t.x,f.y=t.y,f.fill=a,f.width=t.width,f.height=t.height,f.stroke=s,f.rx=2.5,f.ry=2.5,f.attrs={"stroke-width":.5},zgt(h,f);break;case"system_db":case"external_system_db":case"container_db":case"external_container_db":case"component_db":case"external_component_db":h.append("path").attr("fill",a).attr("stroke-width","0.5").attr("stroke",s).attr("d","Mstartx,startyc0,-10 half,-10 half,-10c0,0 half,0 half,10l0,heightc0,10 -half,10 -half,10c0,0 -half,0 -half,-10l0,-height".replaceAll("startx",t.x).replaceAll("starty",t.y).replaceAll("half",t.width/2).replaceAll("height",t.height)),h.append("path").attr("fill","none").attr("stroke-width","0.5").attr("stroke",s).attr("d","Mstartx,startyc0,10 half,10 half,10c0,0 half,0 half,-10".replaceAll("startx",t.x).replaceAll("starty",t.y).replaceAll("half",t.width/2));break;case"system_queue":case"external_system_queue":case"container_queue":case"external_container_queue":case"component_queue":case"external_component_queue":h.append("path").attr("fill",a).attr("stroke-width","0.5").attr("stroke",s).attr("d","Mstartx,startylwidth,0c5,0 5,half 5,halfc0,0 0,half -5,halfl-width,0c-5,0 -5,-half -5,-halfc0,0 0,-half 5,-half".replaceAll("startx",t.x).replaceAll("starty",t.y).replaceAll("width",t.width).replaceAll("half",t.height/2)),h.append("path").attr("fill","none").attr("stroke-width","0.5").attr("stroke",s).attr("d","Mstartx,startyc-5,0 -5,half -5,halfc0,half 5,half 5,half".replaceAll("startx",t.x+t.width).replaceAll("starty",t.y).replaceAll("half",t.height/2));break}let p=eLi(r,t.typeC4Shape.text);switch(h.append("text").attr("fill",o).attr("font-family",p.fontFamily).attr("font-size",p.fontSize-2).attr("font-style","italic").attr("lengthAdjust","spacing").attr("textLength",t.typeC4Shape.width).attr("x",t.x+t.width/2-t.typeC4Shape.width/2).attr("y",t.y+t.typeC4Shape.Y).text("<<"+t.typeC4Shape.text+">>"),t.typeC4Shape.text){case"person":case"external_person":oYn(h,48,48,t.x+t.width/2-24,t.y+t.image.Y,u);break}let m=r[t.typeC4Shape.text+"Font"]();return m.fontWeight="bold",m.fontSize=m.fontSize+2,m.fontColor=o,R7(r)(t.label.text,h,t.x,t.y+t.label.Y,t.width,t.height,{fill:o},m),m=r[t.typeC4Shape.text+"Font"](),m.fontColor=o,t.techn&&((b=t.techn)==null?void 0:b.text)!==""?R7(r)(t.techn.text,h,t.x,t.y+t.techn.Y,t.width,t.height,{fill:o,"font-style":"italic"},m):t.type&&t.type.text!==""&&R7(r)(t.type.text,h,t.x,t.y+t.type.Y,t.width,t.height,{fill:o,"font-style":"italic"},m),t.descr&&t.descr.text!==""&&(m=r.personFont(),m.fontColor=o,R7(r)(t.descr.text,h,t.x,t.y+t.descr.Y,t.width,t.height,{fill:o},m)),t.height},"drawC4Shape"),Y9i=X(function(e){e.append("defs").append("symbol").attr("id","database").attr("fill-rule","evenodd").attr("clip-rule","evenodd").append("path").attr("transform","scale(.5)").attr("d","M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z")},"insertDatabaseIcon"),j9i=X(function(e){e.append("defs").append("symbol").attr("id","computer").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z")},"insertComputerIcon"),W9i=X(function(e){e.append("defs").append("symbol").attr("id","clock").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z")},"insertClockIcon"),K9i=X(function(e){e.append("defs").append("marker").attr("id","arrowhead").attr("refX",9).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 0 0 L 10 5 L 0 10 z")},"insertArrowHead"),X9i=X(function(e){e.append("defs").append("marker").attr("id","arrowend").attr("refX",1).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 10 0 L 0 5 L 10 10 z")},"insertArrowEnd"),Q9i=X(function(e){e.append("defs").append("marker").attr("id","filled-head").attr("refX",18).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")},"insertArrowFilledHead"),Z9i=X(function(e){e.append("defs").append("marker").attr("id","sequencenumber").attr("refX",15).attr("refY",15).attr("markerWidth",60).attr("markerHeight",40).attr("orient","auto").append("circle").attr("cx",15).attr("cy",15).attr("r",6)},"insertDynamicNumber"),J9i=X(function(e){const r=e.append("defs").append("marker").attr("id","crosshead").attr("markerWidth",15).attr("markerHeight",8).attr("orient","auto").attr("refX",16).attr("refY",4);r.append("path").attr("fill","black").attr("stroke","#000000").style("stroke-dasharray","0, 0").attr("stroke-width","1px").attr("d","M 9,2 V 6 L16,4 Z"),r.append("path").attr("fill","none").attr("stroke","#000000").style("stroke-dasharray","0, 0").attr("stroke-width","1px").attr("d","M 0,1 L 6,7 M 6,1 L 0,7")},"insertArrowCrossHead"),eLi=X((e,t)=>({fontFamily:e[t+"FontFamily"],fontSize:e[t+"FontSize"],fontWeight:e[t+"FontWeight"]}),"getC4ShapeFont"),R7=function(){function e(s,o,u,h,f,p,m){const b=o.append("text").attr("x",u+f/2).attr("y",h+p/2+5).style("text-anchor","middle").text(s);a(b,m)}X(e,"byText");function t(s,o,u,h,f,p,m,b){const{fontSize:_,fontFamily:w,fontWeight:S}=b,C=s.split(Ti.lineBreakRegex);for(let A=0;A=this.data.widthLimit||a>=this.data.widthLimit||this.nextData.cnt>lYn)&&(r=this.nextData.startx+t.margin+ls.nextLinePaddingX,s=this.nextData.stopy+t.margin*2,this.nextData.stopx=a=r+t.width,this.nextData.starty=this.nextData.stopy,this.nextData.stopy=o=s+t.height,this.nextData.cnt=1),t.x=r,t.y=s,this.updateVal(this.data,"startx",r,Math.min),this.updateVal(this.data,"starty",s,Math.min),this.updateVal(this.data,"stopx",a,Math.max),this.updateVal(this.data,"stopy",o,Math.max),this.updateVal(this.nextData,"startx",r,Math.min),this.updateVal(this.nextData,"starty",s,Math.min),this.updateVal(this.nextData,"stopx",a,Math.max),this.updateVal(this.nextData,"stopy",o,Math.max)}init(t){this.name="",this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0,widthLimit:void 0},this.nextData={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0,cnt:0},xct(t.db.getConfig())}bumpLastMargin(t){this.data.stopx+=t,this.data.stopy+=t}},X(EY,"Bounds"),EY),xct=X(function(e){W0(ls,e),e.fontFamily&&(ls.personFontFamily=ls.systemFontFamily=ls.messageFontFamily=e.fontFamily),e.fontSize&&(ls.personFontSize=ls.systemFontSize=ls.messageFontSize=e.fontSize),e.fontWeight&&(ls.personFontWeight=ls.systemFontWeight=ls.messageFontWeight=e.fontWeight)},"setConf"),oie=X((e,t)=>({fontFamily:e[t+"FontFamily"],fontSize:e[t+"FontSize"],fontWeight:e[t+"FontWeight"]}),"c4ShapeFont"),Nxe=X(e=>({fontFamily:e.boundaryFontFamily,fontSize:e.boundaryFontSize,fontWeight:e.boundaryFontWeight}),"boundaryFont"),tLi=X(e=>({fontFamily:e.messageFontFamily,fontSize:e.messageFontSize,fontWeight:e.messageFontWeight}),"messageFont");function lS(e,t,r,a,s){if(!t[e].width)if(r)t[e].text=nBn(t[e].text,s,a),t[e].textLines=t[e].text.split(Ti.lineBreakRegex).length,t[e].width=s,t[e].height=D4e(t[e].text,a);else{let o=t[e].text.split(Ti.lineBreakRegex);t[e].textLines=o.length;let u=0;t[e].height=0,t[e].width=0;for(const h of o)t[e].width=Math.max(nv(h,a),t[e].width),u=D4e(h,a),t[e].height=t[e].height+u}}X(lS,"calcC4ShapeTextWH");var uYn=X(function(e,t,r){t.x=r.data.startx,t.y=r.data.starty,t.width=r.data.stopx-r.data.startx,t.height=r.data.stopy-r.data.starty,t.label.y=ls.c4ShapeMargin-35;let a=t.wrap&&ls.wrap,s=Nxe(ls);s.fontSize=s.fontSize+2,s.fontWeight="bold";let o=nv(t.label.text,s);lS("label",t,a,s,o),NC.drawBoundary(e,t,ls)},"drawBoundary"),hYn=X(function(e,t,r,a){let s=0;for(const o of a){s=0;const u=r[o];let h=oie(ls,u.typeC4Shape.text);switch(h.fontSize=h.fontSize-2,u.typeC4Shape.width=nv("«"+u.typeC4Shape.text+"»",h),u.typeC4Shape.height=h.fontSize+2,u.typeC4Shape.Y=ls.c4ShapePadding,s=u.typeC4Shape.Y+u.typeC4Shape.height-4,u.image={width:0,height:0,Y:0},u.typeC4Shape.text){case"person":case"external_person":u.image.width=48,u.image.height=48,u.image.Y=s,s=u.image.Y+u.image.height;break}u.sprite&&(u.image.width=48,u.image.height=48,u.image.Y=s,s=u.image.Y+u.image.height);let f=u.wrap&&ls.wrap,p=ls.width-ls.c4ShapePadding*2,m=oie(ls,u.typeC4Shape.text);if(m.fontSize=m.fontSize+2,m.fontWeight="bold",lS("label",u,f,m,p),u.label.Y=s+8,s=u.label.Y+u.label.height,u.type&&u.type.text!==""){u.type.text="["+u.type.text+"]";let w=oie(ls,u.typeC4Shape.text);lS("type",u,f,w,p),u.type.Y=s+5,s=u.type.Y+u.type.height}else if(u.techn&&u.techn.text!==""){u.techn.text="["+u.techn.text+"]";let w=oie(ls,u.techn.text);lS("techn",u,f,w,p),u.techn.Y=s+5,s=u.techn.Y+u.techn.height}let b=s,_=u.label.width;if(u.descr&&u.descr.text!==""){let w=oie(ls,u.typeC4Shape.text);lS("descr",u,f,w,p),u.descr.Y=s+20,s=u.descr.Y+u.descr.height,_=Math.max(u.label.width,u.descr.width),b=s-u.descr.textLines*5}_=_+ls.c4ShapePadding,u.width=Math.max(u.width||ls.width,_,ls.width),u.height=Math.max(u.height||ls.height,b,ls.height),u.margin=u.margin||ls.c4ShapeMargin,e.insert(u),NC.drawC4Shape(t,u,ls)}e.bumpLastMargin(ls.c4ShapeMargin)},"drawC4ShapeArray"),xY,Fx=(xY=class{constructor(t,r){this.x=t,this.y=r}},X(xY,"Point"),xY),bSn=X(function(e,t){let r=e.x,a=e.y,s=t.x,o=t.y,u=r+e.width/2,h=a+e.height/2,f=Math.abs(r-s),p=Math.abs(a-o),m=p/f,b=e.height/e.width,_=null;return a==o&&rs?_=new Fx(r,h):r==s&&ao&&(_=new Fx(u,a)),r>s&&a=m?_=new Fx(r,h+m*e.width/2):_=new Fx(u-f/p*e.height/2,a+e.height):r=m?_=new Fx(r+e.width,h+m*e.width/2):_=new Fx(u+f/p*e.height/2,a+e.height):ro?b>=m?_=new Fx(r+e.width,h-m*e.width/2):_=new Fx(u+e.height/2*f/p,a):r>s&&a>o&&(b>=m?_=new Fx(r,h-e.width/2*m):_=new Fx(u-e.height/2*f/p,a)),_},"getIntersectPoint"),nLi=X(function(e,t){let r={x:0,y:0};r.x=t.x+t.width/2,r.y=t.y+t.height/2;let a=bSn(e,r);r.x=e.x+e.width/2,r.y=e.y+e.height/2;let s=bSn(t,r);return{startPoint:a,endPoint:s}},"getIntersectPoints"),rLi=X(function(e,t,r,a){let s=0;for(let o of t){s=s+1;let u=o.wrap&&ls.wrap,h=tLi(ls);a.db.getC4Type()==="C4Dynamic"&&(o.label.text=s+": "+o.label.text);let p=nv(o.label.text,h);lS("label",o,u,h,p),o.techn&&o.techn.text!==""&&(p=nv(o.techn.text,h),lS("techn",o,u,h,p)),o.descr&&o.descr.text!==""&&(p=nv(o.descr.text,h),lS("descr",o,u,h,p));let m=r(o.from),b=r(o.to),_=nLi(m,b);o.startPoint=_.startPoint,o.endPoint=_.endPoint}NC.drawRels(e,t,ls)},"drawRels");function Ggt(e,t,r,a,s){let o=new cYn(s);o.data.widthLimit=r.data.widthLimit/Math.min(Ect,a.length);for(let[u,h]of a.entries()){let f=0;h.image={width:0,height:0,Y:0},h.sprite&&(h.image.width=48,h.image.height=48,h.image.Y=f,f=h.image.Y+h.image.height);let p=h.wrap&&ls.wrap,m=Nxe(ls);if(m.fontSize=m.fontSize+2,m.fontWeight="bold",lS("label",h,p,m,o.data.widthLimit),h.label.Y=f+8,f=h.label.Y+h.label.height,h.type&&h.type.text!==""){h.type.text="["+h.type.text+"]";let S=Nxe(ls);lS("type",h,p,S,o.data.widthLimit),h.type.Y=f+5,f=h.type.Y+h.type.height}if(h.descr&&h.descr.text!==""){let S=Nxe(ls);S.fontSize=S.fontSize-2,lS("descr",h,p,S,o.data.widthLimit),h.descr.Y=f+20,f=h.descr.Y+h.descr.height}if(u==0||u%Ect===0){let S=r.data.startx+ls.diagramMarginX,C=r.data.stopy+ls.diagramMarginY+f;o.setData(S,S,C,C)}else{let S=o.data.stopx!==o.data.startx?o.data.stopx+ls.diagramMarginX:o.data.startx,C=o.data.starty;o.setData(S,S,C,C)}o.name=h.alias;let b=s.db.getC4ShapeArray(h.alias),_=s.db.getC4ShapeKeys(h.alias);_.length>0&&hYn(o,e,b,_),t=h.alias;let w=s.db.getBoundaries(t);w.length>0&&Ggt(e,t,o,w,s),h.alias!=="global"&&uYn(e,h,o),r.data.stopy=Math.max(o.data.stopy+ls.c4ShapeMargin,r.data.stopy),r.data.stopx=Math.max(o.data.stopx+ls.c4ShapeMargin,r.data.stopx),nTe=Math.max(nTe,r.data.stopx),rTe=Math.max(rTe,r.data.stopy)}}X(Ggt,"drawInsideBoundary");var iLi=X(function(e,t,r,a){ls=nn().c4;const s=nn().securityLevel;let o;s==="sandbox"&&(o=gn("#i"+t));const u=gn(s==="sandbox"?o.nodes()[0].contentDocument.body:"body");let h=a.db;a.db.setWrap(ls.wrap),lYn=h.getC4ShapeInRow(),Ect=h.getC4BoundaryInRow(),it.debug(`C:${JSON.stringify(ls,null,2)}`);const f=s==="sandbox"?u.select(`[id="${t}"]`):gn(`[id="${t}"]`);NC.insertComputerIcon(f),NC.insertDatabaseIcon(f),NC.insertClockIcon(f);let p=new cYn(a);p.setData(ls.diagramMarginX,ls.diagramMarginX,ls.diagramMarginY,ls.diagramMarginY),p.data.widthLimit=screen.availWidth,nTe=ls.diagramMarginX,rTe=ls.diagramMarginY;const m=a.db.getTitle();let b=a.db.getBoundaries("");Ggt(f,"",p,b,a),NC.insertArrowHead(f),NC.insertArrowEnd(f),NC.insertArrowCrossHead(f),NC.insertArrowFilledHead(f),rLi(f,a.db.getRels(),a.db.getC4Shape,a),p.data.stopx=nTe,p.data.stopy=rTe;const _=p.data;let S=_.stopy-_.starty+2*ls.diagramMarginY;const A=_.stopx-_.startx+2*ls.diagramMarginX;m&&f.append("text").text(m).attr("x",(_.stopx-_.startx)/2-4*ls.diagramMarginX).attr("y",_.starty+ls.diagramMarginY),yv(f,S,A,ls.useMaxWidth);const k=m?60:0;f.attr("viewBox",_.startx-ls.diagramMarginX+" -"+(ls.diagramMarginY+k)+" "+A+" "+(S+k)),it.debug("models:",_)},"draw"),ySn={drawPersonOrSystemArray:hYn,drawBoundary:uYn,setConf:xct,draw:iLi},aLi=X(e=>`.person { + stroke: ${e.personBorder}; + fill: ${e.personBkg}; + } +`,"getStyles"),sLi=aLi,oLi={parser:p9i,db:wct,renderer:ySn,styles:sLi,init:X(({c4:e,wrap:t})=>{ySn.setConf(e),wct.setWrap(t)},"init")};const lLi=Object.freeze(Object.defineProperty({__proto__:null,diagram:oLi},Symbol.toStringTag,{value:"Module"}));var Lce=X(()=>` + /* Font Awesome icon styling - consolidated */ + .label-icon { + display: inline-block; + height: 1em; + overflow: visible; + vertical-align: -0.125em; + } + + .node .label-icon path { + fill: currentColor; + stroke: revert; + stroke-width: revert; + } +`,"getIconStyles"),eK=X((e,t)=>{let r;return t==="sandbox"&&(r=gn("#i"+e)),gn(t==="sandbox"?r.nodes()[0].contentDocument.body:"body").select(`[id="${e}"]`)},"getDiagramElement"),U$=X((e,t,r,a)=>{e.attr("class",r);const{width:s,height:o,x:u,y:h}=cLi(e,t);yv(e,o,s,a);const f=uLi(u,h,s,o,t);e.attr("viewBox",f),it.debug(`viewBox configured: ${f} with padding: ${t}`)},"setupViewPortForSVG"),cLi=X((e,t)=>{var a;const r=((a=e.node())==null?void 0:a.getBBox())||{width:0,height:0,x:0,y:0};return{width:r.width+t*2,height:r.height+t*2,x:r.x,y:r.y}},"calculateDimensionsWithPadding"),uLi=X((e,t,r,a,s)=>`${e-s} ${t-s} ${r} ${a}`,"createViewBox"),hLi="flowchart-",SY,dLi=(SY=class{constructor(){this.vertexCounter=0,this.config=nn(),this.vertices=new Map,this.edges=[],this.classes=new Map,this.subGraphs=[],this.subGraphLookup=new Map,this.tooltips=new Map,this.subCount=0,this.firstGraphFlag=!0,this.secCount=-1,this.posCrossRef=[],this.funs=[],this.setAccTitle=N1,this.setAccDescription=Pp,this.setDiagramTitle=Og,this.getAccTitle=Mp,this.getAccDescription=Bp,this.getDiagramTitle=P1,this.funs.push(this.setupToolTips.bind(this)),this.addVertex=this.addVertex.bind(this),this.firstGraph=this.firstGraph.bind(this),this.setDirection=this.setDirection.bind(this),this.addSubGraph=this.addSubGraph.bind(this),this.addLink=this.addLink.bind(this),this.setLink=this.setLink.bind(this),this.updateLink=this.updateLink.bind(this),this.addClass=this.addClass.bind(this),this.setClass=this.setClass.bind(this),this.destructLink=this.destructLink.bind(this),this.setClickEvent=this.setClickEvent.bind(this),this.setTooltip=this.setTooltip.bind(this),this.updateLinkInterpolate=this.updateLinkInterpolate.bind(this),this.setClickFun=this.setClickFun.bind(this),this.bindFunctions=this.bindFunctions.bind(this),this.lex={firstGraph:this.firstGraph.bind(this)},this.clear(),this.setGen("gen-2")}sanitizeText(t){return Ti.sanitizeText(t,this.config)}lookUpDomId(t){for(const r of this.vertices.values())if(r.id===t)return r.domId;return t}addVertex(t,r,a,s,o,u,h={},f){var w,S;if(!t||t.trim().length===0)return;let p;if(f!==void 0){let C;f.includes(` +`)?C=f+` +`:C=`{ +`+f+` +}`,p=fAe(C,{schema:dAe})}const m=this.edges.find(C=>C.id===t);if(m){const C=p;(C==null?void 0:C.animate)!==void 0&&(m.animate=C.animate),(C==null?void 0:C.animation)!==void 0&&(m.animation=C.animation),(C==null?void 0:C.curve)!==void 0&&(m.interpolate=C.curve);return}let b,_=this.vertices.get(t);if(_===void 0&&(_={id:t,labelType:"text",domId:hLi+t+"-"+this.vertexCounter,styles:[],classes:[]},this.vertices.set(t,_)),this.vertexCounter++,r!==void 0?(this.config=nn(),b=this.sanitizeText(r.text.trim()),_.labelType=r.type,b.startsWith('"')&&b.endsWith('"')&&(b=b.substring(1,b.length-1)),_.text=b):_.text===void 0&&(_.text=t),a!==void 0&&(_.type=a),s!=null&&s.forEach(C=>{_.styles.push(C)}),o!=null&&o.forEach(C=>{_.classes.push(C)}),u!==void 0&&(_.dir=u),_.props===void 0?_.props=h:h!==void 0&&Object.assign(_.props,h),p!==void 0){if(p.shape){if(p.shape!==p.shape.toLowerCase()||p.shape.includes("_"))throw new Error(`No such shape: ${p.shape}. Shape names should be lowercase.`);if(!r$n(p.shape))throw new Error(`No such shape: ${p.shape}.`);_.type=p==null?void 0:p.shape}p!=null&&p.label&&(_.text=p==null?void 0:p.label),p!=null&&p.icon&&(_.icon=p==null?void 0:p.icon,!((w=p.label)!=null&&w.trim())&&_.text===t&&(_.text="")),p!=null&&p.form&&(_.form=p==null?void 0:p.form),p!=null&&p.pos&&(_.pos=p==null?void 0:p.pos),p!=null&&p.img&&(_.img=p==null?void 0:p.img,!((S=p.label)!=null&&S.trim())&&_.text===t&&(_.text="")),p!=null&&p.constraint&&(_.constraint=p.constraint),p.w&&(_.assetWidth=Number(p.w)),p.h&&(_.assetHeight=Number(p.h))}}addSingleLink(t,r,a,s){const h={start:t,end:r,type:void 0,text:"",labelType:"text",classes:[],isUserDefinedId:!1,interpolate:this.edges.defaultInterpolate};it.info("abc78 Got edge...",h);const f=a.text;if(f!==void 0&&(h.text=this.sanitizeText(f.text.trim()),h.text.startsWith('"')&&h.text.endsWith('"')&&(h.text=h.text.substring(1,h.text.length-1)),h.labelType=f.type),a!==void 0&&(h.type=a.type,h.stroke=a.stroke,h.length=a.length>10?10:a.length),s&&!this.edges.some(p=>p.id===s))h.id=s,h.isUserDefinedId=!0;else{const p=this.edges.filter(m=>m.start===h.start&&m.end===h.end);p.length===0?h.id=XV(h.start,h.end,{counter:0,prefix:"L"}):h.id=XV(h.start,h.end,{counter:p.length+1,prefix:"L"})}if(this.edges.length<(this.config.maxEdges??500))it.info("Pushing edge..."),this.edges.push(h);else throw new Error(`Edge limit exceeded. ${this.edges.length} edges found, but the limit is ${this.config.maxEdges}. + +Initialize mermaid with maxEdges set to a higher number to allow more edges. +You cannot set this config via configuration inside the diagram as it is a secure config. +You have to call mermaid.initialize.`)}isLinkData(t){return t!==null&&typeof t=="object"&&"id"in t&&typeof t.id=="string"}addLink(t,r,a){const s=this.isLinkData(a)?a.id.replace("@",""):void 0;it.info("addLink",t,r,s);for(const o of t)for(const u of r){const h=o===t[t.length-1],f=u===r[0];h&&f?this.addSingleLink(o,u,a,s):this.addSingleLink(o,u,a,void 0)}}updateLinkInterpolate(t,r){t.forEach(a=>{a==="default"?this.edges.defaultInterpolate=r:this.edges[a].interpolate=r})}updateLink(t,r){t.forEach(a=>{var s,o,u,h,f,p;if(typeof a=="number"&&a>=this.edges.length)throw new Error(`The index ${a} for linkStyle is out of bounds. Valid indices for linkStyle are between 0 and ${this.edges.length-1}. (Help: Ensure that the index is within the range of existing edges.)`);a==="default"?this.edges.defaultStyle=r:(this.edges[a].style=r,(((o=(s=this.edges[a])==null?void 0:s.style)==null?void 0:o.length)??0)>0&&!((h=(u=this.edges[a])==null?void 0:u.style)!=null&&h.some(m=>m==null?void 0:m.startsWith("fill")))&&((p=(f=this.edges[a])==null?void 0:f.style)==null||p.push("fill:none")))})}addClass(t,r){const a=r.join().replace(/\\,/g,"§§§").replace(/,/g,";").replace(/§§§/g,",").split(";");t.split(",").forEach(s=>{let o=this.classes.get(s);o===void 0&&(o={id:s,styles:[],textStyles:[]},this.classes.set(s,o)),a!=null&&a.forEach(u=>{if(/color/.exec(u)){const h=u.replace("fill","bgFill");o.textStyles.push(h)}o.styles.push(u)})})}setDirection(t){this.direction=t.trim(),/.*/.exec(this.direction)&&(this.direction="LR"),/.*v/.exec(this.direction)&&(this.direction="TB"),this.direction==="TD"&&(this.direction="TB")}setClass(t,r){for(const a of t.split(",")){const s=this.vertices.get(a);s&&s.classes.push(r);const o=this.edges.find(h=>h.id===a);o&&o.classes.push(r);const u=this.subGraphLookup.get(a);u&&u.classes.push(r)}}setTooltip(t,r){if(r!==void 0){r=this.sanitizeText(r);for(const a of t.split(","))this.tooltips.set(this.version==="gen-1"?this.lookUpDomId(a):a,r)}}setClickFun(t,r,a){const s=this.lookUpDomId(t);if(nn().securityLevel!=="loose"||r===void 0)return;let o=[];if(typeof a=="string"){o=a.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let h=0;h{const h=document.querySelector(`[id="${s}"]`);h!==null&&h.addEventListener("click",()=>{Vo.runFunc(r,...o)},!1)}))}setLink(t,r,a){t.split(",").forEach(s=>{const o=this.vertices.get(s);o!==void 0&&(o.link=Vo.formatUrl(r,this.config),o.linkTarget=a)}),this.setClass(t,"clickable")}getTooltip(t){return this.tooltips.get(t)}setClickEvent(t,r,a){t.split(",").forEach(s=>{this.setClickFun(s,r,a)}),this.setClass(t,"clickable")}bindFunctions(t){this.funs.forEach(r=>{r(t)})}getDirection(){var t;return(t=this.direction)==null?void 0:t.trim()}getVertices(){return this.vertices}getEdges(){return this.edges}getClasses(){return this.classes}setupToolTips(t){let r=gn(".mermaidTooltip");(r._groups||r)[0][0]===null&&(r=gn("body").append("div").attr("class","mermaidTooltip").style("opacity",0)),gn(t).select("svg").selectAll("g.node").on("mouseover",o=>{var p;const u=gn(o.currentTarget);if(u.attr("title")===null)return;const f=(p=o.currentTarget)==null?void 0:p.getBoundingClientRect();r.transition().duration(200).style("opacity",".9"),r.text(u.attr("title")).style("left",window.scrollX+f.left+(f.right-f.left)/2+"px").style("top",window.scrollY+f.bottom+"px"),r.html(r.html().replace(/<br\/>/g,"
    ")),u.classed("hover",!0)}).on("mouseout",o=>{r.transition().duration(500).style("opacity",0),gn(o.currentTarget).classed("hover",!1)})}clear(t="gen-2"){this.vertices=new Map,this.classes=new Map,this.edges=[],this.funs=[this.setupToolTips.bind(this)],this.subGraphs=[],this.subGraphLookup=new Map,this.subCount=0,this.tooltips=new Map,this.firstGraphFlag=!0,this.version=t,this.config=nn(),M1()}setGen(t){this.version=t||"gen-2"}defaultStyle(){return"fill:#ffa;stroke: #f66; stroke-width: 3px; stroke-dasharray: 5, 5;fill:#ffa;stroke: #666;"}addSubGraph(t,r,a){let s=t.text.trim(),o=a.text;t===a&&/\s/.exec(a.text)&&(s=void 0);const h=X(_=>{const w={boolean:{},number:{},string:{}},S=[];let C;return{nodeList:_.filter(function(k){const I=typeof k;return k.stmt&&k.stmt==="dir"?(C=k.value,!1):k.trim()===""?!1:I in w?w[I].hasOwnProperty(k)?!1:w[I][k]=!0:S.includes(k)?!1:S.push(k)}),dir:C}},"uniq")(r.flat()),f=h.nodeList;let p=h.dir;const m=nn().flowchart??{};if(p=p??(m.inheritDir?this.getDirection()??nn().direction??void 0:void 0),this.version==="gen-1")for(let _=0;_2e3)return{result:!1,count:0};if(this.posCrossRef[this.secCount]=r,this.subGraphs[r].id===t)return{result:!0,count:0};let s=0,o=1;for(;s=0){const h=this.indexNodes2(t,u);if(h.result)return{result:!0,count:o+h.count};o=o+h.count}s=s+1}return{result:!1,count:o}}getDepthFirstPos(t){return this.posCrossRef[t]}indexNodes(){this.secCount=-1,this.subGraphs.length>0&&this.indexNodes2("none",this.subGraphs.length-1)}getSubGraphs(){return this.subGraphs}firstGraph(){return this.firstGraphFlag?(this.firstGraphFlag=!1,!0):!1}destructStartLink(t){let r=t.trim(),a="arrow_open";switch(r[0]){case"<":a="arrow_point",r=r.slice(1);break;case"x":a="arrow_cross",r=r.slice(1);break;case"o":a="arrow_circle",r=r.slice(1);break}let s="normal";return r.includes("=")&&(s="thick"),r.includes(".")&&(s="dotted"),{type:a,stroke:s}}countChar(t,r){const a=r.length;let s=0;for(let o=0;o":s="arrow_point",r.startsWith("<")&&(s="double_"+s,a=a.slice(1));break;case"o":s="arrow_circle",r.startsWith("o")&&(s="double_"+s,a=a.slice(1));break}let o="normal",u=a.length-1;a.startsWith("=")&&(o="thick"),a.startsWith("~")&&(o="invisible");const h=this.countChar(".",a);return h&&(o="dotted",u=h),{type:s,stroke:o,length:u}}destructLink(t,r){const a=this.destructEndLink(t);let s;if(r){if(s=this.destructStartLink(r),s.stroke!==a.stroke)return{type:"INVALID",stroke:"INVALID"};if(s.type==="arrow_open")s.type=a.type;else{if(s.type!==a.type)return{type:"INVALID",stroke:"INVALID"};s.type="double_"+s.type}return s.type==="double_arrow"&&(s.type="double_arrow_point"),s.length=a.length,s}return a}exists(t,r){for(const a of t)if(a.nodes.includes(r))return!0;return!1}makeUniq(t,r){const a=[];return t.nodes.forEach((s,o)=>{this.exists(r,s)||a.push(t.nodes[o])}),{nodes:a}}getTypeFromVertex(t){if(t.img)return"imageSquare";if(t.icon)return t.form==="circle"?"iconCircle":t.form==="square"?"iconSquare":t.form==="rounded"?"iconRounded":"icon";switch(t.type){case"square":case void 0:return"squareRect";case"round":return"roundedRect";case"ellipse":return"ellipse";default:return t.type}}findNode(t,r){return t.find(a=>a.id===r)}destructEdgeType(t){let r="none",a="arrow_point";switch(t){case"arrow_point":case"arrow_circle":case"arrow_cross":a=t;break;case"double_arrow_point":case"double_arrow_circle":case"double_arrow_cross":r=t.replace("double_",""),a=r;break}return{arrowTypeStart:r,arrowTypeEnd:a}}addNodeFromVertex(t,r,a,s,o,u){var m;const h=a.get(t.id),f=s.get(t.id)??!1,p=this.findNode(r,t.id);if(p)p.cssStyles=t.styles,p.cssCompiledStyles=this.getCompiledStyles(t.classes),p.cssClasses=t.classes.join(" ");else{const b={id:t.id,label:t.text,labelStyle:"",parentId:h,padding:((m=o.flowchart)==null?void 0:m.padding)||8,cssStyles:t.styles,cssCompiledStyles:this.getCompiledStyles(["default","node",...t.classes]),cssClasses:"default "+t.classes.join(" "),dir:t.dir,domId:t.domId,look:u,link:t.link,linkTarget:t.linkTarget,tooltip:this.getTooltip(t.id),icon:t.icon,pos:t.pos,img:t.img,assetWidth:t.assetWidth,assetHeight:t.assetHeight,constraint:t.constraint};f?r.push({...b,isGroup:!0,shape:"rect"}):r.push({...b,isGroup:!1,shape:this.getTypeFromVertex(t)})}}getCompiledStyles(t){let r=[];for(const a of t){const s=this.classes.get(a);s!=null&&s.styles&&(r=[...r,...s.styles??[]].map(o=>o.trim())),s!=null&&s.textStyles&&(r=[...r,...s.textStyles??[]].map(o=>o.trim()))}return r}getData(){const t=nn(),r=[],a=[],s=this.getSubGraphs(),o=new Map,u=new Map;for(let p=s.length-1;p>=0;p--){const m=s[p];m.nodes.length>0&&u.set(m.id,!0);for(const b of m.nodes)o.set(b,m.id)}for(let p=s.length-1;p>=0;p--){const m=s[p];r.push({id:m.id,label:m.title,labelStyle:"",parentId:o.get(m.id),padding:8,cssCompiledStyles:this.getCompiledStyles(m.classes),cssClasses:m.classes.join(" "),shape:"rect",dir:m.dir,isGroup:!0,look:t.look})}this.getVertices().forEach(p=>{this.addNodeFromVertex(p,r,o,u,t,t.look||"classic")});const f=this.getEdges();return f.forEach((p,m)=>{var C;const{arrowTypeStart:b,arrowTypeEnd:_}=this.destructEdgeType(p.type),w=[...f.defaultStyle??[]];p.style&&w.push(...p.style);const S={id:XV(p.start,p.end,{counter:m,prefix:"L"},p.id),isUserDefinedId:p.isUserDefinedId,start:p.start,end:p.end,type:p.type??"normal",label:p.text,labelpos:"c",thickness:p.stroke,minlen:p.length,classes:(p==null?void 0:p.stroke)==="invisible"?"":"edge-thickness-normal edge-pattern-solid flowchart-link",arrowTypeStart:(p==null?void 0:p.stroke)==="invisible"||(p==null?void 0:p.type)==="arrow_open"?"none":b,arrowTypeEnd:(p==null?void 0:p.stroke)==="invisible"||(p==null?void 0:p.type)==="arrow_open"?"none":_,arrowheadStyle:"fill: #333",cssCompiledStyles:this.getCompiledStyles(p.classes),labelStyle:w,style:w,pattern:p.stroke,look:t.look,animate:p.animate,animation:p.animation,curve:p.interpolate||this.edges.defaultInterpolate||((C=t.flowchart)==null?void 0:C.curve)};a.push(S)}),{nodes:r,edges:a,other:{},config:t}}defaultConfig(){return SLn.flowchart}},X(SY,"FlowDB"),SY),fLi=X(function(e,t){return t.db.getClasses()},"getClasses"),pLi=X(async function(e,t,r,a){var w;it.info("REF0:"),it.info("Drawing state diagram (v2)",t);const{securityLevel:s,flowchart:o,layout:u}=nn();let h;s==="sandbox"&&(h=gn("#i"+t));const f=s==="sandbox"?h.nodes()[0].contentDocument:document;it.debug("Before getData: ");const p=a.db.getData();it.debug("Data: ",p);const m=eK(t,s),b=a.db.getDirection();p.type=a.type,p.layoutAlgorithm=hce(u),p.layoutAlgorithm==="dagre"&&u==="elk"&&it.warn("flowchart-elk was moved to an external package in Mermaid v11. Please refer [release notes](https://github.com/mermaid-js/mermaid/releases/tag/v11.0.0) for more details. This diagram will be rendered using `dagre` layout as a fallback."),p.direction=b,p.nodeSpacing=(o==null?void 0:o.nodeSpacing)||50,p.rankSpacing=(o==null?void 0:o.rankSpacing)||50,p.markers=["point","circle","cross"],p.diagramId=t,it.debug("REF1:",p),await $W(p,m);const _=((w=p.config.flowchart)==null?void 0:w.diagramPadding)??8;Vo.insertTitle(m,"flowchartTitleText",(o==null?void 0:o.titleTopMargin)||0,a.db.getDiagramTitle()),U$(m,_,"flowchart",(o==null?void 0:o.useMaxWidth)||!1);for(const S of p.nodes){const C=gn(`#${t} [id="${S.id}"]`);if(!C||!S.link)continue;const A=f.createElementNS("http://www.w3.org/2000/svg","a");A.setAttributeNS("http://www.w3.org/2000/svg","class",S.cssClasses),A.setAttributeNS("http://www.w3.org/2000/svg","rel","noopener"),s==="sandbox"?A.setAttributeNS("http://www.w3.org/2000/svg","target","_top"):S.linkTarget&&A.setAttributeNS("http://www.w3.org/2000/svg","target",S.linkTarget);const k=C.insert(function(){return A},":first-child"),I=C.select(".label-container");I&&k.append(function(){return I.node()});const N=C.select(".label");N&&k.append(function(){return N.node()})}},"draw"),gLi={getClasses:fLi,draw:pLi},Sct=function(){var e=X(function(no,dt,Wi,Tt){for(Wi=Wi||{},Tt=no.length;Tt--;Wi[no[Tt]]=dt);return Wi},"o"),t=[1,4],r=[1,3],a=[1,5],s=[1,8,9,10,11,27,34,36,38,44,60,84,85,86,87,88,89,102,105,106,109,111,114,115,116,121,122,123,124],o=[2,2],u=[1,13],h=[1,14],f=[1,15],p=[1,16],m=[1,23],b=[1,25],_=[1,26],w=[1,27],S=[1,49],C=[1,48],A=[1,29],k=[1,30],I=[1,31],N=[1,32],L=[1,33],P=[1,44],M=[1,46],F=[1,42],U=[1,47],$=[1,43],G=[1,50],B=[1,45],Z=[1,51],z=[1,52],Y=[1,34],W=[1,35],Q=[1,36],V=[1,37],j=[1,57],ee=[1,8,9,10,11,27,32,34,36,38,44,60,84,85,86,87,88,89,102,105,106,109,111,114,115,116,121,122,123,124],te=[1,61],ne=[1,60],se=[1,62],ie=[8,9,11,75,77,78],ge=[1,78],ce=[1,91],be=[1,96],ve=[1,95],De=[1,92],ye=[1,88],Ee=[1,94],he=[1,90],we=[1,97],Ce=[1,93],Ie=[1,98],Le=[1,89],Fe=[8,9,10,11,40,75,77,78],Ve=[8,9,10,11,40,46,75,77,78],Oe=[8,9,10,11,29,40,44,46,48,50,52,54,56,58,60,63,65,67,68,70,75,77,78,89,102,105,106,109,111,114,115,116],Dt=[8,9,11,44,60,75,77,78,89,102,105,106,109,111,114,115,116],ot=[44,60,89,102,105,106,109,111,114,115,116],sn=[1,121],Kt=[1,122],Ft=[1,124],Je=[1,123],ht=[44,60,62,74,89,102,105,106,109,111,114,115,116],et=[1,133],qe=[1,147],He=[1,148],Ge=[1,149],Ye=[1,150],Ae=[1,135],Xe=[1,137],fe=[1,141],Qe=[1,142],Ke=[1,143],mt=[1,144],lt=[1,145],$t=[1,146],Ut=[1,151],Jt=[1,152],wn=[1,131],Vn=[1,132],Wn=[1,139],Dn=[1,134],zn=[1,138],vn=[1,136],Cn=[8,9,10,11,27,32,34,36,38,44,60,84,85,86,87,88,89,102,105,106,109,111,114,115,116,121,122,123,124],Ar=[1,154],ur=[1,156],On=[8,9,11],Ir=[8,9,10,11,14,44,60,89,105,106,109,111,114,115,116],Ln=[1,176],pr=[1,172],Cr=[1,173],Zr=[1,177],Pr=[1,174],Ci=[1,175],ds=[77,116,119],ta=[8,9,10,11,12,14,27,29,32,44,60,75,84,85,86,87,88,89,90,105,109,111,114,115,116],Os=[10,106],uo=[31,49,51,53,55,57,62,64,66,67,69,71,116,117,118],Ls=[1,247],La=[1,245],to=[1,249],Fi=[1,243],Pt=[1,244],St=[1,246],Un=[1,248],Hr=[1,250],za=[1,268],Rs=[8,9,11,106],Vr=[8,9,10,11,60,84,105,106,109,110,111,112],Ii={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,graphConfig:4,document:5,line:6,statement:7,SEMI:8,NEWLINE:9,SPACE:10,EOF:11,GRAPH:12,NODIR:13,DIR:14,FirstStmtSeparator:15,ending:16,endToken:17,spaceList:18,spaceListNewline:19,vertexStatement:20,separator:21,styleStatement:22,linkStyleStatement:23,classDefStatement:24,classStatement:25,clickStatement:26,subgraph:27,textNoTags:28,SQS:29,text:30,SQE:31,end:32,direction:33,acc_title:34,acc_title_value:35,acc_descr:36,acc_descr_value:37,acc_descr_multiline_value:38,shapeData:39,SHAPE_DATA:40,link:41,node:42,styledVertex:43,AMP:44,vertex:45,STYLE_SEPARATOR:46,idString:47,DOUBLECIRCLESTART:48,DOUBLECIRCLEEND:49,PS:50,PE:51,"(-":52,"-)":53,STADIUMSTART:54,STADIUMEND:55,SUBROUTINESTART:56,SUBROUTINEEND:57,VERTEX_WITH_PROPS_START:58,"NODE_STRING[field]":59,COLON:60,"NODE_STRING[value]":61,PIPE:62,CYLINDERSTART:63,CYLINDEREND:64,DIAMOND_START:65,DIAMOND_STOP:66,TAGEND:67,TRAPSTART:68,TRAPEND:69,INVTRAPSTART:70,INVTRAPEND:71,linkStatement:72,arrowText:73,TESTSTR:74,START_LINK:75,edgeText:76,LINK:77,LINK_ID:78,edgeTextToken:79,STR:80,MD_STR:81,textToken:82,keywords:83,STYLE:84,LINKSTYLE:85,CLASSDEF:86,CLASS:87,CLICK:88,DOWN:89,UP:90,textNoTagsToken:91,stylesOpt:92,"idString[vertex]":93,"idString[class]":94,CALLBACKNAME:95,CALLBACKARGS:96,HREF:97,LINK_TARGET:98,"STR[link]":99,"STR[tooltip]":100,alphaNum:101,DEFAULT:102,numList:103,INTERPOLATE:104,NUM:105,COMMA:106,style:107,styleComponent:108,NODE_STRING:109,UNIT:110,BRKT:111,PCT:112,idStringToken:113,MINUS:114,MULT:115,UNICODE_TEXT:116,TEXT:117,TAGSTART:118,EDGE_TEXT:119,alphaNumToken:120,direction_tb:121,direction_bt:122,direction_rl:123,direction_lr:124,$accept:0,$end:1},terminals_:{2:"error",8:"SEMI",9:"NEWLINE",10:"SPACE",11:"EOF",12:"GRAPH",13:"NODIR",14:"DIR",27:"subgraph",29:"SQS",31:"SQE",32:"end",34:"acc_title",35:"acc_title_value",36:"acc_descr",37:"acc_descr_value",38:"acc_descr_multiline_value",40:"SHAPE_DATA",44:"AMP",46:"STYLE_SEPARATOR",48:"DOUBLECIRCLESTART",49:"DOUBLECIRCLEEND",50:"PS",51:"PE",52:"(-",53:"-)",54:"STADIUMSTART",55:"STADIUMEND",56:"SUBROUTINESTART",57:"SUBROUTINEEND",58:"VERTEX_WITH_PROPS_START",59:"NODE_STRING[field]",60:"COLON",61:"NODE_STRING[value]",62:"PIPE",63:"CYLINDERSTART",64:"CYLINDEREND",65:"DIAMOND_START",66:"DIAMOND_STOP",67:"TAGEND",68:"TRAPSTART",69:"TRAPEND",70:"INVTRAPSTART",71:"INVTRAPEND",74:"TESTSTR",75:"START_LINK",77:"LINK",78:"LINK_ID",80:"STR",81:"MD_STR",84:"STYLE",85:"LINKSTYLE",86:"CLASSDEF",87:"CLASS",88:"CLICK",89:"DOWN",90:"UP",93:"idString[vertex]",94:"idString[class]",95:"CALLBACKNAME",96:"CALLBACKARGS",97:"HREF",98:"LINK_TARGET",99:"STR[link]",100:"STR[tooltip]",102:"DEFAULT",104:"INTERPOLATE",105:"NUM",106:"COMMA",109:"NODE_STRING",110:"UNIT",111:"BRKT",112:"PCT",114:"MINUS",115:"MULT",116:"UNICODE_TEXT",117:"TEXT",118:"TAGSTART",119:"EDGE_TEXT",121:"direction_tb",122:"direction_bt",123:"direction_rl",124:"direction_lr"},productions_:[0,[3,2],[5,0],[5,2],[6,1],[6,1],[6,1],[6,1],[6,1],[4,2],[4,2],[4,2],[4,3],[16,2],[16,1],[17,1],[17,1],[17,1],[15,1],[15,1],[15,2],[19,2],[19,2],[19,1],[19,1],[18,2],[18,1],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,9],[7,6],[7,4],[7,1],[7,2],[7,2],[7,1],[21,1],[21,1],[21,1],[39,2],[39,1],[20,4],[20,3],[20,4],[20,2],[20,2],[20,1],[42,1],[42,6],[42,5],[43,1],[43,3],[45,4],[45,4],[45,6],[45,4],[45,4],[45,4],[45,8],[45,4],[45,4],[45,4],[45,6],[45,4],[45,4],[45,4],[45,4],[45,4],[45,1],[41,2],[41,3],[41,3],[41,1],[41,3],[41,4],[76,1],[76,2],[76,1],[76,1],[72,1],[72,2],[73,3],[30,1],[30,2],[30,1],[30,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[83,1],[28,1],[28,2],[28,1],[28,1],[24,5],[25,5],[26,2],[26,4],[26,3],[26,5],[26,3],[26,5],[26,5],[26,7],[26,2],[26,4],[26,2],[26,4],[26,4],[26,6],[22,5],[23,5],[23,5],[23,9],[23,9],[23,7],[23,7],[103,1],[103,3],[92,1],[92,3],[107,1],[107,2],[108,1],[108,1],[108,1],[108,1],[108,1],[108,1],[108,1],[108,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[113,1],[82,1],[82,1],[82,1],[82,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[91,1],[79,1],[79,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[120,1],[47,1],[47,2],[101,1],[101,2],[33,1],[33,1],[33,1],[33,1]],performAction:X(function(dt,Wi,Tt,xr,qs,Rt,Bb){var Gt=Rt.length-1;switch(qs){case 2:this.$=[];break;case 3:(!Array.isArray(Rt[Gt])||Rt[Gt].length>0)&&Rt[Gt-1].push(Rt[Gt]),this.$=Rt[Gt-1];break;case 4:case 183:this.$=Rt[Gt];break;case 11:xr.setDirection("TB"),this.$="TB";break;case 12:xr.setDirection(Rt[Gt-1]),this.$=Rt[Gt-1];break;case 27:this.$=Rt[Gt-1].nodes;break;case 28:case 29:case 30:case 31:case 32:this.$=[];break;case 33:this.$=xr.addSubGraph(Rt[Gt-6],Rt[Gt-1],Rt[Gt-4]);break;case 34:this.$=xr.addSubGraph(Rt[Gt-3],Rt[Gt-1],Rt[Gt-3]);break;case 35:this.$=xr.addSubGraph(void 0,Rt[Gt-1],void 0);break;case 37:this.$=Rt[Gt].trim(),xr.setAccTitle(this.$);break;case 38:case 39:this.$=Rt[Gt].trim(),xr.setAccDescription(this.$);break;case 43:this.$=Rt[Gt-1]+Rt[Gt];break;case 44:this.$=Rt[Gt];break;case 45:xr.addVertex(Rt[Gt-1][Rt[Gt-1].length-1],void 0,void 0,void 0,void 0,void 0,void 0,Rt[Gt]),xr.addLink(Rt[Gt-3].stmt,Rt[Gt-1],Rt[Gt-2]),this.$={stmt:Rt[Gt-1],nodes:Rt[Gt-1].concat(Rt[Gt-3].nodes)};break;case 46:xr.addLink(Rt[Gt-2].stmt,Rt[Gt],Rt[Gt-1]),this.$={stmt:Rt[Gt],nodes:Rt[Gt].concat(Rt[Gt-2].nodes)};break;case 47:xr.addLink(Rt[Gt-3].stmt,Rt[Gt-1],Rt[Gt-2]),this.$={stmt:Rt[Gt-1],nodes:Rt[Gt-1].concat(Rt[Gt-3].nodes)};break;case 48:this.$={stmt:Rt[Gt-1],nodes:Rt[Gt-1]};break;case 49:xr.addVertex(Rt[Gt-1][Rt[Gt-1].length-1],void 0,void 0,void 0,void 0,void 0,void 0,Rt[Gt]),this.$={stmt:Rt[Gt-1],nodes:Rt[Gt-1],shapeData:Rt[Gt]};break;case 50:this.$={stmt:Rt[Gt],nodes:Rt[Gt]};break;case 51:this.$=[Rt[Gt]];break;case 52:xr.addVertex(Rt[Gt-5][Rt[Gt-5].length-1],void 0,void 0,void 0,void 0,void 0,void 0,Rt[Gt-4]),this.$=Rt[Gt-5].concat(Rt[Gt]);break;case 53:this.$=Rt[Gt-4].concat(Rt[Gt]);break;case 54:this.$=Rt[Gt];break;case 55:this.$=Rt[Gt-2],xr.setClass(Rt[Gt-2],Rt[Gt]);break;case 56:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"square");break;case 57:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"doublecircle");break;case 58:this.$=Rt[Gt-5],xr.addVertex(Rt[Gt-5],Rt[Gt-2],"circle");break;case 59:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"ellipse");break;case 60:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"stadium");break;case 61:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"subroutine");break;case 62:this.$=Rt[Gt-7],xr.addVertex(Rt[Gt-7],Rt[Gt-1],"rect",void 0,void 0,void 0,Object.fromEntries([[Rt[Gt-5],Rt[Gt-3]]]));break;case 63:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"cylinder");break;case 64:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"round");break;case 65:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"diamond");break;case 66:this.$=Rt[Gt-5],xr.addVertex(Rt[Gt-5],Rt[Gt-2],"hexagon");break;case 67:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"odd");break;case 68:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"trapezoid");break;case 69:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"inv_trapezoid");break;case 70:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"lean_right");break;case 71:this.$=Rt[Gt-3],xr.addVertex(Rt[Gt-3],Rt[Gt-1],"lean_left");break;case 72:this.$=Rt[Gt],xr.addVertex(Rt[Gt]);break;case 73:Rt[Gt-1].text=Rt[Gt],this.$=Rt[Gt-1];break;case 74:case 75:Rt[Gt-2].text=Rt[Gt-1],this.$=Rt[Gt-2];break;case 76:this.$=Rt[Gt];break;case 77:var Ds=xr.destructLink(Rt[Gt],Rt[Gt-2]);this.$={type:Ds.type,stroke:Ds.stroke,length:Ds.length,text:Rt[Gt-1]};break;case 78:var Ds=xr.destructLink(Rt[Gt],Rt[Gt-2]);this.$={type:Ds.type,stroke:Ds.stroke,length:Ds.length,text:Rt[Gt-1],id:Rt[Gt-3]};break;case 79:this.$={text:Rt[Gt],type:"text"};break;case 80:this.$={text:Rt[Gt-1].text+""+Rt[Gt],type:Rt[Gt-1].type};break;case 81:this.$={text:Rt[Gt],type:"string"};break;case 82:this.$={text:Rt[Gt],type:"markdown"};break;case 83:var Ds=xr.destructLink(Rt[Gt]);this.$={type:Ds.type,stroke:Ds.stroke,length:Ds.length};break;case 84:var Ds=xr.destructLink(Rt[Gt]);this.$={type:Ds.type,stroke:Ds.stroke,length:Ds.length,id:Rt[Gt-1]};break;case 85:this.$=Rt[Gt-1];break;case 86:this.$={text:Rt[Gt],type:"text"};break;case 87:this.$={text:Rt[Gt-1].text+""+Rt[Gt],type:Rt[Gt-1].type};break;case 88:this.$={text:Rt[Gt],type:"string"};break;case 89:case 104:this.$={text:Rt[Gt],type:"markdown"};break;case 101:this.$={text:Rt[Gt],type:"text"};break;case 102:this.$={text:Rt[Gt-1].text+""+Rt[Gt],type:Rt[Gt-1].type};break;case 103:this.$={text:Rt[Gt],type:"text"};break;case 105:this.$=Rt[Gt-4],xr.addClass(Rt[Gt-2],Rt[Gt]);break;case 106:this.$=Rt[Gt-4],xr.setClass(Rt[Gt-2],Rt[Gt]);break;case 107:case 115:this.$=Rt[Gt-1],xr.setClickEvent(Rt[Gt-1],Rt[Gt]);break;case 108:case 116:this.$=Rt[Gt-3],xr.setClickEvent(Rt[Gt-3],Rt[Gt-2]),xr.setTooltip(Rt[Gt-3],Rt[Gt]);break;case 109:this.$=Rt[Gt-2],xr.setClickEvent(Rt[Gt-2],Rt[Gt-1],Rt[Gt]);break;case 110:this.$=Rt[Gt-4],xr.setClickEvent(Rt[Gt-4],Rt[Gt-3],Rt[Gt-2]),xr.setTooltip(Rt[Gt-4],Rt[Gt]);break;case 111:this.$=Rt[Gt-2],xr.setLink(Rt[Gt-2],Rt[Gt]);break;case 112:this.$=Rt[Gt-4],xr.setLink(Rt[Gt-4],Rt[Gt-2]),xr.setTooltip(Rt[Gt-4],Rt[Gt]);break;case 113:this.$=Rt[Gt-4],xr.setLink(Rt[Gt-4],Rt[Gt-2],Rt[Gt]);break;case 114:this.$=Rt[Gt-6],xr.setLink(Rt[Gt-6],Rt[Gt-4],Rt[Gt]),xr.setTooltip(Rt[Gt-6],Rt[Gt-2]);break;case 117:this.$=Rt[Gt-1],xr.setLink(Rt[Gt-1],Rt[Gt]);break;case 118:this.$=Rt[Gt-3],xr.setLink(Rt[Gt-3],Rt[Gt-2]),xr.setTooltip(Rt[Gt-3],Rt[Gt]);break;case 119:this.$=Rt[Gt-3],xr.setLink(Rt[Gt-3],Rt[Gt-2],Rt[Gt]);break;case 120:this.$=Rt[Gt-5],xr.setLink(Rt[Gt-5],Rt[Gt-4],Rt[Gt]),xr.setTooltip(Rt[Gt-5],Rt[Gt-2]);break;case 121:this.$=Rt[Gt-4],xr.addVertex(Rt[Gt-2],void 0,void 0,Rt[Gt]);break;case 122:this.$=Rt[Gt-4],xr.updateLink([Rt[Gt-2]],Rt[Gt]);break;case 123:this.$=Rt[Gt-4],xr.updateLink(Rt[Gt-2],Rt[Gt]);break;case 124:this.$=Rt[Gt-8],xr.updateLinkInterpolate([Rt[Gt-6]],Rt[Gt-2]),xr.updateLink([Rt[Gt-6]],Rt[Gt]);break;case 125:this.$=Rt[Gt-8],xr.updateLinkInterpolate(Rt[Gt-6],Rt[Gt-2]),xr.updateLink(Rt[Gt-6],Rt[Gt]);break;case 126:this.$=Rt[Gt-6],xr.updateLinkInterpolate([Rt[Gt-4]],Rt[Gt]);break;case 127:this.$=Rt[Gt-6],xr.updateLinkInterpolate(Rt[Gt-4],Rt[Gt]);break;case 128:case 130:this.$=[Rt[Gt]];break;case 129:case 131:Rt[Gt-2].push(Rt[Gt]),this.$=Rt[Gt-2];break;case 133:this.$=Rt[Gt-1]+Rt[Gt];break;case 181:this.$=Rt[Gt];break;case 182:this.$=Rt[Gt-1]+""+Rt[Gt];break;case 184:this.$=Rt[Gt-1]+""+Rt[Gt];break;case 185:this.$={stmt:"dir",value:"TB"};break;case 186:this.$={stmt:"dir",value:"BT"};break;case 187:this.$={stmt:"dir",value:"RL"};break;case 188:this.$={stmt:"dir",value:"LR"};break}},"anonymous"),table:[{3:1,4:2,9:t,10:r,12:a},{1:[3]},e(s,o,{5:6}),{4:7,9:t,10:r,12:a},{4:8,9:t,10:r,12:a},{13:[1,9],14:[1,10]},{1:[2,1],6:11,7:12,8:u,9:h,10:f,11:p,20:17,22:18,23:19,24:20,25:21,26:22,27:m,33:24,34:b,36:_,38:w,42:28,43:38,44:S,45:39,47:40,60:C,84:A,85:k,86:I,87:N,88:L,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z,121:Y,122:W,123:Q,124:V},e(s,[2,9]),e(s,[2,10]),e(s,[2,11]),{8:[1,54],9:[1,55],10:j,15:53,18:56},e(ee,[2,3]),e(ee,[2,4]),e(ee,[2,5]),e(ee,[2,6]),e(ee,[2,7]),e(ee,[2,8]),{8:te,9:ne,11:se,21:58,41:59,72:63,75:[1,64],77:[1,66],78:[1,65]},{8:te,9:ne,11:se,21:67},{8:te,9:ne,11:se,21:68},{8:te,9:ne,11:se,21:69},{8:te,9:ne,11:se,21:70},{8:te,9:ne,11:se,21:71},{8:te,9:ne,10:[1,72],11:se,21:73},e(ee,[2,36]),{35:[1,74]},{37:[1,75]},e(ee,[2,39]),e(ie,[2,50],{18:76,39:77,10:j,40:ge}),{10:[1,79]},{10:[1,80]},{10:[1,81]},{10:[1,82]},{14:ce,44:be,60:ve,80:[1,86],89:De,95:[1,83],97:[1,84],101:85,105:ye,106:Ee,109:he,111:we,114:Ce,115:Ie,116:Le,120:87},e(ee,[2,185]),e(ee,[2,186]),e(ee,[2,187]),e(ee,[2,188]),e(Fe,[2,51]),e(Fe,[2,54],{46:[1,99]}),e(Ve,[2,72],{113:112,29:[1,100],44:S,48:[1,101],50:[1,102],52:[1,103],54:[1,104],56:[1,105],58:[1,106],60:C,63:[1,107],65:[1,108],67:[1,109],68:[1,110],70:[1,111],89:P,102:M,105:F,106:U,109:$,111:G,114:B,115:Z,116:z}),e(Oe,[2,181]),e(Oe,[2,142]),e(Oe,[2,143]),e(Oe,[2,144]),e(Oe,[2,145]),e(Oe,[2,146]),e(Oe,[2,147]),e(Oe,[2,148]),e(Oe,[2,149]),e(Oe,[2,150]),e(Oe,[2,151]),e(Oe,[2,152]),e(s,[2,12]),e(s,[2,18]),e(s,[2,19]),{9:[1,113]},e(Dt,[2,26],{18:114,10:j}),e(ee,[2,27]),{42:115,43:38,44:S,45:39,47:40,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z},e(ee,[2,40]),e(ee,[2,41]),e(ee,[2,42]),e(ot,[2,76],{73:116,62:[1,118],74:[1,117]}),{76:119,79:120,80:sn,81:Kt,116:Ft,119:Je},{75:[1,125],77:[1,126]},e(ht,[2,83]),e(ee,[2,28]),e(ee,[2,29]),e(ee,[2,30]),e(ee,[2,31]),e(ee,[2,32]),{10:et,12:qe,14:He,27:Ge,28:127,32:Ye,44:Ae,60:Xe,75:fe,80:[1,129],81:[1,130],83:140,84:Qe,85:Ke,86:mt,87:lt,88:$t,89:Ut,90:Jt,91:128,105:wn,109:Vn,111:Wn,114:Dn,115:zn,116:vn},e(Cn,o,{5:153}),e(ee,[2,37]),e(ee,[2,38]),e(ie,[2,48],{44:Ar}),e(ie,[2,49],{18:155,10:j,40:ur}),e(Fe,[2,44]),{44:S,47:157,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z},{102:[1,158],103:159,105:[1,160]},{44:S,47:161,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z},{44:S,47:162,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z},e(On,[2,107],{10:[1,163],96:[1,164]}),{80:[1,165]},e(On,[2,115],{120:167,10:[1,166],14:ce,44:be,60:ve,89:De,105:ye,106:Ee,109:he,111:we,114:Ce,115:Ie,116:Le}),e(On,[2,117],{10:[1,168]}),e(Ir,[2,183]),e(Ir,[2,170]),e(Ir,[2,171]),e(Ir,[2,172]),e(Ir,[2,173]),e(Ir,[2,174]),e(Ir,[2,175]),e(Ir,[2,176]),e(Ir,[2,177]),e(Ir,[2,178]),e(Ir,[2,179]),e(Ir,[2,180]),{44:S,47:169,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z},{30:170,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{30:178,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{30:180,50:[1,179],67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{30:181,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{30:182,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{30:183,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{109:[1,184]},{30:185,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{30:186,65:[1,187],67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{30:188,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{30:189,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{30:190,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},e(Oe,[2,182]),e(s,[2,20]),e(Dt,[2,25]),e(ie,[2,46],{39:191,18:192,10:j,40:ge}),e(ot,[2,73],{10:[1,193]}),{10:[1,194]},{30:195,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{77:[1,196],79:197,116:Ft,119:Je},e(ds,[2,79]),e(ds,[2,81]),e(ds,[2,82]),e(ds,[2,168]),e(ds,[2,169]),{76:198,79:120,80:sn,81:Kt,116:Ft,119:Je},e(ht,[2,84]),{8:te,9:ne,10:et,11:se,12:qe,14:He,21:200,27:Ge,29:[1,199],32:Ye,44:Ae,60:Xe,75:fe,83:140,84:Qe,85:Ke,86:mt,87:lt,88:$t,89:Ut,90:Jt,91:201,105:wn,109:Vn,111:Wn,114:Dn,115:zn,116:vn},e(ta,[2,101]),e(ta,[2,103]),e(ta,[2,104]),e(ta,[2,157]),e(ta,[2,158]),e(ta,[2,159]),e(ta,[2,160]),e(ta,[2,161]),e(ta,[2,162]),e(ta,[2,163]),e(ta,[2,164]),e(ta,[2,165]),e(ta,[2,166]),e(ta,[2,167]),e(ta,[2,90]),e(ta,[2,91]),e(ta,[2,92]),e(ta,[2,93]),e(ta,[2,94]),e(ta,[2,95]),e(ta,[2,96]),e(ta,[2,97]),e(ta,[2,98]),e(ta,[2,99]),e(ta,[2,100]),{6:11,7:12,8:u,9:h,10:f,11:p,20:17,22:18,23:19,24:20,25:21,26:22,27:m,32:[1,202],33:24,34:b,36:_,38:w,42:28,43:38,44:S,45:39,47:40,60:C,84:A,85:k,86:I,87:N,88:L,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z,121:Y,122:W,123:Q,124:V},{10:j,18:203},{44:[1,204]},e(Fe,[2,43]),{10:[1,205],44:S,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:112,114:B,115:Z,116:z},{10:[1,206]},{10:[1,207],106:[1,208]},e(Os,[2,128]),{10:[1,209],44:S,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:112,114:B,115:Z,116:z},{10:[1,210],44:S,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:112,114:B,115:Z,116:z},{80:[1,211]},e(On,[2,109],{10:[1,212]}),e(On,[2,111],{10:[1,213]}),{80:[1,214]},e(Ir,[2,184]),{80:[1,215],98:[1,216]},e(Fe,[2,55],{113:112,44:S,60:C,89:P,102:M,105:F,106:U,109:$,111:G,114:B,115:Z,116:z}),{31:[1,217],67:Ln,82:218,116:Zr,117:Pr,118:Ci},e(uo,[2,86]),e(uo,[2,88]),e(uo,[2,89]),e(uo,[2,153]),e(uo,[2,154]),e(uo,[2,155]),e(uo,[2,156]),{49:[1,219],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{30:220,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{51:[1,221],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{53:[1,222],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{55:[1,223],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{57:[1,224],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{60:[1,225]},{64:[1,226],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{66:[1,227],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{30:228,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},{31:[1,229],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{67:Ln,69:[1,230],71:[1,231],82:218,116:Zr,117:Pr,118:Ci},{67:Ln,69:[1,233],71:[1,232],82:218,116:Zr,117:Pr,118:Ci},e(ie,[2,45],{18:155,10:j,40:ur}),e(ie,[2,47],{44:Ar}),e(ot,[2,75]),e(ot,[2,74]),{62:[1,234],67:Ln,82:218,116:Zr,117:Pr,118:Ci},e(ot,[2,77]),e(ds,[2,80]),{77:[1,235],79:197,116:Ft,119:Je},{30:236,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},e(Cn,o,{5:237}),e(ta,[2,102]),e(ee,[2,35]),{43:238,44:S,45:39,47:40,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z},{10:j,18:239},{10:Ls,60:La,84:to,92:240,105:Fi,107:241,108:242,109:Pt,110:St,111:Un,112:Hr},{10:Ls,60:La,84:to,92:251,104:[1,252],105:Fi,107:241,108:242,109:Pt,110:St,111:Un,112:Hr},{10:Ls,60:La,84:to,92:253,104:[1,254],105:Fi,107:241,108:242,109:Pt,110:St,111:Un,112:Hr},{105:[1,255]},{10:Ls,60:La,84:to,92:256,105:Fi,107:241,108:242,109:Pt,110:St,111:Un,112:Hr},{44:S,47:257,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z},e(On,[2,108]),{80:[1,258]},{80:[1,259],98:[1,260]},e(On,[2,116]),e(On,[2,118],{10:[1,261]}),e(On,[2,119]),e(Ve,[2,56]),e(uo,[2,87]),e(Ve,[2,57]),{51:[1,262],67:Ln,82:218,116:Zr,117:Pr,118:Ci},e(Ve,[2,64]),e(Ve,[2,59]),e(Ve,[2,60]),e(Ve,[2,61]),{109:[1,263]},e(Ve,[2,63]),e(Ve,[2,65]),{66:[1,264],67:Ln,82:218,116:Zr,117:Pr,118:Ci},e(Ve,[2,67]),e(Ve,[2,68]),e(Ve,[2,70]),e(Ve,[2,69]),e(Ve,[2,71]),e([10,44,60,89,102,105,106,109,111,114,115,116],[2,85]),e(ot,[2,78]),{31:[1,265],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{6:11,7:12,8:u,9:h,10:f,11:p,20:17,22:18,23:19,24:20,25:21,26:22,27:m,32:[1,266],33:24,34:b,36:_,38:w,42:28,43:38,44:S,45:39,47:40,60:C,84:A,85:k,86:I,87:N,88:L,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z,121:Y,122:W,123:Q,124:V},e(Fe,[2,53]),{43:267,44:S,45:39,47:40,60:C,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z},e(On,[2,121],{106:za}),e(Rs,[2,130],{108:269,10:Ls,60:La,84:to,105:Fi,109:Pt,110:St,111:Un,112:Hr}),e(Vr,[2,132]),e(Vr,[2,134]),e(Vr,[2,135]),e(Vr,[2,136]),e(Vr,[2,137]),e(Vr,[2,138]),e(Vr,[2,139]),e(Vr,[2,140]),e(Vr,[2,141]),e(On,[2,122],{106:za}),{10:[1,270]},e(On,[2,123],{106:za}),{10:[1,271]},e(Os,[2,129]),e(On,[2,105],{106:za}),e(On,[2,106],{113:112,44:S,60:C,89:P,102:M,105:F,106:U,109:$,111:G,114:B,115:Z,116:z}),e(On,[2,110]),e(On,[2,112],{10:[1,272]}),e(On,[2,113]),{98:[1,273]},{51:[1,274]},{62:[1,275]},{66:[1,276]},{8:te,9:ne,11:se,21:277},e(ee,[2,34]),e(Fe,[2,52]),{10:Ls,60:La,84:to,105:Fi,107:278,108:242,109:Pt,110:St,111:Un,112:Hr},e(Vr,[2,133]),{14:ce,44:be,60:ve,89:De,101:279,105:ye,106:Ee,109:he,111:we,114:Ce,115:Ie,116:Le,120:87},{14:ce,44:be,60:ve,89:De,101:280,105:ye,106:Ee,109:he,111:we,114:Ce,115:Ie,116:Le,120:87},{98:[1,281]},e(On,[2,120]),e(Ve,[2,58]),{30:282,67:Ln,80:pr,81:Cr,82:171,116:Zr,117:Pr,118:Ci},e(Ve,[2,66]),e(Cn,o,{5:283}),e(Rs,[2,131],{108:269,10:Ls,60:La,84:to,105:Fi,109:Pt,110:St,111:Un,112:Hr}),e(On,[2,126],{120:167,10:[1,284],14:ce,44:be,60:ve,89:De,105:ye,106:Ee,109:he,111:we,114:Ce,115:Ie,116:Le}),e(On,[2,127],{120:167,10:[1,285],14:ce,44:be,60:ve,89:De,105:ye,106:Ee,109:he,111:we,114:Ce,115:Ie,116:Le}),e(On,[2,114]),{31:[1,286],67:Ln,82:218,116:Zr,117:Pr,118:Ci},{6:11,7:12,8:u,9:h,10:f,11:p,20:17,22:18,23:19,24:20,25:21,26:22,27:m,32:[1,287],33:24,34:b,36:_,38:w,42:28,43:38,44:S,45:39,47:40,60:C,84:A,85:k,86:I,87:N,88:L,89:P,102:M,105:F,106:U,109:$,111:G,113:41,114:B,115:Z,116:z,121:Y,122:W,123:Q,124:V},{10:Ls,60:La,84:to,92:288,105:Fi,107:241,108:242,109:Pt,110:St,111:Un,112:Hr},{10:Ls,60:La,84:to,92:289,105:Fi,107:241,108:242,109:Pt,110:St,111:Un,112:Hr},e(Ve,[2,62]),e(ee,[2,33]),e(On,[2,124],{106:za}),e(On,[2,125],{106:za})],defaultActions:{},parseError:X(function(dt,Wi){if(Wi.recoverable)this.trace(dt);else{var Tt=new Error(dt);throw Tt.hash=Wi,Tt}},"parseError"),parse:X(function(dt){var Wi=this,Tt=[0],xr=[],qs=[null],Rt=[],Bb=this.table,Gt="",Ds=0,Lm=0,BS=2,eE=1,uL=Rt.slice.call(arguments,1),rd=Object.create(this.lexer),Fh={yy:{}};for(var Fb in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Fb)&&(Fh.yy[Fb]=this.yy[Fb]);rd.setInput(dt,Fh.yy),Fh.yy.lexer=rd,Fh.yy.parser=this,typeof rd.yylloc>"u"&&(rd.yylloc={});var e1=rd.yylloc;Rt.push(e1);var wT=rd.options&&rd.options.ranges;typeof Fh.yy.parseError=="function"?this.parseError=Fh.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function d_(f0){Tt.length=Tt.length-2*f0,qs.length=qs.length-f0,Rt.length=Rt.length-f0}X(d_,"popStack");function tE(){var f0;return f0=xr.pop()||rd.lex()||eE,typeof f0!="number"&&(f0 instanceof Array&&(xr=f0,f0=xr.pop()),f0=Wi.symbols_[f0]||f0),f0}X(tE,"lex");for(var qu,$b,Mf,nE,Pf={},ET,Ub,jA,WA;;){if($b=Tt[Tt.length-1],this.defaultActions[$b]?Mf=this.defaultActions[$b]:((qu===null||typeof qu>"u")&&(qu=tE()),Mf=Bb[$b]&&Bb[$b][qu]),typeof Mf>"u"||!Mf.length||!Mf[0]){var KA="";WA=[];for(ET in Bb[$b])this.terminals_[ET]&&ET>BS&&WA.push("'"+this.terminals_[ET]+"'");rd.showPosition?KA="Parse error on line "+(Ds+1)+`: +`+rd.showPosition()+` +Expecting `+WA.join(", ")+", got '"+(this.terminals_[qu]||qu)+"'":KA="Parse error on line "+(Ds+1)+": Unexpected "+(qu==eE?"end of input":"'"+(this.terminals_[qu]||qu)+"'"),this.parseError(KA,{text:rd.match,token:this.terminals_[qu]||qu,line:rd.yylineno,loc:e1,expected:WA})}if(Mf[0]instanceof Array&&Mf.length>1)throw new Error("Parse Error: multiple actions possible at state: "+$b+", token: "+qu);switch(Mf[0]){case 1:Tt.push(qu),qs.push(rd.yytext),Rt.push(rd.yylloc),Tt.push(Mf[1]),qu=null,Lm=rd.yyleng,Gt=rd.yytext,Ds=rd.yylineno,e1=rd.yylloc;break;case 2:if(Ub=this.productions_[Mf[1]][1],Pf.$=qs[qs.length-Ub],Pf._$={first_line:Rt[Rt.length-(Ub||1)].first_line,last_line:Rt[Rt.length-1].last_line,first_column:Rt[Rt.length-(Ub||1)].first_column,last_column:Rt[Rt.length-1].last_column},wT&&(Pf._$.range=[Rt[Rt.length-(Ub||1)].range[0],Rt[Rt.length-1].range[1]]),nE=this.performAction.apply(Pf,[Gt,Lm,Ds,Fh.yy,Mf[1],qs,Rt].concat(uL)),typeof nE<"u")return nE;Ub&&(Tt=Tt.slice(0,-1*Ub*2),qs=qs.slice(0,-1*Ub),Rt=Rt.slice(0,-1*Ub)),Tt.push(this.productions_[Mf[1]][0]),qs.push(Pf.$),Rt.push(Pf._$),jA=Bb[Tt[Tt.length-2]][Tt[Tt.length-1]],Tt.push(jA);break;case 3:return!0}}return!0},"parse")},Pa=function(){var no={EOF:1,parseError:X(function(Wi,Tt){if(this.yy.parser)this.yy.parser.parseError(Wi,Tt);else throw new Error(Wi)},"parseError"),setInput:X(function(dt,Wi){return this.yy=Wi||this.yy||{},this._input=dt,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var dt=this._input[0];this.yytext+=dt,this.yyleng++,this.offset++,this.match+=dt,this.matched+=dt;var Wi=dt.match(/(?:\r\n?|\n).*/g);return Wi?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),dt},"input"),unput:X(function(dt){var Wi=dt.length,Tt=dt.split(/(?:\r\n?|\n)/g);this._input=dt+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-Wi),this.offset-=Wi;var xr=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Tt.length-1&&(this.yylineno-=Tt.length-1);var qs=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Tt?(Tt.length===xr.length?this.yylloc.first_column:0)+xr[xr.length-Tt.length].length-Tt[0].length:this.yylloc.first_column-Wi},this.options.ranges&&(this.yylloc.range=[qs[0],qs[0]+this.yyleng-Wi]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(dt){this.unput(this.match.slice(dt))},"less"),pastInput:X(function(){var dt=this.matched.substr(0,this.matched.length-this.match.length);return(dt.length>20?"...":"")+dt.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var dt=this.match;return dt.length<20&&(dt+=this._input.substr(0,20-dt.length)),(dt.substr(0,20)+(dt.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var dt=this.pastInput(),Wi=new Array(dt.length+1).join("-");return dt+this.upcomingInput()+` +`+Wi+"^"},"showPosition"),test_match:X(function(dt,Wi){var Tt,xr,qs;if(this.options.backtrack_lexer&&(qs={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(qs.yylloc.range=this.yylloc.range.slice(0))),xr=dt[0].match(/(?:\r\n?|\n).*/g),xr&&(this.yylineno+=xr.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:xr?xr[xr.length-1].length-xr[xr.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+dt[0].length},this.yytext+=dt[0],this.match+=dt[0],this.matches=dt,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(dt[0].length),this.matched+=dt[0],Tt=this.performAction.call(this,this.yy,this,Wi,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Tt)return Tt;if(this._backtrack){for(var Rt in qs)this[Rt]=qs[Rt];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var dt,Wi,Tt,xr;this._more||(this.yytext="",this.match="");for(var qs=this._currentRules(),Rt=0;RtWi[0].length)){if(Wi=Tt,xr=Rt,this.options.backtrack_lexer){if(dt=this.test_match(Tt,qs[Rt]),dt!==!1)return dt;if(this._backtrack){Wi=!1;continue}else return!1}else if(!this.options.flex)break}return Wi?(dt=this.test_match(Wi,qs[xr]),dt!==!1?dt:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var Wi=this.next();return Wi||this.lex()},"lex"),begin:X(function(Wi){this.conditionStack.push(Wi)},"begin"),popState:X(function(){var Wi=this.conditionStack.length-1;return Wi>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(Wi){return Wi=this.conditionStack.length-1-Math.abs(Wi||0),Wi>=0?this.conditionStack[Wi]:"INITIAL"},"topState"),pushState:X(function(Wi){this.begin(Wi)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{},performAction:X(function(Wi,Tt,xr,qs){switch(xr){case 0:return this.begin("acc_title"),34;case 1:return this.popState(),"acc_title_value";case 2:return this.begin("acc_descr"),36;case 3:return this.popState(),"acc_descr_value";case 4:this.begin("acc_descr_multiline");break;case 5:this.popState();break;case 6:return"acc_descr_multiline_value";case 7:return this.pushState("shapeData"),Tt.yytext="",40;case 8:return this.pushState("shapeDataStr"),40;case 9:return this.popState(),40;case 10:const Rt=/\n\s*/g;return Tt.yytext=Tt.yytext.replace(Rt,"
    "),40;case 11:return 40;case 12:this.popState();break;case 13:this.begin("callbackname");break;case 14:this.popState();break;case 15:this.popState(),this.begin("callbackargs");break;case 16:return 95;case 17:this.popState();break;case 18:return 96;case 19:return"MD_STR";case 20:this.popState();break;case 21:this.begin("md_string");break;case 22:return"STR";case 23:this.popState();break;case 24:this.pushState("string");break;case 25:return 84;case 26:return 102;case 27:return 85;case 28:return 104;case 29:return 86;case 30:return 87;case 31:return 97;case 32:this.begin("click");break;case 33:this.popState();break;case 34:return 88;case 35:return Wi.lex.firstGraph()&&this.begin("dir"),12;case 36:return Wi.lex.firstGraph()&&this.begin("dir"),12;case 37:return Wi.lex.firstGraph()&&this.begin("dir"),12;case 38:return 27;case 39:return 32;case 40:return 98;case 41:return 98;case 42:return 98;case 43:return 98;case 44:return this.popState(),13;case 45:return this.popState(),14;case 46:return this.popState(),14;case 47:return this.popState(),14;case 48:return this.popState(),14;case 49:return this.popState(),14;case 50:return this.popState(),14;case 51:return this.popState(),14;case 52:return this.popState(),14;case 53:return this.popState(),14;case 54:return this.popState(),14;case 55:return 121;case 56:return 122;case 57:return 123;case 58:return 124;case 59:return 78;case 60:return 105;case 61:return 111;case 62:return 46;case 63:return 60;case 64:return 44;case 65:return 8;case 66:return 106;case 67:return 115;case 68:return this.popState(),77;case 69:return this.pushState("edgeText"),75;case 70:return 119;case 71:return this.popState(),77;case 72:return this.pushState("thickEdgeText"),75;case 73:return 119;case 74:return this.popState(),77;case 75:return this.pushState("dottedEdgeText"),75;case 76:return 119;case 77:return 77;case 78:return this.popState(),53;case 79:return"TEXT";case 80:return this.pushState("ellipseText"),52;case 81:return this.popState(),55;case 82:return this.pushState("text"),54;case 83:return this.popState(),57;case 84:return this.pushState("text"),56;case 85:return 58;case 86:return this.pushState("text"),67;case 87:return this.popState(),64;case 88:return this.pushState("text"),63;case 89:return this.popState(),49;case 90:return this.pushState("text"),48;case 91:return this.popState(),69;case 92:return this.popState(),71;case 93:return 117;case 94:return this.pushState("trapText"),68;case 95:return this.pushState("trapText"),70;case 96:return 118;case 97:return 67;case 98:return 90;case 99:return"SEP";case 100:return 89;case 101:return 115;case 102:return 111;case 103:return 44;case 104:return 109;case 105:return 114;case 106:return 116;case 107:return this.popState(),62;case 108:return this.pushState("text"),62;case 109:return this.popState(),51;case 110:return this.pushState("text"),50;case 111:return this.popState(),31;case 112:return this.pushState("text"),29;case 113:return this.popState(),66;case 114:return this.pushState("text"),65;case 115:return"TEXT";case 116:return"QUOTE";case 117:return 9;case 118:return 10;case 119:return 11}},"anonymous"),rules:[/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:@\{)/,/^(?:["])/,/^(?:["])/,/^(?:[^\"]+)/,/^(?:[^}^"]+)/,/^(?:\})/,/^(?:call[\s]+)/,/^(?:\([\s]*\))/,/^(?:\()/,/^(?:[^(]*)/,/^(?:\))/,/^(?:[^)]*)/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["][`])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:["])/,/^(?:style\b)/,/^(?:default\b)/,/^(?:linkStyle\b)/,/^(?:interpolate\b)/,/^(?:classDef\b)/,/^(?:class\b)/,/^(?:href[\s])/,/^(?:click[\s]+)/,/^(?:[\s\n])/,/^(?:[^\s\n]*)/,/^(?:flowchart-elk\b)/,/^(?:graph\b)/,/^(?:flowchart\b)/,/^(?:subgraph\b)/,/^(?:end\b\s*)/,/^(?:_self\b)/,/^(?:_blank\b)/,/^(?:_parent\b)/,/^(?:_top\b)/,/^(?:(\r?\n)*\s*\n)/,/^(?:\s*LR\b)/,/^(?:\s*RL\b)/,/^(?:\s*TB\b)/,/^(?:\s*BT\b)/,/^(?:\s*TD\b)/,/^(?:\s*BR\b)/,/^(?:\s*<)/,/^(?:\s*>)/,/^(?:\s*\^)/,/^(?:\s*v\b)/,/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:[^\s\"]+@(?=[^\{\"]))/,/^(?:[0-9]+)/,/^(?:#)/,/^(?::::)/,/^(?::)/,/^(?:&)/,/^(?:;)/,/^(?:,)/,/^(?:\*)/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?--\s*)/,/^(?:[^-]|-(?!-)+)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?==\s*)/,/^(?:[^=]|=(?!))/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?:\s*[xo<]?-\.\s*)/,/^(?:[^\.]|\.(?!))/,/^(?:\s*~~[\~]+\s*)/,/^(?:[-/\)][\)])/,/^(?:[^\(\)\[\]\{\}]|!\)+)/,/^(?:\(-)/,/^(?:\]\))/,/^(?:\(\[)/,/^(?:\]\])/,/^(?:\[\[)/,/^(?:\[\|)/,/^(?:>)/,/^(?:\)\])/,/^(?:\[\()/,/^(?:\)\)\))/,/^(?:\(\(\()/,/^(?:[\\(?=\])][\]])/,/^(?:\/(?=\])\])/,/^(?:\/(?!\])|\\(?!\])|[^\\\[\]\(\)\{\}\/]+)/,/^(?:\[\/)/,/^(?:\[\\)/,/^(?:<)/,/^(?:>)/,/^(?:\^)/,/^(?:\\\|)/,/^(?:v\b)/,/^(?:\*)/,/^(?:#)/,/^(?:&)/,/^(?:([A-Za-z0-9!"\#$%&'*+\.`?\\_\/]|-(?=[^\>\-\.])|(?!))+)/,/^(?:-)/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\|)/,/^(?:\|)/,/^(?:\))/,/^(?:\()/,/^(?:\])/,/^(?:\[)/,/^(?:(\}))/,/^(?:\{)/,/^(?:[^\[\]\(\)\{\}\|\"]+)/,/^(?:")/,/^(?:(\r?\n)+)/,/^(?:\s)/,/^(?:$)/],conditions:{shapeDataEndBracket:{rules:[21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},shapeDataStr:{rules:[9,10,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},shapeData:{rules:[8,11,12,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},callbackargs:{rules:[17,18,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},callbackname:{rules:[14,15,16,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},href:{rules:[21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},click:{rules:[21,24,33,34,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},dottedEdgeText:{rules:[21,24,74,76,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},thickEdgeText:{rules:[21,24,71,73,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},edgeText:{rules:[21,24,68,70,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},trapText:{rules:[21,24,77,80,82,84,88,90,91,92,93,94,95,108,110,112,114],inclusive:!1},ellipseText:{rules:[21,24,77,78,79,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},text:{rules:[21,24,77,80,81,82,83,84,87,88,89,90,94,95,107,108,109,110,111,112,113,114,115],inclusive:!1},vertex:{rules:[21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},dir:{rules:[21,24,44,45,46,47,48,49,50,51,52,53,54,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},acc_descr_multiline:{rules:[5,6,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},acc_descr:{rules:[3,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},acc_title:{rules:[1,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},md_string:{rules:[19,20,21,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},string:{rules:[21,22,23,24,77,80,82,84,88,90,94,95,108,110,112,114],inclusive:!1},INITIAL:{rules:[0,2,4,7,13,21,24,25,26,27,28,29,30,31,32,35,36,37,38,39,40,41,42,43,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,74,75,77,80,82,84,85,86,88,90,94,95,96,97,98,99,100,101,102,103,104,105,106,108,110,112,114,116,117,118,119],inclusive:!0}}};return no}();Ii.lexer=Pa;function Or(){this.yy={}}return X(Or,"Parser"),Or.prototype=Ii,Ii.Parser=Or,new Or}();Sct.parser=Sct;var dYn=Sct,fYn=Object.assign({},dYn);fYn.parse=e=>{const t=e.replace(/}\s*\n/g,`} +`);return dYn.parse(t)};var mLi=fYn,bLi=X((e,t)=>{const r=ece,a=r(e,"r"),s=r(e,"g"),o=r(e,"b");return Z2(a,s,o,t)},"fade"),yLi=X(e=>`.label { + font-family: ${e.fontFamily}; + color: ${e.nodeTextColor||e.textColor}; + } + .cluster-label text { + fill: ${e.titleColor}; + } + .cluster-label span { + color: ${e.titleColor}; + } + .cluster-label span p { + background-color: transparent; + } + + .label text,span { + fill: ${e.nodeTextColor||e.textColor}; + color: ${e.nodeTextColor||e.textColor}; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + .rough-node .label text , .node .label text, .image-shape .label, .icon-shape .label { + text-anchor: middle; + } + // .flowchart-label .text-outer-tspan { + // text-anchor: middle; + // } + // .flowchart-label .text-inner-tspan { + // text-anchor: start; + // } + + .node .katex path { + fill: #000; + stroke: #000; + stroke-width: 1px; + } + + .rough-node .label,.node .label, .image-shape .label, .icon-shape .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + + .root .anchor path { + fill: ${e.lineColor} !important; + stroke-width: 0; + stroke: ${e.lineColor}; + } + + .arrowheadPath { + fill: ${e.arrowheadColor}; + } + + .edgePath .path { + stroke: ${e.lineColor}; + stroke-width: 2.0px; + } + + .flowchart-link { + stroke: ${e.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${e.edgeLabelBackground}; + p { + background-color: ${e.edgeLabelBackground}; + } + rect { + opacity: 0.5; + background-color: ${e.edgeLabelBackground}; + fill: ${e.edgeLabelBackground}; + } + text-align: center; + } + + /* For html labels only */ + .labelBkg { + background-color: ${bLi(e.edgeLabelBackground,.5)}; + // background-color: + } + + .cluster rect { + fill: ${e.clusterBkg}; + stroke: ${e.clusterBorder}; + stroke-width: 1px; + } + + .cluster text { + fill: ${e.titleColor}; + } + + .cluster span { + color: ${e.titleColor}; + } + /* .cluster div { + color: ${e.titleColor}; + } */ + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: ${e.fontFamily}; + font-size: 12px; + background: ${e.tertiaryColor}; + border: 1px solid ${e.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .flowchartTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; + } + + rect.text { + fill: none; + stroke-width: 0; + } + + .icon-shape, .image-shape { + background-color: ${e.edgeLabelBackground}; + p { + background-color: ${e.edgeLabelBackground}; + padding: 2px; + } + rect { + opacity: 0.5; + background-color: ${e.edgeLabelBackground}; + fill: ${e.edgeLabelBackground}; + } + text-align: center; + } + ${Lce()} +`,"getStyles"),vLi=yLi,_Li={parser:mLi,get db(){return new dLi},renderer:gLi,styles:vLi,init:X(e=>{e.flowchart||(e.flowchart={}),e.layout&&yot({layout:e.layout}),e.flowchart.arrowMarkerAbsolute=e.arrowMarkerAbsolute,yot({flowchart:{arrowMarkerAbsolute:e.arrowMarkerAbsolute}})},"init")};const qgt=Object.freeze(Object.defineProperty({__proto__:null,diagram:_Li},Symbol.toStringTag,{value:"Module"}));var Tct=function(){var e=X(function(we,Ce,Ie,Le){for(Ie=Ie||{},Le=we.length;Le--;Ie[we[Le]]=Ce);return Ie},"o"),t=[6,8,10,22,24,26,28,33,34,35,36,37,40,43,44,50],r=[1,10],a=[1,11],s=[1,12],o=[1,13],u=[1,20],h=[1,21],f=[1,22],p=[1,23],m=[1,24],b=[1,19],_=[1,25],w=[1,26],S=[1,18],C=[1,33],A=[1,34],k=[1,35],I=[1,36],N=[1,37],L=[6,8,10,13,15,17,20,21,22,24,26,28,33,34,35,36,37,40,43,44,50,63,64,65,66,67],P=[1,42],M=[1,43],F=[1,52],U=[40,50,68,69],$=[1,63],G=[1,61],B=[1,58],Z=[1,62],z=[1,64],Y=[6,8,10,13,17,22,24,26,28,33,34,35,36,37,40,41,42,43,44,48,49,50,63,64,65,66,67],W=[63,64,65,66,67],Q=[1,81],V=[1,80],j=[1,78],ee=[1,79],te=[6,10,42,47],ne=[6,10,13,41,42,47,48,49],se=[1,89],ie=[1,88],ge=[1,87],ce=[19,56],be=[1,98],ve=[1,97],De=[19,56,58,60],ye={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,ER_DIAGRAM:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NEWLINE:10,entityName:11,relSpec:12,COLON:13,role:14,STYLE_SEPARATOR:15,idList:16,BLOCK_START:17,attributes:18,BLOCK_STOP:19,SQS:20,SQE:21,title:22,title_value:23,acc_title:24,acc_title_value:25,acc_descr:26,acc_descr_value:27,acc_descr_multiline_value:28,direction:29,classDefStatement:30,classStatement:31,styleStatement:32,direction_tb:33,direction_bt:34,direction_rl:35,direction_lr:36,CLASSDEF:37,stylesOpt:38,separator:39,UNICODE_TEXT:40,STYLE_TEXT:41,COMMA:42,CLASS:43,STYLE:44,style:45,styleComponent:46,SEMI:47,NUM:48,BRKT:49,ENTITY_NAME:50,attribute:51,attributeType:52,attributeName:53,attributeKeyTypeList:54,attributeComment:55,ATTRIBUTE_WORD:56,attributeKeyType:57,",":58,ATTRIBUTE_KEY:59,COMMENT:60,cardinality:61,relType:62,ZERO_OR_ONE:63,ZERO_OR_MORE:64,ONE_OR_MORE:65,ONLY_ONE:66,MD_PARENT:67,NON_IDENTIFYING:68,IDENTIFYING:69,WORD:70,$accept:0,$end:1},terminals_:{2:"error",4:"ER_DIAGRAM",6:"EOF",8:"SPACE",10:"NEWLINE",13:"COLON",15:"STYLE_SEPARATOR",17:"BLOCK_START",19:"BLOCK_STOP",20:"SQS",21:"SQE",22:"title",23:"title_value",24:"acc_title",25:"acc_title_value",26:"acc_descr",27:"acc_descr_value",28:"acc_descr_multiline_value",33:"direction_tb",34:"direction_bt",35:"direction_rl",36:"direction_lr",37:"CLASSDEF",40:"UNICODE_TEXT",41:"STYLE_TEXT",42:"COMMA",43:"CLASS",44:"STYLE",47:"SEMI",48:"NUM",49:"BRKT",50:"ENTITY_NAME",56:"ATTRIBUTE_WORD",58:",",59:"ATTRIBUTE_KEY",60:"COMMENT",63:"ZERO_OR_ONE",64:"ZERO_OR_MORE",65:"ONE_OR_MORE",66:"ONLY_ONE",67:"MD_PARENT",68:"NON_IDENTIFYING",69:"IDENTIFYING",70:"WORD"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[9,5],[9,9],[9,7],[9,7],[9,4],[9,6],[9,3],[9,5],[9,1],[9,3],[9,7],[9,9],[9,6],[9,8],[9,4],[9,6],[9,2],[9,2],[9,2],[9,1],[9,1],[9,1],[9,1],[9,1],[29,1],[29,1],[29,1],[29,1],[30,4],[16,1],[16,1],[16,3],[16,3],[31,3],[32,4],[38,1],[38,3],[45,1],[45,2],[39,1],[39,1],[39,1],[46,1],[46,1],[46,1],[46,1],[11,1],[11,1],[18,1],[18,2],[51,2],[51,3],[51,3],[51,4],[52,1],[53,1],[54,1],[54,3],[57,1],[55,1],[12,3],[61,1],[61,1],[61,1],[61,1],[61,1],[62,1],[62,1],[14,1],[14,1],[14,1]],performAction:X(function(Ce,Ie,Le,Fe,Ve,Oe,Dt){var ot=Oe.length-1;switch(Ve){case 1:break;case 2:this.$=[];break;case 3:Oe[ot-1].push(Oe[ot]),this.$=Oe[ot-1];break;case 4:case 5:this.$=Oe[ot];break;case 6:case 7:this.$=[];break;case 8:Fe.addEntity(Oe[ot-4]),Fe.addEntity(Oe[ot-2]),Fe.addRelationship(Oe[ot-4],Oe[ot],Oe[ot-2],Oe[ot-3]);break;case 9:Fe.addEntity(Oe[ot-8]),Fe.addEntity(Oe[ot-4]),Fe.addRelationship(Oe[ot-8],Oe[ot],Oe[ot-4],Oe[ot-5]),Fe.setClass([Oe[ot-8]],Oe[ot-6]),Fe.setClass([Oe[ot-4]],Oe[ot-2]);break;case 10:Fe.addEntity(Oe[ot-6]),Fe.addEntity(Oe[ot-2]),Fe.addRelationship(Oe[ot-6],Oe[ot],Oe[ot-2],Oe[ot-3]),Fe.setClass([Oe[ot-6]],Oe[ot-4]);break;case 11:Fe.addEntity(Oe[ot-6]),Fe.addEntity(Oe[ot-4]),Fe.addRelationship(Oe[ot-6],Oe[ot],Oe[ot-4],Oe[ot-5]),Fe.setClass([Oe[ot-4]],Oe[ot-2]);break;case 12:Fe.addEntity(Oe[ot-3]),Fe.addAttributes(Oe[ot-3],Oe[ot-1]);break;case 13:Fe.addEntity(Oe[ot-5]),Fe.addAttributes(Oe[ot-5],Oe[ot-1]),Fe.setClass([Oe[ot-5]],Oe[ot-3]);break;case 14:Fe.addEntity(Oe[ot-2]);break;case 15:Fe.addEntity(Oe[ot-4]),Fe.setClass([Oe[ot-4]],Oe[ot-2]);break;case 16:Fe.addEntity(Oe[ot]);break;case 17:Fe.addEntity(Oe[ot-2]),Fe.setClass([Oe[ot-2]],Oe[ot]);break;case 18:Fe.addEntity(Oe[ot-6],Oe[ot-4]),Fe.addAttributes(Oe[ot-6],Oe[ot-1]);break;case 19:Fe.addEntity(Oe[ot-8],Oe[ot-6]),Fe.addAttributes(Oe[ot-8],Oe[ot-1]),Fe.setClass([Oe[ot-8]],Oe[ot-3]);break;case 20:Fe.addEntity(Oe[ot-5],Oe[ot-3]);break;case 21:Fe.addEntity(Oe[ot-7],Oe[ot-5]),Fe.setClass([Oe[ot-7]],Oe[ot-2]);break;case 22:Fe.addEntity(Oe[ot-3],Oe[ot-1]);break;case 23:Fe.addEntity(Oe[ot-5],Oe[ot-3]),Fe.setClass([Oe[ot-5]],Oe[ot]);break;case 24:case 25:this.$=Oe[ot].trim(),Fe.setAccTitle(this.$);break;case 26:case 27:this.$=Oe[ot].trim(),Fe.setAccDescription(this.$);break;case 32:Fe.setDirection("TB");break;case 33:Fe.setDirection("BT");break;case 34:Fe.setDirection("RL");break;case 35:Fe.setDirection("LR");break;case 36:this.$=Oe[ot-3],Fe.addClass(Oe[ot-2],Oe[ot-1]);break;case 37:case 38:case 56:case 64:this.$=[Oe[ot]];break;case 39:case 40:this.$=Oe[ot-2].concat([Oe[ot]]);break;case 41:this.$=Oe[ot-2],Fe.setClass(Oe[ot-1],Oe[ot]);break;case 42:this.$=Oe[ot-3],Fe.addCssStyles(Oe[ot-2],Oe[ot-1]);break;case 43:this.$=[Oe[ot]];break;case 44:Oe[ot-2].push(Oe[ot]),this.$=Oe[ot-2];break;case 46:this.$=Oe[ot-1]+Oe[ot];break;case 54:case 76:case 77:this.$=Oe[ot].replace(/"/g,"");break;case 55:case 78:this.$=Oe[ot];break;case 57:Oe[ot].push(Oe[ot-1]),this.$=Oe[ot];break;case 58:this.$={type:Oe[ot-1],name:Oe[ot]};break;case 59:this.$={type:Oe[ot-2],name:Oe[ot-1],keys:Oe[ot]};break;case 60:this.$={type:Oe[ot-2],name:Oe[ot-1],comment:Oe[ot]};break;case 61:this.$={type:Oe[ot-3],name:Oe[ot-2],keys:Oe[ot-1],comment:Oe[ot]};break;case 62:case 63:case 66:this.$=Oe[ot];break;case 65:Oe[ot-2].push(Oe[ot]),this.$=Oe[ot-2];break;case 67:this.$=Oe[ot].replace(/"/g,"");break;case 68:this.$={cardA:Oe[ot],relType:Oe[ot-1],cardB:Oe[ot-2]};break;case 69:this.$=Fe.Cardinality.ZERO_OR_ONE;break;case 70:this.$=Fe.Cardinality.ZERO_OR_MORE;break;case 71:this.$=Fe.Cardinality.ONE_OR_MORE;break;case 72:this.$=Fe.Cardinality.ONLY_ONE;break;case 73:this.$=Fe.Cardinality.MD_PARENT;break;case 74:this.$=Fe.Identification.NON_IDENTIFYING;break;case 75:this.$=Fe.Identification.IDENTIFYING;break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},e(t,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:9,22:r,24:a,26:s,28:o,29:14,30:15,31:16,32:17,33:u,34:h,35:f,36:p,37:m,40:b,43:_,44:w,50:S},e(t,[2,7],{1:[2,1]}),e(t,[2,3]),{9:27,11:9,22:r,24:a,26:s,28:o,29:14,30:15,31:16,32:17,33:u,34:h,35:f,36:p,37:m,40:b,43:_,44:w,50:S},e(t,[2,5]),e(t,[2,6]),e(t,[2,16],{12:28,61:32,15:[1,29],17:[1,30],20:[1,31],63:C,64:A,65:k,66:I,67:N}),{23:[1,38]},{25:[1,39]},{27:[1,40]},e(t,[2,27]),e(t,[2,28]),e(t,[2,29]),e(t,[2,30]),e(t,[2,31]),e(L,[2,54]),e(L,[2,55]),e(t,[2,32]),e(t,[2,33]),e(t,[2,34]),e(t,[2,35]),{16:41,40:P,41:M},{16:44,40:P,41:M},{16:45,40:P,41:M},e(t,[2,4]),{11:46,40:b,50:S},{16:47,40:P,41:M},{18:48,19:[1,49],51:50,52:51,56:F},{11:53,40:b,50:S},{62:54,68:[1,55],69:[1,56]},e(U,[2,69]),e(U,[2,70]),e(U,[2,71]),e(U,[2,72]),e(U,[2,73]),e(t,[2,24]),e(t,[2,25]),e(t,[2,26]),{13:$,38:57,41:G,42:B,45:59,46:60,48:Z,49:z},e(Y,[2,37]),e(Y,[2,38]),{16:65,40:P,41:M,42:B},{13:$,38:66,41:G,42:B,45:59,46:60,48:Z,49:z},{13:[1,67],15:[1,68]},e(t,[2,17],{61:32,12:69,17:[1,70],42:B,63:C,64:A,65:k,66:I,67:N}),{19:[1,71]},e(t,[2,14]),{18:72,19:[2,56],51:50,52:51,56:F},{53:73,56:[1,74]},{56:[2,62]},{21:[1,75]},{61:76,63:C,64:A,65:k,66:I,67:N},e(W,[2,74]),e(W,[2,75]),{6:Q,10:V,39:77,42:j,47:ee},{40:[1,82],41:[1,83]},e(te,[2,43],{46:84,13:$,41:G,48:Z,49:z}),e(ne,[2,45]),e(ne,[2,50]),e(ne,[2,51]),e(ne,[2,52]),e(ne,[2,53]),e(t,[2,41],{42:B}),{6:Q,10:V,39:85,42:j,47:ee},{14:86,40:se,50:ie,70:ge},{16:90,40:P,41:M},{11:91,40:b,50:S},{18:92,19:[1,93],51:50,52:51,56:F},e(t,[2,12]),{19:[2,57]},e(ce,[2,58],{54:94,55:95,57:96,59:be,60:ve}),e([19,56,59,60],[2,63]),e(t,[2,22],{15:[1,100],17:[1,99]}),e([40,50],[2,68]),e(t,[2,36]),{13:$,41:G,45:101,46:60,48:Z,49:z},e(t,[2,47]),e(t,[2,48]),e(t,[2,49]),e(Y,[2,39]),e(Y,[2,40]),e(ne,[2,46]),e(t,[2,42]),e(t,[2,8]),e(t,[2,76]),e(t,[2,77]),e(t,[2,78]),{13:[1,102],42:B},{13:[1,104],15:[1,103]},{19:[1,105]},e(t,[2,15]),e(ce,[2,59],{55:106,58:[1,107],60:ve}),e(ce,[2,60]),e(De,[2,64]),e(ce,[2,67]),e(De,[2,66]),{18:108,19:[1,109],51:50,52:51,56:F},{16:110,40:P,41:M},e(te,[2,44],{46:84,13:$,41:G,48:Z,49:z}),{14:111,40:se,50:ie,70:ge},{16:112,40:P,41:M},{14:113,40:se,50:ie,70:ge},e(t,[2,13]),e(ce,[2,61]),{57:114,59:be},{19:[1,115]},e(t,[2,20]),e(t,[2,23],{17:[1,116],42:B}),e(t,[2,11]),{13:[1,117],42:B},e(t,[2,10]),e(De,[2,65]),e(t,[2,18]),{18:118,19:[1,119],51:50,52:51,56:F},{14:120,40:se,50:ie,70:ge},{19:[1,121]},e(t,[2,21]),e(t,[2,9]),e(t,[2,19])],defaultActions:{52:[2,62],72:[2,57]},parseError:X(function(Ce,Ie){if(Ie.recoverable)this.trace(Ce);else{var Le=new Error(Ce);throw Le.hash=Ie,Le}},"parseError"),parse:X(function(Ce){var Ie=this,Le=[0],Fe=[],Ve=[null],Oe=[],Dt=this.table,ot="",sn=0,Kt=0,Ft=2,Je=1,ht=Oe.slice.call(arguments,1),et=Object.create(this.lexer),qe={yy:{}};for(var He in this.yy)Object.prototype.hasOwnProperty.call(this.yy,He)&&(qe.yy[He]=this.yy[He]);et.setInput(Ce,qe.yy),qe.yy.lexer=et,qe.yy.parser=this,typeof et.yylloc>"u"&&(et.yylloc={});var Ge=et.yylloc;Oe.push(Ge);var Ye=et.options&&et.options.ranges;typeof qe.yy.parseError=="function"?this.parseError=qe.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Ae(Wn){Le.length=Le.length-2*Wn,Ve.length=Ve.length-Wn,Oe.length=Oe.length-Wn}X(Ae,"popStack");function Xe(){var Wn;return Wn=Fe.pop()||et.lex()||Je,typeof Wn!="number"&&(Wn instanceof Array&&(Fe=Wn,Wn=Fe.pop()),Wn=Ie.symbols_[Wn]||Wn),Wn}X(Xe,"lex");for(var fe,Qe,Ke,mt,lt={},$t,Ut,Jt,wn;;){if(Qe=Le[Le.length-1],this.defaultActions[Qe]?Ke=this.defaultActions[Qe]:((fe===null||typeof fe>"u")&&(fe=Xe()),Ke=Dt[Qe]&&Dt[Qe][fe]),typeof Ke>"u"||!Ke.length||!Ke[0]){var Vn="";wn=[];for($t in Dt[Qe])this.terminals_[$t]&&$t>Ft&&wn.push("'"+this.terminals_[$t]+"'");et.showPosition?Vn="Parse error on line "+(sn+1)+`: +`+et.showPosition()+` +Expecting `+wn.join(", ")+", got '"+(this.terminals_[fe]||fe)+"'":Vn="Parse error on line "+(sn+1)+": Unexpected "+(fe==Je?"end of input":"'"+(this.terminals_[fe]||fe)+"'"),this.parseError(Vn,{text:et.match,token:this.terminals_[fe]||fe,line:et.yylineno,loc:Ge,expected:wn})}if(Ke[0]instanceof Array&&Ke.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Qe+", token: "+fe);switch(Ke[0]){case 1:Le.push(fe),Ve.push(et.yytext),Oe.push(et.yylloc),Le.push(Ke[1]),fe=null,Kt=et.yyleng,ot=et.yytext,sn=et.yylineno,Ge=et.yylloc;break;case 2:if(Ut=this.productions_[Ke[1]][1],lt.$=Ve[Ve.length-Ut],lt._$={first_line:Oe[Oe.length-(Ut||1)].first_line,last_line:Oe[Oe.length-1].last_line,first_column:Oe[Oe.length-(Ut||1)].first_column,last_column:Oe[Oe.length-1].last_column},Ye&&(lt._$.range=[Oe[Oe.length-(Ut||1)].range[0],Oe[Oe.length-1].range[1]]),mt=this.performAction.apply(lt,[ot,Kt,sn,qe.yy,Ke[1],Ve,Oe].concat(ht)),typeof mt<"u")return mt;Ut&&(Le=Le.slice(0,-1*Ut*2),Ve=Ve.slice(0,-1*Ut),Oe=Oe.slice(0,-1*Ut)),Le.push(this.productions_[Ke[1]][0]),Ve.push(lt.$),Oe.push(lt._$),Jt=Dt[Le[Le.length-2]][Le[Le.length-1]],Le.push(Jt);break;case 3:return!0}}return!0},"parse")},Ee=function(){var we={EOF:1,parseError:X(function(Ie,Le){if(this.yy.parser)this.yy.parser.parseError(Ie,Le);else throw new Error(Ie)},"parseError"),setInput:X(function(Ce,Ie){return this.yy=Ie||this.yy||{},this._input=Ce,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var Ce=this._input[0];this.yytext+=Ce,this.yyleng++,this.offset++,this.match+=Ce,this.matched+=Ce;var Ie=Ce.match(/(?:\r\n?|\n).*/g);return Ie?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Ce},"input"),unput:X(function(Ce){var Ie=Ce.length,Le=Ce.split(/(?:\r\n?|\n)/g);this._input=Ce+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-Ie),this.offset-=Ie;var Fe=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Le.length-1&&(this.yylineno-=Le.length-1);var Ve=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Le?(Le.length===Fe.length?this.yylloc.first_column:0)+Fe[Fe.length-Le.length].length-Le[0].length:this.yylloc.first_column-Ie},this.options.ranges&&(this.yylloc.range=[Ve[0],Ve[0]+this.yyleng-Ie]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(Ce){this.unput(this.match.slice(Ce))},"less"),pastInput:X(function(){var Ce=this.matched.substr(0,this.matched.length-this.match.length);return(Ce.length>20?"...":"")+Ce.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var Ce=this.match;return Ce.length<20&&(Ce+=this._input.substr(0,20-Ce.length)),(Ce.substr(0,20)+(Ce.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var Ce=this.pastInput(),Ie=new Array(Ce.length+1).join("-");return Ce+this.upcomingInput()+` +`+Ie+"^"},"showPosition"),test_match:X(function(Ce,Ie){var Le,Fe,Ve;if(this.options.backtrack_lexer&&(Ve={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Ve.yylloc.range=this.yylloc.range.slice(0))),Fe=Ce[0].match(/(?:\r\n?|\n).*/g),Fe&&(this.yylineno+=Fe.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:Fe?Fe[Fe.length-1].length-Fe[Fe.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Ce[0].length},this.yytext+=Ce[0],this.match+=Ce[0],this.matches=Ce,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Ce[0].length),this.matched+=Ce[0],Le=this.performAction.call(this,this.yy,this,Ie,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Le)return Le;if(this._backtrack){for(var Oe in Ve)this[Oe]=Ve[Oe];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Ce,Ie,Le,Fe;this._more||(this.yytext="",this.match="");for(var Ve=this._currentRules(),Oe=0;OeIe[0].length)){if(Ie=Le,Fe=Oe,this.options.backtrack_lexer){if(Ce=this.test_match(Le,Ve[Oe]),Ce!==!1)return Ce;if(this._backtrack){Ie=!1;continue}else return!1}else if(!this.options.flex)break}return Ie?(Ce=this.test_match(Ie,Ve[Fe]),Ce!==!1?Ce:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var Ie=this.next();return Ie||this.lex()},"lex"),begin:X(function(Ie){this.conditionStack.push(Ie)},"begin"),popState:X(function(){var Ie=this.conditionStack.length-1;return Ie>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(Ie){return Ie=this.conditionStack.length-1-Math.abs(Ie||0),Ie>=0?this.conditionStack[Ie]:"INITIAL"},"topState"),pushState:X(function(Ie){this.begin(Ie)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(Ie,Le,Fe,Ve){switch(Fe){case 0:return this.begin("acc_title"),24;case 1:return this.popState(),"acc_title_value";case 2:return this.begin("acc_descr"),26;case 3:return this.popState(),"acc_descr_value";case 4:this.begin("acc_descr_multiline");break;case 5:this.popState();break;case 6:return"acc_descr_multiline_value";case 7:return 33;case 8:return 34;case 9:return 35;case 10:return 36;case 11:return 10;case 12:break;case 13:return 8;case 14:return 50;case 15:return 70;case 16:return 4;case 17:return this.begin("block"),17;case 18:return 49;case 19:return 49;case 20:return 42;case 21:return 15;case 22:return 13;case 23:break;case 24:return 59;case 25:return 56;case 26:return 56;case 27:return 60;case 28:break;case 29:return this.popState(),19;case 30:return Le.yytext[0];case 31:return 20;case 32:return 21;case 33:return this.begin("style"),44;case 34:return this.popState(),10;case 35:break;case 36:return 13;case 37:return 42;case 38:return 49;case 39:return this.begin("style"),37;case 40:return 43;case 41:return 63;case 42:return 65;case 43:return 65;case 44:return 65;case 45:return 63;case 46:return 63;case 47:return 64;case 48:return 64;case 49:return 64;case 50:return 64;case 51:return 64;case 52:return 65;case 53:return 64;case 54:return 65;case 55:return 66;case 56:return 66;case 57:return 66;case 58:return 66;case 59:return 63;case 60:return 64;case 61:return 65;case 62:return 67;case 63:return 68;case 64:return 69;case 65:return 69;case 66:return 68;case 67:return 68;case 68:return 68;case 69:return 41;case 70:return 47;case 71:return 40;case 72:return 48;case 73:return Le.yytext[0];case 74:return 6}},"anonymous"),rules:[/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:[\s]+)/i,/^(?:"[^"%\r\n\v\b\\]+")/i,/^(?:"[^"]*")/i,/^(?:erDiagram\b)/i,/^(?:\{)/i,/^(?:#)/i,/^(?:#)/i,/^(?:,)/i,/^(?::::)/i,/^(?::)/i,/^(?:\s+)/i,/^(?:\b((?:PK)|(?:FK)|(?:UK))\b)/i,/^(?:([^\s]*)[~].*[~]([^\s]*))/i,/^(?:([\*A-Za-z_\u00C0-\uFFFF][A-Za-z0-9\-\_\[\]\(\)\u00C0-\uFFFF\*]*))/i,/^(?:"[^"]*")/i,/^(?:[\n]+)/i,/^(?:\})/i,/^(?:.)/i,/^(?:\[)/i,/^(?:\])/i,/^(?:style\b)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?::)/i,/^(?:,)/i,/^(?:#)/i,/^(?:classDef\b)/i,/^(?:class\b)/i,/^(?:one or zero\b)/i,/^(?:one or more\b)/i,/^(?:one or many\b)/i,/^(?:1\+)/i,/^(?:\|o\b)/i,/^(?:zero or one\b)/i,/^(?:zero or more\b)/i,/^(?:zero or many\b)/i,/^(?:0\+)/i,/^(?:\}o\b)/i,/^(?:many\(0\))/i,/^(?:many\(1\))/i,/^(?:many\b)/i,/^(?:\}\|)/i,/^(?:one\b)/i,/^(?:only one\b)/i,/^(?:1\b)/i,/^(?:\|\|)/i,/^(?:o\|)/i,/^(?:o\{)/i,/^(?:\|\{)/i,/^(?:\s*u\b)/i,/^(?:\.\.)/i,/^(?:--)/i,/^(?:to\b)/i,/^(?:optionally to\b)/i,/^(?:\.-)/i,/^(?:-\.)/i,/^(?:([^\x00-\x7F]|\w|-|\*)+)/i,/^(?:;)/i,/^(?:([^\x00-\x7F]|\w|-|\*)+)/i,/^(?:[0-9])/i,/^(?:.)/i,/^(?:$)/i],conditions:{style:{rules:[34,35,36,37,38,69,70],inclusive:!1},acc_descr_multiline:{rules:[5,6],inclusive:!1},acc_descr:{rules:[3],inclusive:!1},acc_title:{rules:[1],inclusive:!1},block:{rules:[23,24,25,26,27,28,29,30],inclusive:!1},INITIAL:{rules:[0,2,4,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,31,32,33,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,71,72,73,74],inclusive:!0}}};return we}();ye.lexer=Ee;function he(){this.yy={}}return X(he,"Parser"),he.prototype=ye,ye.Parser=he,new he}();Tct.parser=Tct;var wLi=Tct,TY,ELi=(TY=class{constructor(){this.entities=new Map,this.relationships=[],this.classes=new Map,this.direction="TB",this.Cardinality={ZERO_OR_ONE:"ZERO_OR_ONE",ZERO_OR_MORE:"ZERO_OR_MORE",ONE_OR_MORE:"ONE_OR_MORE",ONLY_ONE:"ONLY_ONE",MD_PARENT:"MD_PARENT"},this.Identification={NON_IDENTIFYING:"NON_IDENTIFYING",IDENTIFYING:"IDENTIFYING"},this.setAccTitle=N1,this.getAccTitle=Mp,this.setAccDescription=Pp,this.getAccDescription=Bp,this.setDiagramTitle=Og,this.getDiagramTitle=P1,this.getConfig=X(()=>nn().er,"getConfig"),this.clear(),this.addEntity=this.addEntity.bind(this),this.addAttributes=this.addAttributes.bind(this),this.addRelationship=this.addRelationship.bind(this),this.setDirection=this.setDirection.bind(this),this.addCssStyles=this.addCssStyles.bind(this),this.addClass=this.addClass.bind(this),this.setClass=this.setClass.bind(this),this.setAccTitle=this.setAccTitle.bind(this),this.setAccDescription=this.setAccDescription.bind(this)}addEntity(t,r=""){var a;return this.entities.has(t)?!((a=this.entities.get(t))!=null&&a.alias)&&r&&(this.entities.get(t).alias=r,it.info(`Add alias '${r}' to entity '${t}'`)):(this.entities.set(t,{id:`entity-${t}-${this.entities.size}`,label:t,attributes:[],alias:r,shape:"erBox",look:nn().look??"default",cssClasses:"default",cssStyles:[]}),it.info("Added new entity :",t)),this.entities.get(t)}getEntity(t){return this.entities.get(t)}getEntities(){return this.entities}getClasses(){return this.classes}addAttributes(t,r){const a=this.addEntity(t);let s;for(s=r.length-1;s>=0;s--)r[s].keys||(r[s].keys=[]),r[s].comment||(r[s].comment=""),a.attributes.push(r[s]),it.debug("Added attribute ",r[s].name)}addRelationship(t,r,a,s){const o=this.entities.get(t),u=this.entities.get(a);if(!o||!u)return;const h={entityA:o.id,roleA:r,entityB:u.id,relSpec:s};this.relationships.push(h),it.debug("Added new relationship :",h)}getRelationships(){return this.relationships}getDirection(){return this.direction}setDirection(t){this.direction=t}getCompiledStyles(t){let r=[];for(const a of t){const s=this.classes.get(a);s!=null&&s.styles&&(r=[...r,...s.styles??[]].map(o=>o.trim())),s!=null&&s.textStyles&&(r=[...r,...s.textStyles??[]].map(o=>o.trim()))}return r}addCssStyles(t,r){for(const a of t){const s=this.entities.get(a);if(!r||!s)return;for(const o of r)s.cssStyles.push(o)}}addClass(t,r){t.forEach(a=>{let s=this.classes.get(a);s===void 0&&(s={id:a,styles:[],textStyles:[]},this.classes.set(a,s)),r&&r.forEach(function(o){if(/color/.exec(o)){const u=o.replace("fill","bgFill");s.textStyles.push(u)}s.styles.push(o)})})}setClass(t,r){for(const a of t){const s=this.entities.get(a);if(s)for(const o of r)s.cssClasses+=" "+o}}clear(){this.entities=new Map,this.classes=new Map,this.relationships=[],M1()}getData(){const t=[],r=[],a=nn();for(const o of this.entities.keys()){const u=this.entities.get(o);u&&(u.cssCompiledStyles=this.getCompiledStyles(u.cssClasses.split(" ")),t.push(u))}let s=0;for(const o of this.relationships){const u={id:XV(o.entityA,o.entityB,{prefix:"id",counter:s++}),type:"normal",curve:"basis",start:o.entityA,end:o.entityB,label:o.roleA,labelpos:"c",thickness:"normal",classes:"relationshipLine",arrowTypeStart:o.relSpec.cardB.toLowerCase(),arrowTypeEnd:o.relSpec.cardA.toLowerCase(),pattern:o.relSpec.relType=="IDENTIFYING"?"solid":"dashed",look:a.look};r.push(u)}return{nodes:t,edges:r,other:{},config:a,direction:"TB"}}},X(TY,"ErDB"),TY),pYn={};KCe(pYn,{draw:()=>xLi});var xLi=X(async function(e,t,r,a){it.info("REF0:"),it.info("Drawing er diagram (unified)",t);const{securityLevel:s,er:o,layout:u}=nn(),h=a.db.getData(),f=eK(t,s);h.type=a.type,h.layoutAlgorithm=hce(u),h.config.flowchart.nodeSpacing=(o==null?void 0:o.nodeSpacing)||140,h.config.flowchart.rankSpacing=(o==null?void 0:o.rankSpacing)||80,h.direction=a.db.getDirection(),h.markers=["only_one","zero_or_one","one_or_more","zero_or_more"],h.diagramId=t,await $W(h,f),h.layoutAlgorithm==="elk"&&f.select(".edges").lower();const p=f.selectAll('[id*="-background"]');Array.from(p).length>0&&p.each(function(){const b=gn(this),w=b.attr("id").replace("-background",""),S=f.select(`#${CSS.escape(w)}`);if(!S.empty()){const C=S.attr("transform");b.attr("transform",C)}});const m=8;Vo.insertTitle(f,"erDiagramTitleText",(o==null?void 0:o.titleTopMargin)??25,a.db.getDiagramTitle()),U$(f,m,"erDiagram",(o==null?void 0:o.useMaxWidth)??!0)},"draw"),SLi=X((e,t)=>{const r=ece,a=r(e,"r"),s=r(e,"g"),o=r(e,"b");return Z2(a,s,o,t)},"fade"),TLi=X(e=>` + .entityBox { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + } + + .relationshipLabelBox { + fill: ${e.tertiaryColor}; + opacity: 0.7; + background-color: ${e.tertiaryColor}; + rect { + opacity: 0.5; + } + } + + .labelBkg { + background-color: ${SLi(e.tertiaryColor,.5)}; + } + + .edgeLabel .label { + fill: ${e.nodeBorder}; + font-size: 14px; + } + + .label { + font-family: ${e.fontFamily}; + color: ${e.nodeTextColor||e.textColor}; + } + + .edge-pattern-dashed { + stroke-dasharray: 8,8; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon + { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + + .relationshipLine { + stroke: ${e.lineColor}; + stroke-width: 1; + fill: none; + } + + .marker { + fill: none !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; + } +`,"getStyles"),CLi=TLi,ALi={parser:wLi,get db(){return new ELi},renderer:pYn,styles:CLi};const kLi=Object.freeze(Object.defineProperty({__proto__:null,diagram:ALi},Symbol.toStringTag,{value:"Module"}));function z$(e,t){var r,a,s;e.accDescr&&((r=t.setAccDescription)==null||r.call(t,e.accDescr)),e.accTitle&&((a=t.setAccTitle)==null||a.call(t,e.accTitle)),e.title&&((s=t.setDiagramTitle)==null||s.call(t,e.title))}X(z$,"populateCommonDb");var CY,gYn=(CY=class{constructor(t){this.init=t,this.records=this.init()}reset(){this.records=this.init()}},X(CY,"ImperativeState"),CY);function Eb(e){return typeof e=="object"&&e!==null&&typeof e.$type=="string"}function eA(e){return typeof e=="object"&&e!==null&&typeof e.$refText=="string"}function RLi(e){return typeof e=="object"&&e!==null&&typeof e.name=="string"&&typeof e.type=="string"&&typeof e.path=="string"}function Oxe(e){return typeof e=="object"&&e!==null&&Eb(e.container)&&eA(e.reference)&&typeof e.message=="string"}class mYn{constructor(){this.subtypes={},this.allSubtypes={}}isInstance(t,r){return Eb(t)&&this.isSubtype(t.$type,r)}isSubtype(t,r){if(t===r)return!0;let a=this.subtypes[t];a||(a=this.subtypes[t]={});const s=a[r];if(s!==void 0)return s;{const o=this.computeIsSubtype(t,r);return a[r]=o,o}}getAllSubTypes(t){const r=this.allSubtypes[t];if(r)return r;{const a=this.getAllTypes(),s=[];for(const o of a)this.isSubtype(o,t)&&s.push(o);return this.allSubtypes[t]=s,s}}}function Zoe(e){return typeof e=="object"&&e!==null&&Array.isArray(e.content)}function bYn(e){return typeof e=="object"&&e!==null&&typeof e.tokenType=="object"}function yYn(e){return Zoe(e)&&typeof e.fullText=="string"}class ym{constructor(t,r){this.startFn=t,this.nextFn=r}iterator(){const t={state:this.startFn(),next:()=>this.nextFn(t.state),[Symbol.iterator]:()=>t};return t}[Symbol.iterator](){return this.iterator()}isEmpty(){return!!this.iterator().next().done}count(){const t=this.iterator();let r=0,a=t.next();for(;!a.done;)r++,a=t.next();return r}toArray(){const t=[],r=this.iterator();let a;do a=r.next(),a.value!==void 0&&t.push(a.value);while(!a.done);return t}toSet(){return new Set(this)}toMap(t,r){const a=this.map(s=>[t?t(s):s,r?r(s):s]);return new Map(a)}toString(){return this.join()}concat(t){return new ym(()=>({first:this.startFn(),firstDone:!1,iterator:t[Symbol.iterator]()}),r=>{let a;if(!r.firstDone){do if(a=this.nextFn(r.first),!a.done)return a;while(!a.done);r.firstDone=!0}do if(a=r.iterator.next(),!a.done)return a;while(!a.done);return Cw})}join(t=","){const r=this.iterator();let a="",s,o=!1;do s=r.next(),s.done||(o&&(a+=t),a+=ILi(s.value)),o=!0;while(!s.done);return a}indexOf(t,r=0){const a=this.iterator();let s=0,o=a.next();for(;!o.done;){if(s>=r&&o.value===t)return s;o=a.next(),s++}return-1}every(t){const r=this.iterator();let a=r.next();for(;!a.done;){if(!t(a.value))return!1;a=r.next()}return!0}some(t){const r=this.iterator();let a=r.next();for(;!a.done;){if(t(a.value))return!0;a=r.next()}return!1}forEach(t){const r=this.iterator();let a=0,s=r.next();for(;!s.done;)t(s.value,a),s=r.next(),a++}map(t){return new ym(this.startFn,r=>{const{done:a,value:s}=this.nextFn(r);return a?Cw:{done:!1,value:t(s)}})}filter(t){return new ym(this.startFn,r=>{let a;do if(a=this.nextFn(r),!a.done&&t(a.value))return a;while(!a.done);return Cw})}nonNullable(){return this.filter(t=>t!=null)}reduce(t,r){const a=this.iterator();let s=r,o=a.next();for(;!o.done;)s===void 0?s=o.value:s=t(s,o.value),o=a.next();return s}reduceRight(t,r){return this.recursiveReduce(this.iterator(),t,r)}recursiveReduce(t,r,a){const s=t.next();if(s.done)return a;const o=this.recursiveReduce(t,r,a);return o===void 0?s.value:r(o,s.value)}find(t){const r=this.iterator();let a=r.next();for(;!a.done;){if(t(a.value))return a.value;a=r.next()}}findIndex(t){const r=this.iterator();let a=0,s=r.next();for(;!s.done;){if(t(s.value))return a;s=r.next(),a++}return-1}includes(t){const r=this.iterator();let a=r.next();for(;!a.done;){if(a.value===t)return!0;a=r.next()}return!1}flatMap(t){return new ym(()=>({this:this.startFn()}),r=>{do{if(r.iterator){const o=r.iterator.next();if(o.done)r.iterator=void 0;else return o}const{done:a,value:s}=this.nextFn(r.this);if(!a){const o=t(s);if(iTe(o))r.iterator=o[Symbol.iterator]();else return{done:!1,value:o}}}while(r.iterator);return Cw})}flat(t){if(t===void 0&&(t=1),t<=0)return this;const r=t>1?this.flat(t-1):this;return new ym(()=>({this:r.startFn()}),a=>{do{if(a.iterator){const u=a.iterator.next();if(u.done)a.iterator=void 0;else return u}const{done:s,value:o}=r.nextFn(a.this);if(!s)if(iTe(o))a.iterator=o[Symbol.iterator]();else return{done:!1,value:o}}while(a.iterator);return Cw})}head(){const r=this.iterator().next();if(!r.done)return r.value}tail(t=1){return new ym(()=>{const r=this.startFn();for(let a=0;a({size:0,state:this.startFn()}),r=>(r.size++,r.size>t?Cw:this.nextFn(r.state)))}distinct(t){return new ym(()=>({set:new Set,internalState:this.startFn()}),r=>{let a;do if(a=this.nextFn(r.internalState),!a.done){const s=t?t(a.value):a.value;if(!r.set.has(s))return r.set.add(s),a}while(!a.done);return Cw})}exclude(t,r){const a=new Set;for(const s of t){const o=r?r(s):s;a.add(o)}return this.filter(s=>{const o=r?r(s):s;return!a.has(o)})}}function ILi(e){return typeof e=="string"?e:typeof e>"u"?"undefined":typeof e.toString=="function"?e.toString():Object.prototype.toString.call(e)}function iTe(e){return!!e&&typeof e[Symbol.iterator]=="function"}const NLi=new ym(()=>{},()=>Cw),Cw=Object.freeze({done:!0,value:void 0});function wm(...e){if(e.length===1){const t=e[0];if(t instanceof ym)return t;if(iTe(t))return new ym(()=>t[Symbol.iterator](),r=>r.next());if(typeof t.length=="number")return new ym(()=>({index:0}),r=>r.index1?new ym(()=>({collIndex:0,arrIndex:0}),t=>{do{if(t.iterator){const r=t.iterator.next();if(!r.done)return r;t.iterator=void 0}if(t.array){if(t.arrIndex({iterators:a!=null&&a.includeRoot?[[t][Symbol.iterator]()]:[r(t)[Symbol.iterator]()],pruned:!1}),s=>{for(s.pruned&&(s.iterators.pop(),s.pruned=!1);s.iterators.length>0;){const u=s.iterators[s.iterators.length-1].next();if(u.done)s.iterators.pop();else return s.iterators.push(r(u.value)[Symbol.iterator]()),u}return Cw})}iterator(){const t={state:this.startFn(),next:()=>this.nextFn(t.state),prune:()=>{t.state.pruned=!0},[Symbol.iterator]:()=>t};return t}}var Cct;(function(e){function t(o){return o.reduce((u,h)=>u+h,0)}e.sum=t;function r(o){return o.reduce((u,h)=>u*h,0)}e.product=r;function a(o){return o.reduce((u,h)=>Math.min(u,h))}e.min=a;function s(o){return o.reduce((u,h)=>Math.max(u,h))}e.max=s})(Cct||(Cct={}));function Act(e){return new Hgt(e,t=>Zoe(t)?t.content:[],{includeRoot:!0})}function OLi(e,t){for(;e.container;)if(e=e.container,e===t)return!0;return!1}function kct(e){return{start:{character:e.startColumn-1,line:e.startLine-1},end:{character:e.endColumn,line:e.endLine-1}}}function aTe(e){if(!e)return;const{offset:t,end:r,range:a}=e;return{range:a,offset:t,end:r,length:r-t}}var m7;(function(e){e[e.Before=0]="Before",e[e.After=1]="After",e[e.OverlapFront=2]="OverlapFront",e[e.OverlapBack=3]="OverlapBack",e[e.Inside=4]="Inside",e[e.Outside=5]="Outside"})(m7||(m7={}));function LLi(e,t){if(e.end.linet.end.line||e.start.line===t.end.line&&e.start.character>=t.end.character)return m7.After;const r=e.start.line>t.start.line||e.start.line===t.start.line&&e.start.character>=t.start.character,a=e.end.linem7.After}const MLi=/^[\w\p{L}]$/u;function PLi(e,t){if(e){const r=BLi(e,!0);if(r&&vSn(r,t))return r;if(yYn(e)){const a=e.content.findIndex(s=>!s.hidden);for(let s=a-1;s>=0;s--){const o=e.content[s];if(vSn(o,t))return o}}}}function vSn(e,t){return bYn(e)&&t.includes(e.tokenType.name)}function BLi(e,t=!0){for(;e.container;){const r=e.container;let a=r.content.indexOf(e);for(;a>0;){a--;const s=r.content[a];if(t||!s.hidden)return s}e=r}}class vYn extends Error{constructor(t,r){super(t?`${r} at ${t.range.start.line}:${t.range.start.character}`:r)}}function Dce(e){throw new Error("Error! The input value was not handled.")}const zwe="AbstractRule",Gwe="AbstractType",vit="Condition",_Sn="TypeDefinition",_it="ValueLiteral",Kie="AbstractElement";function FLi(e){return Gu.isInstance(e,Kie)}const qwe="ArrayLiteral",Hwe="ArrayType",Xie="BooleanLiteral";function $Li(e){return Gu.isInstance(e,Xie)}const Qie="Conjunction";function ULi(e){return Gu.isInstance(e,Qie)}const Zie="Disjunction";function zLi(e){return Gu.isInstance(e,Zie)}const Vwe="Grammar",wit="GrammarImport",Jie="InferredType";function _Yn(e){return Gu.isInstance(e,Jie)}const eae="Interface";function wYn(e){return Gu.isInstance(e,eae)}const Eit="NamedArgument",tae="Negation";function GLi(e){return Gu.isInstance(e,tae)}const Ywe="NumberLiteral",jwe="Parameter",nae="ParameterReference";function qLi(e){return Gu.isInstance(e,nae)}const rae="ParserRule";function AS(e){return Gu.isInstance(e,rae)}const Wwe="ReferenceType",Lxe="ReturnType";function HLi(e){return Gu.isInstance(e,Lxe)}const iae="SimpleType";function VLi(e){return Gu.isInstance(e,iae)}const Kwe="StringLiteral",mV="TerminalRule";function G$(e){return Gu.isInstance(e,mV)}const aae="Type";function EYn(e){return Gu.isInstance(e,aae)}const xit="TypeAttribute",Xwe="UnionType",sae="Action";function _ke(e){return Gu.isInstance(e,sae)}const oae="Alternatives";function xYn(e){return Gu.isInstance(e,oae)}const lae="Assignment";function e$(e){return Gu.isInstance(e,lae)}const cae="CharacterRange";function YLi(e){return Gu.isInstance(e,cae)}const uae="CrossReference";function Vgt(e){return Gu.isInstance(e,uae)}const hae="EndOfFile";function jLi(e){return Gu.isInstance(e,hae)}const dae="Group";function Ygt(e){return Gu.isInstance(e,dae)}const fae="Keyword";function t$(e){return Gu.isInstance(e,fae)}const pae="NegatedToken";function WLi(e){return Gu.isInstance(e,pae)}const gae="RegexToken";function KLi(e){return Gu.isInstance(e,gae)}const mae="RuleCall";function n$(e){return Gu.isInstance(e,mae)}const bae="TerminalAlternatives";function XLi(e){return Gu.isInstance(e,bae)}const yae="TerminalGroup";function QLi(e){return Gu.isInstance(e,yae)}const vae="TerminalRuleCall";function ZLi(e){return Gu.isInstance(e,vae)}const _ae="UnorderedGroup";function SYn(e){return Gu.isInstance(e,_ae)}const wae="UntilToken";function JLi(e){return Gu.isInstance(e,wae)}const Eae="Wildcard";function eDi(e){return Gu.isInstance(e,Eae)}class TYn extends mYn{getAllTypes(){return[Kie,zwe,Gwe,sae,oae,qwe,Hwe,lae,Xie,cae,vit,Qie,uae,Zie,hae,Vwe,wit,dae,Jie,eae,fae,Eit,pae,tae,Ywe,jwe,nae,rae,Wwe,gae,Lxe,mae,iae,Kwe,bae,yae,mV,vae,aae,xit,_Sn,Xwe,_ae,wae,_it,Eae]}computeIsSubtype(t,r){switch(t){case sae:case oae:case lae:case cae:case uae:case hae:case dae:case fae:case pae:case gae:case mae:case bae:case yae:case vae:case _ae:case wae:case Eae:return this.isSubtype(Kie,r);case qwe:case Ywe:case Kwe:return this.isSubtype(_it,r);case Hwe:case Wwe:case iae:case Xwe:return this.isSubtype(_Sn,r);case Xie:return this.isSubtype(vit,r)||this.isSubtype(_it,r);case Qie:case Zie:case tae:case nae:return this.isSubtype(vit,r);case Jie:case eae:case aae:return this.isSubtype(Gwe,r);case rae:return this.isSubtype(zwe,r)||this.isSubtype(Gwe,r);case mV:return this.isSubtype(zwe,r);default:return!1}}getReferenceType(t){const r=`${t.container.$type}:${t.property}`;switch(r){case"Action:type":case"CrossReference:type":case"Interface:superTypes":case"ParserRule:returnType":case"SimpleType:typeRef":return Gwe;case"Grammar:hiddenTokens":case"ParserRule:hiddenTokens":case"RuleCall:rule":return zwe;case"Grammar:usedGrammars":return Vwe;case"NamedArgument:parameter":case"ParameterReference:parameter":return jwe;case"TerminalRuleCall:rule":return mV;default:throw new Error(`${r} is not a valid reference id.`)}}getTypeMetaData(t){switch(t){case Kie:return{name:Kie,properties:[{name:"cardinality"},{name:"lookahead"}]};case qwe:return{name:qwe,properties:[{name:"elements",defaultValue:[]}]};case Hwe:return{name:Hwe,properties:[{name:"elementType"}]};case Xie:return{name:Xie,properties:[{name:"true",defaultValue:!1}]};case Qie:return{name:Qie,properties:[{name:"left"},{name:"right"}]};case Zie:return{name:Zie,properties:[{name:"left"},{name:"right"}]};case Vwe:return{name:Vwe,properties:[{name:"definesHiddenTokens",defaultValue:!1},{name:"hiddenTokens",defaultValue:[]},{name:"imports",defaultValue:[]},{name:"interfaces",defaultValue:[]},{name:"isDeclared",defaultValue:!1},{name:"name"},{name:"rules",defaultValue:[]},{name:"types",defaultValue:[]},{name:"usedGrammars",defaultValue:[]}]};case wit:return{name:wit,properties:[{name:"path"}]};case Jie:return{name:Jie,properties:[{name:"name"}]};case eae:return{name:eae,properties:[{name:"attributes",defaultValue:[]},{name:"name"},{name:"superTypes",defaultValue:[]}]};case Eit:return{name:Eit,properties:[{name:"calledByName",defaultValue:!1},{name:"parameter"},{name:"value"}]};case tae:return{name:tae,properties:[{name:"value"}]};case Ywe:return{name:Ywe,properties:[{name:"value"}]};case jwe:return{name:jwe,properties:[{name:"name"}]};case nae:return{name:nae,properties:[{name:"parameter"}]};case rae:return{name:rae,properties:[{name:"dataType"},{name:"definesHiddenTokens",defaultValue:!1},{name:"definition"},{name:"entry",defaultValue:!1},{name:"fragment",defaultValue:!1},{name:"hiddenTokens",defaultValue:[]},{name:"inferredType"},{name:"name"},{name:"parameters",defaultValue:[]},{name:"returnType"},{name:"wildcard",defaultValue:!1}]};case Wwe:return{name:Wwe,properties:[{name:"referenceType"}]};case Lxe:return{name:Lxe,properties:[{name:"name"}]};case iae:return{name:iae,properties:[{name:"primitiveType"},{name:"stringType"},{name:"typeRef"}]};case Kwe:return{name:Kwe,properties:[{name:"value"}]};case mV:return{name:mV,properties:[{name:"definition"},{name:"fragment",defaultValue:!1},{name:"hidden",defaultValue:!1},{name:"name"},{name:"type"}]};case aae:return{name:aae,properties:[{name:"name"},{name:"type"}]};case xit:return{name:xit,properties:[{name:"defaultValue"},{name:"isOptional",defaultValue:!1},{name:"name"},{name:"type"}]};case Xwe:return{name:Xwe,properties:[{name:"types",defaultValue:[]}]};case sae:return{name:sae,properties:[{name:"cardinality"},{name:"feature"},{name:"inferredType"},{name:"lookahead"},{name:"operator"},{name:"type"}]};case oae:return{name:oae,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"lookahead"}]};case lae:return{name:lae,properties:[{name:"cardinality"},{name:"feature"},{name:"lookahead"},{name:"operator"},{name:"terminal"}]};case cae:return{name:cae,properties:[{name:"cardinality"},{name:"left"},{name:"lookahead"},{name:"right"}]};case uae:return{name:uae,properties:[{name:"cardinality"},{name:"deprecatedSyntax",defaultValue:!1},{name:"lookahead"},{name:"terminal"},{name:"type"}]};case hae:return{name:hae,properties:[{name:"cardinality"},{name:"lookahead"}]};case dae:return{name:dae,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"guardCondition"},{name:"lookahead"}]};case fae:return{name:fae,properties:[{name:"cardinality"},{name:"lookahead"},{name:"value"}]};case pae:return{name:pae,properties:[{name:"cardinality"},{name:"lookahead"},{name:"terminal"}]};case gae:return{name:gae,properties:[{name:"cardinality"},{name:"lookahead"},{name:"regex"}]};case mae:return{name:mae,properties:[{name:"arguments",defaultValue:[]},{name:"cardinality"},{name:"lookahead"},{name:"rule"}]};case bae:return{name:bae,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"lookahead"}]};case yae:return{name:yae,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"lookahead"}]};case vae:return{name:vae,properties:[{name:"cardinality"},{name:"lookahead"},{name:"rule"}]};case _ae:return{name:_ae,properties:[{name:"cardinality"},{name:"elements",defaultValue:[]},{name:"lookahead"}]};case wae:return{name:wae,properties:[{name:"cardinality"},{name:"lookahead"},{name:"terminal"}]};case Eae:return{name:Eae,properties:[{name:"cardinality"},{name:"lookahead"}]};default:return{name:t,properties:[]}}}}const Gu=new TYn;function tDi(e){for(const[t,r]of Object.entries(e))t.startsWith("$")||(Array.isArray(r)?r.forEach((a,s)=>{Eb(a)&&(a.$container=e,a.$containerProperty=t,a.$containerIndex=s)}):Eb(r)&&(r.$container=e,r.$containerProperty=t))}function wke(e,t){let r=e;for(;r;){if(t(r))return r;r=r.$container}}function h9(e){const r=Rct(e).$document;if(!r)throw new Error("AST node has no document.");return r}function Rct(e){for(;e.$container;)e=e.$container;return e}function jgt(e,t){if(!e)throw new Error("Node must be an AstNode.");const r=t==null?void 0:t.range;return new ym(()=>({keys:Object.keys(e),keyIndex:0,arrayIndex:0}),a=>{for(;a.keyIndexjgt(r,t))}function aY(e,t){if(!e)throw new Error("Root node must be an AstNode.");return new Hgt(e,r=>jgt(r,t),{includeRoot:!0})}function wSn(e,t){var r;if(!t)return!0;const a=(r=e.$cstNode)===null||r===void 0?void 0:r.range;return a?DLi(a,t):!1}function CYn(e){return new ym(()=>({keys:Object.keys(e),keyIndex:0,arrayIndex:0}),t=>{for(;t.keyIndex=this.input.length)throw Error("Unexpected end of input");this.idx++}loc(t){return{begin:t,end:this.idx}}}class Eke{visitChildren(t){for(const r in t){const a=t[r];t.hasOwnProperty(r)&&(a.type!==void 0?this.visit(a):Array.isArray(a)&&a.forEach(s=>{this.visit(s)},this))}}visit(t){switch(t.type){case"Pattern":this.visitPattern(t);break;case"Flags":this.visitFlags(t);break;case"Disjunction":this.visitDisjunction(t);break;case"Alternative":this.visitAlternative(t);break;case"StartAnchor":this.visitStartAnchor(t);break;case"EndAnchor":this.visitEndAnchor(t);break;case"WordBoundary":this.visitWordBoundary(t);break;case"NonWordBoundary":this.visitNonWordBoundary(t);break;case"Lookahead":this.visitLookahead(t);break;case"NegativeLookahead":this.visitNegativeLookahead(t);break;case"Character":this.visitCharacter(t);break;case"Set":this.visitSet(t);break;case"Group":this.visitGroup(t);break;case"GroupBackReference":this.visitGroupBackReference(t);break;case"Quantifier":this.visitQuantifier(t);break}this.visitChildren(t)}visitPattern(t){}visitFlags(t){}visitDisjunction(t){}visitAlternative(t){}visitStartAnchor(t){}visitEndAnchor(t){}visitWordBoundary(t){}visitNonWordBoundary(t){}visitLookahead(t){}visitNegativeLookahead(t){}visitCharacter(t){}visitSet(t){}visitGroup(t){}visitGroupBackReference(t){}visitQuantifier(t){}}const sDi=/\r?\n/gm,oDi=new kYn;class lDi extends Eke{constructor(){super(...arguments),this.isStarting=!0,this.endRegexpStack=[],this.multiline=!1}get endRegex(){return this.endRegexpStack.join("")}reset(t){this.multiline=!1,this.regex=t,this.startRegexp="",this.isStarting=!0,this.endRegexpStack=[]}visitGroup(t){t.quantifier&&(this.isStarting=!1,this.endRegexpStack=[])}visitCharacter(t){const r=String.fromCharCode(t.value);if(!this.multiline&&r===` +`&&(this.multiline=!0),t.quantifier)this.isStarting=!1,this.endRegexpStack=[];else{const a=xke(r);this.endRegexpStack.push(a),this.isStarting&&(this.startRegexp+=a)}}visitSet(t){if(!this.multiline){const r=this.regex.substring(t.loc.begin,t.loc.end),a=new RegExp(r);this.multiline=!!` +`.match(a)}if(t.quantifier)this.isStarting=!1,this.endRegexpStack=[];else{const r=this.regex.substring(t.loc.begin,t.loc.end);this.endRegexpStack.push(r),this.isStarting&&(this.startRegexp+=r)}}visitChildren(t){t.type==="Group"&&t.quantifier||super.visitChildren(t)}}const Tit=new lDi;function cDi(e){try{return typeof e=="string"&&(e=new RegExp(e)),e=e.toString(),Tit.reset(e),Tit.visit(oDi.pattern(e)),Tit.multiline}catch{return!1}}const uDi=`\f +\r \v              \u2028\u2029   \uFEFF`.split("");function Ict(e){const t=typeof e=="string"?new RegExp(e):e;return uDi.some(r=>t.test(r))}function xke(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function hDi(e){return Array.prototype.map.call(e,t=>/\w/.test(t)?`[${t.toLowerCase()}${t.toUpperCase()}]`:xke(t)).join("")}function dDi(e,t){const r=fDi(e),a=t.match(r);return!!a&&a[0].length>0}function fDi(e){typeof e=="string"&&(e=new RegExp(e));const t=e,r=e.source;let a=0;function s(){let o="",u;function h(p){o+=r.substr(a,p),a+=p}function f(p){o+="(?:"+r.substr(a,p)+"|$)",a+=p}for(;a",a)-a+1);break;default:f(2);break}break;case"[":u=/\[(?:\\.|.)*?\]/g,u.lastIndex=a,u=u.exec(r)||[],f(u[0].length);break;case"|":case"^":case"$":case"*":case"+":case"?":h(1);break;case"{":u=/\{\d+,?\d*\}/g,u.lastIndex=a,u=u.exec(r),u?h(u[0].length):f(1);break;case"(":if(r[a+1]==="?")switch(r[a+2]){case":":o+="(?:",a+=3,o+=s()+"|$)";break;case"=":o+="(?=",a+=3,o+=s()+")";break;case"!":u=a,a+=3,s(),o+=r.substr(u,a-u);break;case"<":switch(r[a+3]){case"=":case"!":u=a,a+=4,s(),o+=r.substr(u,a-u);break;default:h(r.indexOf(">",a)-a+1),o+=s()+"|$)";break}break}else h(1),o+=s()+"|$)";break;case")":return++a,o;default:f(1);break}return o}return new RegExp(s(),e.flags)}function pDi(e){return e.rules.find(t=>AS(t)&&t.entry)}function gDi(e){return e.rules.filter(t=>G$(t)&&t.hidden)}function RYn(e,t){const r=new Set,a=pDi(e);if(!a)return new Set(e.rules);const s=[a].concat(gDi(e));for(const u of s)IYn(u,r,t);const o=new Set;for(const u of e.rules)(r.has(u.name)||G$(u)&&u.hidden)&&o.add(u);return o}function IYn(e,t,r){t.add(e.name),Mce(e).forEach(a=>{if(n$(a)||r){const s=a.rule.ref;s&&!t.has(s.name)&&IYn(s,t,r)}})}function mDi(e){if(e.terminal)return e.terminal;if(e.type.ref){const t=OYn(e.type.ref);return t==null?void 0:t.terminal}}function bDi(e){return e.hidden&&!Ict(Qgt(e))}function yDi(e,t){return!e||!t?[]:Wgt(e,t,e.astNode,!0)}function NYn(e,t,r){if(!e||!t)return;const a=Wgt(e,t,e.astNode,!0);if(a.length!==0)return r!==void 0?r=Math.max(0,Math.min(r,a.length-1)):r=0,a[r]}function Wgt(e,t,r,a){if(!a){const s=wke(e.grammarSource,e$);if(s&&s.feature===t)return[e]}return Zoe(e)&&e.astNode===r?e.content.flatMap(s=>Wgt(s,t,r,!1)):[]}function vDi(e,t,r){if(!e)return;const a=_Di(e,t,e==null?void 0:e.astNode);if(a.length!==0)return r!==void 0?r=Math.max(0,Math.min(r,a.length-1)):r=0,a[r]}function _Di(e,t,r){if(e.astNode!==r)return[];if(t$(e.grammarSource)&&e.grammarSource.value===t)return[e];const a=Act(e).iterator();let s;const o=[];do if(s=a.next(),!s.done){const u=s.value;u.astNode===r?t$(u.grammarSource)&&u.grammarSource.value===t&&o.push(u):a.prune()}while(!s.done);return o}function wDi(e){var t;const r=e.astNode;for(;r===((t=e.container)===null||t===void 0?void 0:t.astNode);){const a=wke(e.grammarSource,e$);if(a)return a;e=e.container}}function OYn(e){let t=e;return _Yn(t)&&(_ke(t.$container)?t=t.$container.$container:AS(t.$container)?t=t.$container:Dce(t.$container)),LYn(e,t,new Map)}function LYn(e,t,r){var a;function s(o,u){let h;return wke(o,e$)||(h=LYn(u,u,r)),r.set(e,h),h}if(r.has(e))return r.get(e);r.set(e,void 0);for(const o of Mce(t)){if(e$(o)&&o.feature.toLowerCase()==="name")return r.set(e,o),o;if(n$(o)&&AS(o.rule.ref))return s(o,o.rule.ref);if(VLi(o)&&(!((a=o.typeRef)===null||a===void 0)&&a.ref))return s(o,o.typeRef.ref)}}function DYn(e){return MYn(e,new Set)}function MYn(e,t){if(t.has(e))return!0;t.add(e);for(const r of Mce(e))if(n$(r)){if(!r.rule.ref||AS(r.rule.ref)&&!MYn(r.rule.ref,t))return!1}else{if(e$(r))return!1;if(_ke(r))return!1}return!!e.definition}function Kgt(e){if(e.inferredType)return e.inferredType.name;if(e.dataType)return e.dataType;if(e.returnType){const t=e.returnType.ref;if(t){if(AS(t))return t.name;if(wYn(t)||EYn(t))return t.name}}}function Xgt(e){var t;if(AS(e))return DYn(e)?e.name:(t=Kgt(e))!==null&&t!==void 0?t:e.name;if(wYn(e)||EYn(e)||HLi(e))return e.name;if(_ke(e)){const r=EDi(e);if(r)return r}else if(_Yn(e))return e.name;throw new Error("Cannot get name of Unknown Type")}function EDi(e){var t;if(e.inferredType)return e.inferredType.name;if(!((t=e.type)===null||t===void 0)&&t.ref)return Xgt(e.type.ref)}function xDi(e){var t,r,a;return G$(e)?(r=(t=e.type)===null||t===void 0?void 0:t.name)!==null&&r!==void 0?r:"string":(a=Kgt(e))!==null&&a!==void 0?a:e.name}function Qgt(e){const t={s:!1,i:!1,u:!1},r=tK(e.definition,t),a=Object.entries(t).filter(([,s])=>s).map(([s])=>s).join("");return new RegExp(r,a)}const Zgt=/[\s\S]/.source;function tK(e,t){if(XLi(e))return SDi(e);if(QLi(e))return TDi(e);if(YLi(e))return kDi(e);if(ZLi(e)){const r=e.rule.ref;if(!r)throw new Error("Missing rule reference.");return H7(tK(r.definition),{cardinality:e.cardinality,lookahead:e.lookahead})}else{if(WLi(e))return ADi(e);if(JLi(e))return CDi(e);if(KLi(e)){const r=e.regex.lastIndexOf("/"),a=e.regex.substring(1,r),s=e.regex.substring(r+1);return t&&(t.i=s.includes("i"),t.s=s.includes("s"),t.u=s.includes("u")),H7(a,{cardinality:e.cardinality,lookahead:e.lookahead,wrap:!1})}else{if(eDi(e))return H7(Zgt,{cardinality:e.cardinality,lookahead:e.lookahead});throw new Error(`Invalid terminal element: ${e==null?void 0:e.$type}`)}}}function SDi(e){return H7(e.elements.map(t=>tK(t)).join("|"),{cardinality:e.cardinality,lookahead:e.lookahead})}function TDi(e){return H7(e.elements.map(t=>tK(t)).join(""),{cardinality:e.cardinality,lookahead:e.lookahead})}function CDi(e){return H7(`${Zgt}*?${tK(e.terminal)}`,{cardinality:e.cardinality,lookahead:e.lookahead})}function ADi(e){return H7(`(?!${tK(e.terminal)})${Zgt}*?`,{cardinality:e.cardinality,lookahead:e.lookahead})}function kDi(e){return e.right?H7(`[${Cit(e.left)}-${Cit(e.right)}]`,{cardinality:e.cardinality,lookahead:e.lookahead,wrap:!1}):H7(Cit(e.left),{cardinality:e.cardinality,lookahead:e.lookahead,wrap:!1})}function Cit(e){return xke(e.value)}function H7(e,t){var r;return(t.wrap!==!1||t.lookahead)&&(e=`(${(r=t.lookahead)!==null&&r!==void 0?r:""}${e})`),t.cardinality?`${e}${t.cardinality}`:e}function RDi(e){const t=[],r=e.Grammar;for(const a of r.rules)G$(a)&&bDi(a)&&cDi(Qgt(a))&&t.push(a.name);return{multilineCommentRules:t,nameRegexp:MLi}}var PYn=typeof global=="object"&&global&&global.Object===Object&&global,IDi=typeof self=="object"&&self&&self.Object===Object&&self,$A=PYn||IDi||Function("return this")(),kS=$A.Symbol,BYn=Object.prototype,NDi=BYn.hasOwnProperty,ODi=BYn.toString,cie=kS?kS.toStringTag:void 0;function LDi(e){var t=NDi.call(e,cie),r=e[cie];try{e[cie]=void 0;var a=!0}catch{}var s=ODi.call(e);return a&&(t?e[cie]=r:delete e[cie]),s}var DDi=Object.prototype,MDi=DDi.toString;function PDi(e){return MDi.call(e)}var BDi="[object Null]",FDi="[object Undefined]",SSn=kS?kS.toStringTag:void 0;function Q9(e){return e==null?e===void 0?FDi:BDi:SSn&&SSn in Object(e)?LDi(e):PDi(e)}function uT(e){return e!=null&&typeof e=="object"}var $Di="[object Symbol]";function Ske(e){return typeof e=="symbol"||uT(e)&&Q9(e)==$Di}function Tke(e,t){for(var r=-1,a=e==null?0:e.length,s=Array(a);++r0){if(++t>=mMi)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function _Mi(e){return function(){return e}}var lTe=function(){try{var e=H$(Object,"defineProperty");return e({},"",{}),e}catch{}}(),wMi=lTe?function(e,t){return lTe(e,"toString",{configurable:!0,enumerable:!1,value:_Mi(t),writable:!0})}:qj,EMi=vMi(wMi);function $Yn(e,t){for(var r=-1,a=e==null?0:e.length;++r-1}var TMi=9007199254740991,CMi=/^(?:0|[1-9]\d*)$/;function Ake(e,t){var r=typeof e;return t=t??TMi,!!t&&(r=="number"||r!="symbol"&&CMi.test(e))&&e>-1&&e%1==0&&e-1&&e%1==0&&e<=IMi}function UA(e){return e!=null&&nmt(e.length)&&!CR(e)}function GYn(e,t,r){if(!RS(r))return!1;var a=typeof t;return(a=="number"?UA(r)&&Ake(t,r.length):a=="string"&&t in r)?Pce(r[t],e):!1}function NMi(e){return tmt(function(t,r){var a=-1,s=r.length,o=s>1?r[s-1]:void 0,u=s>2?r[2]:void 0;for(o=e.length>3&&typeof o=="function"?(s--,o):void 0,u&&GYn(r[0],r[1],u)&&(o=s<3?void 0:o,s=1),t=Object(t);++a-1}function GPi(e,t){var r=this.__data__,a=Nke(r,e);return a<0?(++this.size,r.push([e,t])):r[a][1]=t,this}function AR(e){var t=-1,r=e==null?0:e.length;for(this.clear();++ts?0:s+t),r=r>s?s:r,r<0&&(r+=s),s=t>r?0:r-t>>>0,t>>>=0;for(var o=Array(s);++ah))return!1;var p=o.get(e),m=o.get(t);if(p&&m)return p==t&&m==e;var b=-1,_=!0,w=r&FFi?new Hj:void 0;for(o.set(e,t),o.set(t,e);++b2?t[2]:void 0;for(s&&GYn(t[0],t[1],s)&&(a=1);++r=k$i&&(o=dmt,u=!1,t=new Hj(t));e:for(;++s-1?s[o?t[u]:u]:void 0}}var D$i=Math.max;function M$i(e,t,r){var a=e==null?0:e.length;if(!a)return-1;var s=r==null?0:Cke(r);return s<0&&(s=D$i(a+s,0)),UYn(e,zA(t),s)}var Yj=L$i(M$i);function hT(e){return e&&e.length?e[0]:void 0}function P$i(e,t){var r=-1,a=UA(e)?Array(e.length):[];return V$(e,function(s,o,u){a[++r]=t(s,o,u)}),a}function As(e,t){var r=Wc(e)?Tke:P$i;return r(e,zA(t))}function dS(e,t){return cmt(As(e,t))}var B$i=Object.prototype,F$i=B$i.hasOwnProperty,$$i=C$i(function(e,t,r){F$i.call(e,r)?e[r].push(t):emt(e,r,[t])}),U$i=Object.prototype,z$i=U$i.hasOwnProperty;function G$i(e,t){return e!=null&&z$i.call(e,t)}function so(e,t){return e!=null&&ljn(e,t,G$i)}var q$i="[object String]";function a_(e){return typeof e=="string"||!Wc(e)&&uT(e)&&Q9(e)==q$i}function H$i(e,t){return Tke(t,function(r){return e[r]})}function wp(e){return e==null?[]:H$i(e,IS(e))}var V$i=Math.max;function wv(e,t,r,a){e=UA(e)?e:wp(e),r=r?Cke(r):0;var s=e.length;return r<0&&(r=V$i(s+r,0)),a_(e)?r<=s&&e.indexOf(t,r)>-1:!!s&&Jgt(e,t,r)>-1}function t4n(e,t,r){var a=e==null?0:e.length;if(!a)return-1;var s=0;return Jgt(e,t,s)}var Y$i="[object Map]",j$i="[object Set]",W$i=Object.prototype,K$i=W$i.hasOwnProperty;function Jh(e){if(e==null)return!0;if(UA(e)&&(Wc(e)||typeof e=="string"||typeof e.splice=="function"||Joe(e)||rmt(e)||Rke(e)))return!e.length;var t=Jx(e);if(t==Y$i||t==j$i)return!e.size;if(Fce(e))return!WYn(e).length;for(var r in e)if(K$i.call(e,r))return!1;return!0}var X$i="[object RegExp]";function Q$i(e){return uT(e)&&Q9(e)==X$i}var n4n=d9&&d9.isRegExp,hR=n4n?Ike(n4n):Q$i;function dR(e){return e===void 0}var Z$i="Expected a function";function J$i(e){if(typeof e!="function")throw new TypeError(Z$i);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}function eUi(e,t,r,a){if(!RS(e))return e;t=Lke(t,e);for(var s=-1,o=t.length,u=o-1,h=e;h!=null&&++s=sUi){var p=aUi(e);if(p)return fmt(p);u=!1,s=dmt,f=new Hj}else f=h;e:for(;++a{r.accept(t)})}}class hv extends GA{constructor(t){super([]),this.idx=1,zw(this,yT(t,r=>r!==void 0))}set definition(t){}get definition(){return this.referencedRule!==void 0?this.referencedRule.definition:[]}accept(t){t.visit(this)}}class nK extends GA{constructor(t){super(t.definition),this.orgText="",zw(this,yT(t,r=>r!==void 0))}}class s_ extends GA{constructor(t){super(t.definition),this.ignoreAmbiguities=!1,zw(this,yT(t,r=>r!==void 0))}}let Am=class extends GA{constructor(t){super(t.definition),this.idx=1,zw(this,yT(t,r=>r!==void 0))}};class Kw extends GA{constructor(t){super(t.definition),this.idx=1,zw(this,yT(t,r=>r!==void 0))}}class Xw extends GA{constructor(t){super(t.definition),this.idx=1,zw(this,yT(t,r=>r!==void 0))}}class l0 extends GA{constructor(t){super(t.definition),this.idx=1,zw(this,yT(t,r=>r!==void 0))}}class u_ extends GA{constructor(t){super(t.definition),this.idx=1,zw(this,yT(t,r=>r!==void 0))}}class h_ extends GA{get definition(){return this._definition}set definition(t){this._definition=t}constructor(t){super(t.definition),this.idx=1,this.ignoreAmbiguities=!1,this.hasPredicates=!1,zw(this,yT(t,r=>r!==void 0))}}class wd{constructor(t){this.idx=1,zw(this,yT(t,r=>r!==void 0))}accept(t){t.visit(this)}}function uUi(e){return As(e,Mxe)}function Mxe(e){function t(r){return As(r,Mxe)}if(e instanceof hv){const r={type:"NonTerminal",name:e.nonTerminalName,idx:e.idx};return a_(e.label)&&(r.label=e.label),r}else{if(e instanceof s_)return{type:"Alternative",definition:t(e.definition)};if(e instanceof Am)return{type:"Option",idx:e.idx,definition:t(e.definition)};if(e instanceof Kw)return{type:"RepetitionMandatory",idx:e.idx,definition:t(e.definition)};if(e instanceof Xw)return{type:"RepetitionMandatoryWithSeparator",idx:e.idx,separator:Mxe(new wd({terminalType:e.separator})),definition:t(e.definition)};if(e instanceof u_)return{type:"RepetitionWithSeparator",idx:e.idx,separator:Mxe(new wd({terminalType:e.separator})),definition:t(e.definition)};if(e instanceof l0)return{type:"Repetition",idx:e.idx,definition:t(e.definition)};if(e instanceof h_)return{type:"Alternation",idx:e.idx,definition:t(e.definition)};if(e instanceof wd){const r={type:"Terminal",name:e.terminalType.name,label:lUi(e.terminalType),idx:e.idx};a_(e.label)&&(r.terminalLabel=e.label);const a=e.terminalType.PATTERN;return e.terminalType.PATTERN&&(r.pattern=hR(a)?a.source:a),r}else{if(e instanceof nK)return{type:"Rule",name:e.name,orgText:e.orgText,definition:t(e.definition)};throw Error("non exhaustive match")}}}class rK{visit(t){const r=t;switch(r.constructor){case hv:return this.visitNonTerminal(r);case s_:return this.visitAlternative(r);case Am:return this.visitOption(r);case Kw:return this.visitRepetitionMandatory(r);case Xw:return this.visitRepetitionMandatoryWithSeparator(r);case u_:return this.visitRepetitionWithSeparator(r);case l0:return this.visitRepetition(r);case h_:return this.visitAlternation(r);case wd:return this.visitTerminal(r);case nK:return this.visitRule(r);default:throw Error("non exhaustive match")}}visitNonTerminal(t){}visitAlternative(t){}visitOption(t){}visitRepetition(t){}visitRepetitionMandatory(t){}visitRepetitionMandatoryWithSeparator(t){}visitRepetitionWithSeparator(t){}visitAlternation(t){}visitTerminal(t){}visitRule(t){}}function hUi(e){return e instanceof s_||e instanceof Am||e instanceof l0||e instanceof Kw||e instanceof Xw||e instanceof u_||e instanceof wd||e instanceof nK}function uTe(e,t=[]){return e instanceof Am||e instanceof l0||e instanceof u_?!0:e instanceof h_?hjn(e.definition,a=>uTe(a,t)):e instanceof hv&&wv(t,e)?!1:e instanceof GA?(e instanceof hv&&t.push(e),tT(e.definition,a=>uTe(a,t))):!1}function dUi(e){return e instanceof h_}function PC(e){if(e instanceof hv)return"SUBRULE";if(e instanceof Am)return"OPTION";if(e instanceof h_)return"OR";if(e instanceof Kw)return"AT_LEAST_ONE";if(e instanceof Xw)return"AT_LEAST_ONE_SEP";if(e instanceof u_)return"MANY_SEP";if(e instanceof l0)return"MANY";if(e instanceof wd)return"CONSUME";throw Error("non exhaustive match")}class Pke{walk(t,r=[]){_o(t.definition,(a,s)=>{const o=fm(t.definition,s+1);if(a instanceof hv)this.walkProdRef(a,o,r);else if(a instanceof wd)this.walkTerminal(a,o,r);else if(a instanceof s_)this.walkFlat(a,o,r);else if(a instanceof Am)this.walkOption(a,o,r);else if(a instanceof Kw)this.walkAtLeastOne(a,o,r);else if(a instanceof Xw)this.walkAtLeastOneSep(a,o,r);else if(a instanceof u_)this.walkManySep(a,o,r);else if(a instanceof l0)this.walkMany(a,o,r);else if(a instanceof h_)this.walkOr(a,o,r);else throw Error("non exhaustive match")})}walkTerminal(t,r,a){}walkProdRef(t,r,a){}walkFlat(t,r,a){const s=r.concat(a);this.walk(t,s)}walkOption(t,r,a){const s=r.concat(a);this.walk(t,s)}walkAtLeastOne(t,r,a){const s=[new Am({definition:t.definition})].concat(r,a);this.walk(t,s)}walkAtLeastOneSep(t,r,a){const s=r4n(t,r,a);this.walk(t,s)}walkMany(t,r,a){const s=[new Am({definition:t.definition})].concat(r,a);this.walk(t,s)}walkManySep(t,r,a){const s=r4n(t,r,a);this.walk(t,s)}walkOr(t,r,a){const s=r.concat(a);_o(t.definition,o=>{const u=new s_({definition:[o]});this.walk(u,s)})}}function r4n(e,t,r){return[new Am({definition:[new wd({terminalType:e.separator})].concat(e.definition)})].concat(t,r)}function zce(e){if(e instanceof hv)return zce(e.referencedRule);if(e instanceof wd)return gUi(e);if(hUi(e))return fUi(e);if(dUi(e))return pUi(e);throw Error("non exhaustive match")}function fUi(e){let t=[];const r=e.definition;let a=0,s=r.length>a,o,u=!0;for(;s&&u;)o=r[a],u=uTe(o),t=t.concat(zce(o)),a=a+1,s=r.length>a;return mmt(t)}function pUi(e){const t=As(e.definition,r=>zce(r));return mmt(eT(t))}function gUi(e){return[e.terminalType]}const gjn="_~IN~_";class mUi extends Pke{constructor(t){super(),this.topProd=t,this.follows={}}startWalking(){return this.walk(this.topProd),this.follows}walkTerminal(t,r,a){}walkProdRef(t,r,a){const s=yUi(t.referencedRule,t.idx)+this.topProd.name,o=r.concat(a),u=new s_({definition:o}),h=zce(u);this.follows[s]=h}}function bUi(e){const t={};return _o(e,r=>{const a=new mUi(r).startWalking();zw(t,a)}),t}function yUi(e,t){return e.name+t+gjn}let Pxe={};const vUi=new kYn;function Bke(e){const t=e.toString();if(Pxe.hasOwnProperty(t))return Pxe[t];{const r=vUi.pattern(t);return Pxe[t]=r,r}}function _Ui(){Pxe={}}const mjn="Complement Sets are not supported for first char optimization",hTe=`Unable to use "first char" lexer optimizations: +`;function wUi(e,t=!1){try{const r=Bke(e);return Pct(r.value,{},r.flags.ignoreCase)}catch(r){if(r.message===mjn)t&&djn(`${hTe} Unable to optimize: < ${e.toString()} > + Complement Sets cannot be automatically optimized. + This will disable the lexer's first char optimizations. + See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#COMPLEMENT for details.`);else{let a="";t&&(a=` + This will disable the lexer's first char optimizations. + See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#REGEXP_PARSING for details.`),Mct(`${hTe} + Failed parsing: < ${e.toString()} > + Using the @chevrotain/regexp-to-ast library + Please open an issue at: https://github.com/chevrotain/chevrotain/issues`+a)}}return[]}function Pct(e,t,r){switch(e.type){case"Disjunction":for(let s=0;s{if(typeof f=="number")Jwe(f,t,r);else{const p=f;if(r===!0)for(let m=p.from;m<=p.to;m++)Jwe(m,t,r);else{for(let m=p.from;m<=p.to&&m=Sae){const m=p.from>=Sae?p.from:Sae,b=p.to,_=f9(m),w=f9(b);for(let S=_;S<=w;S++)t[S]=S}}}});break;case"Group":Pct(u.value,t,r);break;default:throw Error("Non Exhaustive Match")}const h=u.quantifier!==void 0&&u.quantifier.atLeast===0;if(u.type==="Group"&&Bct(u)===!1||u.type!=="Group"&&h===!1)break}break;default:throw Error("non exhaustive match!")}return wp(t)}function Jwe(e,t,r){const a=f9(e);t[a]=a,r===!0&&EUi(e,t)}function EUi(e,t){const r=String.fromCharCode(e),a=r.toUpperCase();if(a!==r){const s=f9(a.charCodeAt(0));t[s]=s}else{const s=r.toLowerCase();if(s!==r){const o=f9(s.charCodeAt(0));t[o]=o}}}function i4n(e,t){return Yj(e.value,r=>{if(typeof r=="number")return wv(t,r);{const a=r;return Yj(t,s=>a.from<=s&&s<=a.to)!==void 0}})}function Bct(e){const t=e.quantifier;return t&&t.atLeast===0?!0:e.value?Wc(e.value)?tT(e.value,Bct):Bct(e.value):!1}class xUi extends Eke{constructor(t){super(),this.targetCharCodes=t,this.found=!1}visitChildren(t){if(this.found!==!0){switch(t.type){case"Lookahead":this.visitLookahead(t);return;case"NegativeLookahead":this.visitNegativeLookahead(t);return}super.visitChildren(t)}}visitCharacter(t){wv(this.targetCharCodes,t.value)&&(this.found=!0)}visitSet(t){t.complement?i4n(t,this.targetCharCodes)===void 0&&(this.found=!0):i4n(t,this.targetCharCodes)!==void 0&&(this.found=!0)}}function bmt(e,t){if(t instanceof RegExp){const r=Bke(t),a=new xUi(e);return a.visit(r),a.found}else return Yj(t,r=>wv(e,r.charCodeAt(0)))!==void 0}const i$="PATTERN",xae="defaultMode",eEe="modes";let bjn=typeof new RegExp("(?:)").sticky=="boolean";function SUi(e,t){t=gmt(t,{useSticky:bjn,debug:!1,safeMode:!1,positionTracking:"full",lineTerminatorCharacters:["\r",` +`],tracer:(I,N)=>N()});const r=t.tracer;r("initCharCodeToOptimizedIndexMap",()=>{jUi()});let a;r("Reject Lexer.NA",()=>{a=Mke(e,I=>I[i$]===J2.NA)});let s=!1,o;r("Transform Patterns",()=>{s=!1,o=As(a,I=>{const N=I[i$];if(hR(N)){const L=N.source;return L.length===1&&L!=="^"&&L!=="$"&&L!=="."&&!N.ignoreCase?L:L.length===2&&L[0]==="\\"&&!wv(["d","D","s","S","t","r","n","t","0","c","b","B","f","v","w","W"],L[1])?L[1]:t.useSticky?s4n(N):a4n(N)}else{if(CR(N))return s=!0,{exec:N};if(typeof N=="object")return s=!0,N;if(typeof N=="string"){if(N.length===1)return N;{const L=N.replace(/[\\^$.*+?()[\]{}|]/g,"\\$&"),P=new RegExp(L);return t.useSticky?s4n(P):a4n(P)}}else throw Error("non exhaustive match")}})});let u,h,f,p,m;r("misc mapping",()=>{u=As(a,I=>I.tokenTypeIdx),h=As(a,I=>{const N=I.GROUP;if(N!==J2.SKIPPED){if(a_(N))return N;if(dR(N))return!1;throw Error("non exhaustive match")}}),f=As(a,I=>{const N=I.LONGER_ALT;if(N)return Wc(N)?As(N,P=>t4n(a,P)):[t4n(a,N)]}),p=As(a,I=>I.PUSH_MODE),m=As(a,I=>so(I,"POP_MODE"))});let b;r("Line Terminator Handling",()=>{const I=_jn(t.lineTerminatorCharacters);b=As(a,N=>!1),t.positionTracking!=="onlyOffset"&&(b=As(a,N=>so(N,"LINE_BREAKS")?!!N.LINE_BREAKS:vjn(N,I)===!1&&bmt(I,N.PATTERN)))});let _,w,S,C;r("Misc Mapping #2",()=>{_=As(a,yjn),w=As(o,HUi),S=Gw(a,(I,N)=>{const L=N.GROUP;return a_(L)&&L!==J2.SKIPPED&&(I[L]=[]),I},{}),C=As(o,(I,N)=>({pattern:o[N],longerAlt:f[N],canLineTerminator:b[N],isCustom:_[N],short:w[N],group:h[N],push:p[N],pop:m[N],tokenTypeIdx:u[N],tokenType:a[N]}))});let A=!0,k=[];return t.safeMode||r("First Char Optimization",()=>{k=Gw(a,(I,N,L)=>{if(typeof N.PATTERN=="string"){const P=N.PATTERN.charCodeAt(0),M=f9(P);Iit(I,M,C[L])}else if(Wc(N.START_CHARS_HINT)){let P;_o(N.START_CHARS_HINT,M=>{const F=typeof M=="string"?M.charCodeAt(0):M,U=f9(F);P!==U&&(P=U,Iit(I,U,C[L]))})}else if(hR(N.PATTERN))if(N.PATTERN.unicode)A=!1,t.ensureOptimizations&&Mct(`${hTe} Unable to analyze < ${N.PATTERN.toString()} > pattern. + The regexp unicode flag is not currently supported by the regexp-to-ast library. + This will disable the lexer's first char optimizations. + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#UNICODE_OPTIMIZE`);else{const P=wUi(N.PATTERN,t.ensureOptimizations);Jh(P)&&(A=!1),_o(P,M=>{Iit(I,M,C[L])})}else t.ensureOptimizations&&Mct(`${hTe} TokenType: <${N.name}> is using a custom token pattern without providing parameter. + This will disable the lexer's first char optimizations. + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#CUSTOM_OPTIMIZE`),A=!1;return I},[])}),{emptyGroups:S,patternIdxToConfig:C,charCodeToPatternIdxToConfig:k,hasCustom:s,canBeOptimized:A}}function TUi(e,t){let r=[];const a=AUi(e);r=r.concat(a.errors);const s=kUi(a.valid),o=s.valid;return r=r.concat(s.errors),r=r.concat(CUi(o)),r=r.concat(PUi(o)),r=r.concat(BUi(o,t)),r=r.concat(FUi(o)),r}function CUi(e){let t=[];const r=PS(e,a=>hR(a[i$]));return t=t.concat(IUi(r)),t=t.concat(LUi(r)),t=t.concat(DUi(r)),t=t.concat(MUi(r)),t=t.concat(NUi(r)),t}function AUi(e){const t=PS(e,s=>!so(s,i$)),r=As(t,s=>({message:"Token Type: ->"+s.name+"<- missing static 'PATTERN' property",type:c0.MISSING_PATTERN,tokenTypes:[s]})),a=Dke(e,t);return{errors:r,valid:a}}function kUi(e){const t=PS(e,s=>{const o=s[i$];return!hR(o)&&!CR(o)&&!so(o,"exec")&&!a_(o)}),r=As(t,s=>({message:"Token Type: ->"+s.name+"<- static 'PATTERN' can only be a RegExp, a Function matching the {CustomPatternMatcherFunc} type or an Object matching the {ICustomPattern} interface.",type:c0.INVALID_PATTERN,tokenTypes:[s]})),a=Dke(e,t);return{errors:r,valid:a}}const RUi=/[^\\][$]/;function IUi(e){class t extends Eke{constructor(){super(...arguments),this.found=!1}visitEndAnchor(o){this.found=!0}}const r=PS(e,s=>{const o=s.PATTERN;try{const u=Bke(o),h=new t;return h.visit(u),h.found}catch{return RUi.test(o.source)}});return As(r,s=>({message:`Unexpected RegExp Anchor Error: + Token Type: ->`+s.name+`<- static 'PATTERN' cannot contain end of input anchor '$' + See chevrotain.io/docs/guide/resolving_lexer_errors.html#ANCHORS for details.`,type:c0.EOI_ANCHOR_FOUND,tokenTypes:[s]}))}function NUi(e){const t=PS(e,a=>a.PATTERN.test(""));return As(t,a=>({message:"Token Type: ->"+a.name+"<- static 'PATTERN' must not match an empty string",type:c0.EMPTY_MATCH_PATTERN,tokenTypes:[a]}))}const OUi=/[^\\[][\^]|^\^/;function LUi(e){class t extends Eke{constructor(){super(...arguments),this.found=!1}visitStartAnchor(o){this.found=!0}}const r=PS(e,s=>{const o=s.PATTERN;try{const u=Bke(o),h=new t;return h.visit(u),h.found}catch{return OUi.test(o.source)}});return As(r,s=>({message:`Unexpected RegExp Anchor Error: + Token Type: ->`+s.name+`<- static 'PATTERN' cannot contain start of input anchor '^' + See https://chevrotain.io/docs/guide/resolving_lexer_errors.html#ANCHORS for details.`,type:c0.SOI_ANCHOR_FOUND,tokenTypes:[s]}))}function DUi(e){const t=PS(e,a=>{const s=a[i$];return s instanceof RegExp&&(s.multiline||s.global)});return As(t,a=>({message:"Token Type: ->"+a.name+"<- static 'PATTERN' may NOT contain global('g') or multiline('m')",type:c0.UNSUPPORTED_FLAGS_FOUND,tokenTypes:[a]}))}function MUi(e){const t=[];let r=As(e,o=>Gw(e,(u,h)=>(o.PATTERN.source===h.PATTERN.source&&!wv(t,h)&&h.PATTERN!==J2.NA&&(t.push(h),u.push(h)),u),[]));r=Uce(r);const a=PS(r,o=>o.length>1);return As(a,o=>{const u=As(o,f=>f.name);return{message:`The same RegExp pattern ->${hT(o).PATTERN}<-has been used in all of the following Token Types: ${u.join(", ")} <-`,type:c0.DUPLICATE_PATTERNS_FOUND,tokenTypes:o}})}function PUi(e){const t=PS(e,a=>{if(!so(a,"GROUP"))return!1;const s=a.GROUP;return s!==J2.SKIPPED&&s!==J2.NA&&!a_(s)});return As(t,a=>({message:"Token Type: ->"+a.name+"<- static 'GROUP' can only be Lexer.SKIPPED/Lexer.NA/A String",type:c0.INVALID_GROUP_TYPE_FOUND,tokenTypes:[a]}))}function BUi(e,t){const r=PS(e,s=>s.PUSH_MODE!==void 0&&!wv(t,s.PUSH_MODE));return As(r,s=>({message:`Token Type: ->${s.name}<- static 'PUSH_MODE' value cannot refer to a Lexer Mode ->${s.PUSH_MODE}<-which does not exist`,type:c0.PUSH_MODE_DOES_NOT_EXIST,tokenTypes:[s]}))}function FUi(e){const t=[],r=Gw(e,(a,s,o)=>{const u=s.PATTERN;return u===J2.NA||(a_(u)?a.push({str:u,idx:o,tokenType:s}):hR(u)&&UUi(u)&&a.push({str:u.source,idx:o,tokenType:s})),a},[]);return _o(e,(a,s)=>{_o(r,({str:o,idx:u,tokenType:h})=>{if(s${h.name}<- can never be matched. +Because it appears AFTER the Token Type ->${a.name}<-in the lexer's definition. +See https://chevrotain.io/docs/guide/resolving_lexer_errors.html#UNREACHABLE`;t.push({message:f,type:c0.UNREACHABLE_PATTERN,tokenTypes:[a,h]})}})}),t}function $Ui(e,t){if(hR(t)){const r=t.exec(e);return r!==null&&r.index===0}else{if(CR(t))return t(e,0,[],{});if(so(t,"exec"))return t.exec(e,0,[],{});if(typeof t=="string")return t===e;throw Error("non exhaustive match")}}function UUi(e){return Yj([".","\\","[","]","|","^","$","(",")","?","*","+","{"],r=>e.source.indexOf(r)!==-1)===void 0}function a4n(e){const t=e.ignoreCase?"i":"";return new RegExp(`^(?:${e.source})`,t)}function s4n(e){const t=e.ignoreCase?"iy":"y";return new RegExp(`${e.source}`,t)}function zUi(e,t,r){const a=[];return so(e,xae)||a.push({message:"A MultiMode Lexer cannot be initialized without a <"+xae+`> property in its definition +`,type:c0.MULTI_MODE_LEXER_WITHOUT_DEFAULT_MODE}),so(e,eEe)||a.push({message:"A MultiMode Lexer cannot be initialized without a <"+eEe+`> property in its definition +`,type:c0.MULTI_MODE_LEXER_WITHOUT_MODES_PROPERTY}),so(e,eEe)&&so(e,xae)&&!so(e.modes,e.defaultMode)&&a.push({message:`A MultiMode Lexer cannot be initialized with a ${xae}: <${e.defaultMode}>which does not exist +`,type:c0.MULTI_MODE_LEXER_DEFAULT_MODE_VALUE_DOES_NOT_EXIST}),so(e,eEe)&&_o(e.modes,(s,o)=>{_o(s,(u,h)=>{if(dR(u))a.push({message:`A Lexer cannot be initialized using an undefined Token Type. Mode:<${o}> at index: <${h}> +`,type:c0.LEXER_DEFINITION_CANNOT_CONTAIN_UNDEFINED});else if(so(u,"LONGER_ALT")){const f=Wc(u.LONGER_ALT)?u.LONGER_ALT:[u.LONGER_ALT];_o(f,p=>{!dR(p)&&!wv(s,p)&&a.push({message:`A MultiMode Lexer cannot be initialized with a longer_alt <${p.name}> on token <${u.name}> outside of mode <${o}> +`,type:c0.MULTI_MODE_LEXER_LONGER_ALT_NOT_IN_CURRENT_MODE})})}})}),a}function GUi(e,t,r){const a=[];let s=!1;const o=Uce(eT(wp(e.modes))),u=Mke(o,f=>f[i$]===J2.NA),h=_jn(r);return t&&_o(u,f=>{const p=vjn(f,h);if(p!==!1){const b={message:YUi(f,p),type:p.issue,tokenType:f};a.push(b)}else so(f,"LINE_BREAKS")?f.LINE_BREAKS===!0&&(s=!0):bmt(h,f.PATTERN)&&(s=!0)}),t&&!s&&a.push({message:`Warning: No LINE_BREAKS Found. + This Lexer has been defined to track line and column information, + But none of the Token Types can be identified as matching a line terminator. + See https://chevrotain.io/docs/guide/resolving_lexer_errors.html#LINE_BREAKS + for details.`,type:c0.NO_LINE_BREAKS_FLAGS}),a}function qUi(e){const t={},r=IS(e);return _o(r,a=>{const s=e[a];if(Wc(s))t[a]=[];else throw Error("non exhaustive match")}),t}function yjn(e){const t=e.PATTERN;if(hR(t))return!1;if(CR(t))return!0;if(so(t,"exec"))return!0;if(a_(t))return!1;throw Error("non exhaustive match")}function HUi(e){return a_(e)&&e.length===1?e.charCodeAt(0):!1}const VUi={test:function(e){const t=e.length;for(let r=this.lastIndex;r Token Type + Root cause: ${t.errMsg}. + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#IDENTIFY_TERMINATOR`;if(t.issue===c0.CUSTOM_LINE_BREAK)return`Warning: A Custom Token Pattern should specify the option. + The problem is in the <${e.name}> Token Type + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#CUSTOM_LINE_BREAK`;throw Error("non exhaustive match")}function _jn(e){return As(e,r=>a_(r)?r.charCodeAt(0):r)}function Iit(e,t,r){e[t]===void 0?e[t]=[r]:e[t].push(r)}const Sae=256;let Bxe=[];function f9(e){return e255?255+~~(e/255):e}}function Gce(e,t){const r=e.tokenTypeIdx;return r===t.tokenTypeIdx?!0:t.isParent===!0&&t.categoryMatchesMap[r]===!0}function dTe(e,t){return e.tokenTypeIdx===t.tokenTypeIdx}let o4n=1;const wjn={};function qce(e){const t=WUi(e);KUi(t),QUi(t),XUi(t),_o(t,r=>{r.isParent=r.categoryMatches.length>0})}function WUi(e){let t=Im(e),r=e,a=!0;for(;a;){r=Uce(eT(As(r,o=>o.CATEGORIES)));const s=Dke(r,t);t=t.concat(s),Jh(s)?a=!1:r=s}return t}function KUi(e){_o(e,t=>{xjn(t)||(wjn[o4n]=t,t.tokenTypeIdx=o4n++),l4n(t)&&!Wc(t.CATEGORIES)&&(t.CATEGORIES=[t.CATEGORIES]),l4n(t)||(t.CATEGORIES=[]),ZUi(t)||(t.categoryMatches=[]),JUi(t)||(t.categoryMatchesMap={})})}function XUi(e){_o(e,t=>{t.categoryMatches=[],_o(t.categoryMatchesMap,(r,a)=>{t.categoryMatches.push(wjn[a].tokenTypeIdx)})})}function QUi(e){_o(e,t=>{Ejn([],t)})}function Ejn(e,t){_o(e,r=>{t.categoryMatchesMap[r.tokenTypeIdx]=!0}),_o(t.CATEGORIES,r=>{const a=e.concat(t);wv(a,r)||Ejn(a,r)})}function xjn(e){return so(e,"tokenTypeIdx")}function l4n(e){return so(e,"CATEGORIES")}function ZUi(e){return so(e,"categoryMatches")}function JUi(e){return so(e,"categoryMatchesMap")}function ezi(e){return so(e,"tokenTypeIdx")}const Fct={buildUnableToPopLexerModeMessage(e){return`Unable to pop Lexer Mode after encountering Token ->${e.image}<- The Mode Stack is empty`},buildUnexpectedCharactersMessage(e,t,r,a,s){return`unexpected character: ->${e.charAt(t)}<- at offset: ${t}, skipped ${r} characters.`}};var c0;(function(e){e[e.MISSING_PATTERN=0]="MISSING_PATTERN",e[e.INVALID_PATTERN=1]="INVALID_PATTERN",e[e.EOI_ANCHOR_FOUND=2]="EOI_ANCHOR_FOUND",e[e.UNSUPPORTED_FLAGS_FOUND=3]="UNSUPPORTED_FLAGS_FOUND",e[e.DUPLICATE_PATTERNS_FOUND=4]="DUPLICATE_PATTERNS_FOUND",e[e.INVALID_GROUP_TYPE_FOUND=5]="INVALID_GROUP_TYPE_FOUND",e[e.PUSH_MODE_DOES_NOT_EXIST=6]="PUSH_MODE_DOES_NOT_EXIST",e[e.MULTI_MODE_LEXER_WITHOUT_DEFAULT_MODE=7]="MULTI_MODE_LEXER_WITHOUT_DEFAULT_MODE",e[e.MULTI_MODE_LEXER_WITHOUT_MODES_PROPERTY=8]="MULTI_MODE_LEXER_WITHOUT_MODES_PROPERTY",e[e.MULTI_MODE_LEXER_DEFAULT_MODE_VALUE_DOES_NOT_EXIST=9]="MULTI_MODE_LEXER_DEFAULT_MODE_VALUE_DOES_NOT_EXIST",e[e.LEXER_DEFINITION_CANNOT_CONTAIN_UNDEFINED=10]="LEXER_DEFINITION_CANNOT_CONTAIN_UNDEFINED",e[e.SOI_ANCHOR_FOUND=11]="SOI_ANCHOR_FOUND",e[e.EMPTY_MATCH_PATTERN=12]="EMPTY_MATCH_PATTERN",e[e.NO_LINE_BREAKS_FLAGS=13]="NO_LINE_BREAKS_FLAGS",e[e.UNREACHABLE_PATTERN=14]="UNREACHABLE_PATTERN",e[e.IDENTIFY_TERMINATOR=15]="IDENTIFY_TERMINATOR",e[e.CUSTOM_LINE_BREAK=16]="CUSTOM_LINE_BREAK",e[e.MULTI_MODE_LEXER_LONGER_ALT_NOT_IN_CURRENT_MODE=17]="MULTI_MODE_LEXER_LONGER_ALT_NOT_IN_CURRENT_MODE"})(c0||(c0={}));const Tae={deferDefinitionErrorsHandling:!1,positionTracking:"full",lineTerminatorsPattern:/\n|\r\n?/g,lineTerminatorCharacters:[` +`,"\r"],ensureOptimizations:!1,safeMode:!1,errorMessageProvider:Fct,traceInitPerf:!1,skipValidations:!1,recoveryEnabled:!0};Object.freeze(Tae);class J2{constructor(t,r=Tae){if(this.lexerDefinition=t,this.lexerDefinitionErrors=[],this.lexerDefinitionWarning=[],this.patternIdxToConfig={},this.charCodeToPatternIdxToConfig={},this.modes=[],this.emptyGroups={},this.trackStartLines=!0,this.trackEndLines=!0,this.hasCustom=!1,this.canModeBeOptimized={},this.TRACE_INIT=(s,o)=>{if(this.traceInitPerf===!0){this.traceInitIndent++;const u=new Array(this.traceInitIndent+1).join(" ");this.traceInitIndent <${s}>`);const{time:h,value:f}=fjn(o),p=h>10?console.warn:console.log;return this.traceInitIndent time: ${h}ms`),this.traceInitIndent--,f}else return o()},typeof r=="boolean")throw Error(`The second argument to the Lexer constructor is now an ILexerConfig Object. +a boolean 2nd argument is no longer supported`);this.config=zw({},Tae,r);const a=this.config.traceInitPerf;a===!0?(this.traceInitMaxIdent=1/0,this.traceInitPerf=!0):typeof a=="number"&&(this.traceInitMaxIdent=a,this.traceInitPerf=!0),this.traceInitIndent=-1,this.TRACE_INIT("Lexer Constructor",()=>{let s,o=!0;this.TRACE_INIT("Lexer Config handling",()=>{if(this.config.lineTerminatorsPattern===Tae.lineTerminatorsPattern)this.config.lineTerminatorsPattern=VUi;else if(this.config.lineTerminatorCharacters===Tae.lineTerminatorCharacters)throw Error(`Error: Missing property on the Lexer config. + For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#MISSING_LINE_TERM_CHARS`);if(r.safeMode&&r.ensureOptimizations)throw Error('"safeMode" and "ensureOptimizations" flags are mutually exclusive.');this.trackStartLines=/full|onlyStart/i.test(this.config.positionTracking),this.trackEndLines=/full/i.test(this.config.positionTracking),Wc(t)?s={modes:{defaultMode:Im(t)},defaultMode:xae}:(o=!1,s=Im(t))}),this.config.skipValidations===!1&&(this.TRACE_INIT("performRuntimeChecks",()=>{this.lexerDefinitionErrors=this.lexerDefinitionErrors.concat(zUi(s,this.trackStartLines,this.config.lineTerminatorCharacters))}),this.TRACE_INIT("performWarningRuntimeChecks",()=>{this.lexerDefinitionWarning=this.lexerDefinitionWarning.concat(GUi(s,this.trackStartLines,this.config.lineTerminatorCharacters))})),s.modes=s.modes?s.modes:{},_o(s.modes,(h,f)=>{s.modes[f]=Mke(h,p=>dR(p))});const u=IS(s.modes);if(_o(s.modes,(h,f)=>{this.TRACE_INIT(`Mode: <${f}> processing`,()=>{if(this.modes.push(f),this.config.skipValidations===!1&&this.TRACE_INIT("validatePatterns",()=>{this.lexerDefinitionErrors=this.lexerDefinitionErrors.concat(TUi(h,u))}),Jh(this.lexerDefinitionErrors)){qce(h);let p;this.TRACE_INIT("analyzeTokenTypes",()=>{p=SUi(h,{lineTerminatorCharacters:this.config.lineTerminatorCharacters,positionTracking:r.positionTracking,ensureOptimizations:r.ensureOptimizations,safeMode:r.safeMode,tracer:this.TRACE_INIT})}),this.patternIdxToConfig[f]=p.patternIdxToConfig,this.charCodeToPatternIdxToConfig[f]=p.charCodeToPatternIdxToConfig,this.emptyGroups=zw({},this.emptyGroups,p.emptyGroups),this.hasCustom=p.hasCustom||this.hasCustom,this.canModeBeOptimized[f]=p.canBeOptimized}})}),this.defaultMode=s.defaultMode,!Jh(this.lexerDefinitionErrors)&&!this.config.deferDefinitionErrorsHandling){const f=As(this.lexerDefinitionErrors,p=>p.message).join(`----------------------- +`);throw new Error(`Errors detected in definition of Lexer: +`+f)}_o(this.lexerDefinitionWarning,h=>{djn(h.message)}),this.TRACE_INIT("Choosing sub-methods implementations",()=>{if(bjn?(this.chopInput=qj,this.match=this.matchWithTest):(this.updateLastIndex=gp,this.match=this.matchWithExec),o&&(this.handleModes=gp),this.trackStartLines===!1&&(this.computeNewColumn=qj),this.trackEndLines===!1&&(this.updateTokenEndLineColumnLocation=gp),/full/i.test(this.config.positionTracking))this.createTokenInstance=this.createFullToken;else if(/onlyStart/i.test(this.config.positionTracking))this.createTokenInstance=this.createStartOnlyToken;else if(/onlyOffset/i.test(this.config.positionTracking))this.createTokenInstance=this.createOffsetOnlyToken;else throw Error(`Invalid config option: "${this.config.positionTracking}"`);this.hasCustom?(this.addToken=this.addTokenUsingPush,this.handlePayload=this.handlePayloadWithCustom):(this.addToken=this.addTokenUsingMemberAccess,this.handlePayload=this.handlePayloadNoCustom)}),this.TRACE_INIT("Failed Optimization Warnings",()=>{const h=Gw(this.canModeBeOptimized,(f,p,m)=>(p===!1&&f.push(m),f),[]);if(r.ensureOptimizations&&!Jh(h))throw Error(`Lexer Modes: < ${h.join(", ")} > cannot be optimized. + Disable the "ensureOptimizations" lexer config flag to silently ignore this and run the lexer in an un-optimized mode. + Or inspect the console log for details on how to resolve these issues.`)}),this.TRACE_INIT("clearRegExpParserCache",()=>{_Ui()}),this.TRACE_INIT("toFastProperties",()=>{pjn(this)})})}tokenize(t,r=this.defaultMode){if(!Jh(this.lexerDefinitionErrors)){const s=As(this.lexerDefinitionErrors,o=>o.message).join(`----------------------- +`);throw new Error(`Unable to Tokenize because Errors detected in definition of Lexer: +`+s)}return this.tokenizeInternal(t,r)}tokenizeInternal(t,r){let a,s,o,u,h,f,p,m,b,_,w,S,C,A,k;const I=t,N=I.length;let L=0,P=0;const M=this.hasCustom?0:Math.floor(t.length/10),F=new Array(M),U=[];let $=this.trackStartLines?1:void 0,G=this.trackStartLines?1:void 0;const B=qUi(this.emptyGroups),Z=this.trackStartLines,z=this.config.lineTerminatorsPattern;let Y=0,W=[],Q=[];const V=[],j=[];Object.freeze(j);let ee;function te(){return W}function ne(be){const ve=f9(be),De=Q[ve];return De===void 0?j:De}const se=be=>{if(V.length===1&&be.tokenType.PUSH_MODE===void 0){const ve=this.config.errorMessageProvider.buildUnableToPopLexerModeMessage(be);U.push({offset:be.startOffset,line:be.startLine,column:be.startColumn,length:be.image.length,message:ve})}else{V.pop();const ve=Vj(V);W=this.patternIdxToConfig[ve],Q=this.charCodeToPatternIdxToConfig[ve],Y=W.length;const De=this.canModeBeOptimized[ve]&&this.config.safeMode===!1;Q&&De?ee=ne:ee=te}};function ie(be){V.push(be),Q=this.charCodeToPatternIdxToConfig[be],W=this.patternIdxToConfig[be],Y=W.length,Y=W.length;const ve=this.canModeBeOptimized[be]&&this.config.safeMode===!1;Q&&ve?ee=ne:ee=te}ie.call(this,r);let ge;const ce=this.config.recoveryEnabled;for(;Lf.length){f=u,p=m,ge=we;break}}}break}}if(f!==null){if(b=f.length,_=ge.group,_!==void 0&&(w=ge.tokenTypeIdx,S=this.createTokenInstance(f,L,w,ge.tokenType,$,G,b),this.handlePayload(S,p),_===!1?P=this.addToken(F,P,S):B[_].push(S)),t=this.chopInput(t,b),L=L+b,G=this.computeNewColumn(G,b),Z===!0&&ge.canLineTerminator===!0){let ye=0,Ee,he;z.lastIndex=0;do Ee=z.test(f),Ee===!0&&(he=z.lastIndex-1,ye++);while(Ee===!0);ye!==0&&($=$+ye,G=b-he,this.updateTokenEndLineColumnLocation(S,_,he,ye,$,G,b))}this.handleModes(ge,se,ie,S)}else{const ye=L,Ee=$,he=G;let we=ce===!1;for(;we===!1&&L ${oY(e)} <--`:`token of type --> ${e.name} <--`} but found --> '${t.image}' <--`},buildNotAllInputParsedMessage({firstRedundant:e,ruleName:t}){return"Redundant input, expecting EOF but found: "+e.image},buildNoViableAltMessage({expectedPathsPerAlt:e,actual:t,previous:r,customUserDescription:a,ruleName:s}){const o="Expecting: ",h=` +but found: '`+hT(t).image+"'";if(a)return o+a+h;{const f=Gw(e,(_,w)=>_.concat(w),[]),p=As(f,_=>`[${As(_,w=>oY(w)).join(", ")}]`),b=`one of these possible Token sequences: +${As(p,(_,w)=>` ${w+1}. ${_}`).join(` +`)}`;return o+b+h}},buildEarlyExitMessage({expectedIterationPaths:e,actual:t,customUserDescription:r,ruleName:a}){const s="Expecting: ",u=` +but found: '`+hT(t).image+"'";if(r)return s+r+u;{const f=`expecting at least one iteration which starts with one of these possible Token sequences:: + <${As(e,p=>`[${As(p,m=>oY(m)).join(",")}]`).join(" ,")}>`;return s+f+u}}};Object.freeze(PV);const rzi={buildRuleNotFoundError(e,t){return"Invalid grammar, reference to a rule which is not defined: ->"+t.nonTerminalName+`<- +inside top level rule: ->`+e.name+"<-"}},oF={buildDuplicateFoundError(e,t){function r(m){return m instanceof wd?m.terminalType.name:m instanceof hv?m.nonTerminalName:""}const a=e.name,s=hT(t),o=s.idx,u=PC(s),h=r(s),f=o>0;let p=`->${u}${f?o:""}<- ${h?`with argument: ->${h}<-`:""} + appears more than once (${t.length} times) in the top level rule: ->${a}<-. + For further details see: https://chevrotain.io/docs/FAQ.html#NUMERICAL_SUFFIXES + `;return p=p.replace(/[ \t]+/g," "),p=p.replace(/\s\s+/g,` +`),p},buildNamespaceConflictError(e){return`Namespace conflict found in grammar. +The grammar has both a Terminal(Token) and a Non-Terminal(Rule) named: <${e.name}>. +To resolve this make sure each Terminal and Non-Terminal names are unique +This is easy to accomplish by using the convention that Terminal names start with an uppercase letter +and Non-Terminal names start with a lower case letter.`},buildAlternationPrefixAmbiguityError(e){const t=As(e.prefixPath,s=>oY(s)).join(", "),r=e.alternation.idx===0?"":e.alternation.idx;return`Ambiguous alternatives: <${e.ambiguityIndices.join(" ,")}> due to common lookahead prefix +in inside <${e.topLevelRule.name}> Rule, +<${t}> may appears as a prefix path in all these alternatives. +See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#COMMON_PREFIX +For Further details.`},buildAlternationAmbiguityError(e){const t=As(e.prefixPath,s=>oY(s)).join(", "),r=e.alternation.idx===0?"":e.alternation.idx;let a=`Ambiguous Alternatives Detected: <${e.ambiguityIndices.join(" ,")}> in inside <${e.topLevelRule.name}> Rule, +<${t}> may appears as a prefix path in all these alternatives. +`;return a=a+`See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#AMBIGUOUS_ALTERNATIVES +For Further details.`,a},buildEmptyRepetitionError(e){let t=PC(e.repetition);return e.repetition.idx!==0&&(t+=e.repetition.idx),`The repetition <${t}> within Rule <${e.topLevelRule.name}> can never consume any tokens. +This could lead to an infinite loop.`},buildTokenNameError(e){return"deprecated"},buildEmptyAlternationError(e){return`Ambiguous empty alternative: <${e.emptyChoiceIdx+1}> in inside <${e.topLevelRule.name}> Rule. +Only the last alternative may be an empty alternative.`},buildTooManyAlternativesError(e){return`An Alternation cannot have more than 256 alternatives: + inside <${e.topLevelRule.name}> Rule. + has ${e.alternation.definition.length+1} alternatives.`},buildLeftRecursionError(e){const t=e.topLevelRule.name,r=As(e.leftRecursionPath,o=>o.name),a=`${t} --> ${r.concat([t]).join(" --> ")}`;return`Left Recursion found in grammar. +rule: <${t}> can be invoked from itself (directly or indirectly) +without consuming any Tokens. The grammar path that causes this is: + ${a} + To fix this refactor your grammar to remove the left recursion. +see: https://en.wikipedia.org/wiki/LL_parser#Left_factoring.`},buildInvalidRuleNameError(e){return"deprecated"},buildDuplicateRuleNameError(e){let t;return e.topLevelRule instanceof nK?t=e.topLevelRule.name:t=e.topLevelRule,`Duplicate definition, rule: ->${t}<- is already defined in the grammar: ->${e.grammarName}<-`}};function izi(e,t){const r=new azi(e,t);return r.resolveRefs(),r.errors}class azi extends rK{constructor(t,r){super(),this.nameToTopRule=t,this.errMsgProvider=r,this.errors=[]}resolveRefs(){_o(wp(this.nameToTopRule),t=>{this.currTopLevel=t,t.accept(this)})}visitNonTerminal(t){const r=this.nameToTopRule[t.nonTerminalName];if(r)t.referencedRule=r;else{const a=this.errMsgProvider.buildRuleNotFoundError(this.currTopLevel,t);this.errors.push({message:a,type:dv.UNRESOLVED_SUBRULE_REF,ruleName:this.currTopLevel.name,unresolvedRefName:t.nonTerminalName})}}}class szi extends Pke{constructor(t,r){super(),this.topProd=t,this.path=r,this.possibleTokTypes=[],this.nextProductionName="",this.nextProductionOccurrence=0,this.found=!1,this.isAtEndOfPath=!1}startWalking(){if(this.found=!1,this.path.ruleStack[0]!==this.topProd.name)throw Error("The path does not start with the walker's top Rule!");return this.ruleStack=Im(this.path.ruleStack).reverse(),this.occurrenceStack=Im(this.path.occurrenceStack).reverse(),this.ruleStack.pop(),this.occurrenceStack.pop(),this.updateExpectedNext(),this.walk(this.topProd),this.possibleTokTypes}walk(t,r=[]){this.found||super.walk(t,r)}walkProdRef(t,r,a){if(t.referencedRule.name===this.nextProductionName&&t.idx===this.nextProductionOccurrence){const s=r.concat(a);this.updateExpectedNext(),this.walk(t.referencedRule,s)}}updateExpectedNext(){Jh(this.ruleStack)?(this.nextProductionName="",this.nextProductionOccurrence=0,this.isAtEndOfPath=!0):(this.nextProductionName=this.ruleStack.pop(),this.nextProductionOccurrence=this.occurrenceStack.pop())}}class ozi extends szi{constructor(t,r){super(t,r),this.path=r,this.nextTerminalName="",this.nextTerminalOccurrence=0,this.nextTerminalName=this.path.lastTok.name,this.nextTerminalOccurrence=this.path.lastTokOccurrence}walkTerminal(t,r,a){if(this.isAtEndOfPath&&t.terminalType.name===this.nextTerminalName&&t.idx===this.nextTerminalOccurrence&&!this.found){const s=r.concat(a),o=new s_({definition:s});this.possibleTokTypes=zce(o),this.found=!0}}}class Fke extends Pke{constructor(t,r){super(),this.topRule=t,this.occurrence=r,this.result={token:void 0,occurrence:void 0,isEndOfRule:void 0}}startWalking(){return this.walk(this.topRule),this.result}}class lzi extends Fke{walkMany(t,r,a){if(t.idx===this.occurrence){const s=hT(r.concat(a));this.result.isEndOfRule=s===void 0,s instanceof wd&&(this.result.token=s.terminalType,this.result.occurrence=s.idx)}else super.walkMany(t,r,a)}}class b4n extends Fke{walkManySep(t,r,a){if(t.idx===this.occurrence){const s=hT(r.concat(a));this.result.isEndOfRule=s===void 0,s instanceof wd&&(this.result.token=s.terminalType,this.result.occurrence=s.idx)}else super.walkManySep(t,r,a)}}class czi extends Fke{walkAtLeastOne(t,r,a){if(t.idx===this.occurrence){const s=hT(r.concat(a));this.result.isEndOfRule=s===void 0,s instanceof wd&&(this.result.token=s.terminalType,this.result.occurrence=s.idx)}else super.walkAtLeastOne(t,r,a)}}class y4n extends Fke{walkAtLeastOneSep(t,r,a){if(t.idx===this.occurrence){const s=hT(r.concat(a));this.result.isEndOfRule=s===void 0,s instanceof wd&&(this.result.token=s.terminalType,this.result.occurrence=s.idx)}else super.walkAtLeastOneSep(t,r,a)}}function $ct(e,t,r=[]){r=Im(r);let a=[],s=0;function o(h){return h.concat(fm(e,s+1))}function u(h){const f=$ct(o(h),t,r);return a.concat(f)}for(;r.length{Jh(f.definition)===!1&&(a=u(f.definition))}),a;if(h instanceof wd)r.push(h.terminalType);else throw Error("non exhaustive match")}s++}return a.push({partialPath:r,suffixDef:fm(e,s)}),a}function Ajn(e,t,r,a){const s="EXIT_NONE_TERMINAL",o=[s],u="EXIT_ALTERNATIVE";let h=!1;const f=t.length,p=f-a-1,m=[],b=[];for(b.push({idx:-1,def:e,ruleStack:[],occurrenceStack:[]});!Jh(b);){const _=b.pop();if(_===u){h&&Vj(b).idx<=p&&b.pop();continue}const w=_.def,S=_.idx,C=_.ruleStack,A=_.occurrenceStack;if(Jh(w))continue;const k=w[0];if(k===s){const I={idx:S,def:fm(w),ruleStack:nle(C),occurrenceStack:nle(A)};b.push(I)}else if(k instanceof wd)if(S=0;I--){const N=k.definition[I],L={idx:S,def:N.definition.concat(fm(w)),ruleStack:C,occurrenceStack:A};b.push(L),b.push(u)}else if(k instanceof s_)b.push({idx:S,def:k.definition.concat(fm(w)),ruleStack:C,occurrenceStack:A});else if(k instanceof nK)b.push(uzi(k,S,C,A));else throw Error("non exhaustive match")}return m}function uzi(e,t,r,a){const s=Im(r);s.push(e.name);const o=Im(a);return o.push(1),{idx:t,def:e.definition,ruleStack:s,occurrenceStack:o}}var If;(function(e){e[e.OPTION=0]="OPTION",e[e.REPETITION=1]="REPETITION",e[e.REPETITION_MANDATORY=2]="REPETITION_MANDATORY",e[e.REPETITION_MANDATORY_WITH_SEPARATOR=3]="REPETITION_MANDATORY_WITH_SEPARATOR",e[e.REPETITION_WITH_SEPARATOR=4]="REPETITION_WITH_SEPARATOR",e[e.ALTERNATION=5]="ALTERNATION"})(If||(If={}));function vmt(e){if(e instanceof Am||e==="Option")return If.OPTION;if(e instanceof l0||e==="Repetition")return If.REPETITION;if(e instanceof Kw||e==="RepetitionMandatory")return If.REPETITION_MANDATORY;if(e instanceof Xw||e==="RepetitionMandatoryWithSeparator")return If.REPETITION_MANDATORY_WITH_SEPARATOR;if(e instanceof u_||e==="RepetitionWithSeparator")return If.REPETITION_WITH_SEPARATOR;if(e instanceof h_||e==="Alternation")return If.ALTERNATION;throw Error("non exhaustive match")}function v4n(e){const{occurrence:t,rule:r,prodType:a,maxLookahead:s}=e,o=vmt(a);return o===If.ALTERNATION?$ke(t,r,s):Uke(t,r,o,s)}function hzi(e,t,r,a,s,o){const u=$ke(e,t,r),h=Ijn(u)?dTe:Gce;return o(u,a,h,s)}function dzi(e,t,r,a,s,o){const u=Uke(e,t,s,r),h=Ijn(u)?dTe:Gce;return o(u[0],h,a)}function fzi(e,t,r,a){const s=e.length,o=tT(e,u=>tT(u,h=>h.length===1));if(t)return function(u){const h=As(u,f=>f.GATE);for(let f=0;feT(f)),h=Gw(u,(f,p,m)=>(_o(p,b=>{so(f,b.tokenTypeIdx)||(f[b.tokenTypeIdx]=m),_o(b.categoryMatches,_=>{so(f,_)||(f[_]=m)})}),f),{});return function(){const f=this.LA(1);return h[f.tokenTypeIdx]}}else return function(){for(let u=0;uo.length===1),s=e.length;if(a&&!r){const o=eT(e);if(o.length===1&&Jh(o[0].categoryMatches)){const h=o[0].tokenTypeIdx;return function(){return this.LA(1).tokenTypeIdx===h}}else{const u=Gw(o,(h,f,p)=>(h[f.tokenTypeIdx]=!0,_o(f.categoryMatches,m=>{h[m]=!0}),h),[]);return function(){const h=this.LA(1);return u[h.tokenTypeIdx]===!0}}}else return function(){e:for(let o=0;o$ct([u],1)),a=_4n(r.length),s=As(r,u=>{const h={};return _o(u,f=>{const p=Nit(f.partialPath);_o(p,m=>{h[m]=!0})}),h});let o=r;for(let u=1;u<=t;u++){const h=o;o=_4n(h.length);for(let f=0;f{const k=Nit(A.partialPath);_o(k,I=>{s[f][I]=!0})})}}}}return a}function $ke(e,t,r,a){const s=new kjn(e,If.ALTERNATION,a);return t.accept(s),Rjn(s.result,r)}function Uke(e,t,r,a){const s=new kjn(e,r);t.accept(s);const o=s.result,h=new gzi(t,e,r).startWalking(),f=new s_({definition:o}),p=new s_({definition:h});return Rjn([f,p],a)}function Uct(e,t){e:for(let r=0;r{const s=t[a];return r===s||s.categoryMatchesMap[r.tokenTypeIdx]})}function Ijn(e){return tT(e,t=>tT(t,r=>tT(r,a=>Jh(a.categoryMatches))))}function yzi(e){const t=e.lookaheadStrategy.validate({rules:e.rules,tokenTypes:e.tokenTypes,grammarName:e.grammarName});return As(t,r=>Object.assign({type:dv.CUSTOM_LOOKAHEAD_VALIDATION},r))}function vzi(e,t,r,a){const s=dS(e,f=>_zi(f,r)),o=Ozi(e,t,r),u=dS(e,f=>kzi(f,r)),h=dS(e,f=>xzi(f,e,a,r));return s.concat(o,u,h)}function _zi(e,t){const r=new Ezi;e.accept(r);const a=r.allProductions,s=$$i(a,wzi),o=yT(s,h=>h.length>1);return As(wp(o),h=>{const f=hT(h),p=t.buildDuplicateFoundError(e,h),m=PC(f),b={message:p,type:dv.DUPLICATE_PRODUCTIONS,ruleName:e.name,dslName:m,occurrence:f.idx},_=Njn(f);return _&&(b.parameter=_),b})}function wzi(e){return`${PC(e)}_#_${e.idx}_#_${Njn(e)}`}function Njn(e){return e instanceof wd?e.terminalType.name:e instanceof hv?e.nonTerminalName:""}class Ezi extends rK{constructor(){super(...arguments),this.allProductions=[]}visitNonTerminal(t){this.allProductions.push(t)}visitOption(t){this.allProductions.push(t)}visitRepetitionWithSeparator(t){this.allProductions.push(t)}visitRepetitionMandatory(t){this.allProductions.push(t)}visitRepetitionMandatoryWithSeparator(t){this.allProductions.push(t)}visitRepetition(t){this.allProductions.push(t)}visitAlternation(t){this.allProductions.push(t)}visitTerminal(t){this.allProductions.push(t)}}function xzi(e,t,r,a){const s=[];if(Gw(t,(u,h)=>h.name===e.name?u+1:u,0)>1){const u=a.buildDuplicateRuleNameError({topLevelRule:e,grammarName:r});s.push({message:u,type:dv.DUPLICATE_RULE_NAME,ruleName:e.name})}return s}function Szi(e,t,r){const a=[];let s;return wv(t,e)||(s=`Invalid rule override, rule: ->${e}<- cannot be overridden in the grammar: ->${r}<-as it is not defined in any of the super grammars `,a.push({message:s,type:dv.INVALID_RULE_OVERRIDE,ruleName:e})),a}function Ojn(e,t,r,a=[]){const s=[],o=Fxe(t.definition);if(Jh(o))return[];{const u=e.name;wv(o,e)&&s.push({message:r.buildLeftRecursionError({topLevelRule:e,leftRecursionPath:a}),type:dv.LEFT_RECURSION,ruleName:u});const f=Dke(o,a.concat([e])),p=dS(f,m=>{const b=Im(a);return b.push(m),Ojn(e,m,r,b)});return s.concat(p)}}function Fxe(e){let t=[];if(Jh(e))return t;const r=hT(e);if(r instanceof hv)t.push(r.referencedRule);else if(r instanceof s_||r instanceof Am||r instanceof Kw||r instanceof Xw||r instanceof u_||r instanceof l0)t=t.concat(Fxe(r.definition));else if(r instanceof h_)t=eT(As(r.definition,o=>Fxe(o.definition)));else if(!(r instanceof wd))throw Error("non exhaustive match");const a=uTe(r),s=e.length>1;if(a&&s){const o=fm(e);return t.concat(Fxe(o))}else return t}class _mt extends rK{constructor(){super(...arguments),this.alternations=[]}visitAlternation(t){this.alternations.push(t)}}function Tzi(e,t){const r=new _mt;e.accept(r);const a=r.alternations;return dS(a,o=>{const u=nle(o.definition);return dS(u,(h,f)=>{const p=Ajn([h],[],Gce,1);return Jh(p)?[{message:t.buildEmptyAlternationError({topLevelRule:e,alternation:o,emptyChoiceIdx:f}),type:dv.NONE_LAST_EMPTY_ALT,ruleName:e.name,occurrence:o.idx,alternative:f+1}]:[]})})}function Czi(e,t,r){const a=new _mt;e.accept(a);let s=a.alternations;return s=Mke(s,u=>u.ignoreAmbiguities===!0),dS(s,u=>{const h=u.idx,f=u.maxLookahead||t,p=$ke(h,e,f,u),m=Izi(p,u,e,r),b=Nzi(p,u,e,r);return m.concat(b)})}class Azi extends rK{constructor(){super(...arguments),this.allProductions=[]}visitRepetitionWithSeparator(t){this.allProductions.push(t)}visitRepetitionMandatory(t){this.allProductions.push(t)}visitRepetitionMandatoryWithSeparator(t){this.allProductions.push(t)}visitRepetition(t){this.allProductions.push(t)}}function kzi(e,t){const r=new _mt;e.accept(r);const a=r.alternations;return dS(a,o=>o.definition.length>255?[{message:t.buildTooManyAlternativesError({topLevelRule:e,alternation:o}),type:dv.TOO_MANY_ALTS,ruleName:e.name,occurrence:o.idx}]:[])}function Rzi(e,t,r){const a=[];return _o(e,s=>{const o=new Azi;s.accept(o);const u=o.allProductions;_o(u,h=>{const f=vmt(h),p=h.maxLookahead||t,m=h.idx,_=Uke(m,s,f,p)[0];if(Jh(eT(_))){const w=r.buildEmptyRepetitionError({topLevelRule:s,repetition:h});a.push({message:w,type:dv.NO_NON_EMPTY_LOOKAHEAD,ruleName:s.name})}})}),a}function Izi(e,t,r,a){const s=[],o=Gw(e,(h,f,p)=>(t.definition[p].ignoreAmbiguities===!0||_o(f,m=>{const b=[p];_o(e,(_,w)=>{p!==w&&Uct(_,m)&&t.definition[w].ignoreAmbiguities!==!0&&b.push(w)}),b.length>1&&!Uct(s,m)&&(s.push(m),h.push({alts:b,path:m}))}),h),[]);return As(o,h=>{const f=As(h.alts,m=>m+1);return{message:a.buildAlternationAmbiguityError({topLevelRule:r,alternation:t,ambiguityIndices:f,prefixPath:h.path}),type:dv.AMBIGUOUS_ALTS,ruleName:r.name,occurrence:t.idx,alternatives:h.alts}})}function Nzi(e,t,r,a){const s=Gw(e,(u,h,f)=>{const p=As(h,m=>({idx:f,path:m}));return u.concat(p)},[]);return Uce(dS(s,u=>{if(t.definition[u.idx].ignoreAmbiguities===!0)return[];const f=u.idx,p=u.path,m=PS(s,_=>t.definition[_.idx].ignoreAmbiguities!==!0&&_.idx{const w=[_.idx+1,f+1],S=t.idx===0?"":t.idx;return{message:a.buildAlternationPrefixAmbiguityError({topLevelRule:r,alternation:t,ambiguityIndices:w,prefixPath:_.path}),type:dv.AMBIGUOUS_PREFIX_ALTS,ruleName:r.name,occurrence:S,alternatives:w}})}))}function Ozi(e,t,r){const a=[],s=As(t,o=>o.name);return _o(e,o=>{const u=o.name;if(wv(s,u)){const h=r.buildNamespaceConflictError(o);a.push({message:h,type:dv.CONFLICT_TOKENS_RULES_NAMESPACE,ruleName:u})}}),a}function Lzi(e){const t=gmt(e,{errMsgProvider:rzi}),r={};return _o(e.rules,a=>{r[a.name]=a}),izi(r,t.errMsgProvider)}function Dzi(e){return e=gmt(e,{errMsgProvider:oF}),vzi(e.rules,e.tokenTypes,e.errMsgProvider,e.grammarName)}const Ljn="MismatchedTokenException",Djn="NoViableAltException",Mjn="EarlyExitException",Pjn="NotAllInputParsedException",Bjn=[Ljn,Djn,Mjn,Pjn];Object.freeze(Bjn);function fTe(e){return wv(Bjn,e.name)}class zke extends Error{constructor(t,r){super(t),this.token=r,this.resyncedTokens=[],Object.setPrototypeOf(this,new.target.prototype),Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}}class Fjn extends zke{constructor(t,r,a){super(t,r),this.previousToken=a,this.name=Ljn}}class Mzi extends zke{constructor(t,r,a){super(t,r),this.previousToken=a,this.name=Djn}}class Pzi extends zke{constructor(t,r){super(t,r),this.name=Pjn}}class Bzi extends zke{constructor(t,r,a){super(t,r),this.previousToken=a,this.name=Mjn}}const Oit={},$jn="InRuleRecoveryException";class Fzi extends Error{constructor(t){super(t),this.name=$jn}}class $zi{initRecoverable(t){this.firstAfterRepMap={},this.resyncFollows={},this.recoveryEnabled=so(t,"recoveryEnabled")?t.recoveryEnabled:fR.recoveryEnabled,this.recoveryEnabled&&(this.attemptInRepetitionRecovery=Uzi)}getTokenToInsert(t){const r=ymt(t,"",NaN,NaN,NaN,NaN,NaN,NaN);return r.isInsertedInRecovery=!0,r}canTokenTypeBeInsertedInRecovery(t){return!0}canTokenTypeBeDeletedInRecovery(t){return!0}tryInRepetitionRecovery(t,r,a,s){const o=this.findReSyncTokenType(),u=this.exportLexerState(),h=[];let f=!1;const p=this.LA(1);let m=this.LA(1);const b=()=>{const _=this.LA(0),w=this.errorMessageProvider.buildMismatchTokenMessage({expected:s,actual:p,previous:_,ruleName:this.getCurrRuleFullName()}),S=new Fjn(w,p,this.LA(0));S.resyncedTokens=nle(h),this.SAVE_ERROR(S)};for(;!f;)if(this.tokenMatcher(m,s)){b();return}else if(a.call(this)){b(),t.apply(this,r);return}else this.tokenMatcher(m,o)?f=!0:(m=this.SKIP_TOKEN(),this.addToResyncTokens(m,h));this.importLexerState(u)}shouldInRepetitionRecoveryBeTried(t,r,a){return!(a===!1||this.tokenMatcher(this.LA(1),t)||this.isBackTracking()||this.canPerformInRuleRecovery(t,this.getFollowsForInRuleRecovery(t,r)))}getFollowsForInRuleRecovery(t,r){const a=this.getCurrentGrammarPath(t,r);return this.getNextPossibleTokenTypes(a)}tryInRuleRecovery(t,r){if(this.canRecoverWithSingleTokenInsertion(t,r))return this.getTokenToInsert(t);if(this.canRecoverWithSingleTokenDeletion(t)){const a=this.SKIP_TOKEN();return this.consumeToken(),a}throw new Fzi("sad sad panda")}canPerformInRuleRecovery(t,r){return this.canRecoverWithSingleTokenInsertion(t,r)||this.canRecoverWithSingleTokenDeletion(t)}canRecoverWithSingleTokenInsertion(t,r){if(!this.canTokenTypeBeInsertedInRecovery(t)||Jh(r))return!1;const a=this.LA(1);return Yj(r,o=>this.tokenMatcher(a,o))!==void 0}canRecoverWithSingleTokenDeletion(t){return this.canTokenTypeBeDeletedInRecovery(t)?this.tokenMatcher(this.LA(2),t):!1}isInCurrentRuleReSyncSet(t){const r=this.getCurrFollowKey(),a=this.getFollowSetFromFollowKey(r);return wv(a,t)}findReSyncTokenType(){const t=this.flattenFollowSet();let r=this.LA(1),a=2;for(;;){const s=Yj(t,o=>Cjn(r,o));if(s!==void 0)return s;r=this.LA(a),a++}}getCurrFollowKey(){if(this.RULE_STACK.length===1)return Oit;const t=this.getLastExplicitRuleShortName(),r=this.getLastExplicitRuleOccurrenceIndex(),a=this.getPreviousExplicitRuleShortName();return{ruleName:this.shortRuleNameToFullName(t),idxInCallingRule:r,inRule:this.shortRuleNameToFullName(a)}}buildFullFollowKeyStack(){const t=this.RULE_STACK,r=this.RULE_OCCURRENCE_STACK;return As(t,(a,s)=>s===0?Oit:{ruleName:this.shortRuleNameToFullName(a),idxInCallingRule:r[s],inRule:this.shortRuleNameToFullName(t[s-1])})}flattenFollowSet(){const t=As(this.buildFullFollowKeyStack(),r=>this.getFollowSetFromFollowKey(r));return eT(t)}getFollowSetFromFollowKey(t){if(t===Oit)return[p9];const r=t.ruleName+t.idxInCallingRule+gjn+t.inRule;return this.resyncFollows[r]}addToResyncTokens(t,r){return this.tokenMatcher(t,p9)||r.push(t),r}reSyncTo(t){const r=[];let a=this.LA(1);for(;this.tokenMatcher(a,t)===!1;)a=this.SKIP_TOKEN(),this.addToResyncTokens(a,r);return nle(r)}attemptInRepetitionRecovery(t,r,a,s,o,u,h){}getCurrentGrammarPath(t,r){const a=this.getHumanReadableRuleStack(),s=Im(this.RULE_OCCURRENCE_STACK);return{ruleStack:a,occurrenceStack:s,lastTok:t,lastTokOccurrence:r}}getHumanReadableRuleStack(){return As(this.RULE_STACK,t=>this.shortRuleNameToFullName(t))}}function Uzi(e,t,r,a,s,o,u){const h=this.getKeyForAutomaticLookahead(a,s);let f=this.firstAfterRepMap[h];if(f===void 0){const _=this.getCurrRuleFullName(),w=this.getGAstProductions()[_];f=new o(w,s).startWalking(),this.firstAfterRepMap[h]=f}let p=f.token,m=f.occurrence;const b=f.isEndOfRule;this.RULE_STACK.length===1&&b&&p===void 0&&(p=p9,m=1),!(p===void 0||m===void 0)&&this.shouldInRepetitionRecoveryBeTried(p,m,u)&&this.tryInRepetitionRecovery(e,t,r,p)}const zzi=4,Z9=8,Ujn=1<Ojn(r,r,oF))}validateEmptyOrAlternatives(t){return dS(t,r=>Tzi(r,oF))}validateAmbiguousAlternationAlternatives(t,r){return dS(t,a=>Czi(a,r,oF))}validateSomeNonEmptyLookaheadPath(t,r){return Rzi(t,r,oF)}buildLookaheadForAlternation(t){return hzi(t.prodOccurrence,t.rule,t.maxLookahead,t.hasPredicates,t.dynamicTokensEnabled,fzi)}buildLookaheadForOptional(t){return dzi(t.prodOccurrence,t.rule,t.maxLookahead,t.dynamicTokensEnabled,vmt(t.prodType),pzi)}}class Gzi{initLooksAhead(t){this.dynamicTokensEnabled=so(t,"dynamicTokensEnabled")?t.dynamicTokensEnabled:fR.dynamicTokensEnabled,this.maxLookahead=so(t,"maxLookahead")?t.maxLookahead:fR.maxLookahead,this.lookaheadStrategy=so(t,"lookaheadStrategy")?t.lookaheadStrategy:new wmt({maxLookahead:this.maxLookahead}),this.lookAheadFuncsCache=new Map}preComputeLookaheadFunctions(t){_o(t,r=>{this.TRACE_INIT(`${r.name} Rule Lookahead`,()=>{const{alternation:a,repetition:s,option:o,repetitionMandatory:u,repetitionMandatoryWithSeparator:h,repetitionWithSeparator:f}=Hzi(r);_o(a,p=>{const m=p.idx===0?"":p.idx;this.TRACE_INIT(`${PC(p)}${m}`,()=>{const b=this.lookaheadStrategy.buildLookaheadForAlternation({prodOccurrence:p.idx,rule:r,maxLookahead:p.maxLookahead||this.maxLookahead,hasPredicates:p.hasPredicates,dynamicTokensEnabled:this.dynamicTokensEnabled}),_=Lit(this.fullRuleNameToShort[r.name],Ujn,p.idx);this.setLaFuncCache(_,b)})}),_o(s,p=>{this.computeLookaheadFunc(r,p.idx,zct,"Repetition",p.maxLookahead,PC(p))}),_o(o,p=>{this.computeLookaheadFunc(r,p.idx,zjn,"Option",p.maxLookahead,PC(p))}),_o(u,p=>{this.computeLookaheadFunc(r,p.idx,Gct,"RepetitionMandatory",p.maxLookahead,PC(p))}),_o(h,p=>{this.computeLookaheadFunc(r,p.idx,$xe,"RepetitionMandatoryWithSeparator",p.maxLookahead,PC(p))}),_o(f,p=>{this.computeLookaheadFunc(r,p.idx,qct,"RepetitionWithSeparator",p.maxLookahead,PC(p))})})})}computeLookaheadFunc(t,r,a,s,o,u){this.TRACE_INIT(`${u}${r===0?"":r}`,()=>{const h=this.lookaheadStrategy.buildLookaheadForOptional({prodOccurrence:r,rule:t,maxLookahead:o||this.maxLookahead,dynamicTokensEnabled:this.dynamicTokensEnabled,prodType:s}),f=Lit(this.fullRuleNameToShort[t.name],a,r);this.setLaFuncCache(f,h)})}getKeyForAutomaticLookahead(t,r){const a=this.getLastExplicitRuleShortName();return Lit(a,t,r)}getLaFuncFromCache(t){return this.lookAheadFuncsCache.get(t)}setLaFuncCache(t,r){this.lookAheadFuncsCache.set(t,r)}}class qzi extends rK{constructor(){super(...arguments),this.dslMethods={option:[],alternation:[],repetition:[],repetitionWithSeparator:[],repetitionMandatory:[],repetitionMandatoryWithSeparator:[]}}reset(){this.dslMethods={option:[],alternation:[],repetition:[],repetitionWithSeparator:[],repetitionMandatory:[],repetitionMandatoryWithSeparator:[]}}visitOption(t){this.dslMethods.option.push(t)}visitRepetitionWithSeparator(t){this.dslMethods.repetitionWithSeparator.push(t)}visitRepetitionMandatory(t){this.dslMethods.repetitionMandatory.push(t)}visitRepetitionMandatoryWithSeparator(t){this.dslMethods.repetitionMandatoryWithSeparator.push(t)}visitRepetition(t){this.dslMethods.repetition.push(t)}visitAlternation(t){this.dslMethods.alternation.push(t)}}const tEe=new qzi;function Hzi(e){tEe.reset(),e.accept(tEe);const t=tEe.dslMethods;return tEe.reset(),t}function w4n(e,t){isNaN(e.startOffset)===!0?(e.startOffset=t.startOffset,e.endOffset=t.endOffset):e.endOffsetu.msg);throw Error(`Errors Detected in CST Visitor <${this.constructor.name}>: + ${o.join(` + +`).replace(/\n/g,` + `)}`)}}};return r.prototype=a,r.prototype.constructor=r,r._RULE_NAMES=t,r}function Xzi(e,t,r){const a=function(){};Gjn(a,e+"BaseSemanticsWithDefaults");const s=Object.create(r.prototype);return _o(t,o=>{s[o]=Wzi}),a.prototype=s,a.prototype.constructor=a,a}var Hct;(function(e){e[e.REDUNDANT_METHOD=0]="REDUNDANT_METHOD",e[e.MISSING_METHOD=1]="MISSING_METHOD"})(Hct||(Hct={}));function Qzi(e,t){return Zzi(e,t)}function Zzi(e,t){const r=PS(t,s=>CR(e[s])===!1),a=As(r,s=>({msg:`Missing visitor method: <${s}> on ${e.constructor.name} CST Visitor.`,type:Hct.MISSING_METHOD,methodName:s}));return Uce(a)}class Jzi{initTreeBuilder(t){if(this.CST_STACK=[],this.outputCst=t.outputCst,this.nodeLocationTracking=so(t,"nodeLocationTracking")?t.nodeLocationTracking:fR.nodeLocationTracking,!this.outputCst)this.cstInvocationStateUpdate=gp,this.cstFinallyStateUpdate=gp,this.cstPostTerminal=gp,this.cstPostNonTerminal=gp,this.cstPostRule=gp;else if(/full/i.test(this.nodeLocationTracking))this.recoveryEnabled?(this.setNodeLocationFromToken=E4n,this.setNodeLocationFromNode=E4n,this.cstPostRule=gp,this.setInitialNodeLocation=this.setInitialNodeLocationFullRecovery):(this.setNodeLocationFromToken=gp,this.setNodeLocationFromNode=gp,this.cstPostRule=this.cstPostRuleFull,this.setInitialNodeLocation=this.setInitialNodeLocationFullRegular);else if(/onlyOffset/i.test(this.nodeLocationTracking))this.recoveryEnabled?(this.setNodeLocationFromToken=w4n,this.setNodeLocationFromNode=w4n,this.cstPostRule=gp,this.setInitialNodeLocation=this.setInitialNodeLocationOnlyOffsetRecovery):(this.setNodeLocationFromToken=gp,this.setNodeLocationFromNode=gp,this.cstPostRule=this.cstPostRuleOnlyOffset,this.setInitialNodeLocation=this.setInitialNodeLocationOnlyOffsetRegular);else if(/none/i.test(this.nodeLocationTracking))this.setNodeLocationFromToken=gp,this.setNodeLocationFromNode=gp,this.cstPostRule=gp,this.setInitialNodeLocation=gp;else throw Error(`Invalid config option: "${t.nodeLocationTracking}"`)}setInitialNodeLocationOnlyOffsetRecovery(t){t.location={startOffset:NaN,endOffset:NaN}}setInitialNodeLocationOnlyOffsetRegular(t){t.location={startOffset:this.LA(1).startOffset,endOffset:NaN}}setInitialNodeLocationFullRecovery(t){t.location={startOffset:NaN,startLine:NaN,startColumn:NaN,endOffset:NaN,endLine:NaN,endColumn:NaN}}setInitialNodeLocationFullRegular(t){const r=this.LA(1);t.location={startOffset:r.startOffset,startLine:r.startLine,startColumn:r.startColumn,endOffset:NaN,endLine:NaN,endColumn:NaN}}cstInvocationStateUpdate(t){const r={name:t,children:Object.create(null)};this.setInitialNodeLocation(r),this.CST_STACK.push(r)}cstFinallyStateUpdate(){this.CST_STACK.pop()}cstPostRuleFull(t){const r=this.LA(0),a=t.location;a.startOffset<=r.startOffset?(a.endOffset=r.endOffset,a.endLine=r.endLine,a.endColumn=r.endColumn):(a.startOffset=NaN,a.startLine=NaN,a.startColumn=NaN)}cstPostRuleOnlyOffset(t){const r=this.LA(0),a=t.location;a.startOffset<=r.startOffset?a.endOffset=r.endOffset:a.startOffset=NaN}cstPostTerminal(t,r){const a=this.CST_STACK[this.CST_STACK.length-1];Vzi(a,r,t),this.setNodeLocationFromToken(a.location,r)}cstPostNonTerminal(t,r){const a=this.CST_STACK[this.CST_STACK.length-1];Yzi(a,r,t),this.setNodeLocationFromNode(a.location,t.location)}getBaseCstVisitorConstructor(){if(dR(this.baseCstVisitorConstructor)){const t=Kzi(this.className,IS(this.gastProductionsCache));return this.baseCstVisitorConstructor=t,t}return this.baseCstVisitorConstructor}getBaseCstVisitorConstructorWithDefaults(){if(dR(this.baseCstVisitorWithDefaultsConstructor)){const t=Xzi(this.className,IS(this.gastProductionsCache),this.getBaseCstVisitorConstructor());return this.baseCstVisitorWithDefaultsConstructor=t,t}return this.baseCstVisitorWithDefaultsConstructor}getLastExplicitRuleShortName(){const t=this.RULE_STACK;return t[t.length-1]}getPreviousExplicitRuleShortName(){const t=this.RULE_STACK;return t[t.length-2]}getLastExplicitRuleOccurrenceIndex(){const t=this.RULE_OCCURRENCE_STACK;return t[t.length-1]}}class eGi{initLexerAdapter(){this.tokVector=[],this.tokVectorLength=0,this.currIdx=-1}set input(t){if(this.selfAnalysisDone!==!0)throw Error("Missing invocation at the end of the Parser's constructor.");this.reset(),this.tokVector=t,this.tokVectorLength=t.length}get input(){return this.tokVector}SKIP_TOKEN(){return this.currIdx<=this.tokVector.length-2?(this.consumeToken(),this.LA(1)):gTe}LA(t){const r=this.currIdx+t;return r<0||this.tokVectorLength<=r?gTe:this.tokVector[r]}consumeToken(){this.currIdx++}exportLexerState(){return this.currIdx}importLexerState(t){this.currIdx=t}resetLexerState(){this.currIdx=-1}moveToTerminatedState(){this.currIdx=this.tokVector.length-1}getLexerPosition(){return this.exportLexerState()}}class tGi{ACTION(t){return t.call(this)}consume(t,r,a){return this.consumeInternal(r,t,a)}subrule(t,r,a){return this.subruleInternal(r,t,a)}option(t,r){return this.optionInternal(r,t)}or(t,r){return this.orInternal(r,t)}many(t,r){return this.manyInternal(t,r)}atLeastOne(t,r){return this.atLeastOneInternal(t,r)}CONSUME(t,r){return this.consumeInternal(t,0,r)}CONSUME1(t,r){return this.consumeInternal(t,1,r)}CONSUME2(t,r){return this.consumeInternal(t,2,r)}CONSUME3(t,r){return this.consumeInternal(t,3,r)}CONSUME4(t,r){return this.consumeInternal(t,4,r)}CONSUME5(t,r){return this.consumeInternal(t,5,r)}CONSUME6(t,r){return this.consumeInternal(t,6,r)}CONSUME7(t,r){return this.consumeInternal(t,7,r)}CONSUME8(t,r){return this.consumeInternal(t,8,r)}CONSUME9(t,r){return this.consumeInternal(t,9,r)}SUBRULE(t,r){return this.subruleInternal(t,0,r)}SUBRULE1(t,r){return this.subruleInternal(t,1,r)}SUBRULE2(t,r){return this.subruleInternal(t,2,r)}SUBRULE3(t,r){return this.subruleInternal(t,3,r)}SUBRULE4(t,r){return this.subruleInternal(t,4,r)}SUBRULE5(t,r){return this.subruleInternal(t,5,r)}SUBRULE6(t,r){return this.subruleInternal(t,6,r)}SUBRULE7(t,r){return this.subruleInternal(t,7,r)}SUBRULE8(t,r){return this.subruleInternal(t,8,r)}SUBRULE9(t,r){return this.subruleInternal(t,9,r)}OPTION(t){return this.optionInternal(t,0)}OPTION1(t){return this.optionInternal(t,1)}OPTION2(t){return this.optionInternal(t,2)}OPTION3(t){return this.optionInternal(t,3)}OPTION4(t){return this.optionInternal(t,4)}OPTION5(t){return this.optionInternal(t,5)}OPTION6(t){return this.optionInternal(t,6)}OPTION7(t){return this.optionInternal(t,7)}OPTION8(t){return this.optionInternal(t,8)}OPTION9(t){return this.optionInternal(t,9)}OR(t){return this.orInternal(t,0)}OR1(t){return this.orInternal(t,1)}OR2(t){return this.orInternal(t,2)}OR3(t){return this.orInternal(t,3)}OR4(t){return this.orInternal(t,4)}OR5(t){return this.orInternal(t,5)}OR6(t){return this.orInternal(t,6)}OR7(t){return this.orInternal(t,7)}OR8(t){return this.orInternal(t,8)}OR9(t){return this.orInternal(t,9)}MANY(t){this.manyInternal(0,t)}MANY1(t){this.manyInternal(1,t)}MANY2(t){this.manyInternal(2,t)}MANY3(t){this.manyInternal(3,t)}MANY4(t){this.manyInternal(4,t)}MANY5(t){this.manyInternal(5,t)}MANY6(t){this.manyInternal(6,t)}MANY7(t){this.manyInternal(7,t)}MANY8(t){this.manyInternal(8,t)}MANY9(t){this.manyInternal(9,t)}MANY_SEP(t){this.manySepFirstInternal(0,t)}MANY_SEP1(t){this.manySepFirstInternal(1,t)}MANY_SEP2(t){this.manySepFirstInternal(2,t)}MANY_SEP3(t){this.manySepFirstInternal(3,t)}MANY_SEP4(t){this.manySepFirstInternal(4,t)}MANY_SEP5(t){this.manySepFirstInternal(5,t)}MANY_SEP6(t){this.manySepFirstInternal(6,t)}MANY_SEP7(t){this.manySepFirstInternal(7,t)}MANY_SEP8(t){this.manySepFirstInternal(8,t)}MANY_SEP9(t){this.manySepFirstInternal(9,t)}AT_LEAST_ONE(t){this.atLeastOneInternal(0,t)}AT_LEAST_ONE1(t){return this.atLeastOneInternal(1,t)}AT_LEAST_ONE2(t){this.atLeastOneInternal(2,t)}AT_LEAST_ONE3(t){this.atLeastOneInternal(3,t)}AT_LEAST_ONE4(t){this.atLeastOneInternal(4,t)}AT_LEAST_ONE5(t){this.atLeastOneInternal(5,t)}AT_LEAST_ONE6(t){this.atLeastOneInternal(6,t)}AT_LEAST_ONE7(t){this.atLeastOneInternal(7,t)}AT_LEAST_ONE8(t){this.atLeastOneInternal(8,t)}AT_LEAST_ONE9(t){this.atLeastOneInternal(9,t)}AT_LEAST_ONE_SEP(t){this.atLeastOneSepFirstInternal(0,t)}AT_LEAST_ONE_SEP1(t){this.atLeastOneSepFirstInternal(1,t)}AT_LEAST_ONE_SEP2(t){this.atLeastOneSepFirstInternal(2,t)}AT_LEAST_ONE_SEP3(t){this.atLeastOneSepFirstInternal(3,t)}AT_LEAST_ONE_SEP4(t){this.atLeastOneSepFirstInternal(4,t)}AT_LEAST_ONE_SEP5(t){this.atLeastOneSepFirstInternal(5,t)}AT_LEAST_ONE_SEP6(t){this.atLeastOneSepFirstInternal(6,t)}AT_LEAST_ONE_SEP7(t){this.atLeastOneSepFirstInternal(7,t)}AT_LEAST_ONE_SEP8(t){this.atLeastOneSepFirstInternal(8,t)}AT_LEAST_ONE_SEP9(t){this.atLeastOneSepFirstInternal(9,t)}RULE(t,r,a=mTe){if(wv(this.definedRulesNames,t)){const u={message:oF.buildDuplicateRuleNameError({topLevelRule:t,grammarName:this.className}),type:dv.DUPLICATE_RULE_NAME,ruleName:t};this.definitionErrors.push(u)}this.definedRulesNames.push(t);const s=this.defineRule(t,r,a);return this[t]=s,s}OVERRIDE_RULE(t,r,a=mTe){const s=Szi(t,this.definedRulesNames,this.className);this.definitionErrors=this.definitionErrors.concat(s);const o=this.defineRule(t,r,a);return this[t]=o,o}BACKTRACK(t,r){return function(){this.isBackTrackingStack.push(1);const a=this.saveRecogState();try{return t.apply(this,r),!0}catch(s){if(fTe(s))return!1;throw s}finally{this.reloadRecogState(a),this.isBackTrackingStack.pop()}}}getGAstProductions(){return this.gastProductionsCache}getSerializedGastProductions(){return uUi(wp(this.gastProductionsCache))}}class nGi{initRecognizerEngine(t,r){if(this.className=this.constructor.name,this.shortRuleNameToFull={},this.fullRuleNameToShort={},this.ruleShortNameIdx=256,this.tokenMatcher=dTe,this.subruleIdx=0,this.definedRulesNames=[],this.tokensMap={},this.isBackTrackingStack=[],this.RULE_STACK=[],this.RULE_OCCURRENCE_STACK=[],this.gastProductionsCache={},so(r,"serializedGrammar"))throw Error(`The Parser's configuration can no longer contain a property. + See: https://chevrotain.io/docs/changes/BREAKING_CHANGES.html#_6-0-0 + For Further details.`);if(Wc(t)){if(Jh(t))throw Error(`A Token Vocabulary cannot be empty. + Note that the first argument for the parser constructor + is no longer a Token vector (since v4.0).`);if(typeof t[0].startOffset=="number")throw Error(`The Parser constructor no longer accepts a token vector as the first argument. + See: https://chevrotain.io/docs/changes/BREAKING_CHANGES.html#_4-0-0 + For Further details.`)}if(Wc(t))this.tokensMap=Gw(t,(o,u)=>(o[u.name]=u,o),{});else if(so(t,"modes")&&tT(eT(wp(t.modes)),ezi)){const o=eT(wp(t.modes)),u=mmt(o);this.tokensMap=Gw(u,(h,f)=>(h[f.name]=f,h),{})}else if(RS(t))this.tokensMap=Im(t);else throw new Error(" argument must be An Array of Token constructors, A dictionary of Token constructors or an IMultiModeLexerDefinition");this.tokensMap.EOF=p9;const a=so(t,"modes")?eT(wp(t.modes)):wp(t),s=tT(a,o=>Jh(o.categoryMatches));this.tokenMatcher=s?dTe:Gce,qce(wp(this.tokensMap))}defineRule(t,r,a){if(this.selfAnalysisDone)throw Error(`Grammar rule <${t}> may not be defined after the 'performSelfAnalysis' method has been called' +Make sure that all grammar rule definitions are done before 'performSelfAnalysis' is called.`);const s=so(a,"resyncEnabled")?a.resyncEnabled:mTe.resyncEnabled,o=so(a,"recoveryValueFunc")?a.recoveryValueFunc:mTe.recoveryValueFunc,u=this.ruleShortNameIdx<u.call(this)&&h.call(this)}}else o=t;if(s.call(this)===!0)return o.call(this)}atLeastOneInternal(t,r){const a=this.getKeyForAutomaticLookahead(Gct,t);return this.atLeastOneInternalLogic(t,r,a)}atLeastOneInternalLogic(t,r,a){let s=this.getLaFuncFromCache(a),o;if(typeof r!="function"){o=r.DEF;const u=r.GATE;if(u!==void 0){const h=s;s=()=>u.call(this)&&h.call(this)}}else o=r;if(s.call(this)===!0){let u=this.doSingleRepetition(o);for(;s.call(this)===!0&&u===!0;)u=this.doSingleRepetition(o)}else throw this.raiseEarlyExitException(t,If.REPETITION_MANDATORY,r.ERR_MSG);this.attemptInRepetitionRecovery(this.atLeastOneInternal,[t,r],s,Gct,t,czi)}atLeastOneSepFirstInternal(t,r){const a=this.getKeyForAutomaticLookahead($xe,t);this.atLeastOneSepFirstInternalLogic(t,r,a)}atLeastOneSepFirstInternalLogic(t,r,a){const s=r.DEF,o=r.SEP;if(this.getLaFuncFromCache(a).call(this)===!0){s.call(this);const h=()=>this.tokenMatcher(this.LA(1),o);for(;this.tokenMatcher(this.LA(1),o)===!0;)this.CONSUME(o),s.call(this);this.attemptInRepetitionRecovery(this.repetitionSepSecondInternal,[t,o,h,s,y4n],h,$xe,t,y4n)}else throw this.raiseEarlyExitException(t,If.REPETITION_MANDATORY_WITH_SEPARATOR,r.ERR_MSG)}manyInternal(t,r){const a=this.getKeyForAutomaticLookahead(zct,t);return this.manyInternalLogic(t,r,a)}manyInternalLogic(t,r,a){let s=this.getLaFuncFromCache(a),o;if(typeof r!="function"){o=r.DEF;const h=r.GATE;if(h!==void 0){const f=s;s=()=>h.call(this)&&f.call(this)}}else o=r;let u=!0;for(;s.call(this)===!0&&u===!0;)u=this.doSingleRepetition(o);this.attemptInRepetitionRecovery(this.manyInternal,[t,r],s,zct,t,lzi,u)}manySepFirstInternal(t,r){const a=this.getKeyForAutomaticLookahead(qct,t);this.manySepFirstInternalLogic(t,r,a)}manySepFirstInternalLogic(t,r,a){const s=r.DEF,o=r.SEP;if(this.getLaFuncFromCache(a).call(this)===!0){s.call(this);const h=()=>this.tokenMatcher(this.LA(1),o);for(;this.tokenMatcher(this.LA(1),o)===!0;)this.CONSUME(o),s.call(this);this.attemptInRepetitionRecovery(this.repetitionSepSecondInternal,[t,o,h,s,b4n],h,qct,t,b4n)}}repetitionSepSecondInternal(t,r,a,s,o){for(;a();)this.CONSUME(r),s.call(this);this.attemptInRepetitionRecovery(this.repetitionSepSecondInternal,[t,r,a,s,o],a,$xe,t,o)}doSingleRepetition(t){const r=this.getLexerPosition();return t.call(this),this.getLexerPosition()>r}orInternal(t,r){const a=this.getKeyForAutomaticLookahead(Ujn,r),s=Wc(t)?t:t.DEF,u=this.getLaFuncFromCache(a).call(this,s);if(u!==void 0)return s[u].ALT.call(this);this.raiseNoAltException(r,t.ERR_MSG)}ruleFinallyStateUpdate(){if(this.RULE_STACK.pop(),this.RULE_OCCURRENCE_STACK.pop(),this.cstFinallyStateUpdate(),this.RULE_STACK.length===0&&this.isAtEndOfInput()===!1){const t=this.LA(1),r=this.errorMessageProvider.buildNotAllInputParsedMessage({firstRedundant:t,ruleName:this.getCurrRuleFullName()});this.SAVE_ERROR(new Pzi(r,t))}}subruleInternal(t,r,a){let s;try{const o=a!==void 0?a.ARGS:void 0;return this.subruleIdx=r,s=t.apply(this,o),this.cstPostNonTerminal(s,a!==void 0&&a.LABEL!==void 0?a.LABEL:t.ruleName),s}catch(o){throw this.subruleInternalError(o,a,t.ruleName)}}subruleInternalError(t,r,a){throw fTe(t)&&t.partialCstResult!==void 0&&(this.cstPostNonTerminal(t.partialCstResult,r!==void 0&&r.LABEL!==void 0?r.LABEL:a),delete t.partialCstResult),t}consumeInternal(t,r,a){let s;try{const o=this.LA(1);this.tokenMatcher(o,t)===!0?(this.consumeToken(),s=o):this.consumeInternalError(t,o,a)}catch(o){s=this.consumeInternalRecovery(t,r,o)}return this.cstPostTerminal(a!==void 0&&a.LABEL!==void 0?a.LABEL:t.name,s),s}consumeInternalError(t,r,a){let s;const o=this.LA(0);throw a!==void 0&&a.ERR_MSG?s=a.ERR_MSG:s=this.errorMessageProvider.buildMismatchTokenMessage({expected:t,actual:r,previous:o,ruleName:this.getCurrRuleFullName()}),this.SAVE_ERROR(new Fjn(s,r,o))}consumeInternalRecovery(t,r,a){if(this.recoveryEnabled&&a.name==="MismatchedTokenException"&&!this.isBackTracking()){const s=this.getFollowsForInRuleRecovery(t,r);try{return this.tryInRuleRecovery(t,s)}catch(o){throw o.name===$jn?a:o}}else throw a}saveRecogState(){const t=this.errors,r=Im(this.RULE_STACK);return{errors:t,lexerState:this.exportLexerState(),RULE_STACK:r,CST_STACK:this.CST_STACK}}reloadRecogState(t){this.errors=t.errors,this.importLexerState(t.lexerState),this.RULE_STACK=t.RULE_STACK}ruleInvocationStateUpdate(t,r,a){this.RULE_OCCURRENCE_STACK.push(a),this.RULE_STACK.push(t),this.cstInvocationStateUpdate(r)}isBackTracking(){return this.isBackTrackingStack.length!==0}getCurrRuleFullName(){const t=this.getLastExplicitRuleShortName();return this.shortRuleNameToFull[t]}shortRuleNameToFullName(t){return this.shortRuleNameToFull[t]}isAtEndOfInput(){return this.tokenMatcher(this.LA(1),p9)}reset(){this.resetLexerState(),this.subruleIdx=0,this.isBackTrackingStack=[],this.errors=[],this.RULE_STACK=[],this.CST_STACK=[],this.RULE_OCCURRENCE_STACK=[]}}class rGi{initErrorHandler(t){this._errors=[],this.errorMessageProvider=so(t,"errorMessageProvider")?t.errorMessageProvider:fR.errorMessageProvider}SAVE_ERROR(t){if(fTe(t))return t.context={ruleStack:this.getHumanReadableRuleStack(),ruleOccurrenceStack:Im(this.RULE_OCCURRENCE_STACK)},this._errors.push(t),t;throw Error("Trying to save an Error which is not a RecognitionException")}get errors(){return Im(this._errors)}set errors(t){this._errors=t}raiseEarlyExitException(t,r,a){const s=this.getCurrRuleFullName(),o=this.getGAstProductions()[s],h=Uke(t,o,r,this.maxLookahead)[0],f=[];for(let m=1;m<=this.maxLookahead;m++)f.push(this.LA(m));const p=this.errorMessageProvider.buildEarlyExitMessage({expectedIterationPaths:h,actual:f,previous:this.LA(0),customUserDescription:a,ruleName:s});throw this.SAVE_ERROR(new Bzi(p,this.LA(1),this.LA(0)))}raiseNoAltException(t,r){const a=this.getCurrRuleFullName(),s=this.getGAstProductions()[a],o=$ke(t,s,this.maxLookahead),u=[];for(let p=1;p<=this.maxLookahead;p++)u.push(this.LA(p));const h=this.LA(0),f=this.errorMessageProvider.buildNoViableAltMessage({expectedPathsPerAlt:o,actual:u,previous:h,customUserDescription:r,ruleName:this.getCurrRuleFullName()});throw this.SAVE_ERROR(new Mzi(f,this.LA(1),h))}}class iGi{initContentAssist(){}computeContentAssist(t,r){const a=this.gastProductionsCache[t];if(dR(a))throw Error(`Rule ->${t}<- does not exist in this grammar.`);return Ajn([a],r,this.tokenMatcher,this.maxLookahead)}getNextPossibleTokenTypes(t){const r=hT(t.ruleStack),s=this.getGAstProductions()[r];return new ozi(s,t).startWalking()}}const Gke={description:"This Object indicates the Parser is during Recording Phase"};Object.freeze(Gke);const x4n=!0,S4n=Math.pow(2,Z9)-1,qjn=Tjn({name:"RECORDING_PHASE_TOKEN",pattern:J2.NA});qce([qjn]);const Hjn=ymt(qjn,`This IToken indicates the Parser is in Recording Phase + See: https://chevrotain.io/docs/guide/internals.html#grammar-recording for details`,-1,-1,-1,-1,-1,-1);Object.freeze(Hjn);const aGi={name:`This CSTNode indicates the Parser is in Recording Phase + See: https://chevrotain.io/docs/guide/internals.html#grammar-recording for details`,children:{}};class sGi{initGastRecorder(t){this.recordingProdStack=[],this.RECORDING_PHASE=!1}enableRecording(){this.RECORDING_PHASE=!0,this.TRACE_INIT("Enable Recording",()=>{for(let t=0;t<10;t++){const r=t>0?t:"";this[`CONSUME${r}`]=function(a,s){return this.consumeInternalRecord(a,t,s)},this[`SUBRULE${r}`]=function(a,s){return this.subruleInternalRecord(a,t,s)},this[`OPTION${r}`]=function(a){return this.optionInternalRecord(a,t)},this[`OR${r}`]=function(a){return this.orInternalRecord(a,t)},this[`MANY${r}`]=function(a){this.manyInternalRecord(t,a)},this[`MANY_SEP${r}`]=function(a){this.manySepFirstInternalRecord(t,a)},this[`AT_LEAST_ONE${r}`]=function(a){this.atLeastOneInternalRecord(t,a)},this[`AT_LEAST_ONE_SEP${r}`]=function(a){this.atLeastOneSepFirstInternalRecord(t,a)}}this.consume=function(t,r,a){return this.consumeInternalRecord(r,t,a)},this.subrule=function(t,r,a){return this.subruleInternalRecord(r,t,a)},this.option=function(t,r){return this.optionInternalRecord(r,t)},this.or=function(t,r){return this.orInternalRecord(r,t)},this.many=function(t,r){this.manyInternalRecord(t,r)},this.atLeastOne=function(t,r){this.atLeastOneInternalRecord(t,r)},this.ACTION=this.ACTION_RECORD,this.BACKTRACK=this.BACKTRACK_RECORD,this.LA=this.LA_RECORD})}disableRecording(){this.RECORDING_PHASE=!1,this.TRACE_INIT("Deleting Recording methods",()=>{const t=this;for(let r=0;r<10;r++){const a=r>0?r:"";delete t[`CONSUME${a}`],delete t[`SUBRULE${a}`],delete t[`OPTION${a}`],delete t[`OR${a}`],delete t[`MANY${a}`],delete t[`MANY_SEP${a}`],delete t[`AT_LEAST_ONE${a}`],delete t[`AT_LEAST_ONE_SEP${a}`]}delete t.consume,delete t.subrule,delete t.option,delete t.or,delete t.many,delete t.atLeastOne,delete t.ACTION,delete t.BACKTRACK,delete t.LA})}ACTION_RECORD(t){}BACKTRACK_RECORD(t,r){return()=>!0}LA_RECORD(t){return gTe}topLevelRuleRecord(t,r){try{const a=new nK({definition:[],name:t});return a.name=t,this.recordingProdStack.push(a),r.call(this),this.recordingProdStack.pop(),a}catch(a){if(a.KNOWN_RECORDER_ERROR!==!0)try{a.message=a.message+` + This error was thrown during the "grammar recording phase" For more info see: + https://chevrotain.io/docs/guide/internals.html#grammar-recording`}catch{throw a}throw a}}optionInternalRecord(t,r){return uie.call(this,Am,t,r)}atLeastOneInternalRecord(t,r){uie.call(this,Kw,r,t)}atLeastOneSepFirstInternalRecord(t,r){uie.call(this,Xw,r,t,x4n)}manyInternalRecord(t,r){uie.call(this,l0,r,t)}manySepFirstInternalRecord(t,r){uie.call(this,u_,r,t,x4n)}orInternalRecord(t,r){return oGi.call(this,t,r)}subruleInternalRecord(t,r,a){if(pTe(r),!t||so(t,"ruleName")===!1){const h=new Error(` argument is invalid expecting a Parser method reference but got: <${JSON.stringify(t)}> + inside top level rule: <${this.recordingProdStack[0].name}>`);throw h.KNOWN_RECORDER_ERROR=!0,h}const s=Vj(this.recordingProdStack),o=t.ruleName,u=new hv({idx:r,nonTerminalName:o,label:a==null?void 0:a.LABEL,referencedRule:void 0});return s.definition.push(u),this.outputCst?aGi:Gke}consumeInternalRecord(t,r,a){if(pTe(r),!xjn(t)){const u=new Error(` argument is invalid expecting a TokenType reference but got: <${JSON.stringify(t)}> + inside top level rule: <${this.recordingProdStack[0].name}>`);throw u.KNOWN_RECORDER_ERROR=!0,u}const s=Vj(this.recordingProdStack),o=new wd({idx:r,terminalType:t,label:a==null?void 0:a.LABEL});return s.definition.push(o),Hjn}}function uie(e,t,r,a=!1){pTe(r);const s=Vj(this.recordingProdStack),o=CR(t)?t:t.DEF,u=new e({definition:[],idx:r});return a&&(u.separator=t.SEP),so(t,"MAX_LOOKAHEAD")&&(u.maxLookahead=t.MAX_LOOKAHEAD),this.recordingProdStack.push(u),o.call(this),s.definition.push(u),this.recordingProdStack.pop(),Gke}function oGi(e,t){pTe(t);const r=Vj(this.recordingProdStack),a=Wc(e)===!1,s=a===!1?e:e.DEF,o=new h_({definition:[],idx:t,ignoreAmbiguities:a&&e.IGNORE_AMBIGUITIES===!0});so(e,"MAX_LOOKAHEAD")&&(o.maxLookahead=e.MAX_LOOKAHEAD);const u=hjn(s,h=>CR(h.GATE));return o.hasPredicates=u,r.definition.push(o),_o(s,h=>{const f=new s_({definition:[]});o.definition.push(f),so(h,"IGNORE_AMBIGUITIES")?f.ignoreAmbiguities=h.IGNORE_AMBIGUITIES:so(h,"GATE")&&(f.ignoreAmbiguities=!0),this.recordingProdStack.push(f),h.ALT.call(this),this.recordingProdStack.pop()}),Gke}function T4n(e){return e===0?"":`${e}`}function pTe(e){if(e<0||e>S4n){const t=new Error(`Invalid DSL Method idx value: <${e}> + Idx value must be a none negative value smaller than ${S4n+1}`);throw t.KNOWN_RECORDER_ERROR=!0,t}}class lGi{initPerformanceTracer(t){if(so(t,"traceInitPerf")){const r=t.traceInitPerf,a=typeof r=="number";this.traceInitMaxIdent=a?r:1/0,this.traceInitPerf=a?r>0:r}else this.traceInitMaxIdent=0,this.traceInitPerf=fR.traceInitPerf;this.traceInitIndent=-1}TRACE_INIT(t,r){if(this.traceInitPerf===!0){this.traceInitIndent++;const a=new Array(this.traceInitIndent+1).join(" ");this.traceInitIndent <${t}>`);const{time:s,value:o}=fjn(r),u=s>10?console.warn:console.log;return this.traceInitIndent time: ${s}ms`),this.traceInitIndent--,o}else return r()}}function cGi(e,t){t.forEach(r=>{const a=r.prototype;Object.getOwnPropertyNames(a).forEach(s=>{if(s==="constructor")return;const o=Object.getOwnPropertyDescriptor(a,s);o&&(o.get||o.set)?Object.defineProperty(e.prototype,s,o):e.prototype[s]=r.prototype[s]})})}const gTe=ymt(p9,"",NaN,NaN,NaN,NaN,NaN,NaN);Object.freeze(gTe);const fR=Object.freeze({recoveryEnabled:!1,maxLookahead:3,dynamicTokensEnabled:!1,outputCst:!0,errorMessageProvider:PV,nodeLocationTracking:"none",traceInitPerf:!1,skipValidations:!1}),mTe=Object.freeze({recoveryValueFunc:()=>{},resyncEnabled:!0});var dv;(function(e){e[e.INVALID_RULE_NAME=0]="INVALID_RULE_NAME",e[e.DUPLICATE_RULE_NAME=1]="DUPLICATE_RULE_NAME",e[e.INVALID_RULE_OVERRIDE=2]="INVALID_RULE_OVERRIDE",e[e.DUPLICATE_PRODUCTIONS=3]="DUPLICATE_PRODUCTIONS",e[e.UNRESOLVED_SUBRULE_REF=4]="UNRESOLVED_SUBRULE_REF",e[e.LEFT_RECURSION=5]="LEFT_RECURSION",e[e.NONE_LAST_EMPTY_ALT=6]="NONE_LAST_EMPTY_ALT",e[e.AMBIGUOUS_ALTS=7]="AMBIGUOUS_ALTS",e[e.CONFLICT_TOKENS_RULES_NAMESPACE=8]="CONFLICT_TOKENS_RULES_NAMESPACE",e[e.INVALID_TOKEN_NAME=9]="INVALID_TOKEN_NAME",e[e.NO_NON_EMPTY_LOOKAHEAD=10]="NO_NON_EMPTY_LOOKAHEAD",e[e.AMBIGUOUS_PREFIX_ALTS=11]="AMBIGUOUS_PREFIX_ALTS",e[e.TOO_MANY_ALTS=12]="TOO_MANY_ALTS",e[e.CUSTOM_LOOKAHEAD_VALIDATION=13]="CUSTOM_LOOKAHEAD_VALIDATION"})(dv||(dv={}));function C4n(e=void 0){return function(){return e}}class Hce{static performSelfAnalysis(t){throw Error("The **static** `performSelfAnalysis` method has been deprecated. \nUse the **instance** method with the same name instead.")}performSelfAnalysis(){this.TRACE_INIT("performSelfAnalysis",()=>{let t;this.selfAnalysisDone=!0;const r=this.className;this.TRACE_INIT("toFastProps",()=>{pjn(this)}),this.TRACE_INIT("Grammar Recording",()=>{try{this.enableRecording(),_o(this.definedRulesNames,s=>{const u=this[s].originalGrammarAction;let h;this.TRACE_INIT(`${s} Rule`,()=>{h=this.topLevelRuleRecord(s,u)}),this.gastProductionsCache[s]=h})}finally{this.disableRecording()}});let a=[];if(this.TRACE_INIT("Grammar Resolving",()=>{a=Lzi({rules:wp(this.gastProductionsCache)}),this.definitionErrors=this.definitionErrors.concat(a)}),this.TRACE_INIT("Grammar Validations",()=>{if(Jh(a)&&this.skipValidations===!1){const s=Dzi({rules:wp(this.gastProductionsCache),tokenTypes:wp(this.tokensMap),errMsgProvider:oF,grammarName:r}),o=yzi({lookaheadStrategy:this.lookaheadStrategy,rules:wp(this.gastProductionsCache),tokenTypes:wp(this.tokensMap),grammarName:r});this.definitionErrors=this.definitionErrors.concat(s,o)}}),Jh(this.definitionErrors)&&(this.recoveryEnabled&&this.TRACE_INIT("computeAllProdsFollows",()=>{const s=bUi(wp(this.gastProductionsCache));this.resyncFollows=s}),this.TRACE_INIT("ComputeLookaheadFunctions",()=>{var s,o;(o=(s=this.lookaheadStrategy).initialize)===null||o===void 0||o.call(s,{rules:wp(this.gastProductionsCache)}),this.preComputeLookaheadFunctions(wp(this.gastProductionsCache))})),!Hce.DEFER_DEFINITION_ERRORS_HANDLING&&!Jh(this.definitionErrors))throw t=As(this.definitionErrors,s=>s.message),new Error(`Parser Definition Errors detected: + ${t.join(` +------------------------------- +`)}`)})}constructor(t,r){this.definitionErrors=[],this.selfAnalysisDone=!1;const a=this;if(a.initErrorHandler(r),a.initLexerAdapter(),a.initLooksAhead(r),a.initRecognizerEngine(t,r),a.initRecoverable(r),a.initTreeBuilder(r),a.initContentAssist(),a.initGastRecorder(r),a.initPerformanceTracer(r),so(r,"ignoredIssues"))throw new Error(`The IParserConfig property has been deprecated. + Please use the flag on the relevant DSL method instead. + See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#IGNORING_AMBIGUITIES + For further details.`);this.skipValidations=so(r,"skipValidations")?r.skipValidations:fR.skipValidations}}Hce.DEFER_DEFINITION_ERRORS_HANDLING=!1;cGi(Hce,[$zi,Gzi,Jzi,eGi,nGi,tGi,rGi,iGi,sGi,lGi]);class uGi extends Hce{constructor(t,r=fR){const a=Im(r);a.outputCst=!1,super(t,a)}}function jj(e,t,r){return`${e.name}_${t}_${r}`}const g9=1,hGi=2,Vjn=4,Yjn=5,Vce=7,dGi=8,fGi=9,pGi=10,gGi=11,jjn=12;class Emt{constructor(t){this.target=t}isEpsilon(){return!1}}class xmt extends Emt{constructor(t,r){super(t),this.tokenType=r}}class Wjn extends Emt{constructor(t){super(t)}isEpsilon(){return!0}}class Smt extends Emt{constructor(t,r,a){super(t),this.rule=r,this.followState=a}isEpsilon(){return!0}}function mGi(e){const t={decisionMap:{},decisionStates:[],ruleToStartState:new Map,ruleToStopState:new Map,states:[]};bGi(t,e);const r=e.length;for(let a=0;aKjn(e,t,u));return iK(e,t,a,r,...s)}function xGi(e,t,r){const a=Rg(e,t,r,{type:g9});J9(e,a);const s=iK(e,t,a,r,Y$(e,t,r));return SGi(e,t,r,s)}function Y$(e,t,r){const a=Rp(wo(r.definition,s=>Kjn(e,t,s)),s=>s!==void 0);return a.length===1?a[0]:a.length===0?void 0:CGi(e,a)}function Xjn(e,t,r,a,s){const o=a.left,u=a.right,h=Rg(e,t,r,{type:gGi});J9(e,h);const f=Rg(e,t,r,{type:jjn});return o.loopback=h,f.loopback=h,e.decisionMap[jj(t,s?"RepetitionMandatoryWithSeparator":"RepetitionMandatory",r.idx)]=h,T1(u,h),s===void 0?(T1(h,o),T1(h,f)):(T1(h,f),T1(h,s.left),T1(s.right,o)),{left:o,right:f}}function Qjn(e,t,r,a,s){const o=a.left,u=a.right,h=Rg(e,t,r,{type:pGi});J9(e,h);const f=Rg(e,t,r,{type:jjn}),p=Rg(e,t,r,{type:fGi});return h.loopback=p,f.loopback=p,T1(h,o),T1(h,f),T1(u,p),s!==void 0?(T1(p,f),T1(p,s.left),T1(s.right,o)):T1(p,h),e.decisionMap[jj(t,s?"RepetitionWithSeparator":"Repetition",r.idx)]=h,{left:h,right:f}}function SGi(e,t,r,a){const s=a.left,o=a.right;return T1(s,o),e.decisionMap[jj(t,"Option",r.idx)]=s,a}function J9(e,t){return e.decisionStates.push(t),t.decision=e.decisionStates.length-1,t.decision}function iK(e,t,r,a,...s){const o=Rg(e,t,a,{type:dGi,start:r});r.end=o;for(const h of s)h!==void 0?(T1(r,h.left),T1(h.right,o)):T1(r,o);const u={left:r,right:o};return e.decisionMap[jj(t,TGi(a),a.idx)]=r,u}function TGi(e){if(e instanceof h_)return"Alternation";if(e instanceof Am)return"Option";if(e instanceof l0)return"Repetition";if(e instanceof u_)return"RepetitionWithSeparator";if(e instanceof Kw)return"RepetitionMandatory";if(e instanceof Xw)return"RepetitionMandatoryWithSeparator";throw new Error("Invalid production type encountered")}function CGi(e,t){const r=t.length;for(let o=0;ot.alt)}get key(){let t="";for(const r in this.map)t+=r+":";return t}}function Zjn(e,t=!0){return`${t?`a${e.alt}`:""}s${e.state.stateNumber}:${e.stack.map(r=>r.stateNumber.toString()).join("_")}`}function IGi(e,t){const r={};return a=>{const s=a.toString();let o=r[s];return o!==void 0||(o={atnStartState:e,decision:t,states:{}},r[s]=o),o}}class Jjn{constructor(){this.predicates=[]}is(t){return t>=this.predicates.length||this.predicates[t]}set(t,r){this.predicates[t]=r}toString(){let t="";const r=this.predicates.length;for(let a=0;aconsole.log(a)}initialize(t){this.atn=mGi(t.rules),this.dfas=OGi(this.atn)}validateAmbiguousAlternationAlternatives(){return[]}validateEmptyOrAlternatives(){return[]}buildLookaheadForAlternation(t){const{prodOccurrence:r,rule:a,hasPredicates:s,dynamicTokensEnabled:o}=t,u=this.dfas,h=this.logging,f=jj(a,"Alternation",r),m=this.atn.decisionMap[f].decision,b=wo(v4n({maxLookahead:1,occurrence:r,prodType:"Alternation",rule:a}),_=>wo(_,w=>w[0]));if(k4n(b,!1)&&!o){const _=TS(b,(w,S,C)=>(Zt(S,A=>{A&&(w[A.tokenTypeIdx]=C,Zt(A.categoryMatches,k=>{w[k]=C}))}),w),{});return s?function(w){var S;const C=this.LA(1),A=_[C.tokenTypeIdx];if(w!==void 0&&A!==void 0){const k=(S=w[A])===null||S===void 0?void 0:S.GATE;if(k!==void 0&&k.call(this)===!1)return}return A}:function(){const w=this.LA(1);return _[w.tokenTypeIdx]}}else return s?function(_){const w=new Jjn,S=_===void 0?0:_.length;for(let A=0;Awo(_,w=>w[0]));if(k4n(b)&&b[0][0]&&!o){const _=b[0],w=MS(_);if(w.length===1&&uA(w[0].categoryMatches)){const C=w[0].tokenTypeIdx;return function(){return this.LA(1).tokenTypeIdx===C}}else{const S=TS(w,(C,A)=>(A!==void 0&&(C[A.tokenTypeIdx]=!0,Zt(A.categoryMatches,k=>{C[k]=!0})),C),{});return function(){const C=this.LA(1);return S[C.tokenTypeIdx]===!0}}}return function(){const _=Dit.call(this,u,m,A4n,h);return typeof _=="object"?!1:_===0}}}function k4n(e,t=!0){const r=new Set;for(const a of e){const s=new Set;for(const o of a){if(o===void 0){if(t)break;return!1}const u=[o.tokenTypeIdx].concat(o.categoryMatches);for(const h of u)if(r.has(h)){if(!s.has(h))return!1}else r.add(h),s.add(h)}}return!0}function OGi(e){const t=e.decisionStates.length,r=Array(t);for(let a=0;aoY(s)).join(", "),r=e.production.idx===0?"":e.production.idx;let a=`Ambiguous Alternatives Detected: <${e.ambiguityIndices.join(", ")}> in <${BGi(e.production)}${r}> inside <${e.topLevelRule.name}> Rule, +<${t}> may appears as a prefix path in all these alternatives. +`;return a=a+`See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#AMBIGUOUS_ALTERNATIVES +For Further details.`,a}function BGi(e){if(e instanceof hv)return"SUBRULE";if(e instanceof Am)return"OPTION";if(e instanceof h_)return"OR";if(e instanceof Kw)return"AT_LEAST_ONE";if(e instanceof Xw)return"AT_LEAST_ONE_SEP";if(e instanceof u_)return"MANY_SEP";if(e instanceof l0)return"MANY";if(e instanceof wd)return"CONSUME";throw Error("non exhaustive match")}function FGi(e,t,r){const a=cAi(t.configs.elements,o=>o.state.transitions),s=IAi(a.filter(o=>o instanceof xmt).map(o=>o.tokenType),o=>o.tokenTypeIdx);return{actualToken:r,possibleTokenTypes:s,tokenPath:e}}function $Gi(e,t){return e.edges[t.tokenTypeIdx]}function UGi(e,t,r){const a=new Vct,s=[];for(const u of e.elements){if(r.is(u.alt)===!1)continue;if(u.state.type===Vce){s.push(u);continue}const h=u.state.transitions.length;for(let f=0;f0&&!VGi(o))for(const u of s)o.add(u);return o}function zGi(e,t){if(e instanceof xmt&&Cjn(t,e.tokenType))return e.target}function GGi(e,t){let r;for(const a of e.elements)if(t.is(a.alt)===!0){if(r===void 0)r=a.alt;else if(r!==a.alt)return}return r}function eWn(e){return{configs:e,edges:{},isAcceptState:!1,prediction:-1}}function R4n(e,t,r,a){return a=tWn(e,a),t.edges[r.tokenTypeIdx]=a,a}function tWn(e,t){if(t===bTe)return t;const r=t.configs.key,a=e.states[r];return a!==void 0?a:(t.configs.finalize(),e.states[r]=t,t)}function qGi(e){const t=new Vct,r=e.transitions.length;for(let a=0;a0){const s=[...e.stack],u={state:s.pop(),alt:e.alt,stack:s};yTe(u,t)}else t.add(e);return}r.epsilonOnlyTransitions||t.add(e);const a=r.transitions.length;for(let s=0;s1)return!0;return!1}function XGi(e){for(const t of Array.from(e.values()))if(Object.keys(t).length===1)return!0;return!1}var I4n;(function(e){function t(r){return typeof r=="string"}e.is=t})(I4n||(I4n={}));var Yct;(function(e){function t(r){return typeof r=="string"}e.is=t})(Yct||(Yct={}));var N4n;(function(e){e.MIN_VALUE=-2147483648,e.MAX_VALUE=2147483647;function t(r){return typeof r=="number"&&e.MIN_VALUE<=r&&r<=e.MAX_VALUE}e.is=t})(N4n||(N4n={}));var vTe;(function(e){e.MIN_VALUE=0,e.MAX_VALUE=2147483647;function t(r){return typeof r=="number"&&e.MIN_VALUE<=r&&r<=e.MAX_VALUE}e.is=t})(vTe||(vTe={}));var Pu;(function(e){function t(a,s){return a===Number.MAX_VALUE&&(a=vTe.MAX_VALUE),s===Number.MAX_VALUE&&(s=vTe.MAX_VALUE),{line:a,character:s}}e.create=t;function r(a){let s=a;return nr.objectLiteral(s)&&nr.uinteger(s.line)&&nr.uinteger(s.character)}e.is=r})(Pu||(Pu={}));var Bc;(function(e){function t(a,s,o,u){if(nr.uinteger(a)&&nr.uinteger(s)&&nr.uinteger(o)&&nr.uinteger(u))return{start:Pu.create(a,s),end:Pu.create(o,u)};if(Pu.is(a)&&Pu.is(s))return{start:a,end:s};throw new Error(`Range#create called with invalid arguments[${a}, ${s}, ${o}, ${u}]`)}e.create=t;function r(a){let s=a;return nr.objectLiteral(s)&&Pu.is(s.start)&&Pu.is(s.end)}e.is=r})(Bc||(Bc={}));var _Te;(function(e){function t(a,s){return{uri:a,range:s}}e.create=t;function r(a){let s=a;return nr.objectLiteral(s)&&Bc.is(s.range)&&(nr.string(s.uri)||nr.undefined(s.uri))}e.is=r})(_Te||(_Te={}));var O4n;(function(e){function t(a,s,o,u){return{targetUri:a,targetRange:s,targetSelectionRange:o,originSelectionRange:u}}e.create=t;function r(a){let s=a;return nr.objectLiteral(s)&&Bc.is(s.targetRange)&&nr.string(s.targetUri)&&Bc.is(s.targetSelectionRange)&&(Bc.is(s.originSelectionRange)||nr.undefined(s.originSelectionRange))}e.is=r})(O4n||(O4n={}));var jct;(function(e){function t(a,s,o,u){return{red:a,green:s,blue:o,alpha:u}}e.create=t;function r(a){const s=a;return nr.objectLiteral(s)&&nr.numberRange(s.red,0,1)&&nr.numberRange(s.green,0,1)&&nr.numberRange(s.blue,0,1)&&nr.numberRange(s.alpha,0,1)}e.is=r})(jct||(jct={}));var L4n;(function(e){function t(a,s){return{range:a,color:s}}e.create=t;function r(a){const s=a;return nr.objectLiteral(s)&&Bc.is(s.range)&&jct.is(s.color)}e.is=r})(L4n||(L4n={}));var D4n;(function(e){function t(a,s,o){return{label:a,textEdit:s,additionalTextEdits:o}}e.create=t;function r(a){const s=a;return nr.objectLiteral(s)&&nr.string(s.label)&&(nr.undefined(s.textEdit)||Kj.is(s))&&(nr.undefined(s.additionalTextEdits)||nr.typedArray(s.additionalTextEdits,Kj.is))}e.is=r})(D4n||(D4n={}));var M4n;(function(e){e.Comment="comment",e.Imports="imports",e.Region="region"})(M4n||(M4n={}));var P4n;(function(e){function t(a,s,o,u,h,f){const p={startLine:a,endLine:s};return nr.defined(o)&&(p.startCharacter=o),nr.defined(u)&&(p.endCharacter=u),nr.defined(h)&&(p.kind=h),nr.defined(f)&&(p.collapsedText=f),p}e.create=t;function r(a){const s=a;return nr.objectLiteral(s)&&nr.uinteger(s.startLine)&&nr.uinteger(s.startLine)&&(nr.undefined(s.startCharacter)||nr.uinteger(s.startCharacter))&&(nr.undefined(s.endCharacter)||nr.uinteger(s.endCharacter))&&(nr.undefined(s.kind)||nr.string(s.kind))}e.is=r})(P4n||(P4n={}));var Wct;(function(e){function t(a,s){return{location:a,message:s}}e.create=t;function r(a){let s=a;return nr.defined(s)&&_Te.is(s.location)&&nr.string(s.message)}e.is=r})(Wct||(Wct={}));var B4n;(function(e){e.Error=1,e.Warning=2,e.Information=3,e.Hint=4})(B4n||(B4n={}));var F4n;(function(e){e.Unnecessary=1,e.Deprecated=2})(F4n||(F4n={}));var $4n;(function(e){function t(r){const a=r;return nr.objectLiteral(a)&&nr.string(a.href)}e.is=t})($4n||($4n={}));var wTe;(function(e){function t(a,s,o,u,h,f){let p={range:a,message:s};return nr.defined(o)&&(p.severity=o),nr.defined(u)&&(p.code=u),nr.defined(h)&&(p.source=h),nr.defined(f)&&(p.relatedInformation=f),p}e.create=t;function r(a){var s;let o=a;return nr.defined(o)&&Bc.is(o.range)&&nr.string(o.message)&&(nr.number(o.severity)||nr.undefined(o.severity))&&(nr.integer(o.code)||nr.string(o.code)||nr.undefined(o.code))&&(nr.undefined(o.codeDescription)||nr.string((s=o.codeDescription)===null||s===void 0?void 0:s.href))&&(nr.string(o.source)||nr.undefined(o.source))&&(nr.undefined(o.relatedInformation)||nr.typedArray(o.relatedInformation,Wct.is))}e.is=r})(wTe||(wTe={}));var Wj;(function(e){function t(a,s,...o){let u={title:a,command:s};return nr.defined(o)&&o.length>0&&(u.arguments=o),u}e.create=t;function r(a){let s=a;return nr.defined(s)&&nr.string(s.title)&&nr.string(s.command)}e.is=r})(Wj||(Wj={}));var Kj;(function(e){function t(o,u){return{range:o,newText:u}}e.replace=t;function r(o,u){return{range:{start:o,end:o},newText:u}}e.insert=r;function a(o){return{range:o,newText:""}}e.del=a;function s(o){const u=o;return nr.objectLiteral(u)&&nr.string(u.newText)&&Bc.is(u.range)}e.is=s})(Kj||(Kj={}));var Kct;(function(e){function t(a,s,o){const u={label:a};return s!==void 0&&(u.needsConfirmation=s),o!==void 0&&(u.description=o),u}e.create=t;function r(a){const s=a;return nr.objectLiteral(s)&&nr.string(s.label)&&(nr.boolean(s.needsConfirmation)||s.needsConfirmation===void 0)&&(nr.string(s.description)||s.description===void 0)}e.is=r})(Kct||(Kct={}));var Xj;(function(e){function t(r){const a=r;return nr.string(a)}e.is=t})(Xj||(Xj={}));var U4n;(function(e){function t(o,u,h){return{range:o,newText:u,annotationId:h}}e.replace=t;function r(o,u,h){return{range:{start:o,end:o},newText:u,annotationId:h}}e.insert=r;function a(o,u){return{range:o,newText:"",annotationId:u}}e.del=a;function s(o){const u=o;return Kj.is(u)&&(Kct.is(u.annotationId)||Xj.is(u.annotationId))}e.is=s})(U4n||(U4n={}));var Xct;(function(e){function t(a,s){return{textDocument:a,edits:s}}e.create=t;function r(a){let s=a;return nr.defined(s)&&tut.is(s.textDocument)&&Array.isArray(s.edits)}e.is=r})(Xct||(Xct={}));var Qct;(function(e){function t(a,s,o){let u={kind:"create",uri:a};return s!==void 0&&(s.overwrite!==void 0||s.ignoreIfExists!==void 0)&&(u.options=s),o!==void 0&&(u.annotationId=o),u}e.create=t;function r(a){let s=a;return s&&s.kind==="create"&&nr.string(s.uri)&&(s.options===void 0||(s.options.overwrite===void 0||nr.boolean(s.options.overwrite))&&(s.options.ignoreIfExists===void 0||nr.boolean(s.options.ignoreIfExists)))&&(s.annotationId===void 0||Xj.is(s.annotationId))}e.is=r})(Qct||(Qct={}));var Zct;(function(e){function t(a,s,o,u){let h={kind:"rename",oldUri:a,newUri:s};return o!==void 0&&(o.overwrite!==void 0||o.ignoreIfExists!==void 0)&&(h.options=o),u!==void 0&&(h.annotationId=u),h}e.create=t;function r(a){let s=a;return s&&s.kind==="rename"&&nr.string(s.oldUri)&&nr.string(s.newUri)&&(s.options===void 0||(s.options.overwrite===void 0||nr.boolean(s.options.overwrite))&&(s.options.ignoreIfExists===void 0||nr.boolean(s.options.ignoreIfExists)))&&(s.annotationId===void 0||Xj.is(s.annotationId))}e.is=r})(Zct||(Zct={}));var Jct;(function(e){function t(a,s,o){let u={kind:"delete",uri:a};return s!==void 0&&(s.recursive!==void 0||s.ignoreIfNotExists!==void 0)&&(u.options=s),o!==void 0&&(u.annotationId=o),u}e.create=t;function r(a){let s=a;return s&&s.kind==="delete"&&nr.string(s.uri)&&(s.options===void 0||(s.options.recursive===void 0||nr.boolean(s.options.recursive))&&(s.options.ignoreIfNotExists===void 0||nr.boolean(s.options.ignoreIfNotExists)))&&(s.annotationId===void 0||Xj.is(s.annotationId))}e.is=r})(Jct||(Jct={}));var eut;(function(e){function t(r){let a=r;return a&&(a.changes!==void 0||a.documentChanges!==void 0)&&(a.documentChanges===void 0||a.documentChanges.every(s=>nr.string(s.kind)?Qct.is(s)||Zct.is(s)||Jct.is(s):Xct.is(s)))}e.is=t})(eut||(eut={}));var z4n;(function(e){function t(a){return{uri:a}}e.create=t;function r(a){let s=a;return nr.defined(s)&&nr.string(s.uri)}e.is=r})(z4n||(z4n={}));var G4n;(function(e){function t(a,s){return{uri:a,version:s}}e.create=t;function r(a){let s=a;return nr.defined(s)&&nr.string(s.uri)&&nr.integer(s.version)}e.is=r})(G4n||(G4n={}));var tut;(function(e){function t(a,s){return{uri:a,version:s}}e.create=t;function r(a){let s=a;return nr.defined(s)&&nr.string(s.uri)&&(s.version===null||nr.integer(s.version))}e.is=r})(tut||(tut={}));var q4n;(function(e){function t(a,s,o,u){return{uri:a,languageId:s,version:o,text:u}}e.create=t;function r(a){let s=a;return nr.defined(s)&&nr.string(s.uri)&&nr.string(s.languageId)&&nr.integer(s.version)&&nr.string(s.text)}e.is=r})(q4n||(q4n={}));var nut;(function(e){e.PlainText="plaintext",e.Markdown="markdown";function t(r){const a=r;return a===e.PlainText||a===e.Markdown}e.is=t})(nut||(nut={}));var rle;(function(e){function t(r){const a=r;return nr.objectLiteral(r)&&nut.is(a.kind)&&nr.string(a.value)}e.is=t})(rle||(rle={}));var H4n;(function(e){e.Text=1,e.Method=2,e.Function=3,e.Constructor=4,e.Field=5,e.Variable=6,e.Class=7,e.Interface=8,e.Module=9,e.Property=10,e.Unit=11,e.Value=12,e.Enum=13,e.Keyword=14,e.Snippet=15,e.Color=16,e.File=17,e.Reference=18,e.Folder=19,e.EnumMember=20,e.Constant=21,e.Struct=22,e.Event=23,e.Operator=24,e.TypeParameter=25})(H4n||(H4n={}));var V4n;(function(e){e.PlainText=1,e.Snippet=2})(V4n||(V4n={}));var Y4n;(function(e){e.Deprecated=1})(Y4n||(Y4n={}));var j4n;(function(e){function t(a,s,o){return{newText:a,insert:s,replace:o}}e.create=t;function r(a){const s=a;return s&&nr.string(s.newText)&&Bc.is(s.insert)&&Bc.is(s.replace)}e.is=r})(j4n||(j4n={}));var W4n;(function(e){e.asIs=1,e.adjustIndentation=2})(W4n||(W4n={}));var K4n;(function(e){function t(r){const a=r;return a&&(nr.string(a.detail)||a.detail===void 0)&&(nr.string(a.description)||a.description===void 0)}e.is=t})(K4n||(K4n={}));var X4n;(function(e){function t(r){return{label:r}}e.create=t})(X4n||(X4n={}));var Q4n;(function(e){function t(r,a){return{items:r||[],isIncomplete:!!a}}e.create=t})(Q4n||(Q4n={}));var ETe;(function(e){function t(a){return a.replace(/[\\`*_{}[\]()#+\-.!]/g,"\\$&")}e.fromPlainText=t;function r(a){const s=a;return nr.string(s)||nr.objectLiteral(s)&&nr.string(s.language)&&nr.string(s.value)}e.is=r})(ETe||(ETe={}));var Z4n;(function(e){function t(r){let a=r;return!!a&&nr.objectLiteral(a)&&(rle.is(a.contents)||ETe.is(a.contents)||nr.typedArray(a.contents,ETe.is))&&(r.range===void 0||Bc.is(r.range))}e.is=t})(Z4n||(Z4n={}));var J4n;(function(e){function t(r,a){return a?{label:r,documentation:a}:{label:r}}e.create=t})(J4n||(J4n={}));var e3n;(function(e){function t(r,a,...s){let o={label:r};return nr.defined(a)&&(o.documentation=a),nr.defined(s)?o.parameters=s:o.parameters=[],o}e.create=t})(e3n||(e3n={}));var t3n;(function(e){e.Text=1,e.Read=2,e.Write=3})(t3n||(t3n={}));var n3n;(function(e){function t(r,a){let s={range:r};return nr.number(a)&&(s.kind=a),s}e.create=t})(n3n||(n3n={}));var r3n;(function(e){e.File=1,e.Module=2,e.Namespace=3,e.Package=4,e.Class=5,e.Method=6,e.Property=7,e.Field=8,e.Constructor=9,e.Enum=10,e.Interface=11,e.Function=12,e.Variable=13,e.Constant=14,e.String=15,e.Number=16,e.Boolean=17,e.Array=18,e.Object=19,e.Key=20,e.Null=21,e.EnumMember=22,e.Struct=23,e.Event=24,e.Operator=25,e.TypeParameter=26})(r3n||(r3n={}));var i3n;(function(e){e.Deprecated=1})(i3n||(i3n={}));var a3n;(function(e){function t(r,a,s,o,u){let h={name:r,kind:a,location:{uri:o,range:s}};return u&&(h.containerName=u),h}e.create=t})(a3n||(a3n={}));var s3n;(function(e){function t(r,a,s,o){return o!==void 0?{name:r,kind:a,location:{uri:s,range:o}}:{name:r,kind:a,location:{uri:s}}}e.create=t})(s3n||(s3n={}));var o3n;(function(e){function t(a,s,o,u,h,f){let p={name:a,detail:s,kind:o,range:u,selectionRange:h};return f!==void 0&&(p.children=f),p}e.create=t;function r(a){let s=a;return s&&nr.string(s.name)&&nr.number(s.kind)&&Bc.is(s.range)&&Bc.is(s.selectionRange)&&(s.detail===void 0||nr.string(s.detail))&&(s.deprecated===void 0||nr.boolean(s.deprecated))&&(s.children===void 0||Array.isArray(s.children))&&(s.tags===void 0||Array.isArray(s.tags))}e.is=r})(o3n||(o3n={}));var l3n;(function(e){e.Empty="",e.QuickFix="quickfix",e.Refactor="refactor",e.RefactorExtract="refactor.extract",e.RefactorInline="refactor.inline",e.RefactorRewrite="refactor.rewrite",e.Source="source",e.SourceOrganizeImports="source.organizeImports",e.SourceFixAll="source.fixAll"})(l3n||(l3n={}));var xTe;(function(e){e.Invoked=1,e.Automatic=2})(xTe||(xTe={}));var c3n;(function(e){function t(a,s,o){let u={diagnostics:a};return s!=null&&(u.only=s),o!=null&&(u.triggerKind=o),u}e.create=t;function r(a){let s=a;return nr.defined(s)&&nr.typedArray(s.diagnostics,wTe.is)&&(s.only===void 0||nr.typedArray(s.only,nr.string))&&(s.triggerKind===void 0||s.triggerKind===xTe.Invoked||s.triggerKind===xTe.Automatic)}e.is=r})(c3n||(c3n={}));var u3n;(function(e){function t(a,s,o){let u={title:a},h=!0;return typeof s=="string"?(h=!1,u.kind=s):Wj.is(s)?u.command=s:u.edit=s,h&&o!==void 0&&(u.kind=o),u}e.create=t;function r(a){let s=a;return s&&nr.string(s.title)&&(s.diagnostics===void 0||nr.typedArray(s.diagnostics,wTe.is))&&(s.kind===void 0||nr.string(s.kind))&&(s.edit!==void 0||s.command!==void 0)&&(s.command===void 0||Wj.is(s.command))&&(s.isPreferred===void 0||nr.boolean(s.isPreferred))&&(s.edit===void 0||eut.is(s.edit))}e.is=r})(u3n||(u3n={}));var h3n;(function(e){function t(a,s){let o={range:a};return nr.defined(s)&&(o.data=s),o}e.create=t;function r(a){let s=a;return nr.defined(s)&&Bc.is(s.range)&&(nr.undefined(s.command)||Wj.is(s.command))}e.is=r})(h3n||(h3n={}));var d3n;(function(e){function t(a,s){return{tabSize:a,insertSpaces:s}}e.create=t;function r(a){let s=a;return nr.defined(s)&&nr.uinteger(s.tabSize)&&nr.boolean(s.insertSpaces)}e.is=r})(d3n||(d3n={}));var f3n;(function(e){function t(a,s,o){return{range:a,target:s,data:o}}e.create=t;function r(a){let s=a;return nr.defined(s)&&Bc.is(s.range)&&(nr.undefined(s.target)||nr.string(s.target))}e.is=r})(f3n||(f3n={}));var p3n;(function(e){function t(a,s){return{range:a,parent:s}}e.create=t;function r(a){let s=a;return nr.objectLiteral(s)&&Bc.is(s.range)&&(s.parent===void 0||e.is(s.parent))}e.is=r})(p3n||(p3n={}));var g3n;(function(e){e.namespace="namespace",e.type="type",e.class="class",e.enum="enum",e.interface="interface",e.struct="struct",e.typeParameter="typeParameter",e.parameter="parameter",e.variable="variable",e.property="property",e.enumMember="enumMember",e.event="event",e.function="function",e.method="method",e.macro="macro",e.keyword="keyword",e.modifier="modifier",e.comment="comment",e.string="string",e.number="number",e.regexp="regexp",e.operator="operator",e.decorator="decorator"})(g3n||(g3n={}));var m3n;(function(e){e.declaration="declaration",e.definition="definition",e.readonly="readonly",e.static="static",e.deprecated="deprecated",e.abstract="abstract",e.async="async",e.modification="modification",e.documentation="documentation",e.defaultLibrary="defaultLibrary"})(m3n||(m3n={}));var b3n;(function(e){function t(r){const a=r;return nr.objectLiteral(a)&&(a.resultId===void 0||typeof a.resultId=="string")&&Array.isArray(a.data)&&(a.data.length===0||typeof a.data[0]=="number")}e.is=t})(b3n||(b3n={}));var y3n;(function(e){function t(a,s){return{range:a,text:s}}e.create=t;function r(a){const s=a;return s!=null&&Bc.is(s.range)&&nr.string(s.text)}e.is=r})(y3n||(y3n={}));var v3n;(function(e){function t(a,s,o){return{range:a,variableName:s,caseSensitiveLookup:o}}e.create=t;function r(a){const s=a;return s!=null&&Bc.is(s.range)&&nr.boolean(s.caseSensitiveLookup)&&(nr.string(s.variableName)||s.variableName===void 0)}e.is=r})(v3n||(v3n={}));var _3n;(function(e){function t(a,s){return{range:a,expression:s}}e.create=t;function r(a){const s=a;return s!=null&&Bc.is(s.range)&&(nr.string(s.expression)||s.expression===void 0)}e.is=r})(_3n||(_3n={}));var w3n;(function(e){function t(a,s){return{frameId:a,stoppedLocation:s}}e.create=t;function r(a){const s=a;return nr.defined(s)&&Bc.is(a.stoppedLocation)}e.is=r})(w3n||(w3n={}));var rut;(function(e){e.Type=1,e.Parameter=2;function t(r){return r===1||r===2}e.is=t})(rut||(rut={}));var iut;(function(e){function t(a){return{value:a}}e.create=t;function r(a){const s=a;return nr.objectLiteral(s)&&(s.tooltip===void 0||nr.string(s.tooltip)||rle.is(s.tooltip))&&(s.location===void 0||_Te.is(s.location))&&(s.command===void 0||Wj.is(s.command))}e.is=r})(iut||(iut={}));var E3n;(function(e){function t(a,s,o){const u={position:a,label:s};return o!==void 0&&(u.kind=o),u}e.create=t;function r(a){const s=a;return nr.objectLiteral(s)&&Pu.is(s.position)&&(nr.string(s.label)||nr.typedArray(s.label,iut.is))&&(s.kind===void 0||rut.is(s.kind))&&s.textEdits===void 0||nr.typedArray(s.textEdits,Kj.is)&&(s.tooltip===void 0||nr.string(s.tooltip)||rle.is(s.tooltip))&&(s.paddingLeft===void 0||nr.boolean(s.paddingLeft))&&(s.paddingRight===void 0||nr.boolean(s.paddingRight))}e.is=r})(E3n||(E3n={}));var x3n;(function(e){function t(r){return{kind:"snippet",value:r}}e.createSnippet=t})(x3n||(x3n={}));var S3n;(function(e){function t(r,a,s,o){return{insertText:r,filterText:a,range:s,command:o}}e.create=t})(S3n||(S3n={}));var T3n;(function(e){function t(r){return{items:r}}e.create=t})(T3n||(T3n={}));var C3n;(function(e){e.Invoked=0,e.Automatic=1})(C3n||(C3n={}));var A3n;(function(e){function t(r,a){return{range:r,text:a}}e.create=t})(A3n||(A3n={}));var k3n;(function(e){function t(r,a){return{triggerKind:r,selectedCompletionInfo:a}}e.create=t})(k3n||(k3n={}));var R3n;(function(e){function t(r){const a=r;return nr.objectLiteral(a)&&Yct.is(a.uri)&&nr.string(a.name)}e.is=t})(R3n||(R3n={}));var I3n;(function(e){function t(o,u,h,f){return new QGi(o,u,h,f)}e.create=t;function r(o){let u=o;return!!(nr.defined(u)&&nr.string(u.uri)&&(nr.undefined(u.languageId)||nr.string(u.languageId))&&nr.uinteger(u.lineCount)&&nr.func(u.getText)&&nr.func(u.positionAt)&&nr.func(u.offsetAt))}e.is=r;function a(o,u){let h=o.getText(),f=s(u,(m,b)=>{let _=m.range.start.line-b.range.start.line;return _===0?m.range.start.character-b.range.start.character:_}),p=h.length;for(let m=f.length-1;m>=0;m--){let b=f[m],_=o.offsetAt(b.range.start),w=o.offsetAt(b.range.end);if(w<=p)h=h.substring(0,_)+b.newText+h.substring(w,h.length);else throw new Error("Overlapping edit");p=_}return h}e.applyEdits=a;function s(o,u){if(o.length<=1)return o;const h=o.length/2|0,f=o.slice(0,h),p=o.slice(h);s(f,u),s(p,u);let m=0,b=0,_=0;for(;m0&&t.push(r.length),this._lineOffsets=t}return this._lineOffsets}positionAt(t){t=Math.max(Math.min(t,this._content.length),0);let r=this.getLineOffsets(),a=0,s=r.length;if(s===0)return Pu.create(0,t);for(;at?s=u:a=u+1}let o=a-1;return Pu.create(o,t-r[o])}offsetAt(t){let r=this.getLineOffsets();if(t.line>=r.length)return this._content.length;if(t.line<0)return 0;let a=r[t.line],s=t.line+1"u"}e.undefined=a;function s(w){return w===!0||w===!1}e.boolean=s;function o(w){return t.call(w)==="[object String]"}e.string=o;function u(w){return t.call(w)==="[object Number]"}e.number=u;function h(w,S,C){return t.call(w)==="[object Number]"&&S<=w&&w<=C}e.numberRange=h;function f(w){return t.call(w)==="[object Number]"&&-2147483648<=w&&w<=2147483647}e.integer=f;function p(w){return t.call(w)==="[object Number]"&&0<=w&&w<=2147483647}e.uinteger=p;function m(w){return t.call(w)==="[object Function]"}e.func=m;function b(w){return w!==null&&typeof w=="object"}e.objectLiteral=b;function _(w,S){return Array.isArray(w)&&w.every(S)}e.typedArray=_})(nr||(nr={}));class ZGi{constructor(){this.nodeStack=[]}get current(){var t;return(t=this.nodeStack[this.nodeStack.length-1])!==null&&t!==void 0?t:this.rootNode}buildRootNode(t){return this.rootNode=new rWn(t),this.rootNode.root=this.rootNode,this.nodeStack=[this.rootNode],this.rootNode}buildCompositeNode(t){const r=new Amt;return r.grammarSource=t,r.root=this.rootNode,this.current.content.push(r),this.nodeStack.push(r),r}buildLeafNode(t,r){const a=new aut(t.startOffset,t.image.length,kct(t),t.tokenType,!r);return a.grammarSource=r,a.root=this.rootNode,this.current.content.push(a),a}removeNode(t){const r=t.container;if(r){const a=r.content.indexOf(t);a>=0&&r.content.splice(a,1)}}addHiddenNodes(t){const r=[];for(const o of t){const u=new aut(o.startOffset,o.image.length,kct(o),o.tokenType,!0);u.root=this.rootNode,r.push(u)}let a=this.current,s=!1;if(a.content.length>0){a.content.push(...r);return}for(;a.container;){const o=a.container.content.indexOf(a);if(o>0){a.container.content.splice(o,0,...r),s=!0;break}a=a.container}s||this.rootNode.content.unshift(...r)}construct(t){const r=this.current;typeof t.$type=="string"&&(this.current.astNode=t),t.$cstNode=r;const a=this.nodeStack.pop();(a==null?void 0:a.content.length)===0&&this.removeNode(a)}}class nWn{get parent(){return this.container}get feature(){return this.grammarSource}get hidden(){return!1}get astNode(){var t,r;const a=typeof((t=this._astNode)===null||t===void 0?void 0:t.$type)=="string"?this._astNode:(r=this.container)===null||r===void 0?void 0:r.astNode;if(!a)throw new Error("This node has no associated AST element");return a}set astNode(t){this._astNode=t}get element(){return this.astNode}get text(){return this.root.fullText.substring(this.offset,this.end)}}class aut extends nWn{get offset(){return this._offset}get length(){return this._length}get end(){return this._offset+this._length}get hidden(){return this._hidden}get tokenType(){return this._tokenType}get range(){return this._range}constructor(t,r,a,s,o=!1){super(),this._hidden=o,this._offset=t,this._tokenType=s,this._length=r,this._range=a}}class Amt extends nWn{constructor(){super(...arguments),this.content=new kmt(this)}get children(){return this.content}get offset(){var t,r;return(r=(t=this.firstNonHiddenNode)===null||t===void 0?void 0:t.offset)!==null&&r!==void 0?r:0}get length(){return this.end-this.offset}get end(){var t,r;return(r=(t=this.lastNonHiddenNode)===null||t===void 0?void 0:t.end)!==null&&r!==void 0?r:0}get range(){const t=this.firstNonHiddenNode,r=this.lastNonHiddenNode;if(t&&r){if(this._rangeCache===void 0){const{range:a}=t,{range:s}=r;this._rangeCache={start:a.start,end:s.end.line=0;t--){const r=this.content[t];if(!r.hidden)return r}return this.content[this.content.length-1]}}class kmt extends Array{constructor(t){super(),this.parent=t,Object.setPrototypeOf(this,kmt.prototype)}push(...t){return this.addParents(t),super.push(...t)}unshift(...t){return this.addParents(t),super.unshift(...t)}splice(t,r,...a){return this.addParents(a),super.splice(t,r,...a)}addParents(t){for(const r of t)r.container=this.parent}}class rWn extends Amt{get text(){return this._text.substring(this.offset,this.end)}get fullText(){return this._text}constructor(t){super(),this._text="",this._text=t??""}}const sut=Symbol("Datatype");function Mit(e){return e.$type===sut}const N3n="​",iWn=e=>e.endsWith(N3n)?e:e+N3n;class aWn{constructor(t){this._unorderedGroups=new Map,this.allRules=new Map,this.lexer=t.parser.Lexer;const r=this.lexer.definition,a=t.LanguageMetaData.mode==="production";this.wrapper=new rqi(r,Object.assign(Object.assign({},t.parser.ParserConfig),{skipValidations:a,errorMessageProvider:t.parser.ParserErrorMessageProvider}))}alternatives(t,r){this.wrapper.wrapOr(t,r)}optional(t,r){this.wrapper.wrapOption(t,r)}many(t,r){this.wrapper.wrapMany(t,r)}atLeastOne(t,r){this.wrapper.wrapAtLeastOne(t,r)}getRule(t){return this.allRules.get(t)}isRecording(){return this.wrapper.IS_RECORDING}get unorderedGroups(){return this._unorderedGroups}getRuleStack(){return this.wrapper.RULE_STACK}finalize(){this.wrapper.wrapSelfAnalysis()}}class JGi extends aWn{get current(){return this.stack[this.stack.length-1]}constructor(t){super(t),this.nodeBuilder=new ZGi,this.stack=[],this.assignmentMap=new Map,this.linker=t.references.Linker,this.converter=t.parser.ValueConverter,this.astReflection=t.shared.AstReflection}rule(t,r){const a=this.computeRuleType(t),s=this.wrapper.DEFINE_RULE(iWn(t.name),this.startImplementation(a,r).bind(this));return this.allRules.set(t.name,s),t.entry&&(this.mainRule=s),s}computeRuleType(t){if(!t.fragment){if(DYn(t))return sut;{const r=Kgt(t);return r??t.name}}}parse(t,r={}){this.nodeBuilder.buildRootNode(t);const a=this.lexerResult=this.lexer.tokenize(t);this.wrapper.input=a.tokens;const s=r.rule?this.allRules.get(r.rule):this.mainRule;if(!s)throw new Error(r.rule?`No rule found with name '${r.rule}'`:"No main rule available.");const o=s.call(this.wrapper,{});return this.nodeBuilder.addHiddenNodes(a.hidden),this.unorderedGroups.clear(),this.lexerResult=void 0,{value:o,lexerErrors:a.errors,lexerReport:a.report,parserErrors:this.wrapper.errors}}startImplementation(t,r){return a=>{const s=!this.isRecording()&&t!==void 0;if(s){const u={$type:t};this.stack.push(u),t===sut&&(u.value="")}let o;try{o=r(a)}catch{o=void 0}return o===void 0&&s&&(o=this.construct()),o}}extractHiddenTokens(t){const r=this.lexerResult.hidden;if(!r.length)return[];const a=t.startOffset;for(let s=0;sa)return r.splice(0,s);return r.splice(0,r.length)}consume(t,r,a){const s=this.wrapper.wrapConsume(t,r);if(!this.isRecording()&&this.isValidToken(s)){const o=this.extractHiddenTokens(s);this.nodeBuilder.addHiddenNodes(o);const u=this.nodeBuilder.buildLeafNode(s,a),{assignment:h,isCrossRef:f}=this.getAssignment(a),p=this.current;if(h){const m=t$(a)?s.image:this.converter.convert(s.image,u);this.assign(h.operator,h.feature,m,u,f)}else if(Mit(p)){let m=s.image;t$(a)||(m=this.converter.convert(m,u).toString()),p.value+=m}}}isValidToken(t){return!t.isInsertedInRecovery&&!isNaN(t.startOffset)&&typeof t.endOffset=="number"&&!isNaN(t.endOffset)}subrule(t,r,a,s,o){let u;!this.isRecording()&&!a&&(u=this.nodeBuilder.buildCompositeNode(s));const h=this.wrapper.wrapSubrule(t,r,o);!this.isRecording()&&u&&u.length>0&&this.performSubruleAssignment(h,s,u)}performSubruleAssignment(t,r,a){const{assignment:s,isCrossRef:o}=this.getAssignment(r);if(s)this.assign(s.operator,s.feature,t,a,o);else if(!s){const u=this.current;if(Mit(u))u.value+=t.toString();else if(typeof t=="object"&&t){const f=this.assignWithoutOverride(t,u);this.stack.pop(),this.stack.push(f)}}}action(t,r){if(!this.isRecording()){let a=this.current;if(r.feature&&r.operator){a=this.construct(),this.nodeBuilder.removeNode(a.$cstNode),this.nodeBuilder.buildCompositeNode(r).content.push(a.$cstNode);const o={$type:t};this.stack.push(o),this.assign(r.operator,r.feature,a,a.$cstNode,!1)}else a.$type=t}}construct(){if(this.isRecording())return;const t=this.current;return tDi(t),this.nodeBuilder.construct(t),this.stack.pop(),Mit(t)?this.converter.convert(t.value,t.$cstNode):(nDi(this.astReflection,t),t)}getAssignment(t){if(!this.assignmentMap.has(t)){const r=wke(t,e$);this.assignmentMap.set(t,{assignment:r,isCrossRef:r?Vgt(r.terminal):!1})}return this.assignmentMap.get(t)}assign(t,r,a,s,o){const u=this.current;let h;switch(o&&typeof a=="string"?h=this.linker.buildReference(u,r,s,a):h=a,t){case"=":{u[r]=h;break}case"?=":{u[r]=!0;break}case"+=":Array.isArray(u[r])||(u[r]=[]),u[r].push(h)}}assignWithoutOverride(t,r){for(const[s,o]of Object.entries(r)){const u=t[s];u===void 0?t[s]=o:Array.isArray(u)&&Array.isArray(o)&&(o.push(...u),t[s]=o)}const a=t.$cstNode;return a&&(a.astNode=void 0,t.$cstNode=void 0),t}get definitionErrors(){return this.wrapper.definitionErrors}}class eqi{buildMismatchTokenMessage(t){return PV.buildMismatchTokenMessage(t)}buildNotAllInputParsedMessage(t){return PV.buildNotAllInputParsedMessage(t)}buildNoViableAltMessage(t){return PV.buildNoViableAltMessage(t)}buildEarlyExitMessage(t){return PV.buildEarlyExitMessage(t)}}class sWn extends eqi{buildMismatchTokenMessage({expected:t,actual:r}){return`Expecting ${t.LABEL?"`"+t.LABEL+"`":t.name.endsWith(":KW")?`keyword '${t.name.substring(0,t.name.length-3)}'`:`token of type '${t.name}'`} but found \`${r.image}\`.`}buildNotAllInputParsedMessage({firstRedundant:t}){return`Expecting end of file but found \`${t.image}\`.`}}class tqi extends aWn{constructor(){super(...arguments),this.tokens=[],this.elementStack=[],this.lastElementStack=[],this.nextTokenIndex=0,this.stackSize=0}action(){}construct(){}parse(t){this.resetState();const r=this.lexer.tokenize(t,{mode:"partial"});return this.tokens=r.tokens,this.wrapper.input=[...this.tokens],this.mainRule.call(this.wrapper,{}),this.unorderedGroups.clear(),{tokens:this.tokens,elementStack:[...this.lastElementStack],tokenIndex:this.nextTokenIndex}}rule(t,r){const a=this.wrapper.DEFINE_RULE(iWn(t.name),this.startImplementation(r).bind(this));return this.allRules.set(t.name,a),t.entry&&(this.mainRule=a),a}resetState(){this.elementStack=[],this.lastElementStack=[],this.nextTokenIndex=0,this.stackSize=0}startImplementation(t){return r=>{const a=this.keepStackSize();try{t(r)}finally{this.resetStackSize(a)}}}removeUnexpectedElements(){this.elementStack.splice(this.stackSize)}keepStackSize(){const t=this.elementStack.length;return this.stackSize=t,t}resetStackSize(t){this.removeUnexpectedElements(),this.stackSize=t}consume(t,r,a){this.wrapper.wrapConsume(t,r),this.isRecording()||(this.lastElementStack=[...this.elementStack,a],this.nextTokenIndex=this.currIdx+1)}subrule(t,r,a,s,o){this.before(s),this.wrapper.wrapSubrule(t,r,o),this.after(s)}before(t){this.isRecording()||this.elementStack.push(t)}after(t){if(!this.isRecording()){const r=this.elementStack.lastIndexOf(t);r>=0&&this.elementStack.splice(r)}}get currIdx(){return this.wrapper.currIdx}}const nqi={recoveryEnabled:!0,nodeLocationTracking:"full",skipValidations:!0,errorMessageProvider:new sWn};class rqi extends uGi{constructor(t,r){const a=r&&"maxLookahead"in r;super(t,Object.assign(Object.assign(Object.assign({},nqi),{lookaheadStrategy:a?new wmt({maxLookahead:r.maxLookahead}):new NGi({logging:r.skipValidations?()=>{}:void 0})}),r))}get IS_RECORDING(){return this.RECORDING_PHASE}DEFINE_RULE(t,r){return this.RULE(t,r)}wrapSelfAnalysis(){this.performSelfAnalysis()}wrapConsume(t,r){return this.consume(t,r)}wrapSubrule(t,r,a){return this.subrule(t,r,{ARGS:[a]})}wrapOr(t,r){this.or(t,r)}wrapOption(t,r){this.option(t,r)}wrapMany(t,r){this.many(t,r)}wrapAtLeastOne(t,r){this.atLeastOne(t,r)}}function oWn(e,t,r){return iqi({parser:t,tokens:r,ruleNames:new Map},e),t}function iqi(e,t){const r=RYn(t,!1),a=wm(t.rules).filter(AS).filter(s=>r.has(s));for(const s of a){const o=Object.assign(Object.assign({},e),{consume:1,optional:1,subrule:1,many:1,or:1});e.parser.rule(s,a$(o,s.definition))}}function a$(e,t,r=!1){let a;if(t$(t))a=hqi(e,t);else if(_ke(t))a=aqi(e,t);else if(e$(t))a=a$(e,t.terminal);else if(Vgt(t))a=lWn(e,t);else if(n$(t))a=sqi(e,t);else if(xYn(t))a=lqi(e,t);else if(SYn(t))a=cqi(e,t);else if(Ygt(t))a=uqi(e,t);else if(jLi(t)){const s=e.consume++;a=()=>e.parser.consume(s,p9,t)}else throw new vYn(t.$cstNode,`Unexpected element type: ${t.$type}`);return cWn(e,r?void 0:STe(t),a,t.cardinality)}function aqi(e,t){const r=Xgt(t);return()=>e.parser.action(r,t)}function sqi(e,t){const r=t.rule.ref;if(AS(r)){const a=e.subrule++,s=r.fragment,o=t.arguments.length>0?oqi(r,t.arguments):()=>({});return u=>e.parser.subrule(a,uWn(e,r),s,t,o(u))}else if(G$(r)){const a=e.consume++,s=out(e,r.name);return()=>e.parser.consume(a,s,t)}else if(r)Dce();else throw new vYn(t.$cstNode,`Undefined rule: ${t.rule.$refText}`)}function oqi(e,t){const r=t.map(a=>v7(a.value));return a=>{const s={};for(let o=0;ot(a)||r(a)}else if(ULi(e)){const t=v7(e.left),r=v7(e.right);return a=>t(a)&&r(a)}else if(GLi(e)){const t=v7(e.value);return r=>!t(r)}else if(qLi(e)){const t=e.parameter.ref.name;return r=>r!==void 0&&r[t]===!0}else if($Li(e)){const t=!!e.true;return()=>t}Dce()}function lqi(e,t){if(t.elements.length===1)return a$(e,t.elements[0]);{const r=[];for(const s of t.elements){const o={ALT:a$(e,s,!0)},u=STe(s);u&&(o.GATE=v7(u)),r.push(o)}const a=e.or++;return s=>e.parser.alternatives(a,r.map(o=>{const u={ALT:()=>o.ALT(s)},h=o.GATE;return h&&(u.GATE=()=>h(s)),u}))}}function cqi(e,t){if(t.elements.length===1)return a$(e,t.elements[0]);const r=[];for(const h of t.elements){const f={ALT:a$(e,h,!0)},p=STe(h);p&&(f.GATE=v7(p)),r.push(f)}const a=e.or++,s=(h,f)=>{const p=f.getRuleStack().join("-");return`uGroup_${h}_${p}`},o=h=>e.parser.alternatives(a,r.map((f,p)=>{const m={ALT:()=>!0},b=e.parser;m.ALT=()=>{if(f.ALT(h),!b.isRecording()){const w=s(a,b);b.unorderedGroups.get(w)||b.unorderedGroups.set(w,[]);const S=b.unorderedGroups.get(w);typeof(S==null?void 0:S[p])>"u"&&(S[p]=!0)}};const _=f.GATE;return _?m.GATE=()=>_(h):m.GATE=()=>{const w=b.unorderedGroups.get(s(a,b));return!(w!=null&&w[p])},m})),u=cWn(e,STe(t),o,"*");return h=>{u(h),e.parser.isRecording()||e.parser.unorderedGroups.delete(s(a,e.parser))}}function uqi(e,t){const r=t.elements.map(a=>a$(e,a));return a=>r.forEach(s=>s(a))}function STe(e){if(Ygt(e))return e.guardCondition}function lWn(e,t,r=t.terminal){if(r)if(n$(r)&&AS(r.rule.ref)){const a=r.rule.ref,s=e.subrule++;return o=>e.parser.subrule(s,uWn(e,a),!1,t,o)}else if(n$(r)&&G$(r.rule.ref)){const a=e.consume++,s=out(e,r.rule.ref.name);return()=>e.parser.consume(a,s,t)}else if(t$(r)){const a=e.consume++,s=out(e,r.value);return()=>e.parser.consume(a,s,t)}else throw new Error("Could not build cross reference parser");else{if(!t.type.ref)throw new Error("Could not resolve reference to type: "+t.type.$refText);const a=OYn(t.type.ref),s=a==null?void 0:a.terminal;if(!s)throw new Error("Could not find name assignment for type: "+Xgt(t.type.ref));return lWn(e,t,s)}}function hqi(e,t){const r=e.consume++,a=e.tokens[t.value];if(!a)throw new Error("Could not find token for keyword: "+t.value);return()=>e.parser.consume(r,a,t)}function cWn(e,t,r,a){const s=t&&v7(t);if(!a)if(s){const o=e.or++;return u=>e.parser.alternatives(o,[{ALT:()=>r(u),GATE:()=>s(u)},{ALT:C4n(),GATE:()=>!s(u)}])}else return r;if(a==="*"){const o=e.many++;return u=>e.parser.many(o,{DEF:()=>r(u),GATE:s?()=>s(u):void 0})}else if(a==="+"){const o=e.many++;if(s){const u=e.or++;return h=>e.parser.alternatives(u,[{ALT:()=>e.parser.atLeastOne(o,{DEF:()=>r(h)}),GATE:()=>s(h)},{ALT:C4n(),GATE:()=>!s(h)}])}else return u=>e.parser.atLeastOne(o,{DEF:()=>r(u)})}else if(a==="?"){const o=e.optional++;return u=>e.parser.optional(o,{DEF:()=>r(u),GATE:s?()=>s(u):void 0})}else Dce()}function uWn(e,t){const r=dqi(e,t),a=e.parser.getRule(r);if(!a)throw new Error(`Rule "${r}" not found."`);return a}function dqi(e,t){if(AS(t))return t.name;if(e.ruleNames.has(t))return e.ruleNames.get(t);{let r=t,a=r.$container,s=t.$type;for(;!AS(a);)(Ygt(a)||xYn(a)||SYn(a))&&(s=a.elements.indexOf(r).toString()+":"+s),r=a,a=a.$container;return s=a.name+":"+s,e.ruleNames.set(t,s),s}}function out(e,t){const r=e.tokens[t];if(!r)throw new Error(`Token "${t}" not found."`);return r}function fqi(e){const t=e.Grammar,r=e.parser.Lexer,a=new tqi(e);return oWn(t,a,r.definition),a.finalize(),a}function pqi(e){const t=gqi(e);return t.finalize(),t}function gqi(e){const t=e.Grammar,r=e.parser.Lexer,a=new JGi(e);return oWn(t,a,r.definition)}class hWn{constructor(){this.diagnostics=[]}buildTokens(t,r){const a=wm(RYn(t,!1)),s=this.buildTerminalTokens(a),o=this.buildKeywordTokens(a,s,r);return s.forEach(u=>{const h=u.PATTERN;typeof h=="object"&&h&&"test"in h&&Ict(h)?o.unshift(u):o.push(u)}),o}flushLexingReport(t){return{diagnostics:this.popDiagnostics()}}popDiagnostics(){const t=[...this.diagnostics];return this.diagnostics=[],t}buildTerminalTokens(t){return t.filter(G$).filter(r=>!r.fragment).map(r=>this.buildTerminalToken(r)).toArray()}buildTerminalToken(t){const r=Qgt(t),a=this.requiresCustomPattern(r)?this.regexPatternFunction(r):r,s={name:t.name,PATTERN:a};return typeof a=="function"&&(s.LINE_BREAKS=!0),t.hidden&&(s.GROUP=Ict(r)?J2.SKIPPED:"hidden"),s}requiresCustomPattern(t){return t.flags.includes("u")||t.flags.includes("s")?!0:!!(t.source.includes("?<=")||t.source.includes("?(r.lastIndex=s,r.exec(a))}buildKeywordTokens(t,r,a){return t.filter(AS).flatMap(s=>Mce(s).filter(t$)).distinct(s=>s.value).toArray().sort((s,o)=>o.value.length-s.value.length).map(s=>this.buildKeywordToken(s,r,!!(a!=null&&a.caseInsensitive)))}buildKeywordToken(t,r,a){const s=this.buildKeywordPattern(t,a),o={name:t.value,PATTERN:s,LONGER_ALT:this.findLongerAlt(t,r)};return typeof s=="function"&&(o.LINE_BREAKS=!0),o}buildKeywordPattern(t,r){return r?new RegExp(hDi(t.value)):t.value}findLongerAlt(t,r){return r.reduce((a,s)=>{const o=s==null?void 0:s.PATTERN;return o!=null&&o.source&&dDi("^"+o.source+"$",t.value)&&a.push(s),a},[])}}class dWn{convert(t,r){let a=r.grammarSource;if(Vgt(a)&&(a=mDi(a)),n$(a)){const s=a.rule.ref;if(!s)throw new Error("This cst node was not parsed by a rule.");return this.runConverter(s,t,r)}return t}runConverter(t,r,a){var s;switch(t.name.toUpperCase()){case"INT":return l7.convertInt(r);case"STRING":return l7.convertString(r);case"ID":return l7.convertID(r)}switch((s=xDi(t))===null||s===void 0?void 0:s.toLowerCase()){case"number":return l7.convertNumber(r);case"boolean":return l7.convertBoolean(r);case"bigint":return l7.convertBigint(r);case"date":return l7.convertDate(r);default:return r}}}var l7;(function(e){function t(p){let m="";for(let b=1;bfWn(t))}_b.stringArray=_qi;var Qj={};Object.defineProperty(Qj,"__esModule",{value:!0});var gWn=Qj.Emitter=Qj.Event=void 0;const wqi=qke;var O3n;(function(e){const t={dispose(){}};e.None=function(){return t}})(O3n||(Qj.Event=O3n={}));class Eqi{add(t,r=null,a){this._callbacks||(this._callbacks=[],this._contexts=[]),this._callbacks.push(t),this._contexts.push(r),Array.isArray(a)&&a.push({dispose:()=>this.remove(t,r)})}remove(t,r=null){if(!this._callbacks)return;let a=!1;for(let s=0,o=this._callbacks.length;s{this._callbacks||(this._callbacks=new Eqi),this._options&&this._options.onFirstListenerAdd&&this._callbacks.isEmpty()&&this._options.onFirstListenerAdd(this),this._callbacks.add(t,r);const s={dispose:()=>{this._callbacks&&(this._callbacks.remove(t,r),s.dispose=Hke._noop,this._options&&this._options.onLastListenerRemove&&this._callbacks.isEmpty()&&this._options.onLastListenerRemove(this))}};return Array.isArray(a)&&a.push(s),s}),this._event}fire(t){this._callbacks&&this._callbacks.invoke.call(this._callbacks,t)}dispose(){this._callbacks&&(this._callbacks.dispose(),this._callbacks=void 0)}}gWn=Qj.Emitter=Hke;Hke._noop=function(){};var Nf;Object.defineProperty(ile,"__esModule",{value:!0});var Rmt=ile.CancellationTokenSource=Nf=ile.CancellationToken=void 0;const xqi=qke,Sqi=_b,uut=Qj;var TTe;(function(e){e.None=Object.freeze({isCancellationRequested:!1,onCancellationRequested:uut.Event.None}),e.Cancelled=Object.freeze({isCancellationRequested:!0,onCancellationRequested:uut.Event.None});function t(r){const a=r;return a&&(a===e.None||a===e.Cancelled||Sqi.boolean(a.isCancellationRequested)&&!!a.onCancellationRequested)}e.is=t})(TTe||(Nf=ile.CancellationToken=TTe={}));const Tqi=Object.freeze(function(e,t){const r=(0,xqi.default)().timer.setTimeout(e.bind(t),0);return{dispose(){r.dispose()}}});class L3n{constructor(){this._isCancelled=!1}cancel(){this._isCancelled||(this._isCancelled=!0,this._emitter&&(this._emitter.fire(void 0),this.dispose()))}get isCancellationRequested(){return this._isCancelled}get onCancellationRequested(){return this._isCancelled?Tqi:(this._emitter||(this._emitter=new uut.Emitter),this._emitter.event)}dispose(){this._emitter&&(this._emitter.dispose(),this._emitter=void 0)}}class Cqi{get token(){return this._token||(this._token=new L3n),this._token}cancel(){this._token?this._token.cancel():this._token=TTe.Cancelled}dispose(){this._token?this._token instanceof L3n&&this._token.dispose():this._token=TTe.None}}Rmt=ile.CancellationTokenSource=Cqi;function Aqi(){return new Promise(e=>{typeof setImmediate>"u"?setTimeout(e,0):setImmediate(e)})}let Uxe=0,kqi=10;function Rqi(){return Uxe=performance.now(),new Rmt}const CTe=Symbol("OperationCancelled");function Vke(e){return e===CTe}async function Ow(e){if(e===Nf.None)return;const t=performance.now();if(t-Uxe>=kqi&&(Uxe=t,await Aqi(),Uxe=performance.now()),e.isCancellationRequested)throw CTe}class Imt{constructor(){this.promise=new Promise((t,r)=>{this.resolve=a=>(t(a),this),this.reject=a=>(r(a),this)})}}class ale{constructor(t,r,a,s){this._uri=t,this._languageId=r,this._version=a,this._content=s,this._lineOffsets=void 0}get uri(){return this._uri}get languageId(){return this._languageId}get version(){return this._version}getText(t){if(t){const r=this.offsetAt(t.start),a=this.offsetAt(t.end);return this._content.substring(r,a)}return this._content}update(t,r){for(const a of t)if(ale.isIncremental(a)){const s=bWn(a.range),o=this.offsetAt(s.start),u=this.offsetAt(s.end);this._content=this._content.substring(0,o)+a.text+this._content.substring(u,this._content.length);const h=Math.max(s.start.line,0),f=Math.max(s.end.line,0);let p=this._lineOffsets;const m=D3n(a.text,!1,o);if(f-h===m.length)for(let _=0,w=m.length;_t?s=u:a=u+1}const o=a-1;return t=this.ensureBeforeEOL(t,r[o]),{line:o,character:t-r[o]}}offsetAt(t){const r=this.getLineOffsets();if(t.line>=r.length)return this._content.length;if(t.line<0)return 0;const a=r[t.line];if(t.character<=0)return a;const s=t.line+1r&&mWn(this._content.charCodeAt(t-1));)t--;return t}get lineCount(){return this.getLineOffsets().length}static isIncremental(t){const r=t;return r!=null&&typeof r.text=="string"&&r.range!==void 0&&(r.rangeLength===void 0||typeof r.rangeLength=="number")}static isFull(t){const r=t;return r!=null&&typeof r.text=="string"&&r.range===void 0&&r.rangeLength===void 0}}var hut;(function(e){function t(s,o,u,h){return new ale(s,o,u,h)}e.create=t;function r(s,o,u){if(s instanceof ale)return s.update(o,u),s;throw new Error("TextDocument.update: document must be created by TextDocument.create")}e.update=r;function a(s,o){const u=s.getText(),h=dut(o.map(Iqi),(m,b)=>{const _=m.range.start.line-b.range.start.line;return _===0?m.range.start.character-b.range.start.character:_});let f=0;const p=[];for(const m of h){const b=s.offsetAt(m.range.start);if(bf&&p.push(u.substring(f,b)),m.newText.length&&p.push(m.newText),f=s.offsetAt(m.range.end)}return p.push(u.substr(f)),p.join("")}e.applyEdits=a})(hut||(hut={}));function dut(e,t){if(e.length<=1)return e;const r=e.length/2|0,a=e.slice(0,r),s=e.slice(r);dut(a,t),dut(s,t);let o=0,u=0,h=0;for(;or.line||t.line===r.line&&t.character>r.character?{start:r,end:t}:e}function Iqi(e){const t=bWn(e.range);return t!==e.range?{newText:e.newText,range:t}:e}var yWn;(()=>{var e={470:s=>{function o(f){if(typeof f!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(f))}function u(f,p){for(var m,b="",_=0,w=-1,S=0,C=0;C<=f.length;++C){if(C2){var A=b.lastIndexOf("/");if(A!==b.length-1){A===-1?(b="",_=0):_=(b=b.slice(0,A)).length-1-b.lastIndexOf("/"),w=C,S=0;continue}}else if(b.length===2||b.length===1){b="",_=0,w=C,S=0;continue}}p&&(b.length>0?b+="/..":b="..",_=2)}else b.length>0?b+="/"+f.slice(w+1,C):b=f.slice(w+1,C),_=C-w-1;w=C,S=0}else m===46&&S!==-1?++S:S=-1}return b}var h={resolve:function(){for(var f,p="",m=!1,b=arguments.length-1;b>=-1&&!m;b--){var _;b>=0?_=arguments[b]:(f===void 0&&(f=process.cwd()),_=f),o(_),_.length!==0&&(p=_+"/"+p,m=_.charCodeAt(0)===47)}return p=u(p,!m),m?p.length>0?"/"+p:"/":p.length>0?p:"."},normalize:function(f){if(o(f),f.length===0)return".";var p=f.charCodeAt(0)===47,m=f.charCodeAt(f.length-1)===47;return(f=u(f,!p)).length!==0||p||(f="."),f.length>0&&m&&(f+="/"),p?"/"+f:f},isAbsolute:function(f){return o(f),f.length>0&&f.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var f,p=0;p0&&(f===void 0?f=m:f+="/"+m)}return f===void 0?".":h.normalize(f)},relative:function(f,p){if(o(f),o(p),f===p||(f=h.resolve(f))===(p=h.resolve(p)))return"";for(var m=1;mC){if(p.charCodeAt(w+k)===47)return p.slice(w+k+1);if(k===0)return p.slice(w+k)}else _>C&&(f.charCodeAt(m+k)===47?A=k:k===0&&(A=0));break}var I=f.charCodeAt(m+k);if(I!==p.charCodeAt(w+k))break;I===47&&(A=k)}var N="";for(k=m+A+1;k<=b;++k)k!==b&&f.charCodeAt(k)!==47||(N.length===0?N+="..":N+="/..");return N.length>0?N+p.slice(w+A):(w+=A,p.charCodeAt(w)===47&&++w,p.slice(w))},_makeLong:function(f){return f},dirname:function(f){if(o(f),f.length===0)return".";for(var p=f.charCodeAt(0),m=p===47,b=-1,_=!0,w=f.length-1;w>=1;--w)if((p=f.charCodeAt(w))===47){if(!_){b=w;break}}else _=!1;return b===-1?m?"/":".":m&&b===1?"//":f.slice(0,b)},basename:function(f,p){if(p!==void 0&&typeof p!="string")throw new TypeError('"ext" argument must be a string');o(f);var m,b=0,_=-1,w=!0;if(p!==void 0&&p.length>0&&p.length<=f.length){if(p.length===f.length&&p===f)return"";var S=p.length-1,C=-1;for(m=f.length-1;m>=0;--m){var A=f.charCodeAt(m);if(A===47){if(!w){b=m+1;break}}else C===-1&&(w=!1,C=m+1),S>=0&&(A===p.charCodeAt(S)?--S==-1&&(_=m):(S=-1,_=C))}return b===_?_=C:_===-1&&(_=f.length),f.slice(b,_)}for(m=f.length-1;m>=0;--m)if(f.charCodeAt(m)===47){if(!w){b=m+1;break}}else _===-1&&(w=!1,_=m+1);return _===-1?"":f.slice(b,_)},extname:function(f){o(f);for(var p=-1,m=0,b=-1,_=!0,w=0,S=f.length-1;S>=0;--S){var C=f.charCodeAt(S);if(C!==47)b===-1&&(_=!1,b=S+1),C===46?p===-1?p=S:w!==1&&(w=1):p!==-1&&(w=-1);else if(!_){m=S+1;break}}return p===-1||b===-1||w===0||w===1&&p===b-1&&p===m+1?"":f.slice(p,b)},format:function(f){if(f===null||typeof f!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof f);return function(p,m){var b=m.dir||m.root,_=m.base||(m.name||"")+(m.ext||"");return b?b===m.root?b+_:b+"/"+_:_}(0,f)},parse:function(f){o(f);var p={root:"",dir:"",base:"",ext:"",name:""};if(f.length===0)return p;var m,b=f.charCodeAt(0),_=b===47;_?(p.root="/",m=1):m=0;for(var w=-1,S=0,C=-1,A=!0,k=f.length-1,I=0;k>=m;--k)if((b=f.charCodeAt(k))!==47)C===-1&&(A=!1,C=k+1),b===46?w===-1?w=k:I!==1&&(I=1):w!==-1&&(I=-1);else if(!A){S=k+1;break}return w===-1||C===-1||I===0||I===1&&w===C-1&&w===S+1?C!==-1&&(p.base=p.name=S===0&&_?f.slice(1,C):f.slice(S,C)):(S===0&&_?(p.name=f.slice(1,w),p.base=f.slice(1,C)):(p.name=f.slice(S,w),p.base=f.slice(S,C)),p.ext=f.slice(w,C)),S>0?p.dir=f.slice(0,S-1):_&&(p.dir="/"),p},sep:"/",delimiter:":",win32:null,posix:null};h.posix=h,s.exports=h}},t={};function r(s){var o=t[s];if(o!==void 0)return o.exports;var u=t[s]={exports:{}};return e[s](u,u.exports,r),u.exports}r.d=(s,o)=>{for(var u in o)r.o(o,u)&&!r.o(s,u)&&Object.defineProperty(s,u,{enumerable:!0,get:o[u]})},r.o=(s,o)=>Object.prototype.hasOwnProperty.call(s,o),r.r=s=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(s,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(s,"__esModule",{value:!0})};var a={};(()=>{let s;r.r(a),r.d(a,{URI:()=>_,Utils:()=>G}),typeof process=="object"?s=process.platform==="win32":typeof navigator=="object"&&(s=navigator.userAgent.indexOf("Windows")>=0);const o=/^\w[\w\d+.-]*$/,u=/^\//,h=/^\/\//;function f(B,Z){if(!B.scheme&&Z)throw new Error(`[UriError]: Scheme is missing: {scheme: "", authority: "${B.authority}", path: "${B.path}", query: "${B.query}", fragment: "${B.fragment}"}`);if(B.scheme&&!o.test(B.scheme))throw new Error("[UriError]: Scheme contains illegal characters.");if(B.path){if(B.authority){if(!u.test(B.path))throw new Error('[UriError]: If a URI contains an authority component, then the path component must either be empty or begin with a slash ("/") character')}else if(h.test(B.path))throw new Error('[UriError]: If a URI does not contain an authority component, then the path cannot begin with two slash characters ("//")')}}const p="",m="/",b=/^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/;class _{constructor(Z,z,Y,W,Q,V=!1){Gi(this,"scheme");Gi(this,"authority");Gi(this,"path");Gi(this,"query");Gi(this,"fragment");typeof Z=="object"?(this.scheme=Z.scheme||p,this.authority=Z.authority||p,this.path=Z.path||p,this.query=Z.query||p,this.fragment=Z.fragment||p):(this.scheme=function(j,ee){return j||ee?j:"file"}(Z,V),this.authority=z||p,this.path=function(j,ee){switch(j){case"https":case"http":case"file":ee?ee[0]!==m&&(ee=m+ee):ee=m}return ee}(this.scheme,Y||p),this.query=W||p,this.fragment=Q||p,f(this,V))}static isUri(Z){return Z instanceof _||!!Z&&typeof Z.authority=="string"&&typeof Z.fragment=="string"&&typeof Z.path=="string"&&typeof Z.query=="string"&&typeof Z.scheme=="string"&&typeof Z.fsPath=="string"&&typeof Z.with=="function"&&typeof Z.toString=="function"}get fsPath(){return I(this)}with(Z){if(!Z)return this;let{scheme:z,authority:Y,path:W,query:Q,fragment:V}=Z;return z===void 0?z=this.scheme:z===null&&(z=p),Y===void 0?Y=this.authority:Y===null&&(Y=p),W===void 0?W=this.path:W===null&&(W=p),Q===void 0?Q=this.query:Q===null&&(Q=p),V===void 0?V=this.fragment:V===null&&(V=p),z===this.scheme&&Y===this.authority&&W===this.path&&Q===this.query&&V===this.fragment?this:new S(z,Y,W,Q,V)}static parse(Z,z=!1){const Y=b.exec(Z);return Y?new S(Y[2]||p,M(Y[4]||p),M(Y[5]||p),M(Y[7]||p),M(Y[9]||p),z):new S(p,p,p,p,p)}static file(Z){let z=p;if(s&&(Z=Z.replace(/\\/g,m)),Z[0]===m&&Z[1]===m){const Y=Z.indexOf(m,2);Y===-1?(z=Z.substring(2),Z=m):(z=Z.substring(2,Y),Z=Z.substring(Y)||m)}return new S("file",z,Z,p,p)}static from(Z){const z=new S(Z.scheme,Z.authority,Z.path,Z.query,Z.fragment);return f(z,!0),z}toString(Z=!1){return N(this,Z)}toJSON(){return this}static revive(Z){if(Z){if(Z instanceof _)return Z;{const z=new S(Z);return z._formatted=Z.external,z._fsPath=Z._sep===w?Z.fsPath:null,z}}return Z}}const w=s?1:void 0;class S extends _{constructor(){super(...arguments);Gi(this,"_formatted",null);Gi(this,"_fsPath",null)}get fsPath(){return this._fsPath||(this._fsPath=I(this)),this._fsPath}toString(z=!1){return z?N(this,!0):(this._formatted||(this._formatted=N(this,!1)),this._formatted)}toJSON(){const z={$mid:1};return this._fsPath&&(z.fsPath=this._fsPath,z._sep=w),this._formatted&&(z.external=this._formatted),this.path&&(z.path=this.path),this.scheme&&(z.scheme=this.scheme),this.authority&&(z.authority=this.authority),this.query&&(z.query=this.query),this.fragment&&(z.fragment=this.fragment),z}}const C={58:"%3A",47:"%2F",63:"%3F",35:"%23",91:"%5B",93:"%5D",64:"%40",33:"%21",36:"%24",38:"%26",39:"%27",40:"%28",41:"%29",42:"%2A",43:"%2B",44:"%2C",59:"%3B",61:"%3D",32:"%20"};function A(B,Z,z){let Y,W=-1;for(let Q=0;Q=97&&V<=122||V>=65&&V<=90||V>=48&&V<=57||V===45||V===46||V===95||V===126||Z&&V===47||z&&V===91||z&&V===93||z&&V===58)W!==-1&&(Y+=encodeURIComponent(B.substring(W,Q)),W=-1),Y!==void 0&&(Y+=B.charAt(Q));else{Y===void 0&&(Y=B.substr(0,Q));const j=C[V];j!==void 0?(W!==-1&&(Y+=encodeURIComponent(B.substring(W,Q)),W=-1),Y+=j):W===-1&&(W=Q)}}return W!==-1&&(Y+=encodeURIComponent(B.substring(W))),Y!==void 0?Y:B}function k(B){let Z;for(let z=0;z1&&B.scheme==="file"?`//${B.authority}${B.path}`:B.path.charCodeAt(0)===47&&(B.path.charCodeAt(1)>=65&&B.path.charCodeAt(1)<=90||B.path.charCodeAt(1)>=97&&B.path.charCodeAt(1)<=122)&&B.path.charCodeAt(2)===58?B.path[1].toLowerCase()+B.path.substr(2):B.path,s&&(z=z.replace(/\//g,"\\")),z}function N(B,Z){const z=Z?k:A;let Y="",{scheme:W,authority:Q,path:V,query:j,fragment:ee}=B;if(W&&(Y+=W,Y+=":"),(Q||W==="file")&&(Y+=m,Y+=m),Q){let te=Q.indexOf("@");if(te!==-1){const ne=Q.substr(0,te);Q=Q.substr(te+1),te=ne.lastIndexOf(":"),te===-1?Y+=z(ne,!1,!1):(Y+=z(ne.substr(0,te),!1,!1),Y+=":",Y+=z(ne.substr(te+1),!1,!0)),Y+="@"}Q=Q.toLowerCase(),te=Q.lastIndexOf(":"),te===-1?Y+=z(Q,!1,!0):(Y+=z(Q.substr(0,te),!1,!0),Y+=Q.substr(te))}if(V){if(V.length>=3&&V.charCodeAt(0)===47&&V.charCodeAt(2)===58){const te=V.charCodeAt(1);te>=65&&te<=90&&(V=`/${String.fromCharCode(te+32)}:${V.substr(3)}`)}else if(V.length>=2&&V.charCodeAt(1)===58){const te=V.charCodeAt(0);te>=65&&te<=90&&(V=`${String.fromCharCode(te+32)}:${V.substr(2)}`)}Y+=z(V,!0,!1)}return j&&(Y+="?",Y+=z(j,!1,!1)),ee&&(Y+="#",Y+=Z?ee:A(ee,!1,!1)),Y}function L(B){try{return decodeURIComponent(B)}catch{return B.length>3?B.substr(0,3)+L(B.substr(3)):B}}const P=/(%[0-9A-Za-z][0-9A-Za-z])+/g;function M(B){return B.match(P)?B.replace(P,Z=>L(Z)):B}var F=r(470);const U=F.posix||F,$="/";var G;(function(B){B.joinPath=function(Z,...z){return Z.with({path:U.join(Z.path,...z)})},B.resolvePath=function(Z,...z){let Y=Z.path,W=!1;Y[0]!==$&&(Y=$+Y,W=!0);let Q=U.resolve(Y,...z);return W&&Q[0]===$&&!Z.authority&&(Q=Q.substring(1)),Z.with({path:Q})},B.dirname=function(Z){if(Z.path.length===0||Z.path===$)return Z;let z=U.dirname(Z.path);return z.length===1&&z.charCodeAt(0)===46&&(z=""),Z.with({path:z})},B.basename=function(Z){return U.basename(Z.path)},B.extname=function(Z){return U.extname(Z.path)}})(G||(G={}))})(),yWn=a})();const{URI:s$,Utils:hie}=yWn;var m9;(function(e){e.basename=hie.basename,e.dirname=hie.dirname,e.extname=hie.extname,e.joinPath=hie.joinPath,e.resolvePath=hie.resolvePath;function t(s,o){return(s==null?void 0:s.toString())===(o==null?void 0:o.toString())}e.equals=t;function r(s,o){const u=typeof s=="string"?s:s.path,h=typeof o=="string"?o:o.path,f=u.split("/").filter(w=>w.length>0),p=h.split("/").filter(w=>w.length>0);let m=0;for(;ms??(s=hut.create(t.toString(),a.getServices(t).LanguageMetaData.languageId,0,r??""))}}class Oqi{constructor(t){this.documentMap=new Map,this.langiumDocumentFactory=t.workspace.LangiumDocumentFactory,this.serviceRegistry=t.ServiceRegistry}get all(){return wm(this.documentMap.values())}addDocument(t){const r=t.uri.toString();if(this.documentMap.has(r))throw new Error(`A document with the URI '${r}' is already present.`);this.documentMap.set(r,t)}getDocument(t){const r=t.toString();return this.documentMap.get(r)}async getOrCreateDocument(t,r){let a=this.getDocument(t);return a||(a=await this.langiumDocumentFactory.fromUri(t,r),this.addDocument(a),a)}createDocument(t,r,a){if(a)return this.langiumDocumentFactory.fromString(r,t,a).then(s=>(this.addDocument(s),s));{const s=this.langiumDocumentFactory.fromString(r,t);return this.addDocument(s),s}}hasDocument(t){return this.documentMap.has(t.toString())}invalidateDocument(t){const r=t.toString(),a=this.documentMap.get(r);return a&&(this.serviceRegistry.getServices(t).references.Linker.unlink(a),a.state=Vd.Changed,a.precomputedScopes=void 0,a.diagnostics=void 0),a}deleteDocument(t){const r=t.toString(),a=this.documentMap.get(r);return a&&(a.state=Vd.Changed,this.documentMap.delete(r)),a}}const Pit=Symbol("ref_resolving");class Lqi{constructor(t){this.reflection=t.shared.AstReflection,this.langiumDocuments=()=>t.shared.workspace.LangiumDocuments,this.scopeProvider=t.references.ScopeProvider,this.astNodeLocator=t.workspace.AstNodeLocator}async link(t,r=Nf.None){for(const a of aY(t.parseResult.value))await Ow(r),CYn(a).forEach(s=>this.doLink(s,t))}doLink(t,r){var a;const s=t.reference;if(s._ref===void 0){s._ref=Pit;try{const o=this.getCandidate(t);if(Oxe(o))s._ref=o;else if(s._nodeDescription=o,this.langiumDocuments().hasDocument(o.documentUri)){const u=this.loadAstNode(o);s._ref=u??this.createLinkingError(t,o)}else s._ref=void 0}catch(o){console.error(`An error occurred while resolving reference to '${s.$refText}':`,o);const u=(a=o.message)!==null&&a!==void 0?a:String(o);s._ref=Object.assign(Object.assign({},t),{message:`An error occurred while resolving reference to '${s.$refText}': ${u}`})}r.references.push(s)}}unlink(t){for(const r of t.references)delete r._ref,delete r._nodeDescription;t.references=[]}getCandidate(t){const a=this.scopeProvider.getScope(t).getElement(t.reference.$refText);return a??this.createLinkingError(t)}buildReference(t,r,a,s){const o=this,u={$refNode:a,$refText:s,get ref(){var h;if(Eb(this._ref))return this._ref;if(RLi(this._nodeDescription)){const f=o.loadAstNode(this._nodeDescription);this._ref=f??o.createLinkingError({reference:u,container:t,property:r},this._nodeDescription)}else if(this._ref===void 0){this._ref=Pit;const f=Rct(t).$document,p=o.getLinkedNode({reference:u,container:t,property:r});if(p.error&&f&&f.state=t.end)return o.ref}}if(a){const s=this.nameProvider.getNameNode(a);if(s&&(s===t||OLi(t,s)))return a}}}findDeclarationNode(t){const r=this.findDeclaration(t);if(r!=null&&r.$cstNode){const a=this.nameProvider.getNameNode(r);return a??r.$cstNode}}findReferences(t,r){const a=[];if(r.includeDeclaration){const o=this.getReferenceToSelf(t);o&&a.push(o)}let s=this.index.findAllReferences(t,this.nodeLocator.getAstNodePath(t));return r.documentUri&&(s=s.filter(o=>m9.equals(o.sourceUri,r.documentUri))),a.push(...s),wm(a)}getReferenceToSelf(t){const r=this.nameProvider.getNameNode(t);if(r){const a=h9(t),s=this.nodeLocator.getAstNodePath(t);return{sourceUri:a.uri,sourcePath:s,targetUri:a.uri,targetPath:s,segment:aTe(r),local:!0}}}}class ATe{constructor(t){if(this.map=new Map,t)for(const[r,a]of t)this.add(r,a)}get size(){return Cct.sum(wm(this.map.values()).map(t=>t.length))}clear(){this.map.clear()}delete(t,r){if(r===void 0)return this.map.delete(t);{const a=this.map.get(t);if(a){const s=a.indexOf(r);if(s>=0)return a.length===1?this.map.delete(t):a.splice(s,1),!0}return!1}}get(t){var r;return(r=this.map.get(t))!==null&&r!==void 0?r:[]}has(t,r){if(r===void 0)return this.map.has(t);{const a=this.map.get(t);return a?a.indexOf(r)>=0:!1}}add(t,r){return this.map.has(t)?this.map.get(t).push(r):this.map.set(t,[r]),this}addAll(t,r){return this.map.has(t)?this.map.get(t).push(...r):this.map.set(t,Array.from(r)),this}forEach(t){this.map.forEach((r,a)=>r.forEach(s=>t(s,a,this)))}[Symbol.iterator](){return this.entries().iterator()}entries(){return wm(this.map.entries()).flatMap(([t,r])=>r.map(a=>[t,a]))}keys(){return wm(this.map.keys())}values(){return wm(this.map.values()).flat()}entriesGroupedByKey(){return wm(this.map.entries())}}class M3n{get size(){return this.map.size}constructor(t){if(this.map=new Map,this.inverse=new Map,t)for(const[r,a]of t)this.set(r,a)}clear(){this.map.clear(),this.inverse.clear()}set(t,r){return this.map.set(t,r),this.inverse.set(r,t),this}get(t){return this.map.get(t)}getKey(t){return this.inverse.get(t)}delete(t){const r=this.map.get(t);return r!==void 0?(this.map.delete(t),this.inverse.delete(r),!0):!1}}class Bqi{constructor(t){this.nameProvider=t.references.NameProvider,this.descriptions=t.workspace.AstNodeDescriptionProvider}async computeExports(t,r=Nf.None){return this.computeExportsForNode(t.parseResult.value,t,void 0,r)}async computeExportsForNode(t,r,a=jgt,s=Nf.None){const o=[];this.exportNode(t,o,r);for(const u of a(t))await Ow(s),this.exportNode(u,o,r);return o}exportNode(t,r,a){const s=this.nameProvider.getName(t);s&&r.push(this.descriptions.createDescription(t,s,a))}async computeLocalScopes(t,r=Nf.None){const a=t.parseResult.value,s=new ATe;for(const o of Mce(a))await Ow(r),this.processNode(o,t,s);return s}processNode(t,r,a){const s=t.$container;if(s){const o=this.nameProvider.getName(t);o&&a.add(s,this.descriptions.createDescription(t,o,r))}}}class P3n{constructor(t,r,a){var s;this.elements=t,this.outerScope=r,this.caseInsensitive=(s=a==null?void 0:a.caseInsensitive)!==null&&s!==void 0?s:!1}getAllElements(){return this.outerScope?this.elements.concat(this.outerScope.getAllElements()):this.elements}getElement(t){const r=this.caseInsensitive?this.elements.find(a=>a.name.toLowerCase()===t.toLowerCase()):this.elements.find(a=>a.name===t);if(r)return r;if(this.outerScope)return this.outerScope.getElement(t)}}class Fqi{constructor(t,r,a){var s;this.elements=new Map,this.caseInsensitive=(s=a==null?void 0:a.caseInsensitive)!==null&&s!==void 0?s:!1;for(const o of t){const u=this.caseInsensitive?o.name.toLowerCase():o.name;this.elements.set(u,o)}this.outerScope=r}getElement(t){const r=this.caseInsensitive?t.toLowerCase():t,a=this.elements.get(r);if(a)return a;if(this.outerScope)return this.outerScope.getElement(t)}getAllElements(){let t=wm(this.elements.values());return this.outerScope&&(t=t.concat(this.outerScope.getAllElements())),t}}class vWn{constructor(){this.toDispose=[],this.isDisposed=!1}onDispose(t){this.toDispose.push(t)}dispose(){this.throwIfDisposed(),this.clear(),this.isDisposed=!0,this.toDispose.forEach(t=>t.dispose())}throwIfDisposed(){if(this.isDisposed)throw new Error("This cache has already been disposed")}}class $qi extends vWn{constructor(){super(...arguments),this.cache=new Map}has(t){return this.throwIfDisposed(),this.cache.has(t)}set(t,r){this.throwIfDisposed(),this.cache.set(t,r)}get(t,r){if(this.throwIfDisposed(),this.cache.has(t))return this.cache.get(t);if(r){const a=r();return this.cache.set(t,a),a}else return}delete(t){return this.throwIfDisposed(),this.cache.delete(t)}clear(){this.throwIfDisposed(),this.cache.clear()}}class Uqi extends vWn{constructor(t){super(),this.cache=new Map,this.converter=t??(r=>r)}has(t,r){return this.throwIfDisposed(),this.cacheForContext(t).has(r)}set(t,r,a){this.throwIfDisposed(),this.cacheForContext(t).set(r,a)}get(t,r,a){this.throwIfDisposed();const s=this.cacheForContext(t);if(s.has(r))return s.get(r);if(a){const o=a();return s.set(r,o),o}else return}delete(t,r){return this.throwIfDisposed(),this.cacheForContext(t).delete(r)}clear(t){if(this.throwIfDisposed(),t){const r=this.converter(t);this.cache.delete(r)}else this.cache.clear()}cacheForContext(t){const r=this.converter(t);let a=this.cache.get(r);return a||(a=new Map,this.cache.set(r,a)),a}}class zqi extends $qi{constructor(t,r){super(),r?(this.toDispose.push(t.workspace.DocumentBuilder.onBuildPhase(r,()=>{this.clear()})),this.toDispose.push(t.workspace.DocumentBuilder.onUpdate((a,s)=>{s.length>0&&this.clear()}))):this.toDispose.push(t.workspace.DocumentBuilder.onUpdate(()=>{this.clear()}))}}class Gqi{constructor(t){this.reflection=t.shared.AstReflection,this.nameProvider=t.references.NameProvider,this.descriptions=t.workspace.AstNodeDescriptionProvider,this.indexManager=t.shared.workspace.IndexManager,this.globalScopeCache=new zqi(t.shared)}getScope(t){const r=[],a=this.reflection.getReferenceType(t),s=h9(t.container).precomputedScopes;if(s){let u=t.container;do{const h=s.get(u);h.length>0&&r.push(wm(h).filter(f=>this.reflection.isSubtype(f.type,a))),u=u.$container}while(u)}let o=this.getGlobalScope(a,t);for(let u=r.length-1;u>=0;u--)o=this.createScope(r[u],o);return o}createScope(t,r,a){return new P3n(wm(t),r,a)}createScopeForNodes(t,r,a){const s=wm(t).map(o=>{const u=this.nameProvider.getName(o);if(u)return this.descriptions.createDescription(o,u)}).nonNullable();return new P3n(s,r,a)}getGlobalScope(t,r){return this.globalScopeCache.get(t,()=>new Fqi(this.indexManager.allElements(t)))}}function qqi(e){return typeof e.$comment=="string"}function B3n(e){return typeof e=="object"&&!!e&&("$ref"in e||"$error"in e)}class Hqi{constructor(t){this.ignoreProperties=new Set(["$container","$containerProperty","$containerIndex","$document","$cstNode"]),this.langiumDocuments=t.shared.workspace.LangiumDocuments,this.astNodeLocator=t.workspace.AstNodeLocator,this.nameProvider=t.references.NameProvider,this.commentProvider=t.documentation.CommentProvider}serialize(t,r){const a=r??{},s=r==null?void 0:r.replacer,o=(h,f)=>this.replacer(h,f,a),u=s?(h,f)=>s(h,f,o):o;try{return this.currentDocument=h9(t),JSON.stringify(t,u,r==null?void 0:r.space)}finally{this.currentDocument=void 0}}deserialize(t,r){const a=r??{},s=JSON.parse(t);return this.linkNode(s,s,a),s}replacer(t,r,{refText:a,sourceText:s,textRegions:o,comments:u,uriConverter:h}){var f,p,m,b;if(!this.ignoreProperties.has(t))if(eA(r)){const _=r.ref,w=a?r.$refText:void 0;if(_){const S=h9(_);let C="";this.currentDocument&&this.currentDocument!==S&&(h?C=h(S.uri,r):C=S.uri.toString());const A=this.astNodeLocator.getAstNodePath(_);return{$ref:`${C}#${A}`,$refText:w}}else return{$error:(p=(f=r.error)===null||f===void 0?void 0:f.message)!==null&&p!==void 0?p:"Could not resolve reference",$refText:w}}else if(Eb(r)){let _;if(o&&(_=this.addAstNodeRegionWithAssignmentsTo(Object.assign({},r)),(!t||r.$document)&&(_!=null&&_.$textRegion)&&(_.$textRegion.documentURI=(m=this.currentDocument)===null||m===void 0?void 0:m.uri.toString())),s&&!t&&(_??(_=Object.assign({},r)),_.$sourceText=(b=r.$cstNode)===null||b===void 0?void 0:b.text),u){_??(_=Object.assign({},r));const w=this.commentProvider.getComment(r);w&&(_.$comment=w.replace(/\r/g,""))}return _??r}else return r}addAstNodeRegionWithAssignmentsTo(t){const r=a=>({offset:a.offset,end:a.end,length:a.length,range:a.range});if(t.$cstNode){const a=t.$textRegion=r(t.$cstNode),s=a.assignments={};return Object.keys(t).filter(o=>!o.startsWith("$")).forEach(o=>{const u=yDi(t.$cstNode,o).map(r);u.length!==0&&(s[o]=u)}),t}}linkNode(t,r,a,s,o,u){for(const[f,p]of Object.entries(t))if(Array.isArray(p))for(let m=0;m{await this.handleException(()=>t.call(r,a,s,o),"An error occurred during validation",s,a)}}async handleException(t,r,a,s){try{await t()}catch(o){if(Vke(o))throw o;console.error(`${r}:`,o),o instanceof Error&&o.stack&&console.error(o.stack);const u=o instanceof Error?o.message:String(o);a("error",`${r}: ${u}`,{node:s})}}addEntry(t,r){if(t==="AstNode"){this.entries.add("AstNode",r);return}for(const a of this.reflection.getAllSubTypes(t))this.entries.add(a,r)}getChecks(t,r){let a=wm(this.entries.get(t)).concat(this.entries.get("AstNode"));return r&&(a=a.filter(s=>r.includes(s.category))),a.map(s=>s.check)}registerBeforeDocument(t,r=this){this.entriesBefore.push(this.wrapPreparationException(t,"An error occurred during set-up of the validation",r))}registerAfterDocument(t,r=this){this.entriesAfter.push(this.wrapPreparationException(t,"An error occurred during tear-down of the validation",r))}wrapPreparationException(t,r,a){return async(s,o,u,h)=>{await this.handleException(()=>t.call(a,s,o,u,h),r,o,s)}}get checksBefore(){return this.entriesBefore}get checksAfter(){return this.entriesAfter}}class jqi{constructor(t){this.validationRegistry=t.validation.ValidationRegistry,this.metadata=t.LanguageMetaData}async validateDocument(t,r={},a=Nf.None){const s=t.parseResult,o=[];if(await Ow(a),(!r.categories||r.categories.includes("built-in"))&&(this.processLexingErrors(s,o,r),r.stopAfterLexingErrors&&o.some(u=>{var h;return((h=u.data)===null||h===void 0?void 0:h.code)===F3.LexingError})||(this.processParsingErrors(s,o,r),r.stopAfterParsingErrors&&o.some(u=>{var h;return((h=u.data)===null||h===void 0?void 0:h.code)===F3.ParsingError}))||(this.processLinkingErrors(t,o,r),r.stopAfterLinkingErrors&&o.some(u=>{var h;return((h=u.data)===null||h===void 0?void 0:h.code)===F3.LinkingError}))))return o;try{o.push(...await this.validateAst(s.value,r,a))}catch(u){if(Vke(u))throw u;console.error("An error occurred during validation:",u)}return await Ow(a),o}processLexingErrors(t,r,a){var s,o,u;const h=[...t.lexerErrors,...(o=(s=t.lexerReport)===null||s===void 0?void 0:s.diagnostics)!==null&&o!==void 0?o:[]];for(const f of h){const p=(u=f.severity)!==null&&u!==void 0?u:"error",m={severity:Bit(p),range:{start:{line:f.line-1,character:f.column-1},end:{line:f.line-1,character:f.column+f.length-1}},message:f.message,data:Kqi(p),source:this.getSource()};r.push(m)}}processParsingErrors(t,r,a){for(const s of t.parserErrors){let o;if(isNaN(s.token.startOffset)){if("previousToken"in s){const u=s.previousToken;if(isNaN(u.startOffset)){const h={line:0,character:0};o={start:h,end:h}}else{const h={line:u.endLine-1,character:u.endColumn};o={start:h,end:h}}}}else o=kct(s.token);if(o){const u={severity:Bit("error"),range:o,message:s.message,data:Cae(F3.ParsingError),source:this.getSource()};r.push(u)}}}processLinkingErrors(t,r,a){for(const s of t.references){const o=s.error;if(o){const u={node:o.container,property:o.property,index:o.index,data:{code:F3.LinkingError,containerType:o.container.$type,property:o.property,refText:o.reference.$refText}};r.push(this.toDiagnostic("error",o.message,u))}}}async validateAst(t,r,a=Nf.None){const s=[],o=(u,h,f)=>{s.push(this.toDiagnostic(u,h,f))};return await this.validateAstBefore(t,r,o,a),await this.validateAstNodes(t,r,o,a),await this.validateAstAfter(t,r,o,a),s}async validateAstBefore(t,r,a,s=Nf.None){var o;const u=this.validationRegistry.checksBefore;for(const h of u)await Ow(s),await h(t,a,(o=r.categories)!==null&&o!==void 0?o:[],s)}async validateAstNodes(t,r,a,s=Nf.None){await Promise.all(aY(t).map(async o=>{await Ow(s);const u=this.validationRegistry.getChecks(o.$type,r.categories);for(const h of u)await h(o,a,s)}))}async validateAstAfter(t,r,a,s=Nf.None){var o;const u=this.validationRegistry.checksAfter;for(const h of u)await Ow(s),await h(t,a,(o=r.categories)!==null&&o!==void 0?o:[],s)}toDiagnostic(t,r,a){return{message:r,range:Wqi(a),severity:Bit(t),code:a.code,codeDescription:a.codeDescription,tags:a.tags,relatedInformation:a.relatedInformation,data:a.data,source:this.getSource()}}getSource(){return this.metadata.languageId}}function Wqi(e){if(e.range)return e.range;let t;return typeof e.property=="string"?t=NYn(e.node.$cstNode,e.property,e.index):typeof e.keyword=="string"&&(t=vDi(e.node.$cstNode,e.keyword,e.index)),t??(t=e.node.$cstNode),t?t.range:{start:{line:0,character:0},end:{line:0,character:0}}}function Bit(e){switch(e){case"error":return 1;case"warning":return 2;case"info":return 3;case"hint":return 4;default:throw new Error("Invalid diagnostic severity: "+e)}}function Kqi(e){switch(e){case"error":return Cae(F3.LexingError);case"warning":return Cae(F3.LexingWarning);case"info":return Cae(F3.LexingInfo);case"hint":return Cae(F3.LexingHint);default:throw new Error("Invalid diagnostic severity: "+e)}}var F3;(function(e){e.LexingError="lexing-error",e.LexingWarning="lexing-warning",e.LexingInfo="lexing-info",e.LexingHint="lexing-hint",e.ParsingError="parsing-error",e.LinkingError="linking-error"})(F3||(F3={}));class Xqi{constructor(t){this.astNodeLocator=t.workspace.AstNodeLocator,this.nameProvider=t.references.NameProvider}createDescription(t,r,a){const s=a??h9(t);r??(r=this.nameProvider.getName(t));const o=this.astNodeLocator.getAstNodePath(t);if(!r)throw new Error(`Node at path ${o} has no name.`);let u;const h=()=>{var f;return u??(u=aTe((f=this.nameProvider.getNameNode(t))!==null&&f!==void 0?f:t.$cstNode))};return{node:t,name:r,get nameSegment(){return h()},selectionSegment:aTe(t.$cstNode),type:t.$type,documentUri:s.uri,path:o}}}class Qqi{constructor(t){this.nodeLocator=t.workspace.AstNodeLocator}async createDescriptions(t,r=Nf.None){const a=[],s=t.parseResult.value;for(const o of aY(s))await Ow(r),CYn(o).filter(u=>!Oxe(u)).forEach(u=>{const h=this.createDescription(u);h&&a.push(h)});return a}createDescription(t){const r=t.reference.$nodeDescription,a=t.reference.$refNode;if(!r||!a)return;const s=h9(t.container).uri;return{sourceUri:s,sourcePath:this.nodeLocator.getAstNodePath(t.container),targetUri:r.documentUri,targetPath:r.path,segment:aTe(a),local:m9.equals(r.documentUri,s)}}}class Zqi{constructor(){this.segmentSeparator="/",this.indexSeparator="@"}getAstNodePath(t){if(t.$container){const r=this.getAstNodePath(t.$container),a=this.getPathSegment(t);return r+this.segmentSeparator+a}return""}getPathSegment({$containerProperty:t,$containerIndex:r}){if(!t)throw new Error("Missing '$containerProperty' in AST node.");return r!==void 0?t+this.indexSeparator+r:t}getAstNode(t,r){return r.split(this.segmentSeparator).reduce((s,o)=>{if(!s||o.length===0)return s;const u=o.indexOf(this.indexSeparator);if(u>0){const h=o.substring(0,u),f=parseInt(o.substring(u+1)),p=s[h];return p==null?void 0:p[f]}return s[o]},t)}}class Jqi{constructor(t){this._ready=new Imt,this.settings={},this.workspaceConfig=!1,this.onConfigurationSectionUpdateEmitter=new gWn,this.serviceRegistry=t.ServiceRegistry}get ready(){return this._ready.promise}initialize(t){var r,a;this.workspaceConfig=(a=(r=t.capabilities.workspace)===null||r===void 0?void 0:r.configuration)!==null&&a!==void 0?a:!1}async initialized(t){if(this.workspaceConfig){if(t.register){const r=this.serviceRegistry.all;t.register({section:r.map(a=>this.toSectionName(a.LanguageMetaData.languageId))})}if(t.fetchConfiguration){const r=this.serviceRegistry.all.map(s=>({section:this.toSectionName(s.LanguageMetaData.languageId)})),a=await t.fetchConfiguration(r);r.forEach((s,o)=>{this.updateSectionConfiguration(s.section,a[o])})}}this._ready.resolve()}updateConfiguration(t){t.settings&&Object.keys(t.settings).forEach(r=>{const a=t.settings[r];this.updateSectionConfiguration(r,a),this.onConfigurationSectionUpdateEmitter.fire({section:r,configuration:a})})}updateSectionConfiguration(t,r){this.settings[t]=r}async getConfiguration(t,r){await this.ready;const a=this.toSectionName(t);if(this.settings[a])return this.settings[a][r]}toSectionName(t){return`${t}`}get onConfigurationSectionUpdate(){return this.onConfigurationSectionUpdateEmitter.event}}var kse;(function(e){function t(r){return{dispose:async()=>await r()}}e.create=t})(kse||(kse={}));class eHi{constructor(t){this.updateBuildOptions={validation:{categories:["built-in","fast"]}},this.updateListeners=[],this.buildPhaseListeners=new ATe,this.documentPhaseListeners=new ATe,this.buildState=new Map,this.documentBuildWaiters=new Map,this.currentState=Vd.Changed,this.langiumDocuments=t.workspace.LangiumDocuments,this.langiumDocumentFactory=t.workspace.LangiumDocumentFactory,this.textDocuments=t.workspace.TextDocuments,this.indexManager=t.workspace.IndexManager,this.serviceRegistry=t.ServiceRegistry}async build(t,r={},a=Nf.None){var s,o;for(const u of t){const h=u.uri.toString();if(u.state===Vd.Validated){if(typeof r.validation=="boolean"&&r.validation)u.state=Vd.IndexedReferences,u.diagnostics=void 0,this.buildState.delete(h);else if(typeof r.validation=="object"){const f=this.buildState.get(h),p=(s=f==null?void 0:f.result)===null||s===void 0?void 0:s.validationChecks;if(p){const b=((o=r.validation.categories)!==null&&o!==void 0?o:kTe.all).filter(_=>!p.includes(_));b.length>0&&(this.buildState.set(h,{completed:!1,options:{validation:Object.assign(Object.assign({},r.validation),{categories:b})},result:f.result}),u.state=Vd.IndexedReferences)}}}else this.buildState.delete(h)}this.currentState=Vd.Changed,await this.emitUpdate(t.map(u=>u.uri),[]),await this.buildDocuments(t,r,a)}async update(t,r,a=Nf.None){this.currentState=Vd.Changed;for(const u of r)this.langiumDocuments.deleteDocument(u),this.buildState.delete(u.toString()),this.indexManager.remove(u);for(const u of t){if(!this.langiumDocuments.invalidateDocument(u)){const f=this.langiumDocumentFactory.fromModel({$type:"INVALID"},u);f.state=Vd.Changed,this.langiumDocuments.addDocument(f)}this.buildState.delete(u.toString())}const s=wm(t).concat(r).map(u=>u.toString()).toSet();this.langiumDocuments.all.filter(u=>!s.has(u.uri.toString())&&this.shouldRelink(u,s)).forEach(u=>{this.serviceRegistry.getServices(u.uri).references.Linker.unlink(u),u.state=Math.min(u.state,Vd.ComputedScopes),u.diagnostics=void 0}),await this.emitUpdate(t,r),await Ow(a);const o=this.sortDocuments(this.langiumDocuments.all.filter(u=>{var h;return u.statea(t,r)))}sortDocuments(t){let r=0,a=t.length-1;for(;r=0&&!this.hasTextDocument(t[a]);)a--;ra.error!==void 0)?!0:this.indexManager.isAffected(t,r)}onUpdate(t){return this.updateListeners.push(t),kse.create(()=>{const r=this.updateListeners.indexOf(t);r>=0&&this.updateListeners.splice(r,1)})}async buildDocuments(t,r,a){this.prepareBuild(t,r),await this.runCancelable(t,Vd.Parsed,a,o=>this.langiumDocumentFactory.update(o,a)),await this.runCancelable(t,Vd.IndexedContent,a,o=>this.indexManager.updateContent(o,a)),await this.runCancelable(t,Vd.ComputedScopes,a,async o=>{const u=this.serviceRegistry.getServices(o.uri).references.ScopeComputation;o.precomputedScopes=await u.computeLocalScopes(o,a)}),await this.runCancelable(t,Vd.Linked,a,o=>this.serviceRegistry.getServices(o.uri).references.Linker.link(o,a)),await this.runCancelable(t,Vd.IndexedReferences,a,o=>this.indexManager.updateReferences(o,a));const s=t.filter(o=>this.shouldValidate(o));await this.runCancelable(s,Vd.Validated,a,o=>this.validate(o,a));for(const o of t){const u=this.buildState.get(o.uri.toString());u&&(u.completed=!0)}}prepareBuild(t,r){for(const a of t){const s=a.uri.toString(),o=this.buildState.get(s);(!o||o.completed)&&this.buildState.set(s,{completed:!1,options:r,result:o==null?void 0:o.result})}}async runCancelable(t,r,a,s){const o=t.filter(h=>h.stateh.state===r);await this.notifyBuildPhase(u,r,a),this.currentState=r}onBuildPhase(t,r){return this.buildPhaseListeners.add(t,r),kse.create(()=>{this.buildPhaseListeners.delete(t,r)})}onDocumentPhase(t,r){return this.documentPhaseListeners.add(t,r),kse.create(()=>{this.documentPhaseListeners.delete(t,r)})}waitUntil(t,r,a){let s;if(r&&"path"in r?s=r:a=r,a??(a=Nf.None),s){const o=this.langiumDocuments.getDocument(s);if(o&&o.state>t)return Promise.resolve(s)}return this.currentState>=t?Promise.resolve(void 0):a.isCancellationRequested?Promise.reject(CTe):new Promise((o,u)=>{const h=this.onBuildPhase(t,()=>{if(h.dispose(),f.dispose(),s){const p=this.langiumDocuments.getDocument(s);o(p==null?void 0:p.uri)}else o(void 0)}),f=a.onCancellationRequested(()=>{h.dispose(),f.dispose(),u(CTe)})})}async notifyDocumentPhase(t,r,a){const o=this.documentPhaseListeners.get(r).slice();for(const u of o)try{await u(t,a)}catch(h){if(!Vke(h))throw h}}async notifyBuildPhase(t,r,a){if(t.length===0)return;const o=this.buildPhaseListeners.get(r).slice();for(const u of o)await Ow(a),await u(t,a)}shouldValidate(t){return!!this.getBuildOptions(t).validation}async validate(t,r){var a,s;const o=this.serviceRegistry.getServices(t.uri).validation.DocumentValidator,u=this.getBuildOptions(t).validation,h=typeof u=="object"?u:void 0,f=await o.validateDocument(t,h,r);t.diagnostics?t.diagnostics.push(...f):t.diagnostics=f;const p=this.buildState.get(t.uri.toString());if(p){(a=p.result)!==null&&a!==void 0||(p.result={});const m=(s=h==null?void 0:h.categories)!==null&&s!==void 0?s:kTe.all;p.result.validationChecks?p.result.validationChecks.push(...m):p.result.validationChecks=[...m]}}getBuildOptions(t){var r,a;return(a=(r=this.buildState.get(t.uri.toString()))===null||r===void 0?void 0:r.options)!==null&&a!==void 0?a:{}}}class tHi{constructor(t){this.symbolIndex=new Map,this.symbolByTypeIndex=new Uqi,this.referenceIndex=new Map,this.documents=t.workspace.LangiumDocuments,this.serviceRegistry=t.ServiceRegistry,this.astReflection=t.AstReflection}findAllReferences(t,r){const a=h9(t).uri,s=[];return this.referenceIndex.forEach(o=>{o.forEach(u=>{m9.equals(u.targetUri,a)&&u.targetPath===r&&s.push(u)})}),wm(s)}allElements(t,r){let a=wm(this.symbolIndex.keys());return r&&(a=a.filter(s=>!r||r.has(s))),a.map(s=>this.getFileDescriptions(s,t)).flat()}getFileDescriptions(t,r){var a;return r?this.symbolByTypeIndex.get(t,r,()=>{var o;return((o=this.symbolIndex.get(t))!==null&&o!==void 0?o:[]).filter(h=>this.astReflection.isSubtype(h.type,r))}):(a=this.symbolIndex.get(t))!==null&&a!==void 0?a:[]}remove(t){const r=t.toString();this.symbolIndex.delete(r),this.symbolByTypeIndex.clear(r),this.referenceIndex.delete(r)}async updateContent(t,r=Nf.None){const s=await this.serviceRegistry.getServices(t.uri).references.ScopeComputation.computeExports(t,r),o=t.uri.toString();this.symbolIndex.set(o,s),this.symbolByTypeIndex.clear(o)}async updateReferences(t,r=Nf.None){const s=await this.serviceRegistry.getServices(t.uri).workspace.ReferenceDescriptionProvider.createDescriptions(t,r);this.referenceIndex.set(t.uri.toString(),s)}isAffected(t,r){const a=this.referenceIndex.get(t.uri.toString());return a?a.some(s=>!s.local&&r.has(s.targetUri.toString())):!1}}class nHi{constructor(t){this.initialBuildOptions={},this._ready=new Imt,this.serviceRegistry=t.ServiceRegistry,this.langiumDocuments=t.workspace.LangiumDocuments,this.documentBuilder=t.workspace.DocumentBuilder,this.fileSystemProvider=t.workspace.FileSystemProvider,this.mutex=t.workspace.WorkspaceLock}get ready(){return this._ready.promise}get workspaceFolders(){return this.folders}initialize(t){var r;this.folders=(r=t.workspaceFolders)!==null&&r!==void 0?r:void 0}initialized(t){return this.mutex.write(r=>{var a;return this.initializeWorkspace((a=this.folders)!==null&&a!==void 0?a:[],r)})}async initializeWorkspace(t,r=Nf.None){const a=await this.performStartup(t);await Ow(r),await this.documentBuilder.build(a,this.initialBuildOptions,r)}async performStartup(t){const r=this.serviceRegistry.all.flatMap(o=>o.LanguageMetaData.fileExtensions),a=[],s=o=>{a.push(o),this.langiumDocuments.hasDocument(o.uri)||this.langiumDocuments.addDocument(o)};return await this.loadAdditionalDocuments(t,s),await Promise.all(t.map(o=>[o,this.getRootFolder(o)]).map(async o=>this.traverseFolder(...o,r,s))),this._ready.resolve(),a}loadAdditionalDocuments(t,r){return Promise.resolve()}getRootFolder(t){return s$.parse(t.uri)}async traverseFolder(t,r,a,s){const o=await this.fileSystemProvider.readDirectory(r);await Promise.all(o.map(async u=>{if(this.includeEntry(t,u,a)){if(u.isDirectory)await this.traverseFolder(t,u.uri,a,s);else if(u.isFile){const h=await this.langiumDocuments.getOrCreateDocument(u.uri);s(h)}}}))}includeEntry(t,r,a){const s=m9.basename(r.uri);if(s.startsWith("."))return!1;if(r.isDirectory)return s!=="node_modules"&&s!=="out";if(r.isFile){const o=m9.extname(r.uri);return a.includes(o)}return!1}}class rHi{buildUnexpectedCharactersMessage(t,r,a,s,o){return Fct.buildUnexpectedCharactersMessage(t,r,a,s,o)}buildUnableToPopLexerModeMessage(t){return Fct.buildUnableToPopLexerModeMessage(t)}}const iHi={mode:"full"};class aHi{constructor(t){this.errorMessageProvider=t.parser.LexerErrorMessageProvider,this.tokenBuilder=t.parser.TokenBuilder;const r=this.tokenBuilder.buildTokens(t.Grammar,{caseInsensitive:t.LanguageMetaData.caseInsensitive});this.tokenTypes=this.toTokenTypeDictionary(r);const a=F3n(r)?Object.values(r):r,s=t.LanguageMetaData.mode==="production";this.chevrotainLexer=new J2(a,{positionTracking:"full",skipValidations:s,errorMessageProvider:this.errorMessageProvider})}get definition(){return this.tokenTypes}tokenize(t,r=iHi){var a,s,o;const u=this.chevrotainLexer.tokenize(t);return{tokens:u.tokens,errors:u.errors,hidden:(a=u.groups.hidden)!==null&&a!==void 0?a:[],report:(o=(s=this.tokenBuilder).flushLexingReport)===null||o===void 0?void 0:o.call(s,t)}}toTokenTypeDictionary(t){if(F3n(t))return t;const r=_Wn(t)?Object.values(t.modes).flat():t,a={};return r.forEach(s=>a[s.name]=s),a}}function sHi(e){return Array.isArray(e)&&(e.length===0||"name"in e[0])}function _Wn(e){return e&&"modes"in e&&"defaultMode"in e}function F3n(e){return!sHi(e)&&!_Wn(e)}function oHi(e,t,r){let a,s;typeof e=="string"?(s=t,a=r):(s=e.range.start,a=t),s||(s=Pu.create(0,0));const o=wWn(e),u=Nmt(a),h=uHi({lines:o,position:s,options:u});return gHi({index:0,tokens:h,position:s})}function lHi(e,t){const r=Nmt(t),a=wWn(e);if(a.length===0)return!1;const s=a[0],o=a[a.length-1],u=r.start,h=r.end;return!!(u!=null&&u.exec(s))&&!!(h!=null&&h.exec(o))}function wWn(e){let t="";return typeof e=="string"?t=e:t=e.text,t.split(sDi)}const $3n=/\s*(@([\p{L}][\p{L}\p{N}]*)?)/uy,cHi=/\{(@[\p{L}][\p{L}\p{N}]*)(\s*)([^\r\n}]+)?\}/gu;function uHi(e){var t,r,a;const s=[];let o=e.position.line,u=e.position.character;for(let h=0;h=m.length){if(s.length>0){const w=Pu.create(o,u);s.push({type:"break",content:"",range:Bc.create(w,w)})}}else{$3n.lastIndex=b;const w=$3n.exec(m);if(w){const S=w[0],C=w[1],A=Pu.create(o,u+b),k=Pu.create(o,u+b+S.length);s.push({type:"tag",content:C,range:Bc.create(A,k)}),b+=S.length,b=fut(m,b)}if(b0&&s[s.length-1].type==="break"?s.slice(0,-1):s}function hHi(e,t,r,a){const s=[];if(e.length===0){const o=Pu.create(r,a),u=Pu.create(r,a+t.length);s.push({type:"text",content:t,range:Bc.create(o,u)})}else{let o=0;for(const h of e){const f=h.index,p=t.substring(o,f);p.length>0&&s.push({type:"text",content:t.substring(o,f),range:Bc.create(Pu.create(r,o+a),Pu.create(r,f+a))});let m=p.length+1;const b=h[1];if(s.push({type:"inline-tag",content:b,range:Bc.create(Pu.create(r,o+m+a),Pu.create(r,o+m+b.length+a))}),m+=b.length,h.length===4){m+=h[2].length;const _=h[3];s.push({type:"text",content:_,range:Bc.create(Pu.create(r,o+m+a),Pu.create(r,o+m+_.length+a))})}else s.push({type:"text",content:"",range:Bc.create(Pu.create(r,o+m+a),Pu.create(r,o+m+a))});o=f+h[0].length}const u=t.substring(o);u.length>0&&s.push({type:"text",content:u,range:Bc.create(Pu.create(r,o+a),Pu.create(r,o+a+u.length))})}return s}const dHi=/\S/,fHi=/\s*$/;function fut(e,t){const r=e.substring(t).match(dHi);return r?t+r.index:e.length}function pHi(e){const t=e.match(fHi);if(t&&typeof t.index=="number")return t.index}function gHi(e){var t,r,a,s;const o=Pu.create(e.position.line,e.position.character);if(e.tokens.length===0)return new U3n([],Bc.create(o,o));const u=[];for(;e.indexr.name===t)}getTags(t){return this.getAllTags().filter(r=>r.name===t)}getAllTags(){return this.elements.filter(t=>"name"in t)}toString(){let t="";for(const r of this.elements)if(t.length===0)t=r.toString();else{const a=r.toString();t+=z3n(t)+a}return t.trim()}toMarkdown(t){let r="";for(const a of this.elements)if(r.length===0)r=a.toMarkdown(t);else{const s=a.toMarkdown(t);r+=z3n(r)+s}return r.trim()}}class $it{constructor(t,r,a,s){this.name=t,this.content=r,this.inline=a,this.range=s}toString(){let t=`@${this.name}`;const r=this.content.toString();return this.content.inlines.length===1?t=`${t} ${r}`:this.content.inlines.length>1&&(t=`${t} +${r}`),this.inline?`{${t}}`:t}toMarkdown(t){var r,a;return(a=(r=t==null?void 0:t.renderTag)===null||r===void 0?void 0:r.call(t,this))!==null&&a!==void 0?a:this.toMarkdownDefault(t)}toMarkdownDefault(t){const r=this.content.toMarkdown(t);if(this.inline){const o=vHi(this.name,r,t??{});if(typeof o=="string")return o}let a="";(t==null?void 0:t.tag)==="italic"||(t==null?void 0:t.tag)===void 0?a="*":(t==null?void 0:t.tag)==="bold"?a="**":(t==null?void 0:t.tag)==="bold-italic"&&(a="***");let s=`${a}@${this.name}${a}`;return this.content.inlines.length===1?s=`${s} — ${r}`:this.content.inlines.length>1&&(s=`${s} +${r}`),this.inline?`{${s}}`:s}}function vHi(e,t,r){var a,s;if(e==="linkplain"||e==="linkcode"||e==="link"){const o=t.indexOf(" ");let u=t;if(o>0){const f=fut(t,o);u=t.substring(f),t=t.substring(0,o)}return(e==="linkcode"||e==="link"&&r.link==="code")&&(u=`\`${u}\``),(s=(a=r.renderLink)===null||a===void 0?void 0:a.call(r,t,u))!==null&&s!==void 0?s:_Hi(t,u)}}function _Hi(e,t){try{return s$.parse(e,!0),`[${t}](${e})`}catch{return e}}class put{constructor(t,r){this.inlines=t,this.range=r}toString(){let t="";for(let r=0;ra.range.start.line&&(t+=` +`)}return t}toMarkdown(t){let r="";for(let a=0;as.range.start.line&&(r+=` +`)}return r}}class TWn{constructor(t,r){this.text=t,this.range=r}toString(){return this.text}toMarkdown(){return this.text}}function z3n(e){return e.endsWith(` +`)?` +`:` + +`}class wHi{constructor(t){this.indexManager=t.shared.workspace.IndexManager,this.commentProvider=t.documentation.CommentProvider}getDocumentation(t){const r=this.commentProvider.getComment(t);if(r&&lHi(r))return oHi(r).toMarkdown({renderLink:(s,o)=>this.documentationLinkRenderer(t,s,o),renderTag:s=>this.documentationTagRenderer(t,s)})}documentationLinkRenderer(t,r,a){var s;const o=(s=this.findNameInPrecomputedScopes(t,r))!==null&&s!==void 0?s:this.findNameInGlobalScope(t,r);if(o&&o.nameSegment){const u=o.nameSegment.range.start.line+1,h=o.nameSegment.range.start.character+1,f=o.documentUri.with({fragment:`L${u},${h}`});return`[${a}](${f.toString()})`}else return}documentationTagRenderer(t,r){}findNameInPrecomputedScopes(t,r){const s=h9(t).precomputedScopes;if(!s)return;let o=t;do{const h=s.get(o).find(f=>f.name===r);if(h)return h;o=o.$container}while(o)}findNameInGlobalScope(t,r){return this.indexManager.allElements().find(s=>s.name===r)}}class EHi{constructor(t){this.grammarConfig=()=>t.parser.GrammarConfig}getComment(t){var r;return qqi(t)?t.$comment:(r=PLi(t.$cstNode,this.grammarConfig().multilineCommentRules))===null||r===void 0?void 0:r.text}}class xHi{constructor(t){this.syncParser=t.parser.LangiumParser}parse(t,r){return Promise.resolve(this.syncParser.parse(t))}}class SHi{constructor(){this.previousTokenSource=new Rmt,this.writeQueue=[],this.readQueue=[],this.done=!0}write(t){this.cancelWrite();const r=Rqi();return this.previousTokenSource=r,this.enqueue(this.writeQueue,t,r.token)}read(t){return this.enqueue(this.readQueue,t)}enqueue(t,r,a=Nf.None){const s=new Imt,o={action:r,deferred:s,cancellationToken:a};return t.push(o),this.performNextOperation(),s.promise}async performNextOperation(){if(!this.done)return;const t=[];if(this.writeQueue.length>0)t.push(this.writeQueue.shift());else if(this.readQueue.length>0)t.push(...this.readQueue.splice(0,this.readQueue.length));else return;this.done=!1,await Promise.all(t.map(async({action:r,deferred:a,cancellationToken:s})=>{try{const o=await Promise.resolve().then(()=>r(s));a.resolve(o)}catch(o){Vke(o)?a.resolve(void 0):a.reject(o)}})),this.done=!0,this.performNextOperation()}cancelWrite(){this.previousTokenSource.cancel()}}class THi{constructor(t){this.grammarElementIdMap=new M3n,this.tokenTypeIdMap=new M3n,this.grammar=t.Grammar,this.lexer=t.parser.Lexer,this.linker=t.references.Linker}dehydrate(t){return{lexerErrors:t.lexerErrors,lexerReport:t.lexerReport?this.dehydrateLexerReport(t.lexerReport):void 0,parserErrors:t.parserErrors.map(r=>Object.assign(Object.assign({},r),{message:r.message})),value:this.dehydrateAstNode(t.value,this.createDehyrationContext(t.value))}}dehydrateLexerReport(t){return t}createDehyrationContext(t){const r=new Map,a=new Map;for(const s of aY(t))r.set(s,{});if(t.$cstNode)for(const s of Act(t.$cstNode))a.set(s,{});return{astNodes:r,cstNodes:a}}dehydrateAstNode(t,r){const a=r.astNodes.get(t);a.$type=t.$type,a.$containerIndex=t.$containerIndex,a.$containerProperty=t.$containerProperty,t.$cstNode!==void 0&&(a.$cstNode=this.dehydrateCstNode(t.$cstNode,r));for(const[s,o]of Object.entries(t))if(!s.startsWith("$"))if(Array.isArray(o)){const u=[];a[s]=u;for(const h of o)Eb(h)?u.push(this.dehydrateAstNode(h,r)):eA(h)?u.push(this.dehydrateReference(h,r)):u.push(h)}else Eb(o)?a[s]=this.dehydrateAstNode(o,r):eA(o)?a[s]=this.dehydrateReference(o,r):o!==void 0&&(a[s]=o);return a}dehydrateReference(t,r){const a={};return a.$refText=t.$refText,t.$refNode&&(a.$refNode=r.cstNodes.get(t.$refNode)),a}dehydrateCstNode(t,r){const a=r.cstNodes.get(t);return yYn(t)?a.fullText=t.fullText:a.grammarSource=this.getGrammarElementId(t.grammarSource),a.hidden=t.hidden,a.astNode=r.astNodes.get(t.astNode),Zoe(t)?a.content=t.content.map(s=>this.dehydrateCstNode(s,r)):bYn(t)&&(a.tokenType=t.tokenType.name,a.offset=t.offset,a.length=t.length,a.startLine=t.range.start.line,a.startColumn=t.range.start.character,a.endLine=t.range.end.line,a.endColumn=t.range.end.character),a}hydrate(t){const r=t.value,a=this.createHydrationContext(r);return"$cstNode"in r&&this.hydrateCstNode(r.$cstNode,a),{lexerErrors:t.lexerErrors,lexerReport:t.lexerReport,parserErrors:t.parserErrors,value:this.hydrateAstNode(r,a)}}createHydrationContext(t){const r=new Map,a=new Map;for(const o of aY(t))r.set(o,{});let s;if(t.$cstNode)for(const o of Act(t.$cstNode)){let u;"fullText"in o?(u=new rWn(o.fullText),s=u):"content"in o?u=new Amt:"tokenType"in o&&(u=this.hydrateCstLeafNode(o)),u&&(a.set(o,u),u.root=s)}return{astNodes:r,cstNodes:a}}hydrateAstNode(t,r){const a=r.astNodes.get(t);a.$type=t.$type,a.$containerIndex=t.$containerIndex,a.$containerProperty=t.$containerProperty,t.$cstNode&&(a.$cstNode=r.cstNodes.get(t.$cstNode));for(const[s,o]of Object.entries(t))if(!s.startsWith("$"))if(Array.isArray(o)){const u=[];a[s]=u;for(const h of o)Eb(h)?u.push(this.setParent(this.hydrateAstNode(h,r),a)):eA(h)?u.push(this.hydrateReference(h,a,s,r)):u.push(h)}else Eb(o)?a[s]=this.setParent(this.hydrateAstNode(o,r),a):eA(o)?a[s]=this.hydrateReference(o,a,s,r):o!==void 0&&(a[s]=o);return a}setParent(t,r){return t.$container=r,t}hydrateReference(t,r,a,s){return this.linker.buildReference(r,a,s.cstNodes.get(t.$refNode),t.$refText)}hydrateCstNode(t,r,a=0){const s=r.cstNodes.get(t);if(typeof t.grammarSource=="number"&&(s.grammarSource=this.getGrammarElement(t.grammarSource)),s.astNode=r.astNodes.get(t.astNode),Zoe(s))for(const o of t.content){const u=this.hydrateCstNode(o,r,a++);s.content.push(u)}return s}hydrateCstLeafNode(t){const r=this.getTokenType(t.tokenType),a=t.offset,s=t.length,o=t.startLine,u=t.startColumn,h=t.endLine,f=t.endColumn,p=t.hidden;return new aut(a,s,{start:{line:o,character:u},end:{line:h,character:f}},r,p)}getTokenType(t){return this.lexer.definition[t]}getGrammarElementId(t){if(t)return this.grammarElementIdMap.size===0&&this.createGrammarElementIdMap(),this.grammarElementIdMap.get(t)}getGrammarElement(t){return this.grammarElementIdMap.size===0&&this.createGrammarElementIdMap(),this.grammarElementIdMap.getKey(t)}createGrammarElementIdMap(){let t=0;for(const r of aY(this.grammar))FLi(r)&&this.grammarElementIdMap.set(r,t++)}}function eL(e){return{documentation:{CommentProvider:t=>new EHi(t),DocumentationProvider:t=>new wHi(t)},parser:{AsyncParser:t=>new xHi(t),GrammarConfig:t=>RDi(t),LangiumParser:t=>pqi(t),CompletionParser:t=>fqi(t),ValueConverter:()=>new dWn,TokenBuilder:()=>new hWn,Lexer:t=>new aHi(t),ParserErrorMessageProvider:()=>new sWn,LexerErrorMessageProvider:()=>new rHi},workspace:{AstNodeLocator:()=>new Zqi,AstNodeDescriptionProvider:t=>new Xqi(t),ReferenceDescriptionProvider:t=>new Qqi(t)},references:{Linker:t=>new Lqi(t),NameProvider:()=>new Mqi,ScopeProvider:t=>new Gqi(t),ScopeComputation:t=>new Bqi(t),References:t=>new Pqi(t)},serializer:{Hydrator:t=>new THi(t),JsonSerializer:t=>new Hqi(t)},validation:{DocumentValidator:t=>new jqi(t),ValidationRegistry:t=>new Yqi(t)},shared:()=>e.shared}}function tL(e){return{ServiceRegistry:t=>new Vqi(t),workspace:{LangiumDocuments:t=>new Oqi(t),LangiumDocumentFactory:t=>new Nqi(t),DocumentBuilder:t=>new eHi(t),IndexManager:t=>new tHi(t),WorkspaceManager:t=>new nHi(t),FileSystemProvider:t=>e.fileSystemProvider(t),WorkspaceLock:()=>new SHi,ConfigurationProvider:t=>new Jqi(t)}}}var G3n;(function(e){e.merge=(t,r)=>RTe(RTe({},t),r)})(G3n||(G3n={}));function Ib(e,t,r,a,s,o,u,h,f){const p=[e,t,r,a,s,o,u,h,f].reduce(RTe,{});return CWn(p)}const CHi=Symbol("isProxy");function CWn(e,t){const r=new Proxy({},{deleteProperty:()=>!1,set:()=>{throw new Error("Cannot set property on injected service container")},get:(a,s)=>s===CHi?!0:H3n(a,s,e,t||r),getOwnPropertyDescriptor:(a,s)=>(H3n(a,s,e,t||r),Object.getOwnPropertyDescriptor(a,s)),has:(a,s)=>s in e,ownKeys:()=>[...Object.getOwnPropertyNames(e)]});return r}const q3n=Symbol();function H3n(e,t,r,a){if(t in e){if(e[t]instanceof Error)throw new Error("Construction failure. Please make sure that your dependencies are constructable.",{cause:e[t]});if(e[t]===q3n)throw new Error('Cycle detected. Please make "'+String(t)+'" lazy. Visit https://langium.org/docs/reference/configuration-services/#resolving-cyclic-dependencies');return e[t]}else if(t in r){const s=r[t];e[t]=q3n;try{e[t]=typeof s=="function"?s(a):CWn(s,a)}catch(o){throw e[t]=o instanceof Error?o:void 0,o}return e[t]}else return}function RTe(e,t){if(t){for(const[r,a]of Object.entries(t))if(a!==void 0){const s=e[r];s!==null&&a!==null&&typeof s=="object"&&typeof a=="object"?e[r]=RTe(s,a):e[r]=a}}return e}class AHi{readFile(){throw new Error("No file system is available.")}async readDirectory(){return[]}}const nL={fileSystemProvider:()=>new AHi},kHi={Grammar:()=>{},LanguageMetaData:()=>({caseInsensitive:!1,fileExtensions:[".langium"],languageId:"langium"})},RHi={AstReflection:()=>new TYn};function IHi(){const e=Ib(tL(nL),RHi),t=Ib(eL({shared:e}),kHi);return e.ServiceRegistry.register(t),t}function j$(e){var t;const r=IHi(),a=r.serializer.JsonSerializer.deserialize(e);return r.shared.workspace.LangiumDocumentFactory.fromModel(a,s$.parse(`memory://${(t=a.name)!==null&&t!==void 0?t:"grammar"}.langium`)),a}var NHi=Object.defineProperty,ra=(e,t)=>NHi(e,"name",{value:t,configurable:!0}),V3n="Statement",zxe="Architecture";function OHi(e){return vT.isInstance(e,zxe)}ra(OHi,"isArchitecture");var nEe="Axis",Aae="Branch";function LHi(e){return vT.isInstance(e,Aae)}ra(LHi,"isBranch");var rEe="Checkout",iEe="CherryPicking",Uit="ClassDefStatement",kae="Commit";function DHi(e){return vT.isInstance(e,kae)}ra(DHi,"isCommit");var zit="Curve",Git="Edge",qit="Entry",Rae="GitGraph";function MHi(e){return vT.isInstance(e,Rae)}ra(MHi,"isGitGraph");var Hit="Group",Gxe="Info";function PHi(e){return vT.isInstance(e,Gxe)}ra(PHi,"isInfo");var aEe="Item",Vit="Junction",Iae="Merge";function BHi(e){return vT.isInstance(e,Iae)}ra(BHi,"isMerge");var Yit="Option",qxe="Packet";function FHi(e){return vT.isInstance(e,qxe)}ra(FHi,"isPacket");var Hxe="PacketBlock";function $Hi(e){return vT.isInstance(e,Hxe)}ra($Hi,"isPacketBlock");var Vxe="Pie";function UHi(e){return vT.isInstance(e,Vxe)}ra(UHi,"isPie");var Yxe="PieSection";function zHi(e){return vT.isInstance(e,Yxe)}ra(zHi,"isPieSection");var jit="Radar",Wit="Service",jxe="Treemap";function GHi(e){return vT.isInstance(e,jxe)}ra(GHi,"isTreemap");var Kit="TreemapRow",sEe="Direction",oEe="Leaf",lEe="Section",AY,AWn=(AY=class extends mYn{getAllTypes(){return[zxe,nEe,Aae,rEe,iEe,Uit,kae,zit,sEe,Git,qit,Rae,Hit,Gxe,aEe,Vit,oEe,Iae,Yit,qxe,Hxe,Vxe,Yxe,jit,lEe,Wit,V3n,jxe,Kit]}computeIsSubtype(t,r){switch(t){case Aae:case rEe:case iEe:case kae:case Iae:return this.isSubtype(V3n,r);case sEe:return this.isSubtype(Rae,r);case oEe:case lEe:return this.isSubtype(aEe,r);default:return!1}}getReferenceType(t){const r=`${t.container.$type}:${t.property}`;switch(r){case"Entry:axis":return nEe;default:throw new Error(`${r} is not a valid reference id.`)}}getTypeMetaData(t){switch(t){case zxe:return{name:zxe,properties:[{name:"accDescr"},{name:"accTitle"},{name:"edges",defaultValue:[]},{name:"groups",defaultValue:[]},{name:"junctions",defaultValue:[]},{name:"services",defaultValue:[]},{name:"title"}]};case nEe:return{name:nEe,properties:[{name:"label"},{name:"name"}]};case Aae:return{name:Aae,properties:[{name:"name"},{name:"order"}]};case rEe:return{name:rEe,properties:[{name:"branch"}]};case iEe:return{name:iEe,properties:[{name:"id"},{name:"parent"},{name:"tags",defaultValue:[]}]};case Uit:return{name:Uit,properties:[{name:"className"},{name:"styleText"}]};case kae:return{name:kae,properties:[{name:"id"},{name:"message"},{name:"tags",defaultValue:[]},{name:"type"}]};case zit:return{name:zit,properties:[{name:"entries",defaultValue:[]},{name:"label"},{name:"name"}]};case Git:return{name:Git,properties:[{name:"lhsDir"},{name:"lhsGroup",defaultValue:!1},{name:"lhsId"},{name:"lhsInto",defaultValue:!1},{name:"rhsDir"},{name:"rhsGroup",defaultValue:!1},{name:"rhsId"},{name:"rhsInto",defaultValue:!1},{name:"title"}]};case qit:return{name:qit,properties:[{name:"axis"},{name:"value"}]};case Rae:return{name:Rae,properties:[{name:"accDescr"},{name:"accTitle"},{name:"statements",defaultValue:[]},{name:"title"}]};case Hit:return{name:Hit,properties:[{name:"icon"},{name:"id"},{name:"in"},{name:"title"}]};case Gxe:return{name:Gxe,properties:[{name:"accDescr"},{name:"accTitle"},{name:"title"}]};case aEe:return{name:aEe,properties:[{name:"classSelector"},{name:"name"}]};case Vit:return{name:Vit,properties:[{name:"id"},{name:"in"}]};case Iae:return{name:Iae,properties:[{name:"branch"},{name:"id"},{name:"tags",defaultValue:[]},{name:"type"}]};case Yit:return{name:Yit,properties:[{name:"name"},{name:"value",defaultValue:!1}]};case qxe:return{name:qxe,properties:[{name:"accDescr"},{name:"accTitle"},{name:"blocks",defaultValue:[]},{name:"title"}]};case Hxe:return{name:Hxe,properties:[{name:"bits"},{name:"end"},{name:"label"},{name:"start"}]};case Vxe:return{name:Vxe,properties:[{name:"accDescr"},{name:"accTitle"},{name:"sections",defaultValue:[]},{name:"showData",defaultValue:!1},{name:"title"}]};case Yxe:return{name:Yxe,properties:[{name:"label"},{name:"value"}]};case jit:return{name:jit,properties:[{name:"accDescr"},{name:"accTitle"},{name:"axes",defaultValue:[]},{name:"curves",defaultValue:[]},{name:"options",defaultValue:[]},{name:"title"}]};case Wit:return{name:Wit,properties:[{name:"icon"},{name:"iconText"},{name:"id"},{name:"in"},{name:"title"}]};case jxe:return{name:jxe,properties:[{name:"accDescr"},{name:"accTitle"},{name:"title"},{name:"TreemapRows",defaultValue:[]}]};case Kit:return{name:Kit,properties:[{name:"indent"},{name:"item"}]};case sEe:return{name:sEe,properties:[{name:"accDescr"},{name:"accTitle"},{name:"dir"},{name:"statements",defaultValue:[]},{name:"title"}]};case oEe:return{name:oEe,properties:[{name:"classSelector"},{name:"name"},{name:"value"}]};case lEe:return{name:lEe,properties:[{name:"classSelector"},{name:"name"}]};default:return{name:t,properties:[]}}}},ra(AY,"MermaidAstReflection"),AY),vT=new AWn,Y3n,qHi=ra(()=>Y3n??(Y3n=j$(`{"$type":"Grammar","isDeclared":true,"name":"Info","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"Info","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[],"cardinality":"*"},{"$type":"Keyword","value":"info"},{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[],"cardinality":"*"},{"$type":"Group","elements":[{"$type":"Keyword","value":"showInfo"},{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[],"cardinality":"*"}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[],"cardinality":"?"}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"BOOLEAN","type":{"$type":"ReturnType","name":"boolean"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"true"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"false"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"FLOAT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/[0-9]+\\\\.[0-9]+(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"INT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/0|[1-9][0-9]*(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NUMBER","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@7"}},{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@8"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STRING","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/\\"([^\\"\\\\\\\\]|\\\\\\\\.)*\\"|'([^'\\\\\\\\]|\\\\\\\\.)*'/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ID","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/[\\\\w]([-\\\\w]*\\\\w)?/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false}],"definesHiddenTokens":false,"hiddenTokens":[],"interfaces":[],"types":[],"usedGrammars":[]}`)),"InfoGrammar"),j3n,HHi=ra(()=>j3n??(j3n=j$(`{"$type":"Grammar","isDeclared":true,"name":"Packet","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"Packet","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[],"cardinality":"*"},{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"packet"},{"$type":"Keyword","value":"packet-beta"}]},{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]},{"$type":"Assignment","feature":"blocks","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]}],"cardinality":"*"}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"PacketBlock","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"Assignment","feature":"start","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":"-"},{"$type":"Assignment","feature":"end","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}}],"cardinality":"?"}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"+"},{"$type":"Assignment","feature":"bits","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}}]}]},{"$type":"Keyword","value":":"},{"$type":"Assignment","feature":"label","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@11"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@7"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"BOOLEAN","type":{"$type":"ReturnType","name":"boolean"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"true"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"false"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"FLOAT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/[0-9]+\\\\.[0-9]+(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"INT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/0|[1-9][0-9]*(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NUMBER","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@8"}},{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@9"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STRING","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/\\"([^\\"\\\\\\\\]|\\\\\\\\.)*\\"|'([^'\\\\\\\\]|\\\\\\\\.)*'/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ID","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/[\\\\w]([-\\\\w]*\\\\w)?/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false}],"definesHiddenTokens":false,"hiddenTokens":[],"interfaces":[],"types":[],"usedGrammars":[]}`)),"PacketGrammar"),W3n,VHi=ra(()=>W3n??(W3n=j$(`{"$type":"Grammar","isDeclared":true,"name":"Pie","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"Pie","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@16"},"arguments":[],"cardinality":"*"},{"$type":"Keyword","value":"pie"},{"$type":"Assignment","feature":"showData","operator":"?=","terminal":{"$type":"Keyword","value":"showData"},"cardinality":"?"},{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]},{"$type":"Assignment","feature":"sections","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@16"},"arguments":[]}],"cardinality":"*"}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"PieSection","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"label","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@14"},"arguments":[]}},{"$type":"Keyword","value":":"},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"FLOAT_PIE","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/-?[0-9]+\\\\.[0-9]+(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"INT_PIE","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/-?(0|[1-9][0-9]*)(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NUMBER_PIE","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@2"}},{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@3"}}]},"fragment":false,"hidden":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@16"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"BOOLEAN","type":{"$type":"ReturnType","name":"boolean"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"true"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"false"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"FLOAT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/[0-9]+\\\\.[0-9]+(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"INT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/0|[1-9][0-9]*(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NUMBER","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@11"}},{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@12"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STRING","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/\\"([^\\"\\\\\\\\]|\\\\\\\\.)*\\"|'([^'\\\\\\\\]|\\\\\\\\.)*'/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ID","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/[\\\\w]([-\\\\w]*\\\\w)?/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false}],"definesHiddenTokens":false,"hiddenTokens":[],"interfaces":[],"types":[],"usedGrammars":[]}`)),"PieGrammar"),K3n,YHi=ra(()=>K3n??(K3n=j$(`{"$type":"Grammar","isDeclared":true,"name":"Architecture","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"Architecture","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@23"},"arguments":[],"cardinality":"*"},{"$type":"Keyword","value":"architecture-beta"},{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@23"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}],"cardinality":"*"}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"Statement","definition":{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"groups","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}},{"$type":"Assignment","feature":"services","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]}},{"$type":"Assignment","feature":"junctions","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@7"},"arguments":[]}},{"$type":"Assignment","feature":"edges","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"LeftPort","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":":"},{"$type":"Assignment","feature":"lhsDir","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"RightPort","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"rhsDir","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}},{"$type":"Keyword","value":":"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"Arrow","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]},{"$type":"Assignment","feature":"lhsInto","operator":"?=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@11"},"arguments":[]},"cardinality":"?"},{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"--"},{"$type":"Group","elements":[{"$type":"Keyword","value":"-"},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@29"},"arguments":[]}},{"$type":"Keyword","value":"-"}]}]},{"$type":"Assignment","feature":"rhsInto","operator":"?=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@11"},"arguments":[]},"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Group","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"group"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}},{"$type":"Assignment","feature":"icon","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@28"},"arguments":[]},"cardinality":"?"},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@29"},"arguments":[]},"cardinality":"?"},{"$type":"Group","elements":[{"$type":"Keyword","value":"in"},{"$type":"Assignment","feature":"in","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Service","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"service"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}},{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"iconText","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@21"},"arguments":[]}},{"$type":"Assignment","feature":"icon","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@28"},"arguments":[]}}],"cardinality":"?"},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@29"},"arguments":[]},"cardinality":"?"},{"$type":"Group","elements":[{"$type":"Keyword","value":"in"},{"$type":"Assignment","feature":"in","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Junction","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"junction"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":"in"},{"$type":"Assignment","feature":"in","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Edge","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"lhsId","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}},{"$type":"Assignment","feature":"lhsGroup","operator":"?=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]},"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]},{"$type":"Assignment","feature":"rhsId","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}},{"$type":"Assignment","feature":"rhsGroup","operator":"?=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]},"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"ARROW_DIRECTION","definition":{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"L"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"R"}}]},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"T"}}]},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"B"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ARROW_GROUP","definition":{"$type":"RegexToken","regex":"/\\\\{group\\\\}/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ARROW_INTO","definition":{"$type":"RegexToken","regex":"/<|>/"},"fragment":false,"hidden":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@23"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@15"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@16"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"BOOLEAN","type":{"$type":"ReturnType","name":"boolean"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"true"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"false"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"FLOAT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/[0-9]+\\\\.[0-9]+(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"INT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/0|[1-9][0-9]*(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NUMBER","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@18"}},{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@19"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STRING","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/\\"([^\\"\\\\\\\\]|\\\\\\\\.)*\\"|'([^'\\\\\\\\]|\\\\\\\\.)*'/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ID","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/[\\\\w]([-\\\\w]*\\\\w)?/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false},{"$type":"TerminalRule","name":"ARCH_ICON","definition":{"$type":"RegexToken","regex":"/\\\\([\\\\w-:]+\\\\)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ARCH_TITLE","definition":{"$type":"RegexToken","regex":"/\\\\[[\\\\w ]+\\\\]/"},"fragment":false,"hidden":false}],"definesHiddenTokens":false,"hiddenTokens":[],"interfaces":[],"types":[],"usedGrammars":[]}`)),"ArchitectureGrammar"),X3n,jHi=ra(()=>X3n??(X3n=j$(`{"$type":"Grammar","isDeclared":true,"name":"GitGraph","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"GitGraph","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[],"cardinality":"*"},{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"gitGraph"},{"$type":"Group","elements":[{"$type":"Keyword","value":"gitGraph"},{"$type":"Keyword","value":":"}]},{"$type":"Keyword","value":"gitGraph:"},{"$type":"Group","elements":[{"$type":"Keyword","value":"gitGraph"},{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]},{"$type":"Keyword","value":":"}]}]},{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]},{"$type":"Assignment","feature":"statements","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[]}}],"cardinality":"*"}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Statement","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@7"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Direction","definition":{"$type":"Assignment","feature":"dir","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"LR"},{"$type":"Keyword","value":"TB"},{"$type":"Keyword","value":"BT"}]}},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Commit","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"commit"},{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"Keyword","value":"id:"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"msg:","cardinality":"?"},{"$type":"Assignment","feature":"message","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"tag:"},{"$type":"Assignment","feature":"tags","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"type:"},{"$type":"Assignment","feature":"type","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"NORMAL"},{"$type":"Keyword","value":"REVERSE"},{"$type":"Keyword","value":"HIGHLIGHT"}]}}]}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Branch","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"branch"},{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@24"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}]}},{"$type":"Group","elements":[{"$type":"Keyword","value":"order:"},{"$type":"Assignment","feature":"order","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@15"},"arguments":[]}}],"cardinality":"?"},{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Merge","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"merge"},{"$type":"Assignment","feature":"branch","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@24"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}]}},{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"Keyword","value":"id:"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"tag:"},{"$type":"Assignment","feature":"tags","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"type:"},{"$type":"Assignment","feature":"type","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"NORMAL"},{"$type":"Keyword","value":"REVERSE"},{"$type":"Keyword","value":"HIGHLIGHT"}]}}]}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Checkout","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"checkout"},{"$type":"Keyword","value":"switch"}]},{"$type":"Assignment","feature":"branch","operator":"=","terminal":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@24"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"CherryPicking","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"cherry-pick"},{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"Keyword","value":"id:"},{"$type":"Assignment","feature":"id","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"tag:"},{"$type":"Assignment","feature":"tags","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"parent:"},{"$type":"Assignment","feature":"parent","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@11"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"BOOLEAN","type":{"$type":"ReturnType","name":"boolean"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"true"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"false"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"FLOAT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/[0-9]+\\\\.[0-9]+(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"INT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/0|[1-9][0-9]*(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NUMBER","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@14"}},{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@15"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STRING","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/\\"([^\\"\\\\\\\\]|\\\\\\\\.)*\\"|'([^'\\\\\\\\]|\\\\\\\\.)*'/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ID","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/[\\\\w]([-\\\\w]*\\\\w)?/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false},{"$type":"TerminalRule","name":"REFERENCE","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/\\\\w([-\\\\./\\\\w]*[-\\\\w])?/"},"fragment":false,"hidden":false}],"definesHiddenTokens":false,"hiddenTokens":[],"interfaces":[],"types":[],"usedGrammars":[]}`)),"GitGraphGrammar"),Q3n,WHi=ra(()=>Q3n??(Q3n=j$(`{"$type":"Grammar","isDeclared":true,"name":"Radar","imports":[],"rules":[{"$type":"ParserRule","entry":true,"name":"Radar","definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[],"cardinality":"*"},{"$type":"Alternatives","elements":[{"$type":"Keyword","value":"radar-beta"},{"$type":"Keyword","value":"radar-beta:"},{"$type":"Group","elements":[{"$type":"Keyword","value":"radar-beta"},{"$type":"Keyword","value":":"}]}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[],"cardinality":"*"},{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]},{"$type":"Group","elements":[{"$type":"Keyword","value":"axis"},{"$type":"Assignment","feature":"axes","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"Assignment","feature":"axes","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}}],"cardinality":"*"}]},{"$type":"Group","elements":[{"$type":"Keyword","value":"curve"},{"$type":"Assignment","feature":"curves","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"Assignment","feature":"curves","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]}}],"cardinality":"*"}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"options","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@7"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"Assignment","feature":"options","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@7"},"arguments":[]}}],"cardinality":"*"}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}],"cardinality":"*"}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"Label","definition":{"$type":"Group","elements":[{"$type":"Keyword","value":"["},{"$type":"Assignment","feature":"label","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[]}},{"$type":"Keyword","value":"]"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Axis","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[],"cardinality":"?"}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Curve","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@1"},"arguments":[],"cardinality":"?"},{"$type":"Keyword","value":"{"},{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]},{"$type":"Keyword","value":"}"}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"Entries","definition":{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[],"cardinality":"*"},{"$type":"Assignment","feature":"entries","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[],"cardinality":"*"},{"$type":"Assignment","feature":"entries","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]}}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[],"cardinality":"*"}]},{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[],"cardinality":"*"},{"$type":"Assignment","feature":"entries","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"Keyword","value":","},{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[],"cardinality":"*"},{"$type":"Assignment","feature":"entries","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@5"},"arguments":[]}}],"cardinality":"*"},{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[],"cardinality":"*"}]}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"DetailedEntry","returnType":{"$ref":"#/interfaces@0"},"definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"axis","operator":"=","terminal":{"$type":"CrossReference","type":{"$ref":"#/rules@2"},"terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]},"deprecatedSyntax":false}},{"$type":"Keyword","value":":","cardinality":"?"},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"NumberEntry","returnType":{"$ref":"#/interfaces@0"},"definition":{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Option","definition":{"$type":"Alternatives","elements":[{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"showLegend"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@11"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"ticks"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"max"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"min"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}}]},{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"Keyword","value":"graticule"}},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]}}]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"GRATICULE","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"circle"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"polygon"}}]},"fragment":false,"hidden":false},{"$type":"ParserRule","fragment":true,"name":"EOL","dataType":"string","definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[],"cardinality":"+"},{"$type":"EndOfFile"}]},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Group","elements":[{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@12"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@13"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@14"},"arguments":[]}}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"BOOLEAN","type":{"$type":"ReturnType","name":"boolean"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"true"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"false"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"FLOAT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/[0-9]+\\\\.[0-9]+(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"INT","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"RegexToken","regex":"/0|[1-9][0-9]*(?!\\\\.)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NUMBER","type":{"$type":"ReturnType","name":"number"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@15"}},{"$type":"TerminalRuleCall","rule":{"$ref":"#/rules@16"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STRING","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/\\"([^\\"\\\\\\\\]|\\\\\\\\.)*\\"|'([^'\\\\\\\\]|\\\\\\\\.)*'/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ID","type":{"$type":"ReturnType","name":"string"},"definition":{"$type":"RegexToken","regex":"/[\\\\w]([-\\\\w]*\\\\w)?/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NEWLINE","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WHITESPACE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"YAML","definition":{"$type":"RegexToken","regex":"/---[\\\\t ]*\\\\r?\\\\n(?:[\\\\S\\\\s]*?\\\\r?\\\\n)?---(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"DIRECTIVE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%{[\\\\S\\\\s]*?}%%(?:\\\\r?\\\\n|(?!\\\\S))/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"SINGLE_LINE_COMMENT","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*%%[^\\\\n\\\\r]*/"},"fragment":false}],"interfaces":[{"$type":"Interface","name":"Entry","attributes":[{"$type":"TypeAttribute","name":"axis","isOptional":true,"type":{"$type":"ReferenceType","referenceType":{"$type":"SimpleType","typeRef":{"$ref":"#/rules@2"}}}},{"$type":"TypeAttribute","name":"value","type":{"$type":"SimpleType","primitiveType":"number"},"isOptional":false}],"superTypes":[]}],"definesHiddenTokens":false,"hiddenTokens":[],"types":[],"usedGrammars":[]}`)),"RadarGrammar"),Z3n,KHi=ra(()=>Z3n??(Z3n=j$(`{"$type":"Grammar","isDeclared":true,"name":"Treemap","rules":[{"$type":"ParserRule","fragment":true,"name":"TitleAndAccessibilities","definition":{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"accDescr","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@2"},"arguments":[]}},{"$type":"Assignment","feature":"accTitle","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@3"},"arguments":[]}},{"$type":"Assignment","feature":"title","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@4"},"arguments":[]}}],"cardinality":"+"},"definesHiddenTokens":false,"entry":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"BOOLEAN","type":{"$type":"ReturnType","name":"boolean"},"definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"true"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"false"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_DESCR","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accDescr(?:[\\\\t ]*:([^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)|\\\\s*{([^}]*)})/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ACC_TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*accTitle[\\\\t ]*:(?:[^\\\\n\\\\r]*?(?=%%)|[^\\\\n\\\\r]*)/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"TITLE","definition":{"$type":"RegexToken","regex":"/[\\\\t ]*title(?:[\\\\t ][^\\\\n\\\\r]*?(?=%%)|[\\\\t ][^\\\\n\\\\r]*|)/"},"fragment":false,"hidden":false},{"$type":"ParserRule","entry":true,"name":"Treemap","returnType":{"$ref":"#/interfaces@4"},"definition":{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@6"},"arguments":[]},{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@0"},"arguments":[]},{"$type":"Assignment","feature":"TreemapRows","operator":"+=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@14"},"arguments":[]}}],"cardinality":"*"}]},"definesHiddenTokens":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"TREEMAP_KEYWORD","definition":{"$type":"TerminalAlternatives","elements":[{"$type":"CharacterRange","left":{"$type":"Keyword","value":"treemap-beta"}},{"$type":"CharacterRange","left":{"$type":"Keyword","value":"treemap"}}]},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"CLASS_DEF","definition":{"$type":"RegexToken","regex":"/classDef\\\\s+([a-zA-Z_][a-zA-Z0-9_]+)(?:\\\\s+([^;\\\\r\\\\n]*))?(?:;)?/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"STYLE_SEPARATOR","definition":{"$type":"CharacterRange","left":{"$type":"Keyword","value":":::"}},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"SEPARATOR","definition":{"$type":"CharacterRange","left":{"$type":"Keyword","value":":"}},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"COMMA","definition":{"$type":"CharacterRange","left":{"$type":"Keyword","value":","}},"fragment":false,"hidden":false},{"$type":"TerminalRule","hidden":true,"name":"WS","definition":{"$type":"RegexToken","regex":"/[ \\\\t]+/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"ML_COMMENT","definition":{"$type":"RegexToken","regex":"/\\\\%\\\\%[^\\\\n]*/"},"fragment":false},{"$type":"TerminalRule","hidden":true,"name":"NL","definition":{"$type":"RegexToken","regex":"/\\\\r?\\\\n/"},"fragment":false},{"$type":"ParserRule","name":"TreemapRow","definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"indent","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[]},"cardinality":"?"},{"$type":"Alternatives","elements":[{"$type":"Assignment","feature":"item","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@16"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@15"},"arguments":[]}]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"ClassDef","dataType":"string","definition":{"$type":"RuleCall","rule":{"$ref":"#/rules@7"},"arguments":[]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Item","returnType":{"$ref":"#/interfaces@0"},"definition":{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@18"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@17"},"arguments":[]}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Section","returnType":{"$ref":"#/interfaces@1"},"definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@23"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]},{"$type":"Assignment","feature":"classSelector","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}],"cardinality":"?"}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"ParserRule","name":"Leaf","returnType":{"$ref":"#/interfaces@2"},"definition":{"$type":"Group","elements":[{"$type":"Assignment","feature":"name","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@23"},"arguments":[]}},{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[],"cardinality":"?"},{"$type":"Alternatives","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@9"},"arguments":[]},{"$type":"RuleCall","rule":{"$ref":"#/rules@10"},"arguments":[]}]},{"$type":"RuleCall","rule":{"$ref":"#/rules@19"},"arguments":[],"cardinality":"?"},{"$type":"Assignment","feature":"value","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@22"},"arguments":[]}},{"$type":"Group","elements":[{"$type":"RuleCall","rule":{"$ref":"#/rules@8"},"arguments":[]},{"$type":"Assignment","feature":"classSelector","operator":"=","terminal":{"$type":"RuleCall","rule":{"$ref":"#/rules@20"},"arguments":[]}}],"cardinality":"?"}]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"INDENTATION","definition":{"$type":"RegexToken","regex":"/[ \\\\t]{1,}/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"ID2","definition":{"$type":"RegexToken","regex":"/[a-zA-Z_][a-zA-Z0-9_]*/"},"fragment":false,"hidden":false},{"$type":"TerminalRule","name":"NUMBER2","definition":{"$type":"RegexToken","regex":"/[0-9_\\\\.\\\\,]+/"},"fragment":false,"hidden":false},{"$type":"ParserRule","name":"MyNumber","dataType":"number","definition":{"$type":"RuleCall","rule":{"$ref":"#/rules@21"},"arguments":[]},"definesHiddenTokens":false,"entry":false,"fragment":false,"hiddenTokens":[],"parameters":[],"wildcard":false},{"$type":"TerminalRule","name":"STRING2","definition":{"$type":"RegexToken","regex":"/\\"[^\\"]*\\"|'[^']*'/"},"fragment":false,"hidden":false}],"interfaces":[{"$type":"Interface","name":"Item","attributes":[{"$type":"TypeAttribute","name":"name","type":{"$type":"SimpleType","primitiveType":"string"},"isOptional":false},{"$type":"TypeAttribute","name":"classSelector","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}}],"superTypes":[]},{"$type":"Interface","name":"Section","superTypes":[{"$ref":"#/interfaces@0"}],"attributes":[]},{"$type":"Interface","name":"Leaf","superTypes":[{"$ref":"#/interfaces@0"}],"attributes":[{"$type":"TypeAttribute","name":"value","type":{"$type":"SimpleType","primitiveType":"number"},"isOptional":false}]},{"$type":"Interface","name":"ClassDefStatement","attributes":[{"$type":"TypeAttribute","name":"className","type":{"$type":"SimpleType","primitiveType":"string"},"isOptional":false},{"$type":"TypeAttribute","name":"styleText","type":{"$type":"SimpleType","primitiveType":"string"},"isOptional":false}],"superTypes":[]},{"$type":"Interface","name":"Treemap","attributes":[{"$type":"TypeAttribute","name":"TreemapRows","type":{"$type":"ArrayType","elementType":{"$type":"SimpleType","typeRef":{"$ref":"#/rules@14"}}},"isOptional":false},{"$type":"TypeAttribute","name":"title","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"accTitle","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}},{"$type":"TypeAttribute","name":"accDescr","isOptional":true,"type":{"$type":"SimpleType","primitiveType":"string"}}],"superTypes":[]}],"definesHiddenTokens":false,"hiddenTokens":[],"imports":[],"types":[],"usedGrammars":[],"$comment":"/**\\n * Treemap grammar for Langium\\n * Converted from mindmap grammar\\n *\\n * The ML_COMMENT and NL hidden terminals handle whitespace, comments, and newlines\\n * before the treemap keyword, allowing for empty lines and comments before the\\n * treemap declaration.\\n */"}`)),"TreemapGrammar"),XHi={languageId:"info",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},QHi={languageId:"packet",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},ZHi={languageId:"pie",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},JHi={languageId:"architecture",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},eVi={languageId:"gitGraph",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},tVi={languageId:"radar",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},nVi={languageId:"treemap",fileExtensions:[".mmd",".mermaid"],caseInsensitive:!1,mode:"production"},W$={AstReflection:ra(()=>new AWn,"AstReflection")},rVi={Grammar:ra(()=>qHi(),"Grammar"),LanguageMetaData:ra(()=>XHi,"LanguageMetaData"),parser:{}},iVi={Grammar:ra(()=>HHi(),"Grammar"),LanguageMetaData:ra(()=>QHi,"LanguageMetaData"),parser:{}},aVi={Grammar:ra(()=>VHi(),"Grammar"),LanguageMetaData:ra(()=>ZHi,"LanguageMetaData"),parser:{}},sVi={Grammar:ra(()=>YHi(),"Grammar"),LanguageMetaData:ra(()=>JHi,"LanguageMetaData"),parser:{}},oVi={Grammar:ra(()=>jHi(),"Grammar"),LanguageMetaData:ra(()=>eVi,"LanguageMetaData"),parser:{}},lVi={Grammar:ra(()=>WHi(),"Grammar"),LanguageMetaData:ra(()=>tVi,"LanguageMetaData"),parser:{}},cVi={Grammar:ra(()=>KHi(),"Grammar"),LanguageMetaData:ra(()=>nVi,"LanguageMetaData"),parser:{}},uVi=/accDescr(?:[\t ]*:([^\n\r]*)|\s*{([^}]*)})/,hVi=/accTitle[\t ]*:([^\n\r]*)/,dVi=/title([\t ][^\n\r]*|)/,fVi={ACC_DESCR:uVi,ACC_TITLE:hVi,TITLE:dVi},kY,Yke=(kY=class extends dWn{runConverter(t,r,a){let s=this.runCommonConverter(t,r,a);return s===void 0&&(s=this.runCustomConverter(t,r,a)),s===void 0?super.runConverter(t,r,a):s}runCommonConverter(t,r,a){const s=fVi[t.name];if(s===void 0)return;const o=s.exec(r);if(o!==null){if(o[1]!==void 0)return o[1].trim().replace(/[\t ]{2,}/gm," ");if(o[2]!==void 0)return o[2].replace(/^\s*/gm,"").replace(/\s+$/gm,"").replace(/[\t ]{2,}/gm," ").replace(/[\n\r]{2,}/gm,` +`)}}},ra(kY,"AbstractMermaidValueConverter"),kY),RY,jke=(RY=class extends Yke{runCustomConverter(t,r,a){}},ra(RY,"CommonValueConverter"),RY),IY,rL=(IY=class extends hWn{constructor(t){super(),this.keywords=new Set(t)}buildKeywordTokens(t,r,a){const s=super.buildKeywordTokens(t,r,a);return s.forEach(o=>{this.keywords.has(o.name)&&o.PATTERN!==void 0&&(o.PATTERN=new RegExp(o.PATTERN.toString()+"(?:(?=%%)|(?!\\S))"))}),s}},ra(IY,"AbstractMermaidTokenBuilder"),IY),NY;NY=class extends rL{},ra(NY,"CommonTokenBuilder");var OY,pVi=(OY=class extends rL{constructor(){super(["gitGraph"])}},ra(OY,"GitGraphTokenBuilder"),OY),kWn={parser:{TokenBuilder:ra(()=>new pVi,"TokenBuilder"),ValueConverter:ra(()=>new jke,"ValueConverter")}};function RWn(e=nL){const t=Ib(tL(e),W$),r=Ib(eL({shared:t}),oVi,kWn);return t.ServiceRegistry.register(r),{shared:t,GitGraph:r}}ra(RWn,"createGitGraphServices");var LY,gVi=(LY=class extends rL{constructor(){super(["info","showInfo"])}},ra(LY,"InfoTokenBuilder"),LY),IWn={parser:{TokenBuilder:ra(()=>new gVi,"TokenBuilder"),ValueConverter:ra(()=>new jke,"ValueConverter")}};function NWn(e=nL){const t=Ib(tL(e),W$),r=Ib(eL({shared:t}),rVi,IWn);return t.ServiceRegistry.register(r),{shared:t,Info:r}}ra(NWn,"createInfoServices");var DY,mVi=(DY=class extends rL{constructor(){super(["packet"])}},ra(DY,"PacketTokenBuilder"),DY),OWn={parser:{TokenBuilder:ra(()=>new mVi,"TokenBuilder"),ValueConverter:ra(()=>new jke,"ValueConverter")}};function LWn(e=nL){const t=Ib(tL(e),W$),r=Ib(eL({shared:t}),iVi,OWn);return t.ServiceRegistry.register(r),{shared:t,Packet:r}}ra(LWn,"createPacketServices");var MY,bVi=(MY=class extends rL{constructor(){super(["pie","showData"])}},ra(MY,"PieTokenBuilder"),MY),PY,yVi=(PY=class extends Yke{runCustomConverter(t,r,a){if(t.name==="PIE_SECTION_LABEL")return r.replace(/"/g,"").trim()}},ra(PY,"PieValueConverter"),PY),DWn={parser:{TokenBuilder:ra(()=>new bVi,"TokenBuilder"),ValueConverter:ra(()=>new yVi,"ValueConverter")}};function MWn(e=nL){const t=Ib(tL(e),W$),r=Ib(eL({shared:t}),aVi,DWn);return t.ServiceRegistry.register(r),{shared:t,Pie:r}}ra(MWn,"createPieServices");var BY,vVi=(BY=class extends rL{constructor(){super(["architecture"])}},ra(BY,"ArchitectureTokenBuilder"),BY),FY,_Vi=(FY=class extends Yke{runCustomConverter(t,r,a){if(t.name==="ARCH_ICON")return r.replace(/[()]/g,"").trim();if(t.name==="ARCH_TEXT_ICON")return r.replace(/["()]/g,"");if(t.name==="ARCH_TITLE")return r.replace(/[[\]]/g,"").trim()}},ra(FY,"ArchitectureValueConverter"),FY),PWn={parser:{TokenBuilder:ra(()=>new vVi,"TokenBuilder"),ValueConverter:ra(()=>new _Vi,"ValueConverter")}};function BWn(e=nL){const t=Ib(tL(e),W$),r=Ib(eL({shared:t}),sVi,PWn);return t.ServiceRegistry.register(r),{shared:t,Architecture:r}}ra(BWn,"createArchitectureServices");var $Y,wVi=($Y=class extends rL{constructor(){super(["radar-beta"])}},ra($Y,"RadarTokenBuilder"),$Y),FWn={parser:{TokenBuilder:ra(()=>new wVi,"TokenBuilder"),ValueConverter:ra(()=>new jke,"ValueConverter")}};function $Wn(e=nL){const t=Ib(tL(e),W$),r=Ib(eL({shared:t}),lVi,FWn);return t.ServiceRegistry.register(r),{shared:t,Radar:r}}ra($Wn,"createRadarServices");var UY,EVi=(UY=class extends rL{constructor(){super(["treemap"])}},ra(UY,"TreemapTokenBuilder"),UY),xVi=/classDef\s+([A-Z_a-z]\w+)(?:\s+([^\n\r;]*))?;?/,zY,SVi=(zY=class extends Yke{runCustomConverter(t,r,a){if(t.name==="NUMBER2")return parseFloat(r.replace(/,/g,""));if(t.name==="SEPARATOR")return r.substring(1,r.length-1);if(t.name==="STRING2")return r.substring(1,r.length-1);if(t.name==="INDENTATION")return r.length;if(t.name==="ClassDef"){if(typeof r!="string")return r;const s=xVi.exec(r);if(s)return{$type:"ClassDefStatement",className:s[1],styleText:s[2]||void 0}}}},ra(zY,"TreemapValueConverter"),zY);function UWn(e){const t=e.validation.TreemapValidator,r=e.validation.ValidationRegistry;if(r){const a={Treemap:t.checkSingleRoot.bind(t)};r.register(a,t)}}ra(UWn,"registerValidationChecks");var GY,TVi=(GY=class{checkSingleRoot(t,r){let a;for(const s of t.TreemapRows)s.item&&(a===void 0&&s.indent===void 0?a=0:s.indent===void 0?r("error","Multiple root nodes are not allowed in a treemap.",{node:s,property:"item"}):a!==void 0&&a>=parseInt(s.indent,10)&&r("error","Multiple root nodes are not allowed in a treemap.",{node:s,property:"item"}))}},ra(GY,"TreemapValidator"),GY),zWn={parser:{TokenBuilder:ra(()=>new EVi,"TokenBuilder"),ValueConverter:ra(()=>new SVi,"ValueConverter")},validation:{TreemapValidator:ra(()=>new TVi,"TreemapValidator")}};function GWn(e=nL){const t=Ib(tL(e),W$),r=Ib(eL({shared:t}),cVi,zWn);return t.ServiceRegistry.register(r),UWn(r),{shared:t,Treemap:r}}ra(GWn,"createTreemapServices");var c7={},CVi={info:ra(async()=>{const{createInfoServices:e}=await ea(async()=>{const{createInfoServices:r}=await Promise.resolve().then(()=>vca);return{createInfoServices:r}},void 0),t=e().Info.parser.LangiumParser;c7.info=t},"info"),packet:ra(async()=>{const{createPacketServices:e}=await ea(async()=>{const{createPacketServices:r}=await Promise.resolve().then(()=>_ca);return{createPacketServices:r}},void 0),t=e().Packet.parser.LangiumParser;c7.packet=t},"packet"),pie:ra(async()=>{const{createPieServices:e}=await ea(async()=>{const{createPieServices:r}=await Promise.resolve().then(()=>wca);return{createPieServices:r}},void 0),t=e().Pie.parser.LangiumParser;c7.pie=t},"pie"),architecture:ra(async()=>{const{createArchitectureServices:e}=await ea(async()=>{const{createArchitectureServices:r}=await Promise.resolve().then(()=>Eca);return{createArchitectureServices:r}},void 0),t=e().Architecture.parser.LangiumParser;c7.architecture=t},"architecture"),gitGraph:ra(async()=>{const{createGitGraphServices:e}=await ea(async()=>{const{createGitGraphServices:r}=await Promise.resolve().then(()=>xca);return{createGitGraphServices:r}},void 0),t=e().GitGraph.parser.LangiumParser;c7.gitGraph=t},"gitGraph"),radar:ra(async()=>{const{createRadarServices:e}=await ea(async()=>{const{createRadarServices:r}=await Promise.resolve().then(()=>Sca);return{createRadarServices:r}},void 0),t=e().Radar.parser.LangiumParser;c7.radar=t},"radar"),treemap:ra(async()=>{const{createTreemapServices:e}=await ea(async()=>{const{createTreemapServices:r}=await Promise.resolve().then(()=>Tca);return{createTreemapServices:r}},void 0),t=e().Treemap.parser.LangiumParser;c7.treemap=t},"treemap")};async function iL(e,t){const r=CVi[e];if(!r)throw new Error(`Unknown diagram type: ${e}`);c7[e]||await r();const s=c7[e].parse(t);if(s.lexerErrors.length>0||s.parserErrors.length>0)throw new AVi(s);return s.value}ra(iL,"parse");var qY,AVi=(qY=class extends Error{constructor(t){const r=t.lexerErrors.map(s=>s.message).join(` +`),a=t.parserErrors.map(s=>s.message).join(` +`);super(`Parsing failed: ${r} ${a}`),this.result=t}},ra(qY,"MermaidParseError"),qY),th={NORMAL:0,REVERSE:1,HIGHLIGHT:2,MERGE:3,CHERRY_PICK:4},kVi=Cc.gitGraph,K$=X(()=>cv({...kVi,...$c().gitGraph}),"getConfig"),oa=new gYn(()=>{const e=K$(),t=e.mainBranchName,r=e.mainBranchOrder;return{mainBranchName:t,commits:new Map,head:null,branchConfig:new Map([[t,{name:t,order:r}]]),branches:new Map([[t,null]]),currBranch:t,direction:"LR",seq:0,options:{}}});function Wke(){return tBn({length:7})}X(Wke,"getID");function qWn(e,t){const r=Object.create(null);return e.reduce((a,s)=>{const o=t(s);return r[o]||(r[o]=!0,a.push(s)),a},[])}X(qWn,"uniqBy");var RVi=X(function(e){oa.records.direction=e},"setDirection"),IVi=X(function(e){it.debug("options str",e),e=e==null?void 0:e.trim(),e=e||"{}";try{oa.records.options=JSON.parse(e)}catch(t){it.error("error while parsing gitGraph options",t.message)}},"setOptions"),NVi=X(function(){return oa.records.options},"getOptions"),OVi=X(function(e){let t=e.msg,r=e.id;const a=e.type;let s=e.tags;it.info("commit",t,r,a,s),it.debug("Entering commit:",t,r,a,s);const o=K$();r=Ti.sanitizeText(r,o),t=Ti.sanitizeText(t,o),s=s==null?void 0:s.map(h=>Ti.sanitizeText(h,o));const u={id:r||oa.records.seq+"-"+Wke(),message:t,seq:oa.records.seq++,type:a??th.NORMAL,tags:s??[],parents:oa.records.head==null?[]:[oa.records.head.id],branch:oa.records.currBranch};oa.records.head=u,it.info("main branch",o.mainBranchName),oa.records.commits.has(u.id)&&it.warn(`Commit ID ${u.id} already exists`),oa.records.commits.set(u.id,u),oa.records.branches.set(oa.records.currBranch,u.id),it.debug("in pushCommit "+u.id)},"commit"),LVi=X(function(e){let t=e.name;const r=e.order;if(t=Ti.sanitizeText(t,K$()),oa.records.branches.has(t))throw new Error(`Trying to create an existing branch. (Help: Either use a new name if you want create a new branch or try using "checkout ${t}")`);oa.records.branches.set(t,oa.records.head!=null?oa.records.head.id:null),oa.records.branchConfig.set(t,{name:t,order:r}),HWn(t),it.debug("in createBranch")},"branch"),DVi=X(e=>{let t=e.branch,r=e.id;const a=e.type,s=e.tags,o=K$();t=Ti.sanitizeText(t,o),r&&(r=Ti.sanitizeText(r,o));const u=oa.records.branches.get(oa.records.currBranch),h=oa.records.branches.get(t),f=u?oa.records.commits.get(u):void 0,p=h?oa.records.commits.get(h):void 0;if(f&&p&&f.branch===t)throw new Error(`Cannot merge branch '${t}' into itself.`);if(oa.records.currBranch===t){const _=new Error('Incorrect usage of "merge". Cannot merge a branch to itself');throw _.hash={text:`merge ${t}`,token:`merge ${t}`,expected:["branch abc"]},_}if(f===void 0||!f){const _=new Error(`Incorrect usage of "merge". Current branch (${oa.records.currBranch})has no commits`);throw _.hash={text:`merge ${t}`,token:`merge ${t}`,expected:["commit"]},_}if(!oa.records.branches.has(t)){const _=new Error('Incorrect usage of "merge". Branch to be merged ('+t+") does not exist");throw _.hash={text:`merge ${t}`,token:`merge ${t}`,expected:[`branch ${t}`]},_}if(p===void 0||!p){const _=new Error('Incorrect usage of "merge". Branch to be merged ('+t+") has no commits");throw _.hash={text:`merge ${t}`,token:`merge ${t}`,expected:['"commit"']},_}if(f===p){const _=new Error('Incorrect usage of "merge". Both branches have same head');throw _.hash={text:`merge ${t}`,token:`merge ${t}`,expected:["branch abc"]},_}if(r&&oa.records.commits.has(r)){const _=new Error('Incorrect usage of "merge". Commit with id:'+r+" already exists, use different custom id");throw _.hash={text:`merge ${t} ${r} ${a} ${s==null?void 0:s.join(" ")}`,token:`merge ${t} ${r} ${a} ${s==null?void 0:s.join(" ")}`,expected:[`merge ${t} ${r}_UNIQUE ${a} ${s==null?void 0:s.join(" ")}`]},_}const m=h||"",b={id:r||`${oa.records.seq}-${Wke()}`,message:`merged branch ${t} into ${oa.records.currBranch}`,seq:oa.records.seq++,parents:oa.records.head==null?[]:[oa.records.head.id,m],branch:oa.records.currBranch,type:th.MERGE,customType:a,customId:!!r,tags:s??[]};oa.records.head=b,oa.records.commits.set(b.id,b),oa.records.branches.set(oa.records.currBranch,b.id),it.debug(oa.records.branches),it.debug("in mergeBranch")},"merge"),MVi=X(function(e){let t=e.id,r=e.targetId,a=e.tags,s=e.parent;it.debug("Entering cherryPick:",t,r,a);const o=K$();if(t=Ti.sanitizeText(t,o),r=Ti.sanitizeText(r,o),a=a==null?void 0:a.map(f=>Ti.sanitizeText(f,o)),s=Ti.sanitizeText(s,o),!t||!oa.records.commits.has(t)){const f=new Error('Incorrect usage of "cherryPick". Source commit id should exist and provided');throw f.hash={text:`cherryPick ${t} ${r}`,token:`cherryPick ${t} ${r}`,expected:["cherry-pick abc"]},f}const u=oa.records.commits.get(t);if(u===void 0||!u)throw new Error('Incorrect usage of "cherryPick". Source commit id should exist and provided');if(s&&!(Array.isArray(u.parents)&&u.parents.includes(s)))throw new Error("Invalid operation: The specified parent commit is not an immediate parent of the cherry-picked commit.");const h=u.branch;if(u.type===th.MERGE&&!s)throw new Error("Incorrect usage of cherry-pick: If the source commit is a merge commit, an immediate parent commit must be specified.");if(!r||!oa.records.commits.has(r)){if(h===oa.records.currBranch){const b=new Error('Incorrect usage of "cherryPick". Source commit is already on current branch');throw b.hash={text:`cherryPick ${t} ${r}`,token:`cherryPick ${t} ${r}`,expected:["cherry-pick abc"]},b}const f=oa.records.branches.get(oa.records.currBranch);if(f===void 0||!f){const b=new Error(`Incorrect usage of "cherry-pick". Current branch (${oa.records.currBranch})has no commits`);throw b.hash={text:`cherryPick ${t} ${r}`,token:`cherryPick ${t} ${r}`,expected:["cherry-pick abc"]},b}const p=oa.records.commits.get(f);if(p===void 0||!p){const b=new Error(`Incorrect usage of "cherry-pick". Current branch (${oa.records.currBranch})has no commits`);throw b.hash={text:`cherryPick ${t} ${r}`,token:`cherryPick ${t} ${r}`,expected:["cherry-pick abc"]},b}const m={id:oa.records.seq+"-"+Wke(),message:`cherry-picked ${u==null?void 0:u.message} into ${oa.records.currBranch}`,seq:oa.records.seq++,parents:oa.records.head==null?[]:[oa.records.head.id,u.id],branch:oa.records.currBranch,type:th.CHERRY_PICK,tags:a?a.filter(Boolean):[`cherry-pick:${u.id}${u.type===th.MERGE?`|parent:${s}`:""}`]};oa.records.head=m,oa.records.commits.set(m.id,m),oa.records.branches.set(oa.records.currBranch,m.id),it.debug(oa.records.branches),it.debug("in cherryPick")}},"cherryPick"),HWn=X(function(e){if(e=Ti.sanitizeText(e,K$()),oa.records.branches.has(e)){oa.records.currBranch=e;const t=oa.records.branches.get(oa.records.currBranch);t===void 0||!t?oa.records.head=null:oa.records.head=oa.records.commits.get(t)??null}else{const t=new Error(`Trying to checkout branch which is not yet created. (Help try using "branch ${e}")`);throw t.hash={text:`checkout ${e}`,token:`checkout ${e}`,expected:[`branch ${e}`]},t}},"checkout");function gut(e,t,r){const a=e.indexOf(t);a===-1?e.push(r):e.splice(a,1,r)}X(gut,"upsert");function Omt(e){const t=e.reduce((s,o)=>s.seq>o.seq?s:o,e[0]);let r="";e.forEach(function(s){s===t?r+=" *":r+=" |"});const a=[r,t.id,t.seq];for(const s in oa.records.branches)oa.records.branches.get(s)===t.id&&a.push(s);if(it.debug(a.join(" ")),t.parents&&t.parents.length==2&&t.parents[0]&&t.parents[1]){const s=oa.records.commits.get(t.parents[0]);gut(e,t,s),t.parents[1]&&e.push(oa.records.commits.get(t.parents[1]))}else{if(t.parents.length==0)return;if(t.parents[0]){const s=oa.records.commits.get(t.parents[0]);gut(e,t,s)}}e=qWn(e,s=>s.id),Omt(e)}X(Omt,"prettyPrintCommitHistory");var PVi=X(function(){it.debug(oa.records.commits);const e=VWn()[0];Omt([e])},"prettyPrint"),BVi=X(function(){oa.reset(),M1()},"clear"),FVi=X(function(){return[...oa.records.branchConfig.values()].map((t,r)=>t.order!==null&&t.order!==void 0?t:{...t,order:parseFloat(`0.${r}`)}).sort((t,r)=>(t.order??0)-(r.order??0)).map(({name:t})=>({name:t}))},"getBranchesAsObjArray"),$Vi=X(function(){return oa.records.branches},"getBranches"),UVi=X(function(){return oa.records.commits},"getCommits"),VWn=X(function(){const e=[...oa.records.commits.values()];return e.forEach(function(t){it.debug(t.id)}),e.sort((t,r)=>t.seq-r.seq),e},"getCommitsArray"),zVi=X(function(){return oa.records.currBranch},"getCurrentBranch"),GVi=X(function(){return oa.records.direction},"getDirection"),qVi=X(function(){return oa.records.head},"getHead"),YWn={commitType:th,getConfig:K$,setDirection:RVi,setOptions:IVi,getOptions:NVi,commit:OVi,branch:LVi,merge:DVi,cherryPick:MVi,checkout:HWn,prettyPrint:PVi,clear:BVi,getBranchesAsObjArray:FVi,getBranches:$Vi,getCommits:UVi,getCommitsArray:VWn,getCurrentBranch:zVi,getDirection:GVi,getHead:qVi,setAccTitle:N1,getAccTitle:Mp,getAccDescription:Bp,setAccDescription:Pp,setDiagramTitle:Og,getDiagramTitle:P1},HVi=X((e,t)=>{z$(e,t),e.dir&&t.setDirection(e.dir);for(const r of e.statements)VVi(r,t)},"populate"),VVi=X((e,t)=>{const a={Commit:X(s=>t.commit(YVi(s)),"Commit"),Branch:X(s=>t.branch(jVi(s)),"Branch"),Merge:X(s=>t.merge(WVi(s)),"Merge"),Checkout:X(s=>t.checkout(KVi(s)),"Checkout"),CherryPicking:X(s=>t.cherryPick(XVi(s)),"CherryPicking")}[e.$type];a?a(e):it.error(`Unknown statement type: ${e.$type}`)},"parseStatement"),YVi=X(e=>({id:e.id,msg:e.message??"",type:e.type!==void 0?th[e.type]:th.NORMAL,tags:e.tags??void 0}),"parseCommit"),jVi=X(e=>({name:e.name,order:e.order??0}),"parseBranch"),WVi=X(e=>({branch:e.branch,id:e.id??"",type:e.type!==void 0?th[e.type]:void 0,tags:e.tags??void 0}),"parseMerge"),KVi=X(e=>e.branch,"parseCheckout"),XVi=X(e=>{var r;return{id:e.id,targetId:"",tags:((r=e.tags)==null?void 0:r.length)===0?void 0:e.tags,parent:e.parent}},"parseCherryPicking"),QVi={parse:X(async e=>{const t=await iL("gitGraph",e);it.debug(t),HVi(t,YWn)},"parse")},Xit=nn(),A1=Xit==null?void 0:Xit.gitGraph,vO=10,_O=40,IC=4,b7=2,UB=8,G2=new Map,e_=new Map,ITe=30,Nae=new Map,NTe=[],nO=0,Rc="LR",ZVi=X(()=>{G2.clear(),e_.clear(),Nae.clear(),nO=0,NTe=[],Rc="LR"},"clear"),jWn=X(e=>{const t=document.createElementNS("http://www.w3.org/2000/svg","text");return(typeof e=="string"?e.split(/\\n|\n|/gi):e).forEach(a=>{const s=document.createElementNS("http://www.w3.org/2000/svg","tspan");s.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),s.setAttribute("dy","1em"),s.setAttribute("x","0"),s.setAttribute("class","row"),s.textContent=a.trim(),t.appendChild(s)}),t},"drawText"),WWn=X(e=>{let t,r,a;return Rc==="BT"?(r=X((s,o)=>s<=o,"comparisonFunc"),a=1/0):(r=X((s,o)=>s>=o,"comparisonFunc"),a=0),e.forEach(s=>{var u,h;const o=Rc==="TB"||Rc=="BT"?(u=e_.get(s))==null?void 0:u.y:(h=e_.get(s))==null?void 0:h.x;o!==void 0&&r(o,a)&&(t=s,a=o)}),t},"findClosestParent"),JVi=X(e=>{let t="",r=1/0;return e.forEach(a=>{const s=e_.get(a).y;s<=r&&(t=a,r=s)}),t||void 0},"findClosestParentBT"),eYi=X((e,t,r)=>{let a=r,s=r;const o=[];e.forEach(u=>{const h=t.get(u);if(!h)throw new Error(`Commit not found for key ${u}`);h.parents.length?(a=nYi(h),s=Math.max(a,s)):o.push(h),rYi(h,a)}),a=s,o.forEach(u=>{iYi(u,a,r)}),e.forEach(u=>{const h=t.get(u);if(h!=null&&h.parents.length){const f=JVi(h.parents);a=e_.get(f).y-_O,a<=s&&(s=a);const p=G2.get(h.branch).pos,m=a-vO;e_.set(h.id,{x:p,y:m})}})},"setParallelBTPos"),tYi=X(e=>{var a;const t=WWn(e.parents.filter(s=>s!==null));if(!t)throw new Error(`Closest parent not found for commit ${e.id}`);const r=(a=e_.get(t))==null?void 0:a.y;if(r===void 0)throw new Error(`Closest parent position not found for commit ${e.id}`);return r},"findClosestParentPos"),nYi=X(e=>tYi(e)+_O,"calculateCommitPosition"),rYi=X((e,t)=>{const r=G2.get(e.branch);if(!r)throw new Error(`Branch not found for commit ${e.id}`);const a=r.pos,s=t+vO;return e_.set(e.id,{x:a,y:s}),{x:a,y:s}},"setCommitPosition"),iYi=X((e,t,r)=>{const a=G2.get(e.branch);if(!a)throw new Error(`Branch not found for commit ${e.id}`);const s=t+r,o=a.pos;e_.set(e.id,{x:o,y:s})},"setRootPosition"),aYi=X((e,t,r,a,s,o)=>{if(o===th.HIGHLIGHT)e.append("rect").attr("x",r.x-10).attr("y",r.y-10).attr("width",20).attr("height",20).attr("class",`commit ${t.id} commit-highlight${s%UB} ${a}-outer`),e.append("rect").attr("x",r.x-6).attr("y",r.y-6).attr("width",12).attr("height",12).attr("class",`commit ${t.id} commit${s%UB} ${a}-inner`);else if(o===th.CHERRY_PICK)e.append("circle").attr("cx",r.x).attr("cy",r.y).attr("r",10).attr("class",`commit ${t.id} ${a}`),e.append("circle").attr("cx",r.x-3).attr("cy",r.y+2).attr("r",2.75).attr("fill","#fff").attr("class",`commit ${t.id} ${a}`),e.append("circle").attr("cx",r.x+3).attr("cy",r.y+2).attr("r",2.75).attr("fill","#fff").attr("class",`commit ${t.id} ${a}`),e.append("line").attr("x1",r.x+3).attr("y1",r.y+1).attr("x2",r.x).attr("y2",r.y-5).attr("stroke","#fff").attr("class",`commit ${t.id} ${a}`),e.append("line").attr("x1",r.x-3).attr("y1",r.y+1).attr("x2",r.x).attr("y2",r.y-5).attr("stroke","#fff").attr("class",`commit ${t.id} ${a}`);else{const u=e.append("circle");if(u.attr("cx",r.x),u.attr("cy",r.y),u.attr("r",t.type===th.MERGE?9:10),u.attr("class",`commit ${t.id} commit${s%UB}`),o===th.MERGE){const h=e.append("circle");h.attr("cx",r.x),h.attr("cy",r.y),h.attr("r",6),h.attr("class",`commit ${a} ${t.id} commit${s%UB}`)}o===th.REVERSE&&e.append("path").attr("d",`M ${r.x-5},${r.y-5}L${r.x+5},${r.y+5}M${r.x-5},${r.y+5}L${r.x+5},${r.y-5}`).attr("class",`commit ${a} ${t.id} commit${s%UB}`)}},"drawCommitBullet"),sYi=X((e,t,r,a)=>{var s;if(t.type!==th.CHERRY_PICK&&(t.customId&&t.type===th.MERGE||t.type!==th.MERGE)&&(A1!=null&&A1.showCommitLabel)){const o=e.append("g"),u=o.insert("rect").attr("class","commit-label-bkg"),h=o.append("text").attr("x",a).attr("y",r.y+25).attr("class","commit-label").text(t.id),f=(s=h.node())==null?void 0:s.getBBox();if(f&&(u.attr("x",r.posWithOffset-f.width/2-b7).attr("y",r.y+13.5).attr("width",f.width+2*b7).attr("height",f.height+2*b7),Rc==="TB"||Rc==="BT"?(u.attr("x",r.x-(f.width+4*IC+5)).attr("y",r.y-12),h.attr("x",r.x-(f.width+4*IC)).attr("y",r.y+f.height-12)):h.attr("x",r.posWithOffset-f.width/2),A1.rotateCommitLabel))if(Rc==="TB"||Rc==="BT")h.attr("transform","rotate(-45, "+r.x+", "+r.y+")"),u.attr("transform","rotate(-45, "+r.x+", "+r.y+")");else{const p=-7.5-(f.width+10)/25*9.5,m=10+f.width/25*8.5;o.attr("transform","translate("+p+", "+m+") rotate(-45, "+a+", "+r.y+")")}}},"drawCommitLabel"),oYi=X((e,t,r,a)=>{var s;if(t.tags.length>0){let o=0,u=0,h=0;const f=[];for(const p of t.tags.reverse()){const m=e.insert("polygon"),b=e.append("circle"),_=e.append("text").attr("y",r.y-16-o).attr("class","tag-label").text(p),w=(s=_.node())==null?void 0:s.getBBox();if(!w)throw new Error("Tag bbox not found");u=Math.max(u,w.width),h=Math.max(h,w.height),_.attr("x",r.posWithOffset-w.width/2),f.push({tag:_,hole:b,rect:m,yOffset:o}),o+=20}for(const{tag:p,hole:m,rect:b,yOffset:_}of f){const w=h/2,S=r.y-19.2-_;if(b.attr("class","tag-label-bkg").attr("points",` + ${a-u/2-IC/2},${S+b7} + ${a-u/2-IC/2},${S-b7} + ${r.posWithOffset-u/2-IC},${S-w-b7} + ${r.posWithOffset+u/2+IC},${S-w-b7} + ${r.posWithOffset+u/2+IC},${S+w+b7} + ${r.posWithOffset-u/2-IC},${S+w+b7}`),m.attr("cy",S).attr("cx",a-u/2+IC/2).attr("r",1.5).attr("class","tag-hole"),Rc==="TB"||Rc==="BT"){const C=a+_;b.attr("class","tag-label-bkg").attr("points",` + ${r.x},${C+2} + ${r.x},${C-2} + ${r.x+vO},${C-w-2} + ${r.x+vO+u+4},${C-w-2} + ${r.x+vO+u+4},${C+w+2} + ${r.x+vO},${C+w+2}`).attr("transform","translate(12,12) rotate(45, "+r.x+","+a+")"),m.attr("cx",r.x+IC/2).attr("cy",C).attr("transform","translate(12,12) rotate(45, "+r.x+","+a+")"),p.attr("x",r.x+5).attr("y",C+3).attr("transform","translate(14,14) rotate(45, "+r.x+","+a+")")}}}},"drawCommitTags"),lYi=X(e=>{switch(e.customType??e.type){case th.NORMAL:return"commit-normal";case th.REVERSE:return"commit-reverse";case th.HIGHLIGHT:return"commit-highlight";case th.MERGE:return"commit-merge";case th.CHERRY_PICK:return"commit-cherry-pick";default:return"commit-normal"}},"getCommitClassType"),cYi=X((e,t,r,a)=>{const s={x:0,y:0};if(e.parents.length>0){const o=WWn(e.parents);if(o){const u=a.get(o)??s;return t==="TB"?u.y+_O:t==="BT"?(a.get(e.id)??s).y-_O:u.x+_O}}else return t==="TB"?ITe:t==="BT"?(a.get(e.id)??s).y-_O:0;return 0},"calculatePosition"),uYi=X((e,t,r)=>{var u,h;const a=Rc==="BT"&&r?t:t+vO,s=Rc==="TB"||Rc==="BT"?a:(u=G2.get(e.branch))==null?void 0:u.pos,o=Rc==="TB"||Rc==="BT"?(h=G2.get(e.branch))==null?void 0:h.pos:a;if(o===void 0||s===void 0)throw new Error(`Position were undefined for commit ${e.id}`);return{x:o,y:s,posWithOffset:a}},"getCommitPosition"),J3n=X((e,t,r)=>{if(!A1)throw new Error("GitGraph config not found");const a=e.append("g").attr("class","commit-bullets"),s=e.append("g").attr("class","commit-labels");let o=Rc==="TB"||Rc==="BT"?ITe:0;const u=[...t.keys()],h=(A1==null?void 0:A1.parallelCommits)??!1,f=X((m,b)=>{var S,C;const _=(S=t.get(m))==null?void 0:S.seq,w=(C=t.get(b))==null?void 0:C.seq;return _!==void 0&&w!==void 0?_-w:0},"sortKeys");let p=u.sort(f);Rc==="BT"&&(h&&eYi(p,t,o),p=p.reverse()),p.forEach(m=>{var w;const b=t.get(m);if(!b)throw new Error(`Commit not found for key ${m}`);h&&(o=cYi(b,Rc,o,e_));const _=uYi(b,o,h);if(r){const S=lYi(b),C=b.customType??b.type,A=((w=G2.get(b.branch))==null?void 0:w.index)??0;aYi(a,b,_,S,A,C),sYi(s,b,_,o),oYi(s,b,_,o)}Rc==="TB"||Rc==="BT"?e_.set(b.id,{x:_.x,y:_.posWithOffset}):e_.set(b.id,{x:_.posWithOffset,y:_.y}),o=Rc==="BT"&&h?o+_O:o+_O+vO,o>nO&&(nO=o)})},"drawCommits"),hYi=X((e,t,r,a,s)=>{const u=(Rc==="TB"||Rc==="BT"?r.xp.branch===u,"isOnBranchToGetCurve"),f=X(p=>p.seq>e.seq&&p.seqf(p)&&h(p))},"shouldRerouteArrow"),Oae=X((e,t,r=0)=>{const a=e+Math.abs(e-t)/2;if(r>5)return a;if(NTe.every(u=>Math.abs(u-a)>=10))return NTe.push(a),a;const o=Math.abs(e-t);return Oae(e,t-o/5,r+1)},"findLane"),dYi=X((e,t,r,a)=>{var w,S,C,A,k;const s=e_.get(t.id),o=e_.get(r.id);if(s===void 0||o===void 0)throw new Error(`Commit positions not found for commits ${t.id} and ${r.id}`);const u=hYi(t,r,s,o,a);let h="",f="",p=0,m=0,b=(w=G2.get(r.branch))==null?void 0:w.index;r.type===th.MERGE&&t.id!==r.parents[0]&&(b=(S=G2.get(t.branch))==null?void 0:S.index);let _;if(u){h="A 10 10, 0, 0, 0,",f="A 10 10, 0, 0, 1,",p=10,m=10;const I=s.yo.x&&(h="A 20 20, 0, 0, 0,",f="A 20 20, 0, 0, 1,",p=20,m=20,r.type===th.MERGE&&t.id!==r.parents[0]?_=`M ${s.x} ${s.y} L ${s.x} ${o.y-p} ${f} ${s.x-m} ${o.y} L ${o.x} ${o.y}`:_=`M ${s.x} ${s.y} L ${o.x+p} ${s.y} ${h} ${o.x} ${s.y+m} L ${o.x} ${o.y}`),s.x===o.x&&(_=`M ${s.x} ${s.y} L ${o.x} ${o.y}`)):Rc==="BT"?(s.xo.x&&(h="A 20 20, 0, 0, 0,",f="A 20 20, 0, 0, 1,",p=20,m=20,r.type===th.MERGE&&t.id!==r.parents[0]?_=`M ${s.x} ${s.y} L ${s.x} ${o.y+p} ${h} ${s.x-m} ${o.y} L ${o.x} ${o.y}`:_=`M ${s.x} ${s.y} L ${o.x-p} ${s.y} ${h} ${o.x} ${s.y-m} L ${o.x} ${o.y}`),s.x===o.x&&(_=`M ${s.x} ${s.y} L ${o.x} ${o.y}`)):(s.yo.y&&(r.type===th.MERGE&&t.id!==r.parents[0]?_=`M ${s.x} ${s.y} L ${o.x-p} ${s.y} ${h} ${o.x} ${s.y-m} L ${o.x} ${o.y}`:_=`M ${s.x} ${s.y} L ${s.x} ${o.y+p} ${f} ${s.x+m} ${o.y} L ${o.x} ${o.y}`),s.y===o.y&&(_=`M ${s.x} ${s.y} L ${o.x} ${o.y}`));if(_===void 0)throw new Error("Line definition not found");e.append("path").attr("d",_).attr("class","arrow arrow"+b%UB)},"drawArrow"),fYi=X((e,t)=>{const r=e.append("g").attr("class","commit-arrows");[...t.keys()].forEach(a=>{const s=t.get(a);s.parents&&s.parents.length>0&&s.parents.forEach(o=>{dYi(r,t.get(o),s,t)})})},"drawArrows"),pYi=X((e,t)=>{const r=e.append("g");t.forEach((a,s)=>{var S;const o=s%UB,u=(S=G2.get(a.name))==null?void 0:S.pos;if(u===void 0)throw new Error(`Position not found for branch ${a.name}`);const h=r.append("line");h.attr("x1",0),h.attr("y1",u),h.attr("x2",nO),h.attr("y2",u),h.attr("class","branch branch"+o),Rc==="TB"?(h.attr("y1",ITe),h.attr("x1",u),h.attr("y2",nO),h.attr("x2",u)):Rc==="BT"&&(h.attr("y1",nO),h.attr("x1",u),h.attr("y2",ITe),h.attr("x2",u)),NTe.push(u);const f=a.name,p=jWn(f),m=r.insert("rect"),_=r.insert("g").attr("class","branchLabel").insert("g").attr("class","label branch-label"+o);_.node().appendChild(p);const w=p.getBBox();m.attr("class","branchLabelBkg label"+o).attr("rx",4).attr("ry",4).attr("x",-w.width-4-((A1==null?void 0:A1.rotateCommitLabel)===!0?30:0)).attr("y",-w.height/2+8).attr("width",w.width+18).attr("height",w.height+4),_.attr("transform","translate("+(-w.width-14-((A1==null?void 0:A1.rotateCommitLabel)===!0?30:0))+", "+(u-w.height/2-1)+")"),Rc==="TB"?(m.attr("x",u-w.width/2-10).attr("y",0),_.attr("transform","translate("+(u-w.width/2-5)+", 0)")):Rc==="BT"?(m.attr("x",u-w.width/2-10).attr("y",nO),_.attr("transform","translate("+(u-w.width/2-5)+", "+nO+")")):m.attr("transform","translate(-19, "+(u-w.height/2)+")")})},"drawBranches"),gYi=X(function(e,t,r,a,s){return G2.set(e,{pos:t,index:r}),t+=50+(s?40:0)+(Rc==="TB"||Rc==="BT"?a.width/2:0),t},"setBranchPosition"),mYi=X(function(e,t,r,a){if(ZVi(),it.debug("in gitgraph renderer",e+` +`,"id:",t,r),!A1)throw new Error("GitGraph config not found");const s=A1.rotateCommitLabel??!1,o=a.db;Nae=o.getCommits();const u=o.getBranchesAsObjArray();Rc=o.getDirection();const h=gn(`[id="${t}"]`);let f=0;u.forEach((p,m)=>{var A;const b=jWn(p.name),_=h.append("g"),w=_.insert("g").attr("class","branchLabel"),S=w.insert("g").attr("class","label branch-label");(A=S.node())==null||A.appendChild(b);const C=b.getBBox();f=gYi(p.name,f,m,C,s),S.remove(),w.remove(),_.remove()}),J3n(h,Nae,!1),A1.showBranches&&pYi(h,u),fYi(h,Nae),J3n(h,Nae,!0),Vo.insertTitle(h,"gitTitleText",A1.titleTopMargin??0,o.getDiagramTitle()),TLn(void 0,h,A1.diagramPadding,A1.useMaxWidth)},"draw"),bYi={draw:mYi},yYi=X(e=>` + .commit-id, + .commit-msg, + .branch-label { + fill: lightgrey; + color: lightgrey; + font-family: 'trebuchet ms', verdana, arial, sans-serif; + font-family: var(--mermaid-font-family); + } + ${[0,1,2,3,4,5,6,7].map(t=>` + .branch-label${t} { fill: ${e["gitBranchLabel"+t]}; } + .commit${t} { stroke: ${e["git"+t]}; fill: ${e["git"+t]}; } + .commit-highlight${t} { stroke: ${e["gitInv"+t]}; fill: ${e["gitInv"+t]}; } + .label${t} { fill: ${e["git"+t]}; } + .arrow${t} { stroke: ${e["git"+t]}; } + `).join(` +`)} + + .branch { + stroke-width: 1; + stroke: ${e.lineColor}; + stroke-dasharray: 2; + } + .commit-label { font-size: ${e.commitLabelFontSize}; fill: ${e.commitLabelColor};} + .commit-label-bkg { font-size: ${e.commitLabelFontSize}; fill: ${e.commitLabelBackground}; opacity: 0.5; } + .tag-label { font-size: ${e.tagLabelFontSize}; fill: ${e.tagLabelColor};} + .tag-label-bkg { fill: ${e.tagLabelBackground}; stroke: ${e.tagLabelBorder}; } + .tag-hole { fill: ${e.textColor}; } + + .commit-merge { + stroke: ${e.primaryColor}; + fill: ${e.primaryColor}; + } + .commit-reverse { + stroke: ${e.primaryColor}; + fill: ${e.primaryColor}; + stroke-width: 3; + } + .commit-highlight-outer { + } + .commit-highlight-inner { + stroke: ${e.primaryColor}; + fill: ${e.primaryColor}; + } + + .arrow { stroke-width: 8; stroke-linecap: round; fill: none} + .gitTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; + } +`,"getStyles"),vYi=yYi,_Yi={parser:QVi,db:YWn,renderer:bYi,styles:vYi};const wYi=Object.freeze(Object.defineProperty({__proto__:null,diagram:_Yi},Symbol.toStringTag,{value:"Module"}));var KWn={exports:{}};(function(e,t){(function(r,a){e.exports=a()})(ml,function(){var r="day";return function(a,s,o){var u=function(p){return p.add(4-p.isoWeekday(),r)},h=s.prototype;h.isoWeekYear=function(){return u(this).year()},h.isoWeek=function(p){if(!this.$utils().u(p))return this.add(7*(p-this.isoWeek()),r);var m,b,_,w,S=u(this),C=(m=this.isoWeekYear(),b=this.$u,_=(b?o.utc:o)().year(m).startOf("year"),w=4-_.isoWeekday(),_.isoWeekday()>4&&(w+=7),_.add(w,r));return S.diff(C,"week")+1},h.isoWeekday=function(p){return this.$utils().u(p)?this.day()||7:this.day(this.day()%7?p:p-7)};var f=h.startOf;h.startOf=function(p,m){var b=this.$utils(),_=!!b.u(m)||m;return b.p(p)==="isoweek"?_?this.date(this.date()-(this.isoWeekday()-1)).startOf("day"):this.date(this.date()-1-(this.isoWeekday()-1)+7).endOf("day"):f.bind(this)(p,m)}}})})(KWn);var EYi=KWn.exports;const XWn=O1(EYi);var QWn={exports:{}};(function(e,t){(function(r,a){e.exports=a()})(ml,function(){var r,a,s=1e3,o=6e4,u=36e5,h=864e5,f=/\[([^\]]+)]|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,p=31536e6,m=2628e6,b=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/,_={years:p,months:m,days:h,hours:u,minutes:o,seconds:s,milliseconds:1,weeks:6048e5},w=function(M){return M instanceof L},S=function(M,F,U){return new L(M,U,F.$l)},C=function(M){return a.p(M)+"s"},A=function(M){return M<0},k=function(M){return A(M)?Math.ceil(M):Math.floor(M)},I=function(M){return Math.abs(M)},N=function(M,F){return M?A(M)?{negative:!0,format:""+I(M)+F}:{negative:!1,format:""+M+F}:{negative:!1,format:""}},L=function(){function M(U,$,G){var B=this;if(this.$d={},this.$l=G,U===void 0&&(this.$ms=0,this.parseFromMilliseconds()),$)return S(U*_[C($)],this);if(typeof U=="number")return this.$ms=U,this.parseFromMilliseconds(),this;if(typeof U=="object")return Object.keys(U).forEach(function(Y){B.$d[C(Y)]=U[Y]}),this.calMilliseconds(),this;if(typeof U=="string"){var Z=U.match(b);if(Z){var z=Z.slice(2).map(function(Y){return Y!=null?Number(Y):0});return this.$d.years=z[0],this.$d.months=z[1],this.$d.weeks=z[2],this.$d.days=z[3],this.$d.hours=z[4],this.$d.minutes=z[5],this.$d.seconds=z[6],this.calMilliseconds(),this}}return this}var F=M.prototype;return F.calMilliseconds=function(){var U=this;this.$ms=Object.keys(this.$d).reduce(function($,G){return $+(U.$d[G]||0)*_[G]},0)},F.parseFromMilliseconds=function(){var U=this.$ms;this.$d.years=k(U/p),U%=p,this.$d.months=k(U/m),U%=m,this.$d.days=k(U/h),U%=h,this.$d.hours=k(U/u),U%=u,this.$d.minutes=k(U/o),U%=o,this.$d.seconds=k(U/s),U%=s,this.$d.milliseconds=U},F.toISOString=function(){var U=N(this.$d.years,"Y"),$=N(this.$d.months,"M"),G=+this.$d.days||0;this.$d.weeks&&(G+=7*this.$d.weeks);var B=N(G,"D"),Z=N(this.$d.hours,"H"),z=N(this.$d.minutes,"M"),Y=this.$d.seconds||0;this.$d.milliseconds&&(Y+=this.$d.milliseconds/1e3,Y=Math.round(1e3*Y)/1e3);var W=N(Y,"S"),Q=U.negative||$.negative||B.negative||Z.negative||z.negative||W.negative,V=Z.format||z.format||W.format?"T":"",j=(Q?"-":"")+"P"+U.format+$.format+B.format+V+Z.format+z.format+W.format;return j==="P"||j==="-P"?"P0D":j},F.toJSON=function(){return this.toISOString()},F.format=function(U){var $=U||"YYYY-MM-DDTHH:mm:ss",G={Y:this.$d.years,YY:a.s(this.$d.years,2,"0"),YYYY:a.s(this.$d.years,4,"0"),M:this.$d.months,MM:a.s(this.$d.months,2,"0"),D:this.$d.days,DD:a.s(this.$d.days,2,"0"),H:this.$d.hours,HH:a.s(this.$d.hours,2,"0"),m:this.$d.minutes,mm:a.s(this.$d.minutes,2,"0"),s:this.$d.seconds,ss:a.s(this.$d.seconds,2,"0"),SSS:a.s(this.$d.milliseconds,3,"0")};return $.replace(f,function(B,Z){return Z||String(G[B])})},F.as=function(U){return this.$ms/_[C(U)]},F.get=function(U){var $=this.$ms,G=C(U);return G==="milliseconds"?$%=1e3:$=G==="weeks"?k($/_[G]):this.$d[G],$||0},F.add=function(U,$,G){var B;return B=$?U*_[C($)]:w(U)?U.$ms:S(U,this).$ms,S(this.$ms+B*(G?-1:1),this)},F.subtract=function(U,$){return this.add(U,$,!0)},F.locale=function(U){var $=this.clone();return $.$l=U,$},F.clone=function(){return S(this.$ms,this)},F.humanize=function(U){return r().add(this.$ms,"ms").locale(this.$l).fromNow(!U)},F.valueOf=function(){return this.asMilliseconds()},F.milliseconds=function(){return this.get("milliseconds")},F.asMilliseconds=function(){return this.as("milliseconds")},F.seconds=function(){return this.get("seconds")},F.asSeconds=function(){return this.as("seconds")},F.minutes=function(){return this.get("minutes")},F.asMinutes=function(){return this.as("minutes")},F.hours=function(){return this.get("hours")},F.asHours=function(){return this.as("hours")},F.days=function(){return this.get("days")},F.asDays=function(){return this.as("days")},F.weeks=function(){return this.get("weeks")},F.asWeeks=function(){return this.as("weeks")},F.months=function(){return this.get("months")},F.asMonths=function(){return this.as("months")},F.years=function(){return this.get("years")},F.asYears=function(){return this.as("years")},M}(),P=function(M,F,U){return M.add(F.years()*U,"y").add(F.months()*U,"M").add(F.days()*U,"d").add(F.hours()*U,"h").add(F.minutes()*U,"m").add(F.seconds()*U,"s").add(F.milliseconds()*U,"ms")};return function(M,F,U){r=U,a=U().$utils(),U.duration=function(B,Z){var z=U.locale();return S(B,{$l:z},Z)},U.isDuration=w;var $=F.prototype.add,G=F.prototype.subtract;F.prototype.add=function(B,Z){return w(B)?P(this,B,1):$.bind(this)(B,Z)},F.prototype.subtract=function(B,Z){return w(B)?P(this,B,-1):G.bind(this)(B,Z)}}})})(QWn);var xYi=QWn.exports;const SYi=O1(xYi);var mut=function(){var e=X(function(z,Y,W,Q){for(W=W||{},Q=z.length;Q--;W[z[Q]]=Y);return W},"o"),t=[6,8,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,31,33,35,36,38,40],r=[1,26],a=[1,27],s=[1,28],o=[1,29],u=[1,30],h=[1,31],f=[1,32],p=[1,33],m=[1,34],b=[1,9],_=[1,10],w=[1,11],S=[1,12],C=[1,13],A=[1,14],k=[1,15],I=[1,16],N=[1,19],L=[1,20],P=[1,21],M=[1,22],F=[1,23],U=[1,25],$=[1,35],G={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,gantt:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NL:10,weekday:11,weekday_monday:12,weekday_tuesday:13,weekday_wednesday:14,weekday_thursday:15,weekday_friday:16,weekday_saturday:17,weekday_sunday:18,weekend:19,weekend_friday:20,weekend_saturday:21,dateFormat:22,inclusiveEndDates:23,topAxis:24,axisFormat:25,tickInterval:26,excludes:27,includes:28,todayMarker:29,title:30,acc_title:31,acc_title_value:32,acc_descr:33,acc_descr_value:34,acc_descr_multiline_value:35,section:36,clickStatement:37,taskTxt:38,taskData:39,click:40,callbackname:41,callbackargs:42,href:43,clickStatementDebug:44,$accept:0,$end:1},terminals_:{2:"error",4:"gantt",6:"EOF",8:"SPACE",10:"NL",12:"weekday_monday",13:"weekday_tuesday",14:"weekday_wednesday",15:"weekday_thursday",16:"weekday_friday",17:"weekday_saturday",18:"weekday_sunday",20:"weekend_friday",21:"weekend_saturday",22:"dateFormat",23:"inclusiveEndDates",24:"topAxis",25:"axisFormat",26:"tickInterval",27:"excludes",28:"includes",29:"todayMarker",30:"title",31:"acc_title",32:"acc_title_value",33:"acc_descr",34:"acc_descr_value",35:"acc_descr_multiline_value",36:"section",38:"taskTxt",39:"taskData",40:"click",41:"callbackname",42:"callbackargs",43:"href"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[11,1],[11,1],[11,1],[11,1],[11,1],[11,1],[11,1],[19,1],[19,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,2],[9,2],[9,1],[9,1],[9,1],[9,2],[37,2],[37,3],[37,3],[37,4],[37,3],[37,4],[37,2],[44,2],[44,3],[44,3],[44,4],[44,3],[44,4],[44,2]],performAction:X(function(Y,W,Q,V,j,ee,te){var ne=ee.length-1;switch(j){case 1:return ee[ne-1];case 2:this.$=[];break;case 3:ee[ne-1].push(ee[ne]),this.$=ee[ne-1];break;case 4:case 5:this.$=ee[ne];break;case 6:case 7:this.$=[];break;case 8:V.setWeekday("monday");break;case 9:V.setWeekday("tuesday");break;case 10:V.setWeekday("wednesday");break;case 11:V.setWeekday("thursday");break;case 12:V.setWeekday("friday");break;case 13:V.setWeekday("saturday");break;case 14:V.setWeekday("sunday");break;case 15:V.setWeekend("friday");break;case 16:V.setWeekend("saturday");break;case 17:V.setDateFormat(ee[ne].substr(11)),this.$=ee[ne].substr(11);break;case 18:V.enableInclusiveEndDates(),this.$=ee[ne].substr(18);break;case 19:V.TopAxis(),this.$=ee[ne].substr(8);break;case 20:V.setAxisFormat(ee[ne].substr(11)),this.$=ee[ne].substr(11);break;case 21:V.setTickInterval(ee[ne].substr(13)),this.$=ee[ne].substr(13);break;case 22:V.setExcludes(ee[ne].substr(9)),this.$=ee[ne].substr(9);break;case 23:V.setIncludes(ee[ne].substr(9)),this.$=ee[ne].substr(9);break;case 24:V.setTodayMarker(ee[ne].substr(12)),this.$=ee[ne].substr(12);break;case 27:V.setDiagramTitle(ee[ne].substr(6)),this.$=ee[ne].substr(6);break;case 28:this.$=ee[ne].trim(),V.setAccTitle(this.$);break;case 29:case 30:this.$=ee[ne].trim(),V.setAccDescription(this.$);break;case 31:V.addSection(ee[ne].substr(8)),this.$=ee[ne].substr(8);break;case 33:V.addTask(ee[ne-1],ee[ne]),this.$="task";break;case 34:this.$=ee[ne-1],V.setClickEvent(ee[ne-1],ee[ne],null);break;case 35:this.$=ee[ne-2],V.setClickEvent(ee[ne-2],ee[ne-1],ee[ne]);break;case 36:this.$=ee[ne-2],V.setClickEvent(ee[ne-2],ee[ne-1],null),V.setLink(ee[ne-2],ee[ne]);break;case 37:this.$=ee[ne-3],V.setClickEvent(ee[ne-3],ee[ne-2],ee[ne-1]),V.setLink(ee[ne-3],ee[ne]);break;case 38:this.$=ee[ne-2],V.setClickEvent(ee[ne-2],ee[ne],null),V.setLink(ee[ne-2],ee[ne-1]);break;case 39:this.$=ee[ne-3],V.setClickEvent(ee[ne-3],ee[ne-1],ee[ne]),V.setLink(ee[ne-3],ee[ne-2]);break;case 40:this.$=ee[ne-1],V.setLink(ee[ne-1],ee[ne]);break;case 41:case 47:this.$=ee[ne-1]+" "+ee[ne];break;case 42:case 43:case 45:this.$=ee[ne-2]+" "+ee[ne-1]+" "+ee[ne];break;case 44:case 46:this.$=ee[ne-3]+" "+ee[ne-2]+" "+ee[ne-1]+" "+ee[ne];break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},e(t,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:17,12:r,13:a,14:s,15:o,16:u,17:h,18:f,19:18,20:p,21:m,22:b,23:_,24:w,25:S,26:C,27:A,28:k,29:I,30:N,31:L,33:P,35:M,36:F,37:24,38:U,40:$},e(t,[2,7],{1:[2,1]}),e(t,[2,3]),{9:36,11:17,12:r,13:a,14:s,15:o,16:u,17:h,18:f,19:18,20:p,21:m,22:b,23:_,24:w,25:S,26:C,27:A,28:k,29:I,30:N,31:L,33:P,35:M,36:F,37:24,38:U,40:$},e(t,[2,5]),e(t,[2,6]),e(t,[2,17]),e(t,[2,18]),e(t,[2,19]),e(t,[2,20]),e(t,[2,21]),e(t,[2,22]),e(t,[2,23]),e(t,[2,24]),e(t,[2,25]),e(t,[2,26]),e(t,[2,27]),{32:[1,37]},{34:[1,38]},e(t,[2,30]),e(t,[2,31]),e(t,[2,32]),{39:[1,39]},e(t,[2,8]),e(t,[2,9]),e(t,[2,10]),e(t,[2,11]),e(t,[2,12]),e(t,[2,13]),e(t,[2,14]),e(t,[2,15]),e(t,[2,16]),{41:[1,40],43:[1,41]},e(t,[2,4]),e(t,[2,28]),e(t,[2,29]),e(t,[2,33]),e(t,[2,34],{42:[1,42],43:[1,43]}),e(t,[2,40],{41:[1,44]}),e(t,[2,35],{43:[1,45]}),e(t,[2,36]),e(t,[2,38],{42:[1,46]}),e(t,[2,37]),e(t,[2,39])],defaultActions:{},parseError:X(function(Y,W){if(W.recoverable)this.trace(Y);else{var Q=new Error(Y);throw Q.hash=W,Q}},"parseError"),parse:X(function(Y){var W=this,Q=[0],V=[],j=[null],ee=[],te=this.table,ne="",se=0,ie=0,ge=2,ce=1,be=ee.slice.call(arguments,1),ve=Object.create(this.lexer),De={yy:{}};for(var ye in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ye)&&(De.yy[ye]=this.yy[ye]);ve.setInput(Y,De.yy),De.yy.lexer=ve,De.yy.parser=this,typeof ve.yylloc>"u"&&(ve.yylloc={});var Ee=ve.yylloc;ee.push(Ee);var he=ve.options&&ve.options.ranges;typeof De.yy.parseError=="function"?this.parseError=De.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function we(Je){Q.length=Q.length-2*Je,j.length=j.length-Je,ee.length=ee.length-Je}X(we,"popStack");function Ce(){var Je;return Je=V.pop()||ve.lex()||ce,typeof Je!="number"&&(Je instanceof Array&&(V=Je,Je=V.pop()),Je=W.symbols_[Je]||Je),Je}X(Ce,"lex");for(var Ie,Le,Fe,Ve,Oe={},Dt,ot,sn,Kt;;){if(Le=Q[Q.length-1],this.defaultActions[Le]?Fe=this.defaultActions[Le]:((Ie===null||typeof Ie>"u")&&(Ie=Ce()),Fe=te[Le]&&te[Le][Ie]),typeof Fe>"u"||!Fe.length||!Fe[0]){var Ft="";Kt=[];for(Dt in te[Le])this.terminals_[Dt]&&Dt>ge&&Kt.push("'"+this.terminals_[Dt]+"'");ve.showPosition?Ft="Parse error on line "+(se+1)+`: +`+ve.showPosition()+` +Expecting `+Kt.join(", ")+", got '"+(this.terminals_[Ie]||Ie)+"'":Ft="Parse error on line "+(se+1)+": Unexpected "+(Ie==ce?"end of input":"'"+(this.terminals_[Ie]||Ie)+"'"),this.parseError(Ft,{text:ve.match,token:this.terminals_[Ie]||Ie,line:ve.yylineno,loc:Ee,expected:Kt})}if(Fe[0]instanceof Array&&Fe.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Le+", token: "+Ie);switch(Fe[0]){case 1:Q.push(Ie),j.push(ve.yytext),ee.push(ve.yylloc),Q.push(Fe[1]),Ie=null,ie=ve.yyleng,ne=ve.yytext,se=ve.yylineno,Ee=ve.yylloc;break;case 2:if(ot=this.productions_[Fe[1]][1],Oe.$=j[j.length-ot],Oe._$={first_line:ee[ee.length-(ot||1)].first_line,last_line:ee[ee.length-1].last_line,first_column:ee[ee.length-(ot||1)].first_column,last_column:ee[ee.length-1].last_column},he&&(Oe._$.range=[ee[ee.length-(ot||1)].range[0],ee[ee.length-1].range[1]]),Ve=this.performAction.apply(Oe,[ne,ie,se,De.yy,Fe[1],j,ee].concat(be)),typeof Ve<"u")return Ve;ot&&(Q=Q.slice(0,-1*ot*2),j=j.slice(0,-1*ot),ee=ee.slice(0,-1*ot)),Q.push(this.productions_[Fe[1]][0]),j.push(Oe.$),ee.push(Oe._$),sn=te[Q[Q.length-2]][Q[Q.length-1]],Q.push(sn);break;case 3:return!0}}return!0},"parse")},B=function(){var z={EOF:1,parseError:X(function(W,Q){if(this.yy.parser)this.yy.parser.parseError(W,Q);else throw new Error(W)},"parseError"),setInput:X(function(Y,W){return this.yy=W||this.yy||{},this._input=Y,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var Y=this._input[0];this.yytext+=Y,this.yyleng++,this.offset++,this.match+=Y,this.matched+=Y;var W=Y.match(/(?:\r\n?|\n).*/g);return W?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Y},"input"),unput:X(function(Y){var W=Y.length,Q=Y.split(/(?:\r\n?|\n)/g);this._input=Y+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-W),this.offset-=W;var V=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Q.length-1&&(this.yylineno-=Q.length-1);var j=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Q?(Q.length===V.length?this.yylloc.first_column:0)+V[V.length-Q.length].length-Q[0].length:this.yylloc.first_column-W},this.options.ranges&&(this.yylloc.range=[j[0],j[0]+this.yyleng-W]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(Y){this.unput(this.match.slice(Y))},"less"),pastInput:X(function(){var Y=this.matched.substr(0,this.matched.length-this.match.length);return(Y.length>20?"...":"")+Y.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var Y=this.match;return Y.length<20&&(Y+=this._input.substr(0,20-Y.length)),(Y.substr(0,20)+(Y.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var Y=this.pastInput(),W=new Array(Y.length+1).join("-");return Y+this.upcomingInput()+` +`+W+"^"},"showPosition"),test_match:X(function(Y,W){var Q,V,j;if(this.options.backtrack_lexer&&(j={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(j.yylloc.range=this.yylloc.range.slice(0))),V=Y[0].match(/(?:\r\n?|\n).*/g),V&&(this.yylineno+=V.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:V?V[V.length-1].length-V[V.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Y[0].length},this.yytext+=Y[0],this.match+=Y[0],this.matches=Y,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Y[0].length),this.matched+=Y[0],Q=this.performAction.call(this,this.yy,this,W,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Q)return Q;if(this._backtrack){for(var ee in j)this[ee]=j[ee];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Y,W,Q,V;this._more||(this.yytext="",this.match="");for(var j=this._currentRules(),ee=0;eeW[0].length)){if(W=Q,V=ee,this.options.backtrack_lexer){if(Y=this.test_match(Q,j[ee]),Y!==!1)return Y;if(this._backtrack){W=!1;continue}else return!1}else if(!this.options.flex)break}return W?(Y=this.test_match(W,j[V]),Y!==!1?Y:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var W=this.next();return W||this.lex()},"lex"),begin:X(function(W){this.conditionStack.push(W)},"begin"),popState:X(function(){var W=this.conditionStack.length-1;return W>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(W){return W=this.conditionStack.length-1-Math.abs(W||0),W>=0?this.conditionStack[W]:"INITIAL"},"topState"),pushState:X(function(W){this.begin(W)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(W,Q,V,j){switch(V){case 0:return this.begin("open_directive"),"open_directive";case 1:return this.begin("acc_title"),31;case 2:return this.popState(),"acc_title_value";case 3:return this.begin("acc_descr"),33;case 4:return this.popState(),"acc_descr_value";case 5:this.begin("acc_descr_multiline");break;case 6:this.popState();break;case 7:return"acc_descr_multiline_value";case 8:break;case 9:break;case 10:break;case 11:return 10;case 12:break;case 13:break;case 14:this.begin("href");break;case 15:this.popState();break;case 16:return 43;case 17:this.begin("callbackname");break;case 18:this.popState();break;case 19:this.popState(),this.begin("callbackargs");break;case 20:return 41;case 21:this.popState();break;case 22:return 42;case 23:this.begin("click");break;case 24:this.popState();break;case 25:return 40;case 26:return 4;case 27:return 22;case 28:return 23;case 29:return 24;case 30:return 25;case 31:return 26;case 32:return 28;case 33:return 27;case 34:return 29;case 35:return 12;case 36:return 13;case 37:return 14;case 38:return 15;case 39:return 16;case 40:return 17;case 41:return 18;case 42:return 20;case 43:return 21;case 44:return"date";case 45:return 30;case 46:return"accDescription";case 47:return 36;case 48:return 38;case 49:return 39;case 50:return":";case 51:return 6;case 52:return"INVALID"}},"anonymous"),rules:[/^(?:%%\{)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:%%(?!\{)*[^\n]*)/i,/^(?:[^\}]%%*[^\n]*)/i,/^(?:%%*[^\n]*[\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:%[^\n]*)/i,/^(?:href[\s]+["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:call[\s]+)/i,/^(?:\([\s]*\))/i,/^(?:\()/i,/^(?:[^(]*)/i,/^(?:\))/i,/^(?:[^)]*)/i,/^(?:click[\s]+)/i,/^(?:[\s\n])/i,/^(?:[^\s\n]*)/i,/^(?:gantt\b)/i,/^(?:dateFormat\s[^#\n;]+)/i,/^(?:inclusiveEndDates\b)/i,/^(?:topAxis\b)/i,/^(?:axisFormat\s[^#\n;]+)/i,/^(?:tickInterval\s[^#\n;]+)/i,/^(?:includes\s[^#\n;]+)/i,/^(?:excludes\s[^#\n;]+)/i,/^(?:todayMarker\s[^\n;]+)/i,/^(?:weekday\s+monday\b)/i,/^(?:weekday\s+tuesday\b)/i,/^(?:weekday\s+wednesday\b)/i,/^(?:weekday\s+thursday\b)/i,/^(?:weekday\s+friday\b)/i,/^(?:weekday\s+saturday\b)/i,/^(?:weekday\s+sunday\b)/i,/^(?:weekend\s+friday\b)/i,/^(?:weekend\s+saturday\b)/i,/^(?:\d\d\d\d-\d\d-\d\d\b)/i,/^(?:title\s[^\n]+)/i,/^(?:accDescription\s[^#\n;]+)/i,/^(?:section\s[^\n]+)/i,/^(?:[^:\n]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[6,7],inclusive:!1},acc_descr:{rules:[4],inclusive:!1},acc_title:{rules:[2],inclusive:!1},callbackargs:{rules:[21,22],inclusive:!1},callbackname:{rules:[18,19,20],inclusive:!1},href:{rules:[15,16],inclusive:!1},click:{rules:[24,25],inclusive:!1},INITIAL:{rules:[0,1,3,5,8,9,10,11,12,13,14,17,23,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52],inclusive:!0}}};return z}();G.lexer=B;function Z(){this.yy={}}return X(Z,"Parser"),Z.prototype=G,G.Parser=Z,new Z}();mut.parser=mut;var TYi=mut;Fc.extend(XWn);Fc.extend(FAn);Fc.extend(PAn);var eTn={friday:5,saturday:6},tA="",Lmt="",Dmt=void 0,Mmt="",Yce=[],jce=[],Pmt=new Map,Bmt=[],OTe=[],Zj="",Fmt="",ZWn=["active","done","crit","milestone","vert"],$mt=[],Wce=!1,Umt=!1,zmt="sunday",LTe="saturday",but=0,CYi=X(function(){Bmt=[],OTe=[],Zj="",$mt=[],Wxe=0,vut=void 0,Kxe=void 0,mp=[],tA="",Lmt="",Fmt="",Dmt=void 0,Mmt="",Yce=[],jce=[],Wce=!1,Umt=!1,but=0,Pmt=new Map,M1(),zmt="sunday",LTe="saturday"},"clear"),AYi=X(function(e){Lmt=e},"setAxisFormat"),kYi=X(function(){return Lmt},"getAxisFormat"),RYi=X(function(e){Dmt=e},"setTickInterval"),IYi=X(function(){return Dmt},"getTickInterval"),NYi=X(function(e){Mmt=e},"setTodayMarker"),OYi=X(function(){return Mmt},"getTodayMarker"),LYi=X(function(e){tA=e},"setDateFormat"),DYi=X(function(){Wce=!0},"enableInclusiveEndDates"),MYi=X(function(){return Wce},"endDatesAreInclusive"),PYi=X(function(){Umt=!0},"enableTopAxis"),BYi=X(function(){return Umt},"topAxisEnabled"),FYi=X(function(e){Fmt=e},"setDisplayMode"),$Yi=X(function(){return Fmt},"getDisplayMode"),UYi=X(function(){return tA},"getDateFormat"),zYi=X(function(e){Yce=e.toLowerCase().split(/[\s,]+/)},"setIncludes"),GYi=X(function(){return Yce},"getIncludes"),qYi=X(function(e){jce=e.toLowerCase().split(/[\s,]+/)},"setExcludes"),HYi=X(function(){return jce},"getExcludes"),VYi=X(function(){return Pmt},"getLinks"),YYi=X(function(e){Zj=e,Bmt.push(e)},"addSection"),jYi=X(function(){return Bmt},"getSections"),WYi=X(function(){let e=tTn();const t=10;let r=0;for(;!e&&r{const f=h.trim();return f==="x"||f==="X"},"isTimestampFormat")(t)&&/^\d+$/.test(r))return new Date(Number(r));const o=/^after\s+(?[\d\w- ]+)/.exec(r);if(o!==null){let h=null;for(const p of o.groups.ids.split(" ")){let m=X$(p);m!==void 0&&(!h||m.endTime>h.endTime)&&(h=m)}if(h)return h.endTime;const f=new Date;return f.setHours(0,0,0,0),f}let u=Fc(r,t.trim(),!0);if(u.isValid())return u.toDate();{it.debug("Invalid date:"+r),it.debug("With date format:"+t.trim());const h=new Date(r);if(h===void 0||isNaN(h.getTime())||h.getFullYear()<-1e4||h.getFullYear()>1e4)throw new Error("Invalid date:"+r);return h}},"getStartDate"),tKn=X(function(e){const t=/^(\d+(?:\.\d+)?)([Mdhmswy]|ms)$/.exec(e.trim());return t!==null?[Number.parseFloat(t[1]),t[2]]:[NaN,"ms"]},"parseDuration"),nKn=X(function(e,t,r,a=!1){r=r.trim();const o=/^until\s+(?[\d\w- ]+)/.exec(r);if(o!==null){let m=null;for(const _ of o.groups.ids.split(" ")){let w=X$(_);w!==void 0&&(!m||w.startTime{window.open(r,"_self")}),Pmt.set(a,r))}),iKn(e,"clickable")},"setLink"),iKn=X(function(e,t){e.split(",").forEach(function(r){let a=X$(r);a!==void 0&&a.classes.push(t)})},"setClass"),iji=X(function(e,t,r){if(nn().securityLevel!=="loose"||t===void 0)return;let a=[];if(typeof r=="string"){a=r.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let o=0;o{Vo.runFunc(t,...a)})},"setClickFun"),aKn=X(function(e,t){$mt.push(function(){const r=document.querySelector(`[id="${e}"]`);r!==null&&r.addEventListener("click",function(){t()})},function(){const r=document.querySelector(`[id="${e}-text"]`);r!==null&&r.addEventListener("click",function(){t()})})},"pushFun"),aji=X(function(e,t,r){e.split(",").forEach(function(a){iji(a,t,r)}),iKn(e,"clickable")},"setClickEvent"),sji=X(function(e){$mt.forEach(function(t){t(e)})},"bindFunctions"),oji={getConfig:X(()=>nn().gantt,"getConfig"),clear:CYi,setDateFormat:LYi,getDateFormat:UYi,enableInclusiveEndDates:DYi,endDatesAreInclusive:MYi,enableTopAxis:PYi,topAxisEnabled:BYi,setAxisFormat:AYi,getAxisFormat:kYi,setTickInterval:RYi,getTickInterval:IYi,setTodayMarker:NYi,getTodayMarker:OYi,setAccTitle:N1,getAccTitle:Mp,setDiagramTitle:Og,getDiagramTitle:P1,setDisplayMode:FYi,getDisplayMode:$Yi,setAccDescription:Pp,getAccDescription:Bp,addSection:YYi,getSections:jYi,getTasks:WYi,addTask:tji,findTaskById:X$,addTaskOrg:nji,setIncludes:zYi,getIncludes:GYi,setExcludes:qYi,getExcludes:HYi,setClickEvent:aji,setLink:rji,getLinks:VYi,bindFunctions:sji,parseDuration:tKn,isInvalidDate:JWn,setWeekday:KYi,getWeekday:XYi,setWeekend:QYi};function Gmt(e,t,r){let a=!0;for(;a;)a=!1,r.forEach(function(s){const o="^\\s*"+s+"\\s*$",u=new RegExp(o);e[0].match(u)&&(t[s]=!0,e.shift(1),a=!0)})}X(Gmt,"getTaskTags");Fc.extend(SYi);var lji=X(function(){it.debug("Something is calling, setConf, remove the call")},"setConf"),nTn={monday:Rj,tuesday:r1t,wednesday:i1t,thursday:YO,friday:a1t,saturday:s1t,sunday:MW},cji=X((e,t)=>{let r=[...e].map(()=>-1/0),a=[...e].sort((o,u)=>o.startTime-u.startTime||o.order-u.order),s=0;for(const o of a)for(let u=0;u=r[u]){r[u]=o.endTime,o.order=u+t,u>s&&(s=u);break}return s},"getMaxIntersections"),Z6,Qit=1e4,uji=X(function(e,t,r,a){const s=nn().gantt,o=nn().securityLevel;let u;o==="sandbox"&&(u=gn("#i"+t));const h=gn(o==="sandbox"?u.nodes()[0].contentDocument.body:"body"),f=o==="sandbox"?u.nodes()[0].contentDocument:document,p=f.getElementById(t);Z6=p.parentElement.offsetWidth,Z6===void 0&&(Z6=1200),s.useWidth!==void 0&&(Z6=s.useWidth);const m=a.db.getTasks();let b=[];for(const $ of m)b.push($.type);b=U(b);const _={};let w=2*s.topPadding;if(a.db.getDisplayMode()==="compact"||s.displayMode==="compact"){const $={};for(const B of m)$[B.section]===void 0?$[B.section]=[B]:$[B.section].push(B);let G=0;for(const B of Object.keys($)){const Z=cji($[B],G)+1;G+=Z,w+=Z*(s.barHeight+s.barGap),_[B]=Z}}else{w+=m.length*(s.barHeight+s.barGap);for(const $ of b)_[$]=m.filter(G=>G.type===$).length}p.setAttribute("viewBox","0 0 "+Z6+" "+w);const S=h.select(`[id="${t}"]`),C=xDn().domain([ALn(m,function($){return $.startTime}),CLn(m,function($){return $.endTime})]).rangeRound([0,Z6-s.leftPadding-s.rightPadding]);function A($,G){const B=$.startTime,Z=G.startTime;let z=0;return B>Z?z=1:Bne.vert===se.vert?0:ne.vert?1:-1);const V=[...new Set($.map(ne=>ne.order))].map(ne=>$.find(se=>se.order===ne));S.append("g").selectAll("rect").data(V).enter().append("rect").attr("x",0).attr("y",function(ne,se){return se=ne.order,se*G+B-2}).attr("width",function(){return W-s.rightPadding/2}).attr("height",G).attr("class",function(ne){for(const[se,ie]of b.entries())if(ne.type===ie)return"section section"+se%s.numberSectionStyles;return"section section0"}).enter();const j=S.append("g").selectAll("rect").data($).enter(),ee=a.db.getLinks();if(j.append("rect").attr("id",function(ne){return ne.id}).attr("rx",3).attr("ry",3).attr("x",function(ne){return ne.milestone?C(ne.startTime)+Z+.5*(C(ne.endTime)-C(ne.startTime))-.5*z:C(ne.startTime)+Z}).attr("y",function(ne,se){return se=ne.order,ne.vert?s.gridLineStartPadding:se*G+B}).attr("width",function(ne){return ne.milestone?z:ne.vert?.08*z:C(ne.renderEndTime||ne.endTime)-C(ne.startTime)}).attr("height",function(ne){return ne.vert?m.length*(s.barHeight+s.barGap)+s.barHeight*2:z}).attr("transform-origin",function(ne,se){return se=ne.order,(C(ne.startTime)+Z+.5*(C(ne.endTime)-C(ne.startTime))).toString()+"px "+(se*G+B+.5*z).toString()+"px"}).attr("class",function(ne){const se="task";let ie="";ne.classes.length>0&&(ie=ne.classes.join(" "));let ge=0;for(const[be,ve]of b.entries())ne.type===ve&&(ge=be%s.numberSectionStyles);let ce="";return ne.active?ne.crit?ce+=" activeCrit":ce=" active":ne.done?ne.crit?ce=" doneCrit":ce=" done":ne.crit&&(ce+=" crit"),ce.length===0&&(ce=" task"),ne.milestone&&(ce=" milestone "+ce),ne.vert&&(ce=" vert "+ce),ce+=ge,ce+=" "+ie,se+ce}),j.append("text").attr("id",function(ne){return ne.id+"-text"}).text(function(ne){return ne.task}).attr("font-size",s.fontSize).attr("x",function(ne){let se=C(ne.startTime),ie=C(ne.renderEndTime||ne.endTime);if(ne.milestone&&(se+=.5*(C(ne.endTime)-C(ne.startTime))-.5*z,ie=se+z),ne.vert)return C(ne.startTime)+Z;const ge=this.getBBox().width;return ge>ie-se?ie+ge+1.5*s.leftPadding>W?se+Z-5:ie+Z+5:(ie-se)/2+se+Z}).attr("y",function(ne,se){return ne.vert?s.gridLineStartPadding+m.length*(s.barHeight+s.barGap)+60:(se=ne.order,se*G+s.barHeight/2+(s.fontSize/2-2)+B)}).attr("text-height",z).attr("class",function(ne){const se=C(ne.startTime);let ie=C(ne.endTime);ne.milestone&&(ie=se+z);const ge=this.getBBox().width;let ce="";ne.classes.length>0&&(ce=ne.classes.join(" "));let be=0;for(const[De,ye]of b.entries())ne.type===ye&&(be=De%s.numberSectionStyles);let ve="";return ne.active&&(ne.crit?ve="activeCritText"+be:ve="activeText"+be),ne.done?ne.crit?ve=ve+" doneCritText"+be:ve=ve+" doneText"+be:ne.crit&&(ve=ve+" critText"+be),ne.milestone&&(ve+=" milestoneText"),ne.vert&&(ve+=" vertText"),ge>ie-se?ie+ge+1.5*s.leftPadding>W?ce+" taskTextOutsideLeft taskTextOutside"+be+" "+ve:ce+" taskTextOutsideRight taskTextOutside"+be+" "+ve+" width-"+ge:ce+" taskText taskText"+be+" "+ve+" width-"+ge}),nn().securityLevel==="sandbox"){let ne;ne=gn("#i"+t);const se=ne.nodes()[0].contentDocument;j.filter(function(ie){return ee.has(ie.id)}).each(function(ie){var ge=se.querySelector("#"+ie.id),ce=se.querySelector("#"+ie.id+"-text");const be=ge.parentNode;var ve=se.createElement("a");ve.setAttribute("xlink:href",ee.get(ie.id)),ve.setAttribute("target","_top"),be.appendChild(ve),ve.appendChild(ge),ve.appendChild(ce)})}}X(I,"drawRects");function N($,G,B,Z,z,Y,W,Q){if(W.length===0&&Q.length===0)return;let V,j;for(const{startTime:ge,endTime:ce}of Y)(V===void 0||gej)&&(j=ce);if(!V||!j)return;if(Fc(j).diff(Fc(V),"year")>5){it.warn("The difference between the min and max time is more than 5 years. This will cause performance issues. Skipping drawing exclude days.");return}const ee=a.db.getDateFormat(),te=[];let ne=null,se=Fc(V);for(;se.valueOf()<=j;)a.db.isInvalidDate(se,ee,W,Q)?ne?ne.end=se:ne={start:se,end:se}:ne&&(te.push(ne),ne=null),se=se.add(1,"d");S.append("g").selectAll("rect").data(te).enter().append("rect").attr("id",ge=>"exclude-"+ge.start.format("YYYY-MM-DD")).attr("x",ge=>C(ge.start.startOf("day"))+B).attr("y",s.gridLineStartPadding).attr("width",ge=>C(ge.end.endOf("day"))-C(ge.start.startOf("day"))).attr("height",z-G-s.gridLineStartPadding).attr("transform-origin",function(ge,ce){return(C(ge.start)+B+.5*(C(ge.end)-C(ge.start))).toString()+"px "+(ce*$+.5*z).toString()+"px"}).attr("class","exclude-range")}X(N,"drawExcludeDays");function L($,G,B,Z){if(B<=0||$>G)return 1/0;const z=G-$,Y=Fc.duration({[Z??"day"]:B}).asMilliseconds();return Y<=0?1/0:Math.ceil(z/Y)}X(L,"getEstimatedTickCount");function P($,G,B,Z){const z=a.db.getDateFormat(),Y=a.db.getAxisFormat();let W;Y?W=Y:z==="D"?W="%d":W=s.axisFormat??"%Y-%m-%d";let Q=ILn(C).tickSize(-Z+G+s.gridLineStartPadding).tickFormat(Nj(W));const j=/^([1-9]\d*)(millisecond|second|minute|hour|day|week|month)$/.exec(a.db.getTickInterval()||s.tickInterval);if(j!==null){const ee=parseInt(j[1],10);if(isNaN(ee)||ee<=0)it.warn(`Invalid tick interval value: "${j[1]}". Skipping custom tick interval.`);else{const te=j[2],ne=a.db.getWeekday()||s.weekday,se=C.domain(),ie=se[0],ge=se[1],ce=L(ie,ge,ee,te);if(ce>Qit)it.warn(`The tick interval "${ee}${te}" would generate ${ce} ticks, which exceeds the maximum allowed (${Qit}). This may indicate an invalid date or time range. Skipping custom tick interval.`);else switch(te){case"millisecond":Q.ticks(VO.every(ee));break;case"second":Q.ticks(WC.every(ee));break;case"minute":Q.ticks(DF.every(ee));break;case"hour":Q.ticks(MF.every(ee));break;case"day":Q.ticks(tR.every(ee));break;case"week":Q.ticks(nTn[ne].every(ee));break;case"month":Q.ticks(PF.every(ee));break}}}if(S.append("g").attr("class","grid").attr("transform","translate("+$+", "+(Z-50)+")").call(Q).selectAll("text").style("text-anchor","middle").attr("fill","#000").attr("stroke","none").attr("font-size",10).attr("dy","1em"),a.db.topAxisEnabled()||s.topAxis){let ee=RLn(C).tickSize(-Z+G+s.gridLineStartPadding).tickFormat(Nj(W));if(j!==null){const te=parseInt(j[1],10);if(isNaN(te)||te<=0)it.warn(`Invalid tick interval value: "${j[1]}". Skipping custom tick interval.`);else{const ne=j[2],se=a.db.getWeekday()||s.weekday,ie=C.domain(),ge=ie[0],ce=ie[1];if(L(ge,ce,te,ne)<=Qit)switch(ne){case"millisecond":ee.ticks(VO.every(te));break;case"second":ee.ticks(WC.every(te));break;case"minute":ee.ticks(DF.every(te));break;case"hour":ee.ticks(MF.every(te));break;case"day":ee.ticks(tR.every(te));break;case"week":ee.ticks(nTn[se].every(te));break;case"month":ee.ticks(PF.every(te));break}}}S.append("g").attr("class","grid").attr("transform","translate("+$+", "+G+")").call(ee).selectAll("text").style("text-anchor","middle").attr("fill","#000").attr("stroke","none").attr("font-size",10)}}X(P,"makeGrid");function M($,G){let B=0;const Z=Object.keys(_).map(z=>[z,_[z]]);S.append("g").selectAll("text").data(Z).enter().append(function(z){const Y=z[0].split(Ti.lineBreakRegex),W=-(Y.length-1)/2,Q=f.createElementNS("http://www.w3.org/2000/svg","text");Q.setAttribute("dy",W+"em");for(const[V,j]of Y.entries()){const ee=f.createElementNS("http://www.w3.org/2000/svg","tspan");ee.setAttribute("alignment-baseline","central"),ee.setAttribute("x","10"),V>0&&ee.setAttribute("dy","1em"),ee.textContent=j,Q.appendChild(ee)}return Q}).attr("x",10).attr("y",function(z,Y){if(Y>0)for(let W=0;W` + .mermaid-main-font { + font-family: ${e.fontFamily}; + } + + .exclude-range { + fill: ${e.excludeBkgColor}; + } + + .section { + stroke: none; + opacity: 0.2; + } + + .section0 { + fill: ${e.sectionBkgColor}; + } + + .section2 { + fill: ${e.sectionBkgColor2}; + } + + .section1, + .section3 { + fill: ${e.altSectionBkgColor}; + opacity: 0.2; + } + + .sectionTitle0 { + fill: ${e.titleColor}; + } + + .sectionTitle1 { + fill: ${e.titleColor}; + } + + .sectionTitle2 { + fill: ${e.titleColor}; + } + + .sectionTitle3 { + fill: ${e.titleColor}; + } + + .sectionTitle { + text-anchor: start; + font-family: ${e.fontFamily}; + } + + + /* Grid and axis */ + + .grid .tick { + stroke: ${e.gridColor}; + opacity: 0.8; + shape-rendering: crispEdges; + } + + .grid .tick text { + font-family: ${e.fontFamily}; + fill: ${e.textColor}; + } + + .grid path { + stroke-width: 0; + } + + + /* Today line */ + + .today { + fill: none; + stroke: ${e.todayLineColor}; + stroke-width: 2px; + } + + + /* Task styling */ + + /* Default task */ + + .task { + stroke-width: 2; + } + + .taskText { + text-anchor: middle; + font-family: ${e.fontFamily}; + } + + .taskTextOutsideRight { + fill: ${e.taskTextDarkColor}; + text-anchor: start; + font-family: ${e.fontFamily}; + } + + .taskTextOutsideLeft { + fill: ${e.taskTextDarkColor}; + text-anchor: end; + } + + + /* Special case clickable */ + + .task.clickable { + cursor: pointer; + } + + .taskText.clickable { + cursor: pointer; + fill: ${e.taskTextClickableColor} !important; + font-weight: bold; + } + + .taskTextOutsideLeft.clickable { + cursor: pointer; + fill: ${e.taskTextClickableColor} !important; + font-weight: bold; + } + + .taskTextOutsideRight.clickable { + cursor: pointer; + fill: ${e.taskTextClickableColor} !important; + font-weight: bold; + } + + + /* Specific task settings for the sections*/ + + .taskText0, + .taskText1, + .taskText2, + .taskText3 { + fill: ${e.taskTextColor}; + } + + .task0, + .task1, + .task2, + .task3 { + fill: ${e.taskBkgColor}; + stroke: ${e.taskBorderColor}; + } + + .taskTextOutside0, + .taskTextOutside2 + { + fill: ${e.taskTextOutsideColor}; + } + + .taskTextOutside1, + .taskTextOutside3 { + fill: ${e.taskTextOutsideColor}; + } + + + /* Active task */ + + .active0, + .active1, + .active2, + .active3 { + fill: ${e.activeTaskBkgColor}; + stroke: ${e.activeTaskBorderColor}; + } + + .activeText0, + .activeText1, + .activeText2, + .activeText3 { + fill: ${e.taskTextDarkColor} !important; + } + + + /* Completed task */ + + .done0, + .done1, + .done2, + .done3 { + stroke: ${e.doneTaskBorderColor}; + fill: ${e.doneTaskBkgColor}; + stroke-width: 2; + } + + .doneText0, + .doneText1, + .doneText2, + .doneText3 { + fill: ${e.taskTextDarkColor} !important; + } + + + /* Tasks on the critical line */ + + .crit0, + .crit1, + .crit2, + .crit3 { + stroke: ${e.critBorderColor}; + fill: ${e.critBkgColor}; + stroke-width: 2; + } + + .activeCrit0, + .activeCrit1, + .activeCrit2, + .activeCrit3 { + stroke: ${e.critBorderColor}; + fill: ${e.activeTaskBkgColor}; + stroke-width: 2; + } + + .doneCrit0, + .doneCrit1, + .doneCrit2, + .doneCrit3 { + stroke: ${e.critBorderColor}; + fill: ${e.doneTaskBkgColor}; + stroke-width: 2; + cursor: pointer; + shape-rendering: crispEdges; + } + + .milestone { + transform: rotate(45deg) scale(0.8,0.8); + } + + .milestoneText { + font-style: italic; + } + .doneCritText0, + .doneCritText1, + .doneCritText2, + .doneCritText3 { + fill: ${e.taskTextDarkColor} !important; + } + + .vert { + stroke: ${e.vertLineColor}; + } + + .vertText { + font-size: 15px; + text-anchor: middle; + fill: ${e.vertLineColor} !important; + } + + .activeCritText0, + .activeCritText1, + .activeCritText2, + .activeCritText3 { + fill: ${e.taskTextDarkColor} !important; + } + + .titleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.titleColor||e.textColor}; + font-family: ${e.fontFamily}; + } +`,"getStyles"),fji=dji,pji={parser:TYi,db:oji,renderer:hji,styles:fji};const gji=Object.freeze(Object.defineProperty({__proto__:null,diagram:pji},Symbol.toStringTag,{value:"Module"}));var mji={parse:X(async e=>{const t=await iL("info",e);it.debug(t)},"parse")},bji={version:fot.version+""},yji=X(()=>bji.version,"getVersion"),vji={getVersion:yji},_ji=X((e,t,r)=>{it.debug(`rendering info diagram +`+e);const a=bR(t);yv(a,100,400,!0),a.append("g").append("text").attr("x",100).attr("y",40).attr("class","version").attr("font-size",32).style("text-anchor","middle").text(`v${r}`)},"draw"),wji={draw:_ji},Eji={parser:mji,db:vji,renderer:wji};const xji=Object.freeze(Object.defineProperty({__proto__:null,diagram:Eji},Symbol.toStringTag,{value:"Module"}));var Sji=Cc.pie,qmt={sections:new Map,showData:!1},DTe=qmt.sections,Hmt=qmt.showData,Tji=structuredClone(Sji),Cji=X(()=>structuredClone(Tji),"getConfig"),Aji=X(()=>{DTe=new Map,Hmt=qmt.showData,M1()},"clear"),kji=X(({label:e,value:t})=>{if(t<0)throw new Error(`"${e}" has invalid value: ${t}. Negative values are not allowed in pie charts. All slice values must be >= 0.`);DTe.has(e)||(DTe.set(e,t),it.debug(`added new section: ${e}, with value: ${t}`))},"addSection"),Rji=X(()=>DTe,"getSections"),Iji=X(e=>{Hmt=e},"setShowData"),Nji=X(()=>Hmt,"getShowData"),sKn={getConfig:Cji,clear:Aji,setDiagramTitle:Og,getDiagramTitle:P1,setAccTitle:N1,getAccTitle:Mp,setAccDescription:Pp,getAccDescription:Bp,addSection:kji,getSections:Rji,setShowData:Iji,getShowData:Nji},Oji=X((e,t)=>{z$(e,t),t.setShowData(e.showData),e.sections.map(t.addSection)},"populateDb"),Lji={parse:X(async e=>{const t=await iL("pie",e);it.debug(t),Oji(t,sKn)},"parse")},Dji=X(e=>` + .pieCircle{ + stroke: ${e.pieStrokeColor}; + stroke-width : ${e.pieStrokeWidth}; + opacity : ${e.pieOpacity}; + } + .pieOuterCircle{ + stroke: ${e.pieOuterStrokeColor}; + stroke-width: ${e.pieOuterStrokeWidth}; + fill: none; + } + .pieTitleText { + text-anchor: middle; + font-size: ${e.pieTitleTextSize}; + fill: ${e.pieTitleTextColor}; + font-family: ${e.fontFamily}; + } + .slice { + font-family: ${e.fontFamily}; + fill: ${e.pieSectionTextColor}; + font-size:${e.pieSectionTextSize}; + // fill: white; + } + .legend text { + fill: ${e.pieLegendTextColor}; + font-family: ${e.fontFamily}; + font-size: ${e.pieLegendTextSize}; + } +`,"getStyles"),Mji=Dji,Pji=X(e=>{const t=[...e.values()].reduce((s,o)=>s+o,0),r=[...e.entries()].map(([s,o])=>({label:s,value:o})).filter(s=>s.value/t*100>=1).sort((s,o)=>o.value-s.value);return ADn().value(s=>s.value)(r)},"createPieArcs"),Bji=X((e,t,r,a)=>{it.debug(`rendering pie chart +`+e);const s=a.db,o=nn(),u=cv(s.getConfig(),o.pie),h=40,f=18,p=4,m=450,b=m,_=bR(t),w=_.append("g");w.attr("transform","translate("+b/2+","+m/2+")");const{themeVariables:S}=o;let[C]=N$(S.pieOuterStrokeWidth);C??(C=2);const A=u.textPosition,k=Math.min(b,m)/2-h,I=_S().innerRadius(0).outerRadius(k),N=_S().innerRadius(k*A).outerRadius(k*A);w.append("circle").attr("cx",0).attr("cy",0).attr("r",k+C/2).attr("class","pieOuterCircle");const L=s.getSections(),P=Pji(L),M=[S.pie1,S.pie2,S.pie3,S.pie4,S.pie5,S.pie6,S.pie7,S.pie8,S.pie9,S.pie10,S.pie11,S.pie12];let F=0;L.forEach(Y=>{F+=Y});const U=P.filter(Y=>(Y.data.value/F*100).toFixed(0)!=="0"),$=cA(M);w.selectAll("mySlices").data(U).enter().append("path").attr("d",I).attr("fill",Y=>$(Y.data.label)).attr("class","pieCircle"),w.selectAll("mySlices").data(U).enter().append("text").text(Y=>(Y.data.value/F*100).toFixed(0)+"%").attr("transform",Y=>"translate("+N.centroid(Y)+")").style("text-anchor","middle").attr("class","slice"),w.append("text").text(s.getDiagramTitle()).attr("x",0).attr("y",-400/2).attr("class","pieTitleText");const G=[...L.entries()].map(([Y,W])=>({label:Y,value:W})),B=w.selectAll(".legend").data(G).enter().append("g").attr("class","legend").attr("transform",(Y,W)=>{const Q=f+p,V=Q*G.length/2,j=12*f,ee=W*Q-V;return"translate("+j+","+ee+")"});B.append("rect").attr("width",f).attr("height",f).style("fill",Y=>$(Y.label)).style("stroke",Y=>$(Y.label)),B.append("text").attr("x",f+p).attr("y",f-p).text(Y=>s.getShowData()?`${Y.label} [${Y.value}]`:Y.label);const Z=Math.max(...B.selectAll("text").nodes().map(Y=>(Y==null?void 0:Y.getBoundingClientRect().width)??0)),z=b+h+f+p+Z;_.attr("viewBox",`0 0 ${z} ${m}`),yv(_,m,z,u.useMaxWidth)},"draw"),Fji={draw:Bji},$ji={parser:Lji,db:sKn,renderer:Fji,styles:Mji};const Uji=Object.freeze(Object.defineProperty({__proto__:null,diagram:$ji},Symbol.toStringTag,{value:"Module"}));var _ut=function(){var e=X(function(Xe,fe,Qe,Ke){for(Qe=Qe||{},Ke=Xe.length;Ke--;Qe[Xe[Ke]]=fe);return Qe},"o"),t=[1,3],r=[1,4],a=[1,5],s=[1,6],o=[1,7],u=[1,4,5,10,12,13,14,18,25,35,37,39,41,42,48,50,51,52,53,54,55,56,57,60,61,63,64,65,66,67],h=[1,4,5,10,12,13,14,18,25,28,35,37,39,41,42,48,50,51,52,53,54,55,56,57,60,61,63,64,65,66,67],f=[55,56,57],p=[2,36],m=[1,37],b=[1,36],_=[1,38],w=[1,35],S=[1,43],C=[1,41],A=[1,14],k=[1,23],I=[1,18],N=[1,19],L=[1,20],P=[1,21],M=[1,22],F=[1,24],U=[1,25],$=[1,26],G=[1,27],B=[1,28],Z=[1,29],z=[1,32],Y=[1,33],W=[1,34],Q=[1,39],V=[1,40],j=[1,42],ee=[1,44],te=[1,62],ne=[1,61],se=[4,5,8,10,12,13,14,18,44,47,49,55,56,57,63,64,65,66,67],ie=[1,65],ge=[1,66],ce=[1,67],be=[1,68],ve=[1,69],De=[1,70],ye=[1,71],Ee=[1,72],he=[1,73],we=[1,74],Ce=[1,75],Ie=[1,76],Le=[4,5,6,7,8,9,10,11,12,13,14,15,18],Fe=[1,90],Ve=[1,91],Oe=[1,92],Dt=[1,99],ot=[1,93],sn=[1,96],Kt=[1,94],Ft=[1,95],Je=[1,97],ht=[1,98],et=[1,102],qe=[10,55,56,57],He=[4,5,6,8,10,11,13,17,18,19,20,55,56,57],Ge={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,idStringToken:3,ALPHA:4,NUM:5,NODE_STRING:6,DOWN:7,MINUS:8,DEFAULT:9,COMMA:10,COLON:11,AMP:12,BRKT:13,MULT:14,UNICODE_TEXT:15,styleComponent:16,UNIT:17,SPACE:18,STYLE:19,PCT:20,idString:21,style:22,stylesOpt:23,classDefStatement:24,CLASSDEF:25,start:26,eol:27,QUADRANT:28,document:29,line:30,statement:31,axisDetails:32,quadrantDetails:33,points:34,title:35,title_value:36,acc_title:37,acc_title_value:38,acc_descr:39,acc_descr_value:40,acc_descr_multiline_value:41,section:42,text:43,point_start:44,point_x:45,point_y:46,class_name:47,"X-AXIS":48,"AXIS-TEXT-DELIMITER":49,"Y-AXIS":50,QUADRANT_1:51,QUADRANT_2:52,QUADRANT_3:53,QUADRANT_4:54,NEWLINE:55,SEMI:56,EOF:57,alphaNumToken:58,textNoTagsToken:59,STR:60,MD_STR:61,alphaNum:62,PUNCTUATION:63,PLUS:64,EQUALS:65,DOT:66,UNDERSCORE:67,$accept:0,$end:1},terminals_:{2:"error",4:"ALPHA",5:"NUM",6:"NODE_STRING",7:"DOWN",8:"MINUS",9:"DEFAULT",10:"COMMA",11:"COLON",12:"AMP",13:"BRKT",14:"MULT",15:"UNICODE_TEXT",17:"UNIT",18:"SPACE",19:"STYLE",20:"PCT",25:"CLASSDEF",28:"QUADRANT",35:"title",36:"title_value",37:"acc_title",38:"acc_title_value",39:"acc_descr",40:"acc_descr_value",41:"acc_descr_multiline_value",42:"section",44:"point_start",45:"point_x",46:"point_y",47:"class_name",48:"X-AXIS",49:"AXIS-TEXT-DELIMITER",50:"Y-AXIS",51:"QUADRANT_1",52:"QUADRANT_2",53:"QUADRANT_3",54:"QUADRANT_4",55:"NEWLINE",56:"SEMI",57:"EOF",60:"STR",61:"MD_STR",63:"PUNCTUATION",64:"PLUS",65:"EQUALS",66:"DOT",67:"UNDERSCORE"},productions_:[0,[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[16,1],[21,1],[21,2],[22,1],[22,2],[23,1],[23,3],[24,5],[26,2],[26,2],[26,2],[29,0],[29,2],[30,2],[31,0],[31,1],[31,2],[31,1],[31,1],[31,1],[31,2],[31,2],[31,2],[31,1],[31,1],[34,4],[34,5],[34,5],[34,6],[32,4],[32,3],[32,2],[32,4],[32,3],[32,2],[33,2],[33,2],[33,2],[33,2],[27,1],[27,1],[27,1],[43,1],[43,2],[43,1],[43,1],[62,1],[62,2],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[59,1],[59,1],[59,1]],performAction:X(function(fe,Qe,Ke,mt,lt,$t,Ut){var Jt=$t.length-1;switch(lt){case 23:this.$=$t[Jt];break;case 24:this.$=$t[Jt-1]+""+$t[Jt];break;case 26:this.$=$t[Jt-1]+$t[Jt];break;case 27:this.$=[$t[Jt].trim()];break;case 28:$t[Jt-2].push($t[Jt].trim()),this.$=$t[Jt-2];break;case 29:this.$=$t[Jt-4],mt.addClass($t[Jt-2],$t[Jt]);break;case 37:this.$=[];break;case 42:this.$=$t[Jt].trim(),mt.setDiagramTitle(this.$);break;case 43:this.$=$t[Jt].trim(),mt.setAccTitle(this.$);break;case 44:case 45:this.$=$t[Jt].trim(),mt.setAccDescription(this.$);break;case 46:mt.addSection($t[Jt].substr(8)),this.$=$t[Jt].substr(8);break;case 47:mt.addPoint($t[Jt-3],"",$t[Jt-1],$t[Jt],[]);break;case 48:mt.addPoint($t[Jt-4],$t[Jt-3],$t[Jt-1],$t[Jt],[]);break;case 49:mt.addPoint($t[Jt-4],"",$t[Jt-2],$t[Jt-1],$t[Jt]);break;case 50:mt.addPoint($t[Jt-5],$t[Jt-4],$t[Jt-2],$t[Jt-1],$t[Jt]);break;case 51:mt.setXAxisLeftText($t[Jt-2]),mt.setXAxisRightText($t[Jt]);break;case 52:$t[Jt-1].text+=" ⟶ ",mt.setXAxisLeftText($t[Jt-1]);break;case 53:mt.setXAxisLeftText($t[Jt]);break;case 54:mt.setYAxisBottomText($t[Jt-2]),mt.setYAxisTopText($t[Jt]);break;case 55:$t[Jt-1].text+=" ⟶ ",mt.setYAxisBottomText($t[Jt-1]);break;case 56:mt.setYAxisBottomText($t[Jt]);break;case 57:mt.setQuadrant1Text($t[Jt]);break;case 58:mt.setQuadrant2Text($t[Jt]);break;case 59:mt.setQuadrant3Text($t[Jt]);break;case 60:mt.setQuadrant4Text($t[Jt]);break;case 64:this.$={text:$t[Jt],type:"text"};break;case 65:this.$={text:$t[Jt-1].text+""+$t[Jt],type:$t[Jt-1].type};break;case 66:this.$={text:$t[Jt],type:"text"};break;case 67:this.$={text:$t[Jt],type:"markdown"};break;case 68:this.$=$t[Jt];break;case 69:this.$=$t[Jt-1]+""+$t[Jt];break}},"anonymous"),table:[{18:t,26:1,27:2,28:r,55:a,56:s,57:o},{1:[3]},{18:t,26:8,27:2,28:r,55:a,56:s,57:o},{18:t,26:9,27:2,28:r,55:a,56:s,57:o},e(u,[2,33],{29:10}),e(h,[2,61]),e(h,[2,62]),e(h,[2,63]),{1:[2,30]},{1:[2,31]},e(f,p,{30:11,31:12,24:13,32:15,33:16,34:17,43:30,58:31,1:[2,32],4:m,5:b,10:_,12:w,13:S,14:C,18:A,25:k,35:I,37:N,39:L,41:P,42:M,48:F,50:U,51:$,52:G,53:B,54:Z,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee}),e(u,[2,34]),{27:45,55:a,56:s,57:o},e(f,[2,37]),e(f,p,{24:13,32:15,33:16,34:17,43:30,58:31,31:46,4:m,5:b,10:_,12:w,13:S,14:C,18:A,25:k,35:I,37:N,39:L,41:P,42:M,48:F,50:U,51:$,52:G,53:B,54:Z,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee}),e(f,[2,39]),e(f,[2,40]),e(f,[2,41]),{36:[1,47]},{38:[1,48]},{40:[1,49]},e(f,[2,45]),e(f,[2,46]),{18:[1,50]},{4:m,5:b,10:_,12:w,13:S,14:C,43:51,58:31,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee},{4:m,5:b,10:_,12:w,13:S,14:C,43:52,58:31,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee},{4:m,5:b,10:_,12:w,13:S,14:C,43:53,58:31,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee},{4:m,5:b,10:_,12:w,13:S,14:C,43:54,58:31,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee},{4:m,5:b,10:_,12:w,13:S,14:C,43:55,58:31,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee},{4:m,5:b,10:_,12:w,13:S,14:C,43:56,58:31,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee},{4:m,5:b,8:te,10:_,12:w,13:S,14:C,18:ne,44:[1,57],47:[1,58],58:60,59:59,63:W,64:Q,65:V,66:j,67:ee},e(se,[2,64]),e(se,[2,66]),e(se,[2,67]),e(se,[2,70]),e(se,[2,71]),e(se,[2,72]),e(se,[2,73]),e(se,[2,74]),e(se,[2,75]),e(se,[2,76]),e(se,[2,77]),e(se,[2,78]),e(se,[2,79]),e(se,[2,80]),e(u,[2,35]),e(f,[2,38]),e(f,[2,42]),e(f,[2,43]),e(f,[2,44]),{3:64,4:ie,5:ge,6:ce,7:be,8:ve,9:De,10:ye,11:Ee,12:he,13:we,14:Ce,15:Ie,21:63},e(f,[2,53],{59:59,58:60,4:m,5:b,8:te,10:_,12:w,13:S,14:C,18:ne,49:[1,77],63:W,64:Q,65:V,66:j,67:ee}),e(f,[2,56],{59:59,58:60,4:m,5:b,8:te,10:_,12:w,13:S,14:C,18:ne,49:[1,78],63:W,64:Q,65:V,66:j,67:ee}),e(f,[2,57],{59:59,58:60,4:m,5:b,8:te,10:_,12:w,13:S,14:C,18:ne,63:W,64:Q,65:V,66:j,67:ee}),e(f,[2,58],{59:59,58:60,4:m,5:b,8:te,10:_,12:w,13:S,14:C,18:ne,63:W,64:Q,65:V,66:j,67:ee}),e(f,[2,59],{59:59,58:60,4:m,5:b,8:te,10:_,12:w,13:S,14:C,18:ne,63:W,64:Q,65:V,66:j,67:ee}),e(f,[2,60],{59:59,58:60,4:m,5:b,8:te,10:_,12:w,13:S,14:C,18:ne,63:W,64:Q,65:V,66:j,67:ee}),{45:[1,79]},{44:[1,80]},e(se,[2,65]),e(se,[2,81]),e(se,[2,82]),e(se,[2,83]),{3:82,4:ie,5:ge,6:ce,7:be,8:ve,9:De,10:ye,11:Ee,12:he,13:we,14:Ce,15:Ie,18:[1,81]},e(Le,[2,23]),e(Le,[2,1]),e(Le,[2,2]),e(Le,[2,3]),e(Le,[2,4]),e(Le,[2,5]),e(Le,[2,6]),e(Le,[2,7]),e(Le,[2,8]),e(Le,[2,9]),e(Le,[2,10]),e(Le,[2,11]),e(Le,[2,12]),e(f,[2,52],{58:31,43:83,4:m,5:b,10:_,12:w,13:S,14:C,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee}),e(f,[2,55],{58:31,43:84,4:m,5:b,10:_,12:w,13:S,14:C,60:z,61:Y,63:W,64:Q,65:V,66:j,67:ee}),{46:[1,85]},{45:[1,86]},{4:Fe,5:Ve,6:Oe,8:Dt,11:ot,13:sn,16:89,17:Kt,18:Ft,19:Je,20:ht,22:88,23:87},e(Le,[2,24]),e(f,[2,51],{59:59,58:60,4:m,5:b,8:te,10:_,12:w,13:S,14:C,18:ne,63:W,64:Q,65:V,66:j,67:ee}),e(f,[2,54],{59:59,58:60,4:m,5:b,8:te,10:_,12:w,13:S,14:C,18:ne,63:W,64:Q,65:V,66:j,67:ee}),e(f,[2,47],{22:88,16:89,23:100,4:Fe,5:Ve,6:Oe,8:Dt,11:ot,13:sn,17:Kt,18:Ft,19:Je,20:ht}),{46:[1,101]},e(f,[2,29],{10:et}),e(qe,[2,27],{16:103,4:Fe,5:Ve,6:Oe,8:Dt,11:ot,13:sn,17:Kt,18:Ft,19:Je,20:ht}),e(He,[2,25]),e(He,[2,13]),e(He,[2,14]),e(He,[2,15]),e(He,[2,16]),e(He,[2,17]),e(He,[2,18]),e(He,[2,19]),e(He,[2,20]),e(He,[2,21]),e(He,[2,22]),e(f,[2,49],{10:et}),e(f,[2,48],{22:88,16:89,23:104,4:Fe,5:Ve,6:Oe,8:Dt,11:ot,13:sn,17:Kt,18:Ft,19:Je,20:ht}),{4:Fe,5:Ve,6:Oe,8:Dt,11:ot,13:sn,16:89,17:Kt,18:Ft,19:Je,20:ht,22:105},e(He,[2,26]),e(f,[2,50],{10:et}),e(qe,[2,28],{16:103,4:Fe,5:Ve,6:Oe,8:Dt,11:ot,13:sn,17:Kt,18:Ft,19:Je,20:ht})],defaultActions:{8:[2,30],9:[2,31]},parseError:X(function(fe,Qe){if(Qe.recoverable)this.trace(fe);else{var Ke=new Error(fe);throw Ke.hash=Qe,Ke}},"parseError"),parse:X(function(fe){var Qe=this,Ke=[0],mt=[],lt=[null],$t=[],Ut=this.table,Jt="",wn=0,Vn=0,Wn=2,Dn=1,zn=$t.slice.call(arguments,1),vn=Object.create(this.lexer),Cn={yy:{}};for(var Ar in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Ar)&&(Cn.yy[Ar]=this.yy[Ar]);vn.setInput(fe,Cn.yy),Cn.yy.lexer=vn,Cn.yy.parser=this,typeof vn.yylloc>"u"&&(vn.yylloc={});var ur=vn.yylloc;$t.push(ur);var On=vn.options&&vn.options.ranges;typeof Cn.yy.parseError=="function"?this.parseError=Cn.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Ir(La){Ke.length=Ke.length-2*La,lt.length=lt.length-La,$t.length=$t.length-La}X(Ir,"popStack");function Ln(){var La;return La=mt.pop()||vn.lex()||Dn,typeof La!="number"&&(La instanceof Array&&(mt=La,La=mt.pop()),La=Qe.symbols_[La]||La),La}X(Ln,"lex");for(var pr,Cr,Zr,Pr,Ci={},ds,ta,Os,uo;;){if(Cr=Ke[Ke.length-1],this.defaultActions[Cr]?Zr=this.defaultActions[Cr]:((pr===null||typeof pr>"u")&&(pr=Ln()),Zr=Ut[Cr]&&Ut[Cr][pr]),typeof Zr>"u"||!Zr.length||!Zr[0]){var Ls="";uo=[];for(ds in Ut[Cr])this.terminals_[ds]&&ds>Wn&&uo.push("'"+this.terminals_[ds]+"'");vn.showPosition?Ls="Parse error on line "+(wn+1)+`: +`+vn.showPosition()+` +Expecting `+uo.join(", ")+", got '"+(this.terminals_[pr]||pr)+"'":Ls="Parse error on line "+(wn+1)+": Unexpected "+(pr==Dn?"end of input":"'"+(this.terminals_[pr]||pr)+"'"),this.parseError(Ls,{text:vn.match,token:this.terminals_[pr]||pr,line:vn.yylineno,loc:ur,expected:uo})}if(Zr[0]instanceof Array&&Zr.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Cr+", token: "+pr);switch(Zr[0]){case 1:Ke.push(pr),lt.push(vn.yytext),$t.push(vn.yylloc),Ke.push(Zr[1]),pr=null,Vn=vn.yyleng,Jt=vn.yytext,wn=vn.yylineno,ur=vn.yylloc;break;case 2:if(ta=this.productions_[Zr[1]][1],Ci.$=lt[lt.length-ta],Ci._$={first_line:$t[$t.length-(ta||1)].first_line,last_line:$t[$t.length-1].last_line,first_column:$t[$t.length-(ta||1)].first_column,last_column:$t[$t.length-1].last_column},On&&(Ci._$.range=[$t[$t.length-(ta||1)].range[0],$t[$t.length-1].range[1]]),Pr=this.performAction.apply(Ci,[Jt,Vn,wn,Cn.yy,Zr[1],lt,$t].concat(zn)),typeof Pr<"u")return Pr;ta&&(Ke=Ke.slice(0,-1*ta*2),lt=lt.slice(0,-1*ta),$t=$t.slice(0,-1*ta)),Ke.push(this.productions_[Zr[1]][0]),lt.push(Ci.$),$t.push(Ci._$),Os=Ut[Ke[Ke.length-2]][Ke[Ke.length-1]],Ke.push(Os);break;case 3:return!0}}return!0},"parse")},Ye=function(){var Xe={EOF:1,parseError:X(function(Qe,Ke){if(this.yy.parser)this.yy.parser.parseError(Qe,Ke);else throw new Error(Qe)},"parseError"),setInput:X(function(fe,Qe){return this.yy=Qe||this.yy||{},this._input=fe,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var fe=this._input[0];this.yytext+=fe,this.yyleng++,this.offset++,this.match+=fe,this.matched+=fe;var Qe=fe.match(/(?:\r\n?|\n).*/g);return Qe?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),fe},"input"),unput:X(function(fe){var Qe=fe.length,Ke=fe.split(/(?:\r\n?|\n)/g);this._input=fe+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-Qe),this.offset-=Qe;var mt=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Ke.length-1&&(this.yylineno-=Ke.length-1);var lt=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Ke?(Ke.length===mt.length?this.yylloc.first_column:0)+mt[mt.length-Ke.length].length-Ke[0].length:this.yylloc.first_column-Qe},this.options.ranges&&(this.yylloc.range=[lt[0],lt[0]+this.yyleng-Qe]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(fe){this.unput(this.match.slice(fe))},"less"),pastInput:X(function(){var fe=this.matched.substr(0,this.matched.length-this.match.length);return(fe.length>20?"...":"")+fe.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var fe=this.match;return fe.length<20&&(fe+=this._input.substr(0,20-fe.length)),(fe.substr(0,20)+(fe.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var fe=this.pastInput(),Qe=new Array(fe.length+1).join("-");return fe+this.upcomingInput()+` +`+Qe+"^"},"showPosition"),test_match:X(function(fe,Qe){var Ke,mt,lt;if(this.options.backtrack_lexer&&(lt={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(lt.yylloc.range=this.yylloc.range.slice(0))),mt=fe[0].match(/(?:\r\n?|\n).*/g),mt&&(this.yylineno+=mt.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:mt?mt[mt.length-1].length-mt[mt.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+fe[0].length},this.yytext+=fe[0],this.match+=fe[0],this.matches=fe,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(fe[0].length),this.matched+=fe[0],Ke=this.performAction.call(this,this.yy,this,Qe,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Ke)return Ke;if(this._backtrack){for(var $t in lt)this[$t]=lt[$t];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var fe,Qe,Ke,mt;this._more||(this.yytext="",this.match="");for(var lt=this._currentRules(),$t=0;$tQe[0].length)){if(Qe=Ke,mt=$t,this.options.backtrack_lexer){if(fe=this.test_match(Ke,lt[$t]),fe!==!1)return fe;if(this._backtrack){Qe=!1;continue}else return!1}else if(!this.options.flex)break}return Qe?(fe=this.test_match(Qe,lt[mt]),fe!==!1?fe:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var Qe=this.next();return Qe||this.lex()},"lex"),begin:X(function(Qe){this.conditionStack.push(Qe)},"begin"),popState:X(function(){var Qe=this.conditionStack.length-1;return Qe>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(Qe){return Qe=this.conditionStack.length-1-Math.abs(Qe||0),Qe>=0?this.conditionStack[Qe]:"INITIAL"},"topState"),pushState:X(function(Qe){this.begin(Qe)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(Qe,Ke,mt,lt){switch(mt){case 0:break;case 1:break;case 2:return 55;case 3:break;case 4:return this.begin("title"),35;case 5:return this.popState(),"title_value";case 6:return this.begin("acc_title"),37;case 7:return this.popState(),"acc_title_value";case 8:return this.begin("acc_descr"),39;case 9:return this.popState(),"acc_descr_value";case 10:this.begin("acc_descr_multiline");break;case 11:this.popState();break;case 12:return"acc_descr_multiline_value";case 13:return 48;case 14:return 50;case 15:return 49;case 16:return 51;case 17:return 52;case 18:return 53;case 19:return 54;case 20:return 25;case 21:this.begin("md_string");break;case 22:return"MD_STR";case 23:this.popState();break;case 24:this.begin("string");break;case 25:this.popState();break;case 26:return"STR";case 27:this.begin("class_name");break;case 28:return this.popState(),47;case 29:return this.begin("point_start"),44;case 30:return this.begin("point_x"),45;case 31:this.popState();break;case 32:this.popState(),this.begin("point_y");break;case 33:return this.popState(),46;case 34:return 28;case 35:return 4;case 36:return 11;case 37:return 64;case 38:return 10;case 39:return 65;case 40:return 65;case 41:return 14;case 42:return 13;case 43:return 67;case 44:return 66;case 45:return 12;case 46:return 8;case 47:return 5;case 48:return 18;case 49:return 56;case 50:return 63;case 51:return 57}},"anonymous"),rules:[/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n\r]+)/i,/^(?:%%[^\n]*)/i,/^(?:title\b)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?: *x-axis *)/i,/^(?: *y-axis *)/i,/^(?: *--+> *)/i,/^(?: *quadrant-1 *)/i,/^(?: *quadrant-2 *)/i,/^(?: *quadrant-3 *)/i,/^(?: *quadrant-4 *)/i,/^(?:classDef\b)/i,/^(?:["][`])/i,/^(?:[^`"]+)/i,/^(?:[`]["])/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?::::)/i,/^(?:^\w+)/i,/^(?:\s*:\s*\[\s*)/i,/^(?:(1)|(0(.\d+)?))/i,/^(?:\s*\] *)/i,/^(?:\s*,\s*)/i,/^(?:(1)|(0(.\d+)?))/i,/^(?: *quadrantChart *)/i,/^(?:[A-Za-z]+)/i,/^(?::)/i,/^(?:\+)/i,/^(?:,)/i,/^(?:=)/i,/^(?:=)/i,/^(?:\*)/i,/^(?:#)/i,/^(?:[\_])/i,/^(?:\.)/i,/^(?:&)/i,/^(?:-)/i,/^(?:[0-9]+)/i,/^(?:\s)/i,/^(?:;)/i,/^(?:[!"#$%&'*+,-.`?\\_/])/i,/^(?:$)/i],conditions:{class_name:{rules:[28],inclusive:!1},point_y:{rules:[33],inclusive:!1},point_x:{rules:[32],inclusive:!1},point_start:{rules:[30,31],inclusive:!1},acc_descr_multiline:{rules:[11,12],inclusive:!1},acc_descr:{rules:[9],inclusive:!1},acc_title:{rules:[7],inclusive:!1},title:{rules:[5],inclusive:!1},md_string:{rules:[22,23],inclusive:!1},string:{rules:[25,26],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,6,8,10,13,14,15,16,17,18,19,20,21,24,27,29,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],inclusive:!0}}};return Xe}();Ge.lexer=Ye;function Ae(){this.yy={}}return X(Ae,"Parser"),Ae.prototype=Ge,Ge.Parser=Ae,new Ae}();_ut.parser=_ut;var zji=_ut,By=JCe(),HY,Gji=(HY=class{constructor(){this.classes=new Map,this.config=this.getDefaultConfig(),this.themeConfig=this.getDefaultThemeConfig(),this.data=this.getDefaultData()}getDefaultData(){return{titleText:"",quadrant1Text:"",quadrant2Text:"",quadrant3Text:"",quadrant4Text:"",xAxisLeftText:"",xAxisRightText:"",yAxisBottomText:"",yAxisTopText:"",points:[]}}getDefaultConfig(){var t,r,a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I;return{showXAxis:!0,showYAxis:!0,showTitle:!0,chartHeight:((t=Cc.quadrantChart)==null?void 0:t.chartWidth)||500,chartWidth:((r=Cc.quadrantChart)==null?void 0:r.chartHeight)||500,titlePadding:((a=Cc.quadrantChart)==null?void 0:a.titlePadding)||10,titleFontSize:((s=Cc.quadrantChart)==null?void 0:s.titleFontSize)||20,quadrantPadding:((o=Cc.quadrantChart)==null?void 0:o.quadrantPadding)||5,xAxisLabelPadding:((u=Cc.quadrantChart)==null?void 0:u.xAxisLabelPadding)||5,yAxisLabelPadding:((h=Cc.quadrantChart)==null?void 0:h.yAxisLabelPadding)||5,xAxisLabelFontSize:((f=Cc.quadrantChart)==null?void 0:f.xAxisLabelFontSize)||16,yAxisLabelFontSize:((p=Cc.quadrantChart)==null?void 0:p.yAxisLabelFontSize)||16,quadrantLabelFontSize:((m=Cc.quadrantChart)==null?void 0:m.quadrantLabelFontSize)||16,quadrantTextTopPadding:((b=Cc.quadrantChart)==null?void 0:b.quadrantTextTopPadding)||5,pointTextPadding:((_=Cc.quadrantChart)==null?void 0:_.pointTextPadding)||5,pointLabelFontSize:((w=Cc.quadrantChart)==null?void 0:w.pointLabelFontSize)||12,pointRadius:((S=Cc.quadrantChart)==null?void 0:S.pointRadius)||5,xAxisPosition:((C=Cc.quadrantChart)==null?void 0:C.xAxisPosition)||"top",yAxisPosition:((A=Cc.quadrantChart)==null?void 0:A.yAxisPosition)||"left",quadrantInternalBorderStrokeWidth:((k=Cc.quadrantChart)==null?void 0:k.quadrantInternalBorderStrokeWidth)||1,quadrantExternalBorderStrokeWidth:((I=Cc.quadrantChart)==null?void 0:I.quadrantExternalBorderStrokeWidth)||2}}getDefaultThemeConfig(){return{quadrant1Fill:By.quadrant1Fill,quadrant2Fill:By.quadrant2Fill,quadrant3Fill:By.quadrant3Fill,quadrant4Fill:By.quadrant4Fill,quadrant1TextFill:By.quadrant1TextFill,quadrant2TextFill:By.quadrant2TextFill,quadrant3TextFill:By.quadrant3TextFill,quadrant4TextFill:By.quadrant4TextFill,quadrantPointFill:By.quadrantPointFill,quadrantPointTextFill:By.quadrantPointTextFill,quadrantXAxisTextFill:By.quadrantXAxisTextFill,quadrantYAxisTextFill:By.quadrantYAxisTextFill,quadrantTitleFill:By.quadrantTitleFill,quadrantInternalBorderStrokeFill:By.quadrantInternalBorderStrokeFill,quadrantExternalBorderStrokeFill:By.quadrantExternalBorderStrokeFill}}clear(){this.config=this.getDefaultConfig(),this.themeConfig=this.getDefaultThemeConfig(),this.data=this.getDefaultData(),this.classes=new Map,it.info("clear called")}setData(t){this.data={...this.data,...t}}addPoints(t){this.data.points=[...t,...this.data.points]}addClass(t,r){this.classes.set(t,r)}setConfig(t){it.trace("setConfig called with: ",t),this.config={...this.config,...t}}setThemeConfig(t){it.trace("setThemeConfig called with: ",t),this.themeConfig={...this.themeConfig,...t}}calculateSpace(t,r,a,s){const o=this.config.xAxisLabelPadding*2+this.config.xAxisLabelFontSize,u={top:t==="top"&&r?o:0,bottom:t==="bottom"&&r?o:0},h=this.config.yAxisLabelPadding*2+this.config.yAxisLabelFontSize,f={left:this.config.yAxisPosition==="left"&&a?h:0,right:this.config.yAxisPosition==="right"&&a?h:0},p=this.config.titleFontSize+this.config.titlePadding*2,m={top:s?p:0},b=this.config.quadrantPadding+f.left,_=this.config.quadrantPadding+u.top+m.top,w=this.config.chartWidth-this.config.quadrantPadding*2-f.left-f.right,S=this.config.chartHeight-this.config.quadrantPadding*2-u.top-u.bottom-m.top,C=w/2,A=S/2;return{xAxisSpace:u,yAxisSpace:f,titleSpace:m,quadrantSpace:{quadrantLeft:b,quadrantTop:_,quadrantWidth:w,quadrantHalfWidth:C,quadrantHeight:S,quadrantHalfHeight:A}}}getAxisLabels(t,r,a,s){const{quadrantSpace:o,titleSpace:u}=s,{quadrantHalfHeight:h,quadrantHeight:f,quadrantLeft:p,quadrantHalfWidth:m,quadrantTop:b,quadrantWidth:_}=o,w=!!this.data.xAxisRightText,S=!!this.data.yAxisTopText,C=[];return this.data.xAxisLeftText&&r&&C.push({text:this.data.xAxisLeftText,fill:this.themeConfig.quadrantXAxisTextFill,x:p+(w?m/2:0),y:t==="top"?this.config.xAxisLabelPadding+u.top:this.config.xAxisLabelPadding+b+f+this.config.quadrantPadding,fontSize:this.config.xAxisLabelFontSize,verticalPos:w?"center":"left",horizontalPos:"top",rotation:0}),this.data.xAxisRightText&&r&&C.push({text:this.data.xAxisRightText,fill:this.themeConfig.quadrantXAxisTextFill,x:p+m+(w?m/2:0),y:t==="top"?this.config.xAxisLabelPadding+u.top:this.config.xAxisLabelPadding+b+f+this.config.quadrantPadding,fontSize:this.config.xAxisLabelFontSize,verticalPos:w?"center":"left",horizontalPos:"top",rotation:0}),this.data.yAxisBottomText&&a&&C.push({text:this.data.yAxisBottomText,fill:this.themeConfig.quadrantYAxisTextFill,x:this.config.yAxisPosition==="left"?this.config.yAxisLabelPadding:this.config.yAxisLabelPadding+p+_+this.config.quadrantPadding,y:b+f-(S?h/2:0),fontSize:this.config.yAxisLabelFontSize,verticalPos:S?"center":"left",horizontalPos:"top",rotation:-90}),this.data.yAxisTopText&&a&&C.push({text:this.data.yAxisTopText,fill:this.themeConfig.quadrantYAxisTextFill,x:this.config.yAxisPosition==="left"?this.config.yAxisLabelPadding:this.config.yAxisLabelPadding+p+_+this.config.quadrantPadding,y:b+h-(S?h/2:0),fontSize:this.config.yAxisLabelFontSize,verticalPos:S?"center":"left",horizontalPos:"top",rotation:-90}),C}getQuadrants(t){const{quadrantSpace:r}=t,{quadrantHalfHeight:a,quadrantLeft:s,quadrantHalfWidth:o,quadrantTop:u}=r,h=[{text:{text:this.data.quadrant1Text,fill:this.themeConfig.quadrant1TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:s+o,y:u,width:o,height:a,fill:this.themeConfig.quadrant1Fill},{text:{text:this.data.quadrant2Text,fill:this.themeConfig.quadrant2TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:s,y:u,width:o,height:a,fill:this.themeConfig.quadrant2Fill},{text:{text:this.data.quadrant3Text,fill:this.themeConfig.quadrant3TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:s,y:u+a,width:o,height:a,fill:this.themeConfig.quadrant3Fill},{text:{text:this.data.quadrant4Text,fill:this.themeConfig.quadrant4TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:s+o,y:u+a,width:o,height:a,fill:this.themeConfig.quadrant4Fill}];for(const f of h)f.text.x=f.x+f.width/2,this.data.points.length===0?(f.text.y=f.y+f.height/2,f.text.horizontalPos="middle"):(f.text.y=f.y+this.config.quadrantTextTopPadding,f.text.horizontalPos="top");return h}getQuadrantPoints(t){const{quadrantSpace:r}=t,{quadrantHeight:a,quadrantLeft:s,quadrantTop:o,quadrantWidth:u}=r,h=sT().domain([0,1]).range([s,u+s]),f=sT().domain([0,1]).range([a+o,o]);return this.data.points.map(m=>{const b=this.classes.get(m.className);return b&&(m={...b,...m}),{x:h(m.x),y:f(m.y),fill:m.color??this.themeConfig.quadrantPointFill,radius:m.radius??this.config.pointRadius,text:{text:m.text,fill:this.themeConfig.quadrantPointTextFill,x:h(m.x),y:f(m.y)+this.config.pointTextPadding,verticalPos:"center",horizontalPos:"top",fontSize:this.config.pointLabelFontSize,rotation:0},strokeColor:m.strokeColor??this.themeConfig.quadrantPointFill,strokeWidth:m.strokeWidth??"0px"}})}getBorders(t){const r=this.config.quadrantExternalBorderStrokeWidth/2,{quadrantSpace:a}=t,{quadrantHalfHeight:s,quadrantHeight:o,quadrantLeft:u,quadrantHalfWidth:h,quadrantTop:f,quadrantWidth:p}=a;return[{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:u-r,y1:f,x2:u+p+r,y2:f},{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:u+p,y1:f+r,x2:u+p,y2:f+o-r},{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:u-r,y1:f+o,x2:u+p+r,y2:f+o},{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:u,y1:f+r,x2:u,y2:f+o-r},{strokeFill:this.themeConfig.quadrantInternalBorderStrokeFill,strokeWidth:this.config.quadrantInternalBorderStrokeWidth,x1:u+h,y1:f+r,x2:u+h,y2:f+o-r},{strokeFill:this.themeConfig.quadrantInternalBorderStrokeFill,strokeWidth:this.config.quadrantInternalBorderStrokeWidth,x1:u+r,y1:f+s,x2:u+p-r,y2:f+s}]}getTitle(t){if(t)return{text:this.data.titleText,fill:this.themeConfig.quadrantTitleFill,fontSize:this.config.titleFontSize,horizontalPos:"top",verticalPos:"center",rotation:0,y:this.config.titlePadding,x:this.config.chartWidth/2}}build(){const t=this.config.showXAxis&&!!(this.data.xAxisLeftText||this.data.xAxisRightText),r=this.config.showYAxis&&!!(this.data.yAxisTopText||this.data.yAxisBottomText),a=this.config.showTitle&&!!this.data.titleText,s=this.data.points.length>0?"bottom":this.config.xAxisPosition,o=this.calculateSpace(s,t,r,a);return{points:this.getQuadrantPoints(o),quadrants:this.getQuadrants(o),axisLabels:this.getAxisLabels(s,t,r,o),borderLines:this.getBorders(o),title:this.getTitle(a)}}},X(HY,"QuadrantBuilder"),HY),VY,cEe=(VY=class extends Error{constructor(t,r,a){super(`value for ${t} ${r} is invalid, please use a valid ${a}`),this.name="InvalidStyleError"}},X(VY,"InvalidStyleError"),VY);function wut(e){return!/^#?([\dA-Fa-f]{6}|[\dA-Fa-f]{3})$/.test(e)}X(wut,"validateHexCode");function oKn(e){return!/^\d+$/.test(e)}X(oKn,"validateNumber");function lKn(e){return!/^\d+px$/.test(e)}X(lKn,"validateSizeInPixels");var qji=nn();function qA(e){return Ic(e.trim(),qji)}X(qA,"textSanitizer");var Sm=new Gji;function cKn(e){Sm.setData({quadrant1Text:qA(e.text)})}X(cKn,"setQuadrant1Text");function uKn(e){Sm.setData({quadrant2Text:qA(e.text)})}X(uKn,"setQuadrant2Text");function hKn(e){Sm.setData({quadrant3Text:qA(e.text)})}X(hKn,"setQuadrant3Text");function dKn(e){Sm.setData({quadrant4Text:qA(e.text)})}X(dKn,"setQuadrant4Text");function fKn(e){Sm.setData({xAxisLeftText:qA(e.text)})}X(fKn,"setXAxisLeftText");function pKn(e){Sm.setData({xAxisRightText:qA(e.text)})}X(pKn,"setXAxisRightText");function gKn(e){Sm.setData({yAxisTopText:qA(e.text)})}X(gKn,"setYAxisTopText");function mKn(e){Sm.setData({yAxisBottomText:qA(e.text)})}X(mKn,"setYAxisBottomText");function Kke(e){const t={};for(const r of e){const[a,s]=r.trim().split(/\s*:\s*/);if(a==="radius"){if(oKn(s))throw new cEe(a,s,"number");t.radius=parseInt(s)}else if(a==="color"){if(wut(s))throw new cEe(a,s,"hex code");t.color=s}else if(a==="stroke-color"){if(wut(s))throw new cEe(a,s,"hex code");t.strokeColor=s}else if(a==="stroke-width"){if(lKn(s))throw new cEe(a,s,"number of pixels (eg. 10px)");t.strokeWidth=s}else throw new Error(`style named ${a} is not supported.`)}return t}X(Kke,"parseStyles");function bKn(e,t,r,a,s){const o=Kke(s);Sm.addPoints([{x:r,y:a,text:qA(e.text),className:t,...o}])}X(bKn,"addPoint");function yKn(e,t){Sm.addClass(e,Kke(t))}X(yKn,"addClass");function vKn(e){Sm.setConfig({chartWidth:e})}X(vKn,"setWidth");function _Kn(e){Sm.setConfig({chartHeight:e})}X(_Kn,"setHeight");function wKn(){const e=nn(),{themeVariables:t,quadrantChart:r}=e;return r&&Sm.setConfig(r),Sm.setThemeConfig({quadrant1Fill:t.quadrant1Fill,quadrant2Fill:t.quadrant2Fill,quadrant3Fill:t.quadrant3Fill,quadrant4Fill:t.quadrant4Fill,quadrant1TextFill:t.quadrant1TextFill,quadrant2TextFill:t.quadrant2TextFill,quadrant3TextFill:t.quadrant3TextFill,quadrant4TextFill:t.quadrant4TextFill,quadrantPointFill:t.quadrantPointFill,quadrantPointTextFill:t.quadrantPointTextFill,quadrantXAxisTextFill:t.quadrantXAxisTextFill,quadrantYAxisTextFill:t.quadrantYAxisTextFill,quadrantExternalBorderStrokeFill:t.quadrantExternalBorderStrokeFill,quadrantInternalBorderStrokeFill:t.quadrantInternalBorderStrokeFill,quadrantTitleFill:t.quadrantTitleFill}),Sm.setData({titleText:P1()}),Sm.build()}X(wKn,"getQuadrantData");var Hji=X(function(){Sm.clear(),M1()},"clear"),Vji={setWidth:vKn,setHeight:_Kn,setQuadrant1Text:cKn,setQuadrant2Text:uKn,setQuadrant3Text:hKn,setQuadrant4Text:dKn,setXAxisLeftText:fKn,setXAxisRightText:pKn,setYAxisTopText:gKn,setYAxisBottomText:mKn,parseStyles:Kke,addPoint:bKn,addClass:yKn,getQuadrantData:wKn,clear:Hji,setAccTitle:N1,getAccTitle:Mp,setDiagramTitle:Og,getDiagramTitle:P1,getAccDescription:Bp,setAccDescription:Pp},Yji=X((e,t,r,a)=>{var U,$,G;function s(B){return B==="top"?"hanging":"middle"}X(s,"getDominantBaseLine");function o(B){return B==="left"?"start":"middle"}X(o,"getTextAnchor");function u(B){return`translate(${B.x}, ${B.y}) rotate(${B.rotation||0})`}X(u,"getTransformation");const h=nn();it.debug(`Rendering quadrant chart +`+e);const f=h.securityLevel;let p;f==="sandbox"&&(p=gn("#i"+t));const b=gn(f==="sandbox"?p.nodes()[0].contentDocument.body:"body").select(`[id="${t}"]`),_=b.append("g").attr("class","main"),w=((U=h.quadrantChart)==null?void 0:U.chartWidth)??500,S=(($=h.quadrantChart)==null?void 0:$.chartHeight)??500;yv(b,S,w,((G=h.quadrantChart)==null?void 0:G.useMaxWidth)??!0),b.attr("viewBox","0 0 "+w+" "+S),a.db.setHeight(S),a.db.setWidth(w);const C=a.db.getQuadrantData(),A=_.append("g").attr("class","quadrants"),k=_.append("g").attr("class","border"),I=_.append("g").attr("class","data-points"),N=_.append("g").attr("class","labels"),L=_.append("g").attr("class","title");C.title&&L.append("text").attr("x",0).attr("y",0).attr("fill",C.title.fill).attr("font-size",C.title.fontSize).attr("dominant-baseline",s(C.title.horizontalPos)).attr("text-anchor",o(C.title.verticalPos)).attr("transform",u(C.title)).text(C.title.text),C.borderLines&&k.selectAll("line").data(C.borderLines).enter().append("line").attr("x1",B=>B.x1).attr("y1",B=>B.y1).attr("x2",B=>B.x2).attr("y2",B=>B.y2).style("stroke",B=>B.strokeFill).style("stroke-width",B=>B.strokeWidth);const P=A.selectAll("g.quadrant").data(C.quadrants).enter().append("g").attr("class","quadrant");P.append("rect").attr("x",B=>B.x).attr("y",B=>B.y).attr("width",B=>B.width).attr("height",B=>B.height).attr("fill",B=>B.fill),P.append("text").attr("x",0).attr("y",0).attr("fill",B=>B.text.fill).attr("font-size",B=>B.text.fontSize).attr("dominant-baseline",B=>s(B.text.horizontalPos)).attr("text-anchor",B=>o(B.text.verticalPos)).attr("transform",B=>u(B.text)).text(B=>B.text.text),N.selectAll("g.label").data(C.axisLabels).enter().append("g").attr("class","label").append("text").attr("x",0).attr("y",0).text(B=>B.text).attr("fill",B=>B.fill).attr("font-size",B=>B.fontSize).attr("dominant-baseline",B=>s(B.horizontalPos)).attr("text-anchor",B=>o(B.verticalPos)).attr("transform",B=>u(B));const F=I.selectAll("g.data-point").data(C.points).enter().append("g").attr("class","data-point");F.append("circle").attr("cx",B=>B.x).attr("cy",B=>B.y).attr("r",B=>B.radius).attr("fill",B=>B.fill).attr("stroke",B=>B.strokeColor).attr("stroke-width",B=>B.strokeWidth),F.append("text").attr("x",0).attr("y",0).text(B=>B.text.text).attr("fill",B=>B.text.fill).attr("font-size",B=>B.text.fontSize).attr("dominant-baseline",B=>s(B.text.horizontalPos)).attr("text-anchor",B=>o(B.text.verticalPos)).attr("transform",B=>u(B.text))},"draw"),jji={draw:Yji},Wji={parser:zji,db:Vji,renderer:jji,styles:X(()=>"","styles")};const Kji=Object.freeze(Object.defineProperty({__proto__:null,diagram:Wji},Symbol.toStringTag,{value:"Module"}));var Eut=function(){var e=X(function(W,Q,V,j){for(V=V||{},j=W.length;j--;V[W[j]]=Q);return V},"o"),t=[1,10,12,14,16,18,19,21,23],r=[2,6],a=[1,3],s=[1,5],o=[1,6],u=[1,7],h=[1,5,10,12,14,16,18,19,21,23,34,35,36],f=[1,25],p=[1,26],m=[1,28],b=[1,29],_=[1,30],w=[1,31],S=[1,32],C=[1,33],A=[1,34],k=[1,35],I=[1,36],N=[1,37],L=[1,43],P=[1,42],M=[1,47],F=[1,50],U=[1,10,12,14,16,18,19,21,23,34,35,36],$=[1,10,12,14,16,18,19,21,23,24,26,27,28,34,35,36],G=[1,10,12,14,16,18,19,21,23,24,26,27,28,34,35,36,41,42,43,44,45,46,47,48,49,50],B=[1,64],Z={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,eol:4,XYCHART:5,chartConfig:6,document:7,CHART_ORIENTATION:8,statement:9,title:10,text:11,X_AXIS:12,parseXAxis:13,Y_AXIS:14,parseYAxis:15,LINE:16,plotData:17,BAR:18,acc_title:19,acc_title_value:20,acc_descr:21,acc_descr_value:22,acc_descr_multiline_value:23,SQUARE_BRACES_START:24,commaSeparatedNumbers:25,SQUARE_BRACES_END:26,NUMBER_WITH_DECIMAL:27,COMMA:28,xAxisData:29,bandData:30,ARROW_DELIMITER:31,commaSeparatedTexts:32,yAxisData:33,NEWLINE:34,SEMI:35,EOF:36,alphaNum:37,STR:38,MD_STR:39,alphaNumToken:40,AMP:41,NUM:42,ALPHA:43,PLUS:44,EQUALS:45,MULT:46,DOT:47,BRKT:48,MINUS:49,UNDERSCORE:50,$accept:0,$end:1},terminals_:{2:"error",5:"XYCHART",8:"CHART_ORIENTATION",10:"title",12:"X_AXIS",14:"Y_AXIS",16:"LINE",18:"BAR",19:"acc_title",20:"acc_title_value",21:"acc_descr",22:"acc_descr_value",23:"acc_descr_multiline_value",24:"SQUARE_BRACES_START",26:"SQUARE_BRACES_END",27:"NUMBER_WITH_DECIMAL",28:"COMMA",31:"ARROW_DELIMITER",34:"NEWLINE",35:"SEMI",36:"EOF",38:"STR",39:"MD_STR",41:"AMP",42:"NUM",43:"ALPHA",44:"PLUS",45:"EQUALS",46:"MULT",47:"DOT",48:"BRKT",49:"MINUS",50:"UNDERSCORE"},productions_:[0,[3,2],[3,3],[3,2],[3,1],[6,1],[7,0],[7,2],[9,2],[9,2],[9,2],[9,2],[9,2],[9,3],[9,2],[9,3],[9,2],[9,2],[9,1],[17,3],[25,3],[25,1],[13,1],[13,2],[13,1],[29,1],[29,3],[30,3],[32,3],[32,1],[15,1],[15,2],[15,1],[33,3],[4,1],[4,1],[4,1],[11,1],[11,1],[11,1],[37,1],[37,2],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1]],performAction:X(function(Q,V,j,ee,te,ne,se){var ie=ne.length-1;switch(te){case 5:ee.setOrientation(ne[ie]);break;case 9:ee.setDiagramTitle(ne[ie].text.trim());break;case 12:ee.setLineData({text:"",type:"text"},ne[ie]);break;case 13:ee.setLineData(ne[ie-1],ne[ie]);break;case 14:ee.setBarData({text:"",type:"text"},ne[ie]);break;case 15:ee.setBarData(ne[ie-1],ne[ie]);break;case 16:this.$=ne[ie].trim(),ee.setAccTitle(this.$);break;case 17:case 18:this.$=ne[ie].trim(),ee.setAccDescription(this.$);break;case 19:this.$=ne[ie-1];break;case 20:this.$=[Number(ne[ie-2]),...ne[ie]];break;case 21:this.$=[Number(ne[ie])];break;case 22:ee.setXAxisTitle(ne[ie]);break;case 23:ee.setXAxisTitle(ne[ie-1]);break;case 24:ee.setXAxisTitle({type:"text",text:""});break;case 25:ee.setXAxisBand(ne[ie]);break;case 26:ee.setXAxisRangeData(Number(ne[ie-2]),Number(ne[ie]));break;case 27:this.$=ne[ie-1];break;case 28:this.$=[ne[ie-2],...ne[ie]];break;case 29:this.$=[ne[ie]];break;case 30:ee.setYAxisTitle(ne[ie]);break;case 31:ee.setYAxisTitle(ne[ie-1]);break;case 32:ee.setYAxisTitle({type:"text",text:""});break;case 33:ee.setYAxisRangeData(Number(ne[ie-2]),Number(ne[ie]));break;case 37:this.$={text:ne[ie],type:"text"};break;case 38:this.$={text:ne[ie],type:"text"};break;case 39:this.$={text:ne[ie],type:"markdown"};break;case 40:this.$=ne[ie];break;case 41:this.$=ne[ie-1]+""+ne[ie];break}},"anonymous"),table:[e(t,r,{3:1,4:2,7:4,5:a,34:s,35:o,36:u}),{1:[3]},e(t,r,{4:2,7:4,3:8,5:a,34:s,35:o,36:u}),e(t,r,{4:2,7:4,6:9,3:10,5:a,8:[1,11],34:s,35:o,36:u}),{1:[2,4],9:12,10:[1,13],12:[1,14],14:[1,15],16:[1,16],18:[1,17],19:[1,18],21:[1,19],23:[1,20]},e(h,[2,34]),e(h,[2,35]),e(h,[2,36]),{1:[2,1]},e(t,r,{4:2,7:4,3:21,5:a,34:s,35:o,36:u}),{1:[2,3]},e(h,[2,5]),e(t,[2,7],{4:22,34:s,35:o,36:u}),{11:23,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{11:39,13:38,24:L,27:P,29:40,30:41,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{11:45,15:44,27:M,33:46,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{11:49,17:48,24:F,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{11:52,17:51,24:F,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{20:[1,53]},{22:[1,54]},e(U,[2,18]),{1:[2,2]},e(U,[2,8]),e(U,[2,9]),e($,[2,37],{40:55,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N}),e($,[2,38]),e($,[2,39]),e(G,[2,40]),e(G,[2,42]),e(G,[2,43]),e(G,[2,44]),e(G,[2,45]),e(G,[2,46]),e(G,[2,47]),e(G,[2,48]),e(G,[2,49]),e(G,[2,50]),e(G,[2,51]),e(U,[2,10]),e(U,[2,22],{30:41,29:56,24:L,27:P}),e(U,[2,24]),e(U,[2,25]),{31:[1,57]},{11:59,32:58,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},e(U,[2,11]),e(U,[2,30],{33:60,27:M}),e(U,[2,32]),{31:[1,61]},e(U,[2,12]),{17:62,24:F},{25:63,27:B},e(U,[2,14]),{17:65,24:F},e(U,[2,16]),e(U,[2,17]),e(G,[2,41]),e(U,[2,23]),{27:[1,66]},{26:[1,67]},{26:[2,29],28:[1,68]},e(U,[2,31]),{27:[1,69]},e(U,[2,13]),{26:[1,70]},{26:[2,21],28:[1,71]},e(U,[2,15]),e(U,[2,26]),e(U,[2,27]),{11:59,32:72,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},e(U,[2,33]),e(U,[2,19]),{25:73,27:B},{26:[2,28]},{26:[2,20]}],defaultActions:{8:[2,1],10:[2,3],21:[2,2],72:[2,28],73:[2,20]},parseError:X(function(Q,V){if(V.recoverable)this.trace(Q);else{var j=new Error(Q);throw j.hash=V,j}},"parseError"),parse:X(function(Q){var V=this,j=[0],ee=[],te=[null],ne=[],se=this.table,ie="",ge=0,ce=0,be=2,ve=1,De=ne.slice.call(arguments,1),ye=Object.create(this.lexer),Ee={yy:{}};for(var he in this.yy)Object.prototype.hasOwnProperty.call(this.yy,he)&&(Ee.yy[he]=this.yy[he]);ye.setInput(Q,Ee.yy),Ee.yy.lexer=ye,Ee.yy.parser=this,typeof ye.yylloc>"u"&&(ye.yylloc={});var we=ye.yylloc;ne.push(we);var Ce=ye.options&&ye.options.ranges;typeof Ee.yy.parseError=="function"?this.parseError=Ee.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Ie(et){j.length=j.length-2*et,te.length=te.length-et,ne.length=ne.length-et}X(Ie,"popStack");function Le(){var et;return et=ee.pop()||ye.lex()||ve,typeof et!="number"&&(et instanceof Array&&(ee=et,et=ee.pop()),et=V.symbols_[et]||et),et}X(Le,"lex");for(var Fe,Ve,Oe,Dt,ot={},sn,Kt,Ft,Je;;){if(Ve=j[j.length-1],this.defaultActions[Ve]?Oe=this.defaultActions[Ve]:((Fe===null||typeof Fe>"u")&&(Fe=Le()),Oe=se[Ve]&&se[Ve][Fe]),typeof Oe>"u"||!Oe.length||!Oe[0]){var ht="";Je=[];for(sn in se[Ve])this.terminals_[sn]&&sn>be&&Je.push("'"+this.terminals_[sn]+"'");ye.showPosition?ht="Parse error on line "+(ge+1)+`: +`+ye.showPosition()+` +Expecting `+Je.join(", ")+", got '"+(this.terminals_[Fe]||Fe)+"'":ht="Parse error on line "+(ge+1)+": Unexpected "+(Fe==ve?"end of input":"'"+(this.terminals_[Fe]||Fe)+"'"),this.parseError(ht,{text:ye.match,token:this.terminals_[Fe]||Fe,line:ye.yylineno,loc:we,expected:Je})}if(Oe[0]instanceof Array&&Oe.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Ve+", token: "+Fe);switch(Oe[0]){case 1:j.push(Fe),te.push(ye.yytext),ne.push(ye.yylloc),j.push(Oe[1]),Fe=null,ce=ye.yyleng,ie=ye.yytext,ge=ye.yylineno,we=ye.yylloc;break;case 2:if(Kt=this.productions_[Oe[1]][1],ot.$=te[te.length-Kt],ot._$={first_line:ne[ne.length-(Kt||1)].first_line,last_line:ne[ne.length-1].last_line,first_column:ne[ne.length-(Kt||1)].first_column,last_column:ne[ne.length-1].last_column},Ce&&(ot._$.range=[ne[ne.length-(Kt||1)].range[0],ne[ne.length-1].range[1]]),Dt=this.performAction.apply(ot,[ie,ce,ge,Ee.yy,Oe[1],te,ne].concat(De)),typeof Dt<"u")return Dt;Kt&&(j=j.slice(0,-1*Kt*2),te=te.slice(0,-1*Kt),ne=ne.slice(0,-1*Kt)),j.push(this.productions_[Oe[1]][0]),te.push(ot.$),ne.push(ot._$),Ft=se[j[j.length-2]][j[j.length-1]],j.push(Ft);break;case 3:return!0}}return!0},"parse")},z=function(){var W={EOF:1,parseError:X(function(V,j){if(this.yy.parser)this.yy.parser.parseError(V,j);else throw new Error(V)},"parseError"),setInput:X(function(Q,V){return this.yy=V||this.yy||{},this._input=Q,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var Q=this._input[0];this.yytext+=Q,this.yyleng++,this.offset++,this.match+=Q,this.matched+=Q;var V=Q.match(/(?:\r\n?|\n).*/g);return V?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Q},"input"),unput:X(function(Q){var V=Q.length,j=Q.split(/(?:\r\n?|\n)/g);this._input=Q+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-V),this.offset-=V;var ee=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),j.length-1&&(this.yylineno-=j.length-1);var te=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:j?(j.length===ee.length?this.yylloc.first_column:0)+ee[ee.length-j.length].length-j[0].length:this.yylloc.first_column-V},this.options.ranges&&(this.yylloc.range=[te[0],te[0]+this.yyleng-V]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(Q){this.unput(this.match.slice(Q))},"less"),pastInput:X(function(){var Q=this.matched.substr(0,this.matched.length-this.match.length);return(Q.length>20?"...":"")+Q.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var Q=this.match;return Q.length<20&&(Q+=this._input.substr(0,20-Q.length)),(Q.substr(0,20)+(Q.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var Q=this.pastInput(),V=new Array(Q.length+1).join("-");return Q+this.upcomingInput()+` +`+V+"^"},"showPosition"),test_match:X(function(Q,V){var j,ee,te;if(this.options.backtrack_lexer&&(te={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(te.yylloc.range=this.yylloc.range.slice(0))),ee=Q[0].match(/(?:\r\n?|\n).*/g),ee&&(this.yylineno+=ee.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:ee?ee[ee.length-1].length-ee[ee.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Q[0].length},this.yytext+=Q[0],this.match+=Q[0],this.matches=Q,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Q[0].length),this.matched+=Q[0],j=this.performAction.call(this,this.yy,this,V,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),j)return j;if(this._backtrack){for(var ne in te)this[ne]=te[ne];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Q,V,j,ee;this._more||(this.yytext="",this.match="");for(var te=this._currentRules(),ne=0;neV[0].length)){if(V=j,ee=ne,this.options.backtrack_lexer){if(Q=this.test_match(j,te[ne]),Q!==!1)return Q;if(this._backtrack){V=!1;continue}else return!1}else if(!this.options.flex)break}return V?(Q=this.test_match(V,te[ee]),Q!==!1?Q:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var V=this.next();return V||this.lex()},"lex"),begin:X(function(V){this.conditionStack.push(V)},"begin"),popState:X(function(){var V=this.conditionStack.length-1;return V>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(V){return V=this.conditionStack.length-1-Math.abs(V||0),V>=0?this.conditionStack[V]:"INITIAL"},"topState"),pushState:X(function(V){this.begin(V)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(V,j,ee,te){switch(ee){case 0:break;case 1:break;case 2:return this.popState(),34;case 3:return this.popState(),34;case 4:return 34;case 5:break;case 6:return 10;case 7:return this.pushState("acc_title"),19;case 8:return this.popState(),"acc_title_value";case 9:return this.pushState("acc_descr"),21;case 10:return this.popState(),"acc_descr_value";case 11:this.pushState("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:return 5;case 15:return 5;case 16:return 8;case 17:return this.pushState("axis_data"),"X_AXIS";case 18:return this.pushState("axis_data"),"Y_AXIS";case 19:return this.pushState("axis_band_data"),24;case 20:return 31;case 21:return this.pushState("data"),16;case 22:return this.pushState("data"),18;case 23:return this.pushState("data_inner"),24;case 24:return 27;case 25:return this.popState(),26;case 26:this.popState();break;case 27:this.pushState("string");break;case 28:this.popState();break;case 29:return"STR";case 30:return 24;case 31:return 26;case 32:return 43;case 33:return"COLON";case 34:return 44;case 35:return 28;case 36:return 45;case 37:return 46;case 38:return 48;case 39:return 50;case 40:return 47;case 41:return 41;case 42:return 49;case 43:return 42;case 44:break;case 45:return 35;case 46:return 36}},"anonymous"),rules:[/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:(\r?\n))/i,/^(?:(\r?\n))/i,/^(?:[\n\r]+)/i,/^(?:%%[^\n]*)/i,/^(?:title\b)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:\{)/i,/^(?:[^\}]*)/i,/^(?:xychart-beta\b)/i,/^(?:xychart\b)/i,/^(?:(?:vertical|horizontal))/i,/^(?:x-axis\b)/i,/^(?:y-axis\b)/i,/^(?:\[)/i,/^(?:-->)/i,/^(?:line\b)/i,/^(?:bar\b)/i,/^(?:\[)/i,/^(?:[+-]?(?:\d+(?:\.\d+)?|\.\d+))/i,/^(?:\])/i,/^(?:(?:`\) \{ this\.pushState\(md_string\); \}\n\(\?:\(\?!`"\)\.\)\+ \{ return MD_STR; \}\n\(\?:`))/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:\[)/i,/^(?:\])/i,/^(?:[A-Za-z]+)/i,/^(?::)/i,/^(?:\+)/i,/^(?:,)/i,/^(?:=)/i,/^(?:\*)/i,/^(?:#)/i,/^(?:[\_])/i,/^(?:\.)/i,/^(?:&)/i,/^(?:-)/i,/^(?:[0-9]+)/i,/^(?:\s+)/i,/^(?:;)/i,/^(?:$)/i],conditions:{data_inner:{rules:[0,1,4,5,6,7,9,11,14,15,16,17,18,21,22,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],inclusive:!0},data:{rules:[0,1,3,4,5,6,7,9,11,14,15,16,17,18,21,22,23,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],inclusive:!0},axis_band_data:{rules:[0,1,4,5,6,7,9,11,14,15,16,17,18,21,22,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],inclusive:!0},axis_data:{rules:[0,1,2,4,5,6,7,9,11,14,15,16,17,18,19,20,21,22,24,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],inclusive:!0},acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},title:{rules:[],inclusive:!1},md_string:{rules:[],inclusive:!1},string:{rules:[28,29],inclusive:!1},INITIAL:{rules:[0,1,4,5,6,7,9,11,14,15,16,17,18,21,22,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],inclusive:!0}}};return W}();Z.lexer=z;function Y(){this.yy={}}return X(Y,"Parser"),Y.prototype=Z,Z.Parser=Y,new Y}();Eut.parser=Eut;var Xji=Eut;function xut(e){return e.type==="bar"}X(xut,"isBarPlot");function Vmt(e){return e.type==="band"}X(Vmt,"isBandAxisData");function cY(e){return e.type==="linear"}X(cY,"isLinearAxisData");var YY,EKn=(YY=class{constructor(t){this.parentGroup=t}getMaxDimension(t,r){if(!this.parentGroup)return{width:t.reduce((o,u)=>Math.max(u.length,o),0)*r,height:r};const a={width:0,height:0},s=this.parentGroup.append("g").attr("visibility","hidden").attr("font-size",r);for(const o of t){const u=kBn(s,1,o),h=u?u.width:o.length*r,f=u?u.height:r;a.width=Math.max(a.width,h),a.height=Math.max(a.height,f)}return s.remove(),a}},X(YY,"TextDimensionCalculatorWithFont"),YY),rTn=.7,iTn=.2,jY,xKn=(jY=class{constructor(t,r,a,s){this.axisConfig=t,this.title=r,this.textDimensionCalculator=a,this.axisThemeConfig=s,this.boundingRect={x:0,y:0,width:0,height:0},this.axisPosition="left",this.showTitle=!1,this.showLabel=!1,this.showTick=!1,this.showAxisLine=!1,this.outerPadding=0,this.titleTextHeight=0,this.labelTextHeight=0,this.range=[0,10],this.boundingRect={x:0,y:0,width:0,height:0},this.axisPosition="left"}setRange(t){this.range=t,this.axisPosition==="left"||this.axisPosition==="right"?this.boundingRect.height=t[1]-t[0]:this.boundingRect.width=t[1]-t[0],this.recalculateScale()}getRange(){return[this.range[0]+this.outerPadding,this.range[1]-this.outerPadding]}setAxisPosition(t){this.axisPosition=t,this.setRange(this.range)}getTickDistance(){const t=this.getRange();return Math.abs(t[0]-t[1])/this.getTickValues().length}getAxisOuterPadding(){return this.outerPadding}getLabelDimension(){return this.textDimensionCalculator.getMaxDimension(this.getTickValues().map(t=>t.toString()),this.axisConfig.labelFontSize)}recalculateOuterPaddingToDrawBar(){rTn*this.getTickDistance()>this.outerPadding*2&&(this.outerPadding=Math.floor(rTn*this.getTickDistance()/2)),this.recalculateScale()}calculateSpaceIfDrawnHorizontally(t){let r=t.height;if(this.axisConfig.showAxisLine&&r>this.axisConfig.axisLineWidth&&(r-=this.axisConfig.axisLineWidth,this.showAxisLine=!0),this.axisConfig.showLabel){const a=this.getLabelDimension(),s=iTn*t.width;this.outerPadding=Math.min(a.width/2,s);const o=a.height+this.axisConfig.labelPadding*2;this.labelTextHeight=a.height,o<=r&&(r-=o,this.showLabel=!0)}if(this.axisConfig.showTick&&r>=this.axisConfig.tickLength&&(this.showTick=!0,r-=this.axisConfig.tickLength),this.axisConfig.showTitle&&this.title){const a=this.textDimensionCalculator.getMaxDimension([this.title],this.axisConfig.titleFontSize),s=a.height+this.axisConfig.titlePadding*2;this.titleTextHeight=a.height,s<=r&&(r-=s,this.showTitle=!0)}this.boundingRect.width=t.width,this.boundingRect.height=t.height-r}calculateSpaceIfDrawnVertical(t){let r=t.width;if(this.axisConfig.showAxisLine&&r>this.axisConfig.axisLineWidth&&(r-=this.axisConfig.axisLineWidth,this.showAxisLine=!0),this.axisConfig.showLabel){const a=this.getLabelDimension(),s=iTn*t.height;this.outerPadding=Math.min(a.height/2,s);const o=a.width+this.axisConfig.labelPadding*2;o<=r&&(r-=o,this.showLabel=!0)}if(this.axisConfig.showTick&&r>=this.axisConfig.tickLength&&(this.showTick=!0,r-=this.axisConfig.tickLength),this.axisConfig.showTitle&&this.title){const a=this.textDimensionCalculator.getMaxDimension([this.title],this.axisConfig.titleFontSize),s=a.height+this.axisConfig.titlePadding*2;this.titleTextHeight=a.height,s<=r&&(r-=s,this.showTitle=!0)}this.boundingRect.width=t.width-r,this.boundingRect.height=t.height}calculateSpace(t){return this.axisPosition==="left"||this.axisPosition==="right"?this.calculateSpaceIfDrawnVertical(t):this.calculateSpaceIfDrawnHorizontally(t),this.recalculateScale(),{width:this.boundingRect.width,height:this.boundingRect.height}}setBoundingBoxXY(t){this.boundingRect.x=t.x,this.boundingRect.y=t.y}getDrawableElementsForLeftAxis(){const t=[];if(this.showAxisLine){const r=this.boundingRect.x+this.boundingRect.width-this.axisConfig.axisLineWidth/2;t.push({type:"path",groupTexts:["left-axis","axisl-line"],data:[{path:`M ${r},${this.boundingRect.y} L ${r},${this.boundingRect.y+this.boundingRect.height} `,strokeFill:this.axisThemeConfig.axisLineColor,strokeWidth:this.axisConfig.axisLineWidth}]})}if(this.showLabel&&t.push({type:"text",groupTexts:["left-axis","label"],data:this.getTickValues().map(r=>({text:r.toString(),x:this.boundingRect.x+this.boundingRect.width-(this.showLabel?this.axisConfig.labelPadding:0)-(this.showTick?this.axisConfig.tickLength:0)-(this.showAxisLine?this.axisConfig.axisLineWidth:0),y:this.getScaleValue(r),fill:this.axisThemeConfig.labelColor,fontSize:this.axisConfig.labelFontSize,rotation:0,verticalPos:"middle",horizontalPos:"right"}))}),this.showTick){const r=this.boundingRect.x+this.boundingRect.width-(this.showAxisLine?this.axisConfig.axisLineWidth:0);t.push({type:"path",groupTexts:["left-axis","ticks"],data:this.getTickValues().map(a=>({path:`M ${r},${this.getScaleValue(a)} L ${r-this.axisConfig.tickLength},${this.getScaleValue(a)}`,strokeFill:this.axisThemeConfig.tickColor,strokeWidth:this.axisConfig.tickWidth}))})}return this.showTitle&&t.push({type:"text",groupTexts:["left-axis","title"],data:[{text:this.title,x:this.boundingRect.x+this.axisConfig.titlePadding,y:this.boundingRect.y+this.boundingRect.height/2,fill:this.axisThemeConfig.titleColor,fontSize:this.axisConfig.titleFontSize,rotation:270,verticalPos:"top",horizontalPos:"center"}]}),t}getDrawableElementsForBottomAxis(){const t=[];if(this.showAxisLine){const r=this.boundingRect.y+this.axisConfig.axisLineWidth/2;t.push({type:"path",groupTexts:["bottom-axis","axis-line"],data:[{path:`M ${this.boundingRect.x},${r} L ${this.boundingRect.x+this.boundingRect.width},${r}`,strokeFill:this.axisThemeConfig.axisLineColor,strokeWidth:this.axisConfig.axisLineWidth}]})}if(this.showLabel&&t.push({type:"text",groupTexts:["bottom-axis","label"],data:this.getTickValues().map(r=>({text:r.toString(),x:this.getScaleValue(r),y:this.boundingRect.y+this.axisConfig.labelPadding+(this.showTick?this.axisConfig.tickLength:0)+(this.showAxisLine?this.axisConfig.axisLineWidth:0),fill:this.axisThemeConfig.labelColor,fontSize:this.axisConfig.labelFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}))}),this.showTick){const r=this.boundingRect.y+(this.showAxisLine?this.axisConfig.axisLineWidth:0);t.push({type:"path",groupTexts:["bottom-axis","ticks"],data:this.getTickValues().map(a=>({path:`M ${this.getScaleValue(a)},${r} L ${this.getScaleValue(a)},${r+this.axisConfig.tickLength}`,strokeFill:this.axisThemeConfig.tickColor,strokeWidth:this.axisConfig.tickWidth}))})}return this.showTitle&&t.push({type:"text",groupTexts:["bottom-axis","title"],data:[{text:this.title,x:this.range[0]+(this.range[1]-this.range[0])/2,y:this.boundingRect.y+this.boundingRect.height-this.axisConfig.titlePadding-this.titleTextHeight,fill:this.axisThemeConfig.titleColor,fontSize:this.axisConfig.titleFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}]}),t}getDrawableElementsForTopAxis(){const t=[];if(this.showAxisLine){const r=this.boundingRect.y+this.boundingRect.height-this.axisConfig.axisLineWidth/2;t.push({type:"path",groupTexts:["top-axis","axis-line"],data:[{path:`M ${this.boundingRect.x},${r} L ${this.boundingRect.x+this.boundingRect.width},${r}`,strokeFill:this.axisThemeConfig.axisLineColor,strokeWidth:this.axisConfig.axisLineWidth}]})}if(this.showLabel&&t.push({type:"text",groupTexts:["top-axis","label"],data:this.getTickValues().map(r=>({text:r.toString(),x:this.getScaleValue(r),y:this.boundingRect.y+(this.showTitle?this.titleTextHeight+this.axisConfig.titlePadding*2:0)+this.axisConfig.labelPadding,fill:this.axisThemeConfig.labelColor,fontSize:this.axisConfig.labelFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}))}),this.showTick){const r=this.boundingRect.y;t.push({type:"path",groupTexts:["top-axis","ticks"],data:this.getTickValues().map(a=>({path:`M ${this.getScaleValue(a)},${r+this.boundingRect.height-(this.showAxisLine?this.axisConfig.axisLineWidth:0)} L ${this.getScaleValue(a)},${r+this.boundingRect.height-this.axisConfig.tickLength-(this.showAxisLine?this.axisConfig.axisLineWidth:0)}`,strokeFill:this.axisThemeConfig.tickColor,strokeWidth:this.axisConfig.tickWidth}))})}return this.showTitle&&t.push({type:"text",groupTexts:["top-axis","title"],data:[{text:this.title,x:this.boundingRect.x+this.boundingRect.width/2,y:this.boundingRect.y+this.axisConfig.titlePadding,fill:this.axisThemeConfig.titleColor,fontSize:this.axisConfig.titleFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}]}),t}getDrawableElements(){if(this.axisPosition==="left")return this.getDrawableElementsForLeftAxis();if(this.axisPosition==="right")throw Error("Drawing of right axis is not implemented");return this.axisPosition==="bottom"?this.getDrawableElementsForBottomAxis():this.axisPosition==="top"?this.getDrawableElementsForTopAxis():[]}},X(jY,"BaseAxis"),jY),WY,Qji=(WY=class extends xKn{constructor(t,r,a,s,o){super(t,s,o,r),this.categories=a,this.scale=goe().domain(this.categories).range(this.getRange())}setRange(t){super.setRange(t)}recalculateScale(){this.scale=goe().domain(this.categories).range(this.getRange()).paddingInner(1).paddingOuter(0).align(.5),it.trace("BandAxis axis final categories, range: ",this.categories,this.getRange())}getTickValues(){return this.categories}getScaleValue(t){return this.scale(t)??this.getRange()[0]}},X(WY,"BandAxis"),WY),KY,Zji=(KY=class extends xKn{constructor(t,r,a,s,o){super(t,s,o,r),this.domain=a,this.scale=sT().domain(this.domain).range(this.getRange())}getTickValues(){return this.scale.ticks()}recalculateScale(){const t=[...this.domain];this.axisPosition==="left"&&t.reverse(),this.scale=sT().domain(t).range(this.getRange())}getScaleValue(t){return this.scale(t)}},X(KY,"LinearAxis"),KY);function Sut(e,t,r,a){const s=new EKn(a);return Vmt(e)?new Qji(t,r,e.categories,e.title,s):new Zji(t,r,[e.min,e.max],e.title,s)}X(Sut,"getAxis");var XY,Jji=(XY=class{constructor(t,r,a,s){this.textDimensionCalculator=t,this.chartConfig=r,this.chartData=a,this.chartThemeConfig=s,this.boundingRect={x:0,y:0,width:0,height:0},this.showChartTitle=!1}setBoundingBoxXY(t){this.boundingRect.x=t.x,this.boundingRect.y=t.y}calculateSpace(t){const r=this.textDimensionCalculator.getMaxDimension([this.chartData.title],this.chartConfig.titleFontSize),a=Math.max(r.width,t.width),s=r.height+2*this.chartConfig.titlePadding;return r.width<=a&&r.height<=s&&this.chartConfig.showTitle&&this.chartData.title&&(this.boundingRect.width=a,this.boundingRect.height=s,this.showChartTitle=!0),{width:this.boundingRect.width,height:this.boundingRect.height}}getDrawableElements(){const t=[];return this.showChartTitle&&t.push({groupTexts:["chart-title"],type:"text",data:[{fontSize:this.chartConfig.titleFontSize,text:this.chartData.title,verticalPos:"middle",horizontalPos:"center",x:this.boundingRect.x+this.boundingRect.width/2,y:this.boundingRect.y+this.boundingRect.height/2,fill:this.chartThemeConfig.titleColor,rotation:0}]}),t}},X(XY,"ChartTitle"),XY);function SKn(e,t,r,a){const s=new EKn(a);return new Jji(s,e,t,r)}X(SKn,"getChartTitleComponent");var QY,eWi=(QY=class{constructor(t,r,a,s,o){this.plotData=t,this.xAxis=r,this.yAxis=a,this.orientation=s,this.plotIndex=o}getDrawableElement(){const t=this.plotData.data.map(a=>[this.xAxis.getScaleValue(a[0]),this.yAxis.getScaleValue(a[1])]);let r;return this.orientation==="horizontal"?r=r_().y(a=>a[0]).x(a=>a[1])(t):r=r_().x(a=>a[0]).y(a=>a[1])(t),r?[{groupTexts:["plot",`line-plot-${this.plotIndex}`],type:"path",data:[{path:r,strokeFill:this.plotData.strokeFill,strokeWidth:this.plotData.strokeWidth}]}]:[]}},X(QY,"LinePlot"),QY),ZY,tWi=(ZY=class{constructor(t,r,a,s,o,u){this.barData=t,this.boundingRect=r,this.xAxis=a,this.yAxis=s,this.orientation=o,this.plotIndex=u}getDrawableElement(){const t=this.barData.data.map(o=>[this.xAxis.getScaleValue(o[0]),this.yAxis.getScaleValue(o[1])]),a=Math.min(this.xAxis.getAxisOuterPadding()*2,this.xAxis.getTickDistance())*(1-.05),s=a/2;return this.orientation==="horizontal"?[{groupTexts:["plot",`bar-plot-${this.plotIndex}`],type:"rect",data:t.map(o=>({x:this.boundingRect.x,y:o[0]-s,height:a,width:o[1]-this.boundingRect.x,fill:this.barData.fill,strokeWidth:0,strokeFill:this.barData.fill}))}]:[{groupTexts:["plot",`bar-plot-${this.plotIndex}`],type:"rect",data:t.map(o=>({x:o[0]-s,y:o[1],width:a,height:this.boundingRect.y+this.boundingRect.height-o[1],fill:this.barData.fill,strokeWidth:0,strokeFill:this.barData.fill}))}]}},X(ZY,"BarPlot"),ZY),JY,nWi=(JY=class{constructor(t,r,a){this.chartConfig=t,this.chartData=r,this.chartThemeConfig=a,this.boundingRect={x:0,y:0,width:0,height:0}}setAxes(t,r){this.xAxis=t,this.yAxis=r}setBoundingBoxXY(t){this.boundingRect.x=t.x,this.boundingRect.y=t.y}calculateSpace(t){return this.boundingRect.width=t.width,this.boundingRect.height=t.height,{width:this.boundingRect.width,height:this.boundingRect.height}}getDrawableElements(){if(!(this.xAxis&&this.yAxis))throw Error("Axes must be passed to render Plots");const t=[];for(const[r,a]of this.chartData.plots.entries())switch(a.type){case"line":{const s=new eWi(a,this.xAxis,this.yAxis,this.chartConfig.chartOrientation,r);t.push(...s.getDrawableElement())}break;case"bar":{const s=new tWi(a,this.boundingRect,this.xAxis,this.yAxis,this.chartConfig.chartOrientation,r);t.push(...s.getDrawableElement())}break}return t}},X(JY,"BasePlot"),JY);function TKn(e,t,r){return new nWi(e,t,r)}X(TKn,"getPlotComponent");var ej,rWi=(ej=class{constructor(t,r,a,s){this.chartConfig=t,this.chartData=r,this.componentStore={title:SKn(t,r,a,s),plot:TKn(t,r,a),xAxis:Sut(r.xAxis,t.xAxis,{titleColor:a.xAxisTitleColor,labelColor:a.xAxisLabelColor,tickColor:a.xAxisTickColor,axisLineColor:a.xAxisLineColor},s),yAxis:Sut(r.yAxis,t.yAxis,{titleColor:a.yAxisTitleColor,labelColor:a.yAxisLabelColor,tickColor:a.yAxisTickColor,axisLineColor:a.yAxisLineColor},s)}}calculateVerticalSpace(){let t=this.chartConfig.width,r=this.chartConfig.height,a=0,s=0,o=Math.floor(t*this.chartConfig.plotReservedSpacePercent/100),u=Math.floor(r*this.chartConfig.plotReservedSpacePercent/100),h=this.componentStore.plot.calculateSpace({width:o,height:u});t-=h.width,r-=h.height,h=this.componentStore.title.calculateSpace({width:this.chartConfig.width,height:r}),s=h.height,r-=h.height,this.componentStore.xAxis.setAxisPosition("bottom"),h=this.componentStore.xAxis.calculateSpace({width:t,height:r}),r-=h.height,this.componentStore.yAxis.setAxisPosition("left"),h=this.componentStore.yAxis.calculateSpace({width:t,height:r}),a=h.width,t-=h.width,t>0&&(o+=t,t=0),r>0&&(u+=r,r=0),this.componentStore.plot.calculateSpace({width:o,height:u}),this.componentStore.plot.setBoundingBoxXY({x:a,y:s}),this.componentStore.xAxis.setRange([a,a+o]),this.componentStore.xAxis.setBoundingBoxXY({x:a,y:s+u}),this.componentStore.yAxis.setRange([s,s+u]),this.componentStore.yAxis.setBoundingBoxXY({x:0,y:s}),this.chartData.plots.some(f=>xut(f))&&this.componentStore.xAxis.recalculateOuterPaddingToDrawBar()}calculateHorizontalSpace(){let t=this.chartConfig.width,r=this.chartConfig.height,a=0,s=0,o=0,u=Math.floor(t*this.chartConfig.plotReservedSpacePercent/100),h=Math.floor(r*this.chartConfig.plotReservedSpacePercent/100),f=this.componentStore.plot.calculateSpace({width:u,height:h});t-=f.width,r-=f.height,f=this.componentStore.title.calculateSpace({width:this.chartConfig.width,height:r}),a=f.height,r-=f.height,this.componentStore.xAxis.setAxisPosition("left"),f=this.componentStore.xAxis.calculateSpace({width:t,height:r}),t-=f.width,s=f.width,this.componentStore.yAxis.setAxisPosition("top"),f=this.componentStore.yAxis.calculateSpace({width:t,height:r}),r-=f.height,o=a+f.height,t>0&&(u+=t,t=0),r>0&&(h+=r,r=0),this.componentStore.plot.calculateSpace({width:u,height:h}),this.componentStore.plot.setBoundingBoxXY({x:s,y:o}),this.componentStore.yAxis.setRange([s,s+u]),this.componentStore.yAxis.setBoundingBoxXY({x:s,y:a}),this.componentStore.xAxis.setRange([o,o+h]),this.componentStore.xAxis.setBoundingBoxXY({x:0,y:o}),this.chartData.plots.some(p=>xut(p))&&this.componentStore.xAxis.recalculateOuterPaddingToDrawBar()}calculateSpace(){this.chartConfig.chartOrientation==="horizontal"?this.calculateHorizontalSpace():this.calculateVerticalSpace()}getDrawableElement(){this.calculateSpace();const t=[];this.componentStore.plot.setAxes(this.componentStore.xAxis,this.componentStore.yAxis);for(const r of Object.values(this.componentStore))t.push(...r.getDrawableElements());return t}},X(ej,"Orchestrator"),ej),tj,iWi=(tj=class{static build(t,r,a,s){return new rWi(t,r,a,s).getDrawableElement()}},X(tj,"XYChartBuilder"),tj),sle=0,CKn,ole=Wmt(),lle=jmt(),Bu=Kmt(),Tut=lle.plotColorPalette.split(",").map(e=>e.trim()),Xke=!1,Ymt=!1;function jmt(){const e=JCe(),t=$c();return cv(e.xyChart,t.themeVariables.xyChart)}X(jmt,"getChartDefaultThemeConfig");function Wmt(){const e=$c();return cv(Cc.xyChart,e.xyChart)}X(Wmt,"getChartDefaultConfig");function Kmt(){return{yAxis:{type:"linear",title:"",min:1/0,max:-1/0},xAxis:{type:"band",title:"",categories:[]},title:"",plots:[]}}X(Kmt,"getChartDefaultData");function Qke(e){const t=$c();return Ic(e.trim(),t)}X(Qke,"textSanitizer");function AKn(e){CKn=e}X(AKn,"setTmpSVGG");function kKn(e){e==="horizontal"?ole.chartOrientation="horizontal":ole.chartOrientation="vertical"}X(kKn,"setOrientation");function RKn(e){Bu.xAxis.title=Qke(e.text)}X(RKn,"setXAxisTitle");function Xmt(e,t){Bu.xAxis={type:"linear",title:Bu.xAxis.title,min:e,max:t},Xke=!0}X(Xmt,"setXAxisRangeData");function IKn(e){Bu.xAxis={type:"band",title:Bu.xAxis.title,categories:e.map(t=>Qke(t.text))},Xke=!0}X(IKn,"setXAxisBand");function NKn(e){Bu.yAxis.title=Qke(e.text)}X(NKn,"setYAxisTitle");function OKn(e,t){Bu.yAxis={type:"linear",title:Bu.yAxis.title,min:e,max:t},Ymt=!0}X(OKn,"setYAxisRangeData");function LKn(e){const t=Math.min(...e),r=Math.max(...e),a=cY(Bu.yAxis)?Bu.yAxis.min:1/0,s=cY(Bu.yAxis)?Bu.yAxis.max:-1/0;Bu.yAxis={type:"linear",title:Bu.yAxis.title,min:Math.min(a,t),max:Math.max(s,r)}}X(LKn,"setYAxisRangeFromPlotData");function Qmt(e){let t=[];if(e.length===0)return t;if(!Xke){const r=cY(Bu.xAxis)?Bu.xAxis.min:1/0,a=cY(Bu.xAxis)?Bu.xAxis.max:-1/0;Xmt(Math.min(r,1),Math.max(a,e.length))}if(Ymt||LKn(e),Vmt(Bu.xAxis)&&(t=Bu.xAxis.categories.map((r,a)=>[r,e[a]])),cY(Bu.xAxis)){const r=Bu.xAxis.min,a=Bu.xAxis.max,s=(a-r)/(e.length-1),o=[];for(let u=r;u<=a;u+=s)o.push(`${u}`);t=o.map((u,h)=>[u,e[h]])}return t}X(Qmt,"transformDataWithoutCategory");function Zmt(e){return Tut[e===0?0:e%Tut.length]}X(Zmt,"getPlotColorFromPalette");function DKn(e,t){const r=Qmt(t);Bu.plots.push({type:"line",strokeFill:Zmt(sle),strokeWidth:2,data:r}),sle++}X(DKn,"setLineData");function MKn(e,t){const r=Qmt(t);Bu.plots.push({type:"bar",fill:Zmt(sle),data:r}),sle++}X(MKn,"setBarData");function PKn(){if(Bu.plots.length===0)throw Error("No Plot to render, please provide a plot with some data");return Bu.title=P1(),iWi.build(ole,Bu,lle,CKn)}X(PKn,"getDrawableElem");function BKn(){return lle}X(BKn,"getChartThemeConfig");function FKn(){return ole}X(FKn,"getChartConfig");function $Kn(){return Bu}X($Kn,"getXYChartData");var aWi=X(function(){M1(),sle=0,ole=Wmt(),Bu=Kmt(),lle=jmt(),Tut=lle.plotColorPalette.split(",").map(e=>e.trim()),Xke=!1,Ymt=!1},"clear"),sWi={getDrawableElem:PKn,clear:aWi,setAccTitle:N1,getAccTitle:Mp,setDiagramTitle:Og,getDiagramTitle:P1,getAccDescription:Bp,setAccDescription:Pp,setOrientation:kKn,setXAxisTitle:RKn,setXAxisRangeData:Xmt,setXAxisBand:IKn,setYAxisTitle:NKn,setYAxisRangeData:OKn,setLineData:DKn,setBarData:MKn,setTmpSVGG:AKn,getChartThemeConfig:BKn,getChartConfig:FKn,getXYChartData:$Kn},oWi=X((e,t,r,a)=>{const s=a.db,o=s.getChartThemeConfig(),u=s.getChartConfig(),h=s.getXYChartData().plots[0].data.map(k=>k[1]);function f(k){return k==="top"?"text-before-edge":"middle"}X(f,"getDominantBaseLine");function p(k){return k==="left"?"start":k==="right"?"end":"middle"}X(p,"getTextAnchor");function m(k){return`translate(${k.x}, ${k.y}) rotate(${k.rotation||0})`}X(m,"getTextTransformation"),it.debug(`Rendering xychart chart +`+e);const b=bR(t),_=b.append("g").attr("class","main"),w=_.append("rect").attr("width",u.width).attr("height",u.height).attr("class","background");yv(b,u.height,u.width,!0),b.attr("viewBox",`0 0 ${u.width} ${u.height}`),w.attr("fill",o.backgroundColor),s.setTmpSVGG(b.append("g").attr("class","mermaid-tmp-group"));const S=s.getDrawableElem(),C={};function A(k){let I=_,N="";for(const[L]of k.entries()){let P=_;L>0&&C[N]&&(P=C[N]),N+=k[L],I=C[N],I||(I=C[N]=P.append("g").attr("class",k[L]))}return I}X(A,"getGroup");for(const k of S){if(k.data.length===0)continue;const I=A(k.groupTexts);switch(k.type){case"rect":if(I.selectAll("rect").data(k.data).enter().append("rect").attr("x",N=>N.x).attr("y",N=>N.y).attr("width",N=>N.width).attr("height",N=>N.height).attr("fill",N=>N.fill).attr("stroke",N=>N.strokeFill).attr("stroke-width",N=>N.strokeWidth),u.showDataLabel)if(u.chartOrientation==="horizontal"){let N=function(U,$){const{data:G,label:B}=U;return $*B.length*L<=G.width-10};X(N,"fitsHorizontally");const L=.7,P=k.data.map((U,$)=>({data:U,label:h[$].toString()})).filter(U=>U.data.width>0&&U.data.height>0),M=P.map(U=>{const{data:$}=U;let G=$.height*.7;for(;!N(U,G)&&G>0;)G-=1;return G}),F=Math.floor(Math.min(...M));I.selectAll("text").data(P).enter().append("text").attr("x",U=>U.data.x+U.data.width-10).attr("y",U=>U.data.y+U.data.height/2).attr("text-anchor","end").attr("dominant-baseline","middle").attr("fill","black").attr("font-size",`${F}px`).text(U=>U.label)}else{let N=function(U,$,G){const{data:B,label:Z}=U,Y=$*Z.length*.7,W=B.x+B.width/2,Q=W-Y/2,V=W+Y/2,j=Q>=B.x&&V<=B.x+B.width,ee=B.y+G+$<=B.y+B.height;return j&&ee};X(N,"fitsInBar");const L=10,P=k.data.map((U,$)=>({data:U,label:h[$].toString()})).filter(U=>U.data.width>0&&U.data.height>0),M=P.map(U=>{const{data:$,label:G}=U;let B=$.width/(G.length*.7);for(;!N(U,B,L)&&B>0;)B-=1;return B}),F=Math.floor(Math.min(...M));I.selectAll("text").data(P).enter().append("text").attr("x",U=>U.data.x+U.data.width/2).attr("y",U=>U.data.y+L).attr("text-anchor","middle").attr("dominant-baseline","hanging").attr("fill","black").attr("font-size",`${F}px`).text(U=>U.label)}break;case"text":I.selectAll("text").data(k.data).enter().append("text").attr("x",0).attr("y",0).attr("fill",N=>N.fill).attr("font-size",N=>N.fontSize).attr("dominant-baseline",N=>f(N.verticalPos)).attr("text-anchor",N=>p(N.horizontalPos)).attr("transform",N=>m(N)).text(N=>N.text);break;case"path":I.selectAll("path").data(k.data).enter().append("path").attr("d",N=>N.path).attr("fill",N=>N.fill?N.fill:"none").attr("stroke",N=>N.strokeFill).attr("stroke-width",N=>N.strokeWidth);break}}},"draw"),lWi={draw:oWi},cWi={parser:Xji,db:sWi,renderer:lWi};const uWi=Object.freeze(Object.defineProperty({__proto__:null,diagram:cWi},Symbol.toStringTag,{value:"Module"}));var Cut=function(){var e=X(function(Ge,Ye,Ae,Xe){for(Ae=Ae||{},Xe=Ge.length;Xe--;Ae[Ge[Xe]]=Ye);return Ae},"o"),t=[1,3],r=[1,4],a=[1,5],s=[1,6],o=[5,6,8,9,11,13,21,22,23,24,41,42,43,44,45,46,54,72,74,77,89,90],u=[1,22],h=[2,7],f=[1,26],p=[1,27],m=[1,28],b=[1,29],_=[1,33],w=[1,34],S=[1,35],C=[1,36],A=[1,37],k=[1,38],I=[1,24],N=[1,31],L=[1,32],P=[1,30],M=[1,39],F=[1,40],U=[5,8,9,11,13,21,22,23,24,41,42,43,44,45,46,54,72,74,77,89,90],$=[1,61],G=[89,90],B=[5,8,9,11,13,21,22,23,24,27,29,41,42,43,44,45,46,54,61,63,72,74,75,76,77,80,81,82,83,84,85,86,87,88,89,90],Z=[27,29],z=[1,70],Y=[1,71],W=[1,72],Q=[1,73],V=[1,74],j=[1,75],ee=[1,76],te=[1,83],ne=[1,80],se=[1,84],ie=[1,85],ge=[1,86],ce=[1,87],be=[1,88],ve=[1,89],De=[1,90],ye=[1,91],Ee=[1,92],he=[5,8,9,11,13,21,22,23,24,27,41,42,43,44,45,46,54,72,74,75,76,77,80,81,82,83,84,85,86,87,88,89,90],we=[63,64],Ce=[1,101],Ie=[5,8,9,11,13,21,22,23,24,41,42,43,44,45,46,54,72,74,76,77,89,90],Le=[5,8,9,11,13,21,22,23,24,41,42,43,44,45,46,54,72,74,75,76,77,80,81,82,83,84,85,86,87,88,89,90],Fe=[1,110],Ve=[1,106],Oe=[1,107],Dt=[1,108],ot=[1,109],sn=[1,111],Kt=[1,116],Ft=[1,117],Je=[1,114],ht=[1,115],et={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,directive:4,NEWLINE:5,RD:6,diagram:7,EOF:8,acc_title:9,acc_title_value:10,acc_descr:11,acc_descr_value:12,acc_descr_multiline_value:13,requirementDef:14,elementDef:15,relationshipDef:16,direction:17,styleStatement:18,classDefStatement:19,classStatement:20,direction_tb:21,direction_bt:22,direction_rl:23,direction_lr:24,requirementType:25,requirementName:26,STRUCT_START:27,requirementBody:28,STYLE_SEPARATOR:29,idList:30,ID:31,COLONSEP:32,id:33,TEXT:34,text:35,RISK:36,riskLevel:37,VERIFYMTHD:38,verifyType:39,STRUCT_STOP:40,REQUIREMENT:41,FUNCTIONAL_REQUIREMENT:42,INTERFACE_REQUIREMENT:43,PERFORMANCE_REQUIREMENT:44,PHYSICAL_REQUIREMENT:45,DESIGN_CONSTRAINT:46,LOW_RISK:47,MED_RISK:48,HIGH_RISK:49,VERIFY_ANALYSIS:50,VERIFY_DEMONSTRATION:51,VERIFY_INSPECTION:52,VERIFY_TEST:53,ELEMENT:54,elementName:55,elementBody:56,TYPE:57,type:58,DOCREF:59,ref:60,END_ARROW_L:61,relationship:62,LINE:63,END_ARROW_R:64,CONTAINS:65,COPIES:66,DERIVES:67,SATISFIES:68,VERIFIES:69,REFINES:70,TRACES:71,CLASSDEF:72,stylesOpt:73,CLASS:74,ALPHA:75,COMMA:76,STYLE:77,style:78,styleComponent:79,NUM:80,COLON:81,UNIT:82,SPACE:83,BRKT:84,PCT:85,MINUS:86,LABEL:87,SEMICOLON:88,unqString:89,qString:90,$accept:0,$end:1},terminals_:{2:"error",5:"NEWLINE",6:"RD",8:"EOF",9:"acc_title",10:"acc_title_value",11:"acc_descr",12:"acc_descr_value",13:"acc_descr_multiline_value",21:"direction_tb",22:"direction_bt",23:"direction_rl",24:"direction_lr",27:"STRUCT_START",29:"STYLE_SEPARATOR",31:"ID",32:"COLONSEP",34:"TEXT",36:"RISK",38:"VERIFYMTHD",40:"STRUCT_STOP",41:"REQUIREMENT",42:"FUNCTIONAL_REQUIREMENT",43:"INTERFACE_REQUIREMENT",44:"PERFORMANCE_REQUIREMENT",45:"PHYSICAL_REQUIREMENT",46:"DESIGN_CONSTRAINT",47:"LOW_RISK",48:"MED_RISK",49:"HIGH_RISK",50:"VERIFY_ANALYSIS",51:"VERIFY_DEMONSTRATION",52:"VERIFY_INSPECTION",53:"VERIFY_TEST",54:"ELEMENT",57:"TYPE",59:"DOCREF",61:"END_ARROW_L",63:"LINE",64:"END_ARROW_R",65:"CONTAINS",66:"COPIES",67:"DERIVES",68:"SATISFIES",69:"VERIFIES",70:"REFINES",71:"TRACES",72:"CLASSDEF",74:"CLASS",75:"ALPHA",76:"COMMA",77:"STYLE",80:"NUM",81:"COLON",82:"UNIT",83:"SPACE",84:"BRKT",85:"PCT",86:"MINUS",87:"LABEL",88:"SEMICOLON",89:"unqString",90:"qString"},productions_:[0,[3,3],[3,2],[3,4],[4,2],[4,2],[4,1],[7,0],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[17,1],[17,1],[17,1],[17,1],[14,5],[14,7],[28,5],[28,5],[28,5],[28,5],[28,2],[28,1],[25,1],[25,1],[25,1],[25,1],[25,1],[25,1],[37,1],[37,1],[37,1],[39,1],[39,1],[39,1],[39,1],[15,5],[15,7],[56,5],[56,5],[56,2],[56,1],[16,5],[16,5],[62,1],[62,1],[62,1],[62,1],[62,1],[62,1],[62,1],[19,3],[20,3],[20,3],[30,1],[30,3],[30,1],[30,3],[18,3],[73,1],[73,3],[78,1],[78,2],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[26,1],[26,1],[33,1],[33,1],[35,1],[35,1],[55,1],[55,1],[58,1],[58,1],[60,1],[60,1]],performAction:X(function(Ye,Ae,Xe,fe,Qe,Ke,mt){var lt=Ke.length-1;switch(Qe){case 4:this.$=Ke[lt].trim(),fe.setAccTitle(this.$);break;case 5:case 6:this.$=Ke[lt].trim(),fe.setAccDescription(this.$);break;case 7:this.$=[];break;case 17:fe.setDirection("TB");break;case 18:fe.setDirection("BT");break;case 19:fe.setDirection("RL");break;case 20:fe.setDirection("LR");break;case 21:fe.addRequirement(Ke[lt-3],Ke[lt-4]);break;case 22:fe.addRequirement(Ke[lt-5],Ke[lt-6]),fe.setClass([Ke[lt-5]],Ke[lt-3]);break;case 23:fe.setNewReqId(Ke[lt-2]);break;case 24:fe.setNewReqText(Ke[lt-2]);break;case 25:fe.setNewReqRisk(Ke[lt-2]);break;case 26:fe.setNewReqVerifyMethod(Ke[lt-2]);break;case 29:this.$=fe.RequirementType.REQUIREMENT;break;case 30:this.$=fe.RequirementType.FUNCTIONAL_REQUIREMENT;break;case 31:this.$=fe.RequirementType.INTERFACE_REQUIREMENT;break;case 32:this.$=fe.RequirementType.PERFORMANCE_REQUIREMENT;break;case 33:this.$=fe.RequirementType.PHYSICAL_REQUIREMENT;break;case 34:this.$=fe.RequirementType.DESIGN_CONSTRAINT;break;case 35:this.$=fe.RiskLevel.LOW_RISK;break;case 36:this.$=fe.RiskLevel.MED_RISK;break;case 37:this.$=fe.RiskLevel.HIGH_RISK;break;case 38:this.$=fe.VerifyType.VERIFY_ANALYSIS;break;case 39:this.$=fe.VerifyType.VERIFY_DEMONSTRATION;break;case 40:this.$=fe.VerifyType.VERIFY_INSPECTION;break;case 41:this.$=fe.VerifyType.VERIFY_TEST;break;case 42:fe.addElement(Ke[lt-3]);break;case 43:fe.addElement(Ke[lt-5]),fe.setClass([Ke[lt-5]],Ke[lt-3]);break;case 44:fe.setNewElementType(Ke[lt-2]);break;case 45:fe.setNewElementDocRef(Ke[lt-2]);break;case 48:fe.addRelationship(Ke[lt-2],Ke[lt],Ke[lt-4]);break;case 49:fe.addRelationship(Ke[lt-2],Ke[lt-4],Ke[lt]);break;case 50:this.$=fe.Relationships.CONTAINS;break;case 51:this.$=fe.Relationships.COPIES;break;case 52:this.$=fe.Relationships.DERIVES;break;case 53:this.$=fe.Relationships.SATISFIES;break;case 54:this.$=fe.Relationships.VERIFIES;break;case 55:this.$=fe.Relationships.REFINES;break;case 56:this.$=fe.Relationships.TRACES;break;case 57:this.$=Ke[lt-2],fe.defineClass(Ke[lt-1],Ke[lt]);break;case 58:fe.setClass(Ke[lt-1],Ke[lt]);break;case 59:fe.setClass([Ke[lt-2]],Ke[lt]);break;case 60:case 62:this.$=[Ke[lt]];break;case 61:case 63:this.$=Ke[lt-2].concat([Ke[lt]]);break;case 64:this.$=Ke[lt-2],fe.setCssStyle(Ke[lt-1],Ke[lt]);break;case 65:this.$=[Ke[lt]];break;case 66:Ke[lt-2].push(Ke[lt]),this.$=Ke[lt-2];break;case 68:this.$=Ke[lt-1]+Ke[lt];break}},"anonymous"),table:[{3:1,4:2,6:t,9:r,11:a,13:s},{1:[3]},{3:8,4:2,5:[1,7],6:t,9:r,11:a,13:s},{5:[1,9]},{10:[1,10]},{12:[1,11]},e(o,[2,6]),{3:12,4:2,6:t,9:r,11:a,13:s},{1:[2,2]},{4:17,5:u,7:13,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},e(o,[2,4]),e(o,[2,5]),{1:[2,1]},{8:[1,41]},{4:17,5:u,7:42,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},{4:17,5:u,7:43,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},{4:17,5:u,7:44,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},{4:17,5:u,7:45,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},{4:17,5:u,7:46,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},{4:17,5:u,7:47,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},{4:17,5:u,7:48,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},{4:17,5:u,7:49,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},{4:17,5:u,7:50,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:18,18:19,19:20,20:21,21:f,22:p,23:m,24:b,25:23,33:25,41:_,42:w,43:S,44:C,45:A,46:k,54:I,72:N,74:L,77:P,89:M,90:F},{26:51,89:[1,52],90:[1,53]},{55:54,89:[1,55],90:[1,56]},{29:[1,59],61:[1,57],63:[1,58]},e(U,[2,17]),e(U,[2,18]),e(U,[2,19]),e(U,[2,20]),{30:60,33:62,75:$,89:M,90:F},{30:63,33:62,75:$,89:M,90:F},{30:64,33:62,75:$,89:M,90:F},e(G,[2,29]),e(G,[2,30]),e(G,[2,31]),e(G,[2,32]),e(G,[2,33]),e(G,[2,34]),e(B,[2,81]),e(B,[2,82]),{1:[2,3]},{8:[2,8]},{8:[2,9]},{8:[2,10]},{8:[2,11]},{8:[2,12]},{8:[2,13]},{8:[2,14]},{8:[2,15]},{8:[2,16]},{27:[1,65],29:[1,66]},e(Z,[2,79]),e(Z,[2,80]),{27:[1,67],29:[1,68]},e(Z,[2,85]),e(Z,[2,86]),{62:69,65:z,66:Y,67:W,68:Q,69:V,70:j,71:ee},{62:77,65:z,66:Y,67:W,68:Q,69:V,70:j,71:ee},{30:78,33:62,75:$,89:M,90:F},{73:79,75:te,76:ne,78:81,79:82,80:se,81:ie,82:ge,83:ce,84:be,85:ve,86:De,87:ye,88:Ee},e(he,[2,60]),e(he,[2,62]),{73:93,75:te,76:ne,78:81,79:82,80:se,81:ie,82:ge,83:ce,84:be,85:ve,86:De,87:ye,88:Ee},{30:94,33:62,75:$,76:ne,89:M,90:F},{5:[1,95]},{30:96,33:62,75:$,89:M,90:F},{5:[1,97]},{30:98,33:62,75:$,89:M,90:F},{63:[1,99]},e(we,[2,50]),e(we,[2,51]),e(we,[2,52]),e(we,[2,53]),e(we,[2,54]),e(we,[2,55]),e(we,[2,56]),{64:[1,100]},e(U,[2,59],{76:ne}),e(U,[2,64],{76:Ce}),{33:103,75:[1,102],89:M,90:F},e(Ie,[2,65],{79:104,75:te,80:se,81:ie,82:ge,83:ce,84:be,85:ve,86:De,87:ye,88:Ee}),e(Le,[2,67]),e(Le,[2,69]),e(Le,[2,70]),e(Le,[2,71]),e(Le,[2,72]),e(Le,[2,73]),e(Le,[2,74]),e(Le,[2,75]),e(Le,[2,76]),e(Le,[2,77]),e(Le,[2,78]),e(U,[2,57],{76:Ce}),e(U,[2,58],{76:ne}),{5:Fe,28:105,31:Ve,34:Oe,36:Dt,38:ot,40:sn},{27:[1,112],76:ne},{5:Kt,40:Ft,56:113,57:Je,59:ht},{27:[1,118],76:ne},{33:119,89:M,90:F},{33:120,89:M,90:F},{75:te,78:121,79:82,80:se,81:ie,82:ge,83:ce,84:be,85:ve,86:De,87:ye,88:Ee},e(he,[2,61]),e(he,[2,63]),e(Le,[2,68]),e(U,[2,21]),{32:[1,122]},{32:[1,123]},{32:[1,124]},{32:[1,125]},{5:Fe,28:126,31:Ve,34:Oe,36:Dt,38:ot,40:sn},e(U,[2,28]),{5:[1,127]},e(U,[2,42]),{32:[1,128]},{32:[1,129]},{5:Kt,40:Ft,56:130,57:Je,59:ht},e(U,[2,47]),{5:[1,131]},e(U,[2,48]),e(U,[2,49]),e(Ie,[2,66],{79:104,75:te,80:se,81:ie,82:ge,83:ce,84:be,85:ve,86:De,87:ye,88:Ee}),{33:132,89:M,90:F},{35:133,89:[1,134],90:[1,135]},{37:136,47:[1,137],48:[1,138],49:[1,139]},{39:140,50:[1,141],51:[1,142],52:[1,143],53:[1,144]},e(U,[2,27]),{5:Fe,28:145,31:Ve,34:Oe,36:Dt,38:ot,40:sn},{58:146,89:[1,147],90:[1,148]},{60:149,89:[1,150],90:[1,151]},e(U,[2,46]),{5:Kt,40:Ft,56:152,57:Je,59:ht},{5:[1,153]},{5:[1,154]},{5:[2,83]},{5:[2,84]},{5:[1,155]},{5:[2,35]},{5:[2,36]},{5:[2,37]},{5:[1,156]},{5:[2,38]},{5:[2,39]},{5:[2,40]},{5:[2,41]},e(U,[2,22]),{5:[1,157]},{5:[2,87]},{5:[2,88]},{5:[1,158]},{5:[2,89]},{5:[2,90]},e(U,[2,43]),{5:Fe,28:159,31:Ve,34:Oe,36:Dt,38:ot,40:sn},{5:Fe,28:160,31:Ve,34:Oe,36:Dt,38:ot,40:sn},{5:Fe,28:161,31:Ve,34:Oe,36:Dt,38:ot,40:sn},{5:Fe,28:162,31:Ve,34:Oe,36:Dt,38:ot,40:sn},{5:Kt,40:Ft,56:163,57:Je,59:ht},{5:Kt,40:Ft,56:164,57:Je,59:ht},e(U,[2,23]),e(U,[2,24]),e(U,[2,25]),e(U,[2,26]),e(U,[2,44]),e(U,[2,45])],defaultActions:{8:[2,2],12:[2,1],41:[2,3],42:[2,8],43:[2,9],44:[2,10],45:[2,11],46:[2,12],47:[2,13],48:[2,14],49:[2,15],50:[2,16],134:[2,83],135:[2,84],137:[2,35],138:[2,36],139:[2,37],141:[2,38],142:[2,39],143:[2,40],144:[2,41],147:[2,87],148:[2,88],150:[2,89],151:[2,90]},parseError:X(function(Ye,Ae){if(Ae.recoverable)this.trace(Ye);else{var Xe=new Error(Ye);throw Xe.hash=Ae,Xe}},"parseError"),parse:X(function(Ye){var Ae=this,Xe=[0],fe=[],Qe=[null],Ke=[],mt=this.table,lt="",$t=0,Ut=0,Jt=2,wn=1,Vn=Ke.slice.call(arguments,1),Wn=Object.create(this.lexer),Dn={yy:{}};for(var zn in this.yy)Object.prototype.hasOwnProperty.call(this.yy,zn)&&(Dn.yy[zn]=this.yy[zn]);Wn.setInput(Ye,Dn.yy),Dn.yy.lexer=Wn,Dn.yy.parser=this,typeof Wn.yylloc>"u"&&(Wn.yylloc={});var vn=Wn.yylloc;Ke.push(vn);var Cn=Wn.options&&Wn.options.ranges;typeof Dn.yy.parseError=="function"?this.parseError=Dn.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Ar(Os){Xe.length=Xe.length-2*Os,Qe.length=Qe.length-Os,Ke.length=Ke.length-Os}X(Ar,"popStack");function ur(){var Os;return Os=fe.pop()||Wn.lex()||wn,typeof Os!="number"&&(Os instanceof Array&&(fe=Os,Os=fe.pop()),Os=Ae.symbols_[Os]||Os),Os}X(ur,"lex");for(var On,Ir,Ln,pr,Cr={},Zr,Pr,Ci,ds;;){if(Ir=Xe[Xe.length-1],this.defaultActions[Ir]?Ln=this.defaultActions[Ir]:((On===null||typeof On>"u")&&(On=ur()),Ln=mt[Ir]&&mt[Ir][On]),typeof Ln>"u"||!Ln.length||!Ln[0]){var ta="";ds=[];for(Zr in mt[Ir])this.terminals_[Zr]&&Zr>Jt&&ds.push("'"+this.terminals_[Zr]+"'");Wn.showPosition?ta="Parse error on line "+($t+1)+`: +`+Wn.showPosition()+` +Expecting `+ds.join(", ")+", got '"+(this.terminals_[On]||On)+"'":ta="Parse error on line "+($t+1)+": Unexpected "+(On==wn?"end of input":"'"+(this.terminals_[On]||On)+"'"),this.parseError(ta,{text:Wn.match,token:this.terminals_[On]||On,line:Wn.yylineno,loc:vn,expected:ds})}if(Ln[0]instanceof Array&&Ln.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Ir+", token: "+On);switch(Ln[0]){case 1:Xe.push(On),Qe.push(Wn.yytext),Ke.push(Wn.yylloc),Xe.push(Ln[1]),On=null,Ut=Wn.yyleng,lt=Wn.yytext,$t=Wn.yylineno,vn=Wn.yylloc;break;case 2:if(Pr=this.productions_[Ln[1]][1],Cr.$=Qe[Qe.length-Pr],Cr._$={first_line:Ke[Ke.length-(Pr||1)].first_line,last_line:Ke[Ke.length-1].last_line,first_column:Ke[Ke.length-(Pr||1)].first_column,last_column:Ke[Ke.length-1].last_column},Cn&&(Cr._$.range=[Ke[Ke.length-(Pr||1)].range[0],Ke[Ke.length-1].range[1]]),pr=this.performAction.apply(Cr,[lt,Ut,$t,Dn.yy,Ln[1],Qe,Ke].concat(Vn)),typeof pr<"u")return pr;Pr&&(Xe=Xe.slice(0,-1*Pr*2),Qe=Qe.slice(0,-1*Pr),Ke=Ke.slice(0,-1*Pr)),Xe.push(this.productions_[Ln[1]][0]),Qe.push(Cr.$),Ke.push(Cr._$),Ci=mt[Xe[Xe.length-2]][Xe[Xe.length-1]],Xe.push(Ci);break;case 3:return!0}}return!0},"parse")},qe=function(){var Ge={EOF:1,parseError:X(function(Ae,Xe){if(this.yy.parser)this.yy.parser.parseError(Ae,Xe);else throw new Error(Ae)},"parseError"),setInput:X(function(Ye,Ae){return this.yy=Ae||this.yy||{},this._input=Ye,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var Ye=this._input[0];this.yytext+=Ye,this.yyleng++,this.offset++,this.match+=Ye,this.matched+=Ye;var Ae=Ye.match(/(?:\r\n?|\n).*/g);return Ae?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Ye},"input"),unput:X(function(Ye){var Ae=Ye.length,Xe=Ye.split(/(?:\r\n?|\n)/g);this._input=Ye+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-Ae),this.offset-=Ae;var fe=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Xe.length-1&&(this.yylineno-=Xe.length-1);var Qe=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Xe?(Xe.length===fe.length?this.yylloc.first_column:0)+fe[fe.length-Xe.length].length-Xe[0].length:this.yylloc.first_column-Ae},this.options.ranges&&(this.yylloc.range=[Qe[0],Qe[0]+this.yyleng-Ae]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(Ye){this.unput(this.match.slice(Ye))},"less"),pastInput:X(function(){var Ye=this.matched.substr(0,this.matched.length-this.match.length);return(Ye.length>20?"...":"")+Ye.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var Ye=this.match;return Ye.length<20&&(Ye+=this._input.substr(0,20-Ye.length)),(Ye.substr(0,20)+(Ye.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var Ye=this.pastInput(),Ae=new Array(Ye.length+1).join("-");return Ye+this.upcomingInput()+` +`+Ae+"^"},"showPosition"),test_match:X(function(Ye,Ae){var Xe,fe,Qe;if(this.options.backtrack_lexer&&(Qe={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Qe.yylloc.range=this.yylloc.range.slice(0))),fe=Ye[0].match(/(?:\r\n?|\n).*/g),fe&&(this.yylineno+=fe.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:fe?fe[fe.length-1].length-fe[fe.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Ye[0].length},this.yytext+=Ye[0],this.match+=Ye[0],this.matches=Ye,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Ye[0].length),this.matched+=Ye[0],Xe=this.performAction.call(this,this.yy,this,Ae,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Xe)return Xe;if(this._backtrack){for(var Ke in Qe)this[Ke]=Qe[Ke];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Ye,Ae,Xe,fe;this._more||(this.yytext="",this.match="");for(var Qe=this._currentRules(),Ke=0;KeAe[0].length)){if(Ae=Xe,fe=Ke,this.options.backtrack_lexer){if(Ye=this.test_match(Xe,Qe[Ke]),Ye!==!1)return Ye;if(this._backtrack){Ae=!1;continue}else return!1}else if(!this.options.flex)break}return Ae?(Ye=this.test_match(Ae,Qe[fe]),Ye!==!1?Ye:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var Ae=this.next();return Ae||this.lex()},"lex"),begin:X(function(Ae){this.conditionStack.push(Ae)},"begin"),popState:X(function(){var Ae=this.conditionStack.length-1;return Ae>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(Ae){return Ae=this.conditionStack.length-1-Math.abs(Ae||0),Ae>=0?this.conditionStack[Ae]:"INITIAL"},"topState"),pushState:X(function(Ae){this.begin(Ae)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(Ae,Xe,fe,Qe){switch(fe){case 0:return"title";case 1:return this.begin("acc_title"),9;case 2:return this.popState(),"acc_title_value";case 3:return this.begin("acc_descr"),11;case 4:return this.popState(),"acc_descr_value";case 5:this.begin("acc_descr_multiline");break;case 6:this.popState();break;case 7:return"acc_descr_multiline_value";case 8:return 21;case 9:return 22;case 10:return 23;case 11:return 24;case 12:return 5;case 13:break;case 14:break;case 15:break;case 16:return 8;case 17:return 6;case 18:return 27;case 19:return 40;case 20:return 29;case 21:return 32;case 22:return 31;case 23:return 34;case 24:return 36;case 25:return 38;case 26:return 41;case 27:return 42;case 28:return 43;case 29:return 44;case 30:return 45;case 31:return 46;case 32:return 47;case 33:return 48;case 34:return 49;case 35:return 50;case 36:return 51;case 37:return 52;case 38:return 53;case 39:return 54;case 40:return 65;case 41:return 66;case 42:return 67;case 43:return 68;case 44:return 69;case 45:return 70;case 46:return 71;case 47:return 57;case 48:return 59;case 49:return this.begin("style"),77;case 50:return 75;case 51:return 81;case 52:return 88;case 53:return"PERCENT";case 54:return 86;case 55:return 84;case 56:break;case 57:this.begin("string");break;case 58:this.popState();break;case 59:return this.begin("style"),72;case 60:return this.begin("style"),74;case 61:return 61;case 62:return 64;case 63:return 63;case 64:this.begin("string");break;case 65:this.popState();break;case 66:return"qString";case 67:return Xe.yytext=Xe.yytext.trim(),89;case 68:return 75;case 69:return 80;case 70:return 76}},"anonymous"),rules:[/^(?:title\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:(\r?\n)+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:$)/i,/^(?:requirementDiagram\b)/i,/^(?:\{)/i,/^(?:\})/i,/^(?::{3})/i,/^(?::)/i,/^(?:id\b)/i,/^(?:text\b)/i,/^(?:risk\b)/i,/^(?:verifyMethod\b)/i,/^(?:requirement\b)/i,/^(?:functionalRequirement\b)/i,/^(?:interfaceRequirement\b)/i,/^(?:performanceRequirement\b)/i,/^(?:physicalRequirement\b)/i,/^(?:designConstraint\b)/i,/^(?:low\b)/i,/^(?:medium\b)/i,/^(?:high\b)/i,/^(?:analysis\b)/i,/^(?:demonstration\b)/i,/^(?:inspection\b)/i,/^(?:test\b)/i,/^(?:element\b)/i,/^(?:contains\b)/i,/^(?:copies\b)/i,/^(?:derives\b)/i,/^(?:satisfies\b)/i,/^(?:verifies\b)/i,/^(?:refines\b)/i,/^(?:traces\b)/i,/^(?:type\b)/i,/^(?:docref\b)/i,/^(?:style\b)/i,/^(?:\w+)/i,/^(?::)/i,/^(?:;)/i,/^(?:%)/i,/^(?:-)/i,/^(?:#)/i,/^(?: )/i,/^(?:["])/i,/^(?:\n)/i,/^(?:classDef\b)/i,/^(?:class\b)/i,/^(?:<-)/i,/^(?:->)/i,/^(?:-)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[\w][^:,\r\n\{\<\>\-\=]*)/i,/^(?:\w+)/i,/^(?:[0-9]+)/i,/^(?:,)/i],conditions:{acc_descr_multiline:{rules:[6,7,68,69,70],inclusive:!1},acc_descr:{rules:[4,68,69,70],inclusive:!1},acc_title:{rules:[2,68,69,70],inclusive:!1},style:{rules:[50,51,52,53,54,55,56,57,58,68,69,70],inclusive:!1},unqString:{rules:[68,69,70],inclusive:!1},token:{rules:[68,69,70],inclusive:!1},string:{rules:[65,66,68,69,70],inclusive:!1},INITIAL:{rules:[0,1,3,5,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,59,60,61,62,63,64,67,68,69,70],inclusive:!0}}};return Ge}();et.lexer=qe;function He(){this.yy={}}return X(He,"Parser"),He.prototype=et,et.Parser=He,new He}();Cut.parser=Cut;var hWi=Cut,nj,dWi=(nj=class{constructor(){this.relations=[],this.latestRequirement=this.getInitialRequirement(),this.requirements=new Map,this.latestElement=this.getInitialElement(),this.elements=new Map,this.classes=new Map,this.direction="TB",this.RequirementType={REQUIREMENT:"Requirement",FUNCTIONAL_REQUIREMENT:"Functional Requirement",INTERFACE_REQUIREMENT:"Interface Requirement",PERFORMANCE_REQUIREMENT:"Performance Requirement",PHYSICAL_REQUIREMENT:"Physical Requirement",DESIGN_CONSTRAINT:"Design Constraint"},this.RiskLevel={LOW_RISK:"Low",MED_RISK:"Medium",HIGH_RISK:"High"},this.VerifyType={VERIFY_ANALYSIS:"Analysis",VERIFY_DEMONSTRATION:"Demonstration",VERIFY_INSPECTION:"Inspection",VERIFY_TEST:"Test"},this.Relationships={CONTAINS:"contains",COPIES:"copies",DERIVES:"derives",SATISFIES:"satisfies",VERIFIES:"verifies",REFINES:"refines",TRACES:"traces"},this.setAccTitle=N1,this.getAccTitle=Mp,this.setAccDescription=Pp,this.getAccDescription=Bp,this.setDiagramTitle=Og,this.getDiagramTitle=P1,this.getConfig=X(()=>nn().requirement,"getConfig"),this.clear(),this.setDirection=this.setDirection.bind(this),this.addRequirement=this.addRequirement.bind(this),this.setNewReqId=this.setNewReqId.bind(this),this.setNewReqRisk=this.setNewReqRisk.bind(this),this.setNewReqText=this.setNewReqText.bind(this),this.setNewReqVerifyMethod=this.setNewReqVerifyMethod.bind(this),this.addElement=this.addElement.bind(this),this.setNewElementType=this.setNewElementType.bind(this),this.setNewElementDocRef=this.setNewElementDocRef.bind(this),this.addRelationship=this.addRelationship.bind(this),this.setCssStyle=this.setCssStyle.bind(this),this.setClass=this.setClass.bind(this),this.defineClass=this.defineClass.bind(this),this.setAccTitle=this.setAccTitle.bind(this),this.setAccDescription=this.setAccDescription.bind(this)}getDirection(){return this.direction}setDirection(t){this.direction=t}resetLatestRequirement(){this.latestRequirement=this.getInitialRequirement()}resetLatestElement(){this.latestElement=this.getInitialElement()}getInitialRequirement(){return{requirementId:"",text:"",risk:"",verifyMethod:"",name:"",type:"",cssStyles:[],classes:["default"]}}getInitialElement(){return{name:"",type:"",docRef:"",cssStyles:[],classes:["default"]}}addRequirement(t,r){return this.requirements.has(t)||this.requirements.set(t,{name:t,type:r,requirementId:this.latestRequirement.requirementId,text:this.latestRequirement.text,risk:this.latestRequirement.risk,verifyMethod:this.latestRequirement.verifyMethod,cssStyles:[],classes:["default"]}),this.resetLatestRequirement(),this.requirements.get(t)}getRequirements(){return this.requirements}setNewReqId(t){this.latestRequirement!==void 0&&(this.latestRequirement.requirementId=t)}setNewReqText(t){this.latestRequirement!==void 0&&(this.latestRequirement.text=t)}setNewReqRisk(t){this.latestRequirement!==void 0&&(this.latestRequirement.risk=t)}setNewReqVerifyMethod(t){this.latestRequirement!==void 0&&(this.latestRequirement.verifyMethod=t)}addElement(t){return this.elements.has(t)||(this.elements.set(t,{name:t,type:this.latestElement.type,docRef:this.latestElement.docRef,cssStyles:[],classes:["default"]}),it.info("Added new element: ",t)),this.resetLatestElement(),this.elements.get(t)}getElements(){return this.elements}setNewElementType(t){this.latestElement!==void 0&&(this.latestElement.type=t)}setNewElementDocRef(t){this.latestElement!==void 0&&(this.latestElement.docRef=t)}addRelationship(t,r,a){this.relations.push({type:t,src:r,dst:a})}getRelationships(){return this.relations}clear(){this.relations=[],this.resetLatestRequirement(),this.requirements=new Map,this.resetLatestElement(),this.elements=new Map,this.classes=new Map,M1()}setCssStyle(t,r){for(const a of t){const s=this.requirements.get(a)??this.elements.get(a);if(!r||!s)return;for(const o of r)o.includes(",")?s.cssStyles.push(...o.split(",")):s.cssStyles.push(o)}}setClass(t,r){var a;for(const s of t){const o=this.requirements.get(s)??this.elements.get(s);if(o)for(const u of r){o.classes.push(u);const h=(a=this.classes.get(u))==null?void 0:a.styles;h&&o.cssStyles.push(...h)}}}defineClass(t,r){for(const a of t){let s=this.classes.get(a);s===void 0&&(s={id:a,styles:[],textStyles:[]},this.classes.set(a,s)),r&&r.forEach(function(o){if(/color/.exec(o)){const u=o.replace("fill","bgFill");s.textStyles.push(u)}s.styles.push(o)}),this.requirements.forEach(o=>{o.classes.includes(a)&&o.cssStyles.push(...r.flatMap(u=>u.split(",")))}),this.elements.forEach(o=>{o.classes.includes(a)&&o.cssStyles.push(...r.flatMap(u=>u.split(",")))})}}getClasses(){return this.classes}getData(){var s,o,u,h;const t=nn(),r=[],a=[];for(const f of this.requirements.values()){const p=f;p.id=f.name,p.cssStyles=f.cssStyles,p.cssClasses=f.classes.join(" "),p.shape="requirementBox",p.look=t.look,r.push(p)}for(const f of this.elements.values()){const p=f;p.shape="requirementBox",p.look=t.look,p.id=f.name,p.cssStyles=f.cssStyles,p.cssClasses=f.classes.join(" "),r.push(p)}for(const f of this.relations){let p=0;const m=f.type===this.Relationships.CONTAINS,b={id:`${f.src}-${f.dst}-${p}`,start:((s=this.requirements.get(f.src))==null?void 0:s.name)??((o=this.elements.get(f.src))==null?void 0:o.name),end:((u=this.requirements.get(f.dst))==null?void 0:u.name)??((h=this.elements.get(f.dst))==null?void 0:h.name),label:`<<${f.type}>>`,classes:"relationshipLine",style:["fill:none",m?"":"stroke-dasharray: 10,7"],labelpos:"c",thickness:"normal",type:"normal",pattern:m?"normal":"dashed",arrowTypeStart:m?"requirement_contains":"",arrowTypeEnd:m?"":"requirement_arrow",look:t.look};a.push(b),p++}return{nodes:r,edges:a,other:{},config:t,direction:this.getDirection()}}},X(nj,"RequirementDB"),nj),fWi=X(e=>` + + marker { + fill: ${e.relationColor}; + stroke: ${e.relationColor}; + } + + marker.cross { + stroke: ${e.lineColor}; + } + + svg { + font-family: ${e.fontFamily}; + font-size: ${e.fontSize}; + } + + .reqBox { + fill: ${e.requirementBackground}; + fill-opacity: 1.0; + stroke: ${e.requirementBorderColor}; + stroke-width: ${e.requirementBorderSize}; + } + + .reqTitle, .reqLabel{ + fill: ${e.requirementTextColor}; + } + .reqLabelBox { + fill: ${e.relationLabelBackground}; + fill-opacity: 1.0; + } + + .req-title-line { + stroke: ${e.requirementBorderColor}; + stroke-width: ${e.requirementBorderSize}; + } + .relationshipLine { + stroke: ${e.relationColor}; + stroke-width: 1; + } + .relationshipLabel { + fill: ${e.relationLabelColor}; + } + .divider { + stroke: ${e.nodeBorder}; + stroke-width: 1; + } + .label { + font-family: ${e.fontFamily}; + color: ${e.nodeTextColor||e.textColor}; + } + .label text,span { + fill: ${e.nodeTextColor||e.textColor}; + color: ${e.nodeTextColor||e.textColor}; + } + .labelBkg { + background-color: ${e.edgeLabelBackground}; + } + +`,"getStyles"),pWi=fWi,UKn={};KCe(UKn,{draw:()=>gWi});var gWi=X(async function(e,t,r,a){it.info("REF0:"),it.info("Drawing requirement diagram (unified)",t);const{securityLevel:s,state:o,layout:u}=nn(),h=a.db.getData(),f=eK(t,s);h.type=a.type,h.layoutAlgorithm=hce(u),h.nodeSpacing=(o==null?void 0:o.nodeSpacing)??50,h.rankSpacing=(o==null?void 0:o.rankSpacing)??50,h.markers=["requirement_contains","requirement_arrow"],h.diagramId=t,await $W(h,f);const p=8;Vo.insertTitle(f,"requirementDiagramTitleText",(o==null?void 0:o.titleTopMargin)??25,a.db.getDiagramTitle()),U$(f,p,"requirementDiagram",(o==null?void 0:o.useMaxWidth)??!0)},"draw"),mWi={parser:hWi,get db(){return new dWi},renderer:UKn,styles:pWi};const bWi=Object.freeze(Object.defineProperty({__proto__:null,diagram:mWi},Symbol.toStringTag,{value:"Module"}));var Aut=function(){var e=X(function(Ee,he,we,Ce){for(we=we||{},Ce=Ee.length;Ce--;we[Ee[Ce]]=he);return we},"o"),t=[1,2],r=[1,3],a=[1,4],s=[2,4],o=[1,9],u=[1,11],h=[1,13],f=[1,14],p=[1,16],m=[1,17],b=[1,18],_=[1,24],w=[1,25],S=[1,26],C=[1,27],A=[1,28],k=[1,29],I=[1,30],N=[1,31],L=[1,32],P=[1,33],M=[1,34],F=[1,35],U=[1,36],$=[1,37],G=[1,38],B=[1,39],Z=[1,41],z=[1,42],Y=[1,43],W=[1,44],Q=[1,45],V=[1,46],j=[1,4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,47,48,49,50,52,53,55,60,61,62,63,71],ee=[2,71],te=[4,5,16,50,52,53],ne=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,50,52,53,55,60,61,62,63,71],se=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,49,50,52,53,55,60,61,62,63,71],ie=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,48,50,52,53,55,60,61,62,63,71],ge=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,47,50,52,53,55,60,61,62,63,71],ce=[69,70,71],be=[1,127],ve={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,SPACE:4,NEWLINE:5,SD:6,document:7,line:8,statement:9,box_section:10,box_line:11,participant_statement:12,create:13,box:14,restOfLine:15,end:16,signal:17,autonumber:18,NUM:19,off:20,activate:21,actor:22,deactivate:23,note_statement:24,links_statement:25,link_statement:26,properties_statement:27,details_statement:28,title:29,legacy_title:30,acc_title:31,acc_title_value:32,acc_descr:33,acc_descr_value:34,acc_descr_multiline_value:35,loop:36,rect:37,opt:38,alt:39,else_sections:40,par:41,par_sections:42,par_over:43,critical:44,option_sections:45,break:46,option:47,and:48,else:49,participant:50,AS:51,participant_actor:52,destroy:53,actor_with_config:54,note:55,placement:56,text2:57,over:58,actor_pair:59,links:60,link:61,properties:62,details:63,spaceList:64,",":65,left_of:66,right_of:67,signaltype:68,"+":69,"-":70,ACTOR:71,config_object:72,CONFIG_START:73,CONFIG_CONTENT:74,CONFIG_END:75,SOLID_OPEN_ARROW:76,DOTTED_OPEN_ARROW:77,SOLID_ARROW:78,BIDIRECTIONAL_SOLID_ARROW:79,DOTTED_ARROW:80,BIDIRECTIONAL_DOTTED_ARROW:81,SOLID_CROSS:82,DOTTED_CROSS:83,SOLID_POINT:84,DOTTED_POINT:85,TXT:86,$accept:0,$end:1},terminals_:{2:"error",4:"SPACE",5:"NEWLINE",6:"SD",13:"create",14:"box",15:"restOfLine",16:"end",18:"autonumber",19:"NUM",20:"off",21:"activate",23:"deactivate",29:"title",30:"legacy_title",31:"acc_title",32:"acc_title_value",33:"acc_descr",34:"acc_descr_value",35:"acc_descr_multiline_value",36:"loop",37:"rect",38:"opt",39:"alt",41:"par",43:"par_over",44:"critical",46:"break",47:"option",48:"and",49:"else",50:"participant",51:"AS",52:"participant_actor",53:"destroy",55:"note",58:"over",60:"links",61:"link",62:"properties",63:"details",65:",",66:"left_of",67:"right_of",69:"+",70:"-",71:"ACTOR",73:"CONFIG_START",74:"CONFIG_CONTENT",75:"CONFIG_END",76:"SOLID_OPEN_ARROW",77:"DOTTED_OPEN_ARROW",78:"SOLID_ARROW",79:"BIDIRECTIONAL_SOLID_ARROW",80:"DOTTED_ARROW",81:"BIDIRECTIONAL_DOTTED_ARROW",82:"SOLID_CROSS",83:"DOTTED_CROSS",84:"SOLID_POINT",85:"DOTTED_POINT",86:"TXT"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[8,1],[8,1],[10,0],[10,2],[11,2],[11,1],[11,1],[9,1],[9,2],[9,4],[9,2],[9,4],[9,3],[9,3],[9,2],[9,3],[9,3],[9,2],[9,2],[9,2],[9,2],[9,2],[9,1],[9,1],[9,2],[9,2],[9,1],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[45,1],[45,4],[42,1],[42,4],[40,1],[40,4],[12,5],[12,3],[12,5],[12,3],[12,3],[12,3],[24,4],[24,4],[25,3],[26,3],[27,3],[28,3],[64,2],[64,1],[59,3],[59,1],[56,1],[56,1],[17,5],[17,5],[17,4],[54,2],[72,3],[22,1],[68,1],[68,1],[68,1],[68,1],[68,1],[68,1],[68,1],[68,1],[68,1],[68,1],[57,1]],performAction:X(function(he,we,Ce,Ie,Le,Fe,Ve){var Oe=Fe.length-1;switch(Le){case 3:return Ie.apply(Fe[Oe]),Fe[Oe];case 4:case 9:this.$=[];break;case 5:case 10:Fe[Oe-1].push(Fe[Oe]),this.$=Fe[Oe-1];break;case 6:case 7:case 11:case 12:this.$=Fe[Oe];break;case 8:case 13:this.$=[];break;case 15:Fe[Oe].type="createParticipant",this.$=Fe[Oe];break;case 16:Fe[Oe-1].unshift({type:"boxStart",boxData:Ie.parseBoxData(Fe[Oe-2])}),Fe[Oe-1].push({type:"boxEnd",boxText:Fe[Oe-2]}),this.$=Fe[Oe-1];break;case 18:this.$={type:"sequenceIndex",sequenceIndex:Number(Fe[Oe-2]),sequenceIndexStep:Number(Fe[Oe-1]),sequenceVisible:!0,signalType:Ie.LINETYPE.AUTONUMBER};break;case 19:this.$={type:"sequenceIndex",sequenceIndex:Number(Fe[Oe-1]),sequenceIndexStep:1,sequenceVisible:!0,signalType:Ie.LINETYPE.AUTONUMBER};break;case 20:this.$={type:"sequenceIndex",sequenceVisible:!1,signalType:Ie.LINETYPE.AUTONUMBER};break;case 21:this.$={type:"sequenceIndex",sequenceVisible:!0,signalType:Ie.LINETYPE.AUTONUMBER};break;case 22:this.$={type:"activeStart",signalType:Ie.LINETYPE.ACTIVE_START,actor:Fe[Oe-1].actor};break;case 23:this.$={type:"activeEnd",signalType:Ie.LINETYPE.ACTIVE_END,actor:Fe[Oe-1].actor};break;case 29:Ie.setDiagramTitle(Fe[Oe].substring(6)),this.$=Fe[Oe].substring(6);break;case 30:Ie.setDiagramTitle(Fe[Oe].substring(7)),this.$=Fe[Oe].substring(7);break;case 31:this.$=Fe[Oe].trim(),Ie.setAccTitle(this.$);break;case 32:case 33:this.$=Fe[Oe].trim(),Ie.setAccDescription(this.$);break;case 34:Fe[Oe-1].unshift({type:"loopStart",loopText:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.LOOP_START}),Fe[Oe-1].push({type:"loopEnd",loopText:Fe[Oe-2],signalType:Ie.LINETYPE.LOOP_END}),this.$=Fe[Oe-1];break;case 35:Fe[Oe-1].unshift({type:"rectStart",color:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.RECT_START}),Fe[Oe-1].push({type:"rectEnd",color:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.RECT_END}),this.$=Fe[Oe-1];break;case 36:Fe[Oe-1].unshift({type:"optStart",optText:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.OPT_START}),Fe[Oe-1].push({type:"optEnd",optText:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.OPT_END}),this.$=Fe[Oe-1];break;case 37:Fe[Oe-1].unshift({type:"altStart",altText:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.ALT_START}),Fe[Oe-1].push({type:"altEnd",signalType:Ie.LINETYPE.ALT_END}),this.$=Fe[Oe-1];break;case 38:Fe[Oe-1].unshift({type:"parStart",parText:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.PAR_START}),Fe[Oe-1].push({type:"parEnd",signalType:Ie.LINETYPE.PAR_END}),this.$=Fe[Oe-1];break;case 39:Fe[Oe-1].unshift({type:"parStart",parText:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.PAR_OVER_START}),Fe[Oe-1].push({type:"parEnd",signalType:Ie.LINETYPE.PAR_END}),this.$=Fe[Oe-1];break;case 40:Fe[Oe-1].unshift({type:"criticalStart",criticalText:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.CRITICAL_START}),Fe[Oe-1].push({type:"criticalEnd",signalType:Ie.LINETYPE.CRITICAL_END}),this.$=Fe[Oe-1];break;case 41:Fe[Oe-1].unshift({type:"breakStart",breakText:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.BREAK_START}),Fe[Oe-1].push({type:"breakEnd",optText:Ie.parseMessage(Fe[Oe-2]),signalType:Ie.LINETYPE.BREAK_END}),this.$=Fe[Oe-1];break;case 43:this.$=Fe[Oe-3].concat([{type:"option",optionText:Ie.parseMessage(Fe[Oe-1]),signalType:Ie.LINETYPE.CRITICAL_OPTION},Fe[Oe]]);break;case 45:this.$=Fe[Oe-3].concat([{type:"and",parText:Ie.parseMessage(Fe[Oe-1]),signalType:Ie.LINETYPE.PAR_AND},Fe[Oe]]);break;case 47:this.$=Fe[Oe-3].concat([{type:"else",altText:Ie.parseMessage(Fe[Oe-1]),signalType:Ie.LINETYPE.ALT_ELSE},Fe[Oe]]);break;case 48:Fe[Oe-3].draw="participant",Fe[Oe-3].type="addParticipant",Fe[Oe-3].description=Ie.parseMessage(Fe[Oe-1]),this.$=Fe[Oe-3];break;case 49:Fe[Oe-1].draw="participant",Fe[Oe-1].type="addParticipant",this.$=Fe[Oe-1];break;case 50:Fe[Oe-3].draw="actor",Fe[Oe-3].type="addParticipant",Fe[Oe-3].description=Ie.parseMessage(Fe[Oe-1]),this.$=Fe[Oe-3];break;case 51:Fe[Oe-1].draw="actor",Fe[Oe-1].type="addParticipant",this.$=Fe[Oe-1];break;case 52:Fe[Oe-1].type="destroyParticipant",this.$=Fe[Oe-1];break;case 53:Fe[Oe-1].draw="participant",Fe[Oe-1].type="addParticipant",this.$=Fe[Oe-1];break;case 54:this.$=[Fe[Oe-1],{type:"addNote",placement:Fe[Oe-2],actor:Fe[Oe-1].actor,text:Fe[Oe]}];break;case 55:Fe[Oe-2]=[].concat(Fe[Oe-1],Fe[Oe-1]).slice(0,2),Fe[Oe-2][0]=Fe[Oe-2][0].actor,Fe[Oe-2][1]=Fe[Oe-2][1].actor,this.$=[Fe[Oe-1],{type:"addNote",placement:Ie.PLACEMENT.OVER,actor:Fe[Oe-2].slice(0,2),text:Fe[Oe]}];break;case 56:this.$=[Fe[Oe-1],{type:"addLinks",actor:Fe[Oe-1].actor,text:Fe[Oe]}];break;case 57:this.$=[Fe[Oe-1],{type:"addALink",actor:Fe[Oe-1].actor,text:Fe[Oe]}];break;case 58:this.$=[Fe[Oe-1],{type:"addProperties",actor:Fe[Oe-1].actor,text:Fe[Oe]}];break;case 59:this.$=[Fe[Oe-1],{type:"addDetails",actor:Fe[Oe-1].actor,text:Fe[Oe]}];break;case 62:this.$=[Fe[Oe-2],Fe[Oe]];break;case 63:this.$=Fe[Oe];break;case 64:this.$=Ie.PLACEMENT.LEFTOF;break;case 65:this.$=Ie.PLACEMENT.RIGHTOF;break;case 66:this.$=[Fe[Oe-4],Fe[Oe-1],{type:"addMessage",from:Fe[Oe-4].actor,to:Fe[Oe-1].actor,signalType:Fe[Oe-3],msg:Fe[Oe],activate:!0},{type:"activeStart",signalType:Ie.LINETYPE.ACTIVE_START,actor:Fe[Oe-1].actor}];break;case 67:this.$=[Fe[Oe-4],Fe[Oe-1],{type:"addMessage",from:Fe[Oe-4].actor,to:Fe[Oe-1].actor,signalType:Fe[Oe-3],msg:Fe[Oe]},{type:"activeEnd",signalType:Ie.LINETYPE.ACTIVE_END,actor:Fe[Oe-4].actor}];break;case 68:this.$=[Fe[Oe-3],Fe[Oe-1],{type:"addMessage",from:Fe[Oe-3].actor,to:Fe[Oe-1].actor,signalType:Fe[Oe-2],msg:Fe[Oe]}];break;case 69:this.$={type:"addParticipant",actor:Fe[Oe-1],config:Fe[Oe]};break;case 70:this.$=Fe[Oe-1].trim();break;case 71:this.$={type:"addParticipant",actor:Fe[Oe]};break;case 72:this.$=Ie.LINETYPE.SOLID_OPEN;break;case 73:this.$=Ie.LINETYPE.DOTTED_OPEN;break;case 74:this.$=Ie.LINETYPE.SOLID;break;case 75:this.$=Ie.LINETYPE.BIDIRECTIONAL_SOLID;break;case 76:this.$=Ie.LINETYPE.DOTTED;break;case 77:this.$=Ie.LINETYPE.BIDIRECTIONAL_DOTTED;break;case 78:this.$=Ie.LINETYPE.SOLID_CROSS;break;case 79:this.$=Ie.LINETYPE.DOTTED_CROSS;break;case 80:this.$=Ie.LINETYPE.SOLID_POINT;break;case 81:this.$=Ie.LINETYPE.DOTTED_POINT;break;case 82:this.$=Ie.parseMessage(Fe[Oe].trim().substring(1));break}},"anonymous"),table:[{3:1,4:t,5:r,6:a},{1:[3]},{3:5,4:t,5:r,6:a},{3:6,4:t,5:r,6:a},e([1,4,5,13,14,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,50,52,53,55,60,61,62,63,71],s,{7:7}),{1:[2,1]},{1:[2,2]},{1:[2,3],4:o,5:u,8:8,9:10,12:12,13:h,14:f,17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,55:Z,60:z,61:Y,62:W,63:Q,71:V},e(j,[2,5]),{9:47,12:12,13:h,14:f,17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,55:Z,60:z,61:Y,62:W,63:Q,71:V},e(j,[2,7]),e(j,[2,8]),e(j,[2,14]),{12:48,50:$,52:G,53:B},{15:[1,49]},{5:[1,50]},{5:[1,53],19:[1,51],20:[1,52]},{22:54,71:V},{22:55,71:V},{5:[1,56]},{5:[1,57]},{5:[1,58]},{5:[1,59]},{5:[1,60]},e(j,[2,29]),e(j,[2,30]),{32:[1,61]},{34:[1,62]},e(j,[2,33]),{15:[1,63]},{15:[1,64]},{15:[1,65]},{15:[1,66]},{15:[1,67]},{15:[1,68]},{15:[1,69]},{15:[1,70]},{22:71,54:72,71:[1,73]},{22:74,71:V},{22:75,71:V},{68:76,76:[1,77],77:[1,78],78:[1,79],79:[1,80],80:[1,81],81:[1,82],82:[1,83],83:[1,84],84:[1,85],85:[1,86]},{56:87,58:[1,88],66:[1,89],67:[1,90]},{22:91,71:V},{22:92,71:V},{22:93,71:V},{22:94,71:V},e([5,51,65,76,77,78,79,80,81,82,83,84,85,86],ee),e(j,[2,6]),e(j,[2,15]),e(te,[2,9],{10:95}),e(j,[2,17]),{5:[1,97],19:[1,96]},{5:[1,98]},e(j,[2,21]),{5:[1,99]},{5:[1,100]},e(j,[2,24]),e(j,[2,25]),e(j,[2,26]),e(j,[2,27]),e(j,[2,28]),e(j,[2,31]),e(j,[2,32]),e(ne,s,{7:101}),e(ne,s,{7:102}),e(ne,s,{7:103}),e(se,s,{40:104,7:105}),e(ie,s,{42:106,7:107}),e(ie,s,{7:107,42:108}),e(ge,s,{45:109,7:110}),e(ne,s,{7:111}),{5:[1,113],51:[1,112]},{5:[1,114]},e([5,51],ee,{72:115,73:[1,116]}),{5:[1,118],51:[1,117]},{5:[1,119]},{22:122,69:[1,120],70:[1,121],71:V},e(ce,[2,72]),e(ce,[2,73]),e(ce,[2,74]),e(ce,[2,75]),e(ce,[2,76]),e(ce,[2,77]),e(ce,[2,78]),e(ce,[2,79]),e(ce,[2,80]),e(ce,[2,81]),{22:123,71:V},{22:125,59:124,71:V},{71:[2,64]},{71:[2,65]},{57:126,86:be},{57:128,86:be},{57:129,86:be},{57:130,86:be},{4:[1,133],5:[1,135],11:132,12:134,16:[1,131],50:$,52:G,53:B},{5:[1,136]},e(j,[2,19]),e(j,[2,20]),e(j,[2,22]),e(j,[2,23]),{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[1,137],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,55:Z,60:z,61:Y,62:W,63:Q,71:V},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[1,138],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,55:Z,60:z,61:Y,62:W,63:Q,71:V},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[1,139],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,55:Z,60:z,61:Y,62:W,63:Q,71:V},{16:[1,140]},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[2,46],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,49:[1,141],50:$,52:G,53:B,55:Z,60:z,61:Y,62:W,63:Q,71:V},{16:[1,142]},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[2,44],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,48:[1,143],50:$,52:G,53:B,55:Z,60:z,61:Y,62:W,63:Q,71:V},{16:[1,144]},{16:[1,145]},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[2,42],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,47:[1,146],50:$,52:G,53:B,55:Z,60:z,61:Y,62:W,63:Q,71:V},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[1,147],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,55:Z,60:z,61:Y,62:W,63:Q,71:V},{15:[1,148]},e(j,[2,49]),e(j,[2,53]),{5:[2,69]},{74:[1,149]},{15:[1,150]},e(j,[2,51]),e(j,[2,52]),{22:151,71:V},{22:152,71:V},{57:153,86:be},{57:154,86:be},{57:155,86:be},{65:[1,156],86:[2,63]},{5:[2,56]},{5:[2,82]},{5:[2,57]},{5:[2,58]},{5:[2,59]},e(j,[2,16]),e(te,[2,10]),{12:157,50:$,52:G,53:B},e(te,[2,12]),e(te,[2,13]),e(j,[2,18]),e(j,[2,34]),e(j,[2,35]),e(j,[2,36]),e(j,[2,37]),{15:[1,158]},e(j,[2,38]),{15:[1,159]},e(j,[2,39]),e(j,[2,40]),{15:[1,160]},e(j,[2,41]),{5:[1,161]},{75:[1,162]},{5:[1,163]},{57:164,86:be},{57:165,86:be},{5:[2,68]},{5:[2,54]},{5:[2,55]},{22:166,71:V},e(te,[2,11]),e(se,s,{7:105,40:167}),e(ie,s,{7:107,42:168}),e(ge,s,{7:110,45:169}),e(j,[2,48]),{5:[2,70]},e(j,[2,50]),{5:[2,66]},{5:[2,67]},{86:[2,62]},{16:[2,47]},{16:[2,45]},{16:[2,43]}],defaultActions:{5:[2,1],6:[2,2],89:[2,64],90:[2,65],115:[2,69],126:[2,56],127:[2,82],128:[2,57],129:[2,58],130:[2,59],153:[2,68],154:[2,54],155:[2,55],162:[2,70],164:[2,66],165:[2,67],166:[2,62],167:[2,47],168:[2,45],169:[2,43]},parseError:X(function(he,we){if(we.recoverable)this.trace(he);else{var Ce=new Error(he);throw Ce.hash=we,Ce}},"parseError"),parse:X(function(he){var we=this,Ce=[0],Ie=[],Le=[null],Fe=[],Ve=this.table,Oe="",Dt=0,ot=0,sn=2,Kt=1,Ft=Fe.slice.call(arguments,1),Je=Object.create(this.lexer),ht={yy:{}};for(var et in this.yy)Object.prototype.hasOwnProperty.call(this.yy,et)&&(ht.yy[et]=this.yy[et]);Je.setInput(he,ht.yy),ht.yy.lexer=Je,ht.yy.parser=this,typeof Je.yylloc>"u"&&(Je.yylloc={});var qe=Je.yylloc;Fe.push(qe);var He=Je.options&&Je.options.ranges;typeof ht.yy.parseError=="function"?this.parseError=ht.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Ge(wn){Ce.length=Ce.length-2*wn,Le.length=Le.length-wn,Fe.length=Fe.length-wn}X(Ge,"popStack");function Ye(){var wn;return wn=Ie.pop()||Je.lex()||Kt,typeof wn!="number"&&(wn instanceof Array&&(Ie=wn,wn=Ie.pop()),wn=we.symbols_[wn]||wn),wn}X(Ye,"lex");for(var Ae,Xe,fe,Qe,Ke={},mt,lt,$t,Ut;;){if(Xe=Ce[Ce.length-1],this.defaultActions[Xe]?fe=this.defaultActions[Xe]:((Ae===null||typeof Ae>"u")&&(Ae=Ye()),fe=Ve[Xe]&&Ve[Xe][Ae]),typeof fe>"u"||!fe.length||!fe[0]){var Jt="";Ut=[];for(mt in Ve[Xe])this.terminals_[mt]&&mt>sn&&Ut.push("'"+this.terminals_[mt]+"'");Je.showPosition?Jt="Parse error on line "+(Dt+1)+`: +`+Je.showPosition()+` +Expecting `+Ut.join(", ")+", got '"+(this.terminals_[Ae]||Ae)+"'":Jt="Parse error on line "+(Dt+1)+": Unexpected "+(Ae==Kt?"end of input":"'"+(this.terminals_[Ae]||Ae)+"'"),this.parseError(Jt,{text:Je.match,token:this.terminals_[Ae]||Ae,line:Je.yylineno,loc:qe,expected:Ut})}if(fe[0]instanceof Array&&fe.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Xe+", token: "+Ae);switch(fe[0]){case 1:Ce.push(Ae),Le.push(Je.yytext),Fe.push(Je.yylloc),Ce.push(fe[1]),Ae=null,ot=Je.yyleng,Oe=Je.yytext,Dt=Je.yylineno,qe=Je.yylloc;break;case 2:if(lt=this.productions_[fe[1]][1],Ke.$=Le[Le.length-lt],Ke._$={first_line:Fe[Fe.length-(lt||1)].first_line,last_line:Fe[Fe.length-1].last_line,first_column:Fe[Fe.length-(lt||1)].first_column,last_column:Fe[Fe.length-1].last_column},He&&(Ke._$.range=[Fe[Fe.length-(lt||1)].range[0],Fe[Fe.length-1].range[1]]),Qe=this.performAction.apply(Ke,[Oe,ot,Dt,ht.yy,fe[1],Le,Fe].concat(Ft)),typeof Qe<"u")return Qe;lt&&(Ce=Ce.slice(0,-1*lt*2),Le=Le.slice(0,-1*lt),Fe=Fe.slice(0,-1*lt)),Ce.push(this.productions_[fe[1]][0]),Le.push(Ke.$),Fe.push(Ke._$),$t=Ve[Ce[Ce.length-2]][Ce[Ce.length-1]],Ce.push($t);break;case 3:return!0}}return!0},"parse")},De=function(){var Ee={EOF:1,parseError:X(function(we,Ce){if(this.yy.parser)this.yy.parser.parseError(we,Ce);else throw new Error(we)},"parseError"),setInput:X(function(he,we){return this.yy=we||this.yy||{},this._input=he,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var he=this._input[0];this.yytext+=he,this.yyleng++,this.offset++,this.match+=he,this.matched+=he;var we=he.match(/(?:\r\n?|\n).*/g);return we?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),he},"input"),unput:X(function(he){var we=he.length,Ce=he.split(/(?:\r\n?|\n)/g);this._input=he+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-we),this.offset-=we;var Ie=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Ce.length-1&&(this.yylineno-=Ce.length-1);var Le=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Ce?(Ce.length===Ie.length?this.yylloc.first_column:0)+Ie[Ie.length-Ce.length].length-Ce[0].length:this.yylloc.first_column-we},this.options.ranges&&(this.yylloc.range=[Le[0],Le[0]+this.yyleng-we]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(he){this.unput(this.match.slice(he))},"less"),pastInput:X(function(){var he=this.matched.substr(0,this.matched.length-this.match.length);return(he.length>20?"...":"")+he.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var he=this.match;return he.length<20&&(he+=this._input.substr(0,20-he.length)),(he.substr(0,20)+(he.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var he=this.pastInput(),we=new Array(he.length+1).join("-");return he+this.upcomingInput()+` +`+we+"^"},"showPosition"),test_match:X(function(he,we){var Ce,Ie,Le;if(this.options.backtrack_lexer&&(Le={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Le.yylloc.range=this.yylloc.range.slice(0))),Ie=he[0].match(/(?:\r\n?|\n).*/g),Ie&&(this.yylineno+=Ie.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:Ie?Ie[Ie.length-1].length-Ie[Ie.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+he[0].length},this.yytext+=he[0],this.match+=he[0],this.matches=he,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(he[0].length),this.matched+=he[0],Ce=this.performAction.call(this,this.yy,this,we,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Ce)return Ce;if(this._backtrack){for(var Fe in Le)this[Fe]=Le[Fe];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var he,we,Ce,Ie;this._more||(this.yytext="",this.match="");for(var Le=this._currentRules(),Fe=0;Fewe[0].length)){if(we=Ce,Ie=Fe,this.options.backtrack_lexer){if(he=this.test_match(Ce,Le[Fe]),he!==!1)return he;if(this._backtrack){we=!1;continue}else return!1}else if(!this.options.flex)break}return we?(he=this.test_match(we,Le[Ie]),he!==!1?he:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var we=this.next();return we||this.lex()},"lex"),begin:X(function(we){this.conditionStack.push(we)},"begin"),popState:X(function(){var we=this.conditionStack.length-1;return we>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(we){return we=this.conditionStack.length-1-Math.abs(we||0),we>=0?this.conditionStack[we]:"INITIAL"},"topState"),pushState:X(function(we){this.begin(we)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(we,Ce,Ie,Le){switch(Ie){case 0:return 5;case 1:break;case 2:break;case 3:break;case 4:break;case 5:break;case 6:return 19;case 7:return this.begin("CONFIG"),73;case 8:return 74;case 9:return this.popState(),this.popState(),75;case 10:return Ce.yytext=Ce.yytext.trim(),71;case 11:return Ce.yytext=Ce.yytext.trim(),this.begin("ALIAS"),71;case 12:return this.begin("LINE"),14;case 13:return this.begin("ID"),50;case 14:return this.begin("ID"),52;case 15:return 13;case 16:return this.begin("ID"),53;case 17:return Ce.yytext=Ce.yytext.trim(),this.begin("ALIAS"),71;case 18:return this.popState(),this.popState(),this.begin("LINE"),51;case 19:return this.popState(),this.popState(),5;case 20:return this.begin("LINE"),36;case 21:return this.begin("LINE"),37;case 22:return this.begin("LINE"),38;case 23:return this.begin("LINE"),39;case 24:return this.begin("LINE"),49;case 25:return this.begin("LINE"),41;case 26:return this.begin("LINE"),43;case 27:return this.begin("LINE"),48;case 28:return this.begin("LINE"),44;case 29:return this.begin("LINE"),47;case 30:return this.begin("LINE"),46;case 31:return this.popState(),15;case 32:return 16;case 33:return 66;case 34:return 67;case 35:return 60;case 36:return 61;case 37:return 62;case 38:return 63;case 39:return 58;case 40:return 55;case 41:return this.begin("ID"),21;case 42:return this.begin("ID"),23;case 43:return 29;case 44:return 30;case 45:return this.begin("acc_title"),31;case 46:return this.popState(),"acc_title_value";case 47:return this.begin("acc_descr"),33;case 48:return this.popState(),"acc_descr_value";case 49:this.begin("acc_descr_multiline");break;case 50:this.popState();break;case 51:return"acc_descr_multiline_value";case 52:return 6;case 53:return 18;case 54:return 20;case 55:return 65;case 56:return 5;case 57:return Ce.yytext=Ce.yytext.trim(),71;case 58:return 78;case 59:return 79;case 60:return 80;case 61:return 81;case 62:return 76;case 63:return 77;case 64:return 82;case 65:return 83;case 66:return 84;case 67:return 85;case 68:return 86;case 69:return 86;case 70:return 69;case 71:return 70;case 72:return 5;case 73:return"INVALID"}},"anonymous"),rules:[/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[0-9]+(?=[ \n]+))/i,/^(?:@\{)/i,/^(?:[^\}]+)/i,/^(?:\})/i,/^(?:[^\<->\->:\n,;@\s]+(?=@\{))/i,/^(?:[^\<->\->:\n,;@]+?([\-]*[^\<->\->:\n,;@]+?)*?(?=((?!\n)\s)+as(?!\n)\s|[#\n;]|$))/i,/^(?:box\b)/i,/^(?:participant\b)/i,/^(?:actor\b)/i,/^(?:create\b)/i,/^(?:destroy\b)/i,/^(?:[^<\->\->:\n,;]+?([\-]*[^<\->\->:\n,;]+?)*?(?=((?!\n)\s)+as(?!\n)\s|[#\n;]|$))/i,/^(?:as\b)/i,/^(?:(?:))/i,/^(?:loop\b)/i,/^(?:rect\b)/i,/^(?:opt\b)/i,/^(?:alt\b)/i,/^(?:else\b)/i,/^(?:par\b)/i,/^(?:par_over\b)/i,/^(?:and\b)/i,/^(?:critical\b)/i,/^(?:option\b)/i,/^(?:break\b)/i,/^(?:(?:[:]?(?:no)?wrap)?[^#\n;]*)/i,/^(?:end\b)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:links\b)/i,/^(?:link\b)/i,/^(?:properties\b)/i,/^(?:details\b)/i,/^(?:over\b)/i,/^(?:note\b)/i,/^(?:activate\b)/i,/^(?:deactivate\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:title:\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:sequenceDiagram\b)/i,/^(?:autonumber\b)/i,/^(?:off\b)/i,/^(?:,)/i,/^(?:;)/i,/^(?:[^+<\->\->:\n,;]+((?!(-x|--x|-\)|--\)))[\-]*[^\+<\->\->:\n,;]+)*)/i,/^(?:->>)/i,/^(?:<<->>)/i,/^(?:-->>)/i,/^(?:<<-->>)/i,/^(?:->)/i,/^(?:-->)/i,/^(?:-[x])/i,/^(?:--[x])/i,/^(?:-[\)])/i,/^(?:--[\)])/i,/^(?::(?:(?:no)?wrap)?[^#\n;]*)/i,/^(?::)/i,/^(?:\+)/i,/^(?:-)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[50,51],inclusive:!1},acc_descr:{rules:[48],inclusive:!1},acc_title:{rules:[46],inclusive:!1},ID:{rules:[2,3,7,10,11,17],inclusive:!1},ALIAS:{rules:[2,3,18,19],inclusive:!1},LINE:{rules:[2,3,31],inclusive:!1},CONFIG:{rules:[8,9],inclusive:!1},CONFIG_DATA:{rules:[],inclusive:!1},INITIAL:{rules:[0,1,3,4,5,6,12,13,14,15,16,20,21,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,49,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73],inclusive:!0}}};return Ee}();ve.lexer=De;function ye(){this.yy={}}return X(ye,"Parser"),ye.prototype=ve,ve.Parser=ye,new ye}();Aut.parser=Aut;var yWi=Aut,vWi={SOLID:0,DOTTED:1,NOTE:2,SOLID_CROSS:3,DOTTED_CROSS:4,SOLID_OPEN:5,DOTTED_OPEN:6,LOOP_START:10,LOOP_END:11,ALT_START:12,ALT_ELSE:13,ALT_END:14,OPT_START:15,OPT_END:16,ACTIVE_START:17,ACTIVE_END:18,PAR_START:19,PAR_AND:20,PAR_END:21,RECT_START:22,RECT_END:23,SOLID_POINT:24,DOTTED_POINT:25,AUTONUMBER:26,CRITICAL_START:27,CRITICAL_OPTION:28,CRITICAL_END:29,BREAK_START:30,BREAK_END:31,PAR_OVER_START:32,BIDIRECTIONAL_SOLID:33,BIDIRECTIONAL_DOTTED:34},_Wi={FILLED:0,OPEN:1},wWi={LEFTOF:0,RIGHTOF:1,OVER:2},uEe={ACTOR:"actor",CONTROL:"control",DATABASE:"database",ENTITY:"entity"},rj,EWi=(rj=class{constructor(){this.state=new gYn(()=>({prevActor:void 0,actors:new Map,createdActors:new Map,destroyedActors:new Map,boxes:[],messages:[],notes:[],sequenceNumbersEnabled:!1,wrapEnabled:void 0,currentBox:void 0,lastCreated:void 0,lastDestroyed:void 0})),this.setAccTitle=N1,this.setAccDescription=Pp,this.setDiagramTitle=Og,this.getAccTitle=Mp,this.getAccDescription=Bp,this.getDiagramTitle=P1,this.apply=this.apply.bind(this),this.parseBoxData=this.parseBoxData.bind(this),this.parseMessage=this.parseMessage.bind(this),this.clear(),this.setWrap(nn().wrap),this.LINETYPE=vWi,this.ARROWTYPE=_Wi,this.PLACEMENT=wWi}addBox(t){this.state.records.boxes.push({name:t.text,wrap:t.wrap??this.autoWrap(),fill:t.color,actorKeys:[]}),this.state.records.currentBox=this.state.records.boxes.slice(-1)[0]}addActor(t,r,a,s,o){let u=this.state.records.currentBox,h;if(o!==void 0){let p;o.includes(` +`)?p=o+` +`:p=`{ +`+o+` +}`,h=fAe(p,{schema:dAe})}s=(h==null?void 0:h.type)??s;const f=this.state.records.actors.get(t);if(f){if(this.state.records.currentBox&&f.box&&this.state.records.currentBox!==f.box)throw new Error(`A same participant should only be defined in one Box: ${f.name} can't be in '${f.box.name}' and in '${this.state.records.currentBox.name}' at the same time.`);if(u=f.box?f.box:this.state.records.currentBox,f.box=u,f&&r===f.name&&a==null)return}if((a==null?void 0:a.text)==null&&(a={text:r,type:s}),(s==null||a.text==null)&&(a={text:r,type:s}),this.state.records.actors.set(t,{box:u,name:r,description:a.text,wrap:a.wrap??this.autoWrap(),prevActor:this.state.records.prevActor,links:{},properties:{},actorCnt:null,rectData:null,type:s??"participant"}),this.state.records.prevActor){const p=this.state.records.actors.get(this.state.records.prevActor);p&&(p.nextActor=t)}this.state.records.currentBox&&this.state.records.currentBox.actorKeys.push(t),this.state.records.prevActor=t}activationCount(t){let r,a=0;if(!t)return 0;for(r=0;r>-",token:"->>-",line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["'ACTIVE_PARTICIPANT'"]},h}return this.state.records.messages.push({id:this.state.records.messages.length.toString(),from:t,to:r,message:(a==null?void 0:a.text)??"",wrap:(a==null?void 0:a.wrap)??this.autoWrap(),type:s,activate:o}),!0}hasAtLeastOneBox(){return this.state.records.boxes.length>0}hasAtLeastOneBoxWithTitle(){return this.state.records.boxes.some(t=>t.name)}getMessages(){return this.state.records.messages}getBoxes(){return this.state.records.boxes}getActors(){return this.state.records.actors}getCreatedActors(){return this.state.records.createdActors}getDestroyedActors(){return this.state.records.destroyedActors}getActor(t){return this.state.records.actors.get(t)}getActorKeys(){return[...this.state.records.actors.keys()]}enableSequenceNumbers(){this.state.records.sequenceNumbersEnabled=!0}disableSequenceNumbers(){this.state.records.sequenceNumbersEnabled=!1}showSequenceNumbers(){return this.state.records.sequenceNumbersEnabled}setWrap(t){this.state.records.wrapEnabled=t}extractWrap(t){if(t===void 0)return{};t=t.trim();const r=/^:?wrap:/.exec(t)!==null?!0:/^:?nowrap:/.exec(t)!==null?!1:void 0;return{cleanedText:(r===void 0?t:t.replace(/^:?(?:no)?wrap:/,"")).trim(),wrap:r}}autoWrap(){var t;return this.state.records.wrapEnabled!==void 0?this.state.records.wrapEnabled:((t=nn().sequence)==null?void 0:t.wrap)??!1}clear(){this.state.reset(),M1()}parseMessage(t){const r=t.trim(),{wrap:a,cleanedText:s}=this.extractWrap(r),o={text:s,wrap:a};return it.debug(`parseMessage: ${JSON.stringify(o)}`),o}parseBoxData(t){const r=/^((?:rgba?|hsla?)\s*\(.*\)|\w*)(.*)$/.exec(t);let a=r!=null&&r[1]?r[1].trim():"transparent",s=r!=null&&r[2]?r[2].trim():void 0;if(window!=null&&window.CSS)window.CSS.supports("color",a)||(a="transparent",s=t.trim());else{const h=new Option().style;h.color=a,h.color!==a&&(a="transparent",s=t.trim())}const{wrap:o,cleanedText:u}=this.extractWrap(s);return{text:u?Ic(u,nn()):void 0,color:a,wrap:o}}addNote(t,r,a){const s={actor:t,placement:r,message:a.text,wrap:a.wrap??this.autoWrap()},o=[].concat(t,t);this.state.records.notes.push(s),this.state.records.messages.push({id:this.state.records.messages.length.toString(),from:o[0],to:o[1],message:a.text,wrap:a.wrap??this.autoWrap(),type:this.LINETYPE.NOTE,placement:r})}addLinks(t,r){const a=this.getActor(t);try{let s=Ic(r.text,nn());s=s.replace(/=/g,"="),s=s.replace(/&/g,"&");const o=JSON.parse(s);this.insertLinks(a,o)}catch(s){it.error("error while parsing actor link text",s)}}addALink(t,r){const a=this.getActor(t);try{const s={};let o=Ic(r.text,nn());const u=o.indexOf("@");o=o.replace(/=/g,"="),o=o.replace(/&/g,"&");const h=o.slice(0,u-1).trim(),f=o.slice(u+1).trim();s[h]=f,this.insertLinks(a,s)}catch(s){it.error("error while parsing actor link text",s)}}insertLinks(t,r){if(t.links==null)t.links=r;else for(const a in r)t.links[a]=r[a]}addProperties(t,r){const a=this.getActor(t);try{const s=Ic(r.text,nn()),o=JSON.parse(s);this.insertProperties(a,o)}catch(s){it.error("error while parsing actor properties text",s)}}insertProperties(t,r){if(t.properties==null)t.properties=r;else for(const a in r)t.properties[a]=r[a]}boxEnd(){this.state.records.currentBox=void 0}addDetails(t,r){const a=this.getActor(t),s=document.getElementById(r.text);try{const o=s.innerHTML,u=JSON.parse(o);u.properties&&this.insertProperties(a,u.properties),u.links&&this.insertLinks(a,u.links)}catch(o){it.error("error while parsing actor details text",o)}}getActorProperty(t,r){if((t==null?void 0:t.properties)!==void 0)return t.properties[r]}apply(t){if(Array.isArray(t))t.forEach(r=>{this.apply(r)});else switch(t.type){case"sequenceIndex":this.state.records.messages.push({id:this.state.records.messages.length.toString(),from:void 0,to:void 0,message:{start:t.sequenceIndex,step:t.sequenceIndexStep,visible:t.sequenceVisible},wrap:!1,type:t.signalType});break;case"addParticipant":this.addActor(t.actor,t.actor,t.description,t.draw,t.config);break;case"createParticipant":if(this.state.records.actors.has(t.actor))throw new Error("It is not possible to have actors with the same id, even if one is destroyed before the next is created. Use 'AS' aliases to simulate the behavior");this.state.records.lastCreated=t.actor,this.addActor(t.actor,t.actor,t.description,t.draw,t.config),this.state.records.createdActors.set(t.actor,this.state.records.messages.length);break;case"destroyParticipant":this.state.records.lastDestroyed=t.actor,this.state.records.destroyedActors.set(t.actor,this.state.records.messages.length);break;case"activeStart":this.addSignal(t.actor,void 0,void 0,t.signalType);break;case"activeEnd":this.addSignal(t.actor,void 0,void 0,t.signalType);break;case"addNote":this.addNote(t.actor,t.placement,t.text);break;case"addLinks":this.addLinks(t.actor,t.text);break;case"addALink":this.addALink(t.actor,t.text);break;case"addProperties":this.addProperties(t.actor,t.text);break;case"addDetails":this.addDetails(t.actor,t.text);break;case"addMessage":if(this.state.records.lastCreated){if(t.to!==this.state.records.lastCreated)throw new Error("The created participant "+this.state.records.lastCreated.name+" does not have an associated creating message after its declaration. Please check the sequence diagram.");this.state.records.lastCreated=void 0}else if(this.state.records.lastDestroyed){if(t.to!==this.state.records.lastDestroyed&&t.from!==this.state.records.lastDestroyed)throw new Error("The destroyed participant "+this.state.records.lastDestroyed.name+" does not have an associated destroying message after its declaration. Please check the sequence diagram.");this.state.records.lastDestroyed=void 0}this.addSignal(t.from,t.to,t.msg,t.signalType,t.activate);break;case"boxStart":this.addBox(t.boxData);break;case"boxEnd":this.boxEnd();break;case"loopStart":this.addSignal(void 0,void 0,t.loopText,t.signalType);break;case"loopEnd":this.addSignal(void 0,void 0,void 0,t.signalType);break;case"rectStart":this.addSignal(void 0,void 0,t.color,t.signalType);break;case"rectEnd":this.addSignal(void 0,void 0,void 0,t.signalType);break;case"optStart":this.addSignal(void 0,void 0,t.optText,t.signalType);break;case"optEnd":this.addSignal(void 0,void 0,void 0,t.signalType);break;case"altStart":this.addSignal(void 0,void 0,t.altText,t.signalType);break;case"else":this.addSignal(void 0,void 0,t.altText,t.signalType);break;case"altEnd":this.addSignal(void 0,void 0,void 0,t.signalType);break;case"setAccTitle":N1(t.text);break;case"parStart":this.addSignal(void 0,void 0,t.parText,t.signalType);break;case"and":this.addSignal(void 0,void 0,t.parText,t.signalType);break;case"parEnd":this.addSignal(void 0,void 0,void 0,t.signalType);break;case"criticalStart":this.addSignal(void 0,void 0,t.criticalText,t.signalType);break;case"option":this.addSignal(void 0,void 0,t.optionText,t.signalType);break;case"criticalEnd":this.addSignal(void 0,void 0,void 0,t.signalType);break;case"breakStart":this.addSignal(void 0,void 0,t.breakText,t.signalType);break;case"breakEnd":this.addSignal(void 0,void 0,void 0,t.signalType);break}}getConfig(){return nn().sequence}},X(rj,"SequenceDB"),rj),xWi=X(e=>`.actor { + stroke: ${e.actorBorder}; + fill: ${e.actorBkg}; + } + + text.actor > tspan { + fill: ${e.actorTextColor}; + stroke: none; + } + + .actor-line { + stroke: ${e.actorLineColor}; + } + + .innerArc { + stroke-width: 1.5; + stroke-dasharray: none; + } + + .messageLine0 { + stroke-width: 1.5; + stroke-dasharray: none; + stroke: ${e.signalColor}; + } + + .messageLine1 { + stroke-width: 1.5; + stroke-dasharray: 2, 2; + stroke: ${e.signalColor}; + } + + #arrowhead path { + fill: ${e.signalColor}; + stroke: ${e.signalColor}; + } + + .sequenceNumber { + fill: ${e.sequenceNumberColor}; + } + + #sequencenumber { + fill: ${e.signalColor}; + } + + #crosshead path { + fill: ${e.signalColor}; + stroke: ${e.signalColor}; + } + + .messageText { + fill: ${e.signalTextColor}; + stroke: none; + } + + .labelBox { + stroke: ${e.labelBoxBorderColor}; + fill: ${e.labelBoxBkgColor}; + } + + .labelText, .labelText > tspan { + fill: ${e.labelTextColor}; + stroke: none; + } + + .loopText, .loopText > tspan { + fill: ${e.loopTextColor}; + stroke: none; + } + + .loopLine { + stroke-width: 2px; + stroke-dasharray: 2, 2; + stroke: ${e.labelBoxBorderColor}; + fill: ${e.labelBoxBorderColor}; + } + + .note { + //stroke: #decc93; + stroke: ${e.noteBorderColor}; + fill: ${e.noteBkgColor}; + } + + .noteText, .noteText > tspan { + fill: ${e.noteTextColor}; + stroke: none; + } + + .activation0 { + fill: ${e.activationBkgColor}; + stroke: ${e.activationBorderColor}; + } + + .activation1 { + fill: ${e.activationBkgColor}; + stroke: ${e.activationBorderColor}; + } + + .activation2 { + fill: ${e.activationBkgColor}; + stroke: ${e.activationBorderColor}; + } + + .actorPopupMenu { + position: absolute; + } + + .actorPopupMenuPanel { + position: absolute; + fill: ${e.actorBkg}; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); + filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4)); +} + .actor-man line { + stroke: ${e.actorBorder}; + fill: ${e.actorBkg}; + } + .actor-man circle, line { + stroke: ${e.actorBorder}; + fill: ${e.actorBkg}; + stroke-width: 2px; + } + +`,"getStyles"),SWi=xWi,lF=18*2,aL="actor-top",sL="actor-bottom",Zke="actor-box",b9="actor-man",cle=X(function(e,t){return vke(e,t)},"drawRect"),TWi=X(function(e,t,r,a,s){if(t.links===void 0||t.links===null||Object.keys(t.links).length===0)return{height:0,width:0};const o=t.links,u=t.actorCnt,h=t.rectData;var f="none";s&&(f="block !important");const p=e.append("g");p.attr("id","actor"+u+"_popup"),p.attr("class","actorPopupMenu"),p.attr("display",f);var m="";h.class!==void 0&&(m=" "+h.class);let b=h.width>r?h.width:r;const _=p.append("rect");if(_.attr("class","actorPopupMenuPanel"+m),_.attr("x",h.x),_.attr("y",h.height),_.attr("fill",h.fill),_.attr("stroke",h.stroke),_.attr("width",b),_.attr("height",h.height),_.attr("rx",h.rx),_.attr("ry",h.ry),o!=null){var w=20;for(let A in o){var S=p.append("a"),C=M9(o[A]);S.attr("xlink:href",C),S.attr("target","_blank"),jWi(a)(A,S,h.x+10,h.height+w,b,20,{class:"actor"},a),w+=30}}return _.attr("height",w),{height:h.height+w,width:b}},"drawPopup"),Jke=X(function(e){return"var pu = document.getElementById('"+e+"'); if (pu != null) { pu.style.display = pu.style.display == 'block' ? 'none' : 'block'; }"},"popupMenuToggle"),MTe=X(async function(e,t,r=null){let a=e.append("foreignObject");const s=await nce(t.text,$c()),u=a.append("xhtml:div").attr("style","width: fit-content;").attr("xmlns","http://www.w3.org/1999/xhtml").html(s).node().getBoundingClientRect();if(a.attr("height",Math.round(u.height)).attr("width",Math.round(u.width)),t.class==="noteText"){const h=e.node().firstChild;h.setAttribute("height",u.height+2*t.textMargin);const f=h.getBBox();a.attr("x",Math.round(f.x+f.width/2-u.width/2)).attr("y",Math.round(f.y+f.height/2-u.height/2))}else if(r){let{startx:h,stopx:f,starty:p}=r;if(h>f){const m=h;h=f,f=m}a.attr("x",Math.round(h+Math.abs(h-f)/2-u.width/2)),t.class==="loopText"?a.attr("y",Math.round(p)):a.attr("y",Math.round(p-u.height))}return[a]},"drawKatex"),Jj=X(function(e,t){let r=0,a=0;const s=t.text.split(Ti.lineBreakRegex),[o,u]=N$(t.fontSize);let h=[],f=0,p=X(()=>t.y,"yfunc");if(t.valign!==void 0&&t.textMargin!==void 0&&t.textMargin>0)switch(t.valign){case"top":case"start":p=X(()=>Math.round(t.y+t.textMargin),"yfunc");break;case"middle":case"center":p=X(()=>Math.round(t.y+(r+a+t.textMargin)/2),"yfunc");break;case"bottom":case"end":p=X(()=>Math.round(t.y+(r+a+2*t.textMargin)-t.textMargin),"yfunc");break}if(t.anchor!==void 0&&t.textMargin!==void 0&&t.width!==void 0)switch(t.anchor){case"left":case"start":t.x=Math.round(t.x+t.textMargin),t.anchor="start",t.dominantBaseline="middle",t.alignmentBaseline="middle";break;case"middle":case"center":t.x=Math.round(t.x+t.width/2),t.anchor="middle",t.dominantBaseline="middle",t.alignmentBaseline="middle";break;case"right":case"end":t.x=Math.round(t.x+t.width-t.textMargin),t.anchor="end",t.dominantBaseline="middle",t.alignmentBaseline="middle";break}for(let[m,b]of s.entries()){t.textMargin!==void 0&&t.textMargin===0&&o!==void 0&&(f=m*o);const _=e.append("text");_.attr("x",t.x),_.attr("y",p()),t.anchor!==void 0&&_.attr("text-anchor",t.anchor).attr("dominant-baseline",t.dominantBaseline).attr("alignment-baseline",t.alignmentBaseline),t.fontFamily!==void 0&&_.style("font-family",t.fontFamily),u!==void 0&&_.style("font-size",u),t.fontWeight!==void 0&&_.style("font-weight",t.fontWeight),t.fill!==void 0&&_.attr("fill",t.fill),t.class!==void 0&&_.attr("class",t.class),t.dy!==void 0?_.attr("dy",t.dy):f!==0&&_.attr("dy",f);const w=b||jPn;if(t.tspan){const S=_.append("tspan");S.attr("x",t.x),t.fill!==void 0&&S.attr("fill",t.fill),S.text(w)}else _.text(w);t.valign!==void 0&&t.textMargin!==void 0&&t.textMargin>0&&(a+=(_._groups||_)[0][0].getBBox().height,r=a),h.push(_)}return h},"drawText"),zKn=X(function(e,t){function r(s,o,u,h,f){return s+","+o+" "+(s+u)+","+o+" "+(s+u)+","+(o+h-f)+" "+(s+u-f*1.2)+","+(o+h)+" "+s+","+(o+h)}X(r,"genPoints");const a=e.append("polygon");return a.attr("points",r(t.x,t.y,t.width,t.height,7)),a.attr("class","labelBox"),t.y=t.y+t.height/2,Jj(e,t),a},"drawLabel"),wc=-1,GKn=X((e,t,r,a)=>{e.select&&r.forEach(s=>{const o=t.get(s),u=e.select("#actor"+o.actorCnt);!a.mirrorActors&&o.stopy?u.attr("y2",o.stopy+o.height/2):a.mirrorActors&&u.attr("y2",o.stopy)})},"fixLifeLineHeights"),CWi=X(function(e,t,r,a){var w,S;const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+t.height,h=e.append("g").lower();var f=h;a||(wc++,Object.keys(t.links||{}).length&&!r.forceMenus&&f.attr("onclick",Jke(`actor${wc}_popup`)).attr("cursor","pointer"),f.append("line").attr("id","actor"+wc).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",t.name),f=h.append("g"),t.actorCnt=wc,t.links!=null&&f.attr("id","root-"+wc));const p=Ww();var m="actor";(w=t.properties)!=null&&w.class?m=t.properties.class:p.fill="#eaeaea",a?m+=` ${sL}`:m+=` ${aL}`,p.x=t.x,p.y=s,p.width=t.width,p.height=t.height,p.class=m,p.rx=3,p.ry=3,p.name=t.name;const b=cle(f,p);if(t.rectData=p,(S=t.properties)!=null&&S.icon){const C=t.properties.icon.trim();C.charAt(0)==="@"?Bgt(f,p.x+p.width-20,p.y+10,C.substr(1)):Pgt(f,p.x+p.width-20,p.y+10,C)}RR(r,u0(t.description))(t.description,f,p.x,p.y,p.width,p.height,{class:`actor ${Zke}`},r);let _=t.height;if(b.node){const C=b.node().getBBox();t.height=C.height,_=C.height}return _},"drawActorTypeParticipant"),AWi=X(function(e,t,r,a){var C,A;const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+t.height,h=e.append("g").lower();var f=h;a||(wc++,Object.keys(t.links||{}).length&&!r.forceMenus&&f.attr("onclick",Jke(`actor${wc}_popup`)).attr("cursor","pointer"),f.append("line").attr("id","actor"+wc).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",t.name),f=h.append("g"),t.actorCnt=wc,t.links!=null&&f.attr("id","root-"+wc));const p=Ww();var m="actor";(C=t.properties)!=null&&C.class?m=t.properties.class:p.fill="#eaeaea",a?m+=` ${sL}`:m+=` ${aL}`,p.x=t.x,p.y=s,p.width=t.width,p.height=t.height,p.class=m,p.name=t.name;const b=6,_={...p,x:p.x+-b,y:p.y+ +b,class:"actor"},w=cle(f,p);if(cle(f,_),t.rectData=p,(A=t.properties)!=null&&A.icon){const k=t.properties.icon.trim();k.charAt(0)==="@"?Bgt(f,p.x+p.width-20,p.y+10,k.substr(1)):Pgt(f,p.x+p.width-20,p.y+10,k)}RR(r,u0(t.description))(t.description,f,p.x-b,p.y+b,p.width,p.height,{class:`actor ${Zke}`},r);let S=t.height;if(w.node){const k=w.node().getBBox();t.height=k.height,S=k.height}return S},"drawActorTypeCollections"),kWi=X(function(e,t,r,a){var k,I;const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+t.height,h=e.append("g").lower();let f=h;a||(wc++,Object.keys(t.links||{}).length&&!r.forceMenus&&f.attr("onclick",Jke(`actor${wc}_popup`)).attr("cursor","pointer"),f.append("line").attr("id","actor"+wc).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",t.name),f=h.append("g"),t.actorCnt=wc,t.links!=null&&f.attr("id","root-"+wc));const p=Ww();let m="actor";(k=t.properties)!=null&&k.class?m=t.properties.class:p.fill="#eaeaea",a?m+=` ${sL}`:m+=` ${aL}`,p.x=t.x,p.y=s,p.width=t.width,p.height=t.height,p.class=m,p.name=t.name;const b=p.height/2,_=b/(2.5+p.height/50),w=f.append("g"),S=f.append("g");if(w.append("path").attr("d",`M ${p.x},${p.y+b} + a ${_},${b} 0 0 0 0,${p.height} + h ${p.width-2*_} + a ${_},${b} 0 0 0 0,-${p.height} + Z + `).attr("class",m),S.append("path").attr("d",`M ${p.x},${p.y+b} + a ${_},${b} 0 0 0 0,${p.height}`).attr("stroke","#666").attr("stroke-width","1px").attr("class",m),w.attr("transform",`translate(${_}, ${-(p.height/2)})`),S.attr("transform",`translate(${p.width-_}, ${-p.height/2})`),t.rectData=p,(I=t.properties)!=null&&I.icon){const N=t.properties.icon.trim(),L=p.x+p.width-20,P=p.y+10;N.charAt(0)==="@"?Bgt(f,L,P,N.substr(1)):Pgt(f,L,P,N)}RR(r,u0(t.description))(t.description,f,p.x,p.y,p.width,p.height,{class:`actor ${Zke}`},r);let C=t.height;const A=w.select("path:last-child");if(A.node()){const N=A.node().getBBox();t.height=N.height,C=N.height}return C},"drawActorTypeQueue"),RWi=X(function(e,t,r,a){var C;const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+75,h=e.append("g").lower();a||(wc++,h.append("line").attr("id","actor"+wc).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",t.name),t.actorCnt=wc);const f=e.append("g");let p=b9;a?p+=` ${sL}`:p+=` ${aL}`,f.attr("class",p),f.attr("name",t.name);const m=Ww();m.x=t.x,m.y=s,m.fill="#eaeaea",m.width=t.width,m.height=t.height,m.class="actor";const b=t.x+t.width/2,_=s+30,w=18;f.append("defs").append("marker").attr("id","filled-head-control").attr("refX",11).attr("refY",5.8).attr("markerWidth",20).attr("markerHeight",28).attr("orient","172.5").append("path").attr("d","M 14.4 5.6 L 7.2 10.4 L 8.8 5.6 L 7.2 0.8 Z"),f.append("circle").attr("cx",b).attr("cy",_).attr("r",w).attr("fill","#eaeaf7").attr("stroke","#666").attr("stroke-width",1.2),f.append("line").attr("marker-end","url(#filled-head-control)").attr("transform",`translate(${b}, ${_-w})`);const S=f.node().getBBox();return t.height=S.height+2*(((C=r==null?void 0:r.sequence)==null?void 0:C.labelBoxHeight)??0),RR(r,u0(t.description))(t.description,f,m.x,m.y+w+(a?5:10),m.width,m.height,{class:`actor ${b9}`},r),t.height},"drawActorTypeControl"),IWi=X(function(e,t,r,a){var C;const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+75,h=e.append("g").lower(),f=e.append("g");let p=b9;a?p+=` ${sL}`:p+=` ${aL}`,f.attr("class",p),f.attr("name",t.name);const m=Ww();m.x=t.x,m.y=s,m.fill="#eaeaea",m.width=t.width,m.height=t.height,m.class="actor";const b=t.x+t.width/2,_=s+(a?10:25),w=18;f.append("circle").attr("cx",b).attr("cy",_).attr("r",w).attr("width",t.width).attr("height",t.height),f.append("line").attr("x1",b-w).attr("x2",b+w).attr("y1",_+w).attr("y2",_+w).attr("stroke","#333").attr("stroke-width",2);const S=f.node().getBBox();return t.height=S.height+(((C=r==null?void 0:r.sequence)==null?void 0:C.labelBoxHeight)??0),a||(wc++,h.append("line").attr("id","actor"+wc).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",t.name),t.actorCnt=wc),RR(r,u0(t.description))(t.description,f,m.x,m.y+(a?(_-s+w-5)/2:(_+w-s)/2),m.width,m.height,{class:`actor ${b9}`},r),a?f.attr("transform",`translate(0, ${w/2})`):f.attr("transform",`translate(0, ${w/2})`),t.height},"drawActorTypeEntity"),NWi=X(function(e,t,r,a){var I;const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+t.height+2*r.boxTextMargin,h=e.append("g").lower();let f=h;a||(wc++,Object.keys(t.links||{}).length&&!r.forceMenus&&f.attr("onclick",Jke(`actor${wc}_popup`)).attr("cursor","pointer"),f.append("line").attr("id","actor"+wc).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",t.name),f=h.append("g"),t.actorCnt=wc,t.links!=null&&f.attr("id","root-"+wc));const p=Ww();let m="actor";(I=t.properties)!=null&&I.class?m=t.properties.class:p.fill="#eaeaea",a?m+=` ${sL}`:m+=` ${aL}`,p.x=t.x,p.y=s,p.width=t.width,p.height=t.height,p.class=m,p.name=t.name,p.x=t.x,p.y=s;const b=p.width/4,_=p.width/4,w=b/2,S=w/(2.5+b/50),C=f.append("g"),A=` + M ${p.x},${p.y+S} + a ${w},${S} 0 0 0 ${b},0 + a ${w},${S} 0 0 0 -${b},0 + l 0,${_-2*S} + a ${w},${S} 0 0 0 ${b},0 + l 0,-${_-2*S} +`;C.append("path").attr("d",A).attr("fill","#eaeaea").attr("stroke","#000").attr("stroke-width",1).attr("class",m),a?C.attr("transform",`translate(${b*1.5}, ${p.height/4-2*S})`):C.attr("transform",`translate(${b*1.5}, ${(p.height+S)/4})`),t.rectData=p,RR(r,u0(t.description))(t.description,f,p.x,p.y+(a?(p.height+_)/4:(p.height+S)/2),p.width,p.height,{class:`actor ${Zke}`},r);const k=C.select("path:last-child");if(k.node()){const N=k.node().getBBox();t.height=N.height+(r.sequence.labelBoxHeight??0)}return t.height},"drawActorTypeDatabase"),OWi=X(function(e,t,r,a){const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+80,h=30,f=e.append("g").lower();a||(wc++,f.append("line").attr("id","actor"+wc).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",t.name),t.actorCnt=wc);const p=e.append("g");let m=b9;a?m+=` ${sL}`:m+=` ${aL}`,p.attr("class",m),p.attr("name",t.name);const b=Ww();b.x=t.x,b.y=s,b.fill="#eaeaea",b.width=t.width,b.height=t.height,b.class="actor",p.append("line").attr("id","actor-man-torso"+wc).attr("x1",t.x+t.width/2-h*2.5).attr("y1",s+10).attr("x2",t.x+t.width/2-15).attr("y2",s+10),p.append("line").attr("id","actor-man-arms"+wc).attr("x1",t.x+t.width/2-h*2.5).attr("y1",s+0).attr("x2",t.x+t.width/2-h*2.5).attr("y2",s+20),p.append("circle").attr("cx",t.x+t.width/2).attr("cy",s+10).attr("r",h);const _=p.node().getBBox();return t.height=_.height+(r.sequence.labelBoxHeight??0),RR(r,u0(t.description))(t.description,p,b.x,b.y+(a?h/2-4:h/2+3),b.width,b.height,{class:`actor ${b9}`},r),a?p.attr("transform",`translate(0,${h/2+7})`):p.attr("transform",`translate(0,${h/2+7})`),t.height},"drawActorTypeBoundary"),LWi=X(function(e,t,r,a){const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+80,h=e.append("g").lower();a||(wc++,h.append("line").attr("id","actor"+wc).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line 200").attr("stroke-width","0.5px").attr("stroke","#999").attr("name",t.name),t.actorCnt=wc);const f=e.append("g");let p=b9;a?p+=` ${sL}`:p+=` ${aL}`,f.attr("class",p),f.attr("name",t.name);const m=Ww();m.x=t.x,m.y=s,m.fill="#eaeaea",m.width=t.width,m.height=t.height,m.class="actor",m.rx=3,m.ry=3,f.append("line").attr("id","actor-man-torso"+wc).attr("x1",o).attr("y1",s+25).attr("x2",o).attr("y2",s+45),f.append("line").attr("id","actor-man-arms"+wc).attr("x1",o-lF/2).attr("y1",s+33).attr("x2",o+lF/2).attr("y2",s+33),f.append("line").attr("x1",o-lF/2).attr("y1",s+60).attr("x2",o).attr("y2",s+45),f.append("line").attr("x1",o).attr("y1",s+45).attr("x2",o+lF/2-2).attr("y2",s+60);const b=f.append("circle");b.attr("cx",t.x+t.width/2),b.attr("cy",s+10),b.attr("r",15),b.attr("width",t.width),b.attr("height",t.height);const _=f.node().getBBox();return t.height=_.height,RR(r,u0(t.description))(t.description,f,m.x,m.y+35,m.width,m.height,{class:`actor ${b9}`},r),t.height},"drawActorTypeActor"),DWi=X(async function(e,t,r,a){switch(t.type){case"actor":return await LWi(e,t,r,a);case"participant":return await CWi(e,t,r,a);case"boundary":return await OWi(e,t,r,a);case"control":return await RWi(e,t,r,a);case"entity":return await IWi(e,t,r,a);case"database":return await NWi(e,t,r,a);case"collections":return await AWi(e,t,r,a);case"queue":return await kWi(e,t,r,a)}},"drawActor"),MWi=X(function(e,t,r){const s=e.append("g");qKn(s,t),t.name&&RR(r)(t.name,s,t.x,t.y+r.boxTextMargin+(t.textMaxHeight||0)/2,t.width,0,{class:"text"},r),s.lower()},"drawBox"),PWi=X(function(e){return e.append("g")},"anchorElement"),BWi=X(function(e,t,r,a,s){const o=Ww(),u=t.anchored;o.x=t.startx,o.y=t.starty,o.class="activation"+s%3,o.width=t.stopx-t.startx,o.height=r-t.starty,cle(u,o)},"drawActivation"),FWi=X(async function(e,t,r,a){const{boxMargin:s,boxTextMargin:o,labelBoxHeight:u,labelBoxWidth:h,messageFontFamily:f,messageFontSize:p,messageFontWeight:m}=a,b=e.append("g"),_=X(function(C,A,k,I){return b.append("line").attr("x1",C).attr("y1",A).attr("x2",k).attr("y2",I).attr("class","loopLine")},"drawLoopLine");_(t.startx,t.starty,t.stopx,t.starty),_(t.stopx,t.starty,t.stopx,t.stopy),_(t.startx,t.stopy,t.stopx,t.stopy),_(t.startx,t.starty,t.startx,t.stopy),t.sections!==void 0&&t.sections.forEach(function(C){_(t.startx,C.y,t.stopx,C.y).style("stroke-dasharray","3, 3")});let w=Fgt();w.text=r,w.x=t.startx,w.y=t.starty,w.fontFamily=f,w.fontSize=p,w.fontWeight=m,w.anchor="middle",w.valign="middle",w.tspan=!1,w.width=h||50,w.height=u||20,w.textMargin=o,w.class="labelText",zKn(b,w),w=HKn(),w.text=t.title,w.x=t.startx+h/2+(t.stopx-t.startx)/2,w.y=t.starty+s+o,w.anchor="middle",w.valign="middle",w.textMargin=o,w.class="loopText",w.fontFamily=f,w.fontSize=p,w.fontWeight=m,w.wrap=!0;let S=u0(w.text)?await MTe(b,w,t):Jj(b,w);if(t.sectionTitles!==void 0){for(const[C,A]of Object.entries(t.sectionTitles))if(A.message){w.text=A.message,w.x=t.startx+(t.stopx-t.startx)/2,w.y=t.sections[C].y+s+o,w.class="loopText",w.anchor="middle",w.valign="middle",w.tspan=!1,w.fontFamily=f,w.fontSize=p,w.fontWeight=m,w.wrap=t.wrap,u0(w.text)?(t.starty=t.sections[C].y,await MTe(b,w,t)):Jj(b,w);let k=Math.round(S.map(I=>(I._groups||I)[0][0].getBBox().height).reduce((I,N)=>I+N));t.sections[C].height+=k-(s+o)}}return t.height=Math.round(t.stopy-t.starty),b},"drawLoop"),qKn=X(function(e,t){rYn(e,t)},"drawBackgroundRect"),$Wi=X(function(e){e.append("defs").append("symbol").attr("id","database").attr("fill-rule","evenodd").attr("clip-rule","evenodd").append("path").attr("transform","scale(.5)").attr("d","M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z")},"insertDatabaseIcon"),UWi=X(function(e){e.append("defs").append("symbol").attr("id","computer").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z")},"insertComputerIcon"),zWi=X(function(e){e.append("defs").append("symbol").attr("id","clock").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z")},"insertClockIcon"),GWi=X(function(e){e.append("defs").append("marker").attr("id","arrowhead").attr("refX",7.9).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto-start-reverse").append("path").attr("d","M -1 0 L 10 5 L 0 10 z")},"insertArrowHead"),qWi=X(function(e){e.append("defs").append("marker").attr("id","filled-head").attr("refX",15.5).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")},"insertArrowFilledHead"),HWi=X(function(e){e.append("defs").append("marker").attr("id","sequencenumber").attr("refX",15).attr("refY",15).attr("markerWidth",60).attr("markerHeight",40).attr("orient","auto").append("circle").attr("cx",15).attr("cy",15).attr("r",6)},"insertSequenceNumber"),VWi=X(function(e){e.append("defs").append("marker").attr("id","crosshead").attr("markerWidth",15).attr("markerHeight",8).attr("orient","auto").attr("refX",4).attr("refY",4.5).append("path").attr("fill","none").attr("stroke","#000000").style("stroke-dasharray","0, 0").attr("stroke-width","1pt").attr("d","M 1,2 L 6,7 M 6,2 L 1,7")},"insertArrowCrossHead"),HKn=X(function(){return{x:0,y:0,fill:void 0,anchor:void 0,style:"#666",width:void 0,height:void 0,textMargin:0,rx:0,ry:0,tspan:!0,valign:void 0}},"getTextObj"),YWi=X(function(){return{x:0,y:0,fill:"#EDF2AE",stroke:"#666",width:100,anchor:"start",height:100,rx:0,ry:0}},"getNoteRect"),RR=function(){function e(o,u,h,f,p,m,b){const _=u.append("text").attr("x",h+p/2).attr("y",f+m/2+5).style("text-anchor","middle").text(o);s(_,b)}X(e,"byText");function t(o,u,h,f,p,m,b,_){const{actorFontSize:w,actorFontFamily:S,actorFontWeight:C}=_,[A,k]=N$(w),I=o.split(Ti.lineBreakRegex);for(let N=0;Ne.height||0))+(this.loops.length===0?0:this.loops.map(e=>e.height||0).reduce((e,t)=>e+t))+(this.messages.length===0?0:this.messages.map(e=>e.height||0).reduce((e,t)=>e+t))+(this.notes.length===0?0:this.notes.map(e=>e.height||0).reduce((e,t)=>e+t))},"getHeight"),clear:X(function(){this.actors=[],this.boxes=[],this.loops=[],this.messages=[],this.notes=[]},"clear"),addBox:X(function(e){this.boxes.push(e)},"addBox"),addActor:X(function(e){this.actors.push(e)},"addActor"),addLoop:X(function(e){this.loops.push(e)},"addLoop"),addMessage:X(function(e){this.messages.push(e)},"addMessage"),addNote:X(function(e){this.notes.push(e)},"addNote"),lastActor:X(function(){return this.actors[this.actors.length-1]},"lastActor"),lastLoop:X(function(){return this.loops[this.loops.length-1]},"lastLoop"),lastMessage:X(function(){return this.messages[this.messages.length-1]},"lastMessage"),lastNote:X(function(){return this.notes[this.notes.length-1]},"lastNote"),actors:[],boxes:[],loops:[],messages:[],notes:[]},init:X(function(){this.sequenceItems=[],this.activations=[],this.models.clear(),this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0,jKn(nn())},"init"),updateVal:X(function(e,t,r,a){e[t]===void 0?e[t]=r:e[t]=a(r,e[t])},"updateVal"),updateBounds:X(function(e,t,r,a){const s=this;let o=0;function u(h){return X(function(p){o++;const m=s.sequenceItems.length-o+1;s.updateVal(p,"starty",t-m*Mn.boxMargin,Math.min),s.updateVal(p,"stopy",a+m*Mn.boxMargin,Math.max),s.updateVal(li.data,"startx",e-m*Mn.boxMargin,Math.min),s.updateVal(li.data,"stopx",r+m*Mn.boxMargin,Math.max),h!=="activation"&&(s.updateVal(p,"startx",e-m*Mn.boxMargin,Math.min),s.updateVal(p,"stopx",r+m*Mn.boxMargin,Math.max),s.updateVal(li.data,"starty",t-m*Mn.boxMargin,Math.min),s.updateVal(li.data,"stopy",a+m*Mn.boxMargin,Math.max))},"updateItemBounds")}X(u,"updateFn"),this.sequenceItems.forEach(u()),this.activations.forEach(u("activation"))},"updateBounds"),insert:X(function(e,t,r,a){const s=Ti.getMin(e,r),o=Ti.getMax(e,r),u=Ti.getMin(t,a),h=Ti.getMax(t,a);this.updateVal(li.data,"startx",s,Math.min),this.updateVal(li.data,"starty",u,Math.min),this.updateVal(li.data,"stopx",o,Math.max),this.updateVal(li.data,"stopy",h,Math.max),this.updateBounds(s,u,o,h)},"insert"),newActivation:X(function(e,t,r){const a=r.get(e.from),s=e6e(e.from).length||0,o=a.x+a.width/2+(s-1)*Mn.activationWidth/2;this.activations.push({startx:o,starty:this.verticalPos+2,stopx:o+Mn.activationWidth,stopy:void 0,actor:e.from,anchored:q0.anchorElement(t)})},"newActivation"),endActivation:X(function(e){const t=this.activations.map(function(r){return r.actor}).lastIndexOf(e.from);return this.activations.splice(t,1)[0]},"endActivation"),createLoop:X(function(e={message:void 0,wrap:!1,width:void 0},t){return{startx:void 0,starty:this.verticalPos,stopx:void 0,stopy:void 0,title:e.message,wrap:e.wrap,width:e.width,height:0,fill:t}},"createLoop"),newLoop:X(function(e={message:void 0,wrap:!1,width:void 0},t){this.sequenceItems.push(this.createLoop(e,t))},"newLoop"),endLoop:X(function(){return this.sequenceItems.pop()},"endLoop"),isLoopOverlap:X(function(){return this.sequenceItems.length?this.sequenceItems[this.sequenceItems.length-1].overlap:!1},"isLoopOverlap"),addSectionToLoop:X(function(e){const t=this.sequenceItems.pop();t.sections=t.sections||[],t.sectionTitles=t.sectionTitles||[],t.sections.push({y:li.getVerticalPos(),height:0}),t.sectionTitles.push(e),this.sequenceItems.push(t)},"addSectionToLoop"),saveVerticalPos:X(function(){this.isLoopOverlap()&&(this.savedVerticalPos=this.verticalPos)},"saveVerticalPos"),resetVerticalPos:X(function(){this.isLoopOverlap()&&(this.verticalPos=this.savedVerticalPos)},"resetVerticalPos"),bumpVerticalPos:X(function(e){this.verticalPos=this.verticalPos+e,this.data.stopy=Ti.getMax(this.data.stopy,this.verticalPos)},"bumpVerticalPos"),getVerticalPos:X(function(){return this.verticalPos},"getVerticalPos"),getBounds:X(function(){return{bounds:this.data,models:this.models}},"getBounds")},WWi=X(async function(e,t){li.bumpVerticalPos(Mn.boxMargin),t.height=Mn.boxMargin,t.starty=li.getVerticalPos();const r=Ww();r.x=t.startx,r.y=t.starty,r.width=t.width||Mn.width,r.class="note";const a=e.append("g"),s=q0.drawRect(a,r),o=Fgt();o.x=t.startx,o.y=t.starty,o.width=r.width,o.dy="1em",o.text=t.message,o.class="noteText",o.fontFamily=Mn.noteFontFamily,o.fontSize=Mn.noteFontSize,o.fontWeight=Mn.noteFontWeight,o.anchor=Mn.noteAlign,o.textMargin=Mn.noteMargin,o.valign="center";const u=u0(o.text)?await MTe(a,o):Jj(a,o),h=Math.round(u.map(f=>(f._groups||f)[0][0].getBBox().height).reduce((f,p)=>f+p));s.attr("height",h+2*Mn.noteMargin),t.height+=h+2*Mn.noteMargin,li.bumpVerticalPos(h+2*Mn.noteMargin),t.stopy=t.starty+h+2*Mn.noteMargin,t.stopx=t.startx+r.width,li.insert(t.startx,t.starty,t.stopx,t.stopy),li.models.addNote(t)},"drawNote"),o$=X(e=>({fontFamily:e.messageFontFamily,fontSize:e.messageFontSize,fontWeight:e.messageFontWeight}),"messageFont"),bV=X(e=>({fontFamily:e.noteFontFamily,fontSize:e.noteFontSize,fontWeight:e.noteFontWeight}),"noteFont"),kut=X(e=>({fontFamily:e.actorFontFamily,fontSize:e.actorFontSize,fontWeight:e.actorFontWeight}),"actorFont");async function VKn(e,t){li.bumpVerticalPos(10);const{startx:r,stopx:a,message:s}=t,o=Ti.splitBreaks(s).length,u=u0(s),h=u?await tce(s,nn()):Vo.calculateTextDimensions(s,o$(Mn));if(!u){const b=h.height/o;t.height+=b,li.bumpVerticalPos(b)}let f,p=h.height-10;const m=h.width;if(r===a){f=li.getVerticalPos()+p,Mn.rightAngles||(p+=Mn.boxMargin,f=li.getVerticalPos()+p),p+=30;const b=Ti.getMax(m/2,Mn.width/2);li.insert(r-b,li.getVerticalPos()-10+p,a+b,li.getVerticalPos()+30+p)}else p+=Mn.boxMargin,f=li.getVerticalPos()+p,li.insert(r,f-10,a,f);return li.bumpVerticalPos(p),t.height+=p,t.stopy=t.starty+t.height,li.insert(t.fromBounds,t.starty,t.toBounds,t.stopy),f}X(VKn,"boundMessage");var KWi=X(async function(e,t,r,a){const{startx:s,stopx:o,starty:u,message:h,type:f,sequenceIndex:p,sequenceVisible:m}=t,b=Vo.calculateTextDimensions(h,o$(Mn)),_=Fgt();_.x=s,_.y=u+10,_.width=o-s,_.class="messageText",_.dy="1em",_.text=h,_.fontFamily=Mn.messageFontFamily,_.fontSize=Mn.messageFontSize,_.fontWeight=Mn.messageFontWeight,_.anchor=Mn.messageAlign,_.valign="center",_.textMargin=Mn.wrapPadding,_.tspan=!1,u0(_.text)?await MTe(e,_,{startx:s,stopx:o,starty:r}):Jj(e,_);const w=b.width;let S;s===o?Mn.rightAngles?S=e.append("path").attr("d",`M ${s},${r} H ${s+Ti.getMax(Mn.width/2,w/2)} V ${r+25} H ${s}`):S=e.append("path").attr("d","M "+s+","+r+" C "+(s+60)+","+(r-10)+" "+(s+60)+","+(r+30)+" "+s+","+(r+20)):(S=e.append("line"),S.attr("x1",s),S.attr("y1",r),S.attr("x2",o),S.attr("y2",r)),f===a.db.LINETYPE.DOTTED||f===a.db.LINETYPE.DOTTED_CROSS||f===a.db.LINETYPE.DOTTED_POINT||f===a.db.LINETYPE.DOTTED_OPEN||f===a.db.LINETYPE.BIDIRECTIONAL_DOTTED?(S.style("stroke-dasharray","3, 3"),S.attr("class","messageLine1")):S.attr("class","messageLine0");let C="";Mn.arrowMarkerAbsolute&&(C=tAe(!0)),S.attr("stroke-width",2),S.attr("stroke","none"),S.style("fill","none"),(f===a.db.LINETYPE.SOLID||f===a.db.LINETYPE.DOTTED)&&S.attr("marker-end","url("+C+"#arrowhead)"),(f===a.db.LINETYPE.BIDIRECTIONAL_SOLID||f===a.db.LINETYPE.BIDIRECTIONAL_DOTTED)&&(S.attr("marker-start","url("+C+"#arrowhead)"),S.attr("marker-end","url("+C+"#arrowhead)")),(f===a.db.LINETYPE.SOLID_POINT||f===a.db.LINETYPE.DOTTED_POINT)&&S.attr("marker-end","url("+C+"#filled-head)"),(f===a.db.LINETYPE.SOLID_CROSS||f===a.db.LINETYPE.DOTTED_CROSS)&&S.attr("marker-end","url("+C+"#crosshead)"),(m||Mn.showSequenceNumbers)&&((f===a.db.LINETYPE.BIDIRECTIONAL_SOLID||f===a.db.LINETYPE.BIDIRECTIONAL_DOTTED)&&(ss&&(s=p.height),p.width+h.x>o&&(o=p.width+h.x)}return{maxHeight:s,maxWidth:o}},"drawActorsPopup"),jKn=X(function(e){W0(Mn,e),e.fontFamily&&(Mn.actorFontFamily=Mn.noteFontFamily=Mn.messageFontFamily=e.fontFamily),e.fontSize&&(Mn.actorFontSize=Mn.noteFontSize=Mn.messageFontSize=e.fontSize),e.fontWeight&&(Mn.actorFontWeight=Mn.noteFontWeight=Mn.messageFontWeight=e.fontWeight)},"setConf"),e6e=X(function(e){return li.activations.filter(function(t){return t.actor===e})},"actorActivations"),aTn=X(function(e,t){const r=t.get(e),a=e6e(e),s=a.reduce(function(u,h){return Ti.getMin(u,h.startx)},r.x+r.width/2-1),o=a.reduce(function(u,h){return Ti.getMax(u,h.stopx)},r.x+r.width/2+1);return[s,o]},"activationBounds");function y3(e,t,r,a,s){li.bumpVerticalPos(r);let o=a;if(t.id&&t.message&&e[t.id]){const u=e[t.id].width,h=o$(Mn);t.message=Vo.wrapLabel(`[${t.message}]`,u-2*Mn.wrapPadding,h),t.width=u,t.wrap=!0;const f=Vo.calculateTextDimensions(t.message,h),p=Ti.getMax(f.height,Mn.labelBoxHeight);o=a+p,it.debug(`${p} - ${t.message}`)}s(t),li.bumpVerticalPos(o)}X(y3,"adjustLoopHeightForWrap");function WKn(e,t,r,a,s,o,u){function h(m,b){m.x{j.add(ee.from),j.add(ee.to)}),S=S.filter(ee=>j.has(ee))}XWi(p,m,b,S,0,C,!1);const L=await tKi(C,m,N,a);q0.insertArrowHead(p),q0.insertArrowCrossHead(p),q0.insertArrowFilledHead(p),q0.insertSequenceNumber(p);function P(j,ee){const te=li.endActivation(j);te.starty+18>ee&&(te.starty=ee-6,ee+=12),q0.drawActivation(p,te,ee,Mn,e6e(j.from).length),li.insert(te.startx,ee-10,te.stopx,ee)}X(P,"activeEnd");let M=1,F=1;const U=[],$=[];let G=0;for(const j of C){let ee,te,ne;switch(j.type){case a.db.LINETYPE.NOTE:li.resetVerticalPos(),te=j.noteModel,await WWi(p,te);break;case a.db.LINETYPE.ACTIVE_START:li.newActivation(j,p,m);break;case a.db.LINETYPE.ACTIVE_END:P(j,li.getVerticalPos());break;case a.db.LINETYPE.LOOP_START:y3(L,j,Mn.boxMargin,Mn.boxMargin+Mn.boxTextMargin,se=>li.newLoop(se));break;case a.db.LINETYPE.LOOP_END:ee=li.endLoop(),await q0.drawLoop(p,ee,"loop",Mn),li.bumpVerticalPos(ee.stopy-li.getVerticalPos()),li.models.addLoop(ee);break;case a.db.LINETYPE.RECT_START:y3(L,j,Mn.boxMargin,Mn.boxMargin,se=>li.newLoop(void 0,se.message));break;case a.db.LINETYPE.RECT_END:ee=li.endLoop(),$.push(ee),li.models.addLoop(ee),li.bumpVerticalPos(ee.stopy-li.getVerticalPos());break;case a.db.LINETYPE.OPT_START:y3(L,j,Mn.boxMargin,Mn.boxMargin+Mn.boxTextMargin,se=>li.newLoop(se));break;case a.db.LINETYPE.OPT_END:ee=li.endLoop(),await q0.drawLoop(p,ee,"opt",Mn),li.bumpVerticalPos(ee.stopy-li.getVerticalPos()),li.models.addLoop(ee);break;case a.db.LINETYPE.ALT_START:y3(L,j,Mn.boxMargin,Mn.boxMargin+Mn.boxTextMargin,se=>li.newLoop(se));break;case a.db.LINETYPE.ALT_ELSE:y3(L,j,Mn.boxMargin+Mn.boxTextMargin,Mn.boxMargin,se=>li.addSectionToLoop(se));break;case a.db.LINETYPE.ALT_END:ee=li.endLoop(),await q0.drawLoop(p,ee,"alt",Mn),li.bumpVerticalPos(ee.stopy-li.getVerticalPos()),li.models.addLoop(ee);break;case a.db.LINETYPE.PAR_START:case a.db.LINETYPE.PAR_OVER_START:y3(L,j,Mn.boxMargin,Mn.boxMargin+Mn.boxTextMargin,se=>li.newLoop(se)),li.saveVerticalPos();break;case a.db.LINETYPE.PAR_AND:y3(L,j,Mn.boxMargin+Mn.boxTextMargin,Mn.boxMargin,se=>li.addSectionToLoop(se));break;case a.db.LINETYPE.PAR_END:ee=li.endLoop(),await q0.drawLoop(p,ee,"par",Mn),li.bumpVerticalPos(ee.stopy-li.getVerticalPos()),li.models.addLoop(ee);break;case a.db.LINETYPE.AUTONUMBER:M=j.message.start||M,F=j.message.step||F,j.message.visible?a.db.enableSequenceNumbers():a.db.disableSequenceNumbers();break;case a.db.LINETYPE.CRITICAL_START:y3(L,j,Mn.boxMargin,Mn.boxMargin+Mn.boxTextMargin,se=>li.newLoop(se));break;case a.db.LINETYPE.CRITICAL_OPTION:y3(L,j,Mn.boxMargin+Mn.boxTextMargin,Mn.boxMargin,se=>li.addSectionToLoop(se));break;case a.db.LINETYPE.CRITICAL_END:ee=li.endLoop(),await q0.drawLoop(p,ee,"critical",Mn),li.bumpVerticalPos(ee.stopy-li.getVerticalPos()),li.models.addLoop(ee);break;case a.db.LINETYPE.BREAK_START:y3(L,j,Mn.boxMargin,Mn.boxMargin+Mn.boxTextMargin,se=>li.newLoop(se));break;case a.db.LINETYPE.BREAK_END:ee=li.endLoop(),await q0.drawLoop(p,ee,"break",Mn),li.bumpVerticalPos(ee.stopy-li.getVerticalPos()),li.models.addLoop(ee);break;default:try{ne=j.msgModel,ne.starty=li.getVerticalPos(),ne.sequenceIndex=M,ne.sequenceVisible=a.db.showSequenceNumbers();const se=await VKn(p,ne);WKn(j,ne,se,G,m,b,_),U.push({messageModel:ne,lineStartY:se}),li.models.addMessage(ne)}catch(se){it.error("error while drawing message",se)}}[a.db.LINETYPE.SOLID_OPEN,a.db.LINETYPE.DOTTED_OPEN,a.db.LINETYPE.SOLID,a.db.LINETYPE.DOTTED,a.db.LINETYPE.SOLID_CROSS,a.db.LINETYPE.DOTTED_CROSS,a.db.LINETYPE.SOLID_POINT,a.db.LINETYPE.DOTTED_POINT,a.db.LINETYPE.BIDIRECTIONAL_SOLID,a.db.LINETYPE.BIDIRECTIONAL_DOTTED].includes(j.type)&&(M=M+F),G++}it.debug("createdActors",b),it.debug("destroyedActors",_),await Rut(p,m,S,!1);for(const j of U)await KWi(p,j.messageModel,j.lineStartY,a);Mn.mirrorActors&&await Rut(p,m,S,!0),$.forEach(j=>q0.drawBackgroundRect(p,j)),GKn(p,m,S,Mn);for(const j of li.models.boxes){j.height=li.getVerticalPos()-j.y,li.insert(j.x,j.y,j.x+j.width,j.height);const ee=Mn.boxMargin*2;j.startx=j.x-ee,j.starty=j.y-ee*.25,j.stopx=j.startx+j.width+2*ee,j.stopy=j.starty+j.height+ee*.75,j.stroke="rgb(0,0,0, 0.5)",q0.drawBox(p,j,Mn)}k&&li.bumpVerticalPos(Mn.boxMargin);const B=YKn(p,m,S,f),{bounds:Z}=li.getBounds();Z.startx===void 0&&(Z.startx=0),Z.starty===void 0&&(Z.starty=0),Z.stopx===void 0&&(Z.stopx=0),Z.stopy===void 0&&(Z.stopy=0);let z=Z.stopy-Z.starty;z{const u=o$(Mn);let h=o.actorKeys.reduce((b,_)=>b+=e.get(_).width+(e.get(_).margin||0),0);const f=Mn.boxMargin*8;h+=f,h-=2*Mn.boxTextMargin,o.wrap&&(o.name=Vo.wrapLabel(o.name,h-2*Mn.wrapPadding,u));const p=Vo.calculateTextDimensions(o.name,u);s=Ti.getMax(p.height,s);const m=Ti.getMax(h,p.width+2*Mn.wrapPadding);if(o.margin=Mn.boxTextMargin,ho.textMaxHeight=s),Ti.getMax(a,Mn.height)}X(XKn,"calculateActorMargins");var JWi=X(async function(e,t,r){const a=t.get(e.from),s=t.get(e.to),o=a.x,u=s.x,h=e.wrap&&e.message;let f=u0(e.message)?await tce(e.message,nn()):Vo.calculateTextDimensions(h?Vo.wrapLabel(e.message,Mn.width,bV(Mn)):e.message,bV(Mn));const p={width:h?Mn.width:Ti.getMax(Mn.width,f.width+2*Mn.noteMargin),height:0,startx:a.x,stopx:0,starty:0,stopy:0,message:e.message};return e.placement===r.db.PLACEMENT.RIGHTOF?(p.width=h?Ti.getMax(Mn.width,f.width):Ti.getMax(a.width/2+s.width/2,f.width+2*Mn.noteMargin),p.startx=o+(a.width+Mn.actorMargin)/2):e.placement===r.db.PLACEMENT.LEFTOF?(p.width=h?Ti.getMax(Mn.width,f.width+2*Mn.noteMargin):Ti.getMax(a.width/2+s.width/2,f.width+2*Mn.noteMargin),p.startx=o-p.width+(a.width-Mn.actorMargin)/2):e.to===e.from?(f=Vo.calculateTextDimensions(h?Vo.wrapLabel(e.message,Ti.getMax(Mn.width,a.width),bV(Mn)):e.message,bV(Mn)),p.width=h?Ti.getMax(Mn.width,a.width):Ti.getMax(a.width,Mn.width,f.width+2*Mn.noteMargin),p.startx=o+(a.width-p.width)/2):(p.width=Math.abs(o+a.width/2-(u+s.width/2))+Mn.actorMargin,p.startx=o2,b=X(C=>h?-C:C,"adjustValue");e.from===e.to?p=f:(e.activate&&!m&&(p+=b(Mn.activationWidth/2-1)),[r.db.LINETYPE.SOLID_OPEN,r.db.LINETYPE.DOTTED_OPEN].includes(e.type)||(p+=b(3)),[r.db.LINETYPE.BIDIRECTIONAL_SOLID,r.db.LINETYPE.BIDIRECTIONAL_DOTTED].includes(e.type)&&(f-=b(3)));const _=[a,s,o,u],w=Math.abs(f-p);e.wrap&&e.message&&(e.message=Vo.wrapLabel(e.message,Ti.getMax(w+2*Mn.wrapPadding,Mn.width),o$(Mn)));const S=Vo.calculateTextDimensions(e.message,o$(Mn));return{width:Ti.getMax(e.wrap?0:S.width+2*Mn.wrapPadding,w+2*Mn.wrapPadding,Mn.width),height:0,startx:f,stopx:p,starty:0,stopy:0,message:e.message,type:e.type,wrap:e.wrap,fromBounds:Math.min.apply(null,_),toBounds:Math.max.apply(null,_)}},"buildMessageModel"),tKi=X(async function(e,t,r,a){const s={},o=[];let u,h,f;for(const p of e){switch(p.type){case a.db.LINETYPE.LOOP_START:case a.db.LINETYPE.ALT_START:case a.db.LINETYPE.OPT_START:case a.db.LINETYPE.PAR_START:case a.db.LINETYPE.PAR_OVER_START:case a.db.LINETYPE.CRITICAL_START:case a.db.LINETYPE.BREAK_START:o.push({id:p.id,msg:p.message,from:Number.MAX_SAFE_INTEGER,to:Number.MIN_SAFE_INTEGER,width:0});break;case a.db.LINETYPE.ALT_ELSE:case a.db.LINETYPE.PAR_AND:case a.db.LINETYPE.CRITICAL_OPTION:p.message&&(u=o.pop(),s[u.id]=u,s[p.id]=u,o.push(u));break;case a.db.LINETYPE.LOOP_END:case a.db.LINETYPE.ALT_END:case a.db.LINETYPE.OPT_END:case a.db.LINETYPE.PAR_END:case a.db.LINETYPE.CRITICAL_END:case a.db.LINETYPE.BREAK_END:u=o.pop(),s[u.id]=u;break;case a.db.LINETYPE.ACTIVE_START:{const b=t.get(p.from?p.from:p.to.actor),_=e6e(p.from?p.from:p.to.actor).length,w=b.x+b.width/2+(_-1)*Mn.activationWidth/2,S={startx:w,stopx:w+Mn.activationWidth,actor:p.from,enabled:!0};li.activations.push(S)}break;case a.db.LINETYPE.ACTIVE_END:{const b=li.activations.map(_=>_.actor).lastIndexOf(p.from);li.activations.splice(b,1).splice(0,1)}break}p.placement!==void 0?(h=await JWi(p,t,a),p.noteModel=h,o.forEach(b=>{u=b,u.from=Ti.getMin(u.from,h.startx),u.to=Ti.getMax(u.to,h.startx+h.width),u.width=Ti.getMax(u.width,Math.abs(u.from-u.to))-Mn.labelBoxWidth})):(f=eKi(p,t,a),p.msgModel=f,f.startx&&f.stopx&&o.length>0&&o.forEach(b=>{if(u=b,f.startx===f.stopx){const _=t.get(p.from),w=t.get(p.to);u.from=Ti.getMin(_.x-f.width/2,_.x-_.width/2,u.from),u.to=Ti.getMax(w.x+f.width/2,w.x+_.width/2,u.to),u.width=Ti.getMax(u.width,Math.abs(u.to-u.from))-Mn.labelBoxWidth}else u.from=Ti.getMin(f.startx,u.from),u.to=Ti.getMax(f.stopx,u.to),u.width=Ti.getMax(u.width,f.width)-Mn.labelBoxWidth}))}return li.activations=[],it.debug("Loop type widths:",s),s},"calculateLoopBounds"),nKi={bounds:li,drawActors:Rut,drawActorsPopup:YKn,setConf:jKn,draw:QWi},rKi={parser:yWi,get db(){return new EWi},renderer:nKi,styles:SWi,init:X(e=>{e.sequence||(e.sequence={}),e.wrap&&(e.sequence.wrap=e.wrap,yot({sequence:{wrap:e.wrap}}))},"init")};const iKi=Object.freeze(Object.defineProperty({__proto__:null,diagram:rKi},Symbol.toStringTag,{value:"Module"}));var Iut=function(){var e=X(function(ht,et,qe,He){for(qe=qe||{},He=ht.length;He--;qe[ht[He]]=et);return qe},"o"),t=[1,18],r=[1,19],a=[1,20],s=[1,41],o=[1,42],u=[1,26],h=[1,24],f=[1,25],p=[1,32],m=[1,33],b=[1,34],_=[1,45],w=[1,35],S=[1,36],C=[1,37],A=[1,38],k=[1,27],I=[1,28],N=[1,29],L=[1,30],P=[1,31],M=[1,44],F=[1,46],U=[1,43],$=[1,47],G=[1,9],B=[1,8,9],Z=[1,58],z=[1,59],Y=[1,60],W=[1,61],Q=[1,62],V=[1,63],j=[1,64],ee=[1,8,9,41],te=[1,76],ne=[1,8,9,12,13,22,39,41,44,68,69,70,71,72,73,74,79,81],se=[1,8,9,12,13,18,20,22,39,41,44,50,60,68,69,70,71,72,73,74,79,81,86,100,102,103],ie=[13,60,86,100,102,103],ge=[13,60,73,74,86,100,102,103],ce=[13,60,68,69,70,71,72,86,100,102,103],be=[1,100],ve=[1,117],De=[1,113],ye=[1,109],Ee=[1,115],he=[1,110],we=[1,111],Ce=[1,112],Ie=[1,114],Le=[1,116],Fe=[22,48,60,61,82,86,87,88,89,90],Ve=[1,8,9,39,41,44],Oe=[1,8,9,22],Dt=[1,145],ot=[1,8,9,61],sn=[1,8,9,22,48,60,61,82,86,87,88,89,90],Kt={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,mermaidDoc:4,statements:5,graphConfig:6,CLASS_DIAGRAM:7,NEWLINE:8,EOF:9,statement:10,classLabel:11,SQS:12,STR:13,SQE:14,namespaceName:15,alphaNumToken:16,classLiteralName:17,DOT:18,className:19,GENERICTYPE:20,relationStatement:21,LABEL:22,namespaceStatement:23,classStatement:24,memberStatement:25,annotationStatement:26,clickStatement:27,styleStatement:28,cssClassStatement:29,noteStatement:30,classDefStatement:31,direction:32,acc_title:33,acc_title_value:34,acc_descr:35,acc_descr_value:36,acc_descr_multiline_value:37,namespaceIdentifier:38,STRUCT_START:39,classStatements:40,STRUCT_STOP:41,NAMESPACE:42,classIdentifier:43,STYLE_SEPARATOR:44,members:45,CLASS:46,emptyBody:47,SPACE:48,ANNOTATION_START:49,ANNOTATION_END:50,MEMBER:51,SEPARATOR:52,relation:53,NOTE_FOR:54,noteText:55,NOTE:56,CLASSDEF:57,classList:58,stylesOpt:59,ALPHA:60,COMMA:61,direction_tb:62,direction_bt:63,direction_rl:64,direction_lr:65,relationType:66,lineType:67,AGGREGATION:68,EXTENSION:69,COMPOSITION:70,DEPENDENCY:71,LOLLIPOP:72,LINE:73,DOTTED_LINE:74,CALLBACK:75,LINK:76,LINK_TARGET:77,CLICK:78,CALLBACK_NAME:79,CALLBACK_ARGS:80,HREF:81,STYLE:82,CSSCLASS:83,style:84,styleComponent:85,NUM:86,COLON:87,UNIT:88,BRKT:89,PCT:90,commentToken:91,textToken:92,graphCodeTokens:93,textNoTagsToken:94,TAGSTART:95,TAGEND:96,"==":97,"--":98,DEFAULT:99,MINUS:100,keywords:101,UNICODE_TEXT:102,BQUOTE_STR:103,$accept:0,$end:1},terminals_:{2:"error",7:"CLASS_DIAGRAM",8:"NEWLINE",9:"EOF",12:"SQS",13:"STR",14:"SQE",18:"DOT",20:"GENERICTYPE",22:"LABEL",33:"acc_title",34:"acc_title_value",35:"acc_descr",36:"acc_descr_value",37:"acc_descr_multiline_value",39:"STRUCT_START",41:"STRUCT_STOP",42:"NAMESPACE",44:"STYLE_SEPARATOR",46:"CLASS",48:"SPACE",49:"ANNOTATION_START",50:"ANNOTATION_END",51:"MEMBER",52:"SEPARATOR",54:"NOTE_FOR",56:"NOTE",57:"CLASSDEF",60:"ALPHA",61:"COMMA",62:"direction_tb",63:"direction_bt",64:"direction_rl",65:"direction_lr",68:"AGGREGATION",69:"EXTENSION",70:"COMPOSITION",71:"DEPENDENCY",72:"LOLLIPOP",73:"LINE",74:"DOTTED_LINE",75:"CALLBACK",76:"LINK",77:"LINK_TARGET",78:"CLICK",79:"CALLBACK_NAME",80:"CALLBACK_ARGS",81:"HREF",82:"STYLE",83:"CSSCLASS",86:"NUM",87:"COLON",88:"UNIT",89:"BRKT",90:"PCT",93:"graphCodeTokens",95:"TAGSTART",96:"TAGEND",97:"==",98:"--",99:"DEFAULT",100:"MINUS",101:"keywords",102:"UNICODE_TEXT",103:"BQUOTE_STR"},productions_:[0,[3,1],[3,1],[4,1],[6,4],[5,1],[5,2],[5,3],[11,3],[15,1],[15,1],[15,3],[15,2],[19,1],[19,3],[19,1],[19,2],[19,2],[19,2],[10,1],[10,2],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,2],[10,2],[10,1],[23,4],[23,5],[38,2],[40,1],[40,2],[40,3],[24,1],[24,3],[24,4],[24,3],[24,6],[43,2],[43,3],[47,0],[47,2],[47,2],[26,4],[45,1],[45,2],[25,1],[25,2],[25,1],[25,1],[21,3],[21,4],[21,4],[21,5],[30,3],[30,2],[31,3],[58,1],[58,3],[32,1],[32,1],[32,1],[32,1],[53,3],[53,2],[53,2],[53,1],[66,1],[66,1],[66,1],[66,1],[66,1],[67,1],[67,1],[27,3],[27,4],[27,3],[27,4],[27,4],[27,5],[27,3],[27,4],[27,4],[27,5],[27,4],[27,5],[27,5],[27,6],[28,3],[29,3],[59,1],[59,3],[84,1],[84,2],[85,1],[85,1],[85,1],[85,1],[85,1],[85,1],[85,1],[85,1],[85,1],[91,1],[91,1],[92,1],[92,1],[92,1],[92,1],[92,1],[92,1],[92,1],[94,1],[94,1],[94,1],[94,1],[16,1],[16,1],[16,1],[16,1],[17,1],[55,1]],performAction:X(function(et,qe,He,Ge,Ye,Ae,Xe){var fe=Ae.length-1;switch(Ye){case 8:this.$=Ae[fe-1];break;case 9:case 10:case 13:case 15:this.$=Ae[fe];break;case 11:case 14:this.$=Ae[fe-2]+"."+Ae[fe];break;case 12:case 16:this.$=Ae[fe-1]+Ae[fe];break;case 17:case 18:this.$=Ae[fe-1]+"~"+Ae[fe]+"~";break;case 19:Ge.addRelation(Ae[fe]);break;case 20:Ae[fe-1].title=Ge.cleanupLabel(Ae[fe]),Ge.addRelation(Ae[fe-1]);break;case 31:this.$=Ae[fe].trim(),Ge.setAccTitle(this.$);break;case 32:case 33:this.$=Ae[fe].trim(),Ge.setAccDescription(this.$);break;case 34:Ge.addClassesToNamespace(Ae[fe-3],Ae[fe-1]);break;case 35:Ge.addClassesToNamespace(Ae[fe-4],Ae[fe-1]);break;case 36:this.$=Ae[fe],Ge.addNamespace(Ae[fe]);break;case 37:this.$=[Ae[fe]];break;case 38:this.$=[Ae[fe-1]];break;case 39:Ae[fe].unshift(Ae[fe-2]),this.$=Ae[fe];break;case 41:Ge.setCssClass(Ae[fe-2],Ae[fe]);break;case 42:Ge.addMembers(Ae[fe-3],Ae[fe-1]);break;case 44:Ge.setCssClass(Ae[fe-5],Ae[fe-3]),Ge.addMembers(Ae[fe-5],Ae[fe-1]);break;case 45:this.$=Ae[fe],Ge.addClass(Ae[fe]);break;case 46:this.$=Ae[fe-1],Ge.addClass(Ae[fe-1]),Ge.setClassLabel(Ae[fe-1],Ae[fe]);break;case 50:Ge.addAnnotation(Ae[fe],Ae[fe-2]);break;case 51:case 64:this.$=[Ae[fe]];break;case 52:Ae[fe].push(Ae[fe-1]),this.$=Ae[fe];break;case 53:break;case 54:Ge.addMember(Ae[fe-1],Ge.cleanupLabel(Ae[fe]));break;case 55:break;case 56:break;case 57:this.$={id1:Ae[fe-2],id2:Ae[fe],relation:Ae[fe-1],relationTitle1:"none",relationTitle2:"none"};break;case 58:this.$={id1:Ae[fe-3],id2:Ae[fe],relation:Ae[fe-1],relationTitle1:Ae[fe-2],relationTitle2:"none"};break;case 59:this.$={id1:Ae[fe-3],id2:Ae[fe],relation:Ae[fe-2],relationTitle1:"none",relationTitle2:Ae[fe-1]};break;case 60:this.$={id1:Ae[fe-4],id2:Ae[fe],relation:Ae[fe-2],relationTitle1:Ae[fe-3],relationTitle2:Ae[fe-1]};break;case 61:Ge.addNote(Ae[fe],Ae[fe-1]);break;case 62:Ge.addNote(Ae[fe]);break;case 63:this.$=Ae[fe-2],Ge.defineClass(Ae[fe-1],Ae[fe]);break;case 65:this.$=Ae[fe-2].concat([Ae[fe]]);break;case 66:Ge.setDirection("TB");break;case 67:Ge.setDirection("BT");break;case 68:Ge.setDirection("RL");break;case 69:Ge.setDirection("LR");break;case 70:this.$={type1:Ae[fe-2],type2:Ae[fe],lineType:Ae[fe-1]};break;case 71:this.$={type1:"none",type2:Ae[fe],lineType:Ae[fe-1]};break;case 72:this.$={type1:Ae[fe-1],type2:"none",lineType:Ae[fe]};break;case 73:this.$={type1:"none",type2:"none",lineType:Ae[fe]};break;case 74:this.$=Ge.relationType.AGGREGATION;break;case 75:this.$=Ge.relationType.EXTENSION;break;case 76:this.$=Ge.relationType.COMPOSITION;break;case 77:this.$=Ge.relationType.DEPENDENCY;break;case 78:this.$=Ge.relationType.LOLLIPOP;break;case 79:this.$=Ge.lineType.LINE;break;case 80:this.$=Ge.lineType.DOTTED_LINE;break;case 81:case 87:this.$=Ae[fe-2],Ge.setClickEvent(Ae[fe-1],Ae[fe]);break;case 82:case 88:this.$=Ae[fe-3],Ge.setClickEvent(Ae[fe-2],Ae[fe-1]),Ge.setTooltip(Ae[fe-2],Ae[fe]);break;case 83:this.$=Ae[fe-2],Ge.setLink(Ae[fe-1],Ae[fe]);break;case 84:this.$=Ae[fe-3],Ge.setLink(Ae[fe-2],Ae[fe-1],Ae[fe]);break;case 85:this.$=Ae[fe-3],Ge.setLink(Ae[fe-2],Ae[fe-1]),Ge.setTooltip(Ae[fe-2],Ae[fe]);break;case 86:this.$=Ae[fe-4],Ge.setLink(Ae[fe-3],Ae[fe-2],Ae[fe]),Ge.setTooltip(Ae[fe-3],Ae[fe-1]);break;case 89:this.$=Ae[fe-3],Ge.setClickEvent(Ae[fe-2],Ae[fe-1],Ae[fe]);break;case 90:this.$=Ae[fe-4],Ge.setClickEvent(Ae[fe-3],Ae[fe-2],Ae[fe-1]),Ge.setTooltip(Ae[fe-3],Ae[fe]);break;case 91:this.$=Ae[fe-3],Ge.setLink(Ae[fe-2],Ae[fe]);break;case 92:this.$=Ae[fe-4],Ge.setLink(Ae[fe-3],Ae[fe-1],Ae[fe]);break;case 93:this.$=Ae[fe-4],Ge.setLink(Ae[fe-3],Ae[fe-1]),Ge.setTooltip(Ae[fe-3],Ae[fe]);break;case 94:this.$=Ae[fe-5],Ge.setLink(Ae[fe-4],Ae[fe-2],Ae[fe]),Ge.setTooltip(Ae[fe-4],Ae[fe-1]);break;case 95:this.$=Ae[fe-2],Ge.setCssStyle(Ae[fe-1],Ae[fe]);break;case 96:Ge.setCssClass(Ae[fe-1],Ae[fe]);break;case 97:this.$=[Ae[fe]];break;case 98:Ae[fe-2].push(Ae[fe]),this.$=Ae[fe-2];break;case 100:this.$=Ae[fe-1]+Ae[fe];break}},"anonymous"),table:[{3:1,4:2,5:3,6:4,7:[1,6],10:5,16:39,17:40,19:21,21:7,23:8,24:9,25:10,26:11,27:12,28:13,29:14,30:15,31:16,32:17,33:t,35:r,37:a,38:22,42:s,43:23,46:o,49:u,51:h,52:f,54:p,56:m,57:b,60:_,62:w,63:S,64:C,65:A,75:k,76:I,78:N,82:L,83:P,86:M,100:F,102:U,103:$},{1:[3]},{1:[2,1]},{1:[2,2]},{1:[2,3]},e(G,[2,5],{8:[1,48]}),{8:[1,49]},e(B,[2,19],{22:[1,50]}),e(B,[2,21]),e(B,[2,22]),e(B,[2,23]),e(B,[2,24]),e(B,[2,25]),e(B,[2,26]),e(B,[2,27]),e(B,[2,28]),e(B,[2,29]),e(B,[2,30]),{34:[1,51]},{36:[1,52]},e(B,[2,33]),e(B,[2,53],{53:53,66:56,67:57,13:[1,54],22:[1,55],68:Z,69:z,70:Y,71:W,72:Q,73:V,74:j}),{39:[1,65]},e(ee,[2,40],{39:[1,67],44:[1,66]}),e(B,[2,55]),e(B,[2,56]),{16:68,60:_,86:M,100:F,102:U},{16:39,17:40,19:69,60:_,86:M,100:F,102:U,103:$},{16:39,17:40,19:70,60:_,86:M,100:F,102:U,103:$},{16:39,17:40,19:71,60:_,86:M,100:F,102:U,103:$},{60:[1,72]},{13:[1,73]},{16:39,17:40,19:74,60:_,86:M,100:F,102:U,103:$},{13:te,55:75},{58:77,60:[1,78]},e(B,[2,66]),e(B,[2,67]),e(B,[2,68]),e(B,[2,69]),e(ne,[2,13],{16:39,17:40,19:80,18:[1,79],20:[1,81],60:_,86:M,100:F,102:U,103:$}),e(ne,[2,15],{20:[1,82]}),{15:83,16:84,17:85,60:_,86:M,100:F,102:U,103:$},{16:39,17:40,19:86,60:_,86:M,100:F,102:U,103:$},e(se,[2,123]),e(se,[2,124]),e(se,[2,125]),e(se,[2,126]),e([1,8,9,12,13,20,22,39,41,44,68,69,70,71,72,73,74,79,81],[2,127]),e(G,[2,6],{10:5,21:7,23:8,24:9,25:10,26:11,27:12,28:13,29:14,30:15,31:16,32:17,19:21,38:22,43:23,16:39,17:40,5:87,33:t,35:r,37:a,42:s,46:o,49:u,51:h,52:f,54:p,56:m,57:b,60:_,62:w,63:S,64:C,65:A,75:k,76:I,78:N,82:L,83:P,86:M,100:F,102:U,103:$}),{5:88,10:5,16:39,17:40,19:21,21:7,23:8,24:9,25:10,26:11,27:12,28:13,29:14,30:15,31:16,32:17,33:t,35:r,37:a,38:22,42:s,43:23,46:o,49:u,51:h,52:f,54:p,56:m,57:b,60:_,62:w,63:S,64:C,65:A,75:k,76:I,78:N,82:L,83:P,86:M,100:F,102:U,103:$},e(B,[2,20]),e(B,[2,31]),e(B,[2,32]),{13:[1,90],16:39,17:40,19:89,60:_,86:M,100:F,102:U,103:$},{53:91,66:56,67:57,68:Z,69:z,70:Y,71:W,72:Q,73:V,74:j},e(B,[2,54]),{67:92,73:V,74:j},e(ie,[2,73],{66:93,68:Z,69:z,70:Y,71:W,72:Q}),e(ge,[2,74]),e(ge,[2,75]),e(ge,[2,76]),e(ge,[2,77]),e(ge,[2,78]),e(ce,[2,79]),e(ce,[2,80]),{8:[1,95],24:96,40:94,43:23,46:o},{16:97,60:_,86:M,100:F,102:U},{41:[1,99],45:98,51:be},{50:[1,101]},{13:[1,102]},{13:[1,103]},{79:[1,104],81:[1,105]},{22:ve,48:De,59:106,60:ye,82:Ee,84:107,85:108,86:he,87:we,88:Ce,89:Ie,90:Le},{60:[1,118]},{13:te,55:119},e(B,[2,62]),e(B,[2,128]),{22:ve,48:De,59:120,60:ye,61:[1,121],82:Ee,84:107,85:108,86:he,87:we,88:Ce,89:Ie,90:Le},e(Fe,[2,64]),{16:39,17:40,19:122,60:_,86:M,100:F,102:U,103:$},e(ne,[2,16]),e(ne,[2,17]),e(ne,[2,18]),{39:[2,36]},{15:124,16:84,17:85,18:[1,123],39:[2,9],60:_,86:M,100:F,102:U,103:$},{39:[2,10]},e(Ve,[2,45],{11:125,12:[1,126]}),e(G,[2,7]),{9:[1,127]},e(Oe,[2,57]),{16:39,17:40,19:128,60:_,86:M,100:F,102:U,103:$},{13:[1,130],16:39,17:40,19:129,60:_,86:M,100:F,102:U,103:$},e(ie,[2,72],{66:131,68:Z,69:z,70:Y,71:W,72:Q}),e(ie,[2,71]),{41:[1,132]},{24:96,40:133,43:23,46:o},{8:[1,134],41:[2,37]},e(ee,[2,41],{39:[1,135]}),{41:[1,136]},e(ee,[2,43]),{41:[2,51],45:137,51:be},{16:39,17:40,19:138,60:_,86:M,100:F,102:U,103:$},e(B,[2,81],{13:[1,139]}),e(B,[2,83],{13:[1,141],77:[1,140]}),e(B,[2,87],{13:[1,142],80:[1,143]}),{13:[1,144]},e(B,[2,95],{61:Dt}),e(ot,[2,97],{85:146,22:ve,48:De,60:ye,82:Ee,86:he,87:we,88:Ce,89:Ie,90:Le}),e(sn,[2,99]),e(sn,[2,101]),e(sn,[2,102]),e(sn,[2,103]),e(sn,[2,104]),e(sn,[2,105]),e(sn,[2,106]),e(sn,[2,107]),e(sn,[2,108]),e(sn,[2,109]),e(B,[2,96]),e(B,[2,61]),e(B,[2,63],{61:Dt}),{60:[1,147]},e(ne,[2,14]),{15:148,16:84,17:85,60:_,86:M,100:F,102:U,103:$},{39:[2,12]},e(Ve,[2,46]),{13:[1,149]},{1:[2,4]},e(Oe,[2,59]),e(Oe,[2,58]),{16:39,17:40,19:150,60:_,86:M,100:F,102:U,103:$},e(ie,[2,70]),e(B,[2,34]),{41:[1,151]},{24:96,40:152,41:[2,38],43:23,46:o},{45:153,51:be},e(ee,[2,42]),{41:[2,52]},e(B,[2,50]),e(B,[2,82]),e(B,[2,84]),e(B,[2,85],{77:[1,154]}),e(B,[2,88]),e(B,[2,89],{13:[1,155]}),e(B,[2,91],{13:[1,157],77:[1,156]}),{22:ve,48:De,60:ye,82:Ee,84:158,85:108,86:he,87:we,88:Ce,89:Ie,90:Le},e(sn,[2,100]),e(Fe,[2,65]),{39:[2,11]},{14:[1,159]},e(Oe,[2,60]),e(B,[2,35]),{41:[2,39]},{41:[1,160]},e(B,[2,86]),e(B,[2,90]),e(B,[2,92]),e(B,[2,93],{77:[1,161]}),e(ot,[2,98],{85:146,22:ve,48:De,60:ye,82:Ee,86:he,87:we,88:Ce,89:Ie,90:Le}),e(Ve,[2,8]),e(ee,[2,44]),e(B,[2,94])],defaultActions:{2:[2,1],3:[2,2],4:[2,3],83:[2,36],85:[2,10],124:[2,12],127:[2,4],137:[2,52],148:[2,11],152:[2,39]},parseError:X(function(et,qe){if(qe.recoverable)this.trace(et);else{var He=new Error(et);throw He.hash=qe,He}},"parseError"),parse:X(function(et){var qe=this,He=[0],Ge=[],Ye=[null],Ae=[],Xe=this.table,fe="",Qe=0,Ke=0,mt=2,lt=1,$t=Ae.slice.call(arguments,1),Ut=Object.create(this.lexer),Jt={yy:{}};for(var wn in this.yy)Object.prototype.hasOwnProperty.call(this.yy,wn)&&(Jt.yy[wn]=this.yy[wn]);Ut.setInput(et,Jt.yy),Jt.yy.lexer=Ut,Jt.yy.parser=this,typeof Ut.yylloc>"u"&&(Ut.yylloc={});var Vn=Ut.yylloc;Ae.push(Vn);var Wn=Ut.options&&Ut.options.ranges;typeof Jt.yy.parseError=="function"?this.parseError=Jt.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Dn(Pr){He.length=He.length-2*Pr,Ye.length=Ye.length-Pr,Ae.length=Ae.length-Pr}X(Dn,"popStack");function zn(){var Pr;return Pr=Ge.pop()||Ut.lex()||lt,typeof Pr!="number"&&(Pr instanceof Array&&(Ge=Pr,Pr=Ge.pop()),Pr=qe.symbols_[Pr]||Pr),Pr}X(zn,"lex");for(var vn,Cn,Ar,ur,On={},Ir,Ln,pr,Cr;;){if(Cn=He[He.length-1],this.defaultActions[Cn]?Ar=this.defaultActions[Cn]:((vn===null||typeof vn>"u")&&(vn=zn()),Ar=Xe[Cn]&&Xe[Cn][vn]),typeof Ar>"u"||!Ar.length||!Ar[0]){var Zr="";Cr=[];for(Ir in Xe[Cn])this.terminals_[Ir]&&Ir>mt&&Cr.push("'"+this.terminals_[Ir]+"'");Ut.showPosition?Zr="Parse error on line "+(Qe+1)+`: +`+Ut.showPosition()+` +Expecting `+Cr.join(", ")+", got '"+(this.terminals_[vn]||vn)+"'":Zr="Parse error on line "+(Qe+1)+": Unexpected "+(vn==lt?"end of input":"'"+(this.terminals_[vn]||vn)+"'"),this.parseError(Zr,{text:Ut.match,token:this.terminals_[vn]||vn,line:Ut.yylineno,loc:Vn,expected:Cr})}if(Ar[0]instanceof Array&&Ar.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Cn+", token: "+vn);switch(Ar[0]){case 1:He.push(vn),Ye.push(Ut.yytext),Ae.push(Ut.yylloc),He.push(Ar[1]),vn=null,Ke=Ut.yyleng,fe=Ut.yytext,Qe=Ut.yylineno,Vn=Ut.yylloc;break;case 2:if(Ln=this.productions_[Ar[1]][1],On.$=Ye[Ye.length-Ln],On._$={first_line:Ae[Ae.length-(Ln||1)].first_line,last_line:Ae[Ae.length-1].last_line,first_column:Ae[Ae.length-(Ln||1)].first_column,last_column:Ae[Ae.length-1].last_column},Wn&&(On._$.range=[Ae[Ae.length-(Ln||1)].range[0],Ae[Ae.length-1].range[1]]),ur=this.performAction.apply(On,[fe,Ke,Qe,Jt.yy,Ar[1],Ye,Ae].concat($t)),typeof ur<"u")return ur;Ln&&(He=He.slice(0,-1*Ln*2),Ye=Ye.slice(0,-1*Ln),Ae=Ae.slice(0,-1*Ln)),He.push(this.productions_[Ar[1]][0]),Ye.push(On.$),Ae.push(On._$),pr=Xe[He[He.length-2]][He[He.length-1]],He.push(pr);break;case 3:return!0}}return!0},"parse")},Ft=function(){var ht={EOF:1,parseError:X(function(qe,He){if(this.yy.parser)this.yy.parser.parseError(qe,He);else throw new Error(qe)},"parseError"),setInput:X(function(et,qe){return this.yy=qe||this.yy||{},this._input=et,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var et=this._input[0];this.yytext+=et,this.yyleng++,this.offset++,this.match+=et,this.matched+=et;var qe=et.match(/(?:\r\n?|\n).*/g);return qe?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),et},"input"),unput:X(function(et){var qe=et.length,He=et.split(/(?:\r\n?|\n)/g);this._input=et+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-qe),this.offset-=qe;var Ge=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),He.length-1&&(this.yylineno-=He.length-1);var Ye=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:He?(He.length===Ge.length?this.yylloc.first_column:0)+Ge[Ge.length-He.length].length-He[0].length:this.yylloc.first_column-qe},this.options.ranges&&(this.yylloc.range=[Ye[0],Ye[0]+this.yyleng-qe]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(et){this.unput(this.match.slice(et))},"less"),pastInput:X(function(){var et=this.matched.substr(0,this.matched.length-this.match.length);return(et.length>20?"...":"")+et.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var et=this.match;return et.length<20&&(et+=this._input.substr(0,20-et.length)),(et.substr(0,20)+(et.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var et=this.pastInput(),qe=new Array(et.length+1).join("-");return et+this.upcomingInput()+` +`+qe+"^"},"showPosition"),test_match:X(function(et,qe){var He,Ge,Ye;if(this.options.backtrack_lexer&&(Ye={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Ye.yylloc.range=this.yylloc.range.slice(0))),Ge=et[0].match(/(?:\r\n?|\n).*/g),Ge&&(this.yylineno+=Ge.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:Ge?Ge[Ge.length-1].length-Ge[Ge.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+et[0].length},this.yytext+=et[0],this.match+=et[0],this.matches=et,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(et[0].length),this.matched+=et[0],He=this.performAction.call(this,this.yy,this,qe,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),He)return He;if(this._backtrack){for(var Ae in Ye)this[Ae]=Ye[Ae];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var et,qe,He,Ge;this._more||(this.yytext="",this.match="");for(var Ye=this._currentRules(),Ae=0;Aeqe[0].length)){if(qe=He,Ge=Ae,this.options.backtrack_lexer){if(et=this.test_match(He,Ye[Ae]),et!==!1)return et;if(this._backtrack){qe=!1;continue}else return!1}else if(!this.options.flex)break}return qe?(et=this.test_match(qe,Ye[Ge]),et!==!1?et:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var qe=this.next();return qe||this.lex()},"lex"),begin:X(function(qe){this.conditionStack.push(qe)},"begin"),popState:X(function(){var qe=this.conditionStack.length-1;return qe>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(qe){return qe=this.conditionStack.length-1-Math.abs(qe||0),qe>=0?this.conditionStack[qe]:"INITIAL"},"topState"),pushState:X(function(qe){this.begin(qe)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{},performAction:X(function(qe,He,Ge,Ye){switch(Ge){case 0:return 62;case 1:return 63;case 2:return 64;case 3:return 65;case 4:break;case 5:break;case 6:return this.begin("acc_title"),33;case 7:return this.popState(),"acc_title_value";case 8:return this.begin("acc_descr"),35;case 9:return this.popState(),"acc_descr_value";case 10:this.begin("acc_descr_multiline");break;case 11:this.popState();break;case 12:return"acc_descr_multiline_value";case 13:return 8;case 14:break;case 15:return 7;case 16:return 7;case 17:return"EDGE_STATE";case 18:this.begin("callback_name");break;case 19:this.popState();break;case 20:this.popState(),this.begin("callback_args");break;case 21:return 79;case 22:this.popState();break;case 23:return 80;case 24:this.popState();break;case 25:return"STR";case 26:this.begin("string");break;case 27:return 82;case 28:return 57;case 29:return this.begin("namespace"),42;case 30:return this.popState(),8;case 31:break;case 32:return this.begin("namespace-body"),39;case 33:return this.popState(),41;case 34:return"EOF_IN_STRUCT";case 35:return 8;case 36:break;case 37:return"EDGE_STATE";case 38:return this.begin("class"),46;case 39:return this.popState(),8;case 40:break;case 41:return this.popState(),this.popState(),41;case 42:return this.begin("class-body"),39;case 43:return this.popState(),41;case 44:return"EOF_IN_STRUCT";case 45:return"EDGE_STATE";case 46:return"OPEN_IN_STRUCT";case 47:break;case 48:return"MEMBER";case 49:return 83;case 50:return 75;case 51:return 76;case 52:return 78;case 53:return 54;case 54:return 56;case 55:return 49;case 56:return 50;case 57:return 81;case 58:this.popState();break;case 59:return"GENERICTYPE";case 60:this.begin("generic");break;case 61:this.popState();break;case 62:return"BQUOTE_STR";case 63:this.begin("bqstring");break;case 64:return 77;case 65:return 77;case 66:return 77;case 67:return 77;case 68:return 69;case 69:return 69;case 70:return 71;case 71:return 71;case 72:return 70;case 73:return 68;case 74:return 72;case 75:return 73;case 76:return 74;case 77:return 22;case 78:return 44;case 79:return 100;case 80:return 18;case 81:return"PLUS";case 82:return 87;case 83:return 61;case 84:return 89;case 85:return 89;case 86:return 90;case 87:return"EQUALS";case 88:return"EQUALS";case 89:return 60;case 90:return 12;case 91:return 14;case 92:return"PUNCTUATION";case 93:return 86;case 94:return 102;case 95:return 48;case 96:return 48;case 97:return 9}},"anonymous"),rules:[/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,/^(?:%%[^\n]*(\r?\n)*)/,/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:classDiagram-v2\b)/,/^(?:classDiagram\b)/,/^(?:\[\*\])/,/^(?:call[\s]+)/,/^(?:\([\s]*\))/,/^(?:\()/,/^(?:[^(]*)/,/^(?:\))/,/^(?:[^)]*)/,/^(?:["])/,/^(?:[^"]*)/,/^(?:["])/,/^(?:style\b)/,/^(?:classDef\b)/,/^(?:namespace\b)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:[{])/,/^(?:[}])/,/^(?:$)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:\[\*\])/,/^(?:class\b)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:[}])/,/^(?:[{])/,/^(?:[}])/,/^(?:$)/,/^(?:\[\*\])/,/^(?:[{])/,/^(?:[\n])/,/^(?:[^{}\n]*)/,/^(?:cssClass\b)/,/^(?:callback\b)/,/^(?:link\b)/,/^(?:click\b)/,/^(?:note for\b)/,/^(?:note\b)/,/^(?:<<)/,/^(?:>>)/,/^(?:href\b)/,/^(?:[~])/,/^(?:[^~]*)/,/^(?:~)/,/^(?:[`])/,/^(?:[^`]+)/,/^(?:[`])/,/^(?:_self\b)/,/^(?:_blank\b)/,/^(?:_parent\b)/,/^(?:_top\b)/,/^(?:\s*<\|)/,/^(?:\s*\|>)/,/^(?:\s*>)/,/^(?:\s*<)/,/^(?:\s*\*)/,/^(?:\s*o\b)/,/^(?:\s*\(\))/,/^(?:--)/,/^(?:\.\.)/,/^(?::{1}[^:\n;]+)/,/^(?::{3})/,/^(?:-)/,/^(?:\.)/,/^(?:\+)/,/^(?::)/,/^(?:,)/,/^(?:#)/,/^(?:#)/,/^(?:%)/,/^(?:=)/,/^(?:=)/,/^(?:\w+)/,/^(?:\[)/,/^(?:\])/,/^(?:[!"#$%&'*+,-.`?\\/])/,/^(?:[0-9]+)/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\s)/,/^(?:\s)/,/^(?:$)/],conditions:{"namespace-body":{rules:[26,33,34,35,36,37,38,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},namespace:{rules:[26,29,30,31,32,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},"class-body":{rules:[26,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},class:{rules:[26,39,40,41,42,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},acc_descr_multiline:{rules:[11,12,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},acc_descr:{rules:[9,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},acc_title:{rules:[7,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},callback_args:{rules:[22,23,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},callback_name:{rules:[19,20,21,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},href:{rules:[26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},struct:{rules:[26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},generic:{rules:[26,49,50,51,52,53,54,55,56,57,58,59,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},bqstring:{rules:[26,49,50,51,52,53,54,55,56,57,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},string:{rules:[24,25,26,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,86,87,88,89,90,91,92,93,94,95,97],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,8,10,13,14,15,16,17,18,26,27,28,29,38,49,50,51,52,53,54,55,56,57,60,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97],inclusive:!0}}};return ht}();Kt.lexer=Ft;function Je(){this.yy={}}return X(Je,"Parser"),Je.prototype=Kt,Kt.Parser=Je,new Je}();Iut.parser=Iut;var QKn=Iut,sTn=["#","+","~","-",""],ij,oTn=(ij=class{constructor(t,r){this.memberType=r,this.visibility="",this.classifier="",this.text="";const a=Ic(t,nn());this.parseMember(a)}getDisplayDetails(){let t=this.visibility+WN(this.id);this.memberType==="method"&&(t+=`(${WN(this.parameters.trim())})`,this.returnType&&(t+=" : "+WN(this.returnType))),t=t.trim();const r=this.parseClassifier();return{displayText:t,cssStyle:r}}parseMember(t){let r="";if(this.memberType==="method"){const o=/([#+~-])?(.+)\((.*)\)([\s$*])?(.*)([$*])?/.exec(t);if(o){const u=o[1]?o[1].trim():"";if(sTn.includes(u)&&(this.visibility=u),this.id=o[2],this.parameters=o[3]?o[3].trim():"",r=o[4]?o[4].trim():"",this.returnType=o[5]?o[5].trim():"",r===""){const h=this.returnType.substring(this.returnType.length-1);/[$*]/.exec(h)&&(r=h,this.returnType=this.returnType.substring(0,this.returnType.length-1))}}}else{const s=t.length,o=t.substring(0,1),u=t.substring(s-1);sTn.includes(o)&&(this.visibility=o),/[$*]/.exec(u)&&(r=u),this.id=t.substring(this.visibility===""?0:1,r===""?s:s-1)}this.classifier=r,this.id=this.id.startsWith(" ")?" "+this.id.trim():this.id.trim();const a=`${this.visibility?"\\"+this.visibility:""}${WN(this.id)}${this.memberType==="method"?`(${WN(this.parameters)})${this.returnType?" : "+WN(this.returnType):""}`:""}`;this.text=a.replaceAll("<","<").replaceAll(">",">"),this.text.startsWith("\\<")&&(this.text=this.text.replace("\\<","~"))}parseClassifier(){switch(this.classifier){case"*":return"font-style:italic;";case"$":return"text-decoration:underline;";default:return""}}},X(ij,"ClassMember"),ij),hEe="classId-",lTn=0,EB=X(e=>Ti.sanitizeText(e,nn()),"sanitizeText"),aj,ZKn=(aj=class{constructor(){this.relations=[],this.classes=new Map,this.styleClasses=new Map,this.notes=[],this.interfaces=[],this.namespaces=new Map,this.namespaceCounter=0,this.functions=[],this.lineType={LINE:0,DOTTED_LINE:1},this.relationType={AGGREGATION:0,EXTENSION:1,COMPOSITION:2,DEPENDENCY:3,LOLLIPOP:4},this.setupToolTips=X(t=>{let r=gn(".mermaidTooltip");(r._groups||r)[0][0]===null&&(r=gn("body").append("div").attr("class","mermaidTooltip").style("opacity",0)),gn(t).select("svg").selectAll("g.node").on("mouseover",o=>{const u=gn(o.currentTarget);if(u.attr("title")===null)return;const f=this.getBoundingClientRect();r.transition().duration(200).style("opacity",".9"),r.text(u.attr("title")).style("left",window.scrollX+f.left+(f.right-f.left)/2+"px").style("top",window.scrollY+f.top-14+document.body.scrollTop+"px"),r.html(r.html().replace(/<br\/>/g,"
    ")),u.classed("hover",!0)}).on("mouseout",o=>{r.transition().duration(500).style("opacity",0),gn(o.currentTarget).classed("hover",!1)})},"setupToolTips"),this.direction="TB",this.setAccTitle=N1,this.getAccTitle=Mp,this.setAccDescription=Pp,this.getAccDescription=Bp,this.setDiagramTitle=Og,this.getDiagramTitle=P1,this.getConfig=X(()=>nn().class,"getConfig"),this.functions.push(this.setupToolTips.bind(this)),this.clear(),this.addRelation=this.addRelation.bind(this),this.addClassesToNamespace=this.addClassesToNamespace.bind(this),this.addNamespace=this.addNamespace.bind(this),this.setCssClass=this.setCssClass.bind(this),this.addMembers=this.addMembers.bind(this),this.addClass=this.addClass.bind(this),this.setClassLabel=this.setClassLabel.bind(this),this.addAnnotation=this.addAnnotation.bind(this),this.addMember=this.addMember.bind(this),this.cleanupLabel=this.cleanupLabel.bind(this),this.addNote=this.addNote.bind(this),this.defineClass=this.defineClass.bind(this),this.setDirection=this.setDirection.bind(this),this.setLink=this.setLink.bind(this),this.bindFunctions=this.bindFunctions.bind(this),this.clear=this.clear.bind(this),this.setTooltip=this.setTooltip.bind(this),this.setClickEvent=this.setClickEvent.bind(this),this.setCssStyle=this.setCssStyle.bind(this)}splitClassNameAndType(t){const r=Ti.sanitizeText(t,nn());let a="",s=r;if(r.indexOf("~")>0){const o=r.split("~");s=EB(o[0]),a=EB(o[1])}return{className:s,type:a}}setClassLabel(t,r){const a=Ti.sanitizeText(t,nn());r&&(r=EB(r));const{className:s}=this.splitClassNameAndType(a);this.classes.get(s).label=r,this.classes.get(s).text=`${r}${this.classes.get(s).type?`<${this.classes.get(s).type}>`:""}`}addClass(t){const r=Ti.sanitizeText(t,nn()),{className:a,type:s}=this.splitClassNameAndType(r);if(this.classes.has(a))return;const o=Ti.sanitizeText(a,nn());this.classes.set(o,{id:o,type:s,label:o,text:`${o}${s?`<${s}>`:""}`,shape:"classBox",cssClasses:"default",methods:[],members:[],annotations:[],styles:[],domId:hEe+o+"-"+lTn}),lTn++}addInterface(t,r){const a={id:`interface${this.interfaces.length}`,label:t,classId:r};this.interfaces.push(a)}lookUpDomId(t){const r=Ti.sanitizeText(t,nn());if(this.classes.has(r))return this.classes.get(r).domId;throw new Error("Class not found: "+r)}clear(){this.relations=[],this.classes=new Map,this.notes=[],this.interfaces=[],this.functions=[],this.functions.push(this.setupToolTips.bind(this)),this.namespaces=new Map,this.namespaceCounter=0,this.direction="TB",M1()}getClass(t){return this.classes.get(t)}getClasses(){return this.classes}getRelations(){return this.relations}getNotes(){return this.notes}addRelation(t){it.debug("Adding relation: "+JSON.stringify(t));const r=[this.relationType.LOLLIPOP,this.relationType.AGGREGATION,this.relationType.COMPOSITION,this.relationType.DEPENDENCY,this.relationType.EXTENSION];t.relation.type1===this.relationType.LOLLIPOP&&!r.includes(t.relation.type2)?(this.addClass(t.id2),this.addInterface(t.id1,t.id2),t.id1=`interface${this.interfaces.length-1}`):t.relation.type2===this.relationType.LOLLIPOP&&!r.includes(t.relation.type1)?(this.addClass(t.id1),this.addInterface(t.id2,t.id1),t.id2=`interface${this.interfaces.length-1}`):(this.addClass(t.id1),this.addClass(t.id2)),t.id1=this.splitClassNameAndType(t.id1).className,t.id2=this.splitClassNameAndType(t.id2).className,t.relationTitle1=Ti.sanitizeText(t.relationTitle1.trim(),nn()),t.relationTitle2=Ti.sanitizeText(t.relationTitle2.trim(),nn()),this.relations.push(t)}addAnnotation(t,r){const a=this.splitClassNameAndType(t).className;this.classes.get(a).annotations.push(r)}addMember(t,r){this.addClass(t);const a=this.splitClassNameAndType(t).className,s=this.classes.get(a);if(typeof r=="string"){const o=r.trim();o.startsWith("<<")&&o.endsWith(">>")?s.annotations.push(EB(o.substring(2,o.length-2))):o.indexOf(")")>0?s.methods.push(new oTn(o,"method")):o&&s.members.push(new oTn(o,"attribute"))}}addMembers(t,r){Array.isArray(r)&&(r.reverse(),r.forEach(a=>this.addMember(t,a)))}addNote(t,r){const a={id:`note${this.notes.length}`,class:r,text:t};this.notes.push(a)}cleanupLabel(t){return t.startsWith(":")&&(t=t.substring(1)),EB(t.trim())}setCssClass(t,r){t.split(",").forEach(a=>{let s=a;/\d/.exec(a[0])&&(s=hEe+s);const o=this.classes.get(s);o&&(o.cssClasses+=" "+r)})}defineClass(t,r){for(const a of t){let s=this.styleClasses.get(a);s===void 0&&(s={id:a,styles:[],textStyles:[]},this.styleClasses.set(a,s)),r&&r.forEach(o=>{if(/color/.exec(o)){const u=o.replace("fill","bgFill");s.textStyles.push(u)}s.styles.push(o)}),this.classes.forEach(o=>{o.cssClasses.includes(a)&&o.styles.push(...r.flatMap(u=>u.split(",")))})}}setTooltip(t,r){t.split(",").forEach(a=>{r!==void 0&&(this.classes.get(a).tooltip=EB(r))})}getTooltip(t,r){return r&&this.namespaces.has(r)?this.namespaces.get(r).classes.get(t).tooltip:this.classes.get(t).tooltip}setLink(t,r,a){const s=nn();t.split(",").forEach(o=>{let u=o;/\d/.exec(o[0])&&(u=hEe+u);const h=this.classes.get(u);h&&(h.link=Vo.formatUrl(r,s),s.securityLevel==="sandbox"?h.linkTarget="_top":typeof a=="string"?h.linkTarget=EB(a):h.linkTarget="_blank")}),this.setCssClass(t,"clickable")}setClickEvent(t,r,a){t.split(",").forEach(s=>{this.setClickFunc(s,r,a),this.classes.get(s).haveCallback=!0}),this.setCssClass(t,"clickable")}setClickFunc(t,r,a){const s=Ti.sanitizeText(t,nn());if(nn().securityLevel!=="loose"||r===void 0)return;const u=s;if(this.classes.has(u)){const h=this.lookUpDomId(u);let f=[];if(typeof a=="string"){f=a.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let p=0;p{const p=document.querySelector(`[id="${h}"]`);p!==null&&p.addEventListener("click",()=>{Vo.runFunc(r,...f)},!1)})}}bindFunctions(t){this.functions.forEach(r=>{r(t)})}getDirection(){return this.direction}setDirection(t){this.direction=t}addNamespace(t){this.namespaces.has(t)||(this.namespaces.set(t,{id:t,classes:new Map,children:{},domId:hEe+t+"-"+this.namespaceCounter}),this.namespaceCounter++)}getNamespace(t){return this.namespaces.get(t)}getNamespaces(){return this.namespaces}addClassesToNamespace(t,r){if(this.namespaces.has(t))for(const a of r){const{className:s}=this.splitClassNameAndType(a);this.classes.get(s).parent=t,this.namespaces.get(t).classes.set(s,this.classes.get(s))}}setCssStyle(t,r){const a=this.classes.get(t);if(!(!r||!a))for(const s of r)s.includes(",")?a.styles.push(...s.split(",")):a.styles.push(s)}getArrowMarker(t){let r;switch(t){case 0:r="aggregation";break;case 1:r="extension";break;case 2:r="composition";break;case 3:r="dependency";break;case 4:r="lollipop";break;default:r="none"}return r}getData(){var o;const t=[],r=[],a=nn();for(const u of this.namespaces.keys()){const h=this.namespaces.get(u);if(h){const f={id:h.id,label:h.id,isGroup:!0,padding:a.class.padding??16,shape:"rect",cssStyles:["fill: none","stroke: black"],look:a.look};t.push(f)}}for(const u of this.classes.keys()){const h=this.classes.get(u);if(h){const f=h;f.parentId=h.parent,f.look=a.look,t.push(f)}}let s=0;for(const u of this.notes){s++;const h={id:u.id,label:u.text,isGroup:!1,shape:"note",padding:a.class.padding??6,cssStyles:["text-align: left","white-space: nowrap",`fill: ${a.themeVariables.noteBkgColor}`,`stroke: ${a.themeVariables.noteBorderColor}`],look:a.look};t.push(h);const f=((o=this.classes.get(u.class))==null?void 0:o.id)??"";if(f){const p={id:`edgeNote${s}`,start:u.id,end:f,type:"normal",thickness:"normal",classes:"relation",arrowTypeStart:"none",arrowTypeEnd:"none",arrowheadStyle:"",labelStyle:[""],style:["fill: none"],pattern:"dotted",look:a.look};r.push(p)}}for(const u of this.interfaces){const h={id:u.id,label:u.label,isGroup:!1,shape:"rect",cssStyles:["opacity: 0;"],look:a.look};t.push(h)}s=0;for(const u of this.relations){s++;const h={id:XV(u.id1,u.id2,{prefix:"id",counter:s}),start:u.id1,end:u.id2,type:"normal",label:u.title,labelpos:"c",thickness:"normal",classes:"relation",arrowTypeStart:this.getArrowMarker(u.relation.type1),arrowTypeEnd:this.getArrowMarker(u.relation.type2),startLabelRight:u.relationTitle1==="none"?"":u.relationTitle1,endLabelLeft:u.relationTitle2==="none"?"":u.relationTitle2,arrowheadStyle:"",labelStyle:["display: inline-block"],style:u.style||"",pattern:u.relation.lineType==1?"dashed":"solid",look:a.look};r.push(h)}return{nodes:t,edges:r,other:{},config:a,direction:this.getDirection()}}},X(aj,"ClassDB"),aj),aKi=X(e=>`g.classGroup text { + fill: ${e.nodeBorder||e.classText}; + stroke: none; + font-family: ${e.fontFamily}; + font-size: 10px; + + .title { + font-weight: bolder; + } + +} + +.nodeLabel, .edgeLabel { + color: ${e.classText}; +} +.edgeLabel .label rect { + fill: ${e.mainBkg}; +} +.label text { + fill: ${e.classText}; +} + +.labelBkg { + background: ${e.mainBkg}; +} +.edgeLabel .label span { + background: ${e.mainBkg}; +} + +.classTitle { + font-weight: bolder; +} +.node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + + +.divider { + stroke: ${e.nodeBorder}; + stroke-width: 1; +} + +g.clickable { + cursor: pointer; +} + +g.classGroup rect { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; +} + +g.classGroup line { + stroke: ${e.nodeBorder}; + stroke-width: 1; +} + +.classLabel .box { + stroke: none; + stroke-width: 0; + fill: ${e.mainBkg}; + opacity: 0.5; +} + +.classLabel .label { + fill: ${e.nodeBorder}; + font-size: 10px; +} + +.relation { + stroke: ${e.lineColor}; + stroke-width: 1; + fill: none; +} + +.dashed-line{ + stroke-dasharray: 3; +} + +.dotted-line{ + stroke-dasharray: 1 2; +} + +#compositionStart, .composition { + fill: ${e.lineColor} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#compositionEnd, .composition { + fill: ${e.lineColor} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#dependencyStart, .dependency { + fill: ${e.lineColor} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#dependencyStart, .dependency { + fill: ${e.lineColor} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#extensionStart, .extension { + fill: transparent !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#extensionEnd, .extension { + fill: transparent !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#aggregationStart, .aggregation { + fill: transparent !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#aggregationEnd, .aggregation { + fill: transparent !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#lollipopStart, .lollipop { + fill: ${e.mainBkg} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#lollipopEnd, .lollipop { + fill: ${e.mainBkg} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +.edgeTerminals { + font-size: 11px; + line-height: initial; +} + +.classTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; +} + ${Lce()} +`,"getStyles"),JKn=aKi,sKi=X((e,t="TB")=>{if(!e.doc)return t;let r=t;for(const a of e.doc)a.stmt==="dir"&&(r=a.value);return r},"getDir"),oKi=X(function(e,t){return t.db.getClasses()},"getClasses"),lKi=X(async function(e,t,r,a){it.info("REF0:"),it.info("Drawing class diagram (v3)",t);const{securityLevel:s,state:o,layout:u}=nn(),h=a.db.getData(),f=eK(t,s);h.type=a.type,h.layoutAlgorithm=hce(u),h.nodeSpacing=(o==null?void 0:o.nodeSpacing)||50,h.rankSpacing=(o==null?void 0:o.rankSpacing)||50,h.markers=["aggregation","extension","composition","dependency","lollipop"],h.diagramId=t,await $W(h,f);const p=8;Vo.insertTitle(f,"classDiagramTitleText",(o==null?void 0:o.titleTopMargin)??25,a.db.getDiagramTitle()),U$(f,p,"classDiagram",(o==null?void 0:o.useMaxWidth)??!0)},"draw"),eXn={getClasses:oKi,draw:lKi,getDir:sKi},cKi={parser:QKn,get db(){return new ZKn},renderer:eXn,styles:JKn,init:X(e=>{e.class||(e.class={}),e.class.arrowMarkerAbsolute=e.arrowMarkerAbsolute},"init")};const uKi=Object.freeze(Object.defineProperty({__proto__:null,diagram:cKi},Symbol.toStringTag,{value:"Module"}));var hKi={parser:QKn,get db(){return new ZKn},renderer:eXn,styles:JKn,init:X(e=>{e.class||(e.class={}),e.class.arrowMarkerAbsolute=e.arrowMarkerAbsolute},"init")};const dKi=Object.freeze(Object.defineProperty({__proto__:null,diagram:hKi},Symbol.toStringTag,{value:"Module"}));var Nut=function(){var e=X(function(ee,te,ne,se){for(ne=ne||{},se=ee.length;se--;ne[ee[se]]=te);return ne},"o"),t=[1,2],r=[1,3],a=[1,4],s=[2,4],o=[1,9],u=[1,11],h=[1,16],f=[1,17],p=[1,18],m=[1,19],b=[1,33],_=[1,20],w=[1,21],S=[1,22],C=[1,23],A=[1,24],k=[1,26],I=[1,27],N=[1,28],L=[1,29],P=[1,30],M=[1,31],F=[1,32],U=[1,35],$=[1,36],G=[1,37],B=[1,38],Z=[1,34],z=[1,4,5,16,17,19,21,22,24,25,26,27,28,29,33,35,37,38,41,45,48,51,52,53,54,57],Y=[1,4,5,14,15,16,17,19,21,22,24,25,26,27,28,29,33,35,37,38,39,40,41,45,48,51,52,53,54,57],W=[4,5,16,17,19,21,22,24,25,26,27,28,29,33,35,37,38,41,45,48,51,52,53,54,57],Q={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,SPACE:4,NL:5,SD:6,document:7,line:8,statement:9,classDefStatement:10,styleStatement:11,cssClassStatement:12,idStatement:13,DESCR:14,"-->":15,HIDE_EMPTY:16,scale:17,WIDTH:18,COMPOSIT_STATE:19,STRUCT_START:20,STRUCT_STOP:21,STATE_DESCR:22,AS:23,ID:24,FORK:25,JOIN:26,CHOICE:27,CONCURRENT:28,note:29,notePosition:30,NOTE_TEXT:31,direction:32,acc_title:33,acc_title_value:34,acc_descr:35,acc_descr_value:36,acc_descr_multiline_value:37,CLICK:38,STRING:39,HREF:40,classDef:41,CLASSDEF_ID:42,CLASSDEF_STYLEOPTS:43,DEFAULT:44,style:45,STYLE_IDS:46,STYLEDEF_STYLEOPTS:47,class:48,CLASSENTITY_IDS:49,STYLECLASS:50,direction_tb:51,direction_bt:52,direction_rl:53,direction_lr:54,eol:55,";":56,EDGE_STATE:57,STYLE_SEPARATOR:58,left_of:59,right_of:60,$accept:0,$end:1},terminals_:{2:"error",4:"SPACE",5:"NL",6:"SD",14:"DESCR",15:"-->",16:"HIDE_EMPTY",17:"scale",18:"WIDTH",19:"COMPOSIT_STATE",20:"STRUCT_START",21:"STRUCT_STOP",22:"STATE_DESCR",23:"AS",24:"ID",25:"FORK",26:"JOIN",27:"CHOICE",28:"CONCURRENT",29:"note",31:"NOTE_TEXT",33:"acc_title",34:"acc_title_value",35:"acc_descr",36:"acc_descr_value",37:"acc_descr_multiline_value",38:"CLICK",39:"STRING",40:"HREF",41:"classDef",42:"CLASSDEF_ID",43:"CLASSDEF_STYLEOPTS",44:"DEFAULT",45:"style",46:"STYLE_IDS",47:"STYLEDEF_STYLEOPTS",48:"class",49:"CLASSENTITY_IDS",50:"STYLECLASS",51:"direction_tb",52:"direction_bt",53:"direction_rl",54:"direction_lr",56:";",57:"EDGE_STATE",58:"STYLE_SEPARATOR",59:"left_of",60:"right_of"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[8,1],[8,1],[9,1],[9,1],[9,1],[9,1],[9,2],[9,3],[9,4],[9,1],[9,2],[9,1],[9,4],[9,3],[9,6],[9,1],[9,1],[9,1],[9,1],[9,4],[9,4],[9,1],[9,2],[9,2],[9,1],[9,5],[9,5],[10,3],[10,3],[11,3],[12,3],[32,1],[32,1],[32,1],[32,1],[55,1],[55,1],[13,1],[13,1],[13,3],[13,3],[30,1],[30,1]],performAction:X(function(te,ne,se,ie,ge,ce,be){var ve=ce.length-1;switch(ge){case 3:return ie.setRootDoc(ce[ve]),ce[ve];case 4:this.$=[];break;case 5:ce[ve]!="nl"&&(ce[ve-1].push(ce[ve]),this.$=ce[ve-1]);break;case 6:case 7:this.$=ce[ve];break;case 8:this.$="nl";break;case 12:this.$=ce[ve];break;case 13:const he=ce[ve-1];he.description=ie.trimColon(ce[ve]),this.$=he;break;case 14:this.$={stmt:"relation",state1:ce[ve-2],state2:ce[ve]};break;case 15:const we=ie.trimColon(ce[ve]);this.$={stmt:"relation",state1:ce[ve-3],state2:ce[ve-1],description:we};break;case 19:this.$={stmt:"state",id:ce[ve-3],type:"default",description:"",doc:ce[ve-1]};break;case 20:var De=ce[ve],ye=ce[ve-2].trim();if(ce[ve].match(":")){var Ee=ce[ve].split(":");De=Ee[0],ye=[ye,Ee[1]]}this.$={stmt:"state",id:De,type:"default",description:ye};break;case 21:this.$={stmt:"state",id:ce[ve-3],type:"default",description:ce[ve-5],doc:ce[ve-1]};break;case 22:this.$={stmt:"state",id:ce[ve],type:"fork"};break;case 23:this.$={stmt:"state",id:ce[ve],type:"join"};break;case 24:this.$={stmt:"state",id:ce[ve],type:"choice"};break;case 25:this.$={stmt:"state",id:ie.getDividerId(),type:"divider"};break;case 26:this.$={stmt:"state",id:ce[ve-1].trim(),note:{position:ce[ve-2].trim(),text:ce[ve].trim()}};break;case 29:this.$=ce[ve].trim(),ie.setAccTitle(this.$);break;case 30:case 31:this.$=ce[ve].trim(),ie.setAccDescription(this.$);break;case 32:this.$={stmt:"click",id:ce[ve-3],url:ce[ve-2],tooltip:ce[ve-1]};break;case 33:this.$={stmt:"click",id:ce[ve-3],url:ce[ve-1],tooltip:""};break;case 34:case 35:this.$={stmt:"classDef",id:ce[ve-1].trim(),classes:ce[ve].trim()};break;case 36:this.$={stmt:"style",id:ce[ve-1].trim(),styleClass:ce[ve].trim()};break;case 37:this.$={stmt:"applyClass",id:ce[ve-1].trim(),styleClass:ce[ve].trim()};break;case 38:ie.setDirection("TB"),this.$={stmt:"dir",value:"TB"};break;case 39:ie.setDirection("BT"),this.$={stmt:"dir",value:"BT"};break;case 40:ie.setDirection("RL"),this.$={stmt:"dir",value:"RL"};break;case 41:ie.setDirection("LR"),this.$={stmt:"dir",value:"LR"};break;case 44:case 45:this.$={stmt:"state",id:ce[ve].trim(),type:"default",description:""};break;case 46:this.$={stmt:"state",id:ce[ve-2].trim(),classes:[ce[ve].trim()],type:"default",description:""};break;case 47:this.$={stmt:"state",id:ce[ve-2].trim(),classes:[ce[ve].trim()],type:"default",description:""};break}},"anonymous"),table:[{3:1,4:t,5:r,6:a},{1:[3]},{3:5,4:t,5:r,6:a},{3:6,4:t,5:r,6:a},e([1,4,5,16,17,19,22,24,25,26,27,28,29,33,35,37,38,41,45,48,51,52,53,54,57],s,{7:7}),{1:[2,1]},{1:[2,2]},{1:[2,3],4:o,5:u,8:8,9:10,10:12,11:13,12:14,13:15,16:h,17:f,19:p,22:m,24:b,25:_,26:w,27:S,28:C,29:A,32:25,33:k,35:I,37:N,38:L,41:P,45:M,48:F,51:U,52:$,53:G,54:B,57:Z},e(z,[2,5]),{9:39,10:12,11:13,12:14,13:15,16:h,17:f,19:p,22:m,24:b,25:_,26:w,27:S,28:C,29:A,32:25,33:k,35:I,37:N,38:L,41:P,45:M,48:F,51:U,52:$,53:G,54:B,57:Z},e(z,[2,7]),e(z,[2,8]),e(z,[2,9]),e(z,[2,10]),e(z,[2,11]),e(z,[2,12],{14:[1,40],15:[1,41]}),e(z,[2,16]),{18:[1,42]},e(z,[2,18],{20:[1,43]}),{23:[1,44]},e(z,[2,22]),e(z,[2,23]),e(z,[2,24]),e(z,[2,25]),{30:45,31:[1,46],59:[1,47],60:[1,48]},e(z,[2,28]),{34:[1,49]},{36:[1,50]},e(z,[2,31]),{13:51,24:b,57:Z},{42:[1,52],44:[1,53]},{46:[1,54]},{49:[1,55]},e(Y,[2,44],{58:[1,56]}),e(Y,[2,45],{58:[1,57]}),e(z,[2,38]),e(z,[2,39]),e(z,[2,40]),e(z,[2,41]),e(z,[2,6]),e(z,[2,13]),{13:58,24:b,57:Z},e(z,[2,17]),e(W,s,{7:59}),{24:[1,60]},{24:[1,61]},{23:[1,62]},{24:[2,48]},{24:[2,49]},e(z,[2,29]),e(z,[2,30]),{39:[1,63],40:[1,64]},{43:[1,65]},{43:[1,66]},{47:[1,67]},{50:[1,68]},{24:[1,69]},{24:[1,70]},e(z,[2,14],{14:[1,71]}),{4:o,5:u,8:8,9:10,10:12,11:13,12:14,13:15,16:h,17:f,19:p,21:[1,72],22:m,24:b,25:_,26:w,27:S,28:C,29:A,32:25,33:k,35:I,37:N,38:L,41:P,45:M,48:F,51:U,52:$,53:G,54:B,57:Z},e(z,[2,20],{20:[1,73]}),{31:[1,74]},{24:[1,75]},{39:[1,76]},{39:[1,77]},e(z,[2,34]),e(z,[2,35]),e(z,[2,36]),e(z,[2,37]),e(Y,[2,46]),e(Y,[2,47]),e(z,[2,15]),e(z,[2,19]),e(W,s,{7:78}),e(z,[2,26]),e(z,[2,27]),{5:[1,79]},{5:[1,80]},{4:o,5:u,8:8,9:10,10:12,11:13,12:14,13:15,16:h,17:f,19:p,21:[1,81],22:m,24:b,25:_,26:w,27:S,28:C,29:A,32:25,33:k,35:I,37:N,38:L,41:P,45:M,48:F,51:U,52:$,53:G,54:B,57:Z},e(z,[2,32]),e(z,[2,33]),e(z,[2,21])],defaultActions:{5:[2,1],6:[2,2],47:[2,48],48:[2,49]},parseError:X(function(te,ne){if(ne.recoverable)this.trace(te);else{var se=new Error(te);throw se.hash=ne,se}},"parseError"),parse:X(function(te){var ne=this,se=[0],ie=[],ge=[null],ce=[],be=this.table,ve="",De=0,ye=0,Ee=2,he=1,we=ce.slice.call(arguments,1),Ce=Object.create(this.lexer),Ie={yy:{}};for(var Le in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Le)&&(Ie.yy[Le]=this.yy[Le]);Ce.setInput(te,Ie.yy),Ie.yy.lexer=Ce,Ie.yy.parser=this,typeof Ce.yylloc>"u"&&(Ce.yylloc={});var Fe=Ce.yylloc;ce.push(Fe);var Ve=Ce.options&&Ce.options.ranges;typeof Ie.yy.parseError=="function"?this.parseError=Ie.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Oe(Ye){se.length=se.length-2*Ye,ge.length=ge.length-Ye,ce.length=ce.length-Ye}X(Oe,"popStack");function Dt(){var Ye;return Ye=ie.pop()||Ce.lex()||he,typeof Ye!="number"&&(Ye instanceof Array&&(ie=Ye,Ye=ie.pop()),Ye=ne.symbols_[Ye]||Ye),Ye}X(Dt,"lex");for(var ot,sn,Kt,Ft,Je={},ht,et,qe,He;;){if(sn=se[se.length-1],this.defaultActions[sn]?Kt=this.defaultActions[sn]:((ot===null||typeof ot>"u")&&(ot=Dt()),Kt=be[sn]&&be[sn][ot]),typeof Kt>"u"||!Kt.length||!Kt[0]){var Ge="";He=[];for(ht in be[sn])this.terminals_[ht]&&ht>Ee&&He.push("'"+this.terminals_[ht]+"'");Ce.showPosition?Ge="Parse error on line "+(De+1)+`: +`+Ce.showPosition()+` +Expecting `+He.join(", ")+", got '"+(this.terminals_[ot]||ot)+"'":Ge="Parse error on line "+(De+1)+": Unexpected "+(ot==he?"end of input":"'"+(this.terminals_[ot]||ot)+"'"),this.parseError(Ge,{text:Ce.match,token:this.terminals_[ot]||ot,line:Ce.yylineno,loc:Fe,expected:He})}if(Kt[0]instanceof Array&&Kt.length>1)throw new Error("Parse Error: multiple actions possible at state: "+sn+", token: "+ot);switch(Kt[0]){case 1:se.push(ot),ge.push(Ce.yytext),ce.push(Ce.yylloc),se.push(Kt[1]),ot=null,ye=Ce.yyleng,ve=Ce.yytext,De=Ce.yylineno,Fe=Ce.yylloc;break;case 2:if(et=this.productions_[Kt[1]][1],Je.$=ge[ge.length-et],Je._$={first_line:ce[ce.length-(et||1)].first_line,last_line:ce[ce.length-1].last_line,first_column:ce[ce.length-(et||1)].first_column,last_column:ce[ce.length-1].last_column},Ve&&(Je._$.range=[ce[ce.length-(et||1)].range[0],ce[ce.length-1].range[1]]),Ft=this.performAction.apply(Je,[ve,ye,De,Ie.yy,Kt[1],ge,ce].concat(we)),typeof Ft<"u")return Ft;et&&(se=se.slice(0,-1*et*2),ge=ge.slice(0,-1*et),ce=ce.slice(0,-1*et)),se.push(this.productions_[Kt[1]][0]),ge.push(Je.$),ce.push(Je._$),qe=be[se[se.length-2]][se[se.length-1]],se.push(qe);break;case 3:return!0}}return!0},"parse")},V=function(){var ee={EOF:1,parseError:X(function(ne,se){if(this.yy.parser)this.yy.parser.parseError(ne,se);else throw new Error(ne)},"parseError"),setInput:X(function(te,ne){return this.yy=ne||this.yy||{},this._input=te,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var te=this._input[0];this.yytext+=te,this.yyleng++,this.offset++,this.match+=te,this.matched+=te;var ne=te.match(/(?:\r\n?|\n).*/g);return ne?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),te},"input"),unput:X(function(te){var ne=te.length,se=te.split(/(?:\r\n?|\n)/g);this._input=te+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-ne),this.offset-=ne;var ie=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),se.length-1&&(this.yylineno-=se.length-1);var ge=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:se?(se.length===ie.length?this.yylloc.first_column:0)+ie[ie.length-se.length].length-se[0].length:this.yylloc.first_column-ne},this.options.ranges&&(this.yylloc.range=[ge[0],ge[0]+this.yyleng-ne]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(te){this.unput(this.match.slice(te))},"less"),pastInput:X(function(){var te=this.matched.substr(0,this.matched.length-this.match.length);return(te.length>20?"...":"")+te.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var te=this.match;return te.length<20&&(te+=this._input.substr(0,20-te.length)),(te.substr(0,20)+(te.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var te=this.pastInput(),ne=new Array(te.length+1).join("-");return te+this.upcomingInput()+` +`+ne+"^"},"showPosition"),test_match:X(function(te,ne){var se,ie,ge;if(this.options.backtrack_lexer&&(ge={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(ge.yylloc.range=this.yylloc.range.slice(0))),ie=te[0].match(/(?:\r\n?|\n).*/g),ie&&(this.yylineno+=ie.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:ie?ie[ie.length-1].length-ie[ie.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+te[0].length},this.yytext+=te[0],this.match+=te[0],this.matches=te,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(te[0].length),this.matched+=te[0],se=this.performAction.call(this,this.yy,this,ne,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),se)return se;if(this._backtrack){for(var ce in ge)this[ce]=ge[ce];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var te,ne,se,ie;this._more||(this.yytext="",this.match="");for(var ge=this._currentRules(),ce=0;cene[0].length)){if(ne=se,ie=ce,this.options.backtrack_lexer){if(te=this.test_match(se,ge[ce]),te!==!1)return te;if(this._backtrack){ne=!1;continue}else return!1}else if(!this.options.flex)break}return ne?(te=this.test_match(ne,ge[ie]),te!==!1?te:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var ne=this.next();return ne||this.lex()},"lex"),begin:X(function(ne){this.conditionStack.push(ne)},"begin"),popState:X(function(){var ne=this.conditionStack.length-1;return ne>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(ne){return ne=this.conditionStack.length-1-Math.abs(ne||0),ne>=0?this.conditionStack[ne]:"INITIAL"},"topState"),pushState:X(function(ne){this.begin(ne)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(ne,se,ie,ge){switch(ie){case 0:return 38;case 1:return 40;case 2:return 39;case 3:return 44;case 4:return 51;case 5:return 52;case 6:return 53;case 7:return 54;case 8:break;case 9:break;case 10:return 5;case 11:break;case 12:break;case 13:break;case 14:break;case 15:return this.pushState("SCALE"),17;case 16:return 18;case 17:this.popState();break;case 18:return this.begin("acc_title"),33;case 19:return this.popState(),"acc_title_value";case 20:return this.begin("acc_descr"),35;case 21:return this.popState(),"acc_descr_value";case 22:this.begin("acc_descr_multiline");break;case 23:this.popState();break;case 24:return"acc_descr_multiline_value";case 25:return this.pushState("CLASSDEF"),41;case 26:return this.popState(),this.pushState("CLASSDEFID"),"DEFAULT_CLASSDEF_ID";case 27:return this.popState(),this.pushState("CLASSDEFID"),42;case 28:return this.popState(),43;case 29:return this.pushState("CLASS"),48;case 30:return this.popState(),this.pushState("CLASS_STYLE"),49;case 31:return this.popState(),50;case 32:return this.pushState("STYLE"),45;case 33:return this.popState(),this.pushState("STYLEDEF_STYLES"),46;case 34:return this.popState(),47;case 35:return this.pushState("SCALE"),17;case 36:return 18;case 37:this.popState();break;case 38:this.pushState("STATE");break;case 39:return this.popState(),se.yytext=se.yytext.slice(0,-8).trim(),25;case 40:return this.popState(),se.yytext=se.yytext.slice(0,-8).trim(),26;case 41:return this.popState(),se.yytext=se.yytext.slice(0,-10).trim(),27;case 42:return this.popState(),se.yytext=se.yytext.slice(0,-8).trim(),25;case 43:return this.popState(),se.yytext=se.yytext.slice(0,-8).trim(),26;case 44:return this.popState(),se.yytext=se.yytext.slice(0,-10).trim(),27;case 45:return 51;case 46:return 52;case 47:return 53;case 48:return 54;case 49:this.pushState("STATE_STRING");break;case 50:return this.pushState("STATE_ID"),"AS";case 51:return this.popState(),"ID";case 52:this.popState();break;case 53:return"STATE_DESCR";case 54:return 19;case 55:this.popState();break;case 56:return this.popState(),this.pushState("struct"),20;case 57:break;case 58:return this.popState(),21;case 59:break;case 60:return this.begin("NOTE"),29;case 61:return this.popState(),this.pushState("NOTE_ID"),59;case 62:return this.popState(),this.pushState("NOTE_ID"),60;case 63:this.popState(),this.pushState("FLOATING_NOTE");break;case 64:return this.popState(),this.pushState("FLOATING_NOTE_ID"),"AS";case 65:break;case 66:return"NOTE_TEXT";case 67:return this.popState(),"ID";case 68:return this.popState(),this.pushState("NOTE_TEXT"),24;case 69:return this.popState(),se.yytext=se.yytext.substr(2).trim(),31;case 70:return this.popState(),se.yytext=se.yytext.slice(0,-8).trim(),31;case 71:return 6;case 72:return 6;case 73:return 16;case 74:return 57;case 75:return 24;case 76:return se.yytext=se.yytext.trim(),14;case 77:return 15;case 78:return 28;case 79:return 58;case 80:return 5;case 81:return"INVALID"}},"anonymous"),rules:[/^(?:click\b)/i,/^(?:href\b)/i,/^(?:"[^"]*")/i,/^(?:default\b)/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:[\s]+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:classDef\s+)/i,/^(?:DEFAULT\s+)/i,/^(?:\w+\s+)/i,/^(?:[^\n]*)/i,/^(?:class\s+)/i,/^(?:(\w+)+((,\s*\w+)*))/i,/^(?:[^\n]*)/i,/^(?:style\s+)/i,/^(?:[\w,]+\s+)/i,/^(?:[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:state\s+)/i,/^(?:.*<>)/i,/^(?:.*<>)/i,/^(?:.*<>)/i,/^(?:.*\[\[fork\]\])/i,/^(?:.*\[\[join\]\])/i,/^(?:.*\[\[choice\]\])/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:["])/i,/^(?:\s*as\s+)/i,/^(?:[^\n\{]*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n\s\{]+)/i,/^(?:\n)/i,/^(?:\{)/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:\})/i,/^(?:[\n])/i,/^(?:note\s+)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:")/i,/^(?:\s*as\s*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n]*)/i,/^(?:\s*[^:\n\s\-]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:[\s\S]*?end note\b)/i,/^(?:stateDiagram\s+)/i,/^(?:stateDiagram-v2\s+)/i,/^(?:hide empty description\b)/i,/^(?:\[\*\])/i,/^(?:[^:\n\s\-\{]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:-->)/i,/^(?:--)/i,/^(?::::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{LINE:{rules:[12,13],inclusive:!1},struct:{rules:[12,13,25,29,32,38,45,46,47,48,57,58,59,60,74,75,76,77,78],inclusive:!1},FLOATING_NOTE_ID:{rules:[67],inclusive:!1},FLOATING_NOTE:{rules:[64,65,66],inclusive:!1},NOTE_TEXT:{rules:[69,70],inclusive:!1},NOTE_ID:{rules:[68],inclusive:!1},NOTE:{rules:[61,62,63],inclusive:!1},STYLEDEF_STYLEOPTS:{rules:[],inclusive:!1},STYLEDEF_STYLES:{rules:[34],inclusive:!1},STYLE_IDS:{rules:[],inclusive:!1},STYLE:{rules:[33],inclusive:!1},CLASS_STYLE:{rules:[31],inclusive:!1},CLASS:{rules:[30],inclusive:!1},CLASSDEFID:{rules:[28],inclusive:!1},CLASSDEF:{rules:[26,27],inclusive:!1},acc_descr_multiline:{rules:[23,24],inclusive:!1},acc_descr:{rules:[21],inclusive:!1},acc_title:{rules:[19],inclusive:!1},SCALE:{rules:[16,17,36,37],inclusive:!1},ALIAS:{rules:[],inclusive:!1},STATE_ID:{rules:[51],inclusive:!1},STATE_STRING:{rules:[52,53],inclusive:!1},FORK_STATE:{rules:[],inclusive:!1},STATE:{rules:[12,13,39,40,41,42,43,44,49,50,54,55,56],inclusive:!1},ID:{rules:[12,13],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,13,14,15,18,20,22,25,29,32,35,38,56,60,71,72,73,74,75,76,77,79,80,81],inclusive:!0}}};return ee}();Q.lexer=V;function j(){this.yy={}}return X(j,"Parser"),j.prototype=Q,Q.Parser=j,new j}();Nut.parser=Nut;var tXn=Nut,fKi="TB",nXn="TB",cTn="dir",yV="state",tV="root",Out="relation",pKi="classDef",gKi="style",mKi="applyClass",Rse="default",rXn="divider",iXn="fill:none",aXn="fill: #333",sXn="c",oXn="text",lXn="normal",Zit="rect",Jit="rectWithTitle",bKi="stateStart",yKi="stateEnd",uTn="divider",hTn="roundedWithTitle",vKi="note",_Ki="noteGroup",Kce="statediagram",wKi="state",EKi=`${Kce}-${wKi}`,cXn="transition",xKi="note",SKi="note-edge",TKi=`${cXn} ${SKi}`,CKi=`${Kce}-${xKi}`,AKi="cluster",kKi=`${Kce}-${AKi}`,RKi="cluster-alt",IKi=`${Kce}-${RKi}`,uXn="parent",hXn="note",NKi="state",Jmt="----",OKi=`${Jmt}${hXn}`,dTn=`${Jmt}${uXn}`,dXn=X((e,t=nXn)=>{if(!e.doc)return t;let r=t;for(const a of e.doc)a.stmt==="dir"&&(r=a.value);return r},"getDir"),LKi=X(function(e,t){return t.db.getClasses()},"getClasses"),DKi=X(async function(e,t,r,a){it.info("REF0:"),it.info("Drawing state diagram (v2)",t);const{securityLevel:s,state:o,layout:u}=nn();a.db.extract(a.db.getRootDocV2());const h=a.db.getData(),f=eK(t,s);h.type=a.type,h.layoutAlgorithm=u,h.nodeSpacing=(o==null?void 0:o.nodeSpacing)||50,h.rankSpacing=(o==null?void 0:o.rankSpacing)||50,h.markers=["barb"],h.diagramId=t,await $W(h,f);const p=8;try{(typeof a.db.getLinks=="function"?a.db.getLinks():new Map).forEach((b,_)=>{var N;const w=typeof _=="string"?_:typeof(_==null?void 0:_.id)=="string"?_.id:"";if(!w){it.warn("⚠️ Invalid or missing stateId from key:",JSON.stringify(_));return}const S=(N=f.node())==null?void 0:N.querySelectorAll("g");let C;if(S==null||S.forEach(L=>{var M;((M=L.textContent)==null?void 0:M.trim())===w&&(C=L)}),!C){it.warn("⚠️ Could not find node matching text:",w);return}const A=C.parentNode;if(!A){it.warn("⚠️ Node has no parent, cannot wrap:",w);return}const k=document.createElementNS("http://www.w3.org/2000/svg","a"),I=b.url.replace(/^"+|"+$/g,"");if(k.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",I),k.setAttribute("target","_blank"),b.tooltip){const L=b.tooltip.replace(/^"+|"+$/g,"");k.setAttribute("title",L)}A.replaceChild(k,C),k.appendChild(C),it.info("🔗 Wrapped node in
    tag for:",w,b.url)})}catch(m){it.error("❌ Error injecting clickable links:",m)}Vo.insertTitle(f,"statediagramTitleText",(o==null?void 0:o.titleTopMargin)??25,a.db.getDiagramTitle()),U$(f,p,Kce,(o==null?void 0:o.useMaxWidth)??!0)},"draw"),MKi={getClasses:LKi,draw:DKi,getDir:dXn},Xxe=new Map,rO=0;function Qxe(e="",t=0,r="",a=Jmt){const s=r!==null&&r.length>0?`${a}${r}`:"";return`${NKi}-${e}${s}-${t}`}X(Qxe,"stateDomId");var PKi=X((e,t,r,a,s,o,u,h)=>{it.trace("items",t),t.forEach(f=>{switch(f.stmt){case yV:Dae(e,f,r,a,s,o,u,h);break;case Rse:Dae(e,f,r,a,s,o,u,h);break;case Out:{Dae(e,f.state1,r,a,s,o,u,h),Dae(e,f.state2,r,a,s,o,u,h);const p={id:"edge"+rO,start:f.state1.id,end:f.state2.id,arrowhead:"normal",arrowTypeEnd:"arrow_barb",style:iXn,labelStyle:"",label:Ti.sanitizeText(f.description??"",nn()),arrowheadStyle:aXn,labelpos:sXn,labelType:oXn,thickness:lXn,classes:cXn,look:u};s.push(p),rO++}break}})},"setupDoc"),fTn=X((e,t=nXn)=>{let r=t;if(e.doc)for(const a of e.doc)a.stmt==="dir"&&(r=a.value);return r},"getDir");function Lae(e,t,r){if(!t.id||t.id===""||t.id==="")return;t.cssClasses&&(Array.isArray(t.cssCompiledStyles)||(t.cssCompiledStyles=[]),t.cssClasses.split(" ").forEach(s=>{const o=r.get(s);o&&(t.cssCompiledStyles=[...t.cssCompiledStyles??[],...o.styles])}));const a=e.find(s=>s.id===t.id);a?Object.assign(a,t):e.push(t)}X(Lae,"insertOrUpdateNode");function fXn(e){var t;return((t=e==null?void 0:e.classes)==null?void 0:t.join(" "))??""}X(fXn,"getClassesFromDbInfo");function pXn(e){return(e==null?void 0:e.styles)??[]}X(pXn,"getStylesFromDbInfo");var Dae=X((e,t,r,a,s,o,u,h)=>{var w,S,C;const f=t.id,p=r.get(f),m=fXn(p),b=pXn(p),_=nn();if(it.info("dataFetcher parsedItem",t,p,b),f!=="root"){let A=Zit;t.start===!0?A=bKi:t.start===!1&&(A=yKi),t.type!==Rse&&(A=t.type),Xxe.get(f)||Xxe.set(f,{id:f,shape:A,description:Ti.sanitizeText(f,_),cssClasses:`${m} ${EKi}`,cssStyles:b});const k=Xxe.get(f);t.description&&(Array.isArray(k.description)?(k.shape=Jit,k.description.push(t.description)):(w=k.description)!=null&&w.length&&k.description.length>0?(k.shape=Jit,k.description===f?k.description=[t.description]:k.description=[k.description,t.description]):(k.shape=Zit,k.description=t.description),k.description=Ti.sanitizeTextOrArray(k.description,_)),((S=k.description)==null?void 0:S.length)===1&&k.shape===Jit&&(k.type==="group"?k.shape=hTn:k.shape=Zit),!k.type&&t.doc&&(it.info("Setting cluster for XCX",f,fTn(t)),k.type="group",k.isGroup=!0,k.dir=fTn(t),k.shape=t.type===rXn?uTn:hTn,k.cssClasses=`${k.cssClasses} ${kKi} ${o?IKi:""}`);const I={labelStyle:"",shape:k.shape,label:k.description,cssClasses:k.cssClasses,cssCompiledStyles:[],cssStyles:k.cssStyles,id:f,dir:k.dir,domId:Qxe(f,rO),type:k.type,isGroup:k.type==="group",padding:8,rx:10,ry:10,look:u};if(I.shape===uTn&&(I.label=""),e&&e.id!=="root"&&(it.trace("Setting node ",f," to be child of its parent ",e.id),I.parentId=e.id),I.centerLabel=!0,t.note){const N={labelStyle:"",shape:vKi,label:t.note.text,cssClasses:CKi,cssStyles:[],cssCompiledStyles:[],id:f+OKi+"-"+rO,domId:Qxe(f,rO,hXn),type:k.type,isGroup:k.type==="group",padding:(C=_.flowchart)==null?void 0:C.padding,look:u,position:t.note.position},L=f+dTn,P={labelStyle:"",shape:_Ki,label:t.note.text,cssClasses:k.cssClasses,cssStyles:[],id:f+dTn,domId:Qxe(f,rO,uXn),type:"group",isGroup:!0,padding:16,look:u,position:t.note.position};rO++,P.id=L,N.parentId=L,Lae(a,P,h),Lae(a,N,h),Lae(a,I,h);let M=f,F=N.id;t.note.position==="left of"&&(M=N.id,F=f),s.push({id:M+"-"+F,start:M,end:F,arrowhead:"none",arrowTypeEnd:"",style:iXn,labelStyle:"",classes:TKi,arrowheadStyle:aXn,labelpos:sXn,labelType:oXn,thickness:lXn,look:u})}else Lae(a,I,h)}t.doc&&(it.trace("Adding nodes children "),PKi(t,t.doc,r,a,s,!o,u,h))},"dataFetcher"),BKi=X(()=>{Xxe.clear(),rO=0},"reset"),Fy={START_NODE:"[*]",START_TYPE:"start",END_NODE:"[*]",END_TYPE:"end",COLOR_KEYWORD:"color",FILL_KEYWORD:"fill",BG_FILL:"bgFill",STYLECLASS_SEP:","},pTn=X(()=>new Map,"newClassesList"),gTn=X(()=>({relations:[],states:new Map,documents:{}}),"newDoc"),dEe=X(e=>JSON.parse(JSON.stringify(e)),"clone"),bF,zB=(bF=class{constructor(t){this.version=t,this.nodes=[],this.edges=[],this.rootDoc=[],this.classes=pTn(),this.documents={root:gTn()},this.currentDocument=this.documents.root,this.startEndCount=0,this.dividerCnt=0,this.links=new Map,this.getAccTitle=Mp,this.setAccTitle=N1,this.getAccDescription=Bp,this.setAccDescription=Pp,this.setDiagramTitle=Og,this.getDiagramTitle=P1,this.clear(),this.setRootDoc=this.setRootDoc.bind(this),this.getDividerId=this.getDividerId.bind(this),this.setDirection=this.setDirection.bind(this),this.trimColon=this.trimColon.bind(this)}extract(t){this.clear(!0);for(const s of Array.isArray(t)?t:t.doc)switch(s.stmt){case yV:this.addState(s.id.trim(),s.type,s.doc,s.description,s.note);break;case Out:this.addRelation(s.state1,s.state2,s.description);break;case pKi:this.addStyleClass(s.id.trim(),s.classes);break;case gKi:this.handleStyleDef(s);break;case mKi:this.setCssClass(s.id.trim(),s.styleClass);break;case"click":this.addLink(s.id,s.url,s.tooltip);break}const r=this.getStates(),a=nn();BKi(),Dae(void 0,this.getRootDocV2(),r,this.nodes,this.edges,!0,a.look,this.classes);for(const s of this.nodes)if(Array.isArray(s.label)){if(s.description=s.label.slice(1),s.isGroup&&s.description.length>0)throw new Error(`Group nodes can only have label. Remove the additional description for node [${s.id}]`);s.label=s.label[0]}}handleStyleDef(t){const r=t.id.trim().split(","),a=t.styleClass.split(",");for(const s of r){let o=this.getState(s);if(!o){const u=s.trim();this.addState(u),o=this.getState(u)}o&&(o.styles=a.map(u=>{var h;return(h=u.replace(/;/g,""))==null?void 0:h.trim()}))}}setRootDoc(t){it.info("Setting root doc",t),this.rootDoc=t,this.version===1?this.extract(t):this.extract(this.getRootDocV2())}docTranslator(t,r,a){if(r.stmt===Out){this.docTranslator(t,r.state1,!0),this.docTranslator(t,r.state2,!1);return}if(r.stmt===yV&&(r.id===Fy.START_NODE?(r.id=t.id+(a?"_start":"_end"),r.start=a):r.id=r.id.trim()),r.stmt!==tV&&r.stmt!==yV||!r.doc)return;const s=[];let o=[];for(const u of r.doc)if(u.type===rXn){const h=dEe(u);h.doc=dEe(o),s.push(h),o=[]}else o.push(u);if(s.length>0&&o.length>0){const u={stmt:yV,id:JPn(),type:"divider",doc:dEe(o)};s.push(dEe(u)),r.doc=s}r.doc.forEach(u=>this.docTranslator(r,u,!0))}getRootDocV2(){return this.docTranslator({id:tV,stmt:tV},{id:tV,stmt:tV,doc:this.rootDoc},!0),{id:tV,doc:this.rootDoc}}addState(t,r=Rse,a=void 0,s=void 0,o=void 0,u=void 0,h=void 0,f=void 0){const p=t==null?void 0:t.trim();if(!this.currentDocument.states.has(p))it.info("Adding state ",p,s),this.currentDocument.states.set(p,{stmt:yV,id:p,descriptions:[],type:r,doc:a,note:o,classes:[],styles:[],textStyles:[]});else{const m=this.currentDocument.states.get(p);if(!m)throw new Error(`State not found: ${p}`);m.doc||(m.doc=a),m.type||(m.type=r)}if(s&&(it.info("Setting state description",p,s),(Array.isArray(s)?s:[s]).forEach(b=>this.addDescription(p,b.trim()))),o){const m=this.currentDocument.states.get(p);if(!m)throw new Error(`State not found: ${p}`);m.note=o,m.note.text=Ti.sanitizeText(m.note.text,nn())}u&&(it.info("Setting state classes",p,u),(Array.isArray(u)?u:[u]).forEach(b=>this.setCssClass(p,b.trim()))),h&&(it.info("Setting state styles",p,h),(Array.isArray(h)?h:[h]).forEach(b=>this.setStyle(p,b.trim()))),f&&(it.info("Setting state styles",p,h),(Array.isArray(f)?f:[f]).forEach(b=>this.setTextStyle(p,b.trim())))}clear(t){this.nodes=[],this.edges=[],this.documents={root:gTn()},this.currentDocument=this.documents.root,this.startEndCount=0,this.classes=pTn(),t||(this.links=new Map,M1())}getState(t){return this.currentDocument.states.get(t)}getStates(){return this.currentDocument.states}logDocuments(){it.info("Documents = ",this.documents)}getRelations(){return this.currentDocument.relations}addLink(t,r,a){this.links.set(t,{url:r,tooltip:a}),it.warn("Adding link",t,r,a)}getLinks(){return this.links}startIdIfNeeded(t=""){return t===Fy.START_NODE?(this.startEndCount++,`${Fy.START_TYPE}${this.startEndCount}`):t}startTypeIfNeeded(t="",r=Rse){return t===Fy.START_NODE?Fy.START_TYPE:r}endIdIfNeeded(t=""){return t===Fy.END_NODE?(this.startEndCount++,`${Fy.END_TYPE}${this.startEndCount}`):t}endTypeIfNeeded(t="",r=Rse){return t===Fy.END_NODE?Fy.END_TYPE:r}addRelationObjs(t,r,a=""){const s=this.startIdIfNeeded(t.id.trim()),o=this.startTypeIfNeeded(t.id.trim(),t.type),u=this.startIdIfNeeded(r.id.trim()),h=this.startTypeIfNeeded(r.id.trim(),r.type);this.addState(s,o,t.doc,t.description,t.note,t.classes,t.styles,t.textStyles),this.addState(u,h,r.doc,r.description,r.note,r.classes,r.styles,r.textStyles),this.currentDocument.relations.push({id1:s,id2:u,relationTitle:Ti.sanitizeText(a,nn())})}addRelation(t,r,a){if(typeof t=="object"&&typeof r=="object")this.addRelationObjs(t,r,a);else if(typeof t=="string"&&typeof r=="string"){const s=this.startIdIfNeeded(t.trim()),o=this.startTypeIfNeeded(t),u=this.endIdIfNeeded(r.trim()),h=this.endTypeIfNeeded(r);this.addState(s,o),this.addState(u,h),this.currentDocument.relations.push({id1:s,id2:u,relationTitle:a?Ti.sanitizeText(a,nn()):void 0})}}addDescription(t,r){var o;const a=this.currentDocument.states.get(t),s=r.startsWith(":")?r.replace(":","").trim():r;(o=a==null?void 0:a.descriptions)==null||o.push(Ti.sanitizeText(s,nn()))}cleanupLabel(t){return t.startsWith(":")?t.slice(2).trim():t.trim()}getDividerId(){return this.dividerCnt++,`divider-id-${this.dividerCnt}`}addStyleClass(t,r=""){this.classes.has(t)||this.classes.set(t,{id:t,styles:[],textStyles:[]});const a=this.classes.get(t);r&&a&&r.split(Fy.STYLECLASS_SEP).forEach(s=>{const o=s.replace(/([^;]*);/,"$1").trim();if(RegExp(Fy.COLOR_KEYWORD).exec(s)){const h=o.replace(Fy.FILL_KEYWORD,Fy.BG_FILL).replace(Fy.COLOR_KEYWORD,Fy.FILL_KEYWORD);a.textStyles.push(h)}a.styles.push(o)})}getClasses(){return this.classes}setCssClass(t,r){t.split(",").forEach(a=>{var o;let s=this.getState(a);if(!s){const u=a.trim();this.addState(u),s=this.getState(u)}(o=s==null?void 0:s.classes)==null||o.push(r)})}setStyle(t,r){var a,s;(s=(a=this.getState(t))==null?void 0:a.styles)==null||s.push(r)}setTextStyle(t,r){var a,s;(s=(a=this.getState(t))==null?void 0:a.textStyles)==null||s.push(r)}getDirectionStatement(){return this.rootDoc.find(t=>t.stmt===cTn)}getDirection(){var t;return((t=this.getDirectionStatement())==null?void 0:t.value)??fKi}setDirection(t){const r=this.getDirectionStatement();r?r.value=t:this.rootDoc.unshift({stmt:cTn,value:t})}trimColon(t){return t.startsWith(":")?t.slice(1).trim():t.trim()}getData(){const t=nn();return{nodes:this.nodes,edges:this.edges,other:{},config:t,direction:dXn(this.getRootDocV2())}}getConfig(){return nn().state}},X(bF,"StateDB"),bF.relationType={AGGREGATION:0,EXTENSION:1,COMPOSITION:2,DEPENDENCY:3},bF),FKi=X(e=>` +defs #statediagram-barbEnd { + fill: ${e.transitionColor}; + stroke: ${e.transitionColor}; + } +g.stateGroup text { + fill: ${e.nodeBorder}; + stroke: none; + font-size: 10px; +} +g.stateGroup text { + fill: ${e.textColor}; + stroke: none; + font-size: 10px; + +} +g.stateGroup .state-title { + font-weight: bolder; + fill: ${e.stateLabelColor}; +} + +g.stateGroup rect { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; +} + +g.stateGroup line { + stroke: ${e.lineColor}; + stroke-width: 1; +} + +.transition { + stroke: ${e.transitionColor}; + stroke-width: 1; + fill: none; +} + +.stateGroup .composit { + fill: ${e.background}; + border-bottom: 1px +} + +.stateGroup .alt-composit { + fill: #e0e0e0; + border-bottom: 1px +} + +.state-note { + stroke: ${e.noteBorderColor}; + fill: ${e.noteBkgColor}; + + text { + fill: ${e.noteTextColor}; + stroke: none; + font-size: 10px; + } +} + +.stateLabel .box { + stroke: none; + stroke-width: 0; + fill: ${e.mainBkg}; + opacity: 0.5; +} + +.edgeLabel .label rect { + fill: ${e.labelBackgroundColor}; + opacity: 0.5; +} +.edgeLabel { + background-color: ${e.edgeLabelBackground}; + p { + background-color: ${e.edgeLabelBackground}; + } + rect { + opacity: 0.5; + background-color: ${e.edgeLabelBackground}; + fill: ${e.edgeLabelBackground}; + } + text-align: center; +} +.edgeLabel .label text { + fill: ${e.transitionLabelColor||e.tertiaryTextColor}; +} +.label div .edgeLabel { + color: ${e.transitionLabelColor||e.tertiaryTextColor}; +} + +.stateLabel text { + fill: ${e.stateLabelColor}; + font-size: 10px; + font-weight: bold; +} + +.node circle.state-start { + fill: ${e.specialStateColor}; + stroke: ${e.specialStateColor}; +} + +.node .fork-join { + fill: ${e.specialStateColor}; + stroke: ${e.specialStateColor}; +} + +.node circle.state-end { + fill: ${e.innerEndBackground}; + stroke: ${e.background}; + stroke-width: 1.5 +} +.end-state-inner { + fill: ${e.compositeBackground||e.background}; + // stroke: ${e.background}; + stroke-width: 1.5 +} + +.node rect { + fill: ${e.stateBkg||e.mainBkg}; + stroke: ${e.stateBorder||e.nodeBorder}; + stroke-width: 1px; +} +.node polygon { + fill: ${e.mainBkg}; + stroke: ${e.stateBorder||e.nodeBorder};; + stroke-width: 1px; +} +#statediagram-barbEnd { + fill: ${e.lineColor}; +} + +.statediagram-cluster rect { + fill: ${e.compositeTitleBackground}; + stroke: ${e.stateBorder||e.nodeBorder}; + stroke-width: 1px; +} + +.cluster-label, .nodeLabel { + color: ${e.stateLabelColor}; + // line-height: 1; +} + +.statediagram-cluster rect.outer { + rx: 5px; + ry: 5px; +} +.statediagram-state .divider { + stroke: ${e.stateBorder||e.nodeBorder}; +} + +.statediagram-state .title-state { + rx: 5px; + ry: 5px; +} +.statediagram-cluster.statediagram-cluster .inner { + fill: ${e.compositeBackground||e.background}; +} +.statediagram-cluster.statediagram-cluster-alt .inner { + fill: ${e.altBackground?e.altBackground:"#efefef"}; +} + +.statediagram-cluster .inner { + rx:0; + ry:0; +} + +.statediagram-state rect.basic { + rx: 5px; + ry: 5px; +} +.statediagram-state rect.divider { + stroke-dasharray: 10,10; + fill: ${e.altBackground?e.altBackground:"#efefef"}; +} + +.note-edge { + stroke-dasharray: 5; +} + +.statediagram-note rect { + fill: ${e.noteBkgColor}; + stroke: ${e.noteBorderColor}; + stroke-width: 1px; + rx: 0; + ry: 0; +} +.statediagram-note rect { + fill: ${e.noteBkgColor}; + stroke: ${e.noteBorderColor}; + stroke-width: 1px; + rx: 0; + ry: 0; +} + +.statediagram-note text { + fill: ${e.noteTextColor}; +} + +.statediagram-note .nodeLabel { + color: ${e.noteTextColor}; +} +.statediagram .edgeLabel { + color: red; // ${e.noteTextColor}; +} + +#dependencyStart, #dependencyEnd { + fill: ${e.lineColor}; + stroke: ${e.lineColor}; + stroke-width: 1; +} + +.statediagramTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; +} +`,"getStyles"),gXn=FKi,$Ki=X(e=>e.append("circle").attr("class","start-state").attr("r",nn().state.sizeUnit).attr("cx",nn().state.padding+nn().state.sizeUnit).attr("cy",nn().state.padding+nn().state.sizeUnit),"drawStartState"),UKi=X(e=>e.append("line").style("stroke","grey").style("stroke-dasharray","3").attr("x1",nn().state.textHeight).attr("class","divider").attr("x2",nn().state.textHeight*2).attr("y1",0).attr("y2",0),"drawDivider"),zKi=X((e,t)=>{const r=e.append("text").attr("x",2*nn().state.padding).attr("y",nn().state.textHeight+2*nn().state.padding).attr("font-size",nn().state.fontSize).attr("class","state-title").text(t.id),a=r.node().getBBox();return e.insert("rect",":first-child").attr("x",nn().state.padding).attr("y",nn().state.padding).attr("width",a.width+2*nn().state.padding).attr("height",a.height+2*nn().state.padding).attr("rx",nn().state.radius),r},"drawSimpleState"),GKi=X((e,t)=>{const r=X(function(_,w,S){const C=_.append("tspan").attr("x",2*nn().state.padding).text(w);S||C.attr("dy",nn().state.textHeight)},"addTspan"),s=e.append("text").attr("x",2*nn().state.padding).attr("y",nn().state.textHeight+1.3*nn().state.padding).attr("font-size",nn().state.fontSize).attr("class","state-title").text(t.descriptions[0]).node().getBBox(),o=s.height,u=e.append("text").attr("x",nn().state.padding).attr("y",o+nn().state.padding*.4+nn().state.dividerMargin+nn().state.textHeight).attr("class","state-description");let h=!0,f=!0;t.descriptions.forEach(function(_){h||(r(u,_,f),f=!1),h=!1});const p=e.append("line").attr("x1",nn().state.padding).attr("y1",nn().state.padding+o+nn().state.dividerMargin/2).attr("y2",nn().state.padding+o+nn().state.dividerMargin/2).attr("class","descr-divider"),m=u.node().getBBox(),b=Math.max(m.width,s.width);return p.attr("x2",b+3*nn().state.padding),e.insert("rect",":first-child").attr("x",nn().state.padding).attr("y",nn().state.padding).attr("width",b+2*nn().state.padding).attr("height",m.height+o+2*nn().state.padding).attr("rx",nn().state.radius),e},"drawDescrState"),qKi=X((e,t,r)=>{const a=nn().state.padding,s=2*nn().state.padding,o=e.node().getBBox(),u=o.width,h=o.x,f=e.append("text").attr("x",0).attr("y",nn().state.titleShift).attr("font-size",nn().state.fontSize).attr("class","state-title").text(t.id),m=f.node().getBBox().width+s;let b=Math.max(m,u);b===u&&(b=b+s);let _;const w=e.node().getBBox();t.doc,_=h-a,m>u&&(_=(u-b)/2+a),Math.abs(h-w.x)u&&(_=h-(m-u)/2);const S=1-nn().state.textHeight;return e.insert("rect",":first-child").attr("x",_).attr("y",S).attr("class",r?"alt-composit":"composit").attr("width",b).attr("height",w.height+nn().state.textHeight+nn().state.titleShift+1).attr("rx","0"),f.attr("x",_+a),m<=u&&f.attr("x",h+(b-s)/2-m/2+a),e.insert("rect",":first-child").attr("x",_).attr("y",nn().state.titleShift-nn().state.textHeight-nn().state.padding).attr("width",b).attr("height",nn().state.textHeight*3).attr("rx",nn().state.radius),e.insert("rect",":first-child").attr("x",_).attr("y",nn().state.titleShift-nn().state.textHeight-nn().state.padding).attr("width",b).attr("height",w.height+3+2*nn().state.textHeight).attr("rx",nn().state.radius),e},"addTitleAndBox"),HKi=X(e=>(e.append("circle").attr("class","end-state-outer").attr("r",nn().state.sizeUnit+nn().state.miniPadding).attr("cx",nn().state.padding+nn().state.sizeUnit+nn().state.miniPadding).attr("cy",nn().state.padding+nn().state.sizeUnit+nn().state.miniPadding),e.append("circle").attr("class","end-state-inner").attr("r",nn().state.sizeUnit).attr("cx",nn().state.padding+nn().state.sizeUnit+2).attr("cy",nn().state.padding+nn().state.sizeUnit+2)),"drawEndState"),VKi=X((e,t)=>{let r=nn().state.forkWidth,a=nn().state.forkHeight;if(t.parentId){let s=r;r=a,a=s}return e.append("rect").style("stroke","black").style("fill","black").attr("width",r).attr("height",a).attr("x",nn().state.padding).attr("y",nn().state.padding)},"drawForkJoinState"),YKi=X((e,t,r,a)=>{let s=0;const o=a.append("text");o.style("text-anchor","start"),o.attr("class","noteText");let u=e.replace(/\r\n/g,"
    ");u=u.replace(/\n/g,"
    ");const h=u.split(Ti.lineBreakRegex);let f=1.25*nn().state.noteMargin;for(const p of h){const m=p.trim();if(m.length>0){const b=o.append("tspan");if(b.text(m),f===0){const _=b.node().getBBox();f+=_.height}s+=f,b.attr("x",t+nn().state.noteMargin),b.attr("y",r+s+1.25*nn().state.noteMargin)}}return{textWidth:o.node().getBBox().width,textHeight:s}},"_drawLongText"),jKi=X((e,t)=>{t.attr("class","state-note");const r=t.append("rect").attr("x",0).attr("y",nn().state.padding),a=t.append("g"),{textWidth:s,textHeight:o}=YKi(e,0,0,a);return r.attr("height",o+2*nn().state.noteMargin),r.attr("width",s+nn().state.noteMargin*2),r},"drawNote"),mTn=X(function(e,t){const r=t.id,a={id:r,label:t.id,width:0,height:0},s=e.append("g").attr("id",r).attr("class","stateGroup");t.type==="start"&&$Ki(s),t.type==="end"&&HKi(s),(t.type==="fork"||t.type==="join")&&VKi(s,t),t.type==="note"&&jKi(t.note.text,s),t.type==="divider"&&UKi(s),t.type==="default"&&t.descriptions.length===0&&zKi(s,t),t.type==="default"&&t.descriptions.length>0&&GKi(s,t);const o=s.node().getBBox();return a.width=o.width+2*nn().state.padding,a.height=o.height+2*nn().state.padding,a},"drawState"),bTn=0,WKi=X(function(e,t,r){const a=X(function(f){switch(f){case zB.relationType.AGGREGATION:return"aggregation";case zB.relationType.EXTENSION:return"extension";case zB.relationType.COMPOSITION:return"composition";case zB.relationType.DEPENDENCY:return"dependency"}},"getRelationType");t.points=t.points.filter(f=>!Number.isNaN(f.y));const s=t.points,o=r_().x(function(f){return f.x}).y(function(f){return f.y}).curve(j3),u=e.append("path").attr("d",o(s)).attr("id","edge"+bTn).attr("class","transition");let h="";if(nn().state.arrowMarkerAbsolute&&(h=tAe(!0)),u.attr("marker-end","url("+h+"#"+a(zB.relationType.DEPENDENCY)+"End)"),r.title!==void 0){const f=e.append("g").attr("class","stateLabel"),{x:p,y:m}=Vo.calcLabelPosition(t.points),b=Ti.getRows(r.title);let _=0;const w=[];let S=0,C=0;for(let I=0;I<=b.length;I++){const N=f.append("text").attr("text-anchor","middle").text(b[I]).attr("x",p).attr("y",m+_),L=N.node().getBBox();S=Math.max(S,L.width),C=Math.min(C,L.x),it.info(L.x,p,m+_),_===0&&(_=N.node().getBBox().height,it.info("Title height",_,m)),w.push(N)}let A=_*b.length;if(b.length>1){const I=(b.length-1)*_*.5;w.forEach((N,L)=>N.attr("y",m+L*_-I)),A=_*b.length}const k=f.node().getBBox();f.insert("rect",":first-child").attr("class","box").attr("x",p-S/2-nn().state.padding/2).attr("y",m-A/2-nn().state.padding/2-3.5).attr("width",S+nn().state.padding).attr("height",A+nn().state.padding),it.info(k)}bTn++},"drawEdge"),Aw,eat={},KKi=X(function(){},"setConf"),XKi=X(function(e){e.append("defs").append("marker").attr("id","dependencyEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},"insertMarkers"),QKi=X(function(e,t,r,a){Aw=nn().state;const s=nn().securityLevel;let o;s==="sandbox"&&(o=gn("#i"+t));const u=gn(s==="sandbox"?o.nodes()[0].contentDocument.body:"body"),h=s==="sandbox"?o.nodes()[0].contentDocument:document;it.debug("Rendering diagram "+e);const f=u.select(`[id='${t}']`);XKi(f);const p=a.db.getRootDoc();mXn(p,f,void 0,!1,u,h,a);const m=Aw.padding,b=f.node().getBBox(),_=b.width+m*2,w=b.height+m*2,S=_*1.75;yv(f,w,S,Aw.useMaxWidth),f.attr("viewBox",`${b.x-Aw.padding} ${b.y-Aw.padding} `+_+" "+w)},"draw"),ZKi=X(e=>e?e.length*Aw.fontSizeFactor:1,"getLabelWidth"),mXn=X((e,t,r,a,s,o,u)=>{const h=new c_({compound:!0,multigraph:!0});let f,p=!0;for(f=0;f{const L=N.parentElement;let P=0,M=0;L&&(L.parentElement&&(P=L.parentElement.getBBox().width),M=parseInt(L.getAttribute("data-x-shift"),10),Number.isNaN(M)&&(M=0)),N.setAttribute("x1",0-M+8),N.setAttribute("x2",P-M-8)})):it.debug("No Node "+k+": "+JSON.stringify(h.node(k)))});let C=S.getBBox();h.edges().forEach(function(k){k!==void 0&&h.edge(k)!==void 0&&(it.debug("Edge "+k.v+" -> "+k.w+": "+JSON.stringify(h.edge(k))),WKi(t,h.edge(k),h.edge(k).relation))}),C=S.getBBox();const A={id:r||"root",label:r||"root",width:0,height:0};return A.width=C.width+2*Aw.padding,A.height=C.height+2*Aw.padding,it.debug("Doc rendered",A,h),A},"renderDoc"),JKi={setConf:KKi,draw:QKi},eXi={parser:tXn,get db(){return new zB(1)},renderer:JKi,styles:gXn,init:X(e=>{e.state||(e.state={}),e.state.arrowMarkerAbsolute=e.arrowMarkerAbsolute},"init")};const tXi=Object.freeze(Object.defineProperty({__proto__:null,diagram:eXi},Symbol.toStringTag,{value:"Module"}));var nXi={parser:tXn,get db(){return new zB(2)},renderer:MKi,styles:gXn,init:X(e=>{e.state||(e.state={}),e.state.arrowMarkerAbsolute=e.arrowMarkerAbsolute},"init")};const rXi=Object.freeze(Object.defineProperty({__proto__:null,diagram:nXi},Symbol.toStringTag,{value:"Module"}));var Lut=function(){var e=X(function(b,_,w,S){for(w=w||{},S=b.length;S--;w[b[S]]=_);return w},"o"),t=[6,8,10,11,12,14,16,17,18],r=[1,9],a=[1,10],s=[1,11],o=[1,12],u=[1,13],h=[1,14],f={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,journey:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NEWLINE:10,title:11,acc_title:12,acc_title_value:13,acc_descr:14,acc_descr_value:15,acc_descr_multiline_value:16,section:17,taskName:18,taskData:19,$accept:0,$end:1},terminals_:{2:"error",4:"journey",6:"EOF",8:"SPACE",10:"NEWLINE",11:"title",12:"acc_title",13:"acc_title_value",14:"acc_descr",15:"acc_descr_value",16:"acc_descr_multiline_value",17:"section",18:"taskName",19:"taskData"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[9,1],[9,2],[9,2],[9,1],[9,1],[9,2]],performAction:X(function(_,w,S,C,A,k,I){var N=k.length-1;switch(A){case 1:return k[N-1];case 2:this.$=[];break;case 3:k[N-1].push(k[N]),this.$=k[N-1];break;case 4:case 5:this.$=k[N];break;case 6:case 7:this.$=[];break;case 8:C.setDiagramTitle(k[N].substr(6)),this.$=k[N].substr(6);break;case 9:this.$=k[N].trim(),C.setAccTitle(this.$);break;case 10:case 11:this.$=k[N].trim(),C.setAccDescription(this.$);break;case 12:C.addSection(k[N].substr(8)),this.$=k[N].substr(8);break;case 13:C.addTask(k[N-1],k[N]),this.$="task";break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},e(t,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:r,12:a,14:s,16:o,17:u,18:h},e(t,[2,7],{1:[2,1]}),e(t,[2,3]),{9:15,11:r,12:a,14:s,16:o,17:u,18:h},e(t,[2,5]),e(t,[2,6]),e(t,[2,8]),{13:[1,16]},{15:[1,17]},e(t,[2,11]),e(t,[2,12]),{19:[1,18]},e(t,[2,4]),e(t,[2,9]),e(t,[2,10]),e(t,[2,13])],defaultActions:{},parseError:X(function(_,w){if(w.recoverable)this.trace(_);else{var S=new Error(_);throw S.hash=w,S}},"parseError"),parse:X(function(_){var w=this,S=[0],C=[],A=[null],k=[],I=this.table,N="",L=0,P=0,M=2,F=1,U=k.slice.call(arguments,1),$=Object.create(this.lexer),G={yy:{}};for(var B in this.yy)Object.prototype.hasOwnProperty.call(this.yy,B)&&(G.yy[B]=this.yy[B]);$.setInput(_,G.yy),G.yy.lexer=$,G.yy.parser=this,typeof $.yylloc>"u"&&($.yylloc={});var Z=$.yylloc;k.push(Z);var z=$.options&&$.options.ranges;typeof G.yy.parseError=="function"?this.parseError=G.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Y(be){S.length=S.length-2*be,A.length=A.length-be,k.length=k.length-be}X(Y,"popStack");function W(){var be;return be=C.pop()||$.lex()||F,typeof be!="number"&&(be instanceof Array&&(C=be,be=C.pop()),be=w.symbols_[be]||be),be}X(W,"lex");for(var Q,V,j,ee,te={},ne,se,ie,ge;;){if(V=S[S.length-1],this.defaultActions[V]?j=this.defaultActions[V]:((Q===null||typeof Q>"u")&&(Q=W()),j=I[V]&&I[V][Q]),typeof j>"u"||!j.length||!j[0]){var ce="";ge=[];for(ne in I[V])this.terminals_[ne]&&ne>M&&ge.push("'"+this.terminals_[ne]+"'");$.showPosition?ce="Parse error on line "+(L+1)+`: +`+$.showPosition()+` +Expecting `+ge.join(", ")+", got '"+(this.terminals_[Q]||Q)+"'":ce="Parse error on line "+(L+1)+": Unexpected "+(Q==F?"end of input":"'"+(this.terminals_[Q]||Q)+"'"),this.parseError(ce,{text:$.match,token:this.terminals_[Q]||Q,line:$.yylineno,loc:Z,expected:ge})}if(j[0]instanceof Array&&j.length>1)throw new Error("Parse Error: multiple actions possible at state: "+V+", token: "+Q);switch(j[0]){case 1:S.push(Q),A.push($.yytext),k.push($.yylloc),S.push(j[1]),Q=null,P=$.yyleng,N=$.yytext,L=$.yylineno,Z=$.yylloc;break;case 2:if(se=this.productions_[j[1]][1],te.$=A[A.length-se],te._$={first_line:k[k.length-(se||1)].first_line,last_line:k[k.length-1].last_line,first_column:k[k.length-(se||1)].first_column,last_column:k[k.length-1].last_column},z&&(te._$.range=[k[k.length-(se||1)].range[0],k[k.length-1].range[1]]),ee=this.performAction.apply(te,[N,P,L,G.yy,j[1],A,k].concat(U)),typeof ee<"u")return ee;se&&(S=S.slice(0,-1*se*2),A=A.slice(0,-1*se),k=k.slice(0,-1*se)),S.push(this.productions_[j[1]][0]),A.push(te.$),k.push(te._$),ie=I[S[S.length-2]][S[S.length-1]],S.push(ie);break;case 3:return!0}}return!0},"parse")},p=function(){var b={EOF:1,parseError:X(function(w,S){if(this.yy.parser)this.yy.parser.parseError(w,S);else throw new Error(w)},"parseError"),setInput:X(function(_,w){return this.yy=w||this.yy||{},this._input=_,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var _=this._input[0];this.yytext+=_,this.yyleng++,this.offset++,this.match+=_,this.matched+=_;var w=_.match(/(?:\r\n?|\n).*/g);return w?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),_},"input"),unput:X(function(_){var w=_.length,S=_.split(/(?:\r\n?|\n)/g);this._input=_+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-w),this.offset-=w;var C=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),S.length-1&&(this.yylineno-=S.length-1);var A=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:S?(S.length===C.length?this.yylloc.first_column:0)+C[C.length-S.length].length-S[0].length:this.yylloc.first_column-w},this.options.ranges&&(this.yylloc.range=[A[0],A[0]+this.yyleng-w]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(_){this.unput(this.match.slice(_))},"less"),pastInput:X(function(){var _=this.matched.substr(0,this.matched.length-this.match.length);return(_.length>20?"...":"")+_.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var _=this.match;return _.length<20&&(_+=this._input.substr(0,20-_.length)),(_.substr(0,20)+(_.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var _=this.pastInput(),w=new Array(_.length+1).join("-");return _+this.upcomingInput()+` +`+w+"^"},"showPosition"),test_match:X(function(_,w){var S,C,A;if(this.options.backtrack_lexer&&(A={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(A.yylloc.range=this.yylloc.range.slice(0))),C=_[0].match(/(?:\r\n?|\n).*/g),C&&(this.yylineno+=C.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:C?C[C.length-1].length-C[C.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+_[0].length},this.yytext+=_[0],this.match+=_[0],this.matches=_,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(_[0].length),this.matched+=_[0],S=this.performAction.call(this,this.yy,this,w,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),S)return S;if(this._backtrack){for(var k in A)this[k]=A[k];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var _,w,S,C;this._more||(this.yytext="",this.match="");for(var A=this._currentRules(),k=0;kw[0].length)){if(w=S,C=k,this.options.backtrack_lexer){if(_=this.test_match(S,A[k]),_!==!1)return _;if(this._backtrack){w=!1;continue}else return!1}else if(!this.options.flex)break}return w?(_=this.test_match(w,A[C]),_!==!1?_:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var w=this.next();return w||this.lex()},"lex"),begin:X(function(w){this.conditionStack.push(w)},"begin"),popState:X(function(){var w=this.conditionStack.length-1;return w>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(w){return w=this.conditionStack.length-1-Math.abs(w||0),w>=0?this.conditionStack[w]:"INITIAL"},"topState"),pushState:X(function(w){this.begin(w)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(w,S,C,A){switch(C){case 0:break;case 1:break;case 2:return 10;case 3:break;case 4:break;case 5:return 4;case 6:return 11;case 7:return this.begin("acc_title"),12;case 8:return this.popState(),"acc_title_value";case 9:return this.begin("acc_descr"),14;case 10:return this.popState(),"acc_descr_value";case 11:this.begin("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:return 17;case 15:return 18;case 16:return 19;case 17:return":";case 18:return 6;case 19:return"INVALID"}},"anonymous"),rules:[/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:journey\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:section\s[^#:\n;]+)/i,/^(?:[^#:\n;]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,9,11,14,15,16,17,18,19],inclusive:!0}}};return b}();f.lexer=p;function m(){this.yy={}}return X(m,"Parser"),m.prototype=f,f.Parser=m,new m}();Lut.parser=Lut;var iXi=Lut,eW="",ebt=[],ule=[],hle=[],aXi=X(function(){ebt.length=0,ule.length=0,eW="",hle.length=0,M1()},"clear"),sXi=X(function(e){eW=e,ebt.push(e)},"addSection"),oXi=X(function(){return ebt},"getSections"),lXi=X(function(){let e=yTn();const t=100;let r=0;for(;!e&&r{r.people&&e.push(...r.people)}),[...new Set(e)].sort()},"updateActors"),uXi=X(function(e,t){const r=t.substr(1).split(":");let a=0,s=[];r.length===1?(a=Number(r[0]),s=[]):(a=Number(r[0]),s=r[1].split(","));const o=s.map(h=>h.trim()),u={section:eW,type:eW,people:o,task:e,score:a};hle.push(u)},"addTask"),hXi=X(function(e){const t={section:eW,type:eW,description:e,task:e,classes:[]};ule.push(t)},"addTaskOrg"),yTn=X(function(){const e=X(function(r){return hle[r].processed},"compileTask");let t=!0;for(const[r,a]of hle.entries())e(r),t=t&&a.processed;return t},"compileTasks"),dXi=X(function(){return cXi()},"getActors"),vTn={getConfig:X(()=>nn().journey,"getConfig"),clear:aXi,setDiagramTitle:Og,getDiagramTitle:P1,setAccTitle:N1,getAccTitle:Mp,setAccDescription:Pp,getAccDescription:Bp,addSection:sXi,getSections:oXi,getTasks:lXi,addTask:uXi,addTaskOrg:hXi,getActors:dXi},fXi=X(e=>`.label { + font-family: ${e.fontFamily}; + color: ${e.textColor}; + } + .mouth { + stroke: #666; + } + + line { + stroke: ${e.textColor} + } + + .legend { + fill: ${e.textColor}; + font-family: ${e.fontFamily}; + } + + .label text { + fill: #333; + } + .label { + color: ${e.textColor} + } + + .face { + ${e.faceColor?`fill: ${e.faceColor}`:"fill: #FFF8DC"}; + stroke: #999; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + + .node .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + .arrowheadPath { + fill: ${e.arrowheadColor}; + } + + .edgePath .path { + stroke: ${e.lineColor}; + stroke-width: 1.5px; + } + + .flowchart-link { + stroke: ${e.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${e.edgeLabelBackground}; + rect { + opacity: 0.5; + } + text-align: center; + } + + .cluster rect { + } + + .cluster text { + fill: ${e.titleColor}; + } + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: ${e.fontFamily}; + font-size: 12px; + background: ${e.tertiaryColor}; + border: 1px solid ${e.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .task-type-0, .section-type-0 { + ${e.fillType0?`fill: ${e.fillType0}`:""}; + } + .task-type-1, .section-type-1 { + ${e.fillType0?`fill: ${e.fillType1}`:""}; + } + .task-type-2, .section-type-2 { + ${e.fillType0?`fill: ${e.fillType2}`:""}; + } + .task-type-3, .section-type-3 { + ${e.fillType0?`fill: ${e.fillType3}`:""}; + } + .task-type-4, .section-type-4 { + ${e.fillType0?`fill: ${e.fillType4}`:""}; + } + .task-type-5, .section-type-5 { + ${e.fillType0?`fill: ${e.fillType5}`:""}; + } + .task-type-6, .section-type-6 { + ${e.fillType0?`fill: ${e.fillType6}`:""}; + } + .task-type-7, .section-type-7 { + ${e.fillType0?`fill: ${e.fillType7}`:""}; + } + + .actor-0 { + ${e.actor0?`fill: ${e.actor0}`:""}; + } + .actor-1 { + ${e.actor1?`fill: ${e.actor1}`:""}; + } + .actor-2 { + ${e.actor2?`fill: ${e.actor2}`:""}; + } + .actor-3 { + ${e.actor3?`fill: ${e.actor3}`:""}; + } + .actor-4 { + ${e.actor4?`fill: ${e.actor4}`:""}; + } + .actor-5 { + ${e.actor5?`fill: ${e.actor5}`:""}; + } + ${Lce()} +`,"getStyles"),pXi=fXi,tbt=X(function(e,t){return vke(e,t)},"drawRect"),gXi=X(function(e,t){const a=e.append("circle").attr("cx",t.cx).attr("cy",t.cy).attr("class","face").attr("r",15).attr("stroke-width",2).attr("overflow","visible"),s=e.append("g");s.append("circle").attr("cx",t.cx-15/3).attr("cy",t.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666"),s.append("circle").attr("cx",t.cx+15/3).attr("cy",t.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666");function o(f){const p=_S().startAngle(Math.PI/2).endAngle(3*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);f.append("path").attr("class","mouth").attr("d",p).attr("transform","translate("+t.cx+","+(t.cy+2)+")")}X(o,"smile");function u(f){const p=_S().startAngle(3*Math.PI/2).endAngle(5*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);f.append("path").attr("class","mouth").attr("d",p).attr("transform","translate("+t.cx+","+(t.cy+7)+")")}X(u,"sad");function h(f){f.append("line").attr("class","mouth").attr("stroke",2).attr("x1",t.cx-5).attr("y1",t.cy+7).attr("x2",t.cx+5).attr("y2",t.cy+7).attr("class","mouth").attr("stroke-width","1px").attr("stroke","#666")}return X(h,"ambivalent"),t.score>3?o(s):t.score<3?u(s):h(s),a},"drawFace"),bXn=X(function(e,t){const r=e.append("circle");return r.attr("cx",t.cx),r.attr("cy",t.cy),r.attr("class","actor-"+t.pos),r.attr("fill",t.fill),r.attr("stroke",t.stroke),r.attr("r",t.r),r.class!==void 0&&r.attr("class",r.class),t.title!==void 0&&r.append("title").text(t.title),r},"drawCircle"),yXn=X(function(e,t){return f9i(e,t)},"drawText"),mXi=X(function(e,t){function r(s,o,u,h,f){return s+","+o+" "+(s+u)+","+o+" "+(s+u)+","+(o+h-f)+" "+(s+u-f*1.2)+","+(o+h)+" "+s+","+(o+h)}X(r,"genPoints");const a=e.append("polygon");a.attr("points",r(t.x,t.y,50,20,7)),a.attr("class","labelBox"),t.y=t.y+t.labelMargin,t.x=t.x+.5*t.labelMargin,yXn(e,t)},"drawLabel"),bXi=X(function(e,t,r){const a=e.append("g"),s=Ww();s.x=t.x,s.y=t.y,s.fill=t.fill,s.width=r.width*t.taskCount+r.diagramMarginX*(t.taskCount-1),s.height=r.height,s.class="journey-section section-type-"+t.num,s.rx=3,s.ry=3,tbt(a,s),vXn(r)(t.text,a,s.x,s.y,s.width,s.height,{class:"journey-section section-type-"+t.num},r,t.colour)},"drawSection"),_Tn=-1,yXi=X(function(e,t,r){const a=t.x+r.width/2,s=e.append("g");_Tn++;const o=300+5*30;s.append("line").attr("id","task"+_Tn).attr("x1",a).attr("y1",t.y).attr("x2",a).attr("y2",o).attr("class","task-line").attr("stroke-width","1px").attr("stroke-dasharray","4 2").attr("stroke","#666"),gXi(s,{cx:a,cy:300+(5-t.score)*30,score:t.score});const u=Ww();u.x=t.x,u.y=t.y,u.fill=t.fill,u.width=r.width,u.height=r.height,u.class="task task-type-"+t.num,u.rx=3,u.ry=3,tbt(s,u);let h=t.x+14;t.people.forEach(f=>{const p=t.actors[f].color,m={cx:h,cy:t.y,r:7,fill:p,stroke:"#000",title:f,pos:t.actors[f].position};bXn(s,m),h+=10}),vXn(r)(t.task,s,u.x,u.y,u.width,u.height,{class:"task"},r,t.colour)},"drawTask"),vXi=X(function(e,t){rYn(e,t)},"drawBackgroundRect"),vXn=function(){function e(s,o,u,h,f,p,m,b){const _=o.append("text").attr("x",u+f/2).attr("y",h+p/2+5).style("font-color",b).style("text-anchor","middle").text(s);a(_,m)}X(e,"byText");function t(s,o,u,h,f,p,m,b,_){const{taskFontSize:w,taskFontFamily:S}=b,C=s.split(//gi);for(let A=0;A{const o=I7[s].color,u={cx:20,cy:a,r:7,fill:o,stroke:"#000",pos:I7[s].position};dle.drawCircle(e,u);let h=e.append("text").attr("visibility","hidden").text(s);const f=h.node().getBoundingClientRect().width;h.remove();let p=[];if(f<=r)p=[s];else{const m=s.split(" ");let b="";h=e.append("text").attr("visibility","hidden"),m.forEach(_=>{const w=b?`${b} ${_}`:_;if(h.text(w),h.node().getBoundingClientRect().width>r){if(b&&p.push(b),b=_,h.text(_),h.node().getBoundingClientRect().width>r){let C="";for(const A of _)C+=A,h.text(C+"-"),h.node().getBoundingClientRect().width>r&&(p.push(C.slice(0,-1)+"-"),C=A);b=C}}else b=w}),b&&p.push(b),h.remove()}p.forEach((m,b)=>{const _={x:40,y:a+7+b*20,fill:"#666",text:m,textMargin:t.boxTextMargin??5},S=dle.drawText(e,_).node().getBoundingClientRect().width;S>Zxe&&S>t.leftMargin-S&&(Zxe=S)}),a+=Math.max(20,p.length*20)})}X(_Xn,"drawActorLegend");var A3=nn().journey,QN=0,EXi=X(function(e,t,r,a){const s=nn(),o=s.journey.titleColor,u=s.journey.titleFontSize,h=s.journey.titleFontFamily,f=s.securityLevel;let p;f==="sandbox"&&(p=gn("#i"+t));const m=gn(f==="sandbox"?p.nodes()[0].contentDocument.body:"body");jx.init();const b=m.select("#"+t);dle.initGraphics(b);const _=a.db.getTasks(),w=a.db.getDiagramTitle(),S=a.db.getActors();for(const L in I7)delete I7[L];let C=0;S.forEach(L=>{I7[L]={color:A3.actorColours[C%A3.actorColours.length],position:C},C++}),_Xn(b),QN=A3.leftMargin+Zxe,jx.insert(0,0,QN,Object.keys(I7).length*50),xXi(b,_,0);const A=jx.getBounds();w&&b.append("text").text(w).attr("x",QN).attr("font-size",u).attr("font-weight","bold").attr("y",25).attr("fill",o).attr("font-family",h);const k=A.stopy-A.starty+2*A3.diagramMarginY,I=QN+A.stopx+2*A3.diagramMarginX;yv(b,k,I,A3.useMaxWidth),b.append("line").attr("x1",QN).attr("y1",A3.height*4).attr("x2",I-QN-4).attr("y2",A3.height*4).attr("stroke-width",4).attr("stroke","black").attr("marker-end","url(#arrowhead)");const N=w?70:0;b.attr("viewBox",`${A.startx} -25 ${I} ${k+N}`),b.attr("preserveAspectRatio","xMinYMin meet"),b.attr("height",k+N+25)},"draw"),jx={data:{startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},verticalPos:0,sequenceItems:[],init:X(function(){this.sequenceItems=[],this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0},"init"),updateVal:X(function(e,t,r,a){e[t]===void 0?e[t]=r:e[t]=a(r,e[t])},"updateVal"),updateBounds:X(function(e,t,r,a){const s=nn().journey,o=this;let u=0;function h(f){return X(function(m){u++;const b=o.sequenceItems.length-u+1;o.updateVal(m,"starty",t-b*s.boxMargin,Math.min),o.updateVal(m,"stopy",a+b*s.boxMargin,Math.max),o.updateVal(jx.data,"startx",e-b*s.boxMargin,Math.min),o.updateVal(jx.data,"stopx",r+b*s.boxMargin,Math.max),f!=="activation"&&(o.updateVal(m,"startx",e-b*s.boxMargin,Math.min),o.updateVal(m,"stopx",r+b*s.boxMargin,Math.max),o.updateVal(jx.data,"starty",t-b*s.boxMargin,Math.min),o.updateVal(jx.data,"stopy",a+b*s.boxMargin,Math.max))},"updateItemBounds")}X(h,"updateFn"),this.sequenceItems.forEach(h())},"updateBounds"),insert:X(function(e,t,r,a){const s=Math.min(e,r),o=Math.max(e,r),u=Math.min(t,a),h=Math.max(t,a);this.updateVal(jx.data,"startx",s,Math.min),this.updateVal(jx.data,"starty",u,Math.min),this.updateVal(jx.data,"stopx",o,Math.max),this.updateVal(jx.data,"stopy",h,Math.max),this.updateBounds(s,u,o,h)},"insert"),bumpVerticalPos:X(function(e){this.verticalPos=this.verticalPos+e,this.data.stopy=this.verticalPos},"bumpVerticalPos"),getVerticalPos:X(function(){return this.verticalPos},"getVerticalPos"),getBounds:X(function(){return this.data},"getBounds")},tat=A3.sectionFills,wTn=A3.sectionColours,xXi=X(function(e,t,r){const a=nn().journey;let s="";const o=a.height*2+a.diagramMarginY,u=r+o;let h=0,f="#CCC",p="black",m=0;for(const[b,_]of t.entries()){if(s!==_.section){f=tat[h%tat.length],m=h%tat.length,p=wTn[h%wTn.length];let S=0;const C=_.section;for(let k=b;k(I7[C]&&(S[C]=I7[C]),S),{});_.x=b*a.taskMargin+b*a.width+QN,_.y=u,_.width=a.diagramMarginX,_.height=a.diagramMarginY,_.colour=p,_.fill=f,_.num=m,_.actors=w,dle.drawTask(e,_,a),jx.insert(_.x,_.y,_.x+_.width+a.taskMargin,300+5*30)}},"drawTasks"),ETn={setConf:wXi,draw:EXi},SXi={parser:iXi,db:vTn,renderer:ETn,styles:pXi,init:X(e=>{ETn.setConf(e.journey),vTn.clear()},"init")};const TXi=Object.freeze(Object.defineProperty({__proto__:null,diagram:SXi},Symbol.toStringTag,{value:"Module"}));var Dut=function(){var e=X(function(_,w,S,C){for(S=S||{},C=_.length;C--;S[_[C]]=w);return S},"o"),t=[6,8,10,11,12,14,16,17,20,21],r=[1,9],a=[1,10],s=[1,11],o=[1,12],u=[1,13],h=[1,16],f=[1,17],p={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,timeline:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NEWLINE:10,title:11,acc_title:12,acc_title_value:13,acc_descr:14,acc_descr_value:15,acc_descr_multiline_value:16,section:17,period_statement:18,event_statement:19,period:20,event:21,$accept:0,$end:1},terminals_:{2:"error",4:"timeline",6:"EOF",8:"SPACE",10:"NEWLINE",11:"title",12:"acc_title",13:"acc_title_value",14:"acc_descr",15:"acc_descr_value",16:"acc_descr_multiline_value",17:"section",20:"period",21:"event"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[9,1],[9,2],[9,2],[9,1],[9,1],[9,1],[9,1],[18,1],[19,1]],performAction:X(function(w,S,C,A,k,I,N){var L=I.length-1;switch(k){case 1:return I[L-1];case 2:this.$=[];break;case 3:I[L-1].push(I[L]),this.$=I[L-1];break;case 4:case 5:this.$=I[L];break;case 6:case 7:this.$=[];break;case 8:A.getCommonDb().setDiagramTitle(I[L].substr(6)),this.$=I[L].substr(6);break;case 9:this.$=I[L].trim(),A.getCommonDb().setAccTitle(this.$);break;case 10:case 11:this.$=I[L].trim(),A.getCommonDb().setAccDescription(this.$);break;case 12:A.addSection(I[L].substr(8)),this.$=I[L].substr(8);break;case 15:A.addTask(I[L],0,""),this.$=I[L];break;case 16:A.addEvent(I[L].substr(2)),this.$=I[L];break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},e(t,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:r,12:a,14:s,16:o,17:u,18:14,19:15,20:h,21:f},e(t,[2,7],{1:[2,1]}),e(t,[2,3]),{9:18,11:r,12:a,14:s,16:o,17:u,18:14,19:15,20:h,21:f},e(t,[2,5]),e(t,[2,6]),e(t,[2,8]),{13:[1,19]},{15:[1,20]},e(t,[2,11]),e(t,[2,12]),e(t,[2,13]),e(t,[2,14]),e(t,[2,15]),e(t,[2,16]),e(t,[2,4]),e(t,[2,9]),e(t,[2,10])],defaultActions:{},parseError:X(function(w,S){if(S.recoverable)this.trace(w);else{var C=new Error(w);throw C.hash=S,C}},"parseError"),parse:X(function(w){var S=this,C=[0],A=[],k=[null],I=[],N=this.table,L="",P=0,M=0,F=2,U=1,$=I.slice.call(arguments,1),G=Object.create(this.lexer),B={yy:{}};for(var Z in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Z)&&(B.yy[Z]=this.yy[Z]);G.setInput(w,B.yy),B.yy.lexer=G,B.yy.parser=this,typeof G.yylloc>"u"&&(G.yylloc={});var z=G.yylloc;I.push(z);var Y=G.options&&G.options.ranges;typeof B.yy.parseError=="function"?this.parseError=B.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function W(ve){C.length=C.length-2*ve,k.length=k.length-ve,I.length=I.length-ve}X(W,"popStack");function Q(){var ve;return ve=A.pop()||G.lex()||U,typeof ve!="number"&&(ve instanceof Array&&(A=ve,ve=A.pop()),ve=S.symbols_[ve]||ve),ve}X(Q,"lex");for(var V,j,ee,te,ne={},se,ie,ge,ce;;){if(j=C[C.length-1],this.defaultActions[j]?ee=this.defaultActions[j]:((V===null||typeof V>"u")&&(V=Q()),ee=N[j]&&N[j][V]),typeof ee>"u"||!ee.length||!ee[0]){var be="";ce=[];for(se in N[j])this.terminals_[se]&&se>F&&ce.push("'"+this.terminals_[se]+"'");G.showPosition?be="Parse error on line "+(P+1)+`: +`+G.showPosition()+` +Expecting `+ce.join(", ")+", got '"+(this.terminals_[V]||V)+"'":be="Parse error on line "+(P+1)+": Unexpected "+(V==U?"end of input":"'"+(this.terminals_[V]||V)+"'"),this.parseError(be,{text:G.match,token:this.terminals_[V]||V,line:G.yylineno,loc:z,expected:ce})}if(ee[0]instanceof Array&&ee.length>1)throw new Error("Parse Error: multiple actions possible at state: "+j+", token: "+V);switch(ee[0]){case 1:C.push(V),k.push(G.yytext),I.push(G.yylloc),C.push(ee[1]),V=null,M=G.yyleng,L=G.yytext,P=G.yylineno,z=G.yylloc;break;case 2:if(ie=this.productions_[ee[1]][1],ne.$=k[k.length-ie],ne._$={first_line:I[I.length-(ie||1)].first_line,last_line:I[I.length-1].last_line,first_column:I[I.length-(ie||1)].first_column,last_column:I[I.length-1].last_column},Y&&(ne._$.range=[I[I.length-(ie||1)].range[0],I[I.length-1].range[1]]),te=this.performAction.apply(ne,[L,M,P,B.yy,ee[1],k,I].concat($)),typeof te<"u")return te;ie&&(C=C.slice(0,-1*ie*2),k=k.slice(0,-1*ie),I=I.slice(0,-1*ie)),C.push(this.productions_[ee[1]][0]),k.push(ne.$),I.push(ne._$),ge=N[C[C.length-2]][C[C.length-1]],C.push(ge);break;case 3:return!0}}return!0},"parse")},m=function(){var _={EOF:1,parseError:X(function(S,C){if(this.yy.parser)this.yy.parser.parseError(S,C);else throw new Error(S)},"parseError"),setInput:X(function(w,S){return this.yy=S||this.yy||{},this._input=w,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var w=this._input[0];this.yytext+=w,this.yyleng++,this.offset++,this.match+=w,this.matched+=w;var S=w.match(/(?:\r\n?|\n).*/g);return S?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),w},"input"),unput:X(function(w){var S=w.length,C=w.split(/(?:\r\n?|\n)/g);this._input=w+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-S),this.offset-=S;var A=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),C.length-1&&(this.yylineno-=C.length-1);var k=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:C?(C.length===A.length?this.yylloc.first_column:0)+A[A.length-C.length].length-C[0].length:this.yylloc.first_column-S},this.options.ranges&&(this.yylloc.range=[k[0],k[0]+this.yyleng-S]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(w){this.unput(this.match.slice(w))},"less"),pastInput:X(function(){var w=this.matched.substr(0,this.matched.length-this.match.length);return(w.length>20?"...":"")+w.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var w=this.match;return w.length<20&&(w+=this._input.substr(0,20-w.length)),(w.substr(0,20)+(w.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var w=this.pastInput(),S=new Array(w.length+1).join("-");return w+this.upcomingInput()+` +`+S+"^"},"showPosition"),test_match:X(function(w,S){var C,A,k;if(this.options.backtrack_lexer&&(k={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(k.yylloc.range=this.yylloc.range.slice(0))),A=w[0].match(/(?:\r\n?|\n).*/g),A&&(this.yylineno+=A.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:A?A[A.length-1].length-A[A.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+w[0].length},this.yytext+=w[0],this.match+=w[0],this.matches=w,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(w[0].length),this.matched+=w[0],C=this.performAction.call(this,this.yy,this,S,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),C)return C;if(this._backtrack){for(var I in k)this[I]=k[I];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var w,S,C,A;this._more||(this.yytext="",this.match="");for(var k=this._currentRules(),I=0;IS[0].length)){if(S=C,A=I,this.options.backtrack_lexer){if(w=this.test_match(C,k[I]),w!==!1)return w;if(this._backtrack){S=!1;continue}else return!1}else if(!this.options.flex)break}return S?(w=this.test_match(S,k[A]),w!==!1?w:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var S=this.next();return S||this.lex()},"lex"),begin:X(function(S){this.conditionStack.push(S)},"begin"),popState:X(function(){var S=this.conditionStack.length-1;return S>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(S){return S=this.conditionStack.length-1-Math.abs(S||0),S>=0?this.conditionStack[S]:"INITIAL"},"topState"),pushState:X(function(S){this.begin(S)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(S,C,A,k){switch(A){case 0:break;case 1:break;case 2:return 10;case 3:break;case 4:break;case 5:return 4;case 6:return 11;case 7:return this.begin("acc_title"),12;case 8:return this.popState(),"acc_title_value";case 9:return this.begin("acc_descr"),14;case 10:return this.popState(),"acc_descr_value";case 11:this.begin("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:return 17;case 15:return 21;case 16:return 20;case 17:return 6;case 18:return"INVALID"}},"anonymous"),rules:[/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:timeline\b)/i,/^(?:title\s[^\n]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:section\s[^:\n]+)/i,/^(?::\s(?:[^:\n]|:(?!\s))+)/i,/^(?:[^#:\n]+)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,9,11,14,15,16,17,18],inclusive:!0}}};return _}();p.lexer=m;function b(){this.yy={}}return X(b,"Parser"),b.prototype=p,p.Parser=b,new b}();Dut.parser=Dut;var CXi=Dut,wXn={};KCe(wXn,{addEvent:()=>RXn,addSection:()=>TXn,addTask:()=>kXn,addTaskOrg:()=>IXn,clear:()=>SXn,default:()=>AXi,getCommonDb:()=>xXn,getSections:()=>CXn,getTasks:()=>AXn});var tW="",EXn=0,nbt=[],PTe=[],nW=[],xXn=X(()=>$0t,"getCommonDb"),SXn=X(function(){nbt.length=0,PTe.length=0,tW="",nW.length=0,M1()},"clear"),TXn=X(function(e){tW=e,nbt.push(e)},"addSection"),CXn=X(function(){return nbt},"getSections"),AXn=X(function(){let e=xTn();const t=100;let r=0;for(;!e&&rr.id===EXn-1).events.push(e)},"addEvent"),IXn=X(function(e){const t={section:tW,type:tW,description:e,task:e,classes:[]};PTe.push(t)},"addTaskOrg"),xTn=X(function(){const e=X(function(r){return nW[r].processed},"compileTask");let t=!0;for(const[r,a]of nW.entries())e(r),t=t&&a.processed;return t},"compileTasks"),AXi={clear:SXn,getCommonDb:xXn,addSection:TXn,getSections:CXn,getTasks:AXn,addTask:kXn,addTaskOrg:IXn,addEvent:RXn},kXi=12,t6e=X(function(e,t){const r=e.append("rect");return r.attr("x",t.x),r.attr("y",t.y),r.attr("fill",t.fill),r.attr("stroke",t.stroke),r.attr("width",t.width),r.attr("height",t.height),r.attr("rx",t.rx),r.attr("ry",t.ry),t.class!==void 0&&r.attr("class",t.class),r},"drawRect"),RXi=X(function(e,t){const a=e.append("circle").attr("cx",t.cx).attr("cy",t.cy).attr("class","face").attr("r",15).attr("stroke-width",2).attr("overflow","visible"),s=e.append("g");s.append("circle").attr("cx",t.cx-15/3).attr("cy",t.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666"),s.append("circle").attr("cx",t.cx+15/3).attr("cy",t.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666");function o(f){const p=_S().startAngle(Math.PI/2).endAngle(3*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);f.append("path").attr("class","mouth").attr("d",p).attr("transform","translate("+t.cx+","+(t.cy+2)+")")}X(o,"smile");function u(f){const p=_S().startAngle(3*Math.PI/2).endAngle(5*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);f.append("path").attr("class","mouth").attr("d",p).attr("transform","translate("+t.cx+","+(t.cy+7)+")")}X(u,"sad");function h(f){f.append("line").attr("class","mouth").attr("stroke",2).attr("x1",t.cx-5).attr("y1",t.cy+7).attr("x2",t.cx+5).attr("y2",t.cy+7).attr("class","mouth").attr("stroke-width","1px").attr("stroke","#666")}return X(h,"ambivalent"),t.score>3?o(s):t.score<3?u(s):h(s),a},"drawFace"),IXi=X(function(e,t){const r=e.append("circle");return r.attr("cx",t.cx),r.attr("cy",t.cy),r.attr("class","actor-"+t.pos),r.attr("fill",t.fill),r.attr("stroke",t.stroke),r.attr("r",t.r),r.class!==void 0&&r.attr("class",r.class),t.title!==void 0&&r.append("title").text(t.title),r},"drawCircle"),NXn=X(function(e,t){const r=t.text.replace(//gi," "),a=e.append("text");a.attr("x",t.x),a.attr("y",t.y),a.attr("class","legend"),a.style("text-anchor",t.anchor),t.class!==void 0&&a.attr("class",t.class);const s=a.append("tspan");return s.attr("x",t.x+t.textMargin*2),s.text(r),a},"drawText"),NXi=X(function(e,t){function r(s,o,u,h,f){return s+","+o+" "+(s+u)+","+o+" "+(s+u)+","+(o+h-f)+" "+(s+u-f*1.2)+","+(o+h)+" "+s+","+(o+h)}X(r,"genPoints");const a=e.append("polygon");a.attr("points",r(t.x,t.y,50,20,7)),a.attr("class","labelBox"),t.y=t.y+t.labelMargin,t.x=t.x+.5*t.labelMargin,NXn(e,t)},"drawLabel"),OXi=X(function(e,t,r){const a=e.append("g"),s=rbt();s.x=t.x,s.y=t.y,s.fill=t.fill,s.width=r.width,s.height=r.height,s.class="journey-section section-type-"+t.num,s.rx=3,s.ry=3,t6e(a,s),OXn(r)(t.text,a,s.x,s.y,s.width,s.height,{class:"journey-section section-type-"+t.num},r,t.colour)},"drawSection"),STn=-1,LXi=X(function(e,t,r){const a=t.x+r.width/2,s=e.append("g");STn++;const o=300+5*30;s.append("line").attr("id","task"+STn).attr("x1",a).attr("y1",t.y).attr("x2",a).attr("y2",o).attr("class","task-line").attr("stroke-width","1px").attr("stroke-dasharray","4 2").attr("stroke","#666"),RXi(s,{cx:a,cy:300+(5-t.score)*30,score:t.score});const u=rbt();u.x=t.x,u.y=t.y,u.fill=t.fill,u.width=r.width,u.height=r.height,u.class="task task-type-"+t.num,u.rx=3,u.ry=3,t6e(s,u),OXn(r)(t.task,s,u.x,u.y,u.width,u.height,{class:"task"},r,t.colour)},"drawTask"),DXi=X(function(e,t){t6e(e,{x:t.startx,y:t.starty,width:t.stopx-t.startx,height:t.stopy-t.starty,fill:t.fill,class:"rect"}).lower()},"drawBackgroundRect"),MXi=X(function(){return{x:0,y:0,fill:void 0,"text-anchor":"start",width:100,height:100,textMargin:0,rx:0,ry:0}},"getTextObj"),rbt=X(function(){return{x:0,y:0,width:100,anchor:"start",height:100,rx:0,ry:0}},"getNoteRect"),OXn=function(){function e(s,o,u,h,f,p,m,b){const _=o.append("text").attr("x",u+f/2).attr("y",h+p/2+5).style("font-color",b).style("text-anchor","middle").text(s);a(_,m)}X(e,"byText");function t(s,o,u,h,f,p,m,b,_){const{taskFontSize:w,taskFontFamily:S}=b,C=s.split(//gi);for(let A=0;A)/).reverse(),s,o=[],u=1.1,h=r.attr("y"),f=parseFloat(r.attr("dy")),p=r.text(null).append("tspan").attr("x",0).attr("y",h).attr("dy",f+"em");for(let m=0;mt||s==="
    ")&&(o.pop(),p.text(o.join(" ").trim()),s==="
    "?o=[""]:o=[s],p=r.append("tspan").attr("x",0).attr("y",h).attr("dy",u+"em").text(s))})}X(ibt,"wrap");var BXi=X(function(e,t,r,a){var b;const s=r%kXi-1,o=e.append("g");t.section=s,o.attr("class",(t.class?t.class+" ":"")+"timeline-node "+("section-"+s));const u=o.append("g"),h=o.append("g"),p=h.append("text").text(t.descr).attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle").call(ibt,t.width).node().getBBox(),m=(b=a.fontSize)!=null&&b.replace?a.fontSize.replace("px",""):a.fontSize;return t.height=p.height+m*1.1*.5+t.padding,t.height=Math.max(t.height,t.maxHeight),t.width=t.width+2*t.padding,h.attr("transform","translate("+t.width/2+", "+t.padding/2+")"),$Xi(u,t,s,a),t},"drawNode"),FXi=X(function(e,t,r){var h;const a=e.append("g"),o=a.append("text").text(t.descr).attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle").call(ibt,t.width).node().getBBox(),u=(h=r.fontSize)!=null&&h.replace?r.fontSize.replace("px",""):r.fontSize;return a.remove(),o.height+u*1.1*.5+t.padding},"getVirtualNodeHeight"),$Xi=X(function(e,t,r){e.append("path").attr("id","node-"+t.id).attr("class","node-bkg node-"+t.type).attr("d",`M0 ${t.height-5} v${-t.height+2*5} q0,-5 5,-5 h${t.width-2*5} q5,0 5,5 v${t.height-5} H0 Z`),e.append("line").attr("class","node-line-"+r).attr("x1",0).attr("y1",t.height).attr("x2",t.width).attr("y2",t.height)},"defaultBkg"),GB={drawRect:t6e,drawCircle:IXi,drawSection:OXi,drawText:NXn,drawLabel:NXi,drawTask:LXi,drawBackgroundRect:DXi,getTextObj:MXi,getNoteRect:rbt,initGraphics:PXi,drawNode:BXi,getVirtualNodeHeight:FXi},UXi=X(function(e,t,r,a){var $,G,B;const s=nn(),o=(($=s.timeline)==null?void 0:$.leftMargin)??50;it.debug("timeline",a.db);const u=s.securityLevel;let h;u==="sandbox"&&(h=gn("#i"+t));const p=gn(u==="sandbox"?h.nodes()[0].contentDocument.body:"body").select("#"+t);p.append("g");const m=a.db.getTasks(),b=a.db.getCommonDb().getDiagramTitle();it.debug("task",m),GB.initGraphics(p);const _=a.db.getSections();it.debug("sections",_);let w=0,S=0,C=0,A=0,k=50+o,I=50;A=50;let N=0,L=!0;_.forEach(function(Z){const z={number:N,descr:Z,section:N,width:150,padding:20,maxHeight:w},Y=GB.getVirtualNodeHeight(p,z,s);it.debug("sectionHeight before draw",Y),w=Math.max(w,Y+20)});let P=0,M=0;it.debug("tasks.length",m.length);for(const[Z,z]of m.entries()){const Y={number:Z,descr:z,section:z.section,width:150,padding:20,maxHeight:S},W=GB.getVirtualNodeHeight(p,Y,s);it.debug("taskHeight before draw",W),S=Math.max(S,W+20),P=Math.max(P,z.events.length);let Q=0;for(const V of z.events){const j={descr:V,section:z.section,number:z.section,width:150,padding:20,maxHeight:50};Q+=GB.getVirtualNodeHeight(p,j,s)}z.events.length>0&&(Q+=(z.events.length-1)*10),M=Math.max(M,Q)}it.debug("maxSectionHeight before draw",w),it.debug("maxTaskHeight before draw",S),_&&_.length>0?_.forEach(Z=>{const z=m.filter(V=>V.section===Z),Y={number:N,descr:Z,section:N,width:200*Math.max(z.length,1)-50,padding:20,maxHeight:w};it.debug("sectionNode",Y);const W=p.append("g"),Q=GB.drawNode(W,Y,N,s);it.debug("sectionNode output",Q),W.attr("transform",`translate(${k}, ${A})`),I+=w+50,z.length>0&&TTn(p,z,N,k,I,S,s,P,M,w,!1),k+=200*Math.max(z.length,1),I=A,N++}):(L=!1,TTn(p,m,N,k,I,S,s,P,M,w,!0));const F=p.node().getBBox();it.debug("bounds",F),b&&p.append("text").text(b).attr("x",F.width/2-o).attr("font-size","4ex").attr("font-weight","bold").attr("y",20),C=L?w+S+150:S+100,p.append("g").attr("class","lineWrapper").append("line").attr("x1",o).attr("y1",C).attr("x2",F.width+3*o).attr("y2",C).attr("stroke-width",4).attr("stroke","black").attr("marker-end","url(#arrowhead)"),rce(void 0,p,((G=s.timeline)==null?void 0:G.padding)??50,((B=s.timeline)==null?void 0:B.useMaxWidth)??!1)},"draw"),TTn=X(function(e,t,r,a,s,o,u,h,f,p,m){var b;for(const _ of t){const w={descr:_.task,section:r,number:r,width:150,padding:20,maxHeight:o};it.debug("taskNode",w);const S=e.append("g").attr("class","taskWrapper"),A=GB.drawNode(S,w,r,u).height;if(it.debug("taskHeight after draw",A),S.attr("transform",`translate(${a}, ${s})`),o=Math.max(o,A),_.events){const k=e.append("g").attr("class","lineWrapper");let I=o;s+=100,I=I+zXi(e,_.events,r,a,s,u),s-=100,k.append("line").attr("x1",a+190/2).attr("y1",s+o).attr("x2",a+190/2).attr("y2",s+o+100+f+100).attr("stroke-width",2).attr("stroke","black").attr("marker-end","url(#arrowhead)").attr("stroke-dasharray","5,5")}a=a+200,m&&!((b=u.timeline)!=null&&b.disableMulticolor)&&r++}s=s-10},"drawTasks"),zXi=X(function(e,t,r,a,s,o){let u=0;const h=s;s=s+100;for(const f of t){const p={descr:f,section:r,number:r,width:150,padding:20,maxHeight:50};it.debug("eventNode",p);const m=e.append("g").attr("class","eventWrapper"),_=GB.drawNode(m,p,r,o).height;u=u+_,m.attr("transform",`translate(${a}, ${s})`),s=s+10+_}return s=h,u},"drawEvents"),GXi={setConf:X(()=>{},"setConf"),draw:UXi},qXi=X(e=>{let t="";for(let r=0;r` + .edge { + stroke-width: 3; + } + ${qXi(e)} + .section-root rect, .section-root path, .section-root circle { + fill: ${e.git0}; + } + .section-root text { + fill: ${e.gitBranchLabel0}; + } + .icon-container { + height:100%; + display: flex; + justify-content: center; + align-items: center; + } + .edge { + fill: none; + } + .eventWrapper { + filter: brightness(120%); + } +`,"getStyles"),VXi=HXi,YXi={db:wXn,renderer:GXi,parser:CXi,styles:VXi};const jXi=Object.freeze(Object.defineProperty({__proto__:null,diagram:YXi},Symbol.toStringTag,{value:"Module"})),hm=[];for(let e=0;e<256;++e)hm.push((e+256).toString(16).slice(1));function WXi(e,t=0){return(hm[e[t+0]]+hm[e[t+1]]+hm[e[t+2]]+hm[e[t+3]]+"-"+hm[e[t+4]]+hm[e[t+5]]+"-"+hm[e[t+6]]+hm[e[t+7]]+"-"+hm[e[t+8]]+hm[e[t+9]]+"-"+hm[e[t+10]]+hm[e[t+11]]+hm[e[t+12]]+hm[e[t+13]]+hm[e[t+14]]+hm[e[t+15]]).toLowerCase()}let nat;const KXi=new Uint8Array(16);function XXi(){if(!nat){if(typeof crypto>"u"||!crypto.getRandomValues)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");nat=crypto.getRandomValues.bind(crypto)}return nat(KXi)}const QXi=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),CTn={randomUUID:QXi};function ZXi(e,t,r){var s;if(CTn.randomUUID&&!e)return CTn.randomUUID();e=e||{};const a=e.random??((s=e.rng)==null?void 0:s.call(e))??XXi();if(a.length<16)throw new Error("Random bytes length must be >= 16");return a[6]=a[6]&15|64,a[8]=a[8]&63|128,WXi(a)}var Mut=function(){var e=X(function(L,P,M,F){for(M=M||{},F=L.length;F--;M[L[F]]=P);return M},"o"),t=[1,4],r=[1,13],a=[1,12],s=[1,15],o=[1,16],u=[1,20],h=[1,19],f=[6,7,8],p=[1,26],m=[1,24],b=[1,25],_=[6,7,11],w=[1,6,13,15,16,19,22],S=[1,33],C=[1,34],A=[1,6,7,11,13,15,16,19,22],k={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,mindMap:4,spaceLines:5,SPACELINE:6,NL:7,MINDMAP:8,document:9,stop:10,EOF:11,statement:12,SPACELIST:13,node:14,ICON:15,CLASS:16,nodeWithId:17,nodeWithoutId:18,NODE_DSTART:19,NODE_DESCR:20,NODE_DEND:21,NODE_ID:22,$accept:0,$end:1},terminals_:{2:"error",6:"SPACELINE",7:"NL",8:"MINDMAP",11:"EOF",13:"SPACELIST",15:"ICON",16:"CLASS",19:"NODE_DSTART",20:"NODE_DESCR",21:"NODE_DEND",22:"NODE_ID"},productions_:[0,[3,1],[3,2],[5,1],[5,2],[5,2],[4,2],[4,3],[10,1],[10,1],[10,1],[10,2],[10,2],[9,3],[9,2],[12,2],[12,2],[12,2],[12,1],[12,1],[12,1],[12,1],[12,1],[14,1],[14,1],[18,3],[17,1],[17,4]],performAction:X(function(P,M,F,U,$,G,B){var Z=G.length-1;switch($){case 6:case 7:return U;case 8:U.getLogger().trace("Stop NL ");break;case 9:U.getLogger().trace("Stop EOF ");break;case 11:U.getLogger().trace("Stop NL2 ");break;case 12:U.getLogger().trace("Stop EOF2 ");break;case 15:U.getLogger().info("Node: ",G[Z].id),U.addNode(G[Z-1].length,G[Z].id,G[Z].descr,G[Z].type);break;case 16:U.getLogger().trace("Icon: ",G[Z]),U.decorateNode({icon:G[Z]});break;case 17:case 21:U.decorateNode({class:G[Z]});break;case 18:U.getLogger().trace("SPACELIST");break;case 19:U.getLogger().trace("Node: ",G[Z].id),U.addNode(0,G[Z].id,G[Z].descr,G[Z].type);break;case 20:U.decorateNode({icon:G[Z]});break;case 25:U.getLogger().trace("node found ..",G[Z-2]),this.$={id:G[Z-1],descr:G[Z-1],type:U.getType(G[Z-2],G[Z])};break;case 26:this.$={id:G[Z],descr:G[Z],type:U.nodeType.DEFAULT};break;case 27:U.getLogger().trace("node found ..",G[Z-3]),this.$={id:G[Z-3],descr:G[Z-1],type:U.getType(G[Z-2],G[Z])};break}},"anonymous"),table:[{3:1,4:2,5:3,6:[1,5],8:t},{1:[3]},{1:[2,1]},{4:6,6:[1,7],7:[1,8],8:t},{6:r,7:[1,10],9:9,12:11,13:a,14:14,15:s,16:o,17:17,18:18,19:u,22:h},e(f,[2,3]),{1:[2,2]},e(f,[2,4]),e(f,[2,5]),{1:[2,6],6:r,12:21,13:a,14:14,15:s,16:o,17:17,18:18,19:u,22:h},{6:r,9:22,12:11,13:a,14:14,15:s,16:o,17:17,18:18,19:u,22:h},{6:p,7:m,10:23,11:b},e(_,[2,22],{17:17,18:18,14:27,15:[1,28],16:[1,29],19:u,22:h}),e(_,[2,18]),e(_,[2,19]),e(_,[2,20]),e(_,[2,21]),e(_,[2,23]),e(_,[2,24]),e(_,[2,26],{19:[1,30]}),{20:[1,31]},{6:p,7:m,10:32,11:b},{1:[2,7],6:r,12:21,13:a,14:14,15:s,16:o,17:17,18:18,19:u,22:h},e(w,[2,14],{7:S,11:C}),e(A,[2,8]),e(A,[2,9]),e(A,[2,10]),e(_,[2,15]),e(_,[2,16]),e(_,[2,17]),{20:[1,35]},{21:[1,36]},e(w,[2,13],{7:S,11:C}),e(A,[2,11]),e(A,[2,12]),{21:[1,37]},e(_,[2,25]),e(_,[2,27])],defaultActions:{2:[2,1],6:[2,2]},parseError:X(function(P,M){if(M.recoverable)this.trace(P);else{var F=new Error(P);throw F.hash=M,F}},"parseError"),parse:X(function(P){var M=this,F=[0],U=[],$=[null],G=[],B=this.table,Z="",z=0,Y=0,W=2,Q=1,V=G.slice.call(arguments,1),j=Object.create(this.lexer),ee={yy:{}};for(var te in this.yy)Object.prototype.hasOwnProperty.call(this.yy,te)&&(ee.yy[te]=this.yy[te]);j.setInput(P,ee.yy),ee.yy.lexer=j,ee.yy.parser=this,typeof j.yylloc>"u"&&(j.yylloc={});var ne=j.yylloc;G.push(ne);var se=j.options&&j.options.ranges;typeof ee.yy.parseError=="function"?this.parseError=ee.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function ie(Le){F.length=F.length-2*Le,$.length=$.length-Le,G.length=G.length-Le}X(ie,"popStack");function ge(){var Le;return Le=U.pop()||j.lex()||Q,typeof Le!="number"&&(Le instanceof Array&&(U=Le,Le=U.pop()),Le=M.symbols_[Le]||Le),Le}X(ge,"lex");for(var ce,be,ve,De,ye={},Ee,he,we,Ce;;){if(be=F[F.length-1],this.defaultActions[be]?ve=this.defaultActions[be]:((ce===null||typeof ce>"u")&&(ce=ge()),ve=B[be]&&B[be][ce]),typeof ve>"u"||!ve.length||!ve[0]){var Ie="";Ce=[];for(Ee in B[be])this.terminals_[Ee]&&Ee>W&&Ce.push("'"+this.terminals_[Ee]+"'");j.showPosition?Ie="Parse error on line "+(z+1)+`: +`+j.showPosition()+` +Expecting `+Ce.join(", ")+", got '"+(this.terminals_[ce]||ce)+"'":Ie="Parse error on line "+(z+1)+": Unexpected "+(ce==Q?"end of input":"'"+(this.terminals_[ce]||ce)+"'"),this.parseError(Ie,{text:j.match,token:this.terminals_[ce]||ce,line:j.yylineno,loc:ne,expected:Ce})}if(ve[0]instanceof Array&&ve.length>1)throw new Error("Parse Error: multiple actions possible at state: "+be+", token: "+ce);switch(ve[0]){case 1:F.push(ce),$.push(j.yytext),G.push(j.yylloc),F.push(ve[1]),ce=null,Y=j.yyleng,Z=j.yytext,z=j.yylineno,ne=j.yylloc;break;case 2:if(he=this.productions_[ve[1]][1],ye.$=$[$.length-he],ye._$={first_line:G[G.length-(he||1)].first_line,last_line:G[G.length-1].last_line,first_column:G[G.length-(he||1)].first_column,last_column:G[G.length-1].last_column},se&&(ye._$.range=[G[G.length-(he||1)].range[0],G[G.length-1].range[1]]),De=this.performAction.apply(ye,[Z,Y,z,ee.yy,ve[1],$,G].concat(V)),typeof De<"u")return De;he&&(F=F.slice(0,-1*he*2),$=$.slice(0,-1*he),G=G.slice(0,-1*he)),F.push(this.productions_[ve[1]][0]),$.push(ye.$),G.push(ye._$),we=B[F[F.length-2]][F[F.length-1]],F.push(we);break;case 3:return!0}}return!0},"parse")},I=function(){var L={EOF:1,parseError:X(function(M,F){if(this.yy.parser)this.yy.parser.parseError(M,F);else throw new Error(M)},"parseError"),setInput:X(function(P,M){return this.yy=M||this.yy||{},this._input=P,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var P=this._input[0];this.yytext+=P,this.yyleng++,this.offset++,this.match+=P,this.matched+=P;var M=P.match(/(?:\r\n?|\n).*/g);return M?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),P},"input"),unput:X(function(P){var M=P.length,F=P.split(/(?:\r\n?|\n)/g);this._input=P+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-M),this.offset-=M;var U=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),F.length-1&&(this.yylineno-=F.length-1);var $=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:F?(F.length===U.length?this.yylloc.first_column:0)+U[U.length-F.length].length-F[0].length:this.yylloc.first_column-M},this.options.ranges&&(this.yylloc.range=[$[0],$[0]+this.yyleng-M]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(P){this.unput(this.match.slice(P))},"less"),pastInput:X(function(){var P=this.matched.substr(0,this.matched.length-this.match.length);return(P.length>20?"...":"")+P.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var P=this.match;return P.length<20&&(P+=this._input.substr(0,20-P.length)),(P.substr(0,20)+(P.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var P=this.pastInput(),M=new Array(P.length+1).join("-");return P+this.upcomingInput()+` +`+M+"^"},"showPosition"),test_match:X(function(P,M){var F,U,$;if(this.options.backtrack_lexer&&($={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&($.yylloc.range=this.yylloc.range.slice(0))),U=P[0].match(/(?:\r\n?|\n).*/g),U&&(this.yylineno+=U.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:U?U[U.length-1].length-U[U.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+P[0].length},this.yytext+=P[0],this.match+=P[0],this.matches=P,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(P[0].length),this.matched+=P[0],F=this.performAction.call(this,this.yy,this,M,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),F)return F;if(this._backtrack){for(var G in $)this[G]=$[G];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var P,M,F,U;this._more||(this.yytext="",this.match="");for(var $=this._currentRules(),G=0;G<$.length;G++)if(F=this._input.match(this.rules[$[G]]),F&&(!M||F[0].length>M[0].length)){if(M=F,U=G,this.options.backtrack_lexer){if(P=this.test_match(F,$[G]),P!==!1)return P;if(this._backtrack){M=!1;continue}else return!1}else if(!this.options.flex)break}return M?(P=this.test_match(M,$[U]),P!==!1?P:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var M=this.next();return M||this.lex()},"lex"),begin:X(function(M){this.conditionStack.push(M)},"begin"),popState:X(function(){var M=this.conditionStack.length-1;return M>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(M){return M=this.conditionStack.length-1-Math.abs(M||0),M>=0?this.conditionStack[M]:"INITIAL"},"topState"),pushState:X(function(M){this.begin(M)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(M,F,U,$){switch(U){case 0:return M.getLogger().trace("Found comment",F.yytext),6;case 1:return 8;case 2:this.begin("CLASS");break;case 3:return this.popState(),16;case 4:this.popState();break;case 5:M.getLogger().trace("Begin icon"),this.begin("ICON");break;case 6:return M.getLogger().trace("SPACELINE"),6;case 7:return 7;case 8:return 15;case 9:M.getLogger().trace("end icon"),this.popState();break;case 10:return M.getLogger().trace("Exploding node"),this.begin("NODE"),19;case 11:return M.getLogger().trace("Cloud"),this.begin("NODE"),19;case 12:return M.getLogger().trace("Explosion Bang"),this.begin("NODE"),19;case 13:return M.getLogger().trace("Cloud Bang"),this.begin("NODE"),19;case 14:return this.begin("NODE"),19;case 15:return this.begin("NODE"),19;case 16:return this.begin("NODE"),19;case 17:return this.begin("NODE"),19;case 18:return 13;case 19:return 22;case 20:return 11;case 21:this.begin("NSTR2");break;case 22:return"NODE_DESCR";case 23:this.popState();break;case 24:M.getLogger().trace("Starting NSTR"),this.begin("NSTR");break;case 25:return M.getLogger().trace("description:",F.yytext),"NODE_DESCR";case 26:this.popState();break;case 27:return this.popState(),M.getLogger().trace("node end ))"),"NODE_DEND";case 28:return this.popState(),M.getLogger().trace("node end )"),"NODE_DEND";case 29:return this.popState(),M.getLogger().trace("node end ...",F.yytext),"NODE_DEND";case 30:return this.popState(),M.getLogger().trace("node end (("),"NODE_DEND";case 31:return this.popState(),M.getLogger().trace("node end (-"),"NODE_DEND";case 32:return this.popState(),M.getLogger().trace("node end (-"),"NODE_DEND";case 33:return this.popState(),M.getLogger().trace("node end (("),"NODE_DEND";case 34:return this.popState(),M.getLogger().trace("node end (("),"NODE_DEND";case 35:return M.getLogger().trace("Long description:",F.yytext),20;case 36:return M.getLogger().trace("Long description:",F.yytext),20}},"anonymous"),rules:[/^(?:\s*%%.*)/i,/^(?:mindmap\b)/i,/^(?::::)/i,/^(?:.+)/i,/^(?:\n)/i,/^(?:::icon\()/i,/^(?:[\s]+[\n])/i,/^(?:[\n]+)/i,/^(?:[^\)]+)/i,/^(?:\))/i,/^(?:-\))/i,/^(?:\(-)/i,/^(?:\)\))/i,/^(?:\))/i,/^(?:\(\()/i,/^(?:\{\{)/i,/^(?:\()/i,/^(?:\[)/i,/^(?:[\s]+)/i,/^(?:[^\(\[\n\)\{\}]+)/i,/^(?:$)/i,/^(?:["][`])/i,/^(?:[^`"]+)/i,/^(?:[`]["])/i,/^(?:["])/i,/^(?:[^"]+)/i,/^(?:["])/i,/^(?:[\)]\))/i,/^(?:[\)])/i,/^(?:[\]])/i,/^(?:\}\})/i,/^(?:\(-)/i,/^(?:-\))/i,/^(?:\(\()/i,/^(?:\()/i,/^(?:[^\)\]\(\}]+)/i,/^(?:.+(?!\(\())/i],conditions:{CLASS:{rules:[3,4],inclusive:!1},ICON:{rules:[8,9],inclusive:!1},NSTR2:{rules:[22,23],inclusive:!1},NSTR:{rules:[25,26],inclusive:!1},NODE:{rules:[21,24,27,28,29,30,31,32,33,34,35,36],inclusive:!1},INITIAL:{rules:[0,1,2,5,6,7,10,11,12,13,14,15,16,17,18,19,20],inclusive:!0}}};return L}();k.lexer=I;function N(){this.yy={}}return X(N,"Parser"),N.prototype=k,k.Parser=N,new N}();Mut.parser=Mut;var JXi=Mut,J6={DEFAULT:0,NO_BORDER:0,ROUNDED_RECT:1,RECT:2,CIRCLE:3,CLOUD:4,BANG:5,HEXAGON:6},sj,eQi=(sj=class{constructor(){this.nodes=[],this.count=0,this.elements={},this.getLogger=this.getLogger.bind(this),this.nodeType=J6,this.clear(),this.getType=this.getType.bind(this),this.getElementById=this.getElementById.bind(this),this.getParent=this.getParent.bind(this),this.getMindmap=this.getMindmap.bind(this),this.addNode=this.addNode.bind(this),this.decorateNode=this.decorateNode.bind(this)}clear(){this.nodes=[],this.count=0,this.elements={},this.baseLevel=void 0}getParent(t){for(let r=this.nodes.length-1;r>=0;r--)if(this.nodes[r].level0?this.nodes[0]:null}addNode(t,r,a,s){var m,b;it.info("addNode",t,r,a,s);let o=!1;this.nodes.length===0?(this.baseLevel=t,t=0,o=!0):this.baseLevel!==void 0&&(t=t-this.baseLevel,o=!1);const u=nn();let h=((m=u.mindmap)==null?void 0:m.padding)??Cc.mindmap.padding;switch(s){case this.nodeType.ROUNDED_RECT:case this.nodeType.RECT:case this.nodeType.HEXAGON:h*=2;break}const f={id:this.count++,nodeId:Ic(r,u),level:t,descr:Ic(a,u),type:s,children:[],width:((b=u.mindmap)==null?void 0:b.maxNodeWidth)??Cc.mindmap.maxNodeWidth,padding:h,isRoot:o},p=this.getParent(t);if(p)p.children.push(f),this.nodes.push(f);else if(o)this.nodes.push(f);else throw new Error(`There can be only one root. No parent could be found for ("${f.descr}")`)}getType(t,r){switch(it.debug("In get type",t,r),t){case"[":return this.nodeType.RECT;case"(":return r===")"?this.nodeType.ROUNDED_RECT:this.nodeType.CLOUD;case"((":return this.nodeType.CIRCLE;case")":return this.nodeType.CLOUD;case"))":return this.nodeType.BANG;case"{{":return this.nodeType.HEXAGON;default:return this.nodeType.DEFAULT}}setElementForId(t,r){this.elements[t]=r}getElementById(t){return this.elements[t]}decorateNode(t){if(!t)return;const r=nn(),a=this.nodes[this.nodes.length-1];t.icon&&(a.icon=Ic(t.icon,r)),t.class&&(a.class=Ic(t.class,r))}type2Str(t){switch(t){case this.nodeType.DEFAULT:return"no-border";case this.nodeType.RECT:return"rect";case this.nodeType.ROUNDED_RECT:return"rounded-rect";case this.nodeType.CIRCLE:return"circle";case this.nodeType.CLOUD:return"cloud";case this.nodeType.BANG:return"bang";case this.nodeType.HEXAGON:return"hexgon";default:return"no-border"}}assignSections(t,r){if(t.level===0?t.section=void 0:t.section=r,t.children)for(const[a,s]of t.children.entries()){const o=t.level===0?a:r;this.assignSections(s,o)}}flattenNodes(t,r){const a=["mindmap-node"];t.isRoot===!0?a.push("section-root","section--1"):t.section!==void 0&&a.push(`section-${t.section}`),t.class&&a.push(t.class);const s=a.join(" "),o=X(h=>{switch(h){case J6.CIRCLE:return"mindmapCircle";case J6.RECT:return"rect";case J6.ROUNDED_RECT:return"rounded";case J6.CLOUD:return"cloud";case J6.BANG:return"bang";case J6.HEXAGON:return"hexagon";case J6.DEFAULT:return"defaultMindmapNode";case J6.NO_BORDER:default:return"rect"}},"getShapeFromType"),u={id:t.id.toString(),domId:"node_"+t.id.toString(),label:t.descr,isGroup:!1,shape:o(t.type),width:t.width,height:t.height??0,padding:t.padding,cssClasses:s,cssStyles:[],look:"default",icon:t.icon,x:t.x,y:t.y,level:t.level,nodeId:t.nodeId,type:t.type,section:t.section};if(r.push(u),t.children)for(const h of t.children)this.flattenNodes(h,r)}generateEdges(t,r){if(t.children)for(const a of t.children){let s="edge";a.section!==void 0&&(s+=` section-edge-${a.section}`);const o=t.level+1;s+=` edge-depth-${o}`;const u={id:`edge_${t.id}_${a.id}`,start:t.id.toString(),end:a.id.toString(),type:"normal",curve:"basis",thickness:"normal",look:"default",classes:s,depth:t.level,section:a.section};r.push(u),this.generateEdges(a,r)}}getData(){const t=this.getMindmap(),r=nn(),s=Bii().layout!==void 0,o=r;if(s||(o.layout="cose-bilkent"),!t)return{nodes:[],edges:[],config:o};it.debug("getData: mindmapRoot",t,r),this.assignSections(t);const u=[],h=[];this.flattenNodes(t,u),this.generateEdges(t,h),it.debug(`getData: processed ${u.length} nodes and ${h.length} edges`);const f=new Map;for(const p of u)f.set(p.id,{shape:p.shape,width:p.width,height:p.height,padding:p.padding});return{nodes:u,edges:h,config:o,rootNode:t,markers:["point"],direction:"TB",nodeSpacing:50,rankSpacing:50,shapes:Object.fromEntries(f),type:"mindmap",diagramId:"mindmap-"+ZXi()}}getLogger(){return it}},X(sj,"MindmapDB"),sj),tQi=X(async(e,t,r,a)=>{var f,p;it.debug(`Rendering mindmap diagram +`+e);const s=a.db,o=s.getData(),u=eK(t,o.config.securityLevel);o.type=a.type,o.layoutAlgorithm=hce(o.config.layout,{fallback:"cose-bilkent"}),o.diagramId=t,s.getMindmap()&&(o.nodes.forEach(m=>{m.shape==="rounded"?(m.radius=15,m.taper=15,m.stroke="none",m.width=0,m.padding=15):m.shape==="circle"?m.padding=10:m.shape==="rect"&&(m.width=0,m.padding=10)}),await $W(o,u),U$(u,((f=o.config.mindmap)==null?void 0:f.padding)??Cc.mindmap.padding,"mindmapDiagram",((p=o.config.mindmap)==null?void 0:p.useMaxWidth)??Cc.mindmap.useMaxWidth))},"draw"),nQi={draw:tQi},rQi=X(e=>{let t="";for(let r=0;r` + .edge { + stroke-width: 3; + } + ${rQi(e)} + .section-root rect, .section-root path, .section-root circle, .section-root polygon { + fill: ${e.git0}; + } + .section-root text { + fill: ${e.gitBranchLabel0}; + } + .section-root span { + color: ${e.gitBranchLabel0}; + } + .section-2 span { + color: ${e.gitBranchLabel0}; + } + .icon-container { + height:100%; + display: flex; + justify-content: center; + align-items: center; + } + .edge { + fill: none; + } + .mindmap-node-label { + dy: 1em; + alignment-baseline: middle; + text-anchor: middle; + dominant-baseline: middle; + text-align: center; + } +`,"getStyles"),aQi=iQi,sQi={get db(){return new eQi},renderer:nQi,parser:JXi,styles:aQi};const oQi=Object.freeze(Object.defineProperty({__proto__:null,diagram:sQi},Symbol.toStringTag,{value:"Module"}));var Put=function(){var e=X(function(F,U,$,G){for($=$||{},G=F.length;G--;$[F[G]]=U);return $},"o"),t=[1,4],r=[1,13],a=[1,12],s=[1,15],o=[1,16],u=[1,20],h=[1,19],f=[6,7,8],p=[1,26],m=[1,24],b=[1,25],_=[6,7,11],w=[1,31],S=[6,7,11,24],C=[1,6,13,16,17,20,23],A=[1,35],k=[1,36],I=[1,6,7,11,13,16,17,20,23],N=[1,38],L={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,mindMap:4,spaceLines:5,SPACELINE:6,NL:7,KANBAN:8,document:9,stop:10,EOF:11,statement:12,SPACELIST:13,node:14,shapeData:15,ICON:16,CLASS:17,nodeWithId:18,nodeWithoutId:19,NODE_DSTART:20,NODE_DESCR:21,NODE_DEND:22,NODE_ID:23,SHAPE_DATA:24,$accept:0,$end:1},terminals_:{2:"error",6:"SPACELINE",7:"NL",8:"KANBAN",11:"EOF",13:"SPACELIST",16:"ICON",17:"CLASS",20:"NODE_DSTART",21:"NODE_DESCR",22:"NODE_DEND",23:"NODE_ID",24:"SHAPE_DATA"},productions_:[0,[3,1],[3,2],[5,1],[5,2],[5,2],[4,2],[4,3],[10,1],[10,1],[10,1],[10,2],[10,2],[9,3],[9,2],[12,3],[12,2],[12,2],[12,2],[12,1],[12,2],[12,1],[12,1],[12,1],[12,1],[14,1],[14,1],[19,3],[18,1],[18,4],[15,2],[15,1]],performAction:X(function(U,$,G,B,Z,z,Y){var W=z.length-1;switch(Z){case 6:case 7:return B;case 8:B.getLogger().trace("Stop NL ");break;case 9:B.getLogger().trace("Stop EOF ");break;case 11:B.getLogger().trace("Stop NL2 ");break;case 12:B.getLogger().trace("Stop EOF2 ");break;case 15:B.getLogger().info("Node: ",z[W-1].id),B.addNode(z[W-2].length,z[W-1].id,z[W-1].descr,z[W-1].type,z[W]);break;case 16:B.getLogger().info("Node: ",z[W].id),B.addNode(z[W-1].length,z[W].id,z[W].descr,z[W].type);break;case 17:B.getLogger().trace("Icon: ",z[W]),B.decorateNode({icon:z[W]});break;case 18:case 23:B.decorateNode({class:z[W]});break;case 19:B.getLogger().trace("SPACELIST");break;case 20:B.getLogger().trace("Node: ",z[W-1].id),B.addNode(0,z[W-1].id,z[W-1].descr,z[W-1].type,z[W]);break;case 21:B.getLogger().trace("Node: ",z[W].id),B.addNode(0,z[W].id,z[W].descr,z[W].type);break;case 22:B.decorateNode({icon:z[W]});break;case 27:B.getLogger().trace("node found ..",z[W-2]),this.$={id:z[W-1],descr:z[W-1],type:B.getType(z[W-2],z[W])};break;case 28:this.$={id:z[W],descr:z[W],type:0};break;case 29:B.getLogger().trace("node found ..",z[W-3]),this.$={id:z[W-3],descr:z[W-1],type:B.getType(z[W-2],z[W])};break;case 30:this.$=z[W-1]+z[W];break;case 31:this.$=z[W];break}},"anonymous"),table:[{3:1,4:2,5:3,6:[1,5],8:t},{1:[3]},{1:[2,1]},{4:6,6:[1,7],7:[1,8],8:t},{6:r,7:[1,10],9:9,12:11,13:a,14:14,16:s,17:o,18:17,19:18,20:u,23:h},e(f,[2,3]),{1:[2,2]},e(f,[2,4]),e(f,[2,5]),{1:[2,6],6:r,12:21,13:a,14:14,16:s,17:o,18:17,19:18,20:u,23:h},{6:r,9:22,12:11,13:a,14:14,16:s,17:o,18:17,19:18,20:u,23:h},{6:p,7:m,10:23,11:b},e(_,[2,24],{18:17,19:18,14:27,16:[1,28],17:[1,29],20:u,23:h}),e(_,[2,19]),e(_,[2,21],{15:30,24:w}),e(_,[2,22]),e(_,[2,23]),e(S,[2,25]),e(S,[2,26]),e(S,[2,28],{20:[1,32]}),{21:[1,33]},{6:p,7:m,10:34,11:b},{1:[2,7],6:r,12:21,13:a,14:14,16:s,17:o,18:17,19:18,20:u,23:h},e(C,[2,14],{7:A,11:k}),e(I,[2,8]),e(I,[2,9]),e(I,[2,10]),e(_,[2,16],{15:37,24:w}),e(_,[2,17]),e(_,[2,18]),e(_,[2,20],{24:N}),e(S,[2,31]),{21:[1,39]},{22:[1,40]},e(C,[2,13],{7:A,11:k}),e(I,[2,11]),e(I,[2,12]),e(_,[2,15],{24:N}),e(S,[2,30]),{22:[1,41]},e(S,[2,27]),e(S,[2,29])],defaultActions:{2:[2,1],6:[2,2]},parseError:X(function(U,$){if($.recoverable)this.trace(U);else{var G=new Error(U);throw G.hash=$,G}},"parseError"),parse:X(function(U){var $=this,G=[0],B=[],Z=[null],z=[],Y=this.table,W="",Q=0,V=0,j=2,ee=1,te=z.slice.call(arguments,1),ne=Object.create(this.lexer),se={yy:{}};for(var ie in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ie)&&(se.yy[ie]=this.yy[ie]);ne.setInput(U,se.yy),se.yy.lexer=ne,se.yy.parser=this,typeof ne.yylloc>"u"&&(ne.yylloc={});var ge=ne.yylloc;z.push(ge);var ce=ne.options&&ne.options.ranges;typeof se.yy.parseError=="function"?this.parseError=se.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function be(Oe){G.length=G.length-2*Oe,Z.length=Z.length-Oe,z.length=z.length-Oe}X(be,"popStack");function ve(){var Oe;return Oe=B.pop()||ne.lex()||ee,typeof Oe!="number"&&(Oe instanceof Array&&(B=Oe,Oe=B.pop()),Oe=$.symbols_[Oe]||Oe),Oe}X(ve,"lex");for(var De,ye,Ee,he,we={},Ce,Ie,Le,Fe;;){if(ye=G[G.length-1],this.defaultActions[ye]?Ee=this.defaultActions[ye]:((De===null||typeof De>"u")&&(De=ve()),Ee=Y[ye]&&Y[ye][De]),typeof Ee>"u"||!Ee.length||!Ee[0]){var Ve="";Fe=[];for(Ce in Y[ye])this.terminals_[Ce]&&Ce>j&&Fe.push("'"+this.terminals_[Ce]+"'");ne.showPosition?Ve="Parse error on line "+(Q+1)+`: +`+ne.showPosition()+` +Expecting `+Fe.join(", ")+", got '"+(this.terminals_[De]||De)+"'":Ve="Parse error on line "+(Q+1)+": Unexpected "+(De==ee?"end of input":"'"+(this.terminals_[De]||De)+"'"),this.parseError(Ve,{text:ne.match,token:this.terminals_[De]||De,line:ne.yylineno,loc:ge,expected:Fe})}if(Ee[0]instanceof Array&&Ee.length>1)throw new Error("Parse Error: multiple actions possible at state: "+ye+", token: "+De);switch(Ee[0]){case 1:G.push(De),Z.push(ne.yytext),z.push(ne.yylloc),G.push(Ee[1]),De=null,V=ne.yyleng,W=ne.yytext,Q=ne.yylineno,ge=ne.yylloc;break;case 2:if(Ie=this.productions_[Ee[1]][1],we.$=Z[Z.length-Ie],we._$={first_line:z[z.length-(Ie||1)].first_line,last_line:z[z.length-1].last_line,first_column:z[z.length-(Ie||1)].first_column,last_column:z[z.length-1].last_column},ce&&(we._$.range=[z[z.length-(Ie||1)].range[0],z[z.length-1].range[1]]),he=this.performAction.apply(we,[W,V,Q,se.yy,Ee[1],Z,z].concat(te)),typeof he<"u")return he;Ie&&(G=G.slice(0,-1*Ie*2),Z=Z.slice(0,-1*Ie),z=z.slice(0,-1*Ie)),G.push(this.productions_[Ee[1]][0]),Z.push(we.$),z.push(we._$),Le=Y[G[G.length-2]][G[G.length-1]],G.push(Le);break;case 3:return!0}}return!0},"parse")},P=function(){var F={EOF:1,parseError:X(function($,G){if(this.yy.parser)this.yy.parser.parseError($,G);else throw new Error($)},"parseError"),setInput:X(function(U,$){return this.yy=$||this.yy||{},this._input=U,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var U=this._input[0];this.yytext+=U,this.yyleng++,this.offset++,this.match+=U,this.matched+=U;var $=U.match(/(?:\r\n?|\n).*/g);return $?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),U},"input"),unput:X(function(U){var $=U.length,G=U.split(/(?:\r\n?|\n)/g);this._input=U+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-$),this.offset-=$;var B=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),G.length-1&&(this.yylineno-=G.length-1);var Z=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:G?(G.length===B.length?this.yylloc.first_column:0)+B[B.length-G.length].length-G[0].length:this.yylloc.first_column-$},this.options.ranges&&(this.yylloc.range=[Z[0],Z[0]+this.yyleng-$]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(U){this.unput(this.match.slice(U))},"less"),pastInput:X(function(){var U=this.matched.substr(0,this.matched.length-this.match.length);return(U.length>20?"...":"")+U.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var U=this.match;return U.length<20&&(U+=this._input.substr(0,20-U.length)),(U.substr(0,20)+(U.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var U=this.pastInput(),$=new Array(U.length+1).join("-");return U+this.upcomingInput()+` +`+$+"^"},"showPosition"),test_match:X(function(U,$){var G,B,Z;if(this.options.backtrack_lexer&&(Z={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Z.yylloc.range=this.yylloc.range.slice(0))),B=U[0].match(/(?:\r\n?|\n).*/g),B&&(this.yylineno+=B.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:B?B[B.length-1].length-B[B.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+U[0].length},this.yytext+=U[0],this.match+=U[0],this.matches=U,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(U[0].length),this.matched+=U[0],G=this.performAction.call(this,this.yy,this,$,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),G)return G;if(this._backtrack){for(var z in Z)this[z]=Z[z];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var U,$,G,B;this._more||(this.yytext="",this.match="");for(var Z=this._currentRules(),z=0;z$[0].length)){if($=G,B=z,this.options.backtrack_lexer){if(U=this.test_match(G,Z[z]),U!==!1)return U;if(this._backtrack){$=!1;continue}else return!1}else if(!this.options.flex)break}return $?(U=this.test_match($,Z[B]),U!==!1?U:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var $=this.next();return $||this.lex()},"lex"),begin:X(function($){this.conditionStack.push($)},"begin"),popState:X(function(){var $=this.conditionStack.length-1;return $>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function($){return $=this.conditionStack.length-1-Math.abs($||0),$>=0?this.conditionStack[$]:"INITIAL"},"topState"),pushState:X(function($){this.begin($)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function($,G,B,Z){switch(B){case 0:return this.pushState("shapeData"),G.yytext="",24;case 1:return this.pushState("shapeDataStr"),24;case 2:return this.popState(),24;case 3:const z=/\n\s*/g;return G.yytext=G.yytext.replace(z,"
    "),24;case 4:return 24;case 5:this.popState();break;case 6:return $.getLogger().trace("Found comment",G.yytext),6;case 7:return 8;case 8:this.begin("CLASS");break;case 9:return this.popState(),17;case 10:this.popState();break;case 11:$.getLogger().trace("Begin icon"),this.begin("ICON");break;case 12:return $.getLogger().trace("SPACELINE"),6;case 13:return 7;case 14:return 16;case 15:$.getLogger().trace("end icon"),this.popState();break;case 16:return $.getLogger().trace("Exploding node"),this.begin("NODE"),20;case 17:return $.getLogger().trace("Cloud"),this.begin("NODE"),20;case 18:return $.getLogger().trace("Explosion Bang"),this.begin("NODE"),20;case 19:return $.getLogger().trace("Cloud Bang"),this.begin("NODE"),20;case 20:return this.begin("NODE"),20;case 21:return this.begin("NODE"),20;case 22:return this.begin("NODE"),20;case 23:return this.begin("NODE"),20;case 24:return 13;case 25:return 23;case 26:return 11;case 27:this.begin("NSTR2");break;case 28:return"NODE_DESCR";case 29:this.popState();break;case 30:$.getLogger().trace("Starting NSTR"),this.begin("NSTR");break;case 31:return $.getLogger().trace("description:",G.yytext),"NODE_DESCR";case 32:this.popState();break;case 33:return this.popState(),$.getLogger().trace("node end ))"),"NODE_DEND";case 34:return this.popState(),$.getLogger().trace("node end )"),"NODE_DEND";case 35:return this.popState(),$.getLogger().trace("node end ...",G.yytext),"NODE_DEND";case 36:return this.popState(),$.getLogger().trace("node end (("),"NODE_DEND";case 37:return this.popState(),$.getLogger().trace("node end (-"),"NODE_DEND";case 38:return this.popState(),$.getLogger().trace("node end (-"),"NODE_DEND";case 39:return this.popState(),$.getLogger().trace("node end (("),"NODE_DEND";case 40:return this.popState(),$.getLogger().trace("node end (("),"NODE_DEND";case 41:return $.getLogger().trace("Long description:",G.yytext),21;case 42:return $.getLogger().trace("Long description:",G.yytext),21}},"anonymous"),rules:[/^(?:@\{)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^\"]+)/i,/^(?:[^}^"]+)/i,/^(?:\})/i,/^(?:\s*%%.*)/i,/^(?:kanban\b)/i,/^(?::::)/i,/^(?:.+)/i,/^(?:\n)/i,/^(?:::icon\()/i,/^(?:[\s]+[\n])/i,/^(?:[\n]+)/i,/^(?:[^\)]+)/i,/^(?:\))/i,/^(?:-\))/i,/^(?:\(-)/i,/^(?:\)\))/i,/^(?:\))/i,/^(?:\(\()/i,/^(?:\{\{)/i,/^(?:\()/i,/^(?:\[)/i,/^(?:[\s]+)/i,/^(?:[^\(\[\n\)\{\}@]+)/i,/^(?:$)/i,/^(?:["][`])/i,/^(?:[^`"]+)/i,/^(?:[`]["])/i,/^(?:["])/i,/^(?:[^"]+)/i,/^(?:["])/i,/^(?:[\)]\))/i,/^(?:[\)])/i,/^(?:[\]])/i,/^(?:\}\})/i,/^(?:\(-)/i,/^(?:-\))/i,/^(?:\(\()/i,/^(?:\()/i,/^(?:[^\)\]\(\}]+)/i,/^(?:.+(?!\(\())/i],conditions:{shapeDataEndBracket:{rules:[],inclusive:!1},shapeDataStr:{rules:[2,3],inclusive:!1},shapeData:{rules:[1,4,5],inclusive:!1},CLASS:{rules:[9,10],inclusive:!1},ICON:{rules:[14,15],inclusive:!1},NSTR2:{rules:[28,29],inclusive:!1},NSTR:{rules:[31,32],inclusive:!1},NODE:{rules:[27,30,33,34,35,36,37,38,39,40,41,42],inclusive:!1},INITIAL:{rules:[0,6,7,8,11,12,13,16,17,18,19,20,21,22,23,24,25,26],inclusive:!0}}};return F}();L.lexer=P;function M(){this.yy={}}return X(M,"Parser"),M.prototype=L,L.Parser=M,new M}();Put.parser=Put;var lQi=Put,Xx=[],abt=[],But=0,sbt={},cQi=X(()=>{Xx=[],abt=[],But=0,sbt={}},"clear"),uQi=X(e=>{if(Xx.length===0)return null;const t=Xx[0].level;let r=null;for(let a=Xx.length-1;a>=0;a--)if(Xx[a].level===t&&!r&&(r=Xx[a]),Xx[a].levelh.parentId===s.id);for(const h of u){const f={id:h.id,parentId:s.id,label:Ic(h.label??"",a),isGroup:!1,ticket:h==null?void 0:h.ticket,priority:h==null?void 0:h.priority,assigned:h==null?void 0:h.assigned,icon:h==null?void 0:h.icon,shape:"kanbanItem",level:h.level,rx:5,ry:5,cssStyles:["text-align: left"]};t.push(f)}}return{nodes:t,edges:e,other:{},config:nn()}},"getData"),dQi=X((e,t,r,a,s)=>{var p,m;const o=nn();let u=((p=o.mindmap)==null?void 0:p.padding)??Cc.mindmap.padding;switch(a){case Ep.ROUNDED_RECT:case Ep.RECT:case Ep.HEXAGON:u*=2}const h={id:Ic(t,o)||"kbn"+But++,level:e,label:Ic(r,o),width:((m=o.mindmap)==null?void 0:m.maxNodeWidth)??Cc.mindmap.maxNodeWidth,padding:u,isGroup:!1};if(s!==void 0){let b;s.includes(` +`)?b=s+` +`:b=`{ +`+s+` +}`;const _=fAe(b,{schema:dAe});if(_.shape&&(_.shape!==_.shape.toLowerCase()||_.shape.includes("_")))throw new Error(`No such shape: ${_.shape}. Shape names should be lowercase.`);_!=null&&_.shape&&_.shape==="kanbanItem"&&(h.shape=_==null?void 0:_.shape),_!=null&&_.label&&(h.label=_==null?void 0:_.label),_!=null&&_.icon&&(h.icon=_==null?void 0:_.icon.toString()),_!=null&&_.assigned&&(h.assigned=_==null?void 0:_.assigned.toString()),_!=null&&_.ticket&&(h.ticket=_==null?void 0:_.ticket.toString()),_!=null&&_.priority&&(h.priority=_==null?void 0:_.priority)}const f=uQi(e);f?h.parentId=f.id||"kbn"+But++:abt.push(h),Xx.push(h)},"addNode"),Ep={DEFAULT:0,NO_BORDER:0,ROUNDED_RECT:1,RECT:2,CIRCLE:3,CLOUD:4,BANG:5,HEXAGON:6},fQi=X((e,t)=>{switch(it.debug("In get type",e,t),e){case"[":return Ep.RECT;case"(":return t===")"?Ep.ROUNDED_RECT:Ep.CLOUD;case"((":return Ep.CIRCLE;case")":return Ep.CLOUD;case"))":return Ep.BANG;case"{{":return Ep.HEXAGON;default:return Ep.DEFAULT}},"getType"),pQi=X((e,t)=>{sbt[e]=t},"setElementForId"),gQi=X(e=>{if(!e)return;const t=nn(),r=Xx[Xx.length-1];e.icon&&(r.icon=Ic(e.icon,t)),e.class&&(r.cssClasses=Ic(e.class,t))},"decorateNode"),mQi=X(e=>{switch(e){case Ep.DEFAULT:return"no-border";case Ep.RECT:return"rect";case Ep.ROUNDED_RECT:return"rounded-rect";case Ep.CIRCLE:return"circle";case Ep.CLOUD:return"cloud";case Ep.BANG:return"bang";case Ep.HEXAGON:return"hexgon";default:return"no-border"}},"type2Str"),bQi=X(()=>it,"getLogger"),yQi=X(e=>sbt[e],"getElementById"),vQi={clear:cQi,addNode:dQi,getSections:LXn,getData:hQi,nodeType:Ep,getType:fQi,setElementForId:pQi,decorateNode:gQi,type2Str:mQi,getLogger:bQi,getElementById:yQi},_Qi=vQi,wQi=X(async(e,t,r,a)=>{var A,k,I,N,L;it.debug(`Rendering kanban diagram +`+e);const o=a.db.getData(),u=nn();u.htmlLabels=!1;const h=bR(t),f=h.append("g");f.attr("class","sections");const p=h.append("g");p.attr("class","items");const m=o.nodes.filter(P=>P.isGroup);let b=0;const _=10,w=[];let S=25;for(const P of m){const M=((A=u==null?void 0:u.kanban)==null?void 0:A.sectionWidth)||200;b=b+1,P.x=M*b+(b-1)*_/2,P.width=M,P.y=0,P.height=M*3,P.rx=5,P.ry=5,P.cssClasses=P.cssClasses+" section-"+b;const F=await ept(f,P);S=Math.max(S,(k=F==null?void 0:F.labelBBox)==null?void 0:k.height),w.push(F)}let C=0;for(const P of m){const M=w[C];C=C+1;const F=((I=u==null?void 0:u.kanban)==null?void 0:I.sectionWidth)||200,U=-F*3/2+S;let $=U;const G=o.nodes.filter(z=>z.parentId===P.id);for(const z of G){if(z.isGroup)throw new Error("Groups within groups are not allowed in Kanban diagrams");z.x=P.x,z.width=F-1.5*_;const W=(await NAe(p,z,{config:u})).node().getBBox();z.y=$+W.height/2,await olt(z),$=z.y+W.height/2+_/2}const B=M.cluster.select("rect"),Z=Math.max($-U+3*_,50)+(S-25);B.attr("height",Z)}rce(void 0,h,((N=u.mindmap)==null?void 0:N.padding)??Cc.kanban.padding,((L=u.mindmap)==null?void 0:L.useMaxWidth)??Cc.kanban.useMaxWidth)},"draw"),EQi={draw:wQi},xQi=X(e=>{let t="";for(let a=0;ae.darkMode?qr(a,s):Nr(a,s),"adjuster");for(let a=0;a` + .edge { + stroke-width: 3; + } + ${xQi(e)} + .section-root rect, .section-root path, .section-root circle, .section-root polygon { + fill: ${e.git0}; + } + .section-root text { + fill: ${e.gitBranchLabel0}; + } + .icon-container { + height:100%; + display: flex; + justify-content: center; + align-items: center; + } + .edge { + fill: none; + } + .cluster-label, .label { + color: ${e.textColor}; + fill: ${e.textColor}; + } + .kanban-label { + dy: 1em; + alignment-baseline: middle; + text-anchor: middle; + dominant-baseline: middle; + text-align: center; + } + ${Lce()} +`,"getStyles"),TQi=SQi,CQi={db:_Qi,renderer:EQi,parser:lQi,styles:TQi};const AQi=Object.freeze(Object.defineProperty({__proto__:null,diagram:CQi},Symbol.toStringTag,{value:"Module"}));function ATn(e,t){let r;if(t===void 0)for(const a of e)a!=null&&(r=a)&&(r=a);else{let a=-1;for(let s of e)(s=t(s,++a,e))!=null&&(r=s)&&(r=s)}return r}function DXn(e,t){let r;if(t===void 0)for(const a of e)a!=null&&(r>a||r===void 0&&a>=a)&&(r=a);else{let a=-1;for(let s of e)(s=t(s,++a,e))!=null&&(r>s||r===void 0&&s>=s)&&(r=s)}return r}function rat(e,t){let r=0;if(t===void 0)for(let a of e)(a=+a)&&(r+=a);else{let a=-1;for(let s of e)(s=+t(s,++a,e))&&(r+=s)}return r}function kQi(e){return e.target.depth}function MXn(e){return e.depth}function PXn(e,t){return t-1-e.height}function obt(e,t){return e.sourceLinks.length?e.depth:t-1}function BXn(e){return e.targetLinks.length?e.depth:e.sourceLinks.length?DXn(e.sourceLinks,kQi)-1:0}function fEe(e){return function(){return e}}function kTn(e,t){return BTe(e.source,t.source)||e.index-t.index}function RTn(e,t){return BTe(e.target,t.target)||e.index-t.index}function BTe(e,t){return e.y0-t.y0}function iat(e){return e.value}function RQi(e){return e.index}function IQi(e){return e.nodes}function NQi(e){return e.links}function ITn(e,t){const r=e.get(t);if(!r)throw new Error("missing: "+t);return r}function NTn({nodes:e}){for(const t of e){let r=t.y0,a=r;for(const s of t.sourceLinks)s.y0=r+s.width/2,r+=s.width;for(const s of t.targetLinks)s.y1=a+s.width/2,a+=s.width}}function FXn(){let e=0,t=0,r=1,a=1,s=24,o=8,u,h=RQi,f=obt,p,m,b=IQi,_=NQi,w=6;function S(){const W={nodes:b.apply(null,arguments),links:_.apply(null,arguments)};return C(W),A(W),k(W),I(W),P(W),NTn(W),W}S.update=function(W){return NTn(W),W},S.nodeId=function(W){return arguments.length?(h=typeof W=="function"?W:fEe(W),S):h},S.nodeAlign=function(W){return arguments.length?(f=typeof W=="function"?W:fEe(W),S):f},S.nodeSort=function(W){return arguments.length?(p=W,S):p},S.nodeWidth=function(W){return arguments.length?(s=+W,S):s},S.nodePadding=function(W){return arguments.length?(o=u=+W,S):o},S.nodes=function(W){return arguments.length?(b=typeof W=="function"?W:fEe(W),S):b},S.links=function(W){return arguments.length?(_=typeof W=="function"?W:fEe(W),S):_},S.linkSort=function(W){return arguments.length?(m=W,S):m},S.size=function(W){return arguments.length?(e=t=0,r=+W[0],a=+W[1],S):[r-e,a-t]},S.extent=function(W){return arguments.length?(e=+W[0][0],r=+W[1][0],t=+W[0][1],a=+W[1][1],S):[[e,t],[r,a]]},S.iterations=function(W){return arguments.length?(w=+W,S):w};function C({nodes:W,links:Q}){for(const[j,ee]of W.entries())ee.index=j,ee.sourceLinks=[],ee.targetLinks=[];const V=new Map(W.map((j,ee)=>[h(j,ee,W),j]));for(const[j,ee]of Q.entries()){ee.index=j;let{source:te,target:ne}=ee;typeof te!="object"&&(te=ee.source=ITn(V,te)),typeof ne!="object"&&(ne=ee.target=ITn(V,ne)),te.sourceLinks.push(ee),ne.targetLinks.push(ee)}if(m!=null)for(const{sourceLinks:j,targetLinks:ee}of W)j.sort(m),ee.sort(m)}function A({nodes:W}){for(const Q of W)Q.value=Q.fixedValue===void 0?Math.max(rat(Q.sourceLinks,iat),rat(Q.targetLinks,iat)):Q.fixedValue}function k({nodes:W}){const Q=W.length;let V=new Set(W),j=new Set,ee=0;for(;V.size;){for(const te of V){te.depth=ee;for(const{target:ne}of te.sourceLinks)j.add(ne)}if(++ee>Q)throw new Error("circular link");V=j,j=new Set}}function I({nodes:W}){const Q=W.length;let V=new Set(W),j=new Set,ee=0;for(;V.size;){for(const te of V){te.height=ee;for(const{source:ne}of te.targetLinks)j.add(ne)}if(++ee>Q)throw new Error("circular link");V=j,j=new Set}}function N({nodes:W}){const Q=ATn(W,ee=>ee.depth)+1,V=(r-e-s)/(Q-1),j=new Array(Q);for(const ee of W){const te=Math.max(0,Math.min(Q-1,Math.floor(f.call(null,ee,Q))));ee.layer=te,ee.x0=e+te*V,ee.x1=ee.x0+s,j[te]?j[te].push(ee):j[te]=[ee]}if(p)for(const ee of j)ee.sort(p);return j}function L(W){const Q=DXn(W,V=>(a-t-(V.length-1)*u)/rat(V,iat));for(const V of W){let j=t;for(const ee of V){ee.y0=j,ee.y1=j+ee.value*Q,j=ee.y1+u;for(const te of ee.sourceLinks)te.width=te.value*Q}j=(a-j+u)/(V.length+1);for(let ee=0;eeV.length)-1)),L(Q);for(let V=0;V0))continue;let ge=(se/ie-ne.y0)*Q;ne.y0+=ge,ne.y1+=ge,B(ne)}p===void 0&&te.sort(BTe),U(te,V)}}function F(W,Q,V){for(let j=W.length,ee=j-2;ee>=0;--ee){const te=W[ee];for(const ne of te){let se=0,ie=0;for(const{target:ce,value:be}of ne.sourceLinks){let ve=be*(ce.layer-ne.layer);se+=Y(ne,ce)*ve,ie+=ve}if(!(ie>0))continue;let ge=(se/ie-ne.y0)*Q;ne.y0+=ge,ne.y1+=ge,B(ne)}p===void 0&&te.sort(BTe),U(te,V)}}function U(W,Q){const V=W.length>>1,j=W[V];G(W,j.y0-u,V-1,Q),$(W,j.y1+u,V+1,Q),G(W,a,W.length-1,Q),$(W,t,0,Q)}function $(W,Q,V,j){for(;V1e-6&&(ee.y0+=te,ee.y1+=te),Q=ee.y1+u}}function G(W,Q,V,j){for(;V>=0;--V){const ee=W[V],te=(ee.y1-Q)*j;te>1e-6&&(ee.y0-=te,ee.y1-=te),Q=ee.y0-u}}function B({sourceLinks:W,targetLinks:Q}){if(m===void 0){for(const{source:{sourceLinks:V}}of Q)V.sort(RTn);for(const{target:{targetLinks:V}}of W)V.sort(kTn)}}function Z(W){if(m===void 0)for(const{sourceLinks:Q,targetLinks:V}of W)Q.sort(RTn),V.sort(kTn)}function z(W,Q){let V=W.y0-(W.sourceLinks.length-1)*u/2;for(const{target:j,width:ee}of W.sourceLinks){if(j===Q)break;V+=ee+u}for(const{source:j,width:ee}of Q.targetLinks){if(j===W)break;V-=ee}return V}function Y(W,Q){let V=Q.y0-(Q.targetLinks.length-1)*u/2;for(const{source:j,width:ee}of Q.targetLinks){if(j===W)break;V+=ee+u}for(const{target:j,width:ee}of W.sourceLinks){if(j===Q)break;V-=ee}return V}return S}var Fut=Math.PI,$ut=2*Fut,LB=1e-6,OQi=$ut-LB;function Uut(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function $Xn(){return new Uut}Uut.prototype=$Xn.prototype={constructor:Uut,moveTo:function(e,t){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)},closePath:function(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(e,t){this._+="L"+(this._x1=+e)+","+(this._y1=+t)},quadraticCurveTo:function(e,t,r,a){this._+="Q"+ +e+","+ +t+","+(this._x1=+r)+","+(this._y1=+a)},bezierCurveTo:function(e,t,r,a,s,o){this._+="C"+ +e+","+ +t+","+ +r+","+ +a+","+(this._x1=+s)+","+(this._y1=+o)},arcTo:function(e,t,r,a,s){e=+e,t=+t,r=+r,a=+a,s=+s;var o=this._x1,u=this._y1,h=r-e,f=a-t,p=o-e,m=u-t,b=p*p+m*m;if(s<0)throw new Error("negative radius: "+s);if(this._x1===null)this._+="M"+(this._x1=e)+","+(this._y1=t);else if(b>LB)if(!(Math.abs(m*h-f*p)>LB)||!s)this._+="L"+(this._x1=e)+","+(this._y1=t);else{var _=r-o,w=a-u,S=h*h+f*f,C=_*_+w*w,A=Math.sqrt(S),k=Math.sqrt(b),I=s*Math.tan((Fut-Math.acos((S+b-C)/(2*A*k)))/2),N=I/k,L=I/A;Math.abs(N-1)>LB&&(this._+="L"+(e+N*p)+","+(t+N*m)),this._+="A"+s+","+s+",0,0,"+ +(m*_>p*w)+","+(this._x1=e+L*h)+","+(this._y1=t+L*f)}},arc:function(e,t,r,a,s,o){e=+e,t=+t,r=+r,o=!!o;var u=r*Math.cos(a),h=r*Math.sin(a),f=e+u,p=t+h,m=1^o,b=o?a-s:s-a;if(r<0)throw new Error("negative radius: "+r);this._x1===null?this._+="M"+f+","+p:(Math.abs(this._x1-f)>LB||Math.abs(this._y1-p)>LB)&&(this._+="L"+f+","+p),r&&(b<0&&(b=b%$ut+$ut),b>OQi?this._+="A"+r+","+r+",0,1,"+m+","+(e-u)+","+(t-h)+"A"+r+","+r+",0,1,"+m+","+(this._x1=f)+","+(this._y1=p):b>LB&&(this._+="A"+r+","+r+",0,"+ +(b>=Fut)+","+m+","+(this._x1=e+r*Math.cos(s))+","+(this._y1=t+r*Math.sin(s))))},rect:function(e,t,r,a){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)+"h"+ +r+"v"+ +a+"h"+-r+"Z"},toString:function(){return this._}};function OTn(e){return function(){return e}}function LQi(e){return e[0]}function DQi(e){return e[1]}var MQi=Array.prototype.slice;function PQi(e){return e.source}function BQi(e){return e.target}function FQi(e){var t=PQi,r=BQi,a=LQi,s=DQi,o=null;function u(){var h,f=MQi.call(arguments),p=t.apply(this,f),m=r.apply(this,f);if(o||(o=h=$Xn()),e(o,+a.apply(this,(f[0]=p,f)),+s.apply(this,f),+a.apply(this,(f[0]=m,f)),+s.apply(this,f)),h)return o=null,h+""||null}return u.source=function(h){return arguments.length?(t=h,u):t},u.target=function(h){return arguments.length?(r=h,u):r},u.x=function(h){return arguments.length?(a=typeof h=="function"?h:OTn(+h),u):a},u.y=function(h){return arguments.length?(s=typeof h=="function"?h:OTn(+h),u):s},u.context=function(h){return arguments.length?(o=h??null,u):o},u}function $Qi(e,t,r,a,s){e.moveTo(t,r),e.bezierCurveTo(t=(t+a)/2,r,t,s,a,s)}function UQi(){return FQi($Qi)}function zQi(e){return[e.source.x1,e.y0]}function GQi(e){return[e.target.x0,e.y1]}function UXn(){return UQi().source(zQi).target(GQi)}var zut=function(){var e=X(function(h,f,p,m){for(p=p||{},m=h.length;m--;p[h[m]]=f);return p},"o"),t=[1,9],r=[1,10],a=[1,5,10,12],s={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,start:3,SANKEY:4,NEWLINE:5,csv:6,opt_eof:7,record:8,csv_tail:9,EOF:10,"field[source]":11,COMMA:12,"field[target]":13,"field[value]":14,field:15,escaped:16,non_escaped:17,DQUOTE:18,ESCAPED_TEXT:19,NON_ESCAPED_TEXT:20,$accept:0,$end:1},terminals_:{2:"error",4:"SANKEY",5:"NEWLINE",10:"EOF",11:"field[source]",12:"COMMA",13:"field[target]",14:"field[value]",18:"DQUOTE",19:"ESCAPED_TEXT",20:"NON_ESCAPED_TEXT"},productions_:[0,[3,4],[6,2],[9,2],[9,0],[7,1],[7,0],[8,5],[15,1],[15,1],[16,3],[17,1]],performAction:X(function(f,p,m,b,_,w,S){var C=w.length-1;switch(_){case 7:const A=b.findOrCreateNode(w[C-4].trim().replaceAll('""','"')),k=b.findOrCreateNode(w[C-2].trim().replaceAll('""','"')),I=parseFloat(w[C].trim());b.addLink(A,k,I);break;case 8:case 9:case 11:this.$=w[C];break;case 10:this.$=w[C-1];break}},"anonymous"),table:[{3:1,4:[1,2]},{1:[3]},{5:[1,3]},{6:4,8:5,15:6,16:7,17:8,18:t,20:r},{1:[2,6],7:11,10:[1,12]},e(r,[2,4],{9:13,5:[1,14]}),{12:[1,15]},e(a,[2,8]),e(a,[2,9]),{19:[1,16]},e(a,[2,11]),{1:[2,1]},{1:[2,5]},e(r,[2,2]),{6:17,8:5,15:6,16:7,17:8,18:t,20:r},{15:18,16:7,17:8,18:t,20:r},{18:[1,19]},e(r,[2,3]),{12:[1,20]},e(a,[2,10]),{15:21,16:7,17:8,18:t,20:r},e([1,5,10],[2,7])],defaultActions:{11:[2,1],12:[2,5]},parseError:X(function(f,p){if(p.recoverable)this.trace(f);else{var m=new Error(f);throw m.hash=p,m}},"parseError"),parse:X(function(f){var p=this,m=[0],b=[],_=[null],w=[],S=this.table,C="",A=0,k=0,I=2,N=1,L=w.slice.call(arguments,1),P=Object.create(this.lexer),M={yy:{}};for(var F in this.yy)Object.prototype.hasOwnProperty.call(this.yy,F)&&(M.yy[F]=this.yy[F]);P.setInput(f,M.yy),M.yy.lexer=P,M.yy.parser=this,typeof P.yylloc>"u"&&(P.yylloc={});var U=P.yylloc;w.push(U);var $=P.options&&P.options.ranges;typeof M.yy.parseError=="function"?this.parseError=M.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function G(se){m.length=m.length-2*se,_.length=_.length-se,w.length=w.length-se}X(G,"popStack");function B(){var se;return se=b.pop()||P.lex()||N,typeof se!="number"&&(se instanceof Array&&(b=se,se=b.pop()),se=p.symbols_[se]||se),se}X(B,"lex");for(var Z,z,Y,W,Q={},V,j,ee,te;;){if(z=m[m.length-1],this.defaultActions[z]?Y=this.defaultActions[z]:((Z===null||typeof Z>"u")&&(Z=B()),Y=S[z]&&S[z][Z]),typeof Y>"u"||!Y.length||!Y[0]){var ne="";te=[];for(V in S[z])this.terminals_[V]&&V>I&&te.push("'"+this.terminals_[V]+"'");P.showPosition?ne="Parse error on line "+(A+1)+`: +`+P.showPosition()+` +Expecting `+te.join(", ")+", got '"+(this.terminals_[Z]||Z)+"'":ne="Parse error on line "+(A+1)+": Unexpected "+(Z==N?"end of input":"'"+(this.terminals_[Z]||Z)+"'"),this.parseError(ne,{text:P.match,token:this.terminals_[Z]||Z,line:P.yylineno,loc:U,expected:te})}if(Y[0]instanceof Array&&Y.length>1)throw new Error("Parse Error: multiple actions possible at state: "+z+", token: "+Z);switch(Y[0]){case 1:m.push(Z),_.push(P.yytext),w.push(P.yylloc),m.push(Y[1]),Z=null,k=P.yyleng,C=P.yytext,A=P.yylineno,U=P.yylloc;break;case 2:if(j=this.productions_[Y[1]][1],Q.$=_[_.length-j],Q._$={first_line:w[w.length-(j||1)].first_line,last_line:w[w.length-1].last_line,first_column:w[w.length-(j||1)].first_column,last_column:w[w.length-1].last_column},$&&(Q._$.range=[w[w.length-(j||1)].range[0],w[w.length-1].range[1]]),W=this.performAction.apply(Q,[C,k,A,M.yy,Y[1],_,w].concat(L)),typeof W<"u")return W;j&&(m=m.slice(0,-1*j*2),_=_.slice(0,-1*j),w=w.slice(0,-1*j)),m.push(this.productions_[Y[1]][0]),_.push(Q.$),w.push(Q._$),ee=S[m[m.length-2]][m[m.length-1]],m.push(ee);break;case 3:return!0}}return!0},"parse")},o=function(){var h={EOF:1,parseError:X(function(p,m){if(this.yy.parser)this.yy.parser.parseError(p,m);else throw new Error(p)},"parseError"),setInput:X(function(f,p){return this.yy=p||this.yy||{},this._input=f,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var f=this._input[0];this.yytext+=f,this.yyleng++,this.offset++,this.match+=f,this.matched+=f;var p=f.match(/(?:\r\n?|\n).*/g);return p?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),f},"input"),unput:X(function(f){var p=f.length,m=f.split(/(?:\r\n?|\n)/g);this._input=f+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-p),this.offset-=p;var b=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),m.length-1&&(this.yylineno-=m.length-1);var _=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:m?(m.length===b.length?this.yylloc.first_column:0)+b[b.length-m.length].length-m[0].length:this.yylloc.first_column-p},this.options.ranges&&(this.yylloc.range=[_[0],_[0]+this.yyleng-p]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(f){this.unput(this.match.slice(f))},"less"),pastInput:X(function(){var f=this.matched.substr(0,this.matched.length-this.match.length);return(f.length>20?"...":"")+f.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var f=this.match;return f.length<20&&(f+=this._input.substr(0,20-f.length)),(f.substr(0,20)+(f.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var f=this.pastInput(),p=new Array(f.length+1).join("-");return f+this.upcomingInput()+` +`+p+"^"},"showPosition"),test_match:X(function(f,p){var m,b,_;if(this.options.backtrack_lexer&&(_={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(_.yylloc.range=this.yylloc.range.slice(0))),b=f[0].match(/(?:\r\n?|\n).*/g),b&&(this.yylineno+=b.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:b?b[b.length-1].length-b[b.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+f[0].length},this.yytext+=f[0],this.match+=f[0],this.matches=f,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(f[0].length),this.matched+=f[0],m=this.performAction.call(this,this.yy,this,p,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),m)return m;if(this._backtrack){for(var w in _)this[w]=_[w];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var f,p,m,b;this._more||(this.yytext="",this.match="");for(var _=this._currentRules(),w=0;w<_.length;w++)if(m=this._input.match(this.rules[_[w]]),m&&(!p||m[0].length>p[0].length)){if(p=m,b=w,this.options.backtrack_lexer){if(f=this.test_match(m,_[w]),f!==!1)return f;if(this._backtrack){p=!1;continue}else return!1}else if(!this.options.flex)break}return p?(f=this.test_match(p,_[b]),f!==!1?f:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var p=this.next();return p||this.lex()},"lex"),begin:X(function(p){this.conditionStack.push(p)},"begin"),popState:X(function(){var p=this.conditionStack.length-1;return p>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(p){return p=this.conditionStack.length-1-Math.abs(p||0),p>=0?this.conditionStack[p]:"INITIAL"},"topState"),pushState:X(function(p){this.begin(p)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{"case-insensitive":!0},performAction:X(function(p,m,b,_){switch(b){case 0:return this.pushState("csv"),4;case 1:return this.pushState("csv"),4;case 2:return 10;case 3:return 5;case 4:return 12;case 5:return this.pushState("escaped_text"),18;case 6:return 20;case 7:return this.popState("escaped_text"),18;case 8:return 19}},"anonymous"),rules:[/^(?:sankey-beta\b)/i,/^(?:sankey\b)/i,/^(?:$)/i,/^(?:((\u000D\u000A)|(\u000A)))/i,/^(?:(\u002C))/i,/^(?:(\u0022))/i,/^(?:([\u0020-\u0021\u0023-\u002B\u002D-\u007E])*)/i,/^(?:(\u0022)(?!(\u0022)))/i,/^(?:(([\u0020-\u0021\u0023-\u002B\u002D-\u007E])|(\u002C)|(\u000D)|(\u000A)|(\u0022)(\u0022))*)/i],conditions:{csv:{rules:[2,3,4,5,6,7,8],inclusive:!1},escaped_text:{rules:[7,8],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8],inclusive:!0}}};return h}();s.lexer=o;function u(){this.yy={}}return X(u,"Parser"),u.prototype=s,s.Parser=u,new u}();zut.parser=zut;var FTe=zut,n6e=[],r6e=[],$Te=new Map,qQi=X(()=>{n6e=[],r6e=[],$Te=new Map,M1()},"clear"),oj,HQi=(oj=class{constructor(t,r,a=0){this.source=t,this.target=r,this.value=a}},X(oj,"SankeyLink"),oj),VQi=X((e,t,r)=>{n6e.push(new HQi(e,t,r))},"addLink"),lj,YQi=(lj=class{constructor(t){this.ID=t}},X(lj,"SankeyNode"),lj),jQi=X(e=>{e=Ti.sanitizeText(e,nn());let t=$Te.get(e);return t===void 0&&(t=new YQi(e),$Te.set(e,t),r6e.push(t)),t},"findOrCreateNode"),WQi=X(()=>r6e,"getNodes"),KQi=X(()=>n6e,"getLinks"),XQi=X(()=>({nodes:r6e.map(e=>({id:e.ID})),links:n6e.map(e=>({source:e.source.ID,target:e.target.ID,value:e.value}))}),"getGraph"),QQi={nodesMap:$Te,getConfig:X(()=>nn().sankey,"getConfig"),getNodes:WQi,getLinks:KQi,getGraph:XQi,addLink:VQi,findOrCreateNode:jQi,getAccTitle:Mp,setAccTitle:N1,getAccDescription:Bp,setAccDescription:Pp,getDiagramTitle:P1,setDiagramTitle:Og,clear:qQi},M7,LTn=(M7=class{static next(t){return new M7(t+ ++M7.count)}constructor(t){this.id=t,this.href=`#${t}`}toString(){return"url("+this.href+")"}},X(M7,"Uid"),M7.count=0,M7),ZQi={left:MXn,right:PXn,center:BXn,justify:obt},JQi=X(function(e,t,r,a){const{securityLevel:s,sankey:o}=nn(),u=SLn.sankey;let h;s==="sandbox"&&(h=gn("#i"+t));const f=gn(s==="sandbox"?h.nodes()[0].contentDocument.body:"body"),p=s==="sandbox"?f.select(`[id="${t}"]`):gn(`[id="${t}"]`),m=(o==null?void 0:o.width)??u.width,b=(o==null?void 0:o.height)??u.width,_=(o==null?void 0:o.useMaxWidth)??u.useMaxWidth,w=(o==null?void 0:o.nodeAlignment)??u.nodeAlignment,S=(o==null?void 0:o.prefix)??u.prefix,C=(o==null?void 0:o.suffix)??u.suffix,A=(o==null?void 0:o.showValues)??u.showValues,k=a.db.getGraph(),I=ZQi[w];FXn().nodeId(G=>G.id).nodeWidth(10).nodePadding(10+(A?15:0)).nodeAlign(I).extent([[0,0],[m,b]])(k);const P=cA(o1t);p.append("g").attr("class","nodes").selectAll(".node").data(k.nodes).join("g").attr("class","node").attr("id",G=>(G.uid=LTn.next("node-")).id).attr("transform",function(G){return"translate("+G.x0+","+G.y0+")"}).attr("x",G=>G.x0).attr("y",G=>G.y0).append("rect").attr("height",G=>G.y1-G.y0).attr("width",G=>G.x1-G.x0).attr("fill",G=>P(G.id));const M=X(({id:G,value:B})=>A?`${G} +${S}${Math.round(B*100)/100}${C}`:G,"getText");p.append("g").attr("class","node-labels").attr("font-size",14).selectAll("text").data(k.nodes).join("text").attr("x",G=>G.x0(G.y1+G.y0)/2).attr("dy",`${A?"0":"0.35"}em`).attr("text-anchor",G=>G.x0(B.uid=LTn.next("linearGradient-")).id).attr("gradientUnits","userSpaceOnUse").attr("x1",B=>B.source.x1).attr("x2",B=>B.target.x0);G.append("stop").attr("offset","0%").attr("stop-color",B=>P(B.source.id)),G.append("stop").attr("offset","100%").attr("stop-color",B=>P(B.target.id))}let $;switch(U){case"gradient":$=X(G=>G.uid,"coloring");break;case"source":$=X(G=>P(G.source.id),"coloring");break;case"target":$=X(G=>P(G.target.id),"coloring");break;default:$=U}F.append("path").attr("d",UXn()).attr("stroke",$).attr("stroke-width",G=>Math.max(1,G.width)),rce(void 0,p,0,_)},"draw"),eZi={draw:JQi},tZi=X(e=>e.replaceAll(/^[^\S\n\r]+|[^\S\n\r]+$/g,"").replaceAll(/([\n\r])+/g,` +`).trim(),"prepareTextForParsing"),nZi=X(e=>`.label { + font-family: ${e.fontFamily}; + }`,"getStyles"),rZi=nZi,iZi=FTe.parse.bind(FTe);FTe.parse=e=>iZi(tZi(e));var aZi={styles:rZi,parser:FTe,db:QQi,renderer:eZi};const sZi=Object.freeze(Object.defineProperty({__proto__:null,diagram:aZi},Symbol.toStringTag,{value:"Module"}));var oZi=Cc.packet,cj,zXn=(cj=class{constructor(){this.packet=[],this.setAccTitle=N1,this.getAccTitle=Mp,this.setDiagramTitle=Og,this.getDiagramTitle=P1,this.getAccDescription=Bp,this.setAccDescription=Pp}getConfig(){const t=cv({...oZi,...$c().packet});return t.showBits&&(t.paddingY+=10),t}getPacket(){return this.packet}pushWord(t){t.length>0&&this.packet.push(t)}clear(){M1(),this.packet=[]}},X(cj,"PacketDB"),cj),lZi=1e4,cZi=X((e,t)=>{z$(e,t);let r=-1,a=[],s=1;const{bitsPerRow:o}=t.getConfig();for(let{start:u,end:h,bits:f,label:p}of e.blocks){if(u!==void 0&&h!==void 0&&h{if(e.start===void 0)throw new Error("start should have been set during first phase");if(e.end===void 0)throw new Error("end should have been set during first phase");if(e.start>e.end)throw new Error(`Block start ${e.start} is greater than block end ${e.end}.`);if(e.end+1<=t*r)return[e,void 0];const a=t*r-1,s=t*r;return[{start:e.start,end:a,label:e.label,bits:a-e.start},{start:s,end:e.end,label:e.label,bits:e.end-s}]},"getNextFittingBlock"),GXn={parser:{yy:void 0},parse:X(async e=>{var a;const t=await iL("packet",e),r=(a=GXn.parser)==null?void 0:a.yy;if(!(r instanceof zXn))throw new Error("parser.parser?.yy was not a PacketDB. This is due to a bug within Mermaid, please report this issue at https://github.com/mermaid-js/mermaid/issues.");it.debug(t),cZi(t,r)},"parse")},hZi=X((e,t,r,a)=>{const s=a.db,o=s.getConfig(),{rowHeight:u,paddingY:h,bitWidth:f,bitsPerRow:p}=o,m=s.getPacket(),b=s.getDiagramTitle(),_=u+h,w=_*(m.length+1)-(b?0:u),S=f*p+2,C=bR(t);C.attr("viewbox",`0 0 ${S} ${w}`),yv(C,w,S,o.useMaxWidth);for(const[A,k]of m.entries())dZi(C,k,A,o);C.append("text").text(b).attr("x",S/2).attr("y",w-_/2).attr("dominant-baseline","middle").attr("text-anchor","middle").attr("class","packetTitle")},"draw"),dZi=X((e,t,r,{rowHeight:a,paddingX:s,paddingY:o,bitWidth:u,bitsPerRow:h,showBits:f})=>{const p=e.append("g"),m=r*(a+o)+o;for(const b of t){const _=b.start%h*u+1,w=(b.end-b.start+1)*u-s;if(p.append("rect").attr("x",_).attr("y",m).attr("width",w).attr("height",a).attr("class","packetBlock"),p.append("text").attr("x",_+w/2).attr("y",m+a/2).attr("class","packetLabel").attr("dominant-baseline","middle").attr("text-anchor","middle").text(b.label),!f)continue;const S=b.end===b.start,C=m-2;p.append("text").attr("x",_+(S?w/2:0)).attr("y",C).attr("class","packetByte start").attr("dominant-baseline","auto").attr("text-anchor",S?"middle":"start").text(b.start),S||p.append("text").attr("x",_+w).attr("y",C).attr("class","packetByte end").attr("dominant-baseline","auto").attr("text-anchor","end").text(b.end)}},"drawWord"),fZi={draw:hZi},pZi={byteFontSize:"10px",startByteColor:"black",endByteColor:"black",labelColor:"black",labelFontSize:"12px",titleColor:"black",titleFontSize:"14px",blockStrokeColor:"black",blockStrokeWidth:"1",blockFillColor:"#efefef"},gZi=X(({packet:e}={})=>{const t=cv(pZi,e);return` + .packetByte { + font-size: ${t.byteFontSize}; + } + .packetByte.start { + fill: ${t.startByteColor}; + } + .packetByte.end { + fill: ${t.endByteColor}; + } + .packetLabel { + fill: ${t.labelColor}; + font-size: ${t.labelFontSize}; + } + .packetTitle { + fill: ${t.titleColor}; + font-size: ${t.titleFontSize}; + } + .packetBlock { + stroke: ${t.blockStrokeColor}; + stroke-width: ${t.blockStrokeWidth}; + fill: ${t.blockFillColor}; + } + `},"styles"),mZi={parser:GXn,get db(){return new zXn},renderer:fZi,styles:gZi};const bZi=Object.freeze(Object.defineProperty({__proto__:null,diagram:mZi},Symbol.toStringTag,{value:"Module"}));var vV={showLegend:!0,ticks:5,max:null,min:0,graticule:"circle"},qXn={axes:[],curves:[],options:vV},Q$=structuredClone(qXn),yZi=Cc.radar,vZi=X(()=>cv({...yZi,...$c().radar}),"getConfig"),HXn=X(()=>Q$.axes,"getAxes"),_Zi=X(()=>Q$.curves,"getCurves"),wZi=X(()=>Q$.options,"getOptions"),EZi=X(e=>{Q$.axes=e.map(t=>({name:t.name,label:t.label??t.name}))},"setAxes"),xZi=X(e=>{Q$.curves=e.map(t=>({name:t.name,label:t.label??t.name,entries:SZi(t.entries)}))},"setCurves"),SZi=X(e=>{if(e[0].axis==null)return e.map(r=>r.value);const t=HXn();if(t.length===0)throw new Error("Axes must be populated before curves for reference entries");return t.map(r=>{const a=e.find(s=>{var o;return((o=s.axis)==null?void 0:o.$refText)===r.name});if(a===void 0)throw new Error("Missing entry for axis "+r.label);return a.value})},"computeCurveEntries"),TZi=X(e=>{var r,a,s,o,u;const t=e.reduce((h,f)=>(h[f.name]=f,h),{});Q$.options={showLegend:((r=t.showLegend)==null?void 0:r.value)??vV.showLegend,ticks:((a=t.ticks)==null?void 0:a.value)??vV.ticks,max:((s=t.max)==null?void 0:s.value)??vV.max,min:((o=t.min)==null?void 0:o.value)??vV.min,graticule:((u=t.graticule)==null?void 0:u.value)??vV.graticule}},"setOptions"),CZi=X(()=>{M1(),Q$=structuredClone(qXn)},"clear"),Mae={getAxes:HXn,getCurves:_Zi,getOptions:wZi,setAxes:EZi,setCurves:xZi,setOptions:TZi,getConfig:vZi,clear:CZi,setAccTitle:N1,getAccTitle:Mp,setDiagramTitle:Og,getDiagramTitle:P1,getAccDescription:Bp,setAccDescription:Pp},AZi=X(e=>{z$(e,Mae);const{axes:t,curves:r,options:a}=e;Mae.setAxes(t),Mae.setCurves(r),Mae.setOptions(a)},"populate"),kZi={parse:X(async e=>{const t=await iL("radar",e);it.debug(t),AZi(t)},"parse")},RZi=X((e,t,r,a)=>{const s=a.db,o=s.getAxes(),u=s.getCurves(),h=s.getOptions(),f=s.getConfig(),p=s.getDiagramTitle(),m=bR(t),b=IZi(m,f),_=h.max??Math.max(...u.map(C=>Math.max(...C.entries))),w=h.min,S=Math.min(f.width,f.height)/2;NZi(b,o,S,h.ticks,h.graticule),OZi(b,o,S,f),VXn(b,o,u,w,_,h.graticule,f),WXn(b,u,h.showLegend,f),b.append("text").attr("class","radarTitle").text(p).attr("x",0).attr("y",-f.height/2-f.marginTop)},"draw"),IZi=X((e,t)=>{const r=t.width+t.marginLeft+t.marginRight,a=t.height+t.marginTop+t.marginBottom,s={x:t.marginLeft+t.width/2,y:t.marginTop+t.height/2};return e.attr("viewbox",`0 0 ${r} ${a}`).attr("width",r).attr("height",a),e.append("g").attr("transform",`translate(${s.x}, ${s.y})`)},"drawFrame"),NZi=X((e,t,r,a,s)=>{if(s==="circle")for(let o=0;o{const b=2*m*Math.PI/o-Math.PI/2,_=h*Math.cos(b),w=h*Math.sin(b);return`${_},${w}`}).join(" ");e.append("polygon").attr("points",f).attr("class","radarGraticule")}}},"drawGraticule"),OZi=X((e,t,r,a)=>{const s=t.length;for(let o=0;o{if(p.entries.length!==h)return;const b=p.entries.map((_,w)=>{const S=2*Math.PI*w/h-Math.PI/2,C=YXn(_,a,s,f),A=C*Math.cos(S),k=C*Math.sin(S);return{x:A,y:k}});o==="circle"?e.append("path").attr("d",jXn(b,u.curveTension)).attr("class",`radarCurve-${m}`):o==="polygon"&&e.append("polygon").attr("points",b.map(_=>`${_.x},${_.y}`).join(" ")).attr("class",`radarCurve-${m}`)})}X(VXn,"drawCurves");function YXn(e,t,r,a){const s=Math.min(Math.max(e,t),r);return a*(s-t)/(r-t)}X(YXn,"relativeRadius");function jXn(e,t){const r=e.length;let a=`M${e[0].x},${e[0].y}`;for(let s=0;s{const p=e.append("g").attr("transform",`translate(${s}, ${o+f*u})`);p.append("rect").attr("width",12).attr("height",12).attr("class",`radarLegendBox-${f}`),p.append("text").attr("x",16).attr("y",0).attr("class","radarLegendText").text(h.label)})}X(WXn,"drawLegend");var LZi={draw:RZi},DZi=X((e,t)=>{let r="";for(let a=0;a{const t=JCe(),r=$c(),a=cv(t,r.themeVariables),s=cv(a.radar,e);return{themeVariables:a,radarOptions:s}},"buildRadarStyleOptions"),PZi=X(({radar:e}={})=>{const{themeVariables:t,radarOptions:r}=MZi(e);return` + .radarTitle { + font-size: ${t.fontSize}; + color: ${t.titleColor}; + dominant-baseline: hanging; + text-anchor: middle; + } + .radarAxisLine { + stroke: ${r.axisColor}; + stroke-width: ${r.axisStrokeWidth}; + } + .radarAxisLabel { + dominant-baseline: middle; + text-anchor: middle; + font-size: ${r.axisLabelFontSize}px; + color: ${r.axisColor}; + } + .radarGraticule { + fill: ${r.graticuleColor}; + fill-opacity: ${r.graticuleOpacity}; + stroke: ${r.graticuleColor}; + stroke-width: ${r.graticuleStrokeWidth}; + } + .radarLegendText { + text-anchor: start; + font-size: ${r.legendFontSize}px; + dominant-baseline: hanging; + } + ${DZi(t,r)} + `},"styles"),BZi={parser:kZi,db:Mae,renderer:LZi,styles:PZi};const FZi=Object.freeze(Object.defineProperty({__proto__:null,diagram:BZi},Symbol.toStringTag,{value:"Module"}));var Gut=function(){var e=X(function(N,L,P,M){for(P=P||{},M=N.length;M--;P[N[M]]=L);return P},"o"),t=[1,15],r=[1,7],a=[1,13],s=[1,14],o=[1,19],u=[1,16],h=[1,17],f=[1,18],p=[8,30],m=[8,10,21,28,29,30,31,39,43,46],b=[1,23],_=[1,24],w=[8,10,15,16,21,28,29,30,31,39,43,46],S=[8,10,15,16,21,27,28,29,30,31,39,43,46],C=[1,49],A={trace:X(function(){},"trace"),yy:{},symbols_:{error:2,spaceLines:3,SPACELINE:4,NL:5,separator:6,SPACE:7,EOF:8,start:9,BLOCK_DIAGRAM_KEY:10,document:11,stop:12,statement:13,link:14,LINK:15,START_LINK:16,LINK_LABEL:17,STR:18,nodeStatement:19,columnsStatement:20,SPACE_BLOCK:21,blockStatement:22,classDefStatement:23,cssClassStatement:24,styleStatement:25,node:26,SIZE:27,COLUMNS:28,"id-block":29,end:30,NODE_ID:31,nodeShapeNLabel:32,dirList:33,DIR:34,NODE_DSTART:35,NODE_DEND:36,BLOCK_ARROW_START:37,BLOCK_ARROW_END:38,classDef:39,CLASSDEF_ID:40,CLASSDEF_STYLEOPTS:41,DEFAULT:42,class:43,CLASSENTITY_IDS:44,STYLECLASS:45,style:46,STYLE_ENTITY_IDS:47,STYLE_DEFINITION_DATA:48,$accept:0,$end:1},terminals_:{2:"error",4:"SPACELINE",5:"NL",7:"SPACE",8:"EOF",10:"BLOCK_DIAGRAM_KEY",15:"LINK",16:"START_LINK",17:"LINK_LABEL",18:"STR",21:"SPACE_BLOCK",27:"SIZE",28:"COLUMNS",29:"id-block",30:"end",31:"NODE_ID",34:"DIR",35:"NODE_DSTART",36:"NODE_DEND",37:"BLOCK_ARROW_START",38:"BLOCK_ARROW_END",39:"classDef",40:"CLASSDEF_ID",41:"CLASSDEF_STYLEOPTS",42:"DEFAULT",43:"class",44:"CLASSENTITY_IDS",45:"STYLECLASS",46:"style",47:"STYLE_ENTITY_IDS",48:"STYLE_DEFINITION_DATA"},productions_:[0,[3,1],[3,2],[3,2],[6,1],[6,1],[6,1],[9,3],[12,1],[12,1],[12,2],[12,2],[11,1],[11,2],[14,1],[14,4],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[19,3],[19,2],[19,1],[20,1],[22,4],[22,3],[26,1],[26,2],[33,1],[33,2],[32,3],[32,4],[23,3],[23,3],[24,3],[25,3]],performAction:X(function(L,P,M,F,U,$,G){var B=$.length-1;switch(U){case 4:F.getLogger().debug("Rule: separator (NL) ");break;case 5:F.getLogger().debug("Rule: separator (Space) ");break;case 6:F.getLogger().debug("Rule: separator (EOF) ");break;case 7:F.getLogger().debug("Rule: hierarchy: ",$[B-1]),F.setHierarchy($[B-1]);break;case 8:F.getLogger().debug("Stop NL ");break;case 9:F.getLogger().debug("Stop EOF ");break;case 10:F.getLogger().debug("Stop NL2 ");break;case 11:F.getLogger().debug("Stop EOF2 ");break;case 12:F.getLogger().debug("Rule: statement: ",$[B]),typeof $[B].length=="number"?this.$=$[B]:this.$=[$[B]];break;case 13:F.getLogger().debug("Rule: statement #2: ",$[B-1]),this.$=[$[B-1]].concat($[B]);break;case 14:F.getLogger().debug("Rule: link: ",$[B],L),this.$={edgeTypeStr:$[B],label:""};break;case 15:F.getLogger().debug("Rule: LABEL link: ",$[B-3],$[B-1],$[B]),this.$={edgeTypeStr:$[B],label:$[B-1]};break;case 18:const Z=parseInt($[B]),z=F.generateId();this.$={id:z,type:"space",label:"",width:Z,children:[]};break;case 23:F.getLogger().debug("Rule: (nodeStatement link node) ",$[B-2],$[B-1],$[B]," typestr: ",$[B-1].edgeTypeStr);const Y=F.edgeStrToEdgeData($[B-1].edgeTypeStr);this.$=[{id:$[B-2].id,label:$[B-2].label,type:$[B-2].type,directions:$[B-2].directions},{id:$[B-2].id+"-"+$[B].id,start:$[B-2].id,end:$[B].id,label:$[B-1].label,type:"edge",directions:$[B].directions,arrowTypeEnd:Y,arrowTypeStart:"arrow_open"},{id:$[B].id,label:$[B].label,type:F.typeStr2Type($[B].typeStr),directions:$[B].directions}];break;case 24:F.getLogger().debug("Rule: nodeStatement (abc88 node size) ",$[B-1],$[B]),this.$={id:$[B-1].id,label:$[B-1].label,type:F.typeStr2Type($[B-1].typeStr),directions:$[B-1].directions,widthInColumns:parseInt($[B],10)};break;case 25:F.getLogger().debug("Rule: nodeStatement (node) ",$[B]),this.$={id:$[B].id,label:$[B].label,type:F.typeStr2Type($[B].typeStr),directions:$[B].directions,widthInColumns:1};break;case 26:F.getLogger().debug("APA123",this?this:"na"),F.getLogger().debug("COLUMNS: ",$[B]),this.$={type:"column-setting",columns:$[B]==="auto"?-1:parseInt($[B])};break;case 27:F.getLogger().debug("Rule: id-block statement : ",$[B-2],$[B-1]),F.generateId(),this.$={...$[B-2],type:"composite",children:$[B-1]};break;case 28:F.getLogger().debug("Rule: blockStatement : ",$[B-2],$[B-1],$[B]);const W=F.generateId();this.$={id:W,type:"composite",label:"",children:$[B-1]};break;case 29:F.getLogger().debug("Rule: node (NODE_ID separator): ",$[B]),this.$={id:$[B]};break;case 30:F.getLogger().debug("Rule: node (NODE_ID nodeShapeNLabel separator): ",$[B-1],$[B]),this.$={id:$[B-1],label:$[B].label,typeStr:$[B].typeStr,directions:$[B].directions};break;case 31:F.getLogger().debug("Rule: dirList: ",$[B]),this.$=[$[B]];break;case 32:F.getLogger().debug("Rule: dirList: ",$[B-1],$[B]),this.$=[$[B-1]].concat($[B]);break;case 33:F.getLogger().debug("Rule: nodeShapeNLabel: ",$[B-2],$[B-1],$[B]),this.$={typeStr:$[B-2]+$[B],label:$[B-1]};break;case 34:F.getLogger().debug("Rule: BLOCK_ARROW nodeShapeNLabel: ",$[B-3],$[B-2]," #3:",$[B-1],$[B]),this.$={typeStr:$[B-3]+$[B],label:$[B-2],directions:$[B-1]};break;case 35:case 36:this.$={type:"classDef",id:$[B-1].trim(),css:$[B].trim()};break;case 37:this.$={type:"applyClass",id:$[B-1].trim(),styleClass:$[B].trim()};break;case 38:this.$={type:"applyStyles",id:$[B-1].trim(),stylesStr:$[B].trim()};break}},"anonymous"),table:[{9:1,10:[1,2]},{1:[3]},{10:t,11:3,13:4,19:5,20:6,21:r,22:8,23:9,24:10,25:11,26:12,28:a,29:s,31:o,39:u,43:h,46:f},{8:[1,20]},e(p,[2,12],{13:4,19:5,20:6,22:8,23:9,24:10,25:11,26:12,11:21,10:t,21:r,28:a,29:s,31:o,39:u,43:h,46:f}),e(m,[2,16],{14:22,15:b,16:_}),e(m,[2,17]),e(m,[2,18]),e(m,[2,19]),e(m,[2,20]),e(m,[2,21]),e(m,[2,22]),e(w,[2,25],{27:[1,25]}),e(m,[2,26]),{19:26,26:12,31:o},{10:t,11:27,13:4,19:5,20:6,21:r,22:8,23:9,24:10,25:11,26:12,28:a,29:s,31:o,39:u,43:h,46:f},{40:[1,28],42:[1,29]},{44:[1,30]},{47:[1,31]},e(S,[2,29],{32:32,35:[1,33],37:[1,34]}),{1:[2,7]},e(p,[2,13]),{26:35,31:o},{31:[2,14]},{17:[1,36]},e(w,[2,24]),{10:t,11:37,13:4,14:22,15:b,16:_,19:5,20:6,21:r,22:8,23:9,24:10,25:11,26:12,28:a,29:s,31:o,39:u,43:h,46:f},{30:[1,38]},{41:[1,39]},{41:[1,40]},{45:[1,41]},{48:[1,42]},e(S,[2,30]),{18:[1,43]},{18:[1,44]},e(w,[2,23]),{18:[1,45]},{30:[1,46]},e(m,[2,28]),e(m,[2,35]),e(m,[2,36]),e(m,[2,37]),e(m,[2,38]),{36:[1,47]},{33:48,34:C},{15:[1,50]},e(m,[2,27]),e(S,[2,33]),{38:[1,51]},{33:52,34:C,38:[2,31]},{31:[2,15]},e(S,[2,34]),{38:[2,32]}],defaultActions:{20:[2,7],23:[2,14],50:[2,15],52:[2,32]},parseError:X(function(L,P){if(P.recoverable)this.trace(L);else{var M=new Error(L);throw M.hash=P,M}},"parseError"),parse:X(function(L){var P=this,M=[0],F=[],U=[null],$=[],G=this.table,B="",Z=0,z=0,Y=2,W=1,Q=$.slice.call(arguments,1),V=Object.create(this.lexer),j={yy:{}};for(var ee in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ee)&&(j.yy[ee]=this.yy[ee]);V.setInput(L,j.yy),j.yy.lexer=V,j.yy.parser=this,typeof V.yylloc>"u"&&(V.yylloc={});var te=V.yylloc;$.push(te);var ne=V.options&&V.options.ranges;typeof j.yy.parseError=="function"?this.parseError=j.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function se(Ie){M.length=M.length-2*Ie,U.length=U.length-Ie,$.length=$.length-Ie}X(se,"popStack");function ie(){var Ie;return Ie=F.pop()||V.lex()||W,typeof Ie!="number"&&(Ie instanceof Array&&(F=Ie,Ie=F.pop()),Ie=P.symbols_[Ie]||Ie),Ie}X(ie,"lex");for(var ge,ce,be,ve,De={},ye,Ee,he,we;;){if(ce=M[M.length-1],this.defaultActions[ce]?be=this.defaultActions[ce]:((ge===null||typeof ge>"u")&&(ge=ie()),be=G[ce]&&G[ce][ge]),typeof be>"u"||!be.length||!be[0]){var Ce="";we=[];for(ye in G[ce])this.terminals_[ye]&&ye>Y&&we.push("'"+this.terminals_[ye]+"'");V.showPosition?Ce="Parse error on line "+(Z+1)+`: +`+V.showPosition()+` +Expecting `+we.join(", ")+", got '"+(this.terminals_[ge]||ge)+"'":Ce="Parse error on line "+(Z+1)+": Unexpected "+(ge==W?"end of input":"'"+(this.terminals_[ge]||ge)+"'"),this.parseError(Ce,{text:V.match,token:this.terminals_[ge]||ge,line:V.yylineno,loc:te,expected:we})}if(be[0]instanceof Array&&be.length>1)throw new Error("Parse Error: multiple actions possible at state: "+ce+", token: "+ge);switch(be[0]){case 1:M.push(ge),U.push(V.yytext),$.push(V.yylloc),M.push(be[1]),ge=null,z=V.yyleng,B=V.yytext,Z=V.yylineno,te=V.yylloc;break;case 2:if(Ee=this.productions_[be[1]][1],De.$=U[U.length-Ee],De._$={first_line:$[$.length-(Ee||1)].first_line,last_line:$[$.length-1].last_line,first_column:$[$.length-(Ee||1)].first_column,last_column:$[$.length-1].last_column},ne&&(De._$.range=[$[$.length-(Ee||1)].range[0],$[$.length-1].range[1]]),ve=this.performAction.apply(De,[B,z,Z,j.yy,be[1],U,$].concat(Q)),typeof ve<"u")return ve;Ee&&(M=M.slice(0,-1*Ee*2),U=U.slice(0,-1*Ee),$=$.slice(0,-1*Ee)),M.push(this.productions_[be[1]][0]),U.push(De.$),$.push(De._$),he=G[M[M.length-2]][M[M.length-1]],M.push(he);break;case 3:return!0}}return!0},"parse")},k=function(){var N={EOF:1,parseError:X(function(P,M){if(this.yy.parser)this.yy.parser.parseError(P,M);else throw new Error(P)},"parseError"),setInput:X(function(L,P){return this.yy=P||this.yy||{},this._input=L,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},"setInput"),input:X(function(){var L=this._input[0];this.yytext+=L,this.yyleng++,this.offset++,this.match+=L,this.matched+=L;var P=L.match(/(?:\r\n?|\n).*/g);return P?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),L},"input"),unput:X(function(L){var P=L.length,M=L.split(/(?:\r\n?|\n)/g);this._input=L+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-P),this.offset-=P;var F=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),M.length-1&&(this.yylineno-=M.length-1);var U=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:M?(M.length===F.length?this.yylloc.first_column:0)+F[F.length-M.length].length-M[0].length:this.yylloc.first_column-P},this.options.ranges&&(this.yylloc.range=[U[0],U[0]+this.yyleng-P]),this.yyleng=this.yytext.length,this},"unput"),more:X(function(){return this._more=!0,this},"more"),reject:X(function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},"reject"),less:X(function(L){this.unput(this.match.slice(L))},"less"),pastInput:X(function(){var L=this.matched.substr(0,this.matched.length-this.match.length);return(L.length>20?"...":"")+L.substr(-20).replace(/\n/g,"")},"pastInput"),upcomingInput:X(function(){var L=this.match;return L.length<20&&(L+=this._input.substr(0,20-L.length)),(L.substr(0,20)+(L.length>20?"...":"")).replace(/\n/g,"")},"upcomingInput"),showPosition:X(function(){var L=this.pastInput(),P=new Array(L.length+1).join("-");return L+this.upcomingInput()+` +`+P+"^"},"showPosition"),test_match:X(function(L,P){var M,F,U;if(this.options.backtrack_lexer&&(U={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(U.yylloc.range=this.yylloc.range.slice(0))),F=L[0].match(/(?:\r\n?|\n).*/g),F&&(this.yylineno+=F.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:F?F[F.length-1].length-F[F.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+L[0].length},this.yytext+=L[0],this.match+=L[0],this.matches=L,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(L[0].length),this.matched+=L[0],M=this.performAction.call(this,this.yy,this,P,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),M)return M;if(this._backtrack){for(var $ in U)this[$]=U[$];return!1}return!1},"test_match"),next:X(function(){if(this.done)return this.EOF;this._input||(this.done=!0);var L,P,M,F;this._more||(this.yytext="",this.match="");for(var U=this._currentRules(),$=0;$P[0].length)){if(P=M,F=$,this.options.backtrack_lexer){if(L=this.test_match(M,U[$]),L!==!1)return L;if(this._backtrack){P=!1;continue}else return!1}else if(!this.options.flex)break}return P?(L=this.test_match(P,U[F]),L!==!1?L:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},"next"),lex:X(function(){var P=this.next();return P||this.lex()},"lex"),begin:X(function(P){this.conditionStack.push(P)},"begin"),popState:X(function(){var P=this.conditionStack.length-1;return P>0?this.conditionStack.pop():this.conditionStack[0]},"popState"),_currentRules:X(function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},"_currentRules"),topState:X(function(P){return P=this.conditionStack.length-1-Math.abs(P||0),P>=0?this.conditionStack[P]:"INITIAL"},"topState"),pushState:X(function(P){this.begin(P)},"pushState"),stateStackSize:X(function(){return this.conditionStack.length},"stateStackSize"),options:{},performAction:X(function(P,M,F,U){switch(F){case 0:return P.getLogger().debug("Found block-beta"),10;case 1:return P.getLogger().debug("Found id-block"),29;case 2:return P.getLogger().debug("Found block"),10;case 3:P.getLogger().debug(".",M.yytext);break;case 4:P.getLogger().debug("_",M.yytext);break;case 5:return 5;case 6:return M.yytext=-1,28;case 7:return M.yytext=M.yytext.replace(/columns\s+/,""),P.getLogger().debug("COLUMNS (LEX)",M.yytext),28;case 8:this.pushState("md_string");break;case 9:return"MD_STR";case 10:this.popState();break;case 11:this.pushState("string");break;case 12:P.getLogger().debug("LEX: POPPING STR:",M.yytext),this.popState();break;case 13:return P.getLogger().debug("LEX: STR end:",M.yytext),"STR";case 14:return M.yytext=M.yytext.replace(/space\:/,""),P.getLogger().debug("SPACE NUM (LEX)",M.yytext),21;case 15:return M.yytext="1",P.getLogger().debug("COLUMNS (LEX)",M.yytext),21;case 16:return 42;case 17:return"LINKSTYLE";case 18:return"INTERPOLATE";case 19:return this.pushState("CLASSDEF"),39;case 20:return this.popState(),this.pushState("CLASSDEFID"),"DEFAULT_CLASSDEF_ID";case 21:return this.popState(),this.pushState("CLASSDEFID"),40;case 22:return this.popState(),41;case 23:return this.pushState("CLASS"),43;case 24:return this.popState(),this.pushState("CLASS_STYLE"),44;case 25:return this.popState(),45;case 26:return this.pushState("STYLE_STMNT"),46;case 27:return this.popState(),this.pushState("STYLE_DEFINITION"),47;case 28:return this.popState(),48;case 29:return this.pushState("acc_title"),"acc_title";case 30:return this.popState(),"acc_title_value";case 31:return this.pushState("acc_descr"),"acc_descr";case 32:return this.popState(),"acc_descr_value";case 33:this.pushState("acc_descr_multiline");break;case 34:this.popState();break;case 35:return"acc_descr_multiline_value";case 36:return 30;case 37:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 38:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 39:return this.popState(),P.getLogger().debug("Lex: ))"),"NODE_DEND";case 40:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 41:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 42:return this.popState(),P.getLogger().debug("Lex: (-"),"NODE_DEND";case 43:return this.popState(),P.getLogger().debug("Lex: -)"),"NODE_DEND";case 44:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 45:return this.popState(),P.getLogger().debug("Lex: ]]"),"NODE_DEND";case 46:return this.popState(),P.getLogger().debug("Lex: ("),"NODE_DEND";case 47:return this.popState(),P.getLogger().debug("Lex: ])"),"NODE_DEND";case 48:return this.popState(),P.getLogger().debug("Lex: /]"),"NODE_DEND";case 49:return this.popState(),P.getLogger().debug("Lex: /]"),"NODE_DEND";case 50:return this.popState(),P.getLogger().debug("Lex: )]"),"NODE_DEND";case 51:return this.popState(),P.getLogger().debug("Lex: )"),"NODE_DEND";case 52:return this.popState(),P.getLogger().debug("Lex: ]>"),"NODE_DEND";case 53:return this.popState(),P.getLogger().debug("Lex: ]"),"NODE_DEND";case 54:return P.getLogger().debug("Lexa: -)"),this.pushState("NODE"),35;case 55:return P.getLogger().debug("Lexa: (-"),this.pushState("NODE"),35;case 56:return P.getLogger().debug("Lexa: ))"),this.pushState("NODE"),35;case 57:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),35;case 58:return P.getLogger().debug("Lex: ((("),this.pushState("NODE"),35;case 59:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),35;case 60:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),35;case 61:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),35;case 62:return P.getLogger().debug("Lexc: >"),this.pushState("NODE"),35;case 63:return P.getLogger().debug("Lexa: (["),this.pushState("NODE"),35;case 64:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),35;case 65:return this.pushState("NODE"),35;case 66:return this.pushState("NODE"),35;case 67:return this.pushState("NODE"),35;case 68:return this.pushState("NODE"),35;case 69:return this.pushState("NODE"),35;case 70:return this.pushState("NODE"),35;case 71:return this.pushState("NODE"),35;case 72:return P.getLogger().debug("Lexa: ["),this.pushState("NODE"),35;case 73:return this.pushState("BLOCK_ARROW"),P.getLogger().debug("LEX ARR START"),37;case 74:return P.getLogger().debug("Lex: NODE_ID",M.yytext),31;case 75:return P.getLogger().debug("Lex: EOF",M.yytext),8;case 76:this.pushState("md_string");break;case 77:this.pushState("md_string");break;case 78:return"NODE_DESCR";case 79:this.popState();break;case 80:P.getLogger().debug("Lex: Starting string"),this.pushState("string");break;case 81:P.getLogger().debug("LEX ARR: Starting string"),this.pushState("string");break;case 82:return P.getLogger().debug("LEX: NODE_DESCR:",M.yytext),"NODE_DESCR";case 83:P.getLogger().debug("LEX POPPING"),this.popState();break;case 84:P.getLogger().debug("Lex: =>BAE"),this.pushState("ARROW_DIR");break;case 85:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (right): dir:",M.yytext),"DIR";case 86:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (left):",M.yytext),"DIR";case 87:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (x):",M.yytext),"DIR";case 88:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (y):",M.yytext),"DIR";case 89:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (up):",M.yytext),"DIR";case 90:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (down):",M.yytext),"DIR";case 91:return M.yytext="]>",P.getLogger().debug("Lex (ARROW_DIR end):",M.yytext),this.popState(),this.popState(),"BLOCK_ARROW_END";case 92:return P.getLogger().debug("Lex: LINK","#"+M.yytext+"#"),15;case 93:return P.getLogger().debug("Lex: LINK",M.yytext),15;case 94:return P.getLogger().debug("Lex: LINK",M.yytext),15;case 95:return P.getLogger().debug("Lex: LINK",M.yytext),15;case 96:return P.getLogger().debug("Lex: START_LINK",M.yytext),this.pushState("LLABEL"),16;case 97:return P.getLogger().debug("Lex: START_LINK",M.yytext),this.pushState("LLABEL"),16;case 98:return P.getLogger().debug("Lex: START_LINK",M.yytext),this.pushState("LLABEL"),16;case 99:this.pushState("md_string");break;case 100:return P.getLogger().debug("Lex: Starting string"),this.pushState("string"),"LINK_LABEL";case 101:return this.popState(),P.getLogger().debug("Lex: LINK","#"+M.yytext+"#"),15;case 102:return this.popState(),P.getLogger().debug("Lex: LINK",M.yytext),15;case 103:return this.popState(),P.getLogger().debug("Lex: LINK",M.yytext),15;case 104:return P.getLogger().debug("Lex: COLON",M.yytext),M.yytext=M.yytext.slice(1),27}},"anonymous"),rules:[/^(?:block-beta\b)/,/^(?:block:)/,/^(?:block\b)/,/^(?:[\s]+)/,/^(?:[\n]+)/,/^(?:((\u000D\u000A)|(\u000A)))/,/^(?:columns\s+auto\b)/,/^(?:columns\s+[\d]+)/,/^(?:["][`])/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:space[:]\d+)/,/^(?:space\b)/,/^(?:default\b)/,/^(?:linkStyle\b)/,/^(?:interpolate\b)/,/^(?:classDef\s+)/,/^(?:DEFAULT\s+)/,/^(?:\w+\s+)/,/^(?:[^\n]*)/,/^(?:class\s+)/,/^(?:(\w+)+((,\s*\w+)*))/,/^(?:[^\n]*)/,/^(?:style\s+)/,/^(?:(\w+)+((,\s*\w+)*))/,/^(?:[^\n]*)/,/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:end\b\s*)/,/^(?:\(\(\()/,/^(?:\)\)\))/,/^(?:[\)]\))/,/^(?:\}\})/,/^(?:\})/,/^(?:\(-)/,/^(?:-\))/,/^(?:\(\()/,/^(?:\]\])/,/^(?:\()/,/^(?:\]\))/,/^(?:\\\])/,/^(?:\/\])/,/^(?:\)\])/,/^(?:[\)])/,/^(?:\]>)/,/^(?:[\]])/,/^(?:-\))/,/^(?:\(-)/,/^(?:\)\))/,/^(?:\))/,/^(?:\(\(\()/,/^(?:\(\()/,/^(?:\{\{)/,/^(?:\{)/,/^(?:>)/,/^(?:\(\[)/,/^(?:\()/,/^(?:\[\[)/,/^(?:\[\|)/,/^(?:\[\()/,/^(?:\)\)\))/,/^(?:\[\\)/,/^(?:\[\/)/,/^(?:\[\\)/,/^(?:\[)/,/^(?:<\[)/,/^(?:[^\(\[\n\-\)\{\}\s\<\>:]+)/,/^(?:$)/,/^(?:["][`])/,/^(?:["][`])/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["])/,/^(?:["])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:\]>\s*\()/,/^(?:,?\s*right\s*)/,/^(?:,?\s*left\s*)/,/^(?:,?\s*x\s*)/,/^(?:,?\s*y\s*)/,/^(?:,?\s*up\s*)/,/^(?:,?\s*down\s*)/,/^(?:\)\s*)/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?:\s*~~[\~]+\s*)/,/^(?:\s*[xo<]?--\s*)/,/^(?:\s*[xo<]?==\s*)/,/^(?:\s*[xo<]?-\.\s*)/,/^(?:["][`])/,/^(?:["])/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?::\d+)/],conditions:{STYLE_DEFINITION:{rules:[28],inclusive:!1},STYLE_STMNT:{rules:[27],inclusive:!1},CLASSDEFID:{rules:[22],inclusive:!1},CLASSDEF:{rules:[20,21],inclusive:!1},CLASS_STYLE:{rules:[25],inclusive:!1},CLASS:{rules:[24],inclusive:!1},LLABEL:{rules:[99,100,101,102,103],inclusive:!1},ARROW_DIR:{rules:[85,86,87,88,89,90,91],inclusive:!1},BLOCK_ARROW:{rules:[76,81,84],inclusive:!1},NODE:{rules:[37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,77,80],inclusive:!1},md_string:{rules:[9,10,78,79],inclusive:!1},space:{rules:[],inclusive:!1},string:{rules:[12,13,82,83],inclusive:!1},acc_descr_multiline:{rules:[34,35],inclusive:!1},acc_descr:{rules:[32],inclusive:!1},acc_title:{rules:[30],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8,11,14,15,16,17,18,19,23,26,29,31,33,36,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,92,93,94,95,96,97,98,104],inclusive:!0}}};return N}();A.lexer=k;function I(){this.yy={}}return X(I,"Parser"),I.prototype=A,A.Parser=I,new I}();Gut.parser=Gut;var $Zi=Gut,nT=new Map,lbt=[],qut=new Map,DTn="color",MTn="fill",UZi="bgFill",KXn=",",zZi=nn(),UTe=new Map,GZi=X(e=>Ti.sanitizeText(e,zZi),"sanitizeText"),qZi=X(function(e,t=""){let r=UTe.get(e);r||(r={id:e,styles:[],textStyles:[]},UTe.set(e,r)),t!=null&&t.split(KXn).forEach(a=>{const s=a.replace(/([^;]*);/,"$1").trim();if(RegExp(DTn).exec(a)){const u=s.replace(MTn,UZi).replace(DTn,MTn);r.textStyles.push(u)}r.styles.push(s)})},"addStyleClass"),HZi=X(function(e,t=""){const r=nT.get(e);t!=null&&(r.styles=t.split(KXn))},"addStyle2Node"),VZi=X(function(e,t){e.split(",").forEach(function(r){let a=nT.get(r);if(a===void 0){const s=r.trim();a={id:s,type:"na",children:[]},nT.set(s,a)}a.classes||(a.classes=[]),a.classes.push(t)})},"setCssClass"),XXn=X((e,t)=>{const r=e.flat(),a=[],s=r.find(u=>(u==null?void 0:u.type)==="column-setting"),o=(s==null?void 0:s.columns)??-1;for(const u of r){if(typeof o=="number"&&o>0&&u.type!=="column-setting"&&typeof u.widthInColumns=="number"&&u.widthInColumns>o&&it.warn(`Block ${u.id} width ${u.widthInColumns} exceeds configured column width ${o}`),u.label&&(u.label=GZi(u.label)),u.type==="classDef"){qZi(u.id,u.css);continue}if(u.type==="applyClass"){VZi(u.id,(u==null?void 0:u.styleClass)??"");continue}if(u.type==="applyStyles"){u!=null&&u.stylesStr&&HZi(u.id,u==null?void 0:u.stylesStr);continue}if(u.type==="column-setting")t.columns=u.columns??-1;else if(u.type==="edge"){const h=(qut.get(u.id)??0)+1;qut.set(u.id,h),u.id=h+"-"+u.id,lbt.push(u)}else{u.label||(u.type==="composite"?u.label="":u.label=u.id);const h=nT.get(u.id);if(h===void 0?nT.set(u.id,u):(u.type!=="na"&&(h.type=u.type),u.label!==u.id&&(h.label=u.label)),u.children&&XXn(u.children,u),u.type==="space"){const f=u.width??1;for(let p=0;p{it.debug("Clear called"),M1(),Ise={id:"root",type:"composite",children:[],columns:-1},nT=new Map([["root",Ise]]),cbt=[],UTe=new Map,lbt=[],qut=new Map},"clear");function QXn(e){switch(it.debug("typeStr2Type",e),e){case"[]":return"square";case"()":return it.debug("we have a round"),"round";case"(())":return"circle";case">]":return"rect_left_inv_arrow";case"{}":return"diamond";case"{{}}":return"hexagon";case"([])":return"stadium";case"[[]]":return"subroutine";case"[()]":return"cylinder";case"((()))":return"doublecircle";case"[//]":return"lean_right";case"[\\\\]":return"lean_left";case"[/\\]":return"trapezoid";case"[\\/]":return"inv_trapezoid";case"<[]>":return"block_arrow";default:return"na"}}X(QXn,"typeStr2Type");function ZXn(e){switch(it.debug("typeStr2Type",e),e){case"==":return"thick";default:return"normal"}}X(ZXn,"edgeTypeStr2Type");function JXn(e){switch(e.replace(/^[\s-]+|[\s-]+$/g,"")){case"x":return"arrow_cross";case"o":return"arrow_circle";case">":return"arrow_point";default:return""}}X(JXn,"edgeStrToEdgeData");var PTn=0,jZi=X(()=>(PTn++,"id-"+Math.random().toString(36).substr(2,12)+"-"+PTn),"generateId"),WZi=X(e=>{Ise.children=e,XXn(e,Ise),cbt=Ise.children},"setHierarchy"),KZi=X(e=>{const t=nT.get(e);return t?t.columns?t.columns:t.children?t.children.length:-1:-1},"getColumns"),XZi=X(()=>[...nT.values()],"getBlocksFlat"),QZi=X(()=>cbt||[],"getBlocks"),ZZi=X(()=>lbt,"getEdges"),JZi=X(e=>nT.get(e),"getBlock"),eJi=X(e=>{nT.set(e.id,e)},"setBlock"),tJi=X(()=>it,"getLogger"),nJi=X(function(){return UTe},"getClasses"),rJi={getConfig:X(()=>$c().block,"getConfig"),typeStr2Type:QXn,edgeTypeStr2Type:ZXn,edgeStrToEdgeData:JXn,getLogger:tJi,getBlocksFlat:XZi,getBlocks:QZi,getEdges:ZZi,setHierarchy:WZi,getBlock:JZi,setBlock:eJi,getColumns:KZi,getClasses:nJi,clear:YZi,generateId:jZi},iJi=rJi,pEe=X((e,t)=>{const r=ece,a=r(e,"r"),s=r(e,"g"),o=r(e,"b");return Z2(a,s,o,t)},"fade"),aJi=X(e=>`.label { + font-family: ${e.fontFamily}; + color: ${e.nodeTextColor||e.textColor}; + } + .cluster-label text { + fill: ${e.titleColor}; + } + .cluster-label span,p { + color: ${e.titleColor}; + } + + + + .label text,span,p { + fill: ${e.nodeTextColor||e.textColor}; + color: ${e.nodeTextColor||e.textColor}; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + .flowchart-label text { + text-anchor: middle; + } + // .flowchart-label .text-outer-tspan { + // text-anchor: middle; + // } + // .flowchart-label .text-inner-tspan { + // text-anchor: start; + // } + + .node .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + .arrowheadPath { + fill: ${e.arrowheadColor}; + } + + .edgePath .path { + stroke: ${e.lineColor}; + stroke-width: 2.0px; + } + + .flowchart-link { + stroke: ${e.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${e.edgeLabelBackground}; + rect { + opacity: 0.5; + background-color: ${e.edgeLabelBackground}; + fill: ${e.edgeLabelBackground}; + } + text-align: center; + } + + /* For html labels only */ + .labelBkg { + background-color: ${pEe(e.edgeLabelBackground,.5)}; + // background-color: + } + + .node .cluster { + // fill: ${pEe(e.mainBkg,.5)}; + fill: ${pEe(e.clusterBkg,.5)}; + stroke: ${pEe(e.clusterBorder,.2)}; + box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; + stroke-width: 1px; + } + + .cluster text { + fill: ${e.titleColor}; + } + + .cluster span,p { + color: ${e.titleColor}; + } + /* .cluster div { + color: ${e.titleColor}; + } */ + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: ${e.fontFamily}; + font-size: 12px; + background: ${e.tertiaryColor}; + border: 1px solid ${e.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .flowchartTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; + } + ${Lce()} +`,"getStyles"),sJi=aJi,oJi=X((e,t,r,a)=>{t.forEach(s=>{bJi[s](e,r,a)})},"insertMarkers"),lJi=X((e,t,r)=>{it.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"),cJi=X((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"),uJi=X((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"),hJi=X((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"),dJi=X((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("stroke","black").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("stroke","black").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6)},"lollipop"),fJi=X((e,t,r)=>{e.append("marker").attr("id",r+"_"+t+"-pointEnd").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",6).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).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",12).attr("markerHeight",12).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"),pJi=X((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"),gJi=X((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"),mJi=X((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","strokeWidth").attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},"barb"),bJi={extension:lJi,composition:cJi,aggregation:uJi,dependency:hJi,lollipop:dJi,point:fJi,circle:pJi,cross:gJi,barb:mJi},yJi=oJi,gAn,mAn,V0=((mAn=(gAn=nn())==null?void 0:gAn.block)==null?void 0:mAn.padding)??8;function eQn(e,t){if(e===0||!Number.isInteger(e))throw new Error("Columns must be an integer !== 0.");if(t<0||!Number.isInteger(t))throw new Error("Position must be a non-negative integer."+t);if(e<0)return{px:t,py:0};if(e===1)return{px:0,py:t};const r=t%e,a=Math.floor(t/e);return{px:r,py:a}}X(eQn,"calculateBlockPosition");var vJi=X(e=>{let t=0,r=0;for(const a of e.children){const{width:s,height:o,x:u,y:h}=a.size??{width:0,height:0,x:0,y:0};it.debug("getMaxChildSize abc95 child:",a.id,"width:",s,"height:",o,"x:",u,"y:",h,a.type),a.type!=="space"&&(s>t&&(t=s/(e.widthInColumns??1)),o>r&&(r=o))}return{width:t,height:r}},"getMaxChildSize");function zTe(e,t,r=0,a=0){var u,h,f,p,m,b,_,w,S,C,A;it.debug("setBlockSizes abc95 (start)",e.id,(u=e==null?void 0:e.size)==null?void 0:u.x,"block width =",e==null?void 0:e.size,"siblingWidth",r),(h=e==null?void 0:e.size)!=null&&h.width||(e.size={width:r,height:a,x:0,y:0});let s=0,o=0;if(((f=e.children)==null?void 0:f.length)>0){for(const U of e.children)zTe(U,t);const k=vJi(e);s=k.width,o=k.height,it.debug("setBlockSizes abc95 maxWidth of",e.id,":s children is ",s,o);for(const U of e.children)U.size&&(it.debug(`abc95 Setting size of children of ${e.id} id=${U.id} ${s} ${o} ${JSON.stringify(U.size)}`),U.size.width=s*(U.widthInColumns??1)+V0*((U.widthInColumns??1)-1),U.size.height=o,U.size.x=0,U.size.y=0,it.debug(`abc95 updating size of ${e.id} children child:${U.id} maxWidth:${s} maxHeight:${o}`));for(const U of e.children)zTe(U,t,s,o);const I=e.columns??-1;let N=0;for(const U of e.children)N+=U.widthInColumns??1;let L=e.children.length;I>0&&I0?Math.min(e.children.length,I):e.children.length;if(U>0){const $=(M-U*V0-V0)/U;it.debug("abc95 (growing to fit) width",e.id,M,(_=e.size)==null?void 0:_.width,$);for(const G of e.children)G.size&&(G.size.width=$)}}e.size={width:M,height:F,x:0,y:0}}it.debug("setBlockSizes abc94 (done)",e.id,(w=e==null?void 0:e.size)==null?void 0:w.x,(S=e==null?void 0:e.size)==null?void 0:S.width,(C=e==null?void 0:e.size)==null?void 0:C.y,(A=e==null?void 0:e.size)==null?void 0:A.height)}X(zTe,"setBlockSizes");function ubt(e,t){var a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I,N;it.debug(`abc85 layout blocks (=>layoutBlocks) ${e.id} x: ${(a=e==null?void 0:e.size)==null?void 0:a.x} y: ${(s=e==null?void 0:e.size)==null?void 0:s.y} width: ${(o=e==null?void 0:e.size)==null?void 0:o.width}`);const r=e.columns??-1;if(it.debug("layoutBlocks columns abc95",e.id,"=>",r,e),e.children&&e.children.length>0){const L=((h=(u=e==null?void 0:e.children[0])==null?void 0:u.size)==null?void 0:h.width)??0,P=e.children.length*L+(e.children.length-1)*V0;it.debug("widthOfChildren 88",P,"posX");let M=0;it.debug("abc91 block?.size?.x",e.id,(f=e==null?void 0:e.size)==null?void 0:f.x);let F=(p=e==null?void 0:e.size)!=null&&p.x?((m=e==null?void 0:e.size)==null?void 0:m.x)+(-((b=e==null?void 0:e.size)==null?void 0:b.width)/2||0):-V0,U=0;for(const $ of e.children){const G=e;if(!$.size)continue;const{width:B,height:Z}=$.size,{px:z,py:Y}=eQn(r,M);if(Y!=U&&(U=Y,F=(_=e==null?void 0:e.size)!=null&&_.x?((w=e==null?void 0:e.size)==null?void 0:w.x)+(-((S=e==null?void 0:e.size)==null?void 0:S.width)/2||0):-V0,it.debug("New row in layout for block",e.id," and child ",$.id,U)),it.debug(`abc89 layout blocks (child) id: ${$.id} Pos: ${M} (px, py) ${z},${Y} (${(C=G==null?void 0:G.size)==null?void 0:C.x},${(A=G==null?void 0:G.size)==null?void 0:A.y}) parent: ${G.id} width: ${B}${V0}`),G.size){const Q=B/2;$.size.x=F+V0+Q,it.debug(`abc91 layout blocks (calc) px, pyid:${$.id} startingPos=X${F} new startingPosX${$.size.x} ${Q} padding=${V0} width=${B} halfWidth=${Q} => x:${$.size.x} y:${$.size.y} ${$.widthInColumns} (width * (child?.w || 1)) / 2 ${B*(($==null?void 0:$.widthInColumns)??1)/2}`),F=$.size.x+Q,$.size.y=G.size.y-G.size.height/2+Y*(Z+V0)+Z/2+V0,it.debug(`abc88 layout blocks (calc) px, pyid:${$.id}startingPosX${F}${V0}${Q}=>x:${$.size.x}y:${$.size.y}${$.widthInColumns}(width * (child?.w || 1)) / 2${B*(($==null?void 0:$.widthInColumns)??1)/2}`)}$.children&&ubt($);let W=($==null?void 0:$.widthInColumns)??1;r>0&&(W=Math.min(W,r-M%r)),M+=W,it.debug("abc88 columnsPos",$,M)}}it.debug(`layout blocks (<==layoutBlocks) ${e.id} x: ${(k=e==null?void 0:e.size)==null?void 0:k.x} y: ${(I=e==null?void 0:e.size)==null?void 0:I.y} width: ${(N=e==null?void 0:e.size)==null?void 0:N.width}`)}X(ubt,"layoutBlocks");function hbt(e,{minX:t,minY:r,maxX:a,maxY:s}={minX:0,minY:0,maxX:0,maxY:0}){if(e.size&&e.id!=="root"){const{x:o,y:u,width:h,height:f}=e.size;o-h/2a&&(a=o+h/2),u+f/2>s&&(s=u+f/2)}if(e.children)for(const o of e.children)({minX:t,minY:r,maxX:a,maxY:s}=hbt(o,{minX:t,minY:r,maxX:a,maxY:s}));return{minX:t,minY:r,maxX:a,maxY:s}}X(hbt,"findBounds");function tQn(e){const t=e.getBlock("root");if(!t)return;zTe(t,e,0,0),ubt(t),it.debug("getBlocks",JSON.stringify(t,null,2));const{minX:r,minY:a,maxX:s,maxY:o}=hbt(t),u=o-a,h=s-r;return{x:r,y:a,width:h,height:u}}X(tQn,"layout");function Hut(e,t){t&&e.attr("style",t)}X(Hut,"applyStyle");function nQn(e,t){const r=gn(document.createElementNS("http://www.w3.org/2000/svg","foreignObject")),a=r.append("xhtml:div"),s=e.label,o=e.isNode?"nodeLabel":"edgeLabel",u=a.append("span");return u.html(Ic(s,t)),Hut(u,e.labelStyle),u.attr("class",o),Hut(a,e.labelStyle),a.style("display","inline-block"),a.style("white-space","nowrap"),a.attr("xmlns","http://www.w3.org/1999/xhtml"),r.node()}X(nQn,"addHtmlLabel");var _Ji=X(async(e,t,r,a)=>{let s=e||"";typeof s=="object"&&(s=s[0]);const o=nn();if(nh(o.flowchart.htmlLabels)){s=s.replace(/\\n|\n/g,"
    "),it.debug("vertexText"+s);const u=await Q1t(vA(s)),h={isNode:a,label:u,labelStyle:t.replace("fill:","color:")};return nQn(h,o)}else{const u=document.createElementNS("http://www.w3.org/2000/svg","text");u.setAttribute("style",t.replace("color:","fill:"));let h=[];typeof s=="string"?h=s.split(/\\n|\n|/gi):Array.isArray(s)?h=s:h=[];for(const f of h){const p=document.createElementNS("http://www.w3.org/2000/svg","tspan");p.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),p.setAttribute("dy","1em"),p.setAttribute("x","0"),r?p.setAttribute("class","title-row"):p.setAttribute("class","row"),p.textContent=f.trim(),u.appendChild(p)}return u}},"createLabel"),nS=_Ji,wJi=X((e,t,r,a,s)=>{t.arrowTypeStart&&BTn(e,"start",t.arrowTypeStart,r,a,s),t.arrowTypeEnd&&BTn(e,"end",t.arrowTypeEnd,r,a,s)},"addEdgeMarkers"),EJi={arrow_cross:"cross",arrow_point:"point",arrow_barb:"barb",arrow_circle:"circle",aggregation:"aggregation",extension:"extension",composition:"composition",dependency:"dependency",lollipop:"lollipop"},BTn=X((e,t,r,a,s,o)=>{const u=EJi[r];if(!u){it.warn(`Unknown arrow type: ${r}`);return}const h=t==="start"?"Start":"End";e.attr(`marker-${t}`,`url(${a}#${s}_${o}-${u}${h})`)},"addEdgeMarker"),Vut={},yb={},xJi=X(async(e,t)=>{const r=nn(),a=nh(r.flowchart.htmlLabels),s=t.labelType==="markdown"?Yw(e,t.label,{style:t.labelStyle,useHtmlLabels:a,addSvgBackground:!0},r):await nS(t.label,t.labelStyle),o=e.insert("g").attr("class","edgeLabel"),u=o.insert("g").attr("class","label");u.node().appendChild(s);let h=s.getBBox();if(a){const p=s.children[0],m=gn(s);h=p.getBoundingClientRect(),m.attr("width",h.width),m.attr("height",h.height)}u.attr("transform","translate("+-h.width/2+", "+-h.height/2+")"),Vut[t.id]=o,t.width=h.width,t.height=h.height;let f;if(t.startLabelLeft){const p=await nS(t.startLabelLeft,t.labelStyle),m=e.insert("g").attr("class","edgeTerminals"),b=m.insert("g").attr("class","inner");f=b.node().appendChild(p);const _=p.getBBox();b.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"),yb[t.id]||(yb[t.id]={}),yb[t.id].startLeft=m,Pae(f,t.startLabelLeft)}if(t.startLabelRight){const p=await nS(t.startLabelRight,t.labelStyle),m=e.insert("g").attr("class","edgeTerminals"),b=m.insert("g").attr("class","inner");f=m.node().appendChild(p),b.node().appendChild(p);const _=p.getBBox();b.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"),yb[t.id]||(yb[t.id]={}),yb[t.id].startRight=m,Pae(f,t.startLabelRight)}if(t.endLabelLeft){const p=await nS(t.endLabelLeft,t.labelStyle),m=e.insert("g").attr("class","edgeTerminals"),b=m.insert("g").attr("class","inner");f=b.node().appendChild(p);const _=p.getBBox();b.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"),m.node().appendChild(p),yb[t.id]||(yb[t.id]={}),yb[t.id].endLeft=m,Pae(f,t.endLabelLeft)}if(t.endLabelRight){const p=await nS(t.endLabelRight,t.labelStyle),m=e.insert("g").attr("class","edgeTerminals"),b=m.insert("g").attr("class","inner");f=b.node().appendChild(p);const _=p.getBBox();b.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"),m.node().appendChild(p),yb[t.id]||(yb[t.id]={}),yb[t.id].endRight=m,Pae(f,t.endLabelRight)}return s},"insertEdgeLabel");function Pae(e,t){nn().flowchart.htmlLabels&&e&&(e.style.width=t.length*9+"px",e.style.height="12px")}X(Pae,"setTerminalWidth");var SJi=X((e,t)=>{it.debug("Moving label abc88 ",e.id,e.label,Vut[e.id],t);let r=t.updatedPath?t.updatedPath:t.originalPath;const a=nn(),{subGraphTitleTotalMargin:s}=oce(a);if(e.label){const o=Vut[e.id];let u=e.x,h=e.y;if(r){const f=Vo.calcLabelPosition(r);it.debug("Moving label "+e.label+" from (",u,",",h,") to (",f.x,",",f.y,") abc88"),t.updatedPath&&(u=f.x,h=f.y)}o.attr("transform",`translate(${u}, ${h+s/2})`)}if(e.startLabelLeft){const o=yb[e.id].startLeft;let u=e.x,h=e.y;if(r){const f=Vo.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_left",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}if(e.startLabelRight){const o=yb[e.id].startRight;let u=e.x,h=e.y;if(r){const f=Vo.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_right",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}if(e.endLabelLeft){const o=yb[e.id].endLeft;let u=e.x,h=e.y;if(r){const f=Vo.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_left",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}if(e.endLabelRight){const o=yb[e.id].endRight;let u=e.x,h=e.y;if(r){const f=Vo.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_right",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}},"positionEdgeLabel"),TJi=X((e,t)=>{const r=e.x,a=e.y,s=Math.abs(t.x-r),o=Math.abs(t.y-a),u=e.width/2,h=e.height/2;return s>=u||o>=h},"outsideNode"),CJi=X((e,t,r)=>{it.debug(`intersection calc abc89: + outsidePoint: ${JSON.stringify(t)} + insidePoint : ${JSON.stringify(r)} + node : x:${e.x} y:${e.y} w:${e.width} h:${e.height}`);const a=e.x,s=e.y,o=Math.abs(a-r.x),u=e.width/2;let h=r.xMath.abs(a-t.x)*f){let b=r.y{it.debug("abc88 cutPathAtIntersect",e,t);let r=[],a=e[0],s=!1;return e.forEach(o=>{if(!TJi(t,o)&&!s){const u=CJi(t,a,o);let h=!1;r.forEach(f=>{h=h||f.x===u.x&&f.y===u.y}),r.some(f=>f.x===u.x&&f.y===u.y)||r.push(u),s=!0}else a=o,s||r.push(o)}),r},"cutPathAtIntersect"),AJi=X(function(e,t,r,a,s,o,u){let h=r.points;it.debug("abc88 InsertEdge: edge=",r,"e=",t);let f=!1;const p=o.node(t.v);var m=o.node(t.w);m!=null&&m.intersect&&(p!=null&&p.intersect)&&(h=h.slice(1,r.points.length-1),h.unshift(p.intersect(h[0])),h.push(m.intersect(h[h.length-1]))),r.toCluster&&(it.debug("to cluster abc88",a[r.toCluster]),h=FTn(r.points,a[r.toCluster].node),f=!0),r.fromCluster&&(it.debug("from cluster abc88",a[r.fromCluster]),h=FTn(h.reverse(),a[r.fromCluster].node).reverse(),f=!0);const b=h.filter(L=>!Number.isNaN(L.y));let _=j3;r.curve&&(s==="graph"||s==="flowchart")&&(_=r.curve);const{x:w,y:S}=kPn(r),C=r_().x(w).y(S).curve(_);let A;switch(r.thickness){case"normal":A="edge-thickness-normal";break;case"thick":A="edge-thickness-thick";break;case"invisible":A="edge-thickness-thick";break;default:A=""}switch(r.pattern){case"solid":A+=" edge-pattern-solid";break;case"dotted":A+=" edge-pattern-dotted";break;case"dashed":A+=" edge-pattern-dashed";break}const k=e.append("path").attr("d",C(b)).attr("id",r.id).attr("class"," "+A+(r.classes?" "+r.classes:"")).attr("style",r.style);let I="";(nn().flowchart.arrowMarkerAbsolute||nn().state.arrowMarkerAbsolute)&&(I=tAe(!0)),wJi(k,r,I,u,s);let N={};return f&&(N.updatedPath=h),N.originalPath=r.points,N},"insertEdge"),kJi=X(e=>{const t=new Set;for(const r of e)switch(r){case"x":t.add("right"),t.add("left");break;case"y":t.add("up"),t.add("down");break;default:t.add(r);break}return t},"expandAndDeduplicateDirections"),RJi=X((e,t,r)=>{const a=kJi(e),s=2,o=t.height+2*r.padding,u=o/s,h=t.width+2*u+r.padding,f=r.padding/2;return a.has("right")&&a.has("left")&&a.has("up")&&a.has("down")?[{x:0,y:0},{x:u,y:0},{x:h/2,y:2*f},{x:h-u,y:0},{x:h,y:0},{x:h,y:-o/3},{x:h+2*f,y:-o/2},{x:h,y:-2*o/3},{x:h,y:-o},{x:h-u,y:-o},{x:h/2,y:-o-2*f},{x:u,y:-o},{x:0,y:-o},{x:0,y:-2*o/3},{x:-2*f,y:-o/2},{x:0,y:-o/3}]:a.has("right")&&a.has("left")&&a.has("up")?[{x:u,y:0},{x:h-u,y:0},{x:h,y:-o/2},{x:h-u,y:-o},{x:u,y:-o},{x:0,y:-o/2}]:a.has("right")&&a.has("left")&&a.has("down")?[{x:0,y:0},{x:u,y:-o},{x:h-u,y:-o},{x:h,y:0}]:a.has("right")&&a.has("up")&&a.has("down")?[{x:0,y:0},{x:h,y:-u},{x:h,y:-o+u},{x:0,y:-o}]:a.has("left")&&a.has("up")&&a.has("down")?[{x:h,y:0},{x:0,y:-u},{x:0,y:-o+u},{x:h,y:-o}]:a.has("right")&&a.has("left")?[{x:u,y:0},{x:u,y:-f},{x:h-u,y:-f},{x:h-u,y:0},{x:h,y:-o/2},{x:h-u,y:-o},{x:h-u,y:-o+f},{x:u,y:-o+f},{x:u,y:-o},{x:0,y:-o/2}]:a.has("up")&&a.has("down")?[{x:h/2,y:0},{x:0,y:-f},{x:u,y:-f},{x:u,y:-o+f},{x:0,y:-o+f},{x:h/2,y:-o},{x:h,y:-o+f},{x:h-u,y:-o+f},{x:h-u,y:-f},{x:h,y:-f}]:a.has("right")&&a.has("up")?[{x:0,y:0},{x:h,y:-u},{x:0,y:-o}]:a.has("right")&&a.has("down")?[{x:0,y:0},{x:h,y:0},{x:0,y:-o}]:a.has("left")&&a.has("up")?[{x:h,y:0},{x:0,y:-u},{x:h,y:-o}]:a.has("left")&&a.has("down")?[{x:h,y:0},{x:0,y:0},{x:h,y:-o}]:a.has("right")?[{x:u,y:-f},{x:u,y:-f},{x:h-u,y:-f},{x:h-u,y:0},{x:h,y:-o/2},{x:h-u,y:-o},{x:h-u,y:-o+f},{x:u,y:-o+f},{x:u,y:-o+f}]:a.has("left")?[{x:u,y:0},{x:u,y:-f},{x:h-u,y:-f},{x:h-u,y:-o+f},{x:u,y:-o+f},{x:u,y:-o},{x:0,y:-o/2}]:a.has("up")?[{x:u,y:-f},{x:u,y:-o+f},{x:0,y:-o+f},{x:h/2,y:-o},{x:h,y:-o+f},{x:h-u,y:-o+f},{x:h-u,y:-f}]:a.has("down")?[{x:h/2,y:0},{x:0,y:-f},{x:u,y:-f},{x:u,y:-o+f},{x:h-u,y:-o+f},{x:h-u,y:-f},{x:h,y:-f}]:[{x:0,y:0}]},"getArrowPoints");function rQn(e,t){return e.intersect(t)}X(rQn,"intersectNode");var IJi=rQn;function iQn(e,t,r,a){var s=e.x,o=e.y,u=s-a.x,h=o-a.y,f=Math.sqrt(t*t*h*h+r*r*u*u),p=Math.abs(t*r*u/f);a.x0}X(Yut,"sameSign");var OJi=oQn,LJi=lQn;function lQn(e,t,r){var a=e.x,s=e.y,o=[],u=Number.POSITIVE_INFINITY,h=Number.POSITIVE_INFINITY;typeof t.forEach=="function"?t.forEach(function(S){u=Math.min(u,S.x),h=Math.min(h,S.y)}):(u=Math.min(u,t.x),h=Math.min(h,t.y));for(var f=a-e.width/2-u,p=s-e.height/2-h,m=0;m1&&o.sort(function(S,C){var A=S.x-r.x,k=S.y-r.y,I=Math.sqrt(A*A+k*k),N=C.x-r.x,L=C.y-r.y,P=Math.sqrt(N*N+L*L);return I{var r=e.x,a=e.y,s=t.x-r,o=t.y-a,u=e.width/2,h=e.height/2,f,p;return Math.abs(o)*u>Math.abs(s)*h?(o<0&&(h=-h),f=o===0?0:h*s/o,p=h):(s<0&&(u=-u),f=u,p=s===0?0:u*o/s),{x:r+f,y:a+p}},"intersectRect"),MJi=DJi,Qd={node:IJi,circle:NJi,ellipse:aQn,polygon:LJi,rect:MJi},Mg=X(async(e,t,r,a)=>{const s=nn();let o;const u=t.useHtmlLabels||nh(s.flowchart.htmlLabels);r?o=r:o="node default";const h=e.insert("g").attr("class",o).attr("id",t.domId||t.id),f=h.insert("g").attr("class","label").attr("style",t.labelStyle);let p;t.labelText===void 0?p="":p=typeof t.labelText=="string"?t.labelText:t.labelText[0];const m=f.node();let b;t.labelType==="markdown"?b=Yw(f,Ic(vA(p),s),{useHtmlLabels:u,width:t.width||s.flowchart.wrappingWidth,classes:"markdown-node-label"},s):b=m.appendChild(await nS(Ic(vA(p),s),t.labelStyle,!1,a));let _=b.getBBox();const w=t.padding/2;if(nh(s.flowchart.htmlLabels)){const S=b.children[0],C=gn(b),A=S.getElementsByTagName("img");if(A){const k=p.replace(/]*>/g,"").trim()==="";await Promise.all([...A].map(I=>new Promise(N=>{function L(){if(I.style.display="flex",I.style.flexDirection="column",k){const P=s.fontSize?s.fontSize:window.getComputedStyle(document.body).fontSize,F=parseInt(P,10)*5+"px";I.style.minWidth=F,I.style.maxWidth=F}else I.style.width="100%";N(I)}X(L,"setupImage"),setTimeout(()=>{I.complete&&L()}),I.addEventListener("error",L),I.addEventListener("load",L)})))}_=S.getBoundingClientRect(),C.attr("width",_.width),C.attr("height",_.height)}return u?f.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"):f.attr("transform","translate(0, "+-_.height/2+")"),t.centerLabel&&f.attr("transform","translate("+-_.width/2+", "+-_.height/2+")"),f.insert("rect",":first-child"),{shapeSvg:h,bbox:_,halfPadding:w,label:f}},"labelHelper"),d0=X((e,t)=>{const r=t.node().getBBox();e.width=r.width,e.height=r.height},"updateNodeBounds");function _T(e,t,r,a){return e.insert("polygon",":first-child").attr("points",a.map(function(s){return s.x+","+s.y}).join(" ")).attr("class","label-container").attr("transform","translate("+-t/2+","+r/2+")")}X(_T,"insertPolygonShape");var PJi=X(async(e,t)=>{t.useHtmlLabels||nn().flowchart.htmlLabels||(t.centerLabel=!0);const{shapeSvg:a,bbox:s,halfPadding:o}=await Mg(e,t,"node "+t.classes,!0);it.info("Classes = ",t.classes);const u=a.insert("rect",":first-child");return u.attr("rx",t.rx).attr("ry",t.ry).attr("x",-s.width/2-o).attr("y",-s.height/2-o).attr("width",s.width+t.padding).attr("height",s.height+t.padding),d0(t,u),t.intersect=function(h){return Qd.rect(t,h)},a},"note"),BJi=PJi,$Tn=X(e=>e?" "+e:"","formatClass"),Qw=X((e,t)=>`${t||"node default"}${$Tn(e.classes)} ${$Tn(e.class)}`,"getClassesFromNode"),UTn=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=a.width+t.padding,o=a.height+t.padding,u=s+o,h=[{x:u/2,y:0},{x:u,y:-u/2},{x:u/2,y:-u},{x:0,y:-u/2}];it.info("Question main (Circle)");const f=_T(r,u,u,h);return f.attr("style",t.style),d0(t,f),t.intersect=function(p){return it.warn("Intersect called"),Qd.polygon(t,h,p)},r},"question"),FJi=X((e,t)=>{const r=e.insert("g").attr("class","node default").attr("id",t.domId||t.id),a=28,s=[{x:0,y:a/2},{x:a/2,y:0},{x:0,y:-a/2},{x:-a/2,y:0}];return r.insert("polygon",":first-child").attr("points",s.map(function(u){return u.x+","+u.y}).join(" ")).attr("class","state-start").attr("r",7).attr("width",28).attr("height",28),t.width=28,t.height=28,t.intersect=function(u){return Qd.circle(t,14,u)},r},"choice"),$Ji=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=4,o=a.height+t.padding,u=o/s,h=a.width+2*u+t.padding,f=[{x:u,y:0},{x:h-u,y:0},{x:h,y:-o/2},{x:h-u,y:-o},{x:u,y:-o},{x:0,y:-o/2}],p=_T(r,h,o,f);return p.attr("style",t.style),d0(t,p),t.intersect=function(m){return Qd.polygon(t,f,m)},r},"hexagon"),UJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,void 0,!0),s=2,o=a.height+2*t.padding,u=o/s,h=a.width+2*u+t.padding,f=RJi(t.directions,a,t),p=_T(r,h,o,f);return p.attr("style",t.style),d0(t,p),t.intersect=function(m){return Qd.polygon(t,f,m)},r},"block_arrow"),zJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:-o/2,y:0},{x:s,y:0},{x:s,y:-o},{x:-o/2,y:-o},{x:0,y:-o/2}];return _T(r,s,o,u).attr("style",t.style),t.width=s+o,t.height=o,t.intersect=function(f){return Qd.polygon(t,u,f)},r},"rect_left_inv_arrow"),GJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:-2*o/6,y:0},{x:s-o/6,y:0},{x:s+2*o/6,y:-o},{x:o/6,y:-o}],h=_T(r,s,o,u);return h.attr("style",t.style),d0(t,h),t.intersect=function(f){return Qd.polygon(t,u,f)},r},"lean_right"),qJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:2*o/6,y:0},{x:s+o/6,y:0},{x:s-2*o/6,y:-o},{x:-o/6,y:-o}],h=_T(r,s,o,u);return h.attr("style",t.style),d0(t,h),t.intersect=function(f){return Qd.polygon(t,u,f)},r},"lean_left"),HJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:-2*o/6,y:0},{x:s+2*o/6,y:0},{x:s-o/6,y:-o},{x:o/6,y:-o}],h=_T(r,s,o,u);return h.attr("style",t.style),d0(t,h),t.intersect=function(f){return Qd.polygon(t,u,f)},r},"trapezoid"),VJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:o/6,y:0},{x:s-o/6,y:0},{x:s+2*o/6,y:-o},{x:-2*o/6,y:-o}],h=_T(r,s,o,u);return h.attr("style",t.style),d0(t,h),t.intersect=function(f){return Qd.polygon(t,u,f)},r},"inv_trapezoid"),YJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:0,y:0},{x:s+o/2,y:0},{x:s,y:-o/2},{x:s+o/2,y:-o},{x:0,y:-o}],h=_T(r,s,o,u);return h.attr("style",t.style),d0(t,h),t.intersect=function(f){return Qd.polygon(t,u,f)},r},"rect_right_inv_arrow"),jJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=a.width+t.padding,o=s/2,u=o/(2.5+s/50),h=a.height+u+t.padding,f="M 0,"+u+" a "+o+","+u+" 0,0,0 "+s+" 0 a "+o+","+u+" 0,0,0 "+-s+" 0 l 0,"+h+" a "+o+","+u+" 0,0,0 "+s+" 0 l 0,"+-h,p=r.attr("label-offset-y",u).insert("path",":first-child").attr("style",t.style).attr("d",f).attr("transform","translate("+-s/2+","+-(h/2+u)+")");return d0(t,p),t.intersect=function(m){const b=Qd.rect(t,m),_=b.x-t.x;if(o!=0&&(Math.abs(_)t.height/2-u)){let w=u*u*(1-_*_/(o*o));w!=0&&(w=Math.sqrt(w)),w=u-w,m.y-t.y>0&&(w=-w),b.y+=w}return b},r},"cylinder"),WJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a,halfPadding:s}=await Mg(e,t,"node "+t.classes+" "+t.class,!0),o=r.insert("rect",":first-child"),u=t.positioned?t.width:a.width+t.padding,h=t.positioned?t.height:a.height+t.padding,f=t.positioned?-u/2:-a.width/2-s,p=t.positioned?-h/2:-a.height/2-s;if(o.attr("class","basic label-container").attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("x",f).attr("y",p).attr("width",u).attr("height",h),t.props){const m=new Set(Object.keys(t.props));t.props.borders&&(i6e(o,t.props.borders,u,h),m.delete("borders")),m.forEach(b=>{it.warn(`Unknown node property ${b}`)})}return d0(t,o),t.intersect=function(m){return Qd.rect(t,m)},r},"rect"),KJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a,halfPadding:s}=await Mg(e,t,"node "+t.classes,!0),o=r.insert("rect",":first-child"),u=t.positioned?t.width:a.width+t.padding,h=t.positioned?t.height:a.height+t.padding,f=t.positioned?-u/2:-a.width/2-s,p=t.positioned?-h/2:-a.height/2-s;if(o.attr("class","basic cluster composite label-container").attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("x",f).attr("y",p).attr("width",u).attr("height",h),t.props){const m=new Set(Object.keys(t.props));t.props.borders&&(i6e(o,t.props.borders,u,h),m.delete("borders")),m.forEach(b=>{it.warn(`Unknown node property ${b}`)})}return d0(t,o),t.intersect=function(m){return Qd.rect(t,m)},r},"composite"),XJi=X(async(e,t)=>{const{shapeSvg:r}=await Mg(e,t,"label",!0);it.trace("Classes = ",t.class);const a=r.insert("rect",":first-child"),s=0,o=0;if(a.attr("width",s).attr("height",o),r.attr("class","label edgeLabel"),t.props){const u=new Set(Object.keys(t.props));t.props.borders&&(i6e(a,t.props.borders,s,o),u.delete("borders")),u.forEach(h=>{it.warn(`Unknown node property ${h}`)})}return d0(t,a),t.intersect=function(u){return Qd.rect(t,u)},r},"labelRect");function i6e(e,t,r,a){const s=[],o=X(h=>{s.push(h,0)},"addBorder"),u=X(h=>{s.push(0,h)},"skipBorder");t.includes("t")?(it.debug("add top border"),o(r)):u(r),t.includes("r")?(it.debug("add right border"),o(a)):u(a),t.includes("b")?(it.debug("add bottom border"),o(r)):u(r),t.includes("l")?(it.debug("add left border"),o(a)):u(a),e.attr("stroke-dasharray",s.join(" "))}X(i6e,"applyNodePropertyBorders");var QJi=X(async(e,t)=>{let r;t.classes?r="node "+t.classes:r="node default";const a=e.insert("g").attr("class",r).attr("id",t.domId||t.id),s=a.insert("rect",":first-child"),o=a.insert("line"),u=a.insert("g").attr("class","label"),h=t.labelText.flat?t.labelText.flat():t.labelText;let f="";typeof h=="object"?f=h[0]:f=h,it.info("Label text abc79",f,h,typeof h=="object");const p=u.node().appendChild(await nS(f,t.labelStyle,!0,!0));let m={width:0,height:0};if(nh(nn().flowchart.htmlLabels)){const C=p.children[0],A=gn(p);m=C.getBoundingClientRect(),A.attr("width",m.width),A.attr("height",m.height)}it.info("Text 2",h);const b=h.slice(1,h.length);let _=p.getBBox();const w=u.node().appendChild(await nS(b.join?b.join("
    "):b,t.labelStyle,!0,!0));if(nh(nn().flowchart.htmlLabels)){const C=w.children[0],A=gn(w);m=C.getBoundingClientRect(),A.attr("width",m.width),A.attr("height",m.height)}const S=t.padding/2;return gn(w).attr("transform","translate( "+(m.width>_.width?0:(_.width-m.width)/2)+", "+(_.height+S+5)+")"),gn(p).attr("transform","translate( "+(m.width<_.width?0:-(_.width-m.width)/2)+", 0)"),m=u.node().getBBox(),u.attr("transform","translate("+-m.width/2+", "+(-m.height/2-S+3)+")"),s.attr("class","outer title-state").attr("x",-m.width/2-S).attr("y",-m.height/2-S).attr("width",m.width+t.padding).attr("height",m.height+t.padding),o.attr("class","divider").attr("x1",-m.width/2-S).attr("x2",m.width/2+S).attr("y1",-m.height/2-S+_.height+S).attr("y2",-m.height/2-S+_.height+S),d0(t,s),t.intersect=function(C){return Qd.rect(t,C)},a},"rectWithTitle"),ZJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=a.height+t.padding,o=a.width+s/4+t.padding,u=r.insert("rect",":first-child").attr("style",t.style).attr("rx",s/2).attr("ry",s/2).attr("x",-o/2).attr("y",-s/2).attr("width",o).attr("height",s);return d0(t,u),t.intersect=function(h){return Qd.rect(t,h)},r},"stadium"),JJi=X(async(e,t)=>{const{shapeSvg:r,bbox:a,halfPadding:s}=await Mg(e,t,Qw(t,void 0),!0),o=r.insert("circle",":first-child");return o.attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("r",a.width/2+s).attr("width",a.width+t.padding).attr("height",a.height+t.padding),it.info("Circle main"),d0(t,o),t.intersect=function(u){return it.info("Circle intersect",t,a.width/2+s,u),Qd.circle(t,a.width/2+s,u)},r},"circle"),eea=X(async(e,t)=>{const{shapeSvg:r,bbox:a,halfPadding:s}=await Mg(e,t,Qw(t,void 0),!0),o=5,u=r.insert("g",":first-child"),h=u.insert("circle"),f=u.insert("circle");return u.attr("class",t.class),h.attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("r",a.width/2+s+o).attr("width",a.width+t.padding+o*2).attr("height",a.height+t.padding+o*2),f.attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("r",a.width/2+s).attr("width",a.width+t.padding).attr("height",a.height+t.padding),it.info("DoubleCircle main"),d0(t,h),t.intersect=function(p){return it.info("DoubleCircle intersect",t,a.width/2+s+o,p),Qd.circle(t,a.width/2+s+o,p)},r},"doublecircle"),tea=X(async(e,t)=>{const{shapeSvg:r,bbox:a}=await Mg(e,t,Qw(t,void 0),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:0,y:0},{x:s,y:0},{x:s,y:-o},{x:0,y:-o},{x:0,y:0},{x:-8,y:0},{x:s+8,y:0},{x:s+8,y:-o},{x:-8,y:-o},{x:-8,y:0}],h=_T(r,s,o,u);return h.attr("style",t.style),d0(t,h),t.intersect=function(f){return Qd.polygon(t,u,f)},r},"subroutine"),nea=X((e,t)=>{const r=e.insert("g").attr("class","node default").attr("id",t.domId||t.id),a=r.insert("circle",":first-child");return a.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),d0(t,a),t.intersect=function(s){return Qd.circle(t,7,s)},r},"start"),zTn=X((e,t,r)=>{const a=e.insert("g").attr("class","node default").attr("id",t.domId||t.id);let s=70,o=10;r==="LR"&&(s=10,o=70);const u=a.append("rect").attr("x",-1*s/2).attr("y",-1*o/2).attr("width",s).attr("height",o).attr("class","fork-join");return d0(t,u),t.height=t.height+t.padding/2,t.width=t.width+t.padding/2,t.intersect=function(h){return Qd.rect(t,h)},a},"forkJoin"),rea=X((e,t)=>{const r=e.insert("g").attr("class","node default").attr("id",t.domId||t.id),a=r.insert("circle",":first-child"),s=r.insert("circle",":first-child");return s.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),a.attr("class","state-end").attr("r",5).attr("width",10).attr("height",10),d0(t,s),t.intersect=function(o){return Qd.circle(t,7,o)},r},"end"),iea=X(async(e,t)=>{var U;const r=t.padding/2,a=4,s=8;let o;t.classes?o="node "+t.classes:o="node default";const u=e.insert("g").attr("class",o).attr("id",t.domId||t.id),h=u.insert("rect",":first-child"),f=u.insert("line"),p=u.insert("line");let m=0,b=a;const _=u.insert("g").attr("class","label");let w=0;const S=(U=t.classData.annotations)==null?void 0:U[0],C=t.classData.annotations[0]?"«"+t.classData.annotations[0]+"»":"",A=_.node().appendChild(await nS(C,t.labelStyle,!0,!0));let k=A.getBBox();if(nh(nn().flowchart.htmlLabels)){const $=A.children[0],G=gn(A);k=$.getBoundingClientRect(),G.attr("width",k.width),G.attr("height",k.height)}t.classData.annotations[0]&&(b+=k.height+a,m+=k.width);let I=t.classData.label;t.classData.type!==void 0&&t.classData.type!==""&&(nn().flowchart.htmlLabels?I+="<"+t.classData.type+">":I+="<"+t.classData.type+">");const N=_.node().appendChild(await nS(I,t.labelStyle,!0,!0));gn(N).attr("class","classTitle");let L=N.getBBox();if(nh(nn().flowchart.htmlLabels)){const $=N.children[0],G=gn(N);L=$.getBoundingClientRect(),G.attr("width",L.width),G.attr("height",L.height)}b+=L.height+a,L.width>m&&(m=L.width);const P=[];t.classData.members.forEach(async $=>{const G=$.getDisplayDetails();let B=G.displayText;nn().flowchart.htmlLabels&&(B=B.replace(//g,">"));const Z=_.node().appendChild(await nS(B,G.cssStyle?G.cssStyle:t.labelStyle,!0,!0));let z=Z.getBBox();if(nh(nn().flowchart.htmlLabels)){const Y=Z.children[0],W=gn(Z);z=Y.getBoundingClientRect(),W.attr("width",z.width),W.attr("height",z.height)}z.width>m&&(m=z.width),b+=z.height+a,P.push(Z)}),b+=s;const M=[];if(t.classData.methods.forEach(async $=>{const G=$.getDisplayDetails();let B=G.displayText;nn().flowchart.htmlLabels&&(B=B.replace(//g,">"));const Z=_.node().appendChild(await nS(B,G.cssStyle?G.cssStyle:t.labelStyle,!0,!0));let z=Z.getBBox();if(nh(nn().flowchart.htmlLabels)){const Y=Z.children[0],W=gn(Z);z=Y.getBoundingClientRect(),W.attr("width",z.width),W.attr("height",z.height)}z.width>m&&(m=z.width),b+=z.height+a,M.push(Z)}),b+=s,S){let $=(m-k.width)/2;gn(A).attr("transform","translate( "+(-1*m/2+$)+", "+-1*b/2+")"),w=k.height+a}let F=(m-L.width)/2;return gn(N).attr("transform","translate( "+(-1*m/2+F)+", "+(-1*b/2+w)+")"),w+=L.height+a,f.attr("class","divider").attr("x1",-m/2-r).attr("x2",m/2+r).attr("y1",-b/2-r+s+w).attr("y2",-b/2-r+s+w),w+=s,P.forEach($=>{gn($).attr("transform","translate( "+-m/2+", "+(-1*b/2+w+s/2)+")");const G=$==null?void 0:$.getBBox();w+=((G==null?void 0:G.height)??0)+a}),w+=s,p.attr("class","divider").attr("x1",-m/2-r).attr("x2",m/2+r).attr("y1",-b/2-r+s+w).attr("y2",-b/2-r+s+w),w+=s,M.forEach($=>{gn($).attr("transform","translate( "+-m/2+", "+(-1*b/2+w)+")");const G=$==null?void 0:$.getBBox();w+=((G==null?void 0:G.height)??0)+a}),h.attr("style",t.style).attr("class","outer title-state").attr("x",-m/2-r).attr("y",-(b/2)-r).attr("width",m+t.padding).attr("height",b+t.padding),d0(t,h),t.intersect=function($){return Qd.rect(t,$)},u},"class_box"),GTn={rhombus:UTn,composite:KJi,question:UTn,rect:WJi,labelRect:XJi,rectWithTitle:QJi,choice:FJi,circle:JJi,doublecircle:eea,stadium:ZJi,hexagon:$Ji,block_arrow:UJi,rect_left_inv_arrow:zJi,lean_right:GJi,lean_left:qJi,trapezoid:HJi,inv_trapezoid:VJi,rect_right_inv_arrow:YJi,cylinder:jJi,start:nea,end:rea,note:BJi,subroutine:tea,fork:zTn,join:zTn,class_box:iea},Jxe={},cQn=X(async(e,t,r)=>{let a,s;if(t.link){let o;nn().securityLevel==="sandbox"?o="_top":t.linkTarget&&(o=t.linkTarget||"_blank"),a=e.insert("svg:a").attr("xlink:href",t.link).attr("target",o),s=await GTn[t.shape](a,t,r)}else s=await GTn[t.shape](e,t,r),a=s;return t.tooltip&&s.attr("title",t.tooltip),t.class&&s.attr("class","node default "+t.class),Jxe[t.id]=a,t.haveCallback&&Jxe[t.id].attr("class",Jxe[t.id].attr("class")+" clickable"),a},"insertNode"),aea=X(e=>{const t=Jxe[e.id];it.trace("Transforming node",e.diff,e,"translate("+(e.x-e.width/2-5)+", "+e.width/2+")");const r=8,a=e.diff||0;return e.clusterNode?t.attr("transform","translate("+(e.x+a-e.width/2)+", "+(e.y-e.height/2-r)+")"):t.attr("transform","translate("+e.x+", "+e.y+")"),a},"positionNode");function dbt(e,t,r=!1){var _,w,S;const a=e;let s="default";(((_=a==null?void 0:a.classes)==null?void 0:_.length)||0)>0&&(s=((a==null?void 0:a.classes)??[]).join(" ")),s=s+" flowchart-label";let o=0,u="",h;switch(a.type){case"round":o=5,u="rect";break;case"composite":o=0,u="composite",h=0;break;case"square":u="rect";break;case"diamond":u="question";break;case"hexagon":u="hexagon";break;case"block_arrow":u="block_arrow";break;case"odd":u="rect_left_inv_arrow";break;case"lean_right":u="lean_right";break;case"lean_left":u="lean_left";break;case"trapezoid":u="trapezoid";break;case"inv_trapezoid":u="inv_trapezoid";break;case"rect_left_inv_arrow":u="rect_left_inv_arrow";break;case"circle":u="circle";break;case"ellipse":u="ellipse";break;case"stadium":u="stadium";break;case"subroutine":u="subroutine";break;case"cylinder":u="cylinder";break;case"group":u="rect";break;case"doublecircle":u="doublecircle";break;default:u="rect"}const f=F1t((a==null?void 0:a.styles)??[]),p=a.label,m=a.size??{width:0,height:0,x:0,y:0};return{labelStyle:f.labelStyle,shape:u,labelText:p,rx:o,ry:o,class:s,style:f.style,id:a.id,directions:a.directions,width:m.width,height:m.height,x:m.x,y:m.y,positioned:r,intersect:void 0,type:a.type,padding:h??((S=(w=$c())==null?void 0:w.block)==null?void 0:S.padding)??0}}X(dbt,"getNodeFromBlock");async function uQn(e,t,r){const a=dbt(t,r,!1);if(a.type==="group")return;const s=$c(),o=await cQn(e,a,{config:s}),u=o.node().getBBox(),h=r.getBlock(a.id);h.size={width:u.width,height:u.height,x:0,y:0,node:o},r.setBlock(h),o.remove()}X(uQn,"calculateBlockSize");async function hQn(e,t,r){const a=dbt(t,r,!0);if(r.getBlock(a.id).type!=="space"){const o=$c();await cQn(e,a,{config:o}),t.intersect=a==null?void 0:a.intersect,aea(a)}}X(hQn,"insertBlockPositioned");async function a6e(e,t,r,a){for(const s of t)await a(e,s,r),s.children&&await a6e(e,s.children,r,a)}X(a6e,"performOperations");async function dQn(e,t,r){await a6e(e,t,r,uQn)}X(dQn,"calculateBlockSizes");async function fQn(e,t,r){await a6e(e,t,r,hQn)}X(fQn,"insertBlocks");async function pQn(e,t,r,a,s){const o=new c_({multigraph:!0,compound:!0});o.setGraph({rankdir:"TB",nodesep:10,ranksep:10,marginx:8,marginy:8});for(const u of r)u.size&&o.setNode(u.id,{width:u.size.width,height:u.size.height,intersect:u.intersect});for(const u of t)if(u.start&&u.end){const h=a.getBlock(u.start),f=a.getBlock(u.end);if(h!=null&&h.size&&(f!=null&&f.size)){const p=h.size,m=f.size,b=[{x:p.x,y:p.y},{x:p.x+(m.x-p.x)/2,y:p.y+(m.y-p.y)/2},{x:m.x,y:m.y}];AJi(e,{v:u.start,w:u.end,name:u.id},{...u,arrowTypeEnd:u.arrowTypeEnd,arrowTypeStart:u.arrowTypeStart,points:b,classes:"edge-thickness-normal edge-pattern-solid flowchart-link LS-a1 LE-b1"},void 0,"block",o,s),u.label&&(await xJi(e,{...u,label:u.label,labelStyle:"stroke: #333; stroke-width: 1.5px;fill:none;",arrowTypeEnd:u.arrowTypeEnd,arrowTypeStart:u.arrowTypeStart,points:b,classes:"edge-thickness-normal edge-pattern-solid flowchart-link LS-a1 LE-b1"}),SJi({...u,x:b[1].x,y:b[1].y},{originalPath:b}))}}}X(pQn,"insertEdges");var sea=X(function(e,t){return t.db.getClasses()},"getClasses"),oea=X(async function(e,t,r,a){const{securityLevel:s,block:o}=$c(),u=a.db;let h;s==="sandbox"&&(h=gn("#i"+t));const f=gn(s==="sandbox"?h.nodes()[0].contentDocument.body:"body"),p=s==="sandbox"?f.select(`[id="${t}"]`):gn(`[id="${t}"]`);yJi(p,["point","circle","cross"],a.type,t);const b=u.getBlocks(),_=u.getBlocksFlat(),w=u.getEdges(),S=p.insert("g").attr("class","block");await dQn(S,b,u);const C=tQn(u);if(await fQn(S,b,u),await pQn(S,w,_,u,t),C){const A=C,k=Math.max(1,Math.round(.125*(A.width/A.height))),I=A.height+k+10,N=A.width+10,{useMaxWidth:L}=o;yv(p,I,N,!!L),it.debug("Here Bounds",C,A),p.attr("viewBox",`${A.x-5} ${A.y-5} ${A.width+10} ${A.height+10}`)}},"draw"),lea={draw:oea,getClasses:sea},cea={parser:$Zi,db:iJi,renderer:lea,styles:sJi};const uea=Object.freeze(Object.defineProperty({__proto__:null,diagram:cea},Symbol.toStringTag,{value:"Module"}));var gQn={exports:{}},aat={exports:{}},sat={exports:{}},qTn;function hea(){return qTn||(qTn=1,function(e,t){(function(a,s){e.exports=s()})(ml,function(){return function(r){var a={};function s(o){if(a[o])return a[o].exports;var u=a[o]={i:o,l:!1,exports:{}};return r[o].call(u.exports,u,u.exports,s),u.l=!0,u.exports}return s.m=r,s.c=a,s.i=function(o){return o},s.d=function(o,u,h){s.o(o,u)||Object.defineProperty(o,u,{configurable:!1,enumerable:!0,get:h})},s.n=function(o){var u=o&&o.__esModule?function(){return o.default}:function(){return o};return s.d(u,"a",u),u},s.o=function(o,u){return Object.prototype.hasOwnProperty.call(o,u)},s.p="",s(s.s=28)}([function(r,a,s){function o(){}o.QUALITY=1,o.DEFAULT_CREATE_BENDS_AS_NEEDED=!1,o.DEFAULT_INCREMENTAL=!1,o.DEFAULT_ANIMATION_ON_LAYOUT=!0,o.DEFAULT_ANIMATION_DURING_LAYOUT=!1,o.DEFAULT_ANIMATION_PERIOD=50,o.DEFAULT_UNIFORM_LEAF_NODE_SIZES=!1,o.DEFAULT_GRAPH_MARGIN=15,o.NODE_DIMENSIONS_INCLUDE_LABELS=!1,o.SIMPLE_NODE_SIZE=40,o.SIMPLE_NODE_HALF_SIZE=o.SIMPLE_NODE_SIZE/2,o.EMPTY_COMPOUND_NODE_SIZE=40,o.MIN_EDGE_LENGTH=1,o.WORLD_BOUNDARY=1e6,o.INITIAL_WORLD_BOUNDARY=o.WORLD_BOUNDARY/1e3,o.WORLD_CENTER_X=1200,o.WORLD_CENTER_Y=900,r.exports=o},function(r,a,s){var o=s(2),u=s(8),h=s(9);function f(m,b,_){o.call(this,_),this.isOverlapingSourceAndTarget=!1,this.vGraphObject=_,this.bendpoints=[],this.source=m,this.target=b}f.prototype=Object.create(o.prototype);for(var p in o)f[p]=o[p];f.prototype.getSource=function(){return this.source},f.prototype.getTarget=function(){return this.target},f.prototype.isInterGraph=function(){return this.isInterGraph},f.prototype.getLength=function(){return this.length},f.prototype.isOverlapingSourceAndTarget=function(){return this.isOverlapingSourceAndTarget},f.prototype.getBendpoints=function(){return this.bendpoints},f.prototype.getLca=function(){return this.lca},f.prototype.getSourceInLca=function(){return this.sourceInLca},f.prototype.getTargetInLca=function(){return this.targetInLca},f.prototype.getOtherEnd=function(m){if(this.source===m)return this.target;if(this.target===m)return this.source;throw"Node is not incident with this edge"},f.prototype.getOtherEndInGraph=function(m,b){for(var _=this.getOtherEnd(m),w=b.getGraphManager().getRoot();;){if(_.getOwner()==b)return _;if(_.getOwner()==w)break;_=_.getOwner().getParent()}return null},f.prototype.updateLength=function(){var m=new Array(4);this.isOverlapingSourceAndTarget=u.getIntersection(this.target.getRect(),this.source.getRect(),m),this.isOverlapingSourceAndTarget||(this.lengthX=m[0]-m[2],this.lengthY=m[1]-m[3],Math.abs(this.lengthX)<1&&(this.lengthX=h.sign(this.lengthX)),Math.abs(this.lengthY)<1&&(this.lengthY=h.sign(this.lengthY)),this.length=Math.sqrt(this.lengthX*this.lengthX+this.lengthY*this.lengthY))},f.prototype.updateLengthSimple=function(){this.lengthX=this.target.getCenterX()-this.source.getCenterX(),this.lengthY=this.target.getCenterY()-this.source.getCenterY(),Math.abs(this.lengthX)<1&&(this.lengthX=h.sign(this.lengthX)),Math.abs(this.lengthY)<1&&(this.lengthY=h.sign(this.lengthY)),this.length=Math.sqrt(this.lengthX*this.lengthX+this.lengthY*this.lengthY)},r.exports=f},function(r,a,s){function o(u){this.vGraphObject=u}r.exports=o},function(r,a,s){var o=s(2),u=s(10),h=s(13),f=s(0),p=s(16),m=s(5);function b(w,S,C,A){C==null&&A==null&&(A=S),o.call(this,A),w.graphManager!=null&&(w=w.graphManager),this.estimatedSize=u.MIN_VALUE,this.inclusionTreeDepth=u.MAX_VALUE,this.vGraphObject=A,this.edges=[],this.graphManager=w,C!=null&&S!=null?this.rect=new h(S.x,S.y,C.width,C.height):this.rect=new h}b.prototype=Object.create(o.prototype);for(var _ in o)b[_]=o[_];b.prototype.getEdges=function(){return this.edges},b.prototype.getChild=function(){return this.child},b.prototype.getOwner=function(){return this.owner},b.prototype.getWidth=function(){return this.rect.width},b.prototype.setWidth=function(w){this.rect.width=w},b.prototype.getHeight=function(){return this.rect.height},b.prototype.setHeight=function(w){this.rect.height=w},b.prototype.getCenterX=function(){return this.rect.x+this.rect.width/2},b.prototype.getCenterY=function(){return this.rect.y+this.rect.height/2},b.prototype.getCenter=function(){return new m(this.rect.x+this.rect.width/2,this.rect.y+this.rect.height/2)},b.prototype.getLocation=function(){return new m(this.rect.x,this.rect.y)},b.prototype.getRect=function(){return this.rect},b.prototype.getDiagonal=function(){return Math.sqrt(this.rect.width*this.rect.width+this.rect.height*this.rect.height)},b.prototype.getHalfTheDiagonal=function(){return Math.sqrt(this.rect.height*this.rect.height+this.rect.width*this.rect.width)/2},b.prototype.setRect=function(w,S){this.rect.x=w.x,this.rect.y=w.y,this.rect.width=S.width,this.rect.height=S.height},b.prototype.setCenter=function(w,S){this.rect.x=w-this.rect.width/2,this.rect.y=S-this.rect.height/2},b.prototype.setLocation=function(w,S){this.rect.x=w,this.rect.y=S},b.prototype.moveBy=function(w,S){this.rect.x+=w,this.rect.y+=S},b.prototype.getEdgeListToNode=function(w){var S=[],C=this;return C.edges.forEach(function(A){if(A.target==w){if(A.source!=C)throw"Incorrect edge source!";S.push(A)}}),S},b.prototype.getEdgesBetween=function(w){var S=[],C=this;return C.edges.forEach(function(A){if(!(A.source==C||A.target==C))throw"Incorrect edge source and/or target";(A.target==w||A.source==w)&&S.push(A)}),S},b.prototype.getNeighborsList=function(){var w=new Set,S=this;return S.edges.forEach(function(C){if(C.source==S)w.add(C.target);else{if(C.target!=S)throw"Incorrect incidency!";w.add(C.source)}}),w},b.prototype.withChildren=function(){var w=new Set,S,C;if(w.add(this),this.child!=null)for(var A=this.child.getNodes(),k=0;kS?(this.rect.x-=(this.labelWidth-S)/2,this.setWidth(this.labelWidth)):this.labelPosHorizontal=="right"&&this.setWidth(S+this.labelWidth)),this.labelHeight&&(this.labelPosVertical=="top"?(this.rect.y-=this.labelHeight,this.setHeight(C+this.labelHeight)):this.labelPosVertical=="center"&&this.labelHeight>C?(this.rect.y-=(this.labelHeight-C)/2,this.setHeight(this.labelHeight)):this.labelPosVertical=="bottom"&&this.setHeight(C+this.labelHeight))}}},b.prototype.getInclusionTreeDepth=function(){if(this.inclusionTreeDepth==u.MAX_VALUE)throw"assert failed";return this.inclusionTreeDepth},b.prototype.transform=function(w){var S=this.rect.x;S>f.WORLD_BOUNDARY?S=f.WORLD_BOUNDARY:S<-f.WORLD_BOUNDARY&&(S=-f.WORLD_BOUNDARY);var C=this.rect.y;C>f.WORLD_BOUNDARY?C=f.WORLD_BOUNDARY:C<-f.WORLD_BOUNDARY&&(C=-f.WORLD_BOUNDARY);var A=new m(S,C),k=w.inverseTransformPoint(A);this.setLocation(k.x,k.y)},b.prototype.getLeft=function(){return this.rect.x},b.prototype.getRight=function(){return this.rect.x+this.rect.width},b.prototype.getTop=function(){return this.rect.y},b.prototype.getBottom=function(){return this.rect.y+this.rect.height},b.prototype.getParent=function(){return this.owner==null?null:this.owner.getParent()},r.exports=b},function(r,a,s){var o=s(0);function u(){}for(var h in o)u[h]=o[h];u.MAX_ITERATIONS=2500,u.DEFAULT_EDGE_LENGTH=50,u.DEFAULT_SPRING_STRENGTH=.45,u.DEFAULT_REPULSION_STRENGTH=4500,u.DEFAULT_GRAVITY_STRENGTH=.4,u.DEFAULT_COMPOUND_GRAVITY_STRENGTH=1,u.DEFAULT_GRAVITY_RANGE_FACTOR=3.8,u.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=1.5,u.DEFAULT_USE_SMART_IDEAL_EDGE_LENGTH_CALCULATION=!0,u.DEFAULT_USE_SMART_REPULSION_RANGE_CALCULATION=!0,u.DEFAULT_COOLING_FACTOR_INCREMENTAL=.3,u.COOLING_ADAPTATION_FACTOR=.33,u.ADAPTATION_LOWER_NODE_LIMIT=1e3,u.ADAPTATION_UPPER_NODE_LIMIT=5e3,u.MAX_NODE_DISPLACEMENT_INCREMENTAL=100,u.MAX_NODE_DISPLACEMENT=u.MAX_NODE_DISPLACEMENT_INCREMENTAL*3,u.MIN_REPULSION_DIST=u.DEFAULT_EDGE_LENGTH/10,u.CONVERGENCE_CHECK_PERIOD=100,u.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=.1,u.MIN_EDGE_LENGTH=1,u.GRID_CALCULATION_CHECK_PERIOD=10,r.exports=u},function(r,a,s){function o(u,h){u==null&&h==null?(this.x=0,this.y=0):(this.x=u,this.y=h)}o.prototype.getX=function(){return this.x},o.prototype.getY=function(){return this.y},o.prototype.setX=function(u){this.x=u},o.prototype.setY=function(u){this.y=u},o.prototype.getDifference=function(u){return new DimensionD(this.x-u.x,this.y-u.y)},o.prototype.getCopy=function(){return new o(this.x,this.y)},o.prototype.translate=function(u){return this.x+=u.width,this.y+=u.height,this},r.exports=o},function(r,a,s){var o=s(2),u=s(10),h=s(0),f=s(7),p=s(3),m=s(1),b=s(13),_=s(12),w=s(11);function S(A,k,I){o.call(this,I),this.estimatedSize=u.MIN_VALUE,this.margin=h.DEFAULT_GRAPH_MARGIN,this.edges=[],this.nodes=[],this.isConnected=!1,this.parent=A,k!=null&&k instanceof f?this.graphManager=k:k!=null&&k instanceof Layout&&(this.graphManager=k.graphManager)}S.prototype=Object.create(o.prototype);for(var C in o)S[C]=o[C];S.prototype.getNodes=function(){return this.nodes},S.prototype.getEdges=function(){return this.edges},S.prototype.getGraphManager=function(){return this.graphManager},S.prototype.getParent=function(){return this.parent},S.prototype.getLeft=function(){return this.left},S.prototype.getRight=function(){return this.right},S.prototype.getTop=function(){return this.top},S.prototype.getBottom=function(){return this.bottom},S.prototype.isConnected=function(){return this.isConnected},S.prototype.add=function(A,k,I){if(k==null&&I==null){var N=A;if(this.graphManager==null)throw"Graph has no graph mgr!";if(this.getNodes().indexOf(N)>-1)throw"Node already in graph!";return N.owner=this,this.getNodes().push(N),N}else{var L=A;if(!(this.getNodes().indexOf(k)>-1&&this.getNodes().indexOf(I)>-1))throw"Source or target not in graph!";if(!(k.owner==I.owner&&k.owner==this))throw"Both owners must be this graph!";return k.owner!=I.owner?null:(L.source=k,L.target=I,L.isInterGraph=!1,this.getEdges().push(L),k.edges.push(L),I!=k&&I.edges.push(L),L)}},S.prototype.remove=function(A){var k=A;if(A instanceof p){if(k==null)throw"Node is null!";if(!(k.owner!=null&&k.owner==this))throw"Owner graph is invalid!";if(this.graphManager==null)throw"Owner graph manager is invalid!";for(var I=k.edges.slice(),N,L=I.length,P=0;P-1&&U>-1))throw"Source and/or target doesn't know this edge!";N.source.edges.splice(F,1),N.target!=N.source&&N.target.edges.splice(U,1);var M=N.source.owner.getEdges().indexOf(N);if(M==-1)throw"Not in owner's edge list!";N.source.owner.getEdges().splice(M,1)}},S.prototype.updateLeftTop=function(){for(var A=u.MAX_VALUE,k=u.MAX_VALUE,I,N,L,P=this.getNodes(),M=P.length,F=0;FI&&(A=I),k>N&&(k=N)}return A==u.MAX_VALUE?null:(P[0].getParent().paddingLeft!=null?L=P[0].getParent().paddingLeft:L=this.margin,this.left=k-L,this.top=A-L,new _(this.left,this.top))},S.prototype.updateBounds=function(A){for(var k=u.MAX_VALUE,I=-u.MAX_VALUE,N=u.MAX_VALUE,L=-u.MAX_VALUE,P,M,F,U,$,G=this.nodes,B=G.length,Z=0;ZP&&(k=P),IF&&(N=F),LP&&(k=P),IF&&(N=F),L=this.nodes.length){var B=0;I.forEach(function(Z){Z.owner==A&&B++}),B==this.nodes.length&&(this.isConnected=!0)}},r.exports=S},function(r,a,s){var o,u=s(1);function h(f){o=s(6),this.layout=f,this.graphs=[],this.edges=[]}h.prototype.addRoot=function(){var f=this.layout.newGraph(),p=this.layout.newNode(null),m=this.add(f,p);return this.setRootGraph(m),this.rootGraph},h.prototype.add=function(f,p,m,b,_){if(m==null&&b==null&&_==null){if(f==null)throw"Graph is null!";if(p==null)throw"Parent node is null!";if(this.graphs.indexOf(f)>-1)throw"Graph already in this graph mgr!";if(this.graphs.push(f),f.parent!=null)throw"Already has a parent!";if(p.child!=null)throw"Already has a child!";return f.parent=p,p.child=f,f}else{_=m,b=p,m=f;var w=b.getOwner(),S=_.getOwner();if(!(w!=null&&w.getGraphManager()==this))throw"Source not in this graph mgr!";if(!(S!=null&&S.getGraphManager()==this))throw"Target not in this graph mgr!";if(w==S)return m.isInterGraph=!1,w.add(m,b,_);if(m.isInterGraph=!0,m.source=b,m.target=_,this.edges.indexOf(m)>-1)throw"Edge already in inter-graph edge list!";if(this.edges.push(m),!(m.source!=null&&m.target!=null))throw"Edge source and/or target is null!";if(!(m.source.edges.indexOf(m)==-1&&m.target.edges.indexOf(m)==-1))throw"Edge already in source and/or target incidency list!";return m.source.edges.push(m),m.target.edges.push(m),m}},h.prototype.remove=function(f){if(f instanceof o){var p=f;if(p.getGraphManager()!=this)throw"Graph not in this graph mgr";if(!(p==this.rootGraph||p.parent!=null&&p.parent.graphManager==this))throw"Invalid parent node!";var m=[];m=m.concat(p.getEdges());for(var b,_=m.length,w=0;w<_;w++)b=m[w],p.remove(b);var S=[];S=S.concat(p.getNodes());var C;_=S.length;for(var w=0;w<_;w++)C=S[w],p.remove(C);p==this.rootGraph&&this.setRootGraph(null);var A=this.graphs.indexOf(p);this.graphs.splice(A,1),p.parent=null}else if(f instanceof u){if(b=f,b==null)throw"Edge is null!";if(!b.isInterGraph)throw"Not an inter-graph edge!";if(!(b.source!=null&&b.target!=null))throw"Source and/or target is null!";if(!(b.source.edges.indexOf(b)!=-1&&b.target.edges.indexOf(b)!=-1))throw"Source and/or target doesn't know this edge!";var A=b.source.edges.indexOf(b);if(b.source.edges.splice(A,1),A=b.target.edges.indexOf(b),b.target.edges.splice(A,1),!(b.source.owner!=null&&b.source.owner.getGraphManager()!=null))throw"Edge owner graph or owner graph manager is null!";if(b.source.owner.getGraphManager().edges.indexOf(b)==-1)throw"Not in owner graph manager's edge list!";var A=b.source.owner.getGraphManager().edges.indexOf(b);b.source.owner.getGraphManager().edges.splice(A,1)}},h.prototype.updateBounds=function(){this.rootGraph.updateBounds(!0)},h.prototype.getGraphs=function(){return this.graphs},h.prototype.getAllNodes=function(){if(this.allNodes==null){for(var f=[],p=this.getGraphs(),m=p.length,b=0;b=f.getRight()?p[0]+=Math.min(f.getX()-h.getX(),h.getRight()-f.getRight()):f.getX()<=h.getX()&&f.getRight()>=h.getRight()&&(p[0]+=Math.min(h.getX()-f.getX(),f.getRight()-h.getRight())),h.getY()<=f.getY()&&h.getBottom()>=f.getBottom()?p[1]+=Math.min(f.getY()-h.getY(),h.getBottom()-f.getBottom()):f.getY()<=h.getY()&&f.getBottom()>=h.getBottom()&&(p[1]+=Math.min(h.getY()-f.getY(),f.getBottom()-h.getBottom()));var _=Math.abs((f.getCenterY()-h.getCenterY())/(f.getCenterX()-h.getCenterX()));f.getCenterY()===h.getCenterY()&&f.getCenterX()===h.getCenterX()&&(_=1);var w=_*p[0],S=p[1]/_;p[0]w)return p[0]=m,p[1]=C,p[2]=_,p[3]=G,!1;if(b_)return p[0]=S,p[1]=b,p[2]=U,p[3]=w,!1;if(m<_)return p[0]=A,p[1]=b,p[2]=M,p[3]=w,!1}else{var Q=h.height/h.width,V=f.height/f.width,j=(w-b)/(_-m),ee=void 0,te=void 0,ne=void 0,se=void 0,ie=void 0,ge=void 0;if(-Q===j?m>_?(p[0]=k,p[1]=I,Y=!0):(p[0]=A,p[1]=C,Y=!0):Q===j&&(m>_?(p[0]=S,p[1]=C,Y=!0):(p[0]=N,p[1]=I,Y=!0)),-V===j?_>m?(p[2]=$,p[3]=G,W=!0):(p[2]=U,p[3]=F,W=!0):V===j&&(_>m?(p[2]=M,p[3]=F,W=!0):(p[2]=B,p[3]=G,W=!0)),Y&&W)return!1;if(m>_?b>w?(ee=this.getCardinalDirection(Q,j,4),te=this.getCardinalDirection(V,j,2)):(ee=this.getCardinalDirection(-Q,j,3),te=this.getCardinalDirection(-V,j,1)):b>w?(ee=this.getCardinalDirection(-Q,j,1),te=this.getCardinalDirection(-V,j,3)):(ee=this.getCardinalDirection(Q,j,2),te=this.getCardinalDirection(V,j,4)),!Y)switch(ee){case 1:se=C,ne=m+-P/j,p[0]=ne,p[1]=se;break;case 2:ne=N,se=b+L*j,p[0]=ne,p[1]=se;break;case 3:se=I,ne=m+P/j,p[0]=ne,p[1]=se;break;case 4:ne=k,se=b+-L*j,p[0]=ne,p[1]=se;break}if(!W)switch(te){case 1:ge=F,ie=_+-z/j,p[2]=ie,p[3]=ge;break;case 2:ie=B,ge=w+Z*j,p[2]=ie,p[3]=ge;break;case 3:ge=G,ie=_+z/j,p[2]=ie,p[3]=ge;break;case 4:ie=$,ge=w+-Z*j,p[2]=ie,p[3]=ge;break}}return!1},u.getCardinalDirection=function(h,f,p){return h>f?p:1+p%4},u.getIntersection=function(h,f,p,m){if(m==null)return this.getIntersection2(h,f,p);var b=h.x,_=h.y,w=f.x,S=f.y,C=p.x,A=p.y,k=m.x,I=m.y,N=void 0,L=void 0,P=void 0,M=void 0,F=void 0,U=void 0,$=void 0,G=void 0,B=void 0;return P=S-_,F=b-w,$=w*_-b*S,M=I-A,U=C-k,G=k*A-C*I,B=P*U-M*F,B===0?null:(N=(F*G-U*$)/B,L=(M*$-P*G)/B,new o(N,L))},u.angleOfVector=function(h,f,p,m){var b=void 0;return h!==p?(b=Math.atan((m-f)/(p-h)),p=0){var I=(-C+Math.sqrt(C*C-4*S*A))/(2*S),N=(-C-Math.sqrt(C*C-4*S*A))/(2*S),L=null;return I>=0&&I<=1?[I]:N>=0&&N<=1?[N]:L}else return null},u.HALF_PI=.5*Math.PI,u.ONE_AND_HALF_PI=1.5*Math.PI,u.TWO_PI=2*Math.PI,u.THREE_PI=3*Math.PI,r.exports=u},function(r,a,s){function o(){}o.sign=function(u){return u>0?1:u<0?-1:0},o.floor=function(u){return u<0?Math.ceil(u):Math.floor(u)},o.ceil=function(u){return u<0?Math.floor(u):Math.ceil(u)},r.exports=o},function(r,a,s){function o(){}o.MAX_VALUE=2147483647,o.MIN_VALUE=-2147483648,r.exports=o},function(r,a,s){var o=function(){function b(_,w){for(var S=0;S"u"?"undefined":o(h);return h==null||f!="object"&&f!="function"},r.exports=u},function(r,a,s){function o(C){if(Array.isArray(C)){for(var A=0,k=Array(C.length);A0&&A;){for(P.push(F[0]);P.length>0&&A;){var U=P[0];P.splice(0,1),L.add(U);for(var $=U.getEdges(),N=0;N<$.length;N++){var G=$[N].getOtherEnd(U);if(M.get(U)!=G)if(!L.has(G))P.push(G),M.set(G,U);else{A=!1;break}}}if(!A)C=[];else{var B=[].concat(o(L));C.push(B);for(var N=0;N-1&&F.splice(z,1)}L=new Set,M=new Map}}return C},S.prototype.createDummyNodesForBendpoints=function(C){for(var A=[],k=C.source,I=this.graphManager.calcLowestCommonAncestor(C.source,C.target),N=0;N0){for(var I=this.edgeToDummyNodes.get(k),N=0;N=0&&A.splice(G,1);var B=M.getNeighborsList();B.forEach(function(Y){if(k.indexOf(Y)<0){var W=I.get(Y),Q=W-1;Q==1&&U.push(Y),I.set(Y,Q)}})}k=k.concat(U),(A.length==1||A.length==2)&&(N=!0,L=A[0])}return L},S.prototype.setGraphManager=function(C){this.graphManager=C},r.exports=S},function(r,a,s){function o(){}o.seed=1,o.x=0,o.nextDouble=function(){return o.x=Math.sin(o.seed++)*1e4,o.x-Math.floor(o.x)},r.exports=o},function(r,a,s){var o=s(5);function u(h,f){this.lworldOrgX=0,this.lworldOrgY=0,this.ldeviceOrgX=0,this.ldeviceOrgY=0,this.lworldExtX=1,this.lworldExtY=1,this.ldeviceExtX=1,this.ldeviceExtY=1}u.prototype.getWorldOrgX=function(){return this.lworldOrgX},u.prototype.setWorldOrgX=function(h){this.lworldOrgX=h},u.prototype.getWorldOrgY=function(){return this.lworldOrgY},u.prototype.setWorldOrgY=function(h){this.lworldOrgY=h},u.prototype.getWorldExtX=function(){return this.lworldExtX},u.prototype.setWorldExtX=function(h){this.lworldExtX=h},u.prototype.getWorldExtY=function(){return this.lworldExtY},u.prototype.setWorldExtY=function(h){this.lworldExtY=h},u.prototype.getDeviceOrgX=function(){return this.ldeviceOrgX},u.prototype.setDeviceOrgX=function(h){this.ldeviceOrgX=h},u.prototype.getDeviceOrgY=function(){return this.ldeviceOrgY},u.prototype.setDeviceOrgY=function(h){this.ldeviceOrgY=h},u.prototype.getDeviceExtX=function(){return this.ldeviceExtX},u.prototype.setDeviceExtX=function(h){this.ldeviceExtX=h},u.prototype.getDeviceExtY=function(){return this.ldeviceExtY},u.prototype.setDeviceExtY=function(h){this.ldeviceExtY=h},u.prototype.transformX=function(h){var f=0,p=this.lworldExtX;return p!=0&&(f=this.ldeviceOrgX+(h-this.lworldOrgX)*this.ldeviceExtX/p),f},u.prototype.transformY=function(h){var f=0,p=this.lworldExtY;return p!=0&&(f=this.ldeviceOrgY+(h-this.lworldOrgY)*this.ldeviceExtY/p),f},u.prototype.inverseTransformX=function(h){var f=0,p=this.ldeviceExtX;return p!=0&&(f=this.lworldOrgX+(h-this.ldeviceOrgX)*this.lworldExtX/p),f},u.prototype.inverseTransformY=function(h){var f=0,p=this.ldeviceExtY;return p!=0&&(f=this.lworldOrgY+(h-this.ldeviceOrgY)*this.lworldExtY/p),f},u.prototype.inverseTransformPoint=function(h){var f=new o(this.inverseTransformX(h.x),this.inverseTransformY(h.y));return f},r.exports=u},function(r,a,s){function o(w){if(Array.isArray(w)){for(var S=0,C=Array(w.length);Sh.ADAPTATION_LOWER_NODE_LIMIT&&(this.coolingFactor=Math.max(this.coolingFactor*h.COOLING_ADAPTATION_FACTOR,this.coolingFactor-(w-h.ADAPTATION_LOWER_NODE_LIMIT)/(h.ADAPTATION_UPPER_NODE_LIMIT-h.ADAPTATION_LOWER_NODE_LIMIT)*this.coolingFactor*(1-h.COOLING_ADAPTATION_FACTOR))),this.maxNodeDisplacement=h.MAX_NODE_DISPLACEMENT_INCREMENTAL):(w>h.ADAPTATION_LOWER_NODE_LIMIT?this.coolingFactor=Math.max(h.COOLING_ADAPTATION_FACTOR,1-(w-h.ADAPTATION_LOWER_NODE_LIMIT)/(h.ADAPTATION_UPPER_NODE_LIMIT-h.ADAPTATION_LOWER_NODE_LIMIT)*(1-h.COOLING_ADAPTATION_FACTOR)):this.coolingFactor=1,this.initialCoolingFactor=this.coolingFactor,this.maxNodeDisplacement=h.MAX_NODE_DISPLACEMENT),this.maxIterations=Math.max(this.getAllNodes().length*5,this.maxIterations),this.displacementThresholdPerNode=3*h.DEFAULT_EDGE_LENGTH/100,this.totalDisplacementThreshold=this.displacementThresholdPerNode*this.getAllNodes().length,this.repulsionRange=this.calcRepulsionRange()},b.prototype.calcSpringForces=function(){for(var w=this.getAllEdges(),S,C=0;C0&&arguments[0]!==void 0?arguments[0]:!0,S=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,C,A,k,I,N=this.getAllNodes(),L;if(this.useFRGridVariant)for(this.totalIterations%h.GRID_CALCULATION_CHECK_PERIOD==1&&w&&this.updateGrid(),L=new Set,C=0;CP||L>P)&&(w.gravitationForceX=-this.gravityConstant*k,w.gravitationForceY=-this.gravityConstant*I)):(P=S.getEstimatedSize()*this.compoundGravityRangeFactor,(N>P||L>P)&&(w.gravitationForceX=-this.gravityConstant*k*this.compoundGravityConstant,w.gravitationForceY=-this.gravityConstant*I*this.compoundGravityConstant))},b.prototype.isConverged=function(){var w,S=!1;return this.totalIterations>this.maxIterations/3&&(S=Math.abs(this.totalDisplacement-this.oldTotalDisplacement)<2),w=this.totalDisplacement=N.length||P>=N[0].length)){for(var M=0;Mb}}]),p}();r.exports=f},function(r,a,s){function o(){}o.svd=function(u){this.U=null,this.V=null,this.s=null,this.m=0,this.n=0,this.m=u.length,this.n=u[0].length;var h=Math.min(this.m,this.n);this.s=function(Ln){for(var pr=[];Ln-- >0;)pr.push(0);return pr}(Math.min(this.m+1,this.n)),this.U=function(Ln){var pr=function Cr(Zr){if(Zr.length==0)return 0;for(var Pr=[],Ci=0;Ci0;)pr.push(0);return pr}(this.n),p=function(Ln){for(var pr=[];Ln-- >0;)pr.push(0);return pr}(this.m),m=!0,b=Math.min(this.m-1,this.n),_=Math.max(0,Math.min(this.n-2,this.m)),w=0;w=0;V--)if(this.s[V]!==0){for(var j=V+1;j=0;ce--){if(function(Ln,pr){return Ln&&pr}(ce<_,f[ce]!==0))for(var be=ce+1;be0;){var Ie=void 0,Le=void 0;for(Ie=Y-2;Ie>=-1&&Ie!==-1;Ie--)if(Math.abs(f[Ie])<=Ce+we*(Math.abs(this.s[Ie])+Math.abs(this.s[Ie+1]))){f[Ie]=0;break}if(Ie===Y-2)Le=4;else{var Fe=void 0;for(Fe=Y-1;Fe>=Ie&&Fe!==Ie;Fe--){var Ve=(Fe!==Y?Math.abs(f[Fe]):0)+(Fe!==Ie+1?Math.abs(f[Fe-1]):0);if(Math.abs(this.s[Fe])<=Ce+we*Ve){this.s[Fe]=0;break}}Fe===Ie?Le=3:Fe===Y-1?Le=1:(Le=2,Ie=Fe)}switch(Ie++,Le){case 1:{var Oe=f[Y-2];f[Y-2]=0;for(var Dt=Y-2;Dt>=Ie;Dt--){var ot=o.hypot(this.s[Dt],Oe),sn=this.s[Dt]/ot,Kt=Oe/ot;this.s[Dt]=ot,Dt!==Ie&&(Oe=-Kt*f[Dt-1],f[Dt-1]=sn*f[Dt-1]);for(var Ft=0;Ft=this.s[Ie+1]);){var Ar=this.s[Ie];if(this.s[Ie]=this.s[Ie+1],this.s[Ie+1]=Ar,IeMath.abs(h)?(f=h/u,f=Math.abs(u)*Math.sqrt(1+f*f)):h!=0?(f=u/h,f=Math.abs(h)*Math.sqrt(1+f*f)):f=0,f},r.exports=o},function(r,a,s){var o=function(){function f(p,m){for(var b=0;b2&&arguments[2]!==void 0?arguments[2]:1,_=arguments.length>3&&arguments[3]!==void 0?arguments[3]:-1,w=arguments.length>4&&arguments[4]!==void 0?arguments[4]:-1;u(this,f),this.sequence1=p,this.sequence2=m,this.match_score=b,this.mismatch_penalty=_,this.gap_penalty=w,this.iMax=p.length+1,this.jMax=m.length+1,this.grid=new Array(this.iMax);for(var S=0;S=0;p--){var m=this.listeners[p];m.event===h&&m.callback===f&&this.listeners.splice(p,1)}},u.emit=function(h,f){for(var p=0;p{var a={45:(h,f,p)=>{var m={};m.layoutBase=p(551),m.CoSEConstants=p(806),m.CoSEEdge=p(767),m.CoSEGraph=p(880),m.CoSEGraphManager=p(578),m.CoSELayout=p(765),m.CoSENode=p(991),m.ConstraintHandler=p(902),h.exports=m},806:(h,f,p)=>{var m=p(551).FDLayoutConstants;function b(){}for(var _ in m)b[_]=m[_];b.DEFAULT_USE_MULTI_LEVEL_SCALING=!1,b.DEFAULT_RADIAL_SEPARATION=m.DEFAULT_EDGE_LENGTH,b.DEFAULT_COMPONENT_SEPERATION=60,b.TILE=!0,b.TILING_PADDING_VERTICAL=10,b.TILING_PADDING_HORIZONTAL=10,b.TRANSFORM_ON_CONSTRAINT_HANDLING=!0,b.ENFORCE_CONSTRAINTS=!0,b.APPLY_LAYOUT=!0,b.RELAX_MOVEMENT_ON_CONSTRAINTS=!0,b.TREE_REDUCTION_ON_INCREMENTAL=!0,b.PURE_INCREMENTAL=b.DEFAULT_INCREMENTAL,h.exports=b},767:(h,f,p)=>{var m=p(551).FDLayoutEdge;function b(w,S,C){m.call(this,w,S,C)}b.prototype=Object.create(m.prototype);for(var _ in m)b[_]=m[_];h.exports=b},880:(h,f,p)=>{var m=p(551).LGraph;function b(w,S,C){m.call(this,w,S,C)}b.prototype=Object.create(m.prototype);for(var _ in m)b[_]=m[_];h.exports=b},578:(h,f,p)=>{var m=p(551).LGraphManager;function b(w){m.call(this,w)}b.prototype=Object.create(m.prototype);for(var _ in m)b[_]=m[_];h.exports=b},765:(h,f,p)=>{var m=p(551).FDLayout,b=p(578),_=p(880),w=p(991),S=p(767),C=p(806),A=p(902),k=p(551).FDLayoutConstants,I=p(551).LayoutConstants,N=p(551).Point,L=p(551).PointD,P=p(551).DimensionD,M=p(551).Layout,F=p(551).Integer,U=p(551).IGeometry,$=p(551).LGraph,G=p(551).Transform,B=p(551).LinkedList;function Z(){m.call(this),this.toBeTiled={},this.constraints={}}Z.prototype=Object.create(m.prototype);for(var z in m)Z[z]=m[z];Z.prototype.newGraphManager=function(){var Y=new b(this);return this.graphManager=Y,Y},Z.prototype.newGraph=function(Y){return new _(null,this.graphManager,Y)},Z.prototype.newNode=function(Y){return new w(this.graphManager,Y)},Z.prototype.newEdge=function(Y){return new S(null,null,Y)},Z.prototype.initParameters=function(){m.prototype.initParameters.call(this,arguments),this.isSubLayout||(C.DEFAULT_EDGE_LENGTH<10?this.idealEdgeLength=10:this.idealEdgeLength=C.DEFAULT_EDGE_LENGTH,this.useSmartIdealEdgeLengthCalculation=C.DEFAULT_USE_SMART_IDEAL_EDGE_LENGTH_CALCULATION,this.gravityConstant=k.DEFAULT_GRAVITY_STRENGTH,this.compoundGravityConstant=k.DEFAULT_COMPOUND_GRAVITY_STRENGTH,this.gravityRangeFactor=k.DEFAULT_GRAVITY_RANGE_FACTOR,this.compoundGravityRangeFactor=k.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR,this.prunedNodesAll=[],this.growTreeIterations=0,this.afterGrowthIterations=0,this.isTreeGrowing=!1,this.isGrowthFinished=!1)},Z.prototype.initSpringEmbedder=function(){m.prototype.initSpringEmbedder.call(this),this.coolingCycle=0,this.maxCoolingCycle=this.maxIterations/k.CONVERGENCE_CHECK_PERIOD,this.finalTemperature=.04,this.coolingAdjuster=1},Z.prototype.layout=function(){var Y=I.DEFAULT_CREATE_BENDS_AS_NEEDED;return Y&&(this.createBendpoints(),this.graphManager.resetAllEdges()),this.level=0,this.classicLayout()},Z.prototype.classicLayout=function(){if(this.nodesWithGravity=this.calculateNodesToApplyGravitationTo(),this.graphManager.setAllNodesToApplyGravitation(this.nodesWithGravity),this.calcNoOfChildrenForAllNodes(),this.graphManager.calcLowestCommonAncestors(),this.graphManager.calcInclusionTreeDepths(),this.graphManager.getRoot().calcEstimatedSize(),this.calcIdealEdgeLengths(),this.incremental){if(C.TREE_REDUCTION_ON_INCREMENTAL){this.reduceTrees(),this.graphManager.resetAllNodesToApplyGravitation();var W=new Set(this.getAllNodes()),Q=this.nodesWithGravity.filter(function(ee){return W.has(ee)});this.graphManager.setAllNodesToApplyGravitation(Q)}}else{var Y=this.getFlatForest();if(Y.length>0)this.positionNodesRadially(Y);else{this.reduceTrees(),this.graphManager.resetAllNodesToApplyGravitation();var W=new Set(this.getAllNodes()),Q=this.nodesWithGravity.filter(function(V){return W.has(V)});this.graphManager.setAllNodesToApplyGravitation(Q),this.positionNodesRandomly()}}return Object.keys(this.constraints).length>0&&(A.handleConstraints(this),this.initConstraintVariables()),this.initSpringEmbedder(),C.APPLY_LAYOUT&&this.runSpringEmbedder(),!0},Z.prototype.tick=function(){if(this.totalIterations++,this.totalIterations===this.maxIterations&&!this.isTreeGrowing&&!this.isGrowthFinished)if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;if(this.totalIterations%k.CONVERGENCE_CHECK_PERIOD==0&&!this.isTreeGrowing&&!this.isGrowthFinished){if(this.isConverged())if(this.prunedNodesAll.length>0)this.isTreeGrowing=!0;else return!0;this.coolingCycle++,this.layoutQuality==0?this.coolingAdjuster=this.coolingCycle:this.layoutQuality==1&&(this.coolingAdjuster=this.coolingCycle/3),this.coolingFactor=Math.max(this.initialCoolingFactor-Math.pow(this.coolingCycle,Math.log(100*(this.initialCoolingFactor-this.finalTemperature))/Math.log(this.maxCoolingCycle))/100*this.coolingAdjuster,this.finalTemperature),this.animationPeriod=Math.ceil(this.initialAnimationPeriod*Math.sqrt(this.coolingFactor))}if(this.isTreeGrowing){if(this.growTreeIterations%10==0)if(this.prunedNodesAll.length>0){this.graphManager.updateBounds(),this.updateGrid(),this.growTree(this.prunedNodesAll),this.graphManager.resetAllNodesToApplyGravitation();var Y=new Set(this.getAllNodes()),W=this.nodesWithGravity.filter(function(j){return Y.has(j)});this.graphManager.setAllNodesToApplyGravitation(W),this.graphManager.updateBounds(),this.updateGrid(),C.PURE_INCREMENTAL?this.coolingFactor=k.DEFAULT_COOLING_FACTOR_INCREMENTAL/2:this.coolingFactor=k.DEFAULT_COOLING_FACTOR_INCREMENTAL}else this.isTreeGrowing=!1,this.isGrowthFinished=!0;this.growTreeIterations++}if(this.isGrowthFinished){if(this.isConverged())return!0;this.afterGrowthIterations%10==0&&(this.graphManager.updateBounds(),this.updateGrid()),C.PURE_INCREMENTAL?this.coolingFactor=k.DEFAULT_COOLING_FACTOR_INCREMENTAL/2*((100-this.afterGrowthIterations)/100):this.coolingFactor=k.DEFAULT_COOLING_FACTOR_INCREMENTAL*((100-this.afterGrowthIterations)/100),this.afterGrowthIterations++}var Q=!this.isTreeGrowing&&!this.isGrowthFinished,V=this.growTreeIterations%10==1&&this.isTreeGrowing||this.afterGrowthIterations%10==1&&this.isGrowthFinished;return this.totalDisplacement=0,this.graphManager.updateBounds(),this.calcSpringForces(),this.calcRepulsionForces(Q,V),this.calcGravitationalForces(),this.moveNodes(),this.animate(),!1},Z.prototype.getPositionsData=function(){for(var Y=this.graphManager.getAllNodes(),W={},Q=0;Q0&&this.updateDisplacements();for(var Q=0;Q0&&(V.fixedNodeWeight=ee)}}if(this.constraints.relativePlacementConstraint){var te=new Map,ne=new Map;if(this.dummyToNodeForVerticalAlignment=new Map,this.dummyToNodeForHorizontalAlignment=new Map,this.fixedNodesOnHorizontal=new Set,this.fixedNodesOnVertical=new Set,this.fixedNodeSet.forEach(function(ye){Y.fixedNodesOnHorizontal.add(ye),Y.fixedNodesOnVertical.add(ye)}),this.constraints.alignmentConstraint){if(this.constraints.alignmentConstraint.vertical)for(var se=this.constraints.alignmentConstraint.vertical,Q=0;Q=2*ye.length/3;we--)Ee=Math.floor(Math.random()*(we+1)),he=ye[we],ye[we]=ye[Ee],ye[Ee]=he;return ye},this.nodesInRelativeHorizontal=[],this.nodesInRelativeVertical=[],this.nodeToRelativeConstraintMapHorizontal=new Map,this.nodeToRelativeConstraintMapVertical=new Map,this.nodeToTempPositionMapHorizontal=new Map,this.nodeToTempPositionMapVertical=new Map,this.constraints.relativePlacementConstraint.forEach(function(ye){if(ye.left){var Ee=te.has(ye.left)?te.get(ye.left):ye.left,he=te.has(ye.right)?te.get(ye.right):ye.right;Y.nodesInRelativeHorizontal.includes(Ee)||(Y.nodesInRelativeHorizontal.push(Ee),Y.nodeToRelativeConstraintMapHorizontal.set(Ee,[]),Y.dummyToNodeForVerticalAlignment.has(Ee)?Y.nodeToTempPositionMapHorizontal.set(Ee,Y.idToNodeMap.get(Y.dummyToNodeForVerticalAlignment.get(Ee)[0]).getCenterX()):Y.nodeToTempPositionMapHorizontal.set(Ee,Y.idToNodeMap.get(Ee).getCenterX())),Y.nodesInRelativeHorizontal.includes(he)||(Y.nodesInRelativeHorizontal.push(he),Y.nodeToRelativeConstraintMapHorizontal.set(he,[]),Y.dummyToNodeForVerticalAlignment.has(he)?Y.nodeToTempPositionMapHorizontal.set(he,Y.idToNodeMap.get(Y.dummyToNodeForVerticalAlignment.get(he)[0]).getCenterX()):Y.nodeToTempPositionMapHorizontal.set(he,Y.idToNodeMap.get(he).getCenterX())),Y.nodeToRelativeConstraintMapHorizontal.get(Ee).push({right:he,gap:ye.gap}),Y.nodeToRelativeConstraintMapHorizontal.get(he).push({left:Ee,gap:ye.gap})}else{var we=ne.has(ye.top)?ne.get(ye.top):ye.top,Ce=ne.has(ye.bottom)?ne.get(ye.bottom):ye.bottom;Y.nodesInRelativeVertical.includes(we)||(Y.nodesInRelativeVertical.push(we),Y.nodeToRelativeConstraintMapVertical.set(we,[]),Y.dummyToNodeForHorizontalAlignment.has(we)?Y.nodeToTempPositionMapVertical.set(we,Y.idToNodeMap.get(Y.dummyToNodeForHorizontalAlignment.get(we)[0]).getCenterY()):Y.nodeToTempPositionMapVertical.set(we,Y.idToNodeMap.get(we).getCenterY())),Y.nodesInRelativeVertical.includes(Ce)||(Y.nodesInRelativeVertical.push(Ce),Y.nodeToRelativeConstraintMapVertical.set(Ce,[]),Y.dummyToNodeForHorizontalAlignment.has(Ce)?Y.nodeToTempPositionMapVertical.set(Ce,Y.idToNodeMap.get(Y.dummyToNodeForHorizontalAlignment.get(Ce)[0]).getCenterY()):Y.nodeToTempPositionMapVertical.set(Ce,Y.idToNodeMap.get(Ce).getCenterY())),Y.nodeToRelativeConstraintMapVertical.get(we).push({bottom:Ce,gap:ye.gap}),Y.nodeToRelativeConstraintMapVertical.get(Ce).push({top:we,gap:ye.gap})}});else{var ge=new Map,ce=new Map;this.constraints.relativePlacementConstraint.forEach(function(ye){if(ye.left){var Ee=te.has(ye.left)?te.get(ye.left):ye.left,he=te.has(ye.right)?te.get(ye.right):ye.right;ge.has(Ee)?ge.get(Ee).push(he):ge.set(Ee,[he]),ge.has(he)?ge.get(he).push(Ee):ge.set(he,[Ee])}else{var we=ne.has(ye.top)?ne.get(ye.top):ye.top,Ce=ne.has(ye.bottom)?ne.get(ye.bottom):ye.bottom;ce.has(we)?ce.get(we).push(Ce):ce.set(we,[Ce]),ce.has(Ce)?ce.get(Ce).push(we):ce.set(Ce,[we])}});var be=function(Ee,he){var we=[],Ce=[],Ie=new B,Le=new Set,Fe=0;return Ee.forEach(function(Ve,Oe){if(!Le.has(Oe)){we[Fe]=[],Ce[Fe]=!1;var Dt=Oe;for(Ie.push(Dt),Le.add(Dt),we[Fe].push(Dt);Ie.length!=0;){Dt=Ie.shift(),he.has(Dt)&&(Ce[Fe]=!0);var ot=Ee.get(Dt);ot.forEach(function(sn){Le.has(sn)||(Ie.push(sn),Le.add(sn),we[Fe].push(sn))})}Fe++}}),{components:we,isFixed:Ce}},ve=be(ge,Y.fixedNodesOnHorizontal);this.componentsOnHorizontal=ve.components,this.fixedComponentsOnHorizontal=ve.isFixed;var De=be(ce,Y.fixedNodesOnVertical);this.componentsOnVertical=De.components,this.fixedComponentsOnVertical=De.isFixed}}},Z.prototype.updateDisplacements=function(){var Y=this;if(this.constraints.fixedNodeConstraint&&this.constraints.fixedNodeConstraint.forEach(function(De){var ye=Y.idToNodeMap.get(De.nodeId);ye.displacementX=0,ye.displacementY=0}),this.constraints.alignmentConstraint){if(this.constraints.alignmentConstraint.vertical)for(var W=this.constraints.alignmentConstraint.vertical,Q=0;Q1){var ne;for(ne=0;neV&&(V=Math.floor(te.y)),ee=Math.floor(te.x+C.DEFAULT_COMPONENT_SEPERATION)}this.transform(new L(I.WORLD_CENTER_X-te.x/2,I.WORLD_CENTER_Y-te.y/2))},Z.radialLayout=function(Y,W,Q){var V=Math.max(this.maxDiagonalInTree(Y),C.DEFAULT_RADIAL_SEPARATION);Z.branchRadialLayout(W,null,0,359,0,V);var j=$.calculateBounds(Y),ee=new G;ee.setDeviceOrgX(j.getMinX()),ee.setDeviceOrgY(j.getMinY()),ee.setWorldOrgX(Q.x),ee.setWorldOrgY(Q.y);for(var te=0;te1;){var he=Ee[0];Ee.splice(0,1);var we=ce.indexOf(he);we>=0&&ce.splice(we,1),De--,be--}W!=null?ye=(ce.indexOf(Ee[0])+1)%De:ye=0;for(var Ce=Math.abs(V-Q)/be,Ie=ye;ve!=be;Ie=++Ie%De){var Le=ce[Ie].getOtherEnd(Y);if(Le!=W){var Fe=(Q+ve*Ce)%360,Ve=(Fe+Ce)%360;Z.branchRadialLayout(Le,Y,Fe,Ve,j+ee,ee),ve++}}},Z.maxDiagonalInTree=function(Y){for(var W=F.MIN_VALUE,Q=0;QW&&(W=j)}return W},Z.prototype.calcRepulsionRange=function(){return 2*(this.level+1)*this.idealEdgeLength},Z.prototype.groupZeroDegreeMembers=function(){var Y=this,W={};this.memberGroups={},this.idToDummyNode={};for(var Q=[],V=this.graphManager.getAllNodes(),j=0;j"u"&&(W[ne]=[]),W[ne]=W[ne].concat(ee)}Object.keys(W).forEach(function(se){if(W[se].length>1){var ie="DummyCompound_"+se;Y.memberGroups[ie]=W[se];var ge=W[se][0].getParent(),ce=new w(Y.graphManager);ce.id=ie,ce.paddingLeft=ge.paddingLeft||0,ce.paddingRight=ge.paddingRight||0,ce.paddingBottom=ge.paddingBottom||0,ce.paddingTop=ge.paddingTop||0,Y.idToDummyNode[ie]=ce;var be=Y.getGraphManager().add(Y.newGraph(),ce),ve=ge.getChild();ve.add(ce);for(var De=0;Dej?(V.rect.x-=(V.labelWidth-j)/2,V.setWidth(V.labelWidth),V.labelMarginLeft=(V.labelWidth-j)/2):V.labelPosHorizontal=="right"&&V.setWidth(j+V.labelWidth)),V.labelHeight&&(V.labelPosVertical=="top"?(V.rect.y-=V.labelHeight,V.setHeight(ee+V.labelHeight),V.labelMarginTop=V.labelHeight):V.labelPosVertical=="center"&&V.labelHeight>ee?(V.rect.y-=(V.labelHeight-ee)/2,V.setHeight(V.labelHeight),V.labelMarginTop=(V.labelHeight-ee)/2):V.labelPosVertical=="bottom"&&V.setHeight(ee+V.labelHeight))}})},Z.prototype.repopulateCompounds=function(){for(var Y=this.compoundOrder.length-1;Y>=0;Y--){var W=this.compoundOrder[Y],Q=W.id,V=W.paddingLeft,j=W.paddingTop,ee=W.labelMarginLeft,te=W.labelMarginTop;this.adjustLocations(this.tiledMemberPack[Q],W.rect.x,W.rect.y,V,j,ee,te)}},Z.prototype.repopulateZeroDegreeMembers=function(){var Y=this,W=this.tiledZeroDegreePack;Object.keys(W).forEach(function(Q){var V=Y.idToDummyNode[Q],j=V.paddingLeft,ee=V.paddingTop,te=V.labelMarginLeft,ne=V.labelMarginTop;Y.adjustLocations(W[Q],V.rect.x,V.rect.y,j,ee,te,ne)})},Z.prototype.getToBeTiled=function(Y){var W=Y.id;if(this.toBeTiled[W]!=null)return this.toBeTiled[W];var Q=Y.getChild();if(Q==null)return this.toBeTiled[W]=!1,!1;for(var V=Q.getNodes(),j=0;j0)return this.toBeTiled[W]=!1,!1;if(ee.getChild()==null){this.toBeTiled[ee.id]=!1;continue}if(!this.getToBeTiled(ee))return this.toBeTiled[W]=!1,!1}return this.toBeTiled[W]=!0,!0},Z.prototype.getNodeDegree=function(Y){Y.id;for(var W=Y.getEdges(),Q=0,V=0;Vge&&(ge=be.rect.height)}Q+=ge+Y.verticalPadding}},Z.prototype.tileCompoundMembers=function(Y,W){var Q=this;this.tiledMemberPack=[],Object.keys(Y).forEach(function(V){var j=W[V];if(Q.tiledMemberPack[V]=Q.tileNodes(Y[V],j.paddingLeft+j.paddingRight),j.rect.width=Q.tiledMemberPack[V].width,j.rect.height=Q.tiledMemberPack[V].height,j.setCenter(Q.tiledMemberPack[V].centerX,Q.tiledMemberPack[V].centerY),j.labelMarginLeft=0,j.labelMarginTop=0,C.NODE_DIMENSIONS_INCLUDE_LABELS){var ee=j.rect.width,te=j.rect.height;j.labelWidth&&(j.labelPosHorizontal=="left"?(j.rect.x-=j.labelWidth,j.setWidth(ee+j.labelWidth),j.labelMarginLeft=j.labelWidth):j.labelPosHorizontal=="center"&&j.labelWidth>ee?(j.rect.x-=(j.labelWidth-ee)/2,j.setWidth(j.labelWidth),j.labelMarginLeft=(j.labelWidth-ee)/2):j.labelPosHorizontal=="right"&&j.setWidth(ee+j.labelWidth)),j.labelHeight&&(j.labelPosVertical=="top"?(j.rect.y-=j.labelHeight,j.setHeight(te+j.labelHeight),j.labelMarginTop=j.labelHeight):j.labelPosVertical=="center"&&j.labelHeight>te?(j.rect.y-=(j.labelHeight-te)/2,j.setHeight(j.labelHeight),j.labelMarginTop=(j.labelHeight-te)/2):j.labelPosVertical=="bottom"&&j.setHeight(te+j.labelHeight))}})},Z.prototype.tileNodes=function(Y,W){var Q=this.tileNodesByFavoringDim(Y,W,!0),V=this.tileNodesByFavoringDim(Y,W,!1),j=this.getOrgRatio(Q),ee=this.getOrgRatio(V),te;return eene&&(ne=De.getWidth())});var se=ee/j,ie=te/j,ge=Math.pow(Q-V,2)+4*(se+V)*(ie+Q)*j,ce=(V-Q+Math.sqrt(ge))/(2*(se+V)),be;W?(be=Math.ceil(ce),be==ce&&be++):be=Math.floor(ce);var ve=be*(se+V)-V;return ne>ve&&(ve=ne),ve+=V*2,ve},Z.prototype.tileNodesByFavoringDim=function(Y,W,Q){var V=C.TILING_PADDING_VERTICAL,j=C.TILING_PADDING_HORIZONTAL,ee=C.TILING_COMPARE_BY,te={rows:[],rowWidth:[],rowHeight:[],width:0,height:W,verticalPadding:V,horizontalPadding:j,centerX:0,centerY:0};ee&&(te.idealRowWidth=this.calcIdealRowWidth(Y,Q));var ne=function(ye){return ye.rect.width*ye.rect.height},se=function(ye,Ee){return ne(Ee)-ne(ye)};Y.sort(function(De,ye){var Ee=se;return te.idealRowWidth?(Ee=ee,Ee(De.id,ye.id)):Ee(De,ye)});for(var ie=0,ge=0,ce=0;ce0&&(te+=Y.horizontalPadding),Y.rowWidth[Q]=te,Y.width0&&(ne+=Y.verticalPadding);var se=0;ne>Y.rowHeight[Q]&&(se=Y.rowHeight[Q],Y.rowHeight[Q]=ne,se=Y.rowHeight[Q]-se),Y.height+=se,Y.rows[Q].push(W)},Z.prototype.getShortestRowIndex=function(Y){for(var W=-1,Q=Number.MAX_VALUE,V=0;VQ&&(W=V,Q=Y.rowWidth[V]);return W},Z.prototype.canAddHorizontal=function(Y,W,Q){if(Y.idealRowWidth){var V=Y.rows.length-1,j=Y.rowWidth[V];return j+W+Y.horizontalPadding<=Y.idealRowWidth}var ee=this.getShortestRowIndex(Y);if(ee<0)return!0;var te=Y.rowWidth[ee];if(te+Y.horizontalPadding+W<=Y.width)return!0;var ne=0;Y.rowHeight[ee]0&&(ne=Q+Y.verticalPadding-Y.rowHeight[ee]);var se;Y.width-te>=W+Y.horizontalPadding?se=(Y.height+ne)/(te+W+Y.horizontalPadding):se=(Y.height+ne)/Y.width,ne=Q+Y.verticalPadding;var ie;return Y.widthee&&W!=Q){V.splice(-1,1),Y.rows[Q].push(j),Y.rowWidth[W]=Y.rowWidth[W]-ee,Y.rowWidth[Q]=Y.rowWidth[Q]+ee,Y.width=Y.rowWidth[instance.getLongestRowIndex(Y)];for(var te=Number.MIN_VALUE,ne=0;nete&&(te=V[ne].height);W>0&&(te+=Y.verticalPadding);var se=Y.rowHeight[W]+Y.rowHeight[Q];Y.rowHeight[W]=te,Y.rowHeight[Q]0)for(var ve=j;ve<=ee;ve++)be[0]+=this.grid[ve][te-1].length+this.grid[ve][te].length-1;if(ee0)for(var ve=te;ve<=ne;ve++)be[3]+=this.grid[j-1][ve].length+this.grid[j][ve].length-1;for(var De=F.MAX_VALUE,ye,Ee,he=0;he{var m=p(551).FDLayoutNode,b=p(551).IMath;function _(S,C,A,k){m.call(this,S,C,A,k)}_.prototype=Object.create(m.prototype);for(var w in m)_[w]=m[w];_.prototype.calculateDisplacement=function(){var S=this.graphManager.getLayout();this.getChild()!=null&&this.fixedNodeWeight?(this.displacementX+=S.coolingFactor*(this.springForceX+this.repulsionForceX+this.gravitationForceX)/this.fixedNodeWeight,this.displacementY+=S.coolingFactor*(this.springForceY+this.repulsionForceY+this.gravitationForceY)/this.fixedNodeWeight):(this.displacementX+=S.coolingFactor*(this.springForceX+this.repulsionForceX+this.gravitationForceX)/this.noOfChildren,this.displacementY+=S.coolingFactor*(this.springForceY+this.repulsionForceY+this.gravitationForceY)/this.noOfChildren),Math.abs(this.displacementX)>S.coolingFactor*S.maxNodeDisplacement&&(this.displacementX=S.coolingFactor*S.maxNodeDisplacement*b.sign(this.displacementX)),Math.abs(this.displacementY)>S.coolingFactor*S.maxNodeDisplacement&&(this.displacementY=S.coolingFactor*S.maxNodeDisplacement*b.sign(this.displacementY)),this.child&&this.child.getNodes().length>0&&this.propogateDisplacementToChildren(this.displacementX,this.displacementY)},_.prototype.propogateDisplacementToChildren=function(S,C){for(var A=this.getChild().getNodes(),k,I=0;I{function m(A){if(Array.isArray(A)){for(var k=0,I=Array(A.length);k0){var Ar=0;Cn.forEach(function(On){Qe=="horizontal"?(Jt.set(On,N.has(On)?L[N.get(On)]:mt.get(On)),Ar+=Jt.get(On)):(Jt.set(On,N.has(On)?P[N.get(On)]:mt.get(On)),Ar+=Jt.get(On))}),Ar=Ar/Cn.length,vn.forEach(function(On){Ke.has(On)||Jt.set(On,Ar)})}else{var ur=0;vn.forEach(function(On){Qe=="horizontal"?ur+=N.has(On)?L[N.get(On)]:mt.get(On):ur+=N.has(On)?P[N.get(On)]:mt.get(On)}),ur=ur/vn.length,vn.forEach(function(On){Jt.set(On,ur)})}});for(var Wn=function(){var Cn=Vn.shift(),Ar=fe.get(Cn);Ar.forEach(function(ur){if(Jt.get(ur.id)On&&(On=ds),taIr&&(Ir=ta)}}catch(St){pr=!0,Cr=St}finally{try{!Ln&&Zr.return&&Zr.return()}finally{if(pr)throw Cr}}var Os=(Ar+On)/2-(ur+Ir)/2,uo=!0,Ls=!1,La=void 0;try{for(var to=vn[Symbol.iterator](),Fi;!(uo=(Fi=to.next()).done);uo=!0){var Pt=Fi.value;Jt.set(Pt,Jt.get(Pt)+Os)}}catch(St){Ls=!0,La=St}finally{try{!uo&&to.return&&to.return()}finally{if(Ls)throw La}}})}return Jt},z=function(fe){var Qe=0,Ke=0,mt=0,lt=0;if(fe.forEach(function(wn){wn.left?L[N.get(wn.left)]-L[N.get(wn.right)]>=0?Qe++:Ke++:P[N.get(wn.top)]-P[N.get(wn.bottom)]>=0?mt++:lt++}),Qe>Ke&&mt>lt)for(var $t=0;$tKe)for(var Ut=0;Utlt)for(var Jt=0;Jt1)k.fixedNodeConstraint.forEach(function(Xe,fe){V[fe]=[Xe.position.x,Xe.position.y],j[fe]=[L[N.get(Xe.nodeId)],P[N.get(Xe.nodeId)]]}),ee=!0;else if(k.alignmentConstraint)(function(){var Xe=0;if(k.alignmentConstraint.vertical){for(var fe=k.alignmentConstraint.vertical,Qe=function(Jt){var wn=new Set;fe[Jt].forEach(function(Dn){wn.add(Dn)});var Vn=new Set([].concat(m(wn)).filter(function(Dn){return ne.has(Dn)})),Wn=void 0;Vn.size>0?Wn=L[N.get(Vn.values().next().value)]:Wn=B(wn).x,fe[Jt].forEach(function(Dn){V[Xe]=[Wn,P[N.get(Dn)]],j[Xe]=[L[N.get(Dn)],P[N.get(Dn)]],Xe++})},Ke=0;Ke0?Wn=L[N.get(Vn.values().next().value)]:Wn=B(wn).y,mt[Jt].forEach(function(Dn){V[Xe]=[L[N.get(Dn)],Wn],j[Xe]=[L[N.get(Dn)],P[N.get(Dn)]],Xe++})},$t=0;$tce&&(ce=ge[ve].length,be=ve);if(ce0){var Ft={x:0,y:0};k.fixedNodeConstraint.forEach(function(Xe,fe){var Qe={x:L[N.get(Xe.nodeId)],y:P[N.get(Xe.nodeId)]},Ke=Xe.position,mt=G(Ke,Qe);Ft.x+=mt.x,Ft.y+=mt.y}),Ft.x/=k.fixedNodeConstraint.length,Ft.y/=k.fixedNodeConstraint.length,L.forEach(function(Xe,fe){L[fe]+=Ft.x}),P.forEach(function(Xe,fe){P[fe]+=Ft.y}),k.fixedNodeConstraint.forEach(function(Xe){L[N.get(Xe.nodeId)]=Xe.position.x,P[N.get(Xe.nodeId)]=Xe.position.y})}if(k.alignmentConstraint){if(k.alignmentConstraint.vertical)for(var Je=k.alignmentConstraint.vertical,ht=function(fe){var Qe=new Set;Je[fe].forEach(function(lt){Qe.add(lt)});var Ke=new Set([].concat(m(Qe)).filter(function(lt){return ne.has(lt)})),mt=void 0;Ke.size>0?mt=L[N.get(Ke.values().next().value)]:mt=B(Qe).x,Qe.forEach(function(lt){ne.has(lt)||(L[N.get(lt)]=mt)})},et=0;et0?mt=P[N.get(Ke.values().next().value)]:mt=B(Qe).y,Qe.forEach(function(lt){ne.has(lt)||(P[N.get(lt)]=mt)})},Ge=0;Ge{h.exports=r}},s={};function o(h){var f=s[h];if(f!==void 0)return f.exports;var p=s[h]={exports:{}};return a[h](p,p.exports,o),p.exports}var u=o(45);return u})()})}(aat)),aat.exports}(function(e,t){(function(a,s){e.exports=s(dea())})(ml,function(r){return(()=>{var a={658:h=>{h.exports=Object.assign!=null?Object.assign.bind(Object):function(f){for(var p=arguments.length,m=Array(p>1?p-1:0),b=1;b{var m=function(){function w(S,C){var A=[],k=!0,I=!1,N=void 0;try{for(var L=S[Symbol.iterator](),P;!(k=(P=L.next()).done)&&(A.push(P.value),!(C&&A.length===C));k=!0);}catch(M){I=!0,N=M}finally{try{!k&&L.return&&L.return()}finally{if(I)throw N}}return A}return function(S,C){if(Array.isArray(S))return S;if(Symbol.iterator in Object(S))return w(S,C);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),b=p(140).layoutBase.LinkedList,_={};_.getTopMostNodes=function(w){for(var S={},C=0;C0&&ee.merge(ie)});for(var te=0;te1){P=N[0],M=P.connectedEdges().length,N.forEach(function(j){j.connectedEdges().length0&&A.set("dummy"+(A.size+1),$),G},_.relocateComponent=function(w,S,C){if(!C.fixedNodeConstraint){var A=Number.POSITIVE_INFINITY,k=Number.NEGATIVE_INFINITY,I=Number.POSITIVE_INFINITY,N=Number.NEGATIVE_INFINITY;if(C.quality=="draft"){var L=!0,P=!1,M=void 0;try{for(var F=S.nodeIndexes[Symbol.iterator](),U;!(L=(U=F.next()).done);L=!0){var $=U.value,G=m($,2),B=G[0],Z=G[1],z=C.cy.getElementById(B);if(z){var Y=z.boundingBox(),W=S.xCoords[Z]-Y.w/2,Q=S.xCoords[Z]+Y.w/2,V=S.yCoords[Z]-Y.h/2,j=S.yCoords[Z]+Y.h/2;Wk&&(k=Q),VN&&(N=j)}}}catch(ie){P=!0,M=ie}finally{try{!L&&F.return&&F.return()}finally{if(P)throw M}}var ee=w.x-(k+A)/2,te=w.y-(N+I)/2;S.xCoords=S.xCoords.map(function(ie){return ie+ee}),S.yCoords=S.yCoords.map(function(ie){return ie+te})}else{Object.keys(S).forEach(function(ie){var ge=S[ie],ce=ge.getRect().x,be=ge.getRect().x+ge.getRect().width,ve=ge.getRect().y,De=ge.getRect().y+ge.getRect().height;cek&&(k=be),veN&&(N=De)});var ne=w.x-(k+A)/2,se=w.y-(N+I)/2;Object.keys(S).forEach(function(ie){var ge=S[ie];ge.setCenter(ge.getCenterX()+ne,ge.getCenterY()+se)})}}},_.calcBoundingBox=function(w,S,C,A){for(var k=Number.MAX_SAFE_INTEGER,I=Number.MIN_SAFE_INTEGER,N=Number.MAX_SAFE_INTEGER,L=Number.MIN_SAFE_INTEGER,P=void 0,M=void 0,F=void 0,U=void 0,$=w.descendants().not(":parent"),G=$.length,B=0;BP&&(k=P),IF&&(N=F),L{var m=p(548),b=p(140).CoSELayout,_=p(140).CoSENode,w=p(140).layoutBase.PointD,S=p(140).layoutBase.DimensionD,C=p(140).layoutBase.LayoutConstants,A=p(140).layoutBase.FDLayoutConstants,k=p(140).CoSEConstants,I=function(L,P){var M=L.cy,F=L.eles,U=F.nodes(),$=F.edges(),G=void 0,B=void 0,Z=void 0,z={};L.randomize&&(G=P.nodeIndexes,B=P.xCoords,Z=P.yCoords);var Y=function(ie){return typeof ie=="function"},W=function(ie,ge){return Y(ie)?ie(ge):ie},Q=m.calcParentsWithoutChildren(M,F),V=function se(ie,ge,ce,be){for(var ve=ge.length,De=0;De0){var Ie=void 0;Ie=ce.getGraphManager().add(ce.newGraph(),he),se(Ie,Ee,ce,be)}}},j=function(ie,ge,ce){for(var be=0,ve=0,De=0;De0?k.DEFAULT_EDGE_LENGTH=A.DEFAULT_EDGE_LENGTH=be/ve:Y(L.idealEdgeLength)?k.DEFAULT_EDGE_LENGTH=A.DEFAULT_EDGE_LENGTH=50:k.DEFAULT_EDGE_LENGTH=A.DEFAULT_EDGE_LENGTH=L.idealEdgeLength,k.MIN_REPULSION_DIST=A.MIN_REPULSION_DIST=A.DEFAULT_EDGE_LENGTH/10,k.DEFAULT_RADIAL_SEPARATION=A.DEFAULT_EDGE_LENGTH)},ee=function(ie,ge){ge.fixedNodeConstraint&&(ie.constraints.fixedNodeConstraint=ge.fixedNodeConstraint),ge.alignmentConstraint&&(ie.constraints.alignmentConstraint=ge.alignmentConstraint),ge.relativePlacementConstraint&&(ie.constraints.relativePlacementConstraint=ge.relativePlacementConstraint)};L.nestingFactor!=null&&(k.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=A.PER_LEVEL_IDEAL_EDGE_LENGTH_FACTOR=L.nestingFactor),L.gravity!=null&&(k.DEFAULT_GRAVITY_STRENGTH=A.DEFAULT_GRAVITY_STRENGTH=L.gravity),L.numIter!=null&&(k.MAX_ITERATIONS=A.MAX_ITERATIONS=L.numIter),L.gravityRange!=null&&(k.DEFAULT_GRAVITY_RANGE_FACTOR=A.DEFAULT_GRAVITY_RANGE_FACTOR=L.gravityRange),L.gravityCompound!=null&&(k.DEFAULT_COMPOUND_GRAVITY_STRENGTH=A.DEFAULT_COMPOUND_GRAVITY_STRENGTH=L.gravityCompound),L.gravityRangeCompound!=null&&(k.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=A.DEFAULT_COMPOUND_GRAVITY_RANGE_FACTOR=L.gravityRangeCompound),L.initialEnergyOnIncremental!=null&&(k.DEFAULT_COOLING_FACTOR_INCREMENTAL=A.DEFAULT_COOLING_FACTOR_INCREMENTAL=L.initialEnergyOnIncremental),L.tilingCompareBy!=null&&(k.TILING_COMPARE_BY=L.tilingCompareBy),L.quality=="proof"?C.QUALITY=2:C.QUALITY=0,k.NODE_DIMENSIONS_INCLUDE_LABELS=A.NODE_DIMENSIONS_INCLUDE_LABELS=C.NODE_DIMENSIONS_INCLUDE_LABELS=L.nodeDimensionsIncludeLabels,k.DEFAULT_INCREMENTAL=A.DEFAULT_INCREMENTAL=C.DEFAULT_INCREMENTAL=!L.randomize,k.ANIMATE=A.ANIMATE=C.ANIMATE=L.animate,k.TILE=L.tile,k.TILING_PADDING_VERTICAL=typeof L.tilingPaddingVertical=="function"?L.tilingPaddingVertical.call():L.tilingPaddingVertical,k.TILING_PADDING_HORIZONTAL=typeof L.tilingPaddingHorizontal=="function"?L.tilingPaddingHorizontal.call():L.tilingPaddingHorizontal,k.DEFAULT_INCREMENTAL=A.DEFAULT_INCREMENTAL=C.DEFAULT_INCREMENTAL=!0,k.PURE_INCREMENTAL=!L.randomize,C.DEFAULT_UNIFORM_LEAF_NODE_SIZES=L.uniformNodeDimensions,L.step=="transformed"&&(k.TRANSFORM_ON_CONSTRAINT_HANDLING=!0,k.ENFORCE_CONSTRAINTS=!1,k.APPLY_LAYOUT=!1),L.step=="enforced"&&(k.TRANSFORM_ON_CONSTRAINT_HANDLING=!1,k.ENFORCE_CONSTRAINTS=!0,k.APPLY_LAYOUT=!1),L.step=="cose"&&(k.TRANSFORM_ON_CONSTRAINT_HANDLING=!1,k.ENFORCE_CONSTRAINTS=!1,k.APPLY_LAYOUT=!0),L.step=="all"&&(L.randomize?k.TRANSFORM_ON_CONSTRAINT_HANDLING=!0:k.TRANSFORM_ON_CONSTRAINT_HANDLING=!1,k.ENFORCE_CONSTRAINTS=!0,k.APPLY_LAYOUT=!0),L.fixedNodeConstraint||L.alignmentConstraint||L.relativePlacementConstraint?k.TREE_REDUCTION_ON_INCREMENTAL=!1:k.TREE_REDUCTION_ON_INCREMENTAL=!0;var te=new b,ne=te.newGraphManager();return V(ne.addRoot(),m.getTopMostNodes(U),te,L),j(te,ne,$),ee(te,L),te.runLayout(),z};h.exports={coseLayout:I}},212:(h,f,p)=>{var m=function(){function L(P,M){for(var F=0;F0)if(Q){var ee=w.getTopMostNodes(F.eles.nodes());if(Z=w.connectComponents(U,F.eles,ee),Z.forEach(function(Ve){var Oe=Ve.boundingBox();z.push({x:Oe.x1+Oe.w/2,y:Oe.y1+Oe.h/2})}),F.randomize&&Z.forEach(function(Ve){F.eles=Ve,G.push(C(F))}),F.quality=="default"||F.quality=="proof"){var te=U.collection();if(F.tile){var ne=new Map,se=[],ie=[],ge=0,ce={nodeIndexes:ne,xCoords:se,yCoords:ie},be=[];if(Z.forEach(function(Ve,Oe){Ve.edges().length==0&&(Ve.nodes().forEach(function(Dt,ot){te.merge(Ve.nodes()[ot]),Dt.isParent()||(ce.nodeIndexes.set(Ve.nodes()[ot].id(),ge++),ce.xCoords.push(Ve.nodes()[0].position().x),ce.yCoords.push(Ve.nodes()[0].position().y))}),be.push(Oe))}),te.length>1){var ve=te.boundingBox();z.push({x:ve.x1+ve.w/2,y:ve.y1+ve.h/2}),Z.push(te),G.push(ce);for(var De=be.length-1;De>=0;De--)Z.splice(be[De],1),G.splice(be[De],1),z.splice(be[De],1)}}Z.forEach(function(Ve,Oe){F.eles=Ve,B.push(k(F,G[Oe])),w.relocateComponent(z[Oe],B[Oe],F)})}else Z.forEach(function(Ve,Oe){w.relocateComponent(z[Oe],G[Oe],F)});var ye=new Set;if(Z.length>1){var Ee=[],he=$.filter(function(Ve){return Ve.css("display")=="none"});Z.forEach(function(Ve,Oe){var Dt=void 0;if(F.quality=="draft"&&(Dt=G[Oe].nodeIndexes),Ve.nodes().not(he).length>0){var ot={};ot.edges=[],ot.nodes=[];var sn=void 0;Ve.nodes().not(he).forEach(function(Kt){if(F.quality=="draft")if(!Kt.isParent())sn=Dt.get(Kt.id()),ot.nodes.push({x:G[Oe].xCoords[sn]-Kt.boundingbox().w/2,y:G[Oe].yCoords[sn]-Kt.boundingbox().h/2,width:Kt.boundingbox().w,height:Kt.boundingbox().h});else{var Ft=w.calcBoundingBox(Kt,G[Oe].xCoords,G[Oe].yCoords,Dt);ot.nodes.push({x:Ft.topLeftX,y:Ft.topLeftY,width:Ft.width,height:Ft.height})}else B[Oe][Kt.id()]&&ot.nodes.push({x:B[Oe][Kt.id()].getLeft(),y:B[Oe][Kt.id()].getTop(),width:B[Oe][Kt.id()].getWidth(),height:B[Oe][Kt.id()].getHeight()})}),Ve.edges().forEach(function(Kt){var Ft=Kt.source(),Je=Kt.target();if(Ft.css("display")!="none"&&Je.css("display")!="none")if(F.quality=="draft"){var ht=Dt.get(Ft.id()),et=Dt.get(Je.id()),qe=[],He=[];if(Ft.isParent()){var Ge=w.calcBoundingBox(Ft,G[Oe].xCoords,G[Oe].yCoords,Dt);qe.push(Ge.topLeftX+Ge.width/2),qe.push(Ge.topLeftY+Ge.height/2)}else qe.push(G[Oe].xCoords[ht]),qe.push(G[Oe].yCoords[ht]);if(Je.isParent()){var Ye=w.calcBoundingBox(Je,G[Oe].xCoords,G[Oe].yCoords,Dt);He.push(Ye.topLeftX+Ye.width/2),He.push(Ye.topLeftY+Ye.height/2)}else He.push(G[Oe].xCoords[et]),He.push(G[Oe].yCoords[et]);ot.edges.push({startX:qe[0],startY:qe[1],endX:He[0],endY:He[1]})}else B[Oe][Ft.id()]&&B[Oe][Je.id()]&&ot.edges.push({startX:B[Oe][Ft.id()].getCenterX(),startY:B[Oe][Ft.id()].getCenterY(),endX:B[Oe][Je.id()].getCenterX(),endY:B[Oe][Je.id()].getCenterY()})}),ot.nodes.length>0&&(Ee.push(ot),ye.add(Oe))}});var we=W.packComponents(Ee,F.randomize).shifts;if(F.quality=="draft")G.forEach(function(Ve,Oe){var Dt=Ve.xCoords.map(function(sn){return sn+we[Oe].dx}),ot=Ve.yCoords.map(function(sn){return sn+we[Oe].dy});Ve.xCoords=Dt,Ve.yCoords=ot});else{var Ce=0;ye.forEach(function(Ve){Object.keys(B[Ve]).forEach(function(Oe){var Dt=B[Ve][Oe];Dt.setCenter(Dt.getCenterX()+we[Ce].dx,Dt.getCenterY()+we[Ce].dy)}),Ce++})}}}else{var V=F.eles.boundingBox();if(z.push({x:V.x1+V.w/2,y:V.y1+V.h/2}),F.randomize){var j=C(F);G.push(j)}F.quality=="default"||F.quality=="proof"?(B.push(k(F,G[0])),w.relocateComponent(z[0],B[0],F)):w.relocateComponent(z[0],G[0],F)}var Ie=function(Oe,Dt){if(F.quality=="default"||F.quality=="proof"){typeof Oe=="number"&&(Oe=Dt);var ot=void 0,sn=void 0,Kt=Oe.data("id");return B.forEach(function(Je){Kt in Je&&(ot={x:Je[Kt].getRect().getCenterX(),y:Je[Kt].getRect().getCenterY()},sn=Je[Kt])}),F.nodeDimensionsIncludeLabels&&(sn.labelWidth&&(sn.labelPosHorizontal=="left"?ot.x+=sn.labelWidth/2:sn.labelPosHorizontal=="right"&&(ot.x-=sn.labelWidth/2)),sn.labelHeight&&(sn.labelPosVertical=="top"?ot.y+=sn.labelHeight/2:sn.labelPosVertical=="bottom"&&(ot.y-=sn.labelHeight/2))),ot==null&&(ot={x:Oe.position("x"),y:Oe.position("y")}),{x:ot.x,y:ot.y}}else{var Ft=void 0;return G.forEach(function(Je){var ht=Je.nodeIndexes.get(Oe.id());ht!=null&&(Ft={x:Je.xCoords[ht],y:Je.yCoords[ht]})}),Ft==null&&(Ft={x:Oe.position("x"),y:Oe.position("y")}),{x:Ft.x,y:Ft.y}}};if(F.quality=="default"||F.quality=="proof"||F.randomize){var Le=w.calcParentsWithoutChildren(U,$),Fe=$.filter(function(Ve){return Ve.css("display")=="none"});F.eles=$.not(Fe),$.nodes().not(":parent").not(Fe).layoutPositions(M,F,Ie),Le.length>0&&Le.forEach(function(Ve){Ve.position(Ie(Ve))})}else console.log("If randomize option is set to false, then quality option must be 'default' or 'proof'.")}}]),L}();h.exports=N},657:(h,f,p)=>{var m=p(548),b=p(140).layoutBase.Matrix,_=p(140).layoutBase.SVD,w=function(C){var A=C.cy,k=C.eles,I=k.nodes(),N=k.nodes(":parent"),L=new Map,P=new Map,M=new Map,F=[],U=[],$=[],G=[],B=[],Z=[],z=[],Y=[],W=void 0,Q=1e8,V=1e-9,j=C.piTol,ee=C.samplingType,te=C.nodeSeparation,ne=void 0,se=function(){for(var fe=0,Qe=0,Ke=!1;Qe=lt;){Ut=mt[lt++];for(var zn=F[Ut],vn=0;vnVn&&(Vn=B[Ar],Wn=Ar)}return Wn},ge=function(fe){var Qe=void 0;if(fe){Qe=Math.floor(Math.random()*W);for(var mt=0;mt=1)break;wn=Jt}for(var Dn=0;Dn=1)break;wn=Jt}for(var vn=0;vn0&&(Qe.isParent()?F[fe].push(M.get(Qe.id())):F[fe].push(Qe.id()))})});var Fe=function(fe){var Qe=P.get(fe),Ke=void 0;L.get(fe).forEach(function(mt){A.getElementById(mt).isParent()?Ke=M.get(mt):Ke=mt,F[Qe].push(Ke),F[P.get(Ke)].push(fe)})},Ve=!0,Oe=!1,Dt=void 0;try{for(var ot=L.keys()[Symbol.iterator](),sn;!(Ve=(sn=ot.next()).done);Ve=!0){var Kt=sn.value;Fe(Kt)}}catch(Xe){Oe=!0,Dt=Xe}finally{try{!Ve&&ot.return&&ot.return()}finally{if(Oe)throw Dt}}W=P.size;var Ft=void 0;if(W>2){ne=W{var m=p(212),b=function(w){w&&w("layout","fcose",m)};typeof cytoscape<"u"&&b(cytoscape),h.exports=b},140:h=>{h.exports=r}},s={};function o(h){var f=s[h];if(f!==void 0)return f.exports;var p=s[h]={exports:{}};return a[h](p,p.exports,o),p.exports}var u=o(579);return u})()})})(gQn);var fea=gQn.exports;const pea=O1(fea);var VTn={L:"left",R:"right",T:"top",B:"bottom"},YTn={L:X(e=>`${e},${e/2} 0,${e} 0,0`,"L"),R:X(e=>`0,${e/2} ${e},0 ${e},${e}`,"R"),T:X(e=>`0,0 ${e},0 ${e/2},${e}`,"T"),B:X(e=>`${e/2},0 ${e},${e} 0,${e}`,"B")},gEe={L:X((e,t)=>e-t+2,"L"),R:X((e,t)=>e-2,"R"),T:X((e,t)=>e-t+2,"T"),B:X((e,t)=>e-2,"B")},gea=X(function(e){return qy(e)?e==="L"?"R":"L":e==="T"?"B":"T"},"getOppositeArchitectureDirection"),jTn=X(function(e){const t=e;return t==="L"||t==="R"||t==="T"||t==="B"},"isArchitectureDirection"),qy=X(function(e){const t=e;return t==="L"||t==="R"},"isArchitectureDirectionX"),y9=X(function(e){const t=e;return t==="T"||t==="B"},"isArchitectureDirectionY"),fbt=X(function(e,t){const r=qy(e)&&y9(t),a=y9(e)&&qy(t);return r||a},"isArchitectureDirectionXY"),mea=X(function(e){const t=e[0],r=e[1],a=qy(t)&&y9(r),s=y9(t)&&qy(r);return a||s},"isArchitecturePairXY"),bea=X(function(e){return e!=="LL"&&e!=="RR"&&e!=="TT"&&e!=="BB"},"isValidArchitectureDirectionPair"),jut=X(function(e,t){const r=`${e}${t}`;return bea(r)?r:void 0},"getArchitectureDirectionPair"),yea=X(function([e,t],r){const a=r[0],s=r[1];return qy(a)?y9(s)?[e+(a==="L"?-1:1),t+(s==="T"?1:-1)]:[e+(a==="L"?-1:1),t]:qy(s)?[e+(s==="L"?1:-1),t+(a==="T"?1:-1)]:[e,t+(a==="T"?1:-1)]},"shiftPositionByArchitectureDirectionPair"),vea=X(function(e){return e==="LT"||e==="TL"?[1,1]:e==="BL"||e==="LB"?[1,-1]:e==="BR"||e==="RB"?[-1,-1]:[-1,1]},"getArchitectureDirectionXYFactors"),_ea=X(function(e,t){return fbt(e,t)?"bend":qy(e)?"horizontal":"vertical"},"getArchitectureDirectionAlignment"),wea=X(function(e){return e.type==="service"},"isArchitectureService"),Eea=X(function(e){return e.type==="junction"},"isArchitectureJunction"),mQn=X(e=>e.data(),"edgeData"),BV=X(e=>e.data(),"nodeData"),xea=Cc.architecture,uj,bQn=(uj=class{constructor(){this.nodes={},this.groups={},this.edges=[],this.registeredIds={},this.elements={},this.setAccTitle=N1,this.getAccTitle=Mp,this.setDiagramTitle=Og,this.getDiagramTitle=P1,this.getAccDescription=Bp,this.setAccDescription=Pp,this.clear()}clear(){this.nodes={},this.groups={},this.edges=[],this.registeredIds={},this.dataStructures=void 0,this.elements={},M1()}addService({id:t,icon:r,in:a,title:s,iconText:o}){if(this.registeredIds[t]!==void 0)throw new Error(`The service id [${t}] is already in use by another ${this.registeredIds[t]}`);if(a!==void 0){if(t===a)throw new Error(`The service [${t}] cannot be placed within itself`);if(this.registeredIds[a]===void 0)throw new Error(`The service [${t}]'s parent does not exist. Please make sure the parent is created before this service`);if(this.registeredIds[a]==="node")throw new Error(`The service [${t}]'s parent is not a group`)}this.registeredIds[t]="node",this.nodes[t]={id:t,type:"service",icon:r,iconText:o,title:s,edges:[],in:a}}getServices(){return Object.values(this.nodes).filter(wea)}addJunction({id:t,in:r}){this.registeredIds[t]="node",this.nodes[t]={id:t,type:"junction",edges:[],in:r}}getJunctions(){return Object.values(this.nodes).filter(Eea)}getNodes(){return Object.values(this.nodes)}getNode(t){return this.nodes[t]??null}addGroup({id:t,icon:r,in:a,title:s}){var o,u,h;if(((o=this.registeredIds)==null?void 0:o[t])!==void 0)throw new Error(`The group id [${t}] is already in use by another ${this.registeredIds[t]}`);if(a!==void 0){if(t===a)throw new Error(`The group [${t}] cannot be placed within itself`);if(((u=this.registeredIds)==null?void 0:u[a])===void 0)throw new Error(`The group [${t}]'s parent does not exist. Please make sure the parent is created before this group`);if(((h=this.registeredIds)==null?void 0:h[a])==="node")throw new Error(`The group [${t}]'s parent is not a group`)}this.registeredIds[t]="group",this.groups[t]={id:t,icon:r,title:s,in:a}}getGroups(){return Object.values(this.groups)}addEdge({lhsId:t,rhsId:r,lhsDir:a,rhsDir:s,lhsInto:o,rhsInto:u,lhsGroup:h,rhsGroup:f,title:p}){if(!jTn(a))throw new Error(`Invalid direction given for left hand side of edge ${t}--${r}. Expected (L,R,T,B) got ${String(a)}`);if(!jTn(s))throw new Error(`Invalid direction given for right hand side of edge ${t}--${r}. Expected (L,R,T,B) got ${String(s)}`);if(this.nodes[t]===void 0&&this.groups[t]===void 0)throw new Error(`The left-hand id [${t}] does not yet exist. Please create the service/group before declaring an edge to it.`);if(this.nodes[r]===void 0&&this.groups[r]===void 0)throw new Error(`The right-hand id [${r}] does not yet exist. Please create the service/group before declaring an edge to it.`);const m=this.nodes[t].in,b=this.nodes[r].in;if(h&&m&&b&&m==b)throw new Error(`The left-hand id [${t}] is modified to traverse the group boundary, but the edge does not pass through two groups.`);if(f&&m&&b&&m==b)throw new Error(`The right-hand id [${r}] is modified to traverse the group boundary, but the edge does not pass through two groups.`);const _={lhsId:t,lhsDir:a,lhsInto:o,lhsGroup:h,rhsId:r,rhsDir:s,rhsInto:u,rhsGroup:f,title:p};this.edges.push(_),this.nodes[t]&&this.nodes[r]&&(this.nodes[t].edges.push(this.edges[this.edges.length-1]),this.nodes[r].edges.push(this.edges[this.edges.length-1]))}getEdges(){return this.edges}getDataStructures(){if(this.dataStructures===void 0){const t={},r=Object.entries(this.nodes).reduce((f,[p,m])=>(f[p]=m.edges.reduce((b,_)=>{var C,A;const w=(C=this.getNode(_.lhsId))==null?void 0:C.in,S=(A=this.getNode(_.rhsId))==null?void 0:A.in;if(w&&S&&w!==S){const k=_ea(_.lhsDir,_.rhsDir);k!=="bend"&&(t[w]??(t[w]={}),t[w][S]=k,t[S]??(t[S]={}),t[S][w]=k)}if(_.lhsId===p){const k=jut(_.lhsDir,_.rhsDir);k&&(b[k]=_.rhsId)}else{const k=jut(_.rhsDir,_.lhsDir);k&&(b[k]=_.lhsId)}return b},{}),f),{}),a=Object.keys(r)[0],s={[a]:1},o=Object.keys(r).reduce((f,p)=>p===a?f:{...f,[p]:1},{}),u=X(f=>{const p={[f]:[0,0]},m=[f];for(;m.length>0;){const b=m.shift();if(b){s[b]=1,delete o[b];const _=r[b],[w,S]=p[b];Object.entries(_).forEach(([C,A])=>{s[A]||(p[A]=yea([w,S],C),m.push(A))})}}return p},"BFS"),h=[u(a)];for(;Object.keys(o).length>0;)h.push(u(Object.keys(o)[0]));this.dataStructures={adjList:r,spatialMaps:h,groupAlignments:t}}return this.dataStructures}setElementForId(t,r){this.elements[t]=r}getElementById(t){return this.elements[t]}getConfig(){return cv({...xea,...$c().architecture})}getConfigField(t){return this.getConfig()[t]}},X(uj,"ArchitectureDB"),uj),Sea=X((e,t)=>{z$(e,t),e.groups.map(r=>t.addGroup(r)),e.services.map(r=>t.addService({...r,type:"service"})),e.junctions.map(r=>t.addJunction({...r,type:"junction"})),e.edges.map(r=>t.addEdge(r))},"populateDb"),yQn={parser:{yy:void 0},parse:X(async e=>{var a;const t=await iL("architecture",e);it.debug(t);const r=(a=yQn.parser)==null?void 0:a.yy;if(!(r instanceof bQn))throw new Error("parser.parser?.yy was not a ArchitectureDB. This is due to a bug within Mermaid, please report this issue at https://github.com/mermaid-js/mermaid/issues.");Sea(t,r)},"parse")},Tea=X(e=>` + .edge { + stroke-width: ${e.archEdgeWidth}; + stroke: ${e.archEdgeColor}; + fill: none; + } + + .arrow { + fill: ${e.archEdgeArrowColor}; + } + + .node-bkg { + fill: none; + stroke: ${e.archGroupBorderColor}; + stroke-width: ${e.archGroupBorderWidth}; + stroke-dasharray: 8; + } + .node-icon-text { + display: flex; + align-items: center; + } + + .node-icon-text > div { + color: #fff; + margin: 1px; + height: fit-content; + text-align: center; + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + } +`,"getStyles"),Cea=Tea,nV=X(e=>`${e}`,"wrapIcon"),fle={prefix:"mermaid-architecture",height:80,width:80,icons:{database:{body:nV('')},server:{body:nV('')},disk:{body:nV('')},internet:{body:nV('')},cloud:{body:nV('')},unknown:mBn,blank:{body:nV("")}}},Aea=X(async function(e,t,r){const a=r.getConfigField("padding"),s=r.getConfigField("iconSize"),o=s/2,u=s/6,h=u/2;await Promise.all(t.edges().map(async f=>{var $,G;const{source:p,sourceDir:m,sourceArrow:b,sourceGroup:_,target:w,targetDir:S,targetArrow:C,targetGroup:A,label:k}=mQn(f);let{x:I,y:N}=f[0].sourceEndpoint();const{x:L,y:P}=f[0].midpoint();let{x:M,y:F}=f[0].targetEndpoint();const U=a+4;if(_&&(qy(m)?I+=m==="L"?-U:U:N+=m==="T"?-U:U+18),A&&(qy(S)?M+=S==="L"?-U:U:F+=S==="T"?-U:U+18),!_&&(($=r.getNode(p))==null?void 0:$.type)==="junction"&&(qy(m)?I+=m==="L"?o:-o:N+=m==="T"?o:-o),!A&&((G=r.getNode(w))==null?void 0:G.type)==="junction"&&(qy(S)?M+=S==="L"?o:-o:F+=S==="T"?o:-o),f[0]._private.rscratch){const B=e.insert("g");if(B.insert("path").attr("d",`M ${I},${N} L ${L},${P} L${M},${F} `).attr("class","edge").attr("id",XV(p,w,{prefix:"L"})),b){const Z=qy(m)?gEe[m](I,u):I-h,z=y9(m)?gEe[m](N,u):N-h;B.insert("polygon").attr("points",YTn[m](u)).attr("transform",`translate(${Z},${z})`).attr("class","arrow")}if(C){const Z=qy(S)?gEe[S](M,u):M-h,z=y9(S)?gEe[S](F,u):F-h;B.insert("polygon").attr("points",YTn[S](u)).attr("transform",`translate(${Z},${z})`).attr("class","arrow")}if(k){const Z=fbt(m,S)?"XY":qy(m)?"X":"Y";let z=0;Z==="X"?z=Math.abs(I-M):Z==="Y"?z=Math.abs(N-F)/1.5:z=Math.abs(I-M)/2;const Y=B.append("g");if(await Yw(Y,k,{useHtmlLabels:!1,width:z,classes:"architecture-service-label"},nn()),Y.attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle"),Z==="X")Y.attr("transform","translate("+L+", "+P+")");else if(Z==="Y")Y.attr("transform","translate("+L+", "+P+") rotate(-90)");else if(Z==="XY"){const W=jut(m,S);if(W&&mea(W)){const Q=Y.node().getBoundingClientRect(),[V,j]=vea(W);Y.attr("dominant-baseline","auto").attr("transform",`rotate(${-1*V*j*45})`);const ee=Y.node().getBoundingClientRect();Y.attr("transform",` + translate(${L}, ${P-Q.height/2}) + translate(${V*ee.width/2}, ${j*ee.height/2}) + rotate(${-1*V*j*45}, 0, ${Q.height/2}) + `)}}}}}))},"drawEdges"),kea=X(async function(e,t,r){const s=r.getConfigField("padding")*.75,o=r.getConfigField("fontSize"),h=r.getConfigField("iconSize")/2;await Promise.all(t.nodes().map(async f=>{const p=BV(f);if(p.type==="group"){const{h:m,w:b,x1:_,y1:w}=f.boundingBox(),S=e.append("rect");S.attr("id",`group-${p.id}`).attr("x",_+h).attr("y",w+h).attr("width",b).attr("height",m).attr("class","node-bkg");const C=e.append("g");let A=_,k=w;if(p.icon){const I=C.append("g");I.html(`${await QO(p.icon,{height:s,width:s,fallbackPrefix:fle.prefix})}`),I.attr("transform","translate("+(A+h+1)+", "+(k+h+1)+")"),A+=s,k+=o/2-1-2}if(p.label){const I=C.append("g");await Yw(I,p.label,{useHtmlLabels:!1,width:b,classes:"architecture-service-label"},nn()),I.attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","start").attr("text-anchor","start"),I.attr("transform","translate("+(A+h+4)+", "+(k+h+2)+")")}r.setElementForId(p.id,S)}}))},"drawGroups"),Rea=X(async function(e,t,r){const a=nn();for(const s of r){const o=t.append("g"),u=e.getConfigField("iconSize");if(s.title){const m=o.append("g");await Yw(m,s.title,{useHtmlLabels:!1,width:u*1.5,classes:"architecture-service-label"},a),m.attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle"),m.attr("transform","translate("+u/2+", "+u+")")}const h=o.append("g");if(s.icon)h.html(`${await QO(s.icon,{height:u,width:u,fallbackPrefix:fle.prefix})}`);else if(s.iconText){h.html(`${await QO("blank",{height:u,width:u,fallbackPrefix:fle.prefix})}`);const _=h.append("g").append("foreignObject").attr("width",u).attr("height",u).append("div").attr("class","node-icon-text").attr("style",`height: ${u}px;`).append("div").html(Ic(s.iconText,a)),w=parseInt(window.getComputedStyle(_.node(),null).getPropertyValue("font-size").replace(/\D/g,""))??16;_.attr("style",`-webkit-line-clamp: ${Math.floor((u-2)/w)};`)}else h.append("path").attr("class","node-bkg").attr("id","node-"+s.id).attr("d",`M0 ${u} v${-u} q0,-5 5,-5 h${u} q5,0 5,5 v${u} H0 Z`);o.attr("id",`service-${s.id}`).attr("class","architecture-service");const{width:f,height:p}=o.node().getBBox();s.width=f,s.height=p,e.setElementForId(s.id,o)}return 0},"drawServices"),Iea=X(function(e,t,r){r.forEach(a=>{const s=t.append("g"),o=e.getConfigField("iconSize");s.append("g").append("rect").attr("id","node-"+a.id).attr("fill-opacity","0").attr("width",o).attr("height",o),s.attr("class","architecture-junction");const{width:h,height:f}=s._groups[0][0].getBBox();s.width=h,s.height=f,e.setElementForId(a.id,s)})},"drawJunctions");yBn([{name:fle.prefix,icons:fle}]);CS.use(pea);function vQn(e,t,r){e.forEach(a=>{t.add({group:"nodes",data:{type:"service",id:a.id,icon:a.icon,label:a.title,parent:a.in,width:r.getConfigField("iconSize"),height:r.getConfigField("iconSize")},classes:"node-service"})})}X(vQn,"addServices");function _Qn(e,t,r){e.forEach(a=>{t.add({group:"nodes",data:{type:"junction",id:a.id,parent:a.in,width:r.getConfigField("iconSize"),height:r.getConfigField("iconSize")},classes:"node-junction"})})}X(_Qn,"addJunctions");function wQn(e,t){t.nodes().map(r=>{const a=BV(r);if(a.type==="group")return;a.x=r.position().x,a.y=r.position().y,e.getElementById(a.id).attr("transform","translate("+(a.x||0)+","+(a.y||0)+")")})}X(wQn,"positionNodes");function EQn(e,t){e.forEach(r=>{t.add({group:"nodes",data:{type:"group",id:r.id,icon:r.icon,label:r.title,parent:r.in},classes:"node-group"})})}X(EQn,"addGroups");function xQn(e,t){e.forEach(r=>{const{lhsId:a,rhsId:s,lhsInto:o,lhsGroup:u,rhsInto:h,lhsDir:f,rhsDir:p,rhsGroup:m,title:b}=r,_=fbt(r.lhsDir,r.rhsDir)?"segments":"straight",w={id:`${a}-${s}`,label:b,source:a,sourceDir:f,sourceArrow:o,sourceGroup:u,sourceEndpoint:f==="L"?"0 50%":f==="R"?"100% 50%":f==="T"?"50% 0":"50% 100%",target:s,targetDir:p,targetArrow:h,targetGroup:m,targetEndpoint:p==="L"?"0 50%":p==="R"?"100% 50%":p==="T"?"50% 0":"50% 100%"};t.add({group:"edges",data:w,classes:_})})}X(xQn,"addEdges");function SQn(e,t,r){const a=X((h,f)=>Object.entries(h).reduce((p,[m,b])=>{var S;let _=0;const w=Object.entries(b);if(w.length===1)return p[m]=w[0][1],p;for(let C=0;C{const f={},p={};return Object.entries(h).forEach(([m,[b,_]])=>{var S,C,A;const w=((S=e.getNode(m))==null?void 0:S.in)??"default";f[_]??(f[_]={}),(C=f[_])[w]??(C[w]=[]),f[_][w].push(m),p[b]??(p[b]={}),(A=p[b])[w]??(A[w]=[]),p[b][w].push(m)}),{horiz:Object.values(a(f,"horizontal")).filter(m=>m.length>1),vert:Object.values(a(p,"vertical")).filter(m=>m.length>1)}}),[o,u]=s.reduce(([h,f],{horiz:p,vert:m})=>[[...h,...p],[...f,...m]],[[],[]]);return{horizontal:o,vertical:u}}X(SQn,"getAlignments");function TQn(e,t){const r=[],a=X(o=>`${o[0]},${o[1]}`,"posToStr"),s=X(o=>o.split(",").map(u=>parseInt(u)),"strToPos");return e.forEach(o=>{const u=Object.fromEntries(Object.entries(o).map(([m,b])=>[a(b),m])),h=[a([0,0])],f={},p={L:[-1,0],R:[1,0],T:[0,1],B:[0,-1]};for(;h.length>0;){const m=h.shift();if(m){f[m]=1;const b=u[m];if(b){const _=s(m);Object.entries(p).forEach(([w,S])=>{const C=a([_[0]+S[0],_[1]+S[1]]),A=u[C];A&&!f[C]&&(h.push(C),r.push({[VTn[w]]:A,[VTn[gea(w)]]:b,gap:1.5*t.getConfigField("iconSize")}))})}}}}),r}X(TQn,"getRelativeConstraints");function CQn(e,t,r,a,s,{spatialMaps:o,groupAlignments:u}){return new Promise(h=>{const f=gn("body").append("div").attr("id","cy").attr("style","display:none"),p=CS({container:document.getElementById("cy"),style:[{selector:"edge",style:{"curve-style":"straight",label:"data(label)","source-endpoint":"data(sourceEndpoint)","target-endpoint":"data(targetEndpoint)"}},{selector:"edge.segments",style:{"curve-style":"segments","segment-weights":"0","segment-distances":[.5],"edge-distances":"endpoints","source-endpoint":"data(sourceEndpoint)","target-endpoint":"data(targetEndpoint)"}},{selector:"node",style:{"compound-sizing-wrt-labels":"include"}},{selector:"node[label]",style:{"text-valign":"bottom","text-halign":"center","font-size":`${s.getConfigField("fontSize")}px`}},{selector:".node-service",style:{label:"data(label)",width:"data(width)",height:"data(height)"}},{selector:".node-junction",style:{width:"data(width)",height:"data(height)"}},{selector:".node-group",style:{padding:`${s.getConfigField("padding")}px`}}],layout:{name:"grid",boundingBox:{x1:0,x2:100,y1:0,y2:100}}});f.remove(),EQn(r,p),vQn(e,p,s),_Qn(t,p,s),xQn(a,p);const m=SQn(s,o,u),b=TQn(o,s),_=p.layout({name:"fcose",quality:"proof",styleEnabled:!1,animate:!1,nodeDimensionsIncludeLabels:!1,idealEdgeLength(w){const[S,C]=w.connectedNodes(),{parent:A}=BV(S),{parent:k}=BV(C);return A===k?1.5*s.getConfigField("iconSize"):.5*s.getConfigField("iconSize")},edgeElasticity(w){const[S,C]=w.connectedNodes(),{parent:A}=BV(S),{parent:k}=BV(C);return A===k?.45:.001},alignmentConstraint:m,relativePlacementConstraint:b});_.one("layoutstop",()=>{var S;function w(C,A,k,I){let N,L;const{x:P,y:M}=C,{x:F,y:U}=A;L=(I-M+(P-k)*(M-U)/(P-F))/Math.sqrt(1+Math.pow((M-U)/(P-F),2)),N=Math.sqrt(Math.pow(I-M,2)+Math.pow(k-P,2)-Math.pow(L,2));const $=Math.sqrt(Math.pow(F-P,2)+Math.pow(U-M,2));N=N/$;let G=(F-P)*(I-M)-(U-M)*(k-P);switch(!0){case G>=0:G=1;break;case G<0:G=-1;break}let B=(F-P)*(k-P)+(U-M)*(I-M);switch(!0){case B>=0:B=1;break;case B<0:B=-1;break}return L=Math.abs(L)*G,N=N*B,{distances:L,weights:N}}X(w,"getSegmentWeights"),p.startBatch();for(const C of Object.values(p.edges()))if((S=C.data)!=null&&S.call(C)){const{x:A,y:k}=C.source().position(),{x:I,y:N}=C.target().position();if(A!==I&&k!==N){const L=C.sourceEndpoint(),P=C.targetEndpoint(),{sourceDir:M}=mQn(C),[F,U]=y9(M)?[L.x,P.y]:[P.x,L.y],{weights:$,distances:G}=w(L,P,F,U);C.style("segment-distances",G),C.style("segment-weights",$)}}p.endBatch(),_.run()}),_.run(),p.ready(w=>{it.info("Ready",w),h(p)})})}X(CQn,"layoutArchitecture");var Nea=X(async(e,t,r,a)=>{const s=a.db,o=s.getServices(),u=s.getJunctions(),h=s.getGroups(),f=s.getEdges(),p=s.getDataStructures(),m=bR(t),b=m.append("g");b.attr("class","architecture-edges");const _=m.append("g");_.attr("class","architecture-services");const w=m.append("g");w.attr("class","architecture-groups"),await Rea(s,_,o),Iea(s,_,u);const S=await CQn(o,u,h,f,s,p);await Aea(b,S,s),await kea(w,S,s),wQn(s,S),rce(void 0,m,s.getConfigField("padding"),s.getConfigField("useMaxWidth"))},"draw"),Oea={draw:Nea},Lea={parser:yQn,get db(){return new bQn},renderer:Oea,styles:Cea};const Dea=Object.freeze(Object.defineProperty({__proto__:null,diagram:Lea},Symbol.toStringTag,{value:"Module"}));var hj,AQn=(hj=class{constructor(){this.nodes=[],this.levels=new Map,this.outerNodes=[],this.classes=new Map,this.setAccTitle=N1,this.getAccTitle=Mp,this.setDiagramTitle=Og,this.getDiagramTitle=P1,this.getAccDescription=Bp,this.setAccDescription=Pp}getNodes(){return this.nodes}getConfig(){const t=Cc,r=$c();return cv({...t.treemap,...r.treemap??{}})}addNode(t,r){this.nodes.push(t),this.levels.set(t,r),r===0&&(this.outerNodes.push(t),this.root??(this.root=t))}getRoot(){return{name:"",children:this.outerNodes}}addClass(t,r){const a=this.classes.get(t)??{id:t,styles:[],textStyles:[]},s=r.replace(/\\,/g,"§§§").replace(/,/g,";").replace(/§§§/g,",").split(";");s&&s.forEach(o=>{R1t(o)&&(a!=null&&a.textStyles?a.textStyles.push(o):a.textStyles=[o]),a!=null&&a.styles?a.styles.push(o):a.styles=[o]}),this.classes.set(t,a)}getClasses(){return this.classes}getStylesForClass(t){var r;return((r=this.classes.get(t))==null?void 0:r.styles)??[]}clear(){M1(),this.nodes=[],this.levels=new Map,this.outerNodes=[],this.classes=new Map,this.root=void 0}},X(hj,"TreeMapDB"),hj);function kQn(e){if(!e.length)return[];const t=[],r=[];return e.forEach(a=>{const s={name:a.name,children:a.type==="Leaf"?void 0:[]};for(s.classSelector=a==null?void 0:a.classSelector,a!=null&&a.cssCompiledStyles&&(s.cssCompiledStyles=[a.cssCompiledStyles]),a.type==="Leaf"&&a.value!==void 0&&(s.value=a.value);r.length>0&&r[r.length-1].level>=a.level;)r.pop();if(r.length===0)t.push(s);else{const o=r[r.length-1].node;o.children?o.children.push(s):o.children=[s]}a.type!=="Leaf"&&r.push({node:s,level:a.level})}),t}X(kQn,"buildHierarchy");var Mea=X((e,t)=>{z$(e,t);const r=[];for(const o of e.TreemapRows??[])o.$type==="ClassDefStatement"&&t.addClass(o.className??"",o.styleText??"");for(const o of e.TreemapRows??[]){const u=o.item;if(!u)continue;const h=o.indent?parseInt(o.indent):0,f=Pea(u),p=u.classSelector?t.getStylesForClass(u.classSelector):[],m=p.length>0?p.join(";"):void 0,b={level:h,name:f,type:u.$type,value:u.value,classSelector:u.classSelector,cssCompiledStyles:m};r.push(b)}const a=kQn(r),s=X((o,u)=>{for(const h of o)t.addNode(h,u),h.children&&h.children.length>0&&s(h.children,u+1)},"addNodesRecursively");s(a,0)},"populate"),Pea=X(e=>e.name?String(e.name):"","getItemName"),RQn={parser:{yy:void 0},parse:X(async e=>{var t;try{const a=await iL("treemap",e);it.debug("Treemap AST:",a);const s=(t=RQn.parser)==null?void 0:t.yy;if(!(s instanceof AQn))throw new Error("parser.parser?.yy was not a TreemapDB. This is due to a bug within Mermaid, please report this issue at https://github.com/mermaid-js/mermaid/issues.");Mea(a,s)}catch(r){throw it.error("Error parsing treemap:",r),r}},"parse")},Bea=10,rV=10,die=25,Fea=X((e,t,r,a)=>{const s=a.db,o=s.getConfig(),u=o.padding??Bea,h=s.getDiagramTitle(),f=s.getRoot(),{themeVariables:p}=$c();if(!f)return;const m=h?30:0,b=bR(t),_=o.nodeWidth?o.nodeWidth*rV:960,w=o.nodeHeight?o.nodeHeight*rV:500,S=_,C=w+m;b.attr("viewBox",`0 0 ${S} ${C}`),yv(b,C,S,o.useMaxWidth);let A;try{const Y=o.valueFormat||",";if(Y==="$0,0")A=X(W=>"$"+PB(",")(W),"valueFormat");else if(Y.startsWith("$")&&Y.includes(",")){const W=/\.\d+/.exec(Y),Q=W?W[0]:"";A=X(V=>"$"+PB(","+Q)(V),"valueFormat")}else if(Y.startsWith("$")){const W=Y.substring(1);A=X(Q=>"$"+PB(W||"")(Q),"valueFormat")}else A=PB(Y)}catch(Y){it.error("Error creating format function:",Y),A=PB(",")}const k=cA().range(["transparent",p.cScale0,p.cScale1,p.cScale2,p.cScale3,p.cScale4,p.cScale5,p.cScale6,p.cScale7,p.cScale8,p.cScale9,p.cScale10,p.cScale11]),I=cA().range(["transparent",p.cScalePeer0,p.cScalePeer1,p.cScalePeer2,p.cScalePeer3,p.cScalePeer4,p.cScalePeer5,p.cScalePeer6,p.cScalePeer7,p.cScalePeer8,p.cScalePeer9,p.cScalePeer10,p.cScalePeer11]),N=cA().range([p.cScaleLabel0,p.cScaleLabel1,p.cScaleLabel2,p.cScaleLabel3,p.cScaleLabel4,p.cScaleLabel5,p.cScaleLabel6,p.cScaleLabel7,p.cScaleLabel8,p.cScaleLabel9,p.cScaleLabel10,p.cScaleLabel11]);h&&b.append("text").attr("x",S/2).attr("y",m/2).attr("class","treemapTitle").attr("text-anchor","middle").attr("dominant-baseline","middle").text(h);const L=b.append("g").attr("transform",`translate(0, ${m})`).attr("class","treemapContainer"),P=e1t(f).sum(Y=>Y.value??0).sort((Y,W)=>(W.value??0)-(Y.value??0)),F=Bci().size([_,w]).paddingTop(Y=>Y.children&&Y.children.length>0?die+rV:0).paddingInner(u).paddingLeft(Y=>Y.children&&Y.children.length>0?rV:0).paddingRight(Y=>Y.children&&Y.children.length>0?rV:0).paddingBottom(Y=>Y.children&&Y.children.length>0?rV:0).round(!0)(P),U=F.descendants().filter(Y=>Y.children&&Y.children.length>0),$=L.selectAll(".treemapSection").data(U).enter().append("g").attr("class","treemapSection").attr("transform",Y=>`translate(${Y.x0},${Y.y0})`);$.append("rect").attr("width",Y=>Y.x1-Y.x0).attr("height",die).attr("class","treemapSectionHeader").attr("fill","none").attr("fill-opacity",.6).attr("stroke-width",.6).attr("style",Y=>Y.depth===0?"display: none;":""),$.append("clipPath").attr("id",(Y,W)=>`clip-section-${t}-${W}`).append("rect").attr("width",Y=>Math.max(0,Y.x1-Y.x0-12)).attr("height",die),$.append("rect").attr("width",Y=>Y.x1-Y.x0).attr("height",Y=>Y.y1-Y.y0).attr("class",(Y,W)=>`treemapSection section${W}`).attr("fill",Y=>k(Y.data.name)).attr("fill-opacity",.6).attr("stroke",Y=>I(Y.data.name)).attr("stroke-width",2).attr("stroke-opacity",.4).attr("style",Y=>{if(Y.depth===0)return"display: none;";const W=Ia({cssCompiledStyles:Y.data.cssCompiledStyles});return W.nodeStyles+";"+W.borderStyles.join(";")}),$.append("text").attr("class","treemapSectionLabel").attr("x",6).attr("y",die/2).attr("dominant-baseline","middle").text(Y=>Y.depth===0?"":Y.data.name).attr("font-weight","bold").attr("style",Y=>{if(Y.depth===0)return"display: none;";const W="dominant-baseline: middle; font-size: 12px; fill:"+N(Y.data.name)+"; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;",Q=Ia({cssCompiledStyles:Y.data.cssCompiledStyles});return W+Q.labelStyles.replace("color:","fill:")}).each(function(Y){if(Y.depth===0)return;const W=gn(this),Q=Y.data.name;W.text(Q);const V=Y.x1-Y.x0,j=6;let ee;o.showValues!==!1&&Y.value?ee=V-10-30-10-j:ee=V-j-6;const ne=Math.max(15,ee),se=W.node();if(se.getComputedTextLength()>ne){const ge="...";let ce=Q;for(;ce.length>0;){if(ce=Q.substring(0,ce.length-1),ce.length===0){W.text(ge),se.getComputedTextLength()>ne&&W.text("");break}if(W.text(ce+ge),se.getComputedTextLength()<=ne)break}}}),o.showValues!==!1&&$.append("text").attr("class","treemapSectionValue").attr("x",Y=>Y.x1-Y.x0-10).attr("y",die/2).attr("text-anchor","end").attr("dominant-baseline","middle").text(Y=>Y.value?A(Y.value):"").attr("font-style","italic").attr("style",Y=>{if(Y.depth===0)return"display: none;";const W="text-anchor: end; dominant-baseline: middle; font-size: 10px; fill:"+N(Y.data.name)+"; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;",Q=Ia({cssCompiledStyles:Y.data.cssCompiledStyles});return W+Q.labelStyles.replace("color:","fill:")});const G=F.leaves(),B=L.selectAll(".treemapLeafGroup").data(G).enter().append("g").attr("class",(Y,W)=>`treemapNode treemapLeafGroup leaf${W}${Y.data.classSelector?` ${Y.data.classSelector}`:""}x`).attr("transform",Y=>`translate(${Y.x0},${Y.y0})`);B.append("rect").attr("width",Y=>Y.x1-Y.x0).attr("height",Y=>Y.y1-Y.y0).attr("class","treemapLeaf").attr("fill",Y=>Y.parent?k(Y.parent.data.name):k(Y.data.name)).attr("style",Y=>Ia({cssCompiledStyles:Y.data.cssCompiledStyles}).nodeStyles).attr("fill-opacity",.3).attr("stroke",Y=>Y.parent?k(Y.parent.data.name):k(Y.data.name)).attr("stroke-width",3),B.append("clipPath").attr("id",(Y,W)=>`clip-${t}-${W}`).append("rect").attr("width",Y=>Math.max(0,Y.x1-Y.x0-4)).attr("height",Y=>Math.max(0,Y.y1-Y.y0-4)),B.append("text").attr("class","treemapLabel").attr("x",Y=>(Y.x1-Y.x0)/2).attr("y",Y=>(Y.y1-Y.y0)/2).attr("style",Y=>{const W="text-anchor: middle; dominant-baseline: middle; font-size: 38px;fill:"+N(Y.data.name)+";",Q=Ia({cssCompiledStyles:Y.data.cssCompiledStyles});return W+Q.labelStyles.replace("color:","fill:")}).attr("clip-path",(Y,W)=>`url(#clip-${t}-${W})`).text(Y=>Y.data.name).each(function(Y){const W=gn(this),Q=Y.x1-Y.x0,V=Y.y1-Y.y0,j=W.node(),ee=4,te=Q-2*ee,ne=V-2*ee;if(te<10||ne<10){W.style("display","none");return}let se=parseInt(W.style("font-size"),10);const ie=8,ge=28,ce=.6,be=6,ve=2;for(;j.getComputedTextLength()>te&&se>ie;)se--,W.style("font-size",`${se}px`);let De=Math.max(be,Math.min(ge,Math.round(se*ce))),ye=se+ve+De;for(;ye>ne&&se>ie&&(se--,De=Math.max(be,Math.min(ge,Math.round(se*ce))),!(Dete||se(W.x1-W.x0)/2).attr("y",function(W){return(W.y1-W.y0)/2}).attr("style",W=>{const Q="text-anchor: middle; dominant-baseline: hanging; font-size: 28px;fill:"+N(W.data.name)+";",V=Ia({cssCompiledStyles:W.data.cssCompiledStyles});return Q+V.labelStyles.replace("color:","fill:")}).attr("clip-path",(W,Q)=>`url(#clip-${t}-${Q})`).text(W=>W.value?A(W.value):"").each(function(W){const Q=gn(this),V=this.parentNode;if(!V){Q.style("display","none");return}const j=gn(V).select(".treemapLabel");if(j.empty()||j.style("display")==="none"){Q.style("display","none");return}const ee=parseFloat(j.style("font-size")),te=28,ne=.6,se=6,ie=2,ge=Math.max(se,Math.min(te,Math.round(ee*ne)));Q.style("font-size",`${ge}px`);const be=(W.y1-W.y0)/2+ee/2+ie;Q.attr("y",be);const ve=W.x1-W.x0,Ee=W.y1-W.y0-4,he=ve-2*4;Q.node().getComputedTextLength()>he||be+ge>Ee||ge{const t=cv(zea,e);return` + .treemapNode.section { + stroke: ${t.sectionStrokeColor}; + stroke-width: ${t.sectionStrokeWidth}; + fill: ${t.sectionFillColor}; + } + .treemapNode.leaf { + stroke: ${t.leafStrokeColor}; + stroke-width: ${t.leafStrokeWidth}; + fill: ${t.leafFillColor}; + } + .treemapLabel { + fill: ${t.labelColor}; + font-size: ${t.labelFontSize}; + } + .treemapValue { + fill: ${t.valueColor}; + font-size: ${t.valueFontSize}; + } + .treemapTitle { + fill: ${t.titleColor}; + font-size: ${t.titleFontSize}; + } + `},"getStyles"),qea=Gea,Hea={parser:RQn,get db(){return new AQn},renderer:Uea,styles:qea};const Vea=Object.freeze(Object.defineProperty({__proto__:null,diagram:Hea},Symbol.toStringTag,{value:"Module"})),Yea=async e=>{const t=await e.getFile();return t.handle=e,t};var jea=async(e=[{}])=>{Array.isArray(e)||(e=[e]);const t=[];e.forEach((s,o)=>{t[o]={description:s.description||"",accept:{}},s.mimeTypes?s.mimeTypes.map(u=>{t[o].accept[u]=s.extensions||[]}):t[o].accept["*/*"]=s.extensions||[]});const r=await window.showOpenFilePicker({id:e[0].id,startIn:e[0].startIn,types:t,multiple:e[0].multiple||!1,excludeAcceptAllOption:e[0].excludeAcceptAllOption||!1}),a=await Promise.all(r.map(Yea));return e[0].multiple?a:a[0]};const Wea=Object.freeze(Object.defineProperty({__proto__:null,default:jea},Symbol.toStringTag,{value:"Module"}));var Kea=async(e=[{}])=>(Array.isArray(e)||(e=[e]),new Promise((t,r)=>{const a=document.createElement("input");a.type="file";const s=[...e.map(h=>h.mimeTypes||[]),...e.map(h=>h.extensions||[])].join();a.multiple=e[0].multiple||!1,a.accept=s||"";const o=h=>{typeof u=="function"&&u(),t(h)},u=e[0].legacySetup&&e[0].legacySetup(o,()=>u(r),a);a.addEventListener("change",()=>{o(a.multiple?Array.from(a.files):a.files[0])}),a.click()}));const Xea=Object.freeze(Object.defineProperty({__proto__:null,default:Kea},Symbol.toStringTag,{value:"Module"}));function eSe(e){function t(r){if(Object(r)!==r)return Promise.reject(new TypeError(r+" is not an object."));var a=r.done;return Promise.resolve(r.value).then(function(s){return{value:s,done:a}})}return eSe=function(r){this.s=r,this.n=r.next},eSe.prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(r){var a=this.s.return;return a===void 0?Promise.resolve({value:r,done:!0}):t(a.apply(this.s,arguments))},throw:function(r){var a=this.s.return;return a===void 0?Promise.reject(r):t(a.apply(this.s,arguments))}},new eSe(e)}const IQn=async(e,t,r=e.name,a)=>{const s=[],o=[];var u,h=!1,f=!1;try{for(var p,m=function(b){var _,w,S,C=2;for(typeof Symbol<"u"&&(w=Symbol.asyncIterator,S=Symbol.iterator);C--;){if(w&&(_=b[w])!=null)return _.call(b);if(S&&(_=b[S])!=null)return new eSe(_.call(b));w="@@asyncIterator",S="@@iterator"}throw new TypeError("Object is not async iterable")}(e.values());h=!(p=await m.next()).done;h=!1){const b=p.value,_=`${r}/${b.name}`;b.kind==="file"?o.push(b.getFile().then(w=>(w.directoryHandle=e,w.handle=b,Object.defineProperty(w,"webkitRelativePath",{configurable:!0,enumerable:!0,get:()=>_})))):b.kind!=="directory"||!t||a&&a(b)||s.push(IQn(b,t,_,a))}}catch(b){f=!0,u=b}finally{try{h&&m.return!=null&&await m.return()}finally{if(f)throw u}}return[...(await Promise.all(s)).flat(),...await Promise.all(o)]};var Qea=async(e={})=>{e.recursive=e.recursive||!1;const t=await window.showDirectoryPicker({id:e.id,startIn:e.startIn});return IQn(t,e.recursive,void 0,e.skipDirectory)};const Zea=Object.freeze(Object.defineProperty({__proto__:null,default:Qea},Symbol.toStringTag,{value:"Module"}));var Jea=async(e=[{}])=>(Array.isArray(e)||(e=[e]),e[0].recursive=e[0].recursive||!1,new Promise((t,r)=>{const a=document.createElement("input");a.type="file",a.webkitdirectory=!0;const s=u=>{typeof o=="function"&&o(),t(u)},o=e[0].legacySetup&&e[0].legacySetup(s,()=>o(r),a);a.addEventListener("change",()=>{let u=Array.from(a.files);e[0].recursive?e[0].recursive&&e[0].skipDirectory&&(u=u.filter(h=>h.webkitRelativePath.split("/").every(f=>!e[0].skipDirectory({name:f,kind:"directory"})))):u=u.filter(h=>h.webkitRelativePath.split("/").length===2),s(u)}),a.click()}));const eta=Object.freeze(Object.defineProperty({__proto__:null,default:Jea},Symbol.toStringTag,{value:"Module"}));var tta=async(e,t=[{}],r=null,a=!1,s=null)=>{Array.isArray(t)||(t=[t]),t[0].fileName=t[0].fileName||"Untitled";const o=[];let u=null;if(e instanceof Blob&&e.type?u=e.type:e.headers&&e.headers.get("content-type")&&(u=e.headers.get("content-type")),t.forEach((p,m)=>{o[m]={description:p.description||"",accept:{}},p.mimeTypes?(m===0&&u&&p.mimeTypes.push(u),p.mimeTypes.map(b=>{o[m].accept[b]=p.extensions||[]})):u&&(o[m].accept[u]=p.extensions||[])}),r)try{await r.getFile()}catch(p){if(r=null,a)throw p}const h=r||await window.showSaveFilePicker({suggestedName:t[0].fileName,id:t[0].id,startIn:t[0].startIn,types:o,excludeAcceptAllOption:t[0].excludeAcceptAllOption||!1});!r&&s&&s();const f=await h.createWritable();return"stream"in e?(await e.stream().pipeTo(f),h):"body"in e?(await e.body.pipeTo(f),h):(await f.write(await e),await f.close(),h)};const nta=Object.freeze(Object.defineProperty({__proto__:null,default:tta},Symbol.toStringTag,{value:"Module"}));var rta=async(e,t={})=>{Array.isArray(t)&&(t=t[0]);const r=document.createElement("a");let a=e;"body"in e&&(a=await async function(u,h){const f=u.getReader(),p=new ReadableStream({start:_=>async function w(){return f.read().then(({done:S,value:C})=>{if(!S)return _.enqueue(C),w();_.close()})}()}),m=new Response(p),b=await m.blob();return f.releaseLock(),new Blob([b],{type:h})}(e.body,e.headers.get("content-type"))),r.download=t.fileName||"Untitled",r.href=URL.createObjectURL(await a);const s=()=>{typeof o=="function"&&o()},o=t.legacySetup&&t.legacySetup(s,()=>o(reject),r);return r.addEventListener("click",()=>{setTimeout(()=>URL.revokeObjectURL(r.href),3e4),s()}),r.click(),null};const ita=Object.freeze(Object.defineProperty({__proto__:null,default:rta},Symbol.toStringTag,{value:"Module"}));var NQn={exports:{}};/*! + +pica +https://github.com/nodeca/pica + +*/(function(e,t){(function(r){e.exports=r()})(function(){return function(){function r(a,s,o){function u(p,m){if(!s[p]){if(!a[p]){var b=typeof sO=="function"&&sO;if(!m&&b)return b(p,!0);if(h)return h(p,!0);var _=new Error("Cannot find module '"+p+"'");throw _.code="MODULE_NOT_FOUND",_}var w=s[p]={exports:{}};a[p][0].call(w.exports,function(S){var C=a[p][1][S];return u(C||S)},w,w.exports,r,a,s,o)}return s[p].exports}for(var h=typeof sO=="function"&&sO,f=0;f=0,wasm:b.indexOf("wasm")>=0};u.call(this,_),this.features={js:_.js,wasm:_.wasm&&this.has_wasm()},this.use(h),this.use(f)}o(p,u),p.prototype.resizeAndUnsharp=function(b,_){var w=this.resize(b,_);return b.unsharpAmount&&this.unsharp_mask(w,b.toWidth,b.toHeight,b.unsharpAmount,b.unsharpRadius,b.unsharpThreshold),w},a.exports=p},{"./mm_resize":4,"./mm_unsharp_mask":9,inherits:19,multimath:20}],2:[function(r,a,s){function o(f){return f<0?0:f>255?255:f}function u(f,p,m,b,_,w){var S,C,A,k,I,N,L,P,M,F,U,$=0,G=0;for(M=0;M0;L--)U=w[I++],k=k+U*f[P+3]|0,A=A+U*f[P+2]|0,C=C+U*f[P+1]|0,S=S+U*f[P]|0,P=P+4|0;p[G+3]=o(k+8192>>14),p[G+2]=o(A+8192>>14),p[G+1]=o(C+8192>>14),p[G]=o(S+8192>>14),G=G+b*4|0}G=(M+1)*4|0,$=(M+1)*m*4|0}}function h(f,p,m,b,_,w){var S,C,A,k,I,N,L,P,M,F,U,$=0,G=0;for(M=0;M0;L--)U=w[I++],k=k+U*f[P+3]|0,A=A+U*f[P+2]|0,C=C+U*f[P+1]|0,S=S+U*f[P]|0,P=P+4|0;p[G+3]=o(k+8192>>14),p[G+2]=o(A+8192>>14),p[G+1]=o(C+8192>>14),p[G]=o(S+8192>>14),G=G+b*4|0}G=(M+1)*4|0,$=(M+1)*m*4|0}}a.exports={convolveHorizontally:u,convolveVertically:h}},{}],3:[function(r,a,s){a.exports="AGFzbQEAAAAADAZkeWxpbmsAAAAAAAEXA2AAAGAGf39/f39/AGAHf39/f39/fwACDwEDZW52Bm1lbW9yeQIAAAMEAwABAgYGAX8AQQALB1cFEV9fd2FzbV9jYWxsX2N0b3JzAAAIY29udm9sdmUAAQpjb252b2x2ZUhWAAIMX19kc29faGFuZGxlAwAYX193YXNtX2FwcGx5X2RhdGFfcmVsb2NzAAAK7AMDAwABC8YDAQ9/AkAgA0UNACAERQ0AA0AgDCENQQAhE0EAIQcDQCAHQQJqIQYCfyAHQQF0IAVqIgcuAQIiFEUEQEGAwAAhCEGAwAAhCUGAwAAhCkGAwAAhCyAGDAELIBIgBy4BAGohCEEAIQsgFCEHQQAhDiAGIQlBACEPQQAhEANAIAUgCUEBdGouAQAiESAAIAhBAnRqKAIAIgpBGHZsIBBqIRAgCkH/AXEgEWwgC2ohCyAKQRB2Qf8BcSARbCAPaiEPIApBCHZB/wFxIBFsIA5qIQ4gCEEBaiEIIAlBAWohCSAHQQFrIgcNAAsgC0GAQGshCCAOQYBAayEJIA9BgEBrIQogEEGAQGshCyAGIBRqCyEHIAEgDUECdGogCUEOdSIGQf8BIAZB/wFIGyIGQQAgBkEAShtBCHRBgP4DcSAKQQ51IgZB/wEgBkH/AUgbIgZBACAGQQBKG0EQdEGAgPwHcSALQQ51IgZB/wEgBkH/AUgbIgZBACAGQQBKG0EYdHJyIAhBDnUiBkH/ASAGQf8BSBsiBkEAIAZBAEobcjYCACADIA1qIQ0gE0EBaiITIARHDQALIAxBAWoiDCACbCESIAMgDEcNAAsLCx4AQQAgAiADIAQgBSAAEAEgAkEAIAQgBSAGIAEQAQs="},{}],4:[function(r,a,s){a.exports={name:"resize",fn:r("./resize"),wasm_fn:r("./resize_wasm"),wasm_src:r("./convolve_wasm_base64")}},{"./convolve_wasm_base64":3,"./resize":5,"./resize_wasm":8}],5:[function(r,a,s){var o=r("./resize_filter_gen"),u=r("./convolve").convolveHorizontally,h=r("./convolve").convolveVertically;function f(p,m,b){for(var _=3,w=m*b*4|0;_"u"?3:m.quality,M=m.alpha||!1,F=o(P,_,S,A,I),U=o(P,w,C,k,N),$=new Uint8Array(S*w*4);return u(b,$,_,w,S,F),h($,L,w,S,C,U),M||f(L,S,C),L}},{"./convolve":2,"./resize_filter_gen":6}],6:[function(r,a,s){var o=r("./resize_filter_info"),u=14;function h(f){return Math.round(f*((1<>1]+=h(1-z),W=0;W0&&U[Q]===0;)Q--;if(V=L+W,j=Q-W+1,te[ne++]=V,te[ne++]=j,!se)te.set(U.subarray(W,Q+1),ne),ne+=j;else for(B=W;B<=Q;B++)te[ne++]=U[B]}else te[ne++]=0,te[ne++]=0}return te}},{"./resize_filter_info":7}],7:[function(r,a,s){a.exports=[{win:.5,filter:function(u){return u>=-.5&&u<.5?1:0}},{win:1,filter:function(u){if(u<=-1||u>=1)return 0;if(u>-11920929e-14&&u<11920929e-14)return 1;var h=u*Math.PI;return Math.sin(h)/h*(.54+.46*Math.cos(h/1))}},{win:2,filter:function(u){if(u<=-2||u>=2)return 0;if(u>-11920929e-14&&u<11920929e-14)return 1;var h=u*Math.PI;return Math.sin(h)/h*Math.sin(h/2)/(h/2)}},{win:3,filter:function(u){if(u<=-3||u>=3)return 0;if(u>-11920929e-14&&u<11920929e-14)return 1;var h=u*Math.PI;return Math.sin(h)/h*Math.sin(h/3)/(h/3)}}]},{}],8:[function(r,a,s){var o=r("./resize_filter_gen");function u(m,b,_){for(var w=3,S=b*_*4|0;w>8&255}}a.exports=function(b){var _=b.src,w=b.width,S=b.height,C=b.toWidth,A=b.toHeight,k=b.scaleX||b.toWidth/b.width,I=b.scaleY||b.toHeight/b.height,N=b.offsetX||0,L=b.offsetY||0,P=b.dest||new Uint8Array(C*A*4),M=typeof b.quality>"u"?3:b.quality,F=b.alpha||!1,U=o(M,w,C,k,N),$=o(M,S,A,I,L),G=0,B=this.__align(G+Math.max(_.byteLength,P.byteLength)),Z=this.__align(B+S*C*4),z=this.__align(Z+U.byteLength),Y=z+$.byteLength,W=this.__instance("resize",Y),Q=new Uint8Array(this.__memory.buffer),V=new Uint32Array(this.__memory.buffer),j=new Uint32Array(_.buffer);V.set(j),p(U,Q,Z),p($,Q,z);var ee=W.exports.convolveHV||W.exports._convolveHV;ee(Z,z,B,w,S,C,A);var te=new Uint32Array(P.buffer);return te.set(new Uint32Array(this.__memory.buffer,0,A*C)),F||u(P,C,A),P}},{"./resize_filter_gen":6}],9:[function(r,a,s){a.exports={name:"unsharp_mask",fn:r("./unsharp_mask"),wasm_fn:r("./unsharp_mask_wasm"),wasm_src:r("./unsharp_mask_wasm_base64")}},{"./unsharp_mask":10,"./unsharp_mask_wasm":11,"./unsharp_mask_wasm_base64":12}],10:[function(r,a,s){var o=r("glur/mono16");function u(h,f,p){for(var m=f*p,b=new Uint16Array(m),_,w,S,C,A=0;A=w&&_>=S?_:w>=S&&w>=_?w:S,b[A]=C<<8;return b}a.exports=function(f,p,m,b,_,w){var S,C,A,k,I;if(!(b===0||_<.5)){_>2&&(_=2);var N=u(f,p,m),L=new Uint16Array(N);o(L,p,m,_);for(var P=b/100*4096+.5|0,M=w<<8,F=p*m,U=0;U=M&&(C=S+(P*k+2048>>12),C=C>65280?65280:C,C=C<0?0:C,S=S!==0?S:1,A=(C<<12)/S|0,I=U*4,f[I]=f[I]*A+2048>>12,f[I+1]=f[I+1]*A+2048>>12,f[I+2]=f[I+2]*A+2048>>12)}}},{"glur/mono16":18}],11:[function(r,a,s){a.exports=function(u,h,f,p,m,b){if(!(p===0||m<.5)){m>2&&(m=2);var _=h*f,w=_*4,S=_*2,C=_*2,A=Math.max(h,f)*4,k=8*4,I=0,N=w,L=N+S,P=L+C,M=P+C,F=M+A,U=this.__instance("unsharp_mask",w+S+C*2+A+k,{exp:Math.exp}),$=new Uint32Array(u.buffer),G=new Uint32Array(this.__memory.buffer);G.set($);var B=U.exports.hsv_v16||U.exports._hsv_v16;B(I,N,h,f),B=U.exports.blurMono16||U.exports._blurMono16,B(N,L,P,M,F,h,f,m),B=U.exports.unsharp||U.exports._unsharp,B(I,I,N,L,h,f,p,b),$.set(new Uint32Array(this.__memory.buffer,0,_))}}},{}],12:[function(r,a,s){a.exports="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"},{}],13:[function(r,a,s){var o=100;function u(h,f){this.create=h,this.available=[],this.acquired={},this.lastId=1,this.timeoutId=0,this.idle=f||2e3}u.prototype.acquire=function(){var h=this,f;return this.available.length!==0?f=this.available.pop():(f=this.create(),f.id=this.lastId++,f.release=function(){return h.release(f)}),this.acquired[f.id]=f,f},u.prototype.release=function(h){var f=this;delete this.acquired[h.id],h.lastUsed=Date.now(),this.available.push(h),this.timeoutId===0&&(this.timeoutId=setTimeout(function(){return f.gc()},o))},u.prototype.gc=function(){var h=this,f=Date.now();this.available=this.available.filter(function(p){return f-p.lastUsed>h.idle?(p.destroy(),!1):!0}),this.available.length!==0?this.timeoutId=setTimeout(function(){return h.gc()},o):this.timeoutId=0},a.exports=u},{}],14:[function(r,a,s){var o=2;a.exports=function(h,f,p,m,b,_){var w=p/h,S=m/f,C=(2*_+o+1)/b;if(C>.5)return[[p,m]];var A=Math.ceil(Math.log(Math.min(w,S))/Math.log(C));if(A<=1)return[[p,m]];for(var k=[],I=0;I=p.toWidth&&(I=p.toWidth-S),C=k-p.destTileBorder,C<0&&(C=0),N=k+w+p.destTileBorder-C,C+N>=p.toHeight&&(N=p.toHeight-C),P={toX:S,toY:C,toWidth:I,toHeight:N,toInnerX:A,toInnerY:k,toInnerWidth:_,toInnerHeight:w,offsetX:S/m-u(S/m),offsetY:C/b-u(C/b),scaleX:m,scaleY:b,x:u(S/m),y:u(C/b),width:h(I/m),height:h(N/b)},L.push(P);return L}},{}],16:[function(r,a,s){function o(u){return Object.prototype.toString.call(u)}a.exports.isCanvas=function(h){var f=o(h);return f==="[object HTMLCanvasElement]"||f==="[object OffscreenCanvas]"||f==="[object Canvas]"},a.exports.isImage=function(h){return o(h)==="[object HTMLImageElement]"},a.exports.isImageBitmap=function(h){return o(h)==="[object ImageBitmap]"},a.exports.limiter=function(h){var f=0,p=[];function m(){f"u")return!1;var f=h(100,100);return createImageBitmap(f,0,0,100,100,{resizeWidth:10,resizeHeight:10,resizeQuality:"high"}).then(function(p){var m=p.width===10;return p.close(),f=null,m})}).catch(function(){return!1})},a.exports.worker_offscreen_canvas_support=function(){return new Promise(function(h,f){if(typeof OffscreenCanvas>"u"){h(!1);return}function p(_){if(typeof createImageBitmap>"u"){_.postMessage(!1);return}Promise.resolve().then(function(){var w=new OffscreenCanvas(10,10),S=w.getContext("2d");return S.rect(0,0,1,1),createImageBitmap(w,0,0,1,1)}).then(function(){return _.postMessage(!0)},function(){return _.postMessage(!1)})}var m=btoa("(".concat(p.toString(),")(self);")),b=new Worker("data:text/javascript;base64,".concat(m));b.onmessage=function(_){return h(_.data)},b.onerror=f}).then(function(h){return h},function(){return!1})},a.exports.can_use_canvas=function(h){var f=!1;try{var p=h(2,1),m=p.getContext("2d"),b=m.createImageData(2,1);b.data[0]=12,b.data[1]=23,b.data[2]=34,b.data[3]=255,b.data[4]=45,b.data[5]=56,b.data[6]=67,b.data[7]=255,m.putImageData(b,0,0),b=null,b=m.getImageData(0,0,2,1),b.data[0]===12&&b.data[1]===23&&b.data[2]===34&&b.data[3]===255&&b.data[4]===45&&b.data[5]===56&&b.data[6]===67&&b.data[7]===255&&(f=!0)}catch{}return f},a.exports.cib_can_use_region=function(){return new Promise(function(h){if(typeof createImageBitmap>"u"){h(!1);return}var f=new Image;f.src="data:image/jpeg;base64,/9j/4QBiRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAYAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAAITAAMAAAABAAEAAAAAAAAAAABIAAAAAQAAAEgAAAAB/9sAQwAEAwMEAwMEBAMEBQQEBQYKBwYGBgYNCQoICg8NEBAPDQ8OERMYFBESFxIODxUcFRcZGRsbGxAUHR8dGh8YGhsa/9sAQwEEBQUGBQYMBwcMGhEPERoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoa/8IAEQgAAQACAwERAAIRAQMRAf/EABQAAQAAAAAAAAAAAAAAAAAAAAf/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIQAxAAAAF/P//EABQQAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQEAAQUCf//EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQMBAT8Bf//EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQIBAT8Bf//EABQQAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQEABj8Cf//EABQQAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQEAAT8hf//aAAwDAQACAAMAAAAQH//EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQMBAT8Qf//EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQIBAT8Qf//EABQQAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQEAAT8Qf//Z",f.onload=function(){createImageBitmap(f,0,0,f.width,f.height).then(function(p){p.width===f.width&&p.height===f.height?h(!0):h(!1)},function(){return h(!1)})},f.onerror=function(){return h(!1)}})}},{}],17:[function(r,a,s){a.exports=function(){var o=r("./mathlib"),u;onmessage=function(f){var p=f.data.opts;if(!p.src&&p.srcBitmap){var m=new OffscreenCanvas(p.width,p.height),b=m.getContext("2d",{alpha:!!p.alpha});b.drawImage(p.srcBitmap,0,0),p.src=b.getImageData(0,0,p.width,p.height).data,m.width=m.height=0,m=null,p.srcBitmap.close(),p.srcBitmap=null}u||(u=new o(f.data.features));var _=u.resizeAndUnsharp(p);postMessage({data:_},[_.buffer])}}},{"./mathlib":1}],18:[function(r,a,s){var o,u,h,f,p,m,b,_;function w(A){A<.5&&(A=.5);var k=Math.exp(.726*.726)/A,I=Math.exp(-k),N=Math.exp(-2*k),L=(1-I)*(1-I)/(1+2*k*I-N);return o=L,u=L*(k-1)*I,h=L*(k+1)*I,f=-L*N,p=2*I,m=-N,b=(o+u)/(1-p-m),_=(h+f)/(1-p-m),new Float32Array([o,u,h,f,p,m,b,_])}function S(A,k,I,N,L,P){var M,F,U,$,G,B,Z,z,Y,W,Q,V,j,ee;for(Y=0;Y=0;W--)U=F*Q+M*V+$*j+G*ee,G=$,$=U,M=F,F=A[B],k[Z]=I[z]+$,B--,z--,Z-=P}}function C(A,k,I,N){if(N){var L=new Uint16Array(A.length),P=new Float32Array(Math.max(k,I)),M=w(N);S(A,L,P,M,k,I),S(L,A,P,M,I,k)}}a.exports=C},{}],19:[function(r,a,s){typeof Object.create=="function"?a.exports=function(u,h){h&&(u.super_=h,u.prototype=Object.create(h.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}))}:a.exports=function(u,h){if(h){u.super_=h;var f=function(){};f.prototype=h.prototype,u.prototype=new f,u.prototype.constructor=u}}},{}],20:[function(r,a,s){var o=r("object-assign"),u=r("./lib/base64decode"),h=r("./lib/wa_detect"),f={js:!0,wasm:!0};function p(m){if(!(this instanceof p))return new p(m);var b=o({},f,m||{});if(this.options=b,this.__cache={},this.__init_promise=null,this.__modules=b.modules||{},this.__memory=null,this.__wasm={},this.__isLE=new Uint32Array(new Uint8Array([1,0,0,0]).buffer)[0]===1,!this.options.js&&!this.options.wasm)throw new Error('mathlib: at least "js" or "wasm" should be enabled')}p.prototype.has_wasm=h,p.prototype.use=function(m){return this.__modules[m.name]=m,this.options.wasm&&this.has_wasm()&&m.wasm_fn?this[m.name]=m.wasm_fn:this[m.name]=m.fn,this},p.prototype.init=function(){if(this.__init_promise)return this.__init_promise;if(!this.options.js&&this.options.wasm&&!this.has_wasm())return Promise.reject(new Error(`mathlib: only "wasm" was enabled, but it's not supported`));var m=this;return this.__init_promise=Promise.all(Object.keys(m.__modules).map(function(b){var _=m.__modules[b];return!m.options.wasm||!m.has_wasm()||!_.wasm_fn||m.__wasm[b]?null:WebAssembly.compile(m.__base64decode(_.wasm_src)).then(function(w){m.__wasm[b]=w})})).then(function(){return m}),this.__init_promise},p.prototype.__base64decode=u,p.prototype.__reallocate=function(b){if(!this.__memory)return this.__memory=new WebAssembly.Memory({initial:Math.ceil(b/(64*1024))}),this.__memory;var _=this.__memory.buffer.byteLength;return _>2),b=0,_=0,w=0;w>16&255,m[_++]=b>>8&255,m[_++]=b&255),b=b<<6|o.indexOf(f.charAt(w));var S=p%4*6;return S===0?(m[_++]=b>>16&255,m[_++]=b>>8&255,m[_++]=b&255):S===18?(m[_++]=b>>10&255,m[_++]=b>>2&255):S===12&&(m[_++]=b>>4&255),m}},{}],22:[function(r,a,s){var o;a.exports=function(){if(typeof o<"u"||(o=!1,typeof WebAssembly>"u"))return o;try{var h=new Uint8Array([0,97,115,109,1,0,0,0,1,6,1,96,1,127,1,127,3,2,1,0,5,3,1,0,1,7,8,1,4,116,101,115,116,0,0,10,16,1,14,0,32,0,65,1,54,2,0,32,0,40,2,0,11]),f=new WebAssembly.Module(h),p=new WebAssembly.Instance(f,{});return p.exports.test(4)!==0&&(o=!0),o}catch{}return o}},{}],23:[function(r,a,s){var o=Object.getOwnPropertySymbols,u=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable;function f(m){if(m==null)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(m)}function p(){try{if(!Object.assign)return!1;var m=new String("abc");if(m[5]="de",Object.getOwnPropertyNames(m)[0]==="5")return!1;for(var b={},_=0;_<10;_++)b["_"+String.fromCharCode(_)]=_;var w=Object.getOwnPropertyNames(b).map(function(C){return b[C]});if(w.join("")!=="0123456789")return!1;var S={};return"abcdefghijklmnopqrst".split("").forEach(function(C){S[C]=C}),Object.keys(Object.assign({},S)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}a.exports=p()?Object.assign:function(m,b){for(var _,w=f(m),S,C=1;CW.length)&&(Q=W.length);for(var V=0,j=new Array(Q);V=0)}catch{}var P=1;typeof navigator<"u"&&(P=Math.min(navigator.hardwareConcurrency||1,4));var M={tile:1024,concurrency:P,features:["js","wasm","ww"],idle:2e3,createCanvas:function(Q,V){var j=document.createElement("canvas");return j.width=Q,j.height=V,j}},F={quality:3,alpha:!1,unsharpAmount:0,unsharpRadius:0,unsharpThreshold:0},U=!1,$=!1,G=!1,B=!1,Z=!1;function z(){return{value:_(A),destroy:function(){if(this.value.terminate(),typeof window<"u"){var Q=window.URL||window.webkitURL||window.mozURL||window.msURL;Q&&Q.revokeObjectURL&&this.value.objectURL&&Q.revokeObjectURL(this.value.objectURL)}}}}function Y(W){if(!(this instanceof Y))return new Y(W);this.options=b({},M,W||{});var Q="lk_".concat(this.options.concurrency);this.__limit=N[Q]||C.limiter(this.options.concurrency),N[Q]||(N[Q]=this.__limit),this.features={js:!1,wasm:!1,cib:!1,ww:!1},this.__workersPool=null,this.__requested_features=[],this.__mathlib=null}Y.prototype.init=function(){var W=this;if(this.__initPromise)return this.__initPromise;if(typeof ImageData<"u"&&typeof Uint8ClampedArray<"u")try{new ImageData(new Uint8ClampedArray(400),10,10),U=!0}catch{}typeof ImageBitmap<"u"&&(ImageBitmap.prototype&&ImageBitmap.prototype.close?$=!0:this.debug("ImageBitmap does not support .close(), disabled"));var Q=this.options.features.slice();if(Q.indexOf("all")>=0&&(Q=["cib","wasm","js","ww"]),this.__requested_features=Q,this.__mathlib=new w(Q),Q.indexOf("ww")>=0&&typeof window<"u"&&"Worker"in window)try{var V=r("webworkify")(function(){});V.terminate(),this.features.ww=!0;var j="wp_".concat(JSON.stringify(this.options));N[j]?this.__workersPool=N[j]:(this.__workersPool=new S(z,this.options.idle),N[j]=this.__workersPool)}catch{}var ee=this.__mathlib.init().then(function(ie){b(W.features,ie.features)}),te;$?te=C.cib_support(this.options.createCanvas).then(function(ie){if(W.features.cib&&Q.indexOf("cib")<0){W.debug("createImageBitmap() resize supported, but disabled by config");return}Q.indexOf("cib")>=0&&(W.features.cib=ie)}):te=Promise.resolve(!1),G=C.can_use_canvas(this.options.createCanvas);var ne;$&&U&&Q.indexOf("ww")!==-1?ne=C.worker_offscreen_canvas_support():ne=Promise.resolve(!1),ne=ne.then(function(ie){B=ie});var se=C.cib_can_use_region().then(function(ie){Z=ie});return this.__initPromise=Promise.all([ee,te,ne,se]).then(function(){return W}),this.__initPromise},Y.prototype.__invokeResize=function(W,Q){var V=this;return Q.__mathCache=Q.__mathCache||{},Promise.resolve().then(function(){return V.features.ww?new Promise(function(j,ee){var te=V.__workersPool.acquire();Q.cancelToken&&Q.cancelToken.catch(function(se){return ee(se)}),te.value.onmessage=function(se){te.release(),se.data.err?ee(se.data.err):j(se.data)};var ne=[];W.src&&ne.push(W.src.buffer),W.srcBitmap&&ne.push(W.srcBitmap),te.value.postMessage({opts:W,features:V.__requested_features,preload:{wasm_nodule:V.__mathlib.__}},ne)}):{data:V.__mathlib.resizeAndUnsharp(W,Q.__mathCache)}})},Y.prototype.__extractTileData=function(W,Q,V,j,ee){if(this.features.ww&&B&&(C.isCanvas(Q)||Z))return this.debug("Create tile for OffscreenCanvas"),createImageBitmap(j.srcImageBitmap||Q,W.x,W.y,W.width,W.height).then(function(se){return ee.srcBitmap=se,ee});if(C.isCanvas(Q))return j.srcCtx||(j.srcCtx=Q.getContext("2d",{alpha:!!V.alpha})),this.debug("Get tile pixel data"),ee.src=j.srcCtx.getImageData(W.x,W.y,W.width,W.height).data,ee;this.debug("Draw tile imageBitmap/image to temporary canvas");var te=this.options.createCanvas(W.width,W.height),ne=te.getContext("2d",{alpha:!!V.alpha});return ne.globalCompositeOperation="copy",ne.drawImage(j.srcImageBitmap||Q,W.x,W.y,W.width,W.height,0,0,W.width,W.height),this.debug("Get tile pixel data"),ee.src=ne.getImageData(0,0,W.width,W.height).data,te.width=te.height=0,ee},Y.prototype.__landTileData=function(W,Q,V){var j;if(this.debug("Convert raw rgba tile result to ImageData"),Q.bitmap)return V.toCtx.drawImage(Q.bitmap,W.toX,W.toY),null;if(U)j=new ImageData(new Uint8ClampedArray(Q.data),W.toWidth,W.toHeight);else if(j=V.toCtx.createImageData(W.toWidth,W.toHeight),j.data.set)j.data.set(Q.data);else for(var ee=j.data.length-1;ee>=0;ee--)j.data[ee]=Q.data[ee];return this.debug("Draw tile"),L?V.toCtx.putImageData(j,W.toX,W.toY,W.toInnerX-W.toX,W.toInnerY-W.toY,W.toInnerWidth+1e-5,W.toInnerHeight+1e-5):V.toCtx.putImageData(j,W.toX,W.toY,W.toInnerX-W.toX,W.toInnerY-W.toY,W.toInnerWidth,W.toInnerHeight),null},Y.prototype.__tileAndResize=function(W,Q,V){var j=this,ee={srcCtx:null,srcImageBitmap:null,isImageBitmapReused:!1,toCtx:null},te=function(se){return j.__limit(function(){if(V.canceled)return V.cancelToken;var ie={width:se.width,height:se.height,toWidth:se.toWidth,toHeight:se.toHeight,scaleX:se.scaleX,scaleY:se.scaleY,offsetX:se.offsetX,offsetY:se.offsetY,quality:V.quality,alpha:V.alpha,unsharpAmount:V.unsharpAmount,unsharpRadius:V.unsharpRadius,unsharpThreshold:V.unsharpThreshold};return j.debug("Invoke resize math"),Promise.resolve(ie).then(function(ge){return j.__extractTileData(se,W,V,ee,ge)}).then(function(ge){return j.debug("Invoke resize math"),j.__invokeResize(ge,V)}).then(function(ge){return V.canceled?V.cancelToken:(ee.srcImageData=null,j.__landTileData(se,ge,ee))})})};return Promise.resolve().then(function(){if(ee.toCtx=Q.getContext("2d",{alpha:!!V.alpha}),C.isCanvas(W))return null;if(C.isImageBitmap(W))return ee.srcImageBitmap=W,ee.isImageBitmapReused=!0,null;if(C.isImage(W))return $?(j.debug("Decode image via createImageBitmap"),createImageBitmap(W).then(function(ne){ee.srcImageBitmap=ne}).catch(function(ne){return null})):null;throw new Error('Pica: ".from" should be Image, Canvas or ImageBitmap')}).then(function(){if(V.canceled)return V.cancelToken;j.debug("Calculate tiles");var ne=I({width:V.width,height:V.height,srcTileSize:j.options.tile,toWidth:V.toWidth,toHeight:V.toHeight,destTileBorder:V.__destTileBorder}),se=ne.map(function(ge){return te(ge)});function ie(ge){ge.srcImageBitmap&&(ge.isImageBitmapReused||ge.srcImageBitmap.close(),ge.srcImageBitmap=null)}return j.debug("Process tiles"),Promise.all(se).then(function(){return j.debug("Finished!"),ie(ee),Q},function(ge){throw ie(ee),ge})})},Y.prototype.__processStages=function(W,Q,V,j){var ee=this;if(j.canceled)return j.cancelToken;var te=W.shift(),ne=o(te,2),se=ne[0],ie=ne[1],ge=W.length===0;j=b({},j,{toWidth:se,toHeight:ie,quality:ge?j.quality:Math.min(1,j.quality)});var ce;return ge||(ce=this.options.createCanvas(se,ie)),this.__tileAndResize(Q,ge?V:ce,j).then(function(){return ge?V:(j.width=se,j.height=ie,ee.__processStages(W,ce,V,j))}).then(function(be){return ce&&(ce.width=ce.height=0),be})},Y.prototype.__resizeViaCreateImageBitmap=function(W,Q,V){var j=this,ee=Q.getContext("2d",{alpha:!!V.alpha});return this.debug("Resize via createImageBitmap()"),createImageBitmap(W,{resizeWidth:V.toWidth,resizeHeight:V.toHeight,resizeQuality:C.cib_quality_name(V.quality)}).then(function(te){if(V.canceled)return V.cancelToken;if(!V.unsharpAmount)return ee.drawImage(te,0,0),te.close(),ee=null,j.debug("Finished!"),Q;j.debug("Unsharp result");var ne=j.options.createCanvas(V.toWidth,V.toHeight),se=ne.getContext("2d",{alpha:!!V.alpha});se.drawImage(te,0,0),te.close();var ie=se.getImageData(0,0,V.toWidth,V.toHeight);return j.__mathlib.unsharp_mask(ie.data,V.toWidth,V.toHeight,V.unsharpAmount,V.unsharpRadius,V.unsharpThreshold),ee.putImageData(ie,0,0),ne.width=ne.height=0,ie=se=ne=ee=null,j.debug("Finished!"),Q})},Y.prototype.resize=function(W,Q,V){var j=this;this.debug("Start resize...");var ee=b({},F);if(isNaN(V)?V&&(ee=b(ee,V)):ee=b(ee,{quality:V}),ee.toWidth=Q.width,ee.toHeight=Q.height,ee.width=W.naturalWidth||W.width,ee.height=W.naturalHeight||W.height,Q.width===0||Q.height===0)return Promise.reject(new Error("Invalid output size: ".concat(Q.width,"x").concat(Q.height)));ee.unsharpRadius>2&&(ee.unsharpRadius=2),ee.canceled=!1,ee.cancelToken&&(ee.cancelToken=ee.cancelToken.then(function(ne){throw ee.canceled=!0,ne},function(ne){throw ee.canceled=!0,ne}));var te=3;return ee.__destTileBorder=Math.ceil(Math.max(te,2.5*ee.unsharpRadius|0)),this.init().then(function(){if(ee.canceled)return ee.cancelToken;if(j.features.cib)return j.__resizeViaCreateImageBitmap(W,Q,ee);if(!G){var ne=new Error("Pica: cannot use getImageData on canvas, make sure fingerprinting protection isn't enabled");throw ne.code="ERR_GET_IMAGE_DATA",ne}var se=k(ee.width,ee.height,ee.toWidth,ee.toHeight,j.options.tile,ee.__destTileBorder);return j.__processStages(se,W,Q,ee)})},Y.prototype.resizeBuffer=function(W){var Q=this,V=b({},F,W);return this.init().then(function(){return Q.__mathlib.resizeAndUnsharp(V)})},Y.prototype.toBlob=function(W,Q,V){return Q=Q||"image/png",new Promise(function(j){if(W.toBlob){W.toBlob(function(ie){return j(ie)},Q,V);return}if(W.convertToBlob){j(W.convertToBlob({type:Q,quality:V}));return}for(var ee=atob(W.toDataURL(Q,V).split(",")[1]),te=ee.length,ne=new Uint8Array(te),se=0;se=0,wasm:b.indexOf("wasm")>=0};u.call(this,_),this.features={js:_.js,wasm:_.wasm&&this.has_wasm()},this.use(h),this.use(f)}o(p,u),p.prototype.resizeAndUnsharp=function(b,_){var w=this.resize(b,_);return b.unsharpAmount&&this.unsharp_mask(w,b.toWidth,b.toHeight,b.unsharpAmount,b.unsharpRadius,b.unsharpThreshold),w},a.exports=p},{"./mm_resize":4,"./mm_unsharp_mask":9,inherits:19,multimath:20}],2:[function(r,a,s){function o(f){return f<0?0:f>255?255:f}function u(f,p,m,b,_,w){var S,C,A,k,I,N,L,P,M,F,U,$=0,G=0;for(M=0;M0;L--)U=w[I++],k=k+U*f[P+3]|0,A=A+U*f[P+2]|0,C=C+U*f[P+1]|0,S=S+U*f[P]|0,P=P+4|0;p[G+3]=o(k+8192>>14),p[G+2]=o(A+8192>>14),p[G+1]=o(C+8192>>14),p[G]=o(S+8192>>14),G=G+b*4|0}G=(M+1)*4|0,$=(M+1)*m*4|0}}function h(f,p,m,b,_,w){var S,C,A,k,I,N,L,P,M,F,U,$=0,G=0;for(M=0;M0;L--)U=w[I++],k=k+U*f[P+3]|0,A=A+U*f[P+2]|0,C=C+U*f[P+1]|0,S=S+U*f[P]|0,P=P+4|0;p[G+3]=o(k+8192>>14),p[G+2]=o(A+8192>>14),p[G+1]=o(C+8192>>14),p[G]=o(S+8192>>14),G=G+b*4|0}G=(M+1)*4|0,$=(M+1)*m*4|0}}a.exports={convolveHorizontally:u,convolveVertically:h}},{}],3:[function(r,a,s){a.exports="AGFzbQEAAAAADAZkeWxpbmsAAAAAAAEXA2AAAGAGf39/f39/AGAHf39/f39/fwACDwEDZW52Bm1lbW9yeQIAAAMEAwABAgYGAX8AQQALB1cFEV9fd2FzbV9jYWxsX2N0b3JzAAAIY29udm9sdmUAAQpjb252b2x2ZUhWAAIMX19kc29faGFuZGxlAwAYX193YXNtX2FwcGx5X2RhdGFfcmVsb2NzAAAK7AMDAwABC8YDAQ9/AkAgA0UNACAERQ0AA0AgDCENQQAhE0EAIQcDQCAHQQJqIQYCfyAHQQF0IAVqIgcuAQIiFEUEQEGAwAAhCEGAwAAhCUGAwAAhCkGAwAAhCyAGDAELIBIgBy4BAGohCEEAIQsgFCEHQQAhDiAGIQlBACEPQQAhEANAIAUgCUEBdGouAQAiESAAIAhBAnRqKAIAIgpBGHZsIBBqIRAgCkH/AXEgEWwgC2ohCyAKQRB2Qf8BcSARbCAPaiEPIApBCHZB/wFxIBFsIA5qIQ4gCEEBaiEIIAlBAWohCSAHQQFrIgcNAAsgC0GAQGshCCAOQYBAayEJIA9BgEBrIQogEEGAQGshCyAGIBRqCyEHIAEgDUECdGogCUEOdSIGQf8BIAZB/wFIGyIGQQAgBkEAShtBCHRBgP4DcSAKQQ51IgZB/wEgBkH/AUgbIgZBACAGQQBKG0EQdEGAgPwHcSALQQ51IgZB/wEgBkH/AUgbIgZBACAGQQBKG0EYdHJyIAhBDnUiBkH/ASAGQf8BSBsiBkEAIAZBAEobcjYCACADIA1qIQ0gE0EBaiITIARHDQALIAxBAWoiDCACbCESIAMgDEcNAAsLCx4AQQAgAiADIAQgBSAAEAEgAkEAIAQgBSAGIAEQAQs="},{}],4:[function(r,a,s){a.exports={name:"resize",fn:r("./resize"),wasm_fn:r("./resize_wasm"),wasm_src:r("./convolve_wasm_base64")}},{"./convolve_wasm_base64":3,"./resize":5,"./resize_wasm":8}],5:[function(r,a,s){var o=r("./resize_filter_gen"),u=r("./convolve").convolveHorizontally,h=r("./convolve").convolveVertically;function f(p,m,b){for(var _=3,w=m*b*4|0;_"u"?3:m.quality,M=m.alpha||!1,F=o(P,_,S,A,I),U=o(P,w,C,k,N),$=new Uint8Array(S*w*4);return u(b,$,_,w,S,F),h($,L,w,S,C,U),M||f(L,S,C),L}},{"./convolve":2,"./resize_filter_gen":6}],6:[function(r,a,s){var o=r("./resize_filter_info"),u=14;function h(f){return Math.round(f*((1<>1]+=h(1-z),W=0;W0&&U[Q]===0;)Q--;if(V=L+W,j=Q-W+1,te[ne++]=V,te[ne++]=j,!se)te.set(U.subarray(W,Q+1),ne),ne+=j;else for(B=W;B<=Q;B++)te[ne++]=U[B]}else te[ne++]=0,te[ne++]=0}return te}},{"./resize_filter_info":7}],7:[function(r,a,s){a.exports=[{win:.5,filter:function(u){return u>=-.5&&u<.5?1:0}},{win:1,filter:function(u){if(u<=-1||u>=1)return 0;if(u>-11920929e-14&&u<11920929e-14)return 1;var h=u*Math.PI;return Math.sin(h)/h*(.54+.46*Math.cos(h/1))}},{win:2,filter:function(u){if(u<=-2||u>=2)return 0;if(u>-11920929e-14&&u<11920929e-14)return 1;var h=u*Math.PI;return Math.sin(h)/h*Math.sin(h/2)/(h/2)}},{win:3,filter:function(u){if(u<=-3||u>=3)return 0;if(u>-11920929e-14&&u<11920929e-14)return 1;var h=u*Math.PI;return Math.sin(h)/h*Math.sin(h/3)/(h/3)}}]},{}],8:[function(r,a,s){var o=r("./resize_filter_gen");function u(m,b,_){for(var w=3,S=b*_*4|0;w>8&255}}a.exports=function(b){var _=b.src,w=b.width,S=b.height,C=b.toWidth,A=b.toHeight,k=b.scaleX||b.toWidth/b.width,I=b.scaleY||b.toHeight/b.height,N=b.offsetX||0,L=b.offsetY||0,P=b.dest||new Uint8Array(C*A*4),M=typeof b.quality>"u"?3:b.quality,F=b.alpha||!1,U=o(M,w,C,k,N),$=o(M,S,A,I,L),G=0,B=this.__align(G+Math.max(_.byteLength,P.byteLength)),Z=this.__align(B+S*C*4),z=this.__align(Z+U.byteLength),Y=z+$.byteLength,W=this.__instance("resize",Y),Q=new Uint8Array(this.__memory.buffer),V=new Uint32Array(this.__memory.buffer),j=new Uint32Array(_.buffer);V.set(j),p(U,Q,Z),p($,Q,z);var ee=W.exports.convolveHV||W.exports._convolveHV;ee(Z,z,B,w,S,C,A);var te=new Uint32Array(P.buffer);return te.set(new Uint32Array(this.__memory.buffer,0,A*C)),F||u(P,C,A),P}},{"./resize_filter_gen":6}],9:[function(r,a,s){a.exports={name:"unsharp_mask",fn:r("./unsharp_mask"),wasm_fn:r("./unsharp_mask_wasm"),wasm_src:r("./unsharp_mask_wasm_base64")}},{"./unsharp_mask":10,"./unsharp_mask_wasm":11,"./unsharp_mask_wasm_base64":12}],10:[function(r,a,s){var o=r("glur/mono16");function u(h,f,p){for(var m=f*p,b=new Uint16Array(m),_,w,S,C,A=0;A=w&&_>=S?_:w>=S&&w>=_?w:S,b[A]=C<<8;return b}a.exports=function(f,p,m,b,_,w){var S,C,A,k,I;if(!(b===0||_<.5)){_>2&&(_=2);var N=u(f,p,m),L=new Uint16Array(N);o(L,p,m,_);for(var P=b/100*4096+.5|0,M=w<<8,F=p*m,U=0;U=M&&(C=S+(P*k+2048>>12),C=C>65280?65280:C,C=C<0?0:C,S=S!==0?S:1,A=(C<<12)/S|0,I=U*4,f[I]=f[I]*A+2048>>12,f[I+1]=f[I+1]*A+2048>>12,f[I+2]=f[I+2]*A+2048>>12)}}},{"glur/mono16":18}],11:[function(r,a,s){a.exports=function(u,h,f,p,m,b){if(!(p===0||m<.5)){m>2&&(m=2);var _=h*f,w=_*4,S=_*2,C=_*2,A=Math.max(h,f)*4,k=8*4,I=0,N=w,L=N+S,P=L+C,M=P+C,F=M+A,U=this.__instance("unsharp_mask",w+S+C*2+A+k,{exp:Math.exp}),$=new Uint32Array(u.buffer),G=new Uint32Array(this.__memory.buffer);G.set($);var B=U.exports.hsv_v16||U.exports._hsv_v16;B(I,N,h,f),B=U.exports.blurMono16||U.exports._blurMono16,B(N,L,P,M,F,h,f,m),B=U.exports.unsharp||U.exports._unsharp,B(I,I,N,L,h,f,p,b),$.set(new Uint32Array(this.__memory.buffer,0,_))}}},{}],12:[function(r,a,s){a.exports="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"},{}],13:[function(r,a,s){var o=100;function u(h,f){this.create=h,this.available=[],this.acquired={},this.lastId=1,this.timeoutId=0,this.idle=f||2e3}u.prototype.acquire=function(){var h=this,f;return this.available.length!==0?f=this.available.pop():(f=this.create(),f.id=this.lastId++,f.release=function(){return h.release(f)}),this.acquired[f.id]=f,f},u.prototype.release=function(h){var f=this;delete this.acquired[h.id],h.lastUsed=Date.now(),this.available.push(h),this.timeoutId===0&&(this.timeoutId=setTimeout(function(){return f.gc()},o))},u.prototype.gc=function(){var h=this,f=Date.now();this.available=this.available.filter(function(p){return f-p.lastUsed>h.idle?(p.destroy(),!1):!0}),this.available.length!==0?this.timeoutId=setTimeout(function(){return h.gc()},o):this.timeoutId=0},a.exports=u},{}],14:[function(r,a,s){var o=2;a.exports=function(h,f,p,m,b,_){var w=p/h,S=m/f,C=(2*_+o+1)/b;if(C>.5)return[[p,m]];var A=Math.ceil(Math.log(Math.min(w,S))/Math.log(C));if(A<=1)return[[p,m]];for(var k=[],I=0;I=p.toWidth&&(I=p.toWidth-S),C=k-p.destTileBorder,C<0&&(C=0),N=k+w+p.destTileBorder-C,C+N>=p.toHeight&&(N=p.toHeight-C),P={toX:S,toY:C,toWidth:I,toHeight:N,toInnerX:A,toInnerY:k,toInnerWidth:_,toInnerHeight:w,offsetX:S/m-u(S/m),offsetY:C/b-u(C/b),scaleX:m,scaleY:b,x:u(S/m),y:u(C/b),width:h(I/m),height:h(N/b)},L.push(P);return L}},{}],16:[function(r,a,s){function o(u){return Object.prototype.toString.call(u)}a.exports.isCanvas=function(h){var f=o(h);return f==="[object HTMLCanvasElement]"||f==="[object OffscreenCanvas]"||f==="[object Canvas]"},a.exports.isImage=function(h){return o(h)==="[object HTMLImageElement]"},a.exports.isImageBitmap=function(h){return o(h)==="[object ImageBitmap]"},a.exports.limiter=function(h){var f=0,p=[];function m(){f"u")return!1;var f=h(100,100);return createImageBitmap(f,0,0,100,100,{resizeWidth:10,resizeHeight:10,resizeQuality:"high"}).then(function(p){var m=p.width===10;return p.close(),f=null,m})}).catch(function(){return!1})},a.exports.worker_offscreen_canvas_support=function(){return new Promise(function(h,f){if(typeof OffscreenCanvas>"u"){h(!1);return}function p(_){if(typeof createImageBitmap>"u"){_.postMessage(!1);return}Promise.resolve().then(function(){var w=new OffscreenCanvas(10,10),S=w.getContext("2d");return S.rect(0,0,1,1),createImageBitmap(w,0,0,1,1)}).then(function(){return _.postMessage(!0)},function(){return _.postMessage(!1)})}var m=btoa("(".concat(p.toString(),")(self);")),b=new Worker("data:text/javascript;base64,".concat(m));b.onmessage=function(_){return h(_.data)},b.onerror=f}).then(function(h){return h},function(){return!1})},a.exports.can_use_canvas=function(h){var f=!1;try{var p=h(2,1),m=p.getContext("2d"),b=m.createImageData(2,1);b.data[0]=12,b.data[1]=23,b.data[2]=34,b.data[3]=255,b.data[4]=45,b.data[5]=56,b.data[6]=67,b.data[7]=255,m.putImageData(b,0,0),b=null,b=m.getImageData(0,0,2,1),b.data[0]===12&&b.data[1]===23&&b.data[2]===34&&b.data[3]===255&&b.data[4]===45&&b.data[5]===56&&b.data[6]===67&&b.data[7]===255&&(f=!0)}catch{}return f},a.exports.cib_can_use_region=function(){return new Promise(function(h){if(typeof createImageBitmap>"u"){h(!1);return}var f=new Image;f.src="data:image/jpeg;base64,/9j/4QBiRXhpZgAATU0AKgAAAAgABQESAAMAAAABAAYAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAAITAAMAAAABAAEAAAAAAAAAAABIAAAAAQAAAEgAAAAB/9sAQwAEAwMEAwMEBAMEBQQEBQYKBwYGBgYNCQoICg8NEBAPDQ8OERMYFBESFxIODxUcFRcZGRsbGxAUHR8dGh8YGhsa/9sAQwEEBQUGBQYMBwcMGhEPERoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoa/8IAEQgAAQACAwERAAIRAQMRAf/EABQAAQAAAAAAAAAAAAAAAAAAAAf/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIQAxAAAAF/P//EABQQAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQEAAQUCf//EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQMBAT8Bf//EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQIBAT8Bf//EABQQAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQEABj8Cf//EABQQAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQEAAT8hf//aAAwDAQACAAMAAAAQH//EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQMBAT8Qf//EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQIBAT8Qf//EABQQAQAAAAAAAAAAAAAAAAAAAAD/2gAIAQEAAT8Qf//Z",f.onload=function(){createImageBitmap(f,0,0,f.width,f.height).then(function(p){p.width===f.width&&p.height===f.height?h(!0):h(!1)},function(){return h(!1)})},f.onerror=function(){return h(!1)}})}},{}],17:[function(r,a,s){a.exports=function(){var o=r("./mathlib"),u;onmessage=function(f){var p=f.data.opts,m=!1;if(!p.src&&p.srcBitmap){var b=new OffscreenCanvas(p.width,p.height),_=b.getContext("2d",{alpha:!!p.alpha});_.drawImage(p.srcBitmap,0,0),p.src=_.getImageData(0,0,p.width,p.height).data,b.width=b.height=0,b=null,p.srcBitmap.close(),p.srcBitmap=null,m=!0}u||(u=new o(f.data.features));var w=u.resizeAndUnsharp(p);if(m){var S=new ImageData(new Uint8ClampedArray(w),p.toWidth,p.toHeight),C=new OffscreenCanvas(p.toWidth,p.toHeight),A=C.getContext("2d",{alpha:!!p.alpha});A.putImageData(S,0,0),createImageBitmap(C).then(function(k){postMessage({bitmap:k},[k])})}else postMessage({data:w},[w.buffer])}}},{"./mathlib":1}],18:[function(r,a,s){var o,u,h,f,p,m,b,_;function w(A){A<.5&&(A=.5);var k=Math.exp(.726*.726)/A,I=Math.exp(-k),N=Math.exp(-2*k),L=(1-I)*(1-I)/(1+2*k*I-N);return o=L,u=L*(k-1)*I,h=L*(k+1)*I,f=-L*N,p=2*I,m=-N,b=(o+u)/(1-p-m),_=(h+f)/(1-p-m),new Float32Array([o,u,h,f,p,m,b,_])}function S(A,k,I,N,L,P){var M,F,U,$,G,B,Z,z,Y,W,Q,V,j,ee;for(Y=0;Y=0;W--)U=F*Q+M*V+$*j+G*ee,G=$,$=U,M=F,F=A[B],k[Z]=I[z]+$,B--,z--,Z-=P}}function C(A,k,I,N){if(N){var L=new Uint16Array(A.length),P=new Float32Array(Math.max(k,I)),M=w(N);S(A,L,P,M,k,I),S(L,A,P,M,I,k)}}a.exports=C},{}],19:[function(r,a,s){typeof Object.create=="function"?a.exports=function(u,h){h&&(u.super_=h,u.prototype=Object.create(h.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}))}:a.exports=function(u,h){if(h){u.super_=h;var f=function(){};f.prototype=h.prototype,u.prototype=new f,u.prototype.constructor=u}}},{}],20:[function(r,a,s){var o=r("object-assign"),u=r("./lib/base64decode"),h=r("./lib/wa_detect"),f={js:!0,wasm:!0};function p(m){if(!(this instanceof p))return new p(m);var b=o({},f,m||{});if(this.options=b,this.__cache={},this.__init_promise=null,this.__modules=b.modules||{},this.__memory=null,this.__wasm={},this.__isLE=new Uint32Array(new Uint8Array([1,0,0,0]).buffer)[0]===1,!this.options.js&&!this.options.wasm)throw new Error('mathlib: at least "js" or "wasm" should be enabled')}p.prototype.has_wasm=h,p.prototype.use=function(m){return this.__modules[m.name]=m,this.options.wasm&&this.has_wasm()&&m.wasm_fn?this[m.name]=m.wasm_fn:this[m.name]=m.fn,this},p.prototype.init=function(){if(this.__init_promise)return this.__init_promise;if(!this.options.js&&this.options.wasm&&!this.has_wasm())return Promise.reject(new Error(`mathlib: only "wasm" was enabled, but it's not supported`));var m=this;return this.__init_promise=Promise.all(Object.keys(m.__modules).map(function(b){var _=m.__modules[b];return!m.options.wasm||!m.has_wasm()||!_.wasm_fn||m.__wasm[b]?null:WebAssembly.compile(m.__base64decode(_.wasm_src)).then(function(w){m.__wasm[b]=w})})).then(function(){return m}),this.__init_promise},p.prototype.__base64decode=u,p.prototype.__reallocate=function(b){if(!this.__memory)return this.__memory=new WebAssembly.Memory({initial:Math.ceil(b/(64*1024))}),this.__memory;var _=this.__memory.buffer.byteLength;return _>2),b=0,_=0,w=0;w>16&255,m[_++]=b>>8&255,m[_++]=b&255),b=b<<6|o.indexOf(f.charAt(w));var S=p%4*6;return S===0?(m[_++]=b>>16&255,m[_++]=b>>8&255,m[_++]=b&255):S===18?(m[_++]=b>>10&255,m[_++]=b>>2&255):S===12&&(m[_++]=b>>4&255),m}},{}],22:[function(r,a,s){var o;a.exports=function(){if(typeof o<"u"||(o=!1,typeof WebAssembly>"u"))return o;try{var h=new Uint8Array([0,97,115,109,1,0,0,0,1,6,1,96,1,127,1,127,3,2,1,0,5,3,1,0,1,7,8,1,4,116,101,115,116,0,0,10,16,1,14,0,32,0,65,1,54,2,0,32,0,40,2,0,11]),f=new WebAssembly.Module(h),p=new WebAssembly.Instance(f,{});return p.exports.test(4)!==0&&(o=!0),o}catch{}return o}},{}],23:[function(r,a,s){var o=Object.getOwnPropertySymbols,u=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable;function f(m){if(m==null)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(m)}function p(){try{if(!Object.assign)return!1;var m=new String("abc");if(m[5]="de",Object.getOwnPropertyNames(m)[0]==="5")return!1;for(var b={},_=0;_<10;_++)b["_"+String.fromCharCode(_)]=_;var w=Object.getOwnPropertyNames(b).map(function(C){return b[C]});if(w.join("")!=="0123456789")return!1;var S={};return"abcdefghijklmnopqrst".split("").forEach(function(C){S[C]=C}),Object.keys(Object.assign({},S)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}a.exports=p()?Object.assign:function(m,b){for(var _,w=f(m),S,C=1;CW.length)&&(Q=W.length);for(var V=0,j=new Array(Q);V=0)}catch{}var P=1;typeof navigator<"u"&&(P=Math.min(navigator.hardwareConcurrency||1,4));var M={tile:1024,concurrency:P,features:["js","wasm","ww"],idle:2e3,createCanvas:function(Q,V){var j=document.createElement("canvas");return j.width=Q,j.height=V,j}},F={quality:3,alpha:!1,unsharpAmount:0,unsharpRadius:0,unsharpThreshold:0},U=!1,$=!1,G=!1,B=!1,Z=!1;function z(){return{value:_(A),destroy:function(){if(this.value.terminate(),typeof window<"u"){var Q=window.URL||window.webkitURL||window.mozURL||window.msURL;Q&&Q.revokeObjectURL&&this.value.objectURL&&Q.revokeObjectURL(this.value.objectURL)}}}}function Y(W){if(!(this instanceof Y))return new Y(W);this.options=b({},M,W||{});var Q="lk_".concat(this.options.concurrency);this.__limit=N[Q]||C.limiter(this.options.concurrency),N[Q]||(N[Q]=this.__limit),this.features={js:!1,wasm:!1,cib:!1,ww:!1},this.__workersPool=null,this.__requested_features=[],this.__mathlib=null}Y.prototype.init=function(){var W=this;if(this.__initPromise)return this.__initPromise;if(typeof ImageData<"u"&&typeof Uint8ClampedArray<"u")try{new ImageData(new Uint8ClampedArray(400),10,10),U=!0}catch{}typeof ImageBitmap<"u"&&(ImageBitmap.prototype&&ImageBitmap.prototype.close?$=!0:this.debug("ImageBitmap does not support .close(), disabled"));var Q=this.options.features.slice();if(Q.indexOf("all")>=0&&(Q=["cib","wasm","js","ww"]),this.__requested_features=Q,this.__mathlib=new w(Q),Q.indexOf("ww")>=0&&typeof window<"u"&&"Worker"in window)try{var V=r("webworkify")(function(){});V.terminate(),this.features.ww=!0;var j="wp_".concat(JSON.stringify(this.options));N[j]?this.__workersPool=N[j]:(this.__workersPool=new S(z,this.options.idle),N[j]=this.__workersPool)}catch{}var ee=this.__mathlib.init().then(function(ie){b(W.features,ie.features)}),te;$?te=C.cib_support(this.options.createCanvas).then(function(ie){if(W.features.cib&&Q.indexOf("cib")<0){W.debug("createImageBitmap() resize supported, but disabled by config");return}Q.indexOf("cib")>=0&&(W.features.cib=ie)}):te=Promise.resolve(!1),G=C.can_use_canvas(this.options.createCanvas);var ne;$&&U&&Q.indexOf("ww")!==-1?ne=C.worker_offscreen_canvas_support():ne=Promise.resolve(!1),ne=ne.then(function(ie){B=ie});var se=C.cib_can_use_region().then(function(ie){Z=ie});return this.__initPromise=Promise.all([ee,te,ne,se]).then(function(){return W}),this.__initPromise},Y.prototype.__invokeResize=function(W,Q){var V=this;return Q.__mathCache=Q.__mathCache||{},Promise.resolve().then(function(){return V.features.ww?new Promise(function(j,ee){var te=V.__workersPool.acquire();Q.cancelToken&&Q.cancelToken.catch(function(se){return ee(se)}),te.value.onmessage=function(se){te.release(),se.data.err?ee(se.data.err):j(se.data)};var ne=[];W.src&&ne.push(W.src.buffer),W.srcBitmap&&ne.push(W.srcBitmap),te.value.postMessage({opts:W,features:V.__requested_features,preload:{wasm_nodule:V.__mathlib.__}},ne)}):{data:V.__mathlib.resizeAndUnsharp(W,Q.__mathCache)}})},Y.prototype.__extractTileData=function(W,Q,V,j,ee){if(this.features.ww&&B&&(C.isCanvas(Q)||Z))return this.debug("Create tile for OffscreenCanvas"),createImageBitmap(j.srcImageBitmap||Q,W.x,W.y,W.width,W.height).then(function(se){return ee.srcBitmap=se,ee});if(C.isCanvas(Q))return j.srcCtx||(j.srcCtx=Q.getContext("2d",{alpha:!!V.alpha})),this.debug("Get tile pixel data"),ee.src=j.srcCtx.getImageData(W.x,W.y,W.width,W.height).data,ee;this.debug("Draw tile imageBitmap/image to temporary canvas");var te=this.options.createCanvas(W.width,W.height),ne=te.getContext("2d",{alpha:!!V.alpha});return ne.globalCompositeOperation="copy",ne.drawImage(j.srcImageBitmap||Q,W.x,W.y,W.width,W.height,0,0,W.width,W.height),this.debug("Get tile pixel data"),ee.src=ne.getImageData(0,0,W.width,W.height).data,te.width=te.height=0,ee},Y.prototype.__landTileData=function(W,Q,V){var j;if(this.debug("Convert raw rgba tile result to ImageData"),Q.bitmap)return V.toCtx.drawImage(Q.bitmap,W.toX,W.toY),null;if(U)j=new ImageData(new Uint8ClampedArray(Q.data),W.toWidth,W.toHeight);else if(j=V.toCtx.createImageData(W.toWidth,W.toHeight),j.data.set)j.data.set(Q.data);else for(var ee=j.data.length-1;ee>=0;ee--)j.data[ee]=Q.data[ee];return this.debug("Draw tile"),L?V.toCtx.putImageData(j,W.toX,W.toY,W.toInnerX-W.toX,W.toInnerY-W.toY,W.toInnerWidth+1e-5,W.toInnerHeight+1e-5):V.toCtx.putImageData(j,W.toX,W.toY,W.toInnerX-W.toX,W.toInnerY-W.toY,W.toInnerWidth,W.toInnerHeight),null},Y.prototype.__tileAndResize=function(W,Q,V){var j=this,ee={srcCtx:null,srcImageBitmap:null,isImageBitmapReused:!1,toCtx:null},te=function(se){return j.__limit(function(){if(V.canceled)return V.cancelToken;var ie={width:se.width,height:se.height,toWidth:se.toWidth,toHeight:se.toHeight,scaleX:se.scaleX,scaleY:se.scaleY,offsetX:se.offsetX,offsetY:se.offsetY,quality:V.quality,alpha:V.alpha,unsharpAmount:V.unsharpAmount,unsharpRadius:V.unsharpRadius,unsharpThreshold:V.unsharpThreshold};return j.debug("Invoke resize math"),Promise.resolve(ie).then(function(ge){return j.__extractTileData(se,W,V,ee,ge)}).then(function(ge){return j.debug("Invoke resize math"),j.__invokeResize(ge,V)}).then(function(ge){return V.canceled?V.cancelToken:(ee.srcImageData=null,j.__landTileData(se,ge,ee))})})};return Promise.resolve().then(function(){if(ee.toCtx=Q.getContext("2d",{alpha:!!V.alpha}),C.isCanvas(W))return null;if(C.isImageBitmap(W))return ee.srcImageBitmap=W,ee.isImageBitmapReused=!0,null;if(C.isImage(W))return $?(j.debug("Decode image via createImageBitmap"),createImageBitmap(W).then(function(ne){ee.srcImageBitmap=ne}).catch(function(ne){return null})):null;throw new Error('Pica: ".from" should be Image, Canvas or ImageBitmap')}).then(function(){if(V.canceled)return V.cancelToken;j.debug("Calculate tiles");var ne=I({width:V.width,height:V.height,srcTileSize:j.options.tile,toWidth:V.toWidth,toHeight:V.toHeight,destTileBorder:V.__destTileBorder}),se=ne.map(function(ge){return te(ge)});function ie(ge){ge.srcImageBitmap&&(ge.isImageBitmapReused||ge.srcImageBitmap.close(),ge.srcImageBitmap=null)}return j.debug("Process tiles"),Promise.all(se).then(function(){return j.debug("Finished!"),ie(ee),Q},function(ge){throw ie(ee),ge})})},Y.prototype.__processStages=function(W,Q,V,j){var ee=this;if(j.canceled)return j.cancelToken;var te=W.shift(),ne=o(te,2),se=ne[0],ie=ne[1],ge=W.length===0;j=b({},j,{toWidth:se,toHeight:ie,quality:ge?j.quality:Math.min(1,j.quality)});var ce;return ge||(ce=this.options.createCanvas(se,ie)),this.__tileAndResize(Q,ge?V:ce,j).then(function(){return ge?V:(j.width=se,j.height=ie,ee.__processStages(W,ce,V,j))}).then(function(be){return ce&&(ce.width=ce.height=0),be})},Y.prototype.__resizeViaCreateImageBitmap=function(W,Q,V){var j=this,ee=Q.getContext("2d",{alpha:!!V.alpha});return this.debug("Resize via createImageBitmap()"),createImageBitmap(W,{resizeWidth:V.toWidth,resizeHeight:V.toHeight,resizeQuality:C.cib_quality_name(V.quality)}).then(function(te){if(V.canceled)return V.cancelToken;if(!V.unsharpAmount)return ee.drawImage(te,0,0),te.close(),ee=null,j.debug("Finished!"),Q;j.debug("Unsharp result");var ne=j.options.createCanvas(V.toWidth,V.toHeight),se=ne.getContext("2d",{alpha:!!V.alpha});se.drawImage(te,0,0),te.close();var ie=se.getImageData(0,0,V.toWidth,V.toHeight);return j.__mathlib.unsharp_mask(ie.data,V.toWidth,V.toHeight,V.unsharpAmount,V.unsharpRadius,V.unsharpThreshold),ee.putImageData(ie,0,0),ne.width=ne.height=0,ie=se=ne=ee=null,j.debug("Finished!"),Q})},Y.prototype.resize=function(W,Q,V){var j=this;this.debug("Start resize...");var ee=b({},F);if(isNaN(V)?V&&(ee=b(ee,V)):ee=b(ee,{quality:V}),ee.toWidth=Q.width,ee.toHeight=Q.height,ee.width=W.naturalWidth||W.width,ee.height=W.naturalHeight||W.height,Q.width===0||Q.height===0)return Promise.reject(new Error("Invalid output size: ".concat(Q.width,"x").concat(Q.height)));ee.unsharpRadius>2&&(ee.unsharpRadius=2),ee.canceled=!1,ee.cancelToken&&(ee.cancelToken=ee.cancelToken.then(function(ne){throw ee.canceled=!0,ne},function(ne){throw ee.canceled=!0,ne}));var te=3;return ee.__destTileBorder=Math.ceil(Math.max(te,2.5*ee.unsharpRadius|0)),this.init().then(function(){if(ee.canceled)return ee.cancelToken;if(j.features.cib)return j.__resizeViaCreateImageBitmap(W,Q,ee);if(!G){var ne=new Error("Pica: cannot use getImageData on canvas, make sure fingerprinting protection isn't enabled");throw ne.code="ERR_GET_IMAGE_DATA",ne}var se=k(ee.width,ee.height,ee.toWidth,ee.toHeight,j.options.tile,ee.__destTileBorder);return j.__processStages(se,W,Q,ee)})},Y.prototype.resizeBuffer=function(W){var Q=this,V=b({},F,W);return this.init().then(function(){return Q.__mathlib.resizeAndUnsharp(V)})},Y.prototype.toBlob=function(W,Q,V){return Q=Q||"image/png",new Promise(function(j){if(W.toBlob){W.toBlob(function(ie){return j(ie)},Q,V);return}if(W.convertToBlob){j(W.convertToBlob({type:Q,quality:V}));return}for(var ee=atob(W.toDataURL(Q,V).split(",")[1]),te=ee.length,ne=new Uint8Array(te),se=0;se0;p--)f="0"+f;return"0x"+f}function a(h){try{return unescape(encodeURIComponent(h))}catch{return h}}function s(h){try{return decodeURIComponent(escape(h))}catch{return h}}function o(h){return Object.prototype.toString.call(h)==="[object Uint8Array]"}function u(h,f,p){this.input=h.subarray(f,p),this.start=f;var m=String.fromCharCode.apply(null,this.input.subarray(0,4));if(m!=="II*\0"&&m!=="MM\0*")throw t("invalid TIFF signature","EBADDATA");this.big_endian=m[0]==="M"}u.prototype.each=function(h){this.aborted=!1;var f=this.read_uint32(4);for(this.ifds_to_read=[{id:0,offset:f}];this.ifds_to_read.length>0&&!this.aborted;){var p=this.ifds_to_read.shift();p.offset&&this.scan_ifd(p.id,p.offset,h)}},u.prototype.filter=function(h){var f={};f.ifd0={id:0,entries:[]},this.each(function(_){h(_)===!1&&!_.is_subifd_link||_.is_subifd_link&&_.count!==1&&_.format!==4||(f["ifd"+_.ifd]||(f["ifd"+_.ifd]={id:_.ifd,entries:[]}),f["ifd"+_.ifd].entries.push(_))}),delete f.ifd1;var p=8;Object.keys(f).forEach(function(_){p+=2,f[_].entries.forEach(function(w){p+=12+(w.data_length>4?Math.ceil(w.data_length/2)*2:0)}),p+=4}),this.output=new Uint8Array(p),this.output[0]=this.output[1]=(this.big_endian?"M":"I").charCodeAt(0),this.write_uint16(2,42);var m=8,b=this;if(this.write_uint32(4,m),Object.keys(f).forEach(function(_){f[_].written_offset=m;var w=m,S=w+2+f[_].entries.length*12+4;m=S,b.write_uint16(w,f[_].entries.length),f[_].entries.sort(function(A,k){return A.tag-k.tag}).forEach(function(A,k){var I=w+2+k*12;b.write_uint16(I,A.tag),b.write_uint16(I+2,A.format),b.write_uint32(I+4,A.count),A.is_subifd_link?f["ifd"+A.tag]&&(f["ifd"+A.tag].link_offset=I+8):A.data_length<=4?b.output.set(b.input.subarray(A.data_offset-b.start,A.data_offset-b.start+4),I+8):(b.write_uint32(I+8,m),b.output.set(b.input.subarray(A.data_offset-b.start,A.data_offset-b.start+A.data_length),m),m+=Math.ceil(A.data_length/2)*2)});var C=f["ifd"+(f[_].id+1)];C&&(C.link_offset=S-4)}),Object.keys(f).forEach(function(_){f[_].written_offset&&f[_].link_offset&&b.write_uint32(f[_].link_offset,f[_].written_offset)}),this.output.length!==m)throw t("internal error: incorrect buffer size allocated");return this.output},u.prototype.read_uint16=function(h){var f=this.input;if(h+2>f.length)throw t("unexpected EOF","EBADDATA");return this.big_endian?f[h]*256+f[h+1]:f[h]+f[h+1]*256},u.prototype.read_uint32=function(h){var f=this.input;if(h+4>f.length)throw t("unexpected EOF","EBADDATA");return this.big_endian?f[h]*16777216+f[h+1]*65536+f[h+2]*256+f[h+3]:f[h]+f[h+1]*256+f[h+2]*65536+f[h+3]*16777216},u.prototype.write_uint16=function(h,f){var p=this.output;this.big_endian?(p[h]=f>>>8&255,p[h+1]=f&255):(p[h]=f&255,p[h+1]=f>>>8&255)},u.prototype.write_uint32=function(h,f){var p=this.output;this.big_endian?(p[h]=f>>>24&255,p[h+1]=f>>>16&255,p[h+2]=f>>>8&255,p[h+3]=f&255):(p[h]=f&255,p[h+1]=f>>>8&255,p[h+2]=f>>>16&255,p[h+3]=f>>>24&255)},u.prototype.is_subifd_link=function(h,f){return h===0&&f===34665||h===0&&f===34853||h===34665&&f===40965},u.prototype.exif_format_length=function(h){switch(h){case 1:case 2:case 6:case 7:return 1;case 3:case 8:return 2;case 4:case 9:case 11:return 4;case 5:case 10:case 12:return 8;default:return 0}},u.prototype.exif_format_read=function(h,f){var p;switch(h){case 1:case 2:return p=this.input[f],p;case 6:return p=this.input[f],p|(p&128)*33554430;case 3:return p=this.read_uint16(f),p;case 8:return p=this.read_uint16(f),p|(p&32768)*131070;case 4:return p=this.read_uint32(f),p;case 9:return p=this.read_uint32(f),p|0;case 5:case 10:case 11:case 12:return null;case 7:return null;default:return null}},u.prototype.scan_ifd=function(h,f,p){var m=this.read_uint16(f);f+=2;for(var b=0;bthis.input.length)throw t("unexpected EOF","EBADDATA");for(var N=[],L=k,P=0;P0&&(this.ifds_to_read.push({id:_,offset:N[0]}),I=!0);var F={is_big_endian:this.big_endian,ifd:h,tag:_,format:w,count:S,entry_offset:f+this.start,data_length:A,data_offset:k+this.start,value:N,is_subifd_link:I};if(p(F)===!1){this.aborted=!0;return}f+=12}h===0&&this.ifds_to_read.push({id:1,offset:this.read_uint32(f)})},e.exports.is_jpeg=function(h){return h.length>=4&&h[0]===255&&h[1]===216&&h[2]===255},e.exports.jpeg_segments_each=function(h,f){if(!o(h))throw t("Invalid argument (jpeg_bin), Uint8Array expected","EINVAL");if(typeof f!="function")throw t("Invalid argument (on_segment), Function expected","EINVAL");if(!e.exports.is_jpeg(h))throw t("Unknown file format","ENOTJPEG");for(var p=0,m=h.length,b=!1;;){var _,w;if(p+1>=m)throw t("Unexpected EOF","EBADDATA");var S=h[p],C=h[p+1];if(S===255&&C===255)_=255,w=1;else if(S===255&&C!==0){if(_=C,w=2,!(208<=_&&_<=217||_===1)){if(p+3>=m)throw t("Unexpected EOF","EBADDATA");if(w+=h[p+2]*256+h[p+3],w<2)throw t("Invalid segment length","EBADDATA");if(p+w-1>=m)throw t("Unexpected EOF","EBADDATA")}b&&(_>=208&&_<=215||(b=!1)),_===218&&(b=!0)}else if(b)for(var A=p+1;;A++){if(A>=m)throw t("Unexpected EOF","EBADDATA");if(h[A]===255){if(A+1>=m)throw t("Unexpected EOF","EBADDATA");if(h[A+1]!==0){_=0,w=A-p;break}}}else throw t("Unexpected byte at segment start: "+r(S)+" (offset "+r(p)+")","EBADDATA");if(f({code:_,offset:p,length:w})===!1||_===217)break;p+=w}},e.exports.jpeg_segments_filter=function(h,f){if(!o(h))throw t("Invalid argument (jpeg_bin), Uint8Array expected","EINVAL");if(typeof f!="function")throw t("Invalid argument (on_segment), Function expected","EINVAL");var p=[],m=0;e.exports.jpeg_segments_each(h,function(w){var S=f(w);if(o(S))p.push({data:S}),m+=S.length;else if(Array.isArray(S))S.filter(o).forEach(function(A){p.push({data:A}),m+=A.length});else if(S!==!1){var C={start:w.offset,end:w.offset+w.length};p.length>0&&p[p.length-1].end===C.start?p[p.length-1].end=C.end:p.push(C),m+=w.length}});var b=new Uint8Array(m),_=0;return p.forEach(function(w){var S=w.data||h.subarray(w.start,w.end);b.set(S,_),_+=S.length}),b},e.exports.jpeg_exif_tags_each=function(h,f){if(!o(h))throw t("Invalid argument (jpeg_bin), Uint8Array expected","EINVAL");if(typeof f!="function")throw t("Invalid argument (on_exif_entry), Function expected","EINVAL");e.exports.jpeg_segments_each(h,function(p){if(p.code===218)return!1;if(p.code===225&&p.length>=10&&h[p.offset+4]===69&&h[p.offset+5]===120&&h[p.offset+6]===105&&h[p.offset+7]===102&&h[p.offset+8]===0&&h[p.offset+9]===0)return new u(h,p.offset+10,p.offset+p.length).each(f),!1})},e.exports.jpeg_exif_tags_filter=function(h,f){if(!o(h))throw t("Invalid argument (jpeg_bin), Uint8Array expected","EINVAL");if(typeof f!="function")throw t("Invalid argument (on_exif_entry), Function expected","EINVAL");var p=!1;return e.exports.jpeg_segments_filter(h,function(m){if(!p&&(m.code===218&&(p=!0),m.code===225&&m.length>=10&&h[m.offset+4]===69&&h[m.offset+5]===120&&h[m.offset+6]===105&&h[m.offset+7]===102&&h[m.offset+8]===0&&h[m.offset+9]===0)){var b=new u(h,m.offset+10,m.offset+m.length).filter(f);if(!b)return!1;var _=new Uint8Array(10);return _.set(h.slice(m.offset,m.offset+10)),_[2]=b.length+8>>>8&255,_[3]=b.length+8&255,p=!0,[_,b]}})},e.exports.jpeg_add_comment=function(h,f){var p=!1,m=0;return e.exports.jpeg_segments_filter(h,function(b){if(m++,!(m===1&&b.code===216)&&!(m===2&&b.code===224)&&!p){f=a(f);var _=new Uint8Array(5+f.length),w=0;return _[w++]=255,_[w++]=254,_[w++]=f.length+3>>>8&255,_[w++]=f.length+3&255,f.split("").forEach(function(S){_[w++]=S.charCodeAt(0)&255}),_[w++]=0,p=!0,[_,h.subarray(b.offset,b.offset+b.length)]}})}});function uta(e){return this._getUint8Array(e.blob).then(function(t){if(e.is_jpeg=GTe.is_jpeg(t),!e.is_jpeg)return Promise.resolve(e);e.orig_blob=e.blob;try{var r,a;if(GTe.jpeg_exif_tags_each(t,function(o){if(o.ifd===0&&o.tag===274&&Array.isArray(o.value))return e.orientation=o.value[0]||1,r=o.is_big_endian,a=o.data_offset,!1}),a){var s=r?new Uint8Array([0,1]):new Uint8Array([1,0]);e.blob=new Blob([t.slice(0,a),s,t.slice(a+2)],{type:"image/jpeg"})}}catch{}return e})}function hta(e){if(!e.is_jpeg)return Promise.resolve(e);var t=e.orientation-1;if(!t)return Promise.resolve(e);var r;t&4?r=this.pica.options.createCanvas(e.out_canvas.height,e.out_canvas.width):r=this.pica.options.createCanvas(e.out_canvas.width,e.out_canvas.height);var a=r.getContext("2d");return a.save(),t&1&&a.transform(-1,0,0,1,r.width,0),t&2&&a.transform(-1,0,0,-1,r.width,r.height),t&4&&a.transform(0,1,1,0,0,0),a.drawImage(e.out_canvas,0,0),a.restore(),e.out_canvas.width=e.out_canvas.height=0,e.out_canvas=r,Promise.resolve(e)}function dta(e){return e.is_jpeg?Promise.all([this._getUint8Array(e.blob),this._getUint8Array(e.out_blob)]).then(function(t){var r=t[0],a=t[1];if(!GTe.is_jpeg(r))return Promise.resolve(e);var s=[];return GTe.jpeg_segments_each(r,function(o){if(o.code===218)return!1;s.push(o)}),s=s.filter(function(o){return o.code===226?!1:o.code>=224&&o.code<240||o.code===254}).map(function(o){return r.slice(o.offset,o.offset+o.length)}),e.out_blob=new Blob([a.slice(0,2)].concat(s).concat([a.slice(20)]),{type:"image/jpeg"}),e}):Promise.resolve(e)}function fta(e){e.before("_blob_to_image",uta),e.after("_transform",hta),e.after("_create_blob",dta)}var pta=fta,gta={assign:pta};function Nb(e){if(!(this instanceof Nb))return new Nb(e);e=e||{},this.pica=e.pica||MQn({}),this.initialized=!1,this.utils=pbt}Nb.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this};Nb.prototype.init=function(){this.use(gta.assign)};Nb.prototype.toBlob=function(e,t){var r=pbt.assign({max:1/0},t),a={blob:e,opts:r};return this.initialized||(this.init(),this.initialized=!0),Promise.resolve(a).then(this._blob_to_image).then(this._calculate_size).then(this._transform).then(this._cleanup).then(this._create_blob).then(function(s){return s.out_canvas.width=s.out_canvas.height=0,s.out_blob})};Nb.prototype.toCanvas=function(e,t){var r=pbt.assign({max:1/0},t),a={blob:e,opts:r};return this.initialized||(this.init(),this.initialized=!0),Promise.resolve(a).then(this._blob_to_image).then(this._calculate_size).then(this._transform).then(this._cleanup).then(function(s){return s.out_canvas})};Nb.prototype.before=function(e,t){if(!this[e])throw new Error('Method "'+e+'" does not exist');if(typeof t!="function")throw new Error('Invalid argument "fn", function expected');var r=this[e],a=this;return this[e]=function(s){return t.call(a,s).then(function(o){return r.call(a,o)})},this};Nb.prototype.after=function(e,t){if(!this[e])throw new Error('Method "'+e+'" does not exist');if(typeof t!="function")throw new Error('Invalid argument "fn", function expected');var r=this[e],a=this;return this[e]=function(s){return r.call(a,s).then(function(o){return t.call(a,o)})},this};Nb.prototype._blob_to_image=function(e){var t=window.URL||window.webkitURL||window.mozURL||window.msURL;return e.image=document.createElement("img"),e.image_url=t.createObjectURL(e.blob),e.image.src=e.image_url,new Promise(function(r,a){e.image.onerror=function(){a(new Error("ImageBlobReduce: failed to create Image() from blob"))},e.image.onload=function(){r(e)}})};Nb.prototype._calculate_size=function(e){var t=e.opts.max/Math.max(e.image.width,e.image.height);return t>1&&(t=1),e.transform_width=Math.max(Math.round(e.image.width*t),1),e.transform_height=Math.max(Math.round(e.image.height*t),1),e.scale_factor=t,Promise.resolve(e)};Nb.prototype._transform=function(e){e.out_canvas=this.pica.options.createCanvas(e.transform_width,e.transform_height),e.transform_width=null,e.transform_height=null;var t={alpha:e.blob.type==="image/png"};return this.utils.assign(t,this.utils.pick_pica_resize_options(e.opts)),this.pica.resize(e.image,e.out_canvas,t).then(function(){return e})};Nb.prototype._cleanup=function(e){e.image.src="",e.image=null;var t=window.URL||window.webkitURL||window.mozURL||window.msURL;return t.revokeObjectURL&&t.revokeObjectURL(e.image_url),e.image_url=null,Promise.resolve(e)};Nb.prototype._create_blob=function(e){return this.pica.toBlob(e.out_canvas,e.blob.type).then(function(t){return e.out_blob=t,e})};Nb.prototype._getUint8Array=function(e){return e.arrayBuffer?e.arrayBuffer().then(function(t){return new Uint8Array(t)}):new Promise(function(t,r){var a=new FileReader;a.readAsArrayBuffer(e),a.onload=function(){t(new Uint8Array(a.result))},a.onerror=function(){r(new Error("ImageBlobReduce: failed to load data from input blob")),a.abort()},a.onabort=function(){r(new Error("ImageBlobReduce: failed to load data from input blob (aborted)"))}})};Nb.pica=MQn;var mta=Nb;const eCa=Object.freeze(Object.defineProperty({__proto__:null,default:mta},Symbol.toStringTag,{value:"Module"}));let tCa=(e=21)=>crypto.getRandomValues(new Uint8Array(e)).reduce((t,r)=>(r&=63,r<36?t+=r.toString(36):r<62?t+=(r-26).toString(36).toUpperCase():r>62?t+="-":t+="_",t),"");/*! @license DOMPurify 3.1.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.1.6/LICENSE */const{entries:PQn,setPrototypeOf:WTn,isFrozen:bta,getPrototypeOf:yta,getOwnPropertyDescriptor:vta}=Object;let{freeze:fv,seal:NS,create:BQn}=Object,{apply:Wut,construct:Kut}=typeof Reflect<"u"&&Reflect;fv||(fv=function(t){return t});NS||(NS=function(t){return t});Wut||(Wut=function(t,r,a){return t.apply(r,a)});Kut||(Kut=function(t,r){return new t(...r)});const bEe=qw(Array.prototype.forEach),KTn=qw(Array.prototype.pop),fie=qw(Array.prototype.push),tSe=qw(String.prototype.toLowerCase),oat=qw(String.prototype.toString),XTn=qw(String.prototype.match),pie=qw(String.prototype.replace),_ta=qw(String.prototype.indexOf),wta=qw(String.prototype.trim),T3=qw(Object.prototype.hasOwnProperty),$y=qw(RegExp.prototype.test),gie=Eta(TypeError);function qw(e){return function(t){for(var r=arguments.length,a=new Array(r>1?r-1:0),s=1;s2&&arguments[2]!==void 0?arguments[2]:tSe;WTn&&WTn(e,null);let a=t.length;for(;a--;){let s=t[a];if(typeof s=="string"){const o=r(s);o!==s&&(bta(t)||(t[a]=o),s=o)}e[s]=!0}return e}function xta(e){for(let t=0;t/gm),kta=NS(/\${[\w\W]*}/gm),Rta=NS(/^data-[\-\w.\u00B7-\uFFFF]/),Ita=NS(/^aria-[\-\w]+$/),FQn=NS(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Nta=NS(/^(?:\w+script|data):/i),Ota=NS(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),$Qn=NS(/^html$/i),Lta=NS(/^[a-z][.\w]*(-[.\w]+)+$/i);var t5n=Object.freeze({__proto__:null,MUSTACHE_EXPR:Cta,ERB_EXPR:Ata,TMPLIT_EXPR:kta,DATA_ATTR:Rta,ARIA_ATTR:Ita,IS_ALLOWED_URI:FQn,IS_SCRIPT_OR_DATA:Nta,ATTR_WHITESPACE:Ota,DOCTYPE_NAME:$Qn,CUSTOM_ELEMENT:Lta});const bie={element:1,text:3,progressingInstruction:7,comment:8,document:9},Dta=function(){return typeof window>"u"?null:window},Mta=function(t,r){if(typeof t!="object"||typeof t.createPolicy!="function")return null;let a=null;const s="data-tt-policy-suffix";r&&r.hasAttribute(s)&&(a=r.getAttribute(s));const o="dompurify"+(a?"#"+a:"");try{return t.createPolicy(o,{createHTML(u){return u},createScriptURL(u){return u}})}catch{return console.warn("TrustedTypes policy "+o+" could not be created."),null}};function UQn(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Dta();const t=Fi=>UQn(Fi);if(t.version="3.1.6",t.removed=[],!e||!e.document||e.document.nodeType!==bie.document)return t.isSupported=!1,t;let{document:r}=e;const a=r,s=a.currentScript,{DocumentFragment:o,HTMLTemplateElement:u,Node:h,Element:f,NodeFilter:p,NamedNodeMap:m=e.NamedNodeMap||e.MozNamedAttrMap,HTMLFormElement:b,DOMParser:_,trustedTypes:w}=e,S=f.prototype,C=mie(S,"cloneNode"),A=mie(S,"remove"),k=mie(S,"nextSibling"),I=mie(S,"childNodes"),N=mie(S,"parentNode");if(typeof u=="function"){const Fi=r.createElement("template");Fi.content&&Fi.content.ownerDocument&&(r=Fi.content.ownerDocument)}let L,P="";const{implementation:M,createNodeIterator:F,createDocumentFragment:U,getElementsByTagName:$}=r,{importNode:G}=a;let B={};t.isSupported=typeof PQn=="function"&&typeof N=="function"&&M&&M.createHTMLDocument!==void 0;const{MUSTACHE_EXPR:Z,ERB_EXPR:z,TMPLIT_EXPR:Y,DATA_ATTR:W,ARIA_ATTR:Q,IS_SCRIPT_OR_DATA:V,ATTR_WHITESPACE:j,CUSTOM_ELEMENT:ee}=t5n;let{IS_ALLOWED_URI:te}=t5n,ne=null;const se=cc({},[...QTn,...lat,...cat,...uat,...ZTn]);let ie=null;const ge=cc({},[...JTn,...hat,...e5n,...yEe]);let ce=Object.seal(BQn(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),be=null,ve=null,De=!0,ye=!0,Ee=!1,he=!0,we=!1,Ce=!0,Ie=!1,Le=!1,Fe=!1,Ve=!1,Oe=!1,Dt=!1,ot=!0,sn=!1;const Kt="user-content-";let Ft=!0,Je=!1,ht={},et=null;const qe=cc({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let He=null;const Ge=cc({},["audio","video","img","source","image","track"]);let Ye=null;const Ae=cc({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),Xe="http://www.w3.org/1998/Math/MathML",fe="http://www.w3.org/2000/svg",Qe="http://www.w3.org/1999/xhtml";let Ke=Qe,mt=!1,lt=null;const $t=cc({},[Xe,fe,Qe],oat);let Ut=null;const Jt=["application/xhtml+xml","text/html"],wn="text/html";let Vn=null,Wn=null;const Dn=r.createElement("form"),zn=function(Pt){return Pt instanceof RegExp||Pt instanceof Function},vn=function(){let Pt=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if(!(Wn&&Wn===Pt)){if((!Pt||typeof Pt!="object")&&(Pt={}),Pt=DB(Pt),Ut=Jt.indexOf(Pt.PARSER_MEDIA_TYPE)===-1?wn:Pt.PARSER_MEDIA_TYPE,Vn=Ut==="application/xhtml+xml"?oat:tSe,ne=T3(Pt,"ALLOWED_TAGS")?cc({},Pt.ALLOWED_TAGS,Vn):se,ie=T3(Pt,"ALLOWED_ATTR")?cc({},Pt.ALLOWED_ATTR,Vn):ge,lt=T3(Pt,"ALLOWED_NAMESPACES")?cc({},Pt.ALLOWED_NAMESPACES,oat):$t,Ye=T3(Pt,"ADD_URI_SAFE_ATTR")?cc(DB(Ae),Pt.ADD_URI_SAFE_ATTR,Vn):Ae,He=T3(Pt,"ADD_DATA_URI_TAGS")?cc(DB(Ge),Pt.ADD_DATA_URI_TAGS,Vn):Ge,et=T3(Pt,"FORBID_CONTENTS")?cc({},Pt.FORBID_CONTENTS,Vn):qe,be=T3(Pt,"FORBID_TAGS")?cc({},Pt.FORBID_TAGS,Vn):{},ve=T3(Pt,"FORBID_ATTR")?cc({},Pt.FORBID_ATTR,Vn):{},ht=T3(Pt,"USE_PROFILES")?Pt.USE_PROFILES:!1,De=Pt.ALLOW_ARIA_ATTR!==!1,ye=Pt.ALLOW_DATA_ATTR!==!1,Ee=Pt.ALLOW_UNKNOWN_PROTOCOLS||!1,he=Pt.ALLOW_SELF_CLOSE_IN_ATTR!==!1,we=Pt.SAFE_FOR_TEMPLATES||!1,Ce=Pt.SAFE_FOR_XML!==!1,Ie=Pt.WHOLE_DOCUMENT||!1,Ve=Pt.RETURN_DOM||!1,Oe=Pt.RETURN_DOM_FRAGMENT||!1,Dt=Pt.RETURN_TRUSTED_TYPE||!1,Fe=Pt.FORCE_BODY||!1,ot=Pt.SANITIZE_DOM!==!1,sn=Pt.SANITIZE_NAMED_PROPS||!1,Ft=Pt.KEEP_CONTENT!==!1,Je=Pt.IN_PLACE||!1,te=Pt.ALLOWED_URI_REGEXP||FQn,Ke=Pt.NAMESPACE||Qe,ce=Pt.CUSTOM_ELEMENT_HANDLING||{},Pt.CUSTOM_ELEMENT_HANDLING&&zn(Pt.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(ce.tagNameCheck=Pt.CUSTOM_ELEMENT_HANDLING.tagNameCheck),Pt.CUSTOM_ELEMENT_HANDLING&&zn(Pt.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(ce.attributeNameCheck=Pt.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),Pt.CUSTOM_ELEMENT_HANDLING&&typeof Pt.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements=="boolean"&&(ce.allowCustomizedBuiltInElements=Pt.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),we&&(ye=!1),Oe&&(Ve=!0),ht&&(ne=cc({},ZTn),ie=[],ht.html===!0&&(cc(ne,QTn),cc(ie,JTn)),ht.svg===!0&&(cc(ne,lat),cc(ie,hat),cc(ie,yEe)),ht.svgFilters===!0&&(cc(ne,cat),cc(ie,hat),cc(ie,yEe)),ht.mathMl===!0&&(cc(ne,uat),cc(ie,e5n),cc(ie,yEe))),Pt.ADD_TAGS&&(ne===se&&(ne=DB(ne)),cc(ne,Pt.ADD_TAGS,Vn)),Pt.ADD_ATTR&&(ie===ge&&(ie=DB(ie)),cc(ie,Pt.ADD_ATTR,Vn)),Pt.ADD_URI_SAFE_ATTR&&cc(Ye,Pt.ADD_URI_SAFE_ATTR,Vn),Pt.FORBID_CONTENTS&&(et===qe&&(et=DB(et)),cc(et,Pt.FORBID_CONTENTS,Vn)),Ft&&(ne["#text"]=!0),Ie&&cc(ne,["html","head","body"]),ne.table&&(cc(ne,["tbody"]),delete be.tbody),Pt.TRUSTED_TYPES_POLICY){if(typeof Pt.TRUSTED_TYPES_POLICY.createHTML!="function")throw gie('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof Pt.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw gie('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');L=Pt.TRUSTED_TYPES_POLICY,P=L.createHTML("")}else L===void 0&&(L=Mta(w,s)),L!==null&&typeof P=="string"&&(P=L.createHTML(""));fv&&fv(Pt),Wn=Pt}},Cn=cc({},["mi","mo","mn","ms","mtext"]),Ar=cc({},["foreignobject","annotation-xml"]),ur=cc({},["title","style","font","a","script"]),On=cc({},[...lat,...cat,...Sta]),Ir=cc({},[...uat,...Tta]),Ln=function(Pt){let St=N(Pt);(!St||!St.tagName)&&(St={namespaceURI:Ke,tagName:"template"});const Un=tSe(Pt.tagName),Hr=tSe(St.tagName);return lt[Pt.namespaceURI]?Pt.namespaceURI===fe?St.namespaceURI===Qe?Un==="svg":St.namespaceURI===Xe?Un==="svg"&&(Hr==="annotation-xml"||Cn[Hr]):!!On[Un]:Pt.namespaceURI===Xe?St.namespaceURI===Qe?Un==="math":St.namespaceURI===fe?Un==="math"&&Ar[Hr]:!!Ir[Un]:Pt.namespaceURI===Qe?St.namespaceURI===fe&&!Ar[Hr]||St.namespaceURI===Xe&&!Cn[Hr]?!1:!Ir[Un]&&(ur[Un]||!On[Un]):!!(Ut==="application/xhtml+xml"&<[Pt.namespaceURI]):!1},pr=function(Pt){fie(t.removed,{element:Pt});try{N(Pt).removeChild(Pt)}catch{A(Pt)}},Cr=function(Pt,St){try{fie(t.removed,{attribute:St.getAttributeNode(Pt),from:St})}catch{fie(t.removed,{attribute:null,from:St})}if(St.removeAttribute(Pt),Pt==="is"&&!ie[Pt])if(Ve||Oe)try{pr(St)}catch{}else try{St.setAttribute(Pt,"")}catch{}},Zr=function(Pt){let St=null,Un=null;if(Fe)Pt=""+Pt;else{const Rs=XTn(Pt,/^[\r\n\t ]+/);Un=Rs&&Rs[0]}Ut==="application/xhtml+xml"&&Ke===Qe&&(Pt=''+Pt+"");const Hr=L?L.createHTML(Pt):Pt;if(Ke===Qe)try{St=new _().parseFromString(Hr,Ut)}catch{}if(!St||!St.documentElement){St=M.createDocument(Ke,"template",null);try{St.documentElement.innerHTML=mt?P:Hr}catch{}}const za=St.body||St.documentElement;return Pt&&Un&&za.insertBefore(r.createTextNode(Un),za.childNodes[0]||null),Ke===Qe?$.call(St,Ie?"html":"body")[0]:Ie?St.documentElement:za},Pr=function(Pt){return F.call(Pt.ownerDocument||Pt,Pt,p.SHOW_ELEMENT|p.SHOW_COMMENT|p.SHOW_TEXT|p.SHOW_PROCESSING_INSTRUCTION|p.SHOW_CDATA_SECTION,null)},Ci=function(Pt){return Pt instanceof b&&(typeof Pt.nodeName!="string"||typeof Pt.textContent!="string"||typeof Pt.removeChild!="function"||!(Pt.attributes instanceof m)||typeof Pt.removeAttribute!="function"||typeof Pt.setAttribute!="function"||typeof Pt.namespaceURI!="string"||typeof Pt.insertBefore!="function"||typeof Pt.hasChildNodes!="function")},ds=function(Pt){return typeof h=="function"&&Pt instanceof h},ta=function(Pt,St,Un){B[Pt]&&bEe(B[Pt],Hr=>{Hr.call(t,St,Un,Wn)})},Os=function(Pt){let St=null;if(ta("beforeSanitizeElements",Pt,null),Ci(Pt))return pr(Pt),!0;const Un=Vn(Pt.nodeName);if(ta("uponSanitizeElement",Pt,{tagName:Un,allowedTags:ne}),Pt.hasChildNodes()&&!ds(Pt.firstElementChild)&&$y(/<[/\w]/g,Pt.innerHTML)&&$y(/<[/\w]/g,Pt.textContent)||Pt.nodeType===bie.progressingInstruction||Ce&&Pt.nodeType===bie.comment&&$y(/<[/\w]/g,Pt.data))return pr(Pt),!0;if(!ne[Un]||be[Un]){if(!be[Un]&&Ls(Un)&&(ce.tagNameCheck instanceof RegExp&&$y(ce.tagNameCheck,Un)||ce.tagNameCheck instanceof Function&&ce.tagNameCheck(Un)))return!1;if(Ft&&!et[Un]){const Hr=N(Pt)||Pt.parentNode,za=I(Pt)||Pt.childNodes;if(za&&Hr){const Rs=za.length;for(let Vr=Rs-1;Vr>=0;--Vr){const Ii=C(za[Vr],!0);Ii.__removalCount=(Pt.__removalCount||0)+1,Hr.insertBefore(Ii,k(Pt))}}}return pr(Pt),!0}return Pt instanceof f&&!Ln(Pt)||(Un==="noscript"||Un==="noembed"||Un==="noframes")&&$y(/<\/no(script|embed|frames)/i,Pt.innerHTML)?(pr(Pt),!0):(we&&Pt.nodeType===bie.text&&(St=Pt.textContent,bEe([Z,z,Y],Hr=>{St=pie(St,Hr," ")}),Pt.textContent!==St&&(fie(t.removed,{element:Pt.cloneNode()}),Pt.textContent=St)),ta("afterSanitizeElements",Pt,null),!1)},uo=function(Pt,St,Un){if(ot&&(St==="id"||St==="name")&&(Un in r||Un in Dn))return!1;if(!(ye&&!ve[St]&&$y(W,St))){if(!(De&&$y(Q,St))){if(!ie[St]||ve[St]){if(!(Ls(Pt)&&(ce.tagNameCheck instanceof RegExp&&$y(ce.tagNameCheck,Pt)||ce.tagNameCheck instanceof Function&&ce.tagNameCheck(Pt))&&(ce.attributeNameCheck instanceof RegExp&&$y(ce.attributeNameCheck,St)||ce.attributeNameCheck instanceof Function&&ce.attributeNameCheck(St))||St==="is"&&ce.allowCustomizedBuiltInElements&&(ce.tagNameCheck instanceof RegExp&&$y(ce.tagNameCheck,Un)||ce.tagNameCheck instanceof Function&&ce.tagNameCheck(Un))))return!1}else if(!Ye[St]){if(!$y(te,pie(Un,j,""))){if(!((St==="src"||St==="xlink:href"||St==="href")&&Pt!=="script"&&_ta(Un,"data:")===0&&He[Pt])){if(!(Ee&&!$y(V,pie(Un,j,"")))){if(Un)return!1}}}}}}return!0},Ls=function(Pt){return Pt!=="annotation-xml"&&XTn(Pt,ee)},La=function(Pt){ta("beforeSanitizeAttributes",Pt,null);const{attributes:St}=Pt;if(!St)return;const Un={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:ie};let Hr=St.length;for(;Hr--;){const za=St[Hr],{name:Rs,namespaceURI:Vr,value:Ii}=za,Pa=Vn(Rs);let Or=Rs==="value"?Ii:wta(Ii);if(Un.attrName=Pa,Un.attrValue=Or,Un.keepAttr=!0,Un.forceKeepAttr=void 0,ta("uponSanitizeAttribute",Pt,Un),Or=Un.attrValue,Ce&&$y(/((--!?|])>)|<\/(style|title)/i,Or)){Cr(Rs,Pt);continue}if(Un.forceKeepAttr||(Cr(Rs,Pt),!Un.keepAttr))continue;if(!he&&$y(/\/>/i,Or)){Cr(Rs,Pt);continue}we&&bEe([Z,z,Y],dt=>{Or=pie(Or,dt," ")});const no=Vn(Pt.nodeName);if(uo(no,Pa,Or)){if(sn&&(Pa==="id"||Pa==="name")&&(Cr(Rs,Pt),Or=Kt+Or),L&&typeof w=="object"&&typeof w.getAttributeType=="function"&&!Vr)switch(w.getAttributeType(no,Pa)){case"TrustedHTML":{Or=L.createHTML(Or);break}case"TrustedScriptURL":{Or=L.createScriptURL(Or);break}}try{Vr?Pt.setAttributeNS(Vr,Rs,Or):Pt.setAttribute(Rs,Or),Ci(Pt)?pr(Pt):KTn(t.removed)}catch{}}}ta("afterSanitizeAttributes",Pt,null)},to=function Fi(Pt){let St=null;const Un=Pr(Pt);for(ta("beforeSanitizeShadowDOM",Pt,null);St=Un.nextNode();)ta("uponSanitizeShadowNode",St,null),!Os(St)&&(St.content instanceof o&&Fi(St.content),La(St));ta("afterSanitizeShadowDOM",Pt,null)};return t.sanitize=function(Fi){let Pt=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},St=null,Un=null,Hr=null,za=null;if(mt=!Fi,mt&&(Fi=""),typeof Fi!="string"&&!ds(Fi))if(typeof Fi.toString=="function"){if(Fi=Fi.toString(),typeof Fi!="string")throw gie("dirty is not a string, aborting")}else throw gie("toString is not a function");if(!t.isSupported)return Fi;if(Le||vn(Pt),t.removed=[],typeof Fi=="string"&&(Je=!1),Je){if(Fi.nodeName){const Ii=Vn(Fi.nodeName);if(!ne[Ii]||be[Ii])throw gie("root node is forbidden and cannot be sanitized in-place")}}else if(Fi instanceof h)St=Zr(""),Un=St.ownerDocument.importNode(Fi,!0),Un.nodeType===bie.element&&Un.nodeName==="BODY"||Un.nodeName==="HTML"?St=Un:St.appendChild(Un);else{if(!Ve&&!we&&!Ie&&Fi.indexOf("<")===-1)return L&&Dt?L.createHTML(Fi):Fi;if(St=Zr(Fi),!St)return Ve?null:Dt?P:""}St&&Fe&&pr(St.firstChild);const Rs=Pr(Je?Fi:St);for(;Hr=Rs.nextNode();)Os(Hr)||(Hr.content instanceof o&&to(Hr.content),La(Hr));if(Je)return Fi;if(Ve){if(Oe)for(za=U.call(St.ownerDocument);St.firstChild;)za.appendChild(St.firstChild);else za=St;return(ie.shadowroot||ie.shadowrootmode)&&(za=G.call(a,za,!0)),za}let Vr=Ie?St.outerHTML:St.innerHTML;return Ie&&ne["!doctype"]&&St.ownerDocument&&St.ownerDocument.doctype&&St.ownerDocument.doctype.name&&$y($Qn,St.ownerDocument.doctype.name)&&(Vr=" +`+Vr),we&&bEe([Z,z,Y],Ii=>{Vr=pie(Vr,Ii," ")}),L&&Dt?L.createHTML(Vr):Vr},t.setConfig=function(){let Fi=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};vn(Fi),Le=!0},t.clearConfig=function(){Wn=null,Le=!1},t.isValidAttribute=function(Fi,Pt,St){Wn||vn({});const Un=Vn(Fi),Hr=Vn(Pt);return uo(Un,Hr,St)},t.addHook=function(Fi,Pt){typeof Pt=="function"&&(B[Fi]=B[Fi]||[],fie(B[Fi],Pt))},t.removeHook=function(Fi){if(B[Fi])return KTn(B[Fi])},t.removeHooks=function(Fi){B[Fi]&&(B[Fi]=[])},t.removeAllHooks=function(){B={}},t}var rW=UQn();const e7={trace:0,debug:1,info:2,warn:3,error:4,fatal:5},ut={trace:(...e)=>{},debug:(...e)=>{},info:(...e)=>{},warn:(...e)=>{},error:(...e)=>{},fatal:(...e)=>{}},gbt=function(e="fatal"){let t=e7.fatal;typeof e=="string"?(e=e.toLowerCase(),e in e7&&(t=e7[e])):typeof e=="number"&&(t=e),ut.trace=()=>{},ut.debug=()=>{},ut.info=()=>{},ut.warn=()=>{},ut.error=()=>{},ut.fatal=()=>{},t<=e7.fatal&&(ut.fatal=console.error?console.error.bind(console,$x("FATAL"),"color: orange"):console.log.bind(console,"\x1B[35m",$x("FATAL"))),t<=e7.error&&(ut.error=console.error?console.error.bind(console,$x("ERROR"),"color: orange"):console.log.bind(console,"\x1B[31m",$x("ERROR"))),t<=e7.warn&&(ut.warn=console.warn?console.warn.bind(console,$x("WARN"),"color: orange"):console.log.bind(console,"\x1B[33m",$x("WARN"))),t<=e7.info&&(ut.info=console.info?console.info.bind(console,$x("INFO"),"color: lightblue"):console.log.bind(console,"\x1B[34m",$x("INFO"))),t<=e7.debug&&(ut.debug=console.debug?console.debug.bind(console,$x("DEBUG"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",$x("DEBUG"))),t<=e7.trace&&(ut.trace=console.debug?console.debug.bind(console,$x("TRACE"),"color: lightgreen"):console.log.bind(console,"\x1B[32m",$x("TRACE")))},$x=e=>`%c${Fc().format("ss.SSS")} : ${e} : `,aK=//gi,Pta=e=>e?GQn(e).replace(/\\n/g,"#br#").split("#br#"):[""],Bta=(()=>{let e=!1;return()=>{e||(Fta(),e=!0)}})();function Fta(){const e="data-temp-href-target";rW.addHook("beforeSanitizeAttributes",t=>{t.tagName==="A"&&t.hasAttribute("target")&&t.setAttribute(e,t.getAttribute("target")||"")}),rW.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"))})}const zQn=e=>(Bta(),rW.sanitize(e)),n5n=(e,t)=>{var r;if(((r=t.flowchart)==null?void 0:r.htmlLabels)!==!1){const a=t.securityLevel;a==="antiscript"||a==="strict"?e=zQn(e):a!=="loose"&&(e=GQn(e),e=e.replace(//g,">"),e=e.replace(/=/g,"="),e=Gta(e))}return e},J0=(e,t)=>e&&(t.dompurifyConfig?e=rW.sanitize(n5n(e,t),t.dompurifyConfig).toString():e=rW.sanitize(n5n(e,t),{FORBID_TAGS:["style"]}).toString(),e),$ta=(e,t)=>typeof e=="string"?J0(e,t):e.flat().map(r=>J0(r,t)),Uta=e=>aK.test(e),zta=e=>e.split(aK),Gta=e=>e.replace(/#br#/g,"
    "),GQn=e=>e.replace(aK,"#br#"),qta=e=>{let t="";return e&&(t=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,t=t.replaceAll(/\(/g,"\\("),t=t.replaceAll(/\)/g,"\\)")),t},Np=e=>!(e===!1||["false","null","0"].includes(String(e).trim().toLowerCase())),Hta=function(...e){const t=e.filter(r=>!isNaN(r));return Math.max(...t)},Vta=function(...e){const t=e.filter(r=>!isNaN(r));return Math.min(...t)},Nse=function(e){const t=e.split(/(,)/),r=[];for(let a=0;a0&&a+1Math.max(0,e.split(t).length-1),Yta=(e,t)=>{const r=Xut(e,"~"),a=Xut(t,"~");return r===1&&a===1},jta=e=>{const t=Xut(e,"~");let r=!1;if(t<=1)return e;t%2!==0&&e.startsWith("~")&&(e=e.substring(1),r=!0);const a=[...e];let s=a.indexOf("~"),o=a.lastIndexOf("~");for(;s!==-1&&o!==-1&&s!==o;)a[s]="<",a[o]=">",s=a.indexOf("~"),o=a.lastIndexOf("~");return r&&a.unshift("~"),a.join("")},r5n=()=>window.MathMLElement!==void 0,Qut=/\$\$(.*)\$\$/g,OS=e=>{var t;return(((t=e.match(Qut))==null?void 0:t.length)??0)>0},Xce=async(e,t)=>{e=await Z$(e,t);const r=document.createElement("div");r.innerHTML=e,r.id="katex-temp",r.style.visibility="hidden",r.style.position="absolute",r.style.top="0";const a=document.querySelector("body");a==null||a.insertAdjacentElement("beforeend",r);const s={width:r.clientWidth,height:r.clientHeight};return r.remove(),s},Z$=async(e,t)=>{if(!OS(e))return e;if(!r5n()&&!t.legacyMathML)return e.replace(Qut,"MathML is unsupported in this environment.");const{default:r}=await ea(async()=>{const{default:a}=await Promise.resolve().then(()=>rzr);return{default:a}},void 0);return e.split(aK).map(a=>OS(a)?` +
    + ${a} +
    + `:`
    ${a}
    `).join("").replace(Qut,(a,s)=>r.renderToString(s,{throwOnError:!0,displayMode:!0,output:r5n()?"mathml":"htmlAndMathml"}).replace(/\n/g," ").replace(//g,""))},mi={getRows:Pta,sanitizeText:J0,sanitizeTextOrArray:$ta,hasBreaks:Uta,splitBreaks:zta,lineBreakRegex:aK,removeScript:zQn,getUrl:qta,evaluate:Np,getMax:Hta,getMin:Vta},tv=(e,t)=>t?gt(e,{s:-40,l:10}):gt(e,{s:-40,l:-10}),s6e="#ffffff",o6e="#f2f2f2";let Wta=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 t,r,a,s,o,u,h,f,p,m,b;if(this.primaryTextColor=this.primaryTextColor||(this.darkMode?"#eee":"#333"),this.secondaryColor=this.secondaryColor||gt(this.primaryColor,{h:-120}),this.tertiaryColor=this.tertiaryColor||gt(this.primaryColor,{h:180,l:5}),this.primaryBorderColor=this.primaryBorderColor||tv(this.primaryColor,this.darkMode),this.secondaryBorderColor=this.secondaryBorderColor||tv(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=this.tertiaryBorderColor||tv(this.tertiaryColor,this.darkMode),this.noteBorderColor=this.noteBorderColor||tv(this.noteBkgColor,this.darkMode),this.noteBkgColor=this.noteBkgColor||"#fff5ad",this.noteTextColor=this.noteTextColor||"#333",this.secondaryTextColor=this.secondaryTextColor||ir(this.secondaryColor),this.tertiaryTextColor=this.tertiaryTextColor||ir(this.tertiaryColor),this.lineColor=this.lineColor||ir(this.background),this.arrowheadColor=this.arrowheadColor||ir(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?qr(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||"grey",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||qr(this.secondaryColor,10),this.activationBkgColor=this.activationBkgColor||this.secondaryColor,this.sequenceNumberColor=this.sequenceNumberColor||ir(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||Nr(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.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.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||gt(this.primaryColor,{h:30}),this.cScale4=this.cScale4||gt(this.primaryColor,{h:60}),this.cScale5=this.cScale5||gt(this.primaryColor,{h:90}),this.cScale6=this.cScale6||gt(this.primaryColor,{h:120}),this.cScale7=this.cScale7||gt(this.primaryColor,{h:150}),this.cScale8=this.cScale8||gt(this.primaryColor,{h:210,l:150}),this.cScale9=this.cScale9||gt(this.primaryColor,{h:270}),this.cScale10=this.cScale10||gt(this.primaryColor,{h:300}),this.cScale11=this.cScale11||gt(this.primaryColor,{h:330}),this.darkMode)for(let w=0;w{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}};const Kta=e=>{const t=new Wta;return t.calculate(e),t};let Xta=class{constructor(){this.background="#333",this.primaryColor="#1f2020",this.secondaryColor=Nr(this.primaryColor,16),this.tertiaryColor=gt(this.primaryColor,{h:-160}),this.primaryBorderColor=ir(this.background),this.secondaryBorderColor=tv(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=tv(this.tertiaryColor,this.darkMode),this.primaryTextColor=ir(this.primaryColor),this.secondaryTextColor=ir(this.secondaryColor),this.tertiaryTextColor=ir(this.tertiaryColor),this.lineColor=ir(this.background),this.textColor=ir(this.background),this.mainBkg="#1f2020",this.secondBkg="calculated",this.mainContrastColor="lightgrey",this.darkTextColor=Nr(ir("#323D47"),10),this.lineColor="calculated",this.border1="#81B1DB",this.border2=Z2(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=qr("#EAE8D9",30),this.altSectionBkgColor="calculated",this.sectionBkgColor2="#EAE8D9",this.excludeBkgColor=qr(this.sectionBkgColor,10),this.taskBorderColor=Z2(255,255,255,70),this.taskBkgColor="calculated",this.taskTextColor="calculated",this.taskTextLightColor="calculated",this.taskTextOutsideColor="calculated",this.taskTextClickableColor="#003163",this.activeTaskBorderColor=Z2(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.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.labelColor="calculated",this.errorBkgColor="#a44141",this.errorTextColor="#ddd"}updateColors(){var t,r,a,s,o,u,h,f,p,m,b;this.secondBkg=Nr(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=Nr(this.labelBackground,25),this.actorBorder=this.border1,this.actorBkg=this.mainBkg,this.actorTextColor=this.mainContrastColor,this.actorLineColor=this.mainContrastColor,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=Nr(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=this.darkTextColor,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=gt(this.primaryColor,{h:64}),this.fillType3=gt(this.secondaryColor,{h:64}),this.fillType4=gt(this.primaryColor,{h:-64}),this.fillType5=gt(this.secondaryColor,{h:-64}),this.fillType6=gt(this.primaryColor,{h:128}),this.fillType7=gt(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||gt(this.primaryColor,{h:30}),this.cScale4=this.cScale4||gt(this.primaryColor,{h:60}),this.cScale5=this.cScale5||gt(this.primaryColor,{h:90}),this.cScale6=this.cScale6||gt(this.primaryColor,{h:120}),this.cScale7=this.cScale7||gt(this.primaryColor,{h:150}),this.cScale8=this.cScale8||gt(this.primaryColor,{h:210}),this.cScale9=this.cScale9||gt(this.primaryColor,{h:270}),this.cScale10=this.cScale10||gt(this.primaryColor,{h:300}),this.cScale11=this.cScale11||gt(this.primaryColor,{h:330});for(let _=0;_{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}};const Qta=e=>{const t=new Xta;return t.calculate(e),t};let Zta=class{constructor(){this.background="#f4f4f4",this.primaryColor="#ECECFF",this.secondaryColor=gt(this.primaryColor,{h:120}),this.secondaryColor="#ffffde",this.tertiaryColor=gt(this.primaryColor,{h:-160}),this.primaryBorderColor=tv(this.primaryColor,this.darkMode),this.secondaryBorderColor=tv(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=tv(this.tertiaryColor,this.darkMode),this.primaryTextColor=ir(this.primaryColor),this.secondaryTextColor=ir(this.secondaryColor),this.tertiaryTextColor=ir(this.tertiaryColor),this.lineColor=ir(this.background),this.textColor=ir(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="#e8e8e8",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="grey",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.sectionBkgColor=Z2(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.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222",this.updateColors()}updateColors(){var t,r,a,s,o,u,h,f,p,m,b;this.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||gt(this.primaryColor,{h:30}),this.cScale4=this.cScale4||gt(this.primaryColor,{h:60}),this.cScale5=this.cScale5||gt(this.primaryColor,{h:90}),this.cScale6=this.cScale6||gt(this.primaryColor,{h:120}),this.cScale7=this.cScale7||gt(this.primaryColor,{h:150}),this.cScale8=this.cScale8||gt(this.primaryColor,{h:210}),this.cScale9=this.cScale9||gt(this.primaryColor,{h:270}),this.cScale10=this.cScale10||gt(this.primaryColor,{h:300}),this.cScale11=this.cScale11||gt(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||qr(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||qr(this.tertiaryColor,40);for(let _=0;_{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}};const mbt=e=>{const t=new Zta;return t.calculate(e),t};let Jta=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=Nr("#cde498",10),this.primaryBorderColor=tv(this.primaryColor,this.darkMode),this.secondaryBorderColor=tv(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=tv(this.tertiaryColor,this.darkMode),this.primaryTextColor=ir(this.primaryColor),this.secondaryTextColor=ir(this.secondaryColor),this.tertiaryTextColor=ir(this.primaryColor),this.lineColor=ir(this.background),this.textColor=ir(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="grey",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.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222"}updateColors(){var t,r,a,s,o,u,h,f,p,m,b;this.actorBorder=qr(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.cScale0=this.cScale0||this.primaryColor,this.cScale1=this.cScale1||this.secondaryColor,this.cScale2=this.cScale2||this.tertiaryColor,this.cScale3=this.cScale3||gt(this.primaryColor,{h:30}),this.cScale4=this.cScale4||gt(this.primaryColor,{h:60}),this.cScale5=this.cScale5||gt(this.primaryColor,{h:90}),this.cScale6=this.cScale6||gt(this.primaryColor,{h:120}),this.cScale7=this.cScale7||gt(this.primaryColor,{h:150}),this.cScale8=this.cScale8||gt(this.primaryColor,{h:210}),this.cScale9=this.cScale9||gt(this.primaryColor,{h:270}),this.cScale10=this.cScale10||gt(this.primaryColor,{h:300}),this.cScale11=this.cScale11||gt(this.primaryColor,{h:330}),this.cScalePeer1=this.cScalePeer1||qr(this.secondaryColor,45),this.cScalePeer2=this.cScalePeer2||qr(this.tertiaryColor,40);for(let _=0;_{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}};const ena=e=>{const t=new Jta;return t.calculate(e),t};class tna{constructor(){this.primaryColor="#eee",this.contrast="#707070",this.secondaryColor=Nr(this.contrast,55),this.background="#ffffff",this.tertiaryColor=gt(this.primaryColor,{h:-160}),this.primaryBorderColor=tv(this.primaryColor,this.darkMode),this.secondaryBorderColor=tv(this.secondaryColor,this.darkMode),this.tertiaryBorderColor=tv(this.tertiaryColor,this.darkMode),this.primaryTextColor=ir(this.primaryColor),this.secondaryTextColor=ir(this.secondaryColor),this.tertiaryTextColor=ir(this.tertiaryColor),this.lineColor=ir(this.background),this.textColor=ir(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="calculated",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.personBorder=this.primaryBorderColor,this.personBkg=this.mainBkg,this.labelColor="black",this.errorBkgColor="#552222",this.errorTextColor="#552222"}updateColors(){var t,r,a,s,o,u,h,f,p,m,b;this.secondBkg=Nr(this.contrast,55),this.border2=this.contrast,this.actorBorder=Nr(this.border1,23),this.actorBkg=this.mainBkg,this.actorTextColor=this.text,this.actorLineColor=this.lineColor,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 _=0;_{this[a]=t[a]}),this.updateColors(),r.forEach(a=>{this[a]=t[a]})}}const nna=e=>{const t=new tna;return t.calculate(e),t},V7={base:{getThemeVariables:Kta},dark:{getThemeVariables:Qta},default:{getThemeVariables:mbt},forest:{getThemeVariables:ena},neutral:{getThemeVariables:nna}},t7={flowchart:{useMaxWidth:!0,titleTopMargin:25,subGraphTitleMargin:{top:0,bottom:0},diagramPadding:8,htmlLabels:!0,nodeSpacing:50,rankSpacing:50,curve:"basis",padding:15,defaultRenderer:"dagre-wrapper",wrappingWidth:200},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,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"]},class:{useMaxWidth:!0,titleTopMargin:25,arrowMarkerAbsolute:!1,dividerMargin:10,padding:5,textHeight:10,defaultRenderer:"dagre-wrapper",htmlLabels:!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,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,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},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},theme:"default",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","maxEdges"],legacyMathML:!1,deterministicIds:!1,fontSize:16},qQn={...t7,deterministicIDSeed:void 0,themeCSS:void 0,themeVariables:V7.default.getThemeVariables(),sequence:{...t7.sequence,messageFont:function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}},noteFont:function(){return{fontFamily:this.noteFontFamily,fontSize:this.noteFontSize,fontWeight:this.noteFontWeight}},actorFont:function(){return{fontFamily:this.actorFontFamily,fontSize:this.actorFontSize,fontWeight:this.actorFontWeight}}},gantt:{...t7.gantt,tickInterval:void 0,useWidth:void 0},c4:{...t7.c4,useWidth:void 0,personFont:function(){return{fontFamily:this.personFontFamily,fontSize:this.personFontSize,fontWeight:this.personFontWeight}},external_personFont:function(){return{fontFamily:this.external_personFontFamily,fontSize:this.external_personFontSize,fontWeight:this.external_personFontWeight}},systemFont:function(){return{fontFamily:this.systemFontFamily,fontSize:this.systemFontSize,fontWeight:this.systemFontWeight}},external_systemFont:function(){return{fontFamily:this.external_systemFontFamily,fontSize:this.external_systemFontSize,fontWeight:this.external_systemFontWeight}},system_dbFont:function(){return{fontFamily:this.system_dbFontFamily,fontSize:this.system_dbFontSize,fontWeight:this.system_dbFontWeight}},external_system_dbFont:function(){return{fontFamily:this.external_system_dbFontFamily,fontSize:this.external_system_dbFontSize,fontWeight:this.external_system_dbFontWeight}},system_queueFont:function(){return{fontFamily:this.system_queueFontFamily,fontSize:this.system_queueFontSize,fontWeight:this.system_queueFontWeight}},external_system_queueFont:function(){return{fontFamily:this.external_system_queueFontFamily,fontSize:this.external_system_queueFontSize,fontWeight:this.external_system_queueFontWeight}},containerFont:function(){return{fontFamily:this.containerFontFamily,fontSize:this.containerFontSize,fontWeight:this.containerFontWeight}},external_containerFont:function(){return{fontFamily:this.external_containerFontFamily,fontSize:this.external_containerFontSize,fontWeight:this.external_containerFontWeight}},container_dbFont:function(){return{fontFamily:this.container_dbFontFamily,fontSize:this.container_dbFontSize,fontWeight:this.container_dbFontWeight}},external_container_dbFont:function(){return{fontFamily:this.external_container_dbFontFamily,fontSize:this.external_container_dbFontSize,fontWeight:this.external_container_dbFontWeight}},container_queueFont:function(){return{fontFamily:this.container_queueFontFamily,fontSize:this.container_queueFontSize,fontWeight:this.container_queueFontWeight}},external_container_queueFont:function(){return{fontFamily:this.external_container_queueFontFamily,fontSize:this.external_container_queueFontSize,fontWeight:this.external_container_queueFontWeight}},componentFont:function(){return{fontFamily:this.componentFontFamily,fontSize:this.componentFontSize,fontWeight:this.componentFontWeight}},external_componentFont:function(){return{fontFamily:this.external_componentFontFamily,fontSize:this.external_componentFontSize,fontWeight:this.external_componentFontWeight}},component_dbFont:function(){return{fontFamily:this.component_dbFontFamily,fontSize:this.component_dbFontSize,fontWeight:this.component_dbFontWeight}},external_component_dbFont:function(){return{fontFamily:this.external_component_dbFontFamily,fontSize:this.external_component_dbFontSize,fontWeight:this.external_component_dbFontWeight}},component_queueFont:function(){return{fontFamily:this.component_queueFontFamily,fontSize:this.component_queueFontSize,fontWeight:this.component_queueFontWeight}},external_component_queueFont:function(){return{fontFamily:this.external_component_queueFontFamily,fontSize:this.external_component_queueFontSize,fontWeight:this.external_component_queueFontWeight}},boundaryFont:function(){return{fontFamily:this.boundaryFontFamily,fontSize:this.boundaryFontSize,fontWeight:this.boundaryFontWeight}},messageFont:function(){return{fontFamily:this.messageFontFamily,fontSize:this.messageFontSize,fontWeight:this.messageFontWeight}}},pie:{...t7.pie,useWidth:984},xyChart:{...t7.xyChart,useWidth:void 0},requirement:{...t7.requirement,useWidth:void 0},gitGraph:{...t7.gitGraph,useMaxWidth:!1},sankey:{...t7.sankey,useMaxWidth:!1}},HQn=(e,t="")=>Object.keys(e).reduce((r,a)=>Array.isArray(e[a])?r:typeof e[a]=="object"&&e[a]!==null?[...r,t+a,...HQn(e[a],"")]:[...r,t+a],[]),rna=new Set(HQn(qQn,"")),fd=qQn,qTe=e=>{if(ut.debug("sanitizeDirective called with",e),!(typeof e!="object"||e==null)){if(Array.isArray(e)){e.forEach(t=>qTe(t));return}for(const t of Object.keys(e)){if(ut.debug("Checking key",t),t.startsWith("__")||t.includes("proto")||t.includes("constr")||!rna.has(t)||e[t]==null){ut.debug("sanitize deleting key: ",t),delete e[t];continue}if(typeof e[t]=="object"){ut.debug("sanitizing object",t),qTe(e[t]);continue}const r=["themeCSS","fontFamily","altFontFamily"];for(const a of r)t.includes(a)&&(ut.debug("sanitizing css option",t),e[t]=ina(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]="")}ut.debug("After sanitization",e)}},ina=e=>{let t=0,r=0;for(const a of e){if(t{for(const{id:t,detector:r,loader:a}of e)WQn(t,r,a)},WQn=(e,t,r)=>{iW[e]?ut.error(`Detector with key ${e} already exists`):iW[e]={detector:t,loader:r},ut.debug(`Detector with key ${e} added${r?" with loader":""}`)},sna=e=>iW[e].loader,Zut=(e,t,{depth:r=2,clobber:a=!1}={})=>{const s={depth:r,clobber:a};return Array.isArray(t)&&!Array.isArray(e)?(t.forEach(o=>Zut(e,o,s)),e):Array.isArray(t)&&Array.isArray(e)?(t.forEach(o=>{e.includes(o)||e.push(o)}),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(o=>{typeof t[o]=="object"&&(e[o]===void 0||typeof e[o]=="object")?(e[o]===void 0&&(e[o]=Array.isArray(t[o])?[]:{}),e[o]=Zut(e[o],t[o],{depth:r-1,clobber:a})):(a||typeof e[o]!="object"&&typeof t[o]!="object")&&(e[o]=t[o])}),e)},Tg=Zut,KQn="​",ona={curveBasis:j3,curveBasisClosed:IDn,curveBasisOpen:ODn,curveBumpX:l1t,curveBumpY:c1t,curveBundle:DDn,curveCardinalClosed:MDn,curveCardinalOpen:PDn,curveCardinal:h1t,curveCatmullRomClosed:$Dn,curveCatmullRomOpen:zDn,curveCatmullRom:g1t,curveLinear:Cg,curveLinearClosed:qDn,curveMonotoneX:m1t,curveMonotoneY:b1t,curveNatural:y1t,curveStep:v1t,curveStepAfter:w1t,curveStepBefore:_1t},lna=/\s*(?:(\w+)(?=:):|(\w+))\s*(?:(\w+)|((?:(?!}%{2}).|\r?\n)*))?\s*(?:}%{2})?/gi,cna=function(e,t){const r=XQn(e,/(?:init\b)|(?:initialize\b)/);let a={};if(Array.isArray(r)){const u=r.map(h=>h.args);qTe(u),a=Tg(a,[...u])}else a=r.args;if(!a)return;let s=l6e(e,t);const o="config";return a[o]!==void 0&&(s==="flowchart-v2"&&(s="flowchart"),a[s]=a[o],delete a[o]),a},XQn=function(e,t=null){try{const r=new RegExp(`[%]{2}(?![{]${lna.source})(?=[}][%]{2}).* +`,"ig");e=e.trim().replace(r,"").replace(/'/gm,'"'),ut.debug(`Detecting diagram directive${t!==null?" type:"+t:""} based on the text:${e}`);let a;const s=[];for(;(a=Ose.exec(e))!==null;)if(a.index===Ose.lastIndex&&Ose.lastIndex++,a&&!t||t&&a[1]&&a[1].match(t)||t&&a[2]&&a[2].match(t)){const o=a[1]?a[1]:a[2],u=a[3]?a[3].trim():a[4]?JSON.parse(a[4].trim()):null;s.push({type:o,args:u})}return s.length===0?{type:e,args:null}:s.length===1?s[0]:s}catch(r){return ut.error(`ERROR: ${r.message} - Unable to parse directive type: '${t}' based on the text: '${e}'`),{type:void 0,args:null}}},una=function(e){return e.replace(Ose,"")},hna=function(e,t){for(const[r,a]of t.entries())if(a.match(e))return r;return-1};function fS(e,t){if(!e)return t;const r=`curve${e.charAt(0).toUpperCase()+e.slice(1)}`;return ona[r]??t}function dna(e,t){const r=e.trim();if(r)return t.securityLevel!=="loose"?U9(r):r}const fna=(e,...t)=>{const r=e.split("."),a=r.length-1,s=r[a];let o=window;for(let u=0;u{r+=QQn(s,t),t=s});const a=r/2;return bbt(e,a)}function gna(e){return e.length===1?e[0]:pna(e)}const i5n=(e,t=2)=>{const r=Math.pow(10,t);return Math.round(e*r)/r},bbt=(e,t)=>{let r,a=t;for(const s of e){if(r){const o=QQn(s,r);if(o=1)return{x:s.x,y:s.y};if(u>0&&u<1)return{x:i5n((1-u)*r.x+u*s.x,5),y:i5n((1-u)*r.y+u*s.y,5)}}}r=s}throw new Error("Could not find a suitable point for the given distance")},mna=(e,t,r)=>{ut.info(`our points ${JSON.stringify(t)}`),t[0]!==r&&(t=t.reverse());const s=bbt(t,25),o=e?10:5,u=Math.atan2(t[0].y-s.y,t[0].x-s.x),h={x:0,y:0};return h.x=Math.sin(u)*o+(t[0].x+s.x)/2,h.y=-Math.cos(u)*o+(t[0].y+s.y)/2,h};function bna(e,t,r){const a=structuredClone(r);ut.info("our points",a),t!=="start_left"&&t!=="start_right"&&a.reverse();const s=25+e,o=bbt(a,s),u=10+e*.5,h=Math.atan2(a[0].y-o.y,a[0].x-o.x),f={x:0,y:0};return t==="start_left"?(f.x=Math.sin(h+Math.PI)*u+(a[0].x+o.x)/2,f.y=-Math.cos(h+Math.PI)*u+(a[0].y+o.y)/2):t==="end_right"?(f.x=Math.sin(h-Math.PI)*u+(a[0].x+o.x)/2-5,f.y=-Math.cos(h-Math.PI)*u+(a[0].y+o.y)/2-5):t==="end_left"?(f.x=Math.sin(h)*u+(a[0].x+o.x)/2-5,f.y=-Math.cos(h)*u+(a[0].y+o.y)/2-5):(f.x=Math.sin(h)*u+(a[0].x+o.x)/2,f.y=-Math.cos(h)*u+(a[0].y+o.y)/2),f}function Hw(e){let t="",r="";for(const a of e)a!==void 0&&(a.startsWith("color:")||a.startsWith("text-align:")?r=r+a+";":t=t+a+";");return{style:t,labelStyle:r}}let a5n=0;const ZQn=()=>(a5n++,"id-"+Math.random().toString(36).substr(2,12)+"-"+a5n);function yna(e){let t="";const r="0123456789abcdef",a=r.length;for(let s=0;syna(e.length),vna=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:""}},_na=function(e,t){const r=t.text.replace(mi.lineBreakRegex," "),[,a]=J$(t.fontSize),s=e.append("text");s.attr("x",t.x),s.attr("y",t.y),s.style("text-anchor",t.anchor),s.style("font-family",t.fontFamily),s.style("font-size",a),s.style("font-weight",t.fontWeight),s.attr("fill",t.fill),t.class!==void 0&&s.attr("class",t.class);const o=s.append("tspan");return o.attr("x",t.x+t.textMargin*2),o.attr("fill",t.fill),o.text(r),s},eZn=_R((e,t,r)=>{if(!e||(r=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",joinWith:"
    "},r),mi.lineBreakRegex.test(e)))return e;const a=e.split(" "),s=[];let o="";return a.forEach((u,h)=>{const f=dA(`${u} `,r),p=dA(o,r);if(f>t){const{hyphenatedStrings:_,remainingWord:w}=wna(u,t,"-",r);s.push(o,..._),o=w}else p+f>=t?(s.push(o),o=u):o=[o,u].filter(Boolean).join(" ");h+1===a.length&&s.push(o)}),s.filter(u=>u!=="").join(r.joinWith)},(e,t,r)=>`${e}${t}${r.fontSize}${r.fontWeight}${r.fontFamily}${r.joinWith}`),wna=_R((e,t,r="-",a)=>{a=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",margin:0},a);const s=[...e],o=[];let u="";return s.forEach((h,f)=>{const p=`${u}${h}`;if(dA(p,a)>=t){const b=f+1,_=s.length===b,w=`${p}${r}`;o.push(_?p:w),u=""}else u=p}),{hyphenatedStrings:o,remainingWord:u}},(e,t,r="-",a)=>`${e}${t}${r}${a.fontSize}${a.fontWeight}${a.fontFamily}`);function Jut(e,t){return ybt(e,t).height}function dA(e,t){return ybt(e,t).width}const ybt=_R((e,t)=>{const{fontSize:r=12,fontFamily:a="Arial",fontWeight:s=400}=t;if(!e)return{width:0,height:0};const[,o]=J$(r),u=["sans-serif",a],h=e.split(mi.lineBreakRegex),f=[],p=gn("body");if(!p.remove)return{width:0,height:0,lineHeight:0};const m=p.append("svg");for(const _ of u){let w=0;const S={width:0,height:0,lineHeight:0};for(const C of h){const A=vna();A.text=C||KQn;const k=_na(m,A).style("font-size",o).style("font-weight",s).style("font-family",_),I=(k._groups||k)[0][0].getBBox();if(I.width===0&&I.height===0)throw new Error("svg element not in render tree");S.width=Math.round(Math.max(S.width,I.width)),w=Math.round(I.height),S.height+=w,S.lineHeight=Math.round(Math.max(S.lineHeight,w))}f.push(S)}m.remove();const b=isNaN(f[1].height)||isNaN(f[1].width)||isNaN(f[1].lineHeight)||f[0].height>f[1].height&&f[0].width>f[1].width&&f[0].lineHeight>f[1].lineHeight?0:1;return f[b]},(e,t)=>`${e}${t.fontSize}${t.fontWeight}${t.fontFamily}`);class Ena{constructor(t=!1,r){this.count=0,this.count=r?r.length:0,this.next=t?()=>this.count++:()=>Date.now()}}let vEe;const xna=function(e){return vEe=vEe||document.createElement("div"),e=escape(e).replace(/%26/g,"&").replace(/%23/g,"#").replace(/%3B/g,";"),vEe.innerHTML=e,unescape(vEe.textContent)};function tZn(e){return"str"in e}const Sna=(e,t,r,a)=>{var s;if(!a)return;const o=(s=e.node())==null?void 0:s.getBBox();o&&e.append("text").text(a).attr("x",o.x+o.width/2).attr("y",-r).attr("class",t)},J$=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]};function Qce(e,t){return XO({},e,t)}const il={assignWithDepth:Tg,wrapLabel:eZn,calculateTextHeight:Jut,calculateTextWidth:dA,calculateTextDimensions:ybt,cleanAndMerge:Qce,detectInit:cna,detectDirective:XQn,isSubstringInArray:hna,interpolateToCurve:fS,calcLabelPosition:gna,calcCardinalityPosition:mna,calcTerminalLabelPosition:bna,formatUrl:dna,getStylesFromArray:Hw,generateId:ZQn,random:JQn,runFunc:fna,entityDecode:xna,insertTitle:Sna,parseFontSize:J$,InitIDGenerator:Ena},Tna=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 a=r.substring(1,r.length-1);return/^\+?\d+$/.test(a)?"fl°°"+a+"¶ß":"fl°"+a+"¶ß"}),t},ple=function(e){return e.replace(/fl°°/g,"&#").replace(/fl°/g,"&").replace(/¶ß/g,";")},s5n="10.9.3",aW=Object.freeze(fd);let U2=Tg({},aW),nZn,sW=[],Lse=Tg({},aW);const c6e=(e,t)=>{let r=Tg({},e),a={};for(const s of t)aZn(s),a=Tg(a,s);if(r=Tg(r,a),a.theme&&a.theme in V7){const s=Tg({},nZn),o=Tg(s.themeVariables||{},a.themeVariables);r.theme&&r.theme in V7&&(r.themeVariables=V7[r.theme].getThemeVariables(o))}return Lse=r,sZn(Lse),Lse},Cna=e=>(U2=Tg({},aW),U2=Tg(U2,e),e.theme&&V7[e.theme]&&(U2.themeVariables=V7[e.theme].getThemeVariables(e.themeVariables)),c6e(U2,sW),U2),Ana=e=>{nZn=Tg({},e)},kna=e=>(U2=Tg(U2,e),c6e(U2,sW),U2),rZn=()=>Tg({},U2),iZn=e=>(sZn(e),Tg(Lse,e),Lf()),Lf=()=>Tg({},Lse),aZn=e=>{e&&(["secure",...U2.secure??[]].forEach(t=>{Object.hasOwn(e,t)&&(ut.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"&&aZn(e[t])}))},Rna=e=>{qTe(e),e.fontFamily&&(!e.themeVariables||!e.themeVariables.fontFamily)&&(e.themeVariables={fontFamily:e.fontFamily}),sW.push(e),c6e(U2,sW)},HTe=(e=U2)=>{sW=[],c6e(e,sW)},Ina={LAZY_LOAD_DEPRECATED:"The configuration options lazyLoadedDiagrams and loadExternalDiagramsAtStartup are deprecated. Please use registerExternalDiagrams instead."},o5n={},Nna=e=>{o5n[e]||(ut.warn(Ina[e]),o5n[e]=!0)},sZn=e=>{e&&(e.lazyLoadedDiagrams||e.loadExternalDiagramsAtStartup)&&Nna("LAZY_LOAD_DEPRECATED")},oZn="c4",Ona=e=>/^\s*C4Context|C4Container|C4Component|C4Dynamic|C4Deployment/.test(e),Lna=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>xua);return{diagram:t}},void 0);return{id:oZn,diagram:e}},Dna={id:oZn,detector:Ona,loader:Lna},Mna=Dna,lZn="flowchart",Pna=(e,t)=>{var r,a;return((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="dagre-wrapper"||((a=t==null?void 0:t.flowchart)==null?void 0:a.defaultRenderer)==="elk"?!1:/^\s*graph/.test(e)},Bna=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Ppa);return{diagram:t}},void 0);return{id:lZn,diagram:e}},Fna={id:lZn,detector:Pna,loader:Bna},$na=Fna,cZn="flowchart-v2",Una=(e,t)=>{var r,a,s;return((r=t==null?void 0:t.flowchart)==null?void 0:r.defaultRenderer)==="dagre-d3"||((a=t==null?void 0:t.flowchart)==null?void 0:a.defaultRenderer)==="elk"?!1:/^\s*graph/.test(e)&&((s=t==null?void 0:t.flowchart)==null?void 0:s.defaultRenderer)==="dagre-wrapper"?!0:/^\s*flowchart/.test(e)},zna=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Fpa);return{diagram:t}},void 0);return{id:cZn,diagram:e}},Gna={id:cZn,detector:Una,loader:zna},qna=Gna,uZn="er",Hna=e=>/^\s*erDiagram/.test(e),Vna=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>_ga);return{diagram:t}},void 0);return{id:uZn,diagram:e}},Yna={id:uZn,detector:Hna,loader:Vna},jna=Yna,hZn="gitGraph",Wna=e=>/^\s*gitGraph/.test(e),Kna=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Qga);return{diagram:t}},void 0);return{id:hZn,diagram:e}},Xna={id:hZn,detector:Wna,loader:Kna},Qna=Xna,dZn="gantt",Zna=e=>/^\s*gantt/.test(e),Jna=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>zma);return{diagram:t}},void 0);return{id:dZn,diagram:e}},era={id:dZn,detector:Zna,loader:Jna},tra=era,fZn="info",nra=e=>/^\s*info/.test(e),rra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Xma);return{diagram:t}},void 0);return{id:fZn,diagram:e}},ira={id:fZn,detector:nra,loader:rra},pZn="pie",ara=e=>/^\s*pie/.test(e),sra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>pba);return{diagram:t}},void 0);return{id:pZn,diagram:e}},ora={id:pZn,detector:ara,loader:sra},gZn="quadrantChart",lra=e=>/^\s*quadrantChart/.test(e),cra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Mba);return{diagram:t}},void 0);return{id:gZn,diagram:e}},ura={id:gZn,detector:lra,loader:cra},hra=ura,mZn="xychart",dra=e=>/^\s*xychart-beta/.test(e),fra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>uya);return{diagram:t}},void 0);return{id:mZn,diagram:e}},pra={id:mZn,detector:dra,loader:fra},gra=pra,bZn="requirement",mra=e=>/^\s*requirement(Diagram)?/.test(e),bra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Gya);return{diagram:t}},void 0);return{id:bZn,diagram:e}},yra={id:bZn,detector:mra,loader:bra},vra=yra,yZn="sequence",_ra=e=>/^\s*sequenceDiagram/.test(e),wra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Wva);return{diagram:t}},void 0);return{id:yZn,diagram:e}},Era={id:yZn,detector:_ra,loader:wra},xra=Era,vZn="class",Sra=(e,t)=>{var r;return((r=t==null?void 0:t.class)==null?void 0:r.defaultRenderer)==="dagre-wrapper"?!1:/^\s*classDiagram/.test(e)},Tra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>R2a);return{diagram:t}},void 0);return{id:vZn,diagram:e}},Cra={id:vZn,detector:Sra,loader:Tra},Ara=Cra,_Zn="classDiagram",kra=(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)},Rra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>B2a);return{diagram:t}},void 0);return{id:_Zn,diagram:e}},Ira={id:_Zn,detector:kra,loader:Rra},Nra=Ira,wZn="state",Ora=(e,t)=>{var r;return((r=t==null?void 0:t.state)==null?void 0:r.defaultRenderer)==="dagre-wrapper"?!1:/^\s*stateDiagram/.test(e)},Lra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>A_a);return{diagram:t}},void 0);return{id:wZn,diagram:e}},Dra={id:wZn,detector:Ora,loader:Lra},Mra=Dra,EZn="stateDiagram",Pra=(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")},Bra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>J_a);return{diagram:t}},void 0);return{id:EZn,diagram:e}},Fra={id:EZn,detector:Pra,loader:Bra},$ra=Fra,xZn="journey",Ura=e=>/^\s*journey/.test(e),zra=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Ewa);return{diagram:t}},void 0);return{id:xZn,diagram:e}},Gra={id:xZn,detector:Ura,loader:zra},qra=Gra,Hra=function(e,t){for(let r of t)e.attr(r[0],r[1])},Vra=function(e,t,r){let a=new Map;return r?(a.set("width","100%"),a.set("style",`max-width: ${t}px;`)):(a.set("height",e),a.set("width",t)),a},Db=function(e,t,r,a){const s=Vra(t,r,a);Hra(e,s)},oL=function(e,t,r,a){const s=t.node().getBBox(),o=s.width,u=s.height;ut.info(`SVG bounds: ${o}x${u}`,s);let h=0,f=0;ut.info(`Graph bounds: ${h}x${f}`,e),h=o+r*2,f=u+r*2,ut.info(`Calculated bounds: ${h}x${f}`),Db(t,f,h,a);const p=`${s.x-r} ${s.y-r} ${s.width+2*r} ${s.height+2*r}`;t.attr("viewBox",p)},nSe={},Yra=(e,t,r)=>{let a="";return e in nSe&&nSe[e]?a=nSe[e](r):ut.warn(`No theme found for ${e}`),` & { + font-family: ${r.fontFamily}; + font-size: ${r.fontSize}; + fill: ${r.textColor} + } + + /* Classes common for multiple diagrams */ + + & .error-icon { + fill: ${r.errorBkgColor}; + } + & .error-text { + fill: ${r.errorTextColor}; + stroke: ${r.errorTextColor}; + } + + & .edge-thickness-normal { + stroke-width: 2px; + } + & .edge-thickness-thick { + stroke-width: 3.5px + } + & .edge-pattern-solid { + stroke-dasharray: 0; + } + + & .edge-pattern-dashed{ + stroke-dasharray: 3; + } + .edge-pattern-dotted { + stroke-dasharray: 2; + } + + & .marker { + fill: ${r.lineColor}; + stroke: ${r.lineColor}; + } + & .marker.cross { + stroke: ${r.lineColor}; + } + + & svg { + font-family: ${r.fontFamily}; + font-size: ${r.fontSize}; + } + + ${a} + + ${t} +`},jra=(e,t)=>{t!==void 0&&(nSe[e]=t)},Wra=Yra;let vbt="",_bt="",wbt="";const Ebt=e=>J0(e,Lf()),Mb=()=>{vbt="",wbt="",_bt=""},Pb=e=>{vbt=Ebt(e).replace(/^\s+/g,"")},Ev=()=>vbt,xv=e=>{wbt=Ebt(e).replace(/\n\s+/g,` +`)},Sv=()=>wbt,Zw=e=>{_bt=Ebt(e)},Tv=()=>_bt,SZn=Object.freeze(Object.defineProperty({__proto__:null,clear:Mb,getAccDescription:Sv,getAccTitle:Ev,getDiagramTitle:Tv,setAccDescription:xv,setAccTitle:Pb,setDiagramTitle:Zw},Symbol.toStringTag,{value:"Module"})),Kra=ut,Xra=gbt,Qt=Lf,Qra=iZn,TZn=aW,Zra=e=>J0(e,Qt()),CZn=oL,Jra=()=>SZn,VTe={},YTe=(e,t,r)=>{var a;if(VTe[e])throw new Error(`Diagram ${e} already registered.`);VTe[e]=t,r&&WQn(e,r),jra(e,t.styles),(a=t.injectUtils)==null||a.call(t,Kra,Xra,Qt,Zra,CZn,Jra(),()=>{})},xbt=e=>{if(e in VTe)return VTe[e];throw new eia(e)};class eia extends Error{constructor(t){super(`Diagram ${t} not found.`)}}const Zce=e=>{var t;const{securityLevel:r}=Qt();let a=gn("body");if(r==="sandbox"){const u=((t=gn(`#i${e}`).node())==null?void 0:t.contentDocument)??document;a=gn(u.body)}return a.select(`#${e}`)},tia=(e,t,r)=>{ut.debug(`rendering svg for syntax error +`);const a=Zce(t),s=a.append("g");a.attr("viewBox","0 0 2412 512"),Db(a,100,512,!0),s.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"),s.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"),s.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"),s.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"),s.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"),s.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"),s.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"),s.append("text").attr("class","error-text").attr("x",1250).attr("y",400).attr("font-size","100px").style("text-anchor","middle").text(`mermaid version ${r}`)},AZn={draw:tia},nia=AZn,ria={db:{},renderer:AZn,parser:{parser:{yy:{}},parse:()=>{}}},iia=ria,kZn="flowchart-elk",aia=(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")},sia=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>zwa);return{diagram:t}},void 0);return{id:kZn,diagram:e}},oia={id:kZn,detector:aia,loader:sia},lia=oia,RZn="timeline",cia=e=>/^\s*timeline/.test(e),uia=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>uEa);return{diagram:t}},void 0);return{id:RZn,diagram:e}},hia={id:RZn,detector:cia,loader:uia},dia=hia,IZn="mindmap",fia=e=>/^\s*mindmap/.test(e),pia=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>HEa);return{diagram:t}},void 0);return{id:IZn,diagram:e}},gia={id:IZn,detector:fia,loader:pia},mia=gia,NZn="sankey",bia=e=>/^\s*sankey-beta/.test(e),yia=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>sxa);return{diagram:t}},void 0);return{id:NZn,diagram:e}},via={id:NZn,detector:bia,loader:yia},_ia=via,OZn="block",wia=e=>/^\s*block-beta/.test(e),Eia=async()=>{const{diagram:e}=await ea(async()=>{const{diagram:t}=await Promise.resolve().then(()=>Hxa);return{diagram:t}},void 0);return{id:OZn,diagram:e}},xia={id:OZn,detector:wia,loader:Eia},Sia=xia;let l5n=!1;const Sbt=()=>{l5n||(l5n=!0,YTe("error",iia,e=>e.toLowerCase().trim()==="error"),YTe("---",{db:{clear:()=>{}},styles:{},renderer:{draw:()=>{}},parser:{parser:{yy:{}},parse:()=>{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")}},init:()=>null},e=>e.toLowerCase().trimStart().startsWith("---")),jQn(Mna,Nra,Ara,jna,tra,ira,ora,vra,xra,lia,qna,$na,mia,dia,Qna,$ra,Mra,qra,hra,_ia,gra,Sia))};class LZn{constructor(t,r={}){this.text=t,this.metadata=r,this.type="graph",this.text=Tna(t),this.text+=` +`;const a=Lf();try{this.type=l6e(t,a)}catch(o){this.type="error",this.detectError=o}const s=xbt(this.type);ut.debug("Type "+this.type),this.db=s.db,this.renderer=s.renderer,this.parser=s.parser,this.parser.parser.yy=this.db,this.init=s.init,this.parse()}parse(){var t,r,a,s,o;if(this.detectError)throw this.detectError;(r=(t=this.db).clear)==null||r.call(t);const u=Lf();(a=this.init)==null||a.call(this,u),this.metadata.title&&((o=(s=this.db).setDiagramTitle)==null||o.call(s,this.metadata.title)),this.parser.parse(this.text)}async render(t,r){await this.renderer.draw(this.text,t,r,this)}getParser(){return this.parser}getType(){return this.type}}const Tia=async(e,t={})=>{const r=l6e(e,Lf());try{xbt(r)}catch{const s=sna(r);if(!s)throw new YQn(`Diagram ${r} not found.`);const{id:o,diagram:u}=await s();YTe(o,u)}return new LZn(e,t)};let c5n=[];const Cia=()=>{c5n.forEach(e=>{e()}),c5n=[]},Aia="graphics-document document";function kia(e,t){e.attr("role",Aia),t!==""&&e.attr("aria-roledescription",t)}function Ria(e,t,r,a){if(e.insert!==void 0){if(r){const s=`chart-desc-${a}`;e.attr("aria-describedby",s),e.insert("desc",":first-child").attr("id",s).text(r)}if(t){const s=`chart-title-${a}`;e.attr("aria-labelledby",s),e.insert("title",":first-child").attr("id",s).text(t)}}}const Iia=e=>e.replace(/^\s*%%(?!{)[^\n]+\n?/gm,"").trimStart();/*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */function DZn(e){return typeof e>"u"||e===null}function Nia(e){return typeof e=="object"&&e!==null}function Oia(e){return Array.isArray(e)?e:DZn(e)?[]:[e]}function Lia(e,t){var r,a,s,o;if(t)for(o=Object.keys(t),r=0,a=o.length;rh&&(o=" ... ",t=a-h+o.length),r-a>h&&(u=" ...",r=a+h-u.length),{str:o+e.slice(t,r).replace(/\t/g,"→")+u,pos:a-t+o.length}}function fat(e,t){return Hy.repeat(" ",t-e.length)+e}function Gia(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,a=[0],s=[],o,u=-1;o=r.exec(e.buffer);)s.push(o.index),a.push(o.index+o[0].length),e.position<=o.index&&u<0&&(u=a.length-2);u<0&&(u=a.length-1);var h="",f,p,m=Math.min(e.line+t.linesAfter,s.length).toString().length,b=t.maxLength-(t.indent+m+3);for(f=1;f<=t.linesBefore&&!(u-f<0);f++)p=dat(e.buffer,a[u-f],s[u-f],e.position-(a[u]-a[u-f]),b),h=Hy.repeat(" ",t.indent)+fat((e.line-f+1).toString(),m)+" | "+p.str+` +`+h;for(p=dat(e.buffer,a[u],s[u],e.position,b),h+=Hy.repeat(" ",t.indent)+fat((e.line+1).toString(),m)+" | "+p.str+` +`,h+=Hy.repeat("-",t.indent+m+3+p.pos)+`^ +`,f=1;f<=t.linesAfter&&!(u+f>=s.length);f++)p=dat(e.buffer,a[u+f],s[u+f],e.position-(a[u]-a[u+f]),b),h+=Hy.repeat(" ",t.indent)+fat((e.line+f+1).toString(),m)+" | "+p.str+` +`;return h.replace(/\n$/,"")}var qia=Gia,Hia=["kind","multi","resolve","construct","instanceOf","predicate","represent","representName","defaultStyle","styleAliases"],Via=["scalar","sequence","mapping"];function Yia(e){var t={};return e!==null&&Object.keys(e).forEach(function(r){e[r].forEach(function(a){t[String(a)]=r})}),t}function jia(e,t){if(t=t||{},Object.keys(t).forEach(function(r){if(Hia.indexOf(r)===-1)throw new _7('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=Yia(t.styleAliases||null),Via.indexOf(this.kind)===-1)throw new _7('Unknown kind "'+this.kind+'" is specified for "'+e+'" YAML type.')}var Ab=jia;function u5n(e,t){var r=[];return e[t].forEach(function(a){var s=r.length;r.forEach(function(o,u){o.tag===a.tag&&o.kind===a.kind&&o.multi===a.multi&&(s=u)}),r[s]=a}),r}function Wia(){var e={scalar:{},sequence:{},mapping:{},fallback:{},multi:{scalar:[],sequence:[],mapping:[],fallback:[]}},t,r;function a(s){s.multi?(e.multi[s.kind].push(s),e.multi.fallback.push(s)):e[s.kind][s.tag]=e.fallback[s.tag]=s}for(t=0,r=arguments.length;t=0?"0b"+e.toString(2):"-0b"+e.toString(2).slice(1)},octal:function(e){return e>=0?"0o"+e.toString(8):"-0o"+e.toString(8).slice(1)},decimal:function(e){return e.toString(10)},hexadecimal:function(e){return e>=0?"0x"+e.toString(16).toUpperCase():"-0x"+e.toString(16).toUpperCase().slice(1)}},defaultStyle:"decimal",styleAliases:{binary:[2,"bin"],octal:[8,"oct"],decimal:[10,"dec"],hexadecimal:[16,"hex"]}}),gaa=new RegExp("^(?:[-+]?(?:[0-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?|[-+]?\\.(?:inf|Inf|INF)|\\.(?:nan|NaN|NAN))$");function maa(e){return!(e===null||!gaa.test(e)||e[e.length-1]==="_")}function baa(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)}var yaa=/^[-+]?[0-9]+e/;function vaa(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(Hy.isNegativeZero(e))return"-0.0";return r=e.toString(10),yaa.test(r)?r.replace("e",".e"):r}function _aa(e){return Object.prototype.toString.call(e)==="[object Number]"&&(e%1!==0||Hy.isNegativeZero(e))}var waa=new Ab("tag:yaml.org,2002:float",{kind:"scalar",resolve:maa,construct:baa,predicate:_aa,represent:vaa,defaultStyle:"lowercase"}),PZn=Jia.extend({implicit:[raa,oaa,paa,waa]}),Eaa=PZn,BZn=new RegExp("^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"),FZn=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 xaa(e){return e===null?!1:BZn.exec(e)!==null||FZn.exec(e)!==null}function Saa(e){var t,r,a,s,o,u,h,f=0,p=null,m,b,_;if(t=BZn.exec(e),t===null&&(t=FZn.exec(e)),t===null)throw new Error("Date resolve error");if(r=+t[1],a=+t[2]-1,s=+t[3],!t[4])return new Date(Date.UTC(r,a,s));if(o=+t[4],u=+t[5],h=+t[6],t[7]){for(f=t[7].slice(0,3);f.length<3;)f+="0";f=+f}return t[9]&&(m=+t[10],b=+(t[11]||0),p=(m*60+b)*6e4,t[9]==="-"&&(p=-p)),_=new Date(Date.UTC(r,a,s,o,u,h,f)),p&&_.setTime(_.getTime()-p),_}function Taa(e){return e.toISOString()}var Caa=new Ab("tag:yaml.org,2002:timestamp",{kind:"scalar",resolve:xaa,construct:Saa,instanceOf:Date,represent:Taa});function Aaa(e){return e==="<<"||e===null}var kaa=new Ab("tag:yaml.org,2002:merge",{kind:"scalar",resolve:Aaa}),Tbt=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/= +\r`;function Raa(e){if(e===null)return!1;var t,r,a=0,s=e.length,o=Tbt;for(r=0;r64)){if(t<0)return!1;a+=6}return a%8===0}function Iaa(e){var t,r,a=e.replace(/[\r\n=]/g,""),s=a.length,o=Tbt,u=0,h=[];for(t=0;t>16&255),h.push(u>>8&255),h.push(u&255)),u=u<<6|o.indexOf(a.charAt(t));return r=s%4*6,r===0?(h.push(u>>16&255),h.push(u>>8&255),h.push(u&255)):r===18?(h.push(u>>10&255),h.push(u>>2&255)):r===12&&h.push(u>>4&255),new Uint8Array(h)}function Naa(e){var t="",r=0,a,s,o=e.length,u=Tbt;for(a=0;a>18&63],t+=u[r>>12&63],t+=u[r>>6&63],t+=u[r&63]),r=(r<<8)+e[a];return s=o%3,s===0?(t+=u[r>>18&63],t+=u[r>>12&63],t+=u[r>>6&63],t+=u[r&63]):s===2?(t+=u[r>>10&63],t+=u[r>>4&63],t+=u[r<<2&63],t+=u[64]):s===1&&(t+=u[r>>2&63],t+=u[r<<4&63],t+=u[64],t+=u[64]),t}function Oaa(e){return Object.prototype.toString.call(e)==="[object Uint8Array]"}var Laa=new Ab("tag:yaml.org,2002:binary",{kind:"scalar",resolve:Raa,construct:Iaa,predicate:Oaa,represent:Naa}),Daa=Object.prototype.hasOwnProperty,Maa=Object.prototype.toString;function Paa(e){if(e===null)return!0;var t=[],r,a,s,o,u,h=e;for(r=0,a=h.length;r>10)+55296,(e-65536&1023)+56320)}var qZn=new Array(256),HZn=new Array(256);for(var iV=0;iV<256;iV++)qZn[iV]=f5n(iV)?1:0,HZn[iV]=f5n(iV);function nsa(e,t){this.input=e,this.filename=t.filename||null,this.schema=t.schema||jaa,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=[]}function VZn(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=qia(r),new _7(t,r)}function Is(e,t){throw VZn(e,t)}function KTe(e,t){e.onWarning&&e.onWarning.call(null,VZn(e,t))}var p5n={YAML:function(t,r,a){var s,o,u;t.version!==null&&Is(t,"duplication of %YAML directive"),a.length!==1&&Is(t,"YAML directive accepts exactly one argument"),s=/^([0-9]+)\.([0-9]+)$/.exec(a[0]),s===null&&Is(t,"ill-formed argument of the YAML directive"),o=parseInt(s[1],10),u=parseInt(s[2],10),o!==1&&Is(t,"unacceptable YAML version of the document"),t.version=a[0],t.checkLineBreaks=u<2,u!==1&&u!==2&&KTe(t,"unsupported YAML version of the document")},TAG:function(t,r,a){var s,o;a.length!==2&&Is(t,"TAG directive accepts exactly two arguments"),s=a[0],o=a[1],zZn.test(s)||Is(t,"ill-formed tag handle (first argument) of the TAG directive"),v9.call(t.tagMap,s)&&Is(t,'there is a previously declared suffix for "'+s+'" tag handle'),GZn.test(o)||Is(t,"ill-formed tag prefix (second argument) of the TAG directive");try{o=decodeURIComponent(o)}catch{Is(t,"tag prefix is malformed: "+o)}t.tagMap[s]=o}};function MO(e,t,r,a){var s,o,u,h;if(t1&&(e.result+=Hy.repeat(` +`,t-1))}function rsa(e,t,r){var a,s,o,u,h,f,p,m,b=e.kind,_=e.result,w;if(w=e.input.charCodeAt(e.position),K2(w)||FV(w)||w===35||w===38||w===42||w===33||w===124||w===62||w===39||w===34||w===37||w===64||w===96||(w===63||w===45)&&(s=e.input.charCodeAt(e.position+1),K2(s)||r&&FV(s)))return!1;for(e.kind="scalar",e.result="",o=u=e.position,h=!1;w!==0;){if(w===58){if(s=e.input.charCodeAt(e.position+1),K2(s)||r&&FV(s))break}else if(w===35){if(a=e.input.charCodeAt(e.position-1),K2(a))break}else{if(e.position===e.lineStart&&u6e(e)||r&&FV(w))break;if(fA(w))if(f=e.line,p=e.lineStart,m=e.lineIndent,R1(e,!1,-1),e.lineIndent>=t){h=!0,w=e.input.charCodeAt(e.position);continue}else{e.position=u,e.line=f,e.lineStart=p,e.lineIndent=m;break}}h&&(MO(e,o,u,!1),Abt(e,e.line-f),o=u=e.position,h=!1),pF(w)||(u=e.position+1),w=e.input.charCodeAt(++e.position)}return MO(e,o,u,!1),e.result?!0:(e.kind=b,e.result=_,!1)}function isa(e,t){var r,a,s;if(r=e.input.charCodeAt(e.position),r!==39)return!1;for(e.kind="scalar",e.result="",e.position++,a=s=e.position;(r=e.input.charCodeAt(e.position))!==0;)if(r===39)if(MO(e,a,e.position,!0),r=e.input.charCodeAt(++e.position),r===39)a=e.position,e.position++,s=e.position;else return!0;else fA(r)?(MO(e,a,s,!0),Abt(e,R1(e,!1,t)),a=s=e.position):e.position===e.lineStart&&u6e(e)?Is(e,"unexpected end of the document within a single quoted scalar"):(e.position++,s=e.position);Is(e,"unexpected end of the stream within a single quoted scalar")}function asa(e,t){var r,a,s,o,u,h;if(h=e.input.charCodeAt(e.position),h!==34)return!1;for(e.kind="scalar",e.result="",e.position++,r=a=e.position;(h=e.input.charCodeAt(e.position))!==0;){if(h===34)return MO(e,r,e.position,!0),e.position++,!0;if(h===92){if(MO(e,r,e.position,!0),h=e.input.charCodeAt(++e.position),fA(h))R1(e,!1,t);else if(h<256&&qZn[h])e.result+=HZn[h],e.position++;else if((u=Jaa(h))>0){for(s=u,o=0;s>0;s--)h=e.input.charCodeAt(++e.position),(u=Zaa(h))>=0?o=(o<<4)+u:Is(e,"expected hexadecimal character");e.result+=tsa(o),e.position++}else Is(e,"unknown escape sequence");r=a=e.position}else fA(h)?(MO(e,r,a,!0),Abt(e,R1(e,!1,t)),r=a=e.position):e.position===e.lineStart&&u6e(e)?Is(e,"unexpected end of the document within a double quoted scalar"):(e.position++,a=e.position)}Is(e,"unexpected end of the stream within a double quoted scalar")}function ssa(e,t){var r=!0,a,s,o,u=e.tag,h,f=e.anchor,p,m,b,_,w,S=Object.create(null),C,A,k,I;if(I=e.input.charCodeAt(e.position),I===91)m=93,w=!1,h=[];else if(I===123)m=125,w=!0,h={};else return!1;for(e.anchor!==null&&(e.anchorMap[e.anchor]=h),I=e.input.charCodeAt(++e.position);I!==0;){if(R1(e,!0,t),I=e.input.charCodeAt(e.position),I===m)return e.position++,e.tag=u,e.anchor=f,e.kind=w?"mapping":"sequence",e.result=h,!0;r?I===44&&Is(e,"expected the node content, but found ','"):Is(e,"missed comma between flow collection entries"),A=C=k=null,b=_=!1,I===63&&(p=e.input.charCodeAt(e.position+1),K2(p)&&(b=_=!0,e.position++,R1(e,!0,t))),a=e.line,s=e.lineStart,o=e.position,oW(e,t,jTe,!1,!0),A=e.tag,C=e.result,R1(e,!0,t),I=e.input.charCodeAt(e.position),(_||e.line===a)&&I===58&&(b=!0,I=e.input.charCodeAt(++e.position),R1(e,!0,t),oW(e,t,jTe,!1,!0),k=e.result),w?$V(e,h,S,A,C,k,a,s,o):b?h.push($V(e,null,S,A,C,k,a,s,o)):h.push(C),R1(e,!0,t),I=e.input.charCodeAt(e.position),I===44?(r=!0,I=e.input.charCodeAt(++e.position)):r=!1}Is(e,"unexpected end of the stream within a flow collection")}function osa(e,t){var r,a,s=pat,o=!1,u=!1,h=t,f=0,p=!1,m,b;if(b=e.input.charCodeAt(e.position),b===124)a=!1;else if(b===62)a=!0;else return!1;for(e.kind="scalar",e.result="";b!==0;)if(b=e.input.charCodeAt(++e.position),b===43||b===45)pat===s?s=b===43?h5n:Waa:Is(e,"repeat of a chomping mode identifier");else if((m=esa(b))>=0)m===0?Is(e,"bad explicit indentation width of a block scalar; it cannot be less than one"):u?Is(e,"repeat of an indentation width identifier"):(h=t+m-1,u=!0);else break;if(pF(b)){do b=e.input.charCodeAt(++e.position);while(pF(b));if(b===35)do b=e.input.charCodeAt(++e.position);while(!fA(b)&&b!==0)}for(;b!==0;){for(Cbt(e),e.lineIndent=0,b=e.input.charCodeAt(e.position);(!u||e.lineIndenth&&(h=e.lineIndent),fA(b)){f++;continue}if(e.lineIndentt)&&f!==0)Is(e,"bad indentation of a sequence entry");else if(e.lineIndentt)&&(A&&(u=e.line,h=e.lineStart,f=e.position),oW(e,t,WTe,!0,s)&&(A?S=e.result:C=e.result),A||($V(e,b,_,w,S,C,u,h,f),w=S=C=null),R1(e,!0,-1),I=e.input.charCodeAt(e.position)),(e.line===o||e.lineIndent>t)&&I!==0)Is(e,"bad indentation of a mapping entry");else if(e.lineIndentt?f=1:e.lineIndent===t?f=0:e.lineIndentt?f=1:e.lineIndent===t?f=0:e.lineIndent tag; it should be "scalar", not "'+e.kind+'"'),b=0,_=e.implicitTypes.length;b<_;b+=1)if(S=e.implicitTypes[b],S.resolve(e.result)){e.result=S.construct(e.result),e.tag=S.tag,e.anchor!==null&&(e.anchorMap[e.anchor]=e.result);break}}else if(e.tag!=="!"){if(v9.call(e.typeMap[e.kind||"fallback"],e.tag))S=e.typeMap[e.kind||"fallback"][e.tag];else for(S=null,w=e.typeMap.multi[e.kind||"fallback"],b=0,_=w.length;b<_;b+=1)if(e.tag.slice(0,w[b].tag.length)===w[b].tag){S=w[b];break}S||Is(e,"unknown tag !<"+e.tag+">"),e.result!==null&&S.kind!==e.kind&&Is(e,"unacceptable node kind for !<"+e.tag+'> tag; it should be "'+S.kind+'", not "'+e.kind+'"'),S.resolve(e.result,e.tag)?(e.result=S.construct(e.result,e.tag),e.anchor!==null&&(e.anchorMap[e.anchor]=e.result)):Is(e,"cannot resolve a node with !<"+e.tag+"> explicit tag")}return e.listener!==null&&e.listener("close",e),e.tag!==null||e.anchor!==null||m}function dsa(e){var t=e.position,r,a,s,o=!1,u;for(e.version=null,e.checkLineBreaks=e.legacy,e.tagMap=Object.create(null),e.anchorMap=Object.create(null);(u=e.input.charCodeAt(e.position))!==0&&(R1(e,!0,-1),u=e.input.charCodeAt(e.position),!(e.lineIndent>0||u!==37));){for(o=!0,u=e.input.charCodeAt(++e.position),r=e.position;u!==0&&!K2(u);)u=e.input.charCodeAt(++e.position);for(a=e.input.slice(r,e.position),s=[],a.length<1&&Is(e,"directive name must not be less than one character in length");u!==0;){for(;pF(u);)u=e.input.charCodeAt(++e.position);if(u===35){do u=e.input.charCodeAt(++e.position);while(u!==0&&!fA(u));break}if(fA(u))break;for(r=e.position;u!==0&&!K2(u);)u=e.input.charCodeAt(++e.position);s.push(e.input.slice(r,e.position))}u!==0&&Cbt(e),v9.call(p5n,a)?p5n[a](e,a,s):KTe(e,'unknown document directive "'+a+'"')}if(R1(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,R1(e,!0,-1)):o&&Is(e,"directives end mark is expected"),oW(e,e.lineIndent-1,WTe,!1,!0),R1(e,!0,-1),e.checkLineBreaks&&Xaa.test(e.input.slice(t,e.position))&&KTe(e,"non-ASCII line breaks are interpreted as content"),e.documents.push(e.result),e.position===e.lineStart&&u6e(e)){e.input.charCodeAt(e.position)===46&&(e.position+=3,R1(e,!0,-1));return}if(e.positione.replace(/\r\n?/g,` +`).replace(/<(\w+)([^>]*)>/g,(t,r,a)=>"<"+r+a.replace(/="([^"]*)"/g,"='$1'")+">"),wsa=e=>{const{text:t,metadata:r}=vsa(e),{displayMode:a,title:s,config:o={}}=r;return a&&(o.gantt||(o.gantt={}),o.gantt.displayMode=a),{title:s,config:o,text:t}},Esa=e=>{const t=il.detectInit(e)??{},r=il.detectDirective(e,"wrap");return Array.isArray(r)?t.wrap=r.some(({type:a})=>{}):(r==null?void 0:r.type)==="wrap"&&(t.wrap=!0),{text:una(e),directive:t}};function YZn(e){const t=_sa(e),r=wsa(t),a=Esa(r.text),s=Qce(r.config,a.directive);return e=Iia(a.text),{code:e,title:r.title,config:s}}const xsa=5e4,Ssa="graph TB;a[Maximum text size in diagram exceeded];style a fill:#faa",Tsa="sandbox",Csa="loose",Asa="http://www.w3.org/2000/svg",ksa="http://www.w3.org/1999/xlink",Rsa="http://www.w3.org/1999/xhtml",Isa="100%",Nsa="100%",Osa="border:0;margin:0;",Lsa="margin:0",Dsa="allow-top-navigation-by-user-activation allow-popups",Msa='The "iframe" tag is not supported by your browser.',Psa=["foreignobject"],Bsa=["dominant-baseline"];function jZn(e){const t=YZn(e);return HTe(),Rna(t.config??{}),t}async function Fsa(e,t){Sbt(),e=jZn(e).code;try{await kbt(e)}catch(r){if(t!=null&&t.suppressErrors)return!1;throw r}return!0}const b5n=(e,t,r=[])=>` +.${e} ${t} { ${r.join(" !important; ")} !important; }`,$sa=(e,t={})=>{var r;let a="";if(e.themeCSS!==void 0&&(a+=` +${e.themeCSS}`),e.fontFamily!==void 0&&(a+=` +:root { --mermaid-font-family: ${e.fontFamily}}`),e.altFontFamily!==void 0&&(a+=` +:root { --mermaid-alt-font-family: ${e.altFontFamily}}`),!uA(t)){const h=e.htmlLabels||((r=e.flowchart)==null?void 0:r.htmlLabels)?["> *","span"]:["rect","polygon","ellipse","circle","path"];for(const f in t){const p=t[f];uA(p.styles)||h.forEach(m=>{a+=b5n(p.id,m,p.styles)}),uA(p.textStyles)||(a+=b5n(p.id,"tspan",p.textStyles))}}return a},Usa=(e,t,r,a)=>{const s=$sa(e,r),o=Wra(t,s,e.themeVariables);return Gse(RAn(`${a}{${o}}`),NAn)},zsa=(e="",t,r)=>{let a=e;return!r&&!t&&(a=a.replace(/marker-end="url\([\d+./:=?A-Za-z-]*?#/g,'marker-end="url(#')),a=ple(a),a=a.replace(/
    /g,"
    "),a},Gsa=(e="",t)=>{var r,a;const s=(a=(r=t==null?void 0:t.viewBox)==null?void 0:r.baseVal)!=null&&a.height?t.viewBox.baseVal.height+"px":Nsa,o=btoa(''+e+"");return``},y5n=(e,t,r,a,s)=>{const o=e.append("div");o.attr("id",r),a&&o.attr("style",a);const u=o.append("svg").attr("id",t).attr("width","100%").attr("xmlns",Asa);return s&&u.attr("xmlns:xlink",s),u.append("g"),e};function v5n(e,t){return e.append("iframe").attr("id",t).attr("style","width: 100%; height: 100%;").attr("sandbox","")}const qsa=(e,t,r,a)=>{var s,o,u;(s=e.getElementById(t))==null||s.remove(),(o=e.getElementById(r))==null||o.remove(),(u=e.getElementById(a))==null||u.remove()},Hsa=async function(e,t,r){var a,s,o,u,h,f;Sbt();const p=jZn(t);t=p.code;const m=Lf();ut.debug(m),t.length>((m==null?void 0:m.maxTextSize)??xsa)&&(t=Ssa);const b="#"+e,_="i"+e,w="#"+_,S="d"+e,C="#"+S;let A=gn("body");const k=m.securityLevel===Tsa,I=m.securityLevel===Csa,N=m.fontFamily;if(r!==void 0){if(r&&(r.innerHTML=""),k){const ee=v5n(gn(r),_);A=gn(ee.nodes()[0].contentDocument.body),A.node().style.margin=0}else A=gn(r);y5n(A,e,S,`font-family: ${N}`,ksa)}else{if(qsa(document,e,S,_),k){const ee=v5n(gn("body"),_);A=gn(ee.nodes()[0].contentDocument.body),A.node().style.margin=0}else A=gn("body");y5n(A,e,S)}let L,P;try{L=await kbt(t,{title:p.title})}catch(ee){L=new LZn("error"),P=ee}const M=A.select(C).node(),F=L.type,U=M.firstChild,$=U.firstChild,G=(s=(a=L.renderer).getClasses)==null?void 0:s.call(a,t,L),B=Usa(m,F,G,b),Z=document.createElement("style");Z.innerHTML=B,U.insertBefore(Z,$);try{await L.renderer.draw(t,e,s5n,L)}catch(ee){throw nia.draw(t,e,s5n),ee}const z=A.select(`${C} svg`),Y=(u=(o=L.db).getAccTitle)==null?void 0:u.call(o),W=(f=(h=L.db).getAccDescription)==null?void 0:f.call(h);Ysa(F,z,Y,W),A.select(`[id="${e}"]`).selectAll("foreignobject > *").attr("xmlns",Rsa);let Q=A.select(C).node().innerHTML;if(ut.debug("config.arrowMarkerAbsolute",m.arrowMarkerAbsolute),Q=zsa(Q,k,Np(m.arrowMarkerAbsolute)),k){const ee=A.select(C+" svg").node();Q=Gsa(Q,ee)}else I||(Q=rW.sanitize(Q,{ADD_TAGS:Psa,ADD_ATTR:Bsa}));if(Cia(),P)throw P;const j=gn(k?w:C).node();return j&&"remove"in j&&j.remove(),{svg:Q,bindFunctions:L.db.bindFunctions}};function Vsa(e={}){var t;e!=null&&e.fontFamily&&!((t=e.themeVariables)!=null&&t.fontFamily)&&(e.themeVariables||(e.themeVariables={}),e.themeVariables.fontFamily=e.fontFamily),Ana(e),e!=null&&e.theme&&e.theme in V7?e.themeVariables=V7[e.theme].getThemeVariables(e.themeVariables):e&&(e.themeVariables=V7.default.getThemeVariables(e.themeVariables));const r=typeof e=="object"?Cna(e):rZn();gbt(r.logLevel),Sbt()}const kbt=(e,t={})=>{const{code:r}=YZn(e);return Tia(r,t)};function Ysa(e,t,r,a){kia(t,e),Ria(t,r,a,t.attr("id"))}const l$=Object.freeze({render:Hsa,parse:Fsa,getDiagramFromText:kbt,initialize:Vsa,getConfig:Lf,setConfig:iZn,getSiteConfig:rZn,updateSiteConfig:kna,reset:()=>{HTe()},globalReset:()=>{HTe(aW)},defaultConfig:aW});gbt(Lf().logLevel);HTe(Lf());const jsa=async()=>{ut.debug("Loading registered diagrams");const t=(await Promise.allSettled(Object.entries(iW).map(async([r,{detector:a,loader:s}])=>{if(s)try{xbt(r)}catch{try{const{diagram:u,id:h}=await s();YTe(h,u,a)}catch(u){throw ut.error(`Failed to load external diagram with key ${r}. Removing from detectors.`),delete iW[r],u}}}))).filter(r=>r.status==="rejected");if(t.length>0){ut.error(`Failed to load ${t.length} external diagrams`);for(const r of t)ut.error(r);throw new Error(`Failed to load ${t.length} external diagrams`)}},Wsa=(e,t,r)=>{ut.warn(e),tZn(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}))},WZn=async function(e={querySelector:".mermaid"}){try{await Ksa(e)}catch(t){if(tZn(t)&&ut.error(t.str),EA.parseError&&EA.parseError(t),!e.suppressErrors)throw ut.error("Use the suppressErrors option to suppress these errors"),t}},Ksa=async function({postRenderCallback:e,querySelector:t,nodes:r}={querySelector:".mermaid"}){const a=l$.getConfig();ut.debug(`${e?"":"No "}Callback function found`);let s;if(r)s=r;else if(t)s=document.querySelectorAll(t);else throw new Error("Nodes and querySelector are both undefined");ut.debug(`Found ${s.length} diagrams`),(a==null?void 0:a.startOnLoad)!==void 0&&(ut.debug("Start On Load: "+(a==null?void 0:a.startOnLoad)),l$.updateSiteConfig({startOnLoad:a==null?void 0:a.startOnLoad}));const o=new il.InitIDGenerator(a.deterministicIds,a.deterministicIDSeed);let u;const h=[];for(const f of Array.from(s)){ut.info("Rendering diagram: "+f.id);/*! Check if previously processed */if(f.getAttribute("data-processed"))continue;f.setAttribute("data-processed","true");const p=`mermaid-${o.next()}`;u=f.innerHTML,u=TAe(il.entityDecode(u)).trim().replace(//gi,"
    ");const m=il.detectInit(u);m&&ut.debug("Detected early reinit: ",m);try{const{svg:b,bindFunctions:_}=await ZZn(p,u,f);f.innerHTML=b,e&&await e(p),_&&_(f)}catch(b){Wsa(b,h,EA.parseError)}}if(h.length>0)throw h[0]},KZn=function(e){l$.initialize(e)},Xsa=async function(e,t,r){ut.warn("mermaid.init is deprecated. Please use run instead."),e&&KZn(e);const a={postRenderCallback:r,querySelector:".mermaid"};typeof t=="string"?a.querySelector=t:t&&(t instanceof HTMLElement?a.nodes=[t]:a.nodes=t),await WZn(a)},Qsa=async(e,{lazyLoad:t=!0}={})=>{jQn(...e),t===!1&&await jsa()},XZn=function(){if(EA.startOnLoad){const{startOnLoad:e}=l$.getConfig();e&&EA.run().catch(t=>ut.error("Mermaid failed to initialize",t))}};if(typeof document<"u"){/*! + * Wait for document loaded before starting the execution + */window.addEventListener("load",XZn,!1)}const Zsa=function(e){EA.parseError=e},XTe=[];let gat=!1;const QZn=async()=>{if(!gat){for(gat=!0;XTe.length>0;){const e=XTe.shift();if(e)try{await e()}catch(t){ut.error("Error executing queue",t)}}gat=!1}},Jsa=async(e,t)=>new Promise((r,a)=>{const s=()=>new Promise((o,u)=>{l$.parse(e,t).then(h=>{o(h),r(h)},h=>{var f;ut.error("Error parsing",h),(f=EA.parseError)==null||f.call(EA,h),u(h),a(h)})});XTe.push(s),QZn().catch(a)}),ZZn=(e,t,r)=>new Promise((a,s)=>{const o=()=>new Promise((u,h)=>{l$.render(e,t,r).then(f=>{u(f),a(f)},f=>{var p;ut.error("Error parsing",f),(p=EA.parseError)==null||p.call(EA,f),h(f),s(f)})});XTe.push(o),QZn().catch(s)}),EA={startOnLoad:!0,mermaidAPI:l$,parse:Jsa,render:ZZn,init:Xsa,run:WZn,registerExternalDiagrams:Qsa,initialize:KZn,parseError:void 0,contentLoaded:XZn,setParseErrorHandler:Zsa,detectType:l6e};(()=>{var a,s,o;(a=Path2D.prototype).roundRect??(a.roundRect=e),globalThis.CanvasRenderingContext2D&&((s=globalThis.CanvasRenderingContext2D.prototype).roundRect??(s.roundRect=e)),globalThis.OffscreenCanvasRenderingContext2D&&((o=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect??(o.roundRect=e));function e(u,h,f,p,m){if(![u,h,f,p].every(M=>Number.isFinite(M)))return;m=I(m);let b,_,w,S;if(m.length===4)b=L(m[0]),_=L(m[1]),w=L(m[2]),S=L(m[3]);else if(m.length===3)b=L(m[0]),_=L(m[1]),S=L(m[1]),w=L(m[2]);else if(m.length===2)b=L(m[0]),w=L(m[0]),_=L(m[1]),S=L(m[1]);else if(m.length===1)b=L(m[0]),_=L(m[0]),w=L(m[0]),S=L(m[0]);else throw new RangeError(`${t(this)} ${m.length} is not a valid size for radii sequence.`);const C=[b,_,w,S],A=C.find(({x:M,y:F})=>M<0||F<0);if((A==null?void 0:A.x)<0?A.x:A==null||A.y,C.some(({x:M,y:F})=>!Number.isFinite(M)||!Number.isFinite(F)))return;if(A)throw new RangeError(`${t(this)} Radius value ${A} is negative.`);P(C),f<0&&p<0?(this.moveTo(u-b.x,h),this.ellipse(u+f+_.x,h-_.y,_.x,_.y,0,-Math.PI*1.5,-Math.PI),this.ellipse(u+f+w.x,h+p+w.y,w.x,w.y,0,-Math.PI,-Math.PI/2),this.ellipse(u-S.x,h+p+S.y,S.x,S.y,0,-Math.PI/2,0),this.ellipse(u-b.x,h-b.y,b.x,b.y,0,0,-Math.PI/2)):f<0?(this.moveTo(u-b.x,h),this.ellipse(u+f+_.x,h+_.y,_.x,_.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(u+f+w.x,h+p-w.y,w.x,w.y,0,-Math.PI,-Math.PI*1.5,1),this.ellipse(u-S.x,h+p-S.y,S.x,S.y,0,Math.PI/2,0,1),this.ellipse(u-b.x,h+b.y,b.x,b.y,0,0,-Math.PI/2,1)):p<0?(this.moveTo(u+b.x,h),this.ellipse(u+f-_.x,h-_.y,_.x,_.y,0,Math.PI/2,0,1),this.ellipse(u+f-w.x,h+p+w.y,w.x,w.y,0,0,-Math.PI/2,1),this.ellipse(u+S.x,h+p+S.y,S.x,S.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(u+b.x,h-b.y,b.x,b.y,0,-Math.PI,-Math.PI*1.5,1)):(this.moveTo(u+b.x,h),this.ellipse(u+f-_.x,h+_.y,_.x,_.y,0,-Math.PI/2,0),this.ellipse(u+f-w.x,h+p-w.y,w.x,w.y,0,0,Math.PI/2),this.ellipse(u+S.x,h+p-S.y,S.x,S.y,0,Math.PI/2,Math.PI),this.ellipse(u+b.x,h+b.y,b.x,b.y,0,Math.PI,Math.PI*1.5)),this.closePath(),this.moveTo(u,h);function k(M){const{x:F,y:U,z:$,w:G}=M;return{x:F,y:U,z:$,w:G}}function I(M){const F=typeof M;return F==="undefined"||M===null?[0]:F==="function"?[NaN]:F==="object"?typeof M[Symbol.iterator]=="function"?[...M].map(U=>{const $=typeof U;return $==="undefined"||U===null?0:$==="function"?NaN:$==="object"?k(U):N(U)}):[k(M)]:[N(M)]}function N(M){return+M}function L(M){const F=N(M);return Number.isFinite(F)?{x:F,y:F}:Object(M)===M?{x:N(M.x??0),y:N(M.y??0)}:{x:NaN,y:NaN}}function P(M){const[F,U,$,G]=M,B=[Math.abs(f)/(F.x+U.x),Math.abs(p)/(U.y+$.y),Math.abs(f)/($.x+G.x),Math.abs(p)/(F.y+G.y)],Z=Math.min(...B);if(Z<=1)for(const z of M)z.x*=Z,z.y*=Z}}function t(u){return`Failed to execute 'roundRect' on '${r(u)}':`}function r(u){return Object(u)===u&&u instanceof Path2D?"Path2D":u instanceof(globalThis==null?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":u instanceof(globalThis==null?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(u==null?void 0:u.constructor.name)||u}})();const sCa=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));var na={image:new Map,background:new Map,resource:new Map,defaultStyle:new Map,baseStyle:new Map,computedStyle:new WeakMap,font:new Set,session:{styleMap:new Map,styleCache:new WeakMap,nodeMap:new Map}};function eoa(e="soft"){switch(na.session.__counterEpoch=(na.session.__counterEpoch||0)+1,e){case"auto":{na.session.styleMap=new Map,na.session.nodeMap=new Map;return}case"soft":{na.session.styleMap=new Map,na.session.nodeMap=new Map,na.session.styleCache=new WeakMap;return}case"full":return;case"disabled":{na.session.styleMap=new Map,na.session.nodeMap=new Map,na.session.styleCache=new WeakMap,na.computedStyle=new WeakMap,na.baseStyle=new Map,na.defaultStyle=new Map,na.image=new Map,na.background=new Map,na.resource=new Map,na.font=new Set;return}default:{na.session.styleMap=new Map,na.session.nodeMap=new Map,na.session.styleCache=new WeakMap;return}}}function Rbt(e){let t=e.match(/url\((['"]?)(.*?)(\1)\)/);if(!t)return null;let r=t[2].trim();return r.startsWith("#")?null:r}function toa(e){if(!e||e==="none")return"";let t=e.replace(/translate[XY]?\([^)]*\)/g,"");return t=t.replace(/matrix\(([^)]+)\)/g,(r,a)=>{let s=a.split(",").map(o=>o.trim());return s.length!==6?`matrix(${a})`:(s[4]="0",s[5]="0",`matrix(${s.join(", ")})`)}),t=t.replace(/matrix3d\(([^)]+)\)/g,(r,a)=>{let s=a.split(",").map(o=>o.trim());return s.length!==16?`matrix3d(${a})`:(s[12]="0",s[13]="0",`matrix3d(${s.join(", ")})`)}),t.trim().replace(/\s{2,}/g," ")}function QTe(e){if(/%[0-9A-Fa-f]{2}/.test(e))return e;try{return encodeURI(e)}catch{return e}}function noa(e="[snapDOM]",{ttlMs:t=5*6e4,maxEntries:r=12}={}){let a=new Map,s=0;function o(u,h,f){if(s>=r)return;let p=Date.now();(a.get(h)||0)>p||(a.set(h,p+t),s++,u==="warn"&&console&&console.warn?console.warn(`${e} ${f}`):console&&console.error&&console.error(`${e} ${f}`))}return{warnOnce(u,h){o("warn",u,h)},errorOnce(u,h){o("error",u,h)},reset(){a.clear(),s=0}}}var _5n=noa("[snapDOM]",{ttlMs:3*6e4,maxEntries:10}),mat=new Map,_Ee=new Map;function roa(e){return/^data:|^blob:|^about:blank$/i.test(e)}function ioa(e,t){try{let r=typeof location<"u"&&location.href?location.href:"http://localhost/",a=t.includes("{url}")?t.split("{url}")[0]:t,s=new URL(a||".",r),o=new URL(e,r);if(o.origin===s.origin)return!0;let u=o.searchParams;if(u&&(u.has("url")||u.has("target")))return!0}catch{}return!1}function aoa(e,t){if(!t||roa(e)||ioa(e,t))return!1;try{let r=typeof location<"u"&&location.href?location.href:"http://localhost/",a=new URL(e,r);return typeof location<"u"?a.origin!==location.origin:!0}catch{return!!t}}function soa(e,t){if(!t)return e;if(t.includes("{url}"))return t.replace("{urlRaw}",QTe(e)).replace("{url}",encodeURIComponent(e));if(/[?&]url=?$/.test(t))return`${t}${encodeURIComponent(e)}`;if(t.endsWith("?"))return`${t}url=${encodeURIComponent(e)}`;if(t.endsWith("/"))return`${t}${QTe(e)}`;let r=t.includes("?")?"&":"?";return`${t}${r}url=${encodeURIComponent(e)}`}function w5n(e){return new Promise((t,r)=>{let a=new FileReader;a.onload=()=>t(String(a.result||"")),a.onerror=()=>r(new Error("read_failed")),a.readAsDataURL(e)})}function ooa(e,t){return[t.as||"blob",t.timeout??3e3,t.useProxy||"",t.errorTTL??8e3,e].join("|")}async function pA(e,t={}){let r=t.as??"blob",a=t.timeout??3e3,s=t.useProxy||"",o=t.errorTTL??8e3,u=t.headers||{},h=!!t.silent;if(/^data:/i.test(e))try{if(r==="text")return{ok:!0,data:String(e),status:200,url:e,fromCache:!1};if(r==="dataURL")return{ok:!0,data:String(e),status:200,url:e,fromCache:!1,mime:String(e).slice(5).split(";")[0]||""};let[,A="",k=""]=String(e).match(/^data:([^,]*),(.*)$/)||[],I=/;base64/i.test(A)?atob(k):decodeURIComponent(k),N=new Uint8Array([...I].map(P=>P.charCodeAt(0))),L=new Blob([N],{type:(A||"").split(";")[0]||""});return{ok:!0,data:L,status:200,url:e,fromCache:!1,mime:L.type||""}}catch{return{ok:!1,data:null,status:0,url:e,fromCache:!1,reason:"special_url_error"}}if(/^blob:/i.test(e))try{let A=await fetch(e);if(!A.ok)return{ok:!1,data:null,status:A.status,url:e,fromCache:!1,reason:"http_error"};let k=await A.blob(),I=k.type||A.headers.get("content-type")||"";return r==="dataURL"?{ok:!0,data:await w5n(k),status:A.status,url:e,fromCache:!1,mime:I}:r==="text"?{ok:!0,data:await k.text(),status:A.status,url:e,fromCache:!1,mime:I}:{ok:!0,data:k,status:A.status,url:e,fromCache:!1,mime:I}}catch{return{ok:!1,data:null,status:0,url:e,fromCache:!1,reason:"network"}}if(/^about:blank$/i.test(e))return r==="dataURL"?{ok:!0,data:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==",status:200,url:e,fromCache:!1,mime:"image/png"}:{ok:!0,data:r==="text"?"":new Blob([]),status:200,url:e,fromCache:!1};let f=ooa(e,{as:r,timeout:a,useProxy:s,errorTTL:o}),p=_Ee.get(f);if(p&&p.until>Date.now())return{...p.result,fromCache:!0};p&&_Ee.delete(f);let m=mat.get(f);if(m)return m;let b=aoa(e,s)?soa(e,s):e,_=t.credentials;if(!_)try{let A=typeof location<"u"&&location.href?location.href:"http://localhost/",k=new URL(e,A);_=typeof location<"u"&&k.origin===location.origin?"include":"omit"}catch{_="omit"}let w=new AbortController,S=setTimeout(()=>w.abort("timeout"),a),C=(async()=>{try{let A=await fetch(b,{signal:w.signal,credentials:_,headers:u});if(!A.ok){let N={ok:!1,data:null,status:A.status,url:b,fromCache:!1,reason:"http_error"};if(o>0&&_Ee.set(f,{until:Date.now()+o,result:N}),!h){let L=`${A.status} ${A.statusText||""}`.trim();_5n.warnOnce(`http:${A.status}:${r}:${new URL(e,(location==null?void 0:location.href)??"http://localhost/").origin}`,`HTTP error ${L} while fetching ${r} ${e}`)}return t.onError&&t.onError(N),N}if(r==="text")return{ok:!0,data:await A.text(),status:A.status,url:b,fromCache:!1};let k=await A.blob(),I=k.type||A.headers.get("content-type")||"";return r==="dataURL"?{ok:!0,data:await w5n(k),status:A.status,url:b,fromCache:!1,mime:I}:{ok:!0,data:k,status:A.status,url:b,fromCache:!1,mime:I}}catch(A){let k=A&&typeof A=="object"&&"name"in A&&A.name==="AbortError"?String(A.message||"").includes("timeout")?"timeout":"abort":"network",I={ok:!1,data:null,status:0,url:b,fromCache:!1,reason:k};if(!/^blob:/i.test(e)&&o>0&&_Ee.set(f,{until:Date.now()+o,result:I}),!h){let N=`${k}:${r}:${new URL(e,(location==null?void 0:location.href)??"http://localhost/").origin}`,L=k==="timeout"?`Timeout after ${a}ms. Consider increasing timeout or using a proxy for ${e}`:k==="abort"?`Request aborted while fetching ${r} ${e}`:`Network/CORS issue while fetching ${r} ${e}. A proxy may be required`;_5n.errorOnce(N,L)}return t.onError&&t.onError(I),I}finally{clearTimeout(S),mat.delete(f)}})();return mat.set(f,C),C}async function JZn(e,t={}){if(/^((repeating-)?(linear|radial|conic)-gradient)\(/i.test(e)||e.trim()==="none")return e;let r=Rbt(e);if(!r)return e;let a=QTe(r);if(na.background.has(a)){let s=na.background.get(a);return s?`url("${s}")`:"none"}try{let s=await pA(a,{as:"dataURL",useProxy:t.useProxy});return s.ok?(na.background.set(a,s.data),`url("${s.data}")`):(na.background.set(a,null),"none")}catch{return na.background.set(a,null),"none"}}var loa=new Set(["meta","script","noscript","title","link","template"]),Ibt=new Set(["meta","link","style","title","noscript","script","template","g","defs","use","marker","mask","clipPath","pattern","path","polygon","polyline","line","circle","ellipse","rect","filter","lineargradient","radialgradient","stop"]);function coa(e){if(e=String(e).toLowerCase(),Ibt.has(e)){let o={};return na.defaultStyle.set(e,o),o}if(na.defaultStyle.has(e))return na.defaultStyle.get(e);let t=document.getElementById("snapdom-sandbox");t||(t=document.createElement("div"),t.id="snapdom-sandbox",t.setAttribute("data-snapdom-sandbox","true"),t.setAttribute("aria-hidden","true"),t.style.position="absolute",t.style.left="-9999px",t.style.top="-9999px",t.style.width="0px",t.style.height="0px",t.style.overflow="hidden",document.body.appendChild(t));let r=document.createElement(e);r.style.all="initial",t.appendChild(r);let a=getComputedStyle(r),s={};for(let o of a){if(eJn(o))continue;let u=a.getPropertyValue(o);s[o]=u}return t.removeChild(r),na.defaultStyle.set(e,s),s}var uoa=/(?:^|-)(animation|transition)(?:-|$)/i,hoa=/^(--|view-timeline|scroll-timeline|animation-trigger|offset-|position-try|app-region|interactivity|overlay|view-transition|-webkit-locale|-webkit-user-(?:drag|modify)|-webkit-tap-highlight-color|-webkit-text-security)$/i,doa=new Set(["cursor","pointer-events","touch-action","user-select","print-color-adjust","speak","reading-flow","reading-order","anchor-name","anchor-scope","container-name","container-type","timeline-scope"]);function eJn(e){let t=String(e).toLowerCase();return!!(doa.has(t)||hoa.test(t)||uoa.test(t))}function tht(e,t){if(t=String(t||"").toLowerCase(),Ibt.has(t))return"";let r=[],a=coa(t);for(let[s,o]of Object.entries(e)){if(eJn(s))continue;let u=a[s];o&&o!==u&&r.push(`${s}:${o}`)}return r.sort(),r.join(";")}function foa(e){let t=new Set;return e.nodeType!==Node.ELEMENT_NODE&&e.nodeType!==Node.DOCUMENT_FRAGMENT_NODE?[]:(e.tagName&&t.add(e.tagName.toLowerCase()),typeof e.querySelectorAll=="function"&&e.querySelectorAll("*").forEach(r=>t.add(r.tagName.toLowerCase())),Array.from(t))}function poa(e){let t=new Map;for(let a of e){let s=na.defaultStyle.get(a);if(!s)continue;let o=Object.entries(s).map(([u,h])=>`${u}:${h};`).sort().join("");o&&(t.has(o)||t.set(o,[]),t.get(o).push(a))}let r="";for(let[a,s]of t.entries())r+=`${s.join(",")} { ${a} } +`;return r}function goa(e){let t=Array.from(new Set(e.values())).filter(Boolean).sort(),r=new Map,a=1;for(let s of t)r.set(s,`c${a++}`);return r}function tJn(e,t=null){if(!(e instanceof Element))return window.getComputedStyle(e,t);let r=na.computedStyle.get(e);if(r||(r=new Map,na.computedStyle.set(e,r)),!r.has(t)){let a=window.getComputedStyle(e,t);r.set(t,a)}return r.get(t)}function E5n(e){let t={};for(let r of e)t[r]=e.getPropertyValue(r);return t}function nJn(e){let t=[],r=0,a=0;for(let s=0;su&&u.textContent&&u.textContent.trim());if(a.length===0)return 0;let s=t instanceof Element?Array.from(t.querySelectorAll(r)).filter(u=>u&&u.textContent&&u.textContent.trim()):[],o=0;for(let u=0;ua.endsWith(o)))return!0;let s=(r.pathname+r.search).toLowerCase();if(/\bfont(s)?\b/.test(s)||/\.woff2?(\b|$)/.test(s))return!0;for(let o of t){let u=o.toLowerCase().replace(/\s+/g,"+"),h=o.toLowerCase().replace(/\s+/g,"-");if(s.includes(u)||s.includes(h))return!0}return!1}catch{return!1}}function Ooa(e){var r;let t=new Set;for(let a of e||[]){let s=(r=String(a).split("__")[0])==null?void 0:r.trim();s&&t.add(s)}return t}function S5n(e,t){return e&&e.replace(/url\(\s*(['"]?)([^)'"]+)\1\s*\)/g,(r,a,s)=>{let o=(s||"").trim();if(!o||/^data:|^blob:|^https?:|^file:|^about:/i.test(o))return r;let u=o;try{u=new URL(o,t||location.href).href}catch{}return`url("${u}")`})}var rht=/@import\s+(?:url\(\s*(['"]?)([^)"']+)\1\s*\)|(['"])([^"']+)\3)([^;]*);/g,ZTe=4;async function Loa(e,t,r){if(!e)return e;let a=new Set;function s(h,f){try{return new URL(h,f||location.href).href}catch{return h}}async function o(h,f,p=0){if(p>ZTe)return console.warn(`[snapDOM] @import depth exceeded (${ZTe}) at ${f}`),h;let m="",b=0,_;for(;_=rht.exec(h);){m+=h.slice(b,_.index),b=rht.lastIndex;let w=(_[2]||_[4]||"").trim(),S=s(w,f);if(a.has(S)){console.warn(`[snapDOM] Skipping circular @import: ${S}`);continue}a.add(S);let C="";try{let A=await pA(S,{as:"text",useProxy:r,silent:!0});A.ok&&typeof A.data=="string"&&(C=A.data)}catch{}C?(C=S5n(C,S),C=await o(C,S,p+1),m+=` +/* inlined: ${S} */ +${C} +`):m+=_[0]}return m+=h.slice(b),m}let u=S5n(e,t||location.href);return u=await o(u,t||location.href,0),u}var rJn=/url\((["']?)([^"')]+)\1\)/g,Doa=/@font-face[^{}]*\{[^}]*\}/g;function iJn(e){if(!e)return[];let t=[],r=e.split(",").map(a=>a.trim()).filter(Boolean);for(let a of r){let s=a.match(/^U\+([0-9A-Fa-f?]+)(?:-([0-9A-Fa-f?]+))?$/);if(!s)continue;let o=s[1],u=s[2],h=f=>{if(!f.includes("?"))return parseInt(f,16);let p=parseInt(f.replace(/\?/g,"0"),16),m=parseInt(f.replace(/\?/g,"F"),16);return[p,m]};if(u){let f=h(o),p=h(u),m=Array.isArray(f)?f[0]:f,b=Array.isArray(p)?p[1]:p;t.push([Math.min(m,b),Math.max(m,b)])}else{let f=h(o);Array.isArray(f)?t.push([f[0],f[1]]):t.push([f,f])}}return t}function aJn(e,t){if(!t.length||!e||e.size===0)return!0;for(let r of e)for(let[a,s]of t)if(r>=a&&r<=s)return!0;return!1}function Nbt(e,t){let r=[];if(!e)return r;for(let a of e.matchAll(rJn)){let s=(a[2]||"").trim();if(!(!s||s.startsWith("data:"))){if(!/^https?:/i.test(s))try{s=new URL(s,t||location.href).href}catch{}r.push(s)}}return r}async function sJn(e,t,r=""){var s,o,u,h,f;let a=e;for(let p of e.matchAll(rJn)){let m=Rbt(p[0]);if(!m)continue;let b=m;if(!b.startsWith("http")&&!b.startsWith("data:"))try{b=new URL(b,t||location.href).href}catch{}if(!y7(b)){if((s=na.resource)!=null&&s.has(b)){(o=na.font)==null||o.add(b),a=a.replace(p[0],`url(${na.resource.get(b)})`);continue}if(!((u=na.font)!=null&&u.has(b)))try{let _=await pA(b,{as:"dataURL",useProxy:r,silent:!0});if(_.ok&&typeof _.data=="string"){let w=_.data;(h=na.resource)==null||h.set(b,w),(f=na.font)==null||f.add(b),a=a.replace(p[0],`url(${w})`)}}catch{console.warn("[snapDOM] Failed to fetch font resource:",b)}}}return a}function Moa(e){if(!e.length)return null;let t=(u,h)=>e.some(([f,p])=>!(ph)),r=t(0,255)||t(305,305),a=t(256,591)||t(7680,7935),s=t(880,1023),o=t(1024,1279);return t(7840,7929)||t(258,259)||t(416,417)||t(431,432)?"vietnamese":o?"cyrillic":s?"greek":a?"latin-ext":r?"latin":null}function T5n(e={}){let t=new Set((e.families||[]).map(s=>String(s).toLowerCase())),r=new Set((e.domains||[]).map(s=>String(s).toLowerCase())),a=new Set((e.subsets||[]).map(s=>String(s).toLowerCase()));return(s,o)=>{if(t.size&&t.has(s.family.toLowerCase()))return!0;if(r.size)for(let u of s.srcUrls)try{if(r.has(new URL(u).host.toLowerCase()))return!0}catch{}if(a.size){let u=Moa(o);if(u&&a.has(u))return!0}return!1}}function Poa(e){var o,u,h,f,p,m;if(!e)return e;let t=/@font-face[^{}]*\{[^}]*\}/gi,r=new Set,a=[];for(let b of e.match(t)||[]){let _=((o=b.match(/font-family:\s*([^;]+);/i))==null?void 0:o[1])||"",w=h6e(_),S=(((u=b.match(/font-weight:\s*([^;]+);/i))==null?void 0:u[1])||"400").trim(),C=(((h=b.match(/font-style:\s*([^;]+);/i))==null?void 0:h[1])||"normal").trim(),A=(((f=b.match(/font-stretch:\s*([^;]+);/i))==null?void 0:f[1])||"100%").trim(),k=(((p=b.match(/unicode-range:\s*([^;]+);/i))==null?void 0:p[1])||"").trim(),I=(((m=b.match(/src\s*:\s*([^;}]+)[;}]/i))==null?void 0:m[1])||"").trim(),N=Nbt(I,location.href),L=N.length?N.map(M=>String(M).toLowerCase()).sort().join("|"):I.toLowerCase(),P=[String(w||"").toLowerCase(),S,C,A,k.toLowerCase(),L].join("|");r.has(P)||(r.add(P),a.push(b))}if(a.length===0)return e;let s=0;return e.replace(t,()=>a[s++]||"")}function Boa(e,t,r,a){let s=Array.from(e||[]).sort().join("|"),o=t?JSON.stringify({families:(t.families||[]).map(h=>String(h).toLowerCase()).sort(),domains:(t.domains||[]).map(h=>String(h).toLowerCase()).sort(),subsets:(t.subsets||[]).map(h=>String(h).toLowerCase()).sort()}):"",u=(r||[]).map(h=>`${(h.family||"").toLowerCase()}::${h.weight||"normal"}::${h.style||"normal"}::${h.src||""}`).sort().join("|");return`fonts-embed-css::req=${s}::ex=${o}::lf=${u}::px=${a||""}`}async function oJn(e,t,r,a){let s;try{s=e.cssRules||[]}catch{return}let o=(u,h)=>{try{return new URL(u,h||location.href).href}catch{return u}};for(let u of s){if(u.type===CSSRule.IMPORT_RULE&&u.styleSheet){let h=u.href?o(u.href,t):t;if(a.depth>=ZTe){console.warn(`[snapDOM] CSSOM import depth exceeded (${ZTe}) at ${h}`);continue}if(h&&a.visitedSheets.has(h)){console.warn(`[snapDOM] Skipping circular CSSOM import: ${h}`);continue}h&&a.visitedSheets.add(h);let f={...a,depth:(a.depth||0)+1};await oJn(u.styleSheet,h,r,f);continue}if(u.type===CSSRule.FONT_FACE_RULE){let h=(u.style.getPropertyValue("font-family")||"").trim(),f=h6e(h);if(!f||y7(f))continue;let p=(u.style.getPropertyValue("font-weight")||"400").trim(),m=(u.style.getPropertyValue("font-style")||"normal").trim(),b=(u.style.getPropertyValue("font-stretch")||"100%").trim(),_=(u.style.getPropertyValue("src")||"").trim(),w=(u.style.getPropertyValue("unicode-range")||"").trim();if(!a.faceMatchesRequired(f,m,p,b))continue;let S=iJn(w);if(!aJn(a.usedCodepoints,S))continue;let C={family:f,weightSpec:p,styleSpec:m,stretchSpec:b,unicodeRange:w,srcRaw:_,srcUrls:Nbt(_,t||location.href),href:t||location.href};if(a.simpleExcluder&&a.simpleExcluder(C,S))continue;if(/url\(/i.test(_)){let A=await sJn(_,t||location.href,a.useProxy);await r(`@font-face{font-family:${f};src:${A};font-style:${m};font-weight:${p};font-stretch:${b};${w?`unicode-range:${w};`:""}}`)}else await r(`@font-face{font-family:${f};src:${_};font-style:${m};font-weight:${p};font-stretch:${b};${w?`unicode-range:${w};`:""}}`)}}}async function Foa({required:e,usedCodepoints:t,exclude:r=void 0,localFonts:a=[],useProxy:s=""}={}){var C,A,k,I,N,L,P,M,F,U,$,G,B,Z,z,Y,W,Q;e instanceof Set||(e=new Set),t instanceof Set||(t=new Set);let o=new Map;for(let V of e){let[j,ee,te,ne]=String(V).split("__");if(!j)continue;let se=o.get(j)||[];se.push({w:parseInt(ee,10),s:te,st:parseInt(ne,10)}),o.set(j,se)}function u(V,j,ee,te){if(!o.has(V))return!1;let ne=o.get(V),se=koa(ee),ie=Roa(j),ge=Ioa(te),ce=se.min!==se.max,be=se.min,ve=ye=>ie.kind==="normal"&&ye==="normal"||ie.kind!=="normal"&&(ye==="italic"||ye==="oblique"),De=!1;for(let ye of ne){let Ee=ce?ye.w>=se.min&&ye.w<=se.max:ye.w===be,he=ve(iSe(ye.s)),we=ye.st>=ge.min&&ye.st<=ge.max;if(Ee&&he&&we){De=!0;break}}if(De)return!0;if(!ce)for(let ye of ne){let Ee=ve(iSe(ye.s)),he=ye.st>=ge.min&&ye.st<=ge.max;if(Math.abs(be-ye.w)<=300&&Ee&&he)return!0}if(!ce&&ie.kind==="normal"&&ne.some(ye=>iSe(ye.s)!=="normal"))for(let ye of ne){let Ee=Math.abs(be-ye.w)<=300,he=ye.st>=ge.min&&ye.st<=ge.max;if(Ee&&he)return!0}return!1}let h=T5n(r),f=Boa(e,r,a,s);if((C=na.resource)!=null&&C.has(f))return na.resource.get(f);let p=Ooa(e),m=[],b=rht;for(let V of document.querySelectorAll("style")){let j=V.textContent||"";for(let ee of j.matchAll(b)){let te=(ee[2]||ee[4]||"").trim();!te||y7(te)||document.querySelector(`link[rel="stylesheet"][href="${te}"]`)||m.push(te)}}m.length&&await Promise.all(m.map(V=>new Promise(j=>{if(document.querySelector(`link[rel="stylesheet"][href="${V}"]`))return j(null);let ee=document.createElement("link");ee.rel="stylesheet",ee.href=V,ee.setAttribute("data-snapdom","injected-import"),ee.onload=()=>j(ee),ee.onerror=()=>j(null),document.head.appendChild(ee)})));let _="",w=Array.from(document.querySelectorAll('link[rel="stylesheet"]')).filter(V=>!!V.href);for(let V of w)try{if(y7(V.href))continue;let j="",ee=!1;try{ee=new URL(V.href,location.href).origin===location.origin}catch{}if(!ee&&!Noa(V.href,p))continue;if(ee){let ne=Array.from(document.styleSheets).find(se=>se.href===V.href);if(ne)try{let se=ne.cssRules||[];j=Array.from(se).map(ie=>ie.cssText).join("")}catch{}}if(!j&&(j=(await pA(V.href,{as:"text",useProxy:s})).data,y7(V.href)))continue;j=await Loa(j,V.href,s);let te="";for(let ne of j.match(Doa)||[]){let se=(((A=ne.match(/font-family:\s*([^;]+);/i))==null?void 0:A[1])||"").trim(),ie=h6e(se);if(!ie||y7(ie))continue;let ge=(((k=ne.match(/font-weight:\s*([^;]+);/i))==null?void 0:k[1])||"400").trim(),ce=(((I=ne.match(/font-style:\s*([^;]+);/i))==null?void 0:I[1])||"normal").trim(),be=(((N=ne.match(/font-stretch:\s*([^;]+);/i))==null?void 0:N[1])||"100%").trim(),ve=(((L=ne.match(/unicode-range:\s*([^;]+);/i))==null?void 0:L[1])||"").trim(),De=(((P=ne.match(/src\s*:\s*([^;}]+)[;}]/i))==null?void 0:P[1])||"").trim(),ye=Nbt(De,V.href);if(!u(ie,ce,ge,be))continue;let Ee=iJn(ve);if(!aJn(t,Ee))continue;let he={family:ie,weightSpec:ge,styleSpec:ce,stretchSpec:be,unicodeRange:ve,srcRaw:De,srcUrls:ye,href:V.href};if(r&&h(he,Ee))continue;let we=/url\(/i.test(De)?await sJn(ne,V.href,s):ne;te+=we}te.trim()&&(_+=te)}catch{console.warn("[snapDOM] Failed to process stylesheet:",V.href)}let S={requiredIndex:o,usedCodepoints:t,faceMatchesRequired:u,simpleExcluder:r?T5n(r):null,useProxy:s,visitedSheets:new Set,depth:0};for(let V of document.styleSheets)if(!(V.href&&w.some(j=>j.href===V.href)))try{let j=V.href||location.href;j&&S.visitedSheets.add(j),await oJn(V,j,async ee=>{_+=ee},S)}catch{}try{for(let V of document.fonts||[]){if(!V||!V.family||V.status!=="loaded"||!V._snapdomSrc)continue;let j=String(V.family).replace(/^['"]+|['"]+$/g,"");if(y7(j)||!o.has(j)||r!=null&&r.families&&r.families.some(te=>String(te).toLowerCase()===j.toLowerCase()))continue;let ee=V._snapdomSrc;if(!String(ee).startsWith("data:")){if((M=na.resource)!=null&&M.has(V._snapdomSrc))ee=na.resource.get(V._snapdomSrc),(F=na.font)==null||F.add(V._snapdomSrc);else if(!((U=na.font)!=null&&U.has(V._snapdomSrc)))try{let te=await pA(V._snapdomSrc,{as:"dataURL",useProxy:s,silent:!0});if(te.ok&&typeof te.data=="string")ee=te.data,($=na.resource)==null||$.set(V._snapdomSrc,ee),(G=na.font)==null||G.add(V._snapdomSrc);else continue}catch{console.warn("[snapDOM] Failed to fetch dynamic font src:",V._snapdomSrc);continue}}_+=`@font-face{font-family:'${j}';src:url(${ee});font-style:${V.style||"normal"};font-weight:${V.weight||"normal"};}`}}catch{}for(let V of a){if(!V||typeof V!="object")continue;let j=String(V.family||"").replace(/^['"]+|['"]+$/g,"");if(!j||y7(j)||!o.has(j)||r!=null&&r.families&&r.families.some(ge=>String(ge).toLowerCase()===j.toLowerCase()))continue;let ee=V.weight!=null?String(V.weight):"normal",te=V.style!=null?String(V.style):"normal",ne=V.stretchPct!=null?`${V.stretchPct}%`:"100%",se=String(V.src||""),ie=se;if(!ie.startsWith("data:")){if((B=na.resource)!=null&&B.has(se))ie=na.resource.get(se),(Z=na.font)==null||Z.add(se);else if(!((z=na.font)!=null&&z.has(se)))try{let ge=await pA(se,{as:"dataURL",useProxy:s,silent:!0});if(ge.ok&&typeof ge.data=="string")ie=ge.data,(Y=na.resource)==null||Y.set(se,ie),(W=na.font)==null||W.add(se);else continue}catch{console.warn("[snapDOM] Failed to fetch localFonts src:",se);continue}}_+=`@font-face{font-family:'${j}';src:url(${ie});font-style:${te};font-weight:${ee};font-stretch:${ne};}`}return _&&(_=Poa(_),(Q=na.resource)==null||Q.set(f,_)),_}function $oa(e){let t=new Set;if(!e)return t;let r=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,null),a=u=>{let h=h6e(u.fontFamily);if(!h)return;let f=(p,m,b)=>`${h}__${rSe(p)}__${iSe(m)}__${Aoa(b)}`;t.add(f(u.fontWeight,u.fontStyle,u.fontStretch))};a(getComputedStyle(e));let s=getComputedStyle(e,"::before");s&&s.content&&s.content!=="none"&&a(s);let o=getComputedStyle(e,"::after");for(o&&o.content&&o.content!=="none"&&a(o);r.nextNode();){let u=r.currentNode,h=getComputedStyle(u);a(h);let f=getComputedStyle(u,"::before");f&&f.content&&f.content!=="none"&&a(f);let p=getComputedStyle(u,"::after");p&&p.content&&p.content!=="none"&&a(p)}return t}function Uoa(e){var s;let t=new Set,r=o=>{if(o)for(let u of o)t.add(u.codePointAt(0))},a=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT|NodeFilter.SHOW_TEXT,null);for(;a.nextNode();){let o=a.currentNode;if(o.nodeType===Node.TEXT_NODE)r(o.nodeValue||"");else if(o.nodeType===Node.ELEMENT_NODE){let u=o;for(let h of["::before","::after"]){let f=(s=getComputedStyle(u,h))==null?void 0:s.getPropertyValue("content");if(!(!f||f==="none"))if(/^"/.test(f)||/^'/.test(f))r(f.slice(1,-1));else{let p=f.match(/\\[0-9A-Fa-f]{1,6}/g);if(p)for(let m of p)try{t.add(parseInt(m.slice(1),16))}catch{}}}}}return t}async function zoa(e,t=2){try{await document.fonts.ready}catch{}let r=Array.from(e||[]).filter(Boolean);if(r.length===0)return;let a=()=>{let s=document.createElement("div");s.style.cssText="position:absolute!important;left:-9999px!important;top:0!important;opacity:0!important;pointer-events:none!important;contain:layout size style;";for(let o of r){let u=document.createElement("span");u.textContent="AaBbGg1234ÁÉÍÓÚçñ—∞",u.style.fontFamily=`"${o}"`,u.style.fontWeight="700",u.style.fontStyle="italic",u.style.fontSize="32px",u.style.lineHeight="1",u.style.whiteSpace="nowrap",u.style.margin="0",u.style.padding="0",s.appendChild(u)}document.body.appendChild(s),s.offsetWidth,document.body.removeChild(s)};for(let s=0;srequestAnimationFrame(()=>requestAnimationFrame(o)))}async function Goa(e,t,r,a={}){let s=[[e,t]],o=["background-image","mask","mask-image","-webkit-mask","-webkit-mask-image","mask-source","mask-box-image-source","mask-border-source","-webkit-mask-box-image-source","border-image","border-image-source"],u=["mask-position","mask-size","mask-repeat","-webkit-mask-position","-webkit-mask-size","-webkit-mask-repeat","mask-origin","mask-clip","-webkit-mask-origin","-webkit-mask-clip","-webkit-mask-position-x","-webkit-mask-position-y"],h=["background-position","background-position-x","background-position-y","background-size","background-repeat","background-origin","background-clip","background-attachment","background-blend-mode"],f=["border-image-slice","border-image-width","border-image-outset","border-image-repeat"];for(;s.length;){let[p,m]=s.shift(),b=r.get(p)||tJn(p);r.has(p)||r.set(p,b);let _=(()=>{let C=b.getPropertyValue("border-image"),A=b.getPropertyValue("border-image-source");return C&&C!=="none"||A&&A!=="none"})();for(let C of h){let A=b.getPropertyValue(C);A&&m.style.setProperty(C,A)}for(let C of o){let A=b.getPropertyValue(C);if(!A||A==="none")continue;let k=nJn(A),I=await Promise.all(k.map(N=>JZn(N,a)));I.some(N=>N&&N!=="none"&&!/^url\(undefined/.test(N))&&m.style.setProperty(C,I.join(", "))}for(let C of u){let A=b.getPropertyValue(C);!A||A==="initial"||m.style.setProperty(C,A)}if(_)for(let C of f){let A=b.getPropertyValue(C);!A||A==="initial"||m.style.setProperty(C,A)}let w=Array.from(p.children),S=Array.from(m.children).filter(C=>!(C.dataset&&C.dataset.snapdomPseudo));for(let C=0;C"u")return!1;let e=navigator.userAgent||"",t=e.toLowerCase(),r=t.includes("safari")&&!t.includes("chrome")&&!t.includes("crios")&&!t.includes("fxios")&&!t.includes("android"),a=/applewebkit/i.test(e),s=/mobile/i.test(e),o=!/safari/i.test(e),u=a&&s&&o,h=/(micromessenger|wxwork|wecom|windowswechat|macwechat)/i.test(e),f=/(baiduboxapp|baidubrowser|baidusearch|baiduboxlite)/i.test(t),p=/ipad|iphone|ipod/.test(t)&&a;return r||u||h||f||p}var mle=[];function lJn(e){if(!e)return null;if(Array.isArray(e)){let[t,r]=e;return typeof t=="function"?t(r):t}if(typeof e=="object"&&"plugin"in e){let{plugin:t,options:r}=e;return typeof t=="function"?t(r):t}return typeof e=="function"?e():e}function qoa(...e){let t=e.flat();for(let r of t){let a=lJn(r);a&&(mle.some(s=>s&&s.name&&a.name&&s.name===a.name)||mle.push(a))}}function cJn(e){return(e&&Array.isArray(e.plugins)?e.plugins:mle)||mle}async function iO(e,t,r){let a=r,s=cJn(t);for(let o of s){let u=o&&typeof o[e]=="function"?o[e]:null;if(!u)continue;let h=await u(t,a);typeof h<"u"&&(a=h)}return a}async function Hoa(e,t,r){let a=[],s=cJn(t);for(let o of s){let u=o&&typeof o[e]=="function"?o[e]:null;if(!u)continue;let h=await u(t,r);typeof h<"u"&&a.push(h)}return a}function Voa(e){let t=[];if(Array.isArray(e))for(let r of e){let a=lJn(r);if(!a||!a.name)continue;let s=t.findIndex(o=>o&&o.name===a.name);s>=0&&t.splice(s,1),t.push(a)}for(let r of mle)r&&r.name&&!t.some(a=>a.name===r.name)&&t.push(r);return Object.freeze(t)}function Yoa(e,t,r=!1){return!e||e.plugins&&!r||(e.plugins=Voa(t)),e}var C5n=new WeakMap,iht=new Map,aht=0;function Bae(){aht++}var A5n=!1;function joa(e=document.documentElement){var t,r;if(!A5n){A5n=!0;try{new MutationObserver(()=>Bae()).observe(e,{subtree:!0,childList:!0,characterData:!0,attributes:!0})}catch{}try{new MutationObserver(()=>Bae()).observe(document.head,{subtree:!0,childList:!0,characterData:!0,attributes:!0})}catch{}try{let a=document.fonts;a&&((t=a.addEventListener)==null||t.call(a,"loadingdone",Bae),(r=a.ready)==null||r.then(()=>Bae()).catch(()=>{}))}catch{}}}function Woa(e,t={}){let r={},a=e.getPropertyValue("visibility");for(let o=0;or[0]a[0]?1:0).map(([r,a])=>`${r}:${a}`).join(";"),k5n.set(e,t),t)}function Xoa(e,t=null,r={}){let a=C5n.get(e);if(a&&a.epoch===aht)return a.snapshot;let s=t||getComputedStyle(e),o=Woa(s,r);return nla(e,s,o),C5n.set(e,{epoch:aht,snapshot:o}),o}function Qoa(e,t){return e&&e.session&&e.persist?e:e&&(e.styleMap||e.styleCache||e.nodeMap)?{session:e,persist:{snapshotKeyCache:iht,defaultStyle:na.defaultStyle,baseStyle:na.baseStyle,image:na.image,resource:na.resource,background:na.background,font:na.font},options:t||{}}:{session:na.session,persist:{snapshotKeyCache:iht,defaultStyle:na.defaultStyle,baseStyle:na.baseStyle,image:na.image,resource:na.resource,background:na.background,font:na.font},options:e||t||{}}}async function wV(e,t,r,a){var _,w,S;if(e.tagName==="STYLE")return;let s=Qoa(r,a),o=s.options&&s.options.cache||"auto";if(o!=="disabled"&&joa(document.documentElement),o==="disabled"&&!s.session.__bumpedForDisabled&&(Bae(),iht.clear(),s.session.__bumpedForDisabled=!0),Ibt.has((_=e.tagName)==null?void 0:_.toLowerCase())){let C=(w=e.getAttribute)==null?void 0:w.call(e,"style");C&&t.setAttribute("style",C)}let{session:u,persist:h}=s;u.styleCache.has(e)||u.styleCache.set(e,getComputedStyle(e));let f=u.styleCache.get(e),p=Xoa(e,f,s.options),m=Koa(p),b=h.snapshotKeyCache.get(m);if(!b){let C=((S=e.tagName)==null?void 0:S.toLowerCase())||"div";b=tht(p,C),h.snapshotKeyCache.set(m,b)}u.styleMap.set(t,b)}function Zoa(e){return e instanceof HTMLImageElement||e instanceof HTMLCanvasElement||e instanceof HTMLVideoElement||e instanceof HTMLIFrameElement||e instanceof SVGElement||e instanceof HTMLObjectElement||e instanceof HTMLEmbedElement}function Joa(e){return e.backgroundImage&&e.backgroundImage!=="none"||e.backgroundColor&&e.backgroundColor!=="rgba(0, 0, 0, 0)"&&e.backgroundColor!=="transparent"||(parseFloat(e.borderTopWidth)||0)>0||(parseFloat(e.borderBottomWidth)||0)>0||(parseFloat(e.paddingTop)||0)>0||(parseFloat(e.paddingBottom)||0)>0?!0:(e.overflowBlock||e.overflowY||"visible")!=="visible"}function ela(e){let t=e.parentElement;if(!t)return!1;let r=getComputedStyle(t).display||"";return r.includes("flex")||r.includes("grid")}function tla(e,t){if(e.textContent&&/\S/.test(e.textContent))return!0;let r=e.firstElementChild,a=e.lastElementChild;if(r&&r.tagName==="BR"||a&&a.tagName==="BR")return!0;let s=e.scrollHeight;if(s===0)return!1;let o=parseFloat(t.paddingTop)||0,u=parseFloat(t.paddingBottom)||0;return s>o+u}function nla(e,t,r){if(e instanceof HTMLElement&&e.style&&e.style.height)return;let a=e.tagName&&e.tagName.toLowerCase();if(!a||a!=="div"&&a!=="section"&&a!=="article"&&a!=="main"&&a!=="aside"&&a!=="header"&&a!=="footer"&&a!=="nav"&&a!=="ol"&&a!=="ul"&&a!=="li")return;let s=t.display||"";if(s.includes("flex")||s.includes("grid")||Zoa(e))return;let o=t.position;if(o==="absolute"||o==="fixed"||o==="sticky"||t.transform!=="none"||Joa(t)||ela(e))return;let u=t.overflowX||t.overflow||"visible",h=t.overflowY||t.overflow||"visible";if(u!=="visible"||h!=="visible")return;let f=t.clip;f&&f!=="auto"&&f!=="rect(auto, auto, auto, auto)"||t.visibility==="hidden"||t.opacity==="0"||tla(e,t)&&(delete r.height,delete r["block-size"])}var uJn=["fill","stroke","color","background-color","stop-color"],R5n=new Map;function rla(e,t){let r=t+"::"+e.toLowerCase(),a=R5n.get(r);if(a)return a;let s=document,o=t==="http://www.w3.org/2000/svg"?s.createElementNS(t,e):s.createElement(e),u=s.createElement("div");u.style.cssText="position:absolute;left:-99999px;top:-99999px;contain:strict;display:block;",u.appendChild(o),s.documentElement.appendChild(u);let h=getComputedStyle(o),f={};for(let p of uJn)f[p]=h.getPropertyValue(p)||"";return u.remove(),R5n.set(r,f),f}function ila(e,t){var o,u,h;if(!(e instanceof Element)||!(t instanceof Element))return;let r=(o=e.getAttribute)==null?void 0:o.call(e,"style"),a=!!(r&&r.includes("var("));if(!a&&((u=e.attributes)!=null&&u.length)){let f=e.attributes;for(let p=0;pnew Promise(s=>{function o(){_V(u=>{!(u&&typeof u.timeRemaining=="function")||u.timeRemaining()>0?t(a,s):o()},{fast:r})}o()})))}function ala(e){return e=e.trim(),!e||/:not\(\s*\[data-sd-slotted\]\s*\)\s*$/.test(e)?e:`${e}:not([data-sd-slotted])`}function sla(e,t,r=!0){return e.split(",").map(a=>a.trim()).filter(Boolean).map(a=>{if(a.startsWith(":where(")||a.startsWith("@"))return a;let s=r?ala(a):a;return`:where(${t} ${s})`}).join(", ")}function ola(e,t){return e?(e=e.replace(/:host\(([^)]+)\)/g,(r,a)=>`:where(${t}:is(${a.trim()}))`),e=e.replace(/:host\b/g,`:where(${t})`),e=e.replace(/:host-context\(([^)]+)\)/g,(r,a)=>`:where(:where(${a.trim()}) ${t})`),e=e.replace(/::slotted\(([^)]+)\)/g,(r,a)=>`:where(${t} ${a.trim()})`),e=e.replace(/(^|})(\s*)([^@}{]+){/g,(r,a,s,o)=>{let u=sla(o,t,!0);return`${a}${s}${u}{`}),e):""}function lla(e){return e.shadowScopeSeq=(e.shadowScopeSeq||0)+1,`s${e.shadowScopeSeq}`}function cla(e){let t="";try{e.querySelectorAll("style").forEach(a=>{t+=(a.textContent||"")+` +`});let r=e.adoptedStyleSheets||[];for(let a of r)try{if(a&&a.cssRules)for(let s of a.cssRules)t+=s.cssText+` +`}catch{}}catch{}return t}function ula(e,t,r){if(!t)return;let a=document.createElement("style");a.setAttribute("data-sd",r),a.textContent=t,e.insertBefore(a,e.firstChild||null)}function hla(e,t){try{let r=e.currentSrc||e.src||"";if(!r)return;t.setAttribute("src",r),t.removeAttribute("srcset"),t.removeAttribute("sizes"),t.loading="eager",t.decoding="sync"}catch{}}function dla(e){let t=new Set;if(!e)return t;let r=/var\(\s*(--[A-Za-z0-9_-]+)\b/g,a;for(;a=r.exec(e);)t.add(a[1]);return t}function fla(e,t){try{let r=getComputedStyle(e).getPropertyValue(t).trim();if(r)return r}catch{}try{let r=getComputedStyle(document.documentElement).getPropertyValue(t).trim();if(r)return r}catch{}return""}function pla(e,t,r){let a=[];for(let s of t){let o=fla(e,s);o&&a.push(`${s}: ${o};`)}return a.length?`${r}{${a.join("")}} +`:""}function gla(e){e&&(e.nodeType===Node.ELEMENT_NODE&&e.setAttribute("data-sd-slotted",""),e.querySelectorAll&&e.querySelectorAll("*").forEach(t=>t.setAttribute("data-sd-slotted","")))}async function mla(e,t=3){let r=()=>{var o;try{return e.contentDocument||((o=e.contentWindow)==null?void 0:o.document)||null}catch{return null}},a=r(),s=0;for(;ssetTimeout(o,0)),a=r(),s++;return a&&(a.body||a.documentElement)?a:null}function bla(e){let t=e.getBoundingClientRect(),r=0,a=0,s=0,o=0;try{let f=getComputedStyle(e);r=parseFloat(f.borderLeftWidth)||0,a=parseFloat(f.borderRightWidth)||0,s=parseFloat(f.borderTopWidth)||0,o=parseFloat(f.borderBottomWidth)||0}catch{}let u=Math.max(0,Math.round(t.width-(r+a))),h=Math.max(0,Math.round(t.height-(s+o)));return{contentWidth:u,contentHeight:h,rect:t}}function yla(e,t,r){let a=e.createElement("style");return a.setAttribute("data-sd-iframe-pin",""),a.textContent=`html, body {margin: 0 !important;padding: 0 !important;width: ${t}px !important;height: ${r}px !important;min-width: ${t}px !important;min-height: ${r}px !important;box-sizing: border-box !important;overflow: hidden !important;background-clip: border-box !important;}`,(e.head||e.documentElement).appendChild(a),()=>{try{a.remove()}catch{}}}async function vla(e,t,r){let a=await mla(e,3);if(!a)throw new Error("iframe document not accessible/ready");let{contentWidth:s,contentHeight:o,rect:u}=bla(e),h=r==null?void 0:r.snap;if(!h||typeof h.toPng!="function")throw new Error("snapdom.toPng not available in iframe or window");let f={...r,scale:1},p=yla(a,s,o),m;try{m=await h.toPng(a.documentElement,f)}finally{p()}m.style.display="block",m.style.width=`${s}px`,m.style.height=`${o}px`;let b=document.createElement("div");return t.nodeMap.set(b,e),wV(e,b,t,r),b.style.overflow="hidden",b.style.display="block",b.style.width||(b.style.width=`${Math.round(u.width)}px`),b.style.height||(b.style.height=`${Math.round(u.height)}px`),b.appendChild(m),b}var yie=new Map;async function Fae(e){var r;if((r=na.resource)!=null&&r.has(e))return na.resource.get(e);if(yie.has(e))return yie.get(e);let t=(async()=>{var s;let a=await pA(e,{as:"dataURL",silent:!0});if(!a.ok||typeof a.data!="string")throw new Error(`[snapDOM] Failed to read blob URL: ${e}`);return(s=na.resource)==null||s.set(e,a.data),a.data})();yie.set(e,t);try{let a=await t;return yie.set(e,a),a}catch(a){throw yie.delete(e),a}}var _la=/\bblob:[^)"'\s]+/g;async function I5n(e){if(!e||e.indexOf("blob:")===-1)return e;let t=Array.from(new Set(e.match(_la)||[]));if(t.length===0)return e;let r=e;for(let a of t)try{let s=await Fae(a);r=r.split(a).join(s)}catch{}return r}function wEe(e){return typeof e=="string"&&e.startsWith("blob:")}function wla(e){return(e||"").split(",").map(t=>t.trim()).filter(Boolean).map(t=>{let r=t.match(/^(\S+)(\s+.+)?$/);return r?{url:r[1],desc:r[2]||""}:null}).filter(Boolean)}function Ela(e){return e.map(t=>t.desc?`${t.url} ${t.desc.trim()}`:t.url).join(", ")}async function xla(e){var u,h;if(!e)return;let t=e.querySelectorAll?e.querySelectorAll("img"):[];for(let f of t)try{let p=f.getAttribute("src")||f.currentSrc||"";if(wEe(p)){let b=await Fae(p);f.setAttribute("src",b)}let m=f.getAttribute("srcset");if(m&&m.includes("blob:")){let b=wla(m),_=!1;for(let w of b)if(wEe(w.url))try{w.url=await Fae(w.url),_=!0}catch{}_&&f.setAttribute("srcset",Ela(b))}}catch{}let r=e.querySelectorAll?e.querySelectorAll("image"):[];for(let f of r)try{let p="http://www.w3.org/1999/xlink",m=f.getAttribute("href")||((u=f.getAttributeNS)==null?void 0:u.call(f,p,"href"));if(wEe(m)){let b=await Fae(m);f.setAttribute("href",b),(h=f.removeAttributeNS)==null||h.call(f,p,"href")}}catch{}let a=e.querySelectorAll?e.querySelectorAll("[style*='blob:']"):[];for(let f of a)try{let p=f.getAttribute("style");if(p&&p.includes("blob:")){let m=await I5n(p);f.setAttribute("style",m)}}catch{}let s=e.querySelectorAll?e.querySelectorAll("style"):[];for(let f of s)try{let p=f.textContent||"";p.includes("blob:")&&(f.textContent=await I5n(p))}catch{}let o=["poster"];for(let f of o){let p=e.querySelectorAll?e.querySelectorAll(`[${f}^='blob:']`):[];for(let m of p)try{let b=m.getAttribute(f);wEe(b)&&m.setAttribute(f,await Fae(b))}catch{}}}async function aSe(e,t,r){var p,m,b,_,w,S;if(!e)throw new Error("Invalid node");let a=new Set,s=null,o=null;if(e.nodeType===Node.ELEMENT_NODE){let C=(e.localName||e.tagName||"").toLowerCase();if(e.id==="snapdom-sandbox"||e.hasAttribute("data-snapdom-sandbox")||loa.has(C))return null}if(e.nodeType===Node.TEXT_NODE||e.nodeType!==Node.ELEMENT_NODE)return e.cloneNode(!0);if(e.getAttribute("data-capture")==="exclude"){if(r.excludeMode==="hide"){let C=document.createElement("div"),A=e.getBoundingClientRect();return C.style.cssText=`display:inline-block;width:${A.width}px;height:${A.height}px;visibility:hidden;`,C}else if(r.excludeMode==="remove")return null}if(r.exclude&&Array.isArray(r.exclude))for(let C of r.exclude)try{if((p=e.matches)!=null&&p.call(e,C)){if(r.excludeMode==="hide"){let A=document.createElement("div"),k=e.getBoundingClientRect();return A.style.cssText=`display:inline-block;width:${k.width}px;height:${k.height}px;visibility:hidden;`,A}else if(r.excludeMode==="remove")return null}}catch(A){console.warn(`Invalid selector in exclude option: ${C}`,A)}if(typeof r.filter=="function")try{if(!r.filter(e)){if(r.filterMode==="hide"){let C=document.createElement("div"),A=e.getBoundingClientRect();return C.style.cssText=`display:inline-block;width:${A.width}px;height:${A.height}px;visibility:hidden;`,C}else if(r.filterMode==="remove")return null}}catch(C){console.warn("Error in filter function:",C)}if(e.tagName==="IFRAME"){let C=!1;try{C=!!(e.contentDocument||(m=e.contentWindow)!=null&&m.document)}catch{C=!1}if(C)try{return await vla(e,t,r)}catch(A){console.warn("[SnapDOM] iframe rasterization failed, fallback:",A)}if(r.placeholders){let A=document.createElement("div");return A.style.cssText=`width:${e.offsetWidth}px;height:${e.offsetHeight}px;background-image:repeating-linear-gradient(45deg,#ddd,#ddd 5px,#f9f9f9 5px,#f9f9f9 10px);display:flex;align-items:center;justify-content:center;font-size:12px;color:#555;border:1px solid #aaa;`,wV(e,A,t,r),A}else{let A=e.getBoundingClientRect(),k=document.createElement("div");return k.style.cssText=`display:inline-block;width:${A.width}px;height:${A.height}px;visibility:hidden;`,wV(e,k,t,r),k}}if(e.getAttribute("data-capture")==="placeholder"){let C=e.cloneNode(!1);t.nodeMap.set(C,e),wV(e,C,t,r);let A=document.createElement("div");return A.textContent=e.getAttribute("data-placeholder-text")||"",A.style.cssText="color:#666;font-size:12px;text-align:center;line-height:1.4;padding:0.5em;box-sizing:border-box;",C.appendChild(A),C}if(e.tagName==="CANVAS"){let C="";try{let k=e.getContext("2d",{willReadFrequently:!0});try{k&&k.getImageData(0,0,1,1)}catch{}if(await new Promise(I=>requestAnimationFrame(I)),C=e.toDataURL("image/png"),!C||C==="data:,"){try{k&&k.getImageData(0,0,1,1)}catch{}if(await new Promise(I=>requestAnimationFrame(I)),C=e.toDataURL("image/png"),!C||C==="data:,"){let I=document.createElement("canvas");I.width=e.width,I.height=e.height;let N=I.getContext("2d");N&&(N.drawImage(e,0,0),C=I.toDataURL("image/png"))}}}catch{}let A=document.createElement("img");try{A.decoding="sync",A.loading="eager"}catch{}C&&(A.src=C),A.width=e.width,A.height=e.height;try{let k=getComputedStyle(e);k.width&&(A.style.width=k.width),k.height&&(A.style.height=k.height)}catch{}return t.nodeMap.set(A,e),wV(e,A,t,r),A}let u;try{if(u=e.cloneNode(!1),ila(e,u),t.nodeMap.set(u,e),e.tagName==="IMG"){hla(e,u);try{let C=e.getBoundingClientRect(),A=Math.round(C.width||0),k=Math.round(C.height||0);if(!A||!k){let I=window.getComputedStyle(e),N=parseFloat(I.width)||0,L=parseFloat(I.height)||0,P=parseInt(e.getAttribute("width")||"",10)||0,M=parseInt(e.getAttribute("height")||"",10)||0,F=e.width||e.naturalWidth||0,U=e.height||e.naturalHeight||0;A=Math.round(A||N||P||F||0),k=Math.round(k||L||M||U||0)}A&&(u.dataset.snapdomWidth=String(A)),k&&(u.dataset.snapdomHeight=String(k))}catch{}try{let C=e.getAttribute("style")||"",A=window.getComputedStyle(e),k=M=>{let F=C.match(new RegExp(`${M}\\s*:\\s*([^;]+)`,"i")),U=F?F[1].trim():A.getPropertyValue(M);return/%|auto/i.test(String(U||""))},I=parseInt(u.dataset.snapdomWidth||"0",10),N=parseInt(u.dataset.snapdomHeight||"0",10),L=k("width")||!I,P=k("height")||!N;L&&I&&(u.style.width=`${I}px`),P&&N&&(u.style.height=`${N}px`),I&&(u.style.minWidth=`${I}px`),N&&(u.style.minHeight=`${N}px`)}catch{}}}catch(C){throw console.error("[Snapdom] Failed to clone node:",e,C),C}if(e instanceof HTMLTextAreaElement){let C=e.getBoundingClientRect();u.style.width=`${C.width}px`,u.style.height=`${C.height}px`}if(e instanceof HTMLInputElement&&(u.value=e.value,u.setAttribute("value",e.value),e.checked!==void 0&&(u.checked=e.checked,e.checked&&u.setAttribute("checked",""),e.indeterminate&&(u.indeterminate=e.indeterminate))),e instanceof HTMLSelectElement&&(s=e.value),e instanceof HTMLTextAreaElement&&(o=e.value),wV(e,u,t,r),e.shadowRoot){let C=function(U,$){if(U.nodeType===Node.ELEMENT_NODE&&U.tagName==="STYLE")return $(null);aSe(U,t,r).then(G=>{$(G||null)}).catch(()=>{$(null)})};try{let U=e.shadowRoot.querySelectorAll("slot");for(let $ of U){let G=[];try{G=((b=$.assignedNodes)==null?void 0:b.call($,{flatten:!0}))||((_=$.assignedNodes)==null?void 0:_.call($))||[]}catch{G=((w=$.assignedNodes)==null?void 0:w.call($))||[]}for(let B of G)a.add(B)}}catch{}let A=lla(t),k=`[data-sd="${A}"]`;try{u.setAttribute("data-sd",A)}catch{}let I=cla(e.shadowRoot),N=ola(I,k),L=dla(I),P=pla(e,L,k);ula(u,P+N,A);let M=document.createDocumentFragment(),F=await bat(Array.from(e.shadowRoot.childNodes),C,r.fast);M.append(...F.filter(U=>!!U)),u.appendChild(M)}if(e.tagName==="SLOT"){let C=function(L,P){aSe(L,t,r).then(M=>{M&&gla(M),P(M||null)}).catch(()=>{P(null)})},A=((S=e.assignedNodes)==null?void 0:S.call(e,{flatten:!0}))||[],k=A.length>0?A:Array.from(e.childNodes),I=document.createDocumentFragment(),N=await bat(Array.from(k),C,r.fast);return I.append(...N.filter(L=>!!L)),I}function h(C,A){if(a.has(C))return A(null);aSe(C,t,r).then(k=>{A(k||null)}).catch(()=>{A(null)})}let f=await bat(Array.from(e.childNodes),h,r.fast);if(u.append(...f.filter(C=>!!C)),s!==null&&u instanceof HTMLSelectElement){u.value=s;for(let C of u.options)C.value===s?C.setAttribute("selected",""):C.removeAttribute("selected")}return o!==null&&u instanceof HTMLTextAreaElement&&(u.textContent=o),u}function Sla(e){return/\bcounter\s*\(|\bcounters\s*\(/.test(e||"")}function Tla(e){return(e||"").replace(/"([^"]*)"/g,"$1")}function N5n(e,t=!1){let r="",a=Math.max(1,e);for(;a>0;)a--,r=String.fromCharCode(97+a%26)+r,a=Math.floor(a/26);return t?r.toUpperCase():r}function O5n(e,t=!0){let r=[[1e3,"M"],[900,"CM"],[500,"D"],[400,"CD"],[100,"C"],[90,"XC"],[50,"L"],[40,"XL"],[10,"X"],[9,"IX"],[5,"V"],[4,"IV"],[1,"I"]],a=Math.max(1,Math.min(3999,e)),s="";for(let[o,u]of r)for(;a>=o;)s+=u,a-=o;return t?s:s.toLowerCase()}function L5n(e,t){switch((t||"decimal").toLowerCase()){case"decimal":return String(Math.max(0,e));case"decimal-leading-zero":return(e<10?"0":"")+String(Math.max(0,e));case"lower-alpha":return N5n(e,!1);case"upper-alpha":return N5n(e,!0);case"lower-roman":return O5n(e,!1);case"upper-roman":return O5n(e,!0);default:return String(Math.max(0,e))}}function Cla(e){let t=()=>{var _;return((_=na==null?void 0:na.session)==null?void 0:_.__counterEpoch)??0},r=t(),a=new WeakMap,s=e instanceof Document?e.documentElement:e,o=_=>_&&_.tagName==="LI",u=_=>{let w=0,S=_==null?void 0:_.parentElement;if(!S)return 0;for(let C of S.children){if(C===_)break;C.tagName==="LI"&&w++}return w},h=_=>{let w=new Map;for(let[S,C]of _)w.set(S,C.slice());return w},f=(_,w,S)=>{var I,N;let C=h(_),A;try{A=((I=S.style)==null?void 0:I.counterReset)||getComputedStyle(S).counterReset}catch{}if(A&&A!=="none")for(let L of A.split(",")){let P=L.trim().split(/\s+/),M=P[0],F=Number.isFinite(Number(P[1]))?Number(P[1]):0;if(!M)continue;let U=w.get(M);if(U&&U.length){let $=U.slice();$.push(F),C.set(M,$)}else C.set(M,[F])}let k;try{k=((N=S.style)==null?void 0:N.counterIncrement)||getComputedStyle(S).counterIncrement}catch{}if(k&&k!=="none")for(let L of k.split(",")){let P=L.trim().split(/\s+/),M=P[0],F=Number.isFinite(Number(P[1]))?Number(P[1]):1;if(!M)continue;let U=C.get(M)||[];U.length===0&&U.push(0),U[U.length-1]+=F,C.set(M,U)}try{if(getComputedStyle(S).display==="list-item"&&o(S)){let L=S.parentElement,P=1;if(L&&L.tagName==="OL"){let F=L.getAttribute("start"),U=Number.isFinite(Number(F))?Number(F):1,$=u(S),G=S.getAttribute("value");P=Number.isFinite(Number(G))?Number(G):U+$}else P=1+u(S);let M=C.get("list-item")||[];M.length===0&&M.push(0),M[M.length-1]=P,C.set("list-item",M)}}catch{}return C},p=(_,w,S)=>{let C=f(S,w,_);a.set(_,C);let A=C;for(let k of _.children)A=p(k,C,A);return C},m=new Map;p(s,m,m);function b(){let _=t();if(_!==r){r=_;let w=new Map;p(s,w,w)}}return{get(_,w){var C;b();let S=(C=a.get(_))==null?void 0:C.get(w);return S&&S.length?S[S.length-1]:0},getStack(_,w){var C;b();let S=(C=a.get(_))==null?void 0:C.get(w);return S?S.slice():[]}}}function Ala(e,t,r){if(!e||e==="none")return e;try{let a=/\b(counter|counters)\s*\(([^)]+)\)/g,s=e.replace(a,(o,u,h)=>{var p,m,b;let f=String(h).split(",").map(_=>_.trim());if(u==="counter"){let _=(p=f[0])==null?void 0:p.replace(/^["']|["']$/g,""),w=(f[1]||"decimal").toLowerCase(),S=r.get(t,_);return L5n(S,w)}else{let _=(m=f[0])==null?void 0:m.replace(/^["']|["']$/g,""),w=((b=f[1])==null?void 0:b.replace(/^["']|["']$/g,""))??"",S=(f[2]||"decimal").toLowerCase(),C=r.getStack(t,_);return C.length?C.map(A=>L5n(A,S)).join(w):""}});return Tla(s)}catch{return"- "}}var sV=new WeakMap,D5n=300;function kla(e,t){let r=hJn(e);return t?(t.__pseudoPreflightFp!==r&&(t.__pseudoPreflight=P5n(e),t.__pseudoPreflightFp=r),!!t.__pseudoPreflight):P5n(e)}function sht(e){try{return e&&e.cssRules?e.cssRules:null}catch{return null}}function hJn(e){let t=e.querySelectorAll('style,link[rel~="stylesheet"]'),r=`n:${t.length}|`,a=0;for(let o=0;o0;h++){let f=o.cssRules[h],p=f&&f.cssText?f.cssText:"";r.budget--;for(let m of t)if(p.includes(m))return!0}if(r.budget<=0)return!1}return!1}function P5n(e=document){let t=hJn(e),r=sV.get(e);if(r&&r.fingerprint===t)return r.result;let a=["::before","::after","::first-letter",":before",":after",":first-letter","counter(","counters(","counter-increment","counter-reset"],s=e.querySelectorAll("style");for(let u=0;u0;f++){let p=u[f],m=null;if(p.tagName,m=p.sheet||null,m&&M5n(m,a,h))return sV.set(e,{fingerprint:t,result:!0}),!0}}return e.querySelector('[style*="counter("], [style*="counters("]')?(sV.set(e,{fingerprint:t,result:!0}),!0):(sV.set(e,{fingerprint:t,result:!1}),!1)}var EV=new WeakMap,B5n=-1;function Rla(e){return(e||"").replace(/"([^"]*)"/g,"$1")}function Ila(e){if(!e)return"";let t=[],r=/"([^"]*)"/g,a;for(;a=r.exec(e);)t.push(a[1]);return t.length?t.join(""):Rla(e)}function oht(e,t){let r=e.parentElement,a=r?EV.get(r):null;return a?{get(s,o){let u=t.get(s,o),h=a.get(o);return typeof h=="number"?Math.max(u,h):u},getStack(s,o){let u=t.getStack(s,o);if(!u.length)return u;let h=a.get(o);if(typeof h=="number"){let f=u.slice();return f[f.length-1]=Math.max(f[f.length-1],h),f}return u}}:t}function lht(e,t,r){let a=new Map;function s(f){let p=[];if(!f||f==="none")return p;for(let m of String(f).split(",")){let b=m.trim().split(/\s+/),_=b[0],w=Number.isFinite(Number(b[1]))?Number(b[1]):void 0;_&&p.push({name:_,num:w})}return p}let o=s(t==null?void 0:t.counterReset),u=s(t==null?void 0:t.counterIncrement);function h(f){if(a.has(f))return a.get(f).slice();let p=r.getStack(e,f);p=p.length?p.slice():[];let m=o.find(_=>_.name===f);if(m){let _=Number.isFinite(m.num)?m.num:0;p=p.length?[...p,_]:[_]}let b=u.find(_=>_.name===f);if(b){let _=Number.isFinite(b.num)?b.num:1;p.length===0&&(p=[0]),p[p.length-1]+=_}return a.set(f,p.slice()),p}return{get(f,p){let m=h(p);return m.length?m[m.length-1]:0},getStack(f,p){return h(p)},__incs:u}}function Nla(e,t,r){let a;try{a=getComputedStyle(e,t)}catch{}let s=a==null?void 0:a.content;if(!s||s==="none"||s==="normal")return{text:"",incs:[]};let o=oht(e,r),u=lht(e,a,o),h=Sla(s)?Ala(s,e,u):s;return{text:Ila(h),incs:u.__incs||[]}}async function dJn(e,t,r,a){var p,m,b;if(!(e instanceof Element)||!(t instanceof Element))return;let s=e.ownerDocument||document;if(!kla(s,r))return;let o=((p=na==null?void 0:na.session)==null?void 0:p.__counterEpoch)??0;if(B5n!==o&&(EV=new WeakMap,r&&(r.__counterCtx=null),B5n=o),!r.__counterCtx)try{r.__counterCtx=Cla(e.ownerDocument||document)}catch{}let u=r.__counterCtx;for(let _ of["::before","::after","::first-letter"])try{let w=tJn(e,_);if(!w||w.content==="none"&&w.backgroundImage==="none"&&w.backgroundColor==="transparent"&&(w.borderStyle==="none"||parseFloat(w.borderWidth)===0)&&(!w.transform||w.transform==="none")&&w.display==="inline")continue;if(_==="::first-letter"){let ne=getComputedStyle(e);if(!(w.color!==ne.color||w.fontSize!==ne.fontSize||w.fontWeight!==ne.fontWeight))continue;let se=Array.from(t.childNodes).find(Ee=>{var he;return Ee.nodeType===Node.TEXT_NODE&&((he=Ee.textContent)==null?void 0:he.trim().length)>0});if(!se)continue;let ie=se.textContent,ge=(m=ie.match(/^([^\p{L}\p{N}\s]*[\p{L}\p{N}](?:['’])?)/u))==null?void 0:m[0],ce=ie.slice((ge==null?void 0:ge.length)||0);if(!ge||/[\uD800-\uDFFF]/.test(ge))continue;let be=document.createElement("span");be.textContent=ge,be.dataset.snapdomPseudo="::first-letter";let ve=E5n(w),De=tht(ve,"span");r.styleMap.set(be,De);let ye=document.createTextNode(ce);t.replaceChild(ye,se),t.insertBefore(be,ye);continue}let S=w.content??"",C=S===""||S==="none"||S==="normal",{text:A,incs:k}=Nla(e,_,u),I=w.backgroundImage,N=w.backgroundColor,L=w.fontFamily,P=parseInt(w.fontSize)||32,M=parseInt(w.fontWeight)||!1,F=w.color||"#000",U=w.borderStyle,$=parseFloat(w.borderWidth),G=w.transform,B=y7(L),Z=!C&&A!=="",z=I&&I!=="none",Y=N&&N!=="transparent"&&N!=="rgba(0, 0, 0, 0)",W=U&&U!=="none"&&$>0,Q=G&&G!=="none";if(!(Z||z||Y||W||Q)){if(k&&k.length&&e.parentElement){let ne=EV.get(e.parentElement)||new Map;for(let{name:se}of k){if(!se)continue;let ie=oht(e,u),ge=lht(e,getComputedStyle(e,_),ie).get(e,se);ne.set(se,ge)}EV.set(e.parentElement,ne)}continue}let V=document.createElement("span");V.dataset.snapdomPseudo=_,V.style.pointerEvents="none";let j=E5n(w),ee=tht(j,"span");if(r.styleMap.set(V,ee),B&&A&&A.length===1){let{dataUrl:ne,width:se,height:ie}=await Toa(A,L,M,P,F),ge=document.createElement("img");ge.src=ne,ge.style=`height:${P}px;width:${se/ie*P}px;object-fit:contain;`,V.appendChild(ge),t.dataset.snapdomHasIcon="true"}else if(A&&A.startsWith("url(")){let ne=Rbt(A);if(ne!=null&&ne.trim())try{let se=document.createElement("img"),ie=await pA(QTe(ne),{as:"dataURL",useProxy:a.useProxy});se.src=ie.data,se.style=`width:${P}px;height:auto;object-fit:contain;`,V.appendChild(se)}catch(se){console.error(`[snapdom] Error in pseudo ${_} for`,e,se)}}else!B&&Z&&(V.textContent=A);V.style.backgroundImage="none","maskImage"in V.style&&(V.style.maskImage="none"),"webkitMaskImage"in V.style&&(V.style.webkitMaskImage="none");try{V.style.backgroundRepeat=w.backgroundRepeat,V.style.backgroundSize=w.backgroundSize,w.backgroundPositionX&&w.backgroundPositionY?(V.style.backgroundPositionX=w.backgroundPositionX,V.style.backgroundPositionY=w.backgroundPositionY):V.style.backgroundPosition=w.backgroundPosition,V.style.backgroundOrigin=w.backgroundOrigin,V.style.backgroundClip=w.backgroundClip,V.style.backgroundAttachment=w.backgroundAttachment,V.style.backgroundBlendMode=w.backgroundBlendMode}catch{}if(z)try{let ne=nJn(I),se=await Promise.all(ne.map(JZn));V.style.backgroundImage=se.join(", ")}catch(ne){console.warn(`[snapdom] Failed to inline background-image for ${_}`,ne)}Y&&(V.style.backgroundColor=N);let te=V.childNodes.length>0||((b=V.textContent)==null?void 0:b.trim())!==""||z||Y||W||Q;if(k&&k.length&&e.parentElement){let ne=EV.get(e.parentElement)||new Map,se=oht(e,u),ie=lht(e,getComputedStyle(e,_),se);for(let{name:ge}of k){if(!ge)continue;let ce=ie.get(e,ge);ne.set(ge,ce)}EV.set(e.parentElement,ne)}if(!te)continue;_==="::before"?t.insertBefore(V,t.firstChild):t.appendChild(V)}catch(w){console.warn(`[snapdom] Failed to capture ${_} for`,e,w)}let h=Array.from(e.children),f=Array.from(t.children).filter(_=>!_.dataset.snapdomPseudo);for(let _=0;_window.CSS&&CSS.escape?CSS.escape(M):M.replace(/[^a-zA-Z0-9_-]/g,"\\$&"),f="http://www.w3.org/1999/xlink",p=M=>{if(!M||!M.getAttribute)return null;let F=M.getAttribute("href")||M.getAttribute("xlink:href")||(typeof M.getAttributeNS=="function"?M.getAttributeNS(f,"href"):null);if(F)return F;let U=M.attributes;if(!U)return null;for(let $=0;$M.id)),b=new Set,_=!1,w=(M,F=null)=>{if(!M)return;o.lastIndex=0;let U;for(;U=o.exec(M);){_=!0;let $=(U[1]||"").trim();$&&(m.has($)||(b.add($),F&&!F.has($)&&F.add($)))}},S=M=>{let F=M.querySelectorAll("use");for(let $ of F){let G=p($);if(!G||!G.startsWith("#"))continue;_=!0;let B=G.slice(1).trim();B&&!m.has(B)&&b.add(B)}let U=M.querySelectorAll('*[style*="url("],*[fill^="url("], *[stroke^="url("],*[filter^="url("],*[clip-path^="url("],*[mask^="url("],*[marker^="url("],*[marker-start^="url("],*[marker-mid^="url("],*[marker-end^="url("]');for(let $ of U){w($.getAttribute("style")||"");for(let G of u)w($.getAttribute(G))}};for(let M of s)S(M);if(!_)return;let C=e.querySelector("svg.inline-defs-container");C||(C=r.createElementNS("http://www.w3.org/2000/svg","svg"),C.classList.add("inline-defs-container"),C.setAttribute("aria-hidden","true"),C.setAttribute("style","position:absolute;width:0;height:0;overflow:hidden"),e.insertBefore(C,e.firstChild||null));let A=C.querySelector("defs")||null,k=M=>{if(!M||m.has(M))return null;let F=h(M),U=$=>{let G=a.querySelector($);return G&&!e.contains(G)?G:null};return U(`svg defs > *#${F}`)||U(`svg > symbol#${F}`)||U(`*#${F}`)};if(!b.size)return;let I=new Set(b),N=new Set;for(;I.size;){let M=I.values().next().value;if(I.delete(M),!M||m.has(M)||N.has(M))continue;let F=k(M);if(!F){N.add(M);continue}A||(A=r.createElementNS("http://www.w3.org/2000/svg","defs"),C.appendChild(A));let U=F.cloneNode(!0);U.id||U.setAttribute("id",M),A.appendChild(U),N.add(M),m.add(M);let $=[U,...U.querySelectorAll("*")];for(let G of $){let B=p(G);if(B&&B.startsWith("#")){let z=B.slice(1).trim();z&&!m.has(z)&&!N.has(z)&&I.add(z)}let Z=((L=G.getAttribute)==null?void 0:L.call(G,"style"))||"";Z&&w(Z,I);for(let z of u){let Y=(P=G.getAttribute)==null?void 0:P.call(G,z);Y&&w(Y,I)}}}}function Lla(e,t){var h;if(!e||!t)return;let r=e.scrollTop||0;if(!r)return;getComputedStyle(t).position==="static"&&(t.style.position="relative");let a=e.getBoundingClientRect(),s=e.clientHeight,o="data-snap-ph",u=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT);for(;u.nextNode();){let f=u.currentNode,p=getComputedStyle(f),m=p.position;if(m!=="sticky"&&m!=="-webkit-sticky")continue;let b=F5n(p.top),_=F5n(p.bottom);if(b==null&&_==null)continue;let w=Dla(f,e),S=Mla(t,w,o);if(!S)continue;let C=f.getBoundingClientRect(),A=C.width,k=C.height,I=C.left-a.left;if(!(A>0&&k>0)||!Number.isFinite(I))continue;let N=b!=null?b+r:r+(s-k-_);if(!Number.isFinite(N))continue;let L=Number.parseInt(p.zIndex,10),P=Number.isFinite(L),M=P?Math.max(L,1)+1:2,F=P?L-1:0,U=S.cloneNode(!1);U.setAttribute(o,"1"),U.style.position="sticky",U.style.left=`${I}px`,U.style.top=`${N}px`,U.style.width=`${A}px`,U.style.height=`${k}px`,U.style.visibility="hidden",U.style.zIndex=String(F),U.style.overflow="hidden",U.style.background="transparent",U.style.boxShadow="none",U.style.filter="none",(h=S.parentElement)==null||h.insertBefore(U,S),S.style.position="absolute",S.style.left=`${I}px`,S.style.top=`${N}px`,S.style.bottom="auto",S.style.zIndex=String(M),S.style.pointerEvents="none"}}function F5n(e){if(!e||e==="auto")return null;let t=Number.parseFloat(e);return Number.isFinite(t)?t:null}function Dla(e,t){let r=[];for(let a=e;a&&a!==t;){let s=a.parentElement;if(!s)break;r.push(Array.prototype.indexOf.call(s.children,a)),a=s}return r.reverse()}function Mla(e,t,r){let a=e;for(let s=0;s0,h=s==="none"||parseFloat(o)===0;u&&h&&(e.style.border=`${a} solid transparent`)}async function Fla(e,t={}){var f,p;let r={styleMap:na.session.styleMap,styleCache:na.session.styleCache,nodeMap:na.session.nodeMap},a,s="",o="";Bla(e);try{Ola(e)}catch(m){console.warn("inlineExternal defs or symbol failed:",m)}try{a=await aSe(e,r,t,e)}catch(m){throw console.warn("deepClone failed:",m),m}try{await dJn(e,a,r,t)}catch(m){console.warn("inlinePseudoElements failed:",m)}await xla(a);try{let m=a.querySelectorAll("style[data-sd]");for(let b of m)o+=b.textContent||"",b.remove()}catch{}let u=goa(r.styleMap);s=Array.from(u.entries()).map(([m,b])=>`.${b}{${m}}`).join(""),s=o+s;for(let[m,b]of r.styleMap.entries()){if(m.tagName==="STYLE")continue;if(m.getRootNode&&m.getRootNode()instanceof ShadowRoot){m.setAttribute("style",b.replace(/;/g,"; "));continue}let _=u.get(b);_&&m.classList.add(_);let w=(f=m.style)==null?void 0:f.backgroundImage,S=(p=m.dataset)==null?void 0:p.snapdomHasIcon;w&&w!=="none"&&(m.style.backgroundImage=w),S&&(m.style.verticalAlign="middle",m.style.display="inline")}for(let[m,b]of r.nodeMap.entries()){let _=b.scrollLeft,w=b.scrollTop;if((_||w)&&m instanceof HTMLElement){m.style.overflow="hidden",m.style.scrollbarWidth="none",m.style.msOverflowStyle="none";let S=document.createElement("div");for(S.style.transform=`translate(${-_}px, ${-w}px)`,S.style.willChange="transform",S.style.display="inline-block",S.style.width="100%";m.firstChild;)S.appendChild(m.firstChild);m.appendChild(S)}}let h=a instanceof HTMLElement&&a.firstElementChild instanceof HTMLElement?a.firstElementChild:a;if(Lla(e,h),e===r.nodeMap.get(a)){let m=r.styleCache.get(e)||window.getComputedStyle(e);r.styleCache.set(e,m);let b=toa(m.transform);a.style.margin="0",a.style.top="auto",a.style.left="auto",a.style.right="auto",a.style.bottom="auto",a.style.animation="none",a.style.transition="none",a.style.willChange="auto",a.style.float="none",a.style.clear="none",a.style.transform=b||""}for(let[m,b]of r.nodeMap.entries())b.tagName==="PRE"&&(m.style.marginTop="0",m.style.marginBlockStart="0");return{clone:a,classCSS:s,styleCache:r.styleCache}}function $la(e){var p,m,b,_;let t=parseInt(((p=e.dataset)==null?void 0:p.snapdomWidth)||"",10)||0,r=parseInt(((m=e.dataset)==null?void 0:m.snapdomHeight)||"",10)||0,a=parseInt(e.getAttribute("width")||"",10)||0,s=parseInt(e.getAttribute("height")||"",10)||0,o=parseFloat(((b=e.style)==null?void 0:b.width)||"")||0,u=parseFloat(((_=e.style)==null?void 0:_.height)||"")||0,h=t||o||a||e.width||e.naturalWidth||100,f=r||u||s||e.height||e.naturalHeight||100;return{width:h,height:f}}async function Ula(e,t={}){let r=Array.from(e.querySelectorAll("img")),a=async s=>{if(!s.getAttribute("src")){let m=s.currentSrc||s.src||"";m&&s.setAttribute("src",m)}s.removeAttribute("srcset"),s.removeAttribute("sizes");let o=s.src||"";if(!o)return;let u=await pA(o,{as:"dataURL",useProxy:t.useProxy});if(u.ok&&typeof u.data=="string"&&u.data.startsWith("data:")){s.src=u.data,s.width||(s.width=s.naturalWidth||100),s.height||(s.height=s.naturalHeight||100);return}let{width:h,height:f}=$la(s),{fallbackURL:p}=t||{};if(p)try{let m=typeof p=="function"?await p({width:h,height:f,src:o,element:s}):p;if(m){let b=await pA(m,{as:"dataURL",useProxy:t.useProxy});s.src=b.data,s.width||(s.width=h),s.height||(s.height=f);return}}catch{}if(t.placeholders!==!1){let m=document.createElement("div");m.style.cssText=[`width:${h}px`,`height:${f}px`,"background:#ccc","display:inline-block","text-align:center",`line-height:${f}px`,"color:#666","font-size:12px","overflow:hidden"].join(";"),m.textContent="img",s.replaceWith(m)}else{let m=document.createElement("div");m.style.cssText=`display:inline-block;width:${h}px;height:${f}px;visibility:hidden;`,s.replaceWith(m)}};for(let s=0;s{};let t=Gla(e);if(t<=0)return()=>{};if(!Vla(e))return()=>{};let r=getComputedStyle(e),a=Math.round(qla(r)*t+Hla(r)),s=e.textContent??"",o=s;if(e.scrollHeight<=a+.5)return()=>{};let u=0,h=s.length,f=-1;for(;u<=h;){let p=u+h>>1;e.textContent=s.slice(0,p)+"…",e.scrollHeight<=a+.5?(f=p,u=p+1):h=p-1}return e.textContent=(f>=0?s.slice(0,f):"")+"…",()=>{e.textContent=o}}function Gla(e){let t=getComputedStyle(e),r=t.getPropertyValue("-webkit-line-clamp")||t.getPropertyValue("line-clamp");r=(r||"").trim();let a=parseInt(r,10);return Number.isFinite(a)&&a>0?a:0}function qla(e){let t=(e.lineHeight||"").trim(),r=parseFloat(e.fontSize)||16;return!t||t==="normal"?Math.round(r*1.2):t.endsWith("px")?parseFloat(t):/^\d+(\.\d+)?$/.test(t)?Math.round(parseFloat(t)*r):t.endsWith("%")?Math.round(parseFloat(t)/100*r):Math.round(r*1.2)}function Hla(e){return(parseFloat(e.paddingTop)||0)+(parseFloat(e.paddingBottom)||0)}function Vla(e){return e.childElementCount>0?!1:Array.from(e.childNodes).some(t=>t.nodeType===Node.TEXT_NODE)}function Yla(e,t){if(!e||!t||!t.style)return;let r=getComputedStyle(e);try{t.style.boxShadow="none"}catch{}try{t.style.textShadow="none"}catch{}try{t.style.outline="none"}catch{}let a=(r.filter||"").replace(/\bblur\([^()]*\)\s*/gi,"").replace(/\bdrop-shadow\([^()]*\)\s*/gi,"").trim().replace(/\s+/g," ");try{t.style.filter=a.length?a:"none"}catch{}}function jla(e){let t=document.createTreeWalker(e,NodeFilter.SHOW_COMMENT),r=[];for(;t.nextNode();)r.push(t.currentNode);for(let a of r)a.remove()}function Wla(e,t={}){let{stripFrameworkDirectives:r=!0}=t,a=new Set(["xml","xlink"]),s=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT);for(;s.nextNode();){let o=s.currentNode;for(let u of Array.from(o.attributes)){let h=u.name;if(h.includes("@")){o.removeAttribute(h);continue}if(h.includes(":")){let f=h.split(":",1)[0];if(!a.has(f)){o.removeAttribute(h);continue}}if(r&&(h.startsWith("x-")||h.startsWith("v-")||h.startsWith(":")||h.startsWith("on:")||h.startsWith("bind:")||h.startsWith("let:")||h.startsWith("class:"))){o.removeAttribute(h);continue}}}}function Kla(e,t={}){e&&(Wla(e,t),jla(e))}function Xla(e){var t;try{let r=((t=e.getAttribute)==null?void 0:t.call(e,"style"))||"";return/\b(height|width|block-size|inline-size)\s*:/.test(r)}catch{return!1}}function Qla(e){return e instanceof HTMLImageElement||e instanceof HTMLCanvasElement||e instanceof HTMLVideoElement||e instanceof HTMLIFrameElement||e instanceof SVGElement||e instanceof HTMLObjectElement||e instanceof HTMLEmbedElement}function Zla(e,t){if(!(e instanceof Element)||Xla(e)||Qla(e))return!1;let r=t.position;if(r==="absolute"||r==="fixed"||r==="sticky")return!1;let a=t.display||"";return!(a.includes("flex")||a.includes("grid")||a.startsWith("table")||t.transform&&t.transform!=="none")}function Jla(e,t,r=new Map){function a(s,o){if(!(s instanceof Element)||!(o instanceof Element))return;let u=s.childElementCount>o.childElementCount,h=r.get(s)||getComputedStyle(s);if(r.has(s)||r.set(s,h),u&&Zla(s,h)){o.style.height||(o.style.height="auto"),o.style.width||(o.style.width="auto"),o.style.removeProperty("block-size"),o.style.removeProperty("inline-size"),o.style.minHeight||(o.style.minHeight="0"),o.style.minWidth||(o.style.minWidth="0"),o.style.maxHeight||(o.style.maxHeight="none"),o.style.maxWidth||(o.style.maxWidth="none");let m=h.overflowY||h.overflowBlock||"visible",b=h.overflowX||h.overflowInline||"visible";(m!=="visible"||b!=="visible")&&(o.style.overflow="visible")}let f=Array.from(s.children),p=Array.from(o.children);for(let m=0;mo&&(o=A),u=!0)}let f=u?Math.max(0,o-s):0,p=parseFloat(r.borderTopWidth)||0,m=parseFloat(r.borderBottomWidth)||0,b=parseFloat(r.paddingTop)||0,_=parseFloat(r.paddingBottom)||0;return p+m+b+_+f}var Ro=(e,t=3)=>Number.isFinite(e)?Math.round(e*10**t)/10**t:e;function rca(e){var h;let t=e.boxShadow||"";if(!t||t==="none")return{top:0,right:0,bottom:0,left:0};let r=t.split(/\),(?=(?:[^()]*\([^()]*\))*[^()]*$)/).map(f=>f.trim()),a=0,s=0,o=0,u=0;for(let f of r){let p=((h=f.match(/-?\d+(\.\d+)?px/g))==null?void 0:h.map(A=>parseFloat(A)))||[];if(p.length<2)continue;let[m,b,_=0,w=0]=p,S=Math.abs(m)+_+w,C=Math.abs(b)+_+w;s=Math.max(s,S+Math.max(m,0)),u=Math.max(u,S+Math.max(-m,0)),o=Math.max(o,C+Math.max(b,0)),a=Math.max(a,C+Math.max(-b,0))}return{top:Math.ceil(a),right:Math.ceil(s),bottom:Math.ceil(o),left:Math.ceil(u)}}function ica(e){let t=(e.filter||"").match(/blur\(\s*([0-9.]+)px\s*\)/),r=t?Math.ceil(parseFloat(t[1])||0):0;return{top:r,right:r,bottom:r,left:r}}function aca(e){if((e.outlineStyle||"none")==="none")return{top:0,right:0,bottom:0,left:0};let t=Math.ceil(parseFloat(e.outlineWidth||"0")||0);return{top:t,right:t,bottom:t,left:t}}function sca(e){var f;let t=`${e.filter||""} ${e.webkitFilter||""}`.trim();if(!t||t==="none")return{bleed:{top:0,right:0,bottom:0,left:0},has:!1};let r=t.match(/drop-shadow\((?:[^()]|\([^()]*\))*\)/gi)||[],a=0,s=0,o=0,u=0,h=!1;for(let p of r){h=!0;let m=((f=p.match(/-?\d+(?:\.\d+)?px/gi))==null?void 0:f.map(A=>parseFloat(A)))||[],[b=0,_=0,w=0]=m,S=Math.abs(b)+w,C=Math.abs(_)+w;s=Math.max(s,S+Math.max(b,0)),u=Math.max(u,S+Math.max(-b,0)),o=Math.max(o,C+Math.max(_,0)),a=Math.max(a,C+Math.max(-_,0))}return{bleed:{top:Ro(a),right:Ro(s),bottom:Ro(o),left:Ro(u)},has:h}}function oca(e,t){if(!e||!t||!t.style)return null;let r=getComputedStyle(e);try{t.style.transformOrigin="0 0"}catch{}try{"translate"in t.style&&(t.style.translate="none"),"rotate"in t.style&&(t.style.rotate="none")}catch{}let a=r.transform||"none";if(a==="none")try{let o=fJn(e);if(o.a===1&&o.b===0&&o.c===0&&o.d===1)return t.style.transform="none",{a:1,b:0,c:0,d:1}}catch{}let s=a.match(/^matrix\(\s*([^)]+)\)$/i);if(s){let o=s[1].split(",").map(u=>parseFloat(u.trim()));if(o.length===6&&o.every(Number.isFinite)){let[u,h,f,p]=o,m=Math.sqrt(u*u+h*h)||0,b=0,_=0,w=0,S=0,C=0,A=0;m>0&&(b=u/m,_=h/m,w=b*f+_*p,S=f-b*w,C=p-_*w,A=Math.sqrt(S*S+C*C)||0,A>0?w=w/A:w=0);let k=m,I=0,N=w*A,L=A;try{t.style.transform=`matrix(${k}, ${I}, ${N}, ${L}, 0, 0)`}catch{}return{a:k,b:I,c:N,d:L}}}try{let o=String(a).trim();return t.style.transform=o+" translate(0px, 0px) rotate(0deg)",null}catch{return null}}function $5n(e,t,r,a,s){let o=r.a,u=r.b,h=r.c,f=r.d,p=r.e||0,m=r.f||0;function b(k,I){let N=k-a,L=I-s,P=o*N+h*L,M=u*N+f*L;return P+=a+p,M+=s+m,[P,M]}let _=[b(0,0),b(e,0),b(0,t),b(e,t)],w=1/0,S=1/0,C=-1/0,A=-1/0;for(let[k,I]of _)kC&&(C=k),I>A&&(A=I);return{minX:w,minY:S,maxX:C,maxY:A,width:C-w,height:A-S}}function lca(e,t,r){let a=(e.transformOrigin||"0 0").trim().split(/\s+/),[s,o]=[a[0]||"0",a[1]||"0"],u=(h,f)=>{let p=h.toLowerCase();return p==="left"||p==="top"?0:p==="center"?f/2:p==="right"||p==="bottom"?f:p.endsWith("px")?parseFloat(p)||0:p.endsWith("%")?(parseFloat(p)||0)*f/100:/^-?\d+(\.\d+)?$/.test(p)&&parseFloat(p)||0};return{ox:u(s,t),oy:u(o,r)}}function cca(e){var s,o,u,h,f,p,m,b;let t={rotate:"0deg",scale:null,translate:null},r=typeof e.computedStyleMap=="function"?e.computedStyleMap():null;if(r){let _=A=>{try{return typeof r.has=="function"&&!r.has(A)||typeof r.get!="function"?null:r.get(A)}catch{return null}},w=_("rotate");if(w)if(w.angle){let A=w.angle;t.rotate=A.unit==="rad"?A.value*180/Math.PI+"deg":A.value+A.unit}else w.unit?t.rotate=w.unit==="rad"?w.value*180/Math.PI+"deg":w.value+w.unit:t.rotate=String(w);else{let A=getComputedStyle(e);t.rotate=A.rotate&&A.rotate!=="none"?A.rotate:"0deg"}let S=_("scale");if(S){let A="x"in S&&((s=S.x)==null?void 0:s.value)!=null?S.x.value:Array.isArray(S)?(o=S[0])==null?void 0:o.value:Number(S)||1,k="y"in S&&((u=S.y)==null?void 0:u.value)!=null?S.y.value:Array.isArray(S)?(h=S[1])==null?void 0:h.value:A;t.scale=`${A} ${k}`}else{let A=getComputedStyle(e);t.scale=A.scale&&A.scale!=="none"?A.scale:null}let C=_("translate");if(C){let A="x"in C&&"value"in C.x?C.x.value:Array.isArray(C)?(f=C[0])==null?void 0:f.value:0,k="y"in C&&"value"in C.y?C.y.value:Array.isArray(C)?(p=C[1])==null?void 0:p.value:0,I="x"in C&&((m=C.x)!=null&&m.unit)?C.x.unit:"px",N="y"in C&&((b=C.y)!=null&&b.unit)?C.y.unit:"px";t.translate=`${A}${I} ${k}${N}`}else{let A=getComputedStyle(e);t.translate=A.translate&&A.translate!=="none"?A.translate:null}return t}let a=getComputedStyle(e);return t.rotate=a.rotate&&a.rotate!=="none"?a.rotate:"0deg",t.scale=a.scale&&a.scale!=="none"?a.scale:null,t.translate=a.translate&&a.translate!=="none"?a.translate:null,t}var yat=null;function uca(){if(yat)return yat;let e=document.createElement("div");return e.id="snapdom-measure-slot",e.setAttribute("aria-hidden","true"),Object.assign(e.style,{position:"absolute",left:"-99999px",top:"0px",width:"0px",height:"0px",overflow:"hidden",opacity:"0",pointerEvents:"none",contain:"size layout style"}),document.documentElement.appendChild(e),yat=e,e}function hca(e){let t=uca(),r=document.createElement("div");r.style.transformOrigin="0 0",e.baseTransform&&(r.style.transform=e.baseTransform),e.rotate&&(r.style.rotate=e.rotate),e.scale&&(r.style.scale=e.scale),e.translate&&(r.style.translate=e.translate),t.appendChild(r);let a=fJn(r);return t.removeChild(r),a}function dca(e){let t=getComputedStyle(e),r=t.transform||"none";if(r!=="none"&&!/^matrix\(\s*1\s*,\s*0\s*,\s*0\s*,\s*1\s*,\s*0\s*,\s*0\s*\)$/i.test(r))return!0;let a=t.rotate&&t.rotate!=="none"&&t.rotate!=="0deg",s=t.scale&&t.scale!=="none"&&t.scale!=="1",o=t.translate&&t.translate!=="none"&&t.translate!=="0px 0px";return!!(a||s||o)}function fJn(e){let t=getComputedStyle(e).transform;if(!t||t==="none")return new DOMMatrix;try{return new DOMMatrix(t)}catch{return new WebKitCSSMatrix(t)}}async function pJn(e,t){var I;if(!e)throw new Error("Element cannot be null or undefined");eoa(t.cache);let r=t.fast,a=t.outerTransforms!==!1,s=!!t.outerShadows,o={element:e,options:t,plugins:t.plugins},u,h,f,p="",m="",b,_,w=null;await iO("beforeSnap",o),await iO("beforeClone",o);let S=zla(o.element);try{({clone:u,classCSS:h,styleCache:f}=await Fla(o.element,o.options)),!a&&u&&(w=oca(o.element,u)),!s&&u&&Yla(o.element,u)}finally{S()}if(o={clone:u,classCSS:h,styleCache:f,...o},await iO("afterClone",o),Kla(o.clone),((I=o.options)==null?void 0:I.excludeMode)==="remove")try{Jla(o.element,o.clone,o.styleCache)}catch(N){console.warn("[snapdom] shrink pass failed:",N)}try{await Soa(o.clone,o.element)}catch{}await new Promise(N=>{_V(async()=>{await Ula(o.clone,o.options),N()},{fast:r})}),await new Promise(N=>{_V(async()=>{await Goa(o.element,o.clone,o.styleCache,o.options),N()},{fast:r})}),t.embedFonts&&await new Promise(N=>{_V(async()=>{let L=$oa(o.element),P=Uoa(o.element);if(cF()){let M=new Set(Array.from(L).map(F=>String(F).split("__")[0]).filter(Boolean));await zoa(M,1)}p=await Foa({required:L,usedCodepoints:P,exclude:o.options.excludeFonts,useProxy:o.options.useProxy}),N()},{fast:r})});let C=foa(o.clone).sort(),A=C.join(",");na.baseStyle.has(A)?m=na.baseStyle.get(A):await new Promise(N=>{_V(()=>{m=poa(C),na.baseStyle.set(A,m),N()},{fast:r})}),o={fontsCSS:p,baseCSS:m,...o},await iO("beforeRender",o),await new Promise(N=>{_V(()=>{var ht;let L=getComputedStyle(o.element),P=o.element.getBoundingClientRect(),M=Math.max(1,Ro(o.element.offsetWidth||parseFloat(L.width)||P.width||1)),F=Math.max(1,Ro(o.element.offsetHeight||parseFloat(L.height)||P.height||1));if(((ht=o.options)==null?void 0:ht.excludeMode)==="remove"){let et=nca(o.element,o.options);Number.isFinite(et)&&et>0&&(F=Math.max(1,Math.min(F,Ro(et+1))))}let U=(et,qe=NaN)=>{let He=typeof et=="string"?parseFloat(et):et;return Number.isFinite(He)?He:qe},$=U(o.options.width),G=U(o.options.height),B=M,Z=F,z=Number.isFinite($),Y=Number.isFinite(G),W=F>0?M/F:1;z&&Y?(B=Math.max(1,Ro($)),Z=Math.max(1,Ro(G))):z?(B=Math.max(1,Ro($)),Z=Math.max(1,Ro(B/(W||1)))):Y?(Z=Math.max(1,Ro(G)),B=Math.max(1,Ro(Z*(W||1)))):(B=M,Z=F);let Q=0,V=0,j=M,ee=F;if(!a&&w&&Number.isFinite(w.a)){let et={a:w.a,b:w.b||0,c:w.c||0,d:w.d||1,e:0,f:0},qe=$5n(M,F,et,0,0);Q=Ro(qe.minX),V=Ro(qe.minY),j=Ro(qe.maxX),ee=Ro(qe.maxY)}else if(a&&fca(o.element)){let et=L.transform&&L.transform!=="none"?L.transform:"",qe=cca(o.element),He=hca({baseTransform:et,rotate:qe.rotate||"0deg",scale:qe.scale,translate:qe.translate}),{ox:Ge,oy:Ye}=lca(L,M,F),Ae=He.is2D?He:new DOMMatrix(He.toString()),Xe=$5n(M,F,Ae,Ge,Ye);Q=Ro(Xe.minX),V=Ro(Xe.minY),j=Ro(Xe.maxX),ee=Ro(Xe.maxY)}let te=rca(L),ne=ica(L),se=aca(L),ie=sca(L),ge=s?{top:Ro(te.top+ne.top+se.top+ie.bleed.top),right:Ro(te.right+ne.right+se.right+ie.bleed.right),bottom:Ro(te.bottom+ne.bottom+se.bottom+ie.bleed.bottom),left:Ro(te.left+ne.left+se.left+ie.bleed.left)}:{top:0,right:0,bottom:0,left:0};Q=Ro(Q-ge.left),V=Ro(V-ge.top),j=Ro(j+ge.right),ee=Ro(ee+ge.bottom);let ce=Math.max(1,Ro(j-Q)),be=Math.max(1,Ro(ee-V)),ve=z||Y?Ro(B/M):1,De=Y||z?Ro(Z/F):1,ye=Math.max(1,Ro(ce*ve)),Ee=Math.max(1,Ro(be*De)),he="http://www.w3.org/2000/svg",we=cF()?1:0,Ce=Ro(we+(a?0:1)),Ie=document.createElementNS(he,"foreignObject"),Le=Ro(Q),Fe=Ro(V);Ie.setAttribute("x",String(Ro(-(Le-Ce)))),Ie.setAttribute("y",String(Ro(-(Fe-Ce)))),Ie.setAttribute("width",String(Ro(M+Ce*2))),Ie.setAttribute("height",String(Ro(F+Ce*2))),Ie.style.overflow="visible";let Ve=document.createElement("style");Ve.textContent=o.baseCSS+o.fontsCSS+"svg{overflow:visible;} foreignObject{overflow:visible;}"+o.classCSS,Ie.appendChild(Ve);let Oe=document.createElement("div");Oe.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),Oe.style.width=`${Ro(M)}px`,Oe.style.height=`${Ro(F)}px`,Oe.style.overflow="visible",Oe.appendChild(o.clone),Ie.appendChild(Oe);let Dt=new XMLSerializer().serializeToString(Ie),ot=Ro(ce+Ce*2),sn=Ro(be+Ce*2),Kt=z||Y;t.meta={w0:M,h0:F,vbW:ot,vbH:sn,targetW:B,targetH:Z};let Ft=cF()&&Kt?ot:Ro(ye+Ce*2),Je=cF()&&Kt?sn:Ro(Ee+Ce*2);_=``+Dt+"",b=`data:image/svg+xml;charset=utf-8,${encodeURIComponent(_)}`,o={svgString:_,dataURL:b,...o},N()},{fast:r})}),await iO("afterRender",o);let k=document.getElementById("snapdom-sandbox");return k&&k.style.position==="absolute"&&k.remove(),o.dataURL}function fca(e){return dca(e)}function pca(e){if(typeof e=="string"){let t=e.toLowerCase().trim();if(t==="disabled"||t==="full"||t==="auto"||t==="soft")return t}return"soft"}function gca(e={}){let t=e.format??"png";t==="jpg"&&(t="jpeg");let r=pca(e.cache);return{debug:e.debug??!1,fast:e.fast??!0,scale:e.scale??1,exclude:e.exclude??[],excludeMode:e.excludeMode??"hide",filter:e.filter??null,filterMode:e.filterMode??"hide",placeholders:e.placeholders!==!1,embedFonts:e.embedFonts??!1,iconFonts:Array.isArray(e.iconFonts)?e.iconFonts:e.iconFonts?[e.iconFonts]:[],localFonts:Array.isArray(e.localFonts)?e.localFonts:[],excludeFonts:e.excludeFonts??void 0,fallbackURL:e.fallbackURL??void 0,cache:r,useProxy:typeof e.useProxy=="string"?e.useProxy:"",width:e.width??null,height:e.height??null,format:t,type:e.type??"svg",quality:e.quality??.92,dpr:e.dpr??(window.devicePixelRatio||1),backgroundColor:e.backgroundColor??(["jpeg","webp"].includes(t)?"#ffffff":null),filename:e.filename??"snapDOM",outerTransforms:e.outerTransforms??!0,outerShadows:e.outerShadows??!1}}function gJn(...e){return qoa(...e),Wd}var Wd=Object.assign(mca,{plugins:gJn}),mJn=Symbol("snapdom.internal"),FN=Symbol("snapdom.internal.silent"),cht=!1;async function mca(e,t){if(!e)throw new Error("Element cannot be null or undefined");let r=gca(t);if(Yoa(r,t&&t.plugins),cF()&&(r.embedFonts===!0||yca(e)))for(let a=0;a<3;a++)try{await bca(e,t),cht=!1}catch{}return r.iconFonts&&r.iconFonts.length>0&&boa(r.iconFonts),r.snap||(r.snap={toPng:(a,s)=>Wd.toPng(a,s),toSvg:(a,s)=>Wd.toSvg(a,s)}),Wd.capture(e,r,mJn)}Wd.capture=async(e,t,r)=>{if(r!==mJn)throw new Error("[snapdom.capture] is internal. Use snapdom(...) instead.");let a=await pJn(e,t),s={img:async(S,C)=>{let{toImg:A}=await ea(()=>Promise.resolve().then(()=>kEe),void 0);return A(a,{...S,...C||{}})},svg:async(S,C)=>{let{toSvg:A}=await ea(()=>Promise.resolve().then(()=>kEe),void 0);return A(a,{...S,...C||{}})},canvas:async(S,C)=>{let{toCanvas:A}=await ea(()=>Promise.resolve().then(()=>fAn),void 0);return A(a,{...S,...C||{}})},blob:async(S,C)=>{let{toBlob:A}=await ea(()=>Promise.resolve().then(()=>pAn),void 0);return A(a,{...S,...C||{}})},png:async(S,C)=>{let{rasterize:A}=await ea(()=>Promise.resolve().then(()=>SB),void 0);return A(a,{...S,...C||{},format:"png"})},jpeg:async(S,C)=>{let{rasterize:A}=await ea(()=>Promise.resolve().then(()=>SB),void 0);return A(a,{...S,...C||{},format:"jpeg"})},webp:async(S,C)=>{let{rasterize:A}=await ea(()=>Promise.resolve().then(()=>SB),void 0);return A(a,{...S,...C||{},format:"webp"})},download:async(S,C)=>{let{download:A}=await ea(()=>Promise.resolve().then(()=>eSa),void 0);return A(a,{...S,...C||{}})}},o={...t,export:{url:a},exports:{svg:async S=>{let{toSvg:C}=await ea(()=>Promise.resolve().then(()=>kEe),void 0);return C(a,{...t,...S||{},[FN]:!0})},canvas:async S=>{let{toCanvas:C}=await ea(()=>Promise.resolve().then(()=>fAn),void 0);return C(a,{...t,...S||{},[FN]:!0})},png:async S=>{let{rasterize:C}=await ea(()=>Promise.resolve().then(()=>SB),void 0);return C(a,{...t,...S||{},format:"png",[FN]:!0})},jpeg:async S=>{let{rasterize:C}=await ea(()=>Promise.resolve().then(()=>SB),void 0);return C(a,{...t,...S||{},format:"jpeg",[FN]:!0})},jpg:async S=>{let{rasterize:C}=await ea(()=>Promise.resolve().then(()=>SB),void 0);return C(a,{...t,...S||{},format:"jpeg",[FN]:!0})},webp:async S=>{let{rasterize:C}=await ea(()=>Promise.resolve().then(()=>SB),void 0);return C(a,{...t,...S||{},format:"webp",[FN]:!0})},blob:async S=>{let{toBlob:C}=await ea(()=>Promise.resolve().then(()=>pAn),void 0);return C(a,{...t,...S||{},[FN]:!0})},img:async S=>{let{toImg:C}=await ea(()=>Promise.resolve().then(()=>kEe),void 0);return C(a,{...t,...S||{},[FN]:!0})}}},u=await Hoa("defineExports",o),h=Object.assign({},...u.filter(S=>S&&typeof S=="object")),f={...s,...h};f.jpeg&&!f.jpg&&(f.jpg=(S,C)=>f.jpeg(S,C));function p(S,C){let A={...t,...C||{}};return(S==="jpeg"||S==="jpg")&&(A.backgroundColor==null||A.backgroundColor==="transparent")&&(A.backgroundColor="#ffffff"),A}let m=!1,b=Promise.resolve();async function _(S,C){let A=async()=>{let k=f[S];if(!k)throw new Error(`[snapdom] Unknown export type: ${S}`);let I=p(S,C),N={...t,export:{type:S,options:I,url:a}};await iO("beforeExport",N);let L=await k(N,I);return await iO("afterExport",N,L),m||(m=!0,await iO("afterSnap",t)),L};return b=b.then(A)}let w={url:a,toRaw:()=>a,to:(S,C)=>_(S,C),toImg:S=>_("img",S),toSvg:S=>_("svg",S),toCanvas:S=>_("canvas",S),toBlob:S=>_("blob",S),toPng:S=>_("png",S),toJpg:S=>_("jpg",S),toWebp:S=>_("webp",S),download:S=>_("download",S)};for(let S of Object.keys(f)){let C="to"+S.charAt(0).toUpperCase()+S.slice(1);w[C]||(w[C]=A=>_(S,A))}return w};Wd.toRaw=(e,t)=>Wd(e,t).then(r=>r.toRaw());Wd.toImg=(e,t)=>Wd(e,t).then(r=>r.toImg());Wd.toSvg=(e,t)=>Wd(e,t).then(r=>r.toSvg());Wd.toCanvas=(e,t)=>Wd(e,t).then(r=>r.toCanvas());Wd.toBlob=(e,t)=>Wd(e,t).then(r=>r.toBlob());Wd.toPng=(e,t)=>Wd(e,{...t,format:"png"}).then(r=>r.toPng());Wd.toJpg=(e,t)=>Wd(e,{...t,format:"jpeg"}).then(r=>r.toJpg());Wd.toWebp=(e,t)=>Wd(e,{...t,format:"webp"}).then(r=>r.toWebp());Wd.download=(e,t)=>Wd(e,t).then(r=>r.download());async function bca(e,t){if(cht)return;let r={...t,fast:!0,embedFonts:!0,scale:.2},a;try{a=await pJn(e,r)}catch{}await new Promise(s=>requestAnimationFrame(()=>requestAnimationFrame(s))),a&&await new Promise(s=>{let o=new Image;try{o.decoding="sync",o.loading="eager"}catch{}o.style.cssText="position:fixed;left:0px;top:0px;width:10px;height:10px;opacity:0.01;pointer-events:none;",o.src=a,document.body.appendChild(o),(async()=>{try{typeof o.decode=="function"&&await o.decode()}catch{}let u=performance.now();for(;!(o.complete&&o.naturalWidth>0)&&performance.now()-u<900;)await new Promise(h=>setTimeout(h,200));await new Promise(h=>requestAnimationFrame(h));try{o.remove()}catch{}s()})()}),e.querySelectorAll("canvas").forEach(s=>{try{let o=s.getContext("2d",{willReadFrequently:!0});o&&o.getImageData(0,0,1,1)}catch{}}),cht=!0}function yca(e){let t=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT);for(;t.nextNode();){let r=t.currentNode,a=getComputedStyle(r),s=a.backgroundImage&&a.backgroundImage!=="none",o=a.maskImage&&a.maskImage!=="none"||a.webkitMaskImage&&a.webkitMaskImage!=="none";if(s||o||r.tagName==="CANVAS")return!0}return!1}const oCa=Object.freeze(Object.defineProperty({__proto__:null,plugins:gJn,snapdom:Wd},Symbol.toStringTag,{value:"Module"})),vca=Object.freeze(Object.defineProperty({__proto__:null,InfoModule:IWn,createInfoServices:NWn},Symbol.toStringTag,{value:"Module"})),_ca=Object.freeze(Object.defineProperty({__proto__:null,PacketModule:OWn,createPacketServices:LWn},Symbol.toStringTag,{value:"Module"})),wca=Object.freeze(Object.defineProperty({__proto__:null,PieModule:DWn,createPieServices:MWn},Symbol.toStringTag,{value:"Module"})),Eca=Object.freeze(Object.defineProperty({__proto__:null,ArchitectureModule:PWn,createArchitectureServices:BWn},Symbol.toStringTag,{value:"Module"})),xca=Object.freeze(Object.defineProperty({__proto__:null,GitGraphModule:kWn,createGitGraphServices:RWn},Symbol.toStringTag,{value:"Module"})),Sca=Object.freeze(Object.defineProperty({__proto__:null,RadarModule:FWn,createRadarServices:$Wn},Symbol.toStringTag,{value:"Module"})),Tca=Object.freeze(Object.defineProperty({__proto__:null,TreemapModule:zWn,createTreemapServices:GWn},Symbol.toStringTag,{value:"Module"})),d6e=(e,t)=>{const r=e.append("rect");if(r.attr("x",t.x),r.attr("y",t.y),r.attr("fill",t.fill),r.attr("stroke",t.stroke),r.attr("width",t.width),r.attr("height",t.height),t.name&&r.attr("name",t.name),t.rx!==void 0&&r.attr("rx",t.rx),t.ry!==void 0&&r.attr("ry",t.ry),t.attrs!==void 0)for(const a in t.attrs)r.attr(a,t.attrs[a]);return t.class!==void 0&&r.attr("class",t.class),r},bJn=(e,t)=>{const r={x:t.startx,y:t.starty,width:t.stopx-t.startx,height:t.stopy-t.starty,fill:t.fill,stroke:t.stroke,class:"rect"};d6e(e,r).lower()},Cca=(e,t)=>{const r=t.text.replace(aK," "),a=e.append("text");a.attr("x",t.x),a.attr("y",t.y),a.attr("class","legend"),a.style("text-anchor",t.anchor),t.class!==void 0&&a.attr("class",t.class);const s=a.append("tspan");return s.attr("x",t.x+t.textMargin*2),s.text(r),a},Aca=(e,t,r,a)=>{const s=e.append("image");s.attr("x",t),s.attr("y",r);const o=U9(a);s.attr("xlink:href",o)},kca=(e,t,r,a)=>{const s=e.append("use");s.attr("x",t),s.attr("y",r);const o=U9(a);s.attr("xlink:href",`#${o}`)},eU=()=>({x:0,y:0,width:100,height:100,fill:"#EDF2AE",stroke:"#666",anchor:"start",rx:0,ry:0}),Obt=()=>({x:0,y:0,width:100,height:100,"text-anchor":"start",style:"#666",textMargin:0,rx:0,ry:0,tspan:!0});var JTe=function(){var e=function(Ft,Je,ht,et){for(ht=ht||{},et=Ft.length;et--;ht[Ft[et]]=Je);return ht},t=[1,24],r=[1,25],a=[1,26],s=[1,27],o=[1,28],u=[1,63],h=[1,64],f=[1,65],p=[1,66],m=[1,67],b=[1,68],_=[1,69],w=[1,29],S=[1,30],C=[1,31],A=[1,32],k=[1,33],I=[1,34],N=[1,35],L=[1,36],P=[1,37],M=[1,38],F=[1,39],U=[1,40],$=[1,41],G=[1,42],B=[1,43],Z=[1,44],z=[1,45],Y=[1,46],W=[1,47],Q=[1,48],V=[1,50],j=[1,51],ee=[1,52],te=[1,53],ne=[1,54],se=[1,55],ie=[1,56],ge=[1,57],ce=[1,58],be=[1,59],ve=[1,60],De=[14,42],ye=[14,34,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],Ee=[12,14,34,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],he=[1,82],we=[1,83],Ce=[1,84],Ie=[1,85],Le=[12,14,42],Fe=[12,14,33,42],Ve=[12,14,33,42,76,77,79,80],Oe=[12,33],Dt=[34,36,37,38,39,40,41,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],ot={trace:function(){},yy:{},symbols_:{error:2,start:3,mermaidDoc:4,direction:5,direction_tb:6,direction_bt:7,direction_rl:8,direction_lr:9,graphConfig:10,C4_CONTEXT:11,NEWLINE:12,statements:13,EOF:14,C4_CONTAINER:15,C4_COMPONENT:16,C4_DYNAMIC:17,C4_DEPLOYMENT:18,otherStatements:19,diagramStatements:20,otherStatement:21,title:22,accDescription:23,acc_title:24,acc_title_value:25,acc_descr:26,acc_descr_value:27,acc_descr_multiline_value:28,boundaryStatement:29,boundaryStartStatement:30,boundaryStopStatement:31,boundaryStart:32,LBRACE:33,ENTERPRISE_BOUNDARY:34,attributes:35,SYSTEM_BOUNDARY:36,BOUNDARY:37,CONTAINER_BOUNDARY:38,NODE:39,NODE_L:40,NODE_R:41,RBRACE:42,diagramStatement:43,PERSON:44,PERSON_EXT:45,SYSTEM:46,SYSTEM_DB:47,SYSTEM_QUEUE:48,SYSTEM_EXT:49,SYSTEM_EXT_DB:50,SYSTEM_EXT_QUEUE:51,CONTAINER:52,CONTAINER_DB:53,CONTAINER_QUEUE:54,CONTAINER_EXT:55,CONTAINER_EXT_DB:56,CONTAINER_EXT_QUEUE:57,COMPONENT:58,COMPONENT_DB:59,COMPONENT_QUEUE:60,COMPONENT_EXT:61,COMPONENT_EXT_DB:62,COMPONENT_EXT_QUEUE:63,REL:64,BIREL:65,REL_U:66,REL_D:67,REL_L:68,REL_R:69,REL_B:70,REL_INDEX:71,UPDATE_EL_STYLE:72,UPDATE_REL_STYLE:73,UPDATE_LAYOUT_CONFIG:74,attribute:75,STR:76,STR_KEY:77,STR_VALUE:78,ATTRIBUTE:79,ATTRIBUTE_EMPTY:80,$accept:0,$end:1},terminals_:{2:"error",6:"direction_tb",7:"direction_bt",8:"direction_rl",9:"direction_lr",11:"C4_CONTEXT",12:"NEWLINE",14:"EOF",15:"C4_CONTAINER",16:"C4_COMPONENT",17:"C4_DYNAMIC",18:"C4_DEPLOYMENT",22:"title",23:"accDescription",24:"acc_title",25:"acc_title_value",26:"acc_descr",27:"acc_descr_value",28:"acc_descr_multiline_value",33:"LBRACE",34:"ENTERPRISE_BOUNDARY",36:"SYSTEM_BOUNDARY",37:"BOUNDARY",38:"CONTAINER_BOUNDARY",39:"NODE",40:"NODE_L",41:"NODE_R",42:"RBRACE",44:"PERSON",45:"PERSON_EXT",46:"SYSTEM",47:"SYSTEM_DB",48:"SYSTEM_QUEUE",49:"SYSTEM_EXT",50:"SYSTEM_EXT_DB",51:"SYSTEM_EXT_QUEUE",52:"CONTAINER",53:"CONTAINER_DB",54:"CONTAINER_QUEUE",55:"CONTAINER_EXT",56:"CONTAINER_EXT_DB",57:"CONTAINER_EXT_QUEUE",58:"COMPONENT",59:"COMPONENT_DB",60:"COMPONENT_QUEUE",61:"COMPONENT_EXT",62:"COMPONENT_EXT_DB",63:"COMPONENT_EXT_QUEUE",64:"REL",65:"BIREL",66:"REL_U",67:"REL_D",68:"REL_L",69:"REL_R",70:"REL_B",71:"REL_INDEX",72:"UPDATE_EL_STYLE",73:"UPDATE_REL_STYLE",74:"UPDATE_LAYOUT_CONFIG",76:"STR",77:"STR_KEY",78:"STR_VALUE",79:"ATTRIBUTE",80:"ATTRIBUTE_EMPTY"},productions_:[0,[3,1],[3,1],[5,1],[5,1],[5,1],[5,1],[4,1],[10,4],[10,4],[10,4],[10,4],[10,4],[13,1],[13,1],[13,2],[19,1],[19,2],[19,3],[21,1],[21,1],[21,2],[21,2],[21,1],[29,3],[30,3],[30,3],[30,4],[32,2],[32,2],[32,2],[32,2],[32,2],[32,2],[32,2],[31,1],[20,1],[20,2],[20,3],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,1],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[43,2],[35,1],[35,2],[75,1],[75,2],[75,1],[75,1]],performAction:function(Je,ht,et,qe,He,Ge,Ye){var Ae=Ge.length-1;switch(He){case 3:qe.setDirection("TB");break;case 4:qe.setDirection("BT");break;case 5:qe.setDirection("RL");break;case 6:qe.setDirection("LR");break;case 8:case 9:case 10:case 11:case 12:qe.setC4Type(Ge[Ae-3]);break;case 19:qe.setTitle(Ge[Ae].substring(6)),this.$=Ge[Ae].substring(6);break;case 20:qe.setAccDescription(Ge[Ae].substring(15)),this.$=Ge[Ae].substring(15);break;case 21:this.$=Ge[Ae].trim(),qe.setTitle(this.$);break;case 22:case 23:this.$=Ge[Ae].trim(),qe.setAccDescription(this.$);break;case 28:case 29:Ge[Ae].splice(2,0,"ENTERPRISE"),qe.addPersonOrSystemBoundary(...Ge[Ae]),this.$=Ge[Ae];break;case 30:qe.addPersonOrSystemBoundary(...Ge[Ae]),this.$=Ge[Ae];break;case 31:Ge[Ae].splice(2,0,"CONTAINER"),qe.addContainerBoundary(...Ge[Ae]),this.$=Ge[Ae];break;case 32:qe.addDeploymentNode("node",...Ge[Ae]),this.$=Ge[Ae];break;case 33:qe.addDeploymentNode("nodeL",...Ge[Ae]),this.$=Ge[Ae];break;case 34:qe.addDeploymentNode("nodeR",...Ge[Ae]),this.$=Ge[Ae];break;case 35:qe.popBoundaryParseStack();break;case 39:qe.addPersonOrSystem("person",...Ge[Ae]),this.$=Ge[Ae];break;case 40:qe.addPersonOrSystem("external_person",...Ge[Ae]),this.$=Ge[Ae];break;case 41:qe.addPersonOrSystem("system",...Ge[Ae]),this.$=Ge[Ae];break;case 42:qe.addPersonOrSystem("system_db",...Ge[Ae]),this.$=Ge[Ae];break;case 43:qe.addPersonOrSystem("system_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 44:qe.addPersonOrSystem("external_system",...Ge[Ae]),this.$=Ge[Ae];break;case 45:qe.addPersonOrSystem("external_system_db",...Ge[Ae]),this.$=Ge[Ae];break;case 46:qe.addPersonOrSystem("external_system_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 47:qe.addContainer("container",...Ge[Ae]),this.$=Ge[Ae];break;case 48:qe.addContainer("container_db",...Ge[Ae]),this.$=Ge[Ae];break;case 49:qe.addContainer("container_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 50:qe.addContainer("external_container",...Ge[Ae]),this.$=Ge[Ae];break;case 51:qe.addContainer("external_container_db",...Ge[Ae]),this.$=Ge[Ae];break;case 52:qe.addContainer("external_container_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 53:qe.addComponent("component",...Ge[Ae]),this.$=Ge[Ae];break;case 54:qe.addComponent("component_db",...Ge[Ae]),this.$=Ge[Ae];break;case 55:qe.addComponent("component_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 56:qe.addComponent("external_component",...Ge[Ae]),this.$=Ge[Ae];break;case 57:qe.addComponent("external_component_db",...Ge[Ae]),this.$=Ge[Ae];break;case 58:qe.addComponent("external_component_queue",...Ge[Ae]),this.$=Ge[Ae];break;case 60:qe.addRel("rel",...Ge[Ae]),this.$=Ge[Ae];break;case 61:qe.addRel("birel",...Ge[Ae]),this.$=Ge[Ae];break;case 62:qe.addRel("rel_u",...Ge[Ae]),this.$=Ge[Ae];break;case 63:qe.addRel("rel_d",...Ge[Ae]),this.$=Ge[Ae];break;case 64:qe.addRel("rel_l",...Ge[Ae]),this.$=Ge[Ae];break;case 65:qe.addRel("rel_r",...Ge[Ae]),this.$=Ge[Ae];break;case 66:qe.addRel("rel_b",...Ge[Ae]),this.$=Ge[Ae];break;case 67:Ge[Ae].splice(0,1),qe.addRel("rel",...Ge[Ae]),this.$=Ge[Ae];break;case 68:qe.updateElStyle("update_el_style",...Ge[Ae]),this.$=Ge[Ae];break;case 69:qe.updateRelStyle("update_rel_style",...Ge[Ae]),this.$=Ge[Ae];break;case 70:qe.updateLayoutConfig("update_layout_config",...Ge[Ae]),this.$=Ge[Ae];break;case 71:this.$=[Ge[Ae]];break;case 72:Ge[Ae].unshift(Ge[Ae-1]),this.$=Ge[Ae];break;case 73:case 75:this.$=Ge[Ae].trim();break;case 74:let Xe={};Xe[Ge[Ae-1].trim()]=Ge[Ae].trim(),this.$=Xe;break;case 76:this.$="";break}},table:[{3:1,4:2,5:3,6:[1,5],7:[1,6],8:[1,7],9:[1,8],10:4,11:[1,9],15:[1,10],16:[1,11],17:[1,12],18:[1,13]},{1:[3]},{1:[2,1]},{1:[2,2]},{1:[2,7]},{1:[2,3]},{1:[2,4]},{1:[2,5]},{1:[2,6]},{12:[1,14]},{12:[1,15]},{12:[1,16]},{12:[1,17]},{12:[1,18]},{13:19,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{13:70,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{13:71,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{13:72,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{13:73,19:20,20:21,21:22,22:t,23:r,24:a,26:s,28:o,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{14:[1,74]},e(De,[2,13],{43:23,29:49,30:61,32:62,20:75,34:u,36:h,37:f,38:p,39:m,40:b,41:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve}),e(De,[2,14]),e(ye,[2,16],{12:[1,76]}),e(De,[2,36],{12:[1,77]}),e(Ee,[2,19]),e(Ee,[2,20]),{25:[1,78]},{27:[1,79]},e(Ee,[2,23]),{35:80,75:81,76:he,77:we,79:Ce,80:Ie},{35:86,75:81,76:he,77:we,79:Ce,80:Ie},{35:87,75:81,76:he,77:we,79:Ce,80:Ie},{35:88,75:81,76:he,77:we,79:Ce,80:Ie},{35:89,75:81,76:he,77:we,79:Ce,80:Ie},{35:90,75:81,76:he,77:we,79:Ce,80:Ie},{35:91,75:81,76:he,77:we,79:Ce,80:Ie},{35:92,75:81,76:he,77:we,79:Ce,80:Ie},{35:93,75:81,76:he,77:we,79:Ce,80:Ie},{35:94,75:81,76:he,77:we,79:Ce,80:Ie},{35:95,75:81,76:he,77:we,79:Ce,80:Ie},{35:96,75:81,76:he,77:we,79:Ce,80:Ie},{35:97,75:81,76:he,77:we,79:Ce,80:Ie},{35:98,75:81,76:he,77:we,79:Ce,80:Ie},{35:99,75:81,76:he,77:we,79:Ce,80:Ie},{35:100,75:81,76:he,77:we,79:Ce,80:Ie},{35:101,75:81,76:he,77:we,79:Ce,80:Ie},{35:102,75:81,76:he,77:we,79:Ce,80:Ie},{35:103,75:81,76:he,77:we,79:Ce,80:Ie},{35:104,75:81,76:he,77:we,79:Ce,80:Ie},e(Le,[2,59]),{35:105,75:81,76:he,77:we,79:Ce,80:Ie},{35:106,75:81,76:he,77:we,79:Ce,80:Ie},{35:107,75:81,76:he,77:we,79:Ce,80:Ie},{35:108,75:81,76:he,77:we,79:Ce,80:Ie},{35:109,75:81,76:he,77:we,79:Ce,80:Ie},{35:110,75:81,76:he,77:we,79:Ce,80:Ie},{35:111,75:81,76:he,77:we,79:Ce,80:Ie},{35:112,75:81,76:he,77:we,79:Ce,80:Ie},{35:113,75:81,76:he,77:we,79:Ce,80:Ie},{35:114,75:81,76:he,77:we,79:Ce,80:Ie},{35:115,75:81,76:he,77:we,79:Ce,80:Ie},{20:116,29:49,30:61,32:62,34:u,36:h,37:f,38:p,39:m,40:b,41:_,43:23,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve},{12:[1,118],33:[1,117]},{35:119,75:81,76:he,77:we,79:Ce,80:Ie},{35:120,75:81,76:he,77:we,79:Ce,80:Ie},{35:121,75:81,76:he,77:we,79:Ce,80:Ie},{35:122,75:81,76:he,77:we,79:Ce,80:Ie},{35:123,75:81,76:he,77:we,79:Ce,80:Ie},{35:124,75:81,76:he,77:we,79:Ce,80:Ie},{35:125,75:81,76:he,77:we,79:Ce,80:Ie},{14:[1,126]},{14:[1,127]},{14:[1,128]},{14:[1,129]},{1:[2,8]},e(De,[2,15]),e(ye,[2,17],{21:22,19:130,22:t,23:r,24:a,26:s,28:o}),e(De,[2,37],{19:20,20:21,21:22,43:23,29:49,30:61,32:62,13:131,22:t,23:r,24:a,26:s,28:o,34:u,36:h,37:f,38:p,39:m,40:b,41:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N,51:L,52:P,53:M,54:F,55:U,56:$,57:G,58:B,59:Z,60:z,61:Y,62:W,63:Q,64:V,65:j,66:ee,67:te,68:ne,69:se,70:ie,71:ge,72:ce,73:be,74:ve}),e(Ee,[2,21]),e(Ee,[2,22]),e(Le,[2,39]),e(Fe,[2,71],{75:81,35:132,76:he,77:we,79:Ce,80:Ie}),e(Ve,[2,73]),{78:[1,133]},e(Ve,[2,75]),e(Ve,[2,76]),e(Le,[2,40]),e(Le,[2,41]),e(Le,[2,42]),e(Le,[2,43]),e(Le,[2,44]),e(Le,[2,45]),e(Le,[2,46]),e(Le,[2,47]),e(Le,[2,48]),e(Le,[2,49]),e(Le,[2,50]),e(Le,[2,51]),e(Le,[2,52]),e(Le,[2,53]),e(Le,[2,54]),e(Le,[2,55]),e(Le,[2,56]),e(Le,[2,57]),e(Le,[2,58]),e(Le,[2,60]),e(Le,[2,61]),e(Le,[2,62]),e(Le,[2,63]),e(Le,[2,64]),e(Le,[2,65]),e(Le,[2,66]),e(Le,[2,67]),e(Le,[2,68]),e(Le,[2,69]),e(Le,[2,70]),{31:134,42:[1,135]},{12:[1,136]},{33:[1,137]},e(Oe,[2,28]),e(Oe,[2,29]),e(Oe,[2,30]),e(Oe,[2,31]),e(Oe,[2,32]),e(Oe,[2,33]),e(Oe,[2,34]),{1:[2,9]},{1:[2,10]},{1:[2,11]},{1:[2,12]},e(ye,[2,18]),e(De,[2,38]),e(Fe,[2,72]),e(Ve,[2,74]),e(Le,[2,24]),e(Le,[2,35]),e(Dt,[2,25]),e(Dt,[2,26],{12:[1,138]}),e(Dt,[2,27])],defaultActions:{2:[2,1],3:[2,2],4:[2,7],5:[2,3],6:[2,4],7:[2,5],8:[2,6],74:[2,8],126:[2,9],127:[2,10],128:[2,11],129:[2,12]},parseError:function(Je,ht){if(ht.recoverable)this.trace(Je);else{var et=new Error(Je);throw et.hash=ht,et}},parse:function(Je){var ht=this,et=[0],qe=[],He=[null],Ge=[],Ye=this.table,Ae="",Xe=0,fe=0,Qe=2,Ke=1,mt=Ge.slice.call(arguments,1),lt=Object.create(this.lexer),$t={yy:{}};for(var Ut in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Ut)&&($t.yy[Ut]=this.yy[Ut]);lt.setInput(Je,$t.yy),$t.yy.lexer=lt,$t.yy.parser=this,typeof lt.yylloc>"u"&&(lt.yylloc={});var Jt=lt.yylloc;Ge.push(Jt);var wn=lt.options&<.options.ranges;typeof $t.yy.parseError=="function"?this.parseError=$t.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Vn(){var pr;return pr=qe.pop()||lt.lex()||Ke,typeof pr!="number"&&(pr instanceof Array&&(qe=pr,pr=qe.pop()),pr=ht.symbols_[pr]||pr),pr}for(var Wn,Dn,zn,vn,Cn={},Ar,ur,On,Ir;;){if(Dn=et[et.length-1],this.defaultActions[Dn]?zn=this.defaultActions[Dn]:((Wn===null||typeof Wn>"u")&&(Wn=Vn()),zn=Ye[Dn]&&Ye[Dn][Wn]),typeof zn>"u"||!zn.length||!zn[0]){var Ln="";Ir=[];for(Ar in Ye[Dn])this.terminals_[Ar]&&Ar>Qe&&Ir.push("'"+this.terminals_[Ar]+"'");lt.showPosition?Ln="Parse error on line "+(Xe+1)+`: +`+lt.showPosition()+` +Expecting `+Ir.join(", ")+", got '"+(this.terminals_[Wn]||Wn)+"'":Ln="Parse error on line "+(Xe+1)+": Unexpected "+(Wn==Ke?"end of input":"'"+(this.terminals_[Wn]||Wn)+"'"),this.parseError(Ln,{text:lt.match,token:this.terminals_[Wn]||Wn,line:lt.yylineno,loc:Jt,expected:Ir})}if(zn[0]instanceof Array&&zn.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Dn+", token: "+Wn);switch(zn[0]){case 1:et.push(Wn),He.push(lt.yytext),Ge.push(lt.yylloc),et.push(zn[1]),Wn=null,fe=lt.yyleng,Ae=lt.yytext,Xe=lt.yylineno,Jt=lt.yylloc;break;case 2:if(ur=this.productions_[zn[1]][1],Cn.$=He[He.length-ur],Cn._$={first_line:Ge[Ge.length-(ur||1)].first_line,last_line:Ge[Ge.length-1].last_line,first_column:Ge[Ge.length-(ur||1)].first_column,last_column:Ge[Ge.length-1].last_column},wn&&(Cn._$.range=[Ge[Ge.length-(ur||1)].range[0],Ge[Ge.length-1].range[1]]),vn=this.performAction.apply(Cn,[Ae,fe,Xe,$t.yy,zn[1],He,Ge].concat(mt)),typeof vn<"u")return vn;ur&&(et=et.slice(0,-1*ur*2),He=He.slice(0,-1*ur),Ge=Ge.slice(0,-1*ur)),et.push(this.productions_[zn[1]][0]),He.push(Cn.$),Ge.push(Cn._$),On=Ye[et[et.length-2]][et[et.length-1]],et.push(On);break;case 3:return!0}}return!0}},sn=function(){var Ft={EOF:1,parseError:function(ht,et){if(this.yy.parser)this.yy.parser.parseError(ht,et);else throw new Error(ht)},setInput:function(Je,ht){return this.yy=ht||this.yy||{},this._input=Je,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var Je=this._input[0];this.yytext+=Je,this.yyleng++,this.offset++,this.match+=Je,this.matched+=Je;var ht=Je.match(/(?:\r\n?|\n).*/g);return ht?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Je},unput:function(Je){var ht=Je.length,et=Je.split(/(?:\r\n?|\n)/g);this._input=Je+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-ht),this.offset-=ht;var qe=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),et.length-1&&(this.yylineno-=et.length-1);var He=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:et?(et.length===qe.length?this.yylloc.first_column:0)+qe[qe.length-et.length].length-et[0].length:this.yylloc.first_column-ht},this.options.ranges&&(this.yylloc.range=[He[0],He[0]+this.yyleng-ht]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(Je){this.unput(this.match.slice(Je))},pastInput:function(){var Je=this.matched.substr(0,this.matched.length-this.match.length);return(Je.length>20?"...":"")+Je.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var Je=this.match;return Je.length<20&&(Je+=this._input.substr(0,20-Je.length)),(Je.substr(0,20)+(Je.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var Je=this.pastInput(),ht=new Array(Je.length+1).join("-");return Je+this.upcomingInput()+` +`+ht+"^"},test_match:function(Je,ht){var et,qe,He;if(this.options.backtrack_lexer&&(He={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(He.yylloc.range=this.yylloc.range.slice(0))),qe=Je[0].match(/(?:\r\n?|\n).*/g),qe&&(this.yylineno+=qe.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:qe?qe[qe.length-1].length-qe[qe.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Je[0].length},this.yytext+=Je[0],this.match+=Je[0],this.matches=Je,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Je[0].length),this.matched+=Je[0],et=this.performAction.call(this,this.yy,this,ht,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),et)return et;if(this._backtrack){for(var Ge in He)this[Ge]=He[Ge];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Je,ht,et,qe;this._more||(this.yytext="",this.match="");for(var He=this._currentRules(),Ge=0;Geht[0].length)){if(ht=et,qe=Ge,this.options.backtrack_lexer){if(Je=this.test_match(et,He[Ge]),Je!==!1)return Je;if(this._backtrack){ht=!1;continue}else return!1}else if(!this.options.flex)break}return ht?(Je=this.test_match(ht,He[qe]),Je!==!1?Je:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var ht=this.next();return ht||this.lex()},begin:function(ht){this.conditionStack.push(ht)},popState:function(){var ht=this.conditionStack.length-1;return ht>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(ht){return ht=this.conditionStack.length-1-Math.abs(ht||0),ht>=0?this.conditionStack[ht]:"INITIAL"},pushState:function(ht){this.begin(ht)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(ht,et,qe,He){switch(qe){case 0:return 6;case 1:return 7;case 2:return 8;case 3:return 9;case 4:return 22;case 5:return 23;case 6:return this.begin("acc_title"),24;case 7:return this.popState(),"acc_title_value";case 8:return this.begin("acc_descr"),26;case 9:return this.popState(),"acc_descr_value";case 10:this.begin("acc_descr_multiline");break;case 11:this.popState();break;case 12:return"acc_descr_multiline_value";case 13:break;case 14:c;break;case 15:return 12;case 16:break;case 17:return 11;case 18:return 15;case 19:return 16;case 20:return 17;case 21:return 18;case 22:return this.begin("person_ext"),45;case 23:return this.begin("person"),44;case 24:return this.begin("system_ext_queue"),51;case 25:return this.begin("system_ext_db"),50;case 26:return this.begin("system_ext"),49;case 27:return this.begin("system_queue"),48;case 28:return this.begin("system_db"),47;case 29:return this.begin("system"),46;case 30:return this.begin("boundary"),37;case 31:return this.begin("enterprise_boundary"),34;case 32:return this.begin("system_boundary"),36;case 33:return this.begin("container_ext_queue"),57;case 34:return this.begin("container_ext_db"),56;case 35:return this.begin("container_ext"),55;case 36:return this.begin("container_queue"),54;case 37:return this.begin("container_db"),53;case 38:return this.begin("container"),52;case 39:return this.begin("container_boundary"),38;case 40:return this.begin("component_ext_queue"),63;case 41:return this.begin("component_ext_db"),62;case 42:return this.begin("component_ext"),61;case 43:return this.begin("component_queue"),60;case 44:return this.begin("component_db"),59;case 45:return this.begin("component"),58;case 46:return this.begin("node"),39;case 47:return this.begin("node"),39;case 48:return this.begin("node_l"),40;case 49:return this.begin("node_r"),41;case 50:return this.begin("rel"),64;case 51:return this.begin("birel"),65;case 52:return this.begin("rel_u"),66;case 53:return this.begin("rel_u"),66;case 54:return this.begin("rel_d"),67;case 55:return this.begin("rel_d"),67;case 56:return this.begin("rel_l"),68;case 57:return this.begin("rel_l"),68;case 58:return this.begin("rel_r"),69;case 59:return this.begin("rel_r"),69;case 60:return this.begin("rel_b"),70;case 61:return this.begin("rel_index"),71;case 62:return this.begin("update_el_style"),72;case 63:return this.begin("update_rel_style"),73;case 64:return this.begin("update_layout_config"),74;case 65:return"EOF_IN_STRUCT";case 66:return this.begin("attribute"),"ATTRIBUTE_EMPTY";case 67:this.begin("attribute");break;case 68:this.popState(),this.popState();break;case 69:return 80;case 70:break;case 71:return 80;case 72:this.begin("string");break;case 73:this.popState();break;case 74:return"STR";case 75:this.begin("string_kv");break;case 76:return this.begin("string_kv_key"),"STR_KEY";case 77:this.popState(),this.begin("string_kv_value");break;case 78:return"STR_VALUE";case 79:this.popState(),this.popState();break;case 80:return"STR";case 81:return"LBRACE";case 82:return"RBRACE";case 83:return"SPACE";case 84:return"EOL";case 85:return 14}},rules:[/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:title\s[^#\n;]+)/,/^(?:accDescription\s[^#\n;]+)/,/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,/^(?:%%[^\n]*(\r?\n)*)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:C4Context\b)/,/^(?:C4Container\b)/,/^(?:C4Component\b)/,/^(?:C4Dynamic\b)/,/^(?:C4Deployment\b)/,/^(?:Person_Ext\b)/,/^(?:Person\b)/,/^(?:SystemQueue_Ext\b)/,/^(?:SystemDb_Ext\b)/,/^(?:System_Ext\b)/,/^(?:SystemQueue\b)/,/^(?:SystemDb\b)/,/^(?:System\b)/,/^(?:Boundary\b)/,/^(?:Enterprise_Boundary\b)/,/^(?:System_Boundary\b)/,/^(?:ContainerQueue_Ext\b)/,/^(?:ContainerDb_Ext\b)/,/^(?:Container_Ext\b)/,/^(?:ContainerQueue\b)/,/^(?:ContainerDb\b)/,/^(?:Container\b)/,/^(?:Container_Boundary\b)/,/^(?:ComponentQueue_Ext\b)/,/^(?:ComponentDb_Ext\b)/,/^(?:Component_Ext\b)/,/^(?:ComponentQueue\b)/,/^(?:ComponentDb\b)/,/^(?:Component\b)/,/^(?:Deployment_Node\b)/,/^(?:Node\b)/,/^(?:Node_L\b)/,/^(?:Node_R\b)/,/^(?:Rel\b)/,/^(?:BiRel\b)/,/^(?:Rel_Up\b)/,/^(?:Rel_U\b)/,/^(?:Rel_Down\b)/,/^(?:Rel_D\b)/,/^(?:Rel_Left\b)/,/^(?:Rel_L\b)/,/^(?:Rel_Right\b)/,/^(?:Rel_R\b)/,/^(?:Rel_Back\b)/,/^(?:RelIndex\b)/,/^(?:UpdateElementStyle\b)/,/^(?:UpdateRelStyle\b)/,/^(?:UpdateLayoutConfig\b)/,/^(?:$)/,/^(?:[(][ ]*[,])/,/^(?:[(])/,/^(?:[)])/,/^(?:,,)/,/^(?:,)/,/^(?:[ ]*["]["])/,/^(?:[ ]*["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:[ ]*[\$])/,/^(?:[^=]*)/,/^(?:[=][ ]*["])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:[^,]+)/,/^(?:\{)/,/^(?:\})/,/^(?:[\s]+)/,/^(?:[\n\r]+)/,/^(?:$)/],conditions:{acc_descr_multiline:{rules:[11,12],inclusive:!1},acc_descr:{rules:[9],inclusive:!1},acc_title:{rules:[7],inclusive:!1},string_kv_value:{rules:[78,79],inclusive:!1},string_kv_key:{rules:[77],inclusive:!1},string_kv:{rules:[76],inclusive:!1},string:{rules:[73,74],inclusive:!1},attribute:{rules:[68,69,70,71,72,75,80],inclusive:!1},update_layout_config:{rules:[65,66,67,68],inclusive:!1},update_rel_style:{rules:[65,66,67,68],inclusive:!1},update_el_style:{rules:[65,66,67,68],inclusive:!1},rel_b:{rules:[65,66,67,68],inclusive:!1},rel_r:{rules:[65,66,67,68],inclusive:!1},rel_l:{rules:[65,66,67,68],inclusive:!1},rel_d:{rules:[65,66,67,68],inclusive:!1},rel_u:{rules:[65,66,67,68],inclusive:!1},rel_bi:{rules:[],inclusive:!1},rel:{rules:[65,66,67,68],inclusive:!1},node_r:{rules:[65,66,67,68],inclusive:!1},node_l:{rules:[65,66,67,68],inclusive:!1},node:{rules:[65,66,67,68],inclusive:!1},index:{rules:[],inclusive:!1},rel_index:{rules:[65,66,67,68],inclusive:!1},component_ext_queue:{rules:[],inclusive:!1},component_ext_db:{rules:[65,66,67,68],inclusive:!1},component_ext:{rules:[65,66,67,68],inclusive:!1},component_queue:{rules:[65,66,67,68],inclusive:!1},component_db:{rules:[65,66,67,68],inclusive:!1},component:{rules:[65,66,67,68],inclusive:!1},container_boundary:{rules:[65,66,67,68],inclusive:!1},container_ext_queue:{rules:[65,66,67,68],inclusive:!1},container_ext_db:{rules:[65,66,67,68],inclusive:!1},container_ext:{rules:[65,66,67,68],inclusive:!1},container_queue:{rules:[65,66,67,68],inclusive:!1},container_db:{rules:[65,66,67,68],inclusive:!1},container:{rules:[65,66,67,68],inclusive:!1},birel:{rules:[65,66,67,68],inclusive:!1},system_boundary:{rules:[65,66,67,68],inclusive:!1},enterprise_boundary:{rules:[65,66,67,68],inclusive:!1},boundary:{rules:[65,66,67,68],inclusive:!1},system_ext_queue:{rules:[65,66,67,68],inclusive:!1},system_ext_db:{rules:[65,66,67,68],inclusive:!1},system_ext:{rules:[65,66,67,68],inclusive:!1},system_queue:{rules:[65,66,67,68],inclusive:!1},system_db:{rules:[65,66,67,68],inclusive:!1},system:{rules:[65,66,67,68],inclusive:!1},person_ext:{rules:[65,66,67,68],inclusive:!1},person:{rules:[65,66,67,68],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,8,10,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,81,82,83,84,85],inclusive:!0}}};return Ft}();ot.lexer=sn;function Kt(){this.yy={}}return Kt.prototype=ot,ot.Parser=Kt,new Kt}();JTe.parser=JTe;const Rca=JTe;let dT=[],PO=[""],iv="global",rT="",xA=[{alias:"global",label:{text:"global"},type:{text:"global"},tags:null,link:null,parentBoundary:""}],ble=[],Lbt="",Dbt=!1,e5e=4,t5e=2;var yJn;const Ica=function(){return yJn},Nca=function(e){yJn=J0(e,Qt())},Oca=function(e,t,r,a,s,o,u,h,f){if(e==null||t===void 0||t===null||r===void 0||r===null||a===void 0||a===null)return;let p={};const m=ble.find(b=>b.from===t&&b.to===r);if(m?p=m:ble.push(p),p.type=e,p.from=t,p.to=r,p.label={text:a},s==null)p.techn={text:""};else if(typeof s=="object"){let[b,_]=Object.entries(s)[0];p[b]={text:_}}else p.techn={text:s};if(o==null)p.descr={text:""};else if(typeof o=="object"){let[b,_]=Object.entries(o)[0];p[b]={text:_}}else p.descr={text:o};if(typeof u=="object"){let[b,_]=Object.entries(u)[0];p[b]=_}else p.sprite=u;if(typeof h=="object"){let[b,_]=Object.entries(h)[0];p[b]=_}else p.tags=h;if(typeof f=="object"){let[b,_]=Object.entries(f)[0];p[b]=_}else p.link=f;p.wrap=lL()},Lca=function(e,t,r,a,s,o,u){if(t===null||r===null)return;let h={};const f=dT.find(p=>p.alias===t);if(f&&t===f.alias?h=f:(h.alias=t,dT.push(h)),r==null?h.label={text:""}:h.label={text:r},a==null)h.descr={text:""};else if(typeof a=="object"){let[p,m]=Object.entries(a)[0];h[p]={text:m}}else h.descr={text:a};if(typeof s=="object"){let[p,m]=Object.entries(s)[0];h[p]=m}else h.sprite=s;if(typeof o=="object"){let[p,m]=Object.entries(o)[0];h[p]=m}else h.tags=o;if(typeof u=="object"){let[p,m]=Object.entries(u)[0];h[p]=m}else h.link=u;h.typeC4Shape={text:e},h.parentBoundary=iv,h.wrap=lL()},Dca=function(e,t,r,a,s,o,u,h){if(t===null||r===null)return;let f={};const p=dT.find(m=>m.alias===t);if(p&&t===p.alias?f=p:(f.alias=t,dT.push(f)),r==null?f.label={text:""}:f.label={text:r},a==null)f.techn={text:""};else if(typeof a=="object"){let[m,b]=Object.entries(a)[0];f[m]={text:b}}else f.techn={text:a};if(s==null)f.descr={text:""};else if(typeof s=="object"){let[m,b]=Object.entries(s)[0];f[m]={text:b}}else f.descr={text:s};if(typeof o=="object"){let[m,b]=Object.entries(o)[0];f[m]=b}else f.sprite=o;if(typeof u=="object"){let[m,b]=Object.entries(u)[0];f[m]=b}else f.tags=u;if(typeof h=="object"){let[m,b]=Object.entries(h)[0];f[m]=b}else f.link=h;f.wrap=lL(),f.typeC4Shape={text:e},f.parentBoundary=iv},Mca=function(e,t,r,a,s,o,u,h){if(t===null||r===null)return;let f={};const p=dT.find(m=>m.alias===t);if(p&&t===p.alias?f=p:(f.alias=t,dT.push(f)),r==null?f.label={text:""}:f.label={text:r},a==null)f.techn={text:""};else if(typeof a=="object"){let[m,b]=Object.entries(a)[0];f[m]={text:b}}else f.techn={text:a};if(s==null)f.descr={text:""};else if(typeof s=="object"){let[m,b]=Object.entries(s)[0];f[m]={text:b}}else f.descr={text:s};if(typeof o=="object"){let[m,b]=Object.entries(o)[0];f[m]=b}else f.sprite=o;if(typeof u=="object"){let[m,b]=Object.entries(u)[0];f[m]=b}else f.tags=u;if(typeof h=="object"){let[m,b]=Object.entries(h)[0];f[m]=b}else f.link=h;f.wrap=lL(),f.typeC4Shape={text:e},f.parentBoundary=iv},Pca=function(e,t,r,a,s){if(e===null||t===null)return;let o={};const u=xA.find(h=>h.alias===e);if(u&&e===u.alias?o=u:(o.alias=e,xA.push(o)),t==null?o.label={text:""}:o.label={text:t},r==null)o.type={text:"system"};else if(typeof r=="object"){let[h,f]=Object.entries(r)[0];o[h]={text:f}}else o.type={text:r};if(typeof a=="object"){let[h,f]=Object.entries(a)[0];o[h]=f}else o.tags=a;if(typeof s=="object"){let[h,f]=Object.entries(s)[0];o[h]=f}else o.link=s;o.parentBoundary=iv,o.wrap=lL(),rT=iv,iv=e,PO.push(rT)},Bca=function(e,t,r,a,s){if(e===null||t===null)return;let o={};const u=xA.find(h=>h.alias===e);if(u&&e===u.alias?o=u:(o.alias=e,xA.push(o)),t==null?o.label={text:""}:o.label={text:t},r==null)o.type={text:"container"};else if(typeof r=="object"){let[h,f]=Object.entries(r)[0];o[h]={text:f}}else o.type={text:r};if(typeof a=="object"){let[h,f]=Object.entries(a)[0];o[h]=f}else o.tags=a;if(typeof s=="object"){let[h,f]=Object.entries(s)[0];o[h]=f}else o.link=s;o.parentBoundary=iv,o.wrap=lL(),rT=iv,iv=e,PO.push(rT)},Fca=function(e,t,r,a,s,o,u,h){if(t===null||r===null)return;let f={};const p=xA.find(m=>m.alias===t);if(p&&t===p.alias?f=p:(f.alias=t,xA.push(f)),r==null?f.label={text:""}:f.label={text:r},a==null)f.type={text:"node"};else if(typeof a=="object"){let[m,b]=Object.entries(a)[0];f[m]={text:b}}else f.type={text:a};if(s==null)f.descr={text:""};else if(typeof s=="object"){let[m,b]=Object.entries(s)[0];f[m]={text:b}}else f.descr={text:s};if(typeof u=="object"){let[m,b]=Object.entries(u)[0];f[m]=b}else f.tags=u;if(typeof h=="object"){let[m,b]=Object.entries(h)[0];f[m]=b}else f.link=h;f.nodeType=e,f.parentBoundary=iv,f.wrap=lL(),rT=iv,iv=t,PO.push(rT)},$ca=function(){iv=rT,PO.pop(),rT=PO.pop(),PO.push(rT)},Uca=function(e,t,r,a,s,o,u,h,f,p,m){let b=dT.find(_=>_.alias===t);if(!(b===void 0&&(b=xA.find(_=>_.alias===t),b===void 0))){if(r!=null)if(typeof r=="object"){let[_,w]=Object.entries(r)[0];b[_]=w}else b.bgColor=r;if(a!=null)if(typeof a=="object"){let[_,w]=Object.entries(a)[0];b[_]=w}else b.fontColor=a;if(s!=null)if(typeof s=="object"){let[_,w]=Object.entries(s)[0];b[_]=w}else b.borderColor=s;if(o!=null)if(typeof o=="object"){let[_,w]=Object.entries(o)[0];b[_]=w}else b.shadowing=o;if(u!=null)if(typeof u=="object"){let[_,w]=Object.entries(u)[0];b[_]=w}else b.shape=u;if(h!=null)if(typeof h=="object"){let[_,w]=Object.entries(h)[0];b[_]=w}else b.sprite=h;if(f!=null)if(typeof f=="object"){let[_,w]=Object.entries(f)[0];b[_]=w}else b.techn=f;if(p!=null)if(typeof p=="object"){let[_,w]=Object.entries(p)[0];b[_]=w}else b.legendText=p;if(m!=null)if(typeof m=="object"){let[_,w]=Object.entries(m)[0];b[_]=w}else b.legendSprite=m}},zca=function(e,t,r,a,s,o,u){const h=ble.find(f=>f.from===t&&f.to===r);if(h!==void 0){if(a!=null)if(typeof a=="object"){let[f,p]=Object.entries(a)[0];h[f]=p}else h.textColor=a;if(s!=null)if(typeof s=="object"){let[f,p]=Object.entries(s)[0];h[f]=p}else h.lineColor=s;if(o!=null)if(typeof o=="object"){let[f,p]=Object.entries(o)[0];h[f]=parseInt(p)}else h.offsetX=parseInt(o);if(u!=null)if(typeof u=="object"){let[f,p]=Object.entries(u)[0];h[f]=parseInt(p)}else h.offsetY=parseInt(u)}},Gca=function(e,t,r){let a=e5e,s=t5e;if(typeof t=="object"){const o=Object.values(t)[0];a=parseInt(o)}else a=parseInt(t);if(typeof r=="object"){const o=Object.values(r)[0];s=parseInt(o)}else s=parseInt(r);a>=1&&(e5e=a),s>=1&&(t5e=s)},qca=function(){return e5e},Hca=function(){return t5e},Vca=function(){return iv},Yca=function(){return rT},vJn=function(e){return e==null?dT:dT.filter(t=>t.parentBoundary===e)},jca=function(e){return dT.find(t=>t.alias===e)},Wca=function(e){return Object.keys(vJn(e))},_Jn=function(e){return e==null?xA:xA.filter(t=>t.parentBoundary===e)},Kca=_Jn,Xca=function(){return ble},Qca=function(){return Lbt},Zca=function(e){Dbt=e},lL=function(){return Dbt},Jca=function(){dT=[],xA=[{alias:"global",label:{text:"global"},type:{text:"global"},tags:null,link:null,parentBoundary:""}],rT="",iv="global",PO=[""],ble=[],PO=[""],Lbt="",Dbt=!1,e5e=4,t5e=2},eua={SOLID:0,DOTTED:1,NOTE:2,SOLID_CROSS:3,DOTTED_CROSS:4,SOLID_OPEN:5,DOTTED_OPEN:6,LOOP_START:10,LOOP_END:11,ALT_START:12,ALT_ELSE:13,ALT_END:14,OPT_START:15,OPT_END:16,ACTIVE_START:17,ACTIVE_END:18,PAR_START:19,PAR_AND:20,PAR_END:21,RECT_START:22,RECT_END:23,SOLID_POINT:24,DOTTED_POINT:25},tua={FILLED:0,OPEN:1},nua={LEFTOF:0,RIGHTOF:1,OVER:2},rua=function(e){Lbt=J0(e,Qt())},uht={addPersonOrSystem:Lca,addPersonOrSystemBoundary:Pca,addContainer:Dca,addContainerBoundary:Bca,addComponent:Mca,addDeploymentNode:Fca,popBoundaryParseStack:$ca,addRel:Oca,updateElStyle:Uca,updateRelStyle:zca,updateLayoutConfig:Gca,autoWrap:lL,setWrap:Zca,getC4ShapeArray:vJn,getC4Shape:jca,getC4ShapeKeys:Wca,getBoundaries:_Jn,getBoundarys:Kca,getCurrentBoundaryParse:Vca,getParentBoundaryParse:Yca,getRels:Xca,getTitle:Qca,getC4Type:Ica,getC4ShapeInRow:qca,getC4BoundaryInRow:Hca,setAccTitle:Pb,getAccTitle:Ev,getAccDescription:Sv,setAccDescription:xv,getConfig:()=>Qt().c4,clear:Jca,LINETYPE:eua,ARROWTYPE:tua,PLACEMENT:nua,setTitle:rua,setC4Type:Nca},Mbt=function(e,t){return d6e(e,t)},wJn=function(e,t,r,a,s,o){const u=e.append("image");u.attr("width",t),u.attr("height",r),u.attr("x",a),u.attr("y",s);let h=o.startsWith("data:image/png;base64")?o:U9(o);u.attr("xlink:href",h)},iua=(e,t,r)=>{const a=e.append("g");let s=0;for(let o of t){let u=o.textColor?o.textColor:"#444444",h=o.lineColor?o.lineColor:"#444444",f=o.offsetX?parseInt(o.offsetX):0,p=o.offsetY?parseInt(o.offsetY):0,m="";if(s===0){let _=a.append("line");_.attr("x1",o.startPoint.x),_.attr("y1",o.startPoint.y),_.attr("x2",o.endPoint.x),_.attr("y2",o.endPoint.y),_.attr("stroke-width","1"),_.attr("stroke",h),_.style("fill","none"),o.type!=="rel_b"&&_.attr("marker-end","url("+m+"#arrowhead)"),(o.type==="birel"||o.type==="rel_b")&&_.attr("marker-start","url("+m+"#arrowend)"),s=-1}else{let _=a.append("path");_.attr("fill","none").attr("stroke-width","1").attr("stroke",h).attr("d","Mstartx,starty Qcontrolx,controly stopx,stopy ".replaceAll("startx",o.startPoint.x).replaceAll("starty",o.startPoint.y).replaceAll("controlx",o.startPoint.x+(o.endPoint.x-o.startPoint.x)/2-(o.endPoint.x-o.startPoint.x)/4).replaceAll("controly",o.startPoint.y+(o.endPoint.y-o.startPoint.y)/2).replaceAll("stopx",o.endPoint.x).replaceAll("stopy",o.endPoint.y)),o.type!=="rel_b"&&_.attr("marker-end","url("+m+"#arrowhead)"),(o.type==="birel"||o.type==="rel_b")&&_.attr("marker-start","url("+m+"#arrowend)")}let b=r.messageFont();N7(r)(o.label.text,a,Math.min(o.startPoint.x,o.endPoint.x)+Math.abs(o.endPoint.x-o.startPoint.x)/2+f,Math.min(o.startPoint.y,o.endPoint.y)+Math.abs(o.endPoint.y-o.startPoint.y)/2+p,o.label.width,o.label.height,{fill:u},b),o.techn&&o.techn.text!==""&&(b=r.messageFont(),N7(r)("["+o.techn.text+"]",a,Math.min(o.startPoint.x,o.endPoint.x)+Math.abs(o.endPoint.x-o.startPoint.x)/2+f,Math.min(o.startPoint.y,o.endPoint.y)+Math.abs(o.endPoint.y-o.startPoint.y)/2+r.messageFontSize+5+p,Math.max(o.label.width,o.techn.width),o.techn.height,{fill:u,"font-style":"italic"},b))}},aua=function(e,t,r){const a=e.append("g");let s=t.bgColor?t.bgColor:"none",o=t.borderColor?t.borderColor:"#444444",u=t.fontColor?t.fontColor:"black",h={"stroke-width":1,"stroke-dasharray":"7.0,7.0"};t.nodeType&&(h={"stroke-width":1});let f={x:t.x,y:t.y,fill:s,stroke:o,width:t.width,height:t.height,rx:2.5,ry:2.5,attrs:h};Mbt(a,f);let p=r.boundaryFont();p.fontWeight="bold",p.fontSize=p.fontSize+2,p.fontColor=u,N7(r)(t.label.text,a,t.x,t.y+t.label.Y,t.width,t.height,{fill:"#444444"},p),t.type&&t.type.text!==""&&(p=r.boundaryFont(),p.fontColor=u,N7(r)(t.type.text,a,t.x,t.y+t.type.Y,t.width,t.height,{fill:"#444444"},p)),t.descr&&t.descr.text!==""&&(p=r.boundaryFont(),p.fontSize=p.fontSize-2,p.fontColor=u,N7(r)(t.descr.text,a,t.x,t.y+t.descr.Y,t.width,t.height,{fill:"#444444"},p))},sua=function(e,t,r){var a;let s=t.bgColor?t.bgColor:r[t.typeC4Shape.text+"_bg_color"],o=t.borderColor?t.borderColor:r[t.typeC4Shape.text+"_border_color"],u=t.fontColor?t.fontColor:"#FFFFFF",h="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAACD0lEQVR4Xu2YoU4EMRCGT+4j8Ai8AhaH4QHgAUjQuFMECUgMIUgwJAgMhgQsAYUiJCiQIBBY+EITsjfTdme6V24v4c8vyGbb+ZjOtN0bNcvjQXmkH83WvYBWto6PLm6v7p7uH1/w2fXD+PBycX1Pv2l3IdDm/vn7x+dXQiAubRzoURa7gRZWd0iGRIiJbOnhnfYBQZNJjNbuyY2eJG8fkDE3bbG4ep6MHUAsgYxmE3nVs6VsBWJSGccsOlFPmLIViMzLOB7pCVO2AtHJMohH7Fh6zqitQK7m0rJvAVYgGcEpe//PLdDz65sM4pF9N7ICcXDKIB5Nv6j7tD0NoSdM2QrU9Gg0ewE1LqBhHR3BBdvj2vapnidjHxD/q6vd7Pvhr31AwcY8eXMTXAKECZZJFXuEq27aLgQK5uLMohCenGGuGewOxSjBvYBqeG6B+Nqiblggdjnc+ZXDy+FNFpFzw76O3UBAROuXh6FoiAcf5g9eTvUgzy0nWg6I8cXHRUpg5bOVBCo+KDpFajOf23GgPme7RSQ+lacIENUgJ6gg1k6HjgOlqnLqip4tEuhv0hNEMXUD0clyXE3p6pZA0S2nnvTlXwLJEZWlb7cTQH1+USgTN4VhAenm/wea1OCAOmqo6fE1WCb9WSKBah+rbUWPWAmE2Rvk0ApiB45eOyNAzU8xcTvj8KvkKEoOaIYeHNA3ZuygAvFMUO0AAAAASUVORK5CYII=";switch(t.typeC4Shape.text){case"person":h="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAACD0lEQVR4Xu2YoU4EMRCGT+4j8Ai8AhaH4QHgAUjQuFMECUgMIUgwJAgMhgQsAYUiJCiQIBBY+EITsjfTdme6V24v4c8vyGbb+ZjOtN0bNcvjQXmkH83WvYBWto6PLm6v7p7uH1/w2fXD+PBycX1Pv2l3IdDm/vn7x+dXQiAubRzoURa7gRZWd0iGRIiJbOnhnfYBQZNJjNbuyY2eJG8fkDE3bbG4ep6MHUAsgYxmE3nVs6VsBWJSGccsOlFPmLIViMzLOB7pCVO2AtHJMohH7Fh6zqitQK7m0rJvAVYgGcEpe//PLdDz65sM4pF9N7ICcXDKIB5Nv6j7tD0NoSdM2QrU9Gg0ewE1LqBhHR3BBdvj2vapnidjHxD/q6vd7Pvhr31AwcY8eXMTXAKECZZJFXuEq27aLgQK5uLMohCenGGuGewOxSjBvYBqeG6B+Nqiblggdjnc+ZXDy+FNFpFzw76O3UBAROuXh6FoiAcf5g9eTvUgzy0nWg6I8cXHRUpg5bOVBCo+KDpFajOf23GgPme7RSQ+lacIENUgJ6gg1k6HjgOlqnLqip4tEuhv0hNEMXUD0clyXE3p6pZA0S2nnvTlXwLJEZWlb7cTQH1+USgTN4VhAenm/wea1OCAOmqo6fE1WCb9WSKBah+rbUWPWAmE2Rvk0ApiB45eOyNAzU8xcTvj8KvkKEoOaIYeHNA3ZuygAvFMUO0AAAAASUVORK5CYII=";break;case"external_person":h="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAAB6ElEQVR4Xu2YLY+EMBCG9+dWr0aj0Wg0Go1Go0+j8Xdv2uTCvv1gpt0ebHKPuhDaeW4605Z9mJvx4AdXUyTUdd08z+u6flmWZRnHsWkafk9DptAwDPu+f0eAYtu2PEaGWuj5fCIZrBAC2eLBAnRCsEkkxmeaJp7iDJ2QMDdHsLg8SxKFEJaAo8lAXnmuOFIhTMpxxKATebo4UiFknuNo4OniSIXQyRxEA3YsnjGCVEjVXD7yLUAqxBGUyPv/Y4W2beMgGuS7kVQIBycH0fD+oi5pezQETxdHKmQKGk1eQEYldK+jw5GxPfZ9z7Mk0Qnhf1W1m3w//EUn5BDmSZsbR44QQLBEqrBHqOrmSKaQAxdnLArCrxZcM7A7ZKs4ioRq8LFC+NpC3WCBJsvpVw5edm9iEXFuyNfxXAgSwfrFQ1c0iNda8AdejvUgnktOtJQQxmcfFzGglc5WVCj7oDgFqU18boeFSs52CUh8LE8BIVQDT1ABrB0HtgSEYlX5doJnCwv9TXocKCaKbnwhdDKPq4lf3SwU3HLq4V/+WYhHVMa/3b4IlfyikAduCkcBc7mQ3/z/Qq/cTuikhkzB12Ae/mcJC9U+Vo8Ej1gWAtgbeGgFsAMHr50BIWOLCbezvhpBFUdY6EJuJ/QDW0XoMX60zZ0AAAAASUVORK5CYII=";break}const f=e.append("g");f.attr("class","person-man");const p=eU();switch(t.typeC4Shape.text){case"person":case"external_person":case"system":case"external_system":case"container":case"external_container":case"component":case"external_component":p.x=t.x,p.y=t.y,p.fill=s,p.width=t.width,p.height=t.height,p.stroke=o,p.rx=2.5,p.ry=2.5,p.attrs={"stroke-width":.5},Mbt(f,p);break;case"system_db":case"external_system_db":case"container_db":case"external_container_db":case"component_db":case"external_component_db":f.append("path").attr("fill",s).attr("stroke-width","0.5").attr("stroke",o).attr("d","Mstartx,startyc0,-10 half,-10 half,-10c0,0 half,0 half,10l0,heightc0,10 -half,10 -half,10c0,0 -half,0 -half,-10l0,-height".replaceAll("startx",t.x).replaceAll("starty",t.y).replaceAll("half",t.width/2).replaceAll("height",t.height)),f.append("path").attr("fill","none").attr("stroke-width","0.5").attr("stroke",o).attr("d","Mstartx,startyc0,10 half,10 half,10c0,0 half,0 half,-10".replaceAll("startx",t.x).replaceAll("starty",t.y).replaceAll("half",t.width/2));break;case"system_queue":case"external_system_queue":case"container_queue":case"external_container_queue":case"component_queue":case"external_component_queue":f.append("path").attr("fill",s).attr("stroke-width","0.5").attr("stroke",o).attr("d","Mstartx,startylwidth,0c5,0 5,half 5,halfc0,0 0,half -5,halfl-width,0c-5,0 -5,-half -5,-halfc0,0 0,-half 5,-half".replaceAll("startx",t.x).replaceAll("starty",t.y).replaceAll("width",t.width).replaceAll("half",t.height/2)),f.append("path").attr("fill","none").attr("stroke-width","0.5").attr("stroke",o).attr("d","Mstartx,startyc-5,0 -5,half -5,halfc0,half 5,half 5,half".replaceAll("startx",t.x+t.width).replaceAll("starty",t.y).replaceAll("half",t.height/2));break}let m=gua(r,t.typeC4Shape.text);switch(f.append("text").attr("fill",u).attr("font-family",m.fontFamily).attr("font-size",m.fontSize-2).attr("font-style","italic").attr("lengthAdjust","spacing").attr("textLength",t.typeC4Shape.width).attr("x",t.x+t.width/2-t.typeC4Shape.width/2).attr("y",t.y+t.typeC4Shape.Y).text("<<"+t.typeC4Shape.text+">>"),t.typeC4Shape.text){case"person":case"external_person":wJn(f,48,48,t.x+t.width/2-24,t.y+t.image.Y,h);break}let b=r[t.typeC4Shape.text+"Font"]();return b.fontWeight="bold",b.fontSize=b.fontSize+2,b.fontColor=u,N7(r)(t.label.text,f,t.x,t.y+t.label.Y,t.width,t.height,{fill:u},b),b=r[t.typeC4Shape.text+"Font"](),b.fontColor=u,t.techn&&((a=t.techn)==null?void 0:a.text)!==""?N7(r)(t.techn.text,f,t.x,t.y+t.techn.Y,t.width,t.height,{fill:u,"font-style":"italic"},b):t.type&&t.type.text!==""&&N7(r)(t.type.text,f,t.x,t.y+t.type.Y,t.width,t.height,{fill:u,"font-style":"italic"},b),t.descr&&t.descr.text!==""&&(b=r.personFont(),b.fontColor=u,N7(r)(t.descr.text,f,t.x,t.y+t.descr.Y,t.width,t.height,{fill:u},b)),t.height},oua=function(e){e.append("defs").append("symbol").attr("id","database").attr("fill-rule","evenodd").attr("clip-rule","evenodd").append("path").attr("transform","scale(.5)").attr("d","M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z")},lua=function(e){e.append("defs").append("symbol").attr("id","computer").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z")},cua=function(e){e.append("defs").append("symbol").attr("id","clock").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z")},uua=function(e){e.append("defs").append("marker").attr("id","arrowhead").attr("refX",9).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 0 0 L 10 5 L 0 10 z")},hua=function(e){e.append("defs").append("marker").attr("id","arrowend").attr("refX",1).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 10 0 L 0 5 L 10 10 z")},dua=function(e){e.append("defs").append("marker").attr("id","filled-head").attr("refX",18).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")},fua=function(e){e.append("defs").append("marker").attr("id","sequencenumber").attr("refX",15).attr("refY",15).attr("markerWidth",60).attr("markerHeight",40).attr("orient","auto").append("circle").attr("cx",15).attr("cy",15).attr("r",6)},pua=function(e){const r=e.append("defs").append("marker").attr("id","crosshead").attr("markerWidth",15).attr("markerHeight",8).attr("orient","auto").attr("refX",16).attr("refY",4);r.append("path").attr("fill","black").attr("stroke","#000000").style("stroke-dasharray","0, 0").attr("stroke-width","1px").attr("d","M 9,2 V 6 L16,4 Z"),r.append("path").attr("fill","none").attr("stroke","#000000").style("stroke-dasharray","0, 0").attr("stroke-width","1px").attr("d","M 0,1 L 6,7 M 6,1 L 0,7")},gua=(e,t)=>({fontFamily:e[t+"FontFamily"],fontSize:e[t+"FontSize"],fontWeight:e[t+"FontWeight"]}),N7=function(){function e(s,o,u,h,f,p,m){const b=o.append("text").attr("x",u+f/2).attr("y",h+p/2+5).style("text-anchor","middle").text(s);a(b,m)}function t(s,o,u,h,f,p,m,b){const{fontSize:_,fontFamily:w,fontWeight:S}=b,C=s.split(mi.lineBreakRegex);for(let A=0;A=this.data.widthLimit||a>=this.data.widthLimit||this.nextData.cnt>EJn)&&(r=this.nextData.startx+t.margin+cs.nextLinePaddingX,s=this.nextData.stopy+t.margin*2,this.nextData.stopx=a=r+t.width,this.nextData.starty=this.nextData.stopy,this.nextData.stopy=o=s+t.height,this.nextData.cnt=1),t.x=r,t.y=s,this.updateVal(this.data,"startx",r,Math.min),this.updateVal(this.data,"starty",s,Math.min),this.updateVal(this.data,"stopx",a,Math.max),this.updateVal(this.data,"stopy",o,Math.max),this.updateVal(this.nextData,"startx",r,Math.min),this.updateVal(this.nextData,"starty",s,Math.min),this.updateVal(this.nextData,"stopx",a,Math.max),this.updateVal(this.nextData,"stopy",o,Math.max)}init(t){this.name="",this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0,widthLimit:void 0},this.nextData={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0,cnt:0},dht(t.db.getConfig())}bumpLastMargin(t){this.data.stopx+=t,this.data.stopy+=t}}const dht=function(e){Tg(cs,e),e.fontFamily&&(cs.personFontFamily=cs.systemFontFamily=cs.messageFontFamily=e.fontFamily),e.fontSize&&(cs.personFontSize=cs.systemFontSize=cs.messageFontSize=e.fontSize),e.fontWeight&&(cs.personFontWeight=cs.systemFontWeight=cs.messageFontWeight=e.fontWeight)},vie=(e,t)=>({fontFamily:e[t+"FontFamily"],fontSize:e[t+"FontSize"],fontWeight:e[t+"FontWeight"]}),sSe=e=>({fontFamily:e.boundaryFontFamily,fontSize:e.boundaryFontSize,fontWeight:e.boundaryFontWeight}),mua=e=>({fontFamily:e.messageFontFamily,fontSize:e.messageFontSize,fontWeight:e.messageFontWeight});function U3(e,t,r,a,s){if(!t[e].width)if(r)t[e].text=eZn(t[e].text,s,a),t[e].textLines=t[e].text.split(mi.lineBreakRegex).length,t[e].width=s,t[e].height=Jut(t[e].text,a);else{let o=t[e].text.split(mi.lineBreakRegex);t[e].textLines=o.length;let u=0;t[e].height=0,t[e].width=0;for(const h of o)t[e].width=Math.max(dA(h,a),t[e].width),u=Jut(h,a),t[e].height=t[e].height+u}}const SJn=function(e,t,r){t.x=r.data.startx,t.y=r.data.starty,t.width=r.data.stopx-r.data.startx,t.height=r.data.stopy-r.data.starty,t.label.y=cs.c4ShapeMargin-35;let a=t.wrap&&cs.wrap,s=sSe(cs);s.fontSize=s.fontSize+2,s.fontWeight="bold";let o=dA(t.label.text,s);U3("label",t,a,s,o),OC.drawBoundary(e,t,cs)},TJn=function(e,t,r,a){let s=0;for(const o of a){s=0;const u=r[o];let h=vie(cs,u.typeC4Shape.text);switch(h.fontSize=h.fontSize-2,u.typeC4Shape.width=dA("«"+u.typeC4Shape.text+"»",h),u.typeC4Shape.height=h.fontSize+2,u.typeC4Shape.Y=cs.c4ShapePadding,s=u.typeC4Shape.Y+u.typeC4Shape.height-4,u.image={width:0,height:0,Y:0},u.typeC4Shape.text){case"person":case"external_person":u.image.width=48,u.image.height=48,u.image.Y=s,s=u.image.Y+u.image.height;break}u.sprite&&(u.image.width=48,u.image.height=48,u.image.Y=s,s=u.image.Y+u.image.height);let f=u.wrap&&cs.wrap,p=cs.width-cs.c4ShapePadding*2,m=vie(cs,u.typeC4Shape.text);if(m.fontSize=m.fontSize+2,m.fontWeight="bold",U3("label",u,f,m,p),u.label.Y=s+8,s=u.label.Y+u.label.height,u.type&&u.type.text!==""){u.type.text="["+u.type.text+"]";let w=vie(cs,u.typeC4Shape.text);U3("type",u,f,w,p),u.type.Y=s+5,s=u.type.Y+u.type.height}else if(u.techn&&u.techn.text!==""){u.techn.text="["+u.techn.text+"]";let w=vie(cs,u.techn.text);U3("techn",u,f,w,p),u.techn.Y=s+5,s=u.techn.Y+u.techn.height}let b=s,_=u.label.width;if(u.descr&&u.descr.text!==""){let w=vie(cs,u.typeC4Shape.text);U3("descr",u,f,w,p),u.descr.Y=s+20,s=u.descr.Y+u.descr.height,_=Math.max(u.label.width,u.descr.width),b=s-u.descr.textLines*5}_=_+cs.c4ShapePadding,u.width=Math.max(u.width||cs.width,_,cs.width),u.height=Math.max(u.height||cs.height,b,cs.height),u.margin=u.margin||cs.c4ShapeMargin,e.insert(u),OC.drawC4Shape(t,u,cs)}e.bumpLastMargin(cs.c4ShapeMargin)};let Ux=class{constructor(t,r){this.x=t,this.y=r}},U5n=function(e,t){let r=e.x,a=e.y,s=t.x,o=t.y,u=r+e.width/2,h=a+e.height/2,f=Math.abs(r-s),p=Math.abs(a-o),m=p/f,b=e.height/e.width,_=null;return a==o&&rs?_=new Ux(r,h):r==s&&ao&&(_=new Ux(u,a)),r>s&&a=m?_=new Ux(r,h+m*e.width/2):_=new Ux(u-f/p*e.height/2,a+e.height):r=m?_=new Ux(r+e.width,h+m*e.width/2):_=new Ux(u+f/p*e.height/2,a+e.height):ro?b>=m?_=new Ux(r+e.width,h-m*e.width/2):_=new Ux(u+e.height/2*f/p,a):r>s&&a>o&&(b>=m?_=new Ux(r,h-e.width/2*m):_=new Ux(u-e.height/2*f/p,a)),_},bua=function(e,t){let r={x:0,y:0};r.x=t.x+t.width/2,r.y=t.y+t.height/2;let a=U5n(e,r);r.x=e.x+e.width/2,r.y=e.y+e.height/2;let s=U5n(t,r);return{startPoint:a,endPoint:s}};const yua=function(e,t,r,a){let s=0;for(let o of t){s=s+1;let u=o.wrap&&cs.wrap,h=mua(cs);a.db.getC4Type()==="C4Dynamic"&&(o.label.text=s+": "+o.label.text);let p=dA(o.label.text,h);U3("label",o,u,h,p),o.techn&&o.techn.text!==""&&(p=dA(o.techn.text,h),U3("techn",o,u,h,p)),o.descr&&o.descr.text!==""&&(p=dA(o.descr.text,h),U3("descr",o,u,h,p));let m=r(o.from),b=r(o.to),_=bua(m,b);o.startPoint=_.startPoint,o.endPoint=_.endPoint}OC.drawRels(e,t,cs)};function CJn(e,t,r,a,s){let o=new xJn(s);o.data.widthLimit=r.data.widthLimit/Math.min(hht,a.length);for(let[u,h]of a.entries()){let f=0;h.image={width:0,height:0,Y:0},h.sprite&&(h.image.width=48,h.image.height=48,h.image.Y=f,f=h.image.Y+h.image.height);let p=h.wrap&&cs.wrap,m=sSe(cs);if(m.fontSize=m.fontSize+2,m.fontWeight="bold",U3("label",h,p,m,o.data.widthLimit),h.label.Y=f+8,f=h.label.Y+h.label.height,h.type&&h.type.text!==""){h.type.text="["+h.type.text+"]";let S=sSe(cs);U3("type",h,p,S,o.data.widthLimit),h.type.Y=f+5,f=h.type.Y+h.type.height}if(h.descr&&h.descr.text!==""){let S=sSe(cs);S.fontSize=S.fontSize-2,U3("descr",h,p,S,o.data.widthLimit),h.descr.Y=f+20,f=h.descr.Y+h.descr.height}if(u==0||u%hht===0){let S=r.data.startx+cs.diagramMarginX,C=r.data.stopy+cs.diagramMarginY+f;o.setData(S,S,C,C)}else{let S=o.data.stopx!==o.data.startx?o.data.stopx+cs.diagramMarginX:o.data.startx,C=o.data.starty;o.setData(S,S,C,C)}o.name=h.alias;let b=s.db.getC4ShapeArray(h.alias),_=s.db.getC4ShapeKeys(h.alias);_.length>0&&TJn(o,e,b,_),t=h.alias;let w=s.db.getBoundarys(t);w.length>0&&CJn(e,t,o,w,s),h.alias!=="global"&&SJn(e,h,o),r.data.stopy=Math.max(o.data.stopy+cs.c4ShapeMargin,r.data.stopy),r.data.stopx=Math.max(o.data.stopx+cs.c4ShapeMargin,r.data.stopx),n5e=Math.max(n5e,r.data.stopx),r5e=Math.max(r5e,r.data.stopy)}}const vua=function(e,t,r,a){cs=Qt().c4;const s=Qt().securityLevel;let o;s==="sandbox"&&(o=gn("#i"+t));const u=gn(s==="sandbox"?o.nodes()[0].contentDocument.body:"body");let h=a.db;a.db.setWrap(cs.wrap),EJn=h.getC4ShapeInRow(),hht=h.getC4BoundaryInRow(),ut.debug(`C:${JSON.stringify(cs,null,2)}`);const f=s==="sandbox"?u.select(`[id="${t}"]`):gn(`[id="${t}"]`);OC.insertComputerIcon(f),OC.insertDatabaseIcon(f),OC.insertClockIcon(f);let p=new xJn(a);p.setData(cs.diagramMarginX,cs.diagramMarginX,cs.diagramMarginY,cs.diagramMarginY),p.data.widthLimit=screen.availWidth,n5e=cs.diagramMarginX,r5e=cs.diagramMarginY;const m=a.db.getTitle();let b=a.db.getBoundarys("");CJn(f,"",p,b,a),OC.insertArrowHead(f),OC.insertArrowEnd(f),OC.insertArrowCrossHead(f),OC.insertArrowFilledHead(f),yua(f,a.db.getRels(),a.db.getC4Shape,a),p.data.stopx=n5e,p.data.stopy=r5e;const _=p.data;let S=_.stopy-_.starty+2*cs.diagramMarginY;const A=_.stopx-_.startx+2*cs.diagramMarginX;m&&f.append("text").text(m).attr("x",(_.stopx-_.startx)/2-4*cs.diagramMarginX).attr("y",_.starty+cs.diagramMarginY),Db(f,S,A,cs.useMaxWidth);const k=m?60:0;f.attr("viewBox",_.startx-cs.diagramMarginX+" -"+(cs.diagramMarginY+k)+" "+A+" "+(S+k)),ut.debug("models:",_)},z5n={drawPersonOrSystemArray:TJn,drawBoundary:SJn,setConf:dht,draw:vua},_ua=e=>`.person { + stroke: ${e.personBorder}; + fill: ${e.personBkg}; + } +`,wua=_ua,Eua={parser:Rca,db:uht,renderer:z5n,styles:wua,init:({c4:e,wrap:t})=>{z5n.setConf(e),uht.setWrap(t)}},xua=Object.freeze(Object.defineProperty({__proto__:null,diagram:Eua},Symbol.toStringTag,{value:"Module"}));var fht=function(){var e=function(Rs,Vr,Ii,Pa){for(Ii=Ii||{},Pa=Rs.length;Pa--;Ii[Rs[Pa]]=Vr);return Ii},t=[1,4],r=[1,3],a=[1,5],s=[1,8,9,10,11,27,34,36,38,42,58,81,82,83,84,85,86,99,102,103,106,108,111,112,113,118,119,120,121],o=[2,2],u=[1,13],h=[1,14],f=[1,15],p=[1,16],m=[1,23],b=[1,25],_=[1,26],w=[1,27],S=[1,49],C=[1,48],A=[1,29],k=[1,30],I=[1,31],N=[1,32],L=[1,33],P=[1,44],M=[1,46],F=[1,42],U=[1,47],$=[1,43],G=[1,50],B=[1,45],Z=[1,51],z=[1,52],Y=[1,34],W=[1,35],Q=[1,36],V=[1,37],j=[1,57],ee=[1,8,9,10,11,27,32,34,36,38,42,58,81,82,83,84,85,86,99,102,103,106,108,111,112,113,118,119,120,121],te=[1,61],ne=[1,60],se=[1,62],ie=[8,9,11,73,75],ge=[1,88],ce=[1,93],be=[1,92],ve=[1,89],De=[1,85],ye=[1,91],Ee=[1,87],he=[1,94],we=[1,90],Ce=[1,95],Ie=[1,86],Le=[8,9,10,11,73,75],Fe=[8,9,10,11,44,73,75],Ve=[8,9,10,11,29,42,44,46,48,50,52,54,56,58,61,63,65,66,68,73,75,86,99,102,103,106,108,111,112,113],Oe=[8,9,11,42,58,73,75,86,99,102,103,106,108,111,112,113],Dt=[42,58,86,99,102,103,106,108,111,112,113],ot=[1,121],sn=[1,120],Kt=[1,128],Ft=[1,142],Je=[1,143],ht=[1,144],et=[1,145],qe=[1,130],He=[1,132],Ge=[1,136],Ye=[1,137],Ae=[1,138],Xe=[1,139],fe=[1,140],Qe=[1,141],Ke=[1,146],mt=[1,147],lt=[1,126],$t=[1,127],Ut=[1,134],Jt=[1,129],wn=[1,133],Vn=[1,131],Wn=[8,9,10,11,27,32,34,36,38,42,58,81,82,83,84,85,86,99,102,103,106,108,111,112,113,118,119,120,121],Dn=[1,149],zn=[8,9,11],vn=[8,9,10,11,14,42,58,86,102,103,106,108,111,112,113],Cn=[1,169],Ar=[1,165],ur=[1,166],On=[1,170],Ir=[1,167],Ln=[1,168],pr=[75,113,116],Cr=[8,9,10,11,12,14,27,29,32,42,58,73,81,82,83,84,85,86,87,102,106,108,111,112,113],Zr=[10,103],Pr=[31,47,49,51,53,55,60,62,64,65,67,69,113,114,115],Ci=[1,235],ds=[1,233],ta=[1,237],Os=[1,231],uo=[1,232],Ls=[1,234],La=[1,236],to=[1,238],Fi=[1,255],Pt=[8,9,11,103],St=[8,9,10,11,58,81,102,103,106,107,108,109],Un={trace:function(){},yy:{},symbols_:{error:2,start:3,graphConfig:4,document:5,line:6,statement:7,SEMI:8,NEWLINE:9,SPACE:10,EOF:11,GRAPH:12,NODIR:13,DIR:14,FirstStmtSeparator:15,ending:16,endToken:17,spaceList:18,spaceListNewline:19,vertexStatement:20,separator:21,styleStatement:22,linkStyleStatement:23,classDefStatement:24,classStatement:25,clickStatement:26,subgraph:27,textNoTags:28,SQS:29,text:30,SQE:31,end:32,direction:33,acc_title:34,acc_title_value:35,acc_descr:36,acc_descr_value:37,acc_descr_multiline_value:38,link:39,node:40,styledVertex:41,AMP:42,vertex:43,STYLE_SEPARATOR:44,idString:45,DOUBLECIRCLESTART:46,DOUBLECIRCLEEND:47,PS:48,PE:49,"(-":50,"-)":51,STADIUMSTART:52,STADIUMEND:53,SUBROUTINESTART:54,SUBROUTINEEND:55,VERTEX_WITH_PROPS_START:56,"NODE_STRING[field]":57,COLON:58,"NODE_STRING[value]":59,PIPE:60,CYLINDERSTART:61,CYLINDEREND:62,DIAMOND_START:63,DIAMOND_STOP:64,TAGEND:65,TRAPSTART:66,TRAPEND:67,INVTRAPSTART:68,INVTRAPEND:69,linkStatement:70,arrowText:71,TESTSTR:72,START_LINK:73,edgeText:74,LINK:75,edgeTextToken:76,STR:77,MD_STR:78,textToken:79,keywords:80,STYLE:81,LINKSTYLE:82,CLASSDEF:83,CLASS:84,CLICK:85,DOWN:86,UP:87,textNoTagsToken:88,stylesOpt:89,"idString[vertex]":90,"idString[class]":91,CALLBACKNAME:92,CALLBACKARGS:93,HREF:94,LINK_TARGET:95,"STR[link]":96,"STR[tooltip]":97,alphaNum:98,DEFAULT:99,numList:100,INTERPOLATE:101,NUM:102,COMMA:103,style:104,styleComponent:105,NODE_STRING:106,UNIT:107,BRKT:108,PCT:109,idStringToken:110,MINUS:111,MULT:112,UNICODE_TEXT:113,TEXT:114,TAGSTART:115,EDGE_TEXT:116,alphaNumToken:117,direction_tb:118,direction_bt:119,direction_rl:120,direction_lr:121,$accept:0,$end:1},terminals_:{2:"error",8:"SEMI",9:"NEWLINE",10:"SPACE",11:"EOF",12:"GRAPH",13:"NODIR",14:"DIR",27:"subgraph",29:"SQS",31:"SQE",32:"end",34:"acc_title",35:"acc_title_value",36:"acc_descr",37:"acc_descr_value",38:"acc_descr_multiline_value",42:"AMP",44:"STYLE_SEPARATOR",46:"DOUBLECIRCLESTART",47:"DOUBLECIRCLEEND",48:"PS",49:"PE",50:"(-",51:"-)",52:"STADIUMSTART",53:"STADIUMEND",54:"SUBROUTINESTART",55:"SUBROUTINEEND",56:"VERTEX_WITH_PROPS_START",57:"NODE_STRING[field]",58:"COLON",59:"NODE_STRING[value]",60:"PIPE",61:"CYLINDERSTART",62:"CYLINDEREND",63:"DIAMOND_START",64:"DIAMOND_STOP",65:"TAGEND",66:"TRAPSTART",67:"TRAPEND",68:"INVTRAPSTART",69:"INVTRAPEND",72:"TESTSTR",73:"START_LINK",75:"LINK",77:"STR",78:"MD_STR",81:"STYLE",82:"LINKSTYLE",83:"CLASSDEF",84:"CLASS",85:"CLICK",86:"DOWN",87:"UP",90:"idString[vertex]",91:"idString[class]",92:"CALLBACKNAME",93:"CALLBACKARGS",94:"HREF",95:"LINK_TARGET",96:"STR[link]",97:"STR[tooltip]",99:"DEFAULT",101:"INTERPOLATE",102:"NUM",103:"COMMA",106:"NODE_STRING",107:"UNIT",108:"BRKT",109:"PCT",111:"MINUS",112:"MULT",113:"UNICODE_TEXT",114:"TEXT",115:"TAGSTART",116:"EDGE_TEXT",118:"direction_tb",119:"direction_bt",120:"direction_rl",121:"direction_lr"},productions_:[0,[3,2],[5,0],[5,2],[6,1],[6,1],[6,1],[6,1],[6,1],[4,2],[4,2],[4,2],[4,3],[16,2],[16,1],[17,1],[17,1],[17,1],[15,1],[15,1],[15,2],[19,2],[19,2],[19,1],[19,1],[18,2],[18,1],[7,2],[7,2],[7,2],[7,2],[7,2],[7,2],[7,9],[7,6],[7,4],[7,1],[7,2],[7,2],[7,1],[21,1],[21,1],[21,1],[20,3],[20,4],[20,2],[20,1],[40,1],[40,5],[41,1],[41,3],[43,4],[43,4],[43,6],[43,4],[43,4],[43,4],[43,8],[43,4],[43,4],[43,4],[43,6],[43,4],[43,4],[43,4],[43,4],[43,4],[43,1],[39,2],[39,3],[39,3],[39,1],[39,3],[74,1],[74,2],[74,1],[74,1],[70,1],[71,3],[30,1],[30,2],[30,1],[30,1],[80,1],[80,1],[80,1],[80,1],[80,1],[80,1],[80,1],[80,1],[80,1],[80,1],[80,1],[28,1],[28,2],[28,1],[28,1],[24,5],[25,5],[26,2],[26,4],[26,3],[26,5],[26,3],[26,5],[26,5],[26,7],[26,2],[26,4],[26,2],[26,4],[26,4],[26,6],[22,5],[23,5],[23,5],[23,9],[23,9],[23,7],[23,7],[100,1],[100,3],[89,1],[89,3],[104,1],[104,2],[105,1],[105,1],[105,1],[105,1],[105,1],[105,1],[105,1],[105,1],[110,1],[110,1],[110,1],[110,1],[110,1],[110,1],[110,1],[110,1],[110,1],[110,1],[110,1],[79,1],[79,1],[79,1],[79,1],[88,1],[88,1],[88,1],[88,1],[88,1],[88,1],[88,1],[88,1],[88,1],[88,1],[88,1],[76,1],[76,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[45,1],[45,2],[98,1],[98,2],[33,1],[33,1],[33,1],[33,1]],performAction:function(Vr,Ii,Pa,Or,no,dt,Wi){var Tt=dt.length-1;switch(no){case 2:this.$=[];break;case 3:(!Array.isArray(dt[Tt])||dt[Tt].length>0)&&dt[Tt-1].push(dt[Tt]),this.$=dt[Tt-1];break;case 4:case 176:this.$=dt[Tt];break;case 11:Or.setDirection("TB"),this.$="TB";break;case 12:Or.setDirection(dt[Tt-1]),this.$=dt[Tt-1];break;case 27:this.$=dt[Tt-1].nodes;break;case 28:case 29:case 30:case 31:case 32:this.$=[];break;case 33:this.$=Or.addSubGraph(dt[Tt-6],dt[Tt-1],dt[Tt-4]);break;case 34:this.$=Or.addSubGraph(dt[Tt-3],dt[Tt-1],dt[Tt-3]);break;case 35:this.$=Or.addSubGraph(void 0,dt[Tt-1],void 0);break;case 37:this.$=dt[Tt].trim(),Or.setAccTitle(this.$);break;case 38:case 39:this.$=dt[Tt].trim(),Or.setAccDescription(this.$);break;case 43:Or.addLink(dt[Tt-2].stmt,dt[Tt],dt[Tt-1]),this.$={stmt:dt[Tt],nodes:dt[Tt].concat(dt[Tt-2].nodes)};break;case 44:Or.addLink(dt[Tt-3].stmt,dt[Tt-1],dt[Tt-2]),this.$={stmt:dt[Tt-1],nodes:dt[Tt-1].concat(dt[Tt-3].nodes)};break;case 45:this.$={stmt:dt[Tt-1],nodes:dt[Tt-1]};break;case 46:this.$={stmt:dt[Tt],nodes:dt[Tt]};break;case 47:this.$=[dt[Tt]];break;case 48:this.$=dt[Tt-4].concat(dt[Tt]);break;case 49:this.$=dt[Tt];break;case 50:this.$=dt[Tt-2],Or.setClass(dt[Tt-2],dt[Tt]);break;case 51:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"square");break;case 52:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"doublecircle");break;case 53:this.$=dt[Tt-5],Or.addVertex(dt[Tt-5],dt[Tt-2],"circle");break;case 54:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"ellipse");break;case 55:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"stadium");break;case 56:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"subroutine");break;case 57:this.$=dt[Tt-7],Or.addVertex(dt[Tt-7],dt[Tt-1],"rect",void 0,void 0,void 0,Object.fromEntries([[dt[Tt-5],dt[Tt-3]]]));break;case 58:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"cylinder");break;case 59:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"round");break;case 60:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"diamond");break;case 61:this.$=dt[Tt-5],Or.addVertex(dt[Tt-5],dt[Tt-2],"hexagon");break;case 62:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"odd");break;case 63:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"trapezoid");break;case 64:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"inv_trapezoid");break;case 65:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"lean_right");break;case 66:this.$=dt[Tt-3],Or.addVertex(dt[Tt-3],dt[Tt-1],"lean_left");break;case 67:this.$=dt[Tt],Or.addVertex(dt[Tt]);break;case 68:dt[Tt-1].text=dt[Tt],this.$=dt[Tt-1];break;case 69:case 70:dt[Tt-2].text=dt[Tt-1],this.$=dt[Tt-2];break;case 71:this.$=dt[Tt];break;case 72:var xr=Or.destructLink(dt[Tt],dt[Tt-2]);this.$={type:xr.type,stroke:xr.stroke,length:xr.length,text:dt[Tt-1]};break;case 73:this.$={text:dt[Tt],type:"text"};break;case 74:this.$={text:dt[Tt-1].text+""+dt[Tt],type:dt[Tt-1].type};break;case 75:this.$={text:dt[Tt],type:"string"};break;case 76:this.$={text:dt[Tt],type:"markdown"};break;case 77:var xr=Or.destructLink(dt[Tt]);this.$={type:xr.type,stroke:xr.stroke,length:xr.length};break;case 78:this.$=dt[Tt-1];break;case 79:this.$={text:dt[Tt],type:"text"};break;case 80:this.$={text:dt[Tt-1].text+""+dt[Tt],type:dt[Tt-1].type};break;case 81:this.$={text:dt[Tt],type:"string"};break;case 82:case 97:this.$={text:dt[Tt],type:"markdown"};break;case 94:this.$={text:dt[Tt],type:"text"};break;case 95:this.$={text:dt[Tt-1].text+""+dt[Tt],type:dt[Tt-1].type};break;case 96:this.$={text:dt[Tt],type:"text"};break;case 98:this.$=dt[Tt-4],Or.addClass(dt[Tt-2],dt[Tt]);break;case 99:this.$=dt[Tt-4],Or.setClass(dt[Tt-2],dt[Tt]);break;case 100:case 108:this.$=dt[Tt-1],Or.setClickEvent(dt[Tt-1],dt[Tt]);break;case 101:case 109:this.$=dt[Tt-3],Or.setClickEvent(dt[Tt-3],dt[Tt-2]),Or.setTooltip(dt[Tt-3],dt[Tt]);break;case 102:this.$=dt[Tt-2],Or.setClickEvent(dt[Tt-2],dt[Tt-1],dt[Tt]);break;case 103:this.$=dt[Tt-4],Or.setClickEvent(dt[Tt-4],dt[Tt-3],dt[Tt-2]),Or.setTooltip(dt[Tt-4],dt[Tt]);break;case 104:this.$=dt[Tt-2],Or.setLink(dt[Tt-2],dt[Tt]);break;case 105:this.$=dt[Tt-4],Or.setLink(dt[Tt-4],dt[Tt-2]),Or.setTooltip(dt[Tt-4],dt[Tt]);break;case 106:this.$=dt[Tt-4],Or.setLink(dt[Tt-4],dt[Tt-2],dt[Tt]);break;case 107:this.$=dt[Tt-6],Or.setLink(dt[Tt-6],dt[Tt-4],dt[Tt]),Or.setTooltip(dt[Tt-6],dt[Tt-2]);break;case 110:this.$=dt[Tt-1],Or.setLink(dt[Tt-1],dt[Tt]);break;case 111:this.$=dt[Tt-3],Or.setLink(dt[Tt-3],dt[Tt-2]),Or.setTooltip(dt[Tt-3],dt[Tt]);break;case 112:this.$=dt[Tt-3],Or.setLink(dt[Tt-3],dt[Tt-2],dt[Tt]);break;case 113:this.$=dt[Tt-5],Or.setLink(dt[Tt-5],dt[Tt-4],dt[Tt]),Or.setTooltip(dt[Tt-5],dt[Tt-2]);break;case 114:this.$=dt[Tt-4],Or.addVertex(dt[Tt-2],void 0,void 0,dt[Tt]);break;case 115:this.$=dt[Tt-4],Or.updateLink([dt[Tt-2]],dt[Tt]);break;case 116:this.$=dt[Tt-4],Or.updateLink(dt[Tt-2],dt[Tt]);break;case 117:this.$=dt[Tt-8],Or.updateLinkInterpolate([dt[Tt-6]],dt[Tt-2]),Or.updateLink([dt[Tt-6]],dt[Tt]);break;case 118:this.$=dt[Tt-8],Or.updateLinkInterpolate(dt[Tt-6],dt[Tt-2]),Or.updateLink(dt[Tt-6],dt[Tt]);break;case 119:this.$=dt[Tt-6],Or.updateLinkInterpolate([dt[Tt-4]],dt[Tt]);break;case 120:this.$=dt[Tt-6],Or.updateLinkInterpolate(dt[Tt-4],dt[Tt]);break;case 121:case 123:this.$=[dt[Tt]];break;case 122:case 124:dt[Tt-2].push(dt[Tt]),this.$=dt[Tt-2];break;case 126:this.$=dt[Tt-1]+dt[Tt];break;case 174:this.$=dt[Tt];break;case 175:this.$=dt[Tt-1]+""+dt[Tt];break;case 177:this.$=dt[Tt-1]+""+dt[Tt];break;case 178:this.$={stmt:"dir",value:"TB"};break;case 179:this.$={stmt:"dir",value:"BT"};break;case 180:this.$={stmt:"dir",value:"RL"};break;case 181:this.$={stmt:"dir",value:"LR"};break}},table:[{3:1,4:2,9:t,10:r,12:a},{1:[3]},e(s,o,{5:6}),{4:7,9:t,10:r,12:a},{4:8,9:t,10:r,12:a},{13:[1,9],14:[1,10]},{1:[2,1],6:11,7:12,8:u,9:h,10:f,11:p,20:17,22:18,23:19,24:20,25:21,26:22,27:m,33:24,34:b,36:_,38:w,40:28,41:38,42:S,43:39,45:40,58:C,81:A,82:k,83:I,84:N,85:L,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z,118:Y,119:W,120:Q,121:V},e(s,[2,9]),e(s,[2,10]),e(s,[2,11]),{8:[1,54],9:[1,55],10:j,15:53,18:56},e(ee,[2,3]),e(ee,[2,4]),e(ee,[2,5]),e(ee,[2,6]),e(ee,[2,7]),e(ee,[2,8]),{8:te,9:ne,11:se,21:58,39:59,70:63,73:[1,64],75:[1,65]},{8:te,9:ne,11:se,21:66},{8:te,9:ne,11:se,21:67},{8:te,9:ne,11:se,21:68},{8:te,9:ne,11:se,21:69},{8:te,9:ne,11:se,21:70},{8:te,9:ne,10:[1,71],11:se,21:72},e(ee,[2,36]),{35:[1,73]},{37:[1,74]},e(ee,[2,39]),e(ie,[2,46],{18:75,10:j}),{10:[1,76]},{10:[1,77]},{10:[1,78]},{10:[1,79]},{14:ge,42:ce,58:be,77:[1,83],86:ve,92:[1,80],94:[1,81],98:82,102:De,103:ye,106:Ee,108:he,111:we,112:Ce,113:Ie,117:84},e(ee,[2,178]),e(ee,[2,179]),e(ee,[2,180]),e(ee,[2,181]),e(Le,[2,47]),e(Le,[2,49],{44:[1,96]}),e(Fe,[2,67],{110:109,29:[1,97],42:S,46:[1,98],48:[1,99],50:[1,100],52:[1,101],54:[1,102],56:[1,103],58:C,61:[1,104],63:[1,105],65:[1,106],66:[1,107],68:[1,108],86:P,99:M,102:F,103:U,106:$,108:G,111:B,112:Z,113:z}),e(Ve,[2,174]),e(Ve,[2,135]),e(Ve,[2,136]),e(Ve,[2,137]),e(Ve,[2,138]),e(Ve,[2,139]),e(Ve,[2,140]),e(Ve,[2,141]),e(Ve,[2,142]),e(Ve,[2,143]),e(Ve,[2,144]),e(Ve,[2,145]),e(s,[2,12]),e(s,[2,18]),e(s,[2,19]),{9:[1,110]},e(Oe,[2,26],{18:111,10:j}),e(ee,[2,27]),{40:112,41:38,42:S,43:39,45:40,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z},e(ee,[2,40]),e(ee,[2,41]),e(ee,[2,42]),e(Dt,[2,71],{71:113,60:[1,115],72:[1,114]}),{74:116,76:117,77:[1,118],78:[1,119],113:ot,116:sn},e([42,58,60,72,86,99,102,103,106,108,111,112,113],[2,77]),e(ee,[2,28]),e(ee,[2,29]),e(ee,[2,30]),e(ee,[2,31]),e(ee,[2,32]),{10:Kt,12:Ft,14:Je,27:ht,28:122,32:et,42:qe,58:He,73:Ge,77:[1,124],78:[1,125],80:135,81:Ye,82:Ae,83:Xe,84:fe,85:Qe,86:Ke,87:mt,88:123,102:lt,106:$t,108:Ut,111:Jt,112:wn,113:Vn},e(Wn,o,{5:148}),e(ee,[2,37]),e(ee,[2,38]),e(ie,[2,45],{42:Dn}),{42:S,45:150,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z},{99:[1,151],100:152,102:[1,153]},{42:S,45:154,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z},{42:S,45:155,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z},e(zn,[2,100],{10:[1,156],93:[1,157]}),{77:[1,158]},e(zn,[2,108],{117:160,10:[1,159],14:ge,42:ce,58:be,86:ve,102:De,103:ye,106:Ee,108:he,111:we,112:Ce,113:Ie}),e(zn,[2,110],{10:[1,161]}),e(vn,[2,176]),e(vn,[2,163]),e(vn,[2,164]),e(vn,[2,165]),e(vn,[2,166]),e(vn,[2,167]),e(vn,[2,168]),e(vn,[2,169]),e(vn,[2,170]),e(vn,[2,171]),e(vn,[2,172]),e(vn,[2,173]),{42:S,45:162,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z},{30:163,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{30:171,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{30:173,48:[1,172],65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{30:174,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{30:175,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{30:176,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{106:[1,177]},{30:178,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{30:179,63:[1,180],65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{30:181,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{30:182,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{30:183,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},e(Ve,[2,175]),e(s,[2,20]),e(Oe,[2,25]),e(ie,[2,43],{18:184,10:j}),e(Dt,[2,68],{10:[1,185]}),{10:[1,186]},{30:187,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{75:[1,188],76:189,113:ot,116:sn},e(pr,[2,73]),e(pr,[2,75]),e(pr,[2,76]),e(pr,[2,161]),e(pr,[2,162]),{8:te,9:ne,10:Kt,11:se,12:Ft,14:Je,21:191,27:ht,29:[1,190],32:et,42:qe,58:He,73:Ge,80:135,81:Ye,82:Ae,83:Xe,84:fe,85:Qe,86:Ke,87:mt,88:192,102:lt,106:$t,108:Ut,111:Jt,112:wn,113:Vn},e(Cr,[2,94]),e(Cr,[2,96]),e(Cr,[2,97]),e(Cr,[2,150]),e(Cr,[2,151]),e(Cr,[2,152]),e(Cr,[2,153]),e(Cr,[2,154]),e(Cr,[2,155]),e(Cr,[2,156]),e(Cr,[2,157]),e(Cr,[2,158]),e(Cr,[2,159]),e(Cr,[2,160]),e(Cr,[2,83]),e(Cr,[2,84]),e(Cr,[2,85]),e(Cr,[2,86]),e(Cr,[2,87]),e(Cr,[2,88]),e(Cr,[2,89]),e(Cr,[2,90]),e(Cr,[2,91]),e(Cr,[2,92]),e(Cr,[2,93]),{6:11,7:12,8:u,9:h,10:f,11:p,20:17,22:18,23:19,24:20,25:21,26:22,27:m,32:[1,193],33:24,34:b,36:_,38:w,40:28,41:38,42:S,43:39,45:40,58:C,81:A,82:k,83:I,84:N,85:L,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z,118:Y,119:W,120:Q,121:V},{10:j,18:194},{10:[1,195],42:S,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:109,111:B,112:Z,113:z},{10:[1,196]},{10:[1,197],103:[1,198]},e(Zr,[2,121]),{10:[1,199],42:S,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:109,111:B,112:Z,113:z},{10:[1,200],42:S,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:109,111:B,112:Z,113:z},{77:[1,201]},e(zn,[2,102],{10:[1,202]}),e(zn,[2,104],{10:[1,203]}),{77:[1,204]},e(vn,[2,177]),{77:[1,205],95:[1,206]},e(Le,[2,50],{110:109,42:S,58:C,86:P,99:M,102:F,103:U,106:$,108:G,111:B,112:Z,113:z}),{31:[1,207],65:Cn,79:208,113:On,114:Ir,115:Ln},e(Pr,[2,79]),e(Pr,[2,81]),e(Pr,[2,82]),e(Pr,[2,146]),e(Pr,[2,147]),e(Pr,[2,148]),e(Pr,[2,149]),{47:[1,209],65:Cn,79:208,113:On,114:Ir,115:Ln},{30:210,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{49:[1,211],65:Cn,79:208,113:On,114:Ir,115:Ln},{51:[1,212],65:Cn,79:208,113:On,114:Ir,115:Ln},{53:[1,213],65:Cn,79:208,113:On,114:Ir,115:Ln},{55:[1,214],65:Cn,79:208,113:On,114:Ir,115:Ln},{58:[1,215]},{62:[1,216],65:Cn,79:208,113:On,114:Ir,115:Ln},{64:[1,217],65:Cn,79:208,113:On,114:Ir,115:Ln},{30:218,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},{31:[1,219],65:Cn,79:208,113:On,114:Ir,115:Ln},{65:Cn,67:[1,220],69:[1,221],79:208,113:On,114:Ir,115:Ln},{65:Cn,67:[1,223],69:[1,222],79:208,113:On,114:Ir,115:Ln},e(ie,[2,44],{42:Dn}),e(Dt,[2,70]),e(Dt,[2,69]),{60:[1,224],65:Cn,79:208,113:On,114:Ir,115:Ln},e(Dt,[2,72]),e(pr,[2,74]),{30:225,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},e(Wn,o,{5:226}),e(Cr,[2,95]),e(ee,[2,35]),{41:227,42:S,43:39,45:40,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z},{10:Ci,58:ds,81:ta,89:228,102:Os,104:229,105:230,106:uo,107:Ls,108:La,109:to},{10:Ci,58:ds,81:ta,89:239,101:[1,240],102:Os,104:229,105:230,106:uo,107:Ls,108:La,109:to},{10:Ci,58:ds,81:ta,89:241,101:[1,242],102:Os,104:229,105:230,106:uo,107:Ls,108:La,109:to},{102:[1,243]},{10:Ci,58:ds,81:ta,89:244,102:Os,104:229,105:230,106:uo,107:Ls,108:La,109:to},{42:S,45:245,58:C,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z},e(zn,[2,101]),{77:[1,246]},{77:[1,247],95:[1,248]},e(zn,[2,109]),e(zn,[2,111],{10:[1,249]}),e(zn,[2,112]),e(Fe,[2,51]),e(Pr,[2,80]),e(Fe,[2,52]),{49:[1,250],65:Cn,79:208,113:On,114:Ir,115:Ln},e(Fe,[2,59]),e(Fe,[2,54]),e(Fe,[2,55]),e(Fe,[2,56]),{106:[1,251]},e(Fe,[2,58]),e(Fe,[2,60]),{64:[1,252],65:Cn,79:208,113:On,114:Ir,115:Ln},e(Fe,[2,62]),e(Fe,[2,63]),e(Fe,[2,65]),e(Fe,[2,64]),e(Fe,[2,66]),e([10,42,58,86,99,102,103,106,108,111,112,113],[2,78]),{31:[1,253],65:Cn,79:208,113:On,114:Ir,115:Ln},{6:11,7:12,8:u,9:h,10:f,11:p,20:17,22:18,23:19,24:20,25:21,26:22,27:m,32:[1,254],33:24,34:b,36:_,38:w,40:28,41:38,42:S,43:39,45:40,58:C,81:A,82:k,83:I,84:N,85:L,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z,118:Y,119:W,120:Q,121:V},e(Le,[2,48]),e(zn,[2,114],{103:Fi}),e(Pt,[2,123],{105:256,10:Ci,58:ds,81:ta,102:Os,106:uo,107:Ls,108:La,109:to}),e(St,[2,125]),e(St,[2,127]),e(St,[2,128]),e(St,[2,129]),e(St,[2,130]),e(St,[2,131]),e(St,[2,132]),e(St,[2,133]),e(St,[2,134]),e(zn,[2,115],{103:Fi}),{10:[1,257]},e(zn,[2,116],{103:Fi}),{10:[1,258]},e(Zr,[2,122]),e(zn,[2,98],{103:Fi}),e(zn,[2,99],{110:109,42:S,58:C,86:P,99:M,102:F,103:U,106:$,108:G,111:B,112:Z,113:z}),e(zn,[2,103]),e(zn,[2,105],{10:[1,259]}),e(zn,[2,106]),{95:[1,260]},{49:[1,261]},{60:[1,262]},{64:[1,263]},{8:te,9:ne,11:se,21:264},e(ee,[2,34]),{10:Ci,58:ds,81:ta,102:Os,104:265,105:230,106:uo,107:Ls,108:La,109:to},e(St,[2,126]),{14:ge,42:ce,58:be,86:ve,98:266,102:De,103:ye,106:Ee,108:he,111:we,112:Ce,113:Ie,117:84},{14:ge,42:ce,58:be,86:ve,98:267,102:De,103:ye,106:Ee,108:he,111:we,112:Ce,113:Ie,117:84},{95:[1,268]},e(zn,[2,113]),e(Fe,[2,53]),{30:269,65:Cn,77:Ar,78:ur,79:164,113:On,114:Ir,115:Ln},e(Fe,[2,61]),e(Wn,o,{5:270}),e(Pt,[2,124],{105:256,10:Ci,58:ds,81:ta,102:Os,106:uo,107:Ls,108:La,109:to}),e(zn,[2,119],{117:160,10:[1,271],14:ge,42:ce,58:be,86:ve,102:De,103:ye,106:Ee,108:he,111:we,112:Ce,113:Ie}),e(zn,[2,120],{117:160,10:[1,272],14:ge,42:ce,58:be,86:ve,102:De,103:ye,106:Ee,108:he,111:we,112:Ce,113:Ie}),e(zn,[2,107]),{31:[1,273],65:Cn,79:208,113:On,114:Ir,115:Ln},{6:11,7:12,8:u,9:h,10:f,11:p,20:17,22:18,23:19,24:20,25:21,26:22,27:m,32:[1,274],33:24,34:b,36:_,38:w,40:28,41:38,42:S,43:39,45:40,58:C,81:A,82:k,83:I,84:N,85:L,86:P,99:M,102:F,103:U,106:$,108:G,110:41,111:B,112:Z,113:z,118:Y,119:W,120:Q,121:V},{10:Ci,58:ds,81:ta,89:275,102:Os,104:229,105:230,106:uo,107:Ls,108:La,109:to},{10:Ci,58:ds,81:ta,89:276,102:Os,104:229,105:230,106:uo,107:Ls,108:La,109:to},e(Fe,[2,57]),e(ee,[2,33]),e(zn,[2,117],{103:Fi}),e(zn,[2,118],{103:Fi})],defaultActions:{},parseError:function(Vr,Ii){if(Ii.recoverable)this.trace(Vr);else{var Pa=new Error(Vr);throw Pa.hash=Ii,Pa}},parse:function(Vr){var Ii=this,Pa=[0],Or=[],no=[null],dt=[],Wi=this.table,Tt="",xr=0,qs=0,Rt=2,Bb=1,Gt=dt.slice.call(arguments,1),Ds=Object.create(this.lexer),Lm={yy:{}};for(var BS in this.yy)Object.prototype.hasOwnProperty.call(this.yy,BS)&&(Lm.yy[BS]=this.yy[BS]);Ds.setInput(Vr,Lm.yy),Lm.yy.lexer=Ds,Lm.yy.parser=this,typeof Ds.yylloc>"u"&&(Ds.yylloc={});var eE=Ds.yylloc;dt.push(eE);var uL=Ds.options&&Ds.options.ranges;typeof Lm.yy.parseError=="function"?this.parseError=Lm.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function rd(){var Pf;return Pf=Or.pop()||Ds.lex()||Bb,typeof Pf!="number"&&(Pf instanceof Array&&(Or=Pf,Pf=Or.pop()),Pf=Ii.symbols_[Pf]||Pf),Pf}for(var Fh,Fb,e1,wT,d_={},tE,qu,$b,Mf;;){if(Fb=Pa[Pa.length-1],this.defaultActions[Fb]?e1=this.defaultActions[Fb]:((Fh===null||typeof Fh>"u")&&(Fh=rd()),e1=Wi[Fb]&&Wi[Fb][Fh]),typeof e1>"u"||!e1.length||!e1[0]){var nE="";Mf=[];for(tE in Wi[Fb])this.terminals_[tE]&&tE>Rt&&Mf.push("'"+this.terminals_[tE]+"'");Ds.showPosition?nE="Parse error on line "+(xr+1)+`: +`+Ds.showPosition()+` +Expecting `+Mf.join(", ")+", got '"+(this.terminals_[Fh]||Fh)+"'":nE="Parse error on line "+(xr+1)+": Unexpected "+(Fh==Bb?"end of input":"'"+(this.terminals_[Fh]||Fh)+"'"),this.parseError(nE,{text:Ds.match,token:this.terminals_[Fh]||Fh,line:Ds.yylineno,loc:eE,expected:Mf})}if(e1[0]instanceof Array&&e1.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Fb+", token: "+Fh);switch(e1[0]){case 1:Pa.push(Fh),no.push(Ds.yytext),dt.push(Ds.yylloc),Pa.push(e1[1]),Fh=null,qs=Ds.yyleng,Tt=Ds.yytext,xr=Ds.yylineno,eE=Ds.yylloc;break;case 2:if(qu=this.productions_[e1[1]][1],d_.$=no[no.length-qu],d_._$={first_line:dt[dt.length-(qu||1)].first_line,last_line:dt[dt.length-1].last_line,first_column:dt[dt.length-(qu||1)].first_column,last_column:dt[dt.length-1].last_column},uL&&(d_._$.range=[dt[dt.length-(qu||1)].range[0],dt[dt.length-1].range[1]]),wT=this.performAction.apply(d_,[Tt,qs,xr,Lm.yy,e1[1],no,dt].concat(Gt)),typeof wT<"u")return wT;qu&&(Pa=Pa.slice(0,-1*qu*2),no=no.slice(0,-1*qu),dt=dt.slice(0,-1*qu)),Pa.push(this.productions_[e1[1]][0]),no.push(d_.$),dt.push(d_._$),$b=Wi[Pa[Pa.length-2]][Pa[Pa.length-1]],Pa.push($b);break;case 3:return!0}}return!0}},Hr=function(){var Rs={EOF:1,parseError:function(Ii,Pa){if(this.yy.parser)this.yy.parser.parseError(Ii,Pa);else throw new Error(Ii)},setInput:function(Vr,Ii){return this.yy=Ii||this.yy||{},this._input=Vr,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var Vr=this._input[0];this.yytext+=Vr,this.yyleng++,this.offset++,this.match+=Vr,this.matched+=Vr;var Ii=Vr.match(/(?:\r\n?|\n).*/g);return Ii?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Vr},unput:function(Vr){var Ii=Vr.length,Pa=Vr.split(/(?:\r\n?|\n)/g);this._input=Vr+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-Ii),this.offset-=Ii;var Or=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Pa.length-1&&(this.yylineno-=Pa.length-1);var no=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Pa?(Pa.length===Or.length?this.yylloc.first_column:0)+Or[Or.length-Pa.length].length-Pa[0].length:this.yylloc.first_column-Ii},this.options.ranges&&(this.yylloc.range=[no[0],no[0]+this.yyleng-Ii]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(Vr){this.unput(this.match.slice(Vr))},pastInput:function(){var Vr=this.matched.substr(0,this.matched.length-this.match.length);return(Vr.length>20?"...":"")+Vr.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var Vr=this.match;return Vr.length<20&&(Vr+=this._input.substr(0,20-Vr.length)),(Vr.substr(0,20)+(Vr.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var Vr=this.pastInput(),Ii=new Array(Vr.length+1).join("-");return Vr+this.upcomingInput()+` +`+Ii+"^"},test_match:function(Vr,Ii){var Pa,Or,no;if(this.options.backtrack_lexer&&(no={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(no.yylloc.range=this.yylloc.range.slice(0))),Or=Vr[0].match(/(?:\r\n?|\n).*/g),Or&&(this.yylineno+=Or.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:Or?Or[Or.length-1].length-Or[Or.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Vr[0].length},this.yytext+=Vr[0],this.match+=Vr[0],this.matches=Vr,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Vr[0].length),this.matched+=Vr[0],Pa=this.performAction.call(this,this.yy,this,Ii,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Pa)return Pa;if(this._backtrack){for(var dt in no)this[dt]=no[dt];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Vr,Ii,Pa,Or;this._more||(this.yytext="",this.match="");for(var no=this._currentRules(),dt=0;dtIi[0].length)){if(Ii=Pa,Or=dt,this.options.backtrack_lexer){if(Vr=this.test_match(Pa,no[dt]),Vr!==!1)return Vr;if(this._backtrack){Ii=!1;continue}else return!1}else if(!this.options.flex)break}return Ii?(Vr=this.test_match(Ii,no[Or]),Vr!==!1?Vr:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var Ii=this.next();return Ii||this.lex()},begin:function(Ii){this.conditionStack.push(Ii)},popState:function(){var Ii=this.conditionStack.length-1;return Ii>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(Ii){return Ii=this.conditionStack.length-1-Math.abs(Ii||0),Ii>=0?this.conditionStack[Ii]:"INITIAL"},pushState:function(Ii){this.begin(Ii)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(Ii,Pa,Or,no){switch(Or){case 0:return this.begin("acc_title"),34;case 1:return this.popState(),"acc_title_value";case 2:return this.begin("acc_descr"),36;case 3:return this.popState(),"acc_descr_value";case 4:this.begin("acc_descr_multiline");break;case 5:this.popState();break;case 6:return"acc_descr_multiline_value";case 7:this.begin("callbackname");break;case 8:this.popState();break;case 9:this.popState(),this.begin("callbackargs");break;case 10:return 92;case 11:this.popState();break;case 12:return 93;case 13:return"MD_STR";case 14:this.popState();break;case 15:this.begin("md_string");break;case 16:return"STR";case 17:this.popState();break;case 18:this.pushState("string");break;case 19:return 81;case 20:return 99;case 21:return 82;case 22:return 101;case 23:return 83;case 24:return 84;case 25:return 94;case 26:this.begin("click");break;case 27:this.popState();break;case 28:return 85;case 29:return Ii.lex.firstGraph()&&this.begin("dir"),12;case 30:return Ii.lex.firstGraph()&&this.begin("dir"),12;case 31:return Ii.lex.firstGraph()&&this.begin("dir"),12;case 32:return 27;case 33:return 32;case 34:return 95;case 35:return 95;case 36:return 95;case 37:return 95;case 38:return this.popState(),13;case 39:return this.popState(),14;case 40:return this.popState(),14;case 41:return this.popState(),14;case 42:return this.popState(),14;case 43:return this.popState(),14;case 44:return this.popState(),14;case 45:return this.popState(),14;case 46:return this.popState(),14;case 47:return this.popState(),14;case 48:return this.popState(),14;case 49:return 118;case 50:return 119;case 51:return 120;case 52:return 121;case 53:return 102;case 54:return 108;case 55:return 44;case 56:return 58;case 57:return 42;case 58:return 8;case 59:return 103;case 60:return 112;case 61:return this.popState(),75;case 62:return this.pushState("edgeText"),73;case 63:return 116;case 64:return this.popState(),75;case 65:return this.pushState("thickEdgeText"),73;case 66:return 116;case 67:return this.popState(),75;case 68:return this.pushState("dottedEdgeText"),73;case 69:return 116;case 70:return 75;case 71:return this.popState(),51;case 72:return"TEXT";case 73:return this.pushState("ellipseText"),50;case 74:return this.popState(),53;case 75:return this.pushState("text"),52;case 76:return this.popState(),55;case 77:return this.pushState("text"),54;case 78:return 56;case 79:return this.pushState("text"),65;case 80:return this.popState(),62;case 81:return this.pushState("text"),61;case 82:return this.popState(),47;case 83:return this.pushState("text"),46;case 84:return this.popState(),67;case 85:return this.popState(),69;case 86:return 114;case 87:return this.pushState("trapText"),66;case 88:return this.pushState("trapText"),68;case 89:return 115;case 90:return 65;case 91:return 87;case 92:return"SEP";case 93:return 86;case 94:return 112;case 95:return 108;case 96:return 42;case 97:return 106;case 98:return 111;case 99:return 113;case 100:return this.popState(),60;case 101:return this.pushState("text"),60;case 102:return this.popState(),49;case 103:return this.pushState("text"),48;case 104:return this.popState(),31;case 105:return this.pushState("text"),29;case 106:return this.popState(),64;case 107:return this.pushState("text"),63;case 108:return"TEXT";case 109:return"QUOTE";case 110:return 9;case 111:return 10;case 112:return 11}},rules:[/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:call[\s]+)/,/^(?:\([\s]*\))/,/^(?:\()/,/^(?:[^(]*)/,/^(?:\))/,/^(?:[^)]*)/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["][`])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:["])/,/^(?:style\b)/,/^(?:default\b)/,/^(?:linkStyle\b)/,/^(?:interpolate\b)/,/^(?:classDef\b)/,/^(?:class\b)/,/^(?:href[\s])/,/^(?:click[\s]+)/,/^(?:[\s\n])/,/^(?:[^\s\n]*)/,/^(?:flowchart-elk\b)/,/^(?:graph\b)/,/^(?:flowchart\b)/,/^(?:subgraph\b)/,/^(?:end\b\s*)/,/^(?:_self\b)/,/^(?:_blank\b)/,/^(?:_parent\b)/,/^(?:_top\b)/,/^(?:(\r?\n)*\s*\n)/,/^(?:\s*LR\b)/,/^(?:\s*RL\b)/,/^(?:\s*TB\b)/,/^(?:\s*BT\b)/,/^(?:\s*TD\b)/,/^(?:\s*BR\b)/,/^(?:\s*<)/,/^(?:\s*>)/,/^(?:\s*\^)/,/^(?:\s*v\b)/,/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:[0-9]+)/,/^(?:#)/,/^(?::::)/,/^(?::)/,/^(?:&)/,/^(?:;)/,/^(?:,)/,/^(?:\*)/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?--\s*)/,/^(?:[^-]|-(?!-)+)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?==\s*)/,/^(?:[^=]|=(?!))/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?:\s*[xo<]?-\.\s*)/,/^(?:[^\.]|\.(?!))/,/^(?:\s*~~[\~]+\s*)/,/^(?:[-/\)][\)])/,/^(?:[^\(\)\[\]\{\}]|!\)+)/,/^(?:\(-)/,/^(?:\]\))/,/^(?:\(\[)/,/^(?:\]\])/,/^(?:\[\[)/,/^(?:\[\|)/,/^(?:>)/,/^(?:\)\])/,/^(?:\[\()/,/^(?:\)\)\))/,/^(?:\(\(\()/,/^(?:[\\(?=\])][\]])/,/^(?:\/(?=\])\])/,/^(?:\/(?!\])|\\(?!\])|[^\\\[\]\(\)\{\}\/]+)/,/^(?:\[\/)/,/^(?:\[\\)/,/^(?:<)/,/^(?:>)/,/^(?:\^)/,/^(?:\\\|)/,/^(?:v\b)/,/^(?:\*)/,/^(?:#)/,/^(?:&)/,/^(?:([A-Za-z0-9!"\#$%&'*+\.`?\\_\/]|-(?=[^\>\-\.])|(?!))+)/,/^(?:-)/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\|)/,/^(?:\|)/,/^(?:\))/,/^(?:\()/,/^(?:\])/,/^(?:\[)/,/^(?:(\}))/,/^(?:\{)/,/^(?:[^\[\]\(\)\{\}\|\"]+)/,/^(?:")/,/^(?:(\r?\n)+)/,/^(?:\s)/,/^(?:$)/],conditions:{callbackargs:{rules:[11,12,15,18,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},callbackname:{rules:[8,9,10,15,18,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},href:{rules:[15,18,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},click:{rules:[15,18,27,28,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},dottedEdgeText:{rules:[15,18,67,69,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},thickEdgeText:{rules:[15,18,64,66,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},edgeText:{rules:[15,18,61,63,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},trapText:{rules:[15,18,70,73,75,77,81,83,84,85,86,87,88,101,103,105,107],inclusive:!1},ellipseText:{rules:[15,18,70,71,72,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},text:{rules:[15,18,70,73,74,75,76,77,80,81,82,83,87,88,100,101,102,103,104,105,106,107,108],inclusive:!1},vertex:{rules:[15,18,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},dir:{rules:[15,18,38,39,40,41,42,43,44,45,46,47,48,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},acc_descr_multiline:{rules:[5,6,15,18,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},acc_descr:{rules:[3,15,18,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},acc_title:{rules:[1,15,18,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},md_string:{rules:[13,14,15,18,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},string:{rules:[15,16,17,18,70,73,75,77,81,83,87,88,101,103,105,107],inclusive:!1},INITIAL:{rules:[0,2,4,7,15,18,19,20,21,22,23,24,25,26,29,30,31,32,33,34,35,36,37,49,50,51,52,53,54,55,56,57,58,59,60,61,62,64,65,67,68,70,73,75,77,78,79,81,83,87,88,89,90,91,92,93,94,95,96,97,98,99,101,103,105,107,109,110,111,112],inclusive:!0}}};return Rs}();Un.lexer=Hr;function za(){this.yy={}}return za.prototype=Un,Un.Parser=za,new za}();fht.parser=fht;const Pbt=fht,Sua="flowchart-";let G5n=0,lW=Qt(),bd={},z3=[],UV={},pR=[],i5e={},a5e={},oSe=0,pht=!0,qx,f6e,p6e=[];const g6e=e=>mi.sanitizeText(e,lW),Jce=function(e){const t=Object.keys(bd);for(const r of t)if(bd[r].id===e)return bd[r].domId;return e},AJn=function(e,t,r,a,s,o,u={}){let h,f=e;f!==void 0&&f.trim().length!==0&&(bd[f]===void 0&&(bd[f]={id:f,labelType:"text",domId:Sua+f+"-"+G5n,styles:[],classes:[]}),G5n++,t!==void 0?(lW=Qt(),h=g6e(t.text.trim()),bd[f].labelType=t.type,h[0]==='"'&&h[h.length-1]==='"'&&(h=h.substring(1,h.length-1)),bd[f].text=h):bd[f].text===void 0&&(bd[f].text=e),r!==void 0&&(bd[f].type=r),a!=null&&a.forEach(function(p){bd[f].styles.push(p)}),s!=null&&s.forEach(function(p){bd[f].classes.push(p)}),o!==void 0&&(bd[f].dir=o),bd[f].props===void 0?bd[f].props=u:u!==void 0&&Object.assign(bd[f].props,u))},kJn=function(e,t,r){const o={start:e,end:t,type:void 0,text:"",labelType:"text"};ut.info("abc78 Got edge...",o);const u=r.text;if(u!==void 0&&(o.text=g6e(u.text.trim()),o.text[0]==='"'&&o.text[o.text.length-1]==='"'&&(o.text=o.text.substring(1,o.text.length-1)),o.labelType=u.type),r!==void 0&&(o.type=r.type,o.stroke=r.stroke,o.length=r.length),(o==null?void 0:o.length)>10&&(o.length=10),z3.length<(lW.maxEdges??500))ut.info("abc78 pushing edge..."),z3.push(o);else throw new Error(`Edge limit exceeded. ${z3.length} edges found, but the limit is ${lW.maxEdges}. + +Initialize mermaid with maxEdges set to a higher number to allow more edges. +You cannot set this config via configuration inside the diagram as it is a secure config. +You have to call mermaid.initialize.`)},RJn=function(e,t,r){ut.info("addLink (abc78)",e,t,r);let a,s;for(a=0;a=z3.length)throw new Error(`The index ${r} for linkStyle is out of bounds. Valid indices for linkStyle are between 0 and ${z3.length-1}. (Help: Ensure that the index is within the range of existing edges.)`);r==="default"?z3.defaultStyle=t:(il.isSubstringInArray("fill",t)===-1&&t.push("fill:none"),z3[r].style=t)})},OJn=function(e,t){e.split(",").forEach(function(r){UV[r]===void 0&&(UV[r]={id:r,styles:[],textStyles:[]}),t!=null&&t.forEach(function(a){if(a.match("color")){const s=a.replace("fill","bgFill").replace("color","fill");UV[r].textStyles.push(s)}UV[r].styles.push(a)})})},LJn=function(e){qx=e,qx.match(/.*/)&&(qx="LR"),qx.match(/.*v/)&&(qx="TB"),qx==="TD"&&(qx="TB")},m6e=function(e,t){e.split(",").forEach(function(r){let a=r;bd[a]!==void 0&&bd[a].classes.push(t),i5e[a]!==void 0&&i5e[a].classes.push(t)})},Tua=function(e,t){e.split(",").forEach(function(r){t!==void 0&&(a5e[f6e==="gen-1"?Jce(r):r]=g6e(t))})},Cua=function(e,t,r){let a=Jce(e);if(Qt().securityLevel!=="loose"||t===void 0)return;let s=[];if(typeof r=="string"){s=r.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let o=0;o")),s.classed("hover",!0)}).on("mouseout",function(){t.transition().duration(500).style("opacity",0),gn(this).classed("hover",!1)})};p6e.push(GJn);const qJn=function(e="gen-1"){bd={},UV={},z3=[],p6e=[GJn],pR=[],i5e={},oSe=0,a5e={},pht=!0,f6e=e,lW=Qt(),Mb()},HJn=e=>{f6e=e||"gen-2"},VJn=function(){return"fill:#ffa;stroke: #f66; stroke-width: 3px; stroke-dasharray: 5, 5;fill:#ffa;stroke: #666;"},YJn=function(e,t,r){let a=e.text.trim(),s=r.text;e===r&&r.text.match(/\s/)&&(a=void 0);function o(m){const b={boolean:{},number:{},string:{}},_=[];let w;return{nodeList:m.filter(function(C){const A=typeof C;return C.stmt&&C.stmt==="dir"?(w=C.value,!1):C.trim()===""?!1:A in b?b[A].hasOwnProperty(C)?!1:b[A][C]=!0:_.includes(C)?!1:_.push(C)}),dir:w}}let u=[];const{nodeList:h,dir:f}=o(u.concat.apply(u,t));if(u=h,f6e==="gen-1")for(let m=0;m2e3)return;if(jJn[$ae]=t,pR[t].id===e)return{result:!0,count:0};let a=0,s=1;for(;a=0){const u=WJn(e,o);if(u.result)return{result:!0,count:s+u.count};s=s+u.count}a=a+1}return{result:!1,count:s}},KJn=function(e){return jJn[e]},XJn=function(){$ae=-1,pR.length>0&&WJn("none",pR.length-1)},QJn=function(){return pR},ZJn=()=>pht?(pht=!1,!0):!1,kua=e=>{let t=e.trim(),r="arrow_open";switch(t[0]){case"<":r="arrow_point",t=t.slice(1);break;case"x":r="arrow_cross",t=t.slice(1);break;case"o":r="arrow_circle",t=t.slice(1);break}let a="normal";return t.includes("=")&&(a="thick"),t.includes(".")&&(a="dotted"),{type:r,stroke:a}},Rua=(e,t)=>{const r=t.length;let a=0;for(let s=0;s{const t=e.trim();let r=t.slice(0,-1),a="arrow_open";switch(t.slice(-1)){case"x":a="arrow_cross",t[0]==="x"&&(a="double_"+a,r=r.slice(1));break;case">":a="arrow_point",t[0]==="<"&&(a="double_"+a,r=r.slice(1));break;case"o":a="arrow_circle",t[0]==="o"&&(a="double_"+a,r=r.slice(1));break}let s="normal",o=r.length-1;r[0]==="="&&(s="thick"),r[0]==="~"&&(s="invisible");let u=Rua(".",r);return u&&(s="dotted",o=u),{type:a,stroke:s,length:o}},JJn=(e,t)=>{const r=Iua(e);let a;if(t){if(a=kua(t),a.stroke!==r.stroke)return{type:"INVALID",stroke:"INVALID"};if(a.type==="arrow_open")a.type=r.type;else{if(a.type!==r.type)return{type:"INVALID",stroke:"INVALID"};a.type="double_"+a.type}return a.type==="double_arrow"&&(a.type="double_arrow_point"),a.length=r.length,a}return r},eer=(e,t)=>{let r=!1;return e.forEach(a=>{a.nodes.indexOf(t)>=0&&(r=!0)}),r},ter=(e,t)=>{const r=[];return e.nodes.forEach((a,s)=>{eer(t,a)||r.push(e.nodes[s])}),{nodes:r}},ner={firstGraph:ZJn},gF={defaultConfig:()=>TZn.flowchart,setAccTitle:Pb,getAccTitle:Ev,getAccDescription:Sv,setAccDescription:xv,addVertex:AJn,lookUpDomId:Jce,addLink:RJn,updateLinkInterpolate:IJn,updateLink:NJn,addClass:OJn,setDirection:LJn,setClass:m6e,setTooltip:Tua,getTooltip:MJn,setClickEvent:PJn,setLink:DJn,bindFunctions:BJn,getDirection:FJn,getVertices:$Jn,getEdges:UJn,getClasses:zJn,clear:qJn,setGen:HJn,defaultStyle:VJn,addSubGraph:YJn,getDepthFirstPos:KJn,indexNodes:XJn,getSubGraphs:QJn,destructLink:JJn,lex:ner,exists:eer,makeUniq:ter,setDiagramTitle:Zw,getDiagramTitle:Tv},Nua=Object.freeze(Object.defineProperty({__proto__:null,addClass:OJn,addLink:RJn,addSingleLink:kJn,addSubGraph:YJn,addVertex:AJn,bindFunctions:BJn,clear:qJn,default:gF,defaultStyle:VJn,destructLink:JJn,firstGraph:ZJn,getClasses:zJn,getDepthFirstPos:KJn,getDirection:FJn,getEdges:UJn,getSubGraphs:QJn,getTooltip:MJn,getVertices:$Jn,indexNodes:XJn,lex:ner,lookUpDomId:Jce,setClass:m6e,setClickEvent:PJn,setDirection:LJn,setGen:HJn,setLink:DJn,updateLink:NJn,updateLinkInterpolate:IJn},Symbol.toStringTag,{value:"Module"}));var Oua="\0",xB="\0",q5n="";class F1{constructor(t={}){this._isDirected=Ho(t,"directed")?t.directed:!0,this._isMultigraph=Ho(t,"multigraph")?t.multigraph:!1,this._isCompound=Ho(t,"compound")?t.compound:!1,this._label=void 0,this._defaultNodeLabelFn=$3(void 0),this._defaultEdgeLabelFn=$3(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children[xB]={}),this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={}}isDirected(){return this._isDirected}isMultigraph(){return this._isMultigraph}isCompound(){return this._isCompound}setGraph(t){return this._label=t,this}graph(){return this._label}setDefaultNodeLabel(t){return KO(t)||(t=$3(t)),this._defaultNodeLabelFn=t,this}nodeCount(){return this._nodeCount}nodes(){return Tp(this._nodes)}sources(){var t=this;return Rp(this.nodes(),function(r){return uA(t._in[r])})}sinks(){var t=this;return Rp(this.nodes(),function(r){return uA(t._out[r])})}setNodes(t,r){var a=arguments,s=this;return Zt(t,function(o){a.length>1?s.setNode(o,r):s.setNode(o)}),this}setNode(t,r){return Ho(this._nodes,t)?(arguments.length>1&&(this._nodes[t]=r),this):(this._nodes[t]=arguments.length>1?r:this._defaultNodeLabelFn(t),this._isCompound&&(this._parent[t]=xB,this._children[t]={},this._children[xB][t]=!0),this._in[t]={},this._preds[t]={},this._out[t]={},this._sucs[t]={},++this._nodeCount,this)}node(t){return this._nodes[t]}hasNode(t){return Ho(this._nodes,t)}removeNode(t){var r=this;if(Ho(this._nodes,t)){var a=function(s){r.removeEdge(r._edgeObjs[s])};delete this._nodes[t],this._isCompound&&(this._removeFromParentsChildList(t),delete this._parent[t],Zt(this.children(t),function(s){r.setParent(s)}),delete this._children[t]),Zt(Tp(this._in[t]),a),delete this._in[t],delete this._preds[t],Zt(Tp(this._out[t]),a),delete this._out[t],delete this._sucs[t],--this._nodeCount}return this}setParent(t,r){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(gl(r))r=xB;else{r+="";for(var a=r;!gl(a);a=this.parent(a))if(a===t)throw new Error("Setting "+r+" as parent of "+t+" would create a cycle");this.setNode(r)}return this.setNode(t),this._removeFromParentsChildList(t),this._parent[t]=r,this._children[r][t]=!0,this}_removeFromParentsChildList(t){delete this._children[this._parent[t]][t]}parent(t){if(this._isCompound){var r=this._parent[t];if(r!==xB)return r}}children(t){if(gl(t)&&(t=xB),this._isCompound){var r=this._children[t];if(r)return Tp(r)}else{if(t===xB)return this.nodes();if(this.hasNode(t))return[]}}predecessors(t){var r=this._preds[t];if(r)return Tp(r)}successors(t){var r=this._sucs[t];if(r)return Tp(r)}neighbors(t){var r=this.predecessors(t);if(r)return Dqn(r,this.successors(t))}isLeaf(t){var r;return this.isDirected()?r=this.successors(t):r=this.neighbors(t),r.length===0}filterNodes(t){var r=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});r.setGraph(this.graph());var a=this;Zt(this._nodes,function(u,h){t(h)&&r.setNode(h,u)}),Zt(this._edgeObjs,function(u){r.hasNode(u.v)&&r.hasNode(u.w)&&r.setEdge(u,a.edge(u))});var s={};function o(u){var h=a.parent(u);return h===void 0||r.hasNode(h)?(s[u]=h,h):h in s?s[h]:o(h)}return this._isCompound&&Zt(r.nodes(),function(u){r.setParent(u,o(u))}),r}setDefaultEdgeLabel(t){return KO(t)||(t=$3(t)),this._defaultEdgeLabelFn=t,this}edgeCount(){return this._edgeCount}edges(){return Ag(this._edgeObjs)}setPath(t,r){var a=this,s=arguments;return TS(t,function(o,u){return s.length>1?a.setEdge(o,u,r):a.setEdge(o,u),u}),this}setEdge(){var t,r,a,s,o=!1,u=arguments[0];typeof u=="object"&&u!==null&&"v"in u?(t=u.v,r=u.w,a=u.name,arguments.length===2&&(s=arguments[1],o=!0)):(t=u,r=arguments[1],a=arguments[3],arguments.length>2&&(s=arguments[2],o=!0)),t=""+t,r=""+r,gl(a)||(a=""+a);var h=Uae(this._isDirected,t,r,a);if(Ho(this._edgeLabels,h))return o&&(this._edgeLabels[h]=s),this;if(!gl(a)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(t),this.setNode(r),this._edgeLabels[h]=o?s:this._defaultEdgeLabelFn(t,r,a);var f=Lua(this._isDirected,t,r,a);return t=f.v,r=f.w,Object.freeze(f),this._edgeObjs[h]=f,H5n(this._preds[r],t),H5n(this._sucs[t],r),this._in[r][h]=f,this._out[t][h]=f,this._edgeCount++,this}edge(t,r,a){var s=arguments.length===1?vat(this._isDirected,arguments[0]):Uae(this._isDirected,t,r,a);return this._edgeLabels[s]}hasEdge(t,r,a){var s=arguments.length===1?vat(this._isDirected,arguments[0]):Uae(this._isDirected,t,r,a);return Ho(this._edgeLabels,s)}removeEdge(t,r,a){var s=arguments.length===1?vat(this._isDirected,arguments[0]):Uae(this._isDirected,t,r,a),o=this._edgeObjs[s];return o&&(t=o.v,r=o.w,delete this._edgeLabels[s],delete this._edgeObjs[s],V5n(this._preds[r],t),V5n(this._sucs[t],r),delete this._in[r][s],delete this._out[t][s],this._edgeCount--),this}inEdges(t,r){var a=this._in[t];if(a){var s=Ag(a);return r?Rp(s,function(o){return o.v===r}):s}}outEdges(t,r){var a=this._out[t];if(a){var s=Ag(a);return r?Rp(s,function(o){return o.w===r}):s}}nodeEdges(t,r){var a=this.inEdges(t,r);if(a)return a.concat(this.outEdges(t,r))}}F1.prototype._nodeCount=0;F1.prototype._edgeCount=0;function H5n(e,t){e[t]?e[t]++:e[t]=1}function V5n(e,t){--e[t]||delete e[t]}function Uae(e,t,r,a){var s=""+t,o=""+r;if(!e&&s>o){var u=s;s=o,o=u}return s+q5n+o+q5n+(gl(a)?Oua:a)}function Lua(e,t,r,a){var s=""+t,o=""+r;if(!e&&s>o){var u=s;s=o,o=u}var h={v:s,w:o};return a&&(h.name=a),h}function vat(e,t){return Uae(e,t.v,t.w,t.name)}class Dua{constructor(){var t={};t._next=t._prev=t,this._sentinel=t}dequeue(){var t=this._sentinel,r=t._prev;if(r!==t)return Y5n(r),r}enqueue(t){var r=this._sentinel;t._prev&&t._next&&Y5n(t),t._next=r._next,r._next._prev=t,r._next=t,t._prev=r}toString(){for(var t=[],r=this._sentinel,a=r._prev;a!==r;)t.push(JSON.stringify(a,Mua)),a=a._prev;return"["+t.join(", ")+"]"}}function Y5n(e){e._prev._next=e._next,e._next._prev=e._prev,delete e._next,delete e._prev}function Mua(e,t){if(e!=="_next"&&e!=="_prev")return t}var Pua=$3(1);function Bua(e,t){if(e.nodeCount()<=1)return[];var r=$ua(e,t||Pua),a=Fua(r.graph,r.buckets,r.zeroIdx);return MS(wo(a,function(s){return e.outEdges(s.v,s.w)}))}function Fua(e,t,r){for(var a=[],s=t[t.length-1],o=t[0],u;e.nodeCount();){for(;u=o.dequeue();)_at(e,t,r,u);for(;u=s.dequeue();)_at(e,t,r,u);if(e.nodeCount()){for(var h=t.length-2;h>0;--h)if(u=t[h].dequeue(),u){a=a.concat(_at(e,t,r,u,!0));break}}}return a}function _at(e,t,r,a,s){var o=s?[]:void 0;return Zt(e.inEdges(a.v),function(u){var h=e.edge(u),f=e.node(u.v);s&&o.push({v:u.v,w:u.w}),f.out-=h,ght(t,r,f)}),Zt(e.outEdges(a.v),function(u){var h=e.edge(u),f=u.w,p=e.node(f);p.in-=h,ght(t,r,p)}),e.removeNode(a.v),o}function $ua(e,t){var r=new F1,a=0,s=0;Zt(e.nodes(),function(h){r.setNode(h,{v:h,in:0,out:0})}),Zt(e.edges(),function(h){var f=r.edge(h.v,h.w)||0,p=t(h),m=f+p;r.setEdge(h.v,h.w,m),s=Math.max(s,r.node(h.v).out+=p),a=Math.max(a,r.node(h.w).in+=p)});var o=Uw(s+a+3).map(function(){return new Dua}),u=a+1;return Zt(r.nodes(),function(h){ght(o,u,r.node(h))}),{graph:r,buckets:o,zeroIdx:u}}function ght(e,t,r){r.out?r.in?e[r.out-r.in+t].enqueue(r):e[e.length-1].enqueue(r):e[0].enqueue(r)}function Uua(e){var t=e.graph().acyclicer==="greedy"?Bua(e,r(e)):zua(e);Zt(t,function(a){var s=e.edge(a);e.removeEdge(a),s.forwardName=a.name,s.reversed=!0,e.setEdge(a.w,a.v,s,P$("rev"))});function r(a){return function(s){return a.edge(s).weight}}}function zua(e){var t=[],r={},a={};function s(o){Ho(a,o)||(a[o]=!0,r[o]=!0,Zt(e.outEdges(o),function(u){Ho(r,u.w)?t.push(u):s(u.w)}),delete r[o])}return Zt(e.nodes(),s),t}function Gua(e){Zt(e.edges(),function(t){var r=e.edge(t);if(r.reversed){e.removeEdge(t);var a=r.forwardName;delete r.reversed,delete r.forwardName,e.setEdge(t.w,t.v,r,a)}})}function sK(e,t,r,a){var s;do s=P$(a);while(e.hasNode(s));return r.dummy=t,e.setNode(s,r),s}function qua(e){var t=new F1().setGraph(e.graph());return Zt(e.nodes(),function(r){t.setNode(r,e.node(r))}),Zt(e.edges(),function(r){var a=t.edge(r.v,r.w)||{weight:0,minlen:1},s=e.edge(r);t.setEdge(r.v,r.w,{weight:a.weight+s.weight,minlen:Math.max(a.minlen,s.minlen)})}),t}function rer(e){var t=new F1({multigraph:e.isMultigraph()}).setGraph(e.graph());return Zt(e.nodes(),function(r){e.children(r).length||t.setNode(r,e.node(r))}),Zt(e.edges(),function(r){t.setEdge(r,e.edge(r))}),t}function j5n(e,t){var r=e.x,a=e.y,s=t.x-r,o=t.y-a,u=e.width/2,h=e.height/2;if(!s&&!o)throw new Error("Not possible to find intersection inside of the rectangle");var f,p;return Math.abs(o)*u>Math.abs(s)*h?(o<0&&(h=-h),f=h*s/o,p=h):(s<0&&(u=-u),f=u,p=u*o/s),{x:r+f,y:a+p}}function b6e(e){var t=wo(Uw(ier(e)+1),function(){return[]});return Zt(e.nodes(),function(r){var a=e.node(r),s=a.rank;gl(s)||(t[s][a.order]=r)}),t}function Hua(e){var t=oT(wo(e.nodes(),function(r){return e.node(r).rank}));Zt(e.nodes(),function(r){var a=e.node(r);Ho(a,"rank")&&(a.rank-=t)})}function Vua(e){var t=oT(wo(e.nodes(),function(o){return e.node(o).rank})),r=[];Zt(e.nodes(),function(o){var u=e.node(o).rank-t;r[u]||(r[u]=[]),r[u].push(o)});var a=0,s=e.graph().nodeRankFactor;Zt(r,function(o,u){gl(o)&&u%s!==0?--a:a&&Zt(o,function(h){e.node(h).rank+=a})})}function W5n(e,t,r,a){var s={width:0,height:0};return arguments.length>=4&&(s.rank=r,s.order=a),sK(e,"border",s,t)}function ier(e){return i_(wo(e.nodes(),function(t){var r=e.node(t).rank;if(!gl(r))return r}))}function Yua(e,t){var r={lhs:[],rhs:[]};return Zt(e,function(a){t(a)?r.lhs.push(a):r.rhs.push(a)}),r}function jua(e,t){return t()}function Wua(e){function t(r){var a=e.children(r),s=e.node(r);if(a.length&&Zt(a,t),Ho(s,"minRank")){s.borderLeft=[],s.borderRight=[];for(var o=s.minRank,u=s.maxRank+1;ou.lim&&(h=u,f=!0);var p=Rp(t.edges(),function(m){return f===Q5n(e,e.node(m.v),h)&&f!==Q5n(e,e.node(m.w),h)});return YW(p,function(m){return yle(t,m)})}function fer(e,t,r,a){var s=r.v,o=r.w;e.removeEdge(s,o),e.setEdge(a.v,a.w,{}),$bt(e),Fbt(e,t),cha(e,t)}function cha(e,t){var r=VW(e.nodes(),function(s){return!t.node(s).parent}),a=oha(e,r);a=a.slice(1),Zt(a,function(s){var o=e.node(s).parent,u=t.edge(s,o),h=!1;u||(u=t.edge(o,s),h=!0),t.node(s).rank=t.node(o).rank+(h?u.minlen:-u.minlen)})}function uha(e,t,r){return e.hasEdge(t,r)}function Q5n(e,t,r){return r.low<=t.lim&&t.lim<=r.lim}function hha(e){switch(e.graph().ranker){case"network-simplex":Z5n(e);break;case"tight-tree":fha(e);break;case"longest-path":dha(e);break;default:Z5n(e)}}var dha=Bbt;function fha(e){Bbt(e),ser(e)}function Z5n(e){tU(e)}function pha(e){var t=sK(e,"root",{},"_root"),r=gha(e),a=i_(Ag(r))-1,s=2*a+1;e.graph().nestingRoot=t,Zt(e.edges(),function(u){e.edge(u).minlen*=s});var o=mha(e)+1;Zt(e.children(),function(u){per(e,t,s,o,a,r,u)}),e.graph().nodeRankFactor=s}function per(e,t,r,a,s,o,u){var h=e.children(u);if(!h.length){u!==t&&e.setEdge(t,u,{weight:0,minlen:r});return}var f=W5n(e,"_bt"),p=W5n(e,"_bb"),m=e.node(u);e.setParent(f,u),m.borderTop=f,e.setParent(p,u),m.borderBottom=p,Zt(h,function(b){per(e,t,r,a,s,o,b);var _=e.node(b),w=_.borderTop?_.borderTop:b,S=_.borderBottom?_.borderBottom:b,C=_.borderTop?a:2*a,A=w!==S?1:s-o[u]+1;e.setEdge(f,w,{weight:C,minlen:A,nestingEdge:!0}),e.setEdge(S,p,{weight:C,minlen:A,nestingEdge:!0})}),e.parent(u)||e.setEdge(t,f,{weight:0,minlen:s+o[u]})}function gha(e){var t={};function r(a,s){var o=e.children(a);o&&o.length&&Zt(o,function(u){r(u,s+1)}),t[a]=s}return Zt(e.children(),function(a){r(a,1)}),t}function mha(e){return TS(e.edges(),function(t,r){return t+e.edge(r).weight},0)}function bha(e){var t=e.graph();e.removeNode(t.nestingRoot),delete t.nestingRoot,Zt(e.edges(),function(r){var a=e.edge(r);a.nestingEdge&&e.removeEdge(r)})}function yha(e,t,r){var a={},s;Zt(r,function(o){for(var u=e.parent(o),h,f;u;){if(h=e.parent(u),h?(f=a[h],a[h]=u):(f=s,s=u),f&&f!==u){t.setEdge(f,u);return}u=h}})}function vha(e,t,r){var a=_ha(e),s=new F1({compound:!0}).setGraph({root:a}).setDefaultNodeLabel(function(o){return e.node(o)});return Zt(e.nodes(),function(o){var u=e.node(o),h=e.parent(o);(u.rank===t||u.minRank<=t&&t<=u.maxRank)&&(s.setNode(o),s.setParent(o,h||a),Zt(e[r](o),function(f){var p=f.v===o?f.w:f.v,m=s.edge(p,o),b=gl(m)?0:m.weight;s.setEdge(p,o,{weight:e.edge(f).weight+b})}),Ho(u,"minRank")&&s.setNode(o,{borderLeft:u.borderLeft[t],borderRight:u.borderRight[t]}))}),s}function _ha(e){for(var t;e.hasNode(t=P$("_root")););return t}function wha(e,t){for(var r=0,a=1;a0;)m%2&&(b+=h[m+1]),m=m-1>>1,h[m]+=p.weight;f+=p.weight*b})),f}function xha(e){var t={},r=Rp(e.nodes(),function(h){return!e.children(h).length}),a=i_(wo(r,function(h){return e.node(h).rank})),s=wo(Uw(a+1),function(){return[]});function o(h){if(!Ho(t,h)){t[h]=!0;var f=e.node(h);s[f.rank].push(h),Zt(e.successors(h),o)}}var u=PA(r,function(h){return e.node(h).rank});return Zt(u,o),s}function Sha(e,t){return wo(t,function(r){var a=e.inEdges(r);if(a.length){var s=TS(a,function(o,u){var h=e.edge(u),f=e.node(u.v);return{sum:o.sum+h.weight*f.order,weight:o.weight+h.weight}},{sum:0,weight:0});return{v:r,barycenter:s.sum/s.weight,weight:s.weight}}else return{v:r}})}function Tha(e,t){var r={};Zt(e,function(s,o){var u=r[s.v]={indegree:0,in:[],out:[],vs:[s.v],i:o};gl(s.barycenter)||(u.barycenter=s.barycenter,u.weight=s.weight)}),Zt(t.edges(),function(s){var o=r[s.v],u=r[s.w];!gl(o)&&!gl(u)&&(u.indegree++,o.out.push(r[s.w]))});var a=Rp(r,function(s){return!s.indegree});return Cha(a)}function Cha(e){var t=[];function r(o){return function(u){u.merged||(gl(u.barycenter)||gl(o.barycenter)||u.barycenter>=o.barycenter)&&Aha(o,u)}}function a(o){return function(u){u.in.push(o),--u.indegree===0&&e.push(u)}}for(;e.length;){var s=e.pop();t.push(s),Zt(s.in.reverse(),r(s)),Zt(s.out,a(s))}return wo(Rp(t,function(o){return!o.merged}),function(o){return lR(o,["vs","i","barycenter","weight"])})}function Aha(e,t){var r=0,a=0;e.weight&&(r+=e.barycenter*e.weight,a+=e.weight),t.weight&&(r+=t.barycenter*t.weight,a+=t.weight),e.vs=t.vs.concat(e.vs),e.barycenter=r/a,e.weight=a,e.i=Math.min(t.i,e.i),t.merged=!0}function kha(e,t){var r=Yua(e,function(m){return Ho(m,"barycenter")}),a=r.lhs,s=PA(r.rhs,function(m){return-m.i}),o=[],u=0,h=0,f=0;a.sort(Rha(!!t)),f=J5n(o,s,f),Zt(a,function(m){f+=m.vs.length,o.push(m.vs),u+=m.barycenter*m.weight,h+=m.weight,f=J5n(o,s,f)});var p={vs:MS(o)};return h&&(p.barycenter=u/h,p.weight=h),p}function J5n(e,t,r){for(var a;t.length&&(a=i9(t)).i<=r;)t.pop(),e.push(a.vs),r++;return r}function Rha(e){return function(t,r){return t.barycenterr.barycenter?1:e?r.i-t.i:t.i-r.i}}function ger(e,t,r,a){var s=e.children(t),o=e.node(t),u=o?o.borderLeft:void 0,h=o?o.borderRight:void 0,f={};u&&(s=Rp(s,function(S){return S!==u&&S!==h}));var p=Sha(e,s);Zt(p,function(S){if(e.children(S.v).length){var C=ger(e,S.v,r,a);f[S.v]=C,Ho(C,"barycenter")&&Nha(S,C)}});var m=Tha(p,r);Iha(m,f);var b=kha(m,a);if(u&&(b.vs=MS([u,b.vs,h]),e.predecessors(u).length)){var _=e.node(e.predecessors(u)[0]),w=e.node(e.predecessors(h)[0]);Ho(b,"barycenter")||(b.barycenter=0,b.weight=0),b.barycenter=(b.barycenter*b.weight+_.order+w.order)/(b.weight+2),b.weight+=2}return b}function Iha(e,t){Zt(e,function(r){r.vs=MS(r.vs.map(function(a){return t[a]?t[a].vs:a}))})}function Nha(e,t){gl(e.barycenter)?(e.barycenter=t.barycenter,e.weight=t.weight):(e.barycenter=(e.barycenter*e.weight+t.barycenter*t.weight)/(e.weight+t.weight),e.weight+=t.weight)}function Oha(e){var t=ier(e),r=eCn(e,Uw(1,t+1),"inEdges"),a=eCn(e,Uw(t-1,-1,-1),"outEdges"),s=xha(e);tCn(e,s);for(var o=Number.POSITIVE_INFINITY,u,h=0,f=0;f<4;++h,++f){Lha(h%2?r:a,h%4>=2),s=b6e(e);var p=wha(e,s);pu||h>t[f].lim));for(p=f,f=a;(f=e.parent(f))!==p;)o.push(f);return{path:s.concat(o.reverse()),lca:p}}function Pha(e){var t={},r=0;function a(s){var o=r;Zt(e.children(s),a),t[s]={low:o,lim:r++}}return Zt(e.children(),a),t}function Bha(e,t){var r={};function a(s,o){var u=0,h=0,f=s.length,p=i9(o);return Zt(o,function(m,b){var _=$ha(e,m),w=_?e.node(_).order:f;(_||m===p)&&(Zt(o.slice(h,b+1),function(S){Zt(e.predecessors(S),function(C){var A=e.node(C),k=A.order;(kp)&&mer(r,_,m)})})}function s(o,u){var h=-1,f,p=0;return Zt(u,function(m,b){if(e.node(m).dummy==="border"){var _=e.predecessors(m);_.length&&(f=e.node(_[0]).order,a(u,p,b,h,f),p=b,h=f)}a(u,p,u.length,f,o.length)}),u}return TS(t,s),r}function $ha(e,t){if(e.node(t).dummy)return VW(e.predecessors(t),function(r){return e.node(r).dummy})}function mer(e,t,r){if(t>r){var a=t;t=r,r=a}var s=e[t];s||(e[t]=s={}),s[r]=!0}function Uha(e,t,r){if(t>r){var a=t;t=r,r=a}return Ho(e[t],r)}function zha(e,t,r,a){var s={},o={},u={};return Zt(t,function(h){Zt(h,function(f,p){s[f]=f,o[f]=f,u[f]=p})}),Zt(t,function(h){var f=-1;Zt(h,function(p){var m=a(p);if(m.length){m=PA(m,function(C){return u[C]});for(var b=(m.length-1)/2,_=Math.floor(b),w=Math.ceil(b);_<=w;++_){var S=m[_];o[p]===p&&f0}function VA(e,t,r){var a=e.x,s=e.y,o=[],u=Number.POSITIVE_INFINITY,h=Number.POSITIVE_INFINITY;t.forEach(function(S){u=Math.min(u,S.x),h=Math.min(h,S.y)});for(var f=a-e.width/2-u,p=s-e.height/2-h,m=0;m1&&o.sort(function(S,C){var A=S.x-r.x,k=S.y-r.y,I=Math.sqrt(A*A+k*k),N=C.x-r.x,L=C.y-r.y,P=Math.sqrt(N*N+L*L);return IMath.abs(s)*h?(o<0&&(h=-h),f=o===0?0:h*s/o,p=h):(s<0&&(u=-u),f=u,p=s===0?0:u*o/s),{x:r+f,y:a+p}}var wht={rect:Hda,ellipse:Vda,circle:Yda,diamond:jda};function qda(e){wht=e}function Hda(e,t,r){var a=e.insert("rect",":first-child").attr("rx",r.rx).attr("ry",r.ry).attr("x",-t.width/2).attr("y",-t.height/2).attr("width",t.width).attr("height",t.height);return r.intersect=function(s){return Gbt(r,s)},a}function Vda(e,t,r){var a=t.width/2,s=t.height/2,o=e.insert("ellipse",":first-child").attr("x",-t.width/2).attr("y",-t.height/2).attr("rx",a).attr("ry",s);return r.intersect=function(u){return wer(r,a,s,u)},o}function Yda(e,t,r){var a=Math.max(t.width,t.height)/2,s=e.insert("circle",":first-child").attr("x",-t.width/2).attr("y",-t.height/2).attr("r",a);return r.intersect=function(o){return zda(r,a,o)},s}function jda(e,t,r){var a=t.width*Math.SQRT2/2,s=t.height*Math.SQRT2/2,o=[{x:0,y:-s},{x:-a,y:0},{x:0,y:s},{x:a,y:0}],u=e.insert("polygon",":first-child").attr("points",o.map(function(h){return h.x+","+h.y}).join(" "));return r.intersect=function(h){return VA(r,o,h)},u}function Wda(){var e=function(t,r){Qda(r);var a=_ie(t,"output"),s=_ie(a,"clusters"),o=_ie(a,"edgePaths"),u=yht(_ie(a,"edgeLabels"),r),h=_ht(_ie(a,"nodes"),r,wht);oK(r),Uda(h,r),$da(u,r),vht(o,r,mht);var f=bht(s,r);Fda(f,r),Zda(r)};return e.createNodes=function(t){return arguments.length?(Bda(t),e):_ht},e.createClusters=function(t){return arguments.length?(Rda(t),e):bht},e.createEdgeLabels=function(t){return arguments.length?(Ida(t),e):yht},e.createEdgePaths=function(t){return arguments.length?(Nda(t),e):vht},e.shapes=function(t){return arguments.length?(qda(t),e):wht},e.arrows=function(t){return arguments.length?(Eda(t),e):mht},e}var Kda={paddingLeft:10,paddingRight:10,paddingTop:10,paddingBottom:10,rx:0,ry:0,shape:"rect"},Xda={arrowhead:"normal",curve:Cg};function Qda(e){e.nodes().forEach(function(t){var r=e.node(t);!Ho(r,"label")&&!e.children(t).length&&(r.label=t),Ho(r,"paddingX")&&BB(r,{paddingLeft:r.paddingX,paddingRight:r.paddingX}),Ho(r,"paddingY")&&BB(r,{paddingTop:r.paddingY,paddingBottom:r.paddingY}),Ho(r,"padding")&&BB(r,{paddingLeft:r.padding,paddingRight:r.padding,paddingTop:r.padding,paddingBottom:r.padding}),BB(r,Kda),Zt(["paddingLeft","paddingRight","paddingTop","paddingBottom"],function(a){r[a]=Number(r[a])}),Ho(r,"width")&&(r._prevWidth=r.width),Ho(r,"height")&&(r._prevHeight=r.height)}),e.edges().forEach(function(t){var r=e.edge(t);Ho(r,"label")||(r.label=""),BB(r,Xda)})}function Zda(e){Zt(e.nodes(),function(t){var r=e.node(t);Ho(r,"_prevWidth")?r.width=r._prevWidth:delete r.width,Ho(r,"_prevHeight")?r.height=r._prevHeight:delete r.height,delete r._prevWidth,delete r._prevHeight})}function _ie(e,t){var r=e.select("g."+t);return r.empty()&&(r=e.append("g").attr("class",t)),r}function O7(e){var t={options:{directed:e.isDirected(),multigraph:e.isMultigraph(),compound:e.isCompound()},nodes:Jda(e),edges:efa(e)};return gl(e.graph())||(t.value=ZAe(e.graph())),t}function Jda(e){return wo(e.nodes(),function(t){var r=e.node(t),a=e.parent(t),s={v:t};return gl(r)||(s.value=r),gl(a)||(s.parent=a),s})}function efa(e){return wo(e.edges(),function(t){var r=e.edge(t),a={v:t.v,w:t.w};return gl(t.name)||(a.name=t.name),gl(r)||(a.value=r),a})}const tfa={};function nfa(e,t){const r=tfa,a=typeof r.includeImageAlt=="boolean"?r.includeImageAlt:!0,s=typeof r.includeHtml=="boolean"?r.includeHtml:!0;return Eer(e,a,s)}function Eer(e,t,r){if(rfa(e)){if("value"in e)return e.type==="html"&&!r?"":e.value;if(t&&"alt"in e&&e.alt)return e.alt;if("children"in e)return iCn(e.children,t,r)}return Array.isArray(e)?iCn(e,t,r):""}function iCn(e,t,r){const a=[];let s=-1;for(;++ss?0:s+t:t=t>s?s:t,r=r>0?r:0,a.length<1e4)u=Array.from(a),u.unshift(t,r),e.splice(...u);else for(r&&e.splice(t,r);o0?(SA(e,e.length,0,t),e):t}const aCn={}.hasOwnProperty;function ifa(e){const t={};let r=-1;for(;++ru))return;const F=t.events.length;let U=F,$,G;for(;U--;)if(t.events[U][0]==="exit"&&t.events[U][1].type==="chunkFlow"){if($){G=t.events[U][1].end;break}$=!0}for(k(a),M=F;MN;){const P=r[L];t.containerState=P[1],P[0].exit.call(t,e)}r.length=N}function I(){s.write([null]),o=void 0,s=void 0,t.containerState._closeFlow=void 0}}function bfa(e,t,r){return Zh(e,e.attempt(this.parser.constructs.document,t,r),"linePrefix",this.parser.constructs.disable.null.includes("codeIndented")?void 0:4)}function oCn(e){if(e===null||t_(e)||dfa(e))return 1;if(hfa(e))return 2}function qbt(e,t,r){const a=[];let s=-1;for(;++s1&&e[r][1].end.offset-e[r][1].start.offset>1?2:1;const b=Object.assign({},e[a][1].end),_=Object.assign({},e[r][1].start);lCn(b,-f),lCn(_,f),u={type:f>1?"strongSequence":"emphasisSequence",start:b,end:Object.assign({},e[a][1].end)},h={type:f>1?"strongSequence":"emphasisSequence",start:Object.assign({},e[r][1].start),end:_},o={type:f>1?"strongText":"emphasisText",start:Object.assign({},e[a][1].end),end:Object.assign({},e[r][1].start)},s={type:f>1?"strong":"emphasis",start:Object.assign({},u.start),end:Object.assign({},h.end)},e[a][1].end=Object.assign({},u.start),e[r][1].start=Object.assign({},h.end),p=[],e[a][1].end.offset-e[a][1].start.offset&&(p=eS(p,[["enter",e[a][1],t],["exit",e[a][1],t]])),p=eS(p,[["enter",s,t],["enter",u,t],["exit",u,t],["enter",o,t]]),p=eS(p,qbt(t.parser.constructs.insideSpan.null,e.slice(a+1,r),t)),p=eS(p,[["exit",o,t],["enter",h,t],["exit",h,t],["exit",s,t]]),e[r][1].end.offset-e[r][1].start.offset?(m=2,p=eS(p,[["enter",e[r][1],t],["exit",e[r][1],t]])):m=0,SA(e,a-1,r-a+3,p),r=a+p.length-m-2;break}}for(r=-1;++r0&&xu(M)?Zh(e,I,"linePrefix",o+1)(M):I(M)}function I(M){return M===null||$o(M)?e.check(cCn,C,L)(M):(e.enter("codeFlowValue"),N(M))}function N(M){return M===null||$o(M)?(e.exit("codeFlowValue"),I(M)):(e.consume(M),N)}function L(M){return e.exit("codeFenced"),t(M)}function P(M,F,U){let $=0;return G;function G(W){return M.enter("lineEnding"),M.consume(W),M.exit("lineEnding"),B}function B(W){return M.enter("codeFencedFence"),xu(W)?Zh(M,Z,"linePrefix",a.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(W):Z(W)}function Z(W){return W===h?(M.enter("codeFencedFenceSequence"),z(W)):U(W)}function z(W){return W===h?($++,M.consume(W),z):$>=u?(M.exit("codeFencedFenceSequence"),xu(W)?Zh(M,Y,"whitespace")(W):Y(W)):U(W)}function Y(W){return W===null||$o(W)?(M.exit("codeFencedFence"),F(W)):U(W)}}}function Rfa(e,t,r){const a=this;return s;function s(u){return u===null?r(u):(e.enter("lineEnding"),e.consume(u),e.exit("lineEnding"),o)}function o(u){return a.parser.lazy[a.now().line]?r(u):t(u)}}const Cat={name:"codeIndented",tokenize:Nfa},Ifa={tokenize:Ofa,partial:!0};function Nfa(e,t,r){const a=this;return s;function s(p){return e.enter("codeIndented"),Zh(e,o,"linePrefix",5)(p)}function o(p){const m=a.events[a.events.length-1];return m&&m[1].type==="linePrefix"&&m[2].sliceSerialize(m[1],!0).length>=4?u(p):r(p)}function u(p){return p===null?f(p):$o(p)?e.attempt(Ifa,u,f)(p):(e.enter("codeFlowValue"),h(p))}function h(p){return p===null||$o(p)?(e.exit("codeFlowValue"),u(p)):(e.consume(p),h)}function f(p){return e.exit("codeIndented"),t(p)}}function Ofa(e,t,r){const a=this;return s;function s(u){return a.parser.lazy[a.now().line]?r(u):$o(u)?(e.enter("lineEnding"),e.consume(u),e.exit("lineEnding"),s):Zh(e,o,"linePrefix",5)(u)}function o(u){const h=a.events[a.events.length-1];return h&&h[1].type==="linePrefix"&&h[2].sliceSerialize(h[1],!0).length>=4?t(u):$o(u)?s(u):r(u)}}const Lfa={name:"codeText",tokenize:Pfa,resolve:Dfa,previous:Mfa};function Dfa(e){let t=e.length-4,r=3,a,s;if((e[r][1].type==="lineEnding"||e[r][1].type==="space")&&(e[t][1].type==="lineEnding"||e[t][1].type==="space")){for(a=r;++a=4?t(u):e.interrupt(a.parser.constructs.flow,r,t)(u)}}function Aer(e,t,r,a,s,o,u,h,f){const p=f||Number.POSITIVE_INFINITY;let m=0;return b;function b(k){return k===60?(e.enter(a),e.enter(s),e.enter(o),e.consume(k),e.exit(o),_):k===null||k===32||k===41||Eht(k)?r(k):(e.enter(a),e.enter(u),e.enter(h),e.enter("chunkString",{contentType:"string"}),C(k))}function _(k){return k===62?(e.enter(o),e.consume(k),e.exit(o),e.exit(s),e.exit(a),t):(e.enter(h),e.enter("chunkString",{contentType:"string"}),w(k))}function w(k){return k===62?(e.exit("chunkString"),e.exit(h),_(k)):k===null||k===60||$o(k)?r(k):(e.consume(k),k===92?S:w)}function S(k){return k===60||k===62||k===92?(e.consume(k),w):w(k)}function C(k){return!m&&(k===null||k===41||t_(k))?(e.exit("chunkString"),e.exit(h),e.exit(u),e.exit(a),t(k)):m999||w===null||w===91||w===93&&!f||w===94&&!h&&"_hiddenFootnoteSupport"in u.parser.constructs?r(w):w===93?(e.exit(o),e.enter(s),e.consume(w),e.exit(s),e.exit(a),t):$o(w)?(e.enter("lineEnding"),e.consume(w),e.exit("lineEnding"),m):(e.enter("chunkString",{contentType:"string"}),b(w))}function b(w){return w===null||w===91||w===93||$o(w)||h++>999?(e.exit("chunkString"),m(w)):(e.consume(w),f||(f=!xu(w)),w===92?_:b)}function _(w){return w===91||w===92||w===93?(e.consume(w),h++,b):b(w)}}function Rer(e,t,r,a,s,o){let u;return h;function h(_){return _===34||_===39||_===40?(e.enter(a),e.enter(s),e.consume(_),e.exit(s),u=_===40?41:_,f):r(_)}function f(_){return _===u?(e.enter(s),e.consume(_),e.exit(s),e.exit(a),t):(e.enter(o),p(_))}function p(_){return _===u?(e.exit(o),f(u)):_===null?r(_):$o(_)?(e.enter("lineEnding"),e.consume(_),e.exit("lineEnding"),Zh(e,p,"linePrefix")):(e.enter("chunkString",{contentType:"string"}),m(_))}function m(_){return _===u||_===null||$o(_)?(e.exit("chunkString"),p(_)):(e.consume(_),_===92?b:m)}function b(_){return _===u||_===92?(e.consume(_),m):m(_)}}function Dse(e,t){let r;return a;function a(s){return $o(s)?(e.enter("lineEnding"),e.consume(s),e.exit("lineEnding"),r=!0,a):xu(s)?Zh(e,a,r?"linePrefix":"lineSuffix")(s):t(s)}}function uY(e){return e.replace(/[\t\n\r ]+/g," ").replace(/^ | $/g,"").toLowerCase().toUpperCase()}const qfa={name:"definition",tokenize:Vfa},Hfa={tokenize:Yfa,partial:!0};function Vfa(e,t,r){const a=this;let s;return o;function o(w){return e.enter("definition"),u(w)}function u(w){return ker.call(a,e,h,r,"definitionLabel","definitionLabelMarker","definitionLabelString")(w)}function h(w){return s=uY(a.sliceSerialize(a.events[a.events.length-1][1]).slice(1,-1)),w===58?(e.enter("definitionMarker"),e.consume(w),e.exit("definitionMarker"),f):r(w)}function f(w){return t_(w)?Dse(e,p)(w):p(w)}function p(w){return Aer(e,m,r,"definitionDestination","definitionDestinationLiteral","definitionDestinationLiteralMarker","definitionDestinationRaw","definitionDestinationString")(w)}function m(w){return e.attempt(Hfa,b,b)(w)}function b(w){return xu(w)?Zh(e,_,"whitespace")(w):_(w)}function _(w){return w===null||$o(w)?(e.exit("definition"),a.parser.defined.push(s),t(w)):r(w)}}function Yfa(e,t,r){return a;function a(h){return t_(h)?Dse(e,s)(h):r(h)}function s(h){return Rer(e,o,r,"definitionTitle","definitionTitleMarker","definitionTitleString")(h)}function o(h){return xu(h)?Zh(e,u,"whitespace")(h):u(h)}function u(h){return h===null||$o(h)?t(h):r(h)}}const jfa={name:"hardBreakEscape",tokenize:Wfa};function Wfa(e,t,r){return a;function a(o){return e.enter("hardBreakEscape"),e.consume(o),s}function s(o){return $o(o)?(e.exit("hardBreakEscape"),t(o)):r(o)}}const Kfa={name:"headingAtx",tokenize:Qfa,resolve:Xfa};function Xfa(e,t){let r=e.length-2,a=3,s,o;return e[a][1].type==="whitespace"&&(a+=2),r-2>a&&e[r][1].type==="whitespace"&&(r-=2),e[r][1].type==="atxHeadingSequence"&&(a===r-1||r-4>a&&e[r-2][1].type==="whitespace")&&(r-=a+1===r?2:4),r>a&&(s={type:"atxHeadingText",start:e[a][1].start,end:e[r][1].end},o={type:"chunkText",start:e[a][1].start,end:e[r][1].end,contentType:"text"},SA(e,a,r-a+1,[["enter",s,t],["enter",o,t],["exit",o,t],["exit",s,t]])),e}function Qfa(e,t,r){let a=0;return s;function s(m){return e.enter("atxHeading"),o(m)}function o(m){return e.enter("atxHeadingSequence"),u(m)}function u(m){return m===35&&a++<6?(e.consume(m),u):m===null||t_(m)?(e.exit("atxHeadingSequence"),h(m)):r(m)}function h(m){return m===35?(e.enter("atxHeadingSequence"),f(m)):m===null||$o(m)?(e.exit("atxHeading"),t(m)):xu(m)?Zh(e,h,"whitespace")(m):(e.enter("atxHeadingText"),p(m))}function f(m){return m===35?(e.consume(m),f):(e.exit("atxHeadingSequence"),h(m))}function p(m){return m===null||m===35||t_(m)?(e.exit("atxHeadingText"),h(m)):(e.consume(m),p)}}const Zfa=["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","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],hCn=["pre","script","style","textarea"],Jfa={name:"htmlFlow",tokenize:r0a,resolveTo:n0a,concrete:!0},e0a={tokenize:a0a,partial:!0},t0a={tokenize:i0a,partial:!0};function n0a(e){let t=e.length;for(;t--&&!(e[t][0]==="enter"&&e[t][1].type==="htmlFlow"););return t>1&&e[t-2][1].type==="linePrefix"&&(e[t][1].start=e[t-2][1].start,e[t+1][1].start=e[t-2][1].start,e.splice(t-2,2)),e}function r0a(e,t,r){const a=this;let s,o,u,h,f;return p;function p(ie){return m(ie)}function m(ie){return e.enter("htmlFlow"),e.enter("htmlFlowData"),e.consume(ie),b}function b(ie){return ie===33?(e.consume(ie),_):ie===47?(e.consume(ie),o=!0,C):ie===63?(e.consume(ie),s=3,a.interrupt?t:te):qC(ie)?(e.consume(ie),u=String.fromCharCode(ie),A):r(ie)}function _(ie){return ie===45?(e.consume(ie),s=2,w):ie===91?(e.consume(ie),s=5,h=0,S):qC(ie)?(e.consume(ie),s=4,a.interrupt?t:te):r(ie)}function w(ie){return ie===45?(e.consume(ie),a.interrupt?t:te):r(ie)}function S(ie){const ge="CDATA[";return ie===ge.charCodeAt(h++)?(e.consume(ie),h===ge.length?a.interrupt?t:Z:S):r(ie)}function C(ie){return qC(ie)?(e.consume(ie),u=String.fromCharCode(ie),A):r(ie)}function A(ie){if(ie===null||ie===47||ie===62||t_(ie)){const ge=ie===47,ce=u.toLowerCase();return!ge&&!o&&hCn.includes(ce)?(s=1,a.interrupt?t(ie):Z(ie)):Zfa.includes(u.toLowerCase())?(s=6,ge?(e.consume(ie),k):a.interrupt?t(ie):Z(ie)):(s=7,a.interrupt&&!a.parser.lazy[a.now().line]?r(ie):o?I(ie):N(ie))}return ie===45||G3(ie)?(e.consume(ie),u+=String.fromCharCode(ie),A):r(ie)}function k(ie){return ie===62?(e.consume(ie),a.interrupt?t:Z):r(ie)}function I(ie){return xu(ie)?(e.consume(ie),I):G(ie)}function N(ie){return ie===47?(e.consume(ie),G):ie===58||ie===95||qC(ie)?(e.consume(ie),L):xu(ie)?(e.consume(ie),N):G(ie)}function L(ie){return ie===45||ie===46||ie===58||ie===95||G3(ie)?(e.consume(ie),L):P(ie)}function P(ie){return ie===61?(e.consume(ie),M):xu(ie)?(e.consume(ie),P):N(ie)}function M(ie){return ie===null||ie===60||ie===61||ie===62||ie===96?r(ie):ie===34||ie===39?(e.consume(ie),f=ie,F):xu(ie)?(e.consume(ie),M):U(ie)}function F(ie){return ie===f?(e.consume(ie),f=null,$):ie===null||$o(ie)?r(ie):(e.consume(ie),F)}function U(ie){return ie===null||ie===34||ie===39||ie===47||ie===60||ie===61||ie===62||ie===96||t_(ie)?P(ie):(e.consume(ie),U)}function $(ie){return ie===47||ie===62||xu(ie)?N(ie):r(ie)}function G(ie){return ie===62?(e.consume(ie),B):r(ie)}function B(ie){return ie===null||$o(ie)?Z(ie):xu(ie)?(e.consume(ie),B):r(ie)}function Z(ie){return ie===45&&s===2?(e.consume(ie),Q):ie===60&&s===1?(e.consume(ie),V):ie===62&&s===4?(e.consume(ie),ne):ie===63&&s===3?(e.consume(ie),te):ie===93&&s===5?(e.consume(ie),ee):$o(ie)&&(s===6||s===7)?(e.exit("htmlFlowData"),e.check(e0a,se,z)(ie)):ie===null||$o(ie)?(e.exit("htmlFlowData"),z(ie)):(e.consume(ie),Z)}function z(ie){return e.check(t0a,Y,se)(ie)}function Y(ie){return e.enter("lineEnding"),e.consume(ie),e.exit("lineEnding"),W}function W(ie){return ie===null||$o(ie)?z(ie):(e.enter("htmlFlowData"),Z(ie))}function Q(ie){return ie===45?(e.consume(ie),te):Z(ie)}function V(ie){return ie===47?(e.consume(ie),u="",j):Z(ie)}function j(ie){if(ie===62){const ge=u.toLowerCase();return hCn.includes(ge)?(e.consume(ie),ne):Z(ie)}return qC(ie)&&u.length<8?(e.consume(ie),u+=String.fromCharCode(ie),j):Z(ie)}function ee(ie){return ie===93?(e.consume(ie),te):Z(ie)}function te(ie){return ie===62?(e.consume(ie),ne):ie===45&&s===2?(e.consume(ie),te):Z(ie)}function ne(ie){return ie===null||$o(ie)?(e.exit("htmlFlowData"),se(ie)):(e.consume(ie),ne)}function se(ie){return e.exit("htmlFlow"),t(ie)}}function i0a(e,t,r){const a=this;return s;function s(u){return $o(u)?(e.enter("lineEnding"),e.consume(u),e.exit("lineEnding"),o):r(u)}function o(u){return a.parser.lazy[a.now().line]?r(u):t(u)}}function a0a(e,t,r){return a;function a(s){return e.enter("lineEnding"),e.consume(s),e.exit("lineEnding"),e.attempt(y6e,t,r)}}const s0a={name:"htmlText",tokenize:o0a};function o0a(e,t,r){const a=this;let s,o,u;return h;function h(te){return e.enter("htmlText"),e.enter("htmlTextData"),e.consume(te),f}function f(te){return te===33?(e.consume(te),p):te===47?(e.consume(te),P):te===63?(e.consume(te),N):qC(te)?(e.consume(te),U):r(te)}function p(te){return te===45?(e.consume(te),m):te===91?(e.consume(te),o=0,S):qC(te)?(e.consume(te),I):r(te)}function m(te){return te===45?(e.consume(te),w):r(te)}function b(te){return te===null?r(te):te===45?(e.consume(te),_):$o(te)?(u=b,V(te)):(e.consume(te),b)}function _(te){return te===45?(e.consume(te),w):b(te)}function w(te){return te===62?Q(te):te===45?_(te):b(te)}function S(te){const ne="CDATA[";return te===ne.charCodeAt(o++)?(e.consume(te),o===ne.length?C:S):r(te)}function C(te){return te===null?r(te):te===93?(e.consume(te),A):$o(te)?(u=C,V(te)):(e.consume(te),C)}function A(te){return te===93?(e.consume(te),k):C(te)}function k(te){return te===62?Q(te):te===93?(e.consume(te),k):C(te)}function I(te){return te===null||te===62?Q(te):$o(te)?(u=I,V(te)):(e.consume(te),I)}function N(te){return te===null?r(te):te===63?(e.consume(te),L):$o(te)?(u=N,V(te)):(e.consume(te),N)}function L(te){return te===62?Q(te):N(te)}function P(te){return qC(te)?(e.consume(te),M):r(te)}function M(te){return te===45||G3(te)?(e.consume(te),M):F(te)}function F(te){return $o(te)?(u=F,V(te)):xu(te)?(e.consume(te),F):Q(te)}function U(te){return te===45||G3(te)?(e.consume(te),U):te===47||te===62||t_(te)?$(te):r(te)}function $(te){return te===47?(e.consume(te),Q):te===58||te===95||qC(te)?(e.consume(te),G):$o(te)?(u=$,V(te)):xu(te)?(e.consume(te),$):Q(te)}function G(te){return te===45||te===46||te===58||te===95||G3(te)?(e.consume(te),G):B(te)}function B(te){return te===61?(e.consume(te),Z):$o(te)?(u=B,V(te)):xu(te)?(e.consume(te),B):$(te)}function Z(te){return te===null||te===60||te===61||te===62||te===96?r(te):te===34||te===39?(e.consume(te),s=te,z):$o(te)?(u=Z,V(te)):xu(te)?(e.consume(te),Z):(e.consume(te),Y)}function z(te){return te===s?(e.consume(te),s=void 0,W):te===null?r(te):$o(te)?(u=z,V(te)):(e.consume(te),z)}function Y(te){return te===null||te===34||te===39||te===60||te===61||te===96?r(te):te===47||te===62||t_(te)?$(te):(e.consume(te),Y)}function W(te){return te===47||te===62||t_(te)?$(te):r(te)}function Q(te){return te===62?(e.consume(te),e.exit("htmlTextData"),e.exit("htmlText"),t):r(te)}function V(te){return e.exit("htmlTextData"),e.enter("lineEnding"),e.consume(te),e.exit("lineEnding"),j}function j(te){return xu(te)?Zh(e,ee,"linePrefix",a.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(te):ee(te)}function ee(te){return e.enter("htmlTextData"),u(te)}}const Hbt={name:"labelEnd",tokenize:f0a,resolveTo:d0a,resolveAll:h0a},l0a={tokenize:p0a},c0a={tokenize:g0a},u0a={tokenize:m0a};function h0a(e){let t=-1;for(;++t=3&&(p===null||$o(p))?(e.exit("thematicBreak"),t(p)):r(p)}function f(p){return p===s?(e.consume(p),a++,f):(e.exit("thematicBreakSequence"),xu(p)?Zh(e,h,"whitespace")(p):h(p))}}const I2={name:"list",tokenize:T0a,continuation:{tokenize:C0a},exit:k0a},x0a={tokenize:R0a,partial:!0},S0a={tokenize:A0a,partial:!0};function T0a(e,t,r){const a=this,s=a.events[a.events.length-1];let o=s&&s[1].type==="linePrefix"?s[2].sliceSerialize(s[1],!0).length:0,u=0;return h;function h(w){const S=a.containerState.type||(w===42||w===43||w===45?"listUnordered":"listOrdered");if(S==="listUnordered"?!a.containerState.marker||w===a.containerState.marker:xht(w)){if(a.containerState.type||(a.containerState.type=S,e.enter(S,{_container:!0})),S==="listUnordered")return e.enter("listItemPrefix"),w===42||w===45?e.check(lSe,r,p)(w):p(w);if(!a.interrupt||w===49)return e.enter("listItemPrefix"),e.enter("listItemValue"),f(w)}return r(w)}function f(w){return xht(w)&&++u<10?(e.consume(w),f):(!a.interrupt||u<2)&&(a.containerState.marker?w===a.containerState.marker:w===41||w===46)?(e.exit("listItemValue"),p(w)):r(w)}function p(w){return e.enter("listItemMarker"),e.consume(w),e.exit("listItemMarker"),a.containerState.marker=a.containerState.marker||w,e.check(y6e,a.interrupt?r:m,e.attempt(x0a,_,b))}function m(w){return a.containerState.initialBlankLine=!0,o++,_(w)}function b(w){return xu(w)?(e.enter("listItemPrefixWhitespace"),e.consume(w),e.exit("listItemPrefixWhitespace"),_):r(w)}function _(w){return a.containerState.size=o+a.sliceSerialize(e.exit("listItemPrefix"),!0).length,t(w)}}function C0a(e,t,r){const a=this;return a.containerState._closeFlow=void 0,e.check(y6e,s,o);function s(h){return a.containerState.furtherBlankLines=a.containerState.furtherBlankLines||a.containerState.initialBlankLine,Zh(e,t,"listItemIndent",a.containerState.size+1)(h)}function o(h){return a.containerState.furtherBlankLines||!xu(h)?(a.containerState.furtherBlankLines=void 0,a.containerState.initialBlankLine=void 0,u(h)):(a.containerState.furtherBlankLines=void 0,a.containerState.initialBlankLine=void 0,e.attempt(S0a,t,u)(h))}function u(h){return a.containerState._closeFlow=!0,a.interrupt=void 0,Zh(e,e.attempt(I2,t,r),"linePrefix",a.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(h)}}function A0a(e,t,r){const a=this;return Zh(e,s,"listItemIndent",a.containerState.size+1);function s(o){const u=a.events[a.events.length-1];return u&&u[1].type==="listItemIndent"&&u[2].sliceSerialize(u[1],!0).length===a.containerState.size?t(o):r(o)}}function k0a(e){e.exit(this.containerState.type)}function R0a(e,t,r){const a=this;return Zh(e,s,"listItemPrefixWhitespace",a.parser.constructs.disable.null.includes("codeIndented")?void 0:5);function s(o){const u=a.events[a.events.length-1];return!xu(o)&&u&&u[1].type==="listItemPrefixWhitespace"?t(o):r(o)}}const dCn={name:"setextUnderline",tokenize:N0a,resolveTo:I0a};function I0a(e,t){let r=e.length,a,s,o;for(;r--;)if(e[r][0]==="enter"){if(e[r][1].type==="content"){a=r;break}e[r][1].type==="paragraph"&&(s=r)}else e[r][1].type==="content"&&e.splice(r,1),!o&&e[r][1].type==="definition"&&(o=r);const u={type:"setextHeading",start:Object.assign({},e[s][1].start),end:Object.assign({},e[e.length-1][1].end)};return e[s][1].type="setextHeadingText",o?(e.splice(s,0,["enter",u,t]),e.splice(o+1,0,["exit",e[a][1],t]),e[a][1].end=Object.assign({},e[o][1].end)):e[a][1]=u,e.push(["exit",u,t]),e}function N0a(e,t,r){const a=this;let s;return o;function o(p){let m=a.events.length,b;for(;m--;)if(a.events[m][1].type!=="lineEnding"&&a.events[m][1].type!=="linePrefix"&&a.events[m][1].type!=="content"){b=a.events[m][1].type==="paragraph";break}return!a.parser.lazy[a.now().line]&&(a.interrupt||b)?(e.enter("setextHeadingLine"),s=p,u(p)):r(p)}function u(p){return e.enter("setextHeadingLineSequence"),h(p)}function h(p){return p===s?(e.consume(p),h):(e.exit("setextHeadingLineSequence"),xu(p)?Zh(e,f,"lineSuffix")(p):f(p))}function f(p){return p===null||$o(p)?(e.exit("setextHeadingLine"),t(p)):r(p)}}const O0a={tokenize:L0a};function L0a(e){const t=this,r=e.attempt(y6e,a,e.attempt(this.parser.constructs.flowInitial,s,Zh(e,e.attempt(this.parser.constructs.flow,s,e.attempt(Ffa,s)),"linePrefix")));return r;function a(o){if(o===null){e.consume(o);return}return e.enter("lineEndingBlank"),e.consume(o),e.exit("lineEndingBlank"),t.currentConstruct=void 0,r}function s(o){if(o===null){e.consume(o);return}return e.enter("lineEnding"),e.consume(o),e.exit("lineEnding"),t.currentConstruct=void 0,r}}const D0a={resolveAll:Ner()},M0a=Ier("string"),P0a=Ier("text");function Ier(e){return{tokenize:t,resolveAll:Ner(e==="text"?B0a:void 0)};function t(r){const a=this,s=this.parser.constructs[e],o=r.attempt(s,u,h);return u;function u(m){return p(m)?o(m):h(m)}function h(m){if(m===null){r.consume(m);return}return r.enter("data"),r.consume(m),f}function f(m){return p(m)?(r.exit("data"),o(m)):(r.consume(m),f)}function p(m){if(m===null)return!0;const b=s[m];let _=-1;if(b)for(;++_-1){const h=u[0];typeof h=="string"?u[0]=h.slice(a):u.shift()}o>0&&u.push(e[s].slice(0,o))}return u}function U0a(e,t){let r=-1;const a=[];let s;for(;++r13&&r<32||r>126&&r<160||r>55295&&r<57344||r>64975&&r<65008||(r&65535)===65535||(r&65535)===65534||r>1114111?"�":String.fromCharCode(r)}const e1a=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function t1a(e){return e.replace(e1a,n1a)}function n1a(e,t,r){if(t)return t;if(r.charCodeAt(0)===35){const s=r.charCodeAt(1),o=s===120||s===88;return Oer(r.slice(o?2:1),o?16:10)}return _ft(r)||e}function cSe(e){return!e||typeof e!="object"?"":"position"in e||"type"in e?pCn(e.position):"start"in e||"end"in e?pCn(e):"line"in e||"column"in e?Tht(e):""}function Tht(e){return gCn(e&&e.line)+":"+gCn(e&&e.column)}function pCn(e){return Tht(e&&e.start)+"-"+Tht(e&&e.end)}function gCn(e){return e&&typeof e=="number"?e:1}const Ler={}.hasOwnProperty,Der=function(e,t,r){return typeof t!="string"&&(r=t,t=void 0),r1a(r)(J0a(Q0a(r).document().write(Z0a()(e,t,!0))))};function r1a(e){const t={transforms:[],canContainEols:["emphasis","fragment","heading","paragraph","strong"],enter:{autolink:h(ot),autolinkProtocol:B,autolinkEmail:B,atxHeading:h(Fe),blockQuote:h(he),characterEscape:B,characterReference:B,codeFenced:h(we),codeFencedFenceInfo:f,codeFencedFenceMeta:f,codeIndented:h(we,f),codeText:h(Ce,f),codeTextData:B,data:B,codeFlowValue:B,definition:h(Ie),definitionDestinationString:f,definitionLabelString:f,definitionTitleString:f,emphasis:h(Le),hardBreakEscape:h(Ve),hardBreakTrailing:h(Ve),htmlFlow:h(Oe,f),htmlFlowData:B,htmlText:h(Oe,f),htmlTextData:B,image:h(Dt),label:f,link:h(ot),listItem:h(Kt),listItemValue:S,listOrdered:h(sn,w),listUnordered:h(sn),paragraph:h(Ft),reference:ce,referenceString:f,resourceDestinationString:f,resourceTitleString:f,setextHeading:h(Fe),strong:h(Je),thematicBreak:h(et)},exit:{atxHeading:m(),atxHeadingSequence:F,autolink:m(),autolinkEmail:Ee,autolinkProtocol:ye,blockQuote:m(),characterEscapeValue:Z,characterReferenceMarkerHexadecimal:ve,characterReferenceMarkerNumeric:ve,characterReferenceValue:De,codeFenced:m(I),codeFencedFence:k,codeFencedFenceInfo:C,codeFencedFenceMeta:A,codeFlowValue:Z,codeIndented:m(N),codeText:m(V),codeTextData:Z,data:Z,definition:m(),definitionDestinationString:M,definitionLabelString:L,definitionTitleString:P,emphasis:m(),hardBreakEscape:m(Y),hardBreakTrailing:m(Y),htmlFlow:m(W),htmlFlowData:Z,htmlText:m(Q),htmlTextData:Z,image:m(ee),label:ne,labelText:te,lineEnding:z,link:m(j),listItem:m(),listOrdered:m(),listUnordered:m(),paragraph:m(),referenceString:be,resourceDestinationString:se,resourceTitleString:ie,resource:ge,setextHeading:m(G),setextHeadingLineSequence:$,setextHeadingText:U,strong:m(),thematicBreak:m()}};Mer(t,(e||{}).mdastExtensions||[]);const r={};return a;function a(qe){let He={type:"root",children:[]};const Ge={stack:[He],tokenStack:[],config:t,enter:p,exit:b,buffer:f,resume:_,setData:o,getData:u},Ye=[];let Ae=-1;for(;++Ae0){const Xe=Ge.tokenStack[Ge.tokenStack.length-1];(Xe[1]||mCn).call(Ge,void 0,Xe[0])}for(He.position={start:$N(qe.length>0?qe[0][1].start:{line:1,column:1,offset:0}),end:$N(qe.length>0?qe[qe.length-2][1].end:{line:1,column:1,offset:0})},Ae=-1;++Ae{m!==0&&(s++,a.push([])),p.split(" ").forEach(b=>{b&&a[s].push({content:b,type:h})})}):(u.type==="strong"||u.type==="emphasis")&&u.children.forEach(f=>{o(f,u.type)})}return r.forEach(u=>{u.type==="paragraph"&&u.children.forEach(h=>{o(h)})}),a}function o1a(e){const{children:t}=Der(e);function r(a){return a.type==="text"?a.value.replace(/\n/g,"
    "):a.type==="strong"?`${a.children.map(r).join("")}`:a.type==="emphasis"?`${a.children.map(r).join("")}`:a.type==="paragraph"?`

    ${a.children.map(r).join("")}

    `:`Unsupported markdown: ${a.type}`}return t.map(r).join("")}function l1a(e){return Intl.Segmenter?[...new Intl.Segmenter().segment(e)].map(t=>t.segment):[...e]}function c1a(e,t){const r=l1a(t.content);return Per(e,[],r,t.type)}function Per(e,t,r,a){if(r.length===0)return[{content:t.join(""),type:a},{content:"",type:a}];const[s,...o]=r,u=[...t,s];return e([{content:u.join(""),type:a}])?Per(e,u,o,a):(t.length===0&&s&&(t.push(s),r.shift()),[{content:t.join(""),type:a},{content:r.join(""),type:a}])}function u1a(e,t){if(e.some(({content:r})=>r.includes(` +`)))throw new Error("splitLineToFitWidth does not support newlines in the line");return Cht(e,t)}function Cht(e,t,r=[],a=[]){if(e.length===0)return a.length>0&&r.push(a),r.length>0?r:[];let s="";e[0].content===" "&&(s=" ",e.shift());const o=e.shift()??{content:" ",type:"normal"},u=[...a];if(s!==""&&u.push({content:s,type:"normal"}),u.push(o),t(u))return Cht(e,t,r,u);if(a.length>0)r.push(a),e.unshift(o);else if(o.content){const[h,f]=c1a(t,o);r.push([h]),f.content&&e.unshift(f)}return Cht(e,t,r)}function h1a(e,t){t&&e.attr("style",t)}function d1a(e,t,r,a,s=!1){const o=e.append("foreignObject"),u=o.append("xhtml:div"),h=t.label,f=t.isNode?"nodeLabel":"edgeLabel";u.html(` + "+h+""),h1a(u,t.labelStyle),u.style("display","table-cell"),u.style("white-space","nowrap"),u.style("max-width",r+"px"),u.attr("xmlns","http://www.w3.org/1999/xhtml"),s&&u.attr("class","labelBkg");let p=u.node().getBoundingClientRect();return p.width===r&&(u.style("display","table"),u.style("white-space","break-spaces"),u.style("width",r+"px"),p=u.node().getBoundingClientRect()),o.style("width",p.width),o.style("height",p.height),o.node()}function Vbt(e,t,r){return e.append("tspan").attr("class","text-outer-tspan").attr("x",0).attr("y",t*r-.1+"em").attr("dy",r+"em")}function f1a(e,t,r){const a=e.append("text"),s=Vbt(a,1,t);Ybt(s,r);const o=s.node().getComputedTextLength();return a.remove(),o}function p1a(e,t,r){var a;const s=e.append("text"),o=Vbt(s,1,t);Ybt(o,[{content:r,type:"normal"}]);const u=(a=o.node())==null?void 0:a.getBoundingClientRect();return u&&s.remove(),u}function g1a(e,t,r,a=!1){const o=t.append("g"),u=o.insert("rect").attr("class","background"),h=o.append("text").attr("y","-10.1");let f=0;for(const p of r){const m=_=>f1a(o,1.1,_)<=e,b=m(p)?[p]:u1a(p,m);for(const _ of b){const w=Vbt(h,f,1.1);Ybt(w,_),f++}}if(a){const p=h.node().getBBox(),m=2;return u.attr("x",-m).attr("y",-m).attr("width",p.width+2*m).attr("height",p.height+2*m),o.node()}else return h.node()}function Ybt(e,t){e.text(""),t.forEach((r,a)=>{const s=e.append("tspan").attr("font-style",r.type==="emphasis"?"italic":"normal").attr("class","text-inner-tspan").attr("font-weight",r.type==="strong"?"bold":"normal");a===0?s.text(r.content):s.text(" "+r.content)})}const v6e=(e,t="",{style:r="",isTitle:a=!1,classes:s="",useHtmlLabels:o=!0,isNode:u=!0,width:h=200,addSvgBackground:f=!1}={})=>{if(ut.info("createText",t,r,a,s,o,u,f),o){const p=o1a(t),m={isNode:u,label:ple(p).replace(/fa[blrs]?:fa-[\w-]+/g,_=>``),labelStyle:r.replace("fill:","color:")};return d1a(e,m,h,s,f)}else{const p=s1a(t);return g1a(h,e,p,f)}},m1a=(e,t,r,a)=>{t.forEach(s=>{C1a[s](e,r,a)})},b1a=(e,t,r)=>{ut.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")},y1a=(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")},v1a=(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")},_1a=(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")},w1a=(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("stroke","black").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("stroke","black").attr("fill","transparent").attr("cx",7).attr("cy",7).attr("r",6)},E1a=(e,t,r)=>{e.append("marker").attr("id",r+"_"+t+"-pointEnd").attr("class","marker "+t).attr("viewBox","0 0 10 10").attr("refX",6).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).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",12).attr("markerHeight",12).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")},x1a=(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")},S1a=(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")},T1a=(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","strokeWidth").attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},C1a={extension:b1a,composition:y1a,aggregation:v1a,dependency:_1a,lollipop:w1a,point:E1a,circle:x1a,cross:S1a,barb:T1a},jbt=m1a;function A1a(e,t){t&&e.attr("style",t)}function k1a(e){const t=gn(document.createElementNS("http://www.w3.org/2000/svg","foreignObject")),r=t.append("xhtml:div"),a=e.label,s=e.isNode?"nodeLabel":"edgeLabel";return r.html('"+a+""),A1a(r,e.labelStyle),r.style("display","inline-block"),r.style("white-space","nowrap"),r.attr("xmlns","http://www.w3.org/1999/xhtml"),t.node()}const R1a=(e,t,r,a)=>{let s=e||"";if(typeof s=="object"&&(s=s[0]),Np(Qt().flowchart.htmlLabels)){s=s.replace(/\\n|\n/g,"
    "),ut.debug("vertexText"+s);const o={isNode:a,label:ple(s).replace(/fa[blrs]?:fa-[\w-]+/g,h=>``),labelStyle:t.replace("fill:","color:")};return k1a(o)}else{const o=document.createElementNS("http://www.w3.org/2000/svg","text");o.setAttribute("style",t.replace("color:","fill:"));let u=[];typeof s=="string"?u=s.split(/\\n|\n|/gi):Array.isArray(s)?u=s:u=[];for(const h of u){const f=document.createElementNS("http://www.w3.org/2000/svg","tspan");f.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),f.setAttribute("dy","1em"),f.setAttribute("x","0"),r?f.setAttribute("class","title-row"):f.setAttribute("class","row"),f.textContent=h.trim(),o.appendChild(f)}return o}},q2=R1a,Up=async(e,t,r,a)=>{let s;const o=t.useHtmlLabels||Np(Qt().flowchart.htmlLabels);r?s=r:s="node default";const u=e.insert("g").attr("class",s).attr("id",t.domId||t.id),h=u.insert("g").attr("class","label").attr("style",t.labelStyle);let f;t.labelText===void 0?f="":f=typeof t.labelText=="string"?t.labelText:t.labelText[0];const p=h.node();let m;t.labelType==="markdown"?m=v6e(h,J0(ple(f),Qt()),{useHtmlLabels:o,width:t.width||Qt().flowchart.wrappingWidth,classes:"markdown-node-label"}):m=p.appendChild(q2(J0(ple(f),Qt()),t.labelStyle,!1,a));let b=m.getBBox();const _=t.padding/2;if(Np(Qt().flowchart.htmlLabels)){const w=m.children[0],S=gn(m),C=w.getElementsByTagName("img");if(C){const A=f.replace(/]*>/g,"").trim()==="";await Promise.all([...C].map(k=>new Promise(I=>{function N(){if(k.style.display="flex",k.style.flexDirection="column",A){const L=Qt().fontSize?Qt().fontSize:window.getComputedStyle(document.body).fontSize,M=parseInt(L,10)*5+"px";k.style.minWidth=M,k.style.maxWidth=M}else k.style.width="100%";I(k)}setTimeout(()=>{k.complete&&N()}),k.addEventListener("error",N),k.addEventListener("load",N)})))}b=w.getBoundingClientRect(),S.attr("width",b.width),S.attr("height",b.height)}return o?h.attr("transform","translate("+-b.width/2+", "+-b.height/2+")"):h.attr("transform","translate(0, "+-b.height/2+")"),t.centerLabel&&h.attr("transform","translate("+-b.width/2+", "+-b.height/2+")"),h.insert("rect",":first-child"),{shapeSvg:u,bbox:b,halfPadding:_,label:h}},Df=(e,t)=>{const r=t.node().getBBox();e.width=r.width,e.height=r.height};function YA(e,t,r,a){return e.insert("polygon",":first-child").attr("points",a.map(function(s){return s.x+","+s.y}).join(" ")).attr("class","label-container").attr("transform","translate("+-t/2+","+r/2+")")}function I1a(e,t){return e.intersect(t)}function Ber(e,t,r,a){var s=e.x,o=e.y,u=s-a.x,h=o-a.y,f=Math.sqrt(t*t*h*h+r*r*u*u),p=Math.abs(t*r*u/f);a.x0}function L1a(e,t,r){var a=e.x,s=e.y,o=[],u=Number.POSITIVE_INFINITY,h=Number.POSITIVE_INFINITY;typeof t.forEach=="function"?t.forEach(function(S){u=Math.min(u,S.x),h=Math.min(h,S.y)}):(u=Math.min(u,t.x),h=Math.min(h,t.y));for(var f=a-e.width/2-u,p=s-e.height/2-h,m=0;m1&&o.sort(function(S,C){var A=S.x-r.x,k=S.y-r.y,I=Math.sqrt(A*A+k*k),N=C.x-r.x,L=C.y-r.y,P=Math.sqrt(N*N+L*L);return I{var r=e.x,a=e.y,s=t.x-r,o=t.y-a,u=e.width/2,h=e.height/2,f,p;return Math.abs(o)*u>Math.abs(s)*h?(o<0&&(h=-h),f=o===0?0:h*s/o,p=h):(s<0&&(u=-u),f=u,p=s===0?0:u*o/s),{x:r+f,y:a+p}},eue=D1a,Zd={node:I1a,circle:N1a,ellipse:Ber,polygon:L1a,rect:eue},M1a=async(e,t)=>{t.useHtmlLabels||Qt().flowchart.htmlLabels||(t.centerLabel=!0);const{shapeSvg:a,bbox:s,halfPadding:o}=await Up(e,t,"node "+t.classes,!0);ut.info("Classes = ",t.classes);const u=a.insert("rect",":first-child");return u.attr("rx",t.rx).attr("ry",t.ry).attr("x",-s.width/2-o).attr("y",-s.height/2-o).attr("width",s.width+t.padding).attr("height",s.height+t.padding),Df(t,u),t.intersect=function(h){return Zd.rect(t,h)},a},P1a=M1a,B1a=e=>{const t=new Set;for(const r of e)switch(r){case"x":t.add("right"),t.add("left");break;case"y":t.add("up"),t.add("down");break;default:t.add(r);break}return t},F1a=(e,t,r)=>{const a=B1a(e),s=2,o=t.height+2*r.padding,u=o/s,h=t.width+2*u+r.padding,f=r.padding/2;return a.has("right")&&a.has("left")&&a.has("up")&&a.has("down")?[{x:0,y:0},{x:u,y:0},{x:h/2,y:2*f},{x:h-u,y:0},{x:h,y:0},{x:h,y:-o/3},{x:h+2*f,y:-o/2},{x:h,y:-2*o/3},{x:h,y:-o},{x:h-u,y:-o},{x:h/2,y:-o-2*f},{x:u,y:-o},{x:0,y:-o},{x:0,y:-2*o/3},{x:-2*f,y:-o/2},{x:0,y:-o/3}]:a.has("right")&&a.has("left")&&a.has("up")?[{x:u,y:0},{x:h-u,y:0},{x:h,y:-o/2},{x:h-u,y:-o},{x:u,y:-o},{x:0,y:-o/2}]:a.has("right")&&a.has("left")&&a.has("down")?[{x:0,y:0},{x:u,y:-o},{x:h-u,y:-o},{x:h,y:0}]:a.has("right")&&a.has("up")&&a.has("down")?[{x:0,y:0},{x:h,y:-u},{x:h,y:-o+u},{x:0,y:-o}]:a.has("left")&&a.has("up")&&a.has("down")?[{x:h,y:0},{x:0,y:-u},{x:0,y:-o+u},{x:h,y:-o}]:a.has("right")&&a.has("left")?[{x:u,y:0},{x:u,y:-f},{x:h-u,y:-f},{x:h-u,y:0},{x:h,y:-o/2},{x:h-u,y:-o},{x:h-u,y:-o+f},{x:u,y:-o+f},{x:u,y:-o},{x:0,y:-o/2}]:a.has("up")&&a.has("down")?[{x:h/2,y:0},{x:0,y:-f},{x:u,y:-f},{x:u,y:-o+f},{x:0,y:-o+f},{x:h/2,y:-o},{x:h,y:-o+f},{x:h-u,y:-o+f},{x:h-u,y:-f},{x:h,y:-f}]:a.has("right")&&a.has("up")?[{x:0,y:0},{x:h,y:-u},{x:0,y:-o}]:a.has("right")&&a.has("down")?[{x:0,y:0},{x:h,y:0},{x:0,y:-o}]:a.has("left")&&a.has("up")?[{x:h,y:0},{x:0,y:-u},{x:h,y:-o}]:a.has("left")&&a.has("down")?[{x:h,y:0},{x:0,y:0},{x:h,y:-o}]:a.has("right")?[{x:u,y:-f},{x:u,y:-f},{x:h-u,y:-f},{x:h-u,y:0},{x:h,y:-o/2},{x:h-u,y:-o},{x:h-u,y:-o+f},{x:u,y:-o+f},{x:u,y:-o+f}]:a.has("left")?[{x:u,y:0},{x:u,y:-f},{x:h-u,y:-f},{x:h-u,y:-o+f},{x:u,y:-o+f},{x:u,y:-o},{x:0,y:-o/2}]:a.has("up")?[{x:u,y:-f},{x:u,y:-o+f},{x:0,y:-o+f},{x:h/2,y:-o},{x:h,y:-o+f},{x:h-u,y:-o+f},{x:h-u,y:-f}]:a.has("down")?[{x:h/2,y:0},{x:0,y:-f},{x:u,y:-f},{x:u,y:-o+f},{x:h-u,y:-o+f},{x:h-u,y:-f},{x:h,y:-f}]:[{x:0,y:0}]},yCn=e=>e?" "+e:"",Jw=(e,t)=>`node default${yCn(e.classes)} ${yCn(e.class)}`,vCn=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.width+t.padding,o=a.height+t.padding,u=s+o,h=[{x:u/2,y:0},{x:u,y:-u/2},{x:u/2,y:-u},{x:0,y:-u/2}];ut.info("Question main (Circle)");const f=YA(r,u,u,h);return f.attr("style",t.style),Df(t,f),t.intersect=function(p){return ut.warn("Intersect called"),Zd.polygon(t,h,p)},r},$1a=(e,t)=>{const r=e.insert("g").attr("class","node default").attr("id",t.domId||t.id),a=28,s=[{x:0,y:a/2},{x:a/2,y:0},{x:0,y:-a/2},{x:-a/2,y:0}];return r.insert("polygon",":first-child").attr("points",s.map(function(u){return u.x+","+u.y}).join(" ")).attr("class","state-start").attr("r",7).attr("width",28).attr("height",28),t.width=28,t.height=28,t.intersect=function(u){return Zd.circle(t,14,u)},r},U1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=4,o=a.height+t.padding,u=o/s,h=a.width+2*u+t.padding,f=[{x:u,y:0},{x:h-u,y:0},{x:h,y:-o/2},{x:h-u,y:-o},{x:u,y:-o},{x:0,y:-o/2}],p=YA(r,h,o,f);return p.attr("style",t.style),Df(t,p),t.intersect=function(m){return Zd.polygon(t,f,m)},r},z1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,void 0,!0),s=2,o=a.height+2*t.padding,u=o/s,h=a.width+2*u+t.padding,f=F1a(t.directions,a,t),p=YA(r,h,o,f);return p.attr("style",t.style),Df(t,p),t.intersect=function(m){return Zd.polygon(t,f,m)},r},G1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:-o/2,y:0},{x:s,y:0},{x:s,y:-o},{x:-o/2,y:-o},{x:0,y:-o/2}];return YA(r,s,o,u).attr("style",t.style),t.width=s+o,t.height=o,t.intersect=function(f){return Zd.polygon(t,u,f)},r},q1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:-2*o/6,y:0},{x:s-o/6,y:0},{x:s+2*o/6,y:-o},{x:o/6,y:-o}],h=YA(r,s,o,u);return h.attr("style",t.style),Df(t,h),t.intersect=function(f){return Zd.polygon(t,u,f)},r},H1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:2*o/6,y:0},{x:s+o/6,y:0},{x:s-2*o/6,y:-o},{x:-o/6,y:-o}],h=YA(r,s,o,u);return h.attr("style",t.style),Df(t,h),t.intersect=function(f){return Zd.polygon(t,u,f)},r},V1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:-2*o/6,y:0},{x:s+2*o/6,y:0},{x:s-o/6,y:-o},{x:o/6,y:-o}],h=YA(r,s,o,u);return h.attr("style",t.style),Df(t,h),t.intersect=function(f){return Zd.polygon(t,u,f)},r},Y1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:o/6,y:0},{x:s-o/6,y:0},{x:s+2*o/6,y:-o},{x:-2*o/6,y:-o}],h=YA(r,s,o,u);return h.attr("style",t.style),Df(t,h),t.intersect=function(f){return Zd.polygon(t,u,f)},r},j1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:0,y:0},{x:s+o/2,y:0},{x:s,y:-o/2},{x:s+o/2,y:-o},{x:0,y:-o}],h=YA(r,s,o,u);return h.attr("style",t.style),Df(t,h),t.intersect=function(f){return Zd.polygon(t,u,f)},r},W1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.width+t.padding,o=s/2,u=o/(2.5+s/50),h=a.height+u+t.padding,f="M 0,"+u+" a "+o+","+u+" 0,0,0 "+s+" 0 a "+o+","+u+" 0,0,0 "+-s+" 0 l 0,"+h+" a "+o+","+u+" 0,0,0 "+s+" 0 l 0,"+-h,p=r.attr("label-offset-y",u).insert("path",":first-child").attr("style",t.style).attr("d",f).attr("transform","translate("+-s/2+","+-(h/2+u)+")");return Df(t,p),t.intersect=function(m){const b=Zd.rect(t,m),_=b.x-t.x;if(o!=0&&(Math.abs(_)t.height/2-u)){let w=u*u*(1-_*_/(o*o));w!=0&&(w=Math.sqrt(w)),w=u-w,m.y-t.y>0&&(w=-w),b.y+=w}return b},r},K1a=async(e,t)=>{const{shapeSvg:r,bbox:a,halfPadding:s}=await Up(e,t,"node "+t.classes+" "+t.class,!0),o=r.insert("rect",":first-child"),u=t.positioned?t.width:a.width+t.padding,h=t.positioned?t.height:a.height+t.padding,f=t.positioned?-u/2:-a.width/2-s,p=t.positioned?-h/2:-a.height/2-s;if(o.attr("class","basic label-container").attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("x",f).attr("y",p).attr("width",u).attr("height",h),t.props){const m=new Set(Object.keys(t.props));t.props.borders&&(Wbt(o,t.props.borders,u,h),m.delete("borders")),m.forEach(b=>{ut.warn(`Unknown node property ${b}`)})}return Df(t,o),t.intersect=function(m){return Zd.rect(t,m)},r},X1a=async(e,t)=>{const{shapeSvg:r,bbox:a,halfPadding:s}=await Up(e,t,"node "+t.classes,!0),o=r.insert("rect",":first-child"),u=t.positioned?t.width:a.width+t.padding,h=t.positioned?t.height:a.height+t.padding,f=t.positioned?-u/2:-a.width/2-s,p=t.positioned?-h/2:-a.height/2-s;if(o.attr("class","basic cluster composite label-container").attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("x",f).attr("y",p).attr("width",u).attr("height",h),t.props){const m=new Set(Object.keys(t.props));t.props.borders&&(Wbt(o,t.props.borders,u,h),m.delete("borders")),m.forEach(b=>{ut.warn(`Unknown node property ${b}`)})}return Df(t,o),t.intersect=function(m){return Zd.rect(t,m)},r},Q1a=async(e,t)=>{const{shapeSvg:r}=await Up(e,t,"label",!0);ut.trace("Classes = ",t.class);const a=r.insert("rect",":first-child"),s=0,o=0;if(a.attr("width",s).attr("height",o),r.attr("class","label edgeLabel"),t.props){const u=new Set(Object.keys(t.props));t.props.borders&&(Wbt(a,t.props.borders,s,o),u.delete("borders")),u.forEach(h=>{ut.warn(`Unknown node property ${h}`)})}return Df(t,a),t.intersect=function(u){return Zd.rect(t,u)},r};function Wbt(e,t,r,a){const s=[],o=h=>{s.push(h,0)},u=h=>{s.push(0,h)};t.includes("t")?(ut.debug("add top border"),o(r)):u(r),t.includes("r")?(ut.debug("add right border"),o(a)):u(a),t.includes("b")?(ut.debug("add bottom border"),o(r)):u(r),t.includes("l")?(ut.debug("add left border"),o(a)):u(a),e.attr("stroke-dasharray",s.join(" "))}const Z1a=(e,t)=>{let r;t.classes?r="node "+t.classes:r="node default";const a=e.insert("g").attr("class",r).attr("id",t.domId||t.id),s=a.insert("rect",":first-child"),o=a.insert("line"),u=a.insert("g").attr("class","label"),h=t.labelText.flat?t.labelText.flat():t.labelText;let f="";typeof h=="object"?f=h[0]:f=h,ut.info("Label text abc79",f,h,typeof h=="object");const p=u.node().appendChild(q2(f,t.labelStyle,!0,!0));let m={width:0,height:0};if(Np(Qt().flowchart.htmlLabels)){const C=p.children[0],A=gn(p);m=C.getBoundingClientRect(),A.attr("width",m.width),A.attr("height",m.height)}ut.info("Text 2",h);const b=h.slice(1,h.length);let _=p.getBBox();const w=u.node().appendChild(q2(b.join?b.join("
    "):b,t.labelStyle,!0,!0));if(Np(Qt().flowchart.htmlLabels)){const C=w.children[0],A=gn(w);m=C.getBoundingClientRect(),A.attr("width",m.width),A.attr("height",m.height)}const S=t.padding/2;return gn(w).attr("transform","translate( "+(m.width>_.width?0:(_.width-m.width)/2)+", "+(_.height+S+5)+")"),gn(p).attr("transform","translate( "+(m.width<_.width?0:-(_.width-m.width)/2)+", 0)"),m=u.node().getBBox(),u.attr("transform","translate("+-m.width/2+", "+(-m.height/2-S+3)+")"),s.attr("class","outer title-state").attr("x",-m.width/2-S).attr("y",-m.height/2-S).attr("width",m.width+t.padding).attr("height",m.height+t.padding),o.attr("class","divider").attr("x1",-m.width/2-S).attr("x2",m.width/2+S).attr("y1",-m.height/2-S+_.height+S).attr("y2",-m.height/2-S+_.height+S),Df(t,s),t.intersect=function(C){return Zd.rect(t,C)},a},J1a=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.height+t.padding,o=a.width+s/4+t.padding,u=r.insert("rect",":first-child").attr("style",t.style).attr("rx",s/2).attr("ry",s/2).attr("x",-o/2).attr("y",-s/2).attr("width",o).attr("height",s);return Df(t,u),t.intersect=function(h){return Zd.rect(t,h)},r},epa=async(e,t)=>{const{shapeSvg:r,bbox:a,halfPadding:s}=await Up(e,t,Jw(t),!0),o=r.insert("circle",":first-child");return o.attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("r",a.width/2+s).attr("width",a.width+t.padding).attr("height",a.height+t.padding),ut.info("Circle main"),Df(t,o),t.intersect=function(u){return ut.info("Circle intersect",t,a.width/2+s,u),Zd.circle(t,a.width/2+s,u)},r},tpa=async(e,t)=>{const{shapeSvg:r,bbox:a,halfPadding:s}=await Up(e,t,Jw(t),!0),o=5,u=r.insert("g",":first-child"),h=u.insert("circle"),f=u.insert("circle");return u.attr("class",t.class),h.attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("r",a.width/2+s+o).attr("width",a.width+t.padding+o*2).attr("height",a.height+t.padding+o*2),f.attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("r",a.width/2+s).attr("width",a.width+t.padding).attr("height",a.height+t.padding),ut.info("DoubleCircle main"),Df(t,h),t.intersect=function(p){return ut.info("DoubleCircle intersect",t,a.width/2+s+o,p),Zd.circle(t,a.width/2+s+o,p)},r},npa=async(e,t)=>{const{shapeSvg:r,bbox:a}=await Up(e,t,Jw(t),!0),s=a.width+t.padding,o=a.height+t.padding,u=[{x:0,y:0},{x:s,y:0},{x:s,y:-o},{x:0,y:-o},{x:0,y:0},{x:-8,y:0},{x:s+8,y:0},{x:s+8,y:-o},{x:-8,y:-o},{x:-8,y:0}],h=YA(r,s,o,u);return h.attr("style",t.style),Df(t,h),t.intersect=function(f){return Zd.polygon(t,u,f)},r},rpa=(e,t)=>{const r=e.insert("g").attr("class","node default").attr("id",t.domId||t.id),a=r.insert("circle",":first-child");return a.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),Df(t,a),t.intersect=function(s){return Zd.circle(t,7,s)},r},_Cn=(e,t,r)=>{const a=e.insert("g").attr("class","node default").attr("id",t.domId||t.id);let s=70,o=10;r==="LR"&&(s=10,o=70);const u=a.append("rect").attr("x",-1*s/2).attr("y",-1*o/2).attr("width",s).attr("height",o).attr("class","fork-join");return Df(t,u),t.height=t.height+t.padding/2,t.width=t.width+t.padding/2,t.intersect=function(h){return Zd.rect(t,h)},a},ipa=(e,t)=>{const r=e.insert("g").attr("class","node default").attr("id",t.domId||t.id),a=r.insert("circle",":first-child"),s=r.insert("circle",":first-child");return s.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),a.attr("class","state-end").attr("r",5).attr("width",10).attr("height",10),Df(t,s),t.intersect=function(o){return Zd.circle(t,7,o)},r},apa=(e,t)=>{const r=t.padding/2,a=4,s=8;let o;t.classes?o="node "+t.classes:o="node default";const u=e.insert("g").attr("class",o).attr("id",t.domId||t.id),h=u.insert("rect",":first-child"),f=u.insert("line"),p=u.insert("line");let m=0,b=a;const _=u.insert("g").attr("class","label");let w=0;const S=t.classData.annotations&&t.classData.annotations[0],C=t.classData.annotations[0]?"«"+t.classData.annotations[0]+"»":"",A=_.node().appendChild(q2(C,t.labelStyle,!0,!0));let k=A.getBBox();if(Np(Qt().flowchart.htmlLabels)){const U=A.children[0],$=gn(A);k=U.getBoundingClientRect(),$.attr("width",k.width),$.attr("height",k.height)}t.classData.annotations[0]&&(b+=k.height+a,m+=k.width);let I=t.classData.label;t.classData.type!==void 0&&t.classData.type!==""&&(Qt().flowchart.htmlLabels?I+="<"+t.classData.type+">":I+="<"+t.classData.type+">");const N=_.node().appendChild(q2(I,t.labelStyle,!0,!0));gn(N).attr("class","classTitle");let L=N.getBBox();if(Np(Qt().flowchart.htmlLabels)){const U=N.children[0],$=gn(N);L=U.getBoundingClientRect(),$.attr("width",L.width),$.attr("height",L.height)}b+=L.height+a,L.width>m&&(m=L.width);const P=[];t.classData.members.forEach(U=>{const $=U.getDisplayDetails();let G=$.displayText;Qt().flowchart.htmlLabels&&(G=G.replace(//g,">"));const B=_.node().appendChild(q2(G,$.cssStyle?$.cssStyle:t.labelStyle,!0,!0));let Z=B.getBBox();if(Np(Qt().flowchart.htmlLabels)){const z=B.children[0],Y=gn(B);Z=z.getBoundingClientRect(),Y.attr("width",Z.width),Y.attr("height",Z.height)}Z.width>m&&(m=Z.width),b+=Z.height+a,P.push(B)}),b+=s;const M=[];if(t.classData.methods.forEach(U=>{const $=U.getDisplayDetails();let G=$.displayText;Qt().flowchart.htmlLabels&&(G=G.replace(//g,">"));const B=_.node().appendChild(q2(G,$.cssStyle?$.cssStyle:t.labelStyle,!0,!0));let Z=B.getBBox();if(Np(Qt().flowchart.htmlLabels)){const z=B.children[0],Y=gn(B);Z=z.getBoundingClientRect(),Y.attr("width",Z.width),Y.attr("height",Z.height)}Z.width>m&&(m=Z.width),b+=Z.height+a,M.push(B)}),b+=s,S){let U=(m-k.width)/2;gn(A).attr("transform","translate( "+(-1*m/2+U)+", "+-1*b/2+")"),w=k.height+a}let F=(m-L.width)/2;return gn(N).attr("transform","translate( "+(-1*m/2+F)+", "+(-1*b/2+w)+")"),w+=L.height+a,f.attr("class","divider").attr("x1",-m/2-r).attr("x2",m/2+r).attr("y1",-b/2-r+s+w).attr("y2",-b/2-r+s+w),w+=s,P.forEach(U=>{gn(U).attr("transform","translate( "+-m/2+", "+(-1*b/2+w+s/2)+")");const $=U==null?void 0:U.getBBox();w+=(($==null?void 0:$.height)??0)+a}),w+=s,p.attr("class","divider").attr("x1",-m/2-r).attr("x2",m/2+r).attr("y1",-b/2-r+s+w).attr("y2",-b/2-r+s+w),w+=s,M.forEach(U=>{gn(U).attr("transform","translate( "+-m/2+", "+(-1*b/2+w)+")");const $=U==null?void 0:U.getBBox();w+=(($==null?void 0:$.height)??0)+a}),h.attr("style",t.style).attr("class","outer title-state").attr("x",-m/2-r).attr("y",-(b/2)-r).attr("width",m+t.padding).attr("height",b+t.padding),Df(t,h),t.intersect=function(U){return Zd.rect(t,U)},u},wCn={rhombus:vCn,composite:X1a,question:vCn,rect:K1a,labelRect:Q1a,rectWithTitle:Z1a,choice:$1a,circle:epa,doublecircle:tpa,stadium:J1a,hexagon:U1a,block_arrow:z1a,rect_left_inv_arrow:G1a,lean_right:q1a,lean_left:H1a,trapezoid:V1a,inv_trapezoid:Y1a,rect_right_inv_arrow:j1a,cylinder:W1a,start:rpa,end:ipa,note:P1a,subroutine:npa,fork:_Cn,join:_Cn,class_box:apa};let hY={};const _6e=async(e,t,r)=>{let a,s;if(t.link){let o;Qt().securityLevel==="sandbox"?o="_top":t.linkTarget&&(o=t.linkTarget||"_blank"),a=e.insert("svg:a").attr("xlink:href",t.link).attr("target",o),s=await wCn[t.shape](a,t,r)}else s=await wCn[t.shape](e,t,r),a=s;return t.tooltip&&s.attr("title",t.tooltip),t.class&&s.attr("class","node default "+t.class),a.attr("data-node","true"),a.attr("data-id",t.id),hY[t.id]=a,t.haveCallback&&hY[t.id].attr("class",hY[t.id].attr("class")+" clickable"),a},spa=(e,t)=>{hY[t.id]=e},opa=()=>{hY={}},Aht=e=>{const t=hY[e.id];ut.trace("Transforming node",e.diff,e,"translate("+(e.x-e.width/2-5)+", "+e.width/2+")");const r=8,a=e.diff||0;return e.clusterNode?t.attr("transform","translate("+(e.x+a-e.width/2)+", "+(e.y-e.height/2-r)+")"):t.attr("transform","translate("+e.x+", "+e.y+")"),a},w6e=({flowchart:e})=>{var t,r;const a=((t=e==null?void 0:e.subGraphTitleMargin)==null?void 0:t.top)??0,s=((r=e==null?void 0:e.subGraphTitleMargin)==null?void 0:r.bottom)??0,o=a+s;return{subGraphTitleTopMargin:a,subGraphTitleBottomMargin:s,subGraphTitleTotalMargin:o}},UN={aggregation:18,extension:18,composition:18,dependency:6,lollipop:13.5,arrow_point:5.3};function EEe(e,t){if(e===void 0||t===void 0)return{angle:0,deltaX:0,deltaY:0};e=s5e(e),t=s5e(t);const[r,a]=[e.x,e.y],[s,o]=[t.x,t.y],u=s-r,h=o-a;return{angle:Math.atan(h/u),deltaX:u,deltaY:h}}const s5e=e=>Array.isArray(e)?{x:e[0],y:e[1]}:e,Fer=e=>({x:function(t,r,a){let s=0;if(r===0&&Object.hasOwn(UN,e.arrowTypeStart)){const{angle:o,deltaX:u}=EEe(a[0],a[1]);s=UN[e.arrowTypeStart]*Math.cos(o)*(u>=0?1:-1)}else if(r===a.length-1&&Object.hasOwn(UN,e.arrowTypeEnd)){const{angle:o,deltaX:u}=EEe(a[a.length-1],a[a.length-2]);s=UN[e.arrowTypeEnd]*Math.cos(o)*(u>=0?1:-1)}return s5e(t).x+s},y:function(t,r,a){let s=0;if(r===0&&Object.hasOwn(UN,e.arrowTypeStart)){const{angle:o,deltaY:u}=EEe(a[0],a[1]);s=UN[e.arrowTypeStart]*Math.abs(Math.sin(o))*(u>=0?1:-1)}else if(r===a.length-1&&Object.hasOwn(UN,e.arrowTypeEnd)){const{angle:o,deltaY:u}=EEe(a[a.length-1],a[a.length-2]);s=UN[e.arrowTypeEnd]*Math.abs(Math.sin(o))*(u>=0?1:-1)}return s5e(t).y+s}}),$er=(e,t,r,a,s)=>{t.arrowTypeStart&&ECn(e,"start",t.arrowTypeStart,r,a,s),t.arrowTypeEnd&&ECn(e,"end",t.arrowTypeEnd,r,a,s)},lpa={arrow_cross:"cross",arrow_point:"point",arrow_barb:"barb",arrow_circle:"circle",aggregation:"aggregation",extension:"extension",composition:"composition",dependency:"dependency",lollipop:"lollipop"},ECn=(e,t,r,a,s,o)=>{const u=lpa[r];if(!u){ut.warn(`Unknown arrow type: ${r}`);return}const h=t==="start"?"Start":"End";e.attr(`marker-${t}`,`url(${a}#${s}_${o}-${u}${h})`)};let o5e={},mm={};const cpa=()=>{o5e={},mm={}},Kbt=(e,t)=>{const r=Np(Qt().flowchart.htmlLabels),a=t.labelType==="markdown"?v6e(e,t.label,{style:t.labelStyle,useHtmlLabels:r,addSvgBackground:!0}):q2(t.label,t.labelStyle),s=e.insert("g").attr("class","edgeLabel"),o=s.insert("g").attr("class","label");o.node().appendChild(a);let u=a.getBBox();if(r){const f=a.children[0],p=gn(a);u=f.getBoundingClientRect(),p.attr("width",u.width),p.attr("height",u.height)}o.attr("transform","translate("+-u.width/2+", "+-u.height/2+")"),o5e[t.id]=s,t.width=u.width,t.height=u.height;let h;if(t.startLabelLeft){const f=q2(t.startLabelLeft,t.labelStyle),p=e.insert("g").attr("class","edgeTerminals"),m=p.insert("g").attr("class","inner");h=m.node().appendChild(f);const b=f.getBBox();m.attr("transform","translate("+-b.width/2+", "+-b.height/2+")"),mm[t.id]||(mm[t.id]={}),mm[t.id].startLeft=p,xEe(h,t.startLabelLeft)}if(t.startLabelRight){const f=q2(t.startLabelRight,t.labelStyle),p=e.insert("g").attr("class","edgeTerminals"),m=p.insert("g").attr("class","inner");h=p.node().appendChild(f),m.node().appendChild(f);const b=f.getBBox();m.attr("transform","translate("+-b.width/2+", "+-b.height/2+")"),mm[t.id]||(mm[t.id]={}),mm[t.id].startRight=p,xEe(h,t.startLabelRight)}if(t.endLabelLeft){const f=q2(t.endLabelLeft,t.labelStyle),p=e.insert("g").attr("class","edgeTerminals"),m=p.insert("g").attr("class","inner");h=m.node().appendChild(f);const b=f.getBBox();m.attr("transform","translate("+-b.width/2+", "+-b.height/2+")"),p.node().appendChild(f),mm[t.id]||(mm[t.id]={}),mm[t.id].endLeft=p,xEe(h,t.endLabelLeft)}if(t.endLabelRight){const f=q2(t.endLabelRight,t.labelStyle),p=e.insert("g").attr("class","edgeTerminals"),m=p.insert("g").attr("class","inner");h=m.node().appendChild(f);const b=f.getBBox();m.attr("transform","translate("+-b.width/2+", "+-b.height/2+")"),p.node().appendChild(f),mm[t.id]||(mm[t.id]={}),mm[t.id].endRight=p,xEe(h,t.endLabelRight)}return a};function xEe(e,t){Qt().flowchart.htmlLabels&&e&&(e.style.width=t.length*9+"px",e.style.height="12px")}const Uer=(e,t)=>{ut.debug("Moving label abc88 ",e.id,e.label,o5e[e.id],t);let r=t.updatedPath?t.updatedPath:t.originalPath;const a=Qt(),{subGraphTitleTotalMargin:s}=w6e(a);if(e.label){const o=o5e[e.id];let u=e.x,h=e.y;if(r){const f=il.calcLabelPosition(r);ut.debug("Moving label "+e.label+" from (",u,",",h,") to (",f.x,",",f.y,") abc88"),t.updatedPath&&(u=f.x,h=f.y)}o.attr("transform",`translate(${u}, ${h+s/2})`)}if(e.startLabelLeft){const o=mm[e.id].startLeft;let u=e.x,h=e.y;if(r){const f=il.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_left",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}if(e.startLabelRight){const o=mm[e.id].startRight;let u=e.x,h=e.y;if(r){const f=il.calcTerminalLabelPosition(e.arrowTypeStart?10:0,"start_right",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}if(e.endLabelLeft){const o=mm[e.id].endLeft;let u=e.x,h=e.y;if(r){const f=il.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_left",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}if(e.endLabelRight){const o=mm[e.id].endRight;let u=e.x,h=e.y;if(r){const f=il.calcTerminalLabelPosition(e.arrowTypeEnd?10:0,"end_right",r);u=f.x,h=f.y}o.attr("transform",`translate(${u}, ${h})`)}},upa=(e,t)=>{const r=e.x,a=e.y,s=Math.abs(t.x-r),o=Math.abs(t.y-a),u=e.width/2,h=e.height/2;return s>=u||o>=h},hpa=(e,t,r)=>{ut.debug(`intersection calc abc89: + outsidePoint: ${JSON.stringify(t)} + insidePoint : ${JSON.stringify(r)} + node : x:${e.x} y:${e.y} w:${e.width} h:${e.height}`);const a=e.x,s=e.y,o=Math.abs(a-r.x),u=e.width/2;let h=r.xMath.abs(a-t.x)*f){let b=r.y{ut.debug("abc88 cutPathAtIntersect",e,t);let r=[],a=e[0],s=!1;return e.forEach(o=>{if(!upa(t,o)&&!s){const u=hpa(t,a,o);let h=!1;r.forEach(f=>{h=h||f.x===u.x&&f.y===u.y}),r.some(f=>f.x===u.x&&f.y===u.y)||r.push(u),s=!0}else a=o,s||r.push(o)}),r},zer=function(e,t,r,a,s,o,u){let h=r.points;ut.debug("abc88 InsertEdge: edge=",r,"e=",t);let f=!1;const p=o.node(t.v);var m=o.node(t.w);m!=null&&m.intersect&&(p!=null&&p.intersect)&&(h=h.slice(1,r.points.length-1),h.unshift(p.intersect(h[0])),h.push(m.intersect(h[h.length-1]))),r.toCluster&&(ut.debug("to cluster abc88",a[r.toCluster]),h=xCn(r.points,a[r.toCluster].node),f=!0),r.fromCluster&&(ut.debug("from cluster abc88",a[r.fromCluster]),h=xCn(h.reverse(),a[r.fromCluster].node).reverse(),f=!0);const b=h.filter(L=>!Number.isNaN(L.y));let _=j3;r.curve&&(s==="graph"||s==="flowchart")&&(_=r.curve);const{x:w,y:S}=Fer(r),C=r_().x(w).y(S).curve(_);let A;switch(r.thickness){case"normal":A="edge-thickness-normal";break;case"thick":A="edge-thickness-thick";break;case"invisible":A="edge-thickness-thick";break;default:A=""}switch(r.pattern){case"solid":A+=" edge-pattern-solid";break;case"dotted":A+=" edge-pattern-dotted";break;case"dashed":A+=" edge-pattern-dashed";break}const k=e.append("path").attr("d",C(b)).attr("id",r.id).attr("class"," "+A+(r.classes?" "+r.classes:"")).attr("style",r.style);let I="";(Qt().flowchart.arrowMarkerAbsolute||Qt().state.arrowMarkerAbsolute)&&(I=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,I=I.replace(/\(/g,"\\("),I=I.replace(/\)/g,"\\)")),$er(k,r,I,u,s);let N={};return f&&(N.updatedPath=h),N.originalPath=r.points,N};let rl={},q3={},Ger={};const dpa=()=>{q3={},Ger={},rl={}},l5e=(e,t)=>(ut.trace("In isDescendant",t," ",e," = ",q3[t].includes(e)),!!q3[t].includes(e)),fpa=(e,t)=>(ut.info("Descendants of ",t," is ",q3[t]),ut.info("Edge is ",e),e.v===t||e.w===t?!1:q3[t]?q3[t].includes(e.v)||l5e(e.v,t)||l5e(e.w,t)||q3[t].includes(e.w):(ut.debug("Tilt, ",t,",not in descendants"),!1)),qer=(e,t,r,a)=>{ut.warn("Copying children of ",e,"root",a,"data",t.node(e),a);const s=t.children(e)||[];e!==a&&s.push(e),ut.warn("Copying (nodes) clusterId",e,"nodes",s),s.forEach(o=>{if(t.children(o).length>0)qer(o,t,r,a);else{const u=t.node(o);ut.info("cp ",o," to ",a," with parent ",e),r.setNode(o,u),a!==t.parent(o)&&(ut.warn("Setting parent",o,t.parent(o)),r.setParent(o,t.parent(o))),e!==a&&o!==e?(ut.debug("Setting parent",o,e),r.setParent(o,e)):(ut.info("In copy ",e,"root",a,"data",t.node(e),a),ut.debug("Not Setting parent for node=",o,"cluster!==rootId",e!==a,"node!==clusterId",o!==e));const h=t.edges(o);ut.debug("Copying Edges",h),h.forEach(f=>{ut.info("Edge",f);const p=t.edge(f.v,f.w,f.name);ut.info("Edge data",p,a);try{fpa(f,a)?(ut.info("Copying as ",f.v,f.w,p,f.name),r.setEdge(f.v,f.w,p,f.name),ut.info("newGraph edges ",r.edges(),r.edge(r.edges()[0]))):ut.info("Skipping copy of edge ",f.v,"-->",f.w," rootId: ",a," clusterId:",e)}catch(m){ut.error(m)}})}ut.debug("Removing node",o),t.removeNode(o)})},Her=(e,t)=>{const r=t.children(e);let a=[...r];for(const s of r)Ger[s]=e,a=[...a,...Her(s,t)];return a},vle=(e,t)=>{ut.trace("Searching",e);const r=t.children(e);if(ut.trace("Searching children of id ",e,r),r.length<1)return ut.trace("This is a valid node",e),e;for(const a of r){const s=vle(a,t);if(s)return ut.trace("Found replacement for",e," => ",s),s}},SEe=e=>!rl[e]||!rl[e].externalConnections?e:rl[e]?rl[e].id:e,ppa=(e,t)=>{if(!e||t>10){ut.debug("Opting out, no graph ");return}else ut.debug("Opting in, graph ");e.nodes().forEach(function(r){e.children(r).length>0&&(ut.warn("Cluster identified",r," Replacement id in edges: ",vle(r,e)),q3[r]=Her(r,e),rl[r]={id:vle(r,e),clusterData:e.node(r)})}),e.nodes().forEach(function(r){const a=e.children(r),s=e.edges();a.length>0?(ut.debug("Cluster identified",r,q3),s.forEach(o=>{if(o.v!==r&&o.w!==r){const u=l5e(o.v,r),h=l5e(o.w,r);u^h&&(ut.warn("Edge: ",o," leaves cluster ",r),ut.warn("Descendants of XXX ",r,": ",q3[r]),rl[r].externalConnections=!0)}})):ut.debug("Not a cluster ",r,q3)});for(let r of Object.keys(rl)){const a=rl[r].id,s=e.parent(a);s!==r&&rl[s]&&!rl[s].externalConnections&&(rl[r].id=s)}e.edges().forEach(function(r){const a=e.edge(r);ut.warn("Edge "+r.v+" -> "+r.w+": "+JSON.stringify(r)),ut.warn("Edge "+r.v+" -> "+r.w+": "+JSON.stringify(e.edge(r)));let s=r.v,o=r.w;if(ut.warn("Fix XXX",rl,"ids:",r.v,r.w,"Translating: ",rl[r.v]," --- ",rl[r.w]),rl[r.v]&&rl[r.w]&&rl[r.v]===rl[r.w]){ut.warn("Fixing and trixing link to self - removing XXX",r.v,r.w,r.name),ut.warn("Fixing and trixing - removing XXX",r.v,r.w,r.name),s=SEe(r.v),o=SEe(r.w),e.removeEdge(r.v,r.w,r.name);const u=r.w+"---"+r.v;e.setNode(u,{domId:u,id:u,labelStyle:"",labelText:a.label,padding:0,shape:"labelRect",style:""});const h=structuredClone(a),f=structuredClone(a);h.label="",h.arrowTypeEnd="none",f.label="",h.fromCluster=r.v,f.toCluster=r.v,e.setEdge(s,u,h,r.name+"-cyclic-special"),e.setEdge(u,o,f,r.name+"-cyclic-special")}else if(rl[r.v]||rl[r.w]){if(ut.warn("Fixing and trixing - removing XXX",r.v,r.w,r.name),s=SEe(r.v),o=SEe(r.w),e.removeEdge(r.v,r.w,r.name),s!==r.v){const u=e.parent(s);rl[u].externalConnections=!0,a.fromCluster=r.v}if(o!==r.w){const u=e.parent(o);rl[u].externalConnections=!0,a.toCluster=r.w}ut.warn("Fix Replacing with XXX",s,o,r.name),e.setEdge(s,o,a,r.name)}}),ut.warn("Adjusted Graph",O7(e)),Ver(e,0),ut.trace(rl)},Ver=(e,t)=>{if(ut.warn("extractor - ",t,O7(e),e.children("D")),t>10){ut.error("Bailing out");return}let r=e.nodes(),a=!1;for(const s of r){const o=e.children(s);a=a||o.length>0}if(!a){ut.debug("Done, no node has children",e.nodes());return}ut.debug("Nodes = ",r,t);for(const s of r)if(ut.debug("Extracting node",s,rl,rl[s]&&!rl[s].externalConnections,!e.parent(s),e.node(s),e.children("D")," Depth ",t),!rl[s])ut.debug("Not a cluster",s,t);else if(!rl[s].externalConnections&&e.children(s)&&e.children(s).length>0){ut.warn("Cluster without external connections, without a parent and with children",s,t);let u=e.graph().rankdir==="TB"?"LR":"TB";rl[s]&&rl[s].clusterData&&rl[s].clusterData.dir&&(u=rl[s].clusterData.dir,ut.warn("Fixing dir",rl[s].clusterData.dir,u));const h=new F1({multigraph:!0,compound:!0}).setGraph({rankdir:u,nodesep:50,ranksep:50,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}});ut.warn("Old graph before copy",O7(e)),qer(s,e,h,s),e.setNode(s,{clusterNode:!0,id:s,clusterData:rl[s].clusterData,labelText:rl[s].labelText,graph:h}),ut.warn("New graph after copy node: (",s,")",O7(h)),ut.debug("Old graph after copy",O7(e))}else ut.warn("Cluster ** ",s," **not meeting the criteria !externalConnections:",!rl[s].externalConnections," no parent: ",!e.parent(s)," children ",e.children(s)&&e.children(s).length>0,e.children("D"),t),ut.debug(rl);r=e.nodes(),ut.warn("New list of nodes",r);for(const s of r){const o=e.node(s);ut.warn(" Now next level",s,o),o.clusterNode&&Ver(o.graph,t+1)}},Yer=(e,t)=>{if(t.length===0)return[];let r=Object.assign(t);return t.forEach(a=>{const s=e.children(a),o=Yer(e,s);r=[...r,...o]}),r},gpa=e=>Yer(e,e.children()),mpa=(e,t)=>{ut.info("Creating subgraph rect for ",t.id,t);const r=Qt(),a=e.insert("g").attr("class","cluster"+(t.class?" "+t.class:"")).attr("id",t.id),s=a.insert("rect",":first-child"),o=Np(r.flowchart.htmlLabels),u=a.insert("g").attr("class","cluster-label"),h=t.labelType==="markdown"?v6e(u,t.labelText,{style:t.labelStyle,useHtmlLabels:o}):u.node().appendChild(q2(t.labelText,t.labelStyle,void 0,!0));let f=h.getBBox();if(Np(r.flowchart.htmlLabels)){const S=h.children[0],C=gn(h);f=S.getBoundingClientRect(),C.attr("width",f.width),C.attr("height",f.height)}const p=0*t.padding,m=p/2,b=t.width<=f.width+p?f.width+p:t.width;t.width<=f.width+p?t.diff=(f.width-t.width)/2-t.padding/2:t.diff=-t.padding/2,ut.trace("Data ",t,JSON.stringify(t)),s.attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("x",t.x-b/2).attr("y",t.y-t.height/2-m).attr("width",b).attr("height",t.height+p);const{subGraphTitleTopMargin:_}=w6e(r);o?u.attr("transform",`translate(${t.x-f.width/2}, ${t.y-t.height/2+_})`):u.attr("transform",`translate(${t.x}, ${t.y-t.height/2+_})`);const w=s.node().getBBox();return t.width=w.width,t.height=w.height,t.intersect=function(S){return eue(t,S)},a},bpa=(e,t)=>{const r=e.insert("g").attr("class","note-cluster").attr("id",t.id),a=r.insert("rect",":first-child"),s=0*t.padding,o=s/2;a.attr("rx",t.rx).attr("ry",t.ry).attr("x",t.x-t.width/2-o).attr("y",t.y-t.height/2-o).attr("width",t.width+s).attr("height",t.height+s).attr("fill","none");const u=a.node().getBBox();return t.width=u.width,t.height=u.height,t.intersect=function(h){return eue(t,h)},r},ypa=(e,t)=>{const r=Qt(),a=e.insert("g").attr("class",t.classes).attr("id",t.id),s=a.insert("rect",":first-child"),o=a.insert("g").attr("class","cluster-label"),u=a.append("rect"),h=o.node().appendChild(q2(t.labelText,t.labelStyle,void 0,!0));let f=h.getBBox();if(Np(r.flowchart.htmlLabels)){const S=h.children[0],C=gn(h);f=S.getBoundingClientRect(),C.attr("width",f.width),C.attr("height",f.height)}f=h.getBBox();const p=0*t.padding,m=p/2,b=t.width<=f.width+t.padding?f.width+t.padding:t.width;t.width<=f.width+t.padding?t.diff=(f.width+t.padding*0-t.width)/2:t.diff=-t.padding/2,s.attr("class","outer").attr("x",t.x-b/2-m).attr("y",t.y-t.height/2-m).attr("width",b+p).attr("height",t.height+p),u.attr("class","inner").attr("x",t.x-b/2-m).attr("y",t.y-t.height/2-m+f.height-1).attr("width",b+p).attr("height",t.height+p-f.height-3);const{subGraphTitleTopMargin:_}=w6e(r);o.attr("transform",`translate(${t.x-f.width/2}, ${t.y-t.height/2-t.padding/3+(Np(r.flowchart.htmlLabels)?5:3)+_})`);const w=s.node().getBBox();return t.height=w.height,t.intersect=function(S){return eue(t,S)},a},vpa=(e,t)=>{const r=e.insert("g").attr("class",t.classes).attr("id",t.id),a=r.insert("rect",":first-child"),s=0*t.padding,o=s/2;a.attr("class","divider").attr("x",t.x-t.width/2-o).attr("y",t.y-t.height/2).attr("width",t.width+s).attr("height",t.height+s);const u=a.node().getBBox();return t.width=u.width,t.height=u.height,t.diff=-t.padding/2,t.intersect=function(h){return eue(t,h)},r},_pa={rect:mpa,roundedWithTitle:ypa,noteGroup:bpa,divider:vpa};let jer={};const wpa=(e,t)=>{ut.trace("Inserting cluster");const r=t.shape||"rect";jer[t.id]=_pa[r](e,t)},Epa=()=>{jer={}},Wer=async(e,t,r,a,s,o)=>{ut.info("Graph in recursive render: XXX",O7(t),s);const u=t.graph().rankdir;ut.trace("Dir in recursive render - dir:",u);const h=e.insert("g").attr("class","root");t.nodes()?ut.info("Recursive render XXX",t.nodes()):ut.info("No nodes found for",t),t.edges().length>0&&ut.trace("Recursive edges",t.edge(t.edges()[0]));const f=h.insert("g").attr("class","clusters"),p=h.insert("g").attr("class","edgePaths"),m=h.insert("g").attr("class","edgeLabels"),b=h.insert("g").attr("class","nodes");await Promise.all(t.nodes().map(async function(S){const C=t.node(S);if(s!==void 0){const A=JSON.parse(JSON.stringify(s.clusterData));ut.info("Setting data for cluster XXX (",S,") ",A,s),t.setNode(s.id,A),t.parent(S)||(ut.trace("Setting parent",S,s.id),t.setParent(S,s.id,A))}if(ut.info("(Insert) Node XXX"+S+": "+JSON.stringify(t.node(S))),C&&C.clusterNode){ut.info("Cluster identified",S,C.width,t.node(S));const A=await Wer(b,C.graph,r,a,t.node(S),o),k=A.elem;Df(C,k),C.diff=A.diff||0,ut.info("Node bounds (abc123)",S,C,C.width,C.x,C.y),spa(k,C),ut.warn("Recursive render complete ",k,C)}else t.children(S).length>0?(ut.info("Cluster - the non recursive path XXX",S,C.id,C,t),ut.info(vle(C.id,t)),rl[C.id]={id:vle(C.id,t),node:C}):(ut.info("Node - the non recursive path",S,C.id,C),await _6e(b,t.node(S),u))})),t.edges().forEach(function(S){const C=t.edge(S.v,S.w,S.name);ut.info("Edge "+S.v+" -> "+S.w+": "+JSON.stringify(S)),ut.info("Edge "+S.v+" -> "+S.w+": ",S," ",JSON.stringify(t.edge(S))),ut.info("Fix",rl,"ids:",S.v,S.w,"Translating: ",rl[S.v],rl[S.w]),Kbt(m,C)}),t.edges().forEach(function(S){ut.info("Edge "+S.v+" -> "+S.w+": "+JSON.stringify(S))}),ut.info("#############################################"),ut.info("### Layout ###"),ut.info("#############################################"),ut.info(t),oK(t),ut.info("Graph after layout:",O7(t));let _=0;const{subGraphTitleTotalMargin:w}=w6e(o);return gpa(t).forEach(function(S){const C=t.node(S);ut.info("Position "+S+": "+JSON.stringify(t.node(S))),ut.info("Position "+S+": ("+C.x,","+C.y,") width: ",C.width," height: ",C.height),C&&C.clusterNode?(C.y+=w,Aht(C)):t.children(S).length>0?(C.height+=w,wpa(f,C),rl[C.id].node=C):(C.y+=w/2,Aht(C))}),t.edges().forEach(function(S){const C=t.edge(S);ut.info("Edge "+S.v+" -> "+S.w+": "+JSON.stringify(C),C),C.points.forEach(k=>k.y+=w/2);const A=zer(p,S,C,rl,r,t,a);Uer(C,A)}),t.nodes().forEach(function(S){const C=t.node(S);ut.info(S,C.type,C.diff),C.type==="group"&&(_=C.diff)}),{elem:h,diff:_}},Xbt=async(e,t,r,a,s)=>{jbt(e,r,a,s),opa(),cpa(),Epa(),dpa(),ut.warn("Graph at first:",JSON.stringify(O7(t))),ppa(t),ut.warn("Graph after:",JSON.stringify(O7(t)));const o=Qt();await Wer(e,t,a,s,void 0,o)},Ker={},xpa=function(e){const t=Object.keys(e);for(const r of t)Ker[r]=e[r]},Xer=async function(e,t,r,a,s,o){const u=a.select(`[id="${r}"]`),h=Object.keys(e);for(const f of h){const p=e[f];let m="default";p.classes.length>0&&(m=p.classes.join(" ")),m=m+" flowchart-label";const b=Hw(p.styles);let _=p.text!==void 0?p.text:p.id,w;if(ut.info("vertex",p,p.labelType),p.labelType==="markdown")ut.info("vertex",p,p.labelType);else if(Np(Qt().flowchart.htmlLabels))w=Ubt(u,{label:_}).node(),w.parentNode.removeChild(w);else{const k=s.createElementNS("http://www.w3.org/2000/svg","text");k.setAttribute("style",b.labelStyle.replace("color:","fill:"));const I=_.split(mi.lineBreakRegex);for(const N of I){const L=s.createElementNS("http://www.w3.org/2000/svg","tspan");L.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),L.setAttribute("dy","1em"),L.setAttribute("x","1"),L.textContent=N,k.appendChild(L)}w=k}let S=0,C="";switch(p.type){case"round":S=5,C="rect";break;case"square":C="rect";break;case"diamond":C="question";break;case"hexagon":C="hexagon";break;case"odd":C="rect_left_inv_arrow";break;case"lean_right":C="lean_right";break;case"lean_left":C="lean_left";break;case"trapezoid":C="trapezoid";break;case"inv_trapezoid":C="inv_trapezoid";break;case"odd_right":C="rect_left_inv_arrow";break;case"circle":C="circle";break;case"ellipse":C="ellipse";break;case"stadium":C="stadium";break;case"subroutine":C="subroutine";break;case"cylinder":C="cylinder";break;case"group":C="rect";break;case"doublecircle":C="doublecircle";break;default:C="rect"}const A=await Z$(_,Qt());t.setNode(p.id,{labelStyle:b.labelStyle,shape:C,labelText:A,labelType:p.labelType,rx:S,ry:S,class:m,style:b.style,id:p.id,link:p.link,linkTarget:p.linkTarget,tooltip:o.db.getTooltip(p.id)||"",domId:o.db.lookUpDomId(p.id),haveCallback:p.haveCallback,width:p.type==="group"?500:void 0,dir:p.dir,type:p.type,props:p.props,padding:Qt().flowchart.padding}),ut.info("setNode",{labelStyle:b.labelStyle,labelType:p.labelType,shape:C,labelText:A,rx:S,ry:S,class:m,style:b.style,id:p.id,domId:o.db.lookUpDomId(p.id),width:p.type==="group"?500:void 0,type:p.type,dir:p.dir,props:p.props,padding:Qt().flowchart.padding})}},Qer=async function(e,t,r){ut.info("abc78 edges = ",e);let a=0,s={},o,u;if(e.defaultStyle!==void 0){const h=Hw(e.defaultStyle);o=h.style,u=h.labelStyle}for(const h of e){a++;const f="L-"+h.start+"-"+h.end;s[f]===void 0?(s[f]=0,ut.info("abc78 new entry",f,s[f])):(s[f]++,ut.info("abc78 new entry",f,s[f]));let p=f+"-"+s[f];ut.info("abc78 new link id to be used is",f,p,s[f]);const m="LS-"+h.start,b="LE-"+h.end,_={style:"",labelStyle:""};switch(_.minlen=h.length||1,h.type==="arrow_open"?_.arrowhead="none":_.arrowhead="normal",_.arrowTypeStart="arrow_open",_.arrowTypeEnd="arrow_open",h.type){case"double_arrow_cross":_.arrowTypeStart="arrow_cross";case"arrow_cross":_.arrowTypeEnd="arrow_cross";break;case"double_arrow_point":_.arrowTypeStart="arrow_point";case"arrow_point":_.arrowTypeEnd="arrow_point";break;case"double_arrow_circle":_.arrowTypeStart="arrow_circle";case"arrow_circle":_.arrowTypeEnd="arrow_circle";break}let w="",S="";switch(h.stroke){case"normal":w="fill:none;",o!==void 0&&(w=o),u!==void 0&&(S=u),_.thickness="normal",_.pattern="solid";break;case"dotted":_.thickness="normal",_.pattern="dotted",_.style="fill:none;stroke-width:2px;stroke-dasharray:3;";break;case"thick":_.thickness="thick",_.pattern="solid",_.style="stroke-width: 3.5px;fill:none;";break;case"invisible":_.thickness="invisible",_.pattern="solid",_.style="stroke-width: 0;fill:none;";break}if(h.style!==void 0){const C=Hw(h.style);w=C.style,S=C.labelStyle}_.style=_.style+=w,_.labelStyle=_.labelStyle+=S,h.interpolate!==void 0?_.curve=fS(h.interpolate,Cg):e.defaultInterpolate!==void 0?_.curve=fS(e.defaultInterpolate,Cg):_.curve=fS(Ker.curve,Cg),h.text===void 0?h.style!==void 0&&(_.arrowheadStyle="fill: #333"):(_.arrowheadStyle="fill: #333",_.labelpos="c"),_.labelType=h.labelType,_.label=await Z$(h.text.replace(mi.lineBreakRegex,` +`),Qt()),h.style===void 0&&(_.style=_.style||"stroke: #333; stroke-width: 1.5px;fill:none;"),_.labelStyle=_.labelStyle.replace("color:","fill:"),_.id=p,_.classes="flowchart-link "+m+" "+b,t.setEdge(h.start,h.end,_,a)}},Spa=function(e,t){return t.db.getClasses()},Tpa=async function(e,t,r,a){ut.info("Drawing flowchart");let s=a.db.getDirection();s===void 0&&(s="TD");const{securityLevel:o,flowchart:u}=Qt(),h=u.nodeSpacing||50,f=u.rankSpacing||50;let p;o==="sandbox"&&(p=gn("#i"+t));const m=gn(o==="sandbox"?p.nodes()[0].contentDocument.body:"body"),b=o==="sandbox"?p.nodes()[0].contentDocument:document,_=new F1({multigraph:!0,compound:!0}).setGraph({rankdir:s,nodesep:h,ranksep:f,marginx:0,marginy:0}).setDefaultEdgeLabel(function(){return{}});let w;const S=a.db.getSubGraphs();ut.info("Subgraphs - ",S);for(let P=S.length-1;P>=0;P--)w=S[P],ut.info("Subgraph - ",w),a.db.addVertex(w.id,{text:w.title,type:w.labelType},"group",void 0,w.classes,w.dir);const C=a.db.getVertices(),A=a.db.getEdges();ut.info("Edges",A);let k=0;for(k=S.length-1;k>=0;k--){w=S[k],HLn("cluster").append("text");for(let P=0;P{const r=ece,a=r(e,"r"),s=r(e,"g"),o=r(e,"b");return Z2(a,s,o,t)},Apa=e=>`.label { + font-family: ${e.fontFamily}; + color: ${e.nodeTextColor||e.textColor}; + } + .cluster-label text { + fill: ${e.titleColor}; + } + .cluster-label span,p { + color: ${e.titleColor}; + } + + .label text,span,p { + fill: ${e.nodeTextColor||e.textColor}; + color: ${e.nodeTextColor||e.textColor}; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + .flowchart-label text { + text-anchor: middle; + } + // .flowchart-label .text-outer-tspan { + // text-anchor: middle; + // } + // .flowchart-label .text-inner-tspan { + // text-anchor: start; + // } + + .node .katex path { + fill: #000; + stroke: #000; + stroke-width: 1px; + } + + .node .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + .arrowheadPath { + fill: ${e.arrowheadColor}; + } + + .edgePath .path { + stroke: ${e.lineColor}; + stroke-width: 2.0px; + } + + .flowchart-link { + stroke: ${e.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${e.edgeLabelBackground}; + rect { + opacity: 0.5; + background-color: ${e.edgeLabelBackground}; + fill: ${e.edgeLabelBackground}; + } + text-align: center; + } + + /* For html labels only */ + .labelBkg { + background-color: ${Cpa(e.edgeLabelBackground,.5)}; + // background-color: + } + + .cluster rect { + fill: ${e.clusterBkg}; + stroke: ${e.clusterBorder}; + stroke-width: 1px; + } + + .cluster text { + fill: ${e.titleColor}; + } + + .cluster span,p { + color: ${e.titleColor}; + } + /* .cluster div { + color: ${e.titleColor}; + } */ + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: ${e.fontFamily}; + font-size: 12px; + background: ${e.tertiaryColor}; + border: 1px solid ${e.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .flowchartTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; + } +`,Zer=Apa;function Jer(e,t,r){const a=t.width,s=t.height,o=(a+s)*.9,u=[{x:o/2,y:0},{x:o,y:-o/2},{x:o/2,y:-o},{x:0,y:-o/2}],h=IR(e,o,o,u);return r.intersect=function(f){return VA(r,u,f)},h}function etr(e,t,r){const s=t.height,o=s/4,u=t.width+2*o,h=[{x:o,y:0},{x:u-o,y:0},{x:u,y:-s/2},{x:u-o,y:-s},{x:o,y:-s},{x:0,y:-s/2}],f=IR(e,u,s,h);return r.intersect=function(p){return VA(r,h,p)},f}function ttr(e,t,r){const a=t.width,s=t.height,o=[{x:-s/2,y:0},{x:a,y:0},{x:a,y:-s},{x:-s/2,y:-s},{x:0,y:-s/2}],u=IR(e,a,s,o);return r.intersect=function(h){return VA(r,o,h)},u}function ntr(e,t,r){const a=t.width,s=t.height,o=[{x:-2*s/6,y:0},{x:a-s/6,y:0},{x:a+2*s/6,y:-s},{x:s/6,y:-s}],u=IR(e,a,s,o);return r.intersect=function(h){return VA(r,o,h)},u}function rtr(e,t,r){const a=t.width,s=t.height,o=[{x:2*s/6,y:0},{x:a+s/6,y:0},{x:a-2*s/6,y:-s},{x:-s/6,y:-s}],u=IR(e,a,s,o);return r.intersect=function(h){return VA(r,o,h)},u}function itr(e,t,r){const a=t.width,s=t.height,o=[{x:-2*s/6,y:0},{x:a+2*s/6,y:0},{x:a-s/6,y:-s},{x:s/6,y:-s}],u=IR(e,a,s,o);return r.intersect=function(h){return VA(r,o,h)},u}function atr(e,t,r){const a=t.width,s=t.height,o=[{x:s/6,y:0},{x:a-s/6,y:0},{x:a+2*s/6,y:-s},{x:-2*s/6,y:-s}],u=IR(e,a,s,o);return r.intersect=function(h){return VA(r,o,h)},u}function str(e,t,r){const a=t.width,s=t.height,o=[{x:0,y:0},{x:a+s/2,y:0},{x:a,y:-s/2},{x:a+s/2,y:-s},{x:0,y:-s}],u=IR(e,a,s,o);return r.intersect=function(h){return VA(r,o,h)},u}function otr(e,t,r){const a=t.height,s=t.width+a/4,o=e.insert("rect",":first-child").attr("rx",a/2).attr("ry",a/2).attr("x",-s/2).attr("y",-a/2).attr("width",s).attr("height",a);return r.intersect=function(u){return Gbt(r,u)},o}function ltr(e,t,r){const a=t.width,s=t.height,o=[{x:0,y:0},{x:a,y:0},{x:a,y:-s},{x:0,y:-s},{x:0,y:0},{x:-8,y:0},{x:a+8,y:0},{x:a+8,y:-s},{x:-8,y:-s},{x:-8,y:0}],u=IR(e,a,s,o);return r.intersect=function(h){return VA(r,o,h)},u}function ctr(e,t,r){const a=t.width,s=a/2,o=s/(2.5+a/50),u=t.height+o,h="M 0,"+o+" a "+s+","+o+" 0,0,0 "+a+" 0 a "+s+","+o+" 0,0,0 "+-a+" 0 l 0,"+u+" a "+s+","+o+" 0,0,0 "+a+" 0 l 0,"+-u,f=e.attr("label-offset-y",o).insert("path",":first-child").attr("d",h).attr("transform","translate("+-a/2+","+-(u/2+o)+")");return r.intersect=function(p){const m=Gbt(r,p),b=m.x-r.x;if(s!=0&&(Math.abs(b)r.height/2-o)){let _=o*o*(1-b*b/(s*s));_!=0&&(_=Math.sqrt(_)),_=o-_,p.y-r.y>0&&(_=-_),m.y+=_}return m},f}function kpa(e){e.shapes().question=Jer,e.shapes().hexagon=etr,e.shapes().stadium=otr,e.shapes().subroutine=ltr,e.shapes().cylinder=ctr,e.shapes().rect_left_inv_arrow=ttr,e.shapes().lean_right=ntr,e.shapes().lean_left=rtr,e.shapes().trapezoid=itr,e.shapes().inv_trapezoid=atr,e.shapes().rect_right_inv_arrow=str}function Rpa(e){e({question:Jer}),e({hexagon:etr}),e({stadium:otr}),e({subroutine:ltr}),e({cylinder:ctr}),e({rect_left_inv_arrow:ttr}),e({lean_right:ntr}),e({lean_left:rtr}),e({trapezoid:itr}),e({inv_trapezoid:atr}),e({rect_right_inv_arrow:str})}function IR(e,t,r,a){return e.insert("polygon",":first-child").attr("points",a.map(function(s){return s.x+","+s.y}).join(" ")).attr("transform","translate("+-t/2+","+r/2+")")}const Ipa={addToRender:kpa,addToRenderV2:Rpa},utr={},Npa=function(e){const t=Object.keys(e);for(const r of t)utr[r]=e[r]},htr=async function(e,t,r,a,s,o){const u=a?a.select(`[id="${r}"]`):gn(`[id="${r}"]`),h=s||document,f=Object.keys(e);for(const p of f){const m=e[p];let b="default";m.classes.length>0&&(b=m.classes.join(" "));const _=Hw(m.styles);let w=m.text!==void 0?m.text:m.id,S;if(Np(Qt().flowchart.htmlLabels)){const k={label:await Z$(w.replace(/fa[blrs]?:fa-[\w-]+/g,I=>``),Qt())};S=Ubt(u,k).node(),S.parentNode.removeChild(S)}else{const k=h.createElementNS("http://www.w3.org/2000/svg","text");k.setAttribute("style",_.labelStyle.replace("color:","fill:"));const I=w.split(mi.lineBreakRegex);for(const N of I){const L=h.createElementNS("http://www.w3.org/2000/svg","tspan");L.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),L.setAttribute("dy","1em"),L.setAttribute("x","1"),L.textContent=N,k.appendChild(L)}S=k}let C=0,A="";switch(m.type){case"round":C=5,A="rect";break;case"square":A="rect";break;case"diamond":A="question";break;case"hexagon":A="hexagon";break;case"odd":A="rect_left_inv_arrow";break;case"lean_right":A="lean_right";break;case"lean_left":A="lean_left";break;case"trapezoid":A="trapezoid";break;case"inv_trapezoid":A="inv_trapezoid";break;case"odd_right":A="rect_left_inv_arrow";break;case"circle":A="circle";break;case"ellipse":A="ellipse";break;case"stadium":A="stadium";break;case"subroutine":A="subroutine";break;case"cylinder":A="cylinder";break;case"group":A="rect";break;default:A="rect"}ut.warn("Adding node",m.id,m.domId),t.setNode(o.db.lookUpDomId(m.id),{labelType:"svg",labelStyle:_.labelStyle,shape:A,label:S,rx:C,ry:C,class:b,style:_.style,id:o.db.lookUpDomId(m.id)})}},dtr=async function(e,t,r){let a=0,s,o;if(e.defaultStyle!==void 0){const u=Hw(e.defaultStyle);s=u.style,o=u.labelStyle}for(const u of e){a++;const h="L-"+u.start+"-"+u.end,f="LS-"+u.start,p="LE-"+u.end,m={};u.type==="arrow_open"?m.arrowhead="none":m.arrowhead="normal";let b="",_="";if(u.style!==void 0){const w=Hw(u.style);b=w.style,_=w.labelStyle}else switch(u.stroke){case"normal":b="fill:none",s!==void 0&&(b=s),o!==void 0&&(_=o);break;case"dotted":b="fill:none;stroke-width:2px;stroke-dasharray:3;";break;case"thick":b=" stroke-width: 3.5px;fill:none";break}m.style=b,m.labelStyle=_,u.interpolate!==void 0?m.curve=fS(u.interpolate,Cg):e.defaultInterpolate!==void 0?m.curve=fS(e.defaultInterpolate,Cg):m.curve=fS(utr.curve,Cg),u.text===void 0?u.style!==void 0&&(m.arrowheadStyle="fill: #333"):(m.arrowheadStyle="fill: #333",m.labelpos="c",Np(Qt().flowchart.htmlLabels)?(m.labelType="html",m.label=`${await Z$(u.text.replace(/fa[blrs]?:fa-[\w-]+/g,w=>``),Qt())}`):(m.labelType="text",m.label=u.text.replace(mi.lineBreakRegex,` +`),u.style===void 0&&(m.style=m.style||"stroke: #333; stroke-width: 1.5px;fill:none"),m.labelStyle=m.labelStyle.replace("color:","fill:"))),m.id=h,m.class=f+" "+p,m.minlen=u.length||1,t.setEdge(r.db.lookUpDomId(u.start),r.db.lookUpDomId(u.end),m,a)}},Opa=function(e,t){return ut.info("Extracting classes"),t.db.getClasses()},Lpa=async function(e,t,r,a){ut.info("Drawing flowchart");const{securityLevel:s,flowchart:o}=Qt();let u;s==="sandbox"&&(u=gn("#i"+t));const h=gn(s==="sandbox"?u.nodes()[0].contentDocument.body:"body"),f=s==="sandbox"?u.nodes()[0].contentDocument:document;let p=a.db.getDirection();p===void 0&&(p="TD");const m=o.nodeSpacing||50,b=o.rankSpacing||50,_=new F1({multigraph:!0,compound:!0}).setGraph({rankdir:p,nodesep:m,ranksep:b,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}});let w;const S=a.db.getSubGraphs();for(let M=S.length-1;M>=0;M--)w=S[M],a.db.addVertex(w.id,w.title,"group",void 0,w.classes);const C=a.db.getVertices();ut.warn("Get vertices",C);const A=a.db.getEdges();let k=0;for(k=S.length-1;k>=0;k--){w=S[k],HLn("cluster").append("text");for(let M=0;M{e.flowchart||(e.flowchart={}),e.flowchart.arrowMarkerAbsolute=e.arrowMarkerAbsolute,Dpa.setConf(e.flowchart),gF.clear(),gF.setGen("gen-1")}},Ppa=Object.freeze(Object.defineProperty({__proto__:null,diagram:Mpa},Symbol.toStringTag,{value:"Module"})),Bpa={parser:Pbt,db:gF,renderer:kht,styles:Zer,init:e=>{e.flowchart||(e.flowchart={}),e.flowchart.arrowMarkerAbsolute=e.arrowMarkerAbsolute,Qra({flowchart:{arrowMarkerAbsolute:e.arrowMarkerAbsolute}}),kht.setConf(e.flowchart),gF.clear(),gF.setGen("gen-2")}},Fpa=Object.freeze(Object.defineProperty({__proto__:null,diagram:Bpa},Symbol.toStringTag,{value:"Module"})),$pa=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function Upa(e){return typeof e=="string"&&$pa.test(e)}const dm=[];for(let e=0;e<256;++e)dm.push((e+256).toString(16).slice(1));function zpa(e,t=0){return dm[e[t+0]]+dm[e[t+1]]+dm[e[t+2]]+dm[e[t+3]]+"-"+dm[e[t+4]]+dm[e[t+5]]+"-"+dm[e[t+6]]+dm[e[t+7]]+"-"+dm[e[t+8]]+dm[e[t+9]]+"-"+dm[e[t+10]]+dm[e[t+11]]+dm[e[t+12]]+dm[e[t+13]]+dm[e[t+14]]+dm[e[t+15]]}function Gpa(e){if(!Upa(e))throw TypeError("Invalid UUID");let t;const r=new Uint8Array(16);return r[0]=(t=parseInt(e.slice(0,8),16))>>>24,r[1]=t>>>16&255,r[2]=t>>>8&255,r[3]=t&255,r[4]=(t=parseInt(e.slice(9,13),16))>>>8,r[5]=t&255,r[6]=(t=parseInt(e.slice(14,18),16))>>>8,r[7]=t&255,r[8]=(t=parseInt(e.slice(19,23),16))>>>8,r[9]=t&255,r[10]=(t=parseInt(e.slice(24,36),16))/1099511627776&255,r[11]=t/4294967296&255,r[12]=t>>>24&255,r[13]=t>>>16&255,r[14]=t>>>8&255,r[15]=t&255,r}function qpa(e){e=unescape(encodeURIComponent(e));const t=[];for(let r=0;r>>32-t}function Wpa(e){const t=[1518500249,1859775393,2400959708,3395469782],r=[1732584193,4023233417,2562383102,271733878,3285377520];if(typeof e=="string"){const u=unescape(encodeURIComponent(e));e=[];for(let h=0;h>>0;_=b,b=m,m=kat(p,30)>>>0,p=f,f=C}r[0]=r[0]+f>>>0,r[1]=r[1]+p>>>0,r[2]=r[2]+m>>>0,r[3]=r[3]+b>>>0,r[4]=r[4]+_>>>0}return[r[0]>>24&255,r[0]>>16&255,r[0]>>8&255,r[0]&255,r[1]>>24&255,r[1]>>16&255,r[1]>>8&255,r[1]&255,r[2]>>24&255,r[2]>>16&255,r[2]>>8&255,r[2]&255,r[3]>>24&255,r[3]>>16&255,r[3]>>8&255,r[3]&255,r[4]>>24&255,r[4]>>16&255,r[4]>>8&255,r[4]&255]}const Kpa=Ypa("v5",80,Wpa);var Rht=function(){var e=function(U,$,G,B){for(G=G||{},B=U.length;B--;G[U[B]]=$);return G},t=[6,8,10,20,22,24,26,27,28],r=[1,10],a=[1,11],s=[1,12],o=[1,13],u=[1,14],h=[1,15],f=[1,21],p=[1,22],m=[1,23],b=[1,24],_=[1,25],w=[6,8,10,13,15,18,19,20,22,24,26,27,28,41,42,43,44,45],S=[1,34],C=[27,28,46,47],A=[41,42,43,44,45],k=[17,34],I=[1,54],N=[1,53],L=[17,34,36,38],P={trace:function(){},yy:{},symbols_:{error:2,start:3,ER_DIAGRAM:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NEWLINE:10,entityName:11,relSpec:12,":":13,role:14,BLOCK_START:15,attributes:16,BLOCK_STOP:17,SQS:18,SQE:19,title:20,title_value:21,acc_title:22,acc_title_value:23,acc_descr:24,acc_descr_value:25,acc_descr_multiline_value:26,ALPHANUM:27,ENTITY_NAME:28,attribute:29,attributeType:30,attributeName:31,attributeKeyTypeList:32,attributeComment:33,ATTRIBUTE_WORD:34,attributeKeyType:35,COMMA:36,ATTRIBUTE_KEY:37,COMMENT:38,cardinality:39,relType:40,ZERO_OR_ONE:41,ZERO_OR_MORE:42,ONE_OR_MORE:43,ONLY_ONE:44,MD_PARENT:45,NON_IDENTIFYING:46,IDENTIFYING:47,WORD:48,$accept:0,$end:1},terminals_:{2:"error",4:"ER_DIAGRAM",6:"EOF",8:"SPACE",10:"NEWLINE",13:":",15:"BLOCK_START",17:"BLOCK_STOP",18:"SQS",19:"SQE",20:"title",21:"title_value",22:"acc_title",23:"acc_title_value",24:"acc_descr",25:"acc_descr_value",26:"acc_descr_multiline_value",27:"ALPHANUM",28:"ENTITY_NAME",34:"ATTRIBUTE_WORD",36:"COMMA",37:"ATTRIBUTE_KEY",38:"COMMENT",41:"ZERO_OR_ONE",42:"ZERO_OR_MORE",43:"ONE_OR_MORE",44:"ONLY_ONE",45:"MD_PARENT",46:"NON_IDENTIFYING",47:"IDENTIFYING",48:"WORD"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[9,5],[9,4],[9,3],[9,1],[9,7],[9,6],[9,4],[9,2],[9,2],[9,2],[9,1],[11,1],[11,1],[16,1],[16,2],[29,2],[29,3],[29,3],[29,4],[30,1],[31,1],[32,1],[32,3],[35,1],[33,1],[12,3],[39,1],[39,1],[39,1],[39,1],[39,1],[40,1],[40,1],[14,1],[14,1],[14,1]],performAction:function($,G,B,Z,z,Y,W){var Q=Y.length-1;switch(z){case 1:break;case 2:this.$=[];break;case 3:Y[Q-1].push(Y[Q]),this.$=Y[Q-1];break;case 4:case 5:this.$=Y[Q];break;case 6:case 7:this.$=[];break;case 8:Z.addEntity(Y[Q-4]),Z.addEntity(Y[Q-2]),Z.addRelationship(Y[Q-4],Y[Q],Y[Q-2],Y[Q-3]);break;case 9:Z.addEntity(Y[Q-3]),Z.addAttributes(Y[Q-3],Y[Q-1]);break;case 10:Z.addEntity(Y[Q-2]);break;case 11:Z.addEntity(Y[Q]);break;case 12:Z.addEntity(Y[Q-6],Y[Q-4]),Z.addAttributes(Y[Q-6],Y[Q-1]);break;case 13:Z.addEntity(Y[Q-5],Y[Q-3]);break;case 14:Z.addEntity(Y[Q-3],Y[Q-1]);break;case 15:case 16:this.$=Y[Q].trim(),Z.setAccTitle(this.$);break;case 17:case 18:this.$=Y[Q].trim(),Z.setAccDescription(this.$);break;case 19:case 43:this.$=Y[Q];break;case 20:case 41:case 42:this.$=Y[Q].replace(/"/g,"");break;case 21:case 29:this.$=[Y[Q]];break;case 22:Y[Q].push(Y[Q-1]),this.$=Y[Q];break;case 23:this.$={attributeType:Y[Q-1],attributeName:Y[Q]};break;case 24:this.$={attributeType:Y[Q-2],attributeName:Y[Q-1],attributeKeyTypeList:Y[Q]};break;case 25:this.$={attributeType:Y[Q-2],attributeName:Y[Q-1],attributeComment:Y[Q]};break;case 26:this.$={attributeType:Y[Q-3],attributeName:Y[Q-2],attributeKeyTypeList:Y[Q-1],attributeComment:Y[Q]};break;case 27:case 28:case 31:this.$=Y[Q];break;case 30:Y[Q-2].push(Y[Q]),this.$=Y[Q-2];break;case 32:this.$=Y[Q].replace(/"/g,"");break;case 33:this.$={cardA:Y[Q],relType:Y[Q-1],cardB:Y[Q-2]};break;case 34:this.$=Z.Cardinality.ZERO_OR_ONE;break;case 35:this.$=Z.Cardinality.ZERO_OR_MORE;break;case 36:this.$=Z.Cardinality.ONE_OR_MORE;break;case 37:this.$=Z.Cardinality.ONLY_ONE;break;case 38:this.$=Z.Cardinality.MD_PARENT;break;case 39:this.$=Z.Identification.NON_IDENTIFYING;break;case 40:this.$=Z.Identification.IDENTIFYING;break}},table:[{3:1,4:[1,2]},{1:[3]},e(t,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:9,20:r,22:a,24:s,26:o,27:u,28:h},e(t,[2,7],{1:[2,1]}),e(t,[2,3]),{9:16,11:9,20:r,22:a,24:s,26:o,27:u,28:h},e(t,[2,5]),e(t,[2,6]),e(t,[2,11],{12:17,39:20,15:[1,18],18:[1,19],41:f,42:p,43:m,44:b,45:_}),{21:[1,26]},{23:[1,27]},{25:[1,28]},e(t,[2,18]),e(w,[2,19]),e(w,[2,20]),e(t,[2,4]),{11:29,27:u,28:h},{16:30,17:[1,31],29:32,30:33,34:S},{11:35,27:u,28:h},{40:36,46:[1,37],47:[1,38]},e(C,[2,34]),e(C,[2,35]),e(C,[2,36]),e(C,[2,37]),e(C,[2,38]),e(t,[2,15]),e(t,[2,16]),e(t,[2,17]),{13:[1,39]},{17:[1,40]},e(t,[2,10]),{16:41,17:[2,21],29:32,30:33,34:S},{31:42,34:[1,43]},{34:[2,27]},{19:[1,44]},{39:45,41:f,42:p,43:m,44:b,45:_},e(A,[2,39]),e(A,[2,40]),{14:46,27:[1,49],28:[1,48],48:[1,47]},e(t,[2,9]),{17:[2,22]},e(k,[2,23],{32:50,33:51,35:52,37:I,38:N}),e([17,34,37,38],[2,28]),e(t,[2,14],{15:[1,55]}),e([27,28],[2,33]),e(t,[2,8]),e(t,[2,41]),e(t,[2,42]),e(t,[2,43]),e(k,[2,24],{33:56,36:[1,57],38:N}),e(k,[2,25]),e(L,[2,29]),e(k,[2,32]),e(L,[2,31]),{16:58,17:[1,59],29:32,30:33,34:S},e(k,[2,26]),{35:60,37:I},{17:[1,61]},e(t,[2,13]),e(L,[2,30]),e(t,[2,12])],defaultActions:{34:[2,27],41:[2,22]},parseError:function($,G){if(G.recoverable)this.trace($);else{var B=new Error($);throw B.hash=G,B}},parse:function($){var G=this,B=[0],Z=[],z=[null],Y=[],W=this.table,Q="",V=0,j=0,ee=2,te=1,ne=Y.slice.call(arguments,1),se=Object.create(this.lexer),ie={yy:{}};for(var ge in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ge)&&(ie.yy[ge]=this.yy[ge]);se.setInput($,ie.yy),ie.yy.lexer=se,ie.yy.parser=this,typeof se.yylloc>"u"&&(se.yylloc={});var ce=se.yylloc;Y.push(ce);var be=se.options&&se.options.ranges;typeof ie.yy.parseError=="function"?this.parseError=ie.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function ve(){var Oe;return Oe=Z.pop()||se.lex()||te,typeof Oe!="number"&&(Oe instanceof Array&&(Z=Oe,Oe=Z.pop()),Oe=G.symbols_[Oe]||Oe),Oe}for(var De,ye,Ee,he,we={},Ce,Ie,Le,Fe;;){if(ye=B[B.length-1],this.defaultActions[ye]?Ee=this.defaultActions[ye]:((De===null||typeof De>"u")&&(De=ve()),Ee=W[ye]&&W[ye][De]),typeof Ee>"u"||!Ee.length||!Ee[0]){var Ve="";Fe=[];for(Ce in W[ye])this.terminals_[Ce]&&Ce>ee&&Fe.push("'"+this.terminals_[Ce]+"'");se.showPosition?Ve="Parse error on line "+(V+1)+`: +`+se.showPosition()+` +Expecting `+Fe.join(", ")+", got '"+(this.terminals_[De]||De)+"'":Ve="Parse error on line "+(V+1)+": Unexpected "+(De==te?"end of input":"'"+(this.terminals_[De]||De)+"'"),this.parseError(Ve,{text:se.match,token:this.terminals_[De]||De,line:se.yylineno,loc:ce,expected:Fe})}if(Ee[0]instanceof Array&&Ee.length>1)throw new Error("Parse Error: multiple actions possible at state: "+ye+", token: "+De);switch(Ee[0]){case 1:B.push(De),z.push(se.yytext),Y.push(se.yylloc),B.push(Ee[1]),De=null,j=se.yyleng,Q=se.yytext,V=se.yylineno,ce=se.yylloc;break;case 2:if(Ie=this.productions_[Ee[1]][1],we.$=z[z.length-Ie],we._$={first_line:Y[Y.length-(Ie||1)].first_line,last_line:Y[Y.length-1].last_line,first_column:Y[Y.length-(Ie||1)].first_column,last_column:Y[Y.length-1].last_column},be&&(we._$.range=[Y[Y.length-(Ie||1)].range[0],Y[Y.length-1].range[1]]),he=this.performAction.apply(we,[Q,j,V,ie.yy,Ee[1],z,Y].concat(ne)),typeof he<"u")return he;Ie&&(B=B.slice(0,-1*Ie*2),z=z.slice(0,-1*Ie),Y=Y.slice(0,-1*Ie)),B.push(this.productions_[Ee[1]][0]),z.push(we.$),Y.push(we._$),Le=W[B[B.length-2]][B[B.length-1]],B.push(Le);break;case 3:return!0}}return!0}},M=function(){var U={EOF:1,parseError:function(G,B){if(this.yy.parser)this.yy.parser.parseError(G,B);else throw new Error(G)},setInput:function($,G){return this.yy=G||this.yy||{},this._input=$,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var $=this._input[0];this.yytext+=$,this.yyleng++,this.offset++,this.match+=$,this.matched+=$;var G=$.match(/(?:\r\n?|\n).*/g);return G?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),$},unput:function($){var G=$.length,B=$.split(/(?:\r\n?|\n)/g);this._input=$+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-G),this.offset-=G;var Z=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),B.length-1&&(this.yylineno-=B.length-1);var z=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:B?(B.length===Z.length?this.yylloc.first_column:0)+Z[Z.length-B.length].length-B[0].length:this.yylloc.first_column-G},this.options.ranges&&(this.yylloc.range=[z[0],z[0]+this.yyleng-G]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function($){this.unput(this.match.slice($))},pastInput:function(){var $=this.matched.substr(0,this.matched.length-this.match.length);return($.length>20?"...":"")+$.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var $=this.match;return $.length<20&&($+=this._input.substr(0,20-$.length)),($.substr(0,20)+($.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var $=this.pastInput(),G=new Array($.length+1).join("-");return $+this.upcomingInput()+` +`+G+"^"},test_match:function($,G){var B,Z,z;if(this.options.backtrack_lexer&&(z={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(z.yylloc.range=this.yylloc.range.slice(0))),Z=$[0].match(/(?:\r\n?|\n).*/g),Z&&(this.yylineno+=Z.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:Z?Z[Z.length-1].length-Z[Z.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+$[0].length},this.yytext+=$[0],this.match+=$[0],this.matches=$,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice($[0].length),this.matched+=$[0],B=this.performAction.call(this,this.yy,this,G,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),B)return B;if(this._backtrack){for(var Y in z)this[Y]=z[Y];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var $,G,B,Z;this._more||(this.yytext="",this.match="");for(var z=this._currentRules(),Y=0;YG[0].length)){if(G=B,Z=Y,this.options.backtrack_lexer){if($=this.test_match(B,z[Y]),$!==!1)return $;if(this._backtrack){G=!1;continue}else return!1}else if(!this.options.flex)break}return G?($=this.test_match(G,z[Z]),$!==!1?$:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var G=this.next();return G||this.lex()},begin:function(G){this.conditionStack.push(G)},popState:function(){var G=this.conditionStack.length-1;return G>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(G){return G=this.conditionStack.length-1-Math.abs(G||0),G>=0?this.conditionStack[G]:"INITIAL"},pushState:function(G){this.begin(G)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(G,B,Z,z){switch(Z){case 0:return this.begin("acc_title"),22;case 1:return this.popState(),"acc_title_value";case 2:return this.begin("acc_descr"),24;case 3:return this.popState(),"acc_descr_value";case 4:this.begin("acc_descr_multiline");break;case 5:this.popState();break;case 6:return"acc_descr_multiline_value";case 7:return 10;case 8:break;case 9:return 8;case 10:return 28;case 11:return 48;case 12:return 4;case 13:return this.begin("block"),15;case 14:return 36;case 15:break;case 16:return 37;case 17:return 34;case 18:return 34;case 19:return 38;case 20:break;case 21:return this.popState(),17;case 22:return B.yytext[0];case 23:return 18;case 24:return 19;case 25:return 41;case 26:return 43;case 27:return 43;case 28:return 43;case 29:return 41;case 30:return 41;case 31:return 42;case 32:return 42;case 33:return 42;case 34:return 42;case 35:return 42;case 36:return 43;case 37:return 42;case 38:return 43;case 39:return 44;case 40:return 44;case 41:return 44;case 42:return 44;case 43:return 41;case 44:return 42;case 45:return 43;case 46:return 45;case 47:return 46;case 48:return 47;case 49:return 47;case 50:return 46;case 51:return 46;case 52:return 46;case 53:return 27;case 54:return B.yytext[0];case 55:return 6}},rules:[/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:[\s]+)/i,/^(?:"[^"%\r\n\v\b\\]+")/i,/^(?:"[^"]*")/i,/^(?:erDiagram\b)/i,/^(?:\{)/i,/^(?:,)/i,/^(?:\s+)/i,/^(?:\b((?:PK)|(?:FK)|(?:UK))\b)/i,/^(?:(.*?)[~](.*?)*[~])/i,/^(?:[\*A-Za-z_][A-Za-z0-9\-_\[\]\(\)]*)/i,/^(?:"[^"]*")/i,/^(?:[\n]+)/i,/^(?:\})/i,/^(?:.)/i,/^(?:\[)/i,/^(?:\])/i,/^(?:one or zero\b)/i,/^(?:one or more\b)/i,/^(?:one or many\b)/i,/^(?:1\+)/i,/^(?:\|o\b)/i,/^(?:zero or one\b)/i,/^(?:zero or more\b)/i,/^(?:zero or many\b)/i,/^(?:0\+)/i,/^(?:\}o\b)/i,/^(?:many\(0\))/i,/^(?:many\(1\))/i,/^(?:many\b)/i,/^(?:\}\|)/i,/^(?:one\b)/i,/^(?:only one\b)/i,/^(?:1\b)/i,/^(?:\|\|)/i,/^(?:o\|)/i,/^(?:o\{)/i,/^(?:\|\{)/i,/^(?:\s*u\b)/i,/^(?:\.\.)/i,/^(?:--)/i,/^(?:to\b)/i,/^(?:optionally to\b)/i,/^(?:\.-)/i,/^(?:-\.)/i,/^(?:[A-Za-z_][A-Za-z0-9\-_]*)/i,/^(?:.)/i,/^(?:$)/i],conditions:{acc_descr_multiline:{rules:[5,6],inclusive:!1},acc_descr:{rules:[3],inclusive:!1},acc_title:{rules:[1],inclusive:!1},block:{rules:[14,15,16,17,18,19,20,21,22],inclusive:!1},INITIAL:{rules:[0,2,4,7,8,9,10,11,12,13,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55],inclusive:!0}}};return U}();P.lexer=M;function F(){this.yy={}}return F.prototype=P,P.Parser=F,new F}();Rht.parser=Rht;const Xpa=Rht;let ZN={},Qbt=[];const Qpa={ZERO_OR_ONE:"ZERO_OR_ONE",ZERO_OR_MORE:"ZERO_OR_MORE",ONE_OR_MORE:"ONE_OR_MORE",ONLY_ONE:"ONLY_ONE",MD_PARENT:"MD_PARENT"},Zpa={NON_IDENTIFYING:"NON_IDENTIFYING",IDENTIFYING:"IDENTIFYING"},ftr=function(e,t=void 0){return ZN[e]===void 0?(ZN[e]={attributes:[],alias:t},ut.info("Added new entity :",e)):ZN[e]&&!ZN[e].alias&&t&&(ZN[e].alias=t,ut.info(`Add alias '${t}' to entity '${e}'`)),ZN[e]},Jpa=()=>ZN,ega=function(e,t){let r=ftr(e),a;for(a=t.length-1;a>=0;a--)r.attributes.push(t[a]),ut.debug("Added attribute ",t[a].attributeName)},tga=function(e,t,r,a){let s={entityA:e,roleA:t,entityB:r,relSpec:a};Qbt.push(s),ut.debug("Added new relationship :",s)},nga=()=>Qbt,rga=function(){ZN={},Qbt=[],Mb()},iga={Cardinality:Qpa,Identification:Zpa,getConfig:()=>Qt().er,addEntity:ftr,addAttributes:ega,getEntities:Jpa,addRelationship:tga,getRelationships:nga,clear:rga,setAccTitle:Pb,getAccTitle:Ev,setAccDescription:xv,getAccDescription:Sv,setDiagramTitle:Zw,getDiagramTitle:Tv},v3={ONLY_ONE_START:"ONLY_ONE_START",ONLY_ONE_END:"ONLY_ONE_END",ZERO_OR_ONE_START:"ZERO_OR_ONE_START",ZERO_OR_ONE_END:"ZERO_OR_ONE_END",ONE_OR_MORE_START:"ONE_OR_MORE_START",ONE_OR_MORE_END:"ONE_OR_MORE_END",ZERO_OR_MORE_START:"ZERO_OR_MORE_START",ZERO_OR_MORE_END:"ZERO_OR_MORE_END",MD_PARENT_END:"MD_PARENT_END",MD_PARENT_START:"MD_PARENT_START"},aga=function(e,t){let r;e.append("defs").append("marker").attr("id",v3.MD_PARENT_START).attr("refX",0).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",v3.MD_PARENT_END).attr("refX",19).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"),e.append("defs").append("marker").attr("id",v3.ONLY_ONE_START).attr("refX",0).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("stroke",t.stroke).attr("fill","none").attr("d","M9,0 L9,18 M15,0 L15,18"),e.append("defs").append("marker").attr("id",v3.ONLY_ONE_END).attr("refX",18).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("stroke",t.stroke).attr("fill","none").attr("d","M3,0 L3,18 M9,0 L9,18"),r=e.append("defs").append("marker").attr("id",v3.ZERO_OR_ONE_START).attr("refX",0).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto"),r.append("circle").attr("stroke",t.stroke).attr("fill","white").attr("cx",21).attr("cy",9).attr("r",6),r.append("path").attr("stroke",t.stroke).attr("fill","none").attr("d","M9,0 L9,18"),r=e.append("defs").append("marker").attr("id",v3.ZERO_OR_ONE_END).attr("refX",30).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto"),r.append("circle").attr("stroke",t.stroke).attr("fill","white").attr("cx",9).attr("cy",9).attr("r",6),r.append("path").attr("stroke",t.stroke).attr("fill","none").attr("d","M21,0 L21,18"),e.append("defs").append("marker").attr("id",v3.ONE_OR_MORE_START).attr("refX",18).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("stroke",t.stroke).attr("fill","none").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",v3.ONE_OR_MORE_END).attr("refX",27).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("stroke",t.stroke).attr("fill","none").attr("d","M3,9 L3,27 M9,18 Q27,0 45,18 Q27,36 9,18"),r=e.append("defs").append("marker").attr("id",v3.ZERO_OR_MORE_START).attr("refX",18).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto"),r.append("circle").attr("stroke",t.stroke).attr("fill","white").attr("cx",48).attr("cy",18).attr("r",6),r.append("path").attr("stroke",t.stroke).attr("fill","none").attr("d","M0,18 Q18,0 36,18 Q18,36 0,18"),r=e.append("defs").append("marker").attr("id",v3.ZERO_OR_MORE_END).attr("refX",39).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto"),r.append("circle").attr("stroke",t.stroke).attr("fill","white").attr("cx",9).attr("cy",18).attr("r",6),r.append("path").attr("stroke",t.stroke).attr("fill","none").attr("d","M21,18 Q39,0 57,18 Q39,36 21,18")},_3={ERMarkers:v3,insertMarkers:aga},sga=/[^\dA-Za-z](\W)*/g;let xp={},_le=new Map;const oga=function(e){const t=Object.keys(e);for(const r of t)xp[r]=e[r]},lga=(e,t,r)=>{const a=xp.entityPadding/3,s=xp.entityPadding/3,o=xp.fontSize*.85,u=t.node().getBBox(),h=[];let f=!1,p=!1,m=0,b=0,_=0,w=0,S=u.height+a*2,C=1;r.forEach(N=>{N.attributeKeyTypeList!==void 0&&N.attributeKeyTypeList.length>0&&(f=!0),N.attributeComment!==void 0&&(p=!0)}),r.forEach(N=>{const L=`${t.node().id}-attr-${C}`;let P=0;const M=Nse(N.attributeType),F=e.append("text").classed("er entityLabel",!0).attr("id",`${L}-type`).attr("x",0).attr("y",0).style("dominant-baseline","middle").style("text-anchor","left").style("font-family",Qt().fontFamily).style("font-size",o+"px").text(M),U=e.append("text").classed("er entityLabel",!0).attr("id",`${L}-name`).attr("x",0).attr("y",0).style("dominant-baseline","middle").style("text-anchor","left").style("font-family",Qt().fontFamily).style("font-size",o+"px").text(N.attributeName),$={};$.tn=F,$.nn=U;const G=F.node().getBBox(),B=U.node().getBBox();if(m=Math.max(m,G.width),b=Math.max(b,B.width),P=Math.max(G.height,B.height),f){const Z=N.attributeKeyTypeList!==void 0?N.attributeKeyTypeList.join(","):"",z=e.append("text").classed("er entityLabel",!0).attr("id",`${L}-key`).attr("x",0).attr("y",0).style("dominant-baseline","middle").style("text-anchor","left").style("font-family",Qt().fontFamily).style("font-size",o+"px").text(Z);$.kn=z;const Y=z.node().getBBox();_=Math.max(_,Y.width),P=Math.max(P,Y.height)}if(p){const Z=e.append("text").classed("er entityLabel",!0).attr("id",`${L}-comment`).attr("x",0).attr("y",0).style("dominant-baseline","middle").style("text-anchor","left").style("font-family",Qt().fontFamily).style("font-size",o+"px").text(N.attributeComment||"");$.cn=Z;const z=Z.node().getBBox();w=Math.max(w,z.width),P=Math.max(P,z.height)}$.height=P,h.push($),S+=P+a*2,C+=1});let A=4;f&&(A+=2),p&&(A+=2);const k=m+b+_+w,I={width:Math.max(xp.minEntityWidth,Math.max(u.width+xp.entityPadding*2,k+s*A)),height:r.length>0?S:Math.max(xp.minEntityHeight,u.height+xp.entityPadding*2)};if(r.length>0){const N=Math.max(0,(I.width-k-s*A)/(A/2));t.attr("transform","translate("+I.width/2+","+(a+u.height/2)+")");let L=u.height+a*2,P="attributeBoxOdd";h.forEach(M=>{const F=L+a+M.height/2;M.tn.attr("transform","translate("+s+","+F+")");const U=e.insert("rect","#"+M.tn.node().id).classed(`er ${P}`,!0).attr("x",0).attr("y",L).attr("width",m+s*2+N).attr("height",M.height+a*2),$=parseFloat(U.attr("x"))+parseFloat(U.attr("width"));M.nn.attr("transform","translate("+($+s)+","+F+")");const G=e.insert("rect","#"+M.nn.node().id).classed(`er ${P}`,!0).attr("x",$).attr("y",L).attr("width",b+s*2+N).attr("height",M.height+a*2);let B=parseFloat(G.attr("x"))+parseFloat(G.attr("width"));if(f){M.kn.attr("transform","translate("+(B+s)+","+F+")");const Z=e.insert("rect","#"+M.kn.node().id).classed(`er ${P}`,!0).attr("x",B).attr("y",L).attr("width",_+s*2+N).attr("height",M.height+a*2);B=parseFloat(Z.attr("x"))+parseFloat(Z.attr("width"))}p&&(M.cn.attr("transform","translate("+(B+s)+","+F+")"),e.insert("rect","#"+M.cn.node().id).classed(`er ${P}`,"true").attr("x",B).attr("y",L).attr("width",w+s*2+N).attr("height",M.height+a*2)),L+=M.height+a*2,P=P==="attributeBoxOdd"?"attributeBoxEven":"attributeBoxOdd"})}else I.height=Math.max(xp.minEntityHeight,S),t.attr("transform","translate("+I.width/2+","+I.height/2+")");return I},cga=function(e,t,r){const a=Object.keys(t);let s;return a.forEach(function(o){const u=gga(o,"entity");_le.set(o,u);const h=e.append("g").attr("id",u);s=s===void 0?u:s;const f="text-"+u,p=h.append("text").classed("er entityLabel",!0).attr("id",f).attr("x",0).attr("y",0).style("dominant-baseline","middle").style("text-anchor","middle").style("font-family",Qt().fontFamily).style("font-size",xp.fontSize+"px").text(t[o].alias??o),{width:m,height:b}=lga(h,p,t[o].attributes),w=h.insert("rect","#"+f).classed("er entityBox",!0).attr("x",0).attr("y",0).attr("width",m).attr("height",b).node().getBBox();r.setNode(u,{width:w.width,height:w.height,shape:"rect",id:u})}),s},uga=function(e,t){t.nodes().forEach(function(r){r!==void 0&&t.node(r)!==void 0&&e.select("#"+r).attr("transform","translate("+(t.node(r).x-t.node(r).width/2)+","+(t.node(r).y-t.node(r).height/2)+" )")})},ptr=function(e){return(e.entityA+e.roleA+e.entityB).replace(/\s/g,"")},hga=function(e,t){return e.forEach(function(r){t.setEdge(_le.get(r.entityA),_le.get(r.entityB),{relationship:r},ptr(r))}),e};let SCn=0;const dga=function(e,t,r,a,s){SCn++;const o=r.edge(_le.get(t.entityA),_le.get(t.entityB),ptr(t)),u=r_().x(function(S){return S.x}).y(function(S){return S.y}).curve(j3),h=e.insert("path","#"+a).classed("er relationshipLine",!0).attr("d",u(o.points)).style("stroke",xp.stroke).style("fill","none");t.relSpec.relType===s.db.Identification.NON_IDENTIFYING&&h.attr("stroke-dasharray","8,8");let f="";switch(xp.arrowMarkerAbsolute&&(f=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,f=f.replace(/\(/g,"\\("),f=f.replace(/\)/g,"\\)")),t.relSpec.cardA){case s.db.Cardinality.ZERO_OR_ONE:h.attr("marker-end","url("+f+"#"+_3.ERMarkers.ZERO_OR_ONE_END+")");break;case s.db.Cardinality.ZERO_OR_MORE:h.attr("marker-end","url("+f+"#"+_3.ERMarkers.ZERO_OR_MORE_END+")");break;case s.db.Cardinality.ONE_OR_MORE:h.attr("marker-end","url("+f+"#"+_3.ERMarkers.ONE_OR_MORE_END+")");break;case s.db.Cardinality.ONLY_ONE:h.attr("marker-end","url("+f+"#"+_3.ERMarkers.ONLY_ONE_END+")");break;case s.db.Cardinality.MD_PARENT:h.attr("marker-end","url("+f+"#"+_3.ERMarkers.MD_PARENT_END+")");break}switch(t.relSpec.cardB){case s.db.Cardinality.ZERO_OR_ONE:h.attr("marker-start","url("+f+"#"+_3.ERMarkers.ZERO_OR_ONE_START+")");break;case s.db.Cardinality.ZERO_OR_MORE:h.attr("marker-start","url("+f+"#"+_3.ERMarkers.ZERO_OR_MORE_START+")");break;case s.db.Cardinality.ONE_OR_MORE:h.attr("marker-start","url("+f+"#"+_3.ERMarkers.ONE_OR_MORE_START+")");break;case s.db.Cardinality.ONLY_ONE:h.attr("marker-start","url("+f+"#"+_3.ERMarkers.ONLY_ONE_START+")");break;case s.db.Cardinality.MD_PARENT:h.attr("marker-start","url("+f+"#"+_3.ERMarkers.MD_PARENT_START+")");break}const p=h.node().getTotalLength(),m=h.node().getPointAtLength(p*.5),b="rel"+SCn,w=e.append("text").classed("er relationshipLabel",!0).attr("id",b).attr("x",m.x).attr("y",m.y).style("text-anchor","middle").style("dominant-baseline","middle").style("font-family",Qt().fontFamily).style("font-size",xp.fontSize+"px").text(t.roleA).node().getBBox();e.insert("rect","#"+b).classed("er relationshipLabelBox",!0).attr("x",m.x-w.width/2).attr("y",m.y-w.height/2).attr("width",w.width).attr("height",w.height)},fga=function(e,t,r,a){xp=Qt().er,ut.info("Drawing ER diagram");const s=Qt().securityLevel;let o;s==="sandbox"&&(o=gn("#i"+t));const h=gn(s==="sandbox"?o.nodes()[0].contentDocument.body:"body").select(`[id='${t}']`);_3.insertMarkers(h,xp);let f;f=new F1({multigraph:!0,directed:!0,compound:!1}).setGraph({rankdir:xp.layoutDirection,marginx:20,marginy:20,nodesep:100,edgesep:100,ranksep:100}).setDefaultEdgeLabel(function(){return{}});const p=cga(h,a.db.getEntities(),f),m=hga(a.db.getRelationships(),f);oK(f),uga(h,f),m.forEach(function(C){dga(h,C,f,p,a)});const b=xp.diagramPadding;il.insertTitle(h,"entityTitleText",xp.titleTopMargin,a.db.getDiagramTitle());const _=h.node().getBBox(),w=_.width+b*2,S=_.height+b*2;Db(h,S,w,xp.useMaxWidth),h.attr("viewBox",`${_.x-b} ${_.y-b} ${w} ${S}`)},pga="28e9f9db-3c8d-5aa5-9faf-44286ae5937c";function gga(e="",t=""){const r=e.replace(sga,"");return`${TCn(t)}${TCn(r)}${Kpa(e,pga)}`}function TCn(e=""){return e.length>0?`${e}-`:""}const mga={setConf:oga,draw:fga},bga=e=>` + .entityBox { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + } + + .attributeBoxOdd { + fill: ${e.attributeBackgroundColorOdd}; + stroke: ${e.nodeBorder}; + } + + .attributeBoxEven { + fill: ${e.attributeBackgroundColorEven}; + stroke: ${e.nodeBorder}; + } + + .relationshipLabelBox { + fill: ${e.tertiaryColor}; + opacity: 0.7; + background-color: ${e.tertiaryColor}; + rect { + opacity: 0.5; + } + } + + .relationshipLine { + stroke: ${e.lineColor}; + } + + .entityTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; + } + #MD_PARENT_START { + fill: #f5f5f5 !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; + } + #MD_PARENT_END { + fill: #f5f5f5 !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; + } + +`,yga=bga,vga={parser:Xpa,db:iga,renderer:mga,styles:yga},_ga=Object.freeze(Object.defineProperty({__proto__:null,diagram:vga},Symbol.toStringTag,{value:"Module"}));var Iht=function(){var e=function(P,M,F,U){for(F=F||{},U=P.length;U--;F[P[U]]=M);return F},t=[1,3],r=[1,6],a=[1,4],s=[1,5],o=[2,5],u=[1,12],h=[5,7,13,19,21,23,24,26,28,31,37,40,47],f=[7,13,19,21,23,24,26,28,31,37,40],p=[7,12,13,19,21,23,24,26,28,31,37,40],m=[7,13,47],b=[1,42],_=[1,41],w=[7,13,29,32,35,38,47],S=[1,55],C=[1,56],A=[1,57],k=[7,13,32,35,42,47],I={trace:function(){},yy:{},symbols_:{error:2,start:3,eol:4,GG:5,document:6,EOF:7,":":8,DIR:9,options:10,body:11,OPT:12,NL:13,line:14,statement:15,commitStatement:16,mergeStatement:17,cherryPickStatement:18,acc_title:19,acc_title_value:20,acc_descr:21,acc_descr_value:22,acc_descr_multiline_value:23,section:24,branchStatement:25,CHECKOUT:26,ref:27,BRANCH:28,ORDER:29,NUM:30,CHERRY_PICK:31,COMMIT_ID:32,STR:33,PARENT_COMMIT:34,COMMIT_TAG:35,EMPTYSTR:36,MERGE:37,COMMIT_TYPE:38,commitType:39,COMMIT:40,commit_arg:41,COMMIT_MSG:42,NORMAL:43,REVERSE:44,HIGHLIGHT:45,ID:46,";":47,$accept:0,$end:1},terminals_:{2:"error",5:"GG",7:"EOF",8:":",9:"DIR",12:"OPT",13:"NL",19:"acc_title",20:"acc_title_value",21:"acc_descr",22:"acc_descr_value",23:"acc_descr_multiline_value",24:"section",26:"CHECKOUT",28:"BRANCH",29:"ORDER",30:"NUM",31:"CHERRY_PICK",32:"COMMIT_ID",33:"STR",34:"PARENT_COMMIT",35:"COMMIT_TAG",36:"EMPTYSTR",37:"MERGE",38:"COMMIT_TYPE",40:"COMMIT",42:"COMMIT_MSG",43:"NORMAL",44:"REVERSE",45:"HIGHLIGHT",46:"ID",47:";"},productions_:[0,[3,2],[3,3],[3,4],[3,5],[6,0],[6,2],[10,2],[10,1],[11,0],[11,2],[14,2],[14,1],[15,1],[15,1],[15,1],[15,2],[15,2],[15,1],[15,1],[15,1],[15,2],[25,2],[25,4],[18,3],[18,5],[18,5],[18,7],[18,7],[18,5],[18,5],[18,5],[18,7],[18,7],[18,7],[18,7],[17,2],[17,4],[17,4],[17,4],[17,6],[17,6],[17,6],[17,6],[17,6],[17,6],[17,8],[17,8],[17,8],[17,8],[17,8],[17,8],[16,2],[16,3],[16,3],[16,5],[16,5],[16,3],[16,5],[16,5],[16,5],[16,5],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,3],[16,5],[16,5],[16,5],[16,5],[16,5],[16,5],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,7],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[16,9],[41,0],[41,1],[39,1],[39,1],[39,1],[27,1],[27,1],[4,1],[4,1],[4,1]],performAction:function(M,F,U,$,G,B,Z){var z=B.length-1;switch(G){case 2:return B[z];case 3:return B[z-1];case 4:return $.setDirection(B[z-3]),B[z-1];case 6:$.setOptions(B[z-1]),this.$=B[z];break;case 7:B[z-1]+=B[z],this.$=B[z-1];break;case 9:this.$=[];break;case 10:B[z-1].push(B[z]),this.$=B[z-1];break;case 11:this.$=B[z-1];break;case 16:this.$=B[z].trim(),$.setAccTitle(this.$);break;case 17:case 18:this.$=B[z].trim(),$.setAccDescription(this.$);break;case 19:$.addSection(B[z].substr(8)),this.$=B[z].substr(8);break;case 21:$.checkout(B[z]);break;case 22:$.branch(B[z]);break;case 23:$.branch(B[z-2],B[z]);break;case 24:$.cherryPick(B[z],"",void 0);break;case 25:$.cherryPick(B[z-2],"",void 0,B[z]);break;case 26:$.cherryPick(B[z-2],"",B[z]);break;case 27:$.cherryPick(B[z-4],"",B[z],B[z-2]);break;case 28:$.cherryPick(B[z-4],"",B[z-2],B[z]);break;case 29:$.cherryPick(B[z],"",B[z-2]);break;case 30:$.cherryPick(B[z],"","");break;case 31:$.cherryPick(B[z-2],"","");break;case 32:$.cherryPick(B[z-4],"","",B[z-2]);break;case 33:$.cherryPick(B[z-4],"","",B[z]);break;case 34:$.cherryPick(B[z-2],"",B[z-4],B[z]);break;case 35:$.cherryPick(B[z-2],"","",B[z]);break;case 36:$.merge(B[z],"","","");break;case 37:$.merge(B[z-2],B[z],"","");break;case 38:$.merge(B[z-2],"",B[z],"");break;case 39:$.merge(B[z-2],"","",B[z]);break;case 40:$.merge(B[z-4],B[z],"",B[z-2]);break;case 41:$.merge(B[z-4],"",B[z],B[z-2]);break;case 42:$.merge(B[z-4],"",B[z-2],B[z]);break;case 43:$.merge(B[z-4],B[z-2],B[z],"");break;case 44:$.merge(B[z-4],B[z-2],"",B[z]);break;case 45:$.merge(B[z-4],B[z],B[z-2],"");break;case 46:$.merge(B[z-6],B[z-4],B[z-2],B[z]);break;case 47:$.merge(B[z-6],B[z],B[z-4],B[z-2]);break;case 48:$.merge(B[z-6],B[z-4],B[z],B[z-2]);break;case 49:$.merge(B[z-6],B[z-2],B[z-4],B[z]);break;case 50:$.merge(B[z-6],B[z],B[z-2],B[z-4]);break;case 51:$.merge(B[z-6],B[z-2],B[z],B[z-4]);break;case 52:$.commit(B[z]);break;case 53:$.commit("","",$.commitType.NORMAL,B[z]);break;case 54:$.commit("","",B[z],"");break;case 55:$.commit("","",B[z],B[z-2]);break;case 56:$.commit("","",B[z-2],B[z]);break;case 57:$.commit("",B[z],$.commitType.NORMAL,"");break;case 58:$.commit("",B[z-2],$.commitType.NORMAL,B[z]);break;case 59:$.commit("",B[z],$.commitType.NORMAL,B[z-2]);break;case 60:$.commit("",B[z-2],B[z],"");break;case 61:$.commit("",B[z],B[z-2],"");break;case 62:$.commit("",B[z-4],B[z-2],B[z]);break;case 63:$.commit("",B[z-4],B[z],B[z-2]);break;case 64:$.commit("",B[z-2],B[z-4],B[z]);break;case 65:$.commit("",B[z],B[z-4],B[z-2]);break;case 66:$.commit("",B[z],B[z-2],B[z-4]);break;case 67:$.commit("",B[z-2],B[z],B[z-4]);break;case 68:$.commit(B[z],"",$.commitType.NORMAL,"");break;case 69:$.commit(B[z],"",$.commitType.NORMAL,B[z-2]);break;case 70:$.commit(B[z-2],"",$.commitType.NORMAL,B[z]);break;case 71:$.commit(B[z-2],"",B[z],"");break;case 72:$.commit(B[z],"",B[z-2],"");break;case 73:$.commit(B[z],B[z-2],$.commitType.NORMAL,"");break;case 74:$.commit(B[z-2],B[z],$.commitType.NORMAL,"");break;case 75:$.commit(B[z-4],"",B[z-2],B[z]);break;case 76:$.commit(B[z-4],"",B[z],B[z-2]);break;case 77:$.commit(B[z-2],"",B[z-4],B[z]);break;case 78:$.commit(B[z],"",B[z-4],B[z-2]);break;case 79:$.commit(B[z],"",B[z-2],B[z-4]);break;case 80:$.commit(B[z-2],"",B[z],B[z-4]);break;case 81:$.commit(B[z-4],B[z],B[z-2],"");break;case 82:$.commit(B[z-4],B[z-2],B[z],"");break;case 83:$.commit(B[z-2],B[z],B[z-4],"");break;case 84:$.commit(B[z],B[z-2],B[z-4],"");break;case 85:$.commit(B[z],B[z-4],B[z-2],"");break;case 86:$.commit(B[z-2],B[z-4],B[z],"");break;case 87:$.commit(B[z-4],B[z],$.commitType.NORMAL,B[z-2]);break;case 88:$.commit(B[z-4],B[z-2],$.commitType.NORMAL,B[z]);break;case 89:$.commit(B[z-2],B[z],$.commitType.NORMAL,B[z-4]);break;case 90:$.commit(B[z],B[z-2],$.commitType.NORMAL,B[z-4]);break;case 91:$.commit(B[z],B[z-4],$.commitType.NORMAL,B[z-2]);break;case 92:$.commit(B[z-2],B[z-4],$.commitType.NORMAL,B[z]);break;case 93:$.commit(B[z-6],B[z-4],B[z-2],B[z]);break;case 94:$.commit(B[z-6],B[z-4],B[z],B[z-2]);break;case 95:$.commit(B[z-6],B[z-2],B[z-4],B[z]);break;case 96:$.commit(B[z-6],B[z],B[z-4],B[z-2]);break;case 97:$.commit(B[z-6],B[z-2],B[z],B[z-4]);break;case 98:$.commit(B[z-6],B[z],B[z-2],B[z-4]);break;case 99:$.commit(B[z-4],B[z-6],B[z-2],B[z]);break;case 100:$.commit(B[z-4],B[z-6],B[z],B[z-2]);break;case 101:$.commit(B[z-2],B[z-6],B[z-4],B[z]);break;case 102:$.commit(B[z],B[z-6],B[z-4],B[z-2]);break;case 103:$.commit(B[z-2],B[z-6],B[z],B[z-4]);break;case 104:$.commit(B[z],B[z-6],B[z-2],B[z-4]);break;case 105:$.commit(B[z],B[z-4],B[z-2],B[z-6]);break;case 106:$.commit(B[z-2],B[z-4],B[z],B[z-6]);break;case 107:$.commit(B[z],B[z-2],B[z-4],B[z-6]);break;case 108:$.commit(B[z-2],B[z],B[z-4],B[z-6]);break;case 109:$.commit(B[z-4],B[z-2],B[z],B[z-6]);break;case 110:$.commit(B[z-4],B[z],B[z-2],B[z-6]);break;case 111:$.commit(B[z-2],B[z-4],B[z-6],B[z]);break;case 112:$.commit(B[z],B[z-4],B[z-6],B[z-2]);break;case 113:$.commit(B[z-2],B[z],B[z-6],B[z-4]);break;case 114:$.commit(B[z],B[z-2],B[z-6],B[z-4]);break;case 115:$.commit(B[z-4],B[z-2],B[z-6],B[z]);break;case 116:$.commit(B[z-4],B[z],B[z-6],B[z-2]);break;case 117:this.$="";break;case 118:this.$=B[z];break;case 119:this.$=$.commitType.NORMAL;break;case 120:this.$=$.commitType.REVERSE;break;case 121:this.$=$.commitType.HIGHLIGHT;break}},table:[{3:1,4:2,5:t,7:r,13:a,47:s},{1:[3]},{3:7,4:2,5:t,7:r,13:a,47:s},{6:8,7:o,8:[1,9],9:[1,10],10:11,13:u},e(h,[2,124]),e(h,[2,125]),e(h,[2,126]),{1:[2,1]},{7:[1,13]},{6:14,7:o,10:11,13:u},{8:[1,15]},e(f,[2,9],{11:16,12:[1,17]}),e(p,[2,8]),{1:[2,2]},{7:[1,18]},{6:19,7:o,10:11,13:u},{7:[2,6],13:[1,22],14:20,15:21,16:23,17:24,18:25,19:[1,26],21:[1,27],23:[1,28],24:[1,29],25:30,26:[1,31],28:[1,35],31:[1,34],37:[1,33],40:[1,32]},e(p,[2,7]),{1:[2,3]},{7:[1,36]},e(f,[2,10]),{4:37,7:r,13:a,47:s},e(f,[2,12]),e(m,[2,13]),e(m,[2,14]),e(m,[2,15]),{20:[1,38]},{22:[1,39]},e(m,[2,18]),e(m,[2,19]),e(m,[2,20]),{27:40,33:b,46:_},e(m,[2,117],{41:43,32:[1,46],33:[1,48],35:[1,44],38:[1,45],42:[1,47]}),{27:49,33:b,46:_},{32:[1,50],35:[1,51]},{27:52,33:b,46:_},{1:[2,4]},e(f,[2,11]),e(m,[2,16]),e(m,[2,17]),e(m,[2,21]),e(w,[2,122]),e(w,[2,123]),e(m,[2,52]),{33:[1,53]},{39:54,43:S,44:C,45:A},{33:[1,58]},{33:[1,59]},e(m,[2,118]),e(m,[2,36],{32:[1,60],35:[1,62],38:[1,61]}),{33:[1,63]},{33:[1,64],36:[1,65]},e(m,[2,22],{29:[1,66]}),e(m,[2,53],{32:[1,68],38:[1,67],42:[1,69]}),e(m,[2,54],{32:[1,71],35:[1,70],42:[1,72]}),e(k,[2,119]),e(k,[2,120]),e(k,[2,121]),e(m,[2,57],{35:[1,73],38:[1,74],42:[1,75]}),e(m,[2,68],{32:[1,78],35:[1,76],38:[1,77]}),{33:[1,79]},{39:80,43:S,44:C,45:A},{33:[1,81]},e(m,[2,24],{34:[1,82],35:[1,83]}),{32:[1,84]},{32:[1,85]},{30:[1,86]},{39:87,43:S,44:C,45:A},{33:[1,88]},{33:[1,89]},{33:[1,90]},{33:[1,91]},{33:[1,92]},{33:[1,93]},{39:94,43:S,44:C,45:A},{33:[1,95]},{33:[1,96]},{39:97,43:S,44:C,45:A},{33:[1,98]},e(m,[2,37],{35:[1,100],38:[1,99]}),e(m,[2,38],{32:[1,102],35:[1,101]}),e(m,[2,39],{32:[1,103],38:[1,104]}),{33:[1,105]},{33:[1,106],36:[1,107]},{33:[1,108]},{33:[1,109]},e(m,[2,23]),e(m,[2,55],{32:[1,110],42:[1,111]}),e(m,[2,59],{38:[1,112],42:[1,113]}),e(m,[2,69],{32:[1,115],38:[1,114]}),e(m,[2,56],{32:[1,116],42:[1,117]}),e(m,[2,61],{35:[1,118],42:[1,119]}),e(m,[2,72],{32:[1,121],35:[1,120]}),e(m,[2,58],{38:[1,122],42:[1,123]}),e(m,[2,60],{35:[1,124],42:[1,125]}),e(m,[2,73],{35:[1,127],38:[1,126]}),e(m,[2,70],{32:[1,129],38:[1,128]}),e(m,[2,71],{32:[1,131],35:[1,130]}),e(m,[2,74],{35:[1,133],38:[1,132]}),{39:134,43:S,44:C,45:A},{33:[1,135]},{33:[1,136]},{33:[1,137]},{33:[1,138]},{39:139,43:S,44:C,45:A},e(m,[2,25],{35:[1,140]}),e(m,[2,26],{34:[1,141]}),e(m,[2,31],{34:[1,142]}),e(m,[2,29],{34:[1,143]}),e(m,[2,30],{34:[1,144]}),{33:[1,145]},{33:[1,146]},{39:147,43:S,44:C,45:A},{33:[1,148]},{39:149,43:S,44:C,45:A},{33:[1,150]},{33:[1,151]},{33:[1,152]},{33:[1,153]},{33:[1,154]},{33:[1,155]},{33:[1,156]},{39:157,43:S,44:C,45:A},{33:[1,158]},{33:[1,159]},{33:[1,160]},{39:161,43:S,44:C,45:A},{33:[1,162]},{39:163,43:S,44:C,45:A},{33:[1,164]},{33:[1,165]},{33:[1,166]},{39:167,43:S,44:C,45:A},{33:[1,168]},e(m,[2,43],{35:[1,169]}),e(m,[2,44],{38:[1,170]}),e(m,[2,42],{32:[1,171]}),e(m,[2,45],{35:[1,172]}),e(m,[2,40],{38:[1,173]}),e(m,[2,41],{32:[1,174]}),{33:[1,175],36:[1,176]},{33:[1,177]},{33:[1,178]},{33:[1,179]},{33:[1,180]},e(m,[2,66],{42:[1,181]}),e(m,[2,79],{32:[1,182]}),e(m,[2,67],{42:[1,183]}),e(m,[2,90],{38:[1,184]}),e(m,[2,80],{32:[1,185]}),e(m,[2,89],{38:[1,186]}),e(m,[2,65],{42:[1,187]}),e(m,[2,78],{32:[1,188]}),e(m,[2,64],{42:[1,189]}),e(m,[2,84],{35:[1,190]}),e(m,[2,77],{32:[1,191]}),e(m,[2,83],{35:[1,192]}),e(m,[2,63],{42:[1,193]}),e(m,[2,91],{38:[1,194]}),e(m,[2,62],{42:[1,195]}),e(m,[2,85],{35:[1,196]}),e(m,[2,86],{35:[1,197]}),e(m,[2,92],{38:[1,198]}),e(m,[2,76],{32:[1,199]}),e(m,[2,87],{38:[1,200]}),e(m,[2,75],{32:[1,201]}),e(m,[2,81],{35:[1,202]}),e(m,[2,82],{35:[1,203]}),e(m,[2,88],{38:[1,204]}),{33:[1,205]},{39:206,43:S,44:C,45:A},{33:[1,207]},{33:[1,208]},{39:209,43:S,44:C,45:A},{33:[1,210]},e(m,[2,27]),e(m,[2,32]),e(m,[2,28]),e(m,[2,33]),e(m,[2,34]),e(m,[2,35]),{33:[1,211]},{33:[1,212]},{33:[1,213]},{39:214,43:S,44:C,45:A},{33:[1,215]},{39:216,43:S,44:C,45:A},{33:[1,217]},{33:[1,218]},{33:[1,219]},{33:[1,220]},{33:[1,221]},{33:[1,222]},{33:[1,223]},{39:224,43:S,44:C,45:A},{33:[1,225]},{33:[1,226]},{33:[1,227]},{39:228,43:S,44:C,45:A},{33:[1,229]},{39:230,43:S,44:C,45:A},{33:[1,231]},{33:[1,232]},{33:[1,233]},{39:234,43:S,44:C,45:A},e(m,[2,46]),e(m,[2,48]),e(m,[2,47]),e(m,[2,49]),e(m,[2,51]),e(m,[2,50]),e(m,[2,107]),e(m,[2,108]),e(m,[2,105]),e(m,[2,106]),e(m,[2,110]),e(m,[2,109]),e(m,[2,114]),e(m,[2,113]),e(m,[2,112]),e(m,[2,111]),e(m,[2,116]),e(m,[2,115]),e(m,[2,104]),e(m,[2,103]),e(m,[2,102]),e(m,[2,101]),e(m,[2,99]),e(m,[2,100]),e(m,[2,98]),e(m,[2,97]),e(m,[2,96]),e(m,[2,95]),e(m,[2,93]),e(m,[2,94])],defaultActions:{7:[2,1],13:[2,2],18:[2,3],36:[2,4]},parseError:function(M,F){if(F.recoverable)this.trace(M);else{var U=new Error(M);throw U.hash=F,U}},parse:function(M){var F=this,U=[0],$=[],G=[null],B=[],Z=this.table,z="",Y=0,W=0,Q=2,V=1,j=B.slice.call(arguments,1),ee=Object.create(this.lexer),te={yy:{}};for(var ne in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ne)&&(te.yy[ne]=this.yy[ne]);ee.setInput(M,te.yy),te.yy.lexer=ee,te.yy.parser=this,typeof ee.yylloc>"u"&&(ee.yylloc={});var se=ee.yylloc;B.push(se);var ie=ee.options&&ee.options.ranges;typeof te.yy.parseError=="function"?this.parseError=te.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function ge(){var Le;return Le=$.pop()||ee.lex()||V,typeof Le!="number"&&(Le instanceof Array&&($=Le,Le=$.pop()),Le=F.symbols_[Le]||Le),Le}for(var ce,be,ve,De,ye={},Ee,he,we,Ce;;){if(be=U[U.length-1],this.defaultActions[be]?ve=this.defaultActions[be]:((ce===null||typeof ce>"u")&&(ce=ge()),ve=Z[be]&&Z[be][ce]),typeof ve>"u"||!ve.length||!ve[0]){var Ie="";Ce=[];for(Ee in Z[be])this.terminals_[Ee]&&Ee>Q&&Ce.push("'"+this.terminals_[Ee]+"'");ee.showPosition?Ie="Parse error on line "+(Y+1)+`: +`+ee.showPosition()+` +Expecting `+Ce.join(", ")+", got '"+(this.terminals_[ce]||ce)+"'":Ie="Parse error on line "+(Y+1)+": Unexpected "+(ce==V?"end of input":"'"+(this.terminals_[ce]||ce)+"'"),this.parseError(Ie,{text:ee.match,token:this.terminals_[ce]||ce,line:ee.yylineno,loc:se,expected:Ce})}if(ve[0]instanceof Array&&ve.length>1)throw new Error("Parse Error: multiple actions possible at state: "+be+", token: "+ce);switch(ve[0]){case 1:U.push(ce),G.push(ee.yytext),B.push(ee.yylloc),U.push(ve[1]),ce=null,W=ee.yyleng,z=ee.yytext,Y=ee.yylineno,se=ee.yylloc;break;case 2:if(he=this.productions_[ve[1]][1],ye.$=G[G.length-he],ye._$={first_line:B[B.length-(he||1)].first_line,last_line:B[B.length-1].last_line,first_column:B[B.length-(he||1)].first_column,last_column:B[B.length-1].last_column},ie&&(ye._$.range=[B[B.length-(he||1)].range[0],B[B.length-1].range[1]]),De=this.performAction.apply(ye,[z,W,Y,te.yy,ve[1],G,B].concat(j)),typeof De<"u")return De;he&&(U=U.slice(0,-1*he*2),G=G.slice(0,-1*he),B=B.slice(0,-1*he)),U.push(this.productions_[ve[1]][0]),G.push(ye.$),B.push(ye._$),we=Z[U[U.length-2]][U[U.length-1]],U.push(we);break;case 3:return!0}}return!0}},N=function(){var P={EOF:1,parseError:function(F,U){if(this.yy.parser)this.yy.parser.parseError(F,U);else throw new Error(F)},setInput:function(M,F){return this.yy=F||this.yy||{},this._input=M,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var M=this._input[0];this.yytext+=M,this.yyleng++,this.offset++,this.match+=M,this.matched+=M;var F=M.match(/(?:\r\n?|\n).*/g);return F?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),M},unput:function(M){var F=M.length,U=M.split(/(?:\r\n?|\n)/g);this._input=M+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-F),this.offset-=F;var $=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),U.length-1&&(this.yylineno-=U.length-1);var G=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:U?(U.length===$.length?this.yylloc.first_column:0)+$[$.length-U.length].length-U[0].length:this.yylloc.first_column-F},this.options.ranges&&(this.yylloc.range=[G[0],G[0]+this.yyleng-F]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(M){this.unput(this.match.slice(M))},pastInput:function(){var M=this.matched.substr(0,this.matched.length-this.match.length);return(M.length>20?"...":"")+M.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var M=this.match;return M.length<20&&(M+=this._input.substr(0,20-M.length)),(M.substr(0,20)+(M.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var M=this.pastInput(),F=new Array(M.length+1).join("-");return M+this.upcomingInput()+` +`+F+"^"},test_match:function(M,F){var U,$,G;if(this.options.backtrack_lexer&&(G={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(G.yylloc.range=this.yylloc.range.slice(0))),$=M[0].match(/(?:\r\n?|\n).*/g),$&&(this.yylineno+=$.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:$?$[$.length-1].length-$[$.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+M[0].length},this.yytext+=M[0],this.match+=M[0],this.matches=M,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(M[0].length),this.matched+=M[0],U=this.performAction.call(this,this.yy,this,F,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),U)return U;if(this._backtrack){for(var B in G)this[B]=G[B];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var M,F,U,$;this._more||(this.yytext="",this.match="");for(var G=this._currentRules(),B=0;BF[0].length)){if(F=U,$=B,this.options.backtrack_lexer){if(M=this.test_match(U,G[B]),M!==!1)return M;if(this._backtrack){F=!1;continue}else return!1}else if(!this.options.flex)break}return F?(M=this.test_match(F,G[$]),M!==!1?M:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var F=this.next();return F||this.lex()},begin:function(F){this.conditionStack.push(F)},popState:function(){var F=this.conditionStack.length-1;return F>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(F){return F=this.conditionStack.length-1-Math.abs(F||0),F>=0?this.conditionStack[F]:"INITIAL"},pushState:function(F){this.begin(F)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(F,U,$,G){switch($){case 0:return this.begin("acc_title"),19;case 1:return this.popState(),"acc_title_value";case 2:return this.begin("acc_descr"),21;case 3:return this.popState(),"acc_descr_value";case 4:this.begin("acc_descr_multiline");break;case 5:this.popState();break;case 6:return"acc_descr_multiline_value";case 7:return 13;case 8:break;case 9:break;case 10:return 5;case 11:return 40;case 12:return 32;case 13:return 38;case 14:return 42;case 15:return 43;case 16:return 44;case 17:return 45;case 18:return 35;case 19:return 28;case 20:return 29;case 21:return 37;case 22:return 31;case 23:return 34;case 24:return 26;case 25:return 9;case 26:return 9;case 27:return 8;case 28:return"CARET";case 29:this.begin("options");break;case 30:this.popState();break;case 31:return 12;case 32:return 36;case 33:this.begin("string");break;case 34:this.popState();break;case 35:return 33;case 36:return 30;case 37:return 46;case 38:return 7}},rules:[/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:(\r?\n)+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:gitGraph\b)/i,/^(?:commit(?=\s|$))/i,/^(?:id:)/i,/^(?:type:)/i,/^(?:msg:)/i,/^(?:NORMAL\b)/i,/^(?:REVERSE\b)/i,/^(?:HIGHLIGHT\b)/i,/^(?:tag:)/i,/^(?:branch(?=\s|$))/i,/^(?:order:)/i,/^(?:merge(?=\s|$))/i,/^(?:cherry-pick(?=\s|$))/i,/^(?:parent:)/i,/^(?:checkout(?=\s|$))/i,/^(?:LR\b)/i,/^(?:TB\b)/i,/^(?::)/i,/^(?:\^)/i,/^(?:options\r?\n)/i,/^(?:[ \r\n\t]+end\b)/i,/^(?:[\s\S]+(?=[ \r\n\t]+end))/i,/^(?:["]["])/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[0-9]+(?=\s|$))/i,/^(?:\w([-\./\w]*[-\w])?)/i,/^(?:$)/i,/^(?:\s+)/i],conditions:{acc_descr_multiline:{rules:[5,6],inclusive:!1},acc_descr:{rules:[3],inclusive:!1},acc_title:{rules:[1],inclusive:!1},options:{rules:[30,31],inclusive:!1},string:{rules:[34,35],inclusive:!1},INITIAL:{rules:[0,2,4,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,32,33,36,37,38,39],inclusive:!0}}};return P}();I.lexer=N;function L(){this.yy={}}return L.prototype=I,I.Parser=L,new L}();Iht.parser=Iht;const wga=Iht;let c5e=Qt().gitGraph.mainBranchName,Ega=Qt().gitGraph.mainBranchOrder,kp={},av=null,wle={};wle[c5e]={name:c5e,order:Ega};let k1={};k1[c5e]=av;let Sg=c5e,gtr="LR",c$=0;function Zbt(){return JQn({length:7})}function xga(e,t){const r=Object.create(null);return e.reduce((a,s)=>{const o=t(s);return r[o]||(r[o]=!0,a.push(s)),a},[])}const Sga=function(e){gtr=e};let mtr={};const Tga=function(e){ut.debug("options str",e),e=e&&e.trim(),e=e||"{}";try{mtr=JSON.parse(e)}catch(t){ut.error("error while parsing gitGraph options",t.message)}},Cga=function(){return mtr},Aga=function(e,t,r,a){ut.debug("Entering commit:",e,t,r,a),t=mi.sanitizeText(t,Qt()),e=mi.sanitizeText(e,Qt()),a=mi.sanitizeText(a,Qt());const s={id:t||c$+"-"+Zbt(),message:e,seq:c$++,type:r||dY.NORMAL,tag:a||"",parents:av==null?[]:[av.id],branch:Sg};av=s,kp[s.id]=s,k1[Sg]=s.id,ut.debug("in pushCommit "+s.id)},kga=function(e,t){if(e=mi.sanitizeText(e,Qt()),k1[e]===void 0)k1[e]=av!=null?av.id:null,wle[e]={name:e,order:t?parseInt(t,10):null},btr(e),ut.debug("in createBranch");else{let r=new Error('Trying to create an existing branch. (Help: Either use a new name if you want create a new branch or try using "checkout '+e+'")');throw r.hash={text:"branch "+e,token:"branch "+e,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:['"checkout '+e+'"']},r}},Rga=function(e,t,r,a){e=mi.sanitizeText(e,Qt()),t=mi.sanitizeText(t,Qt());const s=kp[k1[Sg]],o=kp[k1[e]];if(Sg===e){let h=new Error('Incorrect usage of "merge". Cannot merge a branch to itself');throw h.hash={text:"merge "+e,token:"merge "+e,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["branch abc"]},h}else if(s===void 0||!s){let h=new Error('Incorrect usage of "merge". Current branch ('+Sg+")has no commits");throw h.hash={text:"merge "+e,token:"merge "+e,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["commit"]},h}else if(k1[e]===void 0){let h=new Error('Incorrect usage of "merge". Branch to be merged ('+e+") does not exist");throw h.hash={text:"merge "+e,token:"merge "+e,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["branch "+e]},h}else if(o===void 0||!o){let h=new Error('Incorrect usage of "merge". Branch to be merged ('+e+") has no commits");throw h.hash={text:"merge "+e,token:"merge "+e,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:['"commit"']},h}else if(s===o){let h=new Error('Incorrect usage of "merge". Both branches have same head');throw h.hash={text:"merge "+e,token:"merge "+e,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["branch abc"]},h}else if(t&&kp[t]!==void 0){let h=new Error('Incorrect usage of "merge". Commit with id:'+t+" already exists, use different custom Id");throw h.hash={text:"merge "+e+t+r+a,token:"merge "+e+t+r+a,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["merge "+e+" "+t+"_UNIQUE "+r+" "+a]},h}const u={id:t||c$+"-"+Zbt(),message:"merged branch "+e+" into "+Sg,seq:c$++,parents:[av==null?null:av.id,k1[e]],branch:Sg,type:dY.MERGE,customType:r,customId:!!t,tag:a||""};av=u,kp[u.id]=u,k1[Sg]=u.id,ut.debug(k1),ut.debug("in mergeBranch")},Iga=function(e,t,r,a){if(ut.debug("Entering cherryPick:",e,t,r),e=mi.sanitizeText(e,Qt()),t=mi.sanitizeText(t,Qt()),r=mi.sanitizeText(r,Qt()),a=mi.sanitizeText(a,Qt()),!e||kp[e]===void 0){let u=new Error('Incorrect usage of "cherryPick". Source commit id should exist and provided');throw u.hash={text:"cherryPick "+e+" "+t,token:"cherryPick "+e+" "+t,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["cherry-pick abc"]},u}let s=kp[e],o=s.branch;if(a&&!(Array.isArray(s.parents)&&s.parents.includes(a)))throw new Error("Invalid operation: The specified parent commit is not an immediate parent of the cherry-picked commit.");if(s.type===dY.MERGE&&!a)throw new Error("Incorrect usage of cherry-pick: If the source commit is a merge commit, an immediate parent commit must be specified.");if(!t||kp[t]===void 0){if(o===Sg){let f=new Error('Incorrect usage of "cherryPick". Source commit is already on current branch');throw f.hash={text:"cherryPick "+e+" "+t,token:"cherryPick "+e+" "+t,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["cherry-pick abc"]},f}const u=kp[k1[Sg]];if(u===void 0||!u){let f=new Error('Incorrect usage of "cherry-pick". Current branch ('+Sg+")has no commits");throw f.hash={text:"cherryPick "+e+" "+t,token:"cherryPick "+e+" "+t,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["cherry-pick abc"]},f}const h={id:c$+"-"+Zbt(),message:"cherry-picked "+s+" into "+Sg,seq:c$++,parents:[av==null?null:av.id,s.id],branch:Sg,type:dY.CHERRY_PICK,tag:r??`cherry-pick:${s.id}${s.type===dY.MERGE?`|parent:${a}`:""}`};av=h,kp[h.id]=h,k1[Sg]=h.id,ut.debug(k1),ut.debug("in cherryPick")}},btr=function(e){if(e=mi.sanitizeText(e,Qt()),k1[e]===void 0){let t=new Error('Trying to checkout branch which is not yet created. (Help try using "branch '+e+'")');throw t.hash={text:"checkout "+e,token:"checkout "+e,line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:['"branch '+e+'"']},t}else{Sg=e;const t=k1[Sg];av=kp[t]}};function CCn(e,t,r){const a=e.indexOf(t);a===-1?e.push(r):e.splice(a,1,r)}function ytr(e){const t=e.reduce((s,o)=>s.seq>o.seq?s:o,e[0]);let r="";e.forEach(function(s){s===t?r+=" *":r+=" |"});const a=[r,t.id,t.seq];for(let s in k1)k1[s]===t.id&&a.push(s);if(ut.debug(a.join(" ")),t.parents&&t.parents.length==2){const s=kp[t.parents[0]];CCn(e,t,s),e.push(kp[t.parents[1]])}else{if(t.parents.length==0)return;{const s=kp[t.parents];CCn(e,t,s)}}e=xga(e,s=>s.id),ytr(e)}const Nga=function(){ut.debug(kp);const e=vtr()[0];ytr([e])},Oga=function(){kp={},av=null;let e=Qt().gitGraph.mainBranchName,t=Qt().gitGraph.mainBranchOrder;k1={},k1[e]=null,wle={},wle[e]={name:e,order:t},Sg=e,c$=0,Mb()},Lga=function(){return Object.values(wle).map((t,r)=>t.order!==null?t:{...t,order:parseFloat(`0.${r}`,10)}).sort((t,r)=>t.order-r.order).map(({name:t})=>({name:t}))},Dga=function(){return k1},Mga=function(){return kp},vtr=function(){const e=Object.keys(kp).map(function(t){return kp[t]});return e.forEach(function(t){ut.debug(t.id)}),e.sort((t,r)=>t.seq-r.seq),e},Pga=function(){return Sg},Bga=function(){return gtr},Fga=function(){return av},dY={NORMAL:0,REVERSE:1,HIGHLIGHT:2,MERGE:3,CHERRY_PICK:4},$ga={getConfig:()=>Qt().gitGraph,setDirection:Sga,setOptions:Tga,getOptions:Cga,commit:Aga,branch:kga,merge:Rga,cherryPick:Iga,checkout:btr,prettyPrint:Nga,clear:Oga,getBranchesAsObjArray:Lga,getBranches:Dga,getCommits:Mga,getCommitsArray:vtr,getCurrentBranch:Pga,getDirection:Bga,getHead:Fga,setAccTitle:Pb,getAccTitle:Ev,getAccDescription:Sv,setAccDescription:xv,setDiagramTitle:Zw,getDiagramTitle:Tv,commitType:dY};let zae={};const vg={NORMAL:0,REVERSE:1,HIGHLIGHT:2,MERGE:3,CHERRY_PICK:4},qB=8;let M2={},L7={},u5e=[],Ele=0,x1="LR";const Uga=()=>{M2={},L7={},zae={},Ele=0,u5e=[],x1="LR"},_tr=e=>{const t=document.createElementNS("http://www.w3.org/2000/svg","text");let r=[];typeof e=="string"?r=e.split(/\\n|\n|/gi):Array.isArray(e)?r=e:r=[];for(const a of r){const s=document.createElementNS("http://www.w3.org/2000/svg","tspan");s.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),s.setAttribute("dy","1em"),s.setAttribute("x","0"),s.setAttribute("class","row"),s.textContent=a.trim(),t.appendChild(s)}return t},zga=e=>{let t="",r=0;return e.forEach(a=>{const s=x1==="TB"?L7[a].y:L7[a].x;s>=r&&(t=a,r=s)}),t||void 0},ACn=(e,t,r)=>{const a=Qt().gitGraph,s=e.append("g").attr("class","commit-bullets"),o=e.append("g").attr("class","commit-labels");let u=0;x1==="TB"&&(u=30);const f=Object.keys(t).sort((_,w)=>t[_].seq-t[w].seq),p=a.parallelCommits,m=10,b=40;f.forEach(_=>{const w=t[_];if(p)if(w.parents.length){const k=zga(w.parents);u=x1==="TB"?L7[k].y+b:L7[k].x+b}else u=0,x1==="TB"&&(u=30);const S=u+m,C=x1==="TB"?S:M2[w.branch].pos,A=x1==="TB"?M2[w.branch].pos:S;if(r){let k,I=w.customType!==void 0&&w.customType!==""?w.customType:w.type;switch(I){case vg.NORMAL:k="commit-normal";break;case vg.REVERSE:k="commit-reverse";break;case vg.HIGHLIGHT:k="commit-highlight";break;case vg.MERGE:k="commit-merge";break;case vg.CHERRY_PICK:k="commit-cherry-pick";break;default:k="commit-normal"}if(I===vg.HIGHLIGHT){const N=s.append("rect");N.attr("x",A-10),N.attr("y",C-10),N.attr("height",20),N.attr("width",20),N.attr("class",`commit ${w.id} commit-highlight${M2[w.branch].index%qB} ${k}-outer`),s.append("rect").attr("x",A-6).attr("y",C-6).attr("height",12).attr("width",12).attr("class",`commit ${w.id} commit${M2[w.branch].index%qB} ${k}-inner`)}else if(I===vg.CHERRY_PICK)s.append("circle").attr("cx",A).attr("cy",C).attr("r",10).attr("class",`commit ${w.id} ${k}`),s.append("circle").attr("cx",A-3).attr("cy",C+2).attr("r",2.75).attr("fill","#fff").attr("class",`commit ${w.id} ${k}`),s.append("circle").attr("cx",A+3).attr("cy",C+2).attr("r",2.75).attr("fill","#fff").attr("class",`commit ${w.id} ${k}`),s.append("line").attr("x1",A+3).attr("y1",C+1).attr("x2",A).attr("y2",C-5).attr("stroke","#fff").attr("class",`commit ${w.id} ${k}`),s.append("line").attr("x1",A-3).attr("y1",C+1).attr("x2",A).attr("y2",C-5).attr("stroke","#fff").attr("class",`commit ${w.id} ${k}`);else{const N=s.append("circle");if(N.attr("cx",A),N.attr("cy",C),N.attr("r",w.type===vg.MERGE?9:10),N.attr("class",`commit ${w.id} commit${M2[w.branch].index%qB}`),I===vg.MERGE){const L=s.append("circle");L.attr("cx",A),L.attr("cy",C),L.attr("r",6),L.attr("class",`commit ${k} ${w.id} commit${M2[w.branch].index%qB}`)}I===vg.REVERSE&&s.append("path").attr("d",`M ${A-5},${C-5}L${A+5},${C+5}M${A-5},${C+5}L${A+5},${C-5}`).attr("class",`commit ${k} ${w.id} commit${M2[w.branch].index%qB}`)}}if(x1==="TB"?L7[w.id]={x:A,y:S}:L7[w.id]={x:S,y:C},r){if(w.type!==vg.CHERRY_PICK&&(w.customId&&w.type===vg.MERGE||w.type!==vg.MERGE)&&a.showCommitLabel){const N=o.append("g"),L=N.insert("rect").attr("class","commit-label-bkg"),P=N.append("text").attr("x",u).attr("y",C+25).attr("class","commit-label").text(w.id);let M=P.node().getBBox();if(L.attr("x",S-M.width/2-2).attr("y",C+13.5).attr("width",M.width+2*2).attr("height",M.height+2*2),x1==="TB"&&(L.attr("x",A-(M.width+4*4+5)).attr("y",C-12),P.attr("x",A-(M.width+4*4)).attr("y",C+M.height-12)),x1!=="TB"&&P.attr("x",S-M.width/2),a.rotateCommitLabel)if(x1==="TB")P.attr("transform","rotate(-45, "+A+", "+C+")"),L.attr("transform","rotate(-45, "+A+", "+C+")");else{let F=-7.5-(M.width+10)/25*9.5,U=10+M.width/25*8.5;N.attr("transform","translate("+F+", "+U+") rotate(-45, "+u+", "+C+")")}}if(w.tag){const N=o.insert("polygon"),L=o.append("circle"),P=o.append("text").attr("y",C-16).attr("class","tag-label").text(w.tag);let M=P.node().getBBox();P.attr("x",S-M.width/2);const F=M.height/2,U=C-19.2;N.attr("class","tag-label-bkg").attr("points",` + ${u-M.width/2-4/2},${U+2} + ${u-M.width/2-4/2},${U-2} + ${S-M.width/2-4},${U-F-2} + ${S+M.width/2+4},${U-F-2} + ${S+M.width/2+4},${U+F+2} + ${S-M.width/2-4},${U+F+2}`),L.attr("cx",u-M.width/2+4/2).attr("cy",U).attr("r",1.5).attr("class","tag-hole"),x1==="TB"&&(N.attr("class","tag-label-bkg").attr("points",` + ${A},${u+2} + ${A},${u-2} + ${A+m},${u-F-2} + ${A+m+M.width+4},${u-F-2} + ${A+m+M.width+4},${u+F+2} + ${A+m},${u+F+2}`).attr("transform","translate(12,12) rotate(45, "+A+","+u+")"),L.attr("cx",A+4/2).attr("cy",u).attr("transform","translate(12,12) rotate(45, "+A+","+u+")"),P.attr("x",A+5).attr("y",u+3).attr("transform","translate(14,14) rotate(45, "+A+","+u+")"))}}u+=b+m,u>Ele&&(Ele=u)})},Gga=(e,t,r,a,s)=>{const u=(x1==="TB"?r.xp.branch===u,f=p=>p.seq>e.seq&&p.seqf(p)&&h(p))},Gae=(e,t,r=0)=>{const a=e+Math.abs(e-t)/2;if(r>5)return a;if(u5e.every(u=>Math.abs(u-a)>=10))return u5e.push(a),a;const o=Math.abs(e-t);return Gae(e,t-o/5,r+1)},qga=(e,t,r,a)=>{const s=L7[t.id],o=L7[r.id],u=Gga(t,r,s,o,a);let h="",f="",p=0,m=0,b=M2[r.branch].index;r.type===vg.MERGE&&t.id!==r.parents[0]&&(b=M2[t.branch].index);let _;if(u){h="A 10 10, 0, 0, 0,",f="A 10 10, 0, 0, 1,",p=10,m=10;const w=s.yo.x&&(h="A 20 20, 0, 0, 0,",f="A 20 20, 0, 0, 1,",p=20,m=20,r.type===vg.MERGE&&t.id!==r.parents[0]?_=`M ${s.x} ${s.y} L ${s.x} ${o.y-p} ${f} ${s.x-m} ${o.y} L ${o.x} ${o.y}`:_=`M ${s.x} ${s.y} L ${o.x+p} ${s.y} ${h} ${o.x} ${s.y+m} L ${o.x} ${o.y}`),s.x===o.x&&(_=`M ${s.x} ${s.y} L ${o.x} ${o.y}`)):(s.yo.y&&(r.type===vg.MERGE&&t.id!==r.parents[0]?_=`M ${s.x} ${s.y} L ${o.x-p} ${s.y} ${h} ${o.x} ${s.y-m} L ${o.x} ${o.y}`:_=`M ${s.x} ${s.y} L ${s.x} ${o.y+p} ${f} ${s.x+m} ${o.y} L ${o.x} ${o.y}`),s.y===o.y&&(_=`M ${s.x} ${s.y} L ${o.x} ${o.y}`));e.append("path").attr("d",_).attr("class","arrow arrow"+b%qB)},Hga=(e,t)=>{const r=e.append("g").attr("class","commit-arrows");Object.keys(t).forEach(a=>{const s=t[a];s.parents&&s.parents.length>0&&s.parents.forEach(o=>{qga(r,t[o],s,t)})})},Vga=(e,t)=>{const r=Qt().gitGraph,a=e.append("g");t.forEach((s,o)=>{const u=o%qB,h=M2[s.name].pos,f=a.append("line");f.attr("x1",0),f.attr("y1",h),f.attr("x2",Ele),f.attr("y2",h),f.attr("class","branch branch"+u),x1==="TB"&&(f.attr("y1",30),f.attr("x1",h),f.attr("y2",Ele),f.attr("x2",h)),u5e.push(h);let p=s.name;const m=_tr(p),b=a.insert("rect"),w=a.insert("g").attr("class","branchLabel").insert("g").attr("class","label branch-label"+u);w.node().appendChild(m);let S=m.getBBox();b.attr("class","branchLabelBkg label"+u).attr("rx",4).attr("ry",4).attr("x",-S.width-4-(r.rotateCommitLabel===!0?30:0)).attr("y",-S.height/2+8).attr("width",S.width+18).attr("height",S.height+4),w.attr("transform","translate("+(-S.width-14-(r.rotateCommitLabel===!0?30:0))+", "+(h-S.height/2-1)+")"),x1==="TB"&&(b.attr("x",h-S.width/2-10).attr("y",0),w.attr("transform","translate("+(h-S.width/2-5)+", 0)")),x1!=="TB"&&b.attr("transform","translate(-19, "+(h-S.height/2)+")")})},Yga=function(e,t,r,a){Uga();const s=Qt(),o=s.gitGraph;ut.debug("in gitgraph renderer",e+` +`,"id:",t,r),zae=a.db.getCommits();const u=a.db.getBranchesAsObjArray();x1=a.db.getDirection();const h=gn(`[id="${t}"]`);let f=0;u.forEach((p,m)=>{const b=_tr(p.name),_=h.append("g"),w=_.insert("g").attr("class","branchLabel"),S=w.insert("g").attr("class","label branch-label");S.node().appendChild(b);let C=b.getBBox();M2[p.name]={pos:f,index:m},f+=50+(o.rotateCommitLabel?40:0)+(x1==="TB"?C.width/2:0),S.remove(),w.remove(),_.remove()}),ACn(h,zae,!1),o.showBranches&&Vga(h,u),Hga(h,zae),ACn(h,zae,!0),il.insertTitle(h,"gitTitleText",o.titleTopMargin,a.db.getDiagramTitle()),CZn(void 0,h,o.diagramPadding,o.useMaxWidth??s.useMaxWidth)},jga={draw:Yga},Wga=e=>` + .commit-id, + .commit-msg, + .branch-label { + fill: lightgrey; + color: lightgrey; + font-family: 'trebuchet ms', verdana, arial, sans-serif; + font-family: var(--mermaid-font-family); + } + ${[0,1,2,3,4,5,6,7].map(t=>` + .branch-label${t} { fill: ${e["gitBranchLabel"+t]}; } + .commit${t} { stroke: ${e["git"+t]}; fill: ${e["git"+t]}; } + .commit-highlight${t} { stroke: ${e["gitInv"+t]}; fill: ${e["gitInv"+t]}; } + .label${t} { fill: ${e["git"+t]}; } + .arrow${t} { stroke: ${e["git"+t]}; } + `).join(` +`)} + + .branch { + stroke-width: 1; + stroke: ${e.lineColor}; + stroke-dasharray: 2; + } + .commit-label { font-size: ${e.commitLabelFontSize}; fill: ${e.commitLabelColor};} + .commit-label-bkg { font-size: ${e.commitLabelFontSize}; fill: ${e.commitLabelBackground}; opacity: 0.5; } + .tag-label { font-size: ${e.tagLabelFontSize}; fill: ${e.tagLabelColor};} + .tag-label-bkg { fill: ${e.tagLabelBackground}; stroke: ${e.tagLabelBorder}; } + .tag-hole { fill: ${e.textColor}; } + + .commit-merge { + stroke: ${e.primaryColor}; + fill: ${e.primaryColor}; + } + .commit-reverse { + stroke: ${e.primaryColor}; + fill: ${e.primaryColor}; + stroke-width: 3; + } + .commit-highlight-outer { + } + .commit-highlight-inner { + stroke: ${e.primaryColor}; + fill: ${e.primaryColor}; + } + + .arrow { stroke-width: 8; stroke-linecap: round; fill: none} + .gitTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; + } +`,Kga=Wga,Xga={parser:wga,db:$ga,renderer:jga,styles:Kga},Qga=Object.freeze(Object.defineProperty({__proto__:null,diagram:Xga},Symbol.toStringTag,{value:"Module"}));var Nht=function(){var e=function(B,Z,z,Y){for(z=z||{},Y=B.length;Y--;z[B[Y]]=Z);return z},t=[6,8,10,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,30,32,33,35,37],r=[1,25],a=[1,26],s=[1,27],o=[1,28],u=[1,29],h=[1,30],f=[1,31],p=[1,9],m=[1,10],b=[1,11],_=[1,12],w=[1,13],S=[1,14],C=[1,15],A=[1,16],k=[1,18],I=[1,19],N=[1,20],L=[1,21],P=[1,22],M=[1,24],F=[1,32],U={trace:function(){},yy:{},symbols_:{error:2,start:3,gantt:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NL:10,weekday:11,weekday_monday:12,weekday_tuesday:13,weekday_wednesday:14,weekday_thursday:15,weekday_friday:16,weekday_saturday:17,weekday_sunday:18,dateFormat:19,inclusiveEndDates:20,topAxis:21,axisFormat:22,tickInterval:23,excludes:24,includes:25,todayMarker:26,title:27,acc_title:28,acc_title_value:29,acc_descr:30,acc_descr_value:31,acc_descr_multiline_value:32,section:33,clickStatement:34,taskTxt:35,taskData:36,click:37,callbackname:38,callbackargs:39,href:40,clickStatementDebug:41,$accept:0,$end:1},terminals_:{2:"error",4:"gantt",6:"EOF",8:"SPACE",10:"NL",12:"weekday_monday",13:"weekday_tuesday",14:"weekday_wednesday",15:"weekday_thursday",16:"weekday_friday",17:"weekday_saturday",18:"weekday_sunday",19:"dateFormat",20:"inclusiveEndDates",21:"topAxis",22:"axisFormat",23:"tickInterval",24:"excludes",25:"includes",26:"todayMarker",27:"title",28:"acc_title",29:"acc_title_value",30:"acc_descr",31:"acc_descr_value",32:"acc_descr_multiline_value",33:"section",35:"taskTxt",36:"taskData",37:"click",38:"callbackname",39:"callbackargs",40:"href"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[11,1],[11,1],[11,1],[11,1],[11,1],[11,1],[11,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,1],[9,2],[9,2],[9,1],[9,1],[9,1],[9,2],[34,2],[34,3],[34,3],[34,4],[34,3],[34,4],[34,2],[41,2],[41,3],[41,3],[41,4],[41,3],[41,4],[41,2]],performAction:function(Z,z,Y,W,Q,V,j){var ee=V.length-1;switch(Q){case 1:return V[ee-1];case 2:this.$=[];break;case 3:V[ee-1].push(V[ee]),this.$=V[ee-1];break;case 4:case 5:this.$=V[ee];break;case 6:case 7:this.$=[];break;case 8:W.setWeekday("monday");break;case 9:W.setWeekday("tuesday");break;case 10:W.setWeekday("wednesday");break;case 11:W.setWeekday("thursday");break;case 12:W.setWeekday("friday");break;case 13:W.setWeekday("saturday");break;case 14:W.setWeekday("sunday");break;case 15:W.setDateFormat(V[ee].substr(11)),this.$=V[ee].substr(11);break;case 16:W.enableInclusiveEndDates(),this.$=V[ee].substr(18);break;case 17:W.TopAxis(),this.$=V[ee].substr(8);break;case 18:W.setAxisFormat(V[ee].substr(11)),this.$=V[ee].substr(11);break;case 19:W.setTickInterval(V[ee].substr(13)),this.$=V[ee].substr(13);break;case 20:W.setExcludes(V[ee].substr(9)),this.$=V[ee].substr(9);break;case 21:W.setIncludes(V[ee].substr(9)),this.$=V[ee].substr(9);break;case 22:W.setTodayMarker(V[ee].substr(12)),this.$=V[ee].substr(12);break;case 24:W.setDiagramTitle(V[ee].substr(6)),this.$=V[ee].substr(6);break;case 25:this.$=V[ee].trim(),W.setAccTitle(this.$);break;case 26:case 27:this.$=V[ee].trim(),W.setAccDescription(this.$);break;case 28:W.addSection(V[ee].substr(8)),this.$=V[ee].substr(8);break;case 30:W.addTask(V[ee-1],V[ee]),this.$="task";break;case 31:this.$=V[ee-1],W.setClickEvent(V[ee-1],V[ee],null);break;case 32:this.$=V[ee-2],W.setClickEvent(V[ee-2],V[ee-1],V[ee]);break;case 33:this.$=V[ee-2],W.setClickEvent(V[ee-2],V[ee-1],null),W.setLink(V[ee-2],V[ee]);break;case 34:this.$=V[ee-3],W.setClickEvent(V[ee-3],V[ee-2],V[ee-1]),W.setLink(V[ee-3],V[ee]);break;case 35:this.$=V[ee-2],W.setClickEvent(V[ee-2],V[ee],null),W.setLink(V[ee-2],V[ee-1]);break;case 36:this.$=V[ee-3],W.setClickEvent(V[ee-3],V[ee-1],V[ee]),W.setLink(V[ee-3],V[ee-2]);break;case 37:this.$=V[ee-1],W.setLink(V[ee-1],V[ee]);break;case 38:case 44:this.$=V[ee-1]+" "+V[ee];break;case 39:case 40:case 42:this.$=V[ee-2]+" "+V[ee-1]+" "+V[ee];break;case 41:case 43:this.$=V[ee-3]+" "+V[ee-2]+" "+V[ee-1]+" "+V[ee];break}},table:[{3:1,4:[1,2]},{1:[3]},e(t,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:17,12:r,13:a,14:s,15:o,16:u,17:h,18:f,19:p,20:m,21:b,22:_,23:w,24:S,25:C,26:A,27:k,28:I,30:N,32:L,33:P,34:23,35:M,37:F},e(t,[2,7],{1:[2,1]}),e(t,[2,3]),{9:33,11:17,12:r,13:a,14:s,15:o,16:u,17:h,18:f,19:p,20:m,21:b,22:_,23:w,24:S,25:C,26:A,27:k,28:I,30:N,32:L,33:P,34:23,35:M,37:F},e(t,[2,5]),e(t,[2,6]),e(t,[2,15]),e(t,[2,16]),e(t,[2,17]),e(t,[2,18]),e(t,[2,19]),e(t,[2,20]),e(t,[2,21]),e(t,[2,22]),e(t,[2,23]),e(t,[2,24]),{29:[1,34]},{31:[1,35]},e(t,[2,27]),e(t,[2,28]),e(t,[2,29]),{36:[1,36]},e(t,[2,8]),e(t,[2,9]),e(t,[2,10]),e(t,[2,11]),e(t,[2,12]),e(t,[2,13]),e(t,[2,14]),{38:[1,37],40:[1,38]},e(t,[2,4]),e(t,[2,25]),e(t,[2,26]),e(t,[2,30]),e(t,[2,31],{39:[1,39],40:[1,40]}),e(t,[2,37],{38:[1,41]}),e(t,[2,32],{40:[1,42]}),e(t,[2,33]),e(t,[2,35],{39:[1,43]}),e(t,[2,34]),e(t,[2,36])],defaultActions:{},parseError:function(Z,z){if(z.recoverable)this.trace(Z);else{var Y=new Error(Z);throw Y.hash=z,Y}},parse:function(Z){var z=this,Y=[0],W=[],Q=[null],V=[],j=this.table,ee="",te=0,ne=0,se=2,ie=1,ge=V.slice.call(arguments,1),ce=Object.create(this.lexer),be={yy:{}};for(var ve in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ve)&&(be.yy[ve]=this.yy[ve]);ce.setInput(Z,be.yy),be.yy.lexer=ce,be.yy.parser=this,typeof ce.yylloc>"u"&&(ce.yylloc={});var De=ce.yylloc;V.push(De);var ye=ce.options&&ce.options.ranges;typeof be.yy.parseError=="function"?this.parseError=be.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Ee(){var sn;return sn=W.pop()||ce.lex()||ie,typeof sn!="number"&&(sn instanceof Array&&(W=sn,sn=W.pop()),sn=z.symbols_[sn]||sn),sn}for(var he,we,Ce,Ie,Le={},Fe,Ve,Oe,Dt;;){if(we=Y[Y.length-1],this.defaultActions[we]?Ce=this.defaultActions[we]:((he===null||typeof he>"u")&&(he=Ee()),Ce=j[we]&&j[we][he]),typeof Ce>"u"||!Ce.length||!Ce[0]){var ot="";Dt=[];for(Fe in j[we])this.terminals_[Fe]&&Fe>se&&Dt.push("'"+this.terminals_[Fe]+"'");ce.showPosition?ot="Parse error on line "+(te+1)+`: +`+ce.showPosition()+` +Expecting `+Dt.join(", ")+", got '"+(this.terminals_[he]||he)+"'":ot="Parse error on line "+(te+1)+": Unexpected "+(he==ie?"end of input":"'"+(this.terminals_[he]||he)+"'"),this.parseError(ot,{text:ce.match,token:this.terminals_[he]||he,line:ce.yylineno,loc:De,expected:Dt})}if(Ce[0]instanceof Array&&Ce.length>1)throw new Error("Parse Error: multiple actions possible at state: "+we+", token: "+he);switch(Ce[0]){case 1:Y.push(he),Q.push(ce.yytext),V.push(ce.yylloc),Y.push(Ce[1]),he=null,ne=ce.yyleng,ee=ce.yytext,te=ce.yylineno,De=ce.yylloc;break;case 2:if(Ve=this.productions_[Ce[1]][1],Le.$=Q[Q.length-Ve],Le._$={first_line:V[V.length-(Ve||1)].first_line,last_line:V[V.length-1].last_line,first_column:V[V.length-(Ve||1)].first_column,last_column:V[V.length-1].last_column},ye&&(Le._$.range=[V[V.length-(Ve||1)].range[0],V[V.length-1].range[1]]),Ie=this.performAction.apply(Le,[ee,ne,te,be.yy,Ce[1],Q,V].concat(ge)),typeof Ie<"u")return Ie;Ve&&(Y=Y.slice(0,-1*Ve*2),Q=Q.slice(0,-1*Ve),V=V.slice(0,-1*Ve)),Y.push(this.productions_[Ce[1]][0]),Q.push(Le.$),V.push(Le._$),Oe=j[Y[Y.length-2]][Y[Y.length-1]],Y.push(Oe);break;case 3:return!0}}return!0}},$=function(){var B={EOF:1,parseError:function(z,Y){if(this.yy.parser)this.yy.parser.parseError(z,Y);else throw new Error(z)},setInput:function(Z,z){return this.yy=z||this.yy||{},this._input=Z,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var Z=this._input[0];this.yytext+=Z,this.yyleng++,this.offset++,this.match+=Z,this.matched+=Z;var z=Z.match(/(?:\r\n?|\n).*/g);return z?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Z},unput:function(Z){var z=Z.length,Y=Z.split(/(?:\r\n?|\n)/g);this._input=Z+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-z),this.offset-=z;var W=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),Y.length-1&&(this.yylineno-=Y.length-1);var Q=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:Y?(Y.length===W.length?this.yylloc.first_column:0)+W[W.length-Y.length].length-Y[0].length:this.yylloc.first_column-z},this.options.ranges&&(this.yylloc.range=[Q[0],Q[0]+this.yyleng-z]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(Z){this.unput(this.match.slice(Z))},pastInput:function(){var Z=this.matched.substr(0,this.matched.length-this.match.length);return(Z.length>20?"...":"")+Z.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var Z=this.match;return Z.length<20&&(Z+=this._input.substr(0,20-Z.length)),(Z.substr(0,20)+(Z.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var Z=this.pastInput(),z=new Array(Z.length+1).join("-");return Z+this.upcomingInput()+` +`+z+"^"},test_match:function(Z,z){var Y,W,Q;if(this.options.backtrack_lexer&&(Q={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Q.yylloc.range=this.yylloc.range.slice(0))),W=Z[0].match(/(?:\r\n?|\n).*/g),W&&(this.yylineno+=W.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:W?W[W.length-1].length-W[W.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Z[0].length},this.yytext+=Z[0],this.match+=Z[0],this.matches=Z,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Z[0].length),this.matched+=Z[0],Y=this.performAction.call(this,this.yy,this,z,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),Y)return Y;if(this._backtrack){for(var V in Q)this[V]=Q[V];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Z,z,Y,W;this._more||(this.yytext="",this.match="");for(var Q=this._currentRules(),V=0;Vz[0].length)){if(z=Y,W=V,this.options.backtrack_lexer){if(Z=this.test_match(Y,Q[V]),Z!==!1)return Z;if(this._backtrack){z=!1;continue}else return!1}else if(!this.options.flex)break}return z?(Z=this.test_match(z,Q[W]),Z!==!1?Z:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var z=this.next();return z||this.lex()},begin:function(z){this.conditionStack.push(z)},popState:function(){var z=this.conditionStack.length-1;return z>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(z){return z=this.conditionStack.length-1-Math.abs(z||0),z>=0?this.conditionStack[z]:"INITIAL"},pushState:function(z){this.begin(z)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(z,Y,W,Q){switch(W){case 0:return this.begin("open_directive"),"open_directive";case 1:return this.begin("acc_title"),28;case 2:return this.popState(),"acc_title_value";case 3:return this.begin("acc_descr"),30;case 4:return this.popState(),"acc_descr_value";case 5:this.begin("acc_descr_multiline");break;case 6:this.popState();break;case 7:return"acc_descr_multiline_value";case 8:break;case 9:break;case 10:break;case 11:return 10;case 12:break;case 13:break;case 14:this.begin("href");break;case 15:this.popState();break;case 16:return 40;case 17:this.begin("callbackname");break;case 18:this.popState();break;case 19:this.popState(),this.begin("callbackargs");break;case 20:return 38;case 21:this.popState();break;case 22:return 39;case 23:this.begin("click");break;case 24:this.popState();break;case 25:return 37;case 26:return 4;case 27:return 19;case 28:return 20;case 29:return 21;case 30:return 22;case 31:return 23;case 32:return 25;case 33:return 24;case 34:return 26;case 35:return 12;case 36:return 13;case 37:return 14;case 38:return 15;case 39:return 16;case 40:return 17;case 41:return 18;case 42:return"date";case 43:return 27;case 44:return"accDescription";case 45:return 33;case 46:return 35;case 47:return 36;case 48:return":";case 49:return 6;case 50:return"INVALID"}},rules:[/^(?:%%\{)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:%%(?!\{)*[^\n]*)/i,/^(?:[^\}]%%*[^\n]*)/i,/^(?:%%*[^\n]*[\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:%[^\n]*)/i,/^(?:href[\s]+["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:call[\s]+)/i,/^(?:\([\s]*\))/i,/^(?:\()/i,/^(?:[^(]*)/i,/^(?:\))/i,/^(?:[^)]*)/i,/^(?:click[\s]+)/i,/^(?:[\s\n])/i,/^(?:[^\s\n]*)/i,/^(?:gantt\b)/i,/^(?:dateFormat\s[^#\n;]+)/i,/^(?:inclusiveEndDates\b)/i,/^(?:topAxis\b)/i,/^(?:axisFormat\s[^#\n;]+)/i,/^(?:tickInterval\s[^#\n;]+)/i,/^(?:includes\s[^#\n;]+)/i,/^(?:excludes\s[^#\n;]+)/i,/^(?:todayMarker\s[^\n;]+)/i,/^(?:weekday\s+monday\b)/i,/^(?:weekday\s+tuesday\b)/i,/^(?:weekday\s+wednesday\b)/i,/^(?:weekday\s+thursday\b)/i,/^(?:weekday\s+friday\b)/i,/^(?:weekday\s+saturday\b)/i,/^(?:weekday\s+sunday\b)/i,/^(?:\d\d\d\d-\d\d-\d\d\b)/i,/^(?:title\s[^\n]+)/i,/^(?:accDescription\s[^#\n;]+)/i,/^(?:section\s[^\n]+)/i,/^(?:[^:\n]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[6,7],inclusive:!1},acc_descr:{rules:[4],inclusive:!1},acc_title:{rules:[2],inclusive:!1},callbackargs:{rules:[21,22],inclusive:!1},callbackname:{rules:[18,19,20],inclusive:!1},href:{rules:[15,16],inclusive:!1},click:{rules:[24,25],inclusive:!1},INITIAL:{rules:[0,1,3,5,8,9,10,11,12,13,14,17,23,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],inclusive:!0}}};return B}();U.lexer=$;function G(){this.yy={}}return G.prototype=U,U.Parser=G,new G}();Nht.parser=Nht;const Zga=Nht;Fc.extend(XWn);Fc.extend(FAn);Fc.extend(PAn);let nA="",Jbt="",eyt,tyt="",tue=[],nue=[],nyt={},ryt=[],h5e=[],cW="",iyt="";const wtr=["active","done","crit","milestone"];let ayt=[],rue=!1,syt=!1,oyt="sunday",Oht=0;const Jga=function(){ryt=[],h5e=[],cW="",ayt=[],uSe=0,Dht=void 0,hSe=void 0,bp=[],nA="",Jbt="",iyt="",eyt=void 0,tyt="",tue=[],nue=[],rue=!1,syt=!1,Oht=0,nyt={},Mb(),oyt="sunday"},ema=function(e){Jbt=e},tma=function(){return Jbt},nma=function(e){eyt=e},rma=function(){return eyt},ima=function(e){tyt=e},ama=function(){return tyt},sma=function(e){nA=e},oma=function(){rue=!0},lma=function(){return rue},cma=function(){syt=!0},uma=function(){return syt},hma=function(e){iyt=e},dma=function(){return iyt},fma=function(){return nA},pma=function(e){tue=e.toLowerCase().split(/[\s,]+/)},gma=function(){return tue},mma=function(e){nue=e.toLowerCase().split(/[\s,]+/)},bma=function(){return nue},yma=function(){return nyt},vma=function(e){cW=e,ryt.push(e)},_ma=function(){return ryt},wma=function(){let e=kCn();const t=10;let r=0;for(;!e&&r=6&&r.includes("weekends")||r.includes(e.format("dddd").toLowerCase())?!0:r.includes(e.format(t.trim()))},Ema=function(e){oyt=e},xma=function(){return oyt},xtr=function(e,t,r,a){if(!r.length||e.manualEndTime)return;let s;e.startTime instanceof Date?s=Fc(e.startTime):s=Fc(e.startTime,t,!0),s=s.add(1,"d");let o;e.endTime instanceof Date?o=Fc(e.endTime):o=Fc(e.endTime,t,!0);const[u,h]=Sma(s,o,t,r,a);e.endTime=u.toDate(),e.renderEndTime=h},Sma=function(e,t,r,a,s){let o=!1,u=null;for(;e<=t;)o||(u=t.toDate()),o=Etr(e,r,a,s),o&&(t=t.add(1,"d")),e=e.add(1,"d");return[t,u]},Lht=function(e,t,r){r=r.trim();const s=/^after\s+(?[\d\w- ]+)/.exec(r);if(s!==null){let u=null;for(const f of s.groups.ids.split(" ")){let p=nU(f);p!==void 0&&(!u||p.endTime>u.endTime)&&(u=p)}if(u)return u.endTime;const h=new Date;return h.setHours(0,0,0,0),h}let o=Fc(r,t.trim(),!0);if(o.isValid())return o.toDate();{ut.debug("Invalid date:"+r),ut.debug("With date format:"+t.trim());const u=new Date(r);if(u===void 0||isNaN(u.getTime())||u.getFullYear()<-1e4||u.getFullYear()>1e4)throw new Error("Invalid date:"+r);return u}},Str=function(e){const t=/^(\d+(?:\.\d+)?)([Mdhmswy]|ms)$/.exec(e.trim());return t!==null?[Number.parseFloat(t[1]),t[2]]:[NaN,"ms"]},Ttr=function(e,t,r,a=!1){r=r.trim();const o=/^until\s+(?[\d\w- ]+)/.exec(r);if(o!==null){let m=null;for(const _ of o.groups.ids.split(" ")){let w=nU(_);w!==void 0&&(!m||w.startTime{window.open(r,"_self")}),nyt[a]=r)}),Atr(e,"clickable")},Atr=function(e,t){e.split(",").forEach(function(r){let a=nU(r);a!==void 0&&a.classes.push(t)})},Ima=function(e,t,r){if(Qt().securityLevel!=="loose"||t===void 0)return;let a=[];if(typeof r=="string"){a=r.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let o=0;o{il.runFunc(t,...a)})},ktr=function(e,t){ayt.push(function(){const r=document.querySelector(`[id="${e}"]`);r!==null&&r.addEventListener("click",function(){t()})},function(){const r=document.querySelector(`[id="${e}-text"]`);r!==null&&r.addEventListener("click",function(){t()})})},Nma=function(e,t,r){e.split(",").forEach(function(a){Ima(a,t,r)}),Atr(e,"clickable")},Oma=function(e){ayt.forEach(function(t){t(e)})},Lma={getConfig:()=>Qt().gantt,clear:Jga,setDateFormat:sma,getDateFormat:fma,enableInclusiveEndDates:oma,endDatesAreInclusive:lma,enableTopAxis:cma,topAxisEnabled:uma,setAxisFormat:ema,getAxisFormat:tma,setTickInterval:nma,getTickInterval:rma,setTodayMarker:ima,getTodayMarker:ama,setAccTitle:Pb,getAccTitle:Ev,setDiagramTitle:Zw,getDiagramTitle:Tv,setDisplayMode:hma,getDisplayMode:dma,setAccDescription:xv,getAccDescription:Sv,addSection:vma,getSections:_ma,getTasks:wma,addTask:Ama,findTaskById:nU,addTaskOrg:kma,setIncludes:pma,getIncludes:gma,setExcludes:mma,getExcludes:bma,setClickEvent:Nma,setLink:Rma,getLinks:yma,bindFunctions:Oma,parseDuration:Str,isInvalidDate:Etr,setWeekday:Ema,getWeekday:xma};function Rtr(e,t,r){let a=!0;for(;a;)a=!1,r.forEach(function(s){const o="^\\s*"+s+"\\s*$",u=new RegExp(o);e[0].match(u)&&(t[s]=!0,e.shift(1),a=!0)})}const Dma=function(){ut.debug("Something is calling, setConf, remove the call")},RCn={monday:Rj,tuesday:r1t,wednesday:i1t,thursday:YO,friday:a1t,saturday:s1t,sunday:MW},Mma=(e,t)=>{let r=[...e].map(()=>-1/0),a=[...e].sort((o,u)=>o.startTime-u.startTime||o.order-u.order),s=0;for(const o of a)for(let u=0;u=r[u]){r[u]=o.endTime,o.order=u+t,u>s&&(s=u);break}return s};let n7;const Pma=function(e,t,r,a){const s=Qt().gantt,o=Qt().securityLevel;let u;o==="sandbox"&&(u=gn("#i"+t));const h=gn(o==="sandbox"?u.nodes()[0].contentDocument.body:"body"),f=o==="sandbox"?u.nodes()[0].contentDocument:document,p=f.getElementById(t);n7=p.parentElement.offsetWidth,n7===void 0&&(n7=1200),s.useWidth!==void 0&&(n7=s.useWidth);const m=a.db.getTasks();let b=[];for(const U of m)b.push(U.type);b=F(b);const _={};let w=2*s.topPadding;if(a.db.getDisplayMode()==="compact"||s.displayMode==="compact"){const U={};for(const G of m)U[G.section]===void 0?U[G.section]=[G]:U[G.section].push(G);let $=0;for(const G of Object.keys(U)){const B=Mma(U[G],$)+1;$+=B,w+=B*(s.barHeight+s.barGap),_[G]=B}}else{w+=m.length*(s.barHeight+s.barGap);for(const U of b)_[U]=m.filter($=>$.type===U).length}p.setAttribute("viewBox","0 0 "+n7+" "+w);const S=h.select(`[id="${t}"]`),C=xDn().domain([ALn(m,function(U){return U.startTime}),CLn(m,function(U){return U.endTime})]).rangeRound([0,n7-s.leftPadding-s.rightPadding]);function A(U,$){const G=U.startTime,B=$.startTime;let Z=0;return G>B?Z=1:Gte.order))].map(te=>U.find(ne=>ne.order===te));S.append("g").selectAll("rect").data(Q).enter().append("rect").attr("x",0).attr("y",function(te,ne){return ne=te.order,ne*$+G-2}).attr("width",function(){return Y-s.rightPadding/2}).attr("height",$).attr("class",function(te){for(const[ne,se]of b.entries())if(te.type===se)return"section section"+ne%s.numberSectionStyles;return"section section0"});const V=S.append("g").selectAll("rect").data(U).enter(),j=a.db.getLinks();if(V.append("rect").attr("id",function(te){return te.id}).attr("rx",3).attr("ry",3).attr("x",function(te){return te.milestone?C(te.startTime)+B+.5*(C(te.endTime)-C(te.startTime))-.5*Z:C(te.startTime)+B}).attr("y",function(te,ne){return ne=te.order,ne*$+G}).attr("width",function(te){return te.milestone?Z:C(te.renderEndTime||te.endTime)-C(te.startTime)}).attr("height",Z).attr("transform-origin",function(te,ne){return ne=te.order,(C(te.startTime)+B+.5*(C(te.endTime)-C(te.startTime))).toString()+"px "+(ne*$+G+.5*Z).toString()+"px"}).attr("class",function(te){const ne="task";let se="";te.classes.length>0&&(se=te.classes.join(" "));let ie=0;for(const[ce,be]of b.entries())te.type===be&&(ie=ce%s.numberSectionStyles);let ge="";return te.active?te.crit?ge+=" activeCrit":ge=" active":te.done?te.crit?ge=" doneCrit":ge=" done":te.crit&&(ge+=" crit"),ge.length===0&&(ge=" task"),te.milestone&&(ge=" milestone "+ge),ge+=ie,ge+=" "+se,ne+ge}),V.append("text").attr("id",function(te){return te.id+"-text"}).text(function(te){return te.task}).attr("font-size",s.fontSize).attr("x",function(te){let ne=C(te.startTime),se=C(te.renderEndTime||te.endTime);te.milestone&&(ne+=.5*(C(te.endTime)-C(te.startTime))-.5*Z),te.milestone&&(se=ne+Z);const ie=this.getBBox().width;return ie>se-ne?se+ie+1.5*s.leftPadding>Y?ne+B-5:se+B+5:(se-ne)/2+ne+B}).attr("y",function(te,ne){return ne=te.order,ne*$+s.barHeight/2+(s.fontSize/2-2)+G}).attr("text-height",Z).attr("class",function(te){const ne=C(te.startTime);let se=C(te.endTime);te.milestone&&(se=ne+Z);const ie=this.getBBox().width;let ge="";te.classes.length>0&&(ge=te.classes.join(" "));let ce=0;for(const[ve,De]of b.entries())te.type===De&&(ce=ve%s.numberSectionStyles);let be="";return te.active&&(te.crit?be="activeCritText"+ce:be="activeText"+ce),te.done?te.crit?be=be+" doneCritText"+ce:be=be+" doneText"+ce:te.crit&&(be=be+" critText"+ce),te.milestone&&(be+=" milestoneText"),ie>se-ne?se+ie+1.5*s.leftPadding>Y?ge+" taskTextOutsideLeft taskTextOutside"+ce+" "+be:ge+" taskTextOutsideRight taskTextOutside"+ce+" "+be+" width-"+ie:ge+" taskText taskText"+ce+" "+be+" width-"+ie}),Qt().securityLevel==="sandbox"){let te;te=gn("#i"+t);const ne=te.nodes()[0].contentDocument;V.filter(function(se){return j[se.id]!==void 0}).each(function(se){var ie=ne.querySelector("#"+se.id),ge=ne.querySelector("#"+se.id+"-text");const ce=ie.parentNode;var be=ne.createElement("a");be.setAttribute("xlink:href",j[se.id]),be.setAttribute("target","_top"),ce.appendChild(be),be.appendChild(ie),be.appendChild(ge)})}}function N(U,$,G,B,Z,z,Y,W){if(Y.length===0&&W.length===0)return;let Q,V;for(const{startTime:ie,endTime:ge}of z)(Q===void 0||ieV)&&(V=ge);if(!Q||!V)return;if(Fc(V).diff(Fc(Q),"year")>5){ut.warn("The difference between the min and max time is more than 5 years. This will cause performance issues. Skipping drawing exclude days.");return}const j=a.db.getDateFormat(),ee=[];let te=null,ne=Fc(Q);for(;ne.valueOf()<=V;)a.db.isInvalidDate(ne,j,Y,W)?te?te.end=ne:te={start:ne,end:ne}:te&&(ee.push(te),te=null),ne=ne.add(1,"d");S.append("g").selectAll("rect").data(ee).enter().append("rect").attr("id",function(ie){return"exclude-"+ie.start.format("YYYY-MM-DD")}).attr("x",function(ie){return C(ie.start)+G}).attr("y",s.gridLineStartPadding).attr("width",function(ie){const ge=ie.end.add(1,"day");return C(ge)-C(ie.start)}).attr("height",Z-$-s.gridLineStartPadding).attr("transform-origin",function(ie,ge){return(C(ie.start)+G+.5*(C(ie.end)-C(ie.start))).toString()+"px "+(ge*U+.5*Z).toString()+"px"}).attr("class","exclude-range")}function L(U,$,G,B){let Z=ILn(C).tickSize(-B+$+s.gridLineStartPadding).tickFormat(Nj(a.db.getAxisFormat()||s.axisFormat||"%Y-%m-%d"));const Y=/^([1-9]\d*)(millisecond|second|minute|hour|day|week|month)$/.exec(a.db.getTickInterval()||s.tickInterval);if(Y!==null){const W=Y[1],Q=Y[2],V=a.db.getWeekday()||s.weekday;switch(Q){case"millisecond":Z.ticks(VO.every(W));break;case"second":Z.ticks(WC.every(W));break;case"minute":Z.ticks(DF.every(W));break;case"hour":Z.ticks(MF.every(W));break;case"day":Z.ticks(tR.every(W));break;case"week":Z.ticks(RCn[V].every(W));break;case"month":Z.ticks(PF.every(W));break}}if(S.append("g").attr("class","grid").attr("transform","translate("+U+", "+(B-50)+")").call(Z).selectAll("text").style("text-anchor","middle").attr("fill","#000").attr("stroke","none").attr("font-size",10).attr("dy","1em"),a.db.topAxisEnabled()||s.topAxis){let W=RLn(C).tickSize(-B+$+s.gridLineStartPadding).tickFormat(Nj(a.db.getAxisFormat()||s.axisFormat||"%Y-%m-%d"));if(Y!==null){const Q=Y[1],V=Y[2],j=a.db.getWeekday()||s.weekday;switch(V){case"millisecond":W.ticks(VO.every(Q));break;case"second":W.ticks(WC.every(Q));break;case"minute":W.ticks(DF.every(Q));break;case"hour":W.ticks(MF.every(Q));break;case"day":W.ticks(tR.every(Q));break;case"week":W.ticks(RCn[j].every(Q));break;case"month":W.ticks(PF.every(Q));break}}S.append("g").attr("class","grid").attr("transform","translate("+U+", "+$+")").call(W).selectAll("text").style("text-anchor","middle").attr("fill","#000").attr("stroke","none").attr("font-size",10)}}function P(U,$){let G=0;const B=Object.keys(_).map(Z=>[Z,_[Z]]);S.append("g").selectAll("text").data(B).enter().append(function(Z){const z=Z[0].split(mi.lineBreakRegex),Y=-(z.length-1)/2,W=f.createElementNS("http://www.w3.org/2000/svg","text");W.setAttribute("dy",Y+"em");for(const[Q,V]of z.entries()){const j=f.createElementNS("http://www.w3.org/2000/svg","tspan");j.setAttribute("alignment-baseline","central"),j.setAttribute("x","10"),Q>0&&j.setAttribute("dy","1em"),j.textContent=V,W.appendChild(j)}return W}).attr("x",10).attr("y",function(Z,z){if(z>0)for(let Y=0;Y` + .mermaid-main-font { + font-family: var(--mermaid-font-family, "trebuchet ms", verdana, arial, sans-serif); + } + + .exclude-range { + fill: ${e.excludeBkgColor}; + } + + .section { + stroke: none; + opacity: 0.2; + } + + .section0 { + fill: ${e.sectionBkgColor}; + } + + .section2 { + fill: ${e.sectionBkgColor2}; + } + + .section1, + .section3 { + fill: ${e.altSectionBkgColor}; + opacity: 0.2; + } + + .sectionTitle0 { + fill: ${e.titleColor}; + } + + .sectionTitle1 { + fill: ${e.titleColor}; + } + + .sectionTitle2 { + fill: ${e.titleColor}; + } + + .sectionTitle3 { + fill: ${e.titleColor}; + } + + .sectionTitle { + text-anchor: start; + font-family: var(--mermaid-font-family, "trebuchet ms", verdana, arial, sans-serif); + } + + + /* Grid and axis */ + + .grid .tick { + stroke: ${e.gridColor}; + opacity: 0.8; + shape-rendering: crispEdges; + } + + .grid .tick text { + font-family: ${e.fontFamily}; + fill: ${e.textColor}; + } + + .grid path { + stroke-width: 0; + } + + + /* Today line */ + + .today { + fill: none; + stroke: ${e.todayLineColor}; + stroke-width: 2px; + } + + + /* Task styling */ + + /* Default task */ + + .task { + stroke-width: 2; + } + + .taskText { + text-anchor: middle; + font-family: var(--mermaid-font-family, "trebuchet ms", verdana, arial, sans-serif); + } + + .taskTextOutsideRight { + fill: ${e.taskTextDarkColor}; + text-anchor: start; + font-family: var(--mermaid-font-family, "trebuchet ms", verdana, arial, sans-serif); + } + + .taskTextOutsideLeft { + fill: ${e.taskTextDarkColor}; + text-anchor: end; + } + + + /* Special case clickable */ + + .task.clickable { + cursor: pointer; + } + + .taskText.clickable { + cursor: pointer; + fill: ${e.taskTextClickableColor} !important; + font-weight: bold; + } + + .taskTextOutsideLeft.clickable { + cursor: pointer; + fill: ${e.taskTextClickableColor} !important; + font-weight: bold; + } + + .taskTextOutsideRight.clickable { + cursor: pointer; + fill: ${e.taskTextClickableColor} !important; + font-weight: bold; + } + + + /* Specific task settings for the sections*/ + + .taskText0, + .taskText1, + .taskText2, + .taskText3 { + fill: ${e.taskTextColor}; + } + + .task0, + .task1, + .task2, + .task3 { + fill: ${e.taskBkgColor}; + stroke: ${e.taskBorderColor}; + } + + .taskTextOutside0, + .taskTextOutside2 + { + fill: ${e.taskTextOutsideColor}; + } + + .taskTextOutside1, + .taskTextOutside3 { + fill: ${e.taskTextOutsideColor}; + } + + + /* Active task */ + + .active0, + .active1, + .active2, + .active3 { + fill: ${e.activeTaskBkgColor}; + stroke: ${e.activeTaskBorderColor}; + } + + .activeText0, + .activeText1, + .activeText2, + .activeText3 { + fill: ${e.taskTextDarkColor} !important; + } + + + /* Completed task */ + + .done0, + .done1, + .done2, + .done3 { + stroke: ${e.doneTaskBorderColor}; + fill: ${e.doneTaskBkgColor}; + stroke-width: 2; + } + + .doneText0, + .doneText1, + .doneText2, + .doneText3 { + fill: ${e.taskTextDarkColor} !important; + } + + + /* Tasks on the critical line */ + + .crit0, + .crit1, + .crit2, + .crit3 { + stroke: ${e.critBorderColor}; + fill: ${e.critBkgColor}; + stroke-width: 2; + } + + .activeCrit0, + .activeCrit1, + .activeCrit2, + .activeCrit3 { + stroke: ${e.critBorderColor}; + fill: ${e.activeTaskBkgColor}; + stroke-width: 2; + } + + .doneCrit0, + .doneCrit1, + .doneCrit2, + .doneCrit3 { + stroke: ${e.critBorderColor}; + fill: ${e.doneTaskBkgColor}; + stroke-width: 2; + cursor: pointer; + shape-rendering: crispEdges; + } + + .milestone { + transform: rotate(45deg) scale(0.8,0.8); + } + + .milestoneText { + font-style: italic; + } + .doneCritText0, + .doneCritText1, + .doneCritText2, + .doneCritText3 { + fill: ${e.taskTextDarkColor} !important; + } + + .activeCritText0, + .activeCritText1, + .activeCritText2, + .activeCritText3 { + fill: ${e.taskTextDarkColor} !important; + } + + .titleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.titleColor||e.textColor}; + font-family: var(--mermaid-font-family, "trebuchet ms", verdana, arial, sans-serif); + } +`,$ma=Fma,Uma={parser:Zga,db:Lma,renderer:Bma,styles:$ma},zma=Object.freeze(Object.defineProperty({__proto__:null,diagram:Uma},Symbol.toStringTag,{value:"Module"}));var Mht=function(){var e=function(o,u,h,f){for(h=h||{},f=o.length;f--;h[o[f]]=u);return h},t=[6,9,10],r={trace:function(){},yy:{},symbols_:{error:2,start:3,info:4,document:5,EOF:6,line:7,statement:8,NL:9,showInfo:10,$accept:0,$end:1},terminals_:{2:"error",4:"info",6:"EOF",9:"NL",10:"showInfo"},productions_:[0,[3,3],[5,0],[5,2],[7,1],[7,1],[8,1]],performAction:function(u,h,f,p,m,b,_){switch(b.length-1,m){case 1:return p;case 4:break;case 6:p.setInfo(!0);break}},table:[{3:1,4:[1,2]},{1:[3]},e(t,[2,2],{5:3}),{6:[1,4],7:5,8:6,9:[1,7],10:[1,8]},{1:[2,1]},e(t,[2,3]),e(t,[2,4]),e(t,[2,5]),e(t,[2,6])],defaultActions:{4:[2,1]},parseError:function(u,h){if(h.recoverable)this.trace(u);else{var f=new Error(u);throw f.hash=h,f}},parse:function(u){var h=this,f=[0],p=[],m=[null],b=[],_=this.table,w="",S=0,C=0,A=2,k=1,I=b.slice.call(arguments,1),N=Object.create(this.lexer),L={yy:{}};for(var P in this.yy)Object.prototype.hasOwnProperty.call(this.yy,P)&&(L.yy[P]=this.yy[P]);N.setInput(u,L.yy),L.yy.lexer=N,L.yy.parser=this,typeof N.yylloc>"u"&&(N.yylloc={});var M=N.yylloc;b.push(M);var F=N.options&&N.options.ranges;typeof L.yy.parseError=="function"?this.parseError=L.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function U(){var ee;return ee=p.pop()||N.lex()||k,typeof ee!="number"&&(ee instanceof Array&&(p=ee,ee=p.pop()),ee=h.symbols_[ee]||ee),ee}for(var $,G,B,Z,z={},Y,W,Q,V;;){if(G=f[f.length-1],this.defaultActions[G]?B=this.defaultActions[G]:(($===null||typeof $>"u")&&($=U()),B=_[G]&&_[G][$]),typeof B>"u"||!B.length||!B[0]){var j="";V=[];for(Y in _[G])this.terminals_[Y]&&Y>A&&V.push("'"+this.terminals_[Y]+"'");N.showPosition?j="Parse error on line "+(S+1)+`: +`+N.showPosition()+` +Expecting `+V.join(", ")+", got '"+(this.terminals_[$]||$)+"'":j="Parse error on line "+(S+1)+": Unexpected "+($==k?"end of input":"'"+(this.terminals_[$]||$)+"'"),this.parseError(j,{text:N.match,token:this.terminals_[$]||$,line:N.yylineno,loc:M,expected:V})}if(B[0]instanceof Array&&B.length>1)throw new Error("Parse Error: multiple actions possible at state: "+G+", token: "+$);switch(B[0]){case 1:f.push($),m.push(N.yytext),b.push(N.yylloc),f.push(B[1]),$=null,C=N.yyleng,w=N.yytext,S=N.yylineno,M=N.yylloc;break;case 2:if(W=this.productions_[B[1]][1],z.$=m[m.length-W],z._$={first_line:b[b.length-(W||1)].first_line,last_line:b[b.length-1].last_line,first_column:b[b.length-(W||1)].first_column,last_column:b[b.length-1].last_column},F&&(z._$.range=[b[b.length-(W||1)].range[0],b[b.length-1].range[1]]),Z=this.performAction.apply(z,[w,C,S,L.yy,B[1],m,b].concat(I)),typeof Z<"u")return Z;W&&(f=f.slice(0,-1*W*2),m=m.slice(0,-1*W),b=b.slice(0,-1*W)),f.push(this.productions_[B[1]][0]),m.push(z.$),b.push(z._$),Q=_[f[f.length-2]][f[f.length-1]],f.push(Q);break;case 3:return!0}}return!0}},a=function(){var o={EOF:1,parseError:function(h,f){if(this.yy.parser)this.yy.parser.parseError(h,f);else throw new Error(h)},setInput:function(u,h){return this.yy=h||this.yy||{},this._input=u,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var u=this._input[0];this.yytext+=u,this.yyleng++,this.offset++,this.match+=u,this.matched+=u;var h=u.match(/(?:\r\n?|\n).*/g);return h?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),u},unput:function(u){var h=u.length,f=u.split(/(?:\r\n?|\n)/g);this._input=u+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-h),this.offset-=h;var p=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),f.length-1&&(this.yylineno-=f.length-1);var m=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:f?(f.length===p.length?this.yylloc.first_column:0)+p[p.length-f.length].length-f[0].length:this.yylloc.first_column-h},this.options.ranges&&(this.yylloc.range=[m[0],m[0]+this.yyleng-h]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(u){this.unput(this.match.slice(u))},pastInput:function(){var u=this.matched.substr(0,this.matched.length-this.match.length);return(u.length>20?"...":"")+u.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var u=this.match;return u.length<20&&(u+=this._input.substr(0,20-u.length)),(u.substr(0,20)+(u.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var u=this.pastInput(),h=new Array(u.length+1).join("-");return u+this.upcomingInput()+` +`+h+"^"},test_match:function(u,h){var f,p,m;if(this.options.backtrack_lexer&&(m={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(m.yylloc.range=this.yylloc.range.slice(0))),p=u[0].match(/(?:\r\n?|\n).*/g),p&&(this.yylineno+=p.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:p?p[p.length-1].length-p[p.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+u[0].length},this.yytext+=u[0],this.match+=u[0],this.matches=u,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(u[0].length),this.matched+=u[0],f=this.performAction.call(this,this.yy,this,h,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),f)return f;if(this._backtrack){for(var b in m)this[b]=m[b];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var u,h,f,p;this._more||(this.yytext="",this.match="");for(var m=this._currentRules(),b=0;bh[0].length)){if(h=f,p=b,this.options.backtrack_lexer){if(u=this.test_match(f,m[b]),u!==!1)return u;if(this._backtrack){h=!1;continue}else return!1}else if(!this.options.flex)break}return h?(u=this.test_match(h,m[p]),u!==!1?u:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var h=this.next();return h||this.lex()},begin:function(h){this.conditionStack.push(h)},popState:function(){var h=this.conditionStack.length-1;return h>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(h){return h=this.conditionStack.length-1-Math.abs(h||0),h>=0?this.conditionStack[h]:"INITIAL"},pushState:function(h){this.begin(h)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(h,f,p,m){switch(p){case 0:return 4;case 1:return 9;case 2:return"space";case 3:return 10;case 4:return 6;case 5:return"TXT"}},rules:[/^(?:info\b)/i,/^(?:[\s\n\r]+)/i,/^(?:[\s]+)/i,/^(?:showInfo\b)/i,/^(?:$)/i,/^(?:.)/i],conditions:{INITIAL:{rules:[0,1,2,3,4,5],inclusive:!0}}};return o}();r.lexer=a;function s(){this.yy={}}return s.prototype=r,r.Parser=s,new s}();Mht.parser=Mht;const Gma=Mht,Itr={info:!1};let lyt=Itr.info;const qma=e=>{lyt=e},Hma=()=>lyt,Vma=()=>{lyt=Itr.info},Yma={clear:Vma,setInfo:qma,getInfo:Hma},jma=(e,t,r)=>{ut.debug(`rendering info diagram +`+e);const a=Zce(t);Db(a,100,400,!0),a.append("g").append("text").attr("x",100).attr("y",40).attr("class","version").attr("font-size",32).style("text-anchor","middle").text(`v${r}`)},Wma={draw:jma},Kma={parser:Gma,db:Yma,renderer:Wma},Xma=Object.freeze(Object.defineProperty({__proto__:null,diagram:Kma},Symbol.toStringTag,{value:"Module"}));var Pht=function(){var e=function(N,L,P,M){for(P=P||{},M=N.length;M--;P[N[M]]=L);return P},t=[1,3],r=[1,4],a=[1,5],s=[1,6],o=[1,10,12,14,16,18,19,20,21,22],u=[2,4],h=[1,5,10,12,14,16,18,19,20,21,22],f=[20,21,22],p=[2,7],m=[1,12],b=[1,13],_=[1,14],w=[1,15],S=[1,16],C=[1,17],A={trace:function(){},yy:{},symbols_:{error:2,start:3,eol:4,PIE:5,document:6,showData:7,line:8,statement:9,txt:10,value:11,title:12,title_value:13,acc_title:14,acc_title_value:15,acc_descr:16,acc_descr_value:17,acc_descr_multiline_value:18,section:19,NEWLINE:20,";":21,EOF:22,$accept:0,$end:1},terminals_:{2:"error",5:"PIE",7:"showData",10:"txt",11:"value",12:"title",13:"title_value",14:"acc_title",15:"acc_title_value",16:"acc_descr",17:"acc_descr_value",18:"acc_descr_multiline_value",19:"section",20:"NEWLINE",21:";",22:"EOF"},productions_:[0,[3,2],[3,2],[3,3],[6,0],[6,2],[8,2],[9,0],[9,2],[9,2],[9,2],[9,2],[9,1],[9,1],[4,1],[4,1],[4,1]],performAction:function(L,P,M,F,U,$,G){var B=$.length-1;switch(U){case 3:F.setShowData(!0);break;case 6:this.$=$[B-1];break;case 8:F.addSection($[B-1],F.cleanupValue($[B]));break;case 9:this.$=$[B].trim(),F.setDiagramTitle(this.$);break;case 10:this.$=$[B].trim(),F.setAccTitle(this.$);break;case 11:case 12:this.$=$[B].trim(),F.setAccDescription(this.$);break;case 13:F.addSection($[B].substr(8)),this.$=$[B].substr(8);break}},table:[{3:1,4:2,5:t,20:r,21:a,22:s},{1:[3]},{3:7,4:2,5:t,20:r,21:a,22:s},e(o,u,{6:8,7:[1,9]}),e(h,[2,14]),e(h,[2,15]),e(h,[2,16]),{1:[2,1]},e(f,p,{8:10,9:11,1:[2,2],10:m,12:b,14:_,16:w,18:S,19:C}),e(o,u,{6:18}),e(o,[2,5]),{4:19,20:r,21:a,22:s},{11:[1,20]},{13:[1,21]},{15:[1,22]},{17:[1,23]},e(f,[2,12]),e(f,[2,13]),e(f,p,{8:10,9:11,1:[2,3],10:m,12:b,14:_,16:w,18:S,19:C}),e(o,[2,6]),e(f,[2,8]),e(f,[2,9]),e(f,[2,10]),e(f,[2,11])],defaultActions:{7:[2,1]},parseError:function(L,P){if(P.recoverable)this.trace(L);else{var M=new Error(L);throw M.hash=P,M}},parse:function(L){var P=this,M=[0],F=[],U=[null],$=[],G=this.table,B="",Z=0,z=0,Y=2,W=1,Q=$.slice.call(arguments,1),V=Object.create(this.lexer),j={yy:{}};for(var ee in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ee)&&(j.yy[ee]=this.yy[ee]);V.setInput(L,j.yy),j.yy.lexer=V,j.yy.parser=this,typeof V.yylloc>"u"&&(V.yylloc={});var te=V.yylloc;$.push(te);var ne=V.options&&V.options.ranges;typeof j.yy.parseError=="function"?this.parseError=j.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function se(){var Ce;return Ce=F.pop()||V.lex()||W,typeof Ce!="number"&&(Ce instanceof Array&&(F=Ce,Ce=F.pop()),Ce=P.symbols_[Ce]||Ce),Ce}for(var ie,ge,ce,be,ve={},De,ye,Ee,he;;){if(ge=M[M.length-1],this.defaultActions[ge]?ce=this.defaultActions[ge]:((ie===null||typeof ie>"u")&&(ie=se()),ce=G[ge]&&G[ge][ie]),typeof ce>"u"||!ce.length||!ce[0]){var we="";he=[];for(De in G[ge])this.terminals_[De]&&De>Y&&he.push("'"+this.terminals_[De]+"'");V.showPosition?we="Parse error on line "+(Z+1)+`: +`+V.showPosition()+` +Expecting `+he.join(", ")+", got '"+(this.terminals_[ie]||ie)+"'":we="Parse error on line "+(Z+1)+": Unexpected "+(ie==W?"end of input":"'"+(this.terminals_[ie]||ie)+"'"),this.parseError(we,{text:V.match,token:this.terminals_[ie]||ie,line:V.yylineno,loc:te,expected:he})}if(ce[0]instanceof Array&&ce.length>1)throw new Error("Parse Error: multiple actions possible at state: "+ge+", token: "+ie);switch(ce[0]){case 1:M.push(ie),U.push(V.yytext),$.push(V.yylloc),M.push(ce[1]),ie=null,z=V.yyleng,B=V.yytext,Z=V.yylineno,te=V.yylloc;break;case 2:if(ye=this.productions_[ce[1]][1],ve.$=U[U.length-ye],ve._$={first_line:$[$.length-(ye||1)].first_line,last_line:$[$.length-1].last_line,first_column:$[$.length-(ye||1)].first_column,last_column:$[$.length-1].last_column},ne&&(ve._$.range=[$[$.length-(ye||1)].range[0],$[$.length-1].range[1]]),be=this.performAction.apply(ve,[B,z,Z,j.yy,ce[1],U,$].concat(Q)),typeof be<"u")return be;ye&&(M=M.slice(0,-1*ye*2),U=U.slice(0,-1*ye),$=$.slice(0,-1*ye)),M.push(this.productions_[ce[1]][0]),U.push(ve.$),$.push(ve._$),Ee=G[M[M.length-2]][M[M.length-1]],M.push(Ee);break;case 3:return!0}}return!0}},k=function(){var N={EOF:1,parseError:function(P,M){if(this.yy.parser)this.yy.parser.parseError(P,M);else throw new Error(P)},setInput:function(L,P){return this.yy=P||this.yy||{},this._input=L,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var L=this._input[0];this.yytext+=L,this.yyleng++,this.offset++,this.match+=L,this.matched+=L;var P=L.match(/(?:\r\n?|\n).*/g);return P?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),L},unput:function(L){var P=L.length,M=L.split(/(?:\r\n?|\n)/g);this._input=L+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-P),this.offset-=P;var F=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),M.length-1&&(this.yylineno-=M.length-1);var U=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:M?(M.length===F.length?this.yylloc.first_column:0)+F[F.length-M.length].length-M[0].length:this.yylloc.first_column-P},this.options.ranges&&(this.yylloc.range=[U[0],U[0]+this.yyleng-P]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(L){this.unput(this.match.slice(L))},pastInput:function(){var L=this.matched.substr(0,this.matched.length-this.match.length);return(L.length>20?"...":"")+L.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var L=this.match;return L.length<20&&(L+=this._input.substr(0,20-L.length)),(L.substr(0,20)+(L.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var L=this.pastInput(),P=new Array(L.length+1).join("-");return L+this.upcomingInput()+` +`+P+"^"},test_match:function(L,P){var M,F,U;if(this.options.backtrack_lexer&&(U={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(U.yylloc.range=this.yylloc.range.slice(0))),F=L[0].match(/(?:\r\n?|\n).*/g),F&&(this.yylineno+=F.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:F?F[F.length-1].length-F[F.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+L[0].length},this.yytext+=L[0],this.match+=L[0],this.matches=L,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(L[0].length),this.matched+=L[0],M=this.performAction.call(this,this.yy,this,P,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),M)return M;if(this._backtrack){for(var $ in U)this[$]=U[$];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var L,P,M,F;this._more||(this.yytext="",this.match="");for(var U=this._currentRules(),$=0;$P[0].length)){if(P=M,F=$,this.options.backtrack_lexer){if(L=this.test_match(M,U[$]),L!==!1)return L;if(this._backtrack){P=!1;continue}else return!1}else if(!this.options.flex)break}return P?(L=this.test_match(P,U[F]),L!==!1?L:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var P=this.next();return P||this.lex()},begin:function(P){this.conditionStack.push(P)},popState:function(){var P=this.conditionStack.length-1;return P>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(P){return P=this.conditionStack.length-1-Math.abs(P||0),P>=0?this.conditionStack[P]:"INITIAL"},pushState:function(P){this.begin(P)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(P,M,F,U){switch(F){case 0:break;case 1:break;case 2:return 20;case 3:break;case 4:break;case 5:return this.begin("title"),12;case 6:return this.popState(),"title_value";case 7:return this.begin("acc_title"),14;case 8:return this.popState(),"acc_title_value";case 9:return this.begin("acc_descr"),16;case 10:return this.popState(),"acc_descr_value";case 11:this.begin("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:this.begin("string");break;case 15:this.popState();break;case 16:return"txt";case 17:return 5;case 18:return 7;case 19:return"value";case 20:return 22}},rules:[/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n\r]+)/i,/^(?:%%[^\n]*)/i,/^(?:[\s]+)/i,/^(?:title\b)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:pie\b)/i,/^(?:showData\b)/i,/^(?::[\s]*[\d]+(?:\.[\d]+)?)/i,/^(?:$)/i],conditions:{acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},title:{rules:[6],inclusive:!1},string:{rules:[15,16],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,7,9,11,14,17,18,19,20],inclusive:!0}}};return N}();A.lexer=k;function I(){this.yy={}}return I.prototype=A,A.Parser=I,new I}();Pht.parser=Pht;const Qma=Pht,Zma=fd.pie,d5e={sections:{},showData:!1};let f5e=d5e.sections,cyt=d5e.showData;const Jma=structuredClone(Zma),eba=()=>structuredClone(Jma),tba=()=>{f5e=structuredClone(d5e.sections),cyt=d5e.showData,Mb()},nba=(e,t)=>{e=J0(e,Qt()),f5e[e]===void 0&&(f5e[e]=t,ut.debug(`added new section: ${e}, with value: ${t}`))},rba=()=>f5e,iba=e=>(e.substring(0,1)===":"&&(e=e.substring(1).trim()),Number(e.trim())),aba=e=>{cyt=e},sba=()=>cyt,oba={getConfig:eba,clear:tba,setDiagramTitle:Zw,getDiagramTitle:Tv,setAccTitle:Pb,getAccTitle:Ev,setAccDescription:xv,getAccDescription:Sv,addSection:nba,getSections:rba,cleanupValue:iba,setShowData:aba,getShowData:sba},lba=e=>` + .pieCircle{ + stroke: ${e.pieStrokeColor}; + stroke-width : ${e.pieStrokeWidth}; + opacity : ${e.pieOpacity}; + } + .pieOuterCircle{ + stroke: ${e.pieOuterStrokeColor}; + stroke-width: ${e.pieOuterStrokeWidth}; + fill: none; + } + .pieTitleText { + text-anchor: middle; + font-size: ${e.pieTitleTextSize}; + fill: ${e.pieTitleTextColor}; + font-family: ${e.fontFamily}; + } + .slice { + font-family: ${e.fontFamily}; + fill: ${e.pieSectionTextColor}; + font-size:${e.pieSectionTextSize}; + // fill: white; + } + .legend text { + fill: ${e.pieLegendTextColor}; + font-family: ${e.fontFamily}; + font-size: ${e.pieLegendTextSize}; + } +`,cba=lba,uba=e=>{const t=Object.entries(e).map(a=>({label:a[0],value:a[1]})).sort((a,s)=>s.value-a.value);return ADn().value(a=>a.value)(t)},hba=(e,t,r,a)=>{ut.debug(`rendering pie chart +`+e);const s=a.db,o=Qt(),u=Qce(s.getConfig(),o.pie),h=40,f=18,p=4,m=450,b=m,_=Zce(t),w=_.append("g"),S=s.getSections();w.attr("transform","translate("+b/2+","+m/2+")");const{themeVariables:C}=o;let[A]=J$(C.pieOuterStrokeWidth);A??(A=2);const k=u.textPosition,I=Math.min(b,m)/2-h,N=_S().innerRadius(0).outerRadius(I),L=_S().innerRadius(I*k).outerRadius(I*k);w.append("circle").attr("cx",0).attr("cy",0).attr("r",I+A/2).attr("class","pieOuterCircle");const P=uba(S),M=[C.pie1,C.pie2,C.pie3,C.pie4,C.pie5,C.pie6,C.pie7,C.pie8,C.pie9,C.pie10,C.pie11,C.pie12],F=cA(M);w.selectAll("mySlices").data(P).enter().append("path").attr("d",N).attr("fill",Z=>F(Z.data.label)).attr("class","pieCircle");let U=0;Object.keys(S).forEach(Z=>{U+=S[Z]}),w.selectAll("mySlices").data(P).enter().append("text").text(Z=>(Z.data.value/U*100).toFixed(0)+"%").attr("transform",Z=>"translate("+L.centroid(Z)+")").style("text-anchor","middle").attr("class","slice"),w.append("text").text(s.getDiagramTitle()).attr("x",0).attr("y",-400/2).attr("class","pieTitleText");const $=w.selectAll(".legend").data(F.domain()).enter().append("g").attr("class","legend").attr("transform",(Z,z)=>{const Y=f+p,W=Y*F.domain().length/2,Q=12*f,V=z*Y-W;return"translate("+Q+","+V+")"});$.append("rect").attr("width",f).attr("height",f).style("fill",F).style("stroke",F),$.data(P).append("text").attr("x",f+p).attr("y",f-p).text(Z=>{const{label:z,value:Y}=Z.data;return s.getShowData()?`${z} [${Y}]`:z});const G=Math.max(...$.selectAll("text").nodes().map(Z=>(Z==null?void 0:Z.getBoundingClientRect().width)??0)),B=b+h+f+p+G;_.attr("viewBox",`0 0 ${B} ${m}`),Db(_,m,B,u.useMaxWidth)},dba={draw:hba},fba={parser:Qma,db:oba,renderer:dba,styles:cba},pba=Object.freeze(Object.defineProperty({__proto__:null,diagram:fba},Symbol.toStringTag,{value:"Module"}));var Bht=function(){var e=function(ce,be,ve,De){for(ve=ve||{},De=ce.length;De--;ve[ce[De]]=be);return ve},t=[1,3],r=[1,4],a=[1,5],s=[1,6],o=[1,7],u=[1,5,13,15,17,19,20,25,27,28,29,30,31,32,33,34,37,38,40,41,42,43,44,45,46,47,48,49,50],h=[1,5,6,13,15,17,19,20,25,27,28,29,30,31,32,33,34,37,38,40,41,42,43,44,45,46,47,48,49,50],f=[32,33,34],p=[2,7],m=[1,13],b=[1,17],_=[1,18],w=[1,19],S=[1,20],C=[1,21],A=[1,22],k=[1,23],I=[1,24],N=[1,25],L=[1,26],P=[1,27],M=[1,30],F=[1,31],U=[1,32],$=[1,33],G=[1,34],B=[1,35],Z=[1,36],z=[1,37],Y=[1,38],W=[1,39],Q=[1,40],V=[1,41],j=[1,42],ee=[1,57],te=[1,58],ne=[5,22,26,32,33,34,40,41,42,43,44,45,46,47,48,49,50,51],se={trace:function(){},yy:{},symbols_:{error:2,start:3,eol:4,SPACE:5,QUADRANT:6,document:7,line:8,statement:9,axisDetails:10,quadrantDetails:11,points:12,title:13,title_value:14,acc_title:15,acc_title_value:16,acc_descr:17,acc_descr_value:18,acc_descr_multiline_value:19,section:20,text:21,point_start:22,point_x:23,point_y:24,"X-AXIS":25,"AXIS-TEXT-DELIMITER":26,"Y-AXIS":27,QUADRANT_1:28,QUADRANT_2:29,QUADRANT_3:30,QUADRANT_4:31,NEWLINE:32,SEMI:33,EOF:34,alphaNumToken:35,textNoTagsToken:36,STR:37,MD_STR:38,alphaNum:39,PUNCTUATION:40,AMP:41,NUM:42,ALPHA:43,COMMA:44,PLUS:45,EQUALS:46,MULT:47,DOT:48,BRKT:49,UNDERSCORE:50,MINUS:51,$accept:0,$end:1},terminals_:{2:"error",5:"SPACE",6:"QUADRANT",13:"title",14:"title_value",15:"acc_title",16:"acc_title_value",17:"acc_descr",18:"acc_descr_value",19:"acc_descr_multiline_value",20:"section",22:"point_start",23:"point_x",24:"point_y",25:"X-AXIS",26:"AXIS-TEXT-DELIMITER",27:"Y-AXIS",28:"QUADRANT_1",29:"QUADRANT_2",30:"QUADRANT_3",31:"QUADRANT_4",32:"NEWLINE",33:"SEMI",34:"EOF",37:"STR",38:"MD_STR",40:"PUNCTUATION",41:"AMP",42:"NUM",43:"ALPHA",44:"COMMA",45:"PLUS",46:"EQUALS",47:"MULT",48:"DOT",49:"BRKT",50:"UNDERSCORE",51:"MINUS"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[9,0],[9,2],[9,1],[9,1],[9,1],[9,2],[9,2],[9,2],[9,1],[9,1],[12,4],[10,4],[10,3],[10,2],[10,4],[10,3],[10,2],[11,2],[11,2],[11,2],[11,2],[4,1],[4,1],[4,1],[21,1],[21,2],[21,1],[21,1],[39,1],[39,2],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[35,1],[36,1],[36,1],[36,1]],performAction:function(be,ve,De,ye,Ee,he,we){var Ce=he.length-1;switch(Ee){case 12:this.$=he[Ce].trim(),ye.setDiagramTitle(this.$);break;case 13:this.$=he[Ce].trim(),ye.setAccTitle(this.$);break;case 14:case 15:this.$=he[Ce].trim(),ye.setAccDescription(this.$);break;case 16:ye.addSection(he[Ce].substr(8)),this.$=he[Ce].substr(8);break;case 17:ye.addPoint(he[Ce-3],he[Ce-1],he[Ce]);break;case 18:ye.setXAxisLeftText(he[Ce-2]),ye.setXAxisRightText(he[Ce]);break;case 19:he[Ce-1].text+=" ⟶ ",ye.setXAxisLeftText(he[Ce-1]);break;case 20:ye.setXAxisLeftText(he[Ce]);break;case 21:ye.setYAxisBottomText(he[Ce-2]),ye.setYAxisTopText(he[Ce]);break;case 22:he[Ce-1].text+=" ⟶ ",ye.setYAxisBottomText(he[Ce-1]);break;case 23:ye.setYAxisBottomText(he[Ce]);break;case 24:ye.setQuadrant1Text(he[Ce]);break;case 25:ye.setQuadrant2Text(he[Ce]);break;case 26:ye.setQuadrant3Text(he[Ce]);break;case 27:ye.setQuadrant4Text(he[Ce]);break;case 31:this.$={text:he[Ce],type:"text"};break;case 32:this.$={text:he[Ce-1].text+""+he[Ce],type:he[Ce-1].type};break;case 33:this.$={text:he[Ce],type:"text"};break;case 34:this.$={text:he[Ce],type:"markdown"};break;case 35:this.$=he[Ce];break;case 36:this.$=he[Ce-1]+""+he[Ce];break}},table:[{3:1,4:2,5:t,6:r,32:a,33:s,34:o},{1:[3]},{3:8,4:2,5:t,6:r,32:a,33:s,34:o},{3:9,4:2,5:t,6:r,32:a,33:s,34:o},e(u,[2,4],{7:10}),e(h,[2,28]),e(h,[2,29]),e(h,[2,30]),{1:[2,1]},{1:[2,2]},e(f,p,{8:11,9:12,10:14,11:15,12:16,21:28,35:29,1:[2,3],5:m,13:b,15:_,17:w,19:S,20:C,25:A,27:k,28:I,29:N,30:L,31:P,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j}),e(u,[2,5]),{4:43,32:a,33:s,34:o},e(f,p,{10:14,11:15,12:16,21:28,35:29,9:44,5:m,13:b,15:_,17:w,19:S,20:C,25:A,27:k,28:I,29:N,30:L,31:P,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j}),e(f,[2,9]),e(f,[2,10]),e(f,[2,11]),{14:[1,45]},{16:[1,46]},{18:[1,47]},e(f,[2,15]),e(f,[2,16]),{21:48,35:29,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j},{21:49,35:29,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j},{21:50,35:29,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j},{21:51,35:29,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j},{21:52,35:29,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j},{21:53,35:29,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j},{5:ee,22:[1,54],35:56,36:55,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j,51:te},e(ne,[2,31]),e(ne,[2,33]),e(ne,[2,34]),e(ne,[2,37]),e(ne,[2,38]),e(ne,[2,39]),e(ne,[2,40]),e(ne,[2,41]),e(ne,[2,42]),e(ne,[2,43]),e(ne,[2,44]),e(ne,[2,45]),e(ne,[2,46]),e(ne,[2,47]),e(u,[2,6]),e(f,[2,8]),e(f,[2,12]),e(f,[2,13]),e(f,[2,14]),e(f,[2,20],{36:55,35:56,5:ee,26:[1,59],40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j,51:te}),e(f,[2,23],{36:55,35:56,5:ee,26:[1,60],40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j,51:te}),e(f,[2,24],{36:55,35:56,5:ee,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j,51:te}),e(f,[2,25],{36:55,35:56,5:ee,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j,51:te}),e(f,[2,26],{36:55,35:56,5:ee,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j,51:te}),e(f,[2,27],{36:55,35:56,5:ee,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j,51:te}),{23:[1,61]},e(ne,[2,32]),e(ne,[2,48]),e(ne,[2,49]),e(ne,[2,50]),e(f,[2,19],{35:29,21:62,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j}),e(f,[2,22],{35:29,21:63,37:M,38:F,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j}),{24:[1,64]},e(f,[2,18],{36:55,35:56,5:ee,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j,51:te}),e(f,[2,21],{36:55,35:56,5:ee,40:U,41:$,42:G,43:B,44:Z,45:z,46:Y,47:W,48:Q,49:V,50:j,51:te}),e(f,[2,17])],defaultActions:{8:[2,1],9:[2,2]},parseError:function(be,ve){if(ve.recoverable)this.trace(be);else{var De=new Error(be);throw De.hash=ve,De}},parse:function(be){var ve=this,De=[0],ye=[],Ee=[null],he=[],we=this.table,Ce="",Ie=0,Le=0,Fe=2,Ve=1,Oe=he.slice.call(arguments,1),Dt=Object.create(this.lexer),ot={yy:{}};for(var sn in this.yy)Object.prototype.hasOwnProperty.call(this.yy,sn)&&(ot.yy[sn]=this.yy[sn]);Dt.setInput(be,ot.yy),ot.yy.lexer=Dt,ot.yy.parser=this,typeof Dt.yylloc>"u"&&(Dt.yylloc={});var Kt=Dt.yylloc;he.push(Kt);var Ft=Dt.options&&Dt.options.ranges;typeof ot.yy.parseError=="function"?this.parseError=ot.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Je(){var Ke;return Ke=ye.pop()||Dt.lex()||Ve,typeof Ke!="number"&&(Ke instanceof Array&&(ye=Ke,Ke=ye.pop()),Ke=ve.symbols_[Ke]||Ke),Ke}for(var ht,et,qe,He,Ge={},Ye,Ae,Xe,fe;;){if(et=De[De.length-1],this.defaultActions[et]?qe=this.defaultActions[et]:((ht===null||typeof ht>"u")&&(ht=Je()),qe=we[et]&&we[et][ht]),typeof qe>"u"||!qe.length||!qe[0]){var Qe="";fe=[];for(Ye in we[et])this.terminals_[Ye]&&Ye>Fe&&fe.push("'"+this.terminals_[Ye]+"'");Dt.showPosition?Qe="Parse error on line "+(Ie+1)+`: +`+Dt.showPosition()+` +Expecting `+fe.join(", ")+", got '"+(this.terminals_[ht]||ht)+"'":Qe="Parse error on line "+(Ie+1)+": Unexpected "+(ht==Ve?"end of input":"'"+(this.terminals_[ht]||ht)+"'"),this.parseError(Qe,{text:Dt.match,token:this.terminals_[ht]||ht,line:Dt.yylineno,loc:Kt,expected:fe})}if(qe[0]instanceof Array&&qe.length>1)throw new Error("Parse Error: multiple actions possible at state: "+et+", token: "+ht);switch(qe[0]){case 1:De.push(ht),Ee.push(Dt.yytext),he.push(Dt.yylloc),De.push(qe[1]),ht=null,Le=Dt.yyleng,Ce=Dt.yytext,Ie=Dt.yylineno,Kt=Dt.yylloc;break;case 2:if(Ae=this.productions_[qe[1]][1],Ge.$=Ee[Ee.length-Ae],Ge._$={first_line:he[he.length-(Ae||1)].first_line,last_line:he[he.length-1].last_line,first_column:he[he.length-(Ae||1)].first_column,last_column:he[he.length-1].last_column},Ft&&(Ge._$.range=[he[he.length-(Ae||1)].range[0],he[he.length-1].range[1]]),He=this.performAction.apply(Ge,[Ce,Le,Ie,ot.yy,qe[1],Ee,he].concat(Oe)),typeof He<"u")return He;Ae&&(De=De.slice(0,-1*Ae*2),Ee=Ee.slice(0,-1*Ae),he=he.slice(0,-1*Ae)),De.push(this.productions_[qe[1]][0]),Ee.push(Ge.$),he.push(Ge._$),Xe=we[De[De.length-2]][De[De.length-1]],De.push(Xe);break;case 3:return!0}}return!0}},ie=function(){var ce={EOF:1,parseError:function(ve,De){if(this.yy.parser)this.yy.parser.parseError(ve,De);else throw new Error(ve)},setInput:function(be,ve){return this.yy=ve||this.yy||{},this._input=be,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var be=this._input[0];this.yytext+=be,this.yyleng++,this.offset++,this.match+=be,this.matched+=be;var ve=be.match(/(?:\r\n?|\n).*/g);return ve?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),be},unput:function(be){var ve=be.length,De=be.split(/(?:\r\n?|\n)/g);this._input=be+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-ve),this.offset-=ve;var ye=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),De.length-1&&(this.yylineno-=De.length-1);var Ee=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:De?(De.length===ye.length?this.yylloc.first_column:0)+ye[ye.length-De.length].length-De[0].length:this.yylloc.first_column-ve},this.options.ranges&&(this.yylloc.range=[Ee[0],Ee[0]+this.yyleng-ve]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(be){this.unput(this.match.slice(be))},pastInput:function(){var be=this.matched.substr(0,this.matched.length-this.match.length);return(be.length>20?"...":"")+be.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var be=this.match;return be.length<20&&(be+=this._input.substr(0,20-be.length)),(be.substr(0,20)+(be.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var be=this.pastInput(),ve=new Array(be.length+1).join("-");return be+this.upcomingInput()+` +`+ve+"^"},test_match:function(be,ve){var De,ye,Ee;if(this.options.backtrack_lexer&&(Ee={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Ee.yylloc.range=this.yylloc.range.slice(0))),ye=be[0].match(/(?:\r\n?|\n).*/g),ye&&(this.yylineno+=ye.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:ye?ye[ye.length-1].length-ye[ye.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+be[0].length},this.yytext+=be[0],this.match+=be[0],this.matches=be,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(be[0].length),this.matched+=be[0],De=this.performAction.call(this,this.yy,this,ve,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),De)return De;if(this._backtrack){for(var he in Ee)this[he]=Ee[he];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var be,ve,De,ye;this._more||(this.yytext="",this.match="");for(var Ee=this._currentRules(),he=0;heve[0].length)){if(ve=De,ye=he,this.options.backtrack_lexer){if(be=this.test_match(De,Ee[he]),be!==!1)return be;if(this._backtrack){ve=!1;continue}else return!1}else if(!this.options.flex)break}return ve?(be=this.test_match(ve,Ee[ye]),be!==!1?be:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var ve=this.next();return ve||this.lex()},begin:function(ve){this.conditionStack.push(ve)},popState:function(){var ve=this.conditionStack.length-1;return ve>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(ve){return ve=this.conditionStack.length-1-Math.abs(ve||0),ve>=0?this.conditionStack[ve]:"INITIAL"},pushState:function(ve){this.begin(ve)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(ve,De,ye,Ee){switch(ye){case 0:break;case 1:break;case 2:return 32;case 3:break;case 4:return this.begin("title"),13;case 5:return this.popState(),"title_value";case 6:return this.begin("acc_title"),15;case 7:return this.popState(),"acc_title_value";case 8:return this.begin("acc_descr"),17;case 9:return this.popState(),"acc_descr_value";case 10:this.begin("acc_descr_multiline");break;case 11:this.popState();break;case 12:return"acc_descr_multiline_value";case 13:return 25;case 14:return 27;case 15:return 26;case 16:return 28;case 17:return 29;case 18:return 30;case 19:return 31;case 20:this.begin("md_string");break;case 21:return"MD_STR";case 22:this.popState();break;case 23:this.begin("string");break;case 24:this.popState();break;case 25:return"STR";case 26:return this.begin("point_start"),22;case 27:return this.begin("point_x"),23;case 28:this.popState();break;case 29:this.popState(),this.begin("point_y");break;case 30:return this.popState(),24;case 31:return 6;case 32:return 43;case 33:return"COLON";case 34:return 45;case 35:return 44;case 36:return 46;case 37:return 46;case 38:return 47;case 39:return 49;case 40:return 50;case 41:return 48;case 42:return 41;case 43:return 51;case 44:return 42;case 45:return 5;case 46:return 33;case 47:return 40;case 48:return 34}},rules:[/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n\r]+)/i,/^(?:%%[^\n]*)/i,/^(?:title\b)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?: *x-axis *)/i,/^(?: *y-axis *)/i,/^(?: *--+> *)/i,/^(?: *quadrant-1 *)/i,/^(?: *quadrant-2 *)/i,/^(?: *quadrant-3 *)/i,/^(?: *quadrant-4 *)/i,/^(?:["][`])/i,/^(?:[^`"]+)/i,/^(?:[`]["])/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:\s*:\s*\[\s*)/i,/^(?:(1)|(0(.\d+)?))/i,/^(?:\s*\] *)/i,/^(?:\s*,\s*)/i,/^(?:(1)|(0(.\d+)?))/i,/^(?: *quadrantChart *)/i,/^(?:[A-Za-z]+)/i,/^(?::)/i,/^(?:\+)/i,/^(?:,)/i,/^(?:=)/i,/^(?:=)/i,/^(?:\*)/i,/^(?:#)/i,/^(?:[\_])/i,/^(?:\.)/i,/^(?:&)/i,/^(?:-)/i,/^(?:[0-9]+)/i,/^(?:\s)/i,/^(?:;)/i,/^(?:[!"#$%&'*+,-.`?\\_/])/i,/^(?:$)/i],conditions:{point_y:{rules:[30],inclusive:!1},point_x:{rules:[29],inclusive:!1},point_start:{rules:[27,28],inclusive:!1},acc_descr_multiline:{rules:[11,12],inclusive:!1},acc_descr:{rules:[9],inclusive:!1},acc_title:{rules:[7],inclusive:!1},title:{rules:[5],inclusive:!1},md_string:{rules:[21,22],inclusive:!1},string:{rules:[24,25],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,6,8,10,13,14,15,16,17,18,19,20,23,26,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48],inclusive:!0}}};return ce}();se.lexer=ie;function ge(){this.yy={}}return ge.prototype=se,se.Parser=ge,new ge}();Bht.parser=Bht;const gba=Bht,Uy=mbt();class mba{constructor(){this.config=this.getDefaultConfig(),this.themeConfig=this.getDefaultThemeConfig(),this.data=this.getDefaultData()}getDefaultData(){return{titleText:"",quadrant1Text:"",quadrant2Text:"",quadrant3Text:"",quadrant4Text:"",xAxisLeftText:"",xAxisRightText:"",yAxisBottomText:"",yAxisTopText:"",points:[]}}getDefaultConfig(){var t,r,a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I;return{showXAxis:!0,showYAxis:!0,showTitle:!0,chartHeight:((t=fd.quadrantChart)==null?void 0:t.chartWidth)||500,chartWidth:((r=fd.quadrantChart)==null?void 0:r.chartHeight)||500,titlePadding:((a=fd.quadrantChart)==null?void 0:a.titlePadding)||10,titleFontSize:((s=fd.quadrantChart)==null?void 0:s.titleFontSize)||20,quadrantPadding:((o=fd.quadrantChart)==null?void 0:o.quadrantPadding)||5,xAxisLabelPadding:((u=fd.quadrantChart)==null?void 0:u.xAxisLabelPadding)||5,yAxisLabelPadding:((h=fd.quadrantChart)==null?void 0:h.yAxisLabelPadding)||5,xAxisLabelFontSize:((f=fd.quadrantChart)==null?void 0:f.xAxisLabelFontSize)||16,yAxisLabelFontSize:((p=fd.quadrantChart)==null?void 0:p.yAxisLabelFontSize)||16,quadrantLabelFontSize:((m=fd.quadrantChart)==null?void 0:m.quadrantLabelFontSize)||16,quadrantTextTopPadding:((b=fd.quadrantChart)==null?void 0:b.quadrantTextTopPadding)||5,pointTextPadding:((_=fd.quadrantChart)==null?void 0:_.pointTextPadding)||5,pointLabelFontSize:((w=fd.quadrantChart)==null?void 0:w.pointLabelFontSize)||12,pointRadius:((S=fd.quadrantChart)==null?void 0:S.pointRadius)||5,xAxisPosition:((C=fd.quadrantChart)==null?void 0:C.xAxisPosition)||"top",yAxisPosition:((A=fd.quadrantChart)==null?void 0:A.yAxisPosition)||"left",quadrantInternalBorderStrokeWidth:((k=fd.quadrantChart)==null?void 0:k.quadrantInternalBorderStrokeWidth)||1,quadrantExternalBorderStrokeWidth:((I=fd.quadrantChart)==null?void 0:I.quadrantExternalBorderStrokeWidth)||2}}getDefaultThemeConfig(){return{quadrant1Fill:Uy.quadrant1Fill,quadrant2Fill:Uy.quadrant2Fill,quadrant3Fill:Uy.quadrant3Fill,quadrant4Fill:Uy.quadrant4Fill,quadrant1TextFill:Uy.quadrant1TextFill,quadrant2TextFill:Uy.quadrant2TextFill,quadrant3TextFill:Uy.quadrant3TextFill,quadrant4TextFill:Uy.quadrant4TextFill,quadrantPointFill:Uy.quadrantPointFill,quadrantPointTextFill:Uy.quadrantPointTextFill,quadrantXAxisTextFill:Uy.quadrantXAxisTextFill,quadrantYAxisTextFill:Uy.quadrantYAxisTextFill,quadrantTitleFill:Uy.quadrantTitleFill,quadrantInternalBorderStrokeFill:Uy.quadrantInternalBorderStrokeFill,quadrantExternalBorderStrokeFill:Uy.quadrantExternalBorderStrokeFill}}clear(){this.config=this.getDefaultConfig(),this.themeConfig=this.getDefaultThemeConfig(),this.data=this.getDefaultData(),ut.info("clear called")}setData(t){this.data={...this.data,...t}}addPoints(t){this.data.points=[...t,...this.data.points]}setConfig(t){ut.trace("setConfig called with: ",t),this.config={...this.config,...t}}setThemeConfig(t){ut.trace("setThemeConfig called with: ",t),this.themeConfig={...this.themeConfig,...t}}calculateSpace(t,r,a,s){const o=this.config.xAxisLabelPadding*2+this.config.xAxisLabelFontSize,u={top:t==="top"&&r?o:0,bottom:t==="bottom"&&r?o:0},h=this.config.yAxisLabelPadding*2+this.config.yAxisLabelFontSize,f={left:this.config.yAxisPosition==="left"&&a?h:0,right:this.config.yAxisPosition==="right"&&a?h:0},p=this.config.titleFontSize+this.config.titlePadding*2,m={top:s?p:0},b=this.config.quadrantPadding+f.left,_=this.config.quadrantPadding+u.top+m.top,w=this.config.chartWidth-this.config.quadrantPadding*2-f.left-f.right,S=this.config.chartHeight-this.config.quadrantPadding*2-u.top-u.bottom-m.top,C=w/2,A=S/2;return{xAxisSpace:u,yAxisSpace:f,titleSpace:m,quadrantSpace:{quadrantLeft:b,quadrantTop:_,quadrantWidth:w,quadrantHalfWidth:C,quadrantHeight:S,quadrantHalfHeight:A}}}getAxisLabels(t,r,a,s){const{quadrantSpace:o,titleSpace:u}=s,{quadrantHalfHeight:h,quadrantHeight:f,quadrantLeft:p,quadrantHalfWidth:m,quadrantTop:b,quadrantWidth:_}=o,w=!!this.data.xAxisRightText,S=!!this.data.yAxisTopText,C=[];return this.data.xAxisLeftText&&r&&C.push({text:this.data.xAxisLeftText,fill:this.themeConfig.quadrantXAxisTextFill,x:p+(w?m/2:0),y:t==="top"?this.config.xAxisLabelPadding+u.top:this.config.xAxisLabelPadding+b+f+this.config.quadrantPadding,fontSize:this.config.xAxisLabelFontSize,verticalPos:w?"center":"left",horizontalPos:"top",rotation:0}),this.data.xAxisRightText&&r&&C.push({text:this.data.xAxisRightText,fill:this.themeConfig.quadrantXAxisTextFill,x:p+m+(w?m/2:0),y:t==="top"?this.config.xAxisLabelPadding+u.top:this.config.xAxisLabelPadding+b+f+this.config.quadrantPadding,fontSize:this.config.xAxisLabelFontSize,verticalPos:w?"center":"left",horizontalPos:"top",rotation:0}),this.data.yAxisBottomText&&a&&C.push({text:this.data.yAxisBottomText,fill:this.themeConfig.quadrantYAxisTextFill,x:this.config.yAxisPosition==="left"?this.config.yAxisLabelPadding:this.config.yAxisLabelPadding+p+_+this.config.quadrantPadding,y:b+f-(S?h/2:0),fontSize:this.config.yAxisLabelFontSize,verticalPos:S?"center":"left",horizontalPos:"top",rotation:-90}),this.data.yAxisTopText&&a&&C.push({text:this.data.yAxisTopText,fill:this.themeConfig.quadrantYAxisTextFill,x:this.config.yAxisPosition==="left"?this.config.yAxisLabelPadding:this.config.yAxisLabelPadding+p+_+this.config.quadrantPadding,y:b+h-(S?h/2:0),fontSize:this.config.yAxisLabelFontSize,verticalPos:S?"center":"left",horizontalPos:"top",rotation:-90}),C}getQuadrants(t){const{quadrantSpace:r}=t,{quadrantHalfHeight:a,quadrantLeft:s,quadrantHalfWidth:o,quadrantTop:u}=r,h=[{text:{text:this.data.quadrant1Text,fill:this.themeConfig.quadrant1TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:s+o,y:u,width:o,height:a,fill:this.themeConfig.quadrant1Fill},{text:{text:this.data.quadrant2Text,fill:this.themeConfig.quadrant2TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:s,y:u,width:o,height:a,fill:this.themeConfig.quadrant2Fill},{text:{text:this.data.quadrant3Text,fill:this.themeConfig.quadrant3TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:s,y:u+a,width:o,height:a,fill:this.themeConfig.quadrant3Fill},{text:{text:this.data.quadrant4Text,fill:this.themeConfig.quadrant4TextFill,x:0,y:0,fontSize:this.config.quadrantLabelFontSize,verticalPos:"center",horizontalPos:"middle",rotation:0},x:s+o,y:u+a,width:o,height:a,fill:this.themeConfig.quadrant4Fill}];for(const f of h)f.text.x=f.x+f.width/2,this.data.points.length===0?(f.text.y=f.y+f.height/2,f.text.horizontalPos="middle"):(f.text.y=f.y+this.config.quadrantTextTopPadding,f.text.horizontalPos="top");return h}getQuadrantPoints(t){const{quadrantSpace:r}=t,{quadrantHeight:a,quadrantLeft:s,quadrantTop:o,quadrantWidth:u}=r,h=sT().domain([0,1]).range([s,u+s]),f=sT().domain([0,1]).range([a+o,o]);return this.data.points.map(m=>({x:h(m.x),y:f(m.y),fill:this.themeConfig.quadrantPointFill,radius:this.config.pointRadius,text:{text:m.text,fill:this.themeConfig.quadrantPointTextFill,x:h(m.x),y:f(m.y)+this.config.pointTextPadding,verticalPos:"center",horizontalPos:"top",fontSize:this.config.pointLabelFontSize,rotation:0}}))}getBorders(t){const r=this.config.quadrantExternalBorderStrokeWidth/2,{quadrantSpace:a}=t,{quadrantHalfHeight:s,quadrantHeight:o,quadrantLeft:u,quadrantHalfWidth:h,quadrantTop:f,quadrantWidth:p}=a;return[{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:u-r,y1:f,x2:u+p+r,y2:f},{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:u+p,y1:f+r,x2:u+p,y2:f+o-r},{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:u-r,y1:f+o,x2:u+p+r,y2:f+o},{strokeFill:this.themeConfig.quadrantExternalBorderStrokeFill,strokeWidth:this.config.quadrantExternalBorderStrokeWidth,x1:u,y1:f+r,x2:u,y2:f+o-r},{strokeFill:this.themeConfig.quadrantInternalBorderStrokeFill,strokeWidth:this.config.quadrantInternalBorderStrokeWidth,x1:u+h,y1:f+r,x2:u+h,y2:f+o-r},{strokeFill:this.themeConfig.quadrantInternalBorderStrokeFill,strokeWidth:this.config.quadrantInternalBorderStrokeWidth,x1:u+r,y1:f+s,x2:u+p-r,y2:f+s}]}getTitle(t){if(t)return{text:this.data.titleText,fill:this.themeConfig.quadrantTitleFill,fontSize:this.config.titleFontSize,horizontalPos:"top",verticalPos:"center",rotation:0,y:this.config.titlePadding,x:this.config.chartWidth/2}}build(){const t=this.config.showXAxis&&!!(this.data.xAxisLeftText||this.data.xAxisRightText),r=this.config.showYAxis&&!!(this.data.yAxisTopText||this.data.yAxisBottomText),a=this.config.showTitle&&!!this.data.titleText,s=this.data.points.length>0?"bottom":this.config.xAxisPosition,o=this.calculateSpace(s,t,r,a);return{points:this.getQuadrantPoints(o),quadrants:this.getQuadrants(o),axisLabels:this.getAxisLabels(s,t,r,o),borderLines:this.getBorders(o),title:this.getTitle(a)}}}const bba=Qt();function NR(e){return J0(e.trim(),bba)}const xb=new mba;function yba(e){xb.setData({quadrant1Text:NR(e.text)})}function vba(e){xb.setData({quadrant2Text:NR(e.text)})}function _ba(e){xb.setData({quadrant3Text:NR(e.text)})}function wba(e){xb.setData({quadrant4Text:NR(e.text)})}function Eba(e){xb.setData({xAxisLeftText:NR(e.text)})}function xba(e){xb.setData({xAxisRightText:NR(e.text)})}function Sba(e){xb.setData({yAxisTopText:NR(e.text)})}function Tba(e){xb.setData({yAxisBottomText:NR(e.text)})}function Cba(e,t,r){xb.addPoints([{x:t,y:r,text:NR(e.text)}])}function Aba(e){xb.setConfig({chartWidth:e})}function kba(e){xb.setConfig({chartHeight:e})}function Rba(){const e=Qt(),{themeVariables:t,quadrantChart:r}=e;return r&&xb.setConfig(r),xb.setThemeConfig({quadrant1Fill:t.quadrant1Fill,quadrant2Fill:t.quadrant2Fill,quadrant3Fill:t.quadrant3Fill,quadrant4Fill:t.quadrant4Fill,quadrant1TextFill:t.quadrant1TextFill,quadrant2TextFill:t.quadrant2TextFill,quadrant3TextFill:t.quadrant3TextFill,quadrant4TextFill:t.quadrant4TextFill,quadrantPointFill:t.quadrantPointFill,quadrantPointTextFill:t.quadrantPointTextFill,quadrantXAxisTextFill:t.quadrantXAxisTextFill,quadrantYAxisTextFill:t.quadrantYAxisTextFill,quadrantExternalBorderStrokeFill:t.quadrantExternalBorderStrokeFill,quadrantInternalBorderStrokeFill:t.quadrantInternalBorderStrokeFill,quadrantTitleFill:t.quadrantTitleFill}),xb.setData({titleText:Tv()}),xb.build()}const Iba=function(){xb.clear(),Mb()},Nba={setWidth:Aba,setHeight:kba,setQuadrant1Text:yba,setQuadrant2Text:vba,setQuadrant3Text:_ba,setQuadrant4Text:wba,setXAxisLeftText:Eba,setXAxisRightText:xba,setYAxisTopText:Sba,setYAxisBottomText:Tba,addPoint:Cba,getQuadrantData:Rba,clear:Iba,setAccTitle:Pb,getAccTitle:Ev,setDiagramTitle:Zw,getDiagramTitle:Tv,getAccDescription:Sv,setAccDescription:xv},Oba=(e,t,r,a)=>{var s,o,u;function h(B){return B==="top"?"hanging":"middle"}function f(B){return B==="left"?"start":"middle"}function p(B){return`translate(${B.x}, ${B.y}) rotate(${B.rotation||0})`}const m=Qt();ut.debug(`Rendering quadrant chart +`+e);const b=m.securityLevel;let _;b==="sandbox"&&(_=gn("#i"+t));const S=gn(b==="sandbox"?_.nodes()[0].contentDocument.body:"body").select(`[id="${t}"]`),C=S.append("g").attr("class","main"),A=((s=m.quadrantChart)==null?void 0:s.chartWidth)||500,k=((o=m.quadrantChart)==null?void 0:o.chartHeight)||500;Db(S,k,A,((u=m.quadrantChart)==null?void 0:u.useMaxWidth)||!0),S.attr("viewBox","0 0 "+A+" "+k),a.db.setHeight(k),a.db.setWidth(A);const I=a.db.getQuadrantData(),N=C.append("g").attr("class","quadrants"),L=C.append("g").attr("class","border"),P=C.append("g").attr("class","data-points"),M=C.append("g").attr("class","labels"),F=C.append("g").attr("class","title");I.title&&F.append("text").attr("x",0).attr("y",0).attr("fill",I.title.fill).attr("font-size",I.title.fontSize).attr("dominant-baseline",h(I.title.horizontalPos)).attr("text-anchor",f(I.title.verticalPos)).attr("transform",p(I.title)).text(I.title.text),I.borderLines&&L.selectAll("line").data(I.borderLines).enter().append("line").attr("x1",B=>B.x1).attr("y1",B=>B.y1).attr("x2",B=>B.x2).attr("y2",B=>B.y2).style("stroke",B=>B.strokeFill).style("stroke-width",B=>B.strokeWidth);const U=N.selectAll("g.quadrant").data(I.quadrants).enter().append("g").attr("class","quadrant");U.append("rect").attr("x",B=>B.x).attr("y",B=>B.y).attr("width",B=>B.width).attr("height",B=>B.height).attr("fill",B=>B.fill),U.append("text").attr("x",0).attr("y",0).attr("fill",B=>B.text.fill).attr("font-size",B=>B.text.fontSize).attr("dominant-baseline",B=>h(B.text.horizontalPos)).attr("text-anchor",B=>f(B.text.verticalPos)).attr("transform",B=>p(B.text)).text(B=>B.text.text),M.selectAll("g.label").data(I.axisLabels).enter().append("g").attr("class","label").append("text").attr("x",0).attr("y",0).text(B=>B.text).attr("fill",B=>B.fill).attr("font-size",B=>B.fontSize).attr("dominant-baseline",B=>h(B.horizontalPos)).attr("text-anchor",B=>f(B.verticalPos)).attr("transform",B=>p(B));const G=P.selectAll("g.data-point").data(I.points).enter().append("g").attr("class","data-point");G.append("circle").attr("cx",B=>B.x).attr("cy",B=>B.y).attr("r",B=>B.radius).attr("fill",B=>B.fill),G.append("text").attr("x",0).attr("y",0).text(B=>B.text.text).attr("fill",B=>B.text.fill).attr("font-size",B=>B.text.fontSize).attr("dominant-baseline",B=>h(B.text.horizontalPos)).attr("text-anchor",B=>f(B.text.verticalPos)).attr("transform",B=>p(B.text))},Lba={draw:Oba},Dba={parser:gba,db:Nba,renderer:Lba,styles:()=>""},Mba=Object.freeze(Object.defineProperty({__proto__:null,diagram:Dba},Symbol.toStringTag,{value:"Module"}));var Fht=function(){var e=function(W,Q,V,j){for(V=V||{},j=W.length;j--;V[W[j]]=Q);return V},t=[1,10,12,14,16,18,19,21,23],r=[2,6],a=[1,3],s=[1,5],o=[1,6],u=[1,7],h=[1,5,10,12,14,16,18,19,21,23,34,35,36],f=[1,25],p=[1,26],m=[1,28],b=[1,29],_=[1,30],w=[1,31],S=[1,32],C=[1,33],A=[1,34],k=[1,35],I=[1,36],N=[1,37],L=[1,43],P=[1,42],M=[1,47],F=[1,50],U=[1,10,12,14,16,18,19,21,23,34,35,36],$=[1,10,12,14,16,18,19,21,23,24,26,27,28,34,35,36],G=[1,10,12,14,16,18,19,21,23,24,26,27,28,34,35,36,41,42,43,44,45,46,47,48,49,50],B=[1,64],Z={trace:function(){},yy:{},symbols_:{error:2,start:3,eol:4,XYCHART:5,chartConfig:6,document:7,CHART_ORIENTATION:8,statement:9,title:10,text:11,X_AXIS:12,parseXAxis:13,Y_AXIS:14,parseYAxis:15,LINE:16,plotData:17,BAR:18,acc_title:19,acc_title_value:20,acc_descr:21,acc_descr_value:22,acc_descr_multiline_value:23,SQUARE_BRACES_START:24,commaSeparatedNumbers:25,SQUARE_BRACES_END:26,NUMBER_WITH_DECIMAL:27,COMMA:28,xAxisData:29,bandData:30,ARROW_DELIMITER:31,commaSeparatedTexts:32,yAxisData:33,NEWLINE:34,SEMI:35,EOF:36,alphaNum:37,STR:38,MD_STR:39,alphaNumToken:40,AMP:41,NUM:42,ALPHA:43,PLUS:44,EQUALS:45,MULT:46,DOT:47,BRKT:48,MINUS:49,UNDERSCORE:50,$accept:0,$end:1},terminals_:{2:"error",5:"XYCHART",8:"CHART_ORIENTATION",10:"title",12:"X_AXIS",14:"Y_AXIS",16:"LINE",18:"BAR",19:"acc_title",20:"acc_title_value",21:"acc_descr",22:"acc_descr_value",23:"acc_descr_multiline_value",24:"SQUARE_BRACES_START",26:"SQUARE_BRACES_END",27:"NUMBER_WITH_DECIMAL",28:"COMMA",31:"ARROW_DELIMITER",34:"NEWLINE",35:"SEMI",36:"EOF",38:"STR",39:"MD_STR",41:"AMP",42:"NUM",43:"ALPHA",44:"PLUS",45:"EQUALS",46:"MULT",47:"DOT",48:"BRKT",49:"MINUS",50:"UNDERSCORE"},productions_:[0,[3,2],[3,3],[3,2],[3,1],[6,1],[7,0],[7,2],[9,2],[9,2],[9,2],[9,2],[9,2],[9,3],[9,2],[9,3],[9,2],[9,2],[9,1],[17,3],[25,3],[25,1],[13,1],[13,2],[13,1],[29,1],[29,3],[30,3],[32,3],[32,1],[15,1],[15,2],[15,1],[33,3],[4,1],[4,1],[4,1],[11,1],[11,1],[11,1],[37,1],[37,2],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1],[40,1]],performAction:function(Q,V,j,ee,te,ne,se){var ie=ne.length-1;switch(te){case 5:ee.setOrientation(ne[ie]);break;case 9:ee.setDiagramTitle(ne[ie].text.trim());break;case 12:ee.setLineData({text:"",type:"text"},ne[ie]);break;case 13:ee.setLineData(ne[ie-1],ne[ie]);break;case 14:ee.setBarData({text:"",type:"text"},ne[ie]);break;case 15:ee.setBarData(ne[ie-1],ne[ie]);break;case 16:this.$=ne[ie].trim(),ee.setAccTitle(this.$);break;case 17:case 18:this.$=ne[ie].trim(),ee.setAccDescription(this.$);break;case 19:this.$=ne[ie-1];break;case 20:this.$=[Number(ne[ie-2]),...ne[ie]];break;case 21:this.$=[Number(ne[ie])];break;case 22:ee.setXAxisTitle(ne[ie]);break;case 23:ee.setXAxisTitle(ne[ie-1]);break;case 24:ee.setXAxisTitle({type:"text",text:""});break;case 25:ee.setXAxisBand(ne[ie]);break;case 26:ee.setXAxisRangeData(Number(ne[ie-2]),Number(ne[ie]));break;case 27:this.$=ne[ie-1];break;case 28:this.$=[ne[ie-2],...ne[ie]];break;case 29:this.$=[ne[ie]];break;case 30:ee.setYAxisTitle(ne[ie]);break;case 31:ee.setYAxisTitle(ne[ie-1]);break;case 32:ee.setYAxisTitle({type:"text",text:""});break;case 33:ee.setYAxisRangeData(Number(ne[ie-2]),Number(ne[ie]));break;case 37:this.$={text:ne[ie],type:"text"};break;case 38:this.$={text:ne[ie],type:"text"};break;case 39:this.$={text:ne[ie],type:"markdown"};break;case 40:this.$=ne[ie];break;case 41:this.$=ne[ie-1]+""+ne[ie];break}},table:[e(t,r,{3:1,4:2,7:4,5:a,34:s,35:o,36:u}),{1:[3]},e(t,r,{4:2,7:4,3:8,5:a,34:s,35:o,36:u}),e(t,r,{4:2,7:4,6:9,3:10,5:a,8:[1,11],34:s,35:o,36:u}),{1:[2,4],9:12,10:[1,13],12:[1,14],14:[1,15],16:[1,16],18:[1,17],19:[1,18],21:[1,19],23:[1,20]},e(h,[2,34]),e(h,[2,35]),e(h,[2,36]),{1:[2,1]},e(t,r,{4:2,7:4,3:21,5:a,34:s,35:o,36:u}),{1:[2,3]},e(h,[2,5]),e(t,[2,7],{4:22,34:s,35:o,36:u}),{11:23,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{11:39,13:38,24:L,27:P,29:40,30:41,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{11:45,15:44,27:M,33:46,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{11:49,17:48,24:F,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{11:52,17:51,24:F,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},{20:[1,53]},{22:[1,54]},e(U,[2,18]),{1:[2,2]},e(U,[2,8]),e(U,[2,9]),e($,[2,37],{40:55,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N}),e($,[2,38]),e($,[2,39]),e(G,[2,40]),e(G,[2,42]),e(G,[2,43]),e(G,[2,44]),e(G,[2,45]),e(G,[2,46]),e(G,[2,47]),e(G,[2,48]),e(G,[2,49]),e(G,[2,50]),e(G,[2,51]),e(U,[2,10]),e(U,[2,22],{30:41,29:56,24:L,27:P}),e(U,[2,24]),e(U,[2,25]),{31:[1,57]},{11:59,32:58,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},e(U,[2,11]),e(U,[2,30],{33:60,27:M}),e(U,[2,32]),{31:[1,61]},e(U,[2,12]),{17:62,24:F},{25:63,27:B},e(U,[2,14]),{17:65,24:F},e(U,[2,16]),e(U,[2,17]),e(G,[2,41]),e(U,[2,23]),{27:[1,66]},{26:[1,67]},{26:[2,29],28:[1,68]},e(U,[2,31]),{27:[1,69]},e(U,[2,13]),{26:[1,70]},{26:[2,21],28:[1,71]},e(U,[2,15]),e(U,[2,26]),e(U,[2,27]),{11:59,32:72,37:24,38:f,39:p,40:27,41:m,42:b,43:_,44:w,45:S,46:C,47:A,48:k,49:I,50:N},e(U,[2,33]),e(U,[2,19]),{25:73,27:B},{26:[2,28]},{26:[2,20]}],defaultActions:{8:[2,1],10:[2,3],21:[2,2],72:[2,28],73:[2,20]},parseError:function(Q,V){if(V.recoverable)this.trace(Q);else{var j=new Error(Q);throw j.hash=V,j}},parse:function(Q){var V=this,j=[0],ee=[],te=[null],ne=[],se=this.table,ie="",ge=0,ce=0,be=2,ve=1,De=ne.slice.call(arguments,1),ye=Object.create(this.lexer),Ee={yy:{}};for(var he in this.yy)Object.prototype.hasOwnProperty.call(this.yy,he)&&(Ee.yy[he]=this.yy[he]);ye.setInput(Q,Ee.yy),Ee.yy.lexer=ye,Ee.yy.parser=this,typeof ye.yylloc>"u"&&(ye.yylloc={});var we=ye.yylloc;ne.push(we);var Ce=ye.options&&ye.options.ranges;typeof Ee.yy.parseError=="function"?this.parseError=Ee.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Ie(){var ht;return ht=ee.pop()||ye.lex()||ve,typeof ht!="number"&&(ht instanceof Array&&(ee=ht,ht=ee.pop()),ht=V.symbols_[ht]||ht),ht}for(var Le,Fe,Ve,Oe,Dt={},ot,sn,Kt,Ft;;){if(Fe=j[j.length-1],this.defaultActions[Fe]?Ve=this.defaultActions[Fe]:((Le===null||typeof Le>"u")&&(Le=Ie()),Ve=se[Fe]&&se[Fe][Le]),typeof Ve>"u"||!Ve.length||!Ve[0]){var Je="";Ft=[];for(ot in se[Fe])this.terminals_[ot]&&ot>be&&Ft.push("'"+this.terminals_[ot]+"'");ye.showPosition?Je="Parse error on line "+(ge+1)+`: +`+ye.showPosition()+` +Expecting `+Ft.join(", ")+", got '"+(this.terminals_[Le]||Le)+"'":Je="Parse error on line "+(ge+1)+": Unexpected "+(Le==ve?"end of input":"'"+(this.terminals_[Le]||Le)+"'"),this.parseError(Je,{text:ye.match,token:this.terminals_[Le]||Le,line:ye.yylineno,loc:we,expected:Ft})}if(Ve[0]instanceof Array&&Ve.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Fe+", token: "+Le);switch(Ve[0]){case 1:j.push(Le),te.push(ye.yytext),ne.push(ye.yylloc),j.push(Ve[1]),Le=null,ce=ye.yyleng,ie=ye.yytext,ge=ye.yylineno,we=ye.yylloc;break;case 2:if(sn=this.productions_[Ve[1]][1],Dt.$=te[te.length-sn],Dt._$={first_line:ne[ne.length-(sn||1)].first_line,last_line:ne[ne.length-1].last_line,first_column:ne[ne.length-(sn||1)].first_column,last_column:ne[ne.length-1].last_column},Ce&&(Dt._$.range=[ne[ne.length-(sn||1)].range[0],ne[ne.length-1].range[1]]),Oe=this.performAction.apply(Dt,[ie,ce,ge,Ee.yy,Ve[1],te,ne].concat(De)),typeof Oe<"u")return Oe;sn&&(j=j.slice(0,-1*sn*2),te=te.slice(0,-1*sn),ne=ne.slice(0,-1*sn)),j.push(this.productions_[Ve[1]][0]),te.push(Dt.$),ne.push(Dt._$),Kt=se[j[j.length-2]][j[j.length-1]],j.push(Kt);break;case 3:return!0}}return!0}},z=function(){var W={EOF:1,parseError:function(V,j){if(this.yy.parser)this.yy.parser.parseError(V,j);else throw new Error(V)},setInput:function(Q,V){return this.yy=V||this.yy||{},this._input=Q,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var Q=this._input[0];this.yytext+=Q,this.yyleng++,this.offset++,this.match+=Q,this.matched+=Q;var V=Q.match(/(?:\r\n?|\n).*/g);return V?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Q},unput:function(Q){var V=Q.length,j=Q.split(/(?:\r\n?|\n)/g);this._input=Q+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-V),this.offset-=V;var ee=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),j.length-1&&(this.yylineno-=j.length-1);var te=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:j?(j.length===ee.length?this.yylloc.first_column:0)+ee[ee.length-j.length].length-j[0].length:this.yylloc.first_column-V},this.options.ranges&&(this.yylloc.range=[te[0],te[0]+this.yyleng-V]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(Q){this.unput(this.match.slice(Q))},pastInput:function(){var Q=this.matched.substr(0,this.matched.length-this.match.length);return(Q.length>20?"...":"")+Q.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var Q=this.match;return Q.length<20&&(Q+=this._input.substr(0,20-Q.length)),(Q.substr(0,20)+(Q.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var Q=this.pastInput(),V=new Array(Q.length+1).join("-");return Q+this.upcomingInput()+` +`+V+"^"},test_match:function(Q,V){var j,ee,te;if(this.options.backtrack_lexer&&(te={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(te.yylloc.range=this.yylloc.range.slice(0))),ee=Q[0].match(/(?:\r\n?|\n).*/g),ee&&(this.yylineno+=ee.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:ee?ee[ee.length-1].length-ee[ee.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Q[0].length},this.yytext+=Q[0],this.match+=Q[0],this.matches=Q,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Q[0].length),this.matched+=Q[0],j=this.performAction.call(this,this.yy,this,V,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),j)return j;if(this._backtrack){for(var ne in te)this[ne]=te[ne];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Q,V,j,ee;this._more||(this.yytext="",this.match="");for(var te=this._currentRules(),ne=0;neV[0].length)){if(V=j,ee=ne,this.options.backtrack_lexer){if(Q=this.test_match(j,te[ne]),Q!==!1)return Q;if(this._backtrack){V=!1;continue}else return!1}else if(!this.options.flex)break}return V?(Q=this.test_match(V,te[ee]),Q!==!1?Q:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var V=this.next();return V||this.lex()},begin:function(V){this.conditionStack.push(V)},popState:function(){var V=this.conditionStack.length-1;return V>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(V){return V=this.conditionStack.length-1-Math.abs(V||0),V>=0?this.conditionStack[V]:"INITIAL"},pushState:function(V){this.begin(V)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(V,j,ee,te){switch(ee){case 0:break;case 1:break;case 2:return this.popState(),34;case 3:return this.popState(),34;case 4:return 34;case 5:break;case 6:return 10;case 7:return this.pushState("acc_title"),19;case 8:return this.popState(),"acc_title_value";case 9:return this.pushState("acc_descr"),21;case 10:return this.popState(),"acc_descr_value";case 11:this.pushState("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:return 5;case 15:return 8;case 16:return this.pushState("axis_data"),"X_AXIS";case 17:return this.pushState("axis_data"),"Y_AXIS";case 18:return this.pushState("axis_band_data"),24;case 19:return 31;case 20:return this.pushState("data"),16;case 21:return this.pushState("data"),18;case 22:return this.pushState("data_inner"),24;case 23:return 27;case 24:return this.popState(),26;case 25:this.popState();break;case 26:this.pushState("string");break;case 27:this.popState();break;case 28:return"STR";case 29:return 24;case 30:return 26;case 31:return 43;case 32:return"COLON";case 33:return 44;case 34:return 28;case 35:return 45;case 36:return 46;case 37:return 48;case 38:return 50;case 39:return 47;case 40:return 41;case 41:return 49;case 42:return 42;case 43:break;case 44:return 35;case 45:return 36}},rules:[/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:(\r?\n))/i,/^(?:(\r?\n))/i,/^(?:[\n\r]+)/i,/^(?:%%[^\n]*)/i,/^(?:title\b)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:\{)/i,/^(?:[^\}]*)/i,/^(?:xychart-beta\b)/i,/^(?:(?:vertical|horizontal))/i,/^(?:x-axis\b)/i,/^(?:y-axis\b)/i,/^(?:\[)/i,/^(?:-->)/i,/^(?:line\b)/i,/^(?:bar\b)/i,/^(?:\[)/i,/^(?:[+-]?(?:\d+(?:\.\d+)?|\.\d+))/i,/^(?:\])/i,/^(?:(?:`\) \{ this\.pushState\(md_string\); \}\n\(\?:\(\?!`"\)\.\)\+ \{ return MD_STR; \}\n\(\?:`))/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:\[)/i,/^(?:\])/i,/^(?:[A-Za-z]+)/i,/^(?::)/i,/^(?:\+)/i,/^(?:,)/i,/^(?:=)/i,/^(?:\*)/i,/^(?:#)/i,/^(?:[\_])/i,/^(?:\.)/i,/^(?:&)/i,/^(?:-)/i,/^(?:[0-9]+)/i,/^(?:\s+)/i,/^(?:;)/i,/^(?:$)/i],conditions:{data_inner:{rules:[0,1,4,5,6,7,9,11,14,15,16,17,20,21,23,24,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0},data:{rules:[0,1,3,4,5,6,7,9,11,14,15,16,17,20,21,22,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0},axis_band_data:{rules:[0,1,4,5,6,7,9,11,14,15,16,17,20,21,24,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0},axis_data:{rules:[0,1,2,4,5,6,7,9,11,14,15,16,17,18,19,20,21,23,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0},acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},title:{rules:[],inclusive:!1},md_string:{rules:[],inclusive:!1},string:{rules:[27,28],inclusive:!1},INITIAL:{rules:[0,1,4,5,6,7,9,11,14,15,16,17,20,21,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45],inclusive:!0}}};return W}();Z.lexer=z;function Y(){this.yy={}}return Y.prototype=Z,Z.Parser=Y,new Y}();Fht.parser=Fht;const Pba=Fht;function ICn(e){return e.type==="bar"}function Ntr(e){return e.type==="band"}function Mse(e){return e.type==="linear"}class Otr{constructor(t){this.parentGroup=t}getMaxDimension(t,r){if(!this.parentGroup)return{width:t.reduce((o,u)=>Math.max(u.length,o),0)*r,height:r};const a={width:0,height:0},s=this.parentGroup.append("g").attr("visibility","hidden").attr("font-size",r);for(const o of t){const u=p1a(s,1,o),h=u?u.width:o.length*r,f=u?u.height:r;a.width=Math.max(a.width,h),a.height=Math.max(a.height,f)}return s.remove(),a}}const NCn=.7,OCn=.2;class Ltr{constructor(t,r,a,s){this.axisConfig=t,this.title=r,this.textDimensionCalculator=a,this.axisThemeConfig=s,this.boundingRect={x:0,y:0,width:0,height:0},this.axisPosition="left",this.showTitle=!1,this.showLabel=!1,this.showTick=!1,this.showAxisLine=!1,this.outerPadding=0,this.titleTextHeight=0,this.labelTextHeight=0,this.range=[0,10],this.boundingRect={x:0,y:0,width:0,height:0},this.axisPosition="left"}setRange(t){this.range=t,this.axisPosition==="left"||this.axisPosition==="right"?this.boundingRect.height=t[1]-t[0]:this.boundingRect.width=t[1]-t[0],this.recalculateScale()}getRange(){return[this.range[0]+this.outerPadding,this.range[1]-this.outerPadding]}setAxisPosition(t){this.axisPosition=t,this.setRange(this.range)}getTickDistance(){const t=this.getRange();return Math.abs(t[0]-t[1])/this.getTickValues().length}getAxisOuterPadding(){return this.outerPadding}getLabelDimension(){return this.textDimensionCalculator.getMaxDimension(this.getTickValues().map(t=>t.toString()),this.axisConfig.labelFontSize)}recalculateOuterPaddingToDrawBar(){NCn*this.getTickDistance()>this.outerPadding*2&&(this.outerPadding=Math.floor(NCn*this.getTickDistance()/2)),this.recalculateScale()}calculateSpaceIfDrawnHorizontally(t){let r=t.height;if(this.axisConfig.showAxisLine&&r>this.axisConfig.axisLineWidth&&(r-=this.axisConfig.axisLineWidth,this.showAxisLine=!0),this.axisConfig.showLabel){const a=this.getLabelDimension(),s=OCn*t.width;this.outerPadding=Math.min(a.width/2,s);const o=a.height+this.axisConfig.labelPadding*2;this.labelTextHeight=a.height,o<=r&&(r-=o,this.showLabel=!0)}if(this.axisConfig.showTick&&r>=this.axisConfig.tickLength&&(this.showTick=!0,r-=this.axisConfig.tickLength),this.axisConfig.showTitle&&this.title){const a=this.textDimensionCalculator.getMaxDimension([this.title],this.axisConfig.titleFontSize),s=a.height+this.axisConfig.titlePadding*2;this.titleTextHeight=a.height,s<=r&&(r-=s,this.showTitle=!0)}this.boundingRect.width=t.width,this.boundingRect.height=t.height-r}calculateSpaceIfDrawnVertical(t){let r=t.width;if(this.axisConfig.showAxisLine&&r>this.axisConfig.axisLineWidth&&(r-=this.axisConfig.axisLineWidth,this.showAxisLine=!0),this.axisConfig.showLabel){const a=this.getLabelDimension(),s=OCn*t.height;this.outerPadding=Math.min(a.height/2,s);const o=a.width+this.axisConfig.labelPadding*2;o<=r&&(r-=o,this.showLabel=!0)}if(this.axisConfig.showTick&&r>=this.axisConfig.tickLength&&(this.showTick=!0,r-=this.axisConfig.tickLength),this.axisConfig.showTitle&&this.title){const a=this.textDimensionCalculator.getMaxDimension([this.title],this.axisConfig.titleFontSize),s=a.height+this.axisConfig.titlePadding*2;this.titleTextHeight=a.height,s<=r&&(r-=s,this.showTitle=!0)}this.boundingRect.width=t.width-r,this.boundingRect.height=t.height}calculateSpace(t){return this.axisPosition==="left"||this.axisPosition==="right"?this.calculateSpaceIfDrawnVertical(t):this.calculateSpaceIfDrawnHorizontally(t),this.recalculateScale(),{width:this.boundingRect.width,height:this.boundingRect.height}}setBoundingBoxXY(t){this.boundingRect.x=t.x,this.boundingRect.y=t.y}getDrawableElementsForLeftAxis(){const t=[];if(this.showAxisLine){const r=this.boundingRect.x+this.boundingRect.width-this.axisConfig.axisLineWidth/2;t.push({type:"path",groupTexts:["left-axis","axisl-line"],data:[{path:`M ${r},${this.boundingRect.y} L ${r},${this.boundingRect.y+this.boundingRect.height} `,strokeFill:this.axisThemeConfig.axisLineColor,strokeWidth:this.axisConfig.axisLineWidth}]})}if(this.showLabel&&t.push({type:"text",groupTexts:["left-axis","label"],data:this.getTickValues().map(r=>({text:r.toString(),x:this.boundingRect.x+this.boundingRect.width-(this.showLabel?this.axisConfig.labelPadding:0)-(this.showTick?this.axisConfig.tickLength:0)-(this.showAxisLine?this.axisConfig.axisLineWidth:0),y:this.getScaleValue(r),fill:this.axisThemeConfig.labelColor,fontSize:this.axisConfig.labelFontSize,rotation:0,verticalPos:"middle",horizontalPos:"right"}))}),this.showTick){const r=this.boundingRect.x+this.boundingRect.width-(this.showAxisLine?this.axisConfig.axisLineWidth:0);t.push({type:"path",groupTexts:["left-axis","ticks"],data:this.getTickValues().map(a=>({path:`M ${r},${this.getScaleValue(a)} L ${r-this.axisConfig.tickLength},${this.getScaleValue(a)}`,strokeFill:this.axisThemeConfig.tickColor,strokeWidth:this.axisConfig.tickWidth}))})}return this.showTitle&&t.push({type:"text",groupTexts:["left-axis","title"],data:[{text:this.title,x:this.boundingRect.x+this.axisConfig.titlePadding,y:this.boundingRect.y+this.boundingRect.height/2,fill:this.axisThemeConfig.titleColor,fontSize:this.axisConfig.titleFontSize,rotation:270,verticalPos:"top",horizontalPos:"center"}]}),t}getDrawableElementsForBottomAxis(){const t=[];if(this.showAxisLine){const r=this.boundingRect.y+this.axisConfig.axisLineWidth/2;t.push({type:"path",groupTexts:["bottom-axis","axis-line"],data:[{path:`M ${this.boundingRect.x},${r} L ${this.boundingRect.x+this.boundingRect.width},${r}`,strokeFill:this.axisThemeConfig.axisLineColor,strokeWidth:this.axisConfig.axisLineWidth}]})}if(this.showLabel&&t.push({type:"text",groupTexts:["bottom-axis","label"],data:this.getTickValues().map(r=>({text:r.toString(),x:this.getScaleValue(r),y:this.boundingRect.y+this.axisConfig.labelPadding+(this.showTick?this.axisConfig.tickLength:0)+(this.showAxisLine?this.axisConfig.axisLineWidth:0),fill:this.axisThemeConfig.labelColor,fontSize:this.axisConfig.labelFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}))}),this.showTick){const r=this.boundingRect.y+(this.showAxisLine?this.axisConfig.axisLineWidth:0);t.push({type:"path",groupTexts:["bottom-axis","ticks"],data:this.getTickValues().map(a=>({path:`M ${this.getScaleValue(a)},${r} L ${this.getScaleValue(a)},${r+this.axisConfig.tickLength}`,strokeFill:this.axisThemeConfig.tickColor,strokeWidth:this.axisConfig.tickWidth}))})}return this.showTitle&&t.push({type:"text",groupTexts:["bottom-axis","title"],data:[{text:this.title,x:this.range[0]+(this.range[1]-this.range[0])/2,y:this.boundingRect.y+this.boundingRect.height-this.axisConfig.titlePadding-this.titleTextHeight,fill:this.axisThemeConfig.titleColor,fontSize:this.axisConfig.titleFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}]}),t}getDrawableElementsForTopAxis(){const t=[];if(this.showAxisLine){const r=this.boundingRect.y+this.boundingRect.height-this.axisConfig.axisLineWidth/2;t.push({type:"path",groupTexts:["top-axis","axis-line"],data:[{path:`M ${this.boundingRect.x},${r} L ${this.boundingRect.x+this.boundingRect.width},${r}`,strokeFill:this.axisThemeConfig.axisLineColor,strokeWidth:this.axisConfig.axisLineWidth}]})}if(this.showLabel&&t.push({type:"text",groupTexts:["top-axis","label"],data:this.getTickValues().map(r=>({text:r.toString(),x:this.getScaleValue(r),y:this.boundingRect.y+(this.showTitle?this.titleTextHeight+this.axisConfig.titlePadding*2:0)+this.axisConfig.labelPadding,fill:this.axisThemeConfig.labelColor,fontSize:this.axisConfig.labelFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}))}),this.showTick){const r=this.boundingRect.y;t.push({type:"path",groupTexts:["top-axis","ticks"],data:this.getTickValues().map(a=>({path:`M ${this.getScaleValue(a)},${r+this.boundingRect.height-(this.showAxisLine?this.axisConfig.axisLineWidth:0)} L ${this.getScaleValue(a)},${r+this.boundingRect.height-this.axisConfig.tickLength-(this.showAxisLine?this.axisConfig.axisLineWidth:0)}`,strokeFill:this.axisThemeConfig.tickColor,strokeWidth:this.axisConfig.tickWidth}))})}return this.showTitle&&t.push({type:"text",groupTexts:["top-axis","title"],data:[{text:this.title,x:this.boundingRect.x+this.boundingRect.width/2,y:this.boundingRect.y+this.axisConfig.titlePadding,fill:this.axisThemeConfig.titleColor,fontSize:this.axisConfig.titleFontSize,rotation:0,verticalPos:"top",horizontalPos:"center"}]}),t}getDrawableElements(){if(this.axisPosition==="left")return this.getDrawableElementsForLeftAxis();if(this.axisPosition==="right")throw Error("Drawing of right axis is not implemented");return this.axisPosition==="bottom"?this.getDrawableElementsForBottomAxis():this.axisPosition==="top"?this.getDrawableElementsForTopAxis():[]}}class Bba extends Ltr{constructor(t,r,a,s,o){super(t,s,o,r),this.categories=a,this.scale=goe().domain(this.categories).range(this.getRange())}setRange(t){super.setRange(t)}recalculateScale(){this.scale=goe().domain(this.categories).range(this.getRange()).paddingInner(1).paddingOuter(0).align(.5),ut.trace("BandAxis axis final categories, range: ",this.categories,this.getRange())}getTickValues(){return this.categories}getScaleValue(t){return this.scale(t)||this.getRange()[0]}}class Fba extends Ltr{constructor(t,r,a,s,o){super(t,s,o,r),this.domain=a,this.scale=sT().domain(this.domain).range(this.getRange())}getTickValues(){return this.scale.ticks()}recalculateScale(){const t=[...this.domain];this.axisPosition==="left"&&t.reverse(),this.scale=sT().domain(t).range(this.getRange())}getScaleValue(t){return this.scale(t)}}function LCn(e,t,r,a){const s=new Otr(a);return Ntr(e)?new Bba(t,r,e.categories,e.title,s):new Fba(t,r,[e.min,e.max],e.title,s)}class $ba{constructor(t,r,a,s){this.textDimensionCalculator=t,this.chartConfig=r,this.chartData=a,this.chartThemeConfig=s,this.boundingRect={x:0,y:0,width:0,height:0},this.showChartTitle=!1}setBoundingBoxXY(t){this.boundingRect.x=t.x,this.boundingRect.y=t.y}calculateSpace(t){const r=this.textDimensionCalculator.getMaxDimension([this.chartData.title],this.chartConfig.titleFontSize),a=Math.max(r.width,t.width),s=r.height+2*this.chartConfig.titlePadding;return r.width<=a&&r.height<=s&&this.chartConfig.showTitle&&this.chartData.title&&(this.boundingRect.width=a,this.boundingRect.height=s,this.showChartTitle=!0),{width:this.boundingRect.width,height:this.boundingRect.height}}getDrawableElements(){const t=[];return this.showChartTitle&&t.push({groupTexts:["chart-title"],type:"text",data:[{fontSize:this.chartConfig.titleFontSize,text:this.chartData.title,verticalPos:"middle",horizontalPos:"center",x:this.boundingRect.x+this.boundingRect.width/2,y:this.boundingRect.y+this.boundingRect.height/2,fill:this.chartThemeConfig.titleColor,rotation:0}]}),t}}function Uba(e,t,r,a){const s=new Otr(a);return new $ba(s,e,t,r)}class zba{constructor(t,r,a,s,o){this.plotData=t,this.xAxis=r,this.yAxis=a,this.orientation=s,this.plotIndex=o}getDrawableElement(){const t=this.plotData.data.map(a=>[this.xAxis.getScaleValue(a[0]),this.yAxis.getScaleValue(a[1])]);let r;return this.orientation==="horizontal"?r=r_().y(a=>a[0]).x(a=>a[1])(t):r=r_().x(a=>a[0]).y(a=>a[1])(t),r?[{groupTexts:["plot",`line-plot-${this.plotIndex}`],type:"path",data:[{path:r,strokeFill:this.plotData.strokeFill,strokeWidth:this.plotData.strokeWidth}]}]:[]}}class Gba{constructor(t,r,a,s,o,u){this.barData=t,this.boundingRect=r,this.xAxis=a,this.yAxis=s,this.orientation=o,this.plotIndex=u}getDrawableElement(){const t=this.barData.data.map(o=>[this.xAxis.getScaleValue(o[0]),this.yAxis.getScaleValue(o[1])]),a=Math.min(this.xAxis.getAxisOuterPadding()*2,this.xAxis.getTickDistance())*(1-.05),s=a/2;return this.orientation==="horizontal"?[{groupTexts:["plot",`bar-plot-${this.plotIndex}`],type:"rect",data:t.map(o=>({x:this.boundingRect.x,y:o[0]-s,height:a,width:o[1]-this.boundingRect.x,fill:this.barData.fill,strokeWidth:0,strokeFill:this.barData.fill}))}]:[{groupTexts:["plot",`bar-plot-${this.plotIndex}`],type:"rect",data:t.map(o=>({x:o[0]-s,y:o[1],width:a,height:this.boundingRect.y+this.boundingRect.height-o[1],fill:this.barData.fill,strokeWidth:0,strokeFill:this.barData.fill}))}]}}class qba{constructor(t,r,a){this.chartConfig=t,this.chartData=r,this.chartThemeConfig=a,this.boundingRect={x:0,y:0,width:0,height:0}}setAxes(t,r){this.xAxis=t,this.yAxis=r}setBoundingBoxXY(t){this.boundingRect.x=t.x,this.boundingRect.y=t.y}calculateSpace(t){return this.boundingRect.width=t.width,this.boundingRect.height=t.height,{width:this.boundingRect.width,height:this.boundingRect.height}}getDrawableElements(){if(!(this.xAxis&&this.yAxis))throw Error("Axes must be passed to render Plots");const t=[];for(const[r,a]of this.chartData.plots.entries())switch(a.type){case"line":{const s=new zba(a,this.xAxis,this.yAxis,this.chartConfig.chartOrientation,r);t.push(...s.getDrawableElement())}break;case"bar":{const s=new Gba(a,this.boundingRect,this.xAxis,this.yAxis,this.chartConfig.chartOrientation,r);t.push(...s.getDrawableElement())}break}return t}}function Hba(e,t,r){return new qba(e,t,r)}class Vba{constructor(t,r,a,s){this.chartConfig=t,this.chartData=r,this.componentStore={title:Uba(t,r,a,s),plot:Hba(t,r,a),xAxis:LCn(r.xAxis,t.xAxis,{titleColor:a.xAxisTitleColor,labelColor:a.xAxisLabelColor,tickColor:a.xAxisTickColor,axisLineColor:a.xAxisLineColor},s),yAxis:LCn(r.yAxis,t.yAxis,{titleColor:a.yAxisTitleColor,labelColor:a.yAxisLabelColor,tickColor:a.yAxisTickColor,axisLineColor:a.yAxisLineColor},s)}}calculateVerticalSpace(){let t=this.chartConfig.width,r=this.chartConfig.height,a=0,s=0,o=Math.floor(t*this.chartConfig.plotReservedSpacePercent/100),u=Math.floor(r*this.chartConfig.plotReservedSpacePercent/100),h=this.componentStore.plot.calculateSpace({width:o,height:u});t-=h.width,r-=h.height,h=this.componentStore.title.calculateSpace({width:this.chartConfig.width,height:r}),s=h.height,r-=h.height,this.componentStore.xAxis.setAxisPosition("bottom"),h=this.componentStore.xAxis.calculateSpace({width:t,height:r}),r-=h.height,this.componentStore.yAxis.setAxisPosition("left"),h=this.componentStore.yAxis.calculateSpace({width:t,height:r}),a=h.width,t-=h.width,t>0&&(o+=t,t=0),r>0&&(u+=r,r=0),this.componentStore.plot.calculateSpace({width:o,height:u}),this.componentStore.plot.setBoundingBoxXY({x:a,y:s}),this.componentStore.xAxis.setRange([a,a+o]),this.componentStore.xAxis.setBoundingBoxXY({x:a,y:s+u}),this.componentStore.yAxis.setRange([s,s+u]),this.componentStore.yAxis.setBoundingBoxXY({x:0,y:s}),this.chartData.plots.some(f=>ICn(f))&&this.componentStore.xAxis.recalculateOuterPaddingToDrawBar()}calculateHorizontalSpace(){let t=this.chartConfig.width,r=this.chartConfig.height,a=0,s=0,o=0,u=Math.floor(t*this.chartConfig.plotReservedSpacePercent/100),h=Math.floor(r*this.chartConfig.plotReservedSpacePercent/100),f=this.componentStore.plot.calculateSpace({width:u,height:h});t-=f.width,r-=f.height,f=this.componentStore.title.calculateSpace({width:this.chartConfig.width,height:r}),a=f.height,r-=f.height,this.componentStore.xAxis.setAxisPosition("left"),f=this.componentStore.xAxis.calculateSpace({width:t,height:r}),t-=f.width,s=f.width,this.componentStore.yAxis.setAxisPosition("top"),f=this.componentStore.yAxis.calculateSpace({width:t,height:r}),r-=f.height,o=a+f.height,t>0&&(u+=t,t=0),r>0&&(h+=r,r=0),this.componentStore.plot.calculateSpace({width:u,height:h}),this.componentStore.plot.setBoundingBoxXY({x:s,y:o}),this.componentStore.yAxis.setRange([s,s+u]),this.componentStore.yAxis.setBoundingBoxXY({x:s,y:a}),this.componentStore.xAxis.setRange([o,o+h]),this.componentStore.xAxis.setBoundingBoxXY({x:0,y:o}),this.chartData.plots.some(p=>ICn(p))&&this.componentStore.xAxis.recalculateOuterPaddingToDrawBar()}calculateSpace(){this.chartConfig.chartOrientation==="horizontal"?this.calculateHorizontalSpace():this.calculateVerticalSpace()}getDrawableElement(){this.calculateSpace();const t=[];this.componentStore.plot.setAxes(this.componentStore.xAxis,this.componentStore.yAxis);for(const r of Object.values(this.componentStore))t.push(...r.getDrawableElements());return t}}class Yba{static build(t,r,a,s){return new Vba(t,r,a,s).getDrawableElement()}}let xle=0,Dtr,Sle=Ptr(),Tle=Mtr(),eh=Btr(),$ht=Tle.plotColorPalette.split(",").map(e=>e.trim()),E6e=!1,uyt=!1;function Mtr(){const e=mbt(),t=Lf();return Qce(e.xyChart,t.themeVariables.xyChart)}function Ptr(){const e=Lf();return Qce(fd.xyChart,e.xyChart)}function Btr(){return{yAxis:{type:"linear",title:"",min:1/0,max:-1/0},xAxis:{type:"band",title:"",categories:[]},title:"",plots:[]}}function hyt(e){const t=Lf();return J0(e.trim(),t)}function jba(e){Dtr=e}function Wba(e){e==="horizontal"?Sle.chartOrientation="horizontal":Sle.chartOrientation="vertical"}function Kba(e){eh.xAxis.title=hyt(e.text)}function Ftr(e,t){eh.xAxis={type:"linear",title:eh.xAxis.title,min:e,max:t},E6e=!0}function Xba(e){eh.xAxis={type:"band",title:eh.xAxis.title,categories:e.map(t=>hyt(t.text))},E6e=!0}function Qba(e){eh.yAxis.title=hyt(e.text)}function Zba(e,t){eh.yAxis={type:"linear",title:eh.yAxis.title,min:e,max:t},uyt=!0}function Jba(e){const t=Math.min(...e),r=Math.max(...e),a=Mse(eh.yAxis)?eh.yAxis.min:1/0,s=Mse(eh.yAxis)?eh.yAxis.max:-1/0;eh.yAxis={type:"linear",title:eh.yAxis.title,min:Math.min(a,t),max:Math.max(s,r)}}function $tr(e){let t=[];if(e.length===0)return t;if(!E6e){const r=Mse(eh.xAxis)?eh.xAxis.min:1/0,a=Mse(eh.xAxis)?eh.xAxis.max:-1/0;Ftr(Math.min(r,1),Math.max(a,e.length))}if(uyt||Jba(e),Ntr(eh.xAxis)&&(t=eh.xAxis.categories.map((r,a)=>[r,e[a]])),Mse(eh.xAxis)){const r=eh.xAxis.min,a=eh.xAxis.max,s=(a-r+1)/e.length,o=[];for(let u=r;u<=a;u+=s)o.push(`${u}`);t=o.map((u,h)=>[u,e[h]])}return t}function Utr(e){return $ht[e===0?0:e%$ht.length]}function eya(e,t){const r=$tr(t);eh.plots.push({type:"line",strokeFill:Utr(xle),strokeWidth:2,data:r}),xle++}function tya(e,t){const r=$tr(t);eh.plots.push({type:"bar",fill:Utr(xle),data:r}),xle++}function nya(){if(eh.plots.length===0)throw Error("No Plot to render, please provide a plot with some data");return eh.title=Tv(),Yba.build(Sle,eh,Tle,Dtr)}function rya(){return Tle}function iya(){return Sle}const aya=function(){Mb(),xle=0,Sle=Ptr(),eh=Btr(),Tle=Mtr(),$ht=Tle.plotColorPalette.split(",").map(e=>e.trim()),E6e=!1,uyt=!1},sya={getDrawableElem:nya,clear:aya,setAccTitle:Pb,getAccTitle:Ev,setDiagramTitle:Zw,getDiagramTitle:Tv,getAccDescription:Sv,setAccDescription:xv,setOrientation:Wba,setXAxisTitle:Kba,setXAxisRangeData:Ftr,setXAxisBand:Xba,setYAxisTitle:Qba,setYAxisRangeData:Zba,setLineData:eya,setBarData:tya,setTmpSVGG:jba,getChartThemeConfig:rya,getChartConfig:iya},oya=(e,t,r,a)=>{const s=a.db,o=s.getChartThemeConfig(),u=s.getChartConfig();function h(A){return A==="top"?"text-before-edge":"middle"}function f(A){return A==="left"?"start":A==="right"?"end":"middle"}function p(A){return`translate(${A.x}, ${A.y}) rotate(${A.rotation||0})`}ut.debug(`Rendering xychart chart +`+e);const m=Zce(t),b=m.append("g").attr("class","main"),_=b.append("rect").attr("width",u.width).attr("height",u.height).attr("class","background");Db(m,u.height,u.width,!0),m.attr("viewBox",`0 0 ${u.width} ${u.height}`),_.attr("fill",o.backgroundColor),s.setTmpSVGG(m.append("g").attr("class","mermaid-tmp-group"));const w=s.getDrawableElem(),S={};function C(A){let k=b,I="";for(const[N]of A.entries()){let L=b;N>0&&S[I]&&(L=S[I]),I+=A[N],k=S[I],k||(k=S[I]=L.append("g").attr("class",A[N]))}return k}for(const A of w){if(A.data.length===0)continue;const k=C(A.groupTexts);switch(A.type){case"rect":k.selectAll("rect").data(A.data).enter().append("rect").attr("x",I=>I.x).attr("y",I=>I.y).attr("width",I=>I.width).attr("height",I=>I.height).attr("fill",I=>I.fill).attr("stroke",I=>I.strokeFill).attr("stroke-width",I=>I.strokeWidth);break;case"text":k.selectAll("text").data(A.data).enter().append("text").attr("x",0).attr("y",0).attr("fill",I=>I.fill).attr("font-size",I=>I.fontSize).attr("dominant-baseline",I=>h(I.verticalPos)).attr("text-anchor",I=>f(I.horizontalPos)).attr("transform",I=>p(I)).text(I=>I.text);break;case"path":k.selectAll("path").data(A.data).enter().append("path").attr("d",I=>I.path).attr("fill",I=>I.fill?I.fill:"none").attr("stroke",I=>I.strokeFill).attr("stroke-width",I=>I.strokeWidth);break}}},lya={draw:oya},cya={parser:Pba,db:sya,renderer:lya},uya=Object.freeze(Object.defineProperty({__proto__:null,diagram:cya},Symbol.toStringTag,{value:"Module"}));var Uht=function(){var e=function(ce,be,ve,De){for(ve=ve||{},De=ce.length;De--;ve[ce[De]]=be);return ve},t=[1,3],r=[1,4],a=[1,5],s=[1,6],o=[5,6,8,9,11,13,31,32,33,34,35,36,44,62,63],u=[1,18],h=[2,7],f=[1,22],p=[1,23],m=[1,24],b=[1,25],_=[1,26],w=[1,27],S=[1,20],C=[1,28],A=[1,29],k=[62,63],I=[5,8,9,11,13,31,32,33,34,35,36,44,51,53,62,63],N=[1,47],L=[1,48],P=[1,49],M=[1,50],F=[1,51],U=[1,52],$=[1,53],G=[53,54],B=[1,64],Z=[1,60],z=[1,61],Y=[1,62],W=[1,63],Q=[1,65],V=[1,69],j=[1,70],ee=[1,67],te=[1,68],ne=[5,8,9,11,13,31,32,33,34,35,36,44,62,63],se={trace:function(){},yy:{},symbols_:{error:2,start:3,directive:4,NEWLINE:5,RD:6,diagram:7,EOF:8,acc_title:9,acc_title_value:10,acc_descr:11,acc_descr_value:12,acc_descr_multiline_value:13,requirementDef:14,elementDef:15,relationshipDef:16,requirementType:17,requirementName:18,STRUCT_START:19,requirementBody:20,ID:21,COLONSEP:22,id:23,TEXT:24,text:25,RISK:26,riskLevel:27,VERIFYMTHD:28,verifyType:29,STRUCT_STOP:30,REQUIREMENT:31,FUNCTIONAL_REQUIREMENT:32,INTERFACE_REQUIREMENT:33,PERFORMANCE_REQUIREMENT:34,PHYSICAL_REQUIREMENT:35,DESIGN_CONSTRAINT:36,LOW_RISK:37,MED_RISK:38,HIGH_RISK:39,VERIFY_ANALYSIS:40,VERIFY_DEMONSTRATION:41,VERIFY_INSPECTION:42,VERIFY_TEST:43,ELEMENT:44,elementName:45,elementBody:46,TYPE:47,type:48,DOCREF:49,ref:50,END_ARROW_L:51,relationship:52,LINE:53,END_ARROW_R:54,CONTAINS:55,COPIES:56,DERIVES:57,SATISFIES:58,VERIFIES:59,REFINES:60,TRACES:61,unqString:62,qString:63,$accept:0,$end:1},terminals_:{2:"error",5:"NEWLINE",6:"RD",8:"EOF",9:"acc_title",10:"acc_title_value",11:"acc_descr",12:"acc_descr_value",13:"acc_descr_multiline_value",19:"STRUCT_START",21:"ID",22:"COLONSEP",24:"TEXT",26:"RISK",28:"VERIFYMTHD",30:"STRUCT_STOP",31:"REQUIREMENT",32:"FUNCTIONAL_REQUIREMENT",33:"INTERFACE_REQUIREMENT",34:"PERFORMANCE_REQUIREMENT",35:"PHYSICAL_REQUIREMENT",36:"DESIGN_CONSTRAINT",37:"LOW_RISK",38:"MED_RISK",39:"HIGH_RISK",40:"VERIFY_ANALYSIS",41:"VERIFY_DEMONSTRATION",42:"VERIFY_INSPECTION",43:"VERIFY_TEST",44:"ELEMENT",47:"TYPE",49:"DOCREF",51:"END_ARROW_L",53:"LINE",54:"END_ARROW_R",55:"CONTAINS",56:"COPIES",57:"DERIVES",58:"SATISFIES",59:"VERIFIES",60:"REFINES",61:"TRACES",62:"unqString",63:"qString"},productions_:[0,[3,3],[3,2],[3,4],[4,2],[4,2],[4,1],[7,0],[7,2],[7,2],[7,2],[7,2],[7,2],[14,5],[20,5],[20,5],[20,5],[20,5],[20,2],[20,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[27,1],[27,1],[27,1],[29,1],[29,1],[29,1],[29,1],[15,5],[46,5],[46,5],[46,2],[46,1],[16,5],[16,5],[52,1],[52,1],[52,1],[52,1],[52,1],[52,1],[52,1],[18,1],[18,1],[23,1],[23,1],[25,1],[25,1],[45,1],[45,1],[48,1],[48,1],[50,1],[50,1]],performAction:function(be,ve,De,ye,Ee,he,we){var Ce=he.length-1;switch(Ee){case 4:this.$=he[Ce].trim(),ye.setAccTitle(this.$);break;case 5:case 6:this.$=he[Ce].trim(),ye.setAccDescription(this.$);break;case 7:this.$=[];break;case 13:ye.addRequirement(he[Ce-3],he[Ce-4]);break;case 14:ye.setNewReqId(he[Ce-2]);break;case 15:ye.setNewReqText(he[Ce-2]);break;case 16:ye.setNewReqRisk(he[Ce-2]);break;case 17:ye.setNewReqVerifyMethod(he[Ce-2]);break;case 20:this.$=ye.RequirementType.REQUIREMENT;break;case 21:this.$=ye.RequirementType.FUNCTIONAL_REQUIREMENT;break;case 22:this.$=ye.RequirementType.INTERFACE_REQUIREMENT;break;case 23:this.$=ye.RequirementType.PERFORMANCE_REQUIREMENT;break;case 24:this.$=ye.RequirementType.PHYSICAL_REQUIREMENT;break;case 25:this.$=ye.RequirementType.DESIGN_CONSTRAINT;break;case 26:this.$=ye.RiskLevel.LOW_RISK;break;case 27:this.$=ye.RiskLevel.MED_RISK;break;case 28:this.$=ye.RiskLevel.HIGH_RISK;break;case 29:this.$=ye.VerifyType.VERIFY_ANALYSIS;break;case 30:this.$=ye.VerifyType.VERIFY_DEMONSTRATION;break;case 31:this.$=ye.VerifyType.VERIFY_INSPECTION;break;case 32:this.$=ye.VerifyType.VERIFY_TEST;break;case 33:ye.addElement(he[Ce-3]);break;case 34:ye.setNewElementType(he[Ce-2]);break;case 35:ye.setNewElementDocRef(he[Ce-2]);break;case 38:ye.addRelationship(he[Ce-2],he[Ce],he[Ce-4]);break;case 39:ye.addRelationship(he[Ce-2],he[Ce-4],he[Ce]);break;case 40:this.$=ye.Relationships.CONTAINS;break;case 41:this.$=ye.Relationships.COPIES;break;case 42:this.$=ye.Relationships.DERIVES;break;case 43:this.$=ye.Relationships.SATISFIES;break;case 44:this.$=ye.Relationships.VERIFIES;break;case 45:this.$=ye.Relationships.REFINES;break;case 46:this.$=ye.Relationships.TRACES;break}},table:[{3:1,4:2,6:t,9:r,11:a,13:s},{1:[3]},{3:8,4:2,5:[1,7],6:t,9:r,11:a,13:s},{5:[1,9]},{10:[1,10]},{12:[1,11]},e(o,[2,6]),{3:12,4:2,6:t,9:r,11:a,13:s},{1:[2,2]},{4:17,5:u,7:13,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:19,23:21,31:f,32:p,33:m,34:b,35:_,36:w,44:S,62:C,63:A},e(o,[2,4]),e(o,[2,5]),{1:[2,1]},{8:[1,30]},{4:17,5:u,7:31,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:19,23:21,31:f,32:p,33:m,34:b,35:_,36:w,44:S,62:C,63:A},{4:17,5:u,7:32,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:19,23:21,31:f,32:p,33:m,34:b,35:_,36:w,44:S,62:C,63:A},{4:17,5:u,7:33,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:19,23:21,31:f,32:p,33:m,34:b,35:_,36:w,44:S,62:C,63:A},{4:17,5:u,7:34,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:19,23:21,31:f,32:p,33:m,34:b,35:_,36:w,44:S,62:C,63:A},{4:17,5:u,7:35,8:h,9:r,11:a,13:s,14:14,15:15,16:16,17:19,23:21,31:f,32:p,33:m,34:b,35:_,36:w,44:S,62:C,63:A},{18:36,62:[1,37],63:[1,38]},{45:39,62:[1,40],63:[1,41]},{51:[1,42],53:[1,43]},e(k,[2,20]),e(k,[2,21]),e(k,[2,22]),e(k,[2,23]),e(k,[2,24]),e(k,[2,25]),e(I,[2,49]),e(I,[2,50]),{1:[2,3]},{8:[2,8]},{8:[2,9]},{8:[2,10]},{8:[2,11]},{8:[2,12]},{19:[1,44]},{19:[2,47]},{19:[2,48]},{19:[1,45]},{19:[2,53]},{19:[2,54]},{52:46,55:N,56:L,57:P,58:M,59:F,60:U,61:$},{52:54,55:N,56:L,57:P,58:M,59:F,60:U,61:$},{5:[1,55]},{5:[1,56]},{53:[1,57]},e(G,[2,40]),e(G,[2,41]),e(G,[2,42]),e(G,[2,43]),e(G,[2,44]),e(G,[2,45]),e(G,[2,46]),{54:[1,58]},{5:B,20:59,21:Z,24:z,26:Y,28:W,30:Q},{5:V,30:j,46:66,47:ee,49:te},{23:71,62:C,63:A},{23:72,62:C,63:A},e(ne,[2,13]),{22:[1,73]},{22:[1,74]},{22:[1,75]},{22:[1,76]},{5:B,20:77,21:Z,24:z,26:Y,28:W,30:Q},e(ne,[2,19]),e(ne,[2,33]),{22:[1,78]},{22:[1,79]},{5:V,30:j,46:80,47:ee,49:te},e(ne,[2,37]),e(ne,[2,38]),e(ne,[2,39]),{23:81,62:C,63:A},{25:82,62:[1,83],63:[1,84]},{27:85,37:[1,86],38:[1,87],39:[1,88]},{29:89,40:[1,90],41:[1,91],42:[1,92],43:[1,93]},e(ne,[2,18]),{48:94,62:[1,95],63:[1,96]},{50:97,62:[1,98],63:[1,99]},e(ne,[2,36]),{5:[1,100]},{5:[1,101]},{5:[2,51]},{5:[2,52]},{5:[1,102]},{5:[2,26]},{5:[2,27]},{5:[2,28]},{5:[1,103]},{5:[2,29]},{5:[2,30]},{5:[2,31]},{5:[2,32]},{5:[1,104]},{5:[2,55]},{5:[2,56]},{5:[1,105]},{5:[2,57]},{5:[2,58]},{5:B,20:106,21:Z,24:z,26:Y,28:W,30:Q},{5:B,20:107,21:Z,24:z,26:Y,28:W,30:Q},{5:B,20:108,21:Z,24:z,26:Y,28:W,30:Q},{5:B,20:109,21:Z,24:z,26:Y,28:W,30:Q},{5:V,30:j,46:110,47:ee,49:te},{5:V,30:j,46:111,47:ee,49:te},e(ne,[2,14]),e(ne,[2,15]),e(ne,[2,16]),e(ne,[2,17]),e(ne,[2,34]),e(ne,[2,35])],defaultActions:{8:[2,2],12:[2,1],30:[2,3],31:[2,8],32:[2,9],33:[2,10],34:[2,11],35:[2,12],37:[2,47],38:[2,48],40:[2,53],41:[2,54],83:[2,51],84:[2,52],86:[2,26],87:[2,27],88:[2,28],90:[2,29],91:[2,30],92:[2,31],93:[2,32],95:[2,55],96:[2,56],98:[2,57],99:[2,58]},parseError:function(be,ve){if(ve.recoverable)this.trace(be);else{var De=new Error(be);throw De.hash=ve,De}},parse:function(be){var ve=this,De=[0],ye=[],Ee=[null],he=[],we=this.table,Ce="",Ie=0,Le=0,Fe=2,Ve=1,Oe=he.slice.call(arguments,1),Dt=Object.create(this.lexer),ot={yy:{}};for(var sn in this.yy)Object.prototype.hasOwnProperty.call(this.yy,sn)&&(ot.yy[sn]=this.yy[sn]);Dt.setInput(be,ot.yy),ot.yy.lexer=Dt,ot.yy.parser=this,typeof Dt.yylloc>"u"&&(Dt.yylloc={});var Kt=Dt.yylloc;he.push(Kt);var Ft=Dt.options&&Dt.options.ranges;typeof ot.yy.parseError=="function"?this.parseError=ot.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Je(){var Ke;return Ke=ye.pop()||Dt.lex()||Ve,typeof Ke!="number"&&(Ke instanceof Array&&(ye=Ke,Ke=ye.pop()),Ke=ve.symbols_[Ke]||Ke),Ke}for(var ht,et,qe,He,Ge={},Ye,Ae,Xe,fe;;){if(et=De[De.length-1],this.defaultActions[et]?qe=this.defaultActions[et]:((ht===null||typeof ht>"u")&&(ht=Je()),qe=we[et]&&we[et][ht]),typeof qe>"u"||!qe.length||!qe[0]){var Qe="";fe=[];for(Ye in we[et])this.terminals_[Ye]&&Ye>Fe&&fe.push("'"+this.terminals_[Ye]+"'");Dt.showPosition?Qe="Parse error on line "+(Ie+1)+`: +`+Dt.showPosition()+` +Expecting `+fe.join(", ")+", got '"+(this.terminals_[ht]||ht)+"'":Qe="Parse error on line "+(Ie+1)+": Unexpected "+(ht==Ve?"end of input":"'"+(this.terminals_[ht]||ht)+"'"),this.parseError(Qe,{text:Dt.match,token:this.terminals_[ht]||ht,line:Dt.yylineno,loc:Kt,expected:fe})}if(qe[0]instanceof Array&&qe.length>1)throw new Error("Parse Error: multiple actions possible at state: "+et+", token: "+ht);switch(qe[0]){case 1:De.push(ht),Ee.push(Dt.yytext),he.push(Dt.yylloc),De.push(qe[1]),ht=null,Le=Dt.yyleng,Ce=Dt.yytext,Ie=Dt.yylineno,Kt=Dt.yylloc;break;case 2:if(Ae=this.productions_[qe[1]][1],Ge.$=Ee[Ee.length-Ae],Ge._$={first_line:he[he.length-(Ae||1)].first_line,last_line:he[he.length-1].last_line,first_column:he[he.length-(Ae||1)].first_column,last_column:he[he.length-1].last_column},Ft&&(Ge._$.range=[he[he.length-(Ae||1)].range[0],he[he.length-1].range[1]]),He=this.performAction.apply(Ge,[Ce,Le,Ie,ot.yy,qe[1],Ee,he].concat(Oe)),typeof He<"u")return He;Ae&&(De=De.slice(0,-1*Ae*2),Ee=Ee.slice(0,-1*Ae),he=he.slice(0,-1*Ae)),De.push(this.productions_[qe[1]][0]),Ee.push(Ge.$),he.push(Ge._$),Xe=we[De[De.length-2]][De[De.length-1]],De.push(Xe);break;case 3:return!0}}return!0}},ie=function(){var ce={EOF:1,parseError:function(ve,De){if(this.yy.parser)this.yy.parser.parseError(ve,De);else throw new Error(ve)},setInput:function(be,ve){return this.yy=ve||this.yy||{},this._input=be,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var be=this._input[0];this.yytext+=be,this.yyleng++,this.offset++,this.match+=be,this.matched+=be;var ve=be.match(/(?:\r\n?|\n).*/g);return ve?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),be},unput:function(be){var ve=be.length,De=be.split(/(?:\r\n?|\n)/g);this._input=be+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-ve),this.offset-=ve;var ye=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),De.length-1&&(this.yylineno-=De.length-1);var Ee=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:De?(De.length===ye.length?this.yylloc.first_column:0)+ye[ye.length-De.length].length-De[0].length:this.yylloc.first_column-ve},this.options.ranges&&(this.yylloc.range=[Ee[0],Ee[0]+this.yyleng-ve]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(be){this.unput(this.match.slice(be))},pastInput:function(){var be=this.matched.substr(0,this.matched.length-this.match.length);return(be.length>20?"...":"")+be.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var be=this.match;return be.length<20&&(be+=this._input.substr(0,20-be.length)),(be.substr(0,20)+(be.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var be=this.pastInput(),ve=new Array(be.length+1).join("-");return be+this.upcomingInput()+` +`+ve+"^"},test_match:function(be,ve){var De,ye,Ee;if(this.options.backtrack_lexer&&(Ee={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Ee.yylloc.range=this.yylloc.range.slice(0))),ye=be[0].match(/(?:\r\n?|\n).*/g),ye&&(this.yylineno+=ye.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:ye?ye[ye.length-1].length-ye[ye.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+be[0].length},this.yytext+=be[0],this.match+=be[0],this.matches=be,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(be[0].length),this.matched+=be[0],De=this.performAction.call(this,this.yy,this,ve,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),De)return De;if(this._backtrack){for(var he in Ee)this[he]=Ee[he];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var be,ve,De,ye;this._more||(this.yytext="",this.match="");for(var Ee=this._currentRules(),he=0;heve[0].length)){if(ve=De,ye=he,this.options.backtrack_lexer){if(be=this.test_match(De,Ee[he]),be!==!1)return be;if(this._backtrack){ve=!1;continue}else return!1}else if(!this.options.flex)break}return ve?(be=this.test_match(ve,Ee[ye]),be!==!1?be:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var ve=this.next();return ve||this.lex()},begin:function(ve){this.conditionStack.push(ve)},popState:function(){var ve=this.conditionStack.length-1;return ve>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(ve){return ve=this.conditionStack.length-1-Math.abs(ve||0),ve>=0?this.conditionStack[ve]:"INITIAL"},pushState:function(ve){this.begin(ve)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(ve,De,ye,Ee){switch(ye){case 0:return"title";case 1:return this.begin("acc_title"),9;case 2:return this.popState(),"acc_title_value";case 3:return this.begin("acc_descr"),11;case 4:return this.popState(),"acc_descr_value";case 5:this.begin("acc_descr_multiline");break;case 6:this.popState();break;case 7:return"acc_descr_multiline_value";case 8:return 5;case 9:break;case 10:break;case 11:break;case 12:return 8;case 13:return 6;case 14:return 19;case 15:return 30;case 16:return 22;case 17:return 21;case 18:return 24;case 19:return 26;case 20:return 28;case 21:return 31;case 22:return 32;case 23:return 33;case 24:return 34;case 25:return 35;case 26:return 36;case 27:return 37;case 28:return 38;case 29:return 39;case 30:return 40;case 31:return 41;case 32:return 42;case 33:return 43;case 34:return 44;case 35:return 55;case 36:return 56;case 37:return 57;case 38:return 58;case 39:return 59;case 40:return 60;case 41:return 61;case 42:return 47;case 43:return 49;case 44:return 51;case 45:return 54;case 46:return 53;case 47:this.begin("string");break;case 48:this.popState();break;case 49:return"qString";case 50:return De.yytext=De.yytext.trim(),62}},rules:[/^(?:title\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:(\r?\n)+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:$)/i,/^(?:requirementDiagram\b)/i,/^(?:\{)/i,/^(?:\})/i,/^(?::)/i,/^(?:id\b)/i,/^(?:text\b)/i,/^(?:risk\b)/i,/^(?:verifyMethod\b)/i,/^(?:requirement\b)/i,/^(?:functionalRequirement\b)/i,/^(?:interfaceRequirement\b)/i,/^(?:performanceRequirement\b)/i,/^(?:physicalRequirement\b)/i,/^(?:designConstraint\b)/i,/^(?:low\b)/i,/^(?:medium\b)/i,/^(?:high\b)/i,/^(?:analysis\b)/i,/^(?:demonstration\b)/i,/^(?:inspection\b)/i,/^(?:test\b)/i,/^(?:element\b)/i,/^(?:contains\b)/i,/^(?:copies\b)/i,/^(?:derives\b)/i,/^(?:satisfies\b)/i,/^(?:verifies\b)/i,/^(?:refines\b)/i,/^(?:traces\b)/i,/^(?:type\b)/i,/^(?:docref\b)/i,/^(?:<-)/i,/^(?:->)/i,/^(?:-)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[\w][^\r\n\{\<\>\-\=]*)/i],conditions:{acc_descr_multiline:{rules:[6,7],inclusive:!1},acc_descr:{rules:[4],inclusive:!1},acc_title:{rules:[2],inclusive:!1},unqString:{rules:[],inclusive:!1},token:{rules:[],inclusive:!1},string:{rules:[48,49],inclusive:!1},INITIAL:{rules:[0,1,3,5,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,50],inclusive:!0}}};return ce}();se.lexer=ie;function ge(){this.yy={}}return ge.prototype=se,se.Parser=ge,new ge}();Uht.parser=Uht;const hya=Uht;let dyt=[],H2={},Pse={},BO={},Bse={};const dya={REQUIREMENT:"Requirement",FUNCTIONAL_REQUIREMENT:"Functional Requirement",INTERFACE_REQUIREMENT:"Interface Requirement",PERFORMANCE_REQUIREMENT:"Performance Requirement",PHYSICAL_REQUIREMENT:"Physical Requirement",DESIGN_CONSTRAINT:"Design Constraint"},fya={LOW_RISK:"Low",MED_RISK:"Medium",HIGH_RISK:"High"},pya={VERIFY_ANALYSIS:"Analysis",VERIFY_DEMONSTRATION:"Demonstration",VERIFY_INSPECTION:"Inspection",VERIFY_TEST:"Test"},gya={CONTAINS:"contains",COPIES:"copies",DERIVES:"derives",SATISFIES:"satisfies",VERIFIES:"verifies",REFINES:"refines",TRACES:"traces"},mya=(e,t)=>(Pse[e]===void 0&&(Pse[e]={name:e,type:t,id:H2.id,text:H2.text,risk:H2.risk,verifyMethod:H2.verifyMethod}),H2={},Pse[e]),bya=()=>Pse,yya=e=>{H2!==void 0&&(H2.id=e)},vya=e=>{H2!==void 0&&(H2.text=e)},_ya=e=>{H2!==void 0&&(H2.risk=e)},wya=e=>{H2!==void 0&&(H2.verifyMethod=e)},Eya=e=>(Bse[e]===void 0&&(Bse[e]={name:e,type:BO.type,docRef:BO.docRef},ut.info("Added new requirement: ",e)),BO={},Bse[e]),xya=()=>Bse,Sya=e=>{BO!==void 0&&(BO.type=e)},Tya=e=>{BO!==void 0&&(BO.docRef=e)},Cya=(e,t,r)=>{dyt.push({type:e,src:t,dst:r})},Aya=()=>dyt,kya=()=>{dyt=[],H2={},Pse={},BO={},Bse={},Mb()},Rya={RequirementType:dya,RiskLevel:fya,VerifyType:pya,Relationships:gya,getConfig:()=>Qt().req,addRequirement:mya,getRequirements:bya,setNewReqId:yya,setNewReqText:vya,setNewReqRisk:_ya,setNewReqVerifyMethod:wya,setAccTitle:Pb,getAccTitle:Ev,setAccDescription:xv,getAccDescription:Sv,addElement:Eya,getElements:xya,setNewElementType:Sya,setNewElementDocRef:Tya,addRelationship:Cya,getRelationships:Aya,clear:kya},Iya=e=>` + + marker { + fill: ${e.relationColor}; + stroke: ${e.relationColor}; + } + + marker.cross { + stroke: ${e.lineColor}; + } + + svg { + font-family: ${e.fontFamily}; + font-size: ${e.fontSize}; + } + + .reqBox { + fill: ${e.requirementBackground}; + fill-opacity: 1.0; + stroke: ${e.requirementBorderColor}; + stroke-width: ${e.requirementBorderSize}; + } + + .reqTitle, .reqLabel{ + fill: ${e.requirementTextColor}; + } + .reqLabelBox { + fill: ${e.relationLabelBackground}; + fill-opacity: 1.0; + } + + .req-title-line { + stroke: ${e.requirementBorderColor}; + stroke-width: ${e.requirementBorderSize}; + } + .relationshipLine { + stroke: ${e.relationColor}; + stroke-width: 1; + } + .relationshipLabel { + fill: ${e.relationLabelColor}; + } + +`,Nya=Iya,zht={CONTAINS:"contains",ARROW:"arrow"},Oya=(e,t)=>{let r=e.append("defs").append("marker").attr("id",zht.CONTAINS+"_line_ending").attr("refX",0).attr("refY",t.line_height/2).attr("markerWidth",t.line_height).attr("markerHeight",t.line_height).attr("orient","auto").append("g");r.append("circle").attr("cx",t.line_height/2).attr("cy",t.line_height/2).attr("r",t.line_height/2).attr("fill","none"),r.append("line").attr("x1",0).attr("x2",t.line_height).attr("y1",t.line_height/2).attr("y2",t.line_height/2).attr("stroke-width",1),r.append("line").attr("y1",0).attr("y2",t.line_height).attr("x1",t.line_height/2).attr("x2",t.line_height/2).attr("stroke-width",1),e.append("defs").append("marker").attr("id",zht.ARROW+"_line_ending").attr("refX",t.line_height).attr("refY",.5*t.line_height).attr("markerWidth",t.line_height).attr("markerHeight",t.line_height).attr("orient","auto").append("path").attr("d",`M0,0 + L${t.line_height},${t.line_height/2} + M${t.line_height},${t.line_height/2} + L0,${t.line_height}`).attr("stroke-width",1)},ztr={ReqMarkers:zht,insertLineEndings:Oya};let o0={},DCn=0;const Gtr=(e,t)=>e.insert("rect","#"+t).attr("class","req reqBox").attr("x",0).attr("y",0).attr("width",o0.rect_min_width+"px").attr("height",o0.rect_min_height+"px"),qtr=(e,t,r)=>{let a=o0.rect_min_width/2,s=e.append("text").attr("class","req reqLabel reqTitle").attr("id",t).attr("x",a).attr("y",o0.rect_padding).attr("dominant-baseline","hanging"),o=0;r.forEach(p=>{o==0?s.append("tspan").attr("text-anchor","middle").attr("x",o0.rect_min_width/2).attr("dy",0).text(p):s.append("tspan").attr("text-anchor","middle").attr("x",o0.rect_min_width/2).attr("dy",o0.line_height*.75).text(p),o++});let u=1.5*o0.rect_padding,h=o*o0.line_height*.75,f=u+h;return e.append("line").attr("class","req-title-line").attr("x1","0").attr("x2",o0.rect_min_width).attr("y1",f).attr("y2",f),{titleNode:s,y:f}},Htr=(e,t,r,a)=>{let s=e.append("text").attr("class","req reqLabel").attr("id",t).attr("x",o0.rect_padding).attr("y",a).attr("dominant-baseline","hanging"),o=0;const u=30;let h=[];return r.forEach(f=>{let p=f.length;for(;p>u&&o<3;){let m=f.substring(0,u);f=f.substring(u,f.length),p=f.length,h[h.length]=m,o++}if(o==3){let m=h[h.length-1];h[h.length-1]=m.substring(0,m.length-4)+"..."}else h[h.length]=f;o=0}),h.forEach(f=>{s.append("tspan").attr("x",o0.rect_padding).attr("dy",o0.line_height).text(f)}),s},Lya=(e,t,r,a)=>{const s=t.node().getTotalLength(),o=t.node().getPointAtLength(s*.5),u="rel"+DCn;DCn++;const f=e.append("text").attr("class","req relationshipLabel").attr("id",u).attr("x",o.x).attr("y",o.y).attr("text-anchor","middle").attr("dominant-baseline","middle").text(a).node().getBBox();e.insert("rect","#"+u).attr("class","req reqLabelBox").attr("x",o.x-f.width/2).attr("y",o.y-f.height/2).attr("width",f.width).attr("height",f.height).attr("fill","white").attr("fill-opacity","85%")},Dya=function(e,t,r,a,s){const o=r.edge(uW(t.src),uW(t.dst)),u=r_().x(function(f){return f.x}).y(function(f){return f.y}),h=e.insert("path","#"+a).attr("class","er relationshipLine").attr("d",u(o.points)).attr("fill","none");t.type==s.db.Relationships.CONTAINS?h.attr("marker-start","url("+mi.getUrl(o0.arrowMarkerAbsolute)+"#"+t.type+"_line_ending)"):(h.attr("stroke-dasharray","10,7"),h.attr("marker-end","url("+mi.getUrl(o0.arrowMarkerAbsolute)+"#"+ztr.ReqMarkers.ARROW+"_line_ending)")),Lya(e,h,o0,`<<${t.type}>>`)},Mya=(e,t,r)=>{Object.keys(e).forEach(a=>{let s=e[a];a=uW(a),ut.info("Added new requirement: ",a);const o=r.append("g").attr("id",a),u="req-"+a,h=Gtr(o,u);let f=qtr(o,a+"_title",[`<<${s.type}>>`,`${s.name}`]);Htr(o,a+"_body",[`Id: ${s.id}`,`Text: ${s.text}`,`Risk: ${s.risk}`,`Verification: ${s.verifyMethod}`],f.y);const p=h.node().getBBox();t.setNode(a,{width:p.width,height:p.height,shape:"rect",id:a})})},Pya=(e,t,r)=>{Object.keys(e).forEach(a=>{let s=e[a];const o=uW(a),u=r.append("g").attr("id",o),h="element-"+o,f=Gtr(u,h);let p=qtr(u,h+"_title",["<>",`${a}`]);Htr(u,h+"_body",[`Type: ${s.type||"Not Specified"}`,`Doc Ref: ${s.docRef||"None"}`],p.y);const m=f.node().getBBox();t.setNode(o,{width:m.width,height:m.height,shape:"rect",id:o})})},Bya=(e,t)=>(e.forEach(function(r){let a=uW(r.src),s=uW(r.dst);t.setEdge(a,s,{relationship:r})}),e),Fya=function(e,t){t.nodes().forEach(function(r){r!==void 0&&t.node(r)!==void 0&&(e.select("#"+r),e.select("#"+r).attr("transform","translate("+(t.node(r).x-t.node(r).width/2)+","+(t.node(r).y-t.node(r).height/2)+" )"))})},uW=e=>e.replace(/\s/g,"").replace(/\./g,"_"),$ya=(e,t,r,a)=>{o0=Qt().requirement;const s=o0.securityLevel;let o;s==="sandbox"&&(o=gn("#i"+t));const h=gn(s==="sandbox"?o.nodes()[0].contentDocument.body:"body").select(`[id='${t}']`);ztr.insertLineEndings(h,o0);const f=new F1({multigraph:!1,compound:!1,directed:!0}).setGraph({rankdir:o0.layoutDirection,marginx:20,marginy:20,nodesep:100,edgesep:100,ranksep:100}).setDefaultEdgeLabel(function(){return{}});let p=a.db.getRequirements(),m=a.db.getElements(),b=a.db.getRelationships();Mya(p,f,h),Pya(m,f,h),Bya(b,f),oK(f),Fya(h,f),b.forEach(function(A){Dya(h,A,f,t,a)});const _=o0.rect_padding,w=h.node().getBBox(),S=w.width+_*2,C=w.height+_*2;Db(h,C,S,o0.useMaxWidth),h.attr("viewBox",`${w.x-_} ${w.y-_} ${S} ${C}`)},Uya={draw:$ya},zya={parser:hya,db:Rya,renderer:Uya,styles:Nya},Gya=Object.freeze(Object.defineProperty({__proto__:null,diagram:zya},Symbol.toStringTag,{value:"Module"}));var Ght=function(){var e=function(ye,Ee,he,we){for(he=he||{},we=ye.length;we--;he[ye[we]]=Ee);return he},t=[1,2],r=[1,3],a=[1,4],s=[2,4],o=[1,9],u=[1,11],h=[1,13],f=[1,14],p=[1,16],m=[1,17],b=[1,18],_=[1,24],w=[1,25],S=[1,26],C=[1,27],A=[1,28],k=[1,29],I=[1,30],N=[1,31],L=[1,32],P=[1,33],M=[1,34],F=[1,35],U=[1,36],$=[1,37],G=[1,38],B=[1,39],Z=[1,41],z=[1,42],Y=[1,43],W=[1,44],Q=[1,45],V=[1,46],j=[1,4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,47,48,49,50,52,53,54,59,60,61,62,70],ee=[4,5,16,50,52,53],te=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,50,52,53,54,59,60,61,62,70],ne=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,49,50,52,53,54,59,60,61,62,70],se=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,48,50,52,53,54,59,60,61,62,70],ie=[4,5,13,14,16,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,47,50,52,53,54,59,60,61,62,70],ge=[68,69,70],ce=[1,120],be={trace:function(){},yy:{},symbols_:{error:2,start:3,SPACE:4,NEWLINE:5,SD:6,document:7,line:8,statement:9,box_section:10,box_line:11,participant_statement:12,create:13,box:14,restOfLine:15,end:16,signal:17,autonumber:18,NUM:19,off:20,activate:21,actor:22,deactivate:23,note_statement:24,links_statement:25,link_statement:26,properties_statement:27,details_statement:28,title:29,legacy_title:30,acc_title:31,acc_title_value:32,acc_descr:33,acc_descr_value:34,acc_descr_multiline_value:35,loop:36,rect:37,opt:38,alt:39,else_sections:40,par:41,par_sections:42,par_over:43,critical:44,option_sections:45,break:46,option:47,and:48,else:49,participant:50,AS:51,participant_actor:52,destroy:53,note:54,placement:55,text2:56,over:57,actor_pair:58,links:59,link:60,properties:61,details:62,spaceList:63,",":64,left_of:65,right_of:66,signaltype:67,"+":68,"-":69,ACTOR:70,SOLID_OPEN_ARROW:71,DOTTED_OPEN_ARROW:72,SOLID_ARROW:73,DOTTED_ARROW:74,SOLID_CROSS:75,DOTTED_CROSS:76,SOLID_POINT:77,DOTTED_POINT:78,TXT:79,$accept:0,$end:1},terminals_:{2:"error",4:"SPACE",5:"NEWLINE",6:"SD",13:"create",14:"box",15:"restOfLine",16:"end",18:"autonumber",19:"NUM",20:"off",21:"activate",23:"deactivate",29:"title",30:"legacy_title",31:"acc_title",32:"acc_title_value",33:"acc_descr",34:"acc_descr_value",35:"acc_descr_multiline_value",36:"loop",37:"rect",38:"opt",39:"alt",41:"par",43:"par_over",44:"critical",46:"break",47:"option",48:"and",49:"else",50:"participant",51:"AS",52:"participant_actor",53:"destroy",54:"note",57:"over",59:"links",60:"link",61:"properties",62:"details",64:",",65:"left_of",66:"right_of",68:"+",69:"-",70:"ACTOR",71:"SOLID_OPEN_ARROW",72:"DOTTED_OPEN_ARROW",73:"SOLID_ARROW",74:"DOTTED_ARROW",75:"SOLID_CROSS",76:"DOTTED_CROSS",77:"SOLID_POINT",78:"DOTTED_POINT",79:"TXT"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[8,1],[8,1],[10,0],[10,2],[11,2],[11,1],[11,1],[9,1],[9,2],[9,4],[9,2],[9,4],[9,3],[9,3],[9,2],[9,3],[9,3],[9,2],[9,2],[9,2],[9,2],[9,2],[9,1],[9,1],[9,2],[9,2],[9,1],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[9,4],[45,1],[45,4],[42,1],[42,4],[40,1],[40,4],[12,5],[12,3],[12,5],[12,3],[12,3],[24,4],[24,4],[25,3],[26,3],[27,3],[28,3],[63,2],[63,1],[58,3],[58,1],[55,1],[55,1],[17,5],[17,5],[17,4],[22,1],[67,1],[67,1],[67,1],[67,1],[67,1],[67,1],[67,1],[67,1],[56,1]],performAction:function(Ee,he,we,Ce,Ie,Le,Fe){var Ve=Le.length-1;switch(Ie){case 3:return Ce.apply(Le[Ve]),Le[Ve];case 4:case 9:this.$=[];break;case 5:case 10:Le[Ve-1].push(Le[Ve]),this.$=Le[Ve-1];break;case 6:case 7:case 11:case 12:this.$=Le[Ve];break;case 8:case 13:this.$=[];break;case 15:Le[Ve].type="createParticipant",this.$=Le[Ve];break;case 16:Le[Ve-1].unshift({type:"boxStart",boxData:Ce.parseBoxData(Le[Ve-2])}),Le[Ve-1].push({type:"boxEnd",boxText:Le[Ve-2]}),this.$=Le[Ve-1];break;case 18:this.$={type:"sequenceIndex",sequenceIndex:Number(Le[Ve-2]),sequenceIndexStep:Number(Le[Ve-1]),sequenceVisible:!0,signalType:Ce.LINETYPE.AUTONUMBER};break;case 19:this.$={type:"sequenceIndex",sequenceIndex:Number(Le[Ve-1]),sequenceIndexStep:1,sequenceVisible:!0,signalType:Ce.LINETYPE.AUTONUMBER};break;case 20:this.$={type:"sequenceIndex",sequenceVisible:!1,signalType:Ce.LINETYPE.AUTONUMBER};break;case 21:this.$={type:"sequenceIndex",sequenceVisible:!0,signalType:Ce.LINETYPE.AUTONUMBER};break;case 22:this.$={type:"activeStart",signalType:Ce.LINETYPE.ACTIVE_START,actor:Le[Ve-1]};break;case 23:this.$={type:"activeEnd",signalType:Ce.LINETYPE.ACTIVE_END,actor:Le[Ve-1]};break;case 29:Ce.setDiagramTitle(Le[Ve].substring(6)),this.$=Le[Ve].substring(6);break;case 30:Ce.setDiagramTitle(Le[Ve].substring(7)),this.$=Le[Ve].substring(7);break;case 31:this.$=Le[Ve].trim(),Ce.setAccTitle(this.$);break;case 32:case 33:this.$=Le[Ve].trim(),Ce.setAccDescription(this.$);break;case 34:Le[Ve-1].unshift({type:"loopStart",loopText:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.LOOP_START}),Le[Ve-1].push({type:"loopEnd",loopText:Le[Ve-2],signalType:Ce.LINETYPE.LOOP_END}),this.$=Le[Ve-1];break;case 35:Le[Ve-1].unshift({type:"rectStart",color:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.RECT_START}),Le[Ve-1].push({type:"rectEnd",color:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.RECT_END}),this.$=Le[Ve-1];break;case 36:Le[Ve-1].unshift({type:"optStart",optText:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.OPT_START}),Le[Ve-1].push({type:"optEnd",optText:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.OPT_END}),this.$=Le[Ve-1];break;case 37:Le[Ve-1].unshift({type:"altStart",altText:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.ALT_START}),Le[Ve-1].push({type:"altEnd",signalType:Ce.LINETYPE.ALT_END}),this.$=Le[Ve-1];break;case 38:Le[Ve-1].unshift({type:"parStart",parText:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.PAR_START}),Le[Ve-1].push({type:"parEnd",signalType:Ce.LINETYPE.PAR_END}),this.$=Le[Ve-1];break;case 39:Le[Ve-1].unshift({type:"parStart",parText:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.PAR_OVER_START}),Le[Ve-1].push({type:"parEnd",signalType:Ce.LINETYPE.PAR_END}),this.$=Le[Ve-1];break;case 40:Le[Ve-1].unshift({type:"criticalStart",criticalText:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.CRITICAL_START}),Le[Ve-1].push({type:"criticalEnd",signalType:Ce.LINETYPE.CRITICAL_END}),this.$=Le[Ve-1];break;case 41:Le[Ve-1].unshift({type:"breakStart",breakText:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.BREAK_START}),Le[Ve-1].push({type:"breakEnd",optText:Ce.parseMessage(Le[Ve-2]),signalType:Ce.LINETYPE.BREAK_END}),this.$=Le[Ve-1];break;case 43:this.$=Le[Ve-3].concat([{type:"option",optionText:Ce.parseMessage(Le[Ve-1]),signalType:Ce.LINETYPE.CRITICAL_OPTION},Le[Ve]]);break;case 45:this.$=Le[Ve-3].concat([{type:"and",parText:Ce.parseMessage(Le[Ve-1]),signalType:Ce.LINETYPE.PAR_AND},Le[Ve]]);break;case 47:this.$=Le[Ve-3].concat([{type:"else",altText:Ce.parseMessage(Le[Ve-1]),signalType:Ce.LINETYPE.ALT_ELSE},Le[Ve]]);break;case 48:Le[Ve-3].draw="participant",Le[Ve-3].type="addParticipant",Le[Ve-3].description=Ce.parseMessage(Le[Ve-1]),this.$=Le[Ve-3];break;case 49:Le[Ve-1].draw="participant",Le[Ve-1].type="addParticipant",this.$=Le[Ve-1];break;case 50:Le[Ve-3].draw="actor",Le[Ve-3].type="addParticipant",Le[Ve-3].description=Ce.parseMessage(Le[Ve-1]),this.$=Le[Ve-3];break;case 51:Le[Ve-1].draw="actor",Le[Ve-1].type="addParticipant",this.$=Le[Ve-1];break;case 52:Le[Ve-1].type="destroyParticipant",this.$=Le[Ve-1];break;case 53:this.$=[Le[Ve-1],{type:"addNote",placement:Le[Ve-2],actor:Le[Ve-1].actor,text:Le[Ve]}];break;case 54:Le[Ve-2]=[].concat(Le[Ve-1],Le[Ve-1]).slice(0,2),Le[Ve-2][0]=Le[Ve-2][0].actor,Le[Ve-2][1]=Le[Ve-2][1].actor,this.$=[Le[Ve-1],{type:"addNote",placement:Ce.PLACEMENT.OVER,actor:Le[Ve-2].slice(0,2),text:Le[Ve]}];break;case 55:this.$=[Le[Ve-1],{type:"addLinks",actor:Le[Ve-1].actor,text:Le[Ve]}];break;case 56:this.$=[Le[Ve-1],{type:"addALink",actor:Le[Ve-1].actor,text:Le[Ve]}];break;case 57:this.$=[Le[Ve-1],{type:"addProperties",actor:Le[Ve-1].actor,text:Le[Ve]}];break;case 58:this.$=[Le[Ve-1],{type:"addDetails",actor:Le[Ve-1].actor,text:Le[Ve]}];break;case 61:this.$=[Le[Ve-2],Le[Ve]];break;case 62:this.$=Le[Ve];break;case 63:this.$=Ce.PLACEMENT.LEFTOF;break;case 64:this.$=Ce.PLACEMENT.RIGHTOF;break;case 65:this.$=[Le[Ve-4],Le[Ve-1],{type:"addMessage",from:Le[Ve-4].actor,to:Le[Ve-1].actor,signalType:Le[Ve-3],msg:Le[Ve],activate:!0},{type:"activeStart",signalType:Ce.LINETYPE.ACTIVE_START,actor:Le[Ve-1]}];break;case 66:this.$=[Le[Ve-4],Le[Ve-1],{type:"addMessage",from:Le[Ve-4].actor,to:Le[Ve-1].actor,signalType:Le[Ve-3],msg:Le[Ve]},{type:"activeEnd",signalType:Ce.LINETYPE.ACTIVE_END,actor:Le[Ve-4]}];break;case 67:this.$=[Le[Ve-3],Le[Ve-1],{type:"addMessage",from:Le[Ve-3].actor,to:Le[Ve-1].actor,signalType:Le[Ve-2],msg:Le[Ve]}];break;case 68:this.$={type:"addParticipant",actor:Le[Ve]};break;case 69:this.$=Ce.LINETYPE.SOLID_OPEN;break;case 70:this.$=Ce.LINETYPE.DOTTED_OPEN;break;case 71:this.$=Ce.LINETYPE.SOLID;break;case 72:this.$=Ce.LINETYPE.DOTTED;break;case 73:this.$=Ce.LINETYPE.SOLID_CROSS;break;case 74:this.$=Ce.LINETYPE.DOTTED_CROSS;break;case 75:this.$=Ce.LINETYPE.SOLID_POINT;break;case 76:this.$=Ce.LINETYPE.DOTTED_POINT;break;case 77:this.$=Ce.parseMessage(Le[Ve].trim().substring(1));break}},table:[{3:1,4:t,5:r,6:a},{1:[3]},{3:5,4:t,5:r,6:a},{3:6,4:t,5:r,6:a},e([1,4,5,13,14,18,21,23,29,30,31,33,35,36,37,38,39,41,43,44,46,50,52,53,54,59,60,61,62,70],s,{7:7}),{1:[2,1]},{1:[2,2]},{1:[2,3],4:o,5:u,8:8,9:10,12:12,13:h,14:f,17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,54:Z,59:z,60:Y,61:W,62:Q,70:V},e(j,[2,5]),{9:47,12:12,13:h,14:f,17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,54:Z,59:z,60:Y,61:W,62:Q,70:V},e(j,[2,7]),e(j,[2,8]),e(j,[2,14]),{12:48,50:$,52:G,53:B},{15:[1,49]},{5:[1,50]},{5:[1,53],19:[1,51],20:[1,52]},{22:54,70:V},{22:55,70:V},{5:[1,56]},{5:[1,57]},{5:[1,58]},{5:[1,59]},{5:[1,60]},e(j,[2,29]),e(j,[2,30]),{32:[1,61]},{34:[1,62]},e(j,[2,33]),{15:[1,63]},{15:[1,64]},{15:[1,65]},{15:[1,66]},{15:[1,67]},{15:[1,68]},{15:[1,69]},{15:[1,70]},{22:71,70:V},{22:72,70:V},{22:73,70:V},{67:74,71:[1,75],72:[1,76],73:[1,77],74:[1,78],75:[1,79],76:[1,80],77:[1,81],78:[1,82]},{55:83,57:[1,84],65:[1,85],66:[1,86]},{22:87,70:V},{22:88,70:V},{22:89,70:V},{22:90,70:V},e([5,51,64,71,72,73,74,75,76,77,78,79],[2,68]),e(j,[2,6]),e(j,[2,15]),e(ee,[2,9],{10:91}),e(j,[2,17]),{5:[1,93],19:[1,92]},{5:[1,94]},e(j,[2,21]),{5:[1,95]},{5:[1,96]},e(j,[2,24]),e(j,[2,25]),e(j,[2,26]),e(j,[2,27]),e(j,[2,28]),e(j,[2,31]),e(j,[2,32]),e(te,s,{7:97}),e(te,s,{7:98}),e(te,s,{7:99}),e(ne,s,{40:100,7:101}),e(se,s,{42:102,7:103}),e(se,s,{7:103,42:104}),e(ie,s,{45:105,7:106}),e(te,s,{7:107}),{5:[1,109],51:[1,108]},{5:[1,111],51:[1,110]},{5:[1,112]},{22:115,68:[1,113],69:[1,114],70:V},e(ge,[2,69]),e(ge,[2,70]),e(ge,[2,71]),e(ge,[2,72]),e(ge,[2,73]),e(ge,[2,74]),e(ge,[2,75]),e(ge,[2,76]),{22:116,70:V},{22:118,58:117,70:V},{70:[2,63]},{70:[2,64]},{56:119,79:ce},{56:121,79:ce},{56:122,79:ce},{56:123,79:ce},{4:[1,126],5:[1,128],11:125,12:127,16:[1,124],50:$,52:G,53:B},{5:[1,129]},e(j,[2,19]),e(j,[2,20]),e(j,[2,22]),e(j,[2,23]),{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[1,130],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,54:Z,59:z,60:Y,61:W,62:Q,70:V},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[1,131],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,54:Z,59:z,60:Y,61:W,62:Q,70:V},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[1,132],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,54:Z,59:z,60:Y,61:W,62:Q,70:V},{16:[1,133]},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[2,46],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,49:[1,134],50:$,52:G,53:B,54:Z,59:z,60:Y,61:W,62:Q,70:V},{16:[1,135]},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[2,44],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,48:[1,136],50:$,52:G,53:B,54:Z,59:z,60:Y,61:W,62:Q,70:V},{16:[1,137]},{16:[1,138]},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[2,42],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,47:[1,139],50:$,52:G,53:B,54:Z,59:z,60:Y,61:W,62:Q,70:V},{4:o,5:u,8:8,9:10,12:12,13:h,14:f,16:[1,140],17:15,18:p,21:m,22:40,23:b,24:19,25:20,26:21,27:22,28:23,29:_,30:w,31:S,33:C,35:A,36:k,37:I,38:N,39:L,41:P,43:M,44:F,46:U,50:$,52:G,53:B,54:Z,59:z,60:Y,61:W,62:Q,70:V},{15:[1,141]},e(j,[2,49]),{15:[1,142]},e(j,[2,51]),e(j,[2,52]),{22:143,70:V},{22:144,70:V},{56:145,79:ce},{56:146,79:ce},{56:147,79:ce},{64:[1,148],79:[2,62]},{5:[2,55]},{5:[2,77]},{5:[2,56]},{5:[2,57]},{5:[2,58]},e(j,[2,16]),e(ee,[2,10]),{12:149,50:$,52:G,53:B},e(ee,[2,12]),e(ee,[2,13]),e(j,[2,18]),e(j,[2,34]),e(j,[2,35]),e(j,[2,36]),e(j,[2,37]),{15:[1,150]},e(j,[2,38]),{15:[1,151]},e(j,[2,39]),e(j,[2,40]),{15:[1,152]},e(j,[2,41]),{5:[1,153]},{5:[1,154]},{56:155,79:ce},{56:156,79:ce},{5:[2,67]},{5:[2,53]},{5:[2,54]},{22:157,70:V},e(ee,[2,11]),e(ne,s,{7:101,40:158}),e(se,s,{7:103,42:159}),e(ie,s,{7:106,45:160}),e(j,[2,48]),e(j,[2,50]),{5:[2,65]},{5:[2,66]},{79:[2,61]},{16:[2,47]},{16:[2,45]},{16:[2,43]}],defaultActions:{5:[2,1],6:[2,2],85:[2,63],86:[2,64],119:[2,55],120:[2,77],121:[2,56],122:[2,57],123:[2,58],145:[2,67],146:[2,53],147:[2,54],155:[2,65],156:[2,66],157:[2,61],158:[2,47],159:[2,45],160:[2,43]},parseError:function(Ee,he){if(he.recoverable)this.trace(Ee);else{var we=new Error(Ee);throw we.hash=he,we}},parse:function(Ee){var he=this,we=[0],Ce=[],Ie=[null],Le=[],Fe=this.table,Ve="",Oe=0,Dt=0,ot=2,sn=1,Kt=Le.slice.call(arguments,1),Ft=Object.create(this.lexer),Je={yy:{}};for(var ht in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ht)&&(Je.yy[ht]=this.yy[ht]);Ft.setInput(Ee,Je.yy),Je.yy.lexer=Ft,Je.yy.parser=this,typeof Ft.yylloc>"u"&&(Ft.yylloc={});var et=Ft.yylloc;Le.push(et);var qe=Ft.options&&Ft.options.ranges;typeof Je.yy.parseError=="function"?this.parseError=Je.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function He(){var Ut;return Ut=Ce.pop()||Ft.lex()||sn,typeof Ut!="number"&&(Ut instanceof Array&&(Ce=Ut,Ut=Ce.pop()),Ut=he.symbols_[Ut]||Ut),Ut}for(var Ge,Ye,Ae,Xe,fe={},Qe,Ke,mt,lt;;){if(Ye=we[we.length-1],this.defaultActions[Ye]?Ae=this.defaultActions[Ye]:((Ge===null||typeof Ge>"u")&&(Ge=He()),Ae=Fe[Ye]&&Fe[Ye][Ge]),typeof Ae>"u"||!Ae.length||!Ae[0]){var $t="";lt=[];for(Qe in Fe[Ye])this.terminals_[Qe]&&Qe>ot&<.push("'"+this.terminals_[Qe]+"'");Ft.showPosition?$t="Parse error on line "+(Oe+1)+`: +`+Ft.showPosition()+` +Expecting `+lt.join(", ")+", got '"+(this.terminals_[Ge]||Ge)+"'":$t="Parse error on line "+(Oe+1)+": Unexpected "+(Ge==sn?"end of input":"'"+(this.terminals_[Ge]||Ge)+"'"),this.parseError($t,{text:Ft.match,token:this.terminals_[Ge]||Ge,line:Ft.yylineno,loc:et,expected:lt})}if(Ae[0]instanceof Array&&Ae.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Ye+", token: "+Ge);switch(Ae[0]){case 1:we.push(Ge),Ie.push(Ft.yytext),Le.push(Ft.yylloc),we.push(Ae[1]),Ge=null,Dt=Ft.yyleng,Ve=Ft.yytext,Oe=Ft.yylineno,et=Ft.yylloc;break;case 2:if(Ke=this.productions_[Ae[1]][1],fe.$=Ie[Ie.length-Ke],fe._$={first_line:Le[Le.length-(Ke||1)].first_line,last_line:Le[Le.length-1].last_line,first_column:Le[Le.length-(Ke||1)].first_column,last_column:Le[Le.length-1].last_column},qe&&(fe._$.range=[Le[Le.length-(Ke||1)].range[0],Le[Le.length-1].range[1]]),Xe=this.performAction.apply(fe,[Ve,Dt,Oe,Je.yy,Ae[1],Ie,Le].concat(Kt)),typeof Xe<"u")return Xe;Ke&&(we=we.slice(0,-1*Ke*2),Ie=Ie.slice(0,-1*Ke),Le=Le.slice(0,-1*Ke)),we.push(this.productions_[Ae[1]][0]),Ie.push(fe.$),Le.push(fe._$),mt=Fe[we[we.length-2]][we[we.length-1]],we.push(mt);break;case 3:return!0}}return!0}},ve=function(){var ye={EOF:1,parseError:function(he,we){if(this.yy.parser)this.yy.parser.parseError(he,we);else throw new Error(he)},setInput:function(Ee,he){return this.yy=he||this.yy||{},this._input=Ee,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var Ee=this._input[0];this.yytext+=Ee,this.yyleng++,this.offset++,this.match+=Ee,this.matched+=Ee;var he=Ee.match(/(?:\r\n?|\n).*/g);return he?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Ee},unput:function(Ee){var he=Ee.length,we=Ee.split(/(?:\r\n?|\n)/g);this._input=Ee+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-he),this.offset-=he;var Ce=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),we.length-1&&(this.yylineno-=we.length-1);var Ie=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:we?(we.length===Ce.length?this.yylloc.first_column:0)+Ce[Ce.length-we.length].length-we[0].length:this.yylloc.first_column-he},this.options.ranges&&(this.yylloc.range=[Ie[0],Ie[0]+this.yyleng-he]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(Ee){this.unput(this.match.slice(Ee))},pastInput:function(){var Ee=this.matched.substr(0,this.matched.length-this.match.length);return(Ee.length>20?"...":"")+Ee.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var Ee=this.match;return Ee.length<20&&(Ee+=this._input.substr(0,20-Ee.length)),(Ee.substr(0,20)+(Ee.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var Ee=this.pastInput(),he=new Array(Ee.length+1).join("-");return Ee+this.upcomingInput()+` +`+he+"^"},test_match:function(Ee,he){var we,Ce,Ie;if(this.options.backtrack_lexer&&(Ie={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(Ie.yylloc.range=this.yylloc.range.slice(0))),Ce=Ee[0].match(/(?:\r\n?|\n).*/g),Ce&&(this.yylineno+=Ce.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:Ce?Ce[Ce.length-1].length-Ce[Ce.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Ee[0].length},this.yytext+=Ee[0],this.match+=Ee[0],this.matches=Ee,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Ee[0].length),this.matched+=Ee[0],we=this.performAction.call(this,this.yy,this,he,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),we)return we;if(this._backtrack){for(var Le in Ie)this[Le]=Ie[Le];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Ee,he,we,Ce;this._more||(this.yytext="",this.match="");for(var Ie=this._currentRules(),Le=0;Lehe[0].length)){if(he=we,Ce=Le,this.options.backtrack_lexer){if(Ee=this.test_match(we,Ie[Le]),Ee!==!1)return Ee;if(this._backtrack){he=!1;continue}else return!1}else if(!this.options.flex)break}return he?(Ee=this.test_match(he,Ie[Ce]),Ee!==!1?Ee:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var he=this.next();return he||this.lex()},begin:function(he){this.conditionStack.push(he)},popState:function(){var he=this.conditionStack.length-1;return he>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(he){return he=this.conditionStack.length-1-Math.abs(he||0),he>=0?this.conditionStack[he]:"INITIAL"},pushState:function(he){this.begin(he)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(he,we,Ce,Ie){switch(Ce){case 0:return 5;case 1:break;case 2:break;case 3:break;case 4:break;case 5:break;case 6:return 19;case 7:return this.begin("LINE"),14;case 8:return this.begin("ID"),50;case 9:return this.begin("ID"),52;case 10:return 13;case 11:return this.begin("ID"),53;case 12:return we.yytext=we.yytext.trim(),this.begin("ALIAS"),70;case 13:return this.popState(),this.popState(),this.begin("LINE"),51;case 14:return this.popState(),this.popState(),5;case 15:return this.begin("LINE"),36;case 16:return this.begin("LINE"),37;case 17:return this.begin("LINE"),38;case 18:return this.begin("LINE"),39;case 19:return this.begin("LINE"),49;case 20:return this.begin("LINE"),41;case 21:return this.begin("LINE"),43;case 22:return this.begin("LINE"),48;case 23:return this.begin("LINE"),44;case 24:return this.begin("LINE"),47;case 25:return this.begin("LINE"),46;case 26:return this.popState(),15;case 27:return 16;case 28:return 65;case 29:return 66;case 30:return 59;case 31:return 60;case 32:return 61;case 33:return 62;case 34:return 57;case 35:return 54;case 36:return this.begin("ID"),21;case 37:return this.begin("ID"),23;case 38:return 29;case 39:return 30;case 40:return this.begin("acc_title"),31;case 41:return this.popState(),"acc_title_value";case 42:return this.begin("acc_descr"),33;case 43:return this.popState(),"acc_descr_value";case 44:this.begin("acc_descr_multiline");break;case 45:this.popState();break;case 46:return"acc_descr_multiline_value";case 47:return 6;case 48:return 18;case 49:return 20;case 50:return 64;case 51:return 5;case 52:return we.yytext=we.yytext.trim(),70;case 53:return 73;case 54:return 74;case 55:return 71;case 56:return 72;case 57:return 75;case 58:return 76;case 59:return 77;case 60:return 78;case 61:return 79;case 62:return 68;case 63:return 69;case 64:return 5;case 65:return"INVALID"}},rules:[/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[0-9]+(?=[ \n]+))/i,/^(?:box\b)/i,/^(?:participant\b)/i,/^(?:actor\b)/i,/^(?:create\b)/i,/^(?:destroy\b)/i,/^(?:[^\->:\n,;]+?([\-]*[^\->:\n,;]+?)*?(?=((?!\n)\s)+as(?!\n)\s|[#\n;]|$))/i,/^(?:as\b)/i,/^(?:(?:))/i,/^(?:loop\b)/i,/^(?:rect\b)/i,/^(?:opt\b)/i,/^(?:alt\b)/i,/^(?:else\b)/i,/^(?:par\b)/i,/^(?:par_over\b)/i,/^(?:and\b)/i,/^(?:critical\b)/i,/^(?:option\b)/i,/^(?:break\b)/i,/^(?:(?:[:]?(?:no)?wrap)?[^#\n;]*)/i,/^(?:end\b)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:links\b)/i,/^(?:link\b)/i,/^(?:properties\b)/i,/^(?:details\b)/i,/^(?:over\b)/i,/^(?:note\b)/i,/^(?:activate\b)/i,/^(?:deactivate\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:title:\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:sequenceDiagram\b)/i,/^(?:autonumber\b)/i,/^(?:off\b)/i,/^(?:,)/i,/^(?:;)/i,/^(?:[^\+\->:\n,;]+((?!(-x|--x|-\)|--\)))[\-]*[^\+\->:\n,;]+)*)/i,/^(?:->>)/i,/^(?:-->>)/i,/^(?:->)/i,/^(?:-->)/i,/^(?:-[x])/i,/^(?:--[x])/i,/^(?:-[\)])/i,/^(?:--[\)])/i,/^(?::(?:(?:no)?wrap)?[^#\n;]+)/i,/^(?:\+)/i,/^(?:-)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[45,46],inclusive:!1},acc_descr:{rules:[43],inclusive:!1},acc_title:{rules:[41],inclusive:!1},ID:{rules:[2,3,12],inclusive:!1},ALIAS:{rules:[2,3,13,14],inclusive:!1},LINE:{rules:[2,3,26],inclusive:!1},INITIAL:{rules:[0,1,3,4,5,6,7,8,9,10,11,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,42,44,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65],inclusive:!0}}};return ye}();be.lexer=ve;function De(){this.yy={}}return De.prototype=be,be.Parser=De,new De}();Ght.parser=Ght;const qya=Ght;class Hya{constructor(t){this.init=t,this.records=this.init()}reset(){this.records=this.init()}}const as=new Hya(()=>({prevActor:void 0,actors:{},createdActors:{},destroyedActors:{},boxes:[],messages:[],notes:[],sequenceNumbersEnabled:!1,wrapEnabled:void 0,currentBox:void 0,lastCreated:void 0,lastDestroyed:void 0})),Vya=function(e){as.records.boxes.push({name:e.text,wrap:e.wrap===void 0&&u$()||!!e.wrap,fill:e.color,actorKeys:[]}),as.records.currentBox=as.records.boxes.slice(-1)[0]},qht=function(e,t,r,a){let s=as.records.currentBox;const o=as.records.actors[e];if(o){if(as.records.currentBox&&o.box&&as.records.currentBox!==o.box)throw new Error("A same participant should only be defined in one Box: "+o.name+" can't be in '"+o.box.name+"' and in '"+as.records.currentBox.name+"' at the same time.");if(s=o.box?o.box:as.records.currentBox,o.box=s,o&&t===o.name&&r==null)return}(r==null||r.text==null)&&(r={text:t,wrap:null,type:a}),(a==null||r.text==null)&&(r={text:t,wrap:null,type:a}),as.records.actors[e]={box:s,name:t,description:r.text,wrap:r.wrap===void 0&&u$()||!!r.wrap,prevActor:as.records.prevActor,links:{},properties:{},actorCnt:null,rectData:null,type:a||"participant"},as.records.prevActor&&as.records.actors[as.records.prevActor]&&(as.records.actors[as.records.prevActor].nextActor=e),as.records.currentBox&&as.records.currentBox.actorKeys.push(e),as.records.prevActor=e},Yya=e=>{let t,r=0;for(t=0;t>-",token:"->>-",line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["'ACTIVE_PARTICIPANT'"]},u}return as.records.messages.push({from:e,to:t,message:r.text,wrap:r.wrap===void 0&&u$()||!!r.wrap,type:a,activate:s}),!0},Wya=function(){return as.records.boxes.length>0},Kya=function(){return as.records.boxes.some(e=>e.name)},Xya=function(){return as.records.messages},Qya=function(){return as.records.boxes},Zya=function(){return as.records.actors},Jya=function(){return as.records.createdActors},eva=function(){return as.records.destroyedActors},iue=function(e){return as.records.actors[e]},tva=function(){return Object.keys(as.records.actors)},nva=function(){as.records.sequenceNumbersEnabled=!0},rva=function(){as.records.sequenceNumbersEnabled=!1},iva=()=>as.records.sequenceNumbersEnabled,ava=function(e){as.records.wrapEnabled=e},u$=()=>as.records.wrapEnabled!==void 0?as.records.wrapEnabled:Qt().sequence.wrap,sva=function(){as.reset(),Mb()},ova=function(e){const t=e.trim(),r={text:t.replace(/^:?(?:no)?wrap:/,"").trim(),wrap:t.match(/^:?wrap:/)!==null?!0:t.match(/^:?nowrap:/)!==null?!1:void 0};return ut.debug("parseMessage:",r),r},lva=function(e){const t=e.match(/^((?:rgba?|hsla?)\s*\(.*\)|\w*)(.*)$/);let r=t!=null&&t[1]?t[1].trim():"transparent",a=t!=null&&t[2]?t[2].trim():void 0;if(window&&window.CSS)window.CSS.supports("color",r)||(r="transparent",a=e.trim());else{const s=new Option().style;s.color=r,s.color!==r&&(r="transparent",a=e.trim())}return{color:r,text:a!==void 0?J0(a.replace(/^:?(?:no)?wrap:/,""),Qt()):void 0,wrap:a!==void 0?a.match(/^:?wrap:/)!==null?!0:a.match(/^:?nowrap:/)!==null?!1:void 0:void 0}},Cle={SOLID:0,DOTTED:1,NOTE:2,SOLID_CROSS:3,DOTTED_CROSS:4,SOLID_OPEN:5,DOTTED_OPEN:6,LOOP_START:10,LOOP_END:11,ALT_START:12,ALT_ELSE:13,ALT_END:14,OPT_START:15,OPT_END:16,ACTIVE_START:17,ACTIVE_END:18,PAR_START:19,PAR_AND:20,PAR_END:21,RECT_START:22,RECT_END:23,SOLID_POINT:24,DOTTED_POINT:25,AUTONUMBER:26,CRITICAL_START:27,CRITICAL_OPTION:28,CRITICAL_END:29,BREAK_START:30,BREAK_END:31,PAR_OVER_START:32},cva={FILLED:0,OPEN:1},uva={LEFTOF:0,RIGHTOF:1,OVER:2},Vtr=function(e,t,r){const a={actor:e,placement:t,message:r.text,wrap:r.wrap===void 0&&u$()||!!r.wrap},s=[].concat(e,e);as.records.notes.push(a),as.records.messages.push({from:s[0],to:s[1],message:r.text,wrap:r.wrap===void 0&&u$()||!!r.wrap,type:Cle.NOTE,placement:t})},Ytr=function(e,t){const r=iue(e);try{let a=J0(t.text,Qt());a=a.replace(/&/g,"&"),a=a.replace(/=/g,"=");const s=JSON.parse(a);fyt(r,s)}catch(a){ut.error("error while parsing actor link text",a)}},hva=function(e,t){const r=iue(e);try{const u={};let h=J0(t.text,Qt());var a=h.indexOf("@");h=h.replace(/&/g,"&"),h=h.replace(/=/g,"=");var s=h.slice(0,a-1).trim(),o=h.slice(a+1).trim();u[s]=o,fyt(r,u)}catch(u){ut.error("error while parsing actor link text",u)}};function fyt(e,t){if(e.links==null)e.links=t;else for(let r in t)e.links[r]=t[r]}const jtr=function(e,t){const r=iue(e);try{let a=J0(t.text,Qt());const s=JSON.parse(a);Wtr(r,s)}catch(a){ut.error("error while parsing actor properties text",a)}};function Wtr(e,t){if(e.properties==null)e.properties=t;else for(let r in t)e.properties[r]=t[r]}function dva(){as.records.currentBox=void 0}const Ktr=function(e,t){const r=iue(e),a=document.getElementById(t.text);try{const s=a.innerHTML,o=JSON.parse(s);o.properties&&Wtr(r,o.properties),o.links&&fyt(r,o.links)}catch(s){ut.error("error while parsing actor details text",s)}},fva=function(e,t){if(e!==void 0&&e.properties!==void 0)return e.properties[t]},Xtr=function(e){if(Array.isArray(e))e.forEach(function(t){Xtr(t)});else switch(e.type){case"sequenceIndex":as.records.messages.push({from:void 0,to:void 0,message:{start:e.sequenceIndex,step:e.sequenceIndexStep,visible:e.sequenceVisible},wrap:!1,type:e.signalType});break;case"addParticipant":qht(e.actor,e.actor,e.description,e.draw);break;case"createParticipant":if(as.records.actors[e.actor])throw new Error("It is not possible to have actors with the same id, even if one is destroyed before the next is created. Use 'AS' aliases to simulate the behavior");as.records.lastCreated=e.actor,qht(e.actor,e.actor,e.description,e.draw),as.records.createdActors[e.actor]=as.records.messages.length;break;case"destroyParticipant":as.records.lastDestroyed=e.actor,as.records.destroyedActors[e.actor]=as.records.messages.length;break;case"activeStart":G0(e.actor,void 0,void 0,e.signalType);break;case"activeEnd":G0(e.actor,void 0,void 0,e.signalType);break;case"addNote":Vtr(e.actor,e.placement,e.text);break;case"addLinks":Ytr(e.actor,e.text);break;case"addALink":hva(e.actor,e.text);break;case"addProperties":jtr(e.actor,e.text);break;case"addDetails":Ktr(e.actor,e.text);break;case"addMessage":if(as.records.lastCreated){if(e.to!==as.records.lastCreated)throw new Error("The created participant "+as.records.lastCreated+" does not have an associated creating message after its declaration. Please check the sequence diagram.");as.records.lastCreated=void 0}else if(as.records.lastDestroyed){if(e.to!==as.records.lastDestroyed&&e.from!==as.records.lastDestroyed)throw new Error("The destroyed participant "+as.records.lastDestroyed+" does not have an associated destroying message after its declaration. Please check the sequence diagram.");as.records.lastDestroyed=void 0}G0(e.from,e.to,e.msg,e.signalType,e.activate);break;case"boxStart":Vya(e.boxData);break;case"boxEnd":dva();break;case"loopStart":G0(void 0,void 0,e.loopText,e.signalType);break;case"loopEnd":G0(void 0,void 0,void 0,e.signalType);break;case"rectStart":G0(void 0,void 0,e.color,e.signalType);break;case"rectEnd":G0(void 0,void 0,void 0,e.signalType);break;case"optStart":G0(void 0,void 0,e.optText,e.signalType);break;case"optEnd":G0(void 0,void 0,void 0,e.signalType);break;case"altStart":G0(void 0,void 0,e.altText,e.signalType);break;case"else":G0(void 0,void 0,e.altText,e.signalType);break;case"altEnd":G0(void 0,void 0,void 0,e.signalType);break;case"setAccTitle":Pb(e.text);break;case"parStart":G0(void 0,void 0,e.parText,e.signalType);break;case"and":G0(void 0,void 0,e.parText,e.signalType);break;case"parEnd":G0(void 0,void 0,void 0,e.signalType);break;case"criticalStart":G0(void 0,void 0,e.criticalText,e.signalType);break;case"option":G0(void 0,void 0,e.optionText,e.signalType);break;case"criticalEnd":G0(void 0,void 0,void 0,e.signalType);break;case"breakStart":G0(void 0,void 0,e.breakText,e.signalType);break;case"breakEnd":G0(void 0,void 0,void 0,e.signalType);break}},MCn={addActor:qht,addMessage:jya,addSignal:G0,addLinks:Ytr,addDetails:Ktr,addProperties:jtr,autoWrap:u$,setWrap:ava,enableSequenceNumbers:nva,disableSequenceNumbers:rva,showSequenceNumbers:iva,getMessages:Xya,getActors:Zya,getCreatedActors:Jya,getDestroyedActors:eva,getActor:iue,getActorKeys:tva,getActorProperty:fva,getAccTitle:Ev,getBoxes:Qya,getDiagramTitle:Tv,setDiagramTitle:Zw,getConfig:()=>Qt().sequence,clear:sva,parseMessage:ova,parseBoxData:lva,LINETYPE:Cle,ARROWTYPE:cva,PLACEMENT:uva,addNote:Vtr,setAccTitle:Pb,apply:Xtr,setAccDescription:xv,getAccDescription:Sv,hasAtLeastOneBox:Wya,hasAtLeastOneBoxWithTitle:Kya},pva=e=>`.actor { + stroke: ${e.actorBorder}; + fill: ${e.actorBkg}; + } + + text.actor > tspan { + fill: ${e.actorTextColor}; + stroke: none; + } + + .actor-line { + stroke: ${e.actorLineColor}; + } + + .messageLine0 { + stroke-width: 1.5; + stroke-dasharray: none; + stroke: ${e.signalColor}; + } + + .messageLine1 { + stroke-width: 1.5; + stroke-dasharray: 2, 2; + stroke: ${e.signalColor}; + } + + #arrowhead path { + fill: ${e.signalColor}; + stroke: ${e.signalColor}; + } + + .sequenceNumber { + fill: ${e.sequenceNumberColor}; + } + + #sequencenumber { + fill: ${e.signalColor}; + } + + #crosshead path { + fill: ${e.signalColor}; + stroke: ${e.signalColor}; + } + + .messageText { + fill: ${e.signalTextColor}; + stroke: none; + } + + .labelBox { + stroke: ${e.labelBoxBorderColor}; + fill: ${e.labelBoxBkgColor}; + } + + .labelText, .labelText > tspan { + fill: ${e.labelTextColor}; + stroke: none; + } + + .loopText, .loopText > tspan { + fill: ${e.loopTextColor}; + stroke: none; + } + + .loopLine { + stroke-width: 2px; + stroke-dasharray: 2, 2; + stroke: ${e.labelBoxBorderColor}; + fill: ${e.labelBoxBorderColor}; + } + + .note { + //stroke: #decc93; + stroke: ${e.noteBorderColor}; + fill: ${e.noteBkgColor}; + } + + .noteText, .noteText > tspan { + fill: ${e.noteTextColor}; + stroke: none; + } + + .activation0 { + fill: ${e.activationBkgColor}; + stroke: ${e.activationBorderColor}; + } + + .activation1 { + fill: ${e.activationBkgColor}; + stroke: ${e.activationBorderColor}; + } + + .activation2 { + fill: ${e.activationBkgColor}; + stroke: ${e.activationBorderColor}; + } + + .actorPopupMenu { + position: absolute; + } + + .actorPopupMenuPanel { + position: absolute; + fill: ${e.actorBkg}; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); + filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4)); +} + .actor-man line { + stroke: ${e.actorBorder}; + fill: ${e.actorBkg}; + } + .actor-man circle, line { + stroke: ${e.actorBorder}; + fill: ${e.actorBkg}; + stroke-width: 2px; + } +`,gva=pva,uF=18*2,Qtr="actor-top",Ztr="actor-bottom",pyt=function(e,t){return d6e(e,t)},mva=function(e,t,r,a,s){if(t.links===void 0||t.links===null||Object.keys(t.links).length===0)return{height:0,width:0};const o=t.links,u=t.actorCnt,h=t.rectData;var f="none";s&&(f="block !important");const p=e.append("g");p.attr("id","actor"+u+"_popup"),p.attr("class","actorPopupMenu"),p.attr("display",f);var m="";h.class!==void 0&&(m=" "+h.class);let b=h.width>r?h.width:r;const _=p.append("rect");if(_.attr("class","actorPopupMenuPanel"+m),_.attr("x",h.x),_.attr("y",h.height),_.attr("fill",h.fill),_.attr("stroke",h.stroke),_.attr("width",b),_.attr("height",h.height),_.attr("rx",h.rx),_.attr("ry",h.ry),o!=null){var w=20;for(let A in o){var S=p.append("a"),C=U9(o[A]);S.attr("xlink:href",C),S.attr("target","_blank"),Lva(a)(A,S,h.x+10,h.height+w,b,20,{class:"actor"},a),w+=30}}return _.attr("height",w),{height:h.height+w,width:b}},bva=function(e){return"var pu = document.getElementById('"+e+"'); if (pu != null) { pu.style.display = pu.style.display == 'block' ? 'none' : 'block'; }"},p5e=async function(e,t,r=null){let a=e.append("foreignObject");const s=await Z$(t.text,Lf()),u=a.append("xhtml:div").attr("style","width: fit-content;").attr("xmlns","http://www.w3.org/1999/xhtml").html(s).node().getBoundingClientRect();if(a.attr("height",Math.round(u.height)).attr("width",Math.round(u.width)),t.class==="noteText"){const h=e.node().firstChild;h.setAttribute("height",u.height+2*t.textMargin);const f=h.getBBox();a.attr("x",Math.round(f.x+f.width/2-u.width/2)).attr("y",Math.round(f.y+f.height/2-u.height/2))}else if(r){let{startx:h,stopx:f,starty:p}=r;if(h>f){const m=h;h=f,f=m}a.attr("x",Math.round(h+Math.abs(h-f)/2-u.width/2)),t.class==="loopText"?a.attr("y",Math.round(p)):a.attr("y",Math.round(p-u.height))}return[a]},hW=function(e,t){let r=0,a=0;const s=t.text.split(mi.lineBreakRegex),[o,u]=J$(t.fontSize);let h=[],f=0,p=()=>t.y;if(t.valign!==void 0&&t.textMargin!==void 0&&t.textMargin>0)switch(t.valign){case"top":case"start":p=()=>Math.round(t.y+t.textMargin);break;case"middle":case"center":p=()=>Math.round(t.y+(r+a+t.textMargin)/2);break;case"bottom":case"end":p=()=>Math.round(t.y+(r+a+2*t.textMargin)-t.textMargin);break}if(t.anchor!==void 0&&t.textMargin!==void 0&&t.width!==void 0)switch(t.anchor){case"left":case"start":t.x=Math.round(t.x+t.textMargin),t.anchor="start",t.dominantBaseline="middle",t.alignmentBaseline="middle";break;case"middle":case"center":t.x=Math.round(t.x+t.width/2),t.anchor="middle",t.dominantBaseline="middle",t.alignmentBaseline="middle";break;case"right":case"end":t.x=Math.round(t.x+t.width-t.textMargin),t.anchor="end",t.dominantBaseline="middle",t.alignmentBaseline="middle";break}for(let[m,b]of s.entries()){t.textMargin!==void 0&&t.textMargin===0&&o!==void 0&&(f=m*o);const _=e.append("text");_.attr("x",t.x),_.attr("y",p()),t.anchor!==void 0&&_.attr("text-anchor",t.anchor).attr("dominant-baseline",t.dominantBaseline).attr("alignment-baseline",t.alignmentBaseline),t.fontFamily!==void 0&&_.style("font-family",t.fontFamily),u!==void 0&&_.style("font-size",u),t.fontWeight!==void 0&&_.style("font-weight",t.fontWeight),t.fill!==void 0&&_.attr("fill",t.fill),t.class!==void 0&&_.attr("class",t.class),t.dy!==void 0?_.attr("dy",t.dy):f!==0&&_.attr("dy",f);const w=b||KQn;if(t.tspan){const S=_.append("tspan");S.attr("x",t.x),t.fill!==void 0&&S.attr("fill",t.fill),S.text(w)}else _.text(w);t.valign!==void 0&&t.textMargin!==void 0&&t.textMargin>0&&(a+=(_._groups||_)[0][0].getBBox().height,r=a),h.push(_)}return h},Jtr=function(e,t){function r(s,o,u,h,f){return s+","+o+" "+(s+u)+","+o+" "+(s+u)+","+(o+h-f)+" "+(s+u-f*1.2)+","+(o+h)+" "+s+","+(o+h)}const a=e.append("polygon");return a.attr("points",r(t.x,t.y,t.width,t.height,7)),a.attr("class","labelBox"),t.y=t.y+t.height/2,hW(e,t),a};let HC=-1;const enr=(e,t,r,a)=>{e.select&&r.forEach(s=>{const o=t[s],u=e.select("#actor"+o.actorCnt);!a.mirrorActors&&o.stopy?u.attr("y2",o.stopy+o.height/2):a.mirrorActors&&u.attr("y2",o.stopy)})},yva=async function(e,t,r,a){const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+5,h=e.append("g").lower();var f=h;a||(HC++,Object.keys(t.links||{}).length&&!r.forceMenus&&f.attr("onclick",bva(`actor${HC}_popup`)).attr("cursor","pointer"),f.append("line").attr("id","actor"+HC).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line").attr("class","200").attr("stroke-width","0.5px").attr("stroke","#999"),f=h.append("g"),t.actorCnt=HC,t.links!=null&&f.attr("id","root-"+HC));const p=eU();var m="actor";t.properties!=null&&t.properties.class?m=t.properties.class:p.fill="#eaeaea",a?m+=` ${Ztr}`:m+=` ${Qtr}`,p.x=t.x,p.y=s,p.width=t.width,p.height=t.height,p.class=m,p.rx=3,p.ry=3,p.name=t.name;const b=pyt(f,p);if(t.rectData=p,t.properties!=null&&t.properties.icon){const w=t.properties.icon.trim();w.charAt(0)==="@"?kca(f,p.x+p.width-20,p.y+10,w.substr(1)):Aca(f,p.x+p.width-20,p.y+10,w)}await gyt(r,OS(t.description))(t.description,f,p.x,p.y,p.width,p.height,{class:"actor"},r);let _=t.height;if(b.node){const w=b.node().getBBox();t.height=w.height,_=w.height}return _},vva=async function(e,t,r,a){const s=a?t.stopy:t.starty,o=t.x+t.width/2,u=s+80;e.lower(),a||(HC++,e.append("line").attr("id","actor"+HC).attr("x1",o).attr("y1",u).attr("x2",o).attr("y2",2e3).attr("class","actor-line").attr("class","200").attr("stroke-width","0.5px").attr("stroke","#999"),t.actorCnt=HC);const h=e.append("g");let f="actor-man";a?f+=` ${Ztr}`:f+=` ${Qtr}`,h.attr("class",f),h.attr("name",t.name);const p=eU();p.x=t.x,p.y=s,p.fill="#eaeaea",p.width=t.width,p.height=t.height,p.class="actor",p.rx=3,p.ry=3,h.append("line").attr("id","actor-man-torso"+HC).attr("x1",o).attr("y1",s+25).attr("x2",o).attr("y2",s+45),h.append("line").attr("id","actor-man-arms"+HC).attr("x1",o-uF/2).attr("y1",s+33).attr("x2",o+uF/2).attr("y2",s+33),h.append("line").attr("x1",o-uF/2).attr("y1",s+60).attr("x2",o).attr("y2",s+45),h.append("line").attr("x1",o).attr("y1",s+45).attr("x2",o+uF/2-2).attr("y2",s+60);const m=h.append("circle");m.attr("cx",t.x+t.width/2),m.attr("cy",s+10),m.attr("r",15),m.attr("width",t.width),m.attr("height",t.height);const b=h.node().getBBox();return t.height=b.height,await gyt(r,OS(t.description))(t.description,h,p.x,p.y+35,p.width,p.height,{class:"actor"},r),t.height},_va=async function(e,t,r,a){switch(t.type){case"actor":return await vva(e,t,r,a);case"participant":return await yva(e,t,r,a)}},wva=async function(e,t,r){const s=e.append("g");tnr(s,t),t.name&&await gyt(r)(t.name,s,t.x,t.y+(t.textMaxHeight||0)/2,t.width,0,{class:"text"},r),s.lower()},Eva=function(e){return e.append("g")},xva=function(e,t,r,a,s){const o=eU(),u=t.anchored;o.x=t.startx,o.y=t.starty,o.class="activation"+s%3,o.width=t.stopx-t.startx,o.height=r-t.starty,pyt(u,o)},Sva=async function(e,t,r,a){const{boxMargin:s,boxTextMargin:o,labelBoxHeight:u,labelBoxWidth:h,messageFontFamily:f,messageFontSize:p,messageFontWeight:m}=a,b=e.append("g"),_=function(C,A,k,I){return b.append("line").attr("x1",C).attr("y1",A).attr("x2",k).attr("y2",I).attr("class","loopLine")};_(t.startx,t.starty,t.stopx,t.starty),_(t.stopx,t.starty,t.stopx,t.stopy),_(t.startx,t.stopy,t.stopx,t.stopy),_(t.startx,t.starty,t.startx,t.stopy),t.sections!==void 0&&t.sections.forEach(function(C){_(t.startx,C.y,t.stopx,C.y).style("stroke-dasharray","3, 3")});let w=Obt();w.text=r,w.x=t.startx,w.y=t.starty,w.fontFamily=f,w.fontSize=p,w.fontWeight=m,w.anchor="middle",w.valign="middle",w.tspan=!1,w.width=h||50,w.height=u||20,w.textMargin=o,w.class="labelText",Jtr(b,w),w=nnr(),w.text=t.title,w.x=t.startx+h/2+(t.stopx-t.startx)/2,w.y=t.starty+s+o,w.anchor="middle",w.valign="middle",w.textMargin=o,w.class="loopText",w.fontFamily=f,w.fontSize=p,w.fontWeight=m,w.wrap=!0;let S=OS(w.text)?await p5e(b,w,t):hW(b,w);if(t.sectionTitles!==void 0){for(const[C,A]of Object.entries(t.sectionTitles))if(A.message){w.text=A.message,w.x=t.startx+(t.stopx-t.startx)/2,w.y=t.sections[C].y+s+o,w.class="loopText",w.anchor="middle",w.valign="middle",w.tspan=!1,w.fontFamily=f,w.fontSize=p,w.fontWeight=m,w.wrap=t.wrap,OS(w.text)?(t.starty=t.sections[C].y,await p5e(b,w,t)):hW(b,w);let k=Math.round(S.map(I=>(I._groups||I)[0][0].getBBox().height).reduce((I,N)=>I+N));t.sections[C].height+=k-(s+o)}}return t.height=Math.round(t.stopy-t.starty),b},tnr=function(e,t){bJn(e,t)},Tva=function(e){e.append("defs").append("symbol").attr("id","database").attr("fill-rule","evenodd").attr("clip-rule","evenodd").append("path").attr("transform","scale(.5)").attr("d","M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z")},Cva=function(e){e.append("defs").append("symbol").attr("id","computer").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z")},Ava=function(e){e.append("defs").append("symbol").attr("id","clock").attr("width","24").attr("height","24").append("path").attr("transform","scale(.5)").attr("d","M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z")},kva=function(e){e.append("defs").append("marker").attr("id","arrowhead").attr("refX",7.9).attr("refY",5).attr("markerUnits","userSpaceOnUse").attr("markerWidth",12).attr("markerHeight",12).attr("orient","auto").append("path").attr("d","M 0 0 L 10 5 L 0 10 z")},Rva=function(e){e.append("defs").append("marker").attr("id","filled-head").attr("refX",15.5).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")},Iva=function(e){e.append("defs").append("marker").attr("id","sequencenumber").attr("refX",15).attr("refY",15).attr("markerWidth",60).attr("markerHeight",40).attr("orient","auto").append("circle").attr("cx",15).attr("cy",15).attr("r",6)},Nva=function(e){e.append("defs").append("marker").attr("id","crosshead").attr("markerWidth",15).attr("markerHeight",8).attr("orient","auto").attr("refX",4).attr("refY",4.5).append("path").attr("fill","none").attr("stroke","#000000").style("stroke-dasharray","0, 0").attr("stroke-width","1pt").attr("d","M 1,2 L 6,7 M 6,2 L 1,7")},nnr=function(){return{x:0,y:0,fill:void 0,anchor:void 0,style:"#666",width:void 0,height:void 0,textMargin:0,rx:0,ry:0,tspan:!0,valign:void 0}},Ova=function(){return{x:0,y:0,fill:"#EDF2AE",stroke:"#666",width:100,anchor:"start",height:100,rx:0,ry:0}},gyt=function(){function e(o,u,h,f,p,m,b){const _=u.append("text").attr("x",h+p/2).attr("y",f+m/2+5).style("text-anchor","middle").text(o);s(_,b)}function t(o,u,h,f,p,m,b,_){const{actorFontSize:w,actorFontFamily:S,actorFontWeight:C}=_,[A,k]=J$(w),I=o.split(mi.lineBreakRegex);for(let N=0;Ne.height||0))+(this.loops.length===0?0:this.loops.map(e=>e.height||0).reduce((e,t)=>e+t))+(this.messages.length===0?0:this.messages.map(e=>e.height||0).reduce((e,t)=>e+t))+(this.notes.length===0?0:this.notes.map(e=>e.height||0).reduce((e,t)=>e+t))},clear:function(){this.actors=[],this.boxes=[],this.loops=[],this.messages=[],this.notes=[]},addBox:function(e){this.boxes.push(e)},addActor:function(e){this.actors.push(e)},addLoop:function(e){this.loops.push(e)},addMessage:function(e){this.messages.push(e)},addNote:function(e){this.notes.push(e)},lastActor:function(){return this.actors[this.actors.length-1]},lastLoop:function(){return this.loops[this.loops.length-1]},lastMessage:function(){return this.messages[this.messages.length-1]},lastNote:function(){return this.notes[this.notes.length-1]},actors:[],boxes:[],loops:[],messages:[],notes:[]},init:function(){this.sequenceItems=[],this.activations=[],this.models.clear(),this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0,inr(Qt())},updateVal:function(e,t,r,a){e[t]===void 0?e[t]=r:e[t]=a(r,e[t])},updateBounds:function(e,t,r,a){const s=this;let o=0;function u(h){return function(p){o++;const m=s.sequenceItems.length-o+1;s.updateVal(p,"starty",t-m*Bn.boxMargin,Math.min),s.updateVal(p,"stopy",a+m*Bn.boxMargin,Math.max),s.updateVal(ci.data,"startx",e-m*Bn.boxMargin,Math.min),s.updateVal(ci.data,"stopx",r+m*Bn.boxMargin,Math.max),h!=="activation"&&(s.updateVal(p,"startx",e-m*Bn.boxMargin,Math.min),s.updateVal(p,"stopx",r+m*Bn.boxMargin,Math.max),s.updateVal(ci.data,"starty",t-m*Bn.boxMargin,Math.min),s.updateVal(ci.data,"stopy",a+m*Bn.boxMargin,Math.max))}}this.sequenceItems.forEach(u()),this.activations.forEach(u("activation"))},insert:function(e,t,r,a){const s=mi.getMin(e,r),o=mi.getMax(e,r),u=mi.getMin(t,a),h=mi.getMax(t,a);this.updateVal(ci.data,"startx",s,Math.min),this.updateVal(ci.data,"starty",u,Math.min),this.updateVal(ci.data,"stopx",o,Math.max),this.updateVal(ci.data,"stopy",h,Math.max),this.updateBounds(s,u,o,h)},newActivation:function(e,t,r){const a=r[e.from.actor],s=x6e(e.from.actor).length||0,o=a.x+a.width/2+(s-1)*Bn.activationWidth/2;this.activations.push({startx:o,starty:this.verticalPos+2,stopx:o+Bn.activationWidth,stopy:void 0,actor:e.from.actor,anchored:H0.anchorElement(t)})},endActivation:function(e){const t=this.activations.map(function(r){return r.actor}).lastIndexOf(e.from.actor);return this.activations.splice(t,1)[0]},createLoop:function(e={message:void 0,wrap:!1,width:void 0},t){return{startx:void 0,starty:this.verticalPos,stopx:void 0,stopy:void 0,title:e.message,wrap:e.wrap,width:e.width,height:0,fill:t}},newLoop:function(e={message:void 0,wrap:!1,width:void 0},t){this.sequenceItems.push(this.createLoop(e,t))},endLoop:function(){return this.sequenceItems.pop()},isLoopOverlap:function(){return this.sequenceItems.length?this.sequenceItems[this.sequenceItems.length-1].overlap:!1},addSectionToLoop:function(e){const t=this.sequenceItems.pop();t.sections=t.sections||[],t.sectionTitles=t.sectionTitles||[],t.sections.push({y:ci.getVerticalPos(),height:0}),t.sectionTitles.push(e),this.sequenceItems.push(t)},saveVerticalPos:function(){this.isLoopOverlap()&&(this.savedVerticalPos=this.verticalPos)},resetVerticalPos:function(){this.isLoopOverlap()&&(this.verticalPos=this.savedVerticalPos)},bumpVerticalPos:function(e){this.verticalPos=this.verticalPos+e,this.data.stopy=mi.getMax(this.data.stopy,this.verticalPos)},getVerticalPos:function(){return this.verticalPos},getBounds:function(){return{bounds:this.data,models:this.models}}},Dva=async function(e,t){ci.bumpVerticalPos(Bn.boxMargin),t.height=Bn.boxMargin,t.starty=ci.getVerticalPos();const r=eU();r.x=t.startx,r.y=t.starty,r.width=t.width||Bn.width,r.class="note";const a=e.append("g"),s=H0.drawRect(a,r),o=Obt();o.x=t.startx,o.y=t.starty,o.width=r.width,o.dy="1em",o.text=t.message,o.class="noteText",o.fontFamily=Bn.noteFontFamily,o.fontSize=Bn.noteFontSize,o.fontWeight=Bn.noteFontWeight,o.anchor=Bn.noteAlign,o.textMargin=Bn.noteMargin,o.valign="center";const u=OS(o.text)?await p5e(a,o):hW(a,o),h=Math.round(u.map(f=>(f._groups||f)[0][0].getBBox().height).reduce((f,p)=>f+p));s.attr("height",h+2*Bn.noteMargin),t.height+=h+2*Bn.noteMargin,ci.bumpVerticalPos(h+2*Bn.noteMargin),t.stopy=t.starty+h+2*Bn.noteMargin,t.stopx=t.startx+r.width,ci.insert(t.startx,t.starty,t.stopx,t.stopy),ci.models.addNote(t)},h$=e=>({fontFamily:e.messageFontFamily,fontSize:e.messageFontSize,fontWeight:e.messageFontWeight}),xV=e=>({fontFamily:e.noteFontFamily,fontSize:e.noteFontSize,fontWeight:e.noteFontWeight}),Hht=e=>({fontFamily:e.actorFontFamily,fontSize:e.actorFontSize,fontWeight:e.actorFontWeight});async function Mva(e,t){ci.bumpVerticalPos(10);const{startx:r,stopx:a,message:s}=t,o=mi.splitBreaks(s).length,u=OS(s),h=u?await Xce(s,Qt()):il.calculateTextDimensions(s,h$(Bn));if(!u){const b=h.height/o;t.height+=b,ci.bumpVerticalPos(b)}let f,p=h.height-10;const m=h.width;if(r===a){f=ci.getVerticalPos()+p,Bn.rightAngles||(p+=Bn.boxMargin,f=ci.getVerticalPos()+p),p+=30;const b=mi.getMax(m/2,Bn.width/2);ci.insert(r-b,ci.getVerticalPos()-10+p,a+b,ci.getVerticalPos()+30+p)}else p+=Bn.boxMargin,f=ci.getVerticalPos()+p,ci.insert(r,f-10,a,f);return ci.bumpVerticalPos(p),t.height+=p,t.stopy=t.starty+t.height,ci.insert(t.fromBounds,t.starty,t.toBounds,t.stopy),f}const Pva=async function(e,t,r,a){const{startx:s,stopx:o,starty:u,message:h,type:f,sequenceIndex:p,sequenceVisible:m}=t,b=il.calculateTextDimensions(h,h$(Bn)),_=Obt();_.x=s,_.y=u+10,_.width=o-s,_.class="messageText",_.dy="1em",_.text=h,_.fontFamily=Bn.messageFontFamily,_.fontSize=Bn.messageFontSize,_.fontWeight=Bn.messageFontWeight,_.anchor=Bn.messageAlign,_.valign="center",_.textMargin=Bn.wrapPadding,_.tspan=!1,OS(_.text)?await p5e(e,_,{startx:s,stopx:o,starty:r}):hW(e,_);const w=b.width;let S;s===o?Bn.rightAngles?S=e.append("path").attr("d",`M ${s},${r} H ${s+mi.getMax(Bn.width/2,w/2)} V ${r+25} H ${s}`):S=e.append("path").attr("d","M "+s+","+r+" C "+(s+60)+","+(r-10)+" "+(s+60)+","+(r+30)+" "+s+","+(r+20)):(S=e.append("line"),S.attr("x1",s),S.attr("y1",r),S.attr("x2",o),S.attr("y2",r)),f===a.db.LINETYPE.DOTTED||f===a.db.LINETYPE.DOTTED_CROSS||f===a.db.LINETYPE.DOTTED_POINT||f===a.db.LINETYPE.DOTTED_OPEN?(S.style("stroke-dasharray","3, 3"),S.attr("class","messageLine1")):S.attr("class","messageLine0");let C="";Bn.arrowMarkerAbsolute&&(C=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,C=C.replace(/\(/g,"\\("),C=C.replace(/\)/g,"\\)")),S.attr("stroke-width",2),S.attr("stroke","none"),S.style("fill","none"),(f===a.db.LINETYPE.SOLID||f===a.db.LINETYPE.DOTTED)&&S.attr("marker-end","url("+C+"#arrowhead)"),(f===a.db.LINETYPE.SOLID_POINT||f===a.db.LINETYPE.DOTTED_POINT)&&S.attr("marker-end","url("+C+"#filled-head)"),(f===a.db.LINETYPE.SOLID_CROSS||f===a.db.LINETYPE.DOTTED_CROSS)&&S.attr("marker-end","url("+C+"#crosshead)"),(m||Bn.showSequenceNumbers)&&(S.attr("marker-start","url("+C+"#sequencenumber)"),e.append("text").attr("x",s).attr("y",r+4).attr("font-family","sans-serif").attr("font-size","12px").attr("text-anchor","middle").attr("class","sequenceNumber").text(p))},Bva=async function(e,t,r,a,s,o,u){let h=0,f=0,p,m=0;for(const b of a){const _=t[b],w=_.box;p&&p!=w&&(ci.models.addBox(p),f+=Bn.boxMargin+p.margin),w&&w!=p&&(w.x=h+f,w.y=s,f+=w.margin),_.width=_.width||Bn.width,_.height=mi.getMax(_.height||Bn.height,Bn.height),_.margin=_.margin||Bn.actorMargin,m=mi.getMax(m,_.height),r[_.name]&&(f+=_.width/2),_.x=h+f,_.starty=ci.getVerticalPos(),ci.insert(_.x,s,_.x+_.width,_.height),h+=_.width+f,_.box&&(_.box.width=h+w.margin-_.box.x),f=_.margin,p=_.box,ci.models.addActor(_)}p&&ci.models.addBox(p),ci.bumpVerticalPos(m)},Vht=async function(e,t,r,a){if(a){let s=0;ci.bumpVerticalPos(Bn.boxMargin*2);for(const o of r){const u=t[o];u.stopy||(u.stopy=ci.getVerticalPos());const h=await H0.drawActor(e,u,Bn,!0);s=mi.getMax(s,h)}ci.bumpVerticalPos(s+Bn.boxMargin)}else for(const s of r){const o=t[s];await H0.drawActor(e,o,Bn,!1)}},rnr=function(e,t,r,a){let s=0,o=0;for(const u of r){const h=t[u],f=zva(h),p=H0.drawPopup(e,h,f,Bn,Bn.forceMenus,a);p.height>s&&(s=p.height),p.width+h.x>o&&(o=p.width+h.x)}return{maxHeight:s,maxWidth:o}},inr=function(e){Tg(Bn,e),e.fontFamily&&(Bn.actorFontFamily=Bn.noteFontFamily=Bn.messageFontFamily=e.fontFamily),e.fontSize&&(Bn.actorFontSize=Bn.noteFontSize=Bn.messageFontSize=e.fontSize),e.fontWeight&&(Bn.actorFontWeight=Bn.noteFontWeight=Bn.messageFontWeight=e.fontWeight)},x6e=function(e){return ci.activations.filter(function(t){return t.actor===e})},PCn=function(e,t){const r=t[e],a=x6e(e),s=a.reduce(function(u,h){return mi.getMin(u,h.startx)},r.x+r.width/2-1),o=a.reduce(function(u,h){return mi.getMax(u,h.stopx)},r.x+r.width/2+1);return[s,o]};function yC(e,t,r,a,s){ci.bumpVerticalPos(r);let o=a;if(t.id&&t.message&&e[t.id]){const u=e[t.id].width,h=h$(Bn);t.message=il.wrapLabel(`[${t.message}]`,u-2*Bn.wrapPadding,h),t.width=u,t.wrap=!0;const f=il.calculateTextDimensions(t.message,h),p=mi.getMax(f.height,Bn.labelBoxHeight);o=a+p,ut.debug(`${p} - ${t.message}`)}s(t),ci.bumpVerticalPos(o)}function Fva(e,t,r,a,s,o,u){function h(p,m){p.x{j.add(ee.from),j.add(ee.to)}),S=S.filter(ee=>j.has(ee))}await Bva(p,m,b,S,0);const L=await Vva(C,m,N,a);H0.insertArrowHead(p),H0.insertArrowCrossHead(p),H0.insertArrowFilledHead(p),H0.insertSequenceNumber(p);function P(j,ee){const te=ci.endActivation(j);te.starty+18>ee&&(te.starty=ee-6,ee+=12),H0.drawActivation(p,te,ee,Bn,x6e(j.from.actor).length),ci.insert(te.startx,ee-10,te.stopx,ee)}let M=1,F=1;const U=[],$=[];let G=0;for(const j of C){let ee,te,ne;switch(j.type){case a.db.LINETYPE.NOTE:ci.resetVerticalPos(),te=j.noteModel,await Dva(p,te);break;case a.db.LINETYPE.ACTIVE_START:ci.newActivation(j,p,m);break;case a.db.LINETYPE.ACTIVE_END:P(j,ci.getVerticalPos());break;case a.db.LINETYPE.LOOP_START:yC(L,j,Bn.boxMargin,Bn.boxMargin+Bn.boxTextMargin,se=>ci.newLoop(se));break;case a.db.LINETYPE.LOOP_END:ee=ci.endLoop(),await H0.drawLoop(p,ee,"loop",Bn),ci.bumpVerticalPos(ee.stopy-ci.getVerticalPos()),ci.models.addLoop(ee);break;case a.db.LINETYPE.RECT_START:yC(L,j,Bn.boxMargin,Bn.boxMargin,se=>ci.newLoop(void 0,se.message));break;case a.db.LINETYPE.RECT_END:ee=ci.endLoop(),$.push(ee),ci.models.addLoop(ee),ci.bumpVerticalPos(ee.stopy-ci.getVerticalPos());break;case a.db.LINETYPE.OPT_START:yC(L,j,Bn.boxMargin,Bn.boxMargin+Bn.boxTextMargin,se=>ci.newLoop(se));break;case a.db.LINETYPE.OPT_END:ee=ci.endLoop(),await H0.drawLoop(p,ee,"opt",Bn),ci.bumpVerticalPos(ee.stopy-ci.getVerticalPos()),ci.models.addLoop(ee);break;case a.db.LINETYPE.ALT_START:yC(L,j,Bn.boxMargin,Bn.boxMargin+Bn.boxTextMargin,se=>ci.newLoop(se));break;case a.db.LINETYPE.ALT_ELSE:yC(L,j,Bn.boxMargin+Bn.boxTextMargin,Bn.boxMargin,se=>ci.addSectionToLoop(se));break;case a.db.LINETYPE.ALT_END:ee=ci.endLoop(),await H0.drawLoop(p,ee,"alt",Bn),ci.bumpVerticalPos(ee.stopy-ci.getVerticalPos()),ci.models.addLoop(ee);break;case a.db.LINETYPE.PAR_START:case a.db.LINETYPE.PAR_OVER_START:yC(L,j,Bn.boxMargin,Bn.boxMargin+Bn.boxTextMargin,se=>ci.newLoop(se)),ci.saveVerticalPos();break;case a.db.LINETYPE.PAR_AND:yC(L,j,Bn.boxMargin+Bn.boxTextMargin,Bn.boxMargin,se=>ci.addSectionToLoop(se));break;case a.db.LINETYPE.PAR_END:ee=ci.endLoop(),await H0.drawLoop(p,ee,"par",Bn),ci.bumpVerticalPos(ee.stopy-ci.getVerticalPos()),ci.models.addLoop(ee);break;case a.db.LINETYPE.AUTONUMBER:M=j.message.start||M,F=j.message.step||F,j.message.visible?a.db.enableSequenceNumbers():a.db.disableSequenceNumbers();break;case a.db.LINETYPE.CRITICAL_START:yC(L,j,Bn.boxMargin,Bn.boxMargin+Bn.boxTextMargin,se=>ci.newLoop(se));break;case a.db.LINETYPE.CRITICAL_OPTION:yC(L,j,Bn.boxMargin+Bn.boxTextMargin,Bn.boxMargin,se=>ci.addSectionToLoop(se));break;case a.db.LINETYPE.CRITICAL_END:ee=ci.endLoop(),await H0.drawLoop(p,ee,"critical",Bn),ci.bumpVerticalPos(ee.stopy-ci.getVerticalPos()),ci.models.addLoop(ee);break;case a.db.LINETYPE.BREAK_START:yC(L,j,Bn.boxMargin,Bn.boxMargin+Bn.boxTextMargin,se=>ci.newLoop(se));break;case a.db.LINETYPE.BREAK_END:ee=ci.endLoop(),await H0.drawLoop(p,ee,"break",Bn),ci.bumpVerticalPos(ee.stopy-ci.getVerticalPos()),ci.models.addLoop(ee);break;default:try{ne=j.msgModel,ne.starty=ci.getVerticalPos(),ne.sequenceIndex=M,ne.sequenceVisible=a.db.showSequenceNumbers();const se=await Mva(p,ne);Fva(j,ne,se,G,m,b,_),U.push({messageModel:ne,lineStartY:se}),ci.models.addMessage(ne)}catch(se){ut.error("error while drawing message",se)}}[a.db.LINETYPE.SOLID_OPEN,a.db.LINETYPE.DOTTED_OPEN,a.db.LINETYPE.SOLID,a.db.LINETYPE.DOTTED,a.db.LINETYPE.SOLID_CROSS,a.db.LINETYPE.DOTTED_CROSS,a.db.LINETYPE.SOLID_POINT,a.db.LINETYPE.DOTTED_POINT].includes(j.type)&&(M=M+F),G++}ut.debug("createdActors",b),ut.debug("destroyedActors",_),await Vht(p,m,S,!1);for(const j of U)await Pva(p,j.messageModel,j.lineStartY,a);Bn.mirrorActors&&await Vht(p,m,S,!0),$.forEach(j=>H0.drawBackgroundRect(p,j)),enr(p,m,S,Bn);for(const j of ci.models.boxes)j.height=ci.getVerticalPos()-j.y,ci.insert(j.x,j.y,j.x+j.width,j.height),j.startx=j.x,j.starty=j.y,j.stopx=j.startx+j.width,j.stopy=j.starty+j.height,j.stroke="rgb(0,0,0, 0.5)",await H0.drawBox(p,j,Bn);k&&ci.bumpVerticalPos(Bn.boxMargin);const B=rnr(p,m,S,f),{bounds:Z}=ci.getBounds();let z=Z.stopy-Z.starty;z{const u=h$(Bn);let h=o.actorKeys.reduce((m,b)=>m+=e[b].width+(e[b].margin||0),0);h-=2*Bn.boxTextMargin,o.wrap&&(o.name=il.wrapLabel(o.name,h-2*Bn.wrapPadding,u));const f=il.calculateTextDimensions(o.name,u);s=mi.getMax(f.height,s);const p=mi.getMax(h,f.width+2*Bn.wrapPadding);if(o.margin=Bn.boxTextMargin,ho.textMaxHeight=s),mi.getMax(a,Bn.height)}const qva=async function(e,t,r){const a=t[e.from].x,s=t[e.to].x,o=e.wrap&&e.message;let u=OS(e.message)?await Xce(e.message,Qt()):il.calculateTextDimensions(o?il.wrapLabel(e.message,Bn.width,xV(Bn)):e.message,xV(Bn));const h={width:o?Bn.width:mi.getMax(Bn.width,u.width+2*Bn.noteMargin),height:0,startx:t[e.from].x,stopx:0,starty:0,stopy:0,message:e.message};return e.placement===r.db.PLACEMENT.RIGHTOF?(h.width=o?mi.getMax(Bn.width,u.width):mi.getMax(t[e.from].width/2+t[e.to].width/2,u.width+2*Bn.noteMargin),h.startx=a+(t[e.from].width+Bn.actorMargin)/2):e.placement===r.db.PLACEMENT.LEFTOF?(h.width=o?mi.getMax(Bn.width,u.width+2*Bn.noteMargin):mi.getMax(t[e.from].width/2+t[e.to].width/2,u.width+2*Bn.noteMargin),h.startx=a-h.width+(t[e.from].width-Bn.actorMargin)/2):e.to===e.from?(u=il.calculateTextDimensions(o?il.wrapLabel(e.message,mi.getMax(Bn.width,t[e.from].width),xV(Bn)):e.message,xV(Bn)),h.width=o?mi.getMax(Bn.width,t[e.from].width):mi.getMax(t[e.from].width,Bn.width,u.width+2*Bn.noteMargin),h.startx=a+(t[e.from].width-h.width)/2):(h.width=Math.abs(a+t[e.from].width/2-(s+t[e.to].width/2))+Bn.actorMargin,h.startx=a2,b=C=>h?-C:C;e.from===e.to?p=f:(e.activate&&!m&&(p+=b(Bn.activationWidth/2-1)),[r.db.LINETYPE.SOLID_OPEN,r.db.LINETYPE.DOTTED_OPEN].includes(e.type)||(p+=b(3)));const _=[a,s,o,u],w=Math.abs(f-p);e.wrap&&e.message&&(e.message=il.wrapLabel(e.message,mi.getMax(w+2*Bn.wrapPadding,Bn.width),h$(Bn)));const S=il.calculateTextDimensions(e.message,h$(Bn));return{width:mi.getMax(e.wrap?0:S.width+2*Bn.wrapPadding,w+2*Bn.wrapPadding,Bn.width),height:0,startx:f,stopx:p,starty:0,stopy:0,message:e.message,type:e.type,wrap:e.wrap,fromBounds:Math.min.apply(null,_),toBounds:Math.max.apply(null,_)}},Vva=async function(e,t,r,a){const s={},o=[];let u,h,f;for(const p of e){switch(p.id=il.random({length:10}),p.type){case a.db.LINETYPE.LOOP_START:case a.db.LINETYPE.ALT_START:case a.db.LINETYPE.OPT_START:case a.db.LINETYPE.PAR_START:case a.db.LINETYPE.PAR_OVER_START:case a.db.LINETYPE.CRITICAL_START:case a.db.LINETYPE.BREAK_START:o.push({id:p.id,msg:p.message,from:Number.MAX_SAFE_INTEGER,to:Number.MIN_SAFE_INTEGER,width:0});break;case a.db.LINETYPE.ALT_ELSE:case a.db.LINETYPE.PAR_AND:case a.db.LINETYPE.CRITICAL_OPTION:p.message&&(u=o.pop(),s[u.id]=u,s[p.id]=u,o.push(u));break;case a.db.LINETYPE.LOOP_END:case a.db.LINETYPE.ALT_END:case a.db.LINETYPE.OPT_END:case a.db.LINETYPE.PAR_END:case a.db.LINETYPE.CRITICAL_END:case a.db.LINETYPE.BREAK_END:u=o.pop(),s[u.id]=u;break;case a.db.LINETYPE.ACTIVE_START:{const b=t[p.from?p.from.actor:p.to.actor],_=x6e(p.from?p.from.actor:p.to.actor).length,w=b.x+b.width/2+(_-1)*Bn.activationWidth/2,S={startx:w,stopx:w+Bn.activationWidth,actor:p.from.actor,enabled:!0};ci.activations.push(S)}break;case a.db.LINETYPE.ACTIVE_END:{const b=ci.activations.map(_=>_.actor).lastIndexOf(p.from.actor);delete ci.activations.splice(b,1)[0]}break}p.placement!==void 0?(h=await qva(p,t,a),p.noteModel=h,o.forEach(b=>{u=b,u.from=mi.getMin(u.from,h.startx),u.to=mi.getMax(u.to,h.startx+h.width),u.width=mi.getMax(u.width,Math.abs(u.from-u.to))-Bn.labelBoxWidth})):(f=Hva(p,t,a),p.msgModel=f,f.startx&&f.stopx&&o.length>0&&o.forEach(b=>{if(u=b,f.startx===f.stopx){const _=t[p.from],w=t[p.to];u.from=mi.getMin(_.x-f.width/2,_.x-_.width/2,u.from),u.to=mi.getMax(w.x+f.width/2,w.x+_.width/2,u.to),u.width=mi.getMax(u.width,Math.abs(u.to-u.from))-Bn.labelBoxWidth}else u.from=mi.getMin(f.startx,u.from),u.to=mi.getMax(f.stopx,u.to),u.width=mi.getMax(u.width,f.width)-Bn.labelBoxWidth}))}return ci.activations=[],ut.debug("Loop type widths:",s),s},Yva={bounds:ci,drawActors:Vht,drawActorsPopup:rnr,setConf:inr,draw:$va},jva={parser:qya,db:MCn,renderer:Yva,styles:gva,init:({wrap:e})=>{MCn.setWrap(e)}},Wva=Object.freeze(Object.defineProperty({__proto__:null,diagram:jva},Symbol.toStringTag,{value:"Module"}));var Yht=function(){var e=function(Kt,Ft,Je,ht){for(Je=Je||{},ht=Kt.length;ht--;Je[Kt[ht]]=Ft);return Je},t=[1,17],r=[1,18],a=[1,19],s=[1,39],o=[1,40],u=[1,25],h=[1,23],f=[1,24],p=[1,31],m=[1,32],b=[1,33],_=[1,34],w=[1,35],S=[1,36],C=[1,26],A=[1,27],k=[1,28],I=[1,29],N=[1,43],L=[1,30],P=[1,42],M=[1,44],F=[1,41],U=[1,45],$=[1,9],G=[1,8,9],B=[1,56],Z=[1,57],z=[1,58],Y=[1,59],W=[1,60],Q=[1,61],V=[1,62],j=[1,8,9,39],ee=[1,74],te=[1,8,9,12,13,21,37,39,42,59,60,61,62,63,64,65,70,72],ne=[1,8,9,12,13,19,21,37,39,42,46,59,60,61,62,63,64,65,70,72,74,80,95,97,98],se=[13,74,80,95,97,98],ie=[13,64,65,74,80,95,97,98],ge=[13,59,60,61,62,63,74,80,95,97,98],ce=[1,93],be=[1,110],ve=[1,108],De=[1,102],ye=[1,103],Ee=[1,104],he=[1,105],we=[1,106],Ce=[1,107],Ie=[1,109],Le=[1,8,9,37,39,42],Fe=[1,8,9,21],Ve=[1,8,9,78],Oe=[1,8,9,21,73,74,78,80,81,82,83,84,85],Dt={trace:function(){},yy:{},symbols_:{error:2,start:3,mermaidDoc:4,statements:5,graphConfig:6,CLASS_DIAGRAM:7,NEWLINE:8,EOF:9,statement:10,classLabel:11,SQS:12,STR:13,SQE:14,namespaceName:15,alphaNumToken:16,className:17,classLiteralName:18,GENERICTYPE:19,relationStatement:20,LABEL:21,namespaceStatement:22,classStatement:23,memberStatement:24,annotationStatement:25,clickStatement:26,styleStatement:27,cssClassStatement:28,noteStatement:29,direction:30,acc_title:31,acc_title_value:32,acc_descr:33,acc_descr_value:34,acc_descr_multiline_value:35,namespaceIdentifier:36,STRUCT_START:37,classStatements:38,STRUCT_STOP:39,NAMESPACE:40,classIdentifier:41,STYLE_SEPARATOR:42,members:43,CLASS:44,ANNOTATION_START:45,ANNOTATION_END:46,MEMBER:47,SEPARATOR:48,relation:49,NOTE_FOR:50,noteText:51,NOTE:52,direction_tb:53,direction_bt:54,direction_rl:55,direction_lr:56,relationType:57,lineType:58,AGGREGATION:59,EXTENSION:60,COMPOSITION:61,DEPENDENCY:62,LOLLIPOP:63,LINE:64,DOTTED_LINE:65,CALLBACK:66,LINK:67,LINK_TARGET:68,CLICK:69,CALLBACK_NAME:70,CALLBACK_ARGS:71,HREF:72,STYLE:73,ALPHA:74,stylesOpt:75,CSSCLASS:76,style:77,COMMA:78,styleComponent:79,NUM:80,COLON:81,UNIT:82,SPACE:83,BRKT:84,PCT:85,commentToken:86,textToken:87,graphCodeTokens:88,textNoTagsToken:89,TAGSTART:90,TAGEND:91,"==":92,"--":93,DEFAULT:94,MINUS:95,keywords:96,UNICODE_TEXT:97,BQUOTE_STR:98,$accept:0,$end:1},terminals_:{2:"error",7:"CLASS_DIAGRAM",8:"NEWLINE",9:"EOF",12:"SQS",13:"STR",14:"SQE",19:"GENERICTYPE",21:"LABEL",31:"acc_title",32:"acc_title_value",33:"acc_descr",34:"acc_descr_value",35:"acc_descr_multiline_value",37:"STRUCT_START",39:"STRUCT_STOP",40:"NAMESPACE",42:"STYLE_SEPARATOR",44:"CLASS",45:"ANNOTATION_START",46:"ANNOTATION_END",47:"MEMBER",48:"SEPARATOR",50:"NOTE_FOR",52:"NOTE",53:"direction_tb",54:"direction_bt",55:"direction_rl",56:"direction_lr",59:"AGGREGATION",60:"EXTENSION",61:"COMPOSITION",62:"DEPENDENCY",63:"LOLLIPOP",64:"LINE",65:"DOTTED_LINE",66:"CALLBACK",67:"LINK",68:"LINK_TARGET",69:"CLICK",70:"CALLBACK_NAME",71:"CALLBACK_ARGS",72:"HREF",73:"STYLE",74:"ALPHA",76:"CSSCLASS",78:"COMMA",80:"NUM",81:"COLON",82:"UNIT",83:"SPACE",84:"BRKT",85:"PCT",88:"graphCodeTokens",90:"TAGSTART",91:"TAGEND",92:"==",93:"--",94:"DEFAULT",95:"MINUS",96:"keywords",97:"UNICODE_TEXT",98:"BQUOTE_STR"},productions_:[0,[3,1],[3,1],[4,1],[6,4],[5,1],[5,2],[5,3],[11,3],[15,1],[15,2],[17,1],[17,1],[17,2],[17,2],[17,2],[10,1],[10,2],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,2],[10,2],[10,1],[22,4],[22,5],[36,2],[38,1],[38,2],[38,3],[23,1],[23,3],[23,4],[23,6],[41,2],[41,3],[25,4],[43,1],[43,2],[24,1],[24,2],[24,1],[24,1],[20,3],[20,4],[20,4],[20,5],[29,3],[29,2],[30,1],[30,1],[30,1],[30,1],[49,3],[49,2],[49,2],[49,1],[57,1],[57,1],[57,1],[57,1],[57,1],[58,1],[58,1],[26,3],[26,4],[26,3],[26,4],[26,4],[26,5],[26,3],[26,4],[26,4],[26,5],[26,4],[26,5],[26,5],[26,6],[27,3],[28,3],[75,1],[75,3],[77,1],[77,2],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[79,1],[86,1],[86,1],[87,1],[87,1],[87,1],[87,1],[87,1],[87,1],[87,1],[89,1],[89,1],[89,1],[89,1],[16,1],[16,1],[16,1],[16,1],[18,1],[51,1]],performAction:function(Ft,Je,ht,et,qe,He,Ge){var Ye=He.length-1;switch(qe){case 8:this.$=He[Ye-1];break;case 9:case 11:case 12:this.$=He[Ye];break;case 10:case 13:this.$=He[Ye-1]+He[Ye];break;case 14:case 15:this.$=He[Ye-1]+"~"+He[Ye]+"~";break;case 16:et.addRelation(He[Ye]);break;case 17:He[Ye-1].title=et.cleanupLabel(He[Ye]),et.addRelation(He[Ye-1]);break;case 27:this.$=He[Ye].trim(),et.setAccTitle(this.$);break;case 28:case 29:this.$=He[Ye].trim(),et.setAccDescription(this.$);break;case 30:et.addClassesToNamespace(He[Ye-3],He[Ye-1]);break;case 31:et.addClassesToNamespace(He[Ye-4],He[Ye-1]);break;case 32:this.$=He[Ye],et.addNamespace(He[Ye]);break;case 33:this.$=[He[Ye]];break;case 34:this.$=[He[Ye-1]];break;case 35:He[Ye].unshift(He[Ye-2]),this.$=He[Ye];break;case 37:et.setCssClass(He[Ye-2],He[Ye]);break;case 38:et.addMembers(He[Ye-3],He[Ye-1]);break;case 39:et.setCssClass(He[Ye-5],He[Ye-3]),et.addMembers(He[Ye-5],He[Ye-1]);break;case 40:this.$=He[Ye],et.addClass(He[Ye]);break;case 41:this.$=He[Ye-1],et.addClass(He[Ye-1]),et.setClassLabel(He[Ye-1],He[Ye]);break;case 42:et.addAnnotation(He[Ye],He[Ye-2]);break;case 43:this.$=[He[Ye]];break;case 44:He[Ye].push(He[Ye-1]),this.$=He[Ye];break;case 45:break;case 46:et.addMember(He[Ye-1],et.cleanupLabel(He[Ye]));break;case 47:break;case 48:break;case 49:this.$={id1:He[Ye-2],id2:He[Ye],relation:He[Ye-1],relationTitle1:"none",relationTitle2:"none"};break;case 50:this.$={id1:He[Ye-3],id2:He[Ye],relation:He[Ye-1],relationTitle1:He[Ye-2],relationTitle2:"none"};break;case 51:this.$={id1:He[Ye-3],id2:He[Ye],relation:He[Ye-2],relationTitle1:"none",relationTitle2:He[Ye-1]};break;case 52:this.$={id1:He[Ye-4],id2:He[Ye],relation:He[Ye-2],relationTitle1:He[Ye-3],relationTitle2:He[Ye-1]};break;case 53:et.addNote(He[Ye],He[Ye-1]);break;case 54:et.addNote(He[Ye]);break;case 55:et.setDirection("TB");break;case 56:et.setDirection("BT");break;case 57:et.setDirection("RL");break;case 58:et.setDirection("LR");break;case 59:this.$={type1:He[Ye-2],type2:He[Ye],lineType:He[Ye-1]};break;case 60:this.$={type1:"none",type2:He[Ye],lineType:He[Ye-1]};break;case 61:this.$={type1:He[Ye-1],type2:"none",lineType:He[Ye]};break;case 62:this.$={type1:"none",type2:"none",lineType:He[Ye]};break;case 63:this.$=et.relationType.AGGREGATION;break;case 64:this.$=et.relationType.EXTENSION;break;case 65:this.$=et.relationType.COMPOSITION;break;case 66:this.$=et.relationType.DEPENDENCY;break;case 67:this.$=et.relationType.LOLLIPOP;break;case 68:this.$=et.lineType.LINE;break;case 69:this.$=et.lineType.DOTTED_LINE;break;case 70:case 76:this.$=He[Ye-2],et.setClickEvent(He[Ye-1],He[Ye]);break;case 71:case 77:this.$=He[Ye-3],et.setClickEvent(He[Ye-2],He[Ye-1]),et.setTooltip(He[Ye-2],He[Ye]);break;case 72:this.$=He[Ye-2],et.setLink(He[Ye-1],He[Ye]);break;case 73:this.$=He[Ye-3],et.setLink(He[Ye-2],He[Ye-1],He[Ye]);break;case 74:this.$=He[Ye-3],et.setLink(He[Ye-2],He[Ye-1]),et.setTooltip(He[Ye-2],He[Ye]);break;case 75:this.$=He[Ye-4],et.setLink(He[Ye-3],He[Ye-2],He[Ye]),et.setTooltip(He[Ye-3],He[Ye-1]);break;case 78:this.$=He[Ye-3],et.setClickEvent(He[Ye-2],He[Ye-1],He[Ye]);break;case 79:this.$=He[Ye-4],et.setClickEvent(He[Ye-3],He[Ye-2],He[Ye-1]),et.setTooltip(He[Ye-3],He[Ye]);break;case 80:this.$=He[Ye-3],et.setLink(He[Ye-2],He[Ye]);break;case 81:this.$=He[Ye-4],et.setLink(He[Ye-3],He[Ye-1],He[Ye]);break;case 82:this.$=He[Ye-4],et.setLink(He[Ye-3],He[Ye-1]),et.setTooltip(He[Ye-3],He[Ye]);break;case 83:this.$=He[Ye-5],et.setLink(He[Ye-4],He[Ye-2],He[Ye]),et.setTooltip(He[Ye-4],He[Ye-1]);break;case 84:this.$=He[Ye-2],et.setCssStyle(He[Ye-1],He[Ye]);break;case 85:et.setCssClass(He[Ye-1],He[Ye]);break;case 86:this.$=[He[Ye]];break;case 87:He[Ye-2].push(He[Ye]),this.$=He[Ye-2];break;case 89:this.$=He[Ye-1]+He[Ye];break}},table:[{3:1,4:2,5:3,6:4,7:[1,6],10:5,16:37,17:20,18:38,20:7,22:8,23:9,24:10,25:11,26:12,27:13,28:14,29:15,30:16,31:t,33:r,35:a,36:21,40:s,41:22,44:o,45:u,47:h,48:f,50:p,52:m,53:b,54:_,55:w,56:S,66:C,67:A,69:k,73:I,74:N,76:L,80:P,95:M,97:F,98:U},{1:[3]},{1:[2,1]},{1:[2,2]},{1:[2,3]},e($,[2,5],{8:[1,46]}),{8:[1,47]},e(G,[2,16],{21:[1,48]}),e(G,[2,18]),e(G,[2,19]),e(G,[2,20]),e(G,[2,21]),e(G,[2,22]),e(G,[2,23]),e(G,[2,24]),e(G,[2,25]),e(G,[2,26]),{32:[1,49]},{34:[1,50]},e(G,[2,29]),e(G,[2,45],{49:51,57:54,58:55,13:[1,52],21:[1,53],59:B,60:Z,61:z,62:Y,63:W,64:Q,65:V}),{37:[1,63]},e(j,[2,36],{37:[1,65],42:[1,64]}),e(G,[2,47]),e(G,[2,48]),{16:66,74:N,80:P,95:M,97:F},{16:37,17:67,18:38,74:N,80:P,95:M,97:F,98:U},{16:37,17:68,18:38,74:N,80:P,95:M,97:F,98:U},{16:37,17:69,18:38,74:N,80:P,95:M,97:F,98:U},{74:[1,70]},{13:[1,71]},{16:37,17:72,18:38,74:N,80:P,95:M,97:F,98:U},{13:ee,51:73},e(G,[2,55]),e(G,[2,56]),e(G,[2,57]),e(G,[2,58]),e(te,[2,11],{16:37,18:38,17:75,19:[1,76],74:N,80:P,95:M,97:F,98:U}),e(te,[2,12],{19:[1,77]}),{15:78,16:79,74:N,80:P,95:M,97:F},{16:37,17:80,18:38,74:N,80:P,95:M,97:F,98:U},e(ne,[2,112]),e(ne,[2,113]),e(ne,[2,114]),e(ne,[2,115]),e([1,8,9,12,13,19,21,37,39,42,59,60,61,62,63,64,65,70,72],[2,116]),e($,[2,6],{10:5,20:7,22:8,23:9,24:10,25:11,26:12,27:13,28:14,29:15,30:16,17:20,36:21,41:22,16:37,18:38,5:81,31:t,33:r,35:a,40:s,44:o,45:u,47:h,48:f,50:p,52:m,53:b,54:_,55:w,56:S,66:C,67:A,69:k,73:I,74:N,76:L,80:P,95:M,97:F,98:U}),{5:82,10:5,16:37,17:20,18:38,20:7,22:8,23:9,24:10,25:11,26:12,27:13,28:14,29:15,30:16,31:t,33:r,35:a,36:21,40:s,41:22,44:o,45:u,47:h,48:f,50:p,52:m,53:b,54:_,55:w,56:S,66:C,67:A,69:k,73:I,74:N,76:L,80:P,95:M,97:F,98:U},e(G,[2,17]),e(G,[2,27]),e(G,[2,28]),{13:[1,84],16:37,17:83,18:38,74:N,80:P,95:M,97:F,98:U},{49:85,57:54,58:55,59:B,60:Z,61:z,62:Y,63:W,64:Q,65:V},e(G,[2,46]),{58:86,64:Q,65:V},e(se,[2,62],{57:87,59:B,60:Z,61:z,62:Y,63:W}),e(ie,[2,63]),e(ie,[2,64]),e(ie,[2,65]),e(ie,[2,66]),e(ie,[2,67]),e(ge,[2,68]),e(ge,[2,69]),{8:[1,89],23:90,38:88,41:22,44:o},{16:91,74:N,80:P,95:M,97:F},{43:92,47:ce},{46:[1,94]},{13:[1,95]},{13:[1,96]},{70:[1,97],72:[1,98]},{21:be,73:ve,74:De,75:99,77:100,79:101,80:ye,81:Ee,82:he,83:we,84:Ce,85:Ie},{74:[1,111]},{13:ee,51:112},e(G,[2,54]),e(G,[2,117]),e(te,[2,13]),e(te,[2,14]),e(te,[2,15]),{37:[2,32]},{15:113,16:79,37:[2,9],74:N,80:P,95:M,97:F},e(Le,[2,40],{11:114,12:[1,115]}),e($,[2,7]),{9:[1,116]},e(Fe,[2,49]),{16:37,17:117,18:38,74:N,80:P,95:M,97:F,98:U},{13:[1,119],16:37,17:118,18:38,74:N,80:P,95:M,97:F,98:U},e(se,[2,61],{57:120,59:B,60:Z,61:z,62:Y,63:W}),e(se,[2,60]),{39:[1,121]},{23:90,38:122,41:22,44:o},{8:[1,123],39:[2,33]},e(j,[2,37],{37:[1,124]}),{39:[1,125]},{39:[2,43],43:126,47:ce},{16:37,17:127,18:38,74:N,80:P,95:M,97:F,98:U},e(G,[2,70],{13:[1,128]}),e(G,[2,72],{13:[1,130],68:[1,129]}),e(G,[2,76],{13:[1,131],71:[1,132]}),{13:[1,133]},e(G,[2,84],{78:[1,134]}),e(Ve,[2,86],{79:135,21:be,73:ve,74:De,80:ye,81:Ee,82:he,83:we,84:Ce,85:Ie}),e(Oe,[2,88]),e(Oe,[2,90]),e(Oe,[2,91]),e(Oe,[2,92]),e(Oe,[2,93]),e(Oe,[2,94]),e(Oe,[2,95]),e(Oe,[2,96]),e(Oe,[2,97]),e(Oe,[2,98]),e(G,[2,85]),e(G,[2,53]),{37:[2,10]},e(Le,[2,41]),{13:[1,136]},{1:[2,4]},e(Fe,[2,51]),e(Fe,[2,50]),{16:37,17:137,18:38,74:N,80:P,95:M,97:F,98:U},e(se,[2,59]),e(G,[2,30]),{39:[1,138]},{23:90,38:139,39:[2,34],41:22,44:o},{43:140,47:ce},e(j,[2,38]),{39:[2,44]},e(G,[2,42]),e(G,[2,71]),e(G,[2,73]),e(G,[2,74],{68:[1,141]}),e(G,[2,77]),e(G,[2,78],{13:[1,142]}),e(G,[2,80],{13:[1,144],68:[1,143]}),{21:be,73:ve,74:De,77:145,79:101,80:ye,81:Ee,82:he,83:we,84:Ce,85:Ie},e(Oe,[2,89]),{14:[1,146]},e(Fe,[2,52]),e(G,[2,31]),{39:[2,35]},{39:[1,147]},e(G,[2,75]),e(G,[2,79]),e(G,[2,81]),e(G,[2,82],{68:[1,148]}),e(Ve,[2,87],{79:135,21:be,73:ve,74:De,80:ye,81:Ee,82:he,83:we,84:Ce,85:Ie}),e(Le,[2,8]),e(j,[2,39]),e(G,[2,83])],defaultActions:{2:[2,1],3:[2,2],4:[2,3],78:[2,32],113:[2,10],116:[2,4],126:[2,44],139:[2,35]},parseError:function(Ft,Je){if(Je.recoverable)this.trace(Ft);else{var ht=new Error(Ft);throw ht.hash=Je,ht}},parse:function(Ft){var Je=this,ht=[0],et=[],qe=[null],He=[],Ge=this.table,Ye="",Ae=0,Xe=0,fe=2,Qe=1,Ke=He.slice.call(arguments,1),mt=Object.create(this.lexer),lt={yy:{}};for(var $t in this.yy)Object.prototype.hasOwnProperty.call(this.yy,$t)&&(lt.yy[$t]=this.yy[$t]);mt.setInput(Ft,lt.yy),lt.yy.lexer=mt,lt.yy.parser=this,typeof mt.yylloc>"u"&&(mt.yylloc={});var Ut=mt.yylloc;He.push(Ut);var Jt=mt.options&&mt.options.ranges;typeof lt.yy.parseError=="function"?this.parseError=lt.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function wn(){var Ln;return Ln=et.pop()||mt.lex()||Qe,typeof Ln!="number"&&(Ln instanceof Array&&(et=Ln,Ln=et.pop()),Ln=Je.symbols_[Ln]||Ln),Ln}for(var Vn,Wn,Dn,zn,vn={},Cn,Ar,ur,On;;){if(Wn=ht[ht.length-1],this.defaultActions[Wn]?Dn=this.defaultActions[Wn]:((Vn===null||typeof Vn>"u")&&(Vn=wn()),Dn=Ge[Wn]&&Ge[Wn][Vn]),typeof Dn>"u"||!Dn.length||!Dn[0]){var Ir="";On=[];for(Cn in Ge[Wn])this.terminals_[Cn]&&Cn>fe&&On.push("'"+this.terminals_[Cn]+"'");mt.showPosition?Ir="Parse error on line "+(Ae+1)+`: +`+mt.showPosition()+` +Expecting `+On.join(", ")+", got '"+(this.terminals_[Vn]||Vn)+"'":Ir="Parse error on line "+(Ae+1)+": Unexpected "+(Vn==Qe?"end of input":"'"+(this.terminals_[Vn]||Vn)+"'"),this.parseError(Ir,{text:mt.match,token:this.terminals_[Vn]||Vn,line:mt.yylineno,loc:Ut,expected:On})}if(Dn[0]instanceof Array&&Dn.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Wn+", token: "+Vn);switch(Dn[0]){case 1:ht.push(Vn),qe.push(mt.yytext),He.push(mt.yylloc),ht.push(Dn[1]),Vn=null,Xe=mt.yyleng,Ye=mt.yytext,Ae=mt.yylineno,Ut=mt.yylloc;break;case 2:if(Ar=this.productions_[Dn[1]][1],vn.$=qe[qe.length-Ar],vn._$={first_line:He[He.length-(Ar||1)].first_line,last_line:He[He.length-1].last_line,first_column:He[He.length-(Ar||1)].first_column,last_column:He[He.length-1].last_column},Jt&&(vn._$.range=[He[He.length-(Ar||1)].range[0],He[He.length-1].range[1]]),zn=this.performAction.apply(vn,[Ye,Xe,Ae,lt.yy,Dn[1],qe,He].concat(Ke)),typeof zn<"u")return zn;Ar&&(ht=ht.slice(0,-1*Ar*2),qe=qe.slice(0,-1*Ar),He=He.slice(0,-1*Ar)),ht.push(this.productions_[Dn[1]][0]),qe.push(vn.$),He.push(vn._$),ur=Ge[ht[ht.length-2]][ht[ht.length-1]],ht.push(ur);break;case 3:return!0}}return!0}},ot=function(){var Kt={EOF:1,parseError:function(Je,ht){if(this.yy.parser)this.yy.parser.parseError(Je,ht);else throw new Error(Je)},setInput:function(Ft,Je){return this.yy=Je||this.yy||{},this._input=Ft,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var Ft=this._input[0];this.yytext+=Ft,this.yyleng++,this.offset++,this.match+=Ft,this.matched+=Ft;var Je=Ft.match(/(?:\r\n?|\n).*/g);return Je?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),Ft},unput:function(Ft){var Je=Ft.length,ht=Ft.split(/(?:\r\n?|\n)/g);this._input=Ft+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-Je),this.offset-=Je;var et=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),ht.length-1&&(this.yylineno-=ht.length-1);var qe=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:ht?(ht.length===et.length?this.yylloc.first_column:0)+et[et.length-ht.length].length-ht[0].length:this.yylloc.first_column-Je},this.options.ranges&&(this.yylloc.range=[qe[0],qe[0]+this.yyleng-Je]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(Ft){this.unput(this.match.slice(Ft))},pastInput:function(){var Ft=this.matched.substr(0,this.matched.length-this.match.length);return(Ft.length>20?"...":"")+Ft.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var Ft=this.match;return Ft.length<20&&(Ft+=this._input.substr(0,20-Ft.length)),(Ft.substr(0,20)+(Ft.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var Ft=this.pastInput(),Je=new Array(Ft.length+1).join("-");return Ft+this.upcomingInput()+` +`+Je+"^"},test_match:function(Ft,Je){var ht,et,qe;if(this.options.backtrack_lexer&&(qe={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(qe.yylloc.range=this.yylloc.range.slice(0))),et=Ft[0].match(/(?:\r\n?|\n).*/g),et&&(this.yylineno+=et.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:et?et[et.length-1].length-et[et.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+Ft[0].length},this.yytext+=Ft[0],this.match+=Ft[0],this.matches=Ft,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(Ft[0].length),this.matched+=Ft[0],ht=this.performAction.call(this,this.yy,this,Je,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),ht)return ht;if(this._backtrack){for(var He in qe)this[He]=qe[He];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var Ft,Je,ht,et;this._more||(this.yytext="",this.match="");for(var qe=this._currentRules(),He=0;HeJe[0].length)){if(Je=ht,et=He,this.options.backtrack_lexer){if(Ft=this.test_match(ht,qe[He]),Ft!==!1)return Ft;if(this._backtrack){Je=!1;continue}else return!1}else if(!this.options.flex)break}return Je?(Ft=this.test_match(Je,qe[et]),Ft!==!1?Ft:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var Je=this.next();return Je||this.lex()},begin:function(Je){this.conditionStack.push(Je)},popState:function(){var Je=this.conditionStack.length-1;return Je>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(Je){return Je=this.conditionStack.length-1-Math.abs(Je||0),Je>=0?this.conditionStack[Je]:"INITIAL"},pushState:function(Je){this.begin(Je)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(Je,ht,et,qe){switch(et){case 0:return 53;case 1:return 54;case 2:return 55;case 3:return 56;case 4:break;case 5:break;case 6:return this.begin("acc_title"),31;case 7:return this.popState(),"acc_title_value";case 8:return this.begin("acc_descr"),33;case 9:return this.popState(),"acc_descr_value";case 10:this.begin("acc_descr_multiline");break;case 11:this.popState();break;case 12:return"acc_descr_multiline_value";case 13:return 8;case 14:break;case 15:return 7;case 16:return 7;case 17:return"EDGE_STATE";case 18:this.begin("callback_name");break;case 19:this.popState();break;case 20:this.popState(),this.begin("callback_args");break;case 21:return 70;case 22:this.popState();break;case 23:return 71;case 24:this.popState();break;case 25:return"STR";case 26:this.begin("string");break;case 27:return 73;case 28:return this.begin("namespace"),40;case 29:return this.popState(),8;case 30:break;case 31:return this.begin("namespace-body"),37;case 32:return this.popState(),39;case 33:return"EOF_IN_STRUCT";case 34:return 8;case 35:break;case 36:return"EDGE_STATE";case 37:return this.begin("class"),44;case 38:return this.popState(),8;case 39:break;case 40:return this.popState(),this.popState(),39;case 41:return this.begin("class-body"),37;case 42:return this.popState(),39;case 43:return"EOF_IN_STRUCT";case 44:return"EDGE_STATE";case 45:return"OPEN_IN_STRUCT";case 46:break;case 47:return"MEMBER";case 48:return 76;case 49:return 66;case 50:return 67;case 51:return 69;case 52:return 50;case 53:return 52;case 54:return 45;case 55:return 46;case 56:return 72;case 57:this.popState();break;case 58:return"GENERICTYPE";case 59:this.begin("generic");break;case 60:this.popState();break;case 61:return"BQUOTE_STR";case 62:this.begin("bqstring");break;case 63:return 68;case 64:return 68;case 65:return 68;case 66:return 68;case 67:return 60;case 68:return 60;case 69:return 62;case 70:return 62;case 71:return 61;case 72:return 59;case 73:return 63;case 74:return 64;case 75:return 65;case 76:return 21;case 77:return 42;case 78:return 95;case 79:return"DOT";case 80:return"PLUS";case 81:return 81;case 82:return 78;case 83:return 84;case 84:return 84;case 85:return 85;case 86:return"EQUALS";case 87:return"EQUALS";case 88:return 74;case 89:return 12;case 90:return 14;case 91:return"PUNCTUATION";case 92:return 80;case 93:return 97;case 94:return 83;case 95:return 83;case 96:return 9}},rules:[/^(?:.*direction\s+TB[^\n]*)/,/^(?:.*direction\s+BT[^\n]*)/,/^(?:.*direction\s+RL[^\n]*)/,/^(?:.*direction\s+LR[^\n]*)/,/^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,/^(?:%%[^\n]*(\r?\n)*)/,/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:classDiagram-v2\b)/,/^(?:classDiagram\b)/,/^(?:\[\*\])/,/^(?:call[\s]+)/,/^(?:\([\s]*\))/,/^(?:\()/,/^(?:[^(]*)/,/^(?:\))/,/^(?:[^)]*)/,/^(?:["])/,/^(?:[^"]*)/,/^(?:["])/,/^(?:style\b)/,/^(?:namespace\b)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:[{])/,/^(?:[}])/,/^(?:$)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:\[\*\])/,/^(?:class\b)/,/^(?:\s*(\r?\n)+)/,/^(?:\s+)/,/^(?:[}])/,/^(?:[{])/,/^(?:[}])/,/^(?:$)/,/^(?:\[\*\])/,/^(?:[{])/,/^(?:[\n])/,/^(?:[^{}\n]*)/,/^(?:cssClass\b)/,/^(?:callback\b)/,/^(?:link\b)/,/^(?:click\b)/,/^(?:note for\b)/,/^(?:note\b)/,/^(?:<<)/,/^(?:>>)/,/^(?:href\b)/,/^(?:[~])/,/^(?:[^~]*)/,/^(?:~)/,/^(?:[`])/,/^(?:[^`]+)/,/^(?:[`])/,/^(?:_self\b)/,/^(?:_blank\b)/,/^(?:_parent\b)/,/^(?:_top\b)/,/^(?:\s*<\|)/,/^(?:\s*\|>)/,/^(?:\s*>)/,/^(?:\s*<)/,/^(?:\s*\*)/,/^(?:\s*o\b)/,/^(?:\s*\(\))/,/^(?:--)/,/^(?:\.\.)/,/^(?::{1}[^:\n;]+)/,/^(?::{3})/,/^(?:-)/,/^(?:\.)/,/^(?:\+)/,/^(?::)/,/^(?:,)/,/^(?:#)/,/^(?:#)/,/^(?:%)/,/^(?:=)/,/^(?:=)/,/^(?:\w+)/,/^(?:\[)/,/^(?:\])/,/^(?:[!"#$%&'*+,-.`?\\/])/,/^(?:[0-9]+)/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\s)/,/^(?:\s)/,/^(?:$)/],conditions:{"namespace-body":{rules:[26,32,33,34,35,36,37,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},namespace:{rules:[26,28,29,30,31,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},"class-body":{rules:[26,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},class:{rules:[26,38,39,40,41,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},acc_descr_multiline:{rules:[11,12,26,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},acc_descr:{rules:[9,26,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},acc_title:{rules:[7,26,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},callback_args:{rules:[22,23,26,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},callback_name:{rules:[19,20,21,26,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},href:{rules:[26,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},struct:{rules:[26,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},generic:{rules:[26,48,49,50,51,52,53,54,55,56,57,58,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},bqstring:{rules:[26,48,49,50,51,52,53,54,55,56,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},string:{rules:[24,25,26,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,85,86,87,88,89,90,91,92,93,94,96],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,8,10,13,14,15,16,17,18,26,27,28,37,48,49,50,51,52,53,54,55,56,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],inclusive:!0}}};return Kt}();Dt.lexer=ot;function sn(){this.yy={}}return sn.prototype=Dt,Dt.Parser=sn,new sn}();Yht.parser=Yht;const anr=Yht,BCn=["#","+","~","-",""];class FCn{constructor(t,r){this.memberType=r,this.visibility="",this.classifier="";const a=J0(t,Qt());this.parseMember(a)}getDisplayDetails(){let t=this.visibility+Nse(this.id);this.memberType==="method"&&(t+=`(${Nse(this.parameters.trim())})`,this.returnType&&(t+=" : "+Nse(this.returnType))),t=t.trim();const r=this.parseClassifier();return{displayText:t,cssStyle:r}}parseMember(t){let r="";if(this.memberType==="method"){const a=/([#+~-])?(.+)\((.*)\)([\s$*])?(.*)([$*])?/,s=t.match(a);if(s){const o=s[1]?s[1].trim():"";if(BCn.includes(o)&&(this.visibility=o),this.id=s[2].trim(),this.parameters=s[3]?s[3].trim():"",r=s[4]?s[4].trim():"",this.returnType=s[5]?s[5].trim():"",r===""){const u=this.returnType.substring(this.returnType.length-1);u.match(/[$*]/)&&(r=u,this.returnType=this.returnType.substring(0,this.returnType.length-1))}}}else{const a=t.length,s=t.substring(0,1),o=t.substring(a-1);BCn.includes(s)&&(this.visibility=s),o.match(/[$*]/)&&(r=o),this.id=t.substring(this.visibility===""?0:1,r===""?a:a-1)}this.classifier=r}parseClassifier(){switch(this.classifier){case"*":return"font-style:italic;";case"$":return"text-decoration:underline;";default:return""}}}const S6e="classId-";let myt=[],Yd={},g5e=[],$Cn=0,_9={},jht=0,Ale=[];const d$=e=>mi.sanitizeText(e,Qt()),f$=function(e){const t=mi.sanitizeText(e,Qt());let r="",a=t;if(t.indexOf("~")>0){const s=t.split("~");a=d$(s[0]),r=d$(s[1])}return{className:a,type:r}},Kva=function(e,t){const r=mi.sanitizeText(e,Qt());t&&(t=d$(t));const{className:a}=f$(r);Yd[a].label=t},m5e=function(e){const t=mi.sanitizeText(e,Qt()),{className:r,type:a}=f$(t);if(Object.hasOwn(Yd,r))return;const s=mi.sanitizeText(r,Qt());Yd[s]={id:s,type:a,label:s,cssClasses:[],methods:[],members:[],annotations:[],styles:[],domId:S6e+s+"-"+$Cn},$Cn++},snr=function(e){const t=mi.sanitizeText(e,Qt());if(t in Yd)return Yd[t].domId;throw new Error("Class not found: "+t)},Xva=function(){myt=[],Yd={},g5e=[],Ale=[],Ale.push(lnr),_9={},jht=0,Mb()},Qva=function(e){return Yd[e]},Zva=function(){return Yd},Jva=function(){return myt},e2a=function(){return g5e},t2a=function(e){ut.debug("Adding relation: "+JSON.stringify(e)),m5e(e.id1),m5e(e.id2),e.id1=f$(e.id1).className,e.id2=f$(e.id2).className,e.relationTitle1=mi.sanitizeText(e.relationTitle1.trim(),Qt()),e.relationTitle2=mi.sanitizeText(e.relationTitle2.trim(),Qt()),myt.push(e)},n2a=function(e,t){const r=f$(e).className;Yd[r].annotations.push(t)},onr=function(e,t){m5e(e);const r=f$(e).className,a=Yd[r];if(typeof t=="string"){const s=t.trim();s.startsWith("<<")&&s.endsWith(">>")?a.annotations.push(d$(s.substring(2,s.length-2))):s.indexOf(")")>0?a.methods.push(new FCn(s,"method")):s&&a.members.push(new FCn(s,"attribute"))}},r2a=function(e,t){Array.isArray(t)&&(t.reverse(),t.forEach(r=>onr(e,r)))},i2a=function(e,t){const r={id:`note${g5e.length}`,class:t,text:e};g5e.push(r)},a2a=function(e){return e.startsWith(":")&&(e=e.substring(1)),d$(e.trim())},byt=function(e,t){e.split(",").forEach(function(r){let a=r;r[0].match(/\d/)&&(a=S6e+a),Yd[a]!==void 0&&Yd[a].cssClasses.push(t)})},s2a=function(e,t){e.split(",").forEach(function(r){t!==void 0&&(Yd[r].tooltip=d$(t))})},o2a=function(e,t){return t?_9[t].classes[e].tooltip:Yd[e].tooltip},l2a=function(e,t,r){const a=Qt();e.split(",").forEach(function(s){let o=s;s[0].match(/\d/)&&(o=S6e+o),Yd[o]!==void 0&&(Yd[o].link=il.formatUrl(t,a),a.securityLevel==="sandbox"?Yd[o].linkTarget="_top":typeof r=="string"?Yd[o].linkTarget=d$(r):Yd[o].linkTarget="_blank")}),byt(e,"clickable")},c2a=function(e,t,r){e.split(",").forEach(function(a){u2a(a,t,r),Yd[a].haveCallback=!0}),byt(e,"clickable")},u2a=function(e,t,r){const a=mi.sanitizeText(e,Qt());if(Qt().securityLevel!=="loose"||t===void 0)return;const o=a;if(Yd[o]!==void 0){const u=snr(o);let h=[];if(typeof r=="string"){h=r.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);for(let f=0;f")),s.classed("hover",!0)}).on("mouseout",function(){t.transition().duration(500).style("opacity",0),gn(this).classed("hover",!1)})};Ale.push(lnr);let cnr="TB";const p2a=()=>cnr,g2a=e=>{cnr=e},m2a=function(e){_9[e]===void 0&&(_9[e]={id:e,classes:{},children:{},domId:S6e+e+"-"+jht},jht++)},b2a=function(e){return _9[e]},y2a=function(){return _9},v2a=function(e,t){if(_9[e]!==void 0)for(const r of t){const{className:a}=f$(r);Yd[a].parent=e,_9[e].classes[a]=Yd[a]}},_2a=function(e,t){const r=Yd[e];if(!(!t||!r))for(const a of t)a.includes(",")?r.styles.push(...a.split(",")):r.styles.push(a)},b5e={setAccTitle:Pb,getAccTitle:Ev,getAccDescription:Sv,setAccDescription:xv,getConfig:()=>Qt().class,addClass:m5e,bindFunctions:h2a,clear:Xva,getClass:Qva,getClasses:Zva,getNotes:e2a,addAnnotation:n2a,addNote:i2a,getRelations:Jva,addRelation:t2a,getDirection:p2a,setDirection:g2a,addMember:onr,addMembers:r2a,cleanupLabel:a2a,lineType:d2a,relationType:f2a,setClickEvent:c2a,setCssClass:byt,setLink:l2a,getTooltip:o2a,setTooltip:s2a,lookUpDomId:snr,setDiagramTitle:Zw,getDiagramTitle:Tv,setClassLabel:Kva,addNamespace:m2a,addClassesToNamespace:v2a,getNamespace:b2a,getNamespaces:y2a,setCssStyle:_2a},w2a=e=>`g.classGroup text { + fill: ${e.nodeBorder||e.classText}; + stroke: none; + font-family: ${e.fontFamily}; + font-size: 10px; + + .title { + font-weight: bolder; + } + +} + +.nodeLabel, .edgeLabel { + color: ${e.classText}; +} +.edgeLabel .label rect { + fill: ${e.mainBkg}; +} +.label text { + fill: ${e.classText}; +} +.edgeLabel .label span { + background: ${e.mainBkg}; +} + +.classTitle { + font-weight: bolder; +} +.node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + + +.divider { + stroke: ${e.nodeBorder}; + stroke-width: 1; +} + +g.clickable { + cursor: pointer; +} + +g.classGroup rect { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; +} + +g.classGroup line { + stroke: ${e.nodeBorder}; + stroke-width: 1; +} + +.classLabel .box { + stroke: none; + stroke-width: 0; + fill: ${e.mainBkg}; + opacity: 0.5; +} + +.classLabel .label { + fill: ${e.nodeBorder}; + font-size: 10px; +} + +.relation { + stroke: ${e.lineColor}; + stroke-width: 1; + fill: none; +} + +.dashed-line{ + stroke-dasharray: 3; +} + +.dotted-line{ + stroke-dasharray: 1 2; +} + +#compositionStart, .composition { + fill: ${e.lineColor} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#compositionEnd, .composition { + fill: ${e.lineColor} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#dependencyStart, .dependency { + fill: ${e.lineColor} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#dependencyStart, .dependency { + fill: ${e.lineColor} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#extensionStart, .extension { + fill: transparent !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#extensionEnd, .extension { + fill: transparent !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#aggregationStart, .aggregation { + fill: transparent !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#aggregationEnd, .aggregation { + fill: transparent !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#lollipopStart, .lollipop { + fill: ${e.mainBkg} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +#lollipopEnd, .lollipop { + fill: ${e.mainBkg} !important; + stroke: ${e.lineColor} !important; + stroke-width: 1; +} + +.edgeTerminals { + font-size: 11px; + line-height: initial; +} + +.classTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; +} +`,unr=w2a;let UCn=0;const E2a=function(e,t,r,a,s){const o=function(I){switch(I){case s.db.relationType.AGGREGATION:return"aggregation";case s.db.relationType.EXTENSION:return"extension";case s.db.relationType.COMPOSITION:return"composition";case s.db.relationType.DEPENDENCY:return"dependency";case s.db.relationType.LOLLIPOP:return"lollipop"}};t.points=t.points.filter(I=>!Number.isNaN(I.y));const u=t.points,h=r_().x(function(I){return I.x}).y(function(I){return I.y}).curve(j3),f=e.append("path").attr("d",h(u)).attr("id","edge"+UCn).attr("class","relation");let p="";a.arrowMarkerAbsolute&&(p=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,p=p.replace(/\(/g,"\\("),p=p.replace(/\)/g,"\\)")),r.relation.lineType==1&&f.attr("class","relation dashed-line"),r.relation.lineType==10&&f.attr("class","relation dotted-line"),r.relation.type1!=="none"&&f.attr("marker-start","url("+p+"#"+o(r.relation.type1)+"Start)"),r.relation.type2!=="none"&&f.attr("marker-end","url("+p+"#"+o(r.relation.type2)+"End)");let m,b;const _=t.points.length;let w=il.calcLabelPosition(t.points);m=w.x,b=w.y;let S,C,A,k;if(_%2!==0&&_>1){let I=il.calcCardinalityPosition(r.relation.type1!=="none",t.points,t.points[0]),N=il.calcCardinalityPosition(r.relation.type2!=="none",t.points,t.points[_-1]);ut.debug("cardinality_1_point "+JSON.stringify(I)),ut.debug("cardinality_2_point "+JSON.stringify(N)),S=I.x,C=I.y,A=N.x,k=N.y}if(r.title!==void 0){const I=e.append("g").attr("class","classLabel"),N=I.append("text").attr("class","label").attr("x",m).attr("y",b).attr("fill","red").attr("text-anchor","middle").text(r.title);window.label=N;const L=N.node().getBBox();I.insert("rect",":first-child").attr("class","box").attr("x",L.x-a.padding/2).attr("y",L.y-a.padding/2).attr("width",L.width+a.padding).attr("height",L.height+a.padding)}ut.info("Rendering relation "+JSON.stringify(r)),r.relationTitle1!==void 0&&r.relationTitle1!=="none"&&e.append("g").attr("class","cardinality").append("text").attr("class","type1").attr("x",S).attr("y",C).attr("fill","black").attr("font-size","6").text(r.relationTitle1),r.relationTitle2!==void 0&&r.relationTitle2!=="none"&&e.append("g").attr("class","cardinality").append("text").attr("class","type2").attr("x",A).attr("y",k).attr("fill","black").attr("font-size","6").text(r.relationTitle2),UCn++},x2a=function(e,t,r,a){ut.debug("Rendering class ",t,r);const s=t.id,o={id:s,label:t.id,width:0,height:0},u=e.append("g").attr("id",a.db.lookUpDomId(s)).attr("class","classGroup");let h;t.link?h=u.append("svg:a").attr("xlink:href",t.link).attr("target",t.linkTarget).append("text").attr("y",r.textHeight+r.padding).attr("x",0):h=u.append("text").attr("y",r.textHeight+r.padding).attr("x",0);let f=!0;t.annotations.forEach(function(N){const L=h.append("tspan").text("«"+N+"»");f||L.attr("dy",r.textHeight),f=!1});let p=hnr(t);const m=h.append("tspan").text(p).attr("class","title");f||m.attr("dy",r.textHeight);const b=h.node().getBBox().height;let _,w,S;if(t.members.length>0){_=u.append("line").attr("x1",0).attr("y1",r.padding+b+r.dividerMargin/2).attr("y2",r.padding+b+r.dividerMargin/2);const N=u.append("text").attr("x",r.padding).attr("y",b+r.dividerMargin+r.textHeight).attr("fill","white").attr("class","classText");f=!0,t.members.forEach(function(L){zCn(N,L,f,r),f=!1}),w=N.node().getBBox()}if(t.methods.length>0){S=u.append("line").attr("x1",0).attr("y1",r.padding+b+r.dividerMargin+w.height).attr("y2",r.padding+b+r.dividerMargin+w.height);const N=u.append("text").attr("x",r.padding).attr("y",b+2*r.dividerMargin+w.height+r.textHeight).attr("fill","white").attr("class","classText");f=!0,t.methods.forEach(function(L){zCn(N,L,f,r),f=!1})}const C=u.node().getBBox();var A=" ";t.cssClasses.length>0&&(A=A+t.cssClasses.join(" "));const I=u.insert("rect",":first-child").attr("x",0).attr("y",0).attr("width",C.width+2*r.padding).attr("height",C.height+r.padding+.5*r.dividerMargin).attr("class",A).node().getBBox().width;return h.node().childNodes.forEach(function(N){N.setAttribute("x",(I-N.getBBox().width)/2)}),t.tooltip&&h.insert("title").text(t.tooltip),_&&_.attr("x2",I),S&&S.attr("x2",I),o.width=I,o.height=C.height+r.padding+.5*r.dividerMargin,o},hnr=function(e){let t=e.id;return e.type&&(t+="<"+Nse(e.type)+">"),t},S2a=function(e,t,r,a){ut.debug("Rendering note ",t,r);const s=t.id,o={id:s,text:t.text,width:0,height:0},u=e.append("g").attr("id",s).attr("class","classGroup");let h=u.append("text").attr("y",r.textHeight+r.padding).attr("x",0);const f=JSON.parse(`"${t.text}"`).split(` +`);f.forEach(function(_){ut.debug(`Adding line: ${_}`),h.append("tspan").text(_).attr("class","title").attr("dy",r.textHeight)});const p=u.node().getBBox(),b=u.insert("rect",":first-child").attr("x",0).attr("y",0).attr("width",p.width+2*r.padding).attr("height",p.height+f.length*r.textHeight+r.padding+.5*r.dividerMargin).node().getBBox().width;return h.node().childNodes.forEach(function(_){_.setAttribute("x",(b-_.getBBox().width)/2)}),o.width=b,o.height=p.height+f.length*r.textHeight+r.padding+.5*r.dividerMargin,o},zCn=function(e,t,r,a){const{displayText:s,cssStyle:o}=t.getDisplayDetails(),u=e.append("tspan").attr("x",a.padding).text(s);o!==""&&u.attr("style",t.cssStyle),r||u.attr("dy",a.textHeight)},Rat={getClassTitleString:hnr,drawClass:x2a,drawEdge:E2a,drawNote:S2a};let dSe={};const TEe=20,wie=function(e){const t=Object.entries(dSe).find(r=>r[1].label===e);if(t)return t[0]},T2a=function(e){e.append("defs").append("marker").attr("id","extensionStart").attr("class","extension").attr("refX",0).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","extensionEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 1,1 V 13 L18,7 Z"),e.append("defs").append("marker").attr("id","compositionStart").attr("class","extension").attr("refX",0).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","compositionEnd").attr("refX",19).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"),e.append("defs").append("marker").attr("id","aggregationStart").attr("class","extension").attr("refX",0).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","aggregationEnd").attr("refX",19).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"),e.append("defs").append("marker").attr("id","dependencyStart").attr("class","extension").attr("refX",0).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","dependencyEnd").attr("refX",19).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")},C2a=function(e,t,r,a){const s=Qt().class;dSe={},ut.info("Rendering diagram "+e);const o=Qt().securityLevel;let u;o==="sandbox"&&(u=gn("#i"+t));const h=gn(o==="sandbox"?u.nodes()[0].contentDocument.body:"body"),f=h.select(`[id='${t}']`);T2a(f);const p=new F1({multigraph:!0});p.setGraph({isMultiGraph:!0}),p.setDefaultEdgeLabel(function(){return{}});const m=a.db.getClasses(),b=Object.keys(m);for(const I of b){const N=m[I],L=Rat.drawClass(f,N,s,a);dSe[L.id]=L,p.setNode(L.id,L),ut.info("Org height: "+L.height)}a.db.getRelations().forEach(function(I){ut.info("tjoho"+wie(I.id1)+wie(I.id2)+JSON.stringify(I)),p.setEdge(wie(I.id1),wie(I.id2),{relation:I},I.title||"DEFAULT")}),a.db.getNotes().forEach(function(I){ut.debug(`Adding note: ${JSON.stringify(I)}`);const N=Rat.drawNote(f,I,s,a);dSe[N.id]=N,p.setNode(N.id,N),I.class&&I.class in m&&p.setEdge(I.id,wie(I.class),{relation:{id1:I.id,id2:I.class,relation:{type1:"none",type2:"none",lineType:10}}},"DEFAULT")}),oK(p),p.nodes().forEach(function(I){I!==void 0&&p.node(I)!==void 0&&(ut.debug("Node "+I+": "+JSON.stringify(p.node(I))),h.select("#"+(a.db.lookUpDomId(I)||I)).attr("transform","translate("+(p.node(I).x-p.node(I).width/2)+","+(p.node(I).y-p.node(I).height/2)+" )"))}),p.edges().forEach(function(I){I!==void 0&&p.edge(I)!==void 0&&(ut.debug("Edge "+I.v+" -> "+I.w+": "+JSON.stringify(p.edge(I))),Rat.drawEdge(f,p.edge(I),p.edge(I).relation,s,a))});const S=f.node().getBBox(),C=S.width+TEe*2,A=S.height+TEe*2;Db(f,A,C,s.useMaxWidth);const k=`${S.x-TEe} ${S.y-TEe} ${C} ${A}`;ut.debug(`viewBox ${k}`),f.attr("viewBox",k)},A2a={draw:C2a},k2a={parser:anr,db:b5e,renderer:A2a,styles:unr,init:e=>{e.class||(e.class={}),e.class.arrowMarkerAbsolute=e.arrowMarkerAbsolute,b5e.clear()}},R2a=Object.freeze(Object.defineProperty({__proto__:null,diagram:k2a},Symbol.toStringTag,{value:"Module"})),yyt=e=>mi.sanitizeText(e,Qt());let Wht={dividerMargin:10,padding:5,textHeight:10,curve:void 0};const I2a=function(e,t,r,a){const s=Object.keys(e);ut.info("keys:",s),ut.info(e),s.forEach(function(o){var u,h;const f=e[o],m={shape:"rect",id:f.id,domId:f.domId,labelText:yyt(f.id),labelStyle:"",style:"fill: none; stroke: black",padding:((u=Qt().flowchart)==null?void 0:u.padding)??((h=Qt().class)==null?void 0:h.padding)};t.setNode(f.id,m),dnr(f.classes,t,r,a,f.id),ut.info("setNode",m)})},dnr=function(e,t,r,a,s){const o=Object.keys(e);ut.info("keys:",o),ut.info(e),o.filter(u=>e[u].parent==s).forEach(function(u){var h,f;const p=e[u],m=p.cssClasses.join(" "),b=Hw(p.styles),_=p.label??p.id,w=0,C={labelStyle:b.labelStyle,shape:"class_box",labelText:yyt(_),classData:p,rx:w,ry:w,class:m,style:b.style,id:p.id,domId:p.domId,tooltip:a.db.getTooltip(p.id,s)||"",haveCallback:p.haveCallback,link:p.link,width:p.type==="group"?500:void 0,type:p.type,padding:((h=Qt().flowchart)==null?void 0:h.padding)??((f=Qt().class)==null?void 0:f.padding)};t.setNode(p.id,C),s&&t.setParent(p.id,s),ut.info("setNode",C)})},N2a=function(e,t,r,a){ut.info(e),e.forEach(function(s,o){var u,h;const f=s,p="",m={labelStyle:"",style:""},b=f.text,_=0,S={labelStyle:m.labelStyle,shape:"note",labelText:yyt(b),noteData:f,rx:_,ry:_,class:p,style:m.style,id:f.id,domId:f.id,tooltip:"",type:"note",padding:((u=Qt().flowchart)==null?void 0:u.padding)??((h=Qt().class)==null?void 0:h.padding)};if(t.setNode(f.id,S),ut.info("setNode",S),!f.class||!(f.class in a))return;const C=r+o,A={id:`edgeNote${C}`,classes:"relation",pattern:"dotted",arrowhead:"none",startLabelRight:"",endLabelLeft:"",arrowTypeStart:"none",arrowTypeEnd:"none",style:"fill:none",labelStyle:"",curve:fS(Wht.curve,Cg)};t.setEdge(f.id,f.class,A,C)})},O2a=function(e,t){const r=Qt().flowchart;let a=0;e.forEach(function(s){var o;a++;const u={classes:"relation",pattern:s.relation.lineType==1?"dashed":"solid",id:`id_${s.id1}_${s.id2}_${a}`,arrowhead:s.type==="arrow_open"?"none":"normal",startLabelRight:s.relationTitle1==="none"?"":s.relationTitle1,endLabelLeft:s.relationTitle2==="none"?"":s.relationTitle2,arrowTypeStart:GCn(s.relation.type1),arrowTypeEnd:GCn(s.relation.type2),style:"fill:none",labelStyle:"",curve:fS(r==null?void 0:r.curve,Cg)};if(ut.info(u,s),s.style!==void 0){const h=Hw(s.style);u.style=h.style,u.labelStyle=h.labelStyle}s.text=s.title,s.text===void 0?s.style!==void 0&&(u.arrowheadStyle="fill: #333"):(u.arrowheadStyle="fill: #333",u.labelpos="c",((o=Qt().flowchart)==null?void 0:o.htmlLabels)??Qt().htmlLabels?(u.labelType="html",u.label=''+s.text+""):(u.labelType="text",u.label=s.text.replace(mi.lineBreakRegex,` +`),s.style===void 0&&(u.style=u.style||"stroke: #333; stroke-width: 1.5px;fill:none"),u.labelStyle=u.labelStyle.replace("color:","fill:"))),t.setEdge(s.id1,s.id2,u,a)})},L2a=function(e){Wht={...Wht,...e}},D2a=async function(e,t,r,a){ut.info("Drawing class - ",t);const s=Qt().flowchart??Qt().class,o=Qt().securityLevel;ut.info("config:",s);const u=(s==null?void 0:s.nodeSpacing)??50,h=(s==null?void 0:s.rankSpacing)??50,f=new F1({multigraph:!0,compound:!0}).setGraph({rankdir:a.db.getDirection(),nodesep:u,ranksep:h,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}}),p=a.db.getNamespaces(),m=a.db.getClasses(),b=a.db.getRelations(),_=a.db.getNotes();ut.info(b),I2a(p,f,t,a),dnr(m,f,t,a),O2a(b,f),N2a(_,f,b.length+1,m);let w;o==="sandbox"&&(w=gn("#i"+t));const S=gn(o==="sandbox"?w.nodes()[0].contentDocument.body:"body"),C=S.select(`[id="${t}"]`),A=S.select("#"+t+" g");if(await Xbt(A,f,["aggregation","extension","composition","dependency","lollipop"],"classDiagram",t),il.insertTitle(C,"classTitleText",(s==null?void 0:s.titleTopMargin)??5,a.db.getDiagramTitle()),oL(f,C,s==null?void 0:s.diagramPadding,s==null?void 0:s.useMaxWidth),!(s!=null&&s.htmlLabels)){const k=o==="sandbox"?w.nodes()[0].contentDocument:document,I=k.querySelectorAll('[id="'+t+'"] .edgeLabel .label');for(const N of I){const L=N.getBBox(),P=k.createElementNS("http://www.w3.org/2000/svg","rect");P.setAttribute("rx",0),P.setAttribute("ry",0),P.setAttribute("width",L.width),P.setAttribute("height",L.height),N.insertBefore(P,N.firstChild)}}};function GCn(e){let t;switch(e){case 0:t="aggregation";break;case 1:t="extension";break;case 2:t="composition";break;case 3:t="dependency";break;case 4:t="lollipop";break;default:t="none"}return t}const M2a={setConf:L2a,draw:D2a},P2a={parser:anr,db:b5e,renderer:M2a,styles:unr,init:e=>{e.class||(e.class={}),e.class.arrowMarkerAbsolute=e.arrowMarkerAbsolute,b5e.clear()}},B2a=Object.freeze(Object.defineProperty({__proto__:null,diagram:P2a},Symbol.toStringTag,{value:"Module"}));var Kht=function(){var e=function(V,j,ee,te){for(ee=ee||{},te=V.length;te--;ee[V[te]]=j);return ee},t=[1,2],r=[1,3],a=[1,4],s=[2,4],o=[1,9],u=[1,11],h=[1,15],f=[1,16],p=[1,17],m=[1,18],b=[1,30],_=[1,19],w=[1,20],S=[1,21],C=[1,22],A=[1,23],k=[1,25],I=[1,26],N=[1,27],L=[1,28],P=[1,29],M=[1,32],F=[1,33],U=[1,34],$=[1,35],G=[1,31],B=[1,4,5,15,16,18,20,21,23,24,25,26,27,28,32,34,36,37,41,44,45,46,47,50],Z=[1,4,5,13,14,15,16,18,20,21,23,24,25,26,27,28,32,34,36,37,41,44,45,46,47,50],z=[4,5,15,16,18,20,21,23,24,25,26,27,28,32,34,36,37,41,44,45,46,47,50],Y={trace:function(){},yy:{},symbols_:{error:2,start:3,SPACE:4,NL:5,SD:6,document:7,line:8,statement:9,classDefStatement:10,cssClassStatement:11,idStatement:12,DESCR:13,"-->":14,HIDE_EMPTY:15,scale:16,WIDTH:17,COMPOSIT_STATE:18,STRUCT_START:19,STRUCT_STOP:20,STATE_DESCR:21,AS:22,ID:23,FORK:24,JOIN:25,CHOICE:26,CONCURRENT:27,note:28,notePosition:29,NOTE_TEXT:30,direction:31,acc_title:32,acc_title_value:33,acc_descr:34,acc_descr_value:35,acc_descr_multiline_value:36,classDef:37,CLASSDEF_ID:38,CLASSDEF_STYLEOPTS:39,DEFAULT:40,class:41,CLASSENTITY_IDS:42,STYLECLASS:43,direction_tb:44,direction_bt:45,direction_rl:46,direction_lr:47,eol:48,";":49,EDGE_STATE:50,STYLE_SEPARATOR:51,left_of:52,right_of:53,$accept:0,$end:1},terminals_:{2:"error",4:"SPACE",5:"NL",6:"SD",13:"DESCR",14:"-->",15:"HIDE_EMPTY",16:"scale",17:"WIDTH",18:"COMPOSIT_STATE",19:"STRUCT_START",20:"STRUCT_STOP",21:"STATE_DESCR",22:"AS",23:"ID",24:"FORK",25:"JOIN",26:"CHOICE",27:"CONCURRENT",28:"note",30:"NOTE_TEXT",32:"acc_title",33:"acc_title_value",34:"acc_descr",35:"acc_descr_value",36:"acc_descr_multiline_value",37:"classDef",38:"CLASSDEF_ID",39:"CLASSDEF_STYLEOPTS",40:"DEFAULT",41:"class",42:"CLASSENTITY_IDS",43:"STYLECLASS",44:"direction_tb",45:"direction_bt",46:"direction_rl",47:"direction_lr",49:";",50:"EDGE_STATE",51:"STYLE_SEPARATOR",52:"left_of",53:"right_of"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[8,1],[8,1],[9,1],[9,1],[9,1],[9,2],[9,3],[9,4],[9,1],[9,2],[9,1],[9,4],[9,3],[9,6],[9,1],[9,1],[9,1],[9,1],[9,4],[9,4],[9,1],[9,2],[9,2],[9,1],[10,3],[10,3],[11,3],[31,1],[31,1],[31,1],[31,1],[48,1],[48,1],[12,1],[12,1],[12,3],[12,3],[29,1],[29,1]],performAction:function(j,ee,te,ne,se,ie,ge){var ce=ie.length-1;switch(se){case 3:return ne.setRootDoc(ie[ce]),ie[ce];case 4:this.$=[];break;case 5:ie[ce]!="nl"&&(ie[ce-1].push(ie[ce]),this.$=ie[ce-1]);break;case 6:case 7:this.$=ie[ce];break;case 8:this.$="nl";break;case 11:this.$=ie[ce];break;case 12:const ye=ie[ce-1];ye.description=ne.trimColon(ie[ce]),this.$=ye;break;case 13:this.$={stmt:"relation",state1:ie[ce-2],state2:ie[ce]};break;case 14:const Ee=ne.trimColon(ie[ce]);this.$={stmt:"relation",state1:ie[ce-3],state2:ie[ce-1],description:Ee};break;case 18:this.$={stmt:"state",id:ie[ce-3],type:"default",description:"",doc:ie[ce-1]};break;case 19:var be=ie[ce],ve=ie[ce-2].trim();if(ie[ce].match(":")){var De=ie[ce].split(":");be=De[0],ve=[ve,De[1]]}this.$={stmt:"state",id:be,type:"default",description:ve};break;case 20:this.$={stmt:"state",id:ie[ce-3],type:"default",description:ie[ce-5],doc:ie[ce-1]};break;case 21:this.$={stmt:"state",id:ie[ce],type:"fork"};break;case 22:this.$={stmt:"state",id:ie[ce],type:"join"};break;case 23:this.$={stmt:"state",id:ie[ce],type:"choice"};break;case 24:this.$={stmt:"state",id:ne.getDividerId(),type:"divider"};break;case 25:this.$={stmt:"state",id:ie[ce-1].trim(),note:{position:ie[ce-2].trim(),text:ie[ce].trim()}};break;case 28:this.$=ie[ce].trim(),ne.setAccTitle(this.$);break;case 29:case 30:this.$=ie[ce].trim(),ne.setAccDescription(this.$);break;case 31:case 32:this.$={stmt:"classDef",id:ie[ce-1].trim(),classes:ie[ce].trim()};break;case 33:this.$={stmt:"applyClass",id:ie[ce-1].trim(),styleClass:ie[ce].trim()};break;case 34:ne.setDirection("TB"),this.$={stmt:"dir",value:"TB"};break;case 35:ne.setDirection("BT"),this.$={stmt:"dir",value:"BT"};break;case 36:ne.setDirection("RL"),this.$={stmt:"dir",value:"RL"};break;case 37:ne.setDirection("LR"),this.$={stmt:"dir",value:"LR"};break;case 40:case 41:this.$={stmt:"state",id:ie[ce].trim(),type:"default",description:""};break;case 42:this.$={stmt:"state",id:ie[ce-2].trim(),classes:[ie[ce].trim()],type:"default",description:""};break;case 43:this.$={stmt:"state",id:ie[ce-2].trim(),classes:[ie[ce].trim()],type:"default",description:""};break}},table:[{3:1,4:t,5:r,6:a},{1:[3]},{3:5,4:t,5:r,6:a},{3:6,4:t,5:r,6:a},e([1,4,5,15,16,18,21,23,24,25,26,27,28,32,34,36,37,41,44,45,46,47,50],s,{7:7}),{1:[2,1]},{1:[2,2]},{1:[2,3],4:o,5:u,8:8,9:10,10:12,11:13,12:14,15:h,16:f,18:p,21:m,23:b,24:_,25:w,26:S,27:C,28:A,31:24,32:k,34:I,36:N,37:L,41:P,44:M,45:F,46:U,47:$,50:G},e(B,[2,5]),{9:36,10:12,11:13,12:14,15:h,16:f,18:p,21:m,23:b,24:_,25:w,26:S,27:C,28:A,31:24,32:k,34:I,36:N,37:L,41:P,44:M,45:F,46:U,47:$,50:G},e(B,[2,7]),e(B,[2,8]),e(B,[2,9]),e(B,[2,10]),e(B,[2,11],{13:[1,37],14:[1,38]}),e(B,[2,15]),{17:[1,39]},e(B,[2,17],{19:[1,40]}),{22:[1,41]},e(B,[2,21]),e(B,[2,22]),e(B,[2,23]),e(B,[2,24]),{29:42,30:[1,43],52:[1,44],53:[1,45]},e(B,[2,27]),{33:[1,46]},{35:[1,47]},e(B,[2,30]),{38:[1,48],40:[1,49]},{42:[1,50]},e(Z,[2,40],{51:[1,51]}),e(Z,[2,41],{51:[1,52]}),e(B,[2,34]),e(B,[2,35]),e(B,[2,36]),e(B,[2,37]),e(B,[2,6]),e(B,[2,12]),{12:53,23:b,50:G},e(B,[2,16]),e(z,s,{7:54}),{23:[1,55]},{23:[1,56]},{22:[1,57]},{23:[2,44]},{23:[2,45]},e(B,[2,28]),e(B,[2,29]),{39:[1,58]},{39:[1,59]},{43:[1,60]},{23:[1,61]},{23:[1,62]},e(B,[2,13],{13:[1,63]}),{4:o,5:u,8:8,9:10,10:12,11:13,12:14,15:h,16:f,18:p,20:[1,64],21:m,23:b,24:_,25:w,26:S,27:C,28:A,31:24,32:k,34:I,36:N,37:L,41:P,44:M,45:F,46:U,47:$,50:G},e(B,[2,19],{19:[1,65]}),{30:[1,66]},{23:[1,67]},e(B,[2,31]),e(B,[2,32]),e(B,[2,33]),e(Z,[2,42]),e(Z,[2,43]),e(B,[2,14]),e(B,[2,18]),e(z,s,{7:68}),e(B,[2,25]),e(B,[2,26]),{4:o,5:u,8:8,9:10,10:12,11:13,12:14,15:h,16:f,18:p,20:[1,69],21:m,23:b,24:_,25:w,26:S,27:C,28:A,31:24,32:k,34:I,36:N,37:L,41:P,44:M,45:F,46:U,47:$,50:G},e(B,[2,20])],defaultActions:{5:[2,1],6:[2,2],44:[2,44],45:[2,45]},parseError:function(j,ee){if(ee.recoverable)this.trace(j);else{var te=new Error(j);throw te.hash=ee,te}},parse:function(j){var ee=this,te=[0],ne=[],se=[null],ie=[],ge=this.table,ce="",be=0,ve=0,De=2,ye=1,Ee=ie.slice.call(arguments,1),he=Object.create(this.lexer),we={yy:{}};for(var Ce in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Ce)&&(we.yy[Ce]=this.yy[Ce]);he.setInput(j,we.yy),we.yy.lexer=he,we.yy.parser=this,typeof he.yylloc>"u"&&(he.yylloc={});var Ie=he.yylloc;ie.push(Ie);var Le=he.options&&he.options.ranges;typeof we.yy.parseError=="function"?this.parseError=we.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Fe(){var qe;return qe=ne.pop()||he.lex()||ye,typeof qe!="number"&&(qe instanceof Array&&(ne=qe,qe=ne.pop()),qe=ee.symbols_[qe]||qe),qe}for(var Ve,Oe,Dt,ot,sn={},Kt,Ft,Je,ht;;){if(Oe=te[te.length-1],this.defaultActions[Oe]?Dt=this.defaultActions[Oe]:((Ve===null||typeof Ve>"u")&&(Ve=Fe()),Dt=ge[Oe]&&ge[Oe][Ve]),typeof Dt>"u"||!Dt.length||!Dt[0]){var et="";ht=[];for(Kt in ge[Oe])this.terminals_[Kt]&&Kt>De&&ht.push("'"+this.terminals_[Kt]+"'");he.showPosition?et="Parse error on line "+(be+1)+`: +`+he.showPosition()+` +Expecting `+ht.join(", ")+", got '"+(this.terminals_[Ve]||Ve)+"'":et="Parse error on line "+(be+1)+": Unexpected "+(Ve==ye?"end of input":"'"+(this.terminals_[Ve]||Ve)+"'"),this.parseError(et,{text:he.match,token:this.terminals_[Ve]||Ve,line:he.yylineno,loc:Ie,expected:ht})}if(Dt[0]instanceof Array&&Dt.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Oe+", token: "+Ve);switch(Dt[0]){case 1:te.push(Ve),se.push(he.yytext),ie.push(he.yylloc),te.push(Dt[1]),Ve=null,ve=he.yyleng,ce=he.yytext,be=he.yylineno,Ie=he.yylloc;break;case 2:if(Ft=this.productions_[Dt[1]][1],sn.$=se[se.length-Ft],sn._$={first_line:ie[ie.length-(Ft||1)].first_line,last_line:ie[ie.length-1].last_line,first_column:ie[ie.length-(Ft||1)].first_column,last_column:ie[ie.length-1].last_column},Le&&(sn._$.range=[ie[ie.length-(Ft||1)].range[0],ie[ie.length-1].range[1]]),ot=this.performAction.apply(sn,[ce,ve,be,we.yy,Dt[1],se,ie].concat(Ee)),typeof ot<"u")return ot;Ft&&(te=te.slice(0,-1*Ft*2),se=se.slice(0,-1*Ft),ie=ie.slice(0,-1*Ft)),te.push(this.productions_[Dt[1]][0]),se.push(sn.$),ie.push(sn._$),Je=ge[te[te.length-2]][te[te.length-1]],te.push(Je);break;case 3:return!0}}return!0}},W=function(){var V={EOF:1,parseError:function(ee,te){if(this.yy.parser)this.yy.parser.parseError(ee,te);else throw new Error(ee)},setInput:function(j,ee){return this.yy=ee||this.yy||{},this._input=j,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var j=this._input[0];this.yytext+=j,this.yyleng++,this.offset++,this.match+=j,this.matched+=j;var ee=j.match(/(?:\r\n?|\n).*/g);return ee?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),j},unput:function(j){var ee=j.length,te=j.split(/(?:\r\n?|\n)/g);this._input=j+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-ee),this.offset-=ee;var ne=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),te.length-1&&(this.yylineno-=te.length-1);var se=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:te?(te.length===ne.length?this.yylloc.first_column:0)+ne[ne.length-te.length].length-te[0].length:this.yylloc.first_column-ee},this.options.ranges&&(this.yylloc.range=[se[0],se[0]+this.yyleng-ee]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(j){this.unput(this.match.slice(j))},pastInput:function(){var j=this.matched.substr(0,this.matched.length-this.match.length);return(j.length>20?"...":"")+j.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var j=this.match;return j.length<20&&(j+=this._input.substr(0,20-j.length)),(j.substr(0,20)+(j.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var j=this.pastInput(),ee=new Array(j.length+1).join("-");return j+this.upcomingInput()+` +`+ee+"^"},test_match:function(j,ee){var te,ne,se;if(this.options.backtrack_lexer&&(se={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(se.yylloc.range=this.yylloc.range.slice(0))),ne=j[0].match(/(?:\r\n?|\n).*/g),ne&&(this.yylineno+=ne.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:ne?ne[ne.length-1].length-ne[ne.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+j[0].length},this.yytext+=j[0],this.match+=j[0],this.matches=j,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(j[0].length),this.matched+=j[0],te=this.performAction.call(this,this.yy,this,ee,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),te)return te;if(this._backtrack){for(var ie in se)this[ie]=se[ie];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var j,ee,te,ne;this._more||(this.yytext="",this.match="");for(var se=this._currentRules(),ie=0;ieee[0].length)){if(ee=te,ne=ie,this.options.backtrack_lexer){if(j=this.test_match(te,se[ie]),j!==!1)return j;if(this._backtrack){ee=!1;continue}else return!1}else if(!this.options.flex)break}return ee?(j=this.test_match(ee,se[ne]),j!==!1?j:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var ee=this.next();return ee||this.lex()},begin:function(ee){this.conditionStack.push(ee)},popState:function(){var ee=this.conditionStack.length-1;return ee>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(ee){return ee=this.conditionStack.length-1-Math.abs(ee||0),ee>=0?this.conditionStack[ee]:"INITIAL"},pushState:function(ee){this.begin(ee)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(ee,te,ne,se){switch(ne){case 0:return 40;case 1:return 44;case 2:return 45;case 3:return 46;case 4:return 47;case 5:break;case 6:break;case 7:return 5;case 8:break;case 9:break;case 10:break;case 11:break;case 12:return this.pushState("SCALE"),16;case 13:return 17;case 14:this.popState();break;case 15:return this.begin("acc_title"),32;case 16:return this.popState(),"acc_title_value";case 17:return this.begin("acc_descr"),34;case 18:return this.popState(),"acc_descr_value";case 19:this.begin("acc_descr_multiline");break;case 20:this.popState();break;case 21:return"acc_descr_multiline_value";case 22:return this.pushState("CLASSDEF"),37;case 23:return this.popState(),this.pushState("CLASSDEFID"),"DEFAULT_CLASSDEF_ID";case 24:return this.popState(),this.pushState("CLASSDEFID"),38;case 25:return this.popState(),39;case 26:return this.pushState("CLASS"),41;case 27:return this.popState(),this.pushState("CLASS_STYLE"),42;case 28:return this.popState(),43;case 29:return this.pushState("SCALE"),16;case 30:return 17;case 31:this.popState();break;case 32:this.pushState("STATE");break;case 33:return this.popState(),te.yytext=te.yytext.slice(0,-8).trim(),24;case 34:return this.popState(),te.yytext=te.yytext.slice(0,-8).trim(),25;case 35:return this.popState(),te.yytext=te.yytext.slice(0,-10).trim(),26;case 36:return this.popState(),te.yytext=te.yytext.slice(0,-8).trim(),24;case 37:return this.popState(),te.yytext=te.yytext.slice(0,-8).trim(),25;case 38:return this.popState(),te.yytext=te.yytext.slice(0,-10).trim(),26;case 39:return 44;case 40:return 45;case 41:return 46;case 42:return 47;case 43:this.pushState("STATE_STRING");break;case 44:return this.pushState("STATE_ID"),"AS";case 45:return this.popState(),"ID";case 46:this.popState();break;case 47:return"STATE_DESCR";case 48:return 18;case 49:this.popState();break;case 50:return this.popState(),this.pushState("struct"),19;case 51:break;case 52:return this.popState(),20;case 53:break;case 54:return this.begin("NOTE"),28;case 55:return this.popState(),this.pushState("NOTE_ID"),52;case 56:return this.popState(),this.pushState("NOTE_ID"),53;case 57:this.popState(),this.pushState("FLOATING_NOTE");break;case 58:return this.popState(),this.pushState("FLOATING_NOTE_ID"),"AS";case 59:break;case 60:return"NOTE_TEXT";case 61:return this.popState(),"ID";case 62:return this.popState(),this.pushState("NOTE_TEXT"),23;case 63:return this.popState(),te.yytext=te.yytext.substr(2).trim(),30;case 64:return this.popState(),te.yytext=te.yytext.slice(0,-8).trim(),30;case 65:return 6;case 66:return 6;case 67:return 15;case 68:return 50;case 69:return 23;case 70:return te.yytext=te.yytext.trim(),13;case 71:return 14;case 72:return 27;case 73:return 51;case 74:return 5;case 75:return"INVALID"}},rules:[/^(?:default\b)/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:[\s]+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:classDef\s+)/i,/^(?:DEFAULT\s+)/i,/^(?:\w+\s+)/i,/^(?:[^\n]*)/i,/^(?:class\s+)/i,/^(?:(\w+)+((,\s*\w+)*))/i,/^(?:[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:state\s+)/i,/^(?:.*<>)/i,/^(?:.*<>)/i,/^(?:.*<>)/i,/^(?:.*\[\[fork\]\])/i,/^(?:.*\[\[join\]\])/i,/^(?:.*\[\[choice\]\])/i,/^(?:.*direction\s+TB[^\n]*)/i,/^(?:.*direction\s+BT[^\n]*)/i,/^(?:.*direction\s+RL[^\n]*)/i,/^(?:.*direction\s+LR[^\n]*)/i,/^(?:["])/i,/^(?:\s*as\s+)/i,/^(?:[^\n\{]*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n\s\{]+)/i,/^(?:\n)/i,/^(?:\{)/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:\})/i,/^(?:[\n])/i,/^(?:note\s+)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:")/i,/^(?:\s*as\s*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n]*)/i,/^(?:\s*[^:\n\s\-]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:[\s\S]*?end note\b)/i,/^(?:stateDiagram\s+)/i,/^(?:stateDiagram-v2\s+)/i,/^(?:hide empty description\b)/i,/^(?:\[\*\])/i,/^(?:[^:\n\s\-\{]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:-->)/i,/^(?:--)/i,/^(?::::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{LINE:{rules:[9,10],inclusive:!1},struct:{rules:[9,10,22,26,32,39,40,41,42,51,52,53,54,68,69,70,71,72],inclusive:!1},FLOATING_NOTE_ID:{rules:[61],inclusive:!1},FLOATING_NOTE:{rules:[58,59,60],inclusive:!1},NOTE_TEXT:{rules:[63,64],inclusive:!1},NOTE_ID:{rules:[62],inclusive:!1},NOTE:{rules:[55,56,57],inclusive:!1},CLASS_STYLE:{rules:[28],inclusive:!1},CLASS:{rules:[27],inclusive:!1},CLASSDEFID:{rules:[25],inclusive:!1},CLASSDEF:{rules:[23,24],inclusive:!1},acc_descr_multiline:{rules:[20,21],inclusive:!1},acc_descr:{rules:[18],inclusive:!1},acc_title:{rules:[16],inclusive:!1},SCALE:{rules:[13,14,30,31],inclusive:!1},ALIAS:{rules:[],inclusive:!1},STATE_ID:{rules:[45],inclusive:!1},STATE_STRING:{rules:[46,47],inclusive:!1},FORK_STATE:{rules:[],inclusive:!1},STATE:{rules:[9,10,33,34,35,36,37,38,43,44,48,49,50],inclusive:!1},ID:{rules:[9,10],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8,10,11,12,15,17,19,22,26,29,32,50,54,65,66,67,68,69,70,71,73,74,75],inclusive:!0}}};return V}();Y.lexer=W;function Q(){this.yy={}}return Q.prototype=Y,Y.Parser=Q,new Q}();Kht.parser=Kht;const fnr=Kht,F2a="LR",$2a="TB",y5e="state",vyt="relation",U2a="classDef",z2a="applyClass",aue="default",pnr="divider",_yt="[*]",gnr="start",mnr=_yt,bnr="end",qCn="color",HCn="fill",G2a="bgFill",q2a=",";function ynr(){return{}}let vnr=F2a,v5e=[],Fse=ynr();const _nr=()=>({relations:[],states:{},documents:{}});let _5e={root:_nr()},vb=_5e.root,kle=0,VCn=0;const H2a={LINE:0,DOTTED_LINE:1},V2a={AGGREGATION:0,EXTENSION:1,COMPOSITION:2,DEPENDENCY:3},CEe=e=>JSON.parse(JSON.stringify(e)),Y2a=e=>{ut.info("Setting root doc",e),v5e=e},j2a=()=>v5e,fSe=(e,t,r)=>{if(t.stmt===vyt)fSe(e,t.state1,!0),fSe(e,t.state2,!1);else if(t.stmt===y5e&&(t.id==="[*]"?(t.id=r?e.id+"_start":e.id+"_end",t.start=r):t.id=t.id.trim()),t.doc){const a=[];let s=[],o;for(o=0;o0&&s.length>0){const u={stmt:y5e,id:ZQn(),type:"divider",doc:CEe(s)};a.push(CEe(u)),t.doc=a}t.doc.forEach(u=>fSe(t,u,!0))}},W2a=()=>(fSe({id:"root"},{id:"root",doc:v5e},!0),{id:"root",doc:v5e}),K2a=e=>{let t;e.doc?t=e.doc:t=e,ut.info(t),wnr(!0),ut.info("Extract",t),t.forEach(r=>{switch(r.stmt){case y5e:p$(r.id.trim(),r.type,r.doc,r.description,r.note,r.classes,r.styles,r.textStyles);break;case vyt:Enr(r.state1,r.state2,r.description);break;case U2a:xnr(r.id.trim(),r.classes);break;case z2a:wyt(r.id.trim(),r.styleClass);break}})},p$=function(e,t=aue,r=null,a=null,s=null,o=null,u=null,h=null){const f=e==null?void 0:e.trim();vb.states[f]===void 0?(ut.info("Adding state ",f,a),vb.states[f]={id:f,descriptions:[],type:t,doc:r,note:s,classes:[],styles:[],textStyles:[]}):(vb.states[f].doc||(vb.states[f].doc=r),vb.states[f].type||(vb.states[f].type=t)),a&&(ut.info("Setting state description",f,a),typeof a=="string"&&Zht(f,a.trim()),typeof a=="object"&&a.forEach(p=>Zht(f,p.trim()))),s&&(vb.states[f].note=s,vb.states[f].note.text=mi.sanitizeText(vb.states[f].note.text,Qt())),o&&(ut.info("Setting state classes",f,o),(typeof o=="string"?[o]:o).forEach(m=>wyt(f,m.trim()))),u&&(ut.info("Setting state styles",f,u),(typeof u=="string"?[u]:u).forEach(m=>a_a(f,m.trim()))),h&&(ut.info("Setting state styles",f,u),(typeof h=="string"?[h]:h).forEach(m=>s_a(f,m.trim())))},wnr=function(e){_5e={root:_nr()},vb=_5e.root,kle=0,Fse=ynr(),e||Mb()},Rle=function(e){return vb.states[e]},X2a=function(){return vb.states},Q2a=function(){ut.info("Documents = ",_5e)},Z2a=function(){return vb.relations};function Xht(e=""){let t=e;return e===_yt&&(kle++,t=`${gnr}${kle}`),t}function Qht(e="",t=aue){return e===_yt?gnr:t}function J2a(e=""){let t=e;return e===mnr&&(kle++,t=`${bnr}${kle}`),t}function e_a(e="",t=aue){return e===mnr?bnr:t}function t_a(e,t,r){let a=Xht(e.id.trim()),s=Qht(e.id.trim(),e.type),o=Xht(t.id.trim()),u=Qht(t.id.trim(),t.type);p$(a,s,e.doc,e.description,e.note,e.classes,e.styles,e.textStyles),p$(o,u,t.doc,t.description,t.note,t.classes,t.styles,t.textStyles),vb.relations.push({id1:a,id2:o,relationTitle:mi.sanitizeText(r,Qt())})}const Enr=function(e,t,r){if(typeof e=="object")t_a(e,t,r);else{const a=Xht(e.trim()),s=Qht(e),o=J2a(t.trim()),u=e_a(t);p$(a,s),p$(o,u),vb.relations.push({id1:a,id2:o,title:mi.sanitizeText(r,Qt())})}},Zht=function(e,t){const r=vb.states[e],a=t.startsWith(":")?t.replace(":","").trim():t;r.descriptions.push(mi.sanitizeText(a,Qt()))},n_a=function(e){return e.substring(0,1)===":"?e.substr(2).trim():e.trim()},r_a=()=>(VCn++,"divider-id-"+VCn),xnr=function(e,t=""){Fse[e]===void 0&&(Fse[e]={id:e,styles:[],textStyles:[]});const r=Fse[e];t!=null&&t.split(q2a).forEach(a=>{const s=a.replace(/([^;]*);/,"$1").trim();if(a.match(qCn)){const u=s.replace(HCn,G2a).replace(qCn,HCn);r.textStyles.push(u)}r.styles.push(s)})},i_a=function(){return Fse},wyt=function(e,t){e.split(",").forEach(function(r){let a=Rle(r);if(a===void 0){const s=r.trim();p$(s),a=Rle(s)}a.classes.push(t)})},a_a=function(e,t){const r=Rle(e);r!==void 0&&r.textStyles.push(t)},s_a=function(e,t){const r=Rle(e);r!==void 0&&r.textStyles.push(t)},o_a=()=>vnr,l_a=e=>{vnr=e},c_a=e=>e&&e[0]===":"?e.substr(1).trim():e.trim(),w7={getConfig:()=>Qt().state,addState:p$,clear:wnr,getState:Rle,getStates:X2a,getRelations:Z2a,getClasses:i_a,getDirection:o_a,addRelation:Enr,getDividerId:r_a,setDirection:l_a,cleanupLabel:n_a,lineType:H2a,relationType:V2a,logDocuments:Q2a,getRootDoc:j2a,setRootDoc:Y2a,getRootDocV2:W2a,extract:K2a,trimColon:c_a,getAccTitle:Ev,setAccTitle:Pb,getAccDescription:Sv,setAccDescription:xv,addStyleClass:xnr,setCssClass:wyt,addDescription:Zht,setDiagramTitle:Zw,getDiagramTitle:Tv},u_a=e=>` +defs #statediagram-barbEnd { + fill: ${e.transitionColor}; + stroke: ${e.transitionColor}; + } +g.stateGroup text { + fill: ${e.nodeBorder}; + stroke: none; + font-size: 10px; +} +g.stateGroup text { + fill: ${e.textColor}; + stroke: none; + font-size: 10px; + +} +g.stateGroup .state-title { + font-weight: bolder; + fill: ${e.stateLabelColor}; +} + +g.stateGroup rect { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; +} + +g.stateGroup line { + stroke: ${e.lineColor}; + stroke-width: 1; +} + +.transition { + stroke: ${e.transitionColor}; + stroke-width: 1; + fill: none; +} + +.stateGroup .composit { + fill: ${e.background}; + border-bottom: 1px +} + +.stateGroup .alt-composit { + fill: #e0e0e0; + border-bottom: 1px +} + +.state-note { + stroke: ${e.noteBorderColor}; + fill: ${e.noteBkgColor}; + + text { + fill: ${e.noteTextColor}; + stroke: none; + font-size: 10px; + } +} + +.stateLabel .box { + stroke: none; + stroke-width: 0; + fill: ${e.mainBkg}; + opacity: 0.5; +} + +.edgeLabel .label rect { + fill: ${e.labelBackgroundColor}; + opacity: 0.5; +} +.edgeLabel .label text { + fill: ${e.transitionLabelColor||e.tertiaryTextColor}; +} +.label div .edgeLabel { + color: ${e.transitionLabelColor||e.tertiaryTextColor}; +} + +.stateLabel text { + fill: ${e.stateLabelColor}; + font-size: 10px; + font-weight: bold; +} + +.node circle.state-start { + fill: ${e.specialStateColor}; + stroke: ${e.specialStateColor}; +} + +.node .fork-join { + fill: ${e.specialStateColor}; + stroke: ${e.specialStateColor}; +} + +.node circle.state-end { + fill: ${e.innerEndBackground}; + stroke: ${e.background}; + stroke-width: 1.5 +} +.end-state-inner { + fill: ${e.compositeBackground||e.background}; + // stroke: ${e.background}; + stroke-width: 1.5 +} + +.node rect { + fill: ${e.stateBkg||e.mainBkg}; + stroke: ${e.stateBorder||e.nodeBorder}; + stroke-width: 1px; +} +.node polygon { + fill: ${e.mainBkg}; + stroke: ${e.stateBorder||e.nodeBorder};; + stroke-width: 1px; +} +#statediagram-barbEnd { + fill: ${e.lineColor}; +} + +.statediagram-cluster rect { + fill: ${e.compositeTitleBackground}; + stroke: ${e.stateBorder||e.nodeBorder}; + stroke-width: 1px; +} + +.cluster-label, .nodeLabel { + color: ${e.stateLabelColor}; +} + +.statediagram-cluster rect.outer { + rx: 5px; + ry: 5px; +} +.statediagram-state .divider { + stroke: ${e.stateBorder||e.nodeBorder}; +} + +.statediagram-state .title-state { + rx: 5px; + ry: 5px; +} +.statediagram-cluster.statediagram-cluster .inner { + fill: ${e.compositeBackground||e.background}; +} +.statediagram-cluster.statediagram-cluster-alt .inner { + fill: ${e.altBackground?e.altBackground:"#efefef"}; +} + +.statediagram-cluster .inner { + rx:0; + ry:0; +} + +.statediagram-state rect.basic { + rx: 5px; + ry: 5px; +} +.statediagram-state rect.divider { + stroke-dasharray: 10,10; + fill: ${e.altBackground?e.altBackground:"#efefef"}; +} + +.note-edge { + stroke-dasharray: 5; +} + +.statediagram-note rect { + fill: ${e.noteBkgColor}; + stroke: ${e.noteBorderColor}; + stroke-width: 1px; + rx: 0; + ry: 0; +} +.statediagram-note rect { + fill: ${e.noteBkgColor}; + stroke: ${e.noteBorderColor}; + stroke-width: 1px; + rx: 0; + ry: 0; +} + +.statediagram-note text { + fill: ${e.noteTextColor}; +} + +.statediagram-note .nodeLabel { + color: ${e.noteTextColor}; +} +.statediagram .edgeLabel { + color: red; // ${e.noteTextColor}; +} + +#dependencyStart, #dependencyEnd { + fill: ${e.lineColor}; + stroke: ${e.lineColor}; + stroke-width: 1; +} + +.statediagramTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; +} +`,Snr=u_a,h_a=e=>e.append("circle").attr("class","start-state").attr("r",Qt().state.sizeUnit).attr("cx",Qt().state.padding+Qt().state.sizeUnit).attr("cy",Qt().state.padding+Qt().state.sizeUnit),d_a=e=>e.append("line").style("stroke","grey").style("stroke-dasharray","3").attr("x1",Qt().state.textHeight).attr("class","divider").attr("x2",Qt().state.textHeight*2).attr("y1",0).attr("y2",0),f_a=(e,t)=>{const r=e.append("text").attr("x",2*Qt().state.padding).attr("y",Qt().state.textHeight+2*Qt().state.padding).attr("font-size",Qt().state.fontSize).attr("class","state-title").text(t.id),a=r.node().getBBox();return e.insert("rect",":first-child").attr("x",Qt().state.padding).attr("y",Qt().state.padding).attr("width",a.width+2*Qt().state.padding).attr("height",a.height+2*Qt().state.padding).attr("rx",Qt().state.radius),r},p_a=(e,t)=>{const r=function(_,w,S){const C=_.append("tspan").attr("x",2*Qt().state.padding).text(w);S||C.attr("dy",Qt().state.textHeight)},s=e.append("text").attr("x",2*Qt().state.padding).attr("y",Qt().state.textHeight+1.3*Qt().state.padding).attr("font-size",Qt().state.fontSize).attr("class","state-title").text(t.descriptions[0]).node().getBBox(),o=s.height,u=e.append("text").attr("x",Qt().state.padding).attr("y",o+Qt().state.padding*.4+Qt().state.dividerMargin+Qt().state.textHeight).attr("class","state-description");let h=!0,f=!0;t.descriptions.forEach(function(_){h||(r(u,_,f),f=!1),h=!1});const p=e.append("line").attr("x1",Qt().state.padding).attr("y1",Qt().state.padding+o+Qt().state.dividerMargin/2).attr("y2",Qt().state.padding+o+Qt().state.dividerMargin/2).attr("class","descr-divider"),m=u.node().getBBox(),b=Math.max(m.width,s.width);return p.attr("x2",b+3*Qt().state.padding),e.insert("rect",":first-child").attr("x",Qt().state.padding).attr("y",Qt().state.padding).attr("width",b+2*Qt().state.padding).attr("height",m.height+o+2*Qt().state.padding).attr("rx",Qt().state.radius),e},g_a=(e,t,r)=>{const a=Qt().state.padding,s=2*Qt().state.padding,o=e.node().getBBox(),u=o.width,h=o.x,f=e.append("text").attr("x",0).attr("y",Qt().state.titleShift).attr("font-size",Qt().state.fontSize).attr("class","state-title").text(t.id),m=f.node().getBBox().width+s;let b=Math.max(m,u);b===u&&(b=b+s);let _;const w=e.node().getBBox();t.doc,_=h-a,m>u&&(_=(u-b)/2+a),Math.abs(h-w.x)u&&(_=h-(m-u)/2);const S=1-Qt().state.textHeight;return e.insert("rect",":first-child").attr("x",_).attr("y",S).attr("class",r?"alt-composit":"composit").attr("width",b).attr("height",w.height+Qt().state.textHeight+Qt().state.titleShift+1).attr("rx","0"),f.attr("x",_+a),m<=u&&f.attr("x",h+(b-s)/2-m/2+a),e.insert("rect",":first-child").attr("x",_).attr("y",Qt().state.titleShift-Qt().state.textHeight-Qt().state.padding).attr("width",b).attr("height",Qt().state.textHeight*3).attr("rx",Qt().state.radius),e.insert("rect",":first-child").attr("x",_).attr("y",Qt().state.titleShift-Qt().state.textHeight-Qt().state.padding).attr("width",b).attr("height",w.height+3+2*Qt().state.textHeight).attr("rx",Qt().state.radius),e},m_a=e=>(e.append("circle").attr("class","end-state-outer").attr("r",Qt().state.sizeUnit+Qt().state.miniPadding).attr("cx",Qt().state.padding+Qt().state.sizeUnit+Qt().state.miniPadding).attr("cy",Qt().state.padding+Qt().state.sizeUnit+Qt().state.miniPadding),e.append("circle").attr("class","end-state-inner").attr("r",Qt().state.sizeUnit).attr("cx",Qt().state.padding+Qt().state.sizeUnit+2).attr("cy",Qt().state.padding+Qt().state.sizeUnit+2)),b_a=(e,t)=>{let r=Qt().state.forkWidth,a=Qt().state.forkHeight;if(t.parentId){let s=r;r=a,a=s}return e.append("rect").style("stroke","black").style("fill","black").attr("width",r).attr("height",a).attr("x",Qt().state.padding).attr("y",Qt().state.padding)},y_a=(e,t,r,a)=>{let s=0;const o=a.append("text");o.style("text-anchor","start"),o.attr("class","noteText");let u=e.replace(/\r\n/g,"
    ");u=u.replace(/\n/g,"
    ");const h=u.split(mi.lineBreakRegex);let f=1.25*Qt().state.noteMargin;for(const p of h){const m=p.trim();if(m.length>0){const b=o.append("tspan");if(b.text(m),f===0){const _=b.node().getBBox();f+=_.height}s+=f,b.attr("x",t+Qt().state.noteMargin),b.attr("y",r+s+1.25*Qt().state.noteMargin)}}return{textWidth:o.node().getBBox().width,textHeight:s}},v_a=(e,t)=>{t.attr("class","state-note");const r=t.append("rect").attr("x",0).attr("y",Qt().state.padding),a=t.append("g"),{textWidth:s,textHeight:o}=y_a(e,0,0,a);return r.attr("height",o+2*Qt().state.noteMargin),r.attr("width",s+Qt().state.noteMargin*2),r},YCn=function(e,t){const r=t.id,a={id:r,label:t.id,width:0,height:0},s=e.append("g").attr("id",r).attr("class","stateGroup");t.type==="start"&&h_a(s),t.type==="end"&&m_a(s),(t.type==="fork"||t.type==="join")&&b_a(s,t),t.type==="note"&&v_a(t.note.text,s),t.type==="divider"&&d_a(s),t.type==="default"&&t.descriptions.length===0&&f_a(s,t),t.type==="default"&&t.descriptions.length>0&&p_a(s,t);const o=s.node().getBBox();return a.width=o.width+2*Qt().state.padding,a.height=o.height+2*Qt().state.padding,a};let jCn=0;const __a=function(e,t,r){const a=function(f){switch(f){case w7.relationType.AGGREGATION:return"aggregation";case w7.relationType.EXTENSION:return"extension";case w7.relationType.COMPOSITION:return"composition";case w7.relationType.DEPENDENCY:return"dependency"}};t.points=t.points.filter(f=>!Number.isNaN(f.y));const s=t.points,o=r_().x(function(f){return f.x}).y(function(f){return f.y}).curve(j3),u=e.append("path").attr("d",o(s)).attr("id","edge"+jCn).attr("class","transition");let h="";if(Qt().state.arrowMarkerAbsolute&&(h=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,h=h.replace(/\(/g,"\\("),h=h.replace(/\)/g,"\\)")),u.attr("marker-end","url("+h+"#"+a(w7.relationType.DEPENDENCY)+"End)"),r.title!==void 0){const f=e.append("g").attr("class","stateLabel"),{x:p,y:m}=il.calcLabelPosition(t.points),b=mi.getRows(r.title);let _=0;const w=[];let S=0,C=0;for(let I=0;I<=b.length;I++){const N=f.append("text").attr("text-anchor","middle").text(b[I]).attr("x",p).attr("y",m+_),L=N.node().getBBox();S=Math.max(S,L.width),C=Math.min(C,L.x),ut.info(L.x,p,m+_),_===0&&(_=N.node().getBBox().height,ut.info("Title height",_,m)),w.push(N)}let A=_*b.length;if(b.length>1){const I=(b.length-1)*_*.5;w.forEach((N,L)=>N.attr("y",m+L*_-I)),A=_*b.length}const k=f.node().getBBox();f.insert("rect",":first-child").attr("class","box").attr("x",p-S/2-Qt().state.padding/2).attr("y",m-A/2-Qt().state.padding/2-3.5).attr("width",S+Qt().state.padding).attr("height",A+Qt().state.padding),ut.info(k)}jCn++};let kw;const Iat={},w_a=function(){},E_a=function(e){e.append("defs").append("marker").attr("id","dependencyEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z")},x_a=function(e,t,r,a){kw=Qt().state;const s=Qt().securityLevel;let o;s==="sandbox"&&(o=gn("#i"+t));const u=gn(s==="sandbox"?o.nodes()[0].contentDocument.body:"body"),h=s==="sandbox"?o.nodes()[0].contentDocument:document;ut.debug("Rendering diagram "+e);const f=u.select(`[id='${t}']`);E_a(f);const p=a.db.getRootDoc();Tnr(p,f,void 0,!1,u,h,a);const m=kw.padding,b=f.node().getBBox(),_=b.width+m*2,w=b.height+m*2,S=_*1.75;Db(f,w,S,kw.useMaxWidth),f.attr("viewBox",`${b.x-kw.padding} ${b.y-kw.padding} `+_+" "+w)},S_a=e=>e?e.length*kw.fontSizeFactor:1,Tnr=(e,t,r,a,s,o,u)=>{const h=new F1({compound:!0,multigraph:!0});let f,p=!0;for(f=0;f{const L=N.parentElement;let P=0,M=0;L&&(L.parentElement&&(P=L.parentElement.getBBox().width),M=parseInt(L.getAttribute("data-x-shift"),10),Number.isNaN(M)&&(M=0)),N.setAttribute("x1",0-M+8),N.setAttribute("x2",P-M-8)})):ut.debug("No Node "+k+": "+JSON.stringify(h.node(k)))});let C=S.getBBox();h.edges().forEach(function(k){k!==void 0&&h.edge(k)!==void 0&&(ut.debug("Edge "+k.v+" -> "+k.w+": "+JSON.stringify(h.edge(k))),__a(t,h.edge(k),h.edge(k).relation))}),C=S.getBBox();const A={id:r||"root",label:r||"root",width:0,height:0};return A.width=C.width+2*kw.padding,A.height=C.height+2*kw.padding,ut.debug("Doc rendered",A,h),A},T_a={setConf:w_a,draw:x_a},C_a={parser:fnr,db:w7,renderer:T_a,styles:Snr,init:e=>{e.state||(e.state={}),e.state.arrowMarkerAbsolute=e.arrowMarkerAbsolute,w7.clear()}},A_a=Object.freeze(Object.defineProperty({__proto__:null,diagram:C_a},Symbol.toStringTag,{value:"Module"})),pSe="rect",Nat="rectWithTitle",k_a="start",R_a="end",I_a="divider",N_a="roundedWithTitle",O_a="note",L_a="noteGroup",dW="statediagram",D_a="state",M_a=`${dW}-${D_a}`,Cnr="transition",P_a="note",B_a="note-edge",F_a=`${Cnr} ${B_a}`,$_a=`${dW}-${P_a}`,U_a="cluster",z_a=`${dW}-${U_a}`,G_a="cluster-alt",q_a=`${dW}-${G_a}`,Anr="parent",knr="note",H_a="state",Eyt="----",V_a=`${Eyt}${knr}`,WCn=`${Eyt}${Anr}`,Rnr="fill:none",Inr="fill: #333",Nnr="c",Onr="text",Lnr="normal";let gSe={},aO=0;const Y_a=function(e){const t=Object.keys(e);for(const r of t)e[r]},j_a=function(e,t){return t.db.extract(t.db.getRootDocV2()),t.db.getClasses()};function W_a(e){return e==null?"":e.classes?e.classes.join(" "):""}function Oat(e="",t=0,r="",a=Eyt){const s=r!==null&&r.length>0?`${a}${r}`:"";return`${H_a}-${e}${s}-${t}`}const qae=(e,t,r,a,s,o)=>{const u=r.id,h=W_a(a[u]);if(u!=="root"){let f=pSe;r.start===!0&&(f=k_a),r.start===!1&&(f=R_a),r.type!==aue&&(f=r.type),gSe[u]||(gSe[u]={id:u,shape:f,description:mi.sanitizeText(u,Qt()),classes:`${h} ${M_a}`});const p=gSe[u];r.description&&(Array.isArray(p.description)?(p.shape=Nat,p.description.push(r.description)):p.description.length>0?(p.shape=Nat,p.description===u?p.description=[r.description]:p.description=[p.description,r.description]):(p.shape=pSe,p.description=r.description),p.description=mi.sanitizeTextOrArray(p.description,Qt())),p.description.length===1&&p.shape===Nat&&(p.shape=pSe),!p.type&&r.doc&&(ut.info("Setting cluster for ",u,Jht(r)),p.type="group",p.dir=Jht(r),p.shape=r.type===pnr?I_a:N_a,p.classes=p.classes+" "+z_a+" "+(o?q_a:""));const m={labelStyle:"",shape:p.shape,labelText:p.description,classes:p.classes,style:"",id:u,dir:p.dir,domId:Oat(u,aO),type:p.type,padding:15};if(m.centerLabel=!0,r.note){const b={labelStyle:"",shape:O_a,labelText:r.note.text,classes:$_a,style:"",id:u+V_a+"-"+aO,domId:Oat(u,aO,knr),type:p.type,padding:15},_={labelStyle:"",shape:L_a,labelText:r.note.text,classes:p.classes,style:"",id:u+WCn,domId:Oat(u,aO,Anr),type:"group",padding:0};aO++;const w=u+WCn;e.setNode(w,_),e.setNode(b.id,b),e.setNode(u,m),e.setParent(u,w),e.setParent(b.id,w);let S=u,C=b.id;r.note.position==="left of"&&(S=b.id,C=u),e.setEdge(S,C,{arrowhead:"none",arrowType:"",style:Rnr,labelStyle:"",classes:F_a,arrowheadStyle:Inr,labelpos:Nnr,labelType:Onr,thickness:Lnr})}else e.setNode(u,m)}t&&t.id!=="root"&&(ut.trace("Setting node ",u," to be child of its parent ",t.id),e.setParent(u,t.id)),r.doc&&(ut.trace("Adding nodes children "),K_a(e,r,r.doc,a,s,!o))},K_a=(e,t,r,a,s,o)=>{ut.trace("items",r),r.forEach(u=>{switch(u.stmt){case y5e:qae(e,t,u,a,s,o);break;case aue:qae(e,t,u,a,s,o);break;case vyt:{qae(e,t,u.state1,a,s,o),qae(e,t,u.state2,a,s,o);const h={id:"edge"+aO,arrowhead:"normal",arrowTypeEnd:"arrow_barb",style:Rnr,labelStyle:"",label:mi.sanitizeText(u.description,Qt()),arrowheadStyle:Inr,labelpos:Nnr,labelType:Onr,thickness:Lnr,classes:Cnr};e.setEdge(u.state1.id,u.state2.id,h,aO),aO++}break}})},Jht=(e,t=$2a)=>{let r=t;if(e.doc)for(let a=0;a{e.state||(e.state={}),e.state.arrowMarkerAbsolute=e.arrowMarkerAbsolute,w7.clear()}},J_a=Object.freeze(Object.defineProperty({__proto__:null,diagram:Z_a},Symbol.toStringTag,{value:"Module"}));var edt=function(){var e=function(b,_,w,S){for(w=w||{},S=b.length;S--;w[b[S]]=_);return w},t=[6,8,10,11,12,14,16,17,18],r=[1,9],a=[1,10],s=[1,11],o=[1,12],u=[1,13],h=[1,14],f={trace:function(){},yy:{},symbols_:{error:2,start:3,journey:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NEWLINE:10,title:11,acc_title:12,acc_title_value:13,acc_descr:14,acc_descr_value:15,acc_descr_multiline_value:16,section:17,taskName:18,taskData:19,$accept:0,$end:1},terminals_:{2:"error",4:"journey",6:"EOF",8:"SPACE",10:"NEWLINE",11:"title",12:"acc_title",13:"acc_title_value",14:"acc_descr",15:"acc_descr_value",16:"acc_descr_multiline_value",17:"section",18:"taskName",19:"taskData"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[9,1],[9,2],[9,2],[9,1],[9,1],[9,2]],performAction:function(_,w,S,C,A,k,I){var N=k.length-1;switch(A){case 1:return k[N-1];case 2:this.$=[];break;case 3:k[N-1].push(k[N]),this.$=k[N-1];break;case 4:case 5:this.$=k[N];break;case 6:case 7:this.$=[];break;case 8:C.setDiagramTitle(k[N].substr(6)),this.$=k[N].substr(6);break;case 9:this.$=k[N].trim(),C.setAccTitle(this.$);break;case 10:case 11:this.$=k[N].trim(),C.setAccDescription(this.$);break;case 12:C.addSection(k[N].substr(8)),this.$=k[N].substr(8);break;case 13:C.addTask(k[N-1],k[N]),this.$="task";break}},table:[{3:1,4:[1,2]},{1:[3]},e(t,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:r,12:a,14:s,16:o,17:u,18:h},e(t,[2,7],{1:[2,1]}),e(t,[2,3]),{9:15,11:r,12:a,14:s,16:o,17:u,18:h},e(t,[2,5]),e(t,[2,6]),e(t,[2,8]),{13:[1,16]},{15:[1,17]},e(t,[2,11]),e(t,[2,12]),{19:[1,18]},e(t,[2,4]),e(t,[2,9]),e(t,[2,10]),e(t,[2,13])],defaultActions:{},parseError:function(_,w){if(w.recoverable)this.trace(_);else{var S=new Error(_);throw S.hash=w,S}},parse:function(_){var w=this,S=[0],C=[],A=[null],k=[],I=this.table,N="",L=0,P=0,M=2,F=1,U=k.slice.call(arguments,1),$=Object.create(this.lexer),G={yy:{}};for(var B in this.yy)Object.prototype.hasOwnProperty.call(this.yy,B)&&(G.yy[B]=this.yy[B]);$.setInput(_,G.yy),G.yy.lexer=$,G.yy.parser=this,typeof $.yylloc>"u"&&($.yylloc={});var Z=$.yylloc;k.push(Z);var z=$.options&&$.options.ranges;typeof G.yy.parseError=="function"?this.parseError=G.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function Y(){var ce;return ce=C.pop()||$.lex()||F,typeof ce!="number"&&(ce instanceof Array&&(C=ce,ce=C.pop()),ce=w.symbols_[ce]||ce),ce}for(var W,Q,V,j,ee={},te,ne,se,ie;;){if(Q=S[S.length-1],this.defaultActions[Q]?V=this.defaultActions[Q]:((W===null||typeof W>"u")&&(W=Y()),V=I[Q]&&I[Q][W]),typeof V>"u"||!V.length||!V[0]){var ge="";ie=[];for(te in I[Q])this.terminals_[te]&&te>M&&ie.push("'"+this.terminals_[te]+"'");$.showPosition?ge="Parse error on line "+(L+1)+`: +`+$.showPosition()+` +Expecting `+ie.join(", ")+", got '"+(this.terminals_[W]||W)+"'":ge="Parse error on line "+(L+1)+": Unexpected "+(W==F?"end of input":"'"+(this.terminals_[W]||W)+"'"),this.parseError(ge,{text:$.match,token:this.terminals_[W]||W,line:$.yylineno,loc:Z,expected:ie})}if(V[0]instanceof Array&&V.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Q+", token: "+W);switch(V[0]){case 1:S.push(W),A.push($.yytext),k.push($.yylloc),S.push(V[1]),W=null,P=$.yyleng,N=$.yytext,L=$.yylineno,Z=$.yylloc;break;case 2:if(ne=this.productions_[V[1]][1],ee.$=A[A.length-ne],ee._$={first_line:k[k.length-(ne||1)].first_line,last_line:k[k.length-1].last_line,first_column:k[k.length-(ne||1)].first_column,last_column:k[k.length-1].last_column},z&&(ee._$.range=[k[k.length-(ne||1)].range[0],k[k.length-1].range[1]]),j=this.performAction.apply(ee,[N,P,L,G.yy,V[1],A,k].concat(U)),typeof j<"u")return j;ne&&(S=S.slice(0,-1*ne*2),A=A.slice(0,-1*ne),k=k.slice(0,-1*ne)),S.push(this.productions_[V[1]][0]),A.push(ee.$),k.push(ee._$),se=I[S[S.length-2]][S[S.length-1]],S.push(se);break;case 3:return!0}}return!0}},p=function(){var b={EOF:1,parseError:function(w,S){if(this.yy.parser)this.yy.parser.parseError(w,S);else throw new Error(w)},setInput:function(_,w){return this.yy=w||this.yy||{},this._input=_,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var _=this._input[0];this.yytext+=_,this.yyleng++,this.offset++,this.match+=_,this.matched+=_;var w=_.match(/(?:\r\n?|\n).*/g);return w?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),_},unput:function(_){var w=_.length,S=_.split(/(?:\r\n?|\n)/g);this._input=_+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-w),this.offset-=w;var C=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),S.length-1&&(this.yylineno-=S.length-1);var A=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:S?(S.length===C.length?this.yylloc.first_column:0)+C[C.length-S.length].length-S[0].length:this.yylloc.first_column-w},this.options.ranges&&(this.yylloc.range=[A[0],A[0]+this.yyleng-w]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(_){this.unput(this.match.slice(_))},pastInput:function(){var _=this.matched.substr(0,this.matched.length-this.match.length);return(_.length>20?"...":"")+_.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var _=this.match;return _.length<20&&(_+=this._input.substr(0,20-_.length)),(_.substr(0,20)+(_.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var _=this.pastInput(),w=new Array(_.length+1).join("-");return _+this.upcomingInput()+` +`+w+"^"},test_match:function(_,w){var S,C,A;if(this.options.backtrack_lexer&&(A={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(A.yylloc.range=this.yylloc.range.slice(0))),C=_[0].match(/(?:\r\n?|\n).*/g),C&&(this.yylineno+=C.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:C?C[C.length-1].length-C[C.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+_[0].length},this.yytext+=_[0],this.match+=_[0],this.matches=_,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(_[0].length),this.matched+=_[0],S=this.performAction.call(this,this.yy,this,w,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),S)return S;if(this._backtrack){for(var k in A)this[k]=A[k];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var _,w,S,C;this._more||(this.yytext="",this.match="");for(var A=this._currentRules(),k=0;kw[0].length)){if(w=S,C=k,this.options.backtrack_lexer){if(_=this.test_match(S,A[k]),_!==!1)return _;if(this._backtrack){w=!1;continue}else return!1}else if(!this.options.flex)break}return w?(_=this.test_match(w,A[C]),_!==!1?_:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var w=this.next();return w||this.lex()},begin:function(w){this.conditionStack.push(w)},popState:function(){var w=this.conditionStack.length-1;return w>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(w){return w=this.conditionStack.length-1-Math.abs(w||0),w>=0?this.conditionStack[w]:"INITIAL"},pushState:function(w){this.begin(w)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(w,S,C,A){switch(C){case 0:break;case 1:break;case 2:return 10;case 3:break;case 4:break;case 5:return 4;case 6:return 11;case 7:return this.begin("acc_title"),12;case 8:return this.popState(),"acc_title_value";case 9:return this.begin("acc_descr"),14;case 10:return this.popState(),"acc_descr_value";case 11:this.begin("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:return 17;case 15:return 18;case 16:return 19;case 17:return":";case 18:return 6;case 19:return"INVALID"}},rules:[/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:journey\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:section\s[^#:\n;]+)/i,/^(?:[^#:\n;]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,9,11,14,15,16,17,18,19],inclusive:!0}}};return b}();f.lexer=p;function m(){this.yy={}}return m.prototype=f,f.Parser=m,new m}();edt.parser=edt;const ewa=edt;let fW="";const xyt=[],Ile=[],Nle=[],twa=function(){xyt.length=0,Ile.length=0,fW="",Nle.length=0,Mb()},nwa=function(e){fW=e,xyt.push(e)},rwa=function(){return xyt},iwa=function(){let e=KCn();const t=100;let r=0;for(;!e&&r{r.people&&e.push(...r.people)}),[...new Set(e)].sort()},swa=function(e,t){const r=t.substr(1).split(":");let a=0,s=[];r.length===1?(a=Number(r[0]),s=[]):(a=Number(r[0]),s=r[1].split(","));const o=s.map(h=>h.trim()),u={section:fW,type:fW,people:o,task:e,score:a};Nle.push(u)},owa=function(e){const t={section:fW,type:fW,description:e,task:e,classes:[]};Ile.push(t)},KCn=function(){const e=function(r){return Nle[r].processed};let t=!0;for(const[r,a]of Nle.entries())e(r),t=t&&a.processed;return t},lwa=function(){return awa()},XCn={getConfig:()=>Qt().journey,clear:twa,setDiagramTitle:Zw,getDiagramTitle:Tv,setAccTitle:Pb,getAccTitle:Ev,setAccDescription:xv,getAccDescription:Sv,addSection:nwa,getSections:rwa,getTasks:iwa,addTask:swa,addTaskOrg:owa,getActors:lwa},cwa=e=>`.label { + font-family: 'trebuchet ms', verdana, arial, sans-serif; + font-family: var(--mermaid-font-family); + color: ${e.textColor}; + } + .mouth { + stroke: #666; + } + + line { + stroke: ${e.textColor} + } + + .legend { + fill: ${e.textColor}; + } + + .label text { + fill: #333; + } + .label { + color: ${e.textColor} + } + + .face { + ${e.faceColor?`fill: ${e.faceColor}`:"fill: #FFF8DC"}; + stroke: #999; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + + .node .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + .arrowheadPath { + fill: ${e.arrowheadColor}; + } + + .edgePath .path { + stroke: ${e.lineColor}; + stroke-width: 1.5px; + } + + .flowchart-link { + stroke: ${e.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${e.edgeLabelBackground}; + rect { + opacity: 0.5; + } + text-align: center; + } + + .cluster rect { + } + + .cluster text { + fill: ${e.titleColor}; + } + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: 'trebuchet ms', verdana, arial, sans-serif; + font-family: var(--mermaid-font-family); + font-size: 12px; + background: ${e.tertiaryColor}; + border: 1px solid ${e.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .task-type-0, .section-type-0 { + ${e.fillType0?`fill: ${e.fillType0}`:""}; + } + .task-type-1, .section-type-1 { + ${e.fillType0?`fill: ${e.fillType1}`:""}; + } + .task-type-2, .section-type-2 { + ${e.fillType0?`fill: ${e.fillType2}`:""}; + } + .task-type-3, .section-type-3 { + ${e.fillType0?`fill: ${e.fillType3}`:""}; + } + .task-type-4, .section-type-4 { + ${e.fillType0?`fill: ${e.fillType4}`:""}; + } + .task-type-5, .section-type-5 { + ${e.fillType0?`fill: ${e.fillType5}`:""}; + } + .task-type-6, .section-type-6 { + ${e.fillType0?`fill: ${e.fillType6}`:""}; + } + .task-type-7, .section-type-7 { + ${e.fillType0?`fill: ${e.fillType7}`:""}; + } + + .actor-0 { + ${e.actor0?`fill: ${e.actor0}`:""}; + } + .actor-1 { + ${e.actor1?`fill: ${e.actor1}`:""}; + } + .actor-2 { + ${e.actor2?`fill: ${e.actor2}`:""}; + } + .actor-3 { + ${e.actor3?`fill: ${e.actor3}`:""}; + } + .actor-4 { + ${e.actor4?`fill: ${e.actor4}`:""}; + } + .actor-5 { + ${e.actor5?`fill: ${e.actor5}`:""}; + } +`,uwa=cwa,Syt=function(e,t){return d6e(e,t)},hwa=function(e,t){const a=e.append("circle").attr("cx",t.cx).attr("cy",t.cy).attr("class","face").attr("r",15).attr("stroke-width",2).attr("overflow","visible"),s=e.append("g");s.append("circle").attr("cx",t.cx-15/3).attr("cy",t.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666"),s.append("circle").attr("cx",t.cx+15/3).attr("cy",t.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666");function o(f){const p=_S().startAngle(Math.PI/2).endAngle(3*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);f.append("path").attr("class","mouth").attr("d",p).attr("transform","translate("+t.cx+","+(t.cy+2)+")")}function u(f){const p=_S().startAngle(3*Math.PI/2).endAngle(5*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);f.append("path").attr("class","mouth").attr("d",p).attr("transform","translate("+t.cx+","+(t.cy+7)+")")}function h(f){f.append("line").attr("class","mouth").attr("stroke",2).attr("x1",t.cx-5).attr("y1",t.cy+7).attr("x2",t.cx+5).attr("y2",t.cy+7).attr("class","mouth").attr("stroke-width","1px").attr("stroke","#666")}return t.score>3?o(s):t.score<3?u(s):h(s),a},Dnr=function(e,t){const r=e.append("circle");return r.attr("cx",t.cx),r.attr("cy",t.cy),r.attr("class","actor-"+t.pos),r.attr("fill",t.fill),r.attr("stroke",t.stroke),r.attr("r",t.r),r.class!==void 0&&r.attr("class",r.class),t.title!==void 0&&r.append("title").text(t.title),r},Mnr=function(e,t){return Cca(e,t)},dwa=function(e,t){function r(s,o,u,h,f){return s+","+o+" "+(s+u)+","+o+" "+(s+u)+","+(o+h-f)+" "+(s+u-f*1.2)+","+(o+h)+" "+s+","+(o+h)}const a=e.append("polygon");a.attr("points",r(t.x,t.y,50,20,7)),a.attr("class","labelBox"),t.y=t.y+t.labelMargin,t.x=t.x+.5*t.labelMargin,Mnr(e,t)},fwa=function(e,t,r){const a=e.append("g"),s=eU();s.x=t.x,s.y=t.y,s.fill=t.fill,s.width=r.width*t.taskCount+r.diagramMarginX*(t.taskCount-1),s.height=r.height,s.class="journey-section section-type-"+t.num,s.rx=3,s.ry=3,Syt(a,s),Pnr(r)(t.text,a,s.x,s.y,s.width,s.height,{class:"journey-section section-type-"+t.num},r,t.colour)};let QCn=-1;const pwa=function(e,t,r){const a=t.x+r.width/2,s=e.append("g");QCn++;const o=300+5*30;s.append("line").attr("id","task"+QCn).attr("x1",a).attr("y1",t.y).attr("x2",a).attr("y2",o).attr("class","task-line").attr("stroke-width","1px").attr("stroke-dasharray","4 2").attr("stroke","#666"),hwa(s,{cx:a,cy:300+(5-t.score)*30,score:t.score});const u=eU();u.x=t.x,u.y=t.y,u.fill=t.fill,u.width=r.width,u.height=r.height,u.class="task task-type-"+t.num,u.rx=3,u.ry=3,Syt(s,u);let h=t.x+14;t.people.forEach(f=>{const p=t.actors[f].color,m={cx:h,cy:t.y,r:7,fill:p,stroke:"#000",title:f,pos:t.actors[f].position};Dnr(s,m),h+=10}),Pnr(r)(t.task,s,u.x,u.y,u.width,u.height,{class:"task"},r,t.colour)},gwa=function(e,t){bJn(e,t)},Pnr=function(){function e(s,o,u,h,f,p,m,b){const _=o.append("text").attr("x",u+f/2).attr("y",h+p/2+5).style("font-color",b).style("text-anchor","middle").text(s);a(_,m)}function t(s,o,u,h,f,p,m,b,_){const{taskFontSize:w,taskFontFamily:S}=b,C=s.split(//gi);for(let A=0;A{const s=D7[a].color,o={cx:20,cy:r,r:7,fill:s,stroke:"#000",pos:D7[a].position};Ole.drawCircle(e,o);const u={x:40,y:r+7,fill:"#666",text:a,textMargin:t.boxTextMargin|5};Ole.drawText(e,u),r+=20})}const T6e=Qt().journey,HB=T6e.leftMargin,vwa=function(e,t,r,a){const s=Qt().journey,o=Qt().securityLevel;let u;o==="sandbox"&&(u=gn("#i"+t));const h=gn(o==="sandbox"?u.nodes()[0].contentDocument.body:"body");Wx.init();const f=h.select("#"+t);Ole.initGraphics(f);const p=a.db.getTasks(),m=a.db.getDiagramTitle(),b=a.db.getActors();for(const k in D7)delete D7[k];let _=0;b.forEach(k=>{D7[k]={color:s.actorColours[_%s.actorColours.length],position:_},_++}),ywa(f),Wx.insert(0,0,HB,Object.keys(D7).length*50),_wa(f,p,0);const w=Wx.getBounds();m&&f.append("text").text(m).attr("x",HB).attr("font-size","4ex").attr("font-weight","bold").attr("y",25);const S=w.stopy-w.starty+2*s.diagramMarginY,C=HB+w.stopx+2*s.diagramMarginX;Db(f,S,C,s.useMaxWidth),f.append("line").attr("x1",HB).attr("y1",s.height*4).attr("x2",C-HB-4).attr("y2",s.height*4).attr("stroke-width",4).attr("stroke","black").attr("marker-end","url(#arrowhead)");const A=m?70:0;f.attr("viewBox",`${w.startx} -25 ${C} ${S+A}`),f.attr("preserveAspectRatio","xMinYMin meet"),f.attr("height",S+A+25)},Wx={data:{startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},verticalPos:0,sequenceItems:[],init:function(){this.sequenceItems=[],this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0},updateVal:function(e,t,r,a){e[t]===void 0?e[t]=r:e[t]=a(r,e[t])},updateBounds:function(e,t,r,a){const s=Qt().journey,o=this;let u=0;function h(f){return function(m){u++;const b=o.sequenceItems.length-u+1;o.updateVal(m,"starty",t-b*s.boxMargin,Math.min),o.updateVal(m,"stopy",a+b*s.boxMargin,Math.max),o.updateVal(Wx.data,"startx",e-b*s.boxMargin,Math.min),o.updateVal(Wx.data,"stopx",r+b*s.boxMargin,Math.max),o.updateVal(m,"startx",e-b*s.boxMargin,Math.min),o.updateVal(m,"stopx",r+b*s.boxMargin,Math.max),o.updateVal(Wx.data,"starty",t-b*s.boxMargin,Math.min),o.updateVal(Wx.data,"stopy",a+b*s.boxMargin,Math.max)}}this.sequenceItems.forEach(h())},insert:function(e,t,r,a){const s=Math.min(e,r),o=Math.max(e,r),u=Math.min(t,a),h=Math.max(t,a);this.updateVal(Wx.data,"startx",s,Math.min),this.updateVal(Wx.data,"starty",u,Math.min),this.updateVal(Wx.data,"stopx",o,Math.max),this.updateVal(Wx.data,"stopy",h,Math.max),this.updateBounds(s,u,o,h)},bumpVerticalPos:function(e){this.verticalPos=this.verticalPos+e,this.data.stopy=this.verticalPos},getVerticalPos:function(){return this.verticalPos},getBounds:function(){return this.data}},Lat=T6e.sectionFills,ZCn=T6e.sectionColours,_wa=function(e,t,r){const a=Qt().journey;let s="";const o=a.height*2+a.diagramMarginY,u=r+o;let h=0,f="#CCC",p="black",m=0;for(const[b,_]of t.entries()){if(s!==_.section){f=Lat[h%Lat.length],m=h%Lat.length,p=ZCn[h%ZCn.length];let S=0;const C=_.section;for(let k=b;k(D7[C]&&(S[C]=D7[C]),S),{});_.x=b*a.taskMargin+b*a.width+HB,_.y=u,_.width=a.diagramMarginX,_.height=a.diagramMarginY,_.colour=p,_.fill=f,_.num=m,_.actors=w,Ole.drawTask(e,_,a),Wx.insert(_.x,_.y,_.x+_.width+a.taskMargin,300+5*30)}},JCn={setConf:bwa,draw:vwa},wwa={parser:ewa,db:XCn,renderer:JCn,styles:uwa,init:e=>{JCn.setConf(e.journey),XCn.clear()}},Ewa=Object.freeze(Object.defineProperty({__proto__:null,diagram:wwa},Symbol.toStringTag,{value:"Module"}));var Bnr={exports:{}};(function(e,t){(function(r){e.exports=r()})(function(){return function(){function r(a,s,o){function u(p,m){if(!s[p]){if(!a[p]){var b=typeof sO=="function"&&sO;if(!m&&b)return b(p,!0);if(h)return h(p,!0);var _=new Error("Cannot find module '"+p+"'");throw _.code="MODULE_NOT_FOUND",_}var w=s[p]={exports:{}};a[p][0].call(w.exports,function(S){var C=a[p][1][S];return u(C||S)},w,w.exports,r,a,s,o)}return s[p].exports}for(var h=typeof sO=="function"&&sO,f=0;f0&&arguments[0]!==void 0?arguments[0]:{},_=b.defaultLayoutOptions,w=_===void 0?{}:_,S=b.algorithms,C=S===void 0?["layered","stress","mrtree","radial","force","disco","sporeOverlap","sporeCompaction","rectpacking"]:S,A=b.workerFactory,k=b.workerUrl;if(u(this,p),this.defaultLayoutOptions=w,this.initialized=!1,typeof k>"u"&&typeof A>"u")throw new Error("Cannot construct an ELK without both 'workerUrl' and 'workerFactory'.");var I=A;typeof k<"u"&&typeof A>"u"&&(I=function(P){return new Worker(P)});var N=I(k);if(typeof N.postMessage!="function")throw new TypeError("Created worker does not provide the required 'postMessage' function.");this.worker=new f(N),this.worker.postMessage({cmd:"register",algorithms:C}).then(function(L){return m.initialized=!0}).catch(console.err)}return o(p,[{key:"layout",value:function(b){var _=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},w=_.layoutOptions,S=w===void 0?this.defaultLayoutOptions:w,C=_.logging,A=C===void 0?!1:C,k=_.measureExecutionTime,I=k===void 0?!1:k;return b?this.worker.postMessage({cmd:"layout",graph:b,layoutOptions:S,options:{logging:A,measureExecutionTime:I}}):Promise.reject(new Error("Missing mandatory parameter 'graph'."))}},{key:"knownLayoutAlgorithms",value:function(){return this.worker.postMessage({cmd:"algorithms"})}},{key:"knownLayoutOptions",value:function(){return this.worker.postMessage({cmd:"options"})}},{key:"knownLayoutCategories",value:function(){return this.worker.postMessage({cmd:"categories"})}},{key:"terminateWorker",value:function(){this.worker&&this.worker.terminate()}}]),p}();s.default=h;var f=function(){function p(m){var b=this;if(u(this,p),m===void 0)throw new Error("Missing mandatory parameter 'worker'.");this.resolvers={},this.worker=m,this.worker.onmessage=function(_){setTimeout(function(){b.receive(b,_)},0)}}return o(p,[{key:"postMessage",value:function(b){var _=this.id||0;this.id=_+1,b.id=_;var w=this;return new Promise(function(S,C){w.resolvers[_]=function(A,k){A?(w.convertGwtStyleError(A),C(A)):S(k)},w.worker.postMessage(b)})}},{key:"receive",value:function(b,_){var w=_.data,S=b.resolvers[w.id];S&&(delete b.resolvers[w.id],w.error?S(w.error):S(null,w.data))}},{key:"terminate",value:function(){this.worker&&this.worker.terminate()}},{key:"convertGwtStyleError",value:function(b){if(b){var _=b.__java$exception;_&&(_.cause&&_.cause.backingJsObject&&(b.cause=_.cause.backingJsObject,this.convertGwtStyleError(b.cause)),delete b.__java$exception)}}}]),p}()},{}],2:[function(r,a,s){(function(o){(function(){var u;typeof window<"u"?u=window:typeof o<"u"?u=o:typeof self<"u"&&(u=self);var h;function f(){}function p(){}function m(){}function b(){}function _(){}function w(){}function S(){}function C(){}function A(){}function k(){}function I(){}function N(){}function L(){}function P(){}function M(){}function F(){}function U(){}function $(){}function G(){}function B(){}function Z(){}function z(){}function Y(){}function W(){}function Q(){}function V(){}function j(){}function ee(){}function te(){}function ne(){}function se(){}function ie(){}function ge(){}function ce(){}function be(){}function ve(){}function De(){}function ye(){}function Ee(){}function he(){}function we(){}function Ce(){}function Ie(){}function Le(){}function Fe(){}function Ve(){}function Oe(){}function Dt(){}function ot(){}function sn(){}function Kt(){}function Ft(){}function Je(){}function ht(){}function et(){}function qe(){}function He(){}function Ge(){}function Ye(){}function Ae(){}function Xe(){}function fe(){}function Qe(){}function Ke(){}function mt(){}function lt(){}function $t(){}function Ut(){}function Jt(){}function wn(){}function Vn(){}function Wn(){}function Dn(){}function zn(){}function vn(){}function Cn(){}function Ar(){}function ur(){}function On(){}function Ir(){}function Ln(){}function pr(){}function Cr(){}function Zr(){}function Pr(){}function Ci(){}function ds(){}function ta(){}function Os(){}function uo(){}function Ls(){}function La(){}function to(){}function Fi(){}function Pt(){}function St(){}function Un(){}function Hr(){}function za(){}function Rs(){}function Vr(){}function Ii(){}function Pa(){}function Or(){}function no(){}function dt(){}function Wi(){}function Tt(){}function xr(){}function qs(){}function Rt(){}function Bb(){}function Gt(){}function Ds(){}function Lm(){}function BS(){}function eE(){}function uL(){}function rd(){}function Fh(){}function Fb(){}function e1(){}function wT(){}function d_(){}function tE(){}function qu(){}function $b(){}function Mf(){}function nE(){}function Pf(){}function ET(){}function Ub(){}function jA(){}function WA(){}function KA(){}function f0(){}function rU(){}function lK(){}function cK(){}function uK(){}function I6e(){}function N6e(){}function O6e(){}function L6e(){}function Nyt(){}function Oyt(){}function Lyt(){}function Dyt(){}function Myt(){}function Pyt(){}function Byt(){}function Fyt(){}function $yt(){}function Uyt(){}function zyt(){}function Gyt(){}function qyt(){}function Hyt(){}function Vyt(){}function Yyt(){}function jyt(){}function Wyt(){}function Kyt(){}function Xyt(){}function Qyt(){}function Zyt(){}function Jyt(){}function evt(){}function tvt(){}function nvt(){}function rvt(){}function ivt(){}function avt(){}function svt(){}function ovt(){}function lvt(){}function cvt(){}function uvt(){}function hvt(){}function dvt(){}function fvt(){}function pvt(){}function gvt(){}function mvt(){}function bvt(){}function yvt(){}function vvt(){}function _vt(){}function wvt(){}function Evt(){}function xvt(){}function Svt(){}function Tvt(){}function Cvt(){}function Avt(){}function kvt(){}function Rvt(){}function Ivt(){}function Nvt(){}function Ovt(){}function Lvt(){}function Dvt(){}function Mvt(){}function Pvt(){}function Bvt(){}function Fvt(){}function $vt(){}function Uvt(){}function zvt(){}function Gvt(){}function qvt(){}function Hvt(){}function Vvt(){}function Yvt(){}function jvt(){}function Wvt(){}function Kvt(){}function Xvt(){}function Qvt(){}function Zvt(){}function Jvt(){}function e2t(){}function t2t(){}function n2t(){}function r2t(){}function i2t(){}function a2t(){}function s2t(){}function o2t(){}function l2t(){}function c2t(){}function u2t(){}function h2t(){}function d2t(){}function f2t(){}function p2t(){}function g2t(){}function m2t(){}function b2t(){}function y2t(){}function v2t(){}function _2t(){}function w2t(){}function E2t(){}function D6e(){}function x2t(){}function S2t(){}function T2t(){}function C2t(){}function A2t(){}function k2t(){}function R2t(){}function I2t(){}function N2t(){}function O2t(){}function L2t(){}function D2t(){}function M2t(){}function P2t(){}function B2t(){}function F2t(){}function $2t(){}function U2t(){}function z2t(){}function G2t(){}function q2t(){}function H2t(){}function V2t(){}function Y2t(){}function j2t(){}function W2t(){}function K2t(){}function X2t(){}function Q2t(){}function Z2t(){}function J2t(){}function e_t(){}function t_t(){}function n_t(){}function r_t(){}function i_t(){}function a_t(){}function s_t(){}function o_t(){}function l_t(){}function c_t(){}function u_t(){}function h_t(){}function d_t(){}function f_t(){}function p_t(){}function g_t(){}function m_t(){}function b_t(){}function y_t(){}function v_t(){}function __t(){}function w_t(){}function E_t(){}function x_t(){}function S_t(){}function T_t(){}function C_t(){}function A_t(){}function k_t(){}function R_t(){}function I_t(){}function N_t(){}function O_t(){}function L_t(){}function D_t(){}function M_t(){}function P_t(){}function B_t(){}function F_t(){}function $_t(){}function U_t(){}function z_t(){}function M6e(){}function G_t(){}function q_t(){}function H_t(){}function V_t(){}function Y_t(){}function j_t(){}function W_t(){}function K_t(){}function X_t(){}function Q_t(){}function P6e(){}function Z_t(){}function J_t(){}function ewt(){}function twt(){}function nwt(){}function rwt(){}function B6e(){}function F6e(){}function iwt(){}function $6e(){}function U6e(){}function awt(){}function swt(){}function owt(){}function lwt(){}function cwt(){}function uwt(){}function hwt(){}function dwt(){}function fwt(){}function pwt(){}function gwt(){}function z6e(){}function mwt(){}function bwt(){}function ywt(){}function vwt(){}function _wt(){}function wwt(){}function Ewt(){}function xwt(){}function Swt(){}function Twt(){}function Cwt(){}function Awt(){}function kwt(){}function Rwt(){}function Iwt(){}function Nwt(){}function Owt(){}function Lwt(){}function Dwt(){}function Mwt(){}function Pwt(){}function Bwt(){}function Fwt(){}function $wt(){}function Uwt(){}function zwt(){}function Gwt(){}function qwt(){}function Hwt(){}function Vwt(){}function Ywt(){}function jwt(){}function Wwt(){}function Kwt(){}function Xwt(){}function Qwt(){}function Zwt(){}function Jwt(){}function eEt(){}function tEt(){}function nEt(){}function rEt(){}function iEt(){}function aEt(){}function sEt(){}function oEt(){}function lEt(){}function cEt(){}function uEt(){}function hEt(){}function dEt(){}function fEt(){}function pEt(){}function gEt(){}function mEt(){}function bEt(){}function yEt(){}function vEt(){}function _Et(){}function wEt(){}function EEt(){}function xEt(){}function SEt(){}function TEt(){}function CEt(){}function AEt(){}function kEt(){}function REt(){}function IEt(){}function NEt(){}function OEt(){}function LEt(){}function DEt(){}function MEt(){}function PEt(){}function BEt(){}function FEt(){}function $Et(){}function UEt(){}function zEt(){}function GEt(){}function qEt(){}function HEt(){}function VEt(){}function YEt(){}function jEt(){}function urr(){}function WEt(){}function KEt(){}function XEt(){}function QEt(){}function ZEt(){}function JEt(){}function ext(){}function txt(){}function nxt(){}function rxt(){}function ixt(){}function axt(){}function sxt(){}function oxt(){}function lxt(){}function cxt(){}function uxt(){}function hxt(){}function dxt(){}function fxt(){}function pxt(){}function gxt(){}function mxt(){}function bxt(){}function yxt(){}function vxt(){}function _xt(){}function sue(){}function oue(){}function wxt(){}function lue(){}function Ext(){}function xxt(){}function Sxt(){}function Txt(){}function Cxt(){}function Axt(){}function kxt(){}function Rxt(){}function Ixt(){}function Nxt(){}function G6e(){}function Oxt(){}function Lxt(){}function Dxt(){}function hrr(){}function Mxt(){}function Pxt(){}function Bxt(){}function Fxt(){}function $xt(){}function Uxt(){}function zxt(){}function f_(){}function Gxt(){}function XA(){}function q6e(){}function qxt(){}function Hxt(){}function Vxt(){}function Yxt(){}function jxt(){}function Wxt(){}function Kxt(){}function Xxt(){}function Qxt(){}function Zxt(){}function Jxt(){}function eSt(){}function tSt(){}function nSt(){}function rSt(){}function iSt(){}function aSt(){}function sSt(){}function oSt(){}function rn(){}function lSt(){}function cSt(){}function uSt(){}function hSt(){}function dSt(){}function fSt(){}function pSt(){}function gSt(){}function mSt(){}function bSt(){}function ySt(){}function vSt(){}function _St(){}function cue(){}function wSt(){}function ESt(){}function xSt(){}function hK(){}function SSt(){}function uue(){}function dK(){}function TSt(){}function H6e(){}function CSt(){}function ASt(){}function kSt(){}function RSt(){}function ISt(){}function NSt(){}function fK(){}function OSt(){}function LSt(){}function pK(){}function DSt(){}function gK(){}function MSt(){}function V6e(){}function PSt(){}function hue(){}function Y6e(){}function BSt(){}function FSt(){}function $St(){}function USt(){}function drr(){}function zSt(){}function GSt(){}function qSt(){}function HSt(){}function VSt(){}function YSt(){}function jSt(){}function WSt(){}function KSt(){}function XSt(){}function OR(){}function due(){}function QSt(){}function ZSt(){}function JSt(){}function e4t(){}function t4t(){}function n4t(){}function r4t(){}function i4t(){}function a4t(){}function s4t(){}function o4t(){}function l4t(){}function c4t(){}function u4t(){}function h4t(){}function d4t(){}function f4t(){}function p4t(){}function g4t(){}function m4t(){}function b4t(){}function y4t(){}function v4t(){}function _4t(){}function w4t(){}function E4t(){}function x4t(){}function S4t(){}function T4t(){}function C4t(){}function A4t(){}function k4t(){}function R4t(){}function I4t(){}function N4t(){}function O4t(){}function L4t(){}function D4t(){}function M4t(){}function P4t(){}function B4t(){}function F4t(){}function $4t(){}function U4t(){}function z4t(){}function G4t(){}function q4t(){}function H4t(){}function V4t(){}function Y4t(){}function j4t(){}function W4t(){}function K4t(){}function X4t(){}function Q4t(){}function Z4t(){}function J4t(){}function e3t(){}function t3t(){}function n3t(){}function r3t(){}function i3t(){}function a3t(){}function s3t(){}function o3t(){}function l3t(){}function c3t(){}function u3t(){}function h3t(){}function d3t(){}function f3t(){}function p3t(){}function g3t(){}function m3t(){}function b3t(){}function y3t(){}function v3t(){}function _3t(){}function w3t(){}function E3t(){}function x3t(){}function S3t(){}function T3t(){}function C3t(){}function A3t(){}function k3t(){}function R3t(){}function I3t(){}function N3t(){}function O3t(){}function L3t(){}function D3t(){}function M3t(){}function P3t(){}function B3t(){}function F3t(){}function $3t(){}function U3t(){}function z3t(){}function G3t(){}function q3t(){}function j6e(){}function H3t(){}function V3t(){}function fue(){yL()}function Y3t(){yU()}function j3t(){nJ()}function W3t(){v0e()}function K3t(){qD()}function X3t(){tMe()}function Q3t(){A0()}function Z3t(){hDe()}function J3t(){iG()}function eTt(){vU()}function tTt(){jU()}function nTt(){kRt()}function rTt(){Bk()}function iTt(){nBt()}function aTt(){u9e()}function sTt(){HDt()}function oTt(){h9e()}function lTt(){LBt()}function cTt(){qDt()}function uTt(){G8()}function hTt(){m$t()}function dTt(){g$t()}function fTt(){$Mt()}function pTt(){b$t()}function gTt(){Kv()}function mTt(){qK()}function bTt(){eBe()}function yTt(){qt()}function vTt(){y$t()}function _Tt(){V$t()}function wTt(){VDt()}function ETt(){mqt()}function xTt(){YDt()}function STt(){Ijt()}function TTt(){OMe()}function CTt(){jm()}function ATt(){Nzt()}function kTt(){pc()}function RTt(){tMt()}function ITt(){Pk()}function NTt(){pPe()}function OTt(){Xv()}function LTt(){gPe()}function DTt(){Z1()}function MTt(){cG()}function PTt(){V1e()}function BTt(){e1e()}function t1(){NOt()}function FTt(){GQ()}function $Tt(){lJ()}function W6e(){Ei()}function UTt(){SZ()}function zTt(){zLe()}function K6e(){e0e()}function X6e(){IJ()}function GTt(){CPe()}function Q6e(n){hr(n)}function qTt(n){this.a=n}function mK(n){this.a=n}function HTt(n){this.a=n}function VTt(n){this.a=n}function YTt(n){this.a=n}function jTt(n){this.a=n}function WTt(n){this.a=n}function KTt(n){this.a=n}function Z6e(n){this.a=n}function J6e(n){this.a=n}function XTt(n){this.a=n}function QTt(n){this.a=n}function pue(n){this.a=n}function ZTt(n){this.a=n}function JTt(n){this.a=n}function gue(n){this.a=n}function mue(n){this.a=n}function e5t(n){this.a=n}function bue(n){this.a=n}function t5t(n){this.a=n}function n5t(n){this.a=n}function r5t(n){this.a=n}function e7e(n){this.b=n}function i5t(n){this.c=n}function a5t(n){this.a=n}function s5t(n){this.a=n}function o5t(n){this.a=n}function l5t(n){this.a=n}function c5t(n){this.a=n}function u5t(n){this.a=n}function h5t(n){this.a=n}function d5t(n){this.a=n}function f5t(n){this.a=n}function p5t(n){this.a=n}function g5t(n){this.a=n}function m5t(n){this.a=n}function b5t(n){this.a=n}function t7e(n){this.a=n}function n7e(n){this.a=n}function bK(n){this.a=n}function iU(n){this.a=n}function p_(){this.a=[]}function y5t(n,i){n.a=i}function frr(n,i){n.a=i}function prr(n,i){n.b=i}function grr(n,i){n.b=i}function mrr(n,i){n.b=i}function r7e(n,i){n.j=i}function brr(n,i){n.g=i}function yrr(n,i){n.i=i}function vrr(n,i){n.c=i}function _rr(n,i){n.c=i}function wrr(n,i){n.d=i}function Err(n,i){n.d=i}function g_(n,i){n.k=i}function xrr(n,i){n.c=i}function i7e(n,i){n.c=i}function a7e(n,i){n.a=i}function Srr(n,i){n.a=i}function Trr(n,i){n.f=i}function Crr(n,i){n.a=i}function Arr(n,i){n.b=i}function yue(n,i){n.d=i}function yK(n,i){n.i=i}function s7e(n,i){n.o=i}function krr(n,i){n.r=i}function Rrr(n,i){n.a=i}function Irr(n,i){n.b=i}function v5t(n,i){n.e=i}function Nrr(n,i){n.f=i}function o7e(n,i){n.g=i}function Orr(n,i){n.e=i}function Lrr(n,i){n.f=i}function Drr(n,i){n.f=i}function vue(n,i){n.a=i}function _ue(n,i){n.b=i}function Mrr(n,i){n.n=i}function Prr(n,i){n.a=i}function Brr(n,i){n.c=i}function Frr(n,i){n.c=i}function $rr(n,i){n.c=i}function Urr(n,i){n.a=i}function zrr(n,i){n.a=i}function Grr(n,i){n.d=i}function qrr(n,i){n.d=i}function Hrr(n,i){n.e=i}function Vrr(n,i){n.e=i}function Yrr(n,i){n.g=i}function jrr(n,i){n.f=i}function Wrr(n,i){n.j=i}function Krr(n,i){n.a=i}function Xrr(n,i){n.a=i}function Qrr(n,i){n.b=i}function _5t(n){n.b=n.a}function w5t(n){n.c=n.d.d}function l7e(n){this.a=n}function c7e(n){this.a=n}function u7e(n){this.a=n}function m_(n){this.a=n}function b_(n){this.a=n}function aU(n){this.a=n}function E5t(n){this.a=n}function h7e(n){this.a=n}function sU(n){this.a=n}function vK(n){this.a=n}function Dm(n){this.a=n}function FS(n){this.a=n}function x5t(n){this.a=n}function S5t(n){this.a=n}function wue(n){this.b=n}function LR(n){this.b=n}function DR(n){this.b=n}function Eue(n){this.a=n}function T5t(n){this.a=n}function xue(n){this.c=n}function me(n){this.c=n}function C5t(n){this.c=n}function hL(n){this.d=n}function d7e(n){this.a=n}function ei(n){this.a=n}function A5t(n){this.a=n}function f7e(n){this.a=n}function p7e(n){this.a=n}function g7e(n){this.a=n}function m7e(n){this.a=n}function b7e(n){this.a=n}function y7e(n){this.a=n}function MR(n){this.a=n}function k5t(n){this.a=n}function R5t(n){this.a=n}function PR(n){this.a=n}function I5t(n){this.a=n}function N5t(n){this.a=n}function O5t(n){this.a=n}function L5t(n){this.a=n}function D5t(n){this.a=n}function M5t(n){this.a=n}function P5t(n){this.a=n}function B5t(n){this.a=n}function F5t(n){this.a=n}function $5t(n){this.a=n}function U5t(n){this.a=n}function z5t(n){this.a=n}function G5t(n){this.a=n}function q5t(n){this.a=n}function H5t(n){this.a=n}function dL(n){this.a=n}function V5t(n){this.a=n}function Y5t(n){this.a=n}function j5t(n){this.a=n}function W5t(n){this.a=n}function _K(n){this.a=n}function K5t(n){this.a=n}function X5t(n){this.a=n}function BR(n){this.a=n}function v7e(n){this.a=n}function Q5t(n){this.a=n}function Z5t(n){this.a=n}function J5t(n){this.a=n}function eCt(n){this.a=n}function tCt(n){this.a=n}function nCt(n){this.a=n}function _7e(n){this.a=n}function w7e(n){this.a=n}function E7e(n){this.a=n}function fL(n){this.a=n}function wK(n){this.e=n}function FR(n){this.a=n}function rCt(n){this.a=n}function QA(n){this.a=n}function x7e(n){this.a=n}function iCt(n){this.a=n}function aCt(n){this.a=n}function sCt(n){this.a=n}function oCt(n){this.a=n}function lCt(n){this.a=n}function cCt(n){this.a=n}function uCt(n){this.a=n}function hCt(n){this.a=n}function dCt(n){this.a=n}function fCt(n){this.a=n}function pCt(n){this.a=n}function S7e(n){this.a=n}function gCt(n){this.a=n}function mCt(n){this.a=n}function bCt(n){this.a=n}function yCt(n){this.a=n}function vCt(n){this.a=n}function _Ct(n){this.a=n}function wCt(n){this.a=n}function ECt(n){this.a=n}function xCt(n){this.a=n}function SCt(n){this.a=n}function TCt(n){this.a=n}function CCt(n){this.a=n}function ACt(n){this.a=n}function kCt(n){this.a=n}function RCt(n){this.a=n}function ICt(n){this.a=n}function NCt(n){this.a=n}function OCt(n){this.a=n}function LCt(n){this.a=n}function DCt(n){this.a=n}function MCt(n){this.a=n}function PCt(n){this.a=n}function BCt(n){this.a=n}function FCt(n){this.a=n}function $Ct(n){this.a=n}function UCt(n){this.a=n}function zCt(n){this.a=n}function GCt(n){this.a=n}function qCt(n){this.a=n}function HCt(n){this.a=n}function VCt(n){this.a=n}function YCt(n){this.a=n}function jCt(n){this.a=n}function WCt(n){this.a=n}function KCt(n){this.a=n}function XCt(n){this.a=n}function QCt(n){this.a=n}function ZCt(n){this.a=n}function JCt(n){this.c=n}function eAt(n){this.b=n}function tAt(n){this.a=n}function nAt(n){this.a=n}function rAt(n){this.a=n}function iAt(n){this.a=n}function aAt(n){this.a=n}function sAt(n){this.a=n}function oAt(n){this.a=n}function lAt(n){this.a=n}function cAt(n){this.a=n}function uAt(n){this.a=n}function hAt(n){this.a=n}function dAt(n){this.a=n}function fAt(n){this.a=n}function pAt(n){this.a=n}function gAt(n){this.a=n}function mAt(n){this.a=n}function bAt(n){this.a=n}function yAt(n){this.a=n}function vAt(n){this.a=n}function _At(n){this.a=n}function wAt(n){this.a=n}function EAt(n){this.a=n}function xAt(n){this.a=n}function SAt(n){this.a=n}function TAt(n){this.a=n}function CAt(n){this.a=n}function AAt(n){this.a=n}function Mm(n){this.a=n}function xT(n){this.a=n}function kAt(n){this.a=n}function RAt(n){this.a=n}function IAt(n){this.a=n}function NAt(n){this.a=n}function OAt(n){this.a=n}function LAt(n){this.a=n}function DAt(n){this.a=n}function MAt(n){this.a=n}function PAt(n){this.a=n}function BAt(n){this.a=n}function FAt(n){this.a=n}function $At(n){this.a=n}function UAt(n){this.a=n}function zAt(n){this.a=n}function GAt(n){this.a=n}function qAt(n){this.a=n}function HAt(n){this.a=n}function VAt(n){this.a=n}function YAt(n){this.a=n}function jAt(n){this.a=n}function WAt(n){this.a=n}function KAt(n){this.a=n}function XAt(n){this.a=n}function QAt(n){this.a=n}function ZAt(n){this.a=n}function JAt(n){this.a=n}function EK(n){this.a=n}function ekt(n){this.f=n}function tkt(n){this.a=n}function nkt(n){this.a=n}function rkt(n){this.a=n}function ikt(n){this.a=n}function akt(n){this.a=n}function skt(n){this.a=n}function okt(n){this.a=n}function lkt(n){this.a=n}function ckt(n){this.a=n}function ukt(n){this.a=n}function hkt(n){this.a=n}function dkt(n){this.a=n}function fkt(n){this.a=n}function pkt(n){this.a=n}function gkt(n){this.a=n}function mkt(n){this.a=n}function bkt(n){this.a=n}function ykt(n){this.a=n}function vkt(n){this.a=n}function _kt(n){this.a=n}function wkt(n){this.a=n}function Ekt(n){this.a=n}function xkt(n){this.a=n}function Skt(n){this.a=n}function Tkt(n){this.a=n}function Ckt(n){this.a=n}function Akt(n){this.a=n}function kkt(n){this.a=n}function Sue(n){this.a=n}function T7e(n){this.a=n}function la(n){this.b=n}function Rkt(n){this.a=n}function Ikt(n){this.a=n}function Nkt(n){this.a=n}function Okt(n){this.a=n}function Lkt(n){this.a=n}function Dkt(n){this.a=n}function Mkt(n){this.a=n}function Pkt(n){this.b=n}function Bkt(n){this.a=n}function oU(n){this.a=n}function Fkt(n){this.a=n}function $kt(n){this.a=n}function C7e(n){this.c=n}function xK(n){this.e=n}function SK(n){this.a=n}function TK(n){this.a=n}function Tue(n){this.a=n}function Ukt(n){this.d=n}function zkt(n){this.a=n}function A7e(n){this.a=n}function k7e(n){this.a=n}function rE(n){this.e=n}function Zrr(){this.a=0}function Br(){xh(this)}function Ot(){$he(this)}function Cue(){SLt(this)}function Gkt(){}function iE(){this.c=DKe}function qkt(n,i){n.b+=i}function Jrr(n,i){i.Wb(n)}function eir(n){return n.a}function tir(n){return n.a}function nir(n){return n.a}function rir(n){return n.a}function iir(n){return n.a}function _e(n){return n.e}function air(){return null}function sir(){return null}function oir(){fRe(),GRr()}function lir(n){n.b.Of(n.e)}function Hkt(n){n.b=new Yue}function pL(n,i){n.b=i-n.b}function gL(n,i){n.a=i-n.a}function jn(n,i){n.push(i)}function Vkt(n,i){n.sort(i)}function Ykt(n,i){i.jd(n.a)}function cir(n,i){Bs(i,n)}function uir(n,i,l){n.Yd(l,i)}function lU(n,i){n.e=i,i.b=n}function R7e(n){jp(),this.a=n}function jkt(n){jp(),this.a=n}function Wkt(n){jp(),this.a=n}function Aue(n){CE(),this.a=n}function Kkt(n){p8(),mbe.le(n)}function I7e(){I7e=z,new Br}function y_(){pNt.call(this)}function N7e(){pNt.call(this)}function O7e(){y_.call(this)}function kue(){y_.call(this)}function Xkt(){y_.call(this)}function cU(){y_.call(this)}function ih(){y_.call(this)}function ZA(){y_.call(this)}function ri(){y_.call(this)}function Jd(){y_.call(this)}function Qkt(){y_.call(this)}function ec(){y_.call(this)}function Zkt(){y_.call(this)}function Jkt(){this.a=this}function CK(){this.Bb|=256}function e6t(){this.b=new oIt}function $S(n,i){n.length=i}function AK(n,i){Lt(n.a,i)}function hir(n,i){rMe(n.c,i)}function dir(n,i){Es(n.b,i)}function fir(n,i){XZ(n.a,i)}function pir(n,i){A0e(n.a,i)}function $R(n,i){Vi(n.e,i)}function JA(n){dJ(n.c,n.b)}function gir(n,i){n.kc().Nb(i)}function L7e(n){this.a=cvr(n)}function fs(){this.a=new Br}function t6t(){this.a=new Br}function D7e(){this.a=new _Rt}function kK(){this.a=new Ot}function Rue(){this.a=new Ot}function M7e(){this.a=new Ot}function Bf(){this.a=new wn}function v_(){this.a=new XPt}function P7e(){this.a=new BS}function B7e(){this.a=new GDt}function F7e(){this.a=new eOt}function n6t(){this.a=new Ot}function r6t(){this.a=new Ot}function i6t(){this.a=new Ot}function $7e(){this.a=new Ot}function a6t(){this.d=new Ot}function s6t(){this.a=new lMt}function o6t(){this.a=new fs}function l6t(){this.a=new Br}function c6t(){this.b=new Br}function u6t(){this.b=new Ot}function U7e(){this.e=new Ot}function h6t(){this.a=new gTt}function d6t(){this.d=new Ot}function f6t(){fDt.call(this)}function p6t(){fDt.call(this)}function g6t(){Ot.call(this)}function z7e(){O7e.call(this)}function G7e(){kK.call(this)}function m6t(){LX.call(this)}function b6t(){$7e.call(this)}function mL(){Gkt.call(this)}function Iue(){mL.call(this)}function ek(){Gkt.call(this)}function q7e(){ek.call(this)}function y6t(){j7e.call(this)}function v6t(){j7e.call(this)}function _6t(){j7e.call(this)}function w6t(){W7e.call(this)}function bL(){SSt.call(this)}function H7e(){SSt.call(this)}function ah(){Ea.call(this)}function E6t(){B6t.call(this)}function x6t(){B6t.call(this)}function S6t(){Br.call(this)}function T6t(){Br.call(this)}function C6t(){Br.call(this)}function Nue(){w$t.call(this)}function A6t(){fs.call(this)}function k6t(){CK.call(this)}function Oue(){A8e.call(this)}function V7e(){Br.call(this)}function Lue(){A8e.call(this)}function Due(){Br.call(this)}function R6t(){Br.call(this)}function Y7e(){gK.call(this)}function I6t(){Y7e.call(this)}function N6t(){gK.call(this)}function O6t(){j6e.call(this)}function j7e(){this.a=new fs}function L6t(){this.a=new Br}function D6t(){this.a=new Ot}function W7e(){this.a=new Br}function tk(){this.a=new Ea}function M6t(){this.j=new Ot}function P6t(){this.a=new D7t}function B6t(){this.a=new DSt}function K7e(){this.a=new gxt}function yL(){yL=z,lbe=new p}function Mue(){Mue=z,cbe=new $6t}function Pue(){Pue=z,ube=new F6t}function F6t(){gue.call(this,"")}function $6t(){gue.call(this,"")}function U6t(n){HFt.call(this,n)}function z6t(n){HFt.call(this,n)}function X7e(n){Z6e.call(this,n)}function Q7e(n){cRt.call(this,n)}function mir(n){cRt.call(this,n)}function bir(n){Q7e.call(this,n)}function yir(n){Q7e.call(this,n)}function vir(n){Q7e.call(this,n)}function G6t(n){pfe.call(this,n)}function q6t(n){pfe.call(this,n)}function H6t(n){EOt.call(this,n)}function V6t(n){_Re.call(this,n)}function vL(n){$K.call(this,n)}function Z7e(n){$K.call(this,n)}function Y6t(n){$K.call(this,n)}function J7e(n){qxr.call(this,n)}function eRe(n){J7e.call(this,n)}function tc(n){q9t.call(this,n)}function j6t(n){tc.call(this,n)}function nk(){iU.call(this,{})}function W6t(){W6t=z,Ren=new B}function RK(){RK=z,fbe=new HIt}function K6t(){K6t=z,XUe=new f}function tRe(){tRe=z,QUe=new P}function IK(){IK=z,jM=new U}function Bue(n){QR(),this.a=n}function Fue(n){k9e(),this.a=n}function aE(n){Ede(),this.f=n}function $ue(n){Ede(),this.f=n}function X6t(n){IOt(),this.a=n}function Q6t(n){n.b=null,n.c=0}function _ir(n,i){n.e=i,IYt(n,i)}function wir(n,i){n.a=i,ISr(n)}function Uue(n,i,l){n.a[i.g]=l}function Eir(n,i,l){Vwr(l,n,i)}function xir(n,i){_lr(i.i,n.n)}function Z6t(n,i){Hbr(n).Cd(i)}function Sir(n,i){n.a.ec().Mc(i)}function J6t(n,i){return n.g-i.g}function Tir(n,i){return n*n/i}function Vt(n){return hr(n),n}function We(n){return hr(n),n}function uU(n){return hr(n),n}function Cir(n){return new bK(n)}function Air(n){return new JS(n)}function nRe(n){return hr(n),n}function kir(n){return hr(n),n}function NK(n){tc.call(this,n)}function Sl(n){tc.call(this,n)}function e7t(n){tc.call(this,n)}function zue(n){q9t.call(this,n)}function UR(n){tc.call(this,n)}function ar(n){tc.call(this,n)}function Tl(n){tc.call(this,n)}function t7t(n){tc.call(this,n)}function rk(n){tc.call(this,n)}function zb(n){tc.call(this,n)}function Gb(n){tc.call(this,n)}function ik(n){tc.call(this,n)}function zp(n){tc.call(this,n)}function Gue(n){tc.call(this,n)}function oi(n){tc.call(this,n)}function wh(n){hr(n),this.a=n}function rRe(n){return $_(n),n}function _L(n){gNe(n,n.length)}function wL(n){return n.b==n.c}function US(n){return!!n&&n.b}function Rir(n){return!!n&&n.k}function Iir(n){return!!n&&n.j}function Nir(n,i,l){n.c.Ef(i,l)}function n7t(n,i){n.be(i),i.ae(n)}function ak(n){jp(),this.a=ni(n)}function que(){this.a=ai(ni(Xo))}function r7t(){throw _e(new ri)}function Oir(){throw _e(new ri)}function iRe(){throw _e(new ri)}function i7t(){throw _e(new ri)}function Lir(){throw _e(new ri)}function Dir(){throw _e(new ri)}function OK(){OK=z,p8()}function qb(){aU.call(this,"")}function EL(){aU.call(this,"")}function Cv(){aU.call(this,"")}function sk(){aU.call(this,"")}function aRe(n){Sl.call(this,n)}function sRe(n){Sl.call(this,n)}function Gp(n){ar.call(this,n)}function zR(n){DR.call(this,n)}function a7t(n){zR.call(this,n)}function Hue(n){kX.call(this,n)}function Vue(n){$8e.call(this,n,0)}function Yue(){QNe.call(this,12,3)}function xe(n,i){return PDt(n,i)}function LK(n,i){return Rfe(n,i)}function Mir(n,i){return n.a-i.a}function Pir(n,i){return n.a-i.a}function Bir(n,i){return n.a-i.a}function Fir(n,i){return i in n.a}function s7t(n){return n.a?n.b:0}function $ir(n){return n.a?n.b:0}function Uir(n,i,l){i.Cd(n.a[l])}function zir(n,i,l){i.Pe(n.a[l])}function Gir(n,i){n.b=new Wo(i)}function qir(n,i){return n.b=i,n}function o7t(n,i){return n.c=i,n}function l7t(n,i){return n.f=i,n}function Hir(n,i){return n.g=i,n}function oRe(n,i){return n.a=i,n}function lRe(n,i){return n.f=i,n}function Vir(n,i){return n.k=i,n}function cRe(n,i){return n.a=i,n}function Yir(n,i){return n.e=i,n}function uRe(n,i){return n.e=i,n}function jir(n,i){return n.f=i,n}function Wir(n,i){n.b=!0,n.d=i}function Kir(n,i){return n.b-i.b}function Xir(n,i){return n.g-i.g}function Qir(n,i){return n?0:i-1}function c7t(n,i){return n?0:i-1}function Zir(n,i){return n?i-1:0}function Jir(n,i){return n.s-i.s}function ear(n,i){return i.rg(n)}function sE(n,i){return n.b=i,n}function DK(n,i){return n.a=i,n}function oE(n,i){return n.c=i,n}function lE(n,i){return n.d=i,n}function cE(n,i){return n.e=i,n}function hRe(n,i){return n.f=i,n}function xL(n,i){return n.a=i,n}function GR(n,i){return n.b=i,n}function qR(n,i){return n.c=i,n}function on(n,i){return n.c=i,n}function kn(n,i){return n.b=i,n}function ln(n,i){return n.d=i,n}function cn(n,i){return n.e=i,n}function tar(n,i){return n.f=i,n}function un(n,i){return n.g=i,n}function hn(n,i){return n.a=i,n}function dn(n,i){return n.i=i,n}function fn(n,i){return n.j=i,n}function nar(n,i){Kv(),rc(i,n)}function rar(n,i,l){whr(n.a,i,l)}function MK(n){rde.call(this,n)}function u7t(n){Svr.call(this,n)}function h7t(n){HLt.call(this,n)}function dRe(n){HLt.call(this,n)}function Av(n){PE.call(this,n)}function d7t(n){Yde.call(this,n)}function f7t(n){Yde.call(this,n)}function p7t(){w8e.call(this,"")}function ho(){this.a=0,this.b=0}function g7t(){this.b=0,this.a=0}function m7t(n,i){n.b=0,c4(n,i)}function b7t(n,i){return n.k=i,n}function iar(n,i){return n.j=i,n}function aar(n,i){n.c=i,n.b=!0}function y7t(){y7t=z,Gen=yEr()}function kv(){kv=z,Mun=Rwr()}function v7t(){v7t=z,Ks=zEr()}function fRe(){fRe=z,w2=R8()}function HR(){HR=z,LKe=Iwr()}function _7t(){_7t=z,vhn=Nwr()}function pRe(){pRe=z,Tc=ASr()}function n1(n){return n.e&&n.e()}function w7t(n){return n.l|n.m<<22}function E7t(n,i){return n.c._b(i)}function x7t(n,i){return _zt(n.b,i)}function jue(n){return n?n.d:null}function sar(n){return n?n.g:null}function oar(n){return n?n.i:null}function __(n){return Fm(n),n.o}function ST(n,i){return n.a+=i,n}function Wue(n,i){return n.a+=i,n}function Hb(n,i){return n.a+=i,n}function uE(n,i){return n.a+=i,n}function gRe(n,i){for(;n.Bd(i););}function PK(n){this.a=new ok(n)}function S7t(){throw _e(new ri)}function T7t(){throw _e(new ri)}function C7t(){throw _e(new ri)}function A7t(){throw _e(new ri)}function k7t(){throw _e(new ri)}function R7t(){throw _e(new ri)}function Vb(n){this.a=new Tde(n)}function I7t(){this.a=new iM(kYe)}function N7t(){this.b=new iM(jVe)}function O7t(){this.a=new iM(ZYe)}function L7t(){this.b=new iM(a2e)}function D7t(){this.b=new iM(a2e)}function BK(n){this.a=0,this.b=n}function mRe(n){lKt(),t8r(this,n)}function VR(n){return Pv(n),n.a}function hU(n){return n.b!=n.d.c}function bRe(n,i){return n.d[i.p]}function M7t(n,i){return y5r(n,i)}function yRe(n,i,l){n.splice(i,l)}function TT(n,i){for(;n.Re(i););}function P7t(n){n.c?WYt(n):KYt(n)}function B7t(){throw _e(new ri)}function F7t(){throw _e(new ri)}function $7t(){throw _e(new ri)}function U7t(){throw _e(new ri)}function z7t(){throw _e(new ri)}function G7t(){throw _e(new ri)}function q7t(){throw _e(new ri)}function H7t(){throw _e(new ri)}function V7t(){throw _e(new ri)}function Y7t(){throw _e(new ri)}function lar(){throw _e(new ec)}function car(){throw _e(new ec)}function dU(n){this.a=new j7t(n)}function j7t(n){gmr(this,n,jxr())}function fU(n){return!n||xLt(n)}function pU(n){return fp[n]!=-1}function uar(){Kee!=0&&(Kee=0),Xee=-1}function W7t(){obe==null&&(obe=[])}function gU(n,i){$T.call(this,n,i)}function YR(n,i){gU.call(this,n,i)}function K7t(n,i){this.a=n,this.b=i}function X7t(n,i){this.a=n,this.b=i}function Q7t(n,i){this.a=n,this.b=i}function Z7t(n,i){this.a=n,this.b=i}function J7t(n,i){this.a=n,this.b=i}function eRt(n,i){this.a=n,this.b=i}function tRt(n,i){this.a=n,this.b=i}function jR(n,i){this.e=n,this.d=i}function vRe(n,i){this.b=n,this.c=i}function nRt(n,i){this.b=n,this.a=i}function rRt(n,i){this.b=n,this.a=i}function iRt(n,i){this.b=n,this.a=i}function aRt(n,i){this.b=n,this.a=i}function sRt(n,i){this.a=n,this.b=i}function Kue(n,i){this.a=n,this.b=i}function oRt(n,i){this.a=n,this.f=i}function hE(n,i){this.g=n,this.i=i}function Kr(n,i){this.f=n,this.g=i}function lRt(n,i){this.b=n,this.c=i}function cRt(n){R8e(n.dc()),this.c=n}function har(n,i){this.a=n,this.b=i}function uRt(n,i){this.a=n,this.b=i}function hRt(n){this.a=v(ni(n),15)}function _Re(n){this.a=v(ni(n),15)}function dRt(n){this.a=v(ni(n),85)}function FK(n){this.b=v(ni(n),85)}function $K(n){this.b=v(ni(n),51)}function UK(){this.q=new u.Date}function Xue(n,i){this.a=n,this.b=i}function fRt(n,i){return Tu(n.b,i)}function mU(n,i){return n.b.Hc(i)}function pRt(n,i){return n.b.Ic(i)}function gRt(n,i){return n.b.Qc(i)}function mRt(n,i){return n.b.Hc(i)}function bRt(n,i){return n.c.uc(i)}function yRt(n,i){return Yi(n.c,i)}function r1(n,i){return n.a._b(i)}function vRt(n,i){return n>i&&i0}function nhe(n,i){return Oc(n,i)<0}function MRt(n,i){return yde(n.a,i)}function Nar(n,i){BDt.call(this,n,i)}function ARe(n){Bde(),EOt.call(this,n)}function kRe(n,i){I9t(n,n.length,i)}function _U(n,i){iLt(n,n.length,i)}function NL(n,i){return n.a.get(i)}function PRt(n,i){return Tu(n.e,i)}function RRe(n){return hr(n),!1}function IRe(n){this.a=v(ni(n),229)}function KK(n){Nn.call(this,n,21)}function XK(n,i){Kr.call(this,n,i)}function rhe(n,i){Kr.call(this,n,i)}function BRt(n,i){this.b=n,this.a=i}function QK(n,i){this.d=n,this.e=i}function FRt(n,i){this.a=n,this.b=i}function $Rt(n,i){this.a=n,this.b=i}function URt(n,i){this.a=n,this.b=i}function zRt(n,i){this.a=n,this.b=i}function ck(n,i){this.a=n,this.b=i}function GRt(n,i){this.b=n,this.a=i}function NRe(n,i){this.b=n,this.a=i}function ORe(n,i){Kr.call(this,n,i)}function LRe(n,i){Kr.call(this,n,i)}function CT(n,i){Kr.call(this,n,i)}function ihe(n,i){Kr.call(this,n,i)}function ahe(n,i){Kr.call(this,n,i)}function she(n,i){Kr.call(this,n,i)}function ZK(n,i){Kr.call(this,n,i)}function DRe(n,i){this.b=n,this.a=i}function JK(n,i){Kr.call(this,n,i)}function MRe(n,i){this.b=n,this.a=i}function eX(n,i){Kr.call(this,n,i)}function qRt(n,i){this.b=n,this.a=i}function PRe(n,i){Kr.call(this,n,i)}function ohe(n,i){Kr.call(this,n,i)}function wU(n,i){Kr.call(this,n,i)}function OL(n,i,l){n.splice(i,0,l)}function Oar(n,i,l){n.Mb(l)&&i.Cd(l)}function Lar(n,i,l){i.Pe(n.a.Ye(l))}function Dar(n,i,l){i.Dd(n.a.Ze(l))}function Mar(n,i,l){i.Cd(n.a.Kb(l))}function Par(n,i){return oh(n.c,i)}function Bar(n,i){return oh(n.e,i)}function tX(n,i){Kr.call(this,n,i)}function nX(n,i){Kr.call(this,n,i)}function LL(n,i){Kr.call(this,n,i)}function BRe(n,i){Kr.call(this,n,i)}function ps(n,i){Kr.call(this,n,i)}function rX(n,i){Kr.call(this,n,i)}function HRt(n,i){this.a=n,this.b=i}function VRt(n,i){this.a=n,this.b=i}function YRt(n,i){this.a=n,this.b=i}function jRt(n,i){this.a=n,this.b=i}function WRt(n,i){this.a=n,this.b=i}function KRt(n,i){this.a=n,this.b=i}function XRt(n,i){this.b=n,this.a=i}function QRt(n,i){this.b=n,this.a=i}function FRe(n,i){this.b=n,this.a=i}function XR(n,i){this.c=n,this.d=i}function ZRt(n,i){this.e=n,this.d=i}function JRt(n,i){this.a=n,this.b=i}function e8t(n,i){this.a=n,this.b=i}function t8t(n,i){this.a=n,this.b=i}function n8t(n,i){this.b=n,this.a=i}function r8t(n,i){this.b=i,this.c=n}function iX(n,i){Kr.call(this,n,i)}function EU(n,i){Kr.call(this,n,i)}function lhe(n,i){Kr.call(this,n,i)}function $Re(n,i){Kr.call(this,n,i)}function DL(n,i){Kr.call(this,n,i)}function che(n,i){Kr.call(this,n,i)}function uhe(n,i){Kr.call(this,n,i)}function xU(n,i){Kr.call(this,n,i)}function URe(n,i){Kr.call(this,n,i)}function hhe(n,i){Kr.call(this,n,i)}function ML(n,i){Kr.call(this,n,i)}function zRe(n,i){Kr.call(this,n,i)}function PL(n,i){Kr.call(this,n,i)}function BL(n,i){Kr.call(this,n,i)}function GS(n,i){Kr.call(this,n,i)}function dhe(n,i){Kr.call(this,n,i)}function fhe(n,i){Kr.call(this,n,i)}function GRe(n,i){Kr.call(this,n,i)}function SU(n,i){Kr.call(this,n,i)}function AT(n,i){Kr.call(this,n,i)}function phe(n,i){Kr.call(this,n,i)}function aX(n,i){Kr.call(this,n,i)}function TU(n,i){Kr.call(this,n,i)}function qS(n,i){Kr.call(this,n,i)}function sX(n,i){Kr.call(this,n,i)}function qRe(n,i){Kr.call(this,n,i)}function ghe(n,i){Kr.call(this,n,i)}function mhe(n,i){Kr.call(this,n,i)}function bhe(n,i){Kr.call(this,n,i)}function yhe(n,i){Kr.call(this,n,i)}function vhe(n,i){Kr.call(this,n,i)}function _he(n,i){Kr.call(this,n,i)}function whe(n,i){Kr.call(this,n,i)}function i8t(n,i){this.b=n,this.a=i}function HRe(n,i){Kr.call(this,n,i)}function a8t(n,i){this.a=n,this.b=i}function s8t(n,i){this.a=n,this.b=i}function o8t(n,i){this.a=n,this.b=i}function VRe(n,i){Kr.call(this,n,i)}function YRe(n,i){Kr.call(this,n,i)}function l8t(n,i){this.a=n,this.b=i}function Far(n,i){return r8(),i!=n}function CU(n){return Tr(n.a),n.b}function Ehe(n){return Y4r(n,n.c),n}function c8t(){return y7t(),new Gen}function u8t(){FX(),this.a=new cIe}function h8t(){wJ(),this.a=new fs}function d8t(){nfe(),this.b=new fs}function f8t(n,i){this.b=n,this.d=i}function p8t(n,i){this.a=n,this.b=i}function g8t(n,i){this.a=n,this.b=i}function m8t(n,i){this.a=n,this.b=i}function b8t(n,i){this.b=n,this.a=i}function jRe(n,i){Kr.call(this,n,i)}function WRe(n,i){Kr.call(this,n,i)}function oX(n,i){Kr.call(this,n,i)}function pE(n,i){Kr.call(this,n,i)}function xhe(n,i){Kr.call(this,n,i)}function lX(n,i){Kr.call(this,n,i)}function KRe(n,i){Kr.call(this,n,i)}function XRe(n,i){Kr.call(this,n,i)}function AU(n,i){Kr.call(this,n,i)}function QRe(n,i){Kr.call(this,n,i)}function She(n,i){Kr.call(this,n,i)}function cX(n,i){Kr.call(this,n,i)}function The(n,i){Kr.call(this,n,i)}function Che(n,i){Kr.call(this,n,i)}function Ahe(n,i){Kr.call(this,n,i)}function khe(n,i){Kr.call(this,n,i)}function ZRe(n,i){Kr.call(this,n,i)}function Rhe(n,i){Kr.call(this,n,i)}function JRe(n,i){Kr.call(this,n,i)}function kU(n,i){Kr.call(this,n,i)}function Ihe(n,i){Kr.call(this,n,i)}function e8e(n,i){Kr.call(this,n,i)}function RU(n,i){Kr.call(this,n,i)}function t8e(n,i){Kr.call(this,n,i)}function y8t(n,i){this.b=n,this.a=i}function v8t(n,i){this.b=n,this.a=i}function _8t(n,i){this.b=n,this.a=i}function w8t(n,i){this.b=n,this.a=i}function n8e(n,i){this.a=n,this.b=i}function E8t(n,i){this.a=n,this.b=i}function x8t(n,i){this.a=n,this.b=i}function Ct(n,i){this.a=n,this.b=i}function FL(n,i){Kr.call(this,n,i)}function IU(n,i){Kr.call(this,n,i)}function uk(n,i){Kr.call(this,n,i)}function $L(n,i){Kr.call(this,n,i)}function NU(n,i){Kr.call(this,n,i)}function Nhe(n,i){Kr.call(this,n,i)}function uX(n,i){Kr.call(this,n,i)}function UL(n,i){Kr.call(this,n,i)}function Ohe(n,i){Kr.call(this,n,i)}function hX(n,i){Kr.call(this,n,i)}function kT(n,i){Kr.call(this,n,i)}function OU(n,i){Kr.call(this,n,i)}function zL(n,i){Kr.call(this,n,i)}function GL(n,i){Kr.call(this,n,i)}function LU(n,i){Kr.call(this,n,i)}function dX(n,i){Kr.call(this,n,i)}function RT(n,i){Kr.call(this,n,i)}function Lhe(n,i){Kr.call(this,n,i)}function S8t(n,i){Kr.call(this,n,i)}function fX(n,i){Kr.call(this,n,i)}function T8t(n,i){this.a=n,this.b=i}function C8t(n,i){this.a=n,this.b=i}function A8t(n,i){this.a=n,this.b=i}function k8t(n,i){this.a=n,this.b=i}function R8t(n,i){this.a=n,this.b=i}function I8t(n,i){this.a=n,this.b=i}function Ms(n,i){this.a=n,this.b=i}function N8t(n,i){this.a=n,this.b=i}function O8t(n,i){this.a=n,this.b=i}function L8t(n,i){this.a=n,this.b=i}function D8t(n,i){this.a=n,this.b=i}function M8t(n,i){this.a=n,this.b=i}function P8t(n,i){this.a=n,this.b=i}function B8t(n,i){this.b=n,this.a=i}function F8t(n,i){this.b=n,this.a=i}function $8t(n,i){this.b=n,this.a=i}function U8t(n,i){this.b=n,this.a=i}function z8t(n,i){this.a=n,this.b=i}function G8t(n,i){this.a=n,this.b=i}function pX(n,i){Kr.call(this,n,i)}function q8t(n,i){this.a=n,this.b=i}function H8t(n,i){this.a=n,this.b=i}function hk(n,i){Kr.call(this,n,i)}function V8t(n,i){this.f=n,this.c=i}function r8e(n,i){return oh(n.g,i)}function $ar(n,i){return oh(i.b,n)}function Y8t(n,i){return B0e(n.a,i)}function Uar(n,i){return-n.b.af(i)}function zar(n,i){n&&Ni(EH,n,i)}function i8e(n,i){n.i=null,uZ(n,i)}function Gar(n,i,l){Bqt(i,R1e(n,l))}function qar(n,i,l){Bqt(i,R1e(n,l))}function Har(n,i){vTr(n.a,v(i,58))}function j8t(n,i){ggr(n.a,v(i,12))}function gX(n,i){this.a=n,this.b=i}function W8t(n,i){this.a=n,this.b=i}function K8t(n,i){this.a=n,this.b=i}function X8t(n,i){this.a=n,this.b=i}function Q8t(n,i){this.a=n,this.b=i}function Z8t(n,i){this.d=n,this.b=i}function J8t(n,i){this.e=n,this.a=i}function DU(n,i){this.b=n,this.c=i}function a8e(n,i){this.i=n,this.g=i}function s8e(n,i){this.d=n,this.e=i}function Var(n,i){Igr(new mr(n),i)}function mX(n){return Qz(n.c,n.b)}function Pl(n){return n?n.md():null}function Ze(n){return n??null}function ro(n){return typeof n===Epe}function HS(n){return typeof n===Zk}function VS(n){return typeof n===nBe}function gE(n,i){return Oc(n,i)==0}function bX(n,i){return Oc(n,i)>=0}function qL(n,i){return Oc(n,i)!=0}function yX(n,i){return jmr(n.Kc(),i)}function Nv(n,i){return n.Rd().Xb(i)}function eIt(n){return zh(n),n.d.gc()}function vX(n){return tD(n==null),n}function HL(n,i){return n.a+=""+i,n}function bl(n,i){return n.a+=""+i,n}function VL(n,i){return n.a+=""+i,n}function Kc(n,i){return n.a+=""+i,n}function bi(n,i){return n.a+=""+i,n}function o8e(n,i){return n.a+=""+i,n}function Yar(n){return""+(hr(n),n)}function tIt(n){xh(this),AD(this,n)}function nIt(){XNe(),nNe.call(this)}function rIt(n,i){oNe.call(this,n,i)}function iIt(n,i){oNe.call(this,n,i)}function _X(n,i){oNe.call(this,n,i)}function jo(n,i){qa(n,i,n.c.b,n.c)}function IT(n,i){qa(n,i,n.a,n.a.a)}function l8e(n){return $n(n,0),null}function aIt(){this.b=0,this.a=!1}function sIt(){this.b=0,this.a=!1}function oIt(){this.b=new ok(o4(12))}function lIt(){lIt=z,Ptn=Qr(H0e())}function cIt(){cIt=z,irn=Qr(vYt())}function uIt(){uIt=z,Aon=Qr(Z$t())}function c8e(){c8e=z,I7e(),ZUe=new Br}function i1(n){return n.a=0,n.b=0,n}function hIt(n,i){return n.a=i.g+1,n}function Dhe(n,i){XS.call(this,n,i)}function En(n,i){Ba.call(this,n,i)}function NT(n,i){a8e.call(this,n,i)}function dIt(n,i){FU.call(this,n,i)}function Mhe(n,i){M8.call(this,n,i)}function Ai(n,i){jK(),Ni(hre,n,i)}function fIt(n,i){n.q.setTime(N_(i))}function jar(n){u.clearTimeout(n)}function War(n){return ni(n),new YL(n)}function pIt(n,i){return Ze(n)===Ze(i)}function gIt(n,i){return n.a.a.a.cc(i)}function Phe(n,i){return af(n.a,0,i)}function u8e(n){return Zhr(v(n,74))}function dk(n){return Ps((hr(n),n))}function Kar(n){return Ps((hr(n),n))}function mIt(n){return Su(n.l,n.m,n.h)}function h8e(n,i){return Nc(n.a,i.a)}function Xar(n,i){return nLt(n.a,i.a)}function Qar(n,i){return ha(n.a,i.a)}function qp(n,i){return n.indexOf(i)}function Zar(n,i){return n.j[i.p]==2}function mE(n,i){return n==i?0:n?1:-1}function wX(n){return n<10?"0"+n:""+n}function jl(n){return typeof n===nBe}function Jar(n){return n==dx||n==U4}function esr(n){return n==dx||n==$4}function bIt(n,i){return Nc(n.g,i.g)}function d8e(n){return $l(n.b.b,n,0)}function yIt(){WX.call(this,0,0,0,0)}function Hp(){f7e.call(this,new Zb)}function f8e(n,i){_8(n,0,n.length,i)}function tsr(n,i){return Lt(n.a,i),i}function nsr(n,i){return _0(),i.a+=n}function rsr(n,i){return _0(),i.a+=n}function isr(n,i){return _0(),i.c+=n}function asr(n,i){return Lt(n.c,i),n}function p8e(n,i){return Rd(n.a,i),n}function vIt(n){this.a=c8t(),this.b=n}function _It(n){this.a=c8t(),this.b=n}function Wo(n){this.a=n.a,this.b=n.b}function YL(n){this.a=n,fue.call(this)}function wIt(n){this.a=n,fue.call(this)}function fk(){rf.call(this,0,0,0,0)}function EX(n){return Rd(new ms,n)}function EIt(n){return dQ(v(n,123))}function id(n){return n.vh()&&n.wh()}function OT(n){return n!=up&&n!=y2}function Bm(n){return n==Ol||n==ql}function LT(n){return n==Ef||n==lp}function xIt(n){return n==q5||n==G5}function ssr(n,i){return Nc(n.g,i.g)}function SIt(n,i){return new M8(i,n)}function osr(n,i){return new M8(i,n)}function g8e(n){return Rur(n.b.Kc(),n.a)}function Bhe(n,i){q8(n,i),k8(n,n.D)}function Fhe(n,i,l){nZ(n,i),tZ(n,l)}function DT(n,i,l){FE(n,i),BE(n,l)}function ef(n,i,l){Au(n,i),ku(n,l)}function MU(n,i,l){S8(n,i),C8(n,l)}function PU(n,i,l){T8(n,i),A8(n,l)}function TIt(n,i,l){Q8e.call(this,n,i,l)}function m8e(n){V8t.call(this,n,!0)}function CIt(){XK.call(this,"Tail",3)}function AIt(){XK.call(this,"Head",1)}function Ov(n){eg(),qmr.call(this,n)}function bE(n){WX.call(this,n,n,n,n)}function $he(n){n.c=st(zs,Yn,1,0,5,1)}function b8e(n){return n.b&&ipe(n),n.a}function y8e(n){return n.b&&ipe(n),n.c}function lsr(n,i){rp||(n.b=i)}function csr(n,i){return n[n.length]=i}function usr(n,i){return n[n.length]=i}function hsr(n,i){return l4(i,z1(n))}function dsr(n,i){return l4(i,z1(n))}function fsr(n,i){return oZ(Mde(n.d),i)}function psr(n,i){return oZ(Mde(n.g),i)}function gsr(n,i){return oZ(Mde(n.j),i)}function fo(n,i){Ba.call(this,n.b,i)}function msr(n,i){Yr(Uc(n.a),WDt(i))}function bsr(n,i){Yr(Uh(n.a),KDt(i))}function ysr(n,i,l){ef(l,l.i+n,l.j+i)}function kIt(n,i,l){Ga(n.c[i.g],i.g,l)}function vsr(n,i,l){v(n.c,71).Gi(i,l)}function Uhe(n,i,l){return Ga(n,i,l),l}function RIt(n){Cu(n.Sf(),new W5t(n))}function MT(n){return n!=null?ma(n):0}function _sr(n){return n==null?0:ma(n)}function jL(n){zi(),rE.call(this,n)}function IIt(n){this.a=n,OIe.call(this,n)}function $1(){$1=z,u.Math.log(2)}function tf(){tf=z,lm=(LRt(),zun)}function NIt(){NIt=z,_ve=new UD(D2e)}function ii(){ii=z,new OIt,new Ot}function OIt(){new Br,new Br,new Br}function wsr(){throw _e(new zb(fen))}function Esr(){throw _e(new zb(fen))}function xsr(){throw _e(new zb(pen))}function Ssr(){throw _e(new zb(pen))}function zhe(n){this.a=n,FK.call(this,n)}function Ghe(n){this.a=n,FK.call(this,n)}function LIt(n,i){CE(),this.a=n,this.b=i}function Tsr(n,i){ni(i),zT(n).Jc(new k)}function us(n,i){vde(n.c,n.c.length,i)}function nc(n){return n.ai?1:0}function _8e(n,i){return Oc(n,i)>0?n:i}function Su(n,i,l){return{l:n,m:i,h:l}}function Csr(n,i){n.a!=null&&j8t(i,n.a)}function Asr(n){Uo(n,null),lo(n,null)}function ksr(n,i,l){return Ni(n.g,l,i)}function PT(n,i,l){return qLe(i,l,n.c)}function Rsr(n,i,l){return Ni(n.k,l,i)}function Isr(n,i,l){return m7r(n,i,l),l}function Nsr(n,i){return Sd(),i.n.b+=n}function MIt(n){qNe.call(this),this.b=n}function w8e(n){lIe.call(this),this.a=n}function PIt(){XK.call(this,"Range",2)}function xX(n){this.b=n,this.a=new Ot}function BIt(n){this.b=new no,this.a=n}function FIt(n){n.a=new ce,n.c=new ce}function $It(n){n.a=new Br,n.d=new Br}function UIt(n){rfe(n,null),ife(n,null)}function zIt(n,i){return y7r(n.a,i,null)}function Osr(n,i){return Ni(n.a,i.a,i)}function Eo(n){return new Ct(n.a,n.b)}function E8e(n){return new Ct(n.c,n.d)}function Lsr(n){return new Ct(n.c,n.d)}function WL(n,i){return I6r(n.c,n.b,i)}function $e(n,i){return n!=null&&W0e(n,i)}function qhe(n,i){return xbr(n.Kc(),i)!=-1}function SX(n){return n.Ob()?n.Pb():null}function Dsr(n){this.b=(Fn(),new xue(n))}function x8e(n){this.a=n,Br.call(this)}function GIt(){FU.call(this,null,null)}function qIt(){NX.call(this,null,null)}function HIt(){Kr.call(this,"INSTANCE",0)}function VIt(){EDe(),this.a=new iM(vGe)}function YIt(n){return Qp(n,0,n.length)}function Msr(n,i){return new uNt(n.Kc(),i)}function S8e(n,i){return n.a.Bc(i)!=null}function jIt(n,i){Gr(n),n.Gc(v(i,15))}function Psr(n,i,l){n.c.bd(i,v(l,136))}function Bsr(n,i,l){n.c.Ui(i,v(l,136))}function WIt(n,i){n.c&&(VIe(i),_Dt(i))}function Fsr(n,i){n.q.setHours(i),cM(n,i)}function $sr(n,i){_E(i,n.a.a.a,n.a.a.b)}function Usr(n,i,l,d){Ga(n.a[i.g],l.g,d)}function Hhe(n,i,l){return n.a[i.g][l.g]}function zsr(n,i){return n.e[i.c.p][i.p]}function Gsr(n,i){return n.c[i.c.p][i.p]}function U1(n,i){return n.a[i.c.p][i.p]}function qsr(n,i){return n.j[i.p]=tTr(i)}function Vhe(n,i){return n.a.Bc(i)!=null}function Hsr(n,i){return We(at(i.a))<=n}function Vsr(n,i){return We(at(i.a))>=n}function Ysr(n,i){return kOe(n.f,i.Pg())}function pk(n,i){return n.a*i.a+n.b*i.b}function jsr(n,i){return n.a0?i/(n*n):i*100}function vor(n,i){return n>0?i*i/n:i*i*100}function YS(n,i){return v(j1(n.a,i),34)}function _or(n,i){return Kv(),Rn(n,i.e,i)}function wor(n,i,l){return HK(),l.Mg(n,i)}function Eor(n){return jm(),n.e.a+n.f.a/2}function xor(n,i,l){return jm(),l.e.a-n*i}function Sor(n){return jm(),n.e.b+n.f.b/2}function Tor(n,i,l){return jm(),l.e.b-n*i}function SNt(n){n.d=new wNt(n),n.e=new Br}function TNt(){this.a=new OE,this.b=new OE}function CNt(n){this.c=n,this.a=1,this.b=1}function ANt(n){_pe(),Hkt(this),this.Ff(n)}function Cor(n,i,l){GQ(),n.pf(i)&&l.Cd(n)}function Aor(n,i,l){return Lt(i,Fzt(n,l))}function _E(n,i,l){return n.a+=i,n.b+=l,n}function kor(n,i,l){return n.a*=i,n.b*=l,n}function G8e(n,i){return n.a=i.a,n.b=i.b,n}function OX(n){return n.a=-n.a,n.b=-n.b,n}function ZL(n,i,l){return n.a-=i,n.b-=l,n}function kNt(n){Ea.call(this),xD(this,n)}function RNt(){Kr.call(this,"GROW_TREE",0)}function INt(){Kr.call(this,"POLYOMINO",0)}function sd(n,i,l){uh.call(this,n,i,l,2)}function Ror(n,i,l){FD(Uc(n.a),i,WDt(l))}function NNt(n,i){IL(),FU.call(this,n,i)}function q8e(n,i){Yb(),NX.call(this,n,i)}function ONt(n,i){Yb(),q8e.call(this,n,i)}function LNt(n,i){Yb(),NX.call(this,n,i)}function Ior(n,i){return n.c.Fc(v(i,136))}function Nor(n,i,l){FD(Uh(n.a),i,KDt(l))}function DNt(n){this.c=n,Au(n,0),ku(n,0)}function Qhe(n,i){tf(),QX.call(this,n,i)}function MNt(n,i){tf(),Qhe.call(this,n,i)}function H8e(n,i){tf(),Qhe.call(this,n,i)}function V8e(n,i){tf(),QX.call(this,n,i)}function PNt(n,i){tf(),H8e.call(this,n,i)}function BNt(n,i){tf(),V8e.call(this,n,i)}function FNt(n,i){tf(),QX.call(this,n,i)}function Oor(n,i,l){return i.zl(n.e,n.c,l)}function Lor(n,i,l){return i.Al(n.e,n.c,l)}function Y8e(n,i,l){return LJ(Sz(n,i),l)}function Zhe(n,i){return Hv(n.e,v(i,54))}function Dor(n){return n==null?null:aRr(n)}function Mor(n){return n==null?null:Zxr(n)}function Por(n){return n==null?null:Kl(n)}function Bor(n){return n==null?null:Kl(n)}function Ht(n){return tD(n==null||HS(n)),n}function at(n){return tD(n==null||VS(n)),n}function ai(n){return tD(n==null||ro(n)),n}function Fm(n){n.o==null&&I3r(n)}function j8e(n){if(!n)throw _e(new cU)}function For(n){if(!n)throw _e(new kue)}function Tr(n){if(!n)throw _e(new ec)}function jS(n){if(!n)throw _e(new ih)}function $Nt(n){if(!n)throw _e(new Jd)}function t8(){t8=z,SH=new E6t,new x6t}function UT(){UT=z,Y5=new la("root")}function W8e(){w$t.call(this),this.Bb|=el}function $or(n,i){this.d=n,w5t(this),this.b=i}function K8e(n,i){Tfe.call(this,n),this.a=i}function X8e(n,i){Tfe.call(this,n),this.a=i}function Q8e(n,i,l){FQ.call(this,n,i,l,null)}function UNt(n,i,l){FQ.call(this,n,i,l,null)}function zU(n,i){this.c=n,jR.call(this,n,i)}function JL(n,i){this.a=n,zU.call(this,n,i)}function Z8e(n){this.q=new u.Date(N_(n))}function zNt(n){return n>8?0:n+1}function GNt(n,i){rp||Lt(n.a,i)}function Uor(n,i){return vU(),D8(i.d.i,n)}function zor(n,i){return Bk(),new yjt(i,n)}function Gor(n,i,l){return n.Ne(i,l)<=0?l:i}function qor(n,i,l){return n.Ne(i,l)<=0?i:l}function Hor(n,i){return v(j1(n.b,i),143)}function Vor(n,i){return v(j1(n.c,i),233)}function Jhe(n){return v(Yt(n.a,n.b),294)}function qNt(n){return new Ct(n.c,n.d+n.a)}function HNt(n){return hr(n),n?1231:1237}function VNt(n){return Sd(),xIt(v(n,203))}function WS(){WS=z,jze=bn((ud(),vw))}function Yor(n,i){i.a?X4r(n,i):Vhe(n.a,i.b)}function GU(n,i,l){++n.j,n.tj(),Sfe(n,i,l)}function YNt(n,i,l){++n.j,n.qj(i,n.Zi(i,l))}function jNt(n,i,l){var d;d=n.fd(i),d.Rb(l)}function J8e(n,i,l){return l=Od(n,i,6,l),l}function eIe(n,i,l){return l=Od(n,i,3,l),l}function tIe(n,i,l){return l=Od(n,i,9,l),l}function Yp(n,i){return az(i,TBe),n.f=i,n}function nIe(n,i){return(i&qi)%n.d.length}function WNt(n,i,l){return MPe(n.c,n.b,i,l)}function KNt(n,i){this.c=n,PE.call(this,i)}function XNt(n,i){this.a=n,Pkt.call(this,i)}function qU(n,i){this.a=n,Pkt.call(this,i)}function Ba(n,i){la.call(this,n),this.a=i}function rIe(n,i){C7e.call(this,n),this.a=i}function ede(n,i){C7e.call(this,n),this.a=i}function jor(n){BLe.call(this,0,0),this.f=n}function QNt(n,i,l){return n.a+=Qp(i,0,l),n}function HU(n){return!n.a&&(n.a=new G),n.a}function iIe(n,i){var l;return l=n.e,n.e=i,l}function aIe(n,i){var l;return l=i,!!n.Fe(l)}function Wor(n,i){return Qn(),n==i?0:n?1:-1}function KS(n,i){n.a.bd(n.b,i),++n.b,n.c=-1}function VU(n){n.b?VU(n.b):n.f.c.zc(n.e,n.d)}function ZNt(n){xh(n.e),n.d.b=n.d,n.d.a=n.d}function Kor(n,i,l){w_(),y5t(n,i.Ve(n.a,l))}function sIe(n,i,l){return Sk(n,v(i,22),l)}function v0(n,i){return LK(new Array(i),n)}function Xor(n){return ti(Dv(n,32))^ti(n)}function tde(n){return String.fromCharCode(n)}function Qor(n){return n==null?null:n.message}function Zor(n,i,l){return n.apply(i,l)}function Jor(n,i){var l;l=n[ege],l.call(n,i)}function elr(n,i){var l;l=n[ege],l.call(n,i)}function tlr(n,i){return vU(),!D8(i.d.i,n)}function oIe(n,i,l,d){WX.call(this,n,i,l,d)}function JNt(){LX.call(this),this.a=new ho}function lIe(){this.n=new ho,this.o=new ho}function eOt(){this.b=new ho,this.c=new Ot}function tOt(){this.a=new Ot,this.b=new Ot}function nOt(){this.a=new BS,this.b=new e6t}function cIe(){this.b=new Zb,this.a=new Zb}function rOt(){this.b=new fs,this.a=new fs}function iOt(){this.b=new Br,this.a=new Br}function aOt(){this.b=new N7t,this.a=new iEt}function sOt(){this.a=new mTt,this.b=new K_t}function oOt(){this.a=new Ot,this.d=new Ot}function LX(){this.n=new ek,this.i=new fk}function lOt(n){this.a=(kd(n,k4),new gu(n))}function cOt(n){this.a=(kd(n,k4),new gu(n))}function nlr(n){return n<100?null:new Av(n)}function rlr(n,i){return n.n.a=(hr(i),i+10)}function ilr(n,i){return n.n.a=(hr(i),i+10)}function alr(n,i){return i==n||rI(mJ(i),n)}function uOt(n,i){return Ni(n.a,i,"")==null}function slr(n,i){var l;return l=i.qi(n.a),l}function Hi(n,i){return n.a+=i.a,n.b+=i.b,n}function $s(n,i){return n.a-=i.a,n.b-=i.b,n}function olr(n){return $S(n.j.c,0),n.a=-1,n}function uIe(n,i,l){return l=Od(n,i,11,l),l}function llr(n,i,l){l!=null&&lZ(i,a1e(n,l))}function clr(n,i,l){l!=null&&cZ(i,a1e(n,l))}function bk(n,i,l,d){vt.call(this,n,i,l,d)}function hIe(n,i,l,d){vt.call(this,n,i,l,d)}function hOt(n,i,l,d){hIe.call(this,n,i,l,d)}function dOt(n,i,l,d){iQ.call(this,n,i,l,d)}function nde(n,i,l,d){iQ.call(this,n,i,l,d)}function dIe(n,i,l,d){iQ.call(this,n,i,l,d)}function fOt(n,i,l,d){nde.call(this,n,i,l,d)}function fIe(n,i,l,d){nde.call(this,n,i,l,d)}function Gn(n,i,l,d){dIe.call(this,n,i,l,d)}function pOt(n,i,l,d){fIe.call(this,n,i,l,d)}function gOt(n,i,l,d){hNe.call(this,n,i,l,d)}function XS(n,i){Sl.call(this,FM+n+ew+i)}function pIe(n,i){return n.jk().wi().ri(n,i)}function gIe(n,i){return n.jk().wi().ti(n,i)}function mOt(n,i){return hr(n),Ze(n)===Ze(i)}function An(n,i){return hr(n),Ze(n)===Ze(i)}function ulr(n,i){return n.b.Bd(new $Rt(n,i))}function hlr(n,i){return n.b.Bd(new URt(n,i))}function bOt(n,i){return n.b.Bd(new zRt(n,i))}function dlr(n,i){return n.e=v(n.d.Kb(i),159)}function mIe(n,i,l){return n.lastIndexOf(i,l)}function flr(n,i,l){return ha(n[i.a],n[l.a])}function plr(n,i){return _t(i,(qt(),Pq),n)}function glr(n,i){return Nc(i.a.d.p,n.a.d.p)}function mlr(n,i){return Nc(n.a.d.p,i.a.d.p)}function blr(n,i){return ha(n.c-n.s,i.c-i.s)}function ylr(n,i){return ha(n.b.e.a,i.b.e.a)}function vlr(n,i){return ha(n.c.e.a,i.c.e.a)}function yOt(n){return n.c?$l(n.c.a,n,0):-1}function yk(n){return n==yw||n==sm||n==su}function bIe(n,i){this.c=n,Rde.call(this,n,i)}function vOt(n,i,l){this.a=n,$8e.call(this,i,l)}function _Ot(n){this.c=n,_X.call(this,MG,0)}function wOt(n,i,l){this.c=i,this.b=l,this.a=n}function YU(n){r8(),this.d=n,this.a=new FT}function EOt(n){jp(),this.a=(Fn(),new zR(n))}function _lr(n,i){Bm(n.f)?E3r(n,i):JEr(n,i)}function xOt(n,i){Lur.call(this,n,n.length,i)}function wlr(n,i){rp||i&&(n.d=i)}function SOt(n,i){return $e(i,15)&&ZYt(n.c,i)}function Elr(n,i,l){return v(n.c,71).Wk(i,l)}function DX(n,i,l){return v(n.c,71).Xk(i,l)}function xlr(n,i,l){return Oor(n,v(i,343),l)}function yIe(n,i,l){return Lor(n,v(i,343),l)}function Slr(n,i,l){return Vqt(n,v(i,343),l)}function TOt(n,i,l){return dxr(n,v(i,343),l)}function eD(n,i){return i==null?null:d4(n.b,i)}function vIe(n){return VS(n)?(hr(n),n):n.ue()}function MX(n){return!isNaN(n)&&!isFinite(n)}function rde(n){FIt(this),xd(this),bo(this,n)}function Eh(n){$he(this),MIe(this.c,0,n.Pc())}function nf(n,i,l){this.a=n,this.b=i,this.c=l}function COt(n,i,l){this.a=n,this.b=i,this.c=l}function AOt(n,i,l){this.d=n,this.b=l,this.a=i}function kOt(n){this.a=n,Pm(),xc(Date.now())}function ROt(n){ld(n.a),DOe(n.c,n.b),n.b=null}function ide(){ide=z,_ze=new be,qen=new ve}function IOt(){IOt=z,Yun=st(zs,Yn,1,0,5,1)}function NOt(){NOt=z,uhn=st(zs,Yn,1,0,5,1)}function _Ie(){_Ie=z,hhn=st(zs,Yn,1,0,5,1)}function jp(){jp=z,new R7e((Fn(),Fn(),Zo))}function Tlr(n){return w8(),Xr((BBt(),Yen),n)}function Clr(n){return Ch(),Xr((ABt(),Zen),n)}function Alr(n){return GZ(),Xr((dPt(),itn),n)}function klr(n){return KQ(),Xr((fPt(),atn),n)}function Rlr(n){return SJ(),Xr((dUt(),stn),n)}function Ilr(n){return u1(),Xr((TBt(),ctn),n)}function Nlr(n){return Th(),Xr((SBt(),htn),n)}function Olr(n){return ju(),Xr((CBt(),ftn),n)}function Llr(n){return FJ(),Xr((lIt(),Ptn),n)}function Dlr(n){return GE(),Xr(($Bt(),Ftn),n)}function Mlr(n){return qk(),Xr((zBt(),Utn),n)}function Plr(n){return VD(),Xr((UBt(),qtn),n)}function Blr(n){return GK(),Xr((FMt(),Htn),n)}function Flr(n){return XQ(),Xr((pPt(),onn),n)}function $lr(n){return wD(),Xr((kBt(),Lnn),n)}function Ulr(n){return Mo(),Xr((EFt(),Bnn),n)}function zlr(n){return B8(),Xr((qBt(),Gnn),n)}function Glr(n){return z_(),Xr((GBt(),Wnn),n)}function wIe(n,i){if(!n)throw _e(new ar(i))}function n8(n){if(!n)throw _e(new Tl(rBe))}function ade(n,i){if(n!=i)throw _e(new Jd)}function OOt(n,i,l){this.a=n,this.b=i,this.c=l}function EIe(n,i,l){this.a=n,this.b=i,this.c=l}function LOt(n,i,l){this.a=n,this.b=i,this.c=l}function PX(n,i,l){this.b=n,this.a=i,this.c=l}function xIe(n,i,l){this.b=n,this.c=i,this.a=l}function SIe(n,i,l){this.a=n,this.b=i,this.c=l}function BX(n,i,l){this.e=i,this.b=n,this.d=l}function DOt(n,i,l){this.b=n,this.a=i,this.c=l}function qlr(n,i,l){return w_(),n.a.Yd(i,l),i}function sde(n){var i;return i=new Vn,i.e=n,i}function TIe(n){var i;return i=new a6t,i.b=n,i}function jU(){jU=z,pte=new Svt,gte=new Tvt}function FX(){FX=z,crn=new Zvt,lrn=new Jvt}function _0(){_0=z,prn=new o_t,grn=new l_t}function Hlr(n){return UE(),Xr((aBt(),Trn),n)}function Vlr(n){return qo(),Xr((cIt(),irn),n)}function Ylr(n){return wZ(),Xr((VBt(),orn),n)}function jlr(n){return K1(),Xr((HBt(),yrn),n)}function Wlr(n){return b4(),Xr((xFt(),_rn),n)}function Klr(n){return EJ(),Xr((Q$t(),Crn),n)}function Xlr(n){return jk(),Xr((WFt(),Arn),n)}function Qlr(n){return zQ(),Xr((wPt(),krn),n)}function Zlr(n){return SD(),Xr((rBt(),Rrn),n)}function Jlr(n){return iZ(),Xr((iBt(),Irn),n)}function ecr(n){return ly(),Xr((SFt(),Nrn),n)}function tcr(n){return Rz(),Xr((bPt(),Orn),n)}function ncr(n){return aI(),Xr((QFt(),Frn),n)}function rcr(n){return cl(),Xr((kUt(),$rn),n)}function icr(n){return P8(),Xr((oBt(),Urn),n)}function acr(n){return Ym(),Xr((lBt(),Grn),n)}function scr(n){return IQ(),Xr((mPt(),qrn),n)}function ocr(n){return lG(),Xr((XFt(),Brn),n)}function lcr(n){return F_(),Xr((sBt(),Drn),n)}function ccr(n){return cJ(),Xr((KFt(),Mrn),n)}function ucr(n){return Ez(),Xr((yPt(),Prn),n)}function hcr(n){return pf(),Xr((CFt(),Hrn),n)}function dcr(n){return fy(),Xr((cUt(),psn),n)}function fcr(n){return DD(),Xr((cBt(),gsn),n)}function pcr(n){return g4(),Xr((YBt(),msn),n)}function gcr(n){return HD(),Xr((TFt(),bsn),n)}function mcr(n){return qf(),Xr((RUt(),ysn),n)}function bcr(n){return Zp(),Xr((jBt(),vsn),n)}function ycr(n){return Az(),Xr((vPt(),_sn),n)}function vcr(n){return ll(),Xr((dBt(),Esn),n)}function _cr(n){return yZ(),Xr((uBt(),xsn),n)}function wcr(n){return ND(),Xr((hBt(),Ssn),n)}function Ecr(n){return H8(),Xr((fBt(),Tsn),n)}function xcr(n){return rZ(),Xr((pBt(),Csn),n)}function Scr(n){return EZ(),Xr((gBt(),Asn),n)}function Tcr(n){return $E(),Xr((xBt(),qsn),n)}function Ccr(n){return yD(),Xr((_Pt(),Wsn),n)}function Acr(n){return Kp(),Xr((SPt(),ton),n)}function kcr(n){return G1(),Xr((TPt(),ron),n)}function Rcr(n){return o1(),Xr((CPt(),yon),n)}function Icr(n){return LE(),Xr((APt(),Ton),n)}function Ncr(n){return Yk(),Xr((eFt(),Con),n)}function Ocr(n){return oM(),Xr((uIt(),Aon),n)}function Lcr(n){return OD(),Xr((mBt(),kon),n)}function Dcr(n){return LD(),Xr((JBt(),Qon),n)}function Mcr(n){return AQ(),Xr((EPt(),Zon),n)}function Pcr(n){return hZ(),Xr((xPt(),rln),n)}function Bcr(n){return aJ(),Xr((AFt(),aln),n)}function Fcr(n){return qz(),Xr((bBt(),oln),n)}function $cr(n){return qQ(),Xr((kPt(),sln),n)}function Ucr(n){return ZZ(),Xr((ZBt(),Aln),n)}function zcr(n){return bZ(),Xr((yBt(),kln),n)}function Gcr(n){return BZ(),Xr((vBt(),Rln),n)}function qcr(n){return WZ(),Xr((_Bt(),Nln),n)}function Hcr(n){return NZ(),Xr((wBt(),Dln),n)}function Vcr(n){return MQ(),Xr((RPt(),tcn),n)}function Ycr(n){return N8(),Xr((gPt(),rrn),n)}function jcr(n){return lr(),Xr((ZFt(),Znn),n)}function Wcr(n){return HQ(),Xr((EBt(),ncn),n)}function Kcr(n){return n0e(),Xr((IPt(),rcn),n)}function Xcr(n){return rM(),Xr((kFt(),acn),n)}function Qcr(n){return VK(),Xr((YMt(),ocn),n)}function Zcr(n){return Kz(),Xr((IBt(),scn),n)}function Jcr(n){return YK(),Xr((jMt(),ccn),n)}function eur(n){return bz(),Xr((NPt(),ucn),n)}function tur(n){return uG(),Xr((RFt(),hcn),n)}function nur(n){return AL(),Xr((WMt(),Acn),n)}function rur(n){return $z(),Xr((OPt(),kcn),n)}function iur(n){return d1(),Xr((NFt(),Dcn),n)}function aur(n){return dy(),Xr((K$t(),Pcn),n)}function sur(n){return qg(),Xr((JFt(),Bcn),n)}function our(n){return q_(),Xr((e$t(),qcn),n)}function lur(n){return ys(),Xr((IFt(),lun),n)}function cur(n){return W1(),Xr((NBt(),cun),n)}function uur(n){return Xm(),Xr((tFt(),uun),n)}function hur(n){return oJ(),Xr((t$t(),hun),n)}function dur(n){return Km(),Xr((RBt(),fun),n)}function fur(n){return Id(),Xr((nFt(),gun),n)}function pur(n){return w4(),Xr((hUt(),mun),n)}function gur(n){return ZT(),Xr((OFt(),bun),n)}function mur(n){return co(),Xr((n$t(),yun),n)}function bur(n){return Ah(),Xr((r$t(),vun),n)}function yur(n){return Bt(),Xr((LFt(),_un),n)}function vur(n){return ud(),Xr((rFt(),Tun),n)}function _ur(n){return qh(),Xr((uUt(),Cun),n)}function wur(n){return Uk(),Xr((OBt(),Aun),n)}function Eur(n,i){return hr(n),n+(hr(i),i)}function xur(n){return ode(),Xr((LPt(),kun),n)}function Sur(n){return LZ(),Xr((iFt(),Run),n)}function Tur(n){return xZ(),Xr((aFt(),Oun),n)}function r8(){r8=z,VVe=(Bt(),cr),_ne=gr}function ode(){ode=z,lKe=new u9t,cKe=new K9t}function Cur(n){return!n.e&&(n.e=new Ot),n.e}function lde(n,i){this.c=n,this.a=i,this.b=i-n}function MOt(n,i,l){this.a=n,this.b=i,this.c=l}function cde(n,i,l){this.a=n,this.b=i,this.c=l}function CIe(n,i,l){this.a=n,this.b=i,this.c=l}function AIe(n,i,l){this.a=n,this.b=i,this.c=l}function POt(n,i,l){this.a=n,this.b=i,this.c=l}function BOt(n,i,l){this.a=n,this.b=i,this.c=l}function Wb(n,i,l){this.e=n,this.a=i,this.c=l}function FOt(n,i,l){tf(),VNe.call(this,n,i,l)}function ude(n,i,l){tf(),kNe.call(this,n,i,l)}function kIe(n,i,l){tf(),kNe.call(this,n,i,l)}function RIe(n,i,l){tf(),kNe.call(this,n,i,l)}function $Ot(n,i,l){tf(),ude.call(this,n,i,l)}function IIe(n,i,l){tf(),ude.call(this,n,i,l)}function UOt(n,i,l){tf(),IIe.call(this,n,i,l)}function zOt(n,i,l){tf(),kIe.call(this,n,i,l)}function GOt(n,i,l){tf(),RIe.call(this,n,i,l)}function hde(n){WX.call(this,n.d,n.c,n.a,n.b)}function NIe(n){WX.call(this,n.d,n.c,n.a,n.b)}function OIe(n){this.d=n,w5t(this),this.b=Thr(n.d)}function Aur(n){return oI(),Xr((X$t(),Vun),n)}function WU(n,i){return ni(n),ni(i),new X7t(n,i)}function vk(n,i){return ni(n),ni(i),new t9t(n,i)}function kur(n,i){return ni(n),ni(i),new n9t(n,i)}function Rur(n,i){return ni(n),ni(i),new aRt(n,i)}function dde(n){return Tr(n.b!=0),cf(n,n.a.a)}function Iur(n){return Tr(n.b!=0),cf(n,n.c.b)}function Nur(n){return!n.c&&(n.c=new OR),n.c}function i8(n){var i;return i=new Ot,Pfe(i,n),i}function Our(n){var i;return i=new fs,Pfe(i,n),i}function qOt(n){var i;return i=new D7e,Kfe(i,n),i}function KU(n){var i;return i=new Ea,Kfe(i,n),i}function v(n,i){return tD(n==null||W0e(n,i)),n}function Lur(n,i,l){G9t.call(this,i,l),this.a=n}function HOt(n,i){this.c=n,this.b=i,this.a=!1}function VOt(){this.a=";,;",this.b="",this.c=""}function YOt(n,i,l){this.b=n,rIt.call(this,i,l)}function LIe(n,i,l){this.c=n,QK.call(this,i,l)}function DIe(n,i,l){XR.call(this,n,i),this.b=l}function MIe(n,i,l){AMe(l,0,n,i,l.length,!1)}function Bg(n,i,l,d,g){n.b=i,n.c=l,n.d=d,n.a=g}function PIe(n,i,l,d,g){n.d=i,n.c=l,n.a=d,n.b=g}function Dur(n,i){i&&(n.b=i,n.a=(Pv(i),i.a))}function XU(n,i){if(!n)throw _e(new ar(i))}function _k(n,i){if(!n)throw _e(new Tl(i))}function BIe(n,i){if(!n)throw _e(new e7t(i))}function Mur(n,i){return qK(),Nc(n.d.p,i.d.p)}function Pur(n,i){return jm(),ha(n.e.b,i.e.b)}function Bur(n,i){return jm(),ha(n.e.a,i.e.a)}function Fur(n,i){return Nc(o9t(n.d),o9t(i.d))}function $X(n,i){return i&&cQ(n,i.d)?i:null}function $ur(n,i){return i==(Bt(),cr)?n.c:n.d}function FIe(n){return zv(Fhr(jl(n)?Uf(n):n))}function Uur(n){return new Ct(n.c+n.b,n.d+n.a)}function jOt(n){return n!=null&&!L0e(n,ZP,JP)}function zur(n,i){return(Tzt(n)<<4|Tzt(i))&vs}function WOt(n,i,l,d,g){n.c=i,n.d=l,n.b=d,n.a=g}function $Ie(n){var i,l;i=n.b,l=n.c,n.b=l,n.c=i}function UIe(n){var i,l;l=n.d,i=n.a,n.d=i,n.a=l}function Gur(n,i){var l;return l=n.c,y9e(n,i),l}function zIe(n,i){return i<0?n.g=-1:n.g=i,n}function UX(n,i){return Xgr(n),n.a*=i,n.b*=i,n}function KOt(n,i,l){qFt.call(this,i,l),this.d=n}function QU(n,i,l){s8e.call(this,n,i),this.c=l}function zX(n,i,l){s8e.call(this,n,i),this.c=l}function GIe(n){_Ie(),gK.call(this),this.ci(n)}function XOt(){y8(),cdr.call(this,(Rv(),t0))}function QOt(n){return zi(),new Fg(0,n)}function ZOt(){ZOt=z,K2e=(Fn(),new Eue(Zme))}function GX(){GX=z,new JLe((Pue(),ube),(Mue(),cbe))}function JOt(){JOt=z,sze=st(Ao,kt,17,256,0,1)}function e9t(){this.b=We(at(zt((A0(),qbe))))}function fde(n){this.b=n,this.a=x_(this.b.a).Od()}function t9t(n,i){this.b=n,this.a=i,fue.call(this)}function n9t(n,i){this.a=n,this.b=i,fue.call(this)}function r9t(n,i,l){this.a=n,NT.call(this,i,l)}function i9t(n,i,l){this.a=n,NT.call(this,i,l)}function a8(n,i,l){var d;d=new JS(l),c1(n,i,d)}function qIe(n,i,l){var d;return d=n[i],n[i]=l,d}function qX(n){var i;return i=n.slice(),Rfe(i,n)}function HX(n){var i;return i=n.n,n.a.b+i.d+i.a}function a9t(n){var i;return i=n.n,n.e.b+i.d+i.a}function HIe(n){var i;return i=n.n,n.e.a+i.b+i.c}function VIe(n){n.a.b=n.b,n.b.a=n.a,n.a=n.b=null}function pi(n,i){return qa(n,i,n.c.b,n.c),!0}function qur(n){return n.a?n.a:zde(n)}function Hur(n){return kk(),Hg(n)==Aa(jv(n))}function Vur(n){return kk(),jv(n)==Aa(Hg(n))}function wE(n,i){return KD(n,new XR(i.a,i.b))}function Yur(n,i){return hQ(),n1e(n,i),new ALt(n,i)}function jur(n,i){return n.c=i)throw _e(new z7e)}function QS(n,i){return jz(n,(hr(i),new k5t(i)))}function Ek(n,i){return jz(n,(hr(i),new R5t(i)))}function H9t(n,i,l){return v8r(n,v(i,12),v(l,12))}function V9t(n){return hh(),v(n,12).g.c.length!=0}function Y9t(n){return hh(),v(n,12).e.c.length!=0}function Nhr(n,i){return Bk(),ha(i.a.o.a,n.a.o.a)}function Ohr(n,i){i.Bb&Sc&&!n.a.o&&(n.a.o=i)}function Lhr(n,i){i.Ug("General 'Rotator",1),j7r(n)}function Dhr(n,i,l){i.qf(l,We(at(br(n.b,l)))*n.a)}function j9t(n,i,l){return l5(),O8(n,i)&&O8(n,l)}function aD(n){return Ah(),!n.Hc(ub)&&!n.Hc(v2)}function Mhr(n){return n.e?OOe(n.e):null}function sD(n){return jl(n)?""+n:QYt(n)}function uNe(n){var i;for(i=n;i.f;)i=i.f;return i}function Phr(n,i,l){return Ga(i,0,XIe(i[0],l[0])),i}function Kb(n,i,l,d){var g;g=n.i,g.i=i,g.a=l,g.b=d}function vt(n,i,l,d){gs.call(this,n,i,l),this.b=d}function js(n,i,l,d,g){Afe.call(this,n,i,l,d,g,-1)}function oD(n,i,l,d,g){vz.call(this,n,i,l,d,g,-1)}function iQ(n,i,l,d){QU.call(this,n,i,l),this.b=d}function W9t(n){V8t.call(this,n,!1),this.a=!1}function K9t(){S8t.call(this,"LOOKAHEAD_LAYOUT",1)}function X9t(n){this.b=n,gk.call(this,n),tNt(this)}function Q9t(n){this.b=n,$U.call(this,n),nNt(this)}function ZS(n,i,l){this.a=n,bk.call(this,i,l,5,6)}function hNe(n,i,l,d){this.b=n,gs.call(this,i,l,d)}function Z9t(n,i){this.b=n,i5t.call(this,n.b),this.a=i}function J9t(n){this.a=PGt(n.a),this.b=new Eh(n.b)}function dNe(n,i){CE(),har.call(this,n,AZ(new wh(i)))}function aQ(n,i){return zi(),new ANe(n,i,0)}function Cde(n,i){return zi(),new ANe(6,n,i)}function xo(n,i){for(hr(i);n.Ob();)i.Cd(n.Pb())}function Tu(n,i){return ro(i)?Kde(n,i):!!ol(n.f,i)}function Ade(n,i){return i.Vh()?Hv(n.b,v(i,54)):i}function Bhr(n,i){return An(n.substr(0,i.length),i)}function $g(n){return new yr(new L8e(n.a.length,n.a))}function sQ(n){return new Ct(n.c+n.b/2,n.d+n.a/2)}function Fhr(n){return Su(~n.l&Hh,~n.m&Hh,~n.h&rb)}function kde(n){return typeof n===NG||typeof n===xpe}function xh(n){n.f=new vIt(n),n.i=new _It(n),++n.g}function eLt(n){if(!n)throw _e(new ec);return n.d}function xk(n){var i;return i=ID(n),Tr(i!=null),i}function $hr(n){var i;return i=tvr(n),Tr(i!=null),i}function o8(n,i){var l;return l=n.a.gc(),AOe(i,l),l-i}function Es(n,i){var l;return l=n.a.zc(i,n),l==null}function JU(n,i){return n.a.zc(i,(Qn(),a2))==null}function fNe(n){return new xn(null,Hhr(n,n.length))}function pNe(n,i,l){return wWt(n,v(i,42),v(l,176))}function Sk(n,i,l){return S0(n.a,i),qIe(n.b,i.g,l)}function Uhr(n,i,l){s8(l,n.a.c.length),of(n.a,l,i)}function tt(n,i,l,d){ZUt(i,l,n.length),zhr(n,i,l,d)}function zhr(n,i,l,d){var g;for(g=i;g0?u.Math.log(n/i):-100}function nLt(n,i){return Oc(n,i)<0?-1:Oc(n,i)>0?1:0}function ez(n,i){jIt(n,$e(i,160)?i:v(i,2036).Rl())}function yNe(n,i){if(n==null)throw _e(new rk(i))}function Hhr(n,i){return Ygr(i,n.length),new c9t(n,i)}function vNe(n,i){return i?bo(n,i):!1}function Vhr(){return RK(),Te(xe(Een,1),wt,549,0,[fbe])}function cD(n){return n.e==0?n:new T_(-n.e,n.d,n.a)}function Yhr(n,i){return ha(n.c.c+n.c.b,i.c.c+i.c.b)}function tz(n,i){qa(n.d,i,n.b.b,n.b),++n.a,n.c=null}function rLt(n,i){return n.c?rLt(n.c,i):Lt(n.b,i),n}function jhr(n,i,l){var d;return d=s4(n,i),hfe(n,i,l),d}function iLt(n,i,l){var d;for(d=0;d=n.g}function Ga(n,i,l){return For(l==null||OAr(n,l)),n[i]=l}function SNe(n,i){return sr(i,n.length+1),n.substr(i)}function Fde(n,i){for(hr(i);n.c=n?new wRe:mmr(n-1)}function So(n){return!n.a&&n.c?n.c.b:n.a}function RNe(n){return $e(n,616)?n:new xDt(n)}function Pv(n){n.c?Pv(n.c):(Vv(n),n.d=!0)}function dD(n){n.c?n.c.$e():(n.d=!0,DTr(n))}function SLt(n){n.b=!1,n.c=!1,n.d=!1,n.a=!1}function TLt(n){var i,l;return i=n.c.i.c,l=n.d.i.c,i==l}function ddr(n,i){var l;l=n.Ih(i),l>=0?n.ki(l):yMe(n,i)}function CLt(n,i){n.c<0||n.b.b0;)n=n<<1|(n<0?1:0);return n}function DLt(n,i){var l;return l=new Xc(n),jn(i.c,l),l}function MLt(n,i){n.u.Hc((Ah(),ub))&&b4r(n,i),Mpr(n,i)}function Ec(n,i){return Ze(n)===Ze(i)||n!=null&&Yi(n,i)}function yl(n,i){return yde(n.a,i)?n.b[v(i,22).g]:null}function Tdr(){return GK(),Te(xe(Xze,1),wt,489,0,[Pbe])}function Cdr(){return VK(),Te(xe(Sje,1),wt,490,0,[s2e])}function Adr(){return YK(),Te(xe(lcn,1),wt,558,0,[o2e])}function kdr(){return AL(),Te(xe(Vje,1),wt,539,0,[eH])}function dQ(n){return!n.n&&(n.n=new vt(wl,n,1,7)),n.n}function Ude(n){return!n.c&&(n.c=new vt(Oh,n,9,9)),n.c}function LNe(n){return!n.c&&(n.c=new Gn(Lr,n,5,8)),n.c}function Rdr(n){return!n.b&&(n.b=new Gn(Lr,n,4,7)),n.b}function nz(n){return n.j.c.length=0,MNe(n.c),olr(n.a),n}function d8(n){return n.e==zI&&Vrr(n,x2r(n.g,n.b)),n.e}function rz(n){return n.f==zI&&jrr(n,pwr(n.g,n.b)),n.f}function Oi(n,i,l,d){return iUt(n,i,l,!1),kZ(n,d),n}function PLt(n,i){this.b=n,Rde.call(this,n,i),tNt(this)}function BLt(n,i){this.b=n,bIe.call(this,n,i),nNt(this)}function fD(n){this.d=n,this.a=this.d.b,this.b=this.d.c}function DNe(n,i){this.b=n,this.c=i,this.a=new lk(this.b)}function Do(n,i){return sr(i,n.length),n.charCodeAt(i)}function Idr(n,i){wLe(n,We(Wm(i,"x")),We(Wm(i,"y")))}function Ndr(n,i){wLe(n,We(Wm(i,"x")),We(Wm(i,"y")))}function Ki(n,i){return Vv(n),new xn(n,new VOe(i,n.a))}function Bl(n,i){return Vv(n),new xn(n,new IOe(i,n.a))}function e4(n,i){return Vv(n),new K8e(n,new YPt(i,n.a))}function fQ(n,i){return Vv(n),new X8e(n,new jPt(i,n.a))}function Odr(n,i){return new oDt(v(ni(n),50),v(ni(i),50))}function Ldr(n,i){return ha(n.d.c+n.d.b/2,i.d.c+i.d.b/2)}function FLt(n,i,l){l.a?ku(n,i.b-n.f/2):Au(n,i.a-n.g/2)}function Ddr(n,i){return ha(n.g.c+n.g.b/2,i.g.c+i.g.b/2)}function Mdr(n,i){return SRe(),ha((hr(n),n),(hr(i),i))}function Pdr(n){return n!=null&&mU(dre,n.toLowerCase())}function MNe(n){var i;for(i=n.Kc();i.Ob();)i.Pb(),i.Qb()}function zT(n){var i;return i=n.b,!i&&(n.b=i=new XTt(n)),i}function zde(n){var i;return i=_mr(n),i||null}function $Lt(n,i){var l,d;return l=n/i,d=Ps(l),l>d&&++d,d}function Bdr(n,i,l){var d;d=v(n.d.Kb(l),159),d&&d.Nb(i)}function Fdr(n,i,l){Ukr(n.a,l),bbr(l),o3r(n.b,l),s6r(i,l)}function pQ(n,i,l,d){this.a=n,this.c=i,this.b=l,this.d=d}function PNe(n,i,l,d){this.c=n,this.b=i,this.a=l,this.d=d}function ULt(n,i,l,d){this.c=n,this.b=i,this.d=l,this.a=d}function rf(n,i,l,d){this.c=n,this.d=i,this.b=l,this.a=d}function zLt(n,i,l,d){this.a=n,this.d=i,this.c=l,this.b=d}function Gde(n,i,l,d){this.a=n,this.e=i,this.d=l,this.c=d}function GLt(n,i,l,d){this.a=n,this.c=i,this.d=l,this.b=d}function qde(n,i,l){this.a=cBe,this.d=n,this.b=i,this.c=l}function Ck(n,i,l,d){Kr.call(this,n,i),this.a=l,this.b=d}function qLt(n,i){this.d=(hr(n),n),this.a=16449,this.c=i}function HLt(n){this.a=new Ot,this.e=st(Wr,kt,53,n,0,2)}function $dr(n){n.Ug("No crossing minimization",1),n.Vg()}function VLt(){tc.call(this,"There is no more element.")}function YLt(n,i,l,d){this.a=n,this.b=i,this.c=l,this.d=d}function jLt(n,i,l,d){this.a=n,this.b=i,this.c=l,this.d=d}function A_(n,i,l,d){this.e=n,this.a=i,this.c=l,this.d=d}function WLt(n,i,l,d){this.a=n,this.c=i,this.d=l,this.b=d}function KLt(n,i,l,d){tf(),WPt.call(this,i,l,d),this.a=n}function XLt(n,i,l,d){tf(),WPt.call(this,i,l,d),this.a=n}function Hde(n,i,l){var d,g;return d=KPe(n),g=i.ti(l,d),g}function $m(n){var i,l;return l=(i=new iE,i),x8(l,n),l}function Vde(n){var i,l;return l=(i=new iE,i),ZDe(l,n),l}function Udr(n,i){var l;return l=br(n.f,i),N9e(i,l),null}function QLt(n){return!n.b&&(n.b=new vt(ss,n,12,3)),n.b}function ZLt(n){return tD(n==null||kde(n)&&n.Tm!==Z),n}function gQ(n){return n.n&&(n.e!==JKt&&n.je(),n.j=null),n}function f8(n){if(zh(n.d),n.d.d!=n.c)throw _e(new Jd)}function BNe(n){return Tr(n.b0&&Iqt(this)}function JLt(n,i){this.a=n,$or.call(this,n,v(n.d,15).fd(i))}function zdr(n,i){return ha(lh(n)*od(n),lh(i)*od(i))}function Gdr(n,i){return ha(lh(n)*od(n),lh(i)*od(i))}function qdr(n){return KE(n)&&Vt(Ht(Et(n,(qt(),lw))))}function Hdr(n,i){return Rn(n,v(oe(i,(qt(),oN)),17),i)}function Vdr(n,i){return v(oe(n,(At(),w6)),15).Fc(i),i}function FNe(n,i){return n.b=i.b,n.c=i.c,n.d=i.d,n.a=i.a,n}function eDt(n,i,l,d){this.b=n,this.c=d,_X.call(this,i,l)}function Ydr(n,i,l){n.i=0,n.e=0,i!=l&&BUt(n,i,l)}function jdr(n,i,l){n.i=0,n.e=0,i!=l&&FUt(n,i,l)}function Wdr(n,i,l){return CL(),wvr(v(br(n.e,i),529),l)}function Ak(n){var i;return i=n.f,i||(n.f=new jR(n,n.c))}function tDt(n,i){return QT(n.j,i.s,i.c)+QT(i.e,n.s,n.c)}function nDt(n,i){n.e&&!n.e.a&&(qkt(n.e,i),nDt(n.e,i))}function rDt(n,i){n.d&&!n.d.a&&(qkt(n.d,i),rDt(n.d,i))}function Kdr(n,i){return-ha(lh(n)*od(n),lh(i)*od(i))}function Xdr(n){return v(n.ld(),149).Pg()+":"+Kl(n.md())}function iDt(){S1e(this,new X6e),this.wb=(Mv(),Zn),HR()}function aDt(n){this.b=new Ot,xs(this.b,this.b),this.a=n}function $Ne(n,i){new Ea,this.a=new ah,this.b=n,this.c=i}function IE(){IE=z,yze=new ne,wbe=new ne,vze=new se}function Fn(){Fn=z,Zo=new Q,Jg=new j,ete=new ee}function UNe(){UNe=z,ttn=new mt,rtn=new tNe,ntn=new lt}function kk(){kk=z,lte=new Ot,Ube=new Br,$be=new Ot}function mQ(n,i){if(n==null)throw _e(new rk(i));return n}function bQ(n){return!n.a&&(n.a=new vt(Pi,n,10,11)),n.a}function ia(n){return!n.q&&(n.q=new vt(e0,n,11,10)),n.q}function bt(n){return!n.s&&(n.s=new vt(Ju,n,21,17)),n.s}function Qdr(n){return ni(n),YGt(new yr(_r(n.a.Kc(),new S)))}function Zdr(n,i){return cd(n),cd(i),J6t(v(n,22),v(i,22))}function k_(n,i,l){var d,g;d=vIe(l),g=new bK(d),c1(n,i,g)}function jde(n,i,l,d,g,y){vz.call(this,n,i,l,d,g,y?-2:-1)}function sDt(n,i,l,d){s8e.call(this,i,l),this.b=n,this.a=d}function oDt(n,i){bir.call(this,new Tde(n)),this.a=n,this.b=i}function zNe(n){this.b=n,this.c=n,n.e=null,n.c=null,this.a=1}function Jdr(n){_0();var i;i=v(n.g,10),i.n.a=n.d.c+i.d.b}function p8(){p8=z;var n,i;i=!s2r(),n=new F,mbe=i?new M:n}function Wde(n){return Fn(),$e(n,59)?new Hue(n):new kX(n)}function yQ(n){return $e(n,16)?new nD(v(n,16)):Our(n.Kc())}function efr(n){return new iNt(n,n.e.Rd().gc()*n.c.Rd().gc())}function tfr(n){return new aNt(n,n.e.Rd().gc()*n.c.Rd().gc())}function GNe(n){return n&&n.hashCode?n.hashCode():vE(n)}function Kde(n,i){return i==null?!!ol(n.f,null):bhr(n.i,i)}function nfr(n,i){var l;return l=S8e(n.a,i),l&&(i.d=null),l}function lDt(n,i,l){return n.f?n.f.ef(i,l):!1}function iz(n,i,l,d){Ga(n.c[i.g],l.g,d),Ga(n.c[l.g],i.g,d)}function Xde(n,i,l,d){Ga(n.c[i.g],i.g,l),Ga(n.b[i.g],i.g,d)}function rfr(n,i,l){return We(at(l.a))<=n&&We(at(l.b))>=i}function cDt(n,i){this.g=n,this.d=Te(xe(tm,1),gy,10,0,[i])}function uDt(n){this.c=n,this.b=new Vb(v(ni(new $t),50))}function hDt(n){this.c=n,this.b=new Vb(v(ni(new Mf),50))}function dDt(n){this.b=n,this.a=new Vb(v(ni(new Or),50))}function fDt(){this.b=new fs,this.d=new Ea,this.e=new G7e}function qNe(){this.c=new ho,this.d=new ho,this.e=new ho}function NE(){this.a=new ah,this.b=(kd(3,k4),new gu(3))}function Xb(n,i){this.e=n,this.a=zs,this.b=fjt(i),this.c=i}function vQ(n){this.c=n.c,this.d=n.d,this.b=n.b,this.a=n.a}function pDt(n,i,l,d,g,y){this.a=n,Gfe.call(this,i,l,d,g,y)}function gDt(n,i,l,d,g,y){this.a=n,Gfe.call(this,i,l,d,g,y)}function Bv(n,i,l,d,g,y,x){return new ffe(n.e,i,l,d,g,y,x)}function ifr(n,i,l){return l>=0&&An(n.substr(l,i.length),i)}function mDt(n,i){return $e(i,149)&&An(n.b,v(i,149).Pg())}function afr(n,i){return n.a?i.Gh().Kc():v(i.Gh(),71).Ii()}function bDt(n,i){var l;return l=n.b.Qc(i),hPt(l,n.b.gc()),l}function az(n,i){if(n==null)throw _e(new rk(i));return n}function Fl(n){return n.u||($h(n),n.u=new XNt(n,n)),n.u}function Qde(n){this.a=(Fn(),$e(n,59)?new Hue(n):new kX(n))}function Vu(n){var i;return i=v(rr(n,16),29),i||n.ii()}function _Q(n,i){var l;return l=__(n.Rm),i==null?l:l+": "+i}function af(n,i,l){return mo(i,l,n.length),n.substr(i,l-i)}function yDt(n,i){LX.call(this),e9e(this),this.a=n,this.c=i}function sfr(n){n&&_Q(n,n.ie())}function ofr(n){OK(),u.setTimeout(function(){throw n},0)}function lfr(){return GZ(),Te(xe(Aze,1),wt,436,0,[Rbe,Cze])}function cfr(){return KQ(),Te(xe(Rze,1),wt,435,0,[kze,Ibe])}function ufr(){return XQ(),Te(xe(rGe,1),wt,432,0,[zbe,cte])}function hfr(){return N8(),Te(xe(nrn,1),wt,517,0,[Tq,tye])}function dfr(){return IQ(),Te(xe(Uqe,1),wt,429,0,[Nye,$qe])}function ffr(){return Rz(),Te(xe(Sqe,1),wt,428,0,[$te,xqe])}function pfr(){return zQ(),Te(xe(mqe,1),wt,431,0,[gqe,mye])}function gfr(){return Az(),Te(xe(OVe,1),wt,430,0,[dve,fve])}function mfr(){return yD(),Te(xe(jsn,1),wt,531,0,[EP,wP])}function bfr(){return hZ(),Te(xe(kYe,1),wt,501,0,[Rne,j5])}function yfr(){return Kp(),Te(xe(eon,1),wt,523,0,[Cx,Ey])}function vfr(){return G1(),Te(xe(non,1),wt,522,0,[fw,sp])}function _fr(){return o1(),Te(xe(bon,1),wt,528,0,[n3,d2])}function wfr(){return Ez(),Te(xe(Aqe,1),wt,488,0,[Cqe,zte])}function Efr(){return MQ(),Te(xe(bje,1),wt,491,0,[r2e,mje])}function xfr(){return n0e(),Te(xe(xje,1),wt,492,0,[wje,Eje])}function Sfr(){return AQ(),Te(xe(AYe,1),wt,433,0,[Mve,CYe])}function Tfr(){return qQ(),Te(xe(IYe,1),wt,434,0,[RYe,zve])}function Cfr(){return LE(),Te(xe(Son,1),wt,465,0,[f2,H5])}function Afr(){return bz(),Te(xe(Tje,1),wt,438,0,[l2e,Une])}function kfr(){return $z(),Te(xe(jje,1),wt,437,0,[Gne,Yje])}function Rfr(){return ode(),Te(xe(rre,1),wt,347,0,[lKe,cKe])}function wQ(n,i,l,d){return l>=0?n.Uh(i,l,d):n.Ch(null,l,d)}function sz(n){return n.b.b==0?n.a.sf():dde(n.b)}function Ifr(n){if(n.p!=5)throw _e(new ih);return ti(n.f)}function Nfr(n){if(n.p!=5)throw _e(new ih);return ti(n.k)}function HNe(n){return Ze(n.a)===Ze((e0e(),Y2e))&&R6r(n),n.a}function Ofr(n,i){n.b=i,n.c>0&&n.b>0&&(n.g=KX(n.c,n.b,n.a))}function Lfr(n,i){n.c=i,n.c>0&&n.b>0&&(n.g=KX(n.c,n.b,n.a))}function vDt(n,i){Rrr(this,new Ct(n.a,n.b)),Irr(this,KU(i))}function OE(){yir.call(this,new ok(o4(12))),R8e(!0),this.a=2}function Zde(n,i,l){zi(),rE.call(this,n),this.b=i,this.a=l}function VNe(n,i,l){tf(),xK.call(this,i),this.a=n,this.b=l}function _Dt(n){var i;i=n.c.d.b,n.b=i,n.a=n.c.d,i.a=n.c.d.b=n}function Dfr(n){return n.b==0?null:(Tr(n.b!=0),cf(n,n.a.a))}function Qc(n,i){return i==null?Pl(ol(n.f,null)):NL(n.i,i)}function wDt(n,i,l,d,g){return new C1e(n,(w8(),Tbe),i,l,d,g)}function EQ(n,i){return lPt(i),imr(n,st(Wr,vi,28,i,15,1),i)}function xQ(n,i){return mQ(n,"set1"),mQ(i,"set2"),new uRt(n,i)}function Mfr(n,i){var l=gbe[n.charCodeAt(0)];return l??n}function EDt(n,i){var l,d;return l=i,d=new ye,KWt(n,l,d),d.d}function Jde(n,i,l,d){var g;g=new JNt,i.a[l.g]=g,Sk(n.b,d,g)}function Pfr(n,i){var l;return l=tmr(n.f,i),Hi(OX(l),n.f.d)}function oz(n){var i;dmr(n.a),RIt(n.a),i=new _K(n.a),NLe(i)}function Bfr(n,i){rjt(n,!0),Cu(n.e.Rf(),new xIe(n,!0,i))}function Ffr(n,i){return kk(),n==Aa(Hg(i))||n==Aa(jv(i))}function $fr(n,i){return jm(),v(oe(i,(pc(),gg)),17).a==n}function Ps(n){return Math.max(Math.min(n,qi),-2147483648)|0}function xDt(n){this.a=v(ni(n),277),this.b=(Fn(),new P8e(n))}function SDt(n,i,l){this.i=new Ot,this.b=n,this.g=i,this.a=l}function YNe(n,i,l){this.a=new Ot,this.e=n,this.f=i,this.c=l}function SQ(n,i,l){this.c=new Ot,this.e=n,this.f=i,this.b=l}function TDt(n){LX.call(this),e9e(this),this.a=n,this.c=!0}function Ufr(n){function i(){}return i.prototype=n||{},new i}function zfr(n){if(n.Ae())return null;var i=n.n;return Wee[i]}function lz(n){return n.Db>>16!=3?null:v(n.Cb,27)}function z1(n){return n.Db>>16!=9?null:v(n.Cb,27)}function CDt(n){return n.Db>>16!=6?null:v(n.Cb,74)}function LE(){LE=z,f2=new WRe(r6,0),H5=new WRe(i6,1)}function Kp(){Kp=z,Cx=new VRe(i6,0),Ey=new VRe(r6,1)}function G1(){G1=z,fw=new YRe(cge,0),sp=new YRe("UP",1)}function ADt(){ADt=z,xen=Qr((RK(),Te(xe(Een,1),wt,549,0,[fbe])))}function kDt(n){var i;return i=new PK(o4(n.length)),H9e(i,n),i}function RDt(n,i){return n.b+=i.b,n.c+=i.c,n.d+=i.d,n.a+=i.a,n}function Gfr(n,i){return gUt(n,i)?(h$t(n),!0):!1}function Um(n,i){if(i==null)throw _e(new ZA);return l2r(n,i)}function cz(n,i){var l;l=n.q.getHours(),n.q.setDate(i),cM(n,l)}function jNe(n,i,l){var d;d=n.Ih(i),d>=0?n.bi(d,l):VMe(n,i,l)}function IDt(n,i){var l;return l=n.Ih(i),l>=0?n.Wh(l):O1e(n,i)}function NDt(n,i){var l;for(ni(i),l=n.a;l;l=l.c)i.Yd(l.g,l.i)}function efe(n,i,l){var d;d=MUt(n,i,l),n.b=new fZ(d.c.length)}function GT(n,i,l){TQ(),n&&Ni(q2e,n,i),n&&Ni(EH,n,l)}function qfr(n,i){return FX(),Qn(),v(i.a,17).a0}function WNe(n){var i;return i=n.d,i=n.bj(n.f),Yr(n,i),i.Ob()}function ODt(n,i){var l;return l=new ZIe(i),rHt(l,n),new Eh(l)}function Yfr(n){if(n.p!=0)throw _e(new ih);return qL(n.f,0)}function jfr(n){if(n.p!=0)throw _e(new ih);return qL(n.k,0)}function LDt(n){return n.Db>>16!=7?null:v(n.Cb,241)}function g8(n){return n.Db>>16!=6?null:v(n.Cb,241)}function DDt(n){return n.Db>>16!=7?null:v(n.Cb,167)}function Aa(n){return n.Db>>16!=11?null:v(n.Cb,27)}function t4(n){return n.Db>>16!=17?null:v(n.Cb,29)}function MDt(n){return n.Db>>16!=3?null:v(n.Cb,155)}function KNe(n){var i;return Vv(n),i=new fs,Ki(n,new z5t(i))}function PDt(n,i){var l=n.a=n.a||[];return l[i]||(l[i]=n.ve(i))}function Wfr(n,i){var l;l=n.q.getHours(),n.q.setMonth(i),cM(n,l)}function BDt(n,i){CX(this),this.f=i,this.g=n,gQ(this),this.je()}function FDt(n,i){this.a=n,this.c=Eo(this.a),this.b=new vQ(i)}function $Dt(n,i,l){this.a=i,this.c=n,this.b=(ni(l),new Eh(l))}function UDt(n,i,l){this.a=i,this.c=n,this.b=(ni(l),new Eh(l))}function zDt(n){this.a=n,this.b=st(Hsn,kt,2043,n.e.length,0,2)}function GDt(){this.a=new Hp,this.e=new fs,this.g=0,this.i=0}function TQ(){TQ=z,q2e=new Br,EH=new Br,zar(zen,new NSt)}function qDt(){qDt=z,ksn=ch(new ms,(Mo(),Gl),(qo(),Cq))}function XNe(){XNe=z,Rsn=ch(new ms,(Mo(),Gl),(qo(),Cq))}function HDt(){HDt=z,Nsn=ch(new ms,(Mo(),Gl),(qo(),Cq))}function VDt(){VDt=z,Ksn=yi(new ms,(Mo(),Gl),(qo(),eP))}function Sd(){Sd=z,Zsn=yi(new ms,(Mo(),Gl),(qo(),eP))}function YDt(){YDt=z,Jsn=yi(new ms,(Mo(),Gl),(qo(),eP))}function nfe(){nfe=z,ion=yi(new ms,(Mo(),Gl),(qo(),eP))}function pD(n,i,l,d,g,y){return new Vm(n.e,i,n.Lj(),l,d,g,y)}function Cl(n,i,l){return i==null?yu(n.f,null,l):qE(n.i,i,l)}function Uo(n,i){n.c&&Yu(n.c.g,n),n.c=i,n.c&&Lt(n.c.g,n)}function po(n,i){n.c&&Yu(n.c.a,n),n.c=i,n.c&&Lt(n.c.a,n)}function rc(n,i){n.i&&Yu(n.i.j,n),n.i=i,n.i&&Lt(n.i.j,n)}function lo(n,i){n.d&&Yu(n.d.e,n),n.d=i,n.d&&Lt(n.d.e,n)}function rfe(n,i){n.a&&Yu(n.a.k,n),n.a=i,n.a&&Lt(n.a.k,n)}function ife(n,i){n.b&&Yu(n.b.f,n),n.b=i,n.b&&Lt(n.b.f,n)}function jDt(n,i){sdr(n,n.b,n.c),v(n.b.b,68),i&&v(i.b,68).b}function Kfr(n,i){return ha(v(n.c,65).c.e.b,v(i.c,65).c.e.b)}function Xfr(n,i){return ha(v(n.c,65).c.e.a,v(i.c,65).c.e.a)}function Qfr(n){return _0e(),Qn(),v(n.a,86).d.e!=0}function CQ(n,i){$e(n.Cb,184)&&(v(n.Cb,184).tb=null),mu(n,i)}function afe(n,i){$e(n.Cb,90)&&_4($h(v(n.Cb,90)),4),mu(n,i)}function Zfr(n,i){ELe(n,i),$e(n.Cb,90)&&_4($h(v(n.Cb,90)),2)}function Jfr(n,i){var l,d;l=i.c,d=l!=null,d&&Tk(n,new JS(i.c))}function WDt(n){var i,l;return l=(HR(),i=new iE,i),x8(l,n),l}function KDt(n){var i,l;return l=(HR(),i=new iE,i),x8(l,n),l}function XDt(n){for(var i;;)if(i=n.Pb(),!n.Ob())return i}function e0r(n,i,l){return Lt(n.a,(hQ(),n1e(i,l),new hE(i,l))),n}function Zc(n,i){return al(),Dfe(i)?new VX(i,n):new DU(i,n)}function uz(n){return eg(),Oc(n,0)>=0?Yv(n):cD(Yv(ty(n)))}function t0r(n){var i;return i=v(qX(n.b),9),new nf(n.a,i,n.c)}function QDt(n,i){var l;return l=v(d4(Ak(n.a),i),16),l?l.gc():0}function ZDt(n,i,l){var d;xzt(i,l,n.c.length),d=l-i,yRe(n.c,i,d)}function Qb(n,i,l){xzt(i,l,n.gc()),this.c=n,this.a=i,this.b=l-i}function Rk(n){this.c=new Ea,this.b=n.b,this.d=n.c,this.a=n.a}function sfe(n){this.a=u.Math.cos(n),this.b=u.Math.sin(n)}function R_(n,i,l,d){this.c=n,this.d=d,rfe(this,i),ife(this,l)}function QNe(n,i){mir.call(this,new ok(o4(n))),kd(i,jKt),this.a=i}function JDt(n,i,l){return new C1e(n,(w8(),Sbe),null,!1,i,l)}function eMt(n,i,l){return new C1e(n,(w8(),Cbe),i,l,null,!1)}function n0r(){return Ch(),Te(xe(Il,1),wt,108,0,[Tze,Ql,B4])}function r0r(){return ju(),Te(xe(dtn,1),wt,472,0,[g1,o2,I0])}function i0r(){return Th(),Te(xe(utn,1),wt,471,0,[dg,s2,R0])}function a0r(){return u1(),Te(xe(F4,1),wt,237,0,[bc,vu,yc])}function s0r(){return wD(),Te(xe(yGe,1),wt,391,0,[Vbe,Hbe,Ybe])}function o0r(){return UE(),Te(xe(oye,1),wt,372,0,[px,l2,fx])}function l0r(){return SD(),Te(xe(yqe,1),wt,322,0,[nP,Rq,bqe])}function c0r(){return iZ(),Te(xe(_qe,1),wt,351,0,[vqe,Fte,bye])}function u0r(){return F_(),Te(xe(Lrn,1),wt,460,0,[_ye,tN,O5])}function h0r(){return P8(),Te(xe(Iye,1),wt,299,0,[kye,Rye,Iq])}function d0r(){return Ym(),Te(xe(zrn,1),wt,311,0,[Nq,D5,y6])}function f0r(){return DD(),Te(xe(EVe,1),wt,390,0,[ave,wVe,gne])}function p0r(){return ll(),Te(xe(wsn,1),wt,463,0,[yP,Rh,_u])}function g0r(){return yZ(),Te(xe(MVe,1),wt,387,0,[LVe,pve,DVe])}function m0r(){return ND(),Te(xe(PVe,1),wt,349,0,[mve,gve,Gq])}function b0r(){return H8(),Te(xe(FVe,1),wt,350,0,[bve,BVe,vP])}function y0r(){return rZ(),Te(xe(zVe,1),wt,352,0,[UVe,yve,$Ve])}function v0r(){return EZ(),Te(xe(GVe,1),wt,388,0,[vve,pN,t3])}function _0r(){return $E(),Te(xe(Gsn,1),wt,464,0,[qq,_P,vne])}function q1(n){return ac(Te(xe(Vs,1),kt,8,0,[n.i.n,n.n,n.a]))}function w0r(){return OD(),Te(xe(aYe,1),wt,392,0,[iYe,Eve,Vq])}function tMt(){tMt=z,Jon=ch(new ms,(Yk(),SP),(oM(),KVe))}function AQ(){AQ=z,Mve=new KRe("DFS",0),CYe=new KRe("BFS",1)}function nMt(n,i,l){var d;d=new $wt,d.b=i,d.a=l,++i.b,Lt(n.d,d)}function E0r(n,i,l){var d;d=new Wo(l.d),Hi(d,n),wLe(i,d.a,d.b)}function x0r(n,i){KIt(n,ti(Us(xE(i,24),GJ)),ti(Us(i,GJ)))}function n4(n,i){if(n<0||n>i)throw _e(new Sl(yBe+n+vBe+i))}function $n(n,i){if(n<0||n>=i)throw _e(new Sl(yBe+n+vBe+i))}function sr(n,i){if(n<0||n>=i)throw _e(new aRe(yBe+n+vBe+i))}function Nn(n,i){this.b=(hr(n),n),this.a=i&R4?i:i|64|ng}function ZNe(n){var i;return Vv(n),i=(IE(),IE(),wbe),JQ(n,i)}function S0r(n,i,l){var d;return d=dM(n,i,!1),d.b<=i&&d.a<=l}function T0r(){return HQ(),Te(xe(_je,1),wt,439,0,[i2e,vje,yje])}function C0r(){return NZ(),Te(xe(tje,1),wt,394,0,[eje,Jve,JYe])}function A0r(){return BZ(),Te(xe(ZYe,1),wt,445,0,[Xq,Lne,jve])}function k0r(){return WZ(),Te(xe(Iln,1),wt,456,0,[Wve,Xve,Kve])}function R0r(){return qz(),Te(xe(LYe,1),wt,393,0,[Ine,NYe,OYe])}function I0r(){return bZ(),Te(xe(QYe,1),wt,300,0,[Yve,XYe,KYe])}function N0r(){return Km(),Te(xe(eKe,1),wt,346,0,[Xne,Cy,qP])}function O0r(){return Kz(),Te(xe(a2e,1),wt,444,0,[Bne,Fne,$ne])}function L0r(){return W1(),Te(xe(GWe,1),wt,278,0,[wN,s3,EN])}function D0r(){return Uk(),Te(xe(oKe,1),wt,280,0,[sKe,l3,nre])}function DE(n){return ni(n),$e(n,16)?new Eh(v(n,16)):i8(n.Kc())}function JNe(n,i){return n&&n.equals?n.equals(i):Ze(n)===Ze(i)}function Us(n,i){return zv(Chr(jl(n)?Uf(n):n,jl(i)?Uf(i):i))}function s1(n,i){return zv(Ahr(jl(n)?Uf(n):n,jl(i)?Uf(i):i))}function ofe(n,i){return zv(khr(jl(n)?Uf(n):n,jl(i)?Uf(i):i))}function M0r(n,i){var l;return l=(hr(n),n).g,j8e(!!l),hr(i),l(i)}function rMt(n,i){var l,d;return d=o8(n,i),l=n.a.fd(d),new lRt(n,l)}function P0r(n){return n.Db>>16!=6?null:v(M1e(n),241)}function B0r(n){if(n.p!=2)throw _e(new ih);return ti(n.f)&vs}function F0r(n){if(n.p!=2)throw _e(new ih);return ti(n.k)&vs}function pe(n){return Tr(n.ad?1:0}function oMt(n,i){var l,d;return l=Ife(i),d=l,v(br(n.c,d),17).a}function lfe(n,i,l){var d;d=n.d[i.p],n.d[i.p]=n.d[l.p],n.d[l.p]=d}function K0r(n,i,l){var d;n.n&&i&&l&&(d=new ESt,Lt(n.e,d))}function cfe(n,i){if(Es(n.a,i),i.d)throw _e(new tc(mXt));i.d=n}function nOe(n,i){this.a=new Ot,this.d=new Ot,this.f=n,this.c=i}function lMt(){this.c=new VIt,this.a=new QPt,this.b=new c6t,ARt()}function cMt(){Fk(),this.b=new Br,this.a=new Br,this.c=new Ot}function uMt(n,i,l){this.d=n,this.j=i,this.e=l,this.o=-1,this.p=3}function hMt(n,i,l){this.d=n,this.k=i,this.f=l,this.o=-1,this.p=5}function dMt(n,i,l,d,g,y){n9e.call(this,n,i,l,d,g),y&&(this.o=-2)}function fMt(n,i,l,d,g,y){r9e.call(this,n,i,l,d,g),y&&(this.o=-2)}function pMt(n,i,l,d,g,y){_Oe.call(this,n,i,l,d,g),y&&(this.o=-2)}function gMt(n,i,l,d,g,y){s9e.call(this,n,i,l,d,g),y&&(this.o=-2)}function mMt(n,i,l,d,g,y){wOe.call(this,n,i,l,d,g),y&&(this.o=-2)}function bMt(n,i,l,d,g,y){i9e.call(this,n,i,l,d,g),y&&(this.o=-2)}function yMt(n,i,l,d,g,y){a9e.call(this,n,i,l,d,g),y&&(this.o=-2)}function vMt(n,i,l,d,g,y){EOe.call(this,n,i,l,d,g),y&&(this.o=-2)}function _Mt(n,i,l,d){xK.call(this,l),this.b=n,this.c=i,this.d=d}function wMt(n,i){this.f=n,this.a=(y8(),gre),this.c=gre,this.b=i}function EMt(n,i){this.g=n,this.d=(y8(),mre),this.a=mre,this.b=i}function rOe(n,i){!n.c&&(n.c=new Xa(n,0)),OJ(n.c,(ca(),tB),i)}function X0r(n,i){return O3r(n,i,$e(i,102)&&(v(i,19).Bb&el)!=0)}function Q0r(n,i){return nLt(xc(n.q.getTime()),xc(i.q.getTime()))}function xMt(n){return gde(n.e.Rd().gc()*n.c.Rd().gc(),16,new jTt(n))}function Z0r(n){return!!n.u&&Uc(n.u.a).i!=0&&!(n.n&&Z0e(n.n))}function J0r(n){return!!n.a&&Uh(n.a.a).i!=0&&!(n.b&&J0e(n.b))}function iOe(n,i){return i==0?!!n.o&&n.o.f!=0:Y0e(n,i)}function e1r(n,i,l){var d;return d=v(n.Zb().xc(i),16),!!d&&d.Hc(l)}function SMt(n,i,l){var d;return d=v(n.Zb().xc(i),16),!!d&&d.Mc(l)}function TMt(n,i){var l;return l=1-i,n.a[l]=dZ(n.a[l],l),dZ(n,i)}function CMt(n,i){var l,d;return d=Us(n,ul),l=w0(i,32),s1(l,d)}function AMt(n,i,l){var d;d=(ni(n),new Eh(n)),nwr(new $Dt(d,i,l))}function hz(n,i,l){var d;d=(ni(n),new Eh(n)),rwr(new UDt(d,i,l))}function dc(n,i,l,d,g,y){return iUt(n,i,l,y),fLe(n,d),pLe(n,g),n}function kMt(n,i,l,d){return n.a+=""+af(i==null?Ku:Kl(i),l,d),n}function go(n,i){this.a=n,hL.call(this,n),n4(i,n.gc()),this.b=i}function RMt(n){this.a=st(zs,Yn,1,U9e(u.Math.max(8,n))<<1,5,1)}function dz(n){return v(X1(n,st(tm,gy,10,n.c.length,0,1)),199)}function Xp(n){return v(X1(n,st(Jbe,Cge,18,n.c.length,0,1)),483)}function IMt(n){return n.a?n.e.length==0?n.a.a:n.a.a+(""+n.e):n.c}function gD(n){for(;n.d>0&&n.a[--n.d]==0;);n.a[n.d++]==0&&(n.e=0)}function NMt(n){return Tr(n.b.b!=n.d.a),n.c=n.b=n.b.b,--n.a,n.c.c}function t1r(n,i,l){n.a=i,n.c=l,n.b.a.$b(),xd(n.d),$S(n.e.a.c,0)}function OMt(n,i){var l;n.e=new K7e,l=E4(i),us(l,n.c),YYt(n,l,0)}function bs(n,i,l,d){var g;g=new q6e,g.a=i,g.b=l,g.c=d,pi(n.a,g)}function It(n,i,l,d){var g;g=new q6e,g.a=i,g.b=l,g.c=d,pi(n.b,g)}function LMt(n,i,l){if(n<0||il)throw _e(new Sl(pSr(n,i,l)))}function fz(n,i){if(n<0||n>=i)throw _e(new Sl(VSr(n,i)));return n}function n1r(n){if(!("stack"in n))try{throw n}catch{}return n}function qT(n){return CL(),$e(n.g,10)?v(n.g,10):null}function r1r(n){return zT(n).dc()?!1:(Tsr(n,new I),!0)}function N_(n){var i;return jl(n)?(i=n,i==-0?0:i):ygr(n)}function DMt(n,i){return $e(i,44)?i1e(n.a,v(i,44)):!1}function MMt(n,i){return $e(i,44)?i1e(n.a,v(i,44)):!1}function PMt(n,i){return $e(i,44)?i1e(n.a,v(i,44)):!1}function aOe(n){var i;return Pv(n),i=new ie,TT(n.a,new F5t(i)),i}function sOe(){var n,i,l;return i=(l=(n=new iE,n),l),Lt(qKe,i),i}function kQ(n){var i;return Pv(n),i=new ge,TT(n.a,new $5t(i)),i}function i1r(n,i){return n.a<=n.b?(i.Dd(n.a++),!0):!1}function BMt(n){Qfe.call(this,n,(w8(),xbe),null,!1,null,!1)}function FMt(){FMt=z,Htn=Qr((GK(),Te(xe(Xze,1),wt,489,0,[Pbe])))}function $Mt(){$Mt=z,HVe=NLt(Nt(1),Nt(4)),qVe=NLt(Nt(1),Nt(2))}function a1r(n,i){return new cde(i,ZL(Eo(i.e),n,n),(Qn(),!0))}function RQ(n){return new gu((kd(n,Ape),QQ(zo(zo(5,n),n/10|0))))}function s1r(n){return gde(n.e.Rd().gc()*n.c.Rd().gc(),273,new YTt(n))}function UMt(n){return v(X1(n,st(Jnn,WXt,12,n.c.length,0,1)),2042)}function o1r(n){return Sd(),!Jo(n)&&!(!Jo(n)&&n.c.i.c==n.d.i.c)}function l1r(n,i){return Pk(),v(oe(i,(pc(),V5)),17).a>=n.gc()}function mD(n,i){HRr(i,n),$Ie(n.d),$Ie(v(oe(n,(qt(),lne)),214))}function ufe(n,i){VRr(i,n),UIe(n.d),UIe(v(oe(n,(qt(),lne)),214))}function c1r(n,i,l){n.d&&Yu(n.d.e,n),n.d=i,n.d&&EE(n.d.e,l,n)}function u1r(n,i,l){return l.f.c.length>0?pNe(n.a,i,l):pNe(n.b,i,l)}function h1r(n,i,l){var d;d=k2r();try{return Zor(n,i,l)}finally{rpr(d)}}function ME(n,i){var l,d;return l=Um(n,i),d=null,l&&(d=l.pe()),d}function bD(n,i){var l,d;return l=Um(n,i),d=null,l&&(d=l.se()),d}function m8(n,i){var l,d;return l=s4(n,i),d=null,l&&(d=l.se()),d}function zm(n,i){var l,d;return l=Um(n,i),d=null,l&&(d=aMe(l)),d}function d1r(n,i,l){var d;return d=Z8(l),AJ(n.g,d,i),AJ(n.i,i,l),i}function oOe(n,i,l){this.d=new QCt(this),this.e=n,this.i=i,this.f=l}function zMt(n,i,l,d){this.e=null,this.c=n,this.d=i,this.a=l,this.b=d}function GMt(n,i,l,d){$It(this),this.c=n,this.e=i,this.f=l,this.b=d}function lOe(n,i,l,d){this.d=n,this.n=i,this.g=l,this.o=d,this.p=-1}function qMt(n,i,l,d){return $e(l,59)?new vNt(n,i,l,d):new lNe(n,i,l,d)}function b8(n){return $e(n,16)?v(n,16).dc():!n.Kc().Ob()}function HMt(n){if(n.e.g!=n.b)throw _e(new Jd);return!!n.c&&n.d>0}function Fr(n){return Tr(n.b!=n.d.c),n.c=n.b,n.b=n.b.a,++n.a,n.c.c}function cOe(n,i){hr(i),Ga(n.a,n.c,i),n.c=n.c+1&n.a.length-1,dqt(n)}function Fv(n,i){hr(i),n.b=n.b-1&n.a.length-1,Ga(n.a,n.b,i),dqt(n)}function VMt(n){var i;i=n.Gh(),this.a=$e(i,71)?v(i,71).Ii():i.Kc()}function f1r(n){return new Nn(Zgr(v(n.a.md(),16).gc(),n.a.ld()),16)}function YMt(){YMt=z,ocn=Qr((VK(),Te(xe(Sje,1),wt,490,0,[s2e])))}function jMt(){jMt=z,ccn=Qr((YK(),Te(xe(lcn,1),wt,558,0,[o2e])))}function WMt(){WMt=z,Acn=Qr((AL(),Te(xe(Vje,1),wt,539,0,[eH])))}function p1r(){return z_(),Te(xe(EGe,1),wt,389,0,[z4,wGe,Qbe,Zbe])}function g1r(){return w8(),Te(xe(tte,1),wt,304,0,[xbe,Sbe,Tbe,Cbe])}function m1r(){return qk(),Te(xe($tn,1),wt,332,0,[yq,bq,vq,_q])}function b1r(){return VD(),Te(xe(Gtn,1),wt,406,0,[wq,ate,ste,Eq])}function y1r(){return GE(),Te(xe(Btn,1),wt,417,0,[mq,gq,Dbe,Mbe])}function v1r(){return B8(),Te(xe(znn,1),wt,416,0,[dx,U4,$4,A5])}function _1r(){return K1(),Te(xe(brn,1),wt,421,0,[b6,WI,KI,sye])}function w1r(){return wZ(),Te(xe(srn,1),wt,371,0,[aye,Ote,Lte,Aq])}function E1r(){return g4(),Te(xe(ove,1),wt,203,0,[mne,sve,q5,G5])}function x1r(){return Zp(),Te(xe(NVe,1),wt,284,0,[wy,IVe,uve,hve])}function S1r(n){var i;return n.j==(Bt(),Mr)&&(i=DVt(n),oh(i,gr))}function T1r(n,i){var l;l=i.a,Uo(l,i.c.d),lo(l,i.d.d),u4(l.a,n.n)}function uOe(n,i){var l;return l=v(j1(n.b,i),67),!l&&(l=new Ea),l}function Nk(n){return CL(),$e(n.g,154)?v(n.g,154):null}function C1r(n){n.a=null,n.e=null,$S(n.b.c,0),$S(n.f.c,0),n.c=null}function IQ(){IQ=z,Nye=new GRe(CI,0),$qe=new GRe("TOP_LEFT",1)}function yD(){yD=z,EP=new HRe("UPPER",0),wP=new HRe("LOWER",1)}function A1r(n,i){return pk(new Ct(i.e.a+i.f.a/2,i.e.b+i.f.b/2),n)}function KMt(n,i){return v(ad(QS(v(Zi(n.k,i),15).Oc(),R5)),113)}function XMt(n,i){return v(ad(Ek(v(Zi(n.k,i),15).Oc(),R5)),113)}function k1r(){return Yk(),Te(xe(jVe,1),wt,405,0,[xne,xP,SP,TP])}function R1r(){return LD(),Te(xe(TYe,1),wt,353,0,[Dve,kne,Lve,Ove])}function I1r(){return ZZ(),Te(xe(WYe,1),wt,354,0,[Vve,YYe,jYe,VYe])}function N1r(){return ud(),Te(xe(WP,1),wt,386,0,[mH,vw,gH,o3])}function O1r(){return Id(),Te(xe(pun,1),wt,291,0,[dH,im,m2,hH])}function L1r(){return Xm(),Te(xe(D2e,1),wt,223,0,[L2e,uH,xN,O6])}function D1r(){return LZ(),Te(xe(fKe,1),wt,320,0,[B2e,uKe,dKe,hKe])}function M1r(){return xZ(),Te(xe(Nun,1),wt,415,0,[F2e,gKe,pKe,mKe])}function P1r(n){return TQ(),Tu(q2e,n)?v(br(q2e,n),341).Qg():null}function sf(n,i,l){return i<0?O1e(n,l):v(l,69).wk().Bk(n,n.hi(),i)}function B1r(n,i,l){var d;return d=Z8(l),AJ(n.j,d,i),Ni(n.k,i,l),i}function F1r(n,i,l){var d;return d=Z8(l),AJ(n.d,d,i),Ni(n.e,i,l),i}function QMt(n){var i,l;return i=(kv(),l=new uue,l),n&&bJ(i,n),i}function hOe(n){var i;return i=n.aj(n.i),n.i>0&&Gc(n.g,0,i,0,n.i),i}function ZMt(n,i){var l;for(l=n.j.c.length;l>24}function U1r(n){if(n.p!=1)throw _e(new ih);return ti(n.k)<<24>>24}function z1r(n){if(n.p!=7)throw _e(new ih);return ti(n.k)<<16>>16}function G1r(n){if(n.p!=7)throw _e(new ih);return ti(n.f)<<16>>16}function HT(n,i){return i.e==0||n.e==0?KM:(uI(),z1e(n,i))}function tPt(n,i){return Ze(i)===Ze(n)?"(this Map)":i==null?Ku:Kl(i)}function q1r(n,i,l){return Sde(at(Pl(ol(n.f,i))),at(Pl(ol(n.f,l))))}function H1r(n,i,l){var d;d=v(br(n.g,l),60),Lt(n.a.c,new Ms(i,d))}function nPt(n,i,l){n.i=0,n.e=0,i!=l&&(FUt(n,i,l),BUt(n,i,l))}function V1r(n,i,l,d,g){var y;y=Y3r(g,l,d),Lt(i,FSr(g,y)),Rxr(n,g,i)}function dOe(n,i,l,d,g){this.i=n,this.a=i,this.e=l,this.j=d,this.f=g}function rPt(n,i){qNe.call(this),this.a=n,this.b=i,Lt(this.a.b,this)}function iPt(n){this.b=new Br,this.c=new Br,this.d=new Br,this.a=n}function aPt(n,i){var l;return l=new sk,n.Gd(l),l.a+="..",i.Hd(l),l.a}function sPt(n,i){var l;for(l=i;l;)_E(n,l.i,l.j),l=Aa(l);return n}function oPt(n,i,l){var d;return d=Z8(l),Ni(n.b,d,i),Ni(n.c,i,l),i}function Gm(n){var i;for(i=0;n.Ob();)n.Pb(),i=zo(i,1);return QQ(i)}function zg(n,i){al();var l;return l=v(n,69).vk(),Vxr(l,i),l.xl(i)}function Y1r(n,i,l){if(l){var d=l.oe();n.a[i]=d(l)}else delete n.a[i]}function fOe(n,i){var l;l=n.q.getHours(),n.q.setFullYear(i+Jv),cM(n,l)}function j1r(n,i){return v(i==null?Pl(ol(n.f,null)):NL(n.i,i),288)}function pOe(n,i){return n==(lr(),is)&&i==is?4:n==is||i==is?8:32}function NQ(n,i,l){return RJ(n,i,l,$e(i,102)&&(v(i,19).Bb&el)!=0)}function W1r(n,i,l){return pI(n,i,l,$e(i,102)&&(v(i,19).Bb&el)!=0)}function K1r(n,i,l){return $3r(n,i,l,$e(i,102)&&(v(i,19).Bb&el)!=0)}function gOe(n){n.b!=n.c&&(n.a=st(zs,Yn,1,8,5,1),n.b=0,n.c=0)}function vD(n){return Tr(n.a=0&&n.a[l]===i[l];l--);return l<0}function OQ(n){var i;return n?new ZIe(n):(i=new Hp,Kfe(i,n),i)}function npr(n,i){var l,d;d=!1;do l=AUt(n,i),d=d|l;while(l);return d}function rpr(n){n&&Rgr((tRe(),QUe)),--Kee,n&&Xee!=-1&&(jar(Xee),Xee=-1)}function LQ(n){qDe(),KIt(this,ti(Us(xE(n,24),GJ)),ti(Us(n,GJ)))}function dPt(){dPt=z,itn=Qr((GZ(),Te(xe(Aze,1),wt,436,0,[Rbe,Cze])))}function fPt(){fPt=z,atn=Qr((KQ(),Te(xe(Rze,1),wt,435,0,[kze,Ibe])))}function pPt(){pPt=z,onn=Qr((XQ(),Te(xe(rGe,1),wt,432,0,[zbe,cte])))}function gPt(){gPt=z,rrn=Qr((N8(),Te(xe(nrn,1),wt,517,0,[Tq,tye])))}function mPt(){mPt=z,qrn=Qr((IQ(),Te(xe(Uqe,1),wt,429,0,[Nye,$qe])))}function bPt(){bPt=z,Orn=Qr((Rz(),Te(xe(Sqe,1),wt,428,0,[$te,xqe])))}function yPt(){yPt=z,Prn=Qr((Ez(),Te(xe(Aqe,1),wt,488,0,[Cqe,zte])))}function vPt(){vPt=z,_sn=Qr((Az(),Te(xe(OVe,1),wt,430,0,[dve,fve])))}function _Pt(){_Pt=z,Wsn=Qr((yD(),Te(xe(jsn,1),wt,531,0,[EP,wP])))}function wPt(){wPt=z,krn=Qr((zQ(),Te(xe(mqe,1),wt,431,0,[gqe,mye])))}function EPt(){EPt=z,Zon=Qr((AQ(),Te(xe(AYe,1),wt,433,0,[Mve,CYe])))}function xPt(){xPt=z,rln=Qr((hZ(),Te(xe(kYe,1),wt,501,0,[Rne,j5])))}function SPt(){SPt=z,ton=Qr((Kp(),Te(xe(eon,1),wt,523,0,[Cx,Ey])))}function TPt(){TPt=z,ron=Qr((G1(),Te(xe(non,1),wt,522,0,[fw,sp])))}function CPt(){CPt=z,yon=Qr((o1(),Te(xe(bon,1),wt,528,0,[n3,d2])))}function APt(){APt=z,Ton=Qr((LE(),Te(xe(Son,1),wt,465,0,[f2,H5])))}function kPt(){kPt=z,sln=Qr((qQ(),Te(xe(IYe,1),wt,434,0,[RYe,zve])))}function RPt(){RPt=z,tcn=Qr((MQ(),Te(xe(bje,1),wt,491,0,[r2e,mje])))}function IPt(){IPt=z,rcn=Qr((n0e(),Te(xe(xje,1),wt,492,0,[wje,Eje])))}function NPt(){NPt=z,ucn=Qr((bz(),Te(xe(Tje,1),wt,438,0,[l2e,Une])))}function OPt(){OPt=z,kcn=Qr(($z(),Te(xe(jje,1),wt,437,0,[Gne,Yje])))}function LPt(){LPt=z,kun=Qr((ode(),Te(xe(rre,1),wt,347,0,[lKe,cKe])))}function ipr(){return ys(),Te(xe(zP,1),wt,88,0,[cp,ql,Ol,lp,Ef])}function apr(){return Bt(),Te(xe(tl,1),Dc,64,0,[lc,or,gr,Mr,cr])}function spr(n,i,l){return v(i==null?yu(n.f,null,l):qE(n.i,i,l),288)}function opr(n){return(n.k==(lr(),is)||n.k==hs)&&ya(n,(At(),sP))}function gfe(n){return n.c&&n.d?tOe(n.c)+"->"+tOe(n.d):"e_"+vE(n)}function To(n,i){var l,d;for(hr(i),d=n.Kc();d.Ob();)l=d.Pb(),i.Cd(l)}function lpr(n,i){var l;l=new nk,k_(l,"x",i.a),k_(l,"y",i.b),Tk(n,l)}function cpr(n,i){var l;l=new nk,k_(l,"x",i.a),k_(l,"y",i.b),Tk(n,l)}function DPt(n,i){var l;for(l=i;l;)_E(n,-l.i,-l.j),l=Aa(l);return n}function bOe(n,i){var l,d;for(l=i,d=0;l>0;)d+=n.a[l],l-=l&-l;return d}function of(n,i,l){var d;return d=($n(i,n.c.length),n.c[i]),n.c[i]=l,d}function yOe(n,i,l){n.a.c.length=0,D6r(n,i,l),n.a.c.length==0||oAr(n,i)}function pz(n){n.i=0,_U(n.b,null),_U(n.c,null),n.a=null,n.e=null,++n.g}function DQ(){DQ=z,rp=!0,Wen=!1,Ken=!1,Qen=!1,Xen=!1}function mfe(n){DQ(),!rp&&(this.c=n,this.e=!0,this.a=new Ot)}function MPt(n,i){this.c=0,this.b=i,iIt.call(this,n,17493),this.a=this.c}function PPt(n){FKt(),Hkt(this),this.a=new Ea,Q9e(this,n),pi(this.a,n)}function BPt(){$he(this),this.b=new Ct(ka,ka),this.a=new Ct(Ss,Ss)}function MQ(){MQ=z,r2e=new ZRe(WBe,0),mje=new ZRe("TARGET_WIDTH",1)}function VT(n,i){return(Vv(n),VR(new xn(n,new VOe(i,n.a)))).Bd(p6)}function upr(){return Mo(),Te(xe(vGe,1),wt,367,0,[N0,em,qc,ru,Gl])}function hpr(){return b4(),Te(xe(vrn,1),wt,375,0,[kq,Pte,Bte,Mte,Dte])}function dpr(){return ly(),Te(xe(Eqe,1),wt,348,0,[yye,wqe,vye,eN,JI])}function fpr(){return HD(),Te(xe(SVe,1),wt,323,0,[xVe,lve,cve,mP,bP])}function ppr(){return pf(),Te(xe(Jqe,1),wt,171,0,[Mq,lP,u2,cP,Y4])}function gpr(){return aJ(),Te(xe(iln,1),wt,368,0,[$ve,Pve,Uve,Bve,Fve])}function mpr(){return rM(),Te(xe(icn,1),wt,373,0,[W5,A6,DP,LP,Jq])}function bpr(){return uG(),Te(xe(Rje,1),wt,324,0,[Cje,c2e,kje,u2e,Aje])}function ypr(){return d1(),Te(xe(rm,1),wt,170,0,[Hn,Fs,mg,pw,Sy])}function vpr(){return ZT(),Te(xe(VP,1),wt,256,0,[b2,fH,tKe,HP,nKe])}function _pr(n){return OK(),function(){return h1r(n,this,arguments)}}function Jo(n){return!n.c||!n.d?!1:!!n.c.i&&n.c.i==n.d.i}function vOe(n,i){return $e(i,143)?An(n.c,v(i,143).c):!1}function $h(n){return n.t||(n.t=new Dkt(n),FD(new X6t(n),0,n.t)),n.t}function FPt(n){this.b=n,mr.call(this,n),this.a=v(rr(this.b.a,4),129)}function $Pt(n){this.b=n,mk.call(this,n),this.a=v(rr(this.b.a,4),129)}function E0(n,i,l,d,g){KPt.call(this,i,d,g),this.c=n,this.b=l}function _Oe(n,i,l,d,g){uMt.call(this,i,d,g),this.c=n,this.a=l}function wOe(n,i,l,d,g){hMt.call(this,i,d,g),this.c=n,this.a=l}function EOe(n,i,l,d,g){KPt.call(this,i,d,g),this.c=n,this.a=l}function bfe(n,i){var l;return l=v(j1(n.d,i),23),l||v(j1(n.e,i),23)}function UPt(n,i){var l,d;return l=i.ld(),d=n.Fe(l),!!d&&Ec(d.e,i.md())}function zPt(n,i){var l;return l=i.ld(),new hE(l,n.e.pc(l,v(i.md(),16)))}function wpr(n,i){var l;return l=n.a.get(i),l??st(zs,Yn,1,0,5,1)}function GPt(n){var i;return i=n.length,An(fr.substr(fr.length-i,i),n)}function Rr(n){if(zr(n))return n.c=n.a,n.a.Pb();throw _e(new ec)}function xOe(n,i){return i==0||n.e==0?n:i>0?NYt(n,i):tGt(n,-i)}function Ok(n,i){return i==0||n.e==0?n:i>0?tGt(n,i):NYt(n,-i)}function SOe(n){Nar.call(this,n==null?Ku:Kl(n),$e(n,82)?v(n,82):null)}function qPt(n){var i;return n.c||(i=n.r,$e(i,90)&&(n.c=v(i,29))),n.c}function yfe(n){var i;return i=new NE,Ul(i,n),_t(i,(qt(),Nl),null),i}function HPt(n){var i,l;return i=n.c.i,l=n.d.i,i.k==(lr(),hs)&&l.k==hs}function vfe(n){var i,l,d;return i=n&Hh,l=n>>22&Hh,d=n<0?rb:0,Su(i,l,d)}function Epr(n){var i,l,d,g;for(l=n,d=0,g=l.length;d=0?n.Lh(d,l,!0):XE(n,i,l)}function Spr(n,i,l){return ha(pk(eI(n),Eo(i.b)),pk(eI(n),Eo(l.b)))}function Tpr(n,i,l){return ha(pk(eI(n),Eo(i.e)),pk(eI(n),Eo(l.e)))}function Cpr(n,i){return u.Math.min($v(i.a,n.d.d.c),$v(i.b,n.d.d.c))}function gz(n,i){n._i(n.i+1),KL(n,n.i,n.Zi(n.i,i)),n.Mi(n.i++,i),n.Ni()}function _D(n){var i,l;++n.j,i=n.g,l=n.i,n.g=null,n.i=0,n.Oi(l,i),n.Ni()}function VPt(n,i,l){var d;d=new x8e(n.a),AD(d,n.a.a),yu(d.f,i,l),n.a.a=d}function TOe(n,i,l,d){var g;for(g=0;gi)throw _e(new Sl(pMe(n,i,"index")));return n}function Jb(n,i){var l;return l=($n(i,n.c.length),n.c[i]),yRe(n.c,i,1),l}function kOe(n,i){var l,d;return l=(hr(n),n),d=(hr(i),i),l==d?0:li.p?-1:0}function JPt(n){var i;return n.a||(i=n.r,$e(i,156)&&(n.a=v(i,156))),n.a}function Opr(n,i,l){var d;return++n.e,--n.f,d=v(n.d[i].gd(l),136),d.md()}function Lpr(n){var i,l;return i=n.ld(),l=v(n.md(),16),WU(l.Nc(),new KTt(i))}function eBt(n,i){return Tu(n.a,i)?(Lk(n.a,i),!0):!1}function Dk(n,i,l){return fz(i,n.e.Rd().gc()),fz(l,n.c.Rd().gc()),n.a[i][l]}function BQ(n,i,l){this.a=n,this.b=i,this.c=l,Lt(n.t,this),Lt(i.i,this)}function FQ(n,i,l,d){this.f=n,this.e=i,this.d=l,this.b=d,this.c=d?d.d:null}function mz(){this.b=new Ea,this.a=new Ea,this.b=new Ea,this.a=new Ea}function y8(){y8=z;var n,i;gre=(HR(),i=new CK,i),mre=(n=new Nue,n)}function Dpr(n){var i;return Vv(n),i=new YOt(n,n.a.e,n.a.d|4),new K8e(n,i)}function tBt(n){var i;for(Pv(n),i=0;n.a.Bd(new Ae);)i=zo(i,1);return i}function $Q(n,i){return hr(i),n.c=0,"Initial capacity must not be negative")}function UQ(){UQ=z,MP=new la("org.eclipse.elk.labels.labelManager")}function nBt(){nBt=z,uqe=new Ba("separateLayerConnections",(wZ(),aye))}function o1(){o1=z,n3=new jRe("REGULAR",0),d2=new jRe("CRITICAL",1)}function bz(){bz=z,l2e=new e8e("FIXED",0),Une=new e8e("CENTER_NODE",1)}function zQ(){zQ=z,gqe=new $Re("QUADRATIC",0),mye=new $Re("SCANLINE",1)}function rBt(){rBt=z,Rrn=Qr((SD(),Te(xe(yqe,1),wt,322,0,[nP,Rq,bqe])))}function iBt(){iBt=z,Irn=Qr((iZ(),Te(xe(_qe,1),wt,351,0,[vqe,Fte,bye])))}function aBt(){aBt=z,Trn=Qr((UE(),Te(xe(oye,1),wt,372,0,[px,l2,fx])))}function sBt(){sBt=z,Drn=Qr((F_(),Te(xe(Lrn,1),wt,460,0,[_ye,tN,O5])))}function oBt(){oBt=z,Urn=Qr((P8(),Te(xe(Iye,1),wt,299,0,[kye,Rye,Iq])))}function lBt(){lBt=z,Grn=Qr((Ym(),Te(xe(zrn,1),wt,311,0,[Nq,D5,y6])))}function cBt(){cBt=z,gsn=Qr((DD(),Te(xe(EVe,1),wt,390,0,[ave,wVe,gne])))}function uBt(){uBt=z,xsn=Qr((yZ(),Te(xe(MVe,1),wt,387,0,[LVe,pve,DVe])))}function hBt(){hBt=z,Ssn=Qr((ND(),Te(xe(PVe,1),wt,349,0,[mve,gve,Gq])))}function dBt(){dBt=z,Esn=Qr((ll(),Te(xe(wsn,1),wt,463,0,[yP,Rh,_u])))}function fBt(){fBt=z,Tsn=Qr((H8(),Te(xe(FVe,1),wt,350,0,[bve,BVe,vP])))}function pBt(){pBt=z,Csn=Qr((rZ(),Te(xe(zVe,1),wt,352,0,[UVe,yve,$Ve])))}function gBt(){gBt=z,Asn=Qr((EZ(),Te(xe(GVe,1),wt,388,0,[vve,pN,t3])))}function mBt(){mBt=z,kon=Qr((OD(),Te(xe(aYe,1),wt,392,0,[iYe,Eve,Vq])))}function bBt(){bBt=z,oln=Qr((qz(),Te(xe(LYe,1),wt,393,0,[Ine,NYe,OYe])))}function yBt(){yBt=z,kln=Qr((bZ(),Te(xe(QYe,1),wt,300,0,[Yve,XYe,KYe])))}function vBt(){vBt=z,Rln=Qr((BZ(),Te(xe(ZYe,1),wt,445,0,[Xq,Lne,jve])))}function _Bt(){_Bt=z,Nln=Qr((WZ(),Te(xe(Iln,1),wt,456,0,[Wve,Xve,Kve])))}function wBt(){wBt=z,Dln=Qr((NZ(),Te(xe(tje,1),wt,394,0,[eje,Jve,JYe])))}function EBt(){EBt=z,ncn=Qr((HQ(),Te(xe(_je,1),wt,439,0,[i2e,vje,yje])))}function xBt(){xBt=z,qsn=Qr(($E(),Te(xe(Gsn,1),wt,464,0,[qq,_P,vne])))}function SBt(){SBt=z,htn=Qr((Th(),Te(xe(utn,1),wt,471,0,[dg,s2,R0])))}function TBt(){TBt=z,ctn=Qr((u1(),Te(xe(F4,1),wt,237,0,[bc,vu,yc])))}function CBt(){CBt=z,ftn=Qr((ju(),Te(xe(dtn,1),wt,472,0,[g1,o2,I0])))}function ABt(){ABt=z,Zen=Qr((Ch(),Te(xe(Il,1),wt,108,0,[Tze,Ql,B4])))}function kBt(){kBt=z,Lnn=Qr((wD(),Te(xe(yGe,1),wt,391,0,[Vbe,Hbe,Ybe])))}function RBt(){RBt=z,fun=Qr((Km(),Te(xe(eKe,1),wt,346,0,[Xne,Cy,qP])))}function IBt(){IBt=z,scn=Qr((Kz(),Te(xe(a2e,1),wt,444,0,[Bne,Fne,$ne])))}function NBt(){NBt=z,cun=Qr((W1(),Te(xe(GWe,1),wt,278,0,[wN,s3,EN])))}function OBt(){OBt=z,Aun=Qr((Uk(),Te(xe(oKe,1),wt,280,0,[sKe,l3,nre])))}function Y1(n,i){return!n.o&&(n.o=new uh((Lc(),om),Ay,n,0)),B0e(n.o,i)}function Mpr(n,i){var l;n.C&&(l=v(yl(n.b,i),127).n,l.d=n.C.d,l.a=n.C.a)}function LOe(n){var i,l,d,g;g=n.d,i=n.a,l=n.b,d=n.c,n.d=l,n.a=d,n.b=g,n.c=i}function Ppr(n){return!n.g&&(n.g=new pK),!n.g.b&&(n.g.b=new Ikt(n)),n.g.b}function yz(n){return!n.g&&(n.g=new pK),!n.g.c&&(n.g.c=new Lkt(n)),n.g.c}function Bpr(n){return!n.g&&(n.g=new pK),!n.g.d&&(n.g.d=new Nkt(n)),n.g.d}function Fpr(n){return!n.g&&(n.g=new pK),!n.g.a&&(n.g.a=new Okt(n)),n.g.a}function $pr(n,i,l,d){return l&&(d=l.Rh(i,Ma(l.Dh(),n.c.uk()),null,d)),d}function Upr(n,i,l,d){return l&&(d=l.Th(i,Ma(l.Dh(),n.c.uk()),null,d)),d}function xfe(n,i,l,d){var g;return g=st(Wr,vi,28,i+1,15,1),HAr(g,n,i,l,d),g}function st(n,i,l,d,g,y){var x;return x=rqt(g,d),g!=10&&Te(xe(n,y),i,l,g,x),x}function zpr(n,i,l){var d,g;for(g=new M8(i,n),d=0;dl||i=0?n.Lh(l,!0,!0):XE(n,i,!0)}function igr(n,i,l){var d;return d=MUt(n,i,l),n.b=new fZ(d.c.length),nPe(n,d)}function agr(n){if(n.b<=0)throw _e(new ec);return--n.b,n.a-=n.c.c,Nt(n.a)}function sgr(n){var i;if(!n.a)throw _e(new VLt);return i=n.a,n.a=Aa(n.a),i}function ogr(n){for(;!n.a;)if(!bOt(n.c,new U5t(n)))return!1;return!0}function Mk(n){var i;return ni(n),$e(n,204)?(i=v(n,204),i):new r5t(n)}function lgr(n){GQ(),v(n.of((Ei(),a3)),181).Fc((Ah(),pH)),n.qf(I2e,null)}function GQ(){GQ=z,Ncn=new $xt,Lcn=new Uxt,Ocn=Xbr((Ei(),I2e),Ncn,g2,Lcn)}function qQ(){qQ=z,RYe=new QRe("LEAF_NUMBER",0),zve=new QRe("NODE_SIZE",1)}function kfe(n){n.a=st(Wr,vi,28,n.b+1,15,1),n.c=st(Wr,vi,28,n.b,15,1),n.d=0}function cgr(n,i){n.a.Ne(i.d,n.b)>0&&(Lt(n.c,new DIe(i.c,i.d,n.d)),n.b=i.d)}function qOe(n,i){if(n.g==null||i>=n.i)throw _e(new Dhe(i,n.i));return n.g[i]}function PBt(n,i,l){if(z8(n,l),l!=null&&!n.fk(l))throw _e(new kue);return l}function Rfe(n,i){return kz(i)!=10&&Te(cd(i),i.Sm,i.__elementTypeId$,kz(i),n),n}function _8(n,i,l,d){var g;d=(IE(),d||yze),g=n.slice(i,l),gMe(g,n,i,l,-i,d)}function lf(n,i,l,d,g){return i<0?XE(n,l,d):v(l,69).wk().yk(n,n.hi(),i,d,g)}function ugr(n,i){return ha(We(at(oe(n,(At(),bx)))),We(at(oe(i,bx))))}function BBt(){BBt=z,Yen=Qr((w8(),Te(xe(tte,1),wt,304,0,[xbe,Sbe,Tbe,Cbe])))}function w8(){w8=z,xbe=new XK("All",0),Sbe=new AIt,Tbe=new PIt,Cbe=new CIt}function Th(){Th=z,dg=new ahe(r6,0),s2=new ahe(CI,1),R0=new ahe(i6,2)}function FBt(){FBt=z,IJ(),QKe=ka,Dhn=Ss,ZKe=new sU(ka),Mhn=new sU(Ss)}function $Bt(){$Bt=z,Ftn=Qr((GE(),Te(xe(Btn,1),wt,417,0,[mq,gq,Dbe,Mbe])))}function UBt(){UBt=z,qtn=Qr((VD(),Te(xe(Gtn,1),wt,406,0,[wq,ate,ste,Eq])))}function zBt(){zBt=z,Utn=Qr((qk(),Te(xe($tn,1),wt,332,0,[yq,bq,vq,_q])))}function GBt(){GBt=z,Wnn=Qr((z_(),Te(xe(EGe,1),wt,389,0,[z4,wGe,Qbe,Zbe])))}function qBt(){qBt=z,Gnn=Qr((B8(),Te(xe(znn,1),wt,416,0,[dx,U4,$4,A5])))}function HBt(){HBt=z,yrn=Qr((K1(),Te(xe(brn,1),wt,421,0,[b6,WI,KI,sye])))}function VBt(){VBt=z,orn=Qr((wZ(),Te(xe(srn,1),wt,371,0,[aye,Ote,Lte,Aq])))}function YBt(){YBt=z,msn=Qr((g4(),Te(xe(ove,1),wt,203,0,[mne,sve,q5,G5])))}function jBt(){jBt=z,vsn=Qr((Zp(),Te(xe(NVe,1),wt,284,0,[wy,IVe,uve,hve])))}function Ez(){Ez=z,Cqe=new zRe(og,0),zte=new zRe("IMPROVE_STRAIGHTNESS",1)}function WBt(n,i){var l,d;return d=i/n.c.Rd().gc()|0,l=i%n.c.Rd().gc(),Dk(n,d,l)}function KBt(n){var i;if(n.nl())for(i=n.i-1;i>=0;--i)ze(n,i);return hOe(n)}function HOe(n){var i,l;if(!n.b)return null;for(l=n.b;i=l.a[0];)l=i;return l}function XBt(n){var i,l;if(!n.b)return null;for(l=n.b;i=l.a[1];)l=i;return l}function hgr(n){return $e(n,180)?""+v(n,180).a:n==null?null:Kl(n)}function dgr(n){return $e(n,180)?""+v(n,180).a:n==null?null:Kl(n)}function QBt(n,i){if(i.a)throw _e(new tc(mXt));Es(n.a,i),i.a=n,!n.j&&(n.j=i)}function VOe(n,i){_X.call(this,i.zd(),i.yd()&-16449),hr(n),this.a=n,this.c=i}function fgr(n,i){return new cde(i,_E(Eo(i.e),i.f.a+n,i.f.b+n),(Qn(),!1))}function pgr(n,i){return r8(),Lt(n,new Ms(i,Nt(i.e.c.length+i.g.c.length)))}function ggr(n,i){return r8(),Lt(n,new Ms(i,Nt(i.e.c.length+i.g.c.length)))}function ZBt(){ZBt=z,Aln=Qr((ZZ(),Te(xe(WYe,1),wt,354,0,[Vve,YYe,jYe,VYe])))}function JBt(){JBt=z,Qon=Qr((LD(),Te(xe(TYe,1),wt,353,0,[Dve,kne,Lve,Ove])))}function eFt(){eFt=z,Con=Qr((Yk(),Te(xe(jVe,1),wt,405,0,[xne,xP,SP,TP])))}function tFt(){tFt=z,uun=Qr((Xm(),Te(xe(D2e,1),wt,223,0,[L2e,uH,xN,O6])))}function nFt(){nFt=z,gun=Qr((Id(),Te(xe(pun,1),wt,291,0,[dH,im,m2,hH])))}function rFt(){rFt=z,Tun=Qr((ud(),Te(xe(WP,1),wt,386,0,[mH,vw,gH,o3])))}function iFt(){iFt=z,Run=Qr((LZ(),Te(xe(fKe,1),wt,320,0,[B2e,uKe,dKe,hKe])))}function aFt(){aFt=z,Oun=Qr((xZ(),Te(xe(Nun,1),wt,415,0,[F2e,gKe,pKe,mKe])))}function HQ(){HQ=z,i2e=new Rhe(DQt,0),vje=new Rhe(f$e,1),yje=new Rhe(og,2)}function a4(n,i,l,d,g){return hr(n),hr(i),hr(l),hr(d),hr(g),new mNe(n,i,d)}function sFt(n,i){var l;return l=v(Lk(n.e,i),400),l?(VIe(l),l.e):null}function Yu(n,i){var l;return l=$l(n,i,0),l==-1?!1:(Jb(n,l),!0)}function oFt(n,i,l){var d;return Pv(n),d=new Ge,d.a=i,n.a.Nb(new GRt(d,l)),d.a}function mgr(n){var i;return Pv(n),i=st(ao,_l,28,0,15,1),TT(n.a,new B5t(i)),i}function YOe(n){var i;if(!Vfe(n))throw _e(new ec);return n.e=1,i=n.d,n.d=null,i}function ty(n){var i;return jl(n)&&(i=0-n,!isNaN(i))?i:zv($8(n))}function $l(n,i,l){for(;l=0?YZ(n,l,!0,!0):XE(n,i,!0)}function WOe(n){var i;return i=L_(rr(n,32)),i==null&&(Ru(n),i=L_(rr(n,32))),i}function KOe(n){var i;return n.Oh()||(i=kr(n.Dh())-n.ji(),n.$h().Mk(i)),n.zh()}function fFt(n,i){Wze=new dt,ztn=i,QM=n,v(QM.b,68),POe(QM,Wze,null),kWt(QM)}function wD(){wD=z,Vbe=new ohe("XY",0),Hbe=new ohe("X",1),Ybe=new ohe("Y",2)}function ju(){ju=z,g1=new she("TOP",0),o2=new she(CI,1),I0=new she(CBe,2)}function Ym(){Ym=z,Nq=new fhe(og,0),D5=new fhe("TOP",1),y6=new fhe(CBe,2)}function Az(){Az=z,dve=new qRe("INPUT_ORDER",0),fve=new qRe("PORT_DEGREE",1)}function E8(){E8=z,JUe=Su(Hh,Hh,524287),Ien=Su(0,0,FG),eze=vfe(1),vfe(2),tze=vfe(0)}function Dfe(n){var i;return n.d!=n.r&&(i=Gf(n),n.e=!!i&&i.lk()==IJt,n.d=i),n.e}function Mfe(n,i,l){var d;return d=n.g[i],KL(n,i,n.Zi(i,l)),n.Ri(i,l,d),n.Ni(),d}function WQ(n,i){var l;return l=n.dd(i),l>=0?(n.gd(l),!0):!1}function Pfe(n,i){var l;for(ni(n),ni(i),l=!1;i.Ob();)l=l|n.Fc(i.Pb());return l}function j1(n,i){var l;return l=v(br(n.e,i),400),l?(WIt(n,l),l.e):null}function pFt(n){var i,l;return i=n/60|0,l=n%60,l==0?""+i:""+i+":"+(""+l)}function s4(n,i){var l=n.a[i],d=(l0e(),bbe)[typeof l];return d?d(l):iLe(typeof l)}function ic(n,i){var l,d;return Vv(n),d=new IOe(i,n.a),l=new _Ot(d),new xn(n,l)}function Bfe(n){var i;return i=n.b.c.length==0?null:Yt(n.b,0),i!=null&&jfe(n,0),i}function _gr(n,i){var l,d,g;g=i.c.i,l=v(br(n.f,g),60),d=l.d.c-l.e.c,A9e(i.a,d,0)}function XOe(n,i){var l;for(++n.d,++n.c[i],l=i+1;l=0;)++i[0]}function wgr(n,i){Au(n,i==null||MX((hr(i),i))||isNaN((hr(i),i))?0:(hr(i),i))}function Egr(n,i){ku(n,i==null||MX((hr(i),i))||isNaN((hr(i),i))?0:(hr(i),i))}function xgr(n,i){FE(n,i==null||MX((hr(i),i))||isNaN((hr(i),i))?0:(hr(i),i))}function Sgr(n,i){BE(n,i==null||MX((hr(i),i))||isNaN((hr(i),i))?0:(hr(i),i))}function Tgr(n,i,l){return pk(new Ct(l.e.a+l.f.a/2,l.e.b+l.f.b/2),n)==(hr(i),i)}function Cgr(n,i){return $e(i,102)&&v(i,19).Bb&el?new Mhe(i,n):new M8(i,n)}function Agr(n,i){return $e(i,102)&&v(i,19).Bb&el?new Mhe(i,n):new M8(i,n)}function kz(n){return n.__elementTypeCategory$==null?10:n.__elementTypeCategory$}function bFt(n,i){return i==(ide(),ide(),qen)?n.toLocaleLowerCase():n.toLowerCase()}function yFt(n){if(!n.e)throw _e(new ec);return n.c=n.a=n.e,n.e=n.e.e,--n.d,n.a.f}function QOe(n){if(!n.c)throw _e(new ec);return n.e=n.a=n.c,n.c=n.c.c,++n.d,n.a.f}function vFt(n){var i;for(++n.a,i=n.c.a.length;n.an.a[d]&&(d=l);return d}function _Ft(n){var i;return i=v(oe(n,(At(),gx)),313),i?i.a==n:!1}function wFt(n){var i;return i=v(oe(n,(At(),gx)),313),i?i.i==n:!1}function EFt(){EFt=z,Bnn=Qr((Mo(),Te(xe(vGe,1),wt,367,0,[N0,em,qc,ru,Gl])))}function xFt(){xFt=z,_rn=Qr((b4(),Te(xe(vrn,1),wt,375,0,[kq,Pte,Bte,Mte,Dte])))}function SFt(){SFt=z,Nrn=Qr((ly(),Te(xe(Eqe,1),wt,348,0,[yye,wqe,vye,eN,JI])))}function TFt(){TFt=z,bsn=Qr((HD(),Te(xe(SVe,1),wt,323,0,[xVe,lve,cve,mP,bP])))}function CFt(){CFt=z,Hrn=Qr((pf(),Te(xe(Jqe,1),wt,171,0,[Mq,lP,u2,cP,Y4])))}function AFt(){AFt=z,aln=Qr((aJ(),Te(xe(iln,1),wt,368,0,[$ve,Pve,Uve,Bve,Fve])))}function kFt(){kFt=z,acn=Qr((rM(),Te(xe(icn,1),wt,373,0,[W5,A6,DP,LP,Jq])))}function RFt(){RFt=z,hcn=Qr((uG(),Te(xe(Rje,1),wt,324,0,[Cje,c2e,kje,u2e,Aje])))}function IFt(){IFt=z,lun=Qr((ys(),Te(xe(zP,1),wt,88,0,[cp,ql,Ol,lp,Ef])))}function NFt(){NFt=z,Dcn=Qr((d1(),Te(xe(rm,1),wt,170,0,[Hn,Fs,mg,pw,Sy])))}function OFt(){OFt=z,bun=Qr((ZT(),Te(xe(VP,1),wt,256,0,[b2,fH,tKe,HP,nKe])))}function LFt(){LFt=z,_un=Qr((Bt(),Te(xe(tl,1),Dc,64,0,[lc,or,gr,Mr,cr])))}function KQ(){KQ=z,kze=new LRe("BY_SIZE",0),Ibe=new LRe("BY_SIZE_AND_SHAPE",1)}function XQ(){XQ=z,zbe=new PRe("EADES",0),cte=new PRe("FRUCHTERMAN_REINGOLD",1)}function Rz(){Rz=z,$te=new URe("READING_DIRECTION",0),xqe=new URe("ROTATION",1)}function ED(){ED=z,Vnn=new ET,Ynn=new KA,qnn=new f0,Hnn=new WA,jnn=new rU}function DFt(n){this.b=new Ot,this.a=new Ot,this.c=new Ot,this.d=new Ot,this.e=n}function MFt(n){this.g=n,this.f=new Ot,this.a=u.Math.min(this.g.c.c,this.g.d.c)}function PFt(n,i,l){LX.call(this),e9e(this),this.a=n,this.c=l,this.b=i.d,this.f=i.e}function Lgr(n,i,l){var d,g;for(g=new me(l);g.a=0&&i0?i-1:i,b7t(iar(s$t(zIe(new tk,l),n.n),n.j),n.k)}function kl(n){var i,l;l=(i=new Oue,i),Yr((!n.q&&(n.q=new vt(e0,n,11,10)),n.q),l)}function ZOe(n){return(n.i&2?"interface ":n.i&1?"":"class ")+(Fm(n),n.o)}function QQ(n){return Oc(n,qi)>0?qi:Oc(n,Po)<0?Po:ti(n)}function o4(n){return n<3?(kd(n,QKt),n+1):n=-.01&&n.a<=ep&&(n.a=0),n.b>=-.01&&n.b<=ep&&(n.b=0),n}function YT(n){l5();var i,l;for(l=m$e,i=0;il&&(l=n[i]);return l}function UFt(n,i){var l;if(l=vG(n.Dh(),i),!l)throw _e(new ar(r2+i+Ime));return l}function l4(n,i){var l;for(l=n;Aa(l);)if(l=Aa(l),l==i)return!0;return!1}function Hgr(n,i){var l,d,g;for(d=i.a.ld(),l=v(i.a.md(),16).gc(),g=0;gn||n>i)throw _e(new sRe("fromIndex: 0, toIndex: "+n+pBe+i))}function PE(n){if(n<0)throw _e(new ar("Illegal Capacity: "+n));this.g=this.aj(n)}function JOe(n,i){return $1(),x0(Zv),u.Math.abs(n-i)<=Zv||n==i||isNaN(n)&&isNaN(i)}function Ufe(n,i){var l,d,g,y;for(d=n.d,g=0,y=d.length;g0&&(n.a/=i,n.b/=i),n}function Cd(n){var i;return n.w?n.w:(i=P0r(n),i&&!i.Vh()&&(n.w=i),i)}function x8(n,i){var l,d;d=n.a,l=Uyr(n,i,null),d!=i&&!n.e&&(l=bI(n,i,l)),l&&l.oj()}function VFt(n,i,l){var d,g;d=i;do g=We(n.p[d.p])+l,n.p[d.p]=g,d=n.a[d.p];while(d!=i)}function YFt(n,i,l){var d=function(){return n.apply(d,arguments)};return i.apply(d,l),d}function Qgr(n){var i;return n==null?null:(i=v(n,195),cxr(i,i.length))}function ze(n,i){if(n.g==null||i>=n.i)throw _e(new Dhe(i,n.i));return n.Wi(i,n.g[i])}function Zgr(n,i){Fn();var l,d;for(d=new Ot,l=0;l=14&&i<=16))),n}function Xr(n,i){var l;return hr(i),l=n[":"+i],XU(!!l,"Enum constant undefined: "+i),l}function $r(n,i,l,d,g,y){var x;return x=Pde(n,i),o$t(l,x),x.i=g?8:0,x.f=d,x.e=g,x.g=y,x}function n9e(n,i,l,d,g){this.d=i,this.k=d,this.f=g,this.o=-1,this.p=1,this.c=n,this.a=l}function r9e(n,i,l,d,g){this.d=i,this.k=d,this.f=g,this.o=-1,this.p=2,this.c=n,this.a=l}function i9e(n,i,l,d,g){this.d=i,this.k=d,this.f=g,this.o=-1,this.p=6,this.c=n,this.a=l}function a9e(n,i,l,d,g){this.d=i,this.k=d,this.f=g,this.o=-1,this.p=7,this.c=n,this.a=l}function s9e(n,i,l,d,g){this.d=i,this.j=d,this.e=g,this.o=-1,this.p=4,this.c=n,this.a=l}function l$t(n,i){var l,d,g,y;for(d=i,g=0,y=d.length;g=0))throw _e(new ar("tolerance ("+n+") must be >= 0"));return n}function u$t(n,i){var l;return $e(i,44)?n.c.Mc(i):(l=B0e(n,i),FZ(n,i),l)}function vl(n,i,l){return U_(n,i),mu(n,l),ny(n,0),c4(n,1),oy(n,!0),sy(n,!0),n}function Nz(n,i){var l;if(l=n.gc(),i<0||i>l)throw _e(new XS(i,l));return new bIe(n,i)}function aZ(n,i){n.b=u.Math.max(n.b,i.d),n.e+=i.r+(n.a.c.length==0?0:n.c),Lt(n.a,i)}function h$t(n){jS(n.c>=0),d2r(n.d,n.c)<0&&(n.a=n.a-1&n.d.a.length-1,n.b=n.d.c),n.c=-1}function sZ(n){var i,l;for(l=n.c.Cc().Kc();l.Ob();)i=v(l.Pb(),16),i.$b();n.c.$b(),n.d=0}function lmr(n){var i,l,d,g;for(l=n.a,d=0,g=l.length;d=0}function f9e(n,i){n.r>0&&n.c0&&n.g!=0&&f9e(n.i,i/n.r*n.i.d))}function p9e(n,i){var l;l=n.c,n.c=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,1,l,n.c))}function qfe(n,i){var l;l=n.c,n.c=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,4,l,n.c))}function I8(n,i){var l;l=n.k,n.k=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,2,l,n.k))}function Hfe(n,i){var l;l=n.D,n.D=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,2,l,n.D))}function lZ(n,i){var l;l=n.f,n.f=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,8,l,n.f))}function cZ(n,i){var l;l=n.i,n.i=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,7,l,n.i))}function g9e(n,i){var l;l=n.a,n.a=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,8,l,n.a))}function m9e(n,i){var l;l=n.b,n.b=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,0,l,n.b))}function b9e(n,i){var l;l=n.b,n.b=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,0,l,n.b))}function y9e(n,i){var l;l=n.c,n.c=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,1,l,n.c))}function v9e(n,i){var l;l=n.d,n.d=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,1,l,n.d))}function gmr(n,i,l){var d;n.b=i,n.a=l,d=(n.a&512)==512?new O6t:new j6e,n.c=R5r(d,n.b,n.a)}function x$t(n,i){return tb(n.e,i)?(al(),Dfe(i)?new VX(i,n):new DU(i,n)):new Q8t(i,n)}function mmr(n){var i,l;return 0>n?new wRe:(i=n+1,l=new MPt(i,n),new X8e(null,l))}function bmr(n,i){Fn();var l;return l=new ok(1),ro(n)?Cl(l,n,i):yu(l.f,n,i),new xue(l)}function ymr(n,i){var l,d;return l=n.c,d=i.e[n.p],d>0?v(Yt(l.a,d-1),10):null}function vmr(n,i){var l,d;return l=n.o+n.p,d=i.o+i.p,li?(i<<=1,i>0?i:mM):i}function Vfe(n){switch(I8e(n.e!=3),n.e){case 2:return!1;case 0:return!0}return kpr(n)}function T$t(n,i){var l;return $e(i,8)?(l=v(i,8),n.a==l.a&&n.b==l.b):!1}function wmr(n,i){var l;l=new dt,v(i.b,68),v(i.b,68),v(i.b,68),Cu(i.a,new AIe(n,l,i))}function C$t(n,i){var l,d;for(d=i.vc().Kc();d.Ob();)l=v(d.Pb(),44),sG(n,l.ld(),l.md())}function _9e(n,i){var l;l=n.d,n.d=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,11,l,n.d))}function uZ(n,i){var l;l=n.j,n.j=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,13,l,n.j))}function w9e(n,i){var l;l=n.b,n.b=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,21,l,n.b))}function Emr(n,i){(DQ(),rp?null:i.c).length==0&&GNt(i,new we),Cl(n.a,rp?null:i.c,i)}function xmr(n,i){i.Ug("Hierarchical port constraint processing",1),z2r(n),o8r(n),i.Vg()}function UE(){UE=z,px=new lhe("START",0),l2=new lhe("MIDDLE",1),fx=new lhe("END",2)}function hZ(){hZ=z,Rne=new XRe("P1_NODE_PLACEMENT",0),j5=new XRe("P2_EDGE_ROUTING",1)}function Uv(){Uv=z,m6=new la($Be),dte=new la(zXt),JM=new la(GXt),xq=new la(qXt)}function zE(n){var i;return ade(n.f.g,n.d),Tr(n.b),n.c=n.a,i=v(n.a.Pb(),44),n.b=D9e(n),i}function E9e(n){var i;return n.b==null?(Yb(),Yb(),TH):(i=n.ul()?n.tl():n.sl(),i)}function A$t(n,i){var l;return l=i==null?-1:$l(n.b,i,0),l<0?!1:(jfe(n,l),!0)}function S0(n,i){var l;return hr(i),l=i.g,n.b[l]?!1:(Ga(n.b,l,i),++n.c,!0)}function dZ(n,i){var l,d;return l=1-i,d=n.a[l],n.a[l]=d.a[i],d.a[i]=n,n.b=!0,d.b=!1,d}function Smr(n,i){var l,d;for(d=i.Kc();d.Ob();)l=v(d.Pb(),272),n.b=!0,Es(n.e,l),l.b=n}function Tmr(n,i){var l,d;return l=v(oe(n,(qt(),Z4)),8),d=v(oe(i,Z4),8),ha(l.b,d.b)}function Yfe(n,i,l){var d,g,y;return y=i>>5,g=i&31,d=Us(Dv(n.n[l][y],ti(w0(g,1))),3),d}function k$t(n,i,l){var d,g,y;for(y=n.a.length-1,g=n.b,d=0;d0?1:0:(!n.c&&(n.c=uz(xc(n.f))),n.c).e}function B$t(n,i){i?n.B==null&&(n.B=n.D,n.D=null):n.B!=null&&(n.D=n.B,n.B=null)}function Rmr(n,i){return B8(),n==dx&&i==U4||n==U4&&i==dx||n==A5&&i==$4||n==$4&&i==A5}function Imr(n,i){return B8(),n==dx&&i==$4||n==dx&&i==A5||n==U4&&i==A5||n==U4&&i==$4}function F$t(n,i){return $1(),x0(ep),u.Math.abs(0-i)<=ep||i==0||isNaN(0)&&isNaN(i)?0:n/i}function $$t(n,i){return We(at(ad(jz(Bl(new xn(null,new Nn(n.c.b,16)),new YCt(n)),i))))}function C9e(n,i){return We(at(ad(jz(Bl(new xn(null,new Nn(n.c.b,16)),new VCt(n)),i))))}function Nmr(){return cl(),Te(xe(Aye,1),wt,259,0,[qte,wf,iP,Hte,iN,L5,aP,nN,rN,Vte])}function Omr(){return qf(),Te(xe(RVe,1),wt,243,0,[bne,Uq,zq,CVe,AVe,TVe,kVe,yne,Tx,e3])}function Lmr(n,i){var l;i.Ug("General Compactor",1),l=Fvr(v(Et(n,(Xv(),qve)),393)),l.Cg(n)}function Dmr(n,i){var l,d;return l=v(Et(n,(Xv(),Nne)),17),d=v(Et(i,Nne),17),Nc(l.a,d.a)}function A9e(n,i,l){var d,g;for(g=Ur(n,0);g.b!=g.d.c;)d=v(Fr(g),8),d.a+=i,d.b+=l;return n}function TD(n,i,l){var d;for(d=n.b[l&n.f];d;d=d.b)if(l==d.a&&Wp(i,d.g))return d;return null}function CD(n,i,l){var d;for(d=n.c[l&n.f];d;d=d.d)if(l==d.f&&Wp(i,d.i))return d;return null}function Mmr(n,i,l){var d,g,y;for(d=0,g=0;g>>31;d!=0&&(n[l]=d)}function Qfe(n,i,l,d,g,y){var x;this.c=n,x=new Ot,sDe(n,x,i,n.b,l,d,g,y),this.a=new go(x,0)}function U$t(){this.c=new BK(0),this.b=new BK(g$e),this.d=new BK(AQt),this.a=new BK(vge)}function uf(n,i,l,d,g,y,x){Kr.call(this,n,i),this.d=l,this.e=d,this.c=g,this.b=y,this.a=H1(x)}function ns(n,i,l,d,g,y,x,T,R,O,D,q,J){return VHt(n,i,l,d,g,y,x,T,R,O,D,q,J),I0e(n,!1),n}function Pmr(n){return n.b.c.i.k==(lr(),hs)?v(oe(n.b.c.i,(At(),Ji)),12):n.b.c}function z$t(n){return n.b.d.i.k==(lr(),hs)?v(oe(n.b.d.i,(At(),Ji)),12):n.b.d}function Bmr(n){var i;return i=kQ(n),gE(i.a,0)?(zK(),zK(),Hen):(zK(),new ENt(i.b))}function Zfe(n){var i;return i=aOe(n),gE(i.a,0)?(zS(),zS(),Ebe):(zS(),new Khe(i.b))}function Jfe(n){var i;return i=aOe(n),gE(i.a,0)?(zS(),zS(),Ebe):(zS(),new Khe(i.c))}function G$t(n){switch(n.g){case 2:return Bt(),cr;case 4:return Bt(),gr;default:return n}}function q$t(n){switch(n.g){case 1:return Bt(),Mr;case 3:return Bt(),or;default:return n}}function H$t(n){switch(n.g){case 0:return new Cxt;case 1:return new Axt;default:return null}}function Bk(){Bk=z,iye=new Ba("edgelabelcenterednessanalysis.includelabel",(Qn(),a2))}function k9e(){k9e=z,zsn=Jp(hIt(yi(yi(new ms,(Mo(),qc),(qo(),Ste)),ru,vte),Gl),xte)}function V$t(){V$t=z,Vsn=Jp(hIt(yi(yi(new ms,(Mo(),qc),(qo(),Ste)),ru,vte),Gl),xte)}function e0e(){e0e=z,eB=new A6t,Y2e=Te(xe(Ju,1),x5,179,0,[]),dhn=Te(xe(e0,1),DUe,62,0,[])}function N8(){N8=z,Tq=new BRe("TO_INTERNAL_LTR",0),tye=new BRe("TO_INPUT_DIRECTION",1)}function hh(){hh=z,kGe=new Nyt,CGe=new Oyt,AGe=new Lyt,TGe=new Dyt,RGe=new Myt,IGe=new Pyt}function Fmr(n,i){i.Ug(iQt,1),NLe(war(new _K((TL(),new Gde(n,!1,!1,new O6e))))),i.Vg()}function $mr(n,i,l){l.Ug("DFS Treeifying phase",1),n2r(n,i),e5r(n,i),n.a=null,n.b=null,l.Vg()}function Oz(n,i){return Qn(),ro(n)?kOe(n,ai(i)):VS(n)?Sde(n,at(i)):HS(n)?Rhr(n,Ht(i)):n.Fd(i)}function AD(n,i){var l,d;for(hr(i),d=i.vc().Kc();d.Ob();)l=v(d.Pb(),44),n.zc(l.ld(),l.md())}function Umr(n,i,l){var d;for(d=l.Kc();d.Ob();)if(!NQ(n,i,d.Pb()))return!1;return!0}function zmr(n,i,l,d,g){var y;return l&&(y=Ma(i.Dh(),n.c),g=l.Rh(i,-1-(y==-1?d:y),null,g)),g}function Gmr(n,i,l,d,g){var y;return l&&(y=Ma(i.Dh(),n.c),g=l.Th(i,-1-(y==-1?d:y),null,g)),g}function Y$t(n){var i;if(n.b==-2){if(n.e==0)i=-1;else for(i=0;n.a[i]==0;i++);n.b=i}return n.b}function qmr(n){if(hr(n),n.length==0)throw _e(new Gp("Zero length BigInteger"));WCr(this,n)}function R9e(n){this.i=n.gc(),this.i>0&&(this.g=this.aj(this.i+(this.i/8|0)+1),n.Qc(this.g))}function j$t(n,i,l){this.g=n,this.d=i,this.e=l,this.a=new Ot,t4r(this),Fn(),us(this.a,null)}function I9e(n,i){i.q=n,n.d=u.Math.max(n.d,i.r),n.b+=i.d+(n.a.c.length==0?0:n.c),Lt(n.a,i)}function O8(n,i){var l,d,g,y;return g=n.c,l=n.c+n.b,y=n.d,d=n.d+n.a,i.a>g&&i.ay&&i.bg?l=g:sr(i,l+1),n.a=af(n.a,0,i)+(""+d)+SNe(n.a,l)}function nUt(n,i){n.a=zo(n.a,1),n.c=u.Math.min(n.c,i),n.b=u.Math.max(n.b,i),n.d=zo(n.d,i)}function Xmr(n,i){return i1||n.Ob())return++n.a,n.g=0,i=n.i,n.Ob(),i;throw _e(new ec)}function sUt(n){switch(n.a.g){case 1:return new h8t;case 3:return new hqt;default:return new STt}}function O9e(n,i){switch(i){case 1:return!!n.n&&n.n.i!=0;case 2:return n.k!=null}return iOe(n,i)}function xc(n){return $G>22),g=n.h+i.h+(d>>22),Su(l&Hh,d&Hh,g&rb)}function pUt(n,i){var l,d,g;return l=n.l-i.l,d=n.m-i.m+(l>>22),g=n.h-i.h+(d>>22),Su(l&Hh,d&Hh,g&rb)}function bbr(n){var i,l;for(uRr(n),l=new me(n.d);l.ad)throw _e(new XS(i,d));return n.Si()&&(l=ODt(n,l)),n.Ei(i,l)}function F8(n,i,l,d,g){var y,x;for(x=l;x<=g;x++)for(y=i;y<=d;y++)e5(n,y,x)||CJ(n,y,x,!0,!1)}function Nbr(n){l5();var i,l,d;for(l=st(Vs,kt,8,2,0,1),d=0,i=0;i<2;i++)d+=.5,l[i]=S_r(d,n);return l}function $8(n){var i,l,d;return i=~n.l+1&Hh,l=~n.m+(i==0?1:0)&Hh,d=~n.h+(i==0&&l==0?1:0)&rb,Su(i,l,d)}function U9e(n){var i;if(n<0)return Po;if(n==0)return 0;for(i=mM;!(i&n);i>>=1);return i}function o0e(n,i,l){return n>=128?!1:n<64?qL(Us(w0(1,n),l),0):qL(Us(w0(1,n-64),i),0)}function zz(n,i,l){return l==null?(!n.q&&(n.q=new Br),Lk(n.q,i)):(!n.q&&(n.q=new Br),Ni(n.q,i,l)),n}function _t(n,i,l){return l==null?(!n.q&&(n.q=new Br),Lk(n.q,i)):(!n.q&&(n.q=new Br),Ni(n.q,i,l)),n}function TUt(n){var i,l;return l=new PQ,Ul(l,n),_t(l,(Uv(),m6),n),i=new Br,skr(n,l,i),D7r(n,l,i),l}function CUt(n){var i,l;return i=n.t-n.k[n.o.p]*n.d+n.j[n.o.p]>n.f,l=n.u+n.e[n.o.p]*n.d>n.f*n.s*n.d,i||l}function AUt(n,i){var l,d,g,y;for(l=!1,d=n.a[i].length,y=0;y=0,"Negative initial capacity"),XU(i>=0,"Non-positive load factor"),xh(this)}function Lbr(n,i,l,d,g){var y,x;if(x=n.length,y=l.length,i<0||d<0||g<0||i+g>x||d+g>y)throw _e(new O7e)}function H9e(n,i){Fn();var l,d,g,y,x;for(x=!1,d=i,g=0,y=d.length;g1||i>=0&&n.b<3)}function u0e(n){var i,l,d;i=~n.l+1&Hh,l=~n.m+(i==0?1:0)&Hh,d=~n.h+(i==0&&l==0?1:0)&rb,n.l=i,n.m=l,n.h=d}function j9e(n){Fn();var i,l,d;for(d=1,l=n.Kc();l.Ob();)i=l.Pb(),d=31*d+(i!=null?ma(i):0),d=d|0;return d}function Fbr(n,i,l,d,g){var y;return y=PMe(n,i),l&&u0e(y),g&&(n=N_r(n,i),d?i2=$8(n):i2=Su(n.l,n.m,n.h)),y}function BUt(n,i,l){n.g=k1e(n,i,(Bt(),gr),n.b),n.d=k1e(n,l,gr,n.b),!(n.g.c==0||n.d.c==0)&&pHt(n)}function FUt(n,i,l){n.g=k1e(n,i,(Bt(),cr),n.j),n.d=k1e(n,l,cr,n.j),!(n.g.c==0||n.d.c==0)&&pHt(n)}function W9e(n,i){switch(i){case 7:return!!n.e&&n.e.i!=0;case 8:return!!n.d&&n.d.i!=0}return OLe(n,i)}function $br(n,i){switch(i.g){case 0:$e(n.b,641)||(n.b=new tUt);break;case 1:$e(n.b,642)||(n.b=new e9t)}}function $Ut(n){switch(n.g){case 0:return new Oxt;default:throw _e(new ar(Cee+(n.f!=null?n.f:""+n.g)))}}function UUt(n){switch(n.g){case 0:return new Nxt;default:throw _e(new ar(Cee+(n.f!=null?n.f:""+n.g)))}}function Ubr(n,i,l){return!VR(Ki(new xn(null,new Nn(n.c,16)),new PR(new C8t(i,l)))).Bd((w_(),p6))}function zUt(n,i){return pk(eI(v(oe(i,(pc(),Ax)),88)),new Ct(n.c.e.a-n.b.e.a,n.c.e.b-n.b.e.b))<=0}function zbr(n,i){for(;n.g==null&&!n.c?WNe(n):n.g==null||n.i!=0&&v(n.g[n.i-1],51).Ob();)Har(i,pJ(n))}function $_(n){var i,l;for(l=new me(n.a.b);l.ad?1:0}function Hbr(n){return Lt(n.c,(Fk(),Icn)),JOe(n.a,We(at(zt((P0e(),fne)))))?new ySt:new QAt(n)}function Vbr(n){for(;!n.d||!n.d.Ob();)if(n.b&&!wL(n.b))n.d=v(xk(n.b),51);else return null;return n.d}function X9e(n){switch(n.g){case 1:return AQt;default:case 2:return 0;case 3:return vge;case 4:return g$e}}function Ybr(){zi();var n;return Z2e||(n=hor(Qv("M",!0)),n=XX(Qv("M",!1),n),Z2e=n,Z2e)}function xZ(){xZ=z,F2e=new pX("ELK",0),gKe=new pX("JSON",1),pKe=new pX("DOT",2),mKe=new pX("SVG",3)}function ND(){ND=z,mve=new bhe("STACKED",0),gve=new bhe("REVERSE_STACKED",1),Gq=new bhe("SEQUENCED",2)}function OD(){OD=z,iYe=new xhe(og,0),Eve=new xhe("MIDDLE_TO_MIDDLE",1),Vq=new xhe("AVOID_OVERLAP",2)}function G8(){G8=z,dqe=new p2t,fqe=new g2t,drn=new d2t,hrn=new m2t,urn=new f2t,hqe=(hr(urn),new te)}function SZ(){SZ=z,JWe=new bE(15),dun=new fo((Ei(),Ty),JWe),GP=R6,KWe=Vcn,XWe=mw,ZWe=tC,QWe=i3}function WT(n,i){var l,d,g,y,x;for(d=i,g=0,y=d.length;g=n.b.c.length||(Z9e(n,2*i+1),l=2*i+2,l0&&(i.Cd(l),l.i&&Wyr(l))}function J9e(n,i,l){var d;for(d=l-1;d>=0&&n[d]===i[d];d--);return d<0?0:nhe(Us(n[d],ul),Us(i[d],ul))?-1:1}function HUt(n,i,l){var d,g;this.g=n,this.c=i,this.a=this,this.d=this,g=S$t(l),d=st(Sen,PG,227,g,0,1),this.b=d}function g0e(n,i,l,d,g){var y,x;for(x=l;x<=g;x++)for(y=i;y<=d;y++)if(e5(n,y,x))return!0;return!1}function Zbr(n,i){var l,d;for(d=n.Zb().Cc().Kc();d.Ob();)if(l=v(d.Pb(),16),l.Hc(i))return!0;return!1}function VUt(n,i,l){var d,g,y,x;for(hr(l),x=!1,y=n.fd(i),g=l.Kc();g.Ob();)d=g.Pb(),y.Rb(d),x=!0;return x}function m0e(n,i){var l,d;return d=v(rr(n.a,4),129),l=st(H2e,jme,424,i,0,1),d!=null&&Gc(d,0,l,0,d.length),l}function YUt(n,i){var l;return l=new H1e((n.f&256)!=0,n.i,n.a,n.d,(n.f&16)!=0,n.j,n.g,i),n.e!=null||(l.c=n),l}function Jbr(n,i){var l;return n===i?!0:$e(i,85)?(l=v(i,85),nMe(x_(n),l.vc())):!1}function jUt(n,i,l){var d,g;for(g=l.Kc();g.Ob();)if(d=v(g.Pb(),44),n.Be(i,d.md()))return!0;return!1}function WUt(n,i,l){return n.d[i.p][l.p]||(n_r(n,i,l),n.d[i.p][l.p]=!0,n.d[l.p][i.p]=!0),n.a[i.p][l.p]}function eyr(n,i){var l;return!n||n==i||!ya(i,(At(),mx))?!1:(l=v(oe(i,(At(),mx)),10),l!=n)}function b0e(n){switch(n.i){case 2:return!0;case 1:return!1;case-1:++n.c;default:return n.$l()}}function KUt(n){switch(n.i){case-2:return!0;case-1:return!1;case 1:--n.c;default:return n._l()}}function XUt(n){BDt.call(this,"The given string does not match the expected format for individual spacings.",n)}function tyr(n,i){var l;i.Ug("Min Size Preprocessing",1),l=hMe(n),sa(n,(Vg(),IP),l.a),sa(n,Dne,l.b),i.Vg()}function nyr(n){var i,l,d;for(i=0,d=st(Vs,kt,8,n.b,0,1),l=Ur(n,0);l.b!=l.d.c;)d[i++]=v(Fr(l),8);return d}function y0e(n,i,l){var d,g,y;for(d=new Ea,y=Ur(l,0);y.b!=y.d.c;)g=v(Fr(y),8),pi(d,new Wo(g));VUt(n,i,d)}function ryr(n,i){var l;return l=zo(n,i),nhe(ofe(n,i),0)|bX(ofe(n,l),0)?l:zo(MG,ofe(Dv(l,63),1))}function iyr(n,i){var l,d;return l=v(n.d.Bc(i),16),l?(d=n.e.hc(),d.Gc(l),n.e.d-=l.gc(),l.$b(),d):null}function QUt(n){var i;if(i=n.a.c.length,i>0)return s8(i-1,n.a.c.length),Jb(n.a,i-1);throw _e(new Qkt)}function ZUt(n,i,l){if(n>i)throw _e(new ar(qJ+n+fXt+i));if(n<0||i>l)throw _e(new sRe(qJ+n+bBe+i+pBe+l))}function q8(n,i){n.D==null&&n.B!=null&&(n.D=n.B,n.B=null),Hfe(n,i==null?null:(hr(i),i)),n.C&&n.hl(null)}function ayr(n,i){var l;l=zt((P0e(),fne))!=null&&i.Sg()!=null?We(at(i.Sg()))/We(at(zt(fne))):1,Ni(n.b,i,l)}function eLe(n,i){var l,d;if(d=n.c[i],d!=0)for(n.c[i]=0,n.d-=d,l=i+1;lvee?n-l>vee:l-n>vee}function czt(n,i){var l;for(l=0;lg&&($qt(i.q,g),d=l!=i.q.d)),d}function uzt(n,i){var l,d,g,y,x,T,R,O;return R=i.i,O=i.j,d=n.f,g=d.i,y=d.j,x=R-g,T=O-y,l=u.Math.sqrt(x*x+T*T),l}function sLe(n,i){var l,d;return d=$Z(n),d||(l=(dpe(),QVt(i)),d=new Ukt(l),Yr(d.El(),n)),d}function Vz(n,i){var l,d;return l=v(n.c.Bc(i),16),l?(d=n.hc(),d.Gc(l),n.d-=l.gc(),l.$b(),n.mc(d)):n.jc()}function myr(n,i){var l,d;for(d=Gh(n.d,1)!=0,l=!0;l;)l=!1,l=i.c.mg(i.e,d),l=l|_G(n,i,d,!1),d=!d;S9e(n)}function hzt(n,i,l,d){var g,y;n.a=i,y=d?0:1,n.f=(g=new SHt(n.c,n.a,l,y),new njt(l,n.a,g,n.e,n.b,n.c==($E(),_P)))}function CZ(n){var i;return Tr(n.a!=n.b),i=n.d.a[n.a],$Nt(n.b==n.d.c&&i!=null),n.c=n.a,n.a=n.a+1&n.d.a.length-1,i}function dzt(n){var i;if(n.c!=0)return n.c;for(i=0;i=n.c.b:n.a<=n.c.b))throw _e(new ec);return i=n.a,n.a+=n.c.c,++n.b,Nt(i)}function x0e(n){var i;return i=new w8e(n.a),Ul(i,n),_t(i,(At(),Ji),n),i.o.a=n.g,i.o.b=n.f,i.n.a=n.i,i.n.b=n.j,i}function S0e(n){return(Bt(),Qu).Hc(n.j)?We(at(oe(n,(At(),aN)))):ac(Te(xe(Vs,1),kt,8,0,[n.i.n,n.n,n.a])).b}function yyr(n){var i;return i=EX(Usn),v(oe(n,(At(),au)),21).Hc((cl(),iN))&&yi(i,(Mo(),qc),(qo(),Ate)),i}function vyr(n){var i,l,d,g;for(g=new fs,d=new me(n);d.a=0?i:-i;d>0;)d%2==0?(l*=l,d=d/2|0):(g*=l,d-=1);return i<0?1/g:g}function Syr(n,i){var l,d,g;for(g=1,l=n,d=i>=0?i:-i;d>0;)d%2==0?(l*=l,d=d/2|0):(g*=l,d-=1);return i<0?1/g:g}function Hv(n,i){var l,d,g,y;return y=(g=n?$Z(n):null,jHt((d=i,g&&g.Gl(),d))),y==i&&(l=$Z(n),l&&l.Gl()),y}function fzt(n,i,l){var d,g;return g=n.f,n.f=i,n.Db&4&&!(n.Db&1)&&(d=new js(n,1,0,g,i),l?l.nj(d):l=d),l}function pzt(n,i,l){var d,g;return g=n.b,n.b=i,n.Db&4&&!(n.Db&1)&&(d=new js(n,1,3,g,i),l?l.nj(d):l=d),l}function lLe(n,i,l){var d,g;return g=n.a,n.a=i,n.Db&4&&!(n.Db&1)&&(d=new js(n,1,1,g,i),l?l.nj(d):l=d),l}function gzt(n){var i,l;if(n!=null)for(l=0;l=d||i-129&&n<128?(JOt(),i=n+128,l=sze[i],!l&&(l=sze[i]=new l7e(n)),l):new l7e(n)}function V8(n){var i,l;return n>-129&&n<128?(m9t(),i=n+128,l=uze[i],!l&&(l=uze[i]=new u7e(n)),l):new u7e(n)}function yzt(n,i){var l;n.a.c.length>0&&(l=v(Yt(n.a,n.a.c.length-1),579),Q9e(l,i))||Lt(n.a,new PPt(i))}function Iyr(n){_0();var i,l;i=n.d.c-n.e.c,l=v(n.g,154),Cu(l.b,new LCt(i)),Cu(l.c,new DCt(i)),To(l.i,new MCt(i))}function vzt(n){var i;return i=new Cv,i.a+="VerticalSegment ",Kc(i,n.e),i.a+=" ",bi(i,k8e(new que,new me(n.k))),i.a}function T0e(n,i){var l,d,g;for(l=0,g=sc(n,i).Kc();g.Ob();)d=v(g.Pb(),12),l+=oe(d,(At(),kh))!=null?1:0;return l}function QT(n,i,l){var d,g,y;for(d=0,y=Ur(n,0);y.b!=y.d.c&&(g=We(at(Fr(y))),!(g>l));)g>=i&&++d;return d}function _zt(n,i){ni(n);try{return n._b(i)}catch(l){if(l=Da(l),$e(l,212)||$e(l,169))return!1;throw _e(l)}}function uLe(n,i){ni(n);try{return n.Hc(i)}catch(l){if(l=Da(l),$e(l,212)||$e(l,169))return!1;throw _e(l)}}function Nyr(n,i){ni(n);try{return n.Mc(i)}catch(l){if(l=Da(l),$e(l,212)||$e(l,169))return!1;throw _e(l)}}function d4(n,i){ni(n);try{return n.xc(i)}catch(l){if(l=Da(l),$e(l,212)||$e(l,169))return null;throw _e(l)}}function Oyr(n,i){ni(n);try{return n.Bc(i)}catch(l){if(l=Da(l),$e(l,212)||$e(l,169))return null;throw _e(l)}}function MD(n,i){switch(i.g){case 2:case 1:return sc(n,i);case 3:case 4:return ff(sc(n,i))}return Fn(),Fn(),Zo}function PD(n){var i;return n.Db&64?T0(n):(i=new Ff(T0(n)),i.a+=" (name: ",bl(i,n.zb),i.a+=")",i.a)}function Lyr(n){var i;return i=v(j1(n.c.c,""),233),i||(i=new Rk(qR(GR(new XA,""),"Other")),cy(n.c.c,"",i)),i}function hLe(n,i,l){var d,g;return g=n.sb,n.sb=i,n.Db&4&&!(n.Db&1)&&(d=new js(n,1,4,g,i),l?l.nj(d):l=d),l}function dLe(n,i,l){var d,g;return g=n.r,n.r=i,n.Db&4&&!(n.Db&1)&&(d=new js(n,1,8,g,n.r),l?l.nj(d):l=d),l}function Dyr(n,i,l){var d,g;return d=new Vm(n.e,4,13,(g=i.c,g||(Pn(),dp)),null,uy(n,i),!1),l?l.nj(d):l=d,l}function Myr(n,i,l){var d,g;return d=new Vm(n.e,3,13,null,(g=i.c,g||(Pn(),dp)),uy(n,i),!1),l?l.nj(d):l=d,l}function ay(n,i){var l,d;return l=v(i,691),d=l.el(),!d&&l.fl(d=$e(i,90)?new Z8t(n,v(i,29)):new wMt(n,v(i,156))),d}function Yz(n,i,l){var d;n._i(n.i+1),d=n.Zi(i,l),i!=n.i&&Gc(n.g,i,n.g,i+1,n.i-i),Ga(n.g,i,d),++n.i,n.Mi(i,l),n.Ni()}function Pyr(n,i){var l;return i.a&&(l=i.a.a.length,n.a?bi(n.a,n.b):n.a=new Ed(n.d),kMt(n.a,i.a,i.d.length,l)),n}function Byr(n,i){var l;n.c=i,n.a=Gvr(i),n.a<54&&(n.f=(l=i.d>1?CMt(i.a[0],i.a[1]):CMt(i.a[0],0),N_(i.e>0?l:ty(l))))}function jz(n,i){var l;return l=new Ge,n.a.Bd(l)?(QR(),new Bue(hr(oFt(n,l.a,i)))):(Pv(n),QR(),QR(),wze)}function wzt(n,i){var l;n.c.length!=0&&(l=v(X1(n,st(tm,gy,10,n.c.length,0,1)),199),f8e(l,new _vt),pVt(l,i))}function Ezt(n,i){var l;n.c.length!=0&&(l=v(X1(n,st(tm,gy,10,n.c.length,0,1)),199),f8e(l,new wvt),pVt(l,i))}function Yi(n,i){return ro(n)?An(n,i):VS(n)?mOt(n,i):HS(n)?(hr(n),Ze(n)===Ze(i)):sNe(n)?n.Fb(i):JIe(n)?pIt(n,i):JNe(n,i)}function hf(n,i,l){if(i<0)yMe(n,l);else{if(!l.rk())throw _e(new ar(r2+l.xe()+MM));v(l,69).wk().Ek(n,n.hi(),i)}}function xzt(n,i,l){if(n<0||i>l)throw _e(new Sl(qJ+n+bBe+i+", size: "+l));if(n>i)throw _e(new ar(qJ+n+fXt+i))}function Szt(n){var i;return n.Db&64?T0(n):(i=new Ff(T0(n)),i.a+=" (source: ",bl(i,n.d),i.a+=")",i.a)}function Tzt(n){return n>=65&&n<=70?n-65+10:n>=97&&n<=102?n-97+10:n>=48&&n<=57?n-48:0}function Fyr(n){FJ();var i,l,d,g;for(l=H0e(),d=0,g=l.length;d=0?Yv(n):cD(Yv(ty(n))))}function kzt(n,i,l,d,g,y){this.e=new Ot,this.f=(ll(),yP),Lt(this.e,n),this.d=i,this.a=l,this.b=d,this.f=g,this.c=y}function zyr(n,i,l){n.n=E_(C2,[kt,Xpe],[376,28],14,[l,Ps(u.Math.ceil(i/32))],2),n.o=i,n.p=l,n.j=i-1>>1,n.k=l-1>>1}function Rzt(n){return n-=n>>1&1431655765,n=(n>>2&858993459)+(n&858993459),n=(n>>4)+n&252645135,n+=n>>8,n+=n>>16,n&63}function Izt(n,i){var l,d;for(d=new mr(n);d.e!=d.i.gc();)if(l=v(wr(d),142),Ze(i)===Ze(l))return!0;return!1}function Gyr(n,i,l){var d,g,y;return y=(g=lI(n.b,i),g),y&&(d=v(LJ(Sz(n,y),""),29),d)?UMe(n,d,i,l):null}function C0e(n,i,l){var d,g,y;return y=(g=lI(n.b,i),g),y&&(d=v(LJ(Sz(n,y),""),29),d)?zMe(n,d,i,l):null}function qyr(n,i){var l;if(l=jT(n.i,i),l==null)throw _e(new zp("Node did not exist in input."));return N9e(i,l),null}function Hyr(n,i){var l;if(l=vG(n,i),$e(l,331))return v(l,35);throw _e(new ar(r2+i+"' is not a valid attribute"))}function FD(n,i,l){var d;if(d=n.gc(),i>d)throw _e(new XS(i,d));if(n.Si()&&n.Hc(l))throw _e(new ar(sq));n.Gi(i,l)}function Vyr(n,i){i.Ug("Sort end labels",1),ts(Ki(ic(new xn(null,new Nn(n.b,16)),new ivt),new avt),new svt),i.Vg()}function ys(){ys=z,cp=new NU(wM,0),ql=new NU(i6,1),Ol=new NU(r6,2),lp=new NU(cge,3),Ef=new NU("UP",4)}function Kz(){Kz=z,Bne=new Ihe("P1_STRUCTURE",0),Fne=new Ihe("P2_PROCESSING_ORDER",1),$ne=new Ihe("P3_EXECUTION",2)}function Nzt(){Nzt=z,tln=Jp(Jp(RL(Jp(Jp(RL(yi(new ms,(Yk(),xP),(oM(),wve)),SP),eYe),nYe),TP),XVe),rYe)}function Yyr(n){switch(v(oe(n,(At(),aw)),311).g){case 1:_t(n,aw,(Ym(),y6));break;case 2:_t(n,aw,(Ym(),D5))}}function jyr(n){switch(n){case 0:return new _6t;case 1:return new y6t;case 2:return new v6t;default:throw _e(new cU)}}function Ozt(n){switch(n.g){case 2:return ql;case 1:return Ol;case 4:return lp;case 3:return Ef;default:return cp}}function mLe(n,i){switch(n.b.g){case 0:case 1:return i;case 2:case 3:return new rf(i.d,0,i.a,i.b);default:return null}}function bLe(n){switch(n.g){case 1:return cr;case 2:return or;case 3:return gr;case 4:return Mr;default:return lc}}function Xz(n){switch(n.g){case 1:return Mr;case 2:return cr;case 3:return or;case 4:return gr;default:return lc}}function RZ(n){switch(n.g){case 1:return gr;case 2:return Mr;case 3:return cr;case 4:return or;default:return lc}}function yLe(n,i,l,d){switch(i){case 1:return!n.n&&(n.n=new vt(wl,n,1,7)),n.n;case 2:return n.k}return uDe(n,i,l,d)}function $D(n,i,l){var d,g;return n.Pj()?(g=n.Qj(),d=L1e(n,i,l),n.Jj(n.Ij(7,Nt(l),d,i,g)),d):L1e(n,i,l)}function A0e(n,i){var l,d,g;n.d==null?(++n.e,--n.f):(g=i.ld(),l=i.Bi(),d=(l&qi)%n.d.length,Opr(n,d,tYt(n,d,l,g)))}function Y8(n,i){var l;l=(n.Bb&k0)!=0,i?n.Bb|=k0:n.Bb&=-1025,n.Db&4&&!(n.Db&1)&&Vi(n,new E0(n,1,10,l,i))}function j8(n,i){var l;l=(n.Bb&R4)!=0,i?n.Bb|=R4:n.Bb&=-4097,n.Db&4&&!(n.Db&1)&&Vi(n,new E0(n,1,12,l,i))}function W8(n,i){var l;l=(n.Bb&gh)!=0,i?n.Bb|=gh:n.Bb&=-8193,n.Db&4&&!(n.Db&1)&&Vi(n,new E0(n,1,15,l,i))}function K8(n,i){var l;l=(n.Bb&P4)!=0,i?n.Bb|=P4:n.Bb&=-2049,n.Db&4&&!(n.Db&1)&&Vi(n,new E0(n,1,11,l,i))}function Wyr(n){var i;n.g&&(i=n.c.kg()?n.f:n.a,ePe(i.a,n.o,!0),ePe(i.a,n.o,!1),_t(n.o,(qt(),Qa),(co(),yw)))}function Kyr(n){var i;if(!n.a)throw _e(new Tl("Cannot offset an unassigned cut."));i=n.c-n.b,n.b+=i,rDt(n,i),nDt(n,i)}function Xyr(n,i){var l;if(l=br(n.k,i),l==null)throw _e(new zp("Port did not exist in input."));return N9e(i,l),null}function Qyr(n){var i,l;for(l=ZVt(Cd(n)).Kc();l.Ob();)if(i=ai(l.Pb()),lM(n,i))return Z1r((DRt(),ehn),i);return null}function Lzt(n){var i,l;for(l=n.p.a.ec().Kc();l.Ob();)if(i=v(l.Pb(),218),i.f&&n.b[i.c]<-1e-10)return i;return null}function Zyr(n){var i,l;for(l=C_(new Cv,91),i=!0;n.Ob();)i||(l.a+=Xo),i=!1,Kc(l,n.Pb());return(l.a+="]",l).a}function Jyr(n){var i,l,d;for(i=new Ot,d=new me(n.b);d.ai?1:n==i?n==0?ha(1/n,1/i):0:isNaN(n)?isNaN(i)?0:1:-1}function tvr(n){var i;return i=n.a[n.c-1&n.a.length-1],i==null?null:(n.c=n.c-1&n.a.length-1,Ga(n.a,n.c,null),i)}function nvr(n){var i,l,d;for(d=0,l=n.length,i=0;i=1?ql:lp):l}function svr(n){switch(v(oe(n,(qt(),lb)),223).g){case 1:return new V_t;case 3:return new X_t;default:return new H_t}}function Vv(n){if(n.c)Vv(n.c);else if(n.d)throw _e(new Tl("Stream already terminated, can't be modified or used"))}function qE(n,i,l){var d;return d=n.a.get(i),n.a.set(i,l===void 0?null:l),d===void 0?(++n.c,++n.b.g):++n.d,d}function ovr(n,i,l){var d,g;for(g=n.a.ec().Kc();g.Ob();)if(d=v(g.Pb(),10),Bz(l,v(Yt(i,d.p),16)))return d;return null}function _Le(n,i,l){var d;return d=0,i&&(LT(n.a)?d+=i.f.a/2:d+=i.f.b/2),l&&(LT(n.a)?d+=l.f.a/2:d+=l.f.b/2),d}function lvr(n,i,l){var d;d=l,!d&&(d=zIe(new tk,0)),d.Ug(VXt,2),FGt(n.b,i,d.eh(1)),x6r(n,i,d.eh(1)),CRr(i,d.eh(1)),d.Vg()}function wLe(n,i,l){var d,g;return d=(kv(),g=new hK,g),nZ(d,i),tZ(d,l),n&&Yr((!n.a&&(n.a=new gs(Ud,n,5)),n.a),d),d}function R0e(n){var i;return n.Db&64?T0(n):(i=new Ff(T0(n)),i.a+=" (identifier: ",bl(i,n.k),i.a+=")",i.a)}function I0e(n,i){var l;l=(n.Bb&Sc)!=0,i?n.Bb|=Sc:n.Bb&=-32769,n.Db&4&&!(n.Db&1)&&Vi(n,new E0(n,1,18,l,i))}function ELe(n,i){var l;l=(n.Bb&Sc)!=0,i?n.Bb|=Sc:n.Bb&=-32769,n.Db&4&&!(n.Db&1)&&Vi(n,new E0(n,1,18,l,i))}function X8(n,i){var l;l=(n.Bb&ng)!=0,i?n.Bb|=ng:n.Bb&=-16385,n.Db&4&&!(n.Db&1)&&Vi(n,new E0(n,1,16,l,i))}function xLe(n,i){var l;l=(n.Bb&el)!=0,i?n.Bb|=el:n.Bb&=-65537,n.Db&4&&!(n.Db&1)&&Vi(n,new E0(n,1,20,l,i))}function SLe(n){var i;return i=st(Tf,rg,28,2,15,1),n-=el,i[0]=(n>>10)+UG&vs,i[1]=(n&1023)+56320&vs,Qp(i,0,i.length)}function cvr(n){var i;return i=y4(n),i>34028234663852886e22?ka:i<-34028234663852886e22?Ss:i}function zo(n,i){var l;return jl(n)&&jl(i)&&(l=n+i,$G"+I_(i.c):"e_"+ma(i),n.b&&n.c?I_(n.b)+"->"+I_(n.c):"e_"+ma(n))}function dvr(n,i){return An(i.b&&i.c?I_(i.b)+"->"+I_(i.c):"e_"+ma(i),n.b&&n.c?I_(n.b)+"->"+I_(n.c):"e_"+ma(n))}function HE(n,i){return $1(),x0(Zv),u.Math.abs(n-i)<=Zv||n==i||isNaN(n)&&isNaN(i)?0:ni?1:mE(isNaN(n),isNaN(i))}function Xm(){Xm=z,L2e=new uX(wM,0),uH=new uX("POLYLINE",1),xN=new uX("ORTHOGONAL",2),O6=new uX("SPLINES",3)}function NZ(){NZ=z,eje=new khe("ASPECT_RATIO_DRIVEN",0),Jve=new khe("MAX_SCALE_DRIVEN",1),JYe=new khe("AREA_DRIVEN",2)}function fvr(n,i,l){var d;try{Pbr(n,i,l)}catch(g){throw g=Da(g),$e(g,606)?(d=g,_e(new SOe(d))):_e(g)}return i}function pvr(n){var i,l,d;for(l=0,d=n.length;li&&d.Ne(n[y-1],n[y])>0;--y)x=n[y],Ga(n,y,n[y-1]),Ga(n,y-1,x)}function pn(n,i){var l,d,g,y,x;if(l=i.f,cy(n.c.d,l,i),i.g!=null)for(g=i.g,y=0,x=g.length;yi){NMt(l);break}}tz(l,i)}function yvr(n,i){var l,d,g;d=qT(i),g=We(at(p4(d,(qt(),O0)))),l=u.Math.max(0,g/2-.5),WD(i,l,1),Lt(n,new XRt(i,l))}function vvr(n,i,l){var d;l.Ug("Straight Line Edge Routing",1),l.dh(i,T$e),d=v(Et(i,(UT(),Y5)),27),vWt(n,d),l.dh(i,Eee)}function TLe(n,i){n.n.c.length==0&&Lt(n.n,new SQ(n.s,n.t,n.i)),Lt(n.b,i),aDe(v(Yt(n.n,n.n.c.length-1),209),i),tWt(n,i)}function UD(n){var i;this.a=(i=v(n.e&&n.e(),9),new nf(i,v(v0(i,i.length),9),0)),this.b=st(zs,Yn,1,this.a.a.length,5,1)}function Kl(n){var i;return Array.isArray(n)&&n.Tm===Z?__(cd(n))+"@"+(i=ma(n)>>>0,i.toString(16)):n.toString()}function _vr(n,i){return n.h==FG&&n.m==0&&n.l==0?(i&&(i2=Su(0,0,0)),mIt((E8(),eze))):(i&&(i2=Su(n.l,n.m,n.h)),Su(0,0,0))}function wvr(n,i){switch(i.g){case 2:return n.b;case 1:return n.c;case 4:return n.d;case 3:return n.a;default:return!1}}function Bzt(n,i){switch(i.g){case 2:return n.b;case 1:return n.c;case 4:return n.d;case 3:return n.a;default:return!1}}function CLe(n,i,l,d){switch(i){case 3:return n.f;case 4:return n.g;case 5:return n.i;case 6:return n.j}return yLe(n,i,l,d)}function OZ(n,i){if(i==n.d)return n.e;if(i==n.e)return n.d;throw _e(new ar("Node "+i+" not part of edge "+n))}function Evr(n,i){var l;if(l=vG(n.Dh(),i),$e(l,102))return v(l,19);throw _e(new ar(r2+i+"' is not a valid reference"))}function df(n,i,l,d){if(i<0)VMe(n,l,d);else{if(!l.rk())throw _e(new ar(r2+l.xe()+MM));v(l,69).wk().Ck(n,n.hi(),i,d)}}function zh(n){var i;if(n.b){if(zh(n.b),n.b.d!=n.c)throw _e(new Jd)}else n.d.dc()&&(i=v(n.f.c.xc(n.e),16),i&&(n.d=i))}function xvr(n){WS();var i,l,d,g;for(i=n.o.b,d=v(v(Zi(n.r,(Bt(),Mr)),21),87).Kc();d.Ob();)l=v(d.Pb(),117),g=l.e,g.b+=i}function Svr(n){var i,l,d;for(this.a=new Hp,d=new me(n);d.a=g)return i.c+l;return i.c+i.b.gc()}function Cvr(n,i){t8();var l,d,g,y;for(d=KBt(n),g=i,_8(d,0,d.length,g),l=0;l0&&(d+=g,++l);return l>1&&(d+=n.d*(l-1)),d}function kvr(n){var i,l,d,g,y;return y=HDe(n),l=fU(n.c),d=!l,d&&(g=new p_,c1(y,"knownLayouters",g),i=new Akt(g),To(n.c,i)),y}function RLe(n){var i,l,d;for(d=new qb,d.a+="[",i=0,l=n.gc();i0&&(sr(i-1,n.length),n.charCodeAt(i-1)==58)&&!L0e(n,ZP,JP))}function ILe(n,i){var l;return Ze(n)===Ze(i)?!0:$e(i,92)?(l=v(i,92),n.e==l.e&&n.d==l.d&&tpr(n,l.a)):!1}function zk(n){switch(Bt(),n.g){case 4:return or;case 1:return gr;case 3:return Mr;case 2:return cr;default:return lc}}function Ovr(n){var i,l;if(n.b)return n.b;for(l=rp?null:n.d;l;){if(i=rp?null:l.b,i)return i;l=rp?null:l.d}return KR(),Sze}function NLe(n){var i,l,d;for(d=We(at(n.a.of((Ei(),jne)))),l=new me(n.a.Sf());l.a>5,i=n&31,d=st(Wr,vi,28,l+1,15,1),d[l]=1<3;)g*=10,--y;n=(n+(g>>1))/g|0}return d.i=n,!0}function Ma(n,i){var l,d,g;if(l=(n.i==null&&tg(n),n.i),d=i.Lj(),d!=-1){for(g=l.length;d=0;--d)for(i=l[d],g=0;g>1,this.k=i-1>>1}function jvr(n){GQ(),v(n.of((Ei(),g2)),181).Hc((qh(),ere))&&(v(n.of(a3),181).Fc((Ah(),L6)),v(n.of(g2),181).Mc(ere))}function Hzt(n){var i,l;i=n.d==(jk(),XI),l=DDe(n),i&&!l||!i&&l?_t(n.a,(qt(),fg),(qg(),nH)):_t(n.a,(qt(),fg),(qg(),tH))}function P0e(){P0e=z,HK(),fne=(qt(),Sx),fsn=H1(Te(xe(g2e,1),d$e,149,0,[Fq,O0,U5,xx,J4,Zye,uN,hN,Jye,pP,$5,dw,z5]))}function Wvr(n,i){var l;return l=v(Wl(n,Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[(Ch(),Ql)]))),15),l.Qc(h9t(l.gc()))}function Vzt(n,i){var l,d;if(d=new MR(n.a.ad(i,!0)),d.a.gc()<=1)throw _e(new ZA);return l=d.a.ec().Kc(),l.Pb(),v(l.Pb(),40)}function Kvr(n,i,l){var d,g;return d=We(n.p[i.i.p])+We(n.d[i.i.p])+i.n.b+i.a.b,g=We(n.p[l.i.p])+We(n.d[l.i.p])+l.n.b+l.a.b,g-d}function FLe(n,i){var l;return n.i>0&&(i.lengthn.i&&Ga(i,n.i,null),i}function DZ(n){var i;return n.Db&64?PD(n):(i=new Ff(PD(n)),i.a+=" (instanceClassName: ",bl(i,n.D),i.a+=")",i.a)}function MZ(n){var i,l,d,g;for(g=0,l=0,d=n.length;l0?(n._j(),d=i==null?0:ma(i),g=(d&qi)%n.d.length,l=tYt(n,g,d,i),l!=-1):!1}function Yzt(n,i){var l,d;n.a=zo(n.a,1),n.c=u.Math.min(n.c,i),n.b=u.Math.max(n.b,i),n.d+=i,l=i-n.f,d=n.e+l,n.f=d-n.e-l,n.e=d}function $Le(n,i){switch(i){case 3:BE(n,0);return;case 4:FE(n,0);return;case 5:Au(n,0);return;case 6:ku(n,0);return}cLe(n,i)}function VE(n,i){switch(i.g){case 1:return vk(n.j,(hh(),CGe));case 2:return vk(n.j,(hh(),kGe));default:return Fn(),Fn(),Zo}}function ULe(n){CE();var i;switch(i=n.Pc(),i.length){case 0:return hbe;case 1:return new mde(ni(i[0]));default:return new Qde(pvr(i))}}function jzt(n,i){n.Xj();try{n.d.bd(n.e++,i),n.f=n.d.j,n.g=-1}catch(l){throw l=Da(l),$e(l,77)?_e(new Jd):_e(l)}}function F0e(){F0e=z,W2e=new GSt,MKe=new qSt,PKe=new HSt,BKe=new VSt,FKe=new YSt,$Ke=new jSt,UKe=new WSt,zKe=new KSt,GKe=new XSt}function PZ(n,i){c8e();var l,d;return l=HU((IK(),IK(),jM)),d=null,i==l&&(d=v(Qc(ZUe,n),624)),d||(d=new dLt(n),i==l&&Cl(ZUe,n,d)),d}function Wzt(n){g4();var i;return(n.q?n.q:(Fn(),Fn(),Jg))._b((qt(),wx))?i=v(oe(n,wx),203):i=v(oe(So(n),fP),203),i}function p4(n,i){var l,d;return d=null,ya(n,(qt(),hne))&&(l=v(oe(n,hne),96),l.pf(i)&&(d=l.of(i))),d==null&&(d=oe(So(n),i)),d}function Kzt(n,i){var l,d,g;return $e(i,44)?(l=v(i,44),d=l.ld(),g=d4(n.Rc(),d),Wp(g,l.md())&&(g!=null||n.Rc()._b(d))):!1}function h1(n,i){var l,d,g;return n.f>0&&(n._j(),d=i==null?0:ma(i),g=(d&qi)%n.d.length,l=TMe(n,g,d,i),l)?l.md():null}function bu(n,i,l){var d,g,y;return n.Pj()?(d=n.i,y=n.Qj(),Yz(n,d,i),g=n.Ij(3,null,i,d,y),l?l.nj(g):l=g):Yz(n,n.i,i),l}function Qvr(n,i,l){var d,g;return d=new Vm(n.e,4,10,(g=i.c,$e(g,90)?v(g,29):(Pn(),n0)),null,uy(n,i),!1),l?l.nj(d):l=d,l}function Zvr(n,i,l){var d,g;return d=new Vm(n.e,3,10,null,(g=i.c,$e(g,90)?v(g,29):(Pn(),n0)),uy(n,i),!1),l?l.nj(d):l=d,l}function Xzt(n){WS();var i;return i=new Wo(v(n.e.of((Ei(),tC)),8)),n.B.Hc((qh(),TN))&&(i.a<=0&&(i.a=20),i.b<=0&&(i.b=20)),i}function Yv(n){eg();var i,l;return l=ti(n),i=ti(Dv(n,32)),i!=0?new iMt(l,i):l>10||l<0?new qm(1,l):Pen[l]}function Zz(n,i){var l;return jl(n)&&jl(i)&&(l=n%i,$G=0?y=y.a[1]:(g=y,y=y.a[0])}return g}function eG(n,i,l){var d,g,y;for(g=null,y=n.b;y;){if(d=n.a.Ne(i,y.d),l&&d==0)return y;d<=0?y=y.a[0]:(g=y,y=y.a[1])}return g}function i2r(n,i,l,d){var g,y,x;return g=!1,o7r(n.f,l,d)&&(C2r(n.f,n.a[i][l],n.a[i][d]),y=n.a[i],x=y[d],y[d]=y[l],y[l]=x,g=!0),g}function eGt(n,i,l){var d,g,y,x;for(g=v(br(n.b,l),183),d=0,x=new me(i.j);x.a>5,i&=31,g=n.d+l+(i==0?0:1),d=st(Wr,vi,28,g,15,1),nxr(d,n.a,l,i),y=new T_(n.e,g,d),gD(y),y}function a2r(n,i){var l,d,g;for(d=new yr(_r(os(n).a.Kc(),new S));zr(d);)if(l=v(Rr(d),18),g=l.d.i,g.c==i)return!1;return!0}function qLe(n,i,l){var d,g,y,x,T;return x=n.k,T=i.k,d=l[x.g][T.g],g=at(p4(n,d)),y=at(p4(i,d)),u.Math.max((hr(g),g),(hr(y),y))}function s2r(){return Error.stackTraceLimit>0?(u.Error.stackTraceLimit=Error.stackTraceLimit=64,!0):"stack"in new Error}function o2r(n,i){return $1(),$1(),x0(Zv),(u.Math.abs(n-i)<=Zv||n==i||isNaN(n)&&isNaN(i)?0:ni?1:mE(isNaN(n),isNaN(i)))>0}function HLe(n,i){return $1(),$1(),x0(Zv),(u.Math.abs(n-i)<=Zv||n==i||isNaN(n)&&isNaN(i)?0:ni?1:mE(isNaN(n),isNaN(i)))<0}function nGt(n,i){return $1(),$1(),x0(Zv),(u.Math.abs(n-i)<=Zv||n==i||isNaN(n)&&isNaN(i)?0:ni?1:mE(isNaN(n),isNaN(i)))<=0}function U0e(n,i){for(var l=0;!i[l]||i[l]=="";)l++;for(var d=i[l++];l0&&this.b>0&&(this.g=KX(this.c,this.b,this.a))}function l2r(n,i){var l=n.a,d;i=String(i),l.hasOwnProperty(i)&&(d=l[i]);var g=(l0e(),bbe)[typeof d],y=g?g(d):iLe(typeof d);return y}function Z8(n){var i,l,d;if(d=null,i=ug in n.a,l=!i,l)throw _e(new zp("Every element must have an id."));return d=Wk(Um(n,ug)),d}function YE(n){var i,l;for(l=kHt(n),i=null;n.c==2;)$i(n),i||(i=(zi(),zi(),new jL(2)),V_(i,l),l=i),l.Jm(kHt(n));return l}function FZ(n,i){var l,d,g;return n._j(),d=i==null?0:ma(i),g=(d&qi)%n.d.length,l=TMe(n,g,d,i),l?(u$t(n,l),l.md()):null}function cGt(n,i){return n.e>i.e?1:n.ei.d?n.e:n.d=48&&n<48+u.Math.min(10,10)?n-48:n>=97&&n<97?n-97+10:n>=65&&n<65?n-65+10:-1}function c2r(n,i){if(i.c==n)return i.d;if(i.d==n)return i.c;throw _e(new ar("Input edge is not connected to the input port."))}function u2r(n){if(UZ(BI,n))return Qn(),HI;if(UZ(Ame,n))return Qn(),a2;throw _e(new ar("Expecting true or false"))}function jLe(n){switch(typeof n){case Epe:return ry(n);case nBe:return dk(n);case Zk:return HNt(n);default:return n==null?0:vE(n)}}function Jp(n,i){if(n.a<0)throw _e(new Tl("Did not call before(...) or after(...) before calling add(...)."));return z8e(n,n.a,i),n}function WLe(n){return TQ(),$e(n,162)?v(br(EH,zen),295).Rg(n):Tu(EH,cd(n))?v(br(EH,cd(n)),295).Rg(n):null}function Ru(n){var i,l;return n.Db&32||(l=(i=v(rr(n,16),29),kr(i||n.ii())-kr(n.ii())),l!=0&&Gk(n,32,st(zs,Yn,1,l,5,1))),n}function Gk(n,i,l){var d;n.Db&i?l==null?j4r(n,i):(d=o1e(n,i),d==-1?n.Eb=l:Ga(L_(n.Eb),d,l)):l!=null&&m5r(n,i,l)}function h2r(n,i,l,d){var g,y;i.c.length!=0&&(g=sTr(l,d),y=o4r(i),ts(JQ(new xn(null,new Nn(y,1)),new Kwt),new zLt(n,l,g,d)))}function d2r(n,i){var l,d,g,y;return d=n.a.length-1,l=i-n.b&d,y=n.c-i&d,g=n.c-n.b&d,$Nt(l=y?(uyr(n,i),-1):(cyr(n,i),1)}function $Z(n){var i,l,d;if(d=n.Jh(),!d)for(i=0,l=n.Ph();l;l=l.Ph()){if(++i>Qpe)return l.Qh();if(d=l.Jh(),d||l==n)break}return d}function hGt(n,i){var l;return Ze(i)===Ze(n)?!0:!$e(i,21)||(l=v(i,21),l.gc()!=n.gc())?!1:n.Ic(l)}function f2r(n,i){return n.ei.e?1:n.fi.f?1:ma(n)-ma(i)}function UZ(n,i){return hr(n),i==null?!1:An(n,i)?!0:n.length==i.length&&An(n.toLowerCase(),i.toLowerCase())}function Zm(n){var i,l;return Oc(n,-129)>0&&Oc(n,128)<0?(g9t(),i=ti(n)+128,l=oze[i],!l&&(l=oze[i]=new c7e(n)),l):new c7e(n)}function z_(){z_=z,z4=new nX(og,0),wGe=new nX("INSIDE_PORT_SIDE_GROUPS",1),Qbe=new nX("GROUP_MODEL_ORDER",2),Zbe=new nX(VBe,3)}function p2r(n){var i;return n.b||aar(n,(i=slr(n.e,n.a),!i||!An(Ame,h1((!i.b&&(i.b=new sd((Pn(),nl),_c,i)),i.b),"qualified")))),n.c}function g2r(n,i){var l,d;for(l=(sr(i,n.length),n.charCodeAt(i)),d=i+1;d2e3&&(Cen=n,Xee=u.setTimeout(uar,10))),Kee++==0?(kgr((tRe(),QUe)),!0):!1}function R2r(n,i,l){var d;(Wen?(Ovr(n),!0):Ken||Qen?(KR(),!0):Xen&&(KR(),!1))&&(d=new kOt(i),d.b=l,Bxr(n,d))}function G0e(n,i){var l;l=!n.A.Hc((ud(),vw))||n.q==(co(),su),n.u.Hc((Ah(),ub))?l?yRr(n,i):sKt(n,i):n.u.Hc(v2)&&(l?F7r(n,i):wKt(n,i))}function bGt(n){var i;Ze(Et(n,(Ei(),J5)))===Ze((Km(),Xne))&&(Aa(n)?(i=v(Et(Aa(n),J5),346),sa(n,J5,i)):sa(n,J5,qP))}function I2r(n){var i,l;return ya(n.d.i,(qt(),oN))?(i=v(oe(n.c.i,oN),17),l=v(oe(n.d.i,oN),17),Nc(i.a,l.a)>0):!1}function yGt(n,i,l){return new rf(u.Math.min(n.a,i.a)-l/2,u.Math.min(n.b,i.b)-l/2,u.Math.abs(n.a-i.a)+l,u.Math.abs(n.b-i.b)+l)}function vGt(n){var i;this.d=new Ot,this.j=new ho,this.g=new ho,i=n.g.b,this.f=v(oe(So(i),(qt(),Pd)),88),this.e=We(at(HZ(i,J4)))}function _Gt(n){this.d=new Ot,this.e=new Zb,this.c=st(Wr,vi,28,(Bt(),Te(xe(tl,1),Dc,64,0,[lc,or,gr,Mr,cr])).length,15,1),this.b=n}function QLe(n,i,l){var d;switch(d=l[n.g][i],n.g){case 1:case 3:return new Ct(0,d);case 2:case 4:return new Ct(d,0);default:return null}}function wGt(n,i,l){var d,g;g=v(sz(i.f),205);try{g.rf(n,l),CLt(i.f,g)}catch(y){throw y=Da(y),$e(y,103)?(d=y,_e(d)):_e(y)}}function EGt(n,i,l){var d,g,y,x,T,R;return d=null,T=GPe(R8(),i),y=null,T&&(g=null,R=UPe(T,l),x=null,R!=null&&(x=n.qf(T,R)),g=x,y=g),d=y,d}function q0e(n,i,l,d){var g;if(g=n.length,i>=g)return g;for(i=i>0?i:0;id&&Ga(i,d,null),i}function xGt(n,i){var l,d;for(d=n.a.length,i.lengthd&&Ga(i,d,null),i}function J8(n,i){var l,d;if(++n.j,i!=null&&(l=(d=n.a.Cb,$e(d,99)?v(d,99).th():null),M4r(i,l))){Gk(n.a,4,l);return}Gk(n.a,4,v(i,129))}function N2r(n){var i;if(n==null)return null;if(i=P3r(eu(n,!0)),i==null)throw _e(new Gue("Invalid hexBinary value: '"+n+"'"));return i}function zZ(n,i,l){var d;i.a.length>0&&(Lt(n.b,new HOt(i.a,l)),d=i.a.length,0d&&(i.a+=YIt(st(Tf,rg,28,-d,15,1))))}function SGt(n,i,l){var d,g,y;if(!l[i.d])for(l[i.d]=!0,g=new me(XT(i));g.a=n.b>>1)for(d=n.c,l=n.b;l>i;--l)d=d.b;else for(d=n.a.a,l=0;l=0?n.Wh(g):O1e(n,d)):l<0?O1e(n,d):v(d,69).wk().Bk(n,n.hi(),l)}function kGt(n){var i,l,d;for(d=(!n.o&&(n.o=new uh((Lc(),om),Ay,n,0)),n.o),l=d.c.Kc();l.e!=l.i.gc();)i=v(l.Yj(),44),i.md();return yz(d)}function zt(n){var i;if($e(n.a,4)){if(i=WLe(n.a),i==null)throw _e(new Tl(XQt+n.b+"'. "+KQt+(Fm(xH),xH.k)+rUe));return i}else return n.a}function $2r(n,i){var l,d;if(n.j.length!=i.j.length)return!1;for(l=0,d=n.j.length;l=64&&i<128&&(g=s1(g,w0(1,i-64)));return g}function HZ(n,i){var l,d;return d=null,ya(n,(Ei(),I6))&&(l=v(oe(n,I6),96),l.pf(i)&&(d=l.of(i))),d==null&&So(n)&&(d=oe(So(n),i)),d}function U2r(n,i){var l;return l=v(oe(n,(qt(),Nl)),75),qhe(i,Knn)?l?xd(l):(l=new ah,_t(n,Nl,l)):l&&_t(n,Nl,null),l}function qD(){qD=z,tGe=(Ei(),OWe),Fbe=dWe,Wtn=X5,eGe=Ty,Ztn=(nJ(),Lze),Qtn=Nze,Jtn=Mze,Xtn=Ize,Ktn=(v0e(),Qze),Bbe=Vtn,Jze=Ytn,ote=jtn}function VZ(n){switch(SRe(),this.c=new Ot,this.d=n,n.g){case 0:case 2:this.a=ONe(_Ge),this.b=ka;break;case 3:case 1:this.a=_Ge,this.b=Ss}}function z2r(n){var i;yk(v(oe(n,(qt(),Qa)),101))&&(i=n.b,mVt(($n(0,i.c.length),v(i.c[0],30))),mVt(v(Yt(i,i.c.length-1),30)))}function G2r(n,i){i.Ug("Self-Loop post-processing",1),ts(Ki(Ki(ic(new xn(null,new Nn(n.b,16)),new S2t),new T2t),new C2t),new A2t),i.Vg()}function RGt(n,i,l){var d,g;if(n.c)Au(n.c,n.c.i+i),ku(n.c,n.c.j+l);else for(g=new me(n.b);g.a=0&&(l.d=n.t);break;case 3:n.t>=0&&(l.a=n.t)}n.C&&(l.b=n.C.b,l.c=n.C.c)}function HD(){HD=z,xVe=new TU(f$e,0),lve=new TU(Ige,1),cve=new TU("LINEAR_SEGMENTS",2),mP=new TU("BRANDES_KOEPF",3),bP=new TU(SQt,4)}function VD(){VD=z,wq=new eX(VJ,0),ate=new eX(uge,1),ste=new eX(hge,2),Eq=new eX(dge,3),wq.a=!1,ate.a=!0,ste.a=!1,Eq.a=!0}function qk(){qk=z,yq=new JK(VJ,0),bq=new JK(uge,1),vq=new JK(hge,2),_q=new JK(dge,3),yq.a=!1,bq.a=!0,vq.a=!1,_q.a=!0}function Hk(n,i,l,d){var g;return l>=0?n.Sh(i,l,d):(n.Ph()&&(d=(g=n.Fh(),g>=0?n.Ah(d):n.Ph().Th(n,-1-g,null,d))),n.Ch(i,l,d))}function ZLe(n,i){switch(i){case 7:!n.e&&(n.e=new Gn(ss,n,7,4)),Gr(n.e);return;case 8:!n.d&&(n.d=new Gn(ss,n,8,5)),Gr(n.d);return}$Le(n,i)}function sa(n,i,l){return l==null?(!n.o&&(n.o=new uh((Lc(),om),Ay,n,0)),FZ(n.o,i)):(!n.o&&(n.o=new uh((Lc(),om),Ay,n,0)),sG(n.o,i,l)),n}function LGt(n,i){Fn();var l,d,g,y;for(l=n,y=i,$e(n,21)&&!$e(i,21)&&(l=i,y=n),g=l.Kc();g.Ob();)if(d=g.Pb(),y.Hc(d))return!1;return!0}function j2r(n,i,l,d){if(i.al.b)return!0}return!1}function W0e(n,i){return ro(n)?!!ven[i]:n.Sm?!!n.Sm[i]:VS(n)?!!yen[i]:HS(n)?!!ben[i]:!1}function W2r(n){var i;i=n.a;do i=v(Rr(new yr(_r(Hs(i).a.Kc(),new S))),18).c.i,i.k==(lr(),Ws)&&n.b.Fc(i);while(i.k==(lr(),Ws));n.b=ff(n.b)}function DGt(n,i){var l,d,g;for(g=n,d=new yr(_r(Hs(i).a.Kc(),new S));zr(d);)l=v(Rr(d),18),l.c.i.c&&(g=u.Math.max(g,l.c.i.c.p));return g}function K2r(n,i){var l,d,g;for(g=0,d=v(v(Zi(n.r,i),21),87).Kc();d.Ob();)l=v(d.Pb(),117),g+=l.d.d+l.b.Mf().b+l.d.a,d.Ob()&&(g+=n.w);return g}function X2r(n,i){var l,d,g;for(g=0,d=v(v(Zi(n.r,i),21),87).Kc();d.Ob();)l=v(d.Pb(),117),g+=l.d.b+l.b.Mf().a+l.d.c,d.Ob()&&(g+=n.w);return g}function MGt(n){var i,l,d,g;if(d=0,g=E4(n),g.c.length==0)return 1;for(l=new me(g);l.a=0?n.Lh(x,l,!0):XE(n,y,l)):v(y,69).wk().yk(n,n.hi(),g,l,d)}function e_r(n,i,l,d){var g,y;y=i.pf((Ei(),eC))?v(i.of(eC),21):n.j,g=Fyr(y),g!=(FJ(),Lbe)&&(l&&!VLe(g)||rMe(B3r(n,g,d),i))}function t_r(n){switch(n.g){case 1:return GE(),mq;case 3:return GE(),gq;case 2:return GE(),Mbe;case 4:return GE(),Dbe;default:return null}}function n_r(n,i,l){if(n.e)switch(n.b){case 1:Ydr(n.c,i,l);break;case 0:jdr(n.c,i,l)}else nPt(n.c,i,l);n.a[i.p][l.p]=n.c.i,n.a[l.p][i.p]=n.c.e}function PGt(n){var i,l;if(n==null)return null;for(l=st(tm,kt,199,n.length,0,2),i=0;i=0)return g;if(n.ol()){for(d=0;d=g)throw _e(new XS(i,g));if(n.Si()&&(d=n.dd(l),d>=0&&d!=i))throw _e(new ar(sq));return n.Xi(i,l)}function JLe(n,i){if(this.a=v(ni(n),253),this.b=v(ni(i),253),n.Ed(i)>0||n==(Mue(),cbe)||i==(Pue(),ube))throw _e(new ar("Invalid range: "+aPt(n,i)))}function BGt(n){var i,l;for(this.b=new Ot,this.c=n,this.a=!1,l=new me(n.a);l.a0),(i&-i)==i)return Ps(i*Gh(n,31)*4656612873077393e-25);do l=Gh(n,31),d=l%i;while(l-d+(i-1)<0);return Ps(d)}function l_r(n,i,l){switch(l.g){case 1:n.a=i.a/2,n.b=0;break;case 2:n.a=i.a,n.b=i.b/2;break;case 3:n.a=i.a/2,n.b=i.b;break;case 4:n.a=0,n.b=i.b/2}}function tG(n,i,l,d){var g,y;for(g=i;g1&&(y=i_r(n,i)),y}function UGt(n){var i;return i=We(at(Et(n,(Ei(),cH))))*u.Math.sqrt((!n.a&&(n.a=new vt(Pi,n,10,11)),n.a).i),new Ct(i,i/We(at(Et(n,Wne))))}function X0e(n){var i;return n.f&&n.f.Vh()&&(i=v(n.f,54),n.f=v(Hv(n,i),84),n.f!=i&&n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,9,8,i,n.f))),n.f}function Q0e(n){var i;return n.i&&n.i.Vh()&&(i=v(n.i,54),n.i=v(Hv(n,i),84),n.i!=i&&n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,9,7,i,n.i))),n.i}function sl(n){var i;return n.b&&n.b.Db&64&&(i=n.b,n.b=v(Hv(n,i),19),n.b!=i&&n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,9,21,i,n.b))),n.b}function XZ(n,i){var l,d,g;n.d==null?(++n.e,++n.f):(d=i.Bi(),NTr(n,n.f+1),g=(d&qi)%n.d.length,l=n.d[g],!l&&(l=n.d[g]=n.dk()),l.Fc(i),++n.f)}function nDe(n,i,l){var d;return i.tk()?!1:i.Ik()!=-2?(d=i.ik(),d==null?l==null:Yi(d,l)):i.qk()==n.e.Dh()&&l==null}function QZ(){var n;kd(16,QKt),n=S$t(16),this.b=st(dbe,PG,303,n,0,1),this.c=st(dbe,PG,303,n,0,1),this.a=null,this.e=null,this.i=0,this.f=n-1,this.g=0}function Jm(n){lIe.call(this),this.k=(lr(),is),this.j=(kd(6,k4),new gu(6)),this.b=(kd(2,k4),new gu(2)),this.d=new Iue,this.f=new q7e,this.a=n}function u_r(n){var i,l;n.c.length<=1||(i=HYt(n,(Bt(),Mr)),NHt(n,v(i.a,17).a,v(i.b,17).a),l=HYt(n,cr),NHt(n,v(l.a,17).a,v(l.b,17).a))}function h_r(n,i,l){var d,g;for(g=n.a.b,d=g.c.length;d102?-1:n<=57?n-48:n<65?-1:n<=70?n-65+10:n<97?-1:n-97+10}function n1e(n,i){if(n==null)throw _e(new rk("null key in entry: null="+i));if(i==null)throw _e(new rk("null value in entry: "+n+"=null"))}function p_r(n,i){for(var l,d;n.Ob();)if(!i.Ob()||(l=n.Pb(),d=i.Pb(),!(Ze(l)===Ze(d)||l!=null&&Yi(l,d))))return!1;return!i.Ob()}function qGt(n,i){var l;return l=Te(xe(ao,1),_l,28,15,[w0e(n.a[0],i),w0e(n.a[1],i),w0e(n.a[2],i)]),n.d&&(l[0]=u.Math.max(l[0],l[2]),l[2]=l[0]),l}function HGt(n,i){var l;return l=Te(xe(ao,1),_l,28,15,[TZ(n.a[0],i),TZ(n.a[1],i),TZ(n.a[2],i)]),n.d&&(l[0]=u.Math.max(l[0],l[2]),l[2]=l[0]),l}function iDe(n,i,l){yk(v(oe(i,(qt(),Qa)),101))||(yOe(n,i,hy(i,l)),yOe(n,i,hy(i,(Bt(),Mr))),yOe(n,i,hy(i,or)),Fn(),us(i.j,new XCt(n)))}function VGt(n){var i,l;for(n.c||L6r(n),l=new ah,i=new me(n.a),pe(i);i.a0&&(sr(0,i.length),i.charCodeAt(0)==43)?(sr(1,i.length+1),i.substr(1)):i))}function k_r(n){var i;return n==null?null:new Ov((i=eu(n,!0),i.length>0&&(sr(0,i.length),i.charCodeAt(0)==43)?(sr(1,i.length+1),i.substr(1)):i))}function sDe(n,i,l,d,g,y,x,T){var R,O;d&&(R=d.a[0],R&&sDe(n,i,l,R,g,y,x,T),h1e(n,l,d.d,g,y,x,T)&&i.Fc(d),O=d.a[1],O&&sDe(n,i,l,O,g,y,x,T))}function e5(n,i,l){try{return gE(Yfe(n,i,l),1)}catch(d){throw d=Da(d),$e(d,333)?_e(new Sl(fge+n.o+"*"+n.p+pge+i+Xo+l+gge)):_e(d)}}function XGt(n,i,l){try{return gE(Yfe(n,i,l),0)}catch(d){throw d=Da(d),$e(d,333)?_e(new Sl(fge+n.o+"*"+n.p+pge+i+Xo+l+gge)):_e(d)}}function QGt(n,i,l){try{return gE(Yfe(n,i,l),2)}catch(d){throw d=Da(d),$e(d,333)?_e(new Sl(fge+n.o+"*"+n.p+pge+i+Xo+l+gge)):_e(d)}}function ZGt(n,i){if(n.g==-1)throw _e(new ih);n.Xj();try{n.d.hd(n.g,i),n.f=n.d.j}catch(l){throw l=Da(l),$e(l,77)?_e(new Jd):_e(l)}}function R_r(n){var i,l,d,g,y;for(d=new me(n.b);d.ay&&Ga(i,y,null),i}function I_r(n,i){var l,d;if(d=n.gc(),i==null){for(l=0;l0&&(R+=g),O[D]=x,x+=T*(R+d)}function eqt(n){var i,l,d;for(d=n.f,n.n=st(ao,_l,28,d,15,1),n.d=st(ao,_l,28,d,15,1),i=0;i0?n.c:0),++g;n.b=d,n.d=y}function aqt(n,i){var l;return l=Te(xe(ao,1),_l,28,15,[tDe(n,(u1(),bc),i),tDe(n,vu,i),tDe(n,yc,i)]),n.f&&(l[0]=u.Math.max(l[0],l[2]),l[2]=l[0]),l}function F_r(n,i,l){var d;try{CJ(n,i+n.j,l+n.k,!1,!0)}catch(g){throw g=Da(g),$e(g,77)?(d=g,_e(new Sl(d.g+jJ+i+Xo+l+")."))):_e(g)}}function $_r(n,i,l){var d;try{CJ(n,i+n.j,l+n.k,!0,!1)}catch(g){throw g=Da(g),$e(g,77)?(d=g,_e(new Sl(d.g+jJ+i+Xo+l+")."))):_e(g)}}function sqt(n){var i;ya(n,(qt(),_x))&&(i=v(oe(n,_x),21),i.Hc((w4(),D0))?(i.Mc(D0),i.Fc(M0)):i.Hc(M0)&&(i.Mc(M0),i.Fc(D0)))}function oqt(n){var i;ya(n,(qt(),_x))&&(i=v(oe(n,_x),21),i.Hc((w4(),B0))?(i.Mc(B0),i.Fc(Qf)):i.Hc(Qf)&&(i.Mc(Qf),i.Fc(B0)))}function l1e(n,i,l,d){var g,y,x,T;return n.a==null&&zxr(n,i),x=i.b.j.c.length,y=l.d.p,T=d.d.p,g=T-1,g<0&&(g=x-1),y<=g?n.a[g]-n.a[y]:n.a[x-1]-n.a[y]+n.a[g]}function U_r(n){var i,l;if(!n.b)for(n.b=RQ(v(n.f,27).kh().i),l=new mr(v(n.f,27).kh());l.e!=l.i.gc();)i=v(wr(l),135),Lt(n.b,new $ue(i));return n.b}function z_r(n){var i,l;if(!n.e)for(n.e=RQ(Ude(v(n.f,27)).i),l=new mr(Ude(v(n.f,27)));l.e!=l.i.gc();)i=v(wr(l),123),Lt(n.e,new ekt(i));return n.e}function lqt(n){var i,l;if(!n.a)for(n.a=RQ(bQ(v(n.f,27)).i),l=new mr(bQ(v(n.f,27)));l.e!=l.i.gc();)i=v(wr(l),27),Lt(n.a,new jhe(n,i));return n.a}function WE(n){var i;if(!n.C&&(n.D!=null||n.B!=null))if(i=k7r(n),i)n.hl(i);else try{n.hl(null)}catch(l){if(l=Da(l),!$e(l,63))throw _e(l)}return n.C}function G_r(n){switch(n.q.g){case 5:Oqt(n,(Bt(),or)),Oqt(n,Mr);break;case 4:DWt(n,(Bt(),or)),DWt(n,Mr);break;default:BHt(n,(Bt(),or)),BHt(n,Mr)}}function q_r(n){switch(n.q.g){case 5:Lqt(n,(Bt(),gr)),Lqt(n,cr);break;case 4:MWt(n,(Bt(),gr)),MWt(n,cr);break;default:FHt(n,(Bt(),gr)),FHt(n,cr)}}function t5(n,i){var l,d,g;for(g=new ho,d=n.Kc();d.Ob();)l=v(d.Pb(),36),hI(l,g.a,0),g.a+=l.f.a+i,g.b=u.Math.max(g.b,l.f.b);return g.b>0&&(g.b+=i),g}function eJ(n,i){var l,d,g;for(g=new ho,d=n.Kc();d.Ob();)l=v(d.Pb(),36),hI(l,0,g.b),g.b+=l.f.b+i,g.a=u.Math.max(g.a,l.f.a);return g.a>0&&(g.a+=i),g}function cqt(n){var i,l,d;for(d=qi,l=new me(n.a);l.a>16==6?n.Cb.Th(n,5,y1,i):(d=sl(v(qn((l=v(rr(n,16),29),l||n.ii()),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function H_r(n){p8();var i=n.e;if(i&&i.stack){var l=i.stack,d=i+` +`;return l.substring(0,d.length)==d&&(l=l.substring(d.length)),l.split(` +`)}return[]}function V_r(n){var i;return i=(f$t(),Nen),i[n>>>28]|i[n>>24&15]<<4|i[n>>20&15]<<8|i[n>>16&15]<<12|i[n>>12&15]<<16|i[n>>8&15]<<20|i[n>>4&15]<<24|i[n&15]<<28}function dqt(n){var i,l,d;n.b==n.c&&(d=n.a.length,l=U9e(u.Math.max(8,d))<<1,n.b!=0?(i=v0(n.a,l),k$t(n,i,d),n.a=i,n.b=0):$S(n.a,l),n.c=d)}function Y_r(n,i){var l;return l=n.b,l.pf((Ei(),jh))?l.ag()==(Bt(),cr)?-l.Mf().a-We(at(l.of(jh))):i+We(at(l.of(jh))):l.ag()==(Bt(),cr)?-l.Mf().a:i}function rG(n){var i;return n.b.c.length!=0&&v(Yt(n.b,0),72).a?v(Yt(n.b,0),72).a:(i=zde(n),i??""+(n.c?$l(n.c.a,n,0):-1))}function tJ(n){var i;return n.f.c.length!=0&&v(Yt(n.f,0),72).a?v(Yt(n.f,0),72).a:(i=zde(n),i??""+(n.i?$l(n.i.j,n,0):-1))}function j_r(n,i){var l,d;if(i<0||i>=n.gc())return null;for(l=i;l0?n.c:0),g=u.Math.max(g,i.d),++d;n.e=y,n.b=g}function K_r(n){var i,l;if(!n.b)for(n.b=RQ(v(n.f,123).kh().i),l=new mr(v(n.f,123).kh());l.e!=l.i.gc();)i=v(wr(l),135),Lt(n.b,new $ue(i));return n.b}function X_r(n,i){var l,d,g;if(i.dc())return t8(),t8(),SH;for(l=new KNt(n,i.gc()),g=new mr(n);g.e!=g.i.gc();)d=wr(g),i.Hc(d)&&Yr(l,d);return l}function uDe(n,i,l,d){return i==0?d?(!n.o&&(n.o=new uh((Lc(),om),Ay,n,0)),n.o):(!n.o&&(n.o=new uh((Lc(),om),Ay,n,0)),yz(n.o)):YZ(n,i,l,d)}function u1e(n){var i,l;if(n.rb)for(i=0,l=n.rb.i;i>22),g+=d>>22,g<0)?!1:(n.l=l&Hh,n.m=d&Hh,n.h=g&rb,!0)}function h1e(n,i,l,d,g,y,x){var T,R;return!(i.Te()&&(R=n.a.Ne(l,d),R<0||!g&&R==0)||i.Ue()&&(T=n.a.Ne(l,y),T>0||!x&&T==0))}function ewr(n,i){G8();var l;if(l=n.j.g-i.j.g,l!=0)return 0;switch(n.j.g){case 2:return N0e(i,fqe)-N0e(n,fqe);case 4:return N0e(n,dqe)-N0e(i,dqe)}return 0}function twr(n){switch(n.g){case 0:return wye;case 1:return Eye;case 2:return xye;case 3:return Sye;case 4:return Ute;case 5:return Tye;default:return null}}function Rl(n,i,l){var d,g;return d=(g=new Lue,U_(g,i),mu(g,l),Yr((!n.c&&(n.c=new vt(Rx,n,12,10)),n.c),g),g),ny(d,0),c4(d,1),oy(d,!0),sy(d,!0),d}function Vk(n,i){var l,d;if(i>=n.i)throw _e(new Dhe(i,n.i));return++n.j,l=n.g[i],d=n.i-i-1,d>0&&Gc(n.g,i+1,n.g,i,d),Ga(n.g,--n.i,null),n.Qi(i,l),n.Ni(),l}function fqt(n,i){var l,d;return n.Db>>16==17?n.Cb.Th(n,21,Jf,i):(d=sl(v(qn((l=v(rr(n,16),29),l||n.ii()),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function nwr(n){var i,l,d,g;for(Fn(),us(n.c,n.a),g=new me(n.c);g.al.a.c.length))throw _e(new ar("index must be >= 0 and <= layer node count"));n.c&&Yu(n.c.a,n),n.c=l,l&&EE(l.a,i,n)}function yqt(n,i){var l,d,g;for(d=new yr(_r(Qm(n).a.Kc(),new S));zr(d);)return l=v(Rr(d),18),g=v(i.Kb(l),10),new mK(ni(g.n.b+g.o.b/2));return yL(),yL(),lbe}function vqt(n,i){this.c=new Br,this.a=n,this.b=i,this.d=v(oe(n,(At(),B5)),312),Ze(oe(n,(qt(),QHe)))===Ze((Ez(),zte))?this.e=new p6t:this.e=new f6t}function jD(n,i){var l,d;return d=null,n.pf((Ei(),I6))&&(l=v(n.of(I6),96),l.pf(i)&&(d=l.of(i))),d==null&&n.Tf()&&(d=n.Tf().of(i)),d==null&&(d=zt(i)),d}function d1e(n,i){var l,d;l=n.fd(i);try{return d=l.Pb(),l.Qb(),d}catch(g){throw g=Da(g),$e(g,112)?_e(new Sl("Can't remove element "+i)):_e(g)}}function uwr(n,i){var l,d,g;if(d=new UK,g=new q9e(d.q.getFullYear()-Jv,d.q.getMonth(),d.q.getDate()),l=wkr(n,i,g),l==0||l0?i:0),++l;return new Ct(d,g)}function gDe(n,i){var l,d;return n.Db>>16==6?n.Cb.Th(n,6,ss,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Lc(),ire)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function mDe(n,i){var l,d;return n.Db>>16==7?n.Cb.Th(n,1,vH,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Lc(),yKe)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function bDe(n,i){var l,d;return n.Db>>16==9?n.Cb.Th(n,9,Pi,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Lc(),_Ke)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function Eqt(n,i){var l,d;return n.Db>>16==5?n.Cb.Th(n,9,fre,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Pn(),Ry)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function xqt(n,i){var l,d;return n.Db>>16==7?n.Cb.Th(n,6,y1,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Pn(),Ny)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function yDe(n,i){var l,d;return n.Db>>16==3?n.Cb.Th(n,0,wH,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Pn(),ky)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function Sqt(){this.a=new RSt,this.g=new QZ,this.j=new QZ,this.b=new Br,this.d=new QZ,this.i=new QZ,this.k=new Br,this.c=new Br,this.e=new Br,this.f=new Br}function fwr(n,i,l){var d,g,y;for(l<0&&(l=0),y=n.i,g=l;gQpe)return tI(n,d);if(d==n)return!0}}return!1}function gwr(n){switch(IX(),n.q.g){case 5:sVt(n,(Bt(),or)),sVt(n,Mr);break;case 4:oYt(n,(Bt(),or)),oYt(n,Mr);break;default:uKt(n,(Bt(),or)),uKt(n,Mr)}}function mwr(n){switch(IX(),n.q.g){case 5:TVt(n,(Bt(),gr)),TVt(n,cr);break;case 4:IGt(n,(Bt(),gr)),IGt(n,cr);break;default:hKt(n,(Bt(),gr)),hKt(n,cr)}}function bwr(n){var i,l;i=v(oe(n,(A0(),mnn)),17),i?(l=i.a,l==0?_t(n,(Uv(),dte),new M0e):_t(n,(Uv(),dte),new LQ(l))):_t(n,(Uv(),dte),new LQ(1))}function ywr(n,i){var l;switch(l=n.i,i.g){case 1:return-(n.n.b+n.o.b);case 2:return n.n.a-l.o.a;case 3:return n.n.b-l.o.b;case 4:return-(n.n.a+n.o.a)}return 0}function vwr(n,i){switch(n.g){case 0:return i==(pf(),u2)?Ote:Lte;case 1:return i==(pf(),u2)?Ote:Aq;case 2:return i==(pf(),u2)?Aq:Lte;default:return Aq}}function aG(n,i){var l,d,g;for(Yu(n.a,i),n.e-=i.r+(n.a.c.length==0?0:n.c),g=C$e,d=new me(n.a);d.a>16==3?n.Cb.Th(n,12,Pi,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Lc(),bKe)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function _De(n,i){var l,d;return n.Db>>16==11?n.Cb.Th(n,10,Pi,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Lc(),vKe)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function Tqt(n,i){var l,d;return n.Db>>16==10?n.Cb.Th(n,11,Jf,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Pn(),Iy)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function Cqt(n,i){var l,d;return n.Db>>16==10?n.Cb.Th(n,12,e0,i):(d=sl(v(qn((l=v(rr(n,16),29),l||(Pn(),f3)),n.Db>>16),19)),n.Cb.Th(n,d.n,d.f,i))}function Gf(n){var i;return!(n.Bb&1)&&n.r&&n.r.Vh()&&(i=v(n.r,54),n.r=v(Hv(n,i),142),n.r!=i&&n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,9,8,i,n.r))),n.r}function f1e(n,i,l){var d;return d=Te(xe(ao,1),_l,28,15,[YDe(n,(u1(),bc),i,l),YDe(n,vu,i,l),YDe(n,yc,i,l)]),n.f&&(d[0]=u.Math.max(d[0],d[2]),d[2]=d[0]),d}function _wr(n,i){var l,d,g;if(g=H2r(n,i),g.c.length!=0)for(us(g,new Vvt),l=g.c.length,d=0;d>19,O=i.h>>19,R!=O?O-R:(g=n.h,T=i.h,g!=T?g-T:(d=n.m,x=i.m,d!=x?d-x:(l=n.l,y=i.l,l-y)))}function nJ(){nJ=z,Pze=(SJ(),Nbe),Mze=new En(_Be,Pze),Dze=(KQ(),Ibe),Lze=new En(wBe,Dze),Oze=(GZ(),Rbe),Nze=new En(EBe,Oze),Ize=new En(xBe,(Qn(),!0))}function WD(n,i,l){var d,g;d=i*l,$e(n.g,154)?(g=Nk(n),g.f.d?g.f.a||(n.d.a+=d+ep):(n.d.d-=d+ep,n.d.a+=d+ep)):$e(n.g,10)&&(n.d.d-=d,n.d.a+=2*d)}function Aqt(n,i,l){var d,g,y,x,T;for(g=n[l.g],T=new me(i.d);T.a0?n.b:0),++l;i.b=d,i.e=g}function kqt(n){var i,l,d;if(d=n.b,vRt(n.i,d.length)){for(l=d.length*2,n.b=st(dbe,PG,303,l,0,1),n.c=st(dbe,PG,303,l,0,1),n.f=l-1,n.i=0,i=n.a;i;i=i.c)pG(n,i,i);++n.g}}function Awr(n,i,l,d){var g,y,x,T;for(g=0;gx&&(T=x/d),g>y&&(R=y/g),Vp(n,u.Math.min(T,R)),n}function Rwr(){IJ();var n,i;try{if(i=v(NDe((Rv(),t0),$I),2113),i)return i}catch(l){if(l=Da(l),$e(l,103))n=l,_Ne((ii(),n));else throw _e(l)}return new TSt}function Iwr(){IJ();var n,i;try{if(i=v(NDe((Rv(),t0),Yf),2040),i)return i}catch(l){if(l=Da(l),$e(l,103))n=l,_Ne((ii(),n));else throw _e(l)}return new QSt}function Nwr(){FBt();var n,i;try{if(i=v(NDe((Rv(),t0),nw),2122),i)return i}catch(l){if(l=Da(l),$e(l,103))n=l,_Ne((ii(),n));else throw _e(l)}return new H4t}function Owr(n,i,l){var d,g;return g=n.e,n.e=i,n.Db&4&&!(n.Db&1)&&(d=new js(n,1,4,g,i),l?l.nj(d):l=d),g!=i&&(i?l=bI(n,gJ(n,i),l):l=bI(n,n.a,l)),l}function Rqt(){UK.call(this),this.e=-1,this.a=!1,this.p=Po,this.k=-1,this.c=-1,this.b=-1,this.g=!1,this.f=-1,this.j=-1,this.n=-1,this.i=-1,this.d=-1,this.o=Po}function Lwr(n,i){var l,d,g;if(d=n.b.d.d,n.a||(d+=n.b.d.a),g=i.b.d.d,i.a||(g+=i.b.d.a),l=ha(d,g),l==0){if(!n.a&&i.a)return-1;if(!i.a&&n.a)return 1}return l}function Dwr(n,i){var l,d,g;if(d=n.b.b.d,n.a||(d+=n.b.b.a),g=i.b.b.d,i.a||(g+=i.b.b.a),l=ha(d,g),l==0){if(!n.a&&i.a)return-1;if(!i.a&&n.a)return 1}return l}function Mwr(n,i){var l,d,g;if(d=n.b.g.d,n.a||(d+=n.b.g.a),g=i.b.g.d,i.a||(g+=i.b.g.a),l=ha(d,g),l==0){if(!n.a&&i.a)return-1;if(!i.a&&n.a)return 1}return l}function EDe(){EDe=z,Dnn=ch(yi(yi(yi(new ms,(Mo(),ru),(qo(),ZGe)),ru,JGe),Gl,eqe),Gl,zGe),Pnn=yi(yi(new ms,ru,DGe),ru,GGe),Mnn=ch(new ms,Gl,HGe)}function Pwr(n){var i,l,d,g,y;for(i=v(oe(n,(At(),sP)),85),y=n.n,d=i.Cc().Kc();d.Ob();)l=v(d.Pb(),314),g=l.i,g.c+=y.a,g.d+=y.b,l.c?WYt(l):KYt(l);_t(n,sP,null)}function Bwr(n,i,l){var d,g;switch(g=n.b,d=g.d,i.g){case 1:return-d.d-l;case 2:return g.o.a+d.c+l;case 3:return g.o.b+d.a+l;case 4:return-d.b-l;default:return-1}}function Fwr(n,i,l){var d,g;for(l.Ug("Interactive node placement",1),n.a=v(oe(i,(At(),B5)),312),g=new me(i.b);g.a0&&(x=(y&qi)%n.d.length,g=TMe(n,x,y,i),g)?(T=g.nd(l),T):(d=n.ck(y,i,l),n.c.Fc(d),null)}function TDe(n,i){var l,d,g,y;switch(ay(n,i).Kl()){case 3:case 2:{for(l=u5(i),g=0,y=l.i;g=0;d--)if(An(n[d].d,i)||An(n[d].d,l)){n.length>=d+1&&n.splice(0,d+1);break}return n}function oG(n,i){var l;return jl(n)&&jl(i)&&(l=n/i,$G0&&(n.b+=2,n.a+=d):(n.b+=1,n.a+=u.Math.min(d,g))}function Pqt(n){var i;i=v(oe(v(gf(n.b,0),40),(pc(),vYe)),107),_t(n,(fa(),gN),new Ct(0,0)),Ajt(new mz,n,i.b+i.c-We(at(oe(n,Cve))),i.d+i.a-We(at(oe(n,Ave))))}function Bqt(n,i){var l,d;if(d=!1,ro(i)&&(d=!0,Tk(n,new JS(ai(i)))),d||$e(i,242)&&(d=!0,Tk(n,(l=vIe(v(i,242)),new bK(l)))),!d)throw _e(new zue(EUe))}function tEr(n,i,l,d){var g,y,x;return g=new Vm(n.e,1,10,(x=i.c,$e(x,90)?v(x,29):(Pn(),n0)),(y=l.c,$e(y,90)?v(y,29):(Pn(),n0)),uy(n,i),!1),d?d.nj(g):d=g,d}function kDe(n){var i,l;switch(v(oe(So(n),(qt(),HHe)),429).g){case 0:return i=n.n,l=n.o,new Ct(i.a+l.a/2,i.b+l.b/2);case 1:return new Wo(n.n);default:return null}}function lG(){lG=z,Gte=new PL(og,0),Rqe=new PL("LEFTUP",1),Nqe=new PL("RIGHTUP",2),kqe=new PL("LEFTDOWN",3),Iqe=new PL("RIGHTDOWN",4),Cye=new PL("BALANCED",5)}function nEr(n,i,l){var d,g,y;if(d=ha(n.a[i.p],n.a[l.p]),d==0){if(g=v(oe(i,(At(),w6)),15),y=v(oe(l,w6),15),g.Hc(l))return-1;if(y.Hc(i))return 1}return d}function rEr(n){switch(n.g){case 1:return new sxt;case 2:return new oxt;case 3:return new axt;case 0:return null;default:throw _e(new ar(fme+(n.f!=null?n.f:""+n.g)))}}function RDe(n,i,l){switch(i){case 1:!n.n&&(n.n=new vt(wl,n,1,7)),Gr(n.n),!n.n&&(n.n=new vt(wl,n,1,7)),Ka(n.n,v(l,16));return;case 2:I8(n,ai(l));return}K9e(n,i,l)}function IDe(n,i,l){switch(i){case 3:BE(n,We(at(l)));return;case 4:FE(n,We(at(l)));return;case 5:Au(n,We(at(l)));return;case 6:ku(n,We(at(l)));return}RDe(n,i,l)}function rJ(n,i,l){var d,g,y;y=(d=new Lue,d),g=Q1(y,i,null),g&&g.oj(),mu(y,l),Yr((!n.c&&(n.c=new vt(Rx,n,12,10)),n.c),y),ny(y,0),c4(y,1),oy(y,!0),sy(y,!0)}function NDe(n,i){var l,d,g;return l=NL(n.i,i),$e(l,241)?(g=v(l,241),g.zi()==null,g.wi()):$e(l,507)?(d=v(l,2037),g=d.b,g):null}function iEr(n,i,l,d){var g,y;return ni(i),ni(l),y=v(eD(n.d,i),17),uFt(!!y,"Row %s not in %s",i,n.e),g=v(eD(n.b,l),17),uFt(!!g,"Column %s not in %s",l,n.c),wUt(n,y.a,g.a,d)}function Fqt(n,i,l,d,g,y,x){var T,R,O,D,q;if(D=g[y],O=y==x-1,T=O?d:0,q=rqt(T,D),d!=10&&Te(xe(n,x-y),i[y],l[y],T,q),!O)for(++y,R=0;R1||T==-1?(y=v(R,15),g.Wb(zvr(n,y))):g.Wb(Z1e(n,v(R,58)))))}function hEr(n,i,l,d){W7t();var g=obe;function y(){for(var x=0;x0)return!1;return!0}function pEr(n){var i,l,d,g,y;for(d=new P_(new b_(n.b).a);d.b;)l=zE(d),i=v(l.ld(),10),y=v(v(l.md(),42).a,10),g=v(v(l.md(),42).b,8),Hi(i1(i.n),Hi(Eo(y.n),g))}function gEr(n){switch(v(oe(n.b,(qt(),BHe)),387).g){case 1:ts(Bl(ic(new xn(null,new Nn(n.d,16)),new B_t),new F_t),new $_t);break;case 2:uCr(n);break;case 0:GSr(n)}}function mEr(n,i,l){var d,g,y;for(d=l,!d&&(d=new tk),d.Ug("Layout",n.a.c.length),y=new me(n.a);y.acme)return l;g>-1e-6&&++l}return l}function LDe(n,i){var l;i!=n.b?(l=null,n.b&&(l=wQ(n.b,n,-4,l)),i&&(l=Hk(i,n,-4,l)),l=pzt(n,i,l),l&&l.oj()):n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,3,i,i))}function zqt(n,i){var l;i!=n.f?(l=null,n.f&&(l=wQ(n.f,n,-1,l)),i&&(l=Hk(i,n,-1,l)),l=fzt(n,i,l),l&&l.oj()):n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,0,i,i))}function _Er(n,i,l,d){var g,y,x,T;return id(n.e)&&(g=i.Lk(),T=i.md(),y=l.md(),x=Bv(n,1,g,T,y,g.Jk()?pI(n,g,y,$e(g,102)&&(v(g,19).Bb&el)!=0):-1,!0),d?d.nj(x):d=x),d}function Gqt(n){var i,l,d;if(n==null)return null;if(l=v(n,15),l.dc())return"";for(d=new qb,i=l.Kc();i.Ob();)bl(d,(ca(),ai(i.Pb()))),d.a+=" ";return Phe(d,d.a.length-1)}function qqt(n){var i,l,d;if(n==null)return null;if(l=v(n,15),l.dc())return"";for(d=new qb,i=l.Kc();i.Ob();)bl(d,(ca(),ai(i.Pb()))),d.a+=" ";return Phe(d,d.a.length-1)}function wEr(n,i,l){var d,g;return d=n.c[i.c.p][i.p],g=n.c[l.c.p][l.p],d.a!=null&&g.a!=null?Sde(d.a,g.a):d.a!=null?-1:g.a!=null?1:0}function EEr(n,i,l){return l.Ug("Tree layout",1),nz(n.b),a1(n.b,(Yk(),xne),xne),a1(n.b,xP,xP),a1(n.b,SP,SP),a1(n.b,TP,TP),n.a=kG(n.b,i),mEr(n,i,l.eh(1)),l.Vg(),i}function xEr(n,i){var l,d,g,y,x,T;if(i)for(y=i.a.length,l=new S_(y),T=(l.b-l.a)*l.c<0?(Iv(),T2):new Lv(l);T.Ob();)x=v(T.Pb(),17),g=m8(i,x.a),d=new ukt(n),Ndr(d.a,g)}function SEr(n,i){var l,d,g,y,x,T;if(i)for(y=i.a.length,l=new S_(y),T=(l.b-l.a)*l.c<0?(Iv(),T2):new Lv(l);T.Ob();)x=v(T.Pb(),17),g=m8(i,x.a),d=new tkt(n),Idr(d.a,g)}function TEr(n){var i;if(n!=null&&n.length>0&&Do(n,n.length-1)==33)try{return i=QVt(af(n,0,n.length-1)),i.e==null}catch(l){if(l=Da(l),!$e(l,33))throw _e(l)}return!1}function CEr(n,i,l){var d,g,y;switch(d=So(i),g=IZ(d),y=new zc,rc(y,i),l.g){case 1:Bs(y,Xz(zk(g)));break;case 2:Bs(y,zk(g))}return _t(y,(qt(),X4),at(oe(n,X4))),y}function DDe(n){var i,l;return i=v(Rr(new yr(_r(Hs(n.a).a.Kc(),new S))),18),l=v(Rr(new yr(_r(os(n.a).a.Kc(),new S))),18),Vt(Ht(oe(i,(At(),ap))))||Vt(Ht(oe(l,ap)))}function b4(){b4=z,kq=new EU("ONE_SIDE",0),Pte=new EU("TWO_SIDES_CORNER",1),Bte=new EU("TWO_SIDES_OPPOSING",2),Mte=new EU("THREE_SIDES",3),Dte=new EU("FOUR_SIDES",4)}function Hqt(n,i){var l,d,g,y;for(y=new Ot,g=0,d=i.Kc();d.Ob();){for(l=Nt(v(d.Pb(),17).a+g);l.a=n.f)break;jn(y.c,l)}return y}function AEr(n,i){var l,d,g,y,x;for(y=new me(i.a);y.a0&&pqt(this,this.c-1,(Bt(),gr)),this.c0&&n[0].length>0&&(this.c=Vt(Ht(oe(So(n[0][0]),(At(),Yqe))))),this.a=st(Fsn,kt,2117,n.length,0,2),this.b=st($sn,kt,2118,n.length,0,2),this.d=new lzt}function OEr(n){return n.c.length==0?!1:($n(0,n.c.length),v(n.c[0],18)).c.i.k==(lr(),Ws)?!0:VT(Bl(new xn(null,new Nn(n,16)),new ywt),new vwt)}function jqt(n,i){var l,d,g,y,x,T,R;for(T=E4(i),y=i.f,R=i.g,x=u.Math.sqrt(y*y+R*R),g=0,d=new me(T);d.a=0?(l=oG(n,zJ),d=Zz(n,zJ)):(i=Dv(n,1),l=oG(i,5e8),d=Zz(i,5e8),d=zo(w0(d,1),Us(n,1))),s1(w0(d,32),Us(l,ul))}function Xqt(n,i,l){var d,g;switch(d=(Tr(i.b!=0),v(cf(i,i.a.a),8)),l.g){case 0:d.b=0;break;case 2:d.b=n.f;break;case 3:d.a=0;break;default:d.a=n.g}return g=Ur(i,0),tz(g,d),i}function Qqt(n,i,l,d){var g,y,x,T,R;switch(R=n.b,y=i.d,x=y.j,T=QLe(x,R.d[x.g],l),g=Hi(Eo(y.n),y.a),y.j.g){case 1:case 3:T.a+=g.a;break;case 2:case 4:T.b+=g.b}qa(d,T,d.c.b,d.c)}function HEr(n,i,l){var d,g,y,x;for(x=$l(n.e,i,0),y=new U7e,y.b=l,d=new go(n.e,x);d.b1;i>>=1)i&1&&(d=HT(d,l)),l.d==1?l=HT(l,l):l=new fGt(Ljt(l.a,l.d,st(Wr,vi,28,l.d<<1,15,1)));return d=HT(d,l),d}function qDe(){qDe=z;var n,i,l,d;for(Eze=st(ao,_l,28,25,15,1),xze=st(ao,_l,28,33,15,1),d=152587890625e-16,i=32;i>=0;i--)xze[i]=d,d*=.5;for(l=1,n=24;n>=0;n--)Eze[n]=l,l*=.5}function XEr(n){var i,l;if(Vt(Ht(Et(n,(qt(),K4))))){for(l=new yr(_r(eb(n).a.Kc(),new S));zr(l);)if(i=v(Rr(l),74),KE(i)&&Vt(Ht(Et(i,lw))))return!0}return!1}function Zqt(n,i){var l,d,g;Es(n.f,i)&&(i.b=n,d=i.c,$l(n.j,d,0)!=-1||Lt(n.j,d),g=i.d,$l(n.j,g,0)!=-1||Lt(n.j,g),l=i.a.b,l.c.length!=0&&(!n.i&&(n.i=new vGt(n)),tbr(n.i,l)))}function QEr(n){var i,l,d,g,y;return l=n.c.d,d=l.j,g=n.d.d,y=g.j,d==y?l.p=0&&An(n.substr(i,3),"GMT")||i>=0&&An(n.substr(i,3),"UTC"))&&(l[0]=i+3),EPe(n,l,d)}function JEr(n,i){var l,d,g,y,x;for(y=n.g.a,x=n.g.b,d=new me(n.d);d.al;y--)n[y]|=i[y-l-1]>>>x,n[y-1]=i[y-l-1]<0&&Gc(n.g,i,n.g,i+d,T),x=l.Kc(),n.i+=d,g=0;g>4&15,y=n[d]&15,x[g++]=wKe[l],x[g++]=wKe[y];return Qp(x,0,x.length)}function Wu(n){var i,l;return n>=el?(i=UG+(n-el>>10&1023)&vs,l=56320+(n-el&1023)&vs,String.fromCharCode(i)+(""+String.fromCharCode(l))):String.fromCharCode(n&vs)}function uxr(n,i){WS();var l,d,g,y;return g=v(v(Zi(n.r,i),21),87),g.gc()>=2?(d=v(g.Kc().Pb(),117),l=n.u.Hc((Ah(),jP)),y=n.u.Hc(L6),!d.a&&!l&&(g.gc()==2||y)):!1}function tHt(n,i,l,d,g){var y,x,T;for(y=UYt(n,i,l,d,g),T=!1;!y;)fJ(n,g,!0),T=!0,y=UYt(n,i,l,d,g);T&&fJ(n,g,!1),x=s0e(g),x.c.length!=0&&(n.d&&n.d.Gg(x),tHt(n,g,l,d,x))}function oJ(){oJ=z,M2e=new UL(og,0),VWe=new UL("DIRECTED",1),jWe=new UL("UNDIRECTED",2),qWe=new UL("ASSOCIATION",3),YWe=new UL("GENERALIZATION",4),HWe=new UL("DEPENDENCY",5)}function hxr(n,i){var l;if(!z1(n))throw _e(new Tl(bZt));switch(l=z1(n),i.g){case 1:return-(n.j+n.f);case 2:return n.i-l.g;case 3:return n.j-l.f;case 4:return-(n.i+n.g)}return 0}function dxr(n,i,l){var d,g,y;return d=i.Lk(),y=i.md(),g=d.Jk()?Bv(n,4,d,y,null,pI(n,d,y,$e(d,102)&&(v(d,19).Bb&el)!=0),!0):Bv(n,d.tk()?2:1,d,y,d.ik(),-1,!0),l?l.nj(g):l=g,l}function iI(n,i){var l,d;for(hr(i),d=n.b.c.length,Lt(n.b,i);d>0;){if(l=d,d=(d-1)/2|0,n.a.Ne(Yt(n.b,d),i)<=0)return of(n.b,l,i),!0;of(n.b,l,Yt(n.b,d))}return of(n.b,d,i),!0}function YDe(n,i,l,d){var g,y;if(g=0,l)g=TZ(n.a[l.g][i.g],d);else for(y=0;y=T)}function nHt(n){switch(n.g){case 0:return new wxt;case 1:return new Ext;default:throw _e(new ar("No implementation is available for the width approximator "+(n.f!=null?n.f:""+n.g)))}}function jDe(n,i,l,d){var g;if(g=!1,ro(d)&&(g=!0,a8(i,l,ai(d))),g||HS(d)&&(g=!0,jDe(n,i,l,d)),g||$e(d,242)&&(g=!0,k_(i,l,v(d,242))),!g)throw _e(new zue(EUe))}function pxr(n,i){var l,d,g;if(l=i.qi(n.a),l&&(g=h1((!l.b&&(l.b=new sd((Pn(),nl),_c,l)),l.b),Vf),g!=null)){for(d=1;d<(dh(),VKe).length;++d)if(An(VKe[d],g))return d}return 0}function gxr(n,i){var l,d,g;if(l=i.qi(n.a),l&&(g=h1((!l.b&&(l.b=new sd((Pn(),nl),_c,l)),l.b),Vf),g!=null)){for(d=1;d<(dh(),YKe).length;++d)if(An(YKe[d],g))return d}return 0}function rHt(n,i){var l,d,g,y;if(hr(i),y=n.a.gc(),y0?1:0;y.a[g]!=l;)y=y.a[g],g=n.a.Ne(l.d,y.d)>0?1:0;y.a[g]=d,d.b=l.b,d.a[0]=l.a[0],d.a[1]=l.a[1],l.a[0]=null,l.a[1]=null}function yxr(n){var i,l,d,g;for(i=new Ot,l=st(Wh,Qg,28,n.a.c.length,16,1),gNe(l,l.length),g=new me(n.a);g.a0&&Rjt(($n(0,l.c.length),v(l.c[0],30)),n),l.c.length>1&&Rjt(v(Yt(l,l.c.length-1),30),n),i.Vg()}function _xr(n){Ah();var i,l;return i=va(ub,Te(xe(Qne,1),wt,279,0,[v2])),!(Dz(xQ(i,n))>1||(l=va(jP,Te(xe(Qne,1),wt,279,0,[YP,L6])),Dz(xQ(l,n))>1))}function KDe(n,i){var l;l=Qc((Rv(),t0),n),$e(l,507)?Cl(t0,n,new K8t(this,i)):Cl(t0,n,this),S1e(this,i),i==(HR(),LKe)?(this.wb=v(this,2038),v(i,2040)):this.wb=(Mv(),Zn)}function wxr(n){var i,l,d;if(n==null)return null;for(i=null,l=0;l=py?"error":d>=900?"warn":d>=800?"info":"log"),mLt(l,n.a),n.b&&QMe(i,l,n.b,"Exception: ",!0))}function oe(n,i){var l,d;return d=(!n.q&&(n.q=new Br),br(n.q,i)),d??(l=i.Sg(),$e(l,4)&&(l==null?(!n.q&&(n.q=new Br),Lk(n.q,i)):(!n.q&&(n.q=new Br),Ni(n.q,i,l))),l)}function Mo(){Mo=z,N0=new wU("P1_CYCLE_BREAKING",0),em=new wU("P2_LAYERING",1),qc=new wU("P3_NODE_ORDERING",2),ru=new wU("P4_NODE_PLACEMENT",3),Gl=new wU("P5_EDGE_ROUTING",4)}function Exr(n,i){ED();var l;if(n.c==i.c){if(n.b==i.b||Rmr(n.b,i.b)){if(l=Jar(n.b)?1:-1,n.a&&!i.a)return l;if(!n.a&&i.a)return-l}return Nc(n.b.g,i.b.g)}else return ha(n.c,i.c)}function lHt(n,i){var l,d,g;if(QDe(n,i))return!0;for(d=new me(i);d.a=g||i<0)throw _e(new Sl(zme+i+ew+g));if(l>=g||l<0)throw _e(new Sl(Gme+l+ew+g));return i!=l?d=(y=n.Cj(l),n.qj(i,y),y):d=n.xj(l),d}function hHt(n){var i,l,d;if(d=n,n)for(i=0,l=n.Eh();l;l=l.Eh()){if(++i>Qpe)return hHt(l);if(d=l,l==n)throw _e(new Tl("There is a cycle in the containment hierarchy of "+n))}return d}function Wv(n){var i,l,d;for(d=new B_(Xo,"[","]"),l=n.Kc();l.Ob();)i=l.Pb(),Hm(d,Ze(i)===Ze(n)?"(this Collection)":i==null?Ku:Kl(i));return d.a?d.e.length==0?d.a.a:d.a.a+(""+d.e):d.c}function QDe(n,i){var l,d;if(d=!1,i.gc()<2)return!1;for(l=0;l1&&(n.j.b+=n.e)):(n.j.a+=l.a,n.j.b=u.Math.max(n.j.b,l.b),n.d.c.length>1&&(n.j.a+=n.e))}function Kv(){Kv=z,Ern=Te(xe(tl,1),Dc,64,0,[(Bt(),or),gr,Mr]),wrn=Te(xe(tl,1),Dc,64,0,[gr,Mr,cr]),xrn=Te(xe(tl,1),Dc,64,0,[Mr,cr,or]),Srn=Te(xe(tl,1),Dc,64,0,[cr,or,gr])}function Sxr(n,i,l,d){var g,y,x,T,R,O,D;if(x=n.c.d,T=n.d.d,x.j!=T.j)for(D=n.b,g=x.j,R=null;g!=T.j;)R=i==0?RZ(g):bLe(g),y=QLe(g,D.d[g.g],l),O=QLe(R,D.d[R.g],l),pi(d,Hi(y,O)),g=R}function Txr(n,i,l,d){var g,y,x,T,R;return x=gqt(n.a,i,l),T=v(x.a,17).a,y=v(x.b,17).a,d&&(R=v(oe(i,(At(),kh)),10),g=v(oe(l,kh),10),R&&g&&(nPt(n.b,R,g),T+=n.b.i,y+=n.b.e)),T>y}function fHt(n){var i,l,d,g,y,x,T,R,O;for(this.a=PGt(n),this.b=new Ot,l=n,d=0,g=l.length;dJhe(n.d).c?(n.i+=n.g.c,$0e(n.d)):Jhe(n.d).c>Jhe(n.g).c?(n.e+=n.d.c,$0e(n.g)):(n.i+=S9t(n.g),n.e+=S9t(n.d),$0e(n.g),$0e(n.d))}function Rxr(n,i,l){var d,g,y,x;for(y=i.q,x=i.r,new R_((o1(),d2),i,y,1),new R_(d2,y,x,1),g=new me(l);g.aT&&(R=T/d),g>y&&(O=y/g),x=u.Math.min(R,O),n.a+=x*(i.a-n.a),n.b+=x*(i.b-n.b)}function Lxr(n,i,l,d,g){var y,x;for(x=!1,y=v(Yt(l.b,0),27);lkr(n,i,y,d,g)&&(x=!0,cEr(l,y),l.b.c.length!=0);)y=v(Yt(l.b,0),27);return l.b.c.length==0&&aG(l.j,l),x&&JZ(i.q),x}function Dxr(n,i){l5();var l,d,g,y;if(i.b<2)return!1;for(y=Ur(i,0),l=v(Fr(y),8),d=l;y.b!=y.d.c;){if(g=v(Fr(y),8),U1e(n,d,g))return!0;d=g}return!!U1e(n,d,l)}function JDe(n,i,l,d){var g,y;return l==0?(!n.o&&(n.o=new uh((Lc(),om),Ay,n,0)),DX(n.o,i,d)):(y=v(qn((g=v(rr(n,16),29),g||n.ii()),l),69),y.wk().Ak(n,Ru(n),l-kr(n.ii()),i,d))}function S1e(n,i){var l;i!=n.sb?(l=null,n.sb&&(l=v(n.sb,54).Th(n,1,XP,l)),i&&(l=v(i,54).Rh(n,1,XP,l)),l=hLe(n,i,l),l&&l.oj()):n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,4,i,i))}function Mxr(n,i){var l,d,g,y;if(i)g=Wm(i,"x"),l=new okt(n),S8(l.a,(hr(g),g)),y=Wm(i,"y"),d=new lkt(n),C8(d.a,(hr(y),y));else throw _e(new zp("All edge sections need an end point."))}function Pxr(n,i){var l,d,g,y;if(i)g=Wm(i,"x"),l=new ikt(n),T8(l.a,(hr(g),g)),y=Wm(i,"y"),d=new akt(n),A8(d.a,(hr(y),y));else throw _e(new zp("All edge sections need a start point."))}function Bxr(n,i){var l,d,g,y,x,T,R;for(d=qUt(n),y=0,T=d.length;y>22-i,g=n.h<>22-i):i<44?(l=0,d=n.l<>44-i):(l=0,d=0,g=n.l<n)throw _e(new ar("k must be smaller than n"));return i==0||i==n?1:n==0?0:CDe(n)/(CDe(i)*CDe(n-i))}function eMe(n,i){var l,d,g,y;for(l=new m8e(n);l.g==null&&!l.c?WNe(l):l.g==null||l.i!=0&&v(l.g[l.i-1],51).Ob();)if(y=v(pJ(l),58),$e(y,167))for(d=v(y,167),g=0;g>4],i[l*2+1]=yre[y&15];return Qp(i,0,i.length)}function Jxr(n){hQ();var i,l,d;switch(d=n.c.length,d){case 0:return _en;case 1:return i=v(eVt(new me(n)),44),Yur(i.ld(),i.md());default:return l=v(X1(n,st(rw,$J,44,n.c.length,0,1)),173),new J7e(l)}}function eSr(n){var i,l,d,g,y,x;for(i=new FT,l=new FT,Fv(i,n),Fv(l,n);l.b!=l.c;)for(g=v(xk(l),36),x=new me(g.a);x.a0&&EG(n,l,i),g):G4r(n,i,l)}function Xv(){Xv=z,Tln=(Ei(),R6),Cln=bw,wln=mw,Eln=tC,xln=g2,_ln=eC,$Ye=oH,Sln=a3,Gve=(pPe(),cln),qve=uln,zYe=pln,Hve=bln,GYe=gln,qYe=mln,UYe=hln,Nne=dln,One=fln,Kq=yln,HYe=vln,FYe=lln}function wHt(n,i){var l,d,g,y,x;if(n.e<=i||S0r(n,n.g,i))return n.g;for(y=n.r,d=n.g,x=n.r,g=(y-d)/2+d;d+11&&(n.e.b+=n.a)):(n.e.a+=l.a,n.e.b=u.Math.max(n.e.b,l.b),n.d.c.length>1&&(n.e.a+=n.a))}function aSr(n){var i,l,d,g;switch(g=n.i,i=g.b,d=g.j,l=g.g,g.a.g){case 0:l.a=(n.g.b.o.a-d.a)/2;break;case 1:l.a=i.d.n.a+i.d.a.a;break;case 2:l.a=i.d.n.a+i.d.a.a-d.a;break;case 3:l.b=i.d.n.b+i.d.a.b}}function sSr(n,i,l){var d,g,y;for(g=new yr(_r(Qm(l).a.Kc(),new S));zr(g);)d=v(Rr(g),18),!Jo(d)&&!(!Jo(d)&&d.c.i.c==d.d.i.c)&&(y=hYt(n,d,l,new g6t),y.c.length>1&&jn(i.c,y))}function xHt(n,i,l,d,g){if(dd&&(n.a=d),n.bg&&(n.b=g),n}function oSr(n){if($e(n,143))return FTr(v(n,143));if($e(n,233))return kvr(v(n,233));if($e(n,23))return $xr(v(n,23));throw _e(new ar(xUe+Wv(new wh(Te(xe(zs,1),Yn,1,5,[n])))))}function lSr(n,i,l,d,g){var y,x,T;for(y=!0,x=0;x>>g|l[x+d+1]<>>g,++x}return y}function iMe(n,i,l,d){var g,y,x;if(i.k==(lr(),Ws)){for(y=new yr(_r(Hs(i).a.Kc(),new S));zr(y);)if(g=v(Rr(y),18),x=g.c.i.k,x==Ws&&n.c.a[g.c.i.c.p]==d&&n.c.a[i.c.p]==l)return!0}return!1}function cSr(n,i){var l,d,g,y;return i&=63,l=n.h&rb,i<22?(y=l>>>i,g=n.m>>i|l<<22-i,d=n.l>>i|n.m<<22-i):i<44?(y=0,g=l>>>i-22,d=n.m>>i-22|n.h<<44-i):(y=0,g=0,d=l>>>i-44),Su(d&Hh,g&Hh,y&rb)}function SHt(n,i,l,d){var g;this.b=d,this.e=n==($E(),_P),g=i[l],this.d=E_(Wh,[kt,Qg],[183,28],16,[g.length,g.length],2),this.a=E_(Wr,[kt,vi],[53,28],15,[g.length,g.length],2),this.c=new $De(i,l)}function uSr(n){var i,l,d;for(n.k=new QNe((Bt(),Te(xe(tl,1),Dc,64,0,[lc,or,gr,Mr,cr])).length,n.j.c.length),d=new me(n.j);d.a=l)return sI(n,i,d.p),!0;return!1}function i5(n,i,l,d){var g,y,x,T,R,O;for(x=l.length,y=0,g=-1,O=bFt((sr(i,n.length+1),n.substr(i)),(ide(),_ze)),T=0;Ty&&Bhr(O,bFt(l[T],_ze))&&(g=T,y=R);return g>=0&&(d[0]=i+y),g}function CHt(n){var i;return n.Db&64?T1e(n):(i=new Ed(dUe),!n.a||bi(bi((i.a+=' "',i),n.a),'"'),bi(uE(bi(uE(bi(uE(bi(uE((i.a+=" (",i),n.i),","),n.j)," | "),n.g),","),n.f),")"),i.a)}function AHt(n,i,l){var d,g,y,x,T;for(T=Iu(n.e.Dh(),i),g=v(n.g,124),d=0,x=0;xl?pMe(n,l,"start index"):i<0||i>l?pMe(i,l,"end index"):sM("end index (%s) must not be less than start index (%s)",Te(xe(zs,1),Yn,1,5,[Nt(i),Nt(n)]))}function RHt(n,i){var l,d,g,y;for(d=0,g=n.length;d0&&IHt(n,y,l));i.p=0}function an(n){var i;this.c=new Ea,this.f=n.e,this.e=n.d,this.i=n.g,this.d=n.c,this.b=n.b,this.k=n.j,this.a=n.a,n.i?this.j=n.i:this.j=(i=v(n1(rm),9),new nf(i,v(v0(i,i.length),9),0)),this.g=n.f}function mSr(n){var i,l,d,g;for(i=C_(bi(new Ed("Predicates."),"and"),40),l=!0,g=new hL(n);g.b0?T[x-1]:st(tm,gy,10,0,0,1),g=T[x],O=x=0?n.ki(g):yMe(n,d);else throw _e(new ar(r2+d.xe()+MM));else throw _e(new ar(kZt+i+RZt));else hf(n,l,d)}function aMe(n){var i,l;if(l=null,i=!1,$e(n,211)&&(i=!0,l=v(n,211).a),i||$e(n,263)&&(i=!0,l=""+v(n,263).a),i||$e(n,493)&&(i=!0,l=""+v(n,493).a),!i)throw _e(new zue(EUe));return l}function sMe(n,i,l){var d,g,y,x,T,R;for(R=Iu(n.e.Dh(),i),d=0,T=n.i,g=v(n.g,124),x=0;x=n.d.b.c.length&&(i=new Xc(n.d),i.p=d.p-1,Lt(n.d.b,i),l=new Xc(n.d),l.p=d.p,Lt(n.d.b,l)),po(d,v(Yt(n.d.b,d.p),30))}function cMe(n,i,l){var d,g,y;if(!n.b[i.g]){for(n.b[i.g]=!0,d=l,!d&&(d=new mz),pi(d.b,i),y=n.a[i.g].Kc();y.Ob();)g=v(y.Pb(),65),g.b!=i&&cMe(n,g.b,d),g.c!=i&&cMe(n,g.c,d),pi(d.a,g);return d}return null}function _Sr(n){switch(n.g){case 0:case 1:case 2:return Bt(),or;case 3:case 4:case 5:return Bt(),Mr;case 6:case 7:case 8:return Bt(),cr;case 9:case 10:case 11:return Bt(),gr;default:return Bt(),lc}}function wSr(n,i){var l;return n.c.length==0?!1:(l=Wzt(($n(0,n.c.length),v(n.c[0],18)).c.i),Sd(),l==(g4(),q5)||l==G5?!0:VT(Bl(new xn(null,new Nn(n,16)),new _wt),new pAt(i)))}function R1e(n,i){if($e(i,207))return psr(n,v(i,27));if($e(i,193))return gsr(n,v(i,123));if($e(i,452))return fsr(n,v(i,166));throw _e(new ar(xUe+Wv(new wh(Te(xe(zs,1),Yn,1,5,[i])))))}function PHt(n,i,l){var d,g;if(this.f=n,d=v(br(n.b,i),260),g=d?d.a:0,AOe(l,g),l>=(g/2|0))for(this.e=d?d.c:null,this.d=g;l++0;)QOe(this);this.b=i,this.a=null}function ESr(n,i){var l,d;i.a?n5r(n,i):(l=v(Zue(n.b,i.b),60),l&&l==n.a[i.b.f]&&l.a&&l.a!=i.b.a&&l.c.Fc(i.b),d=v(Que(n.b,i.b),60),d&&n.a[d.f]==i.b&&d.a&&d.a!=i.b.a&&i.b.c.Fc(d),Vhe(n.b,i.b))}function BHt(n,i){var l,d;if(l=v(yl(n.b,i),127),v(v(Zi(n.r,i),21),87).dc()){l.n.b=0,l.n.c=0;return}l.n.b=n.C.b,l.n.c=n.C.c,n.A.Hc((ud(),vw))&&cjt(n,i),d=X2r(n,i),G1e(n,i)==(ZT(),b2)&&(d+=2*n.w),l.a.a=d}function FHt(n,i){var l,d;if(l=v(yl(n.b,i),127),v(v(Zi(n.r,i),21),87).dc()){l.n.d=0,l.n.a=0;return}l.n.d=n.C.d,l.n.a=n.C.a,n.A.Hc((ud(),vw))&&ujt(n,i),d=K2r(n,i),G1e(n,i)==(ZT(),b2)&&(d+=2*n.w),l.a.b=d}function xSr(n,i){var l,d,g,y;for(y=new Ot,d=new me(i);d.ad&&(sr(i-1,n.length),n.charCodeAt(i-1)<=32);)--i;return d>0||il.a&&(d.Hc((q_(),PP))?g=(i.a-l.a)/2:d.Hc(BP)&&(g=i.a-l.a)),i.b>l.b&&(d.Hc((q_(),$P))?y=(i.b-l.b)/2:d.Hc(FP)&&(y=i.b-l.b)),WDe(n,g,y)}function VHt(n,i,l,d,g,y,x,T,R,O,D,q,J){$e(n.Cb,90)&&_4($h(v(n.Cb,90)),4),mu(n,l),n.f=x,j8(n,T),K8(n,R),Y8(n,O),W8(n,D),oy(n,q),X8(n,J),sy(n,!0),ny(n,g),n.Zk(y),U_(n,i),d!=null&&(n.i=null,uZ(n,d))}function pMe(n,i,l){if(n<0)return sM(GKt,Te(xe(zs,1),Yn,1,5,[l,Nt(n)]));if(i<0)throw _e(new ar(qKt+i));return sM("%s (%s) must not be greater than size (%s)",Te(xe(zs,1),Yn,1,5,[l,Nt(n),Nt(i)]))}function gMe(n,i,l,d,g,y){var x,T,R,O;if(x=d-l,x<7){bvr(i,l,d,y);return}if(R=l+g,T=d+g,O=R+(T-R>>1),gMe(i,n,R,O,-g,y),gMe(i,n,O,T,-g,y),y.Ne(n[O-1],n[O])<=0){for(;l=0?n.bi(y,l):VMe(n,g,l);else throw _e(new ar(r2+g.xe()+MM));else throw _e(new ar(kZt+i+RZt));else df(n,d,g,l)}function YHt(n){var i,l;if(n.f){for(;n.n>0;){if(i=v(n.k.Xb(n.n-1),76),l=i.Lk(),$e(l,102)&&v(l,19).Bb&Sc&&(!n.e||l.pk()!=CN||l.Lj()!=0)&&i.md()!=null)return!0;--n.n}return!1}else return n.n>0}function jHt(n){var i,l,d,g;if(l=v(n,54)._h(),l)try{if(d=null,i=lI((Rv(),t0),Ojt(Rvr(l))),i&&(g=i.ai(),g&&(d=g.Fl(kir(l.e)))),d&&d!=n)return jHt(d)}catch(y){if(y=Da(y),!$e(y,63))throw _e(y)}return n}function $Sr(n,i,l){var d,g,y;l.Ug("Remove overlaps",1),l.dh(i,T$e),d=v(Et(i,(UT(),Y5)),27),n.f=d,n.a=K0e(v(Et(i,(Xv(),Kq)),300)),g=at(Et(i,(Ei(),bw))),o7e(n,(hr(g),g)),y=E4(d),eKt(n,i,y,l),l.dh(i,Eee)}function USr(n){var i,l,d;if(Vt(Ht(Et(n,(Ei(),aH))))){for(d=new Ot,l=new yr(_r(eb(n).a.Kc(),new S));zr(l);)i=v(Rr(l),74),KE(i)&&Vt(Ht(Et(i,x2e)))&&jn(d.c,i);return d}else return Fn(),Fn(),Zo}function WHt(n){if(!n)return W6t(),Ren;var i=n.valueOf?n.valueOf():n;if(i!==n){var l=bbe[typeof i];return l?l(i):iLe(typeof i)}else return n instanceof Array||n instanceof u.Array?new t7e(n):new iU(n)}function KHt(n,i,l){var d,g,y;switch(y=n.o,d=v(yl(n.p,l),252),g=d.i,g.b=JD(d),g.a=ZD(d),g.b=u.Math.max(g.b,y.a),g.b>y.a&&!i&&(g.b=y.a),g.c=-(g.b-y.a)/2,l.g){case 1:g.d=-g.a;break;case 3:g.d=y.b}tpe(d),npe(d)}function XHt(n,i,l){var d,g,y;switch(y=n.o,d=v(yl(n.p,l),252),g=d.i,g.b=JD(d),g.a=ZD(d),g.a=u.Math.max(g.a,y.b),g.a>y.b&&!i&&(g.a=y.b),g.d=-(g.a-y.b)/2,l.g){case 4:g.c=-g.b;break;case 2:g.c=y.a}tpe(d),npe(d)}function zSr(n,i){var l,d,g,y,x;if(!i.dc()){if(g=v(i.Xb(0),131),i.gc()==1){AYt(n,g,g,1,0,i);return}for(l=1;l0)try{g=Nd(i,Po,qi)}catch(y){throw y=Da(y),$e(y,130)?(d=y,_e(new VQ(d))):_e(y)}return l=(!n.a&&(n.a=new Tue(n)),n.a),g=0?v(ze(l,g),58):null}function VSr(n,i){if(n<0)return sM(GKt,Te(xe(zs,1),Yn,1,5,["index",Nt(n)]));if(i<0)throw _e(new ar(qKt+i));return sM("%s (%s) must be less than size (%s)",Te(xe(zs,1),Yn,1,5,["index",Nt(n),Nt(i)]))}function YSr(n){var i,l,d,g,y;if(n==null)return Ku;for(y=new B_(Xo,"[","]"),l=n,d=0,g=l.length;d=0?n.Lh(l,!0,!0):XE(n,g,!0),160)),v(d,220).Zl(i);else throw _e(new ar(r2+i.xe()+MM))}function vMe(n){var i,l;return n>-0x800000000000&&n<0x800000000000?n==0?0:(i=n<0,i&&(n=-n),l=Ps(u.Math.floor(u.Math.log(n)/.6931471805599453)),(!i||n!=u.Math.pow(2,l))&&++l,l):fUt(xc(n))}function o4r(n){var i,l,d,g,y,x,T;for(y=new Hp,l=new me(n);l.a2&&T.e.b+T.j.b<=2&&(g=T,d=x),y.a.zc(g,y),g.q=d);return y}function l4r(n,i,l){l.Ug("Eades radial",1),l.dh(i,Eee),n.d=v(Et(i,(UT(),Y5)),27),n.c=We(at(Et(i,(Xv(),One)))),n.e=K0e(v(Et(i,Kq),300)),n.a=Bvr(v(Et(i,HYe),434)),n.b=rEr(v(Et(i,UYe),354)),$wr(n),l.dh(i,Eee)}function c4r(n,i){if(i.Ug("Target Width Setter",1),Y1(n,(Z1(),n2e)))sa(n,(Vg(),r3),at(Et(n,n2e)));else throw _e(new Gb("A target width has to be set if the TargetWidthWidthApproximator should be used."));i.Vg()}function tVt(n,i){var l,d,g;return d=new Jm(n),Ul(d,i),_t(d,(At(),Kte),i),_t(d,(qt(),Qa),(co(),su)),_t(d,fg,(qg(),Hne)),g_(d,(lr(),hs)),l=new zc,rc(l,d),Bs(l,(Bt(),cr)),g=new zc,rc(g,d),Bs(g,gr),d}function nVt(n){switch(n.g){case 0:return new Fue(($E(),qq));case 1:return new vTt;case 2:return new _Tt;default:throw _e(new ar("No implementation is available for the crossing minimizer "+(n.f!=null?n.f:""+n.g)))}}function rVt(n,i){var l,d,g,y,x;for(n.c[i.p]=!0,Lt(n.a,i),x=new me(i.j);x.a=y)x.$b();else for(g=x.Kc(),d=0;d0?iRe():x<0&&oVt(n,i,-x),!0):!1}function ZD(n){var i,l,d,g,y,x,T;if(T=0,n.b==0){for(x=qGt(n,!0),i=0,d=x,g=0,y=d.length;g0&&(T+=l,++i);i>1&&(T+=n.c*(i-1))}else T=s7t(Zfe(e4(Ki(fNe(n.a),new zn),new vn)));return T>0?T+n.n.d+n.n.a:0}function JD(n){var i,l,d,g,y,x,T;if(T=0,n.b==0)T=s7t(Zfe(e4(Ki(fNe(n.a),new Wn),new Dn)));else{for(x=HGt(n,!0),i=0,d=x,g=0,y=d.length;g0&&(T+=l,++i);i>1&&(T+=n.c*(i-1))}return T>0?T+n.n.b+n.n.c:0}function m4r(n){var i,l;if(n.c.length!=2)throw _e(new Tl("Order only allowed for two paths."));i=($n(0,n.c.length),v(n.c[0],18)),l=($n(1,n.c.length),v(n.c[1],18)),i.d.i!=l.c.i&&(n.c.length=0,jn(n.c,l),jn(n.c,i))}function lVt(n,i,l){var d;for(DT(l,i.g,i.f),ef(l,i.i,i.j),d=0;d<(!i.a&&(i.a=new vt(Pi,i,10,11)),i.a).i;d++)lVt(n,v(ze((!i.a&&(i.a=new vt(Pi,i,10,11)),i.a),d),27),v(ze((!l.a&&(l.a=new vt(Pi,l,10,11)),l.a),d),27))}function b4r(n,i){var l,d,g,y;for(y=v(yl(n.b,i),127),l=y.a,g=v(v(Zi(n.r,i),21),87).Kc();g.Ob();)d=v(g.Pb(),117),d.c&&(l.a=u.Math.max(l.a,HIe(d.c)));if(l.a>0)switch(i.g){case 2:y.n.c=n.s;break;case 4:y.n.b=n.s}}function y4r(n,i){var l,d,g;return l=v(oe(i,(A0(),g6)),17).a-v(oe(n,g6),17).a,l==0?(d=$s(Eo(v(oe(n,(Uv(),xq)),8)),v(oe(n,JM),8)),g=$s(Eo(v(oe(i,xq),8)),v(oe(i,JM),8)),ha(d.a*d.b,g.a*g.b)):l}function v4r(n,i){var l,d,g;return l=v(oe(i,(pc(),Ane)),17).a-v(oe(n,Ane),17).a,l==0?(d=$s(Eo(v(oe(n,(fa(),Yq)),8)),v(oe(n,gN),8)),g=$s(Eo(v(oe(i,Yq),8)),v(oe(i,gN),8)),ha(d.a*d.b,g.a*g.b)):l}function cVt(n){var i,l;return l=new Cv,l.a+="e_",i=dbr(n),i!=null&&(l.a+=""+i),n.c&&n.d&&(bi((l.a+=" ",l),tJ(n.c)),bi(Kc((l.a+="[",l),n.c.i),"]"),bi((l.a+=Tge,l),tJ(n.d)),bi(Kc((l.a+="[",l),n.d.i),"]")),l.a}function uVt(n){switch(n.g){case 0:return new RTt;case 1:return new ITt;case 2:return new ATt;case 3:return new CTt;default:throw _e(new ar("No implementation is available for the layout phase "+(n.f!=null?n.f:""+n.g)))}}function EMe(n,i,l,d,g){var y;switch(y=0,g.g){case 1:y=u.Math.max(0,i.b+n.b-(l.b+d));break;case 3:y=u.Math.max(0,-n.b-d);break;case 2:y=u.Math.max(0,-n.a-d);break;case 4:y=u.Math.max(0,i.a+n.a-(l.a+d))}return y}function _4r(n,i,l){var d,g,y,x,T;if(l)for(g=l.a.length,d=new S_(g),T=(d.b-d.a)*d.c<0?(Iv(),T2):new Lv(d);T.Ob();)x=v(T.Pb(),17),y=m8(l,x.a),mUe in y.a||$me in y.a?DCr(n,y,i):JRr(n,y,i),Qsr(v(br(n.b,Z8(y)),74))}function xMe(n){var i,l;switch(n.b){case-1:return!0;case 0:return l=n.t,l>1||l==-1?(n.b=-1,!0):(i=Gf(n),i&&(al(),i.lk()==IJt)?(n.b=-1,!0):(n.b=1,!1));default:case 1:return!1}}function SMe(n,i){var l,d,g,y;if($i(n),n.c!=0||n.a!=123)throw _e(new oi(fi((ii(),ZZt))));if(y=i==112,d=n.d,l=ZR(n.i,125,d),l<0)throw _e(new oi(fi((ii(),JZt))));return g=af(n.i,d,l),n.d=l+1,DBt(g,y,(n.e&512)==512)}function hVt(n){var i,l,d,g,y,x,T;if(d=n.a.c.length,d>0)for(x=n.c.d,T=n.d.d,g=Vp($s(new Ct(T.a,T.b),x),1/(d+1)),y=new Ct(x.a,x.b),l=new me(n.a);l.a=0&&d=0?n.Lh(l,!0,!0):XE(n,g,!0),160)),v(d,220).Wl(i);throw _e(new ar(r2+i.xe()+Ime))}function S4r(){CRe();var n;return phn?v(lI((Rv(),t0),Yf),2038):(Ai(rw,new P4t),v7r(),n=v($e(Qc((Rv(),t0),Yf),560)?Qc(t0,Yf):new kLt,560),phn=!0,_8r(n),A8r(n),Ni((TRe(),OKe),n,new ZSt),Cl(t0,Yf,n),n)}function T4r(n,i){var l,d,g,y;n.j=-1,id(n.e)?(l=n.i,y=n.i!=0,gz(n,i),d=new Vm(n.e,3,n.c,null,i,l,y),g=i.zl(n.e,n.c,null),g=Vqt(n,i,g),g?(g.nj(d),g.oj()):Vi(n.e,d)):(gz(n,i),g=i.zl(n.e,n.c,null),g&&g.oj())}function hJ(n,i){var l,d,g;if(g=0,d=i[0],d>=n.length)return-1;for(l=(sr(d,n.length),n.charCodeAt(d));l>=48&&l<=57&&(g=g*10+(l-48),++d,!(d>=n.length));)l=(sr(d,n.length),n.charCodeAt(d));return d>i[0]?i[0]=d:g=-1,g}function C4r(n){var i,l,d,g,y;return g=v(n.a,17).a,y=v(n.b,17).a,l=g,d=y,i=u.Math.max(u.Math.abs(g),u.Math.abs(y)),g<=0&&g==y?(l=0,d=y-1):g==-i&&y!=i?(l=y,d=g,y>=0&&++l):(l=-y,d=g),new Ms(Nt(l),Nt(d))}function A4r(n,i,l,d){var g,y,x,T,R,O;for(g=0;g=0&&O>=0&&R=n.i)throw _e(new Sl(zme+i+ew+n.i));if(l>=n.i)throw _e(new Sl(Gme+l+ew+n.i));return d=n.g[l],i!=l&&(i>16),i=d>>16&16,l=16-i,n=n>>i,d=n-256,i=d>>16&8,l+=i,n<<=i,d=n-R4,i=d>>16&4,l+=i,n<<=i,d=n-ng,i=d>>16&2,l+=i,n<<=i,d=n>>14,i=d&~(d>>1),l+2-i)}function R4r(n){kk();var i,l,d,g;for(lte=new Ot,Ube=new Br,$be=new Ot,i=(!n.a&&(n.a=new vt(Pi,n,10,11)),n.a),vRr(i),g=new mr(i);g.e!=g.i.gc();)d=v(wr(g),27),$l(lte,d,0)==-1&&(l=new Ot,Lt($be,l),gGt(d,l));return $be}function I4r(n,i,l){var d,g,y,x;n.a=l.b.d,$e(i,326)?(g=o5(v(i,74),!1,!1),y=hG(g),d=new J5t(n),To(y,d),TG(y,g),i.of((Ei(),kx))!=null&&To(v(i.of(kx),75),d)):(x=v(i,422),x.rh(x.nh()+n.a.a),x.sh(x.oh()+n.a.b))}function N4r(n,i){var l,d,g;for(g=new Ot,d=Ur(i.a,0);d.b!=d.d.c;)l=v(Fr(d),65),l.c.g==n.g&&Ze(oe(l.b,(pc(),gg)))!==Ze(oe(l.c,gg))&&!VT(new xn(null,new Nn(g,16)),new CAt(l))&&jn(g.c,l);return us(g,new sEt),g}function fVt(n,i,l){var d,g,y,x;return $e(i,153)&&$e(l,153)?(y=v(i,153),x=v(l,153),n.a[y.a][x.a]+n.a[x.a][y.a]):$e(i,250)&&$e(l,250)&&(d=v(i,250),g=v(l,250),d.a==g.a)?v(oe(g.a,(A0(),g6)),17).a:0}function pVt(n,i){var l,d,g,y,x,T,R,O;for(O=We(at(oe(i,(qt(),pP)))),R=n[0].n.a+n[0].o.a+n[0].d.c+O,T=1;T=0?l:(T=hD($s(new Ct(x.c+x.b/2,x.d+x.a/2),new Ct(y.c+y.b/2,y.d+y.a/2))),-(Ujt(y,x)-1)*T)}function L4r(n,i,l){var d;ts(new xn(null,(!l.a&&(l.a=new vt(xa,l,6,6)),new Nn(l.a,16))),new R8t(n,i)),ts(new xn(null,(!l.n&&(l.n=new vt(wl,l,1,7)),new Nn(l.n,16))),new I8t(n,i)),d=v(Et(l,(Ei(),kx)),75),d&&A9e(d,n,i)}function XE(n,i,l){var d,g,y;if(y=h5((dh(),ko),n.Dh(),i),y)return al(),v(y,69).xk()||(y=Ik(Al(ko,y))),g=(d=n.Ih(y),v(d>=0?n.Lh(d,!0,!0):XE(n,y,!0),160)),v(g,220).Sl(i,l);throw _e(new ar(r2+i.xe()+Ime))}function TMe(n,i,l,d){var g,y,x,T,R;if(g=n.d[i],g){if(y=g.g,R=g.i,d!=null){for(T=0;T=l&&(d=i,O=(R.c+R.a)/2,x=O-l,R.c<=O-l&&(g=new lde(R.c,x),EE(n,d++,g)),T=O+l,T<=R.a&&(y=new lde(T,R.a),n4(d,n.c.length),OL(n.c,d,y)))}function bVt(n,i,l){var d,g,y,x,T,R;if(!i.dc()){for(g=new Ea,R=i.Kc();R.Ob();)for(T=v(R.Pb(),40),Ni(n.a,Nt(T.g),Nt(l)),x=(d=Ur(new Mm(T).a.d,0),new xT(d));hU(x.a);)y=v(Fr(x.a),65).c,qa(g,y,g.c.b,g.c);bVt(n,g,l+1)}}function CMe(n){var i;if(!n.c&&n.g==null)n.d=n.bj(n.f),Yr(n,n.d),i=n.d;else{if(n.g==null)return!0;if(n.i==0)return!1;i=v(n.g[n.i-1],51)}return i==n.b&&null.Vm>=null.Um()?(pJ(n),CMe(n)):i.Ob()}function yVt(n){if(this.a=n,n.c.i.k==(lr(),hs))this.c=n.c,this.d=v(oe(n.c.i,(At(),vc)),64);else if(n.d.i.k==hs)this.c=n.d,this.d=v(oe(n.d.i,(At(),vc)),64);else throw _e(new ar("Edge "+n+" is not an external edge."))}function vVt(n,i){var l,d,g;g=n.b,n.b=i,n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,3,g,n.b)),i?i!=n&&(mu(n,i.zb),zfe(n,i.d),l=(d=i.c,d??i.zb),qfe(n,l==null||An(l,i.zb)?null:l)):(mu(n,null),zfe(n,0),qfe(n,null))}function _Vt(n,i){var l;this.e=(CE(),ni(n),CE(),ULe(n)),this.c=(ni(i),ULe(i)),R8e(this.e.Rd().dc()==this.c.Rd().dc()),this.d=Mzt(this.e),this.b=Mzt(this.c),l=E_(zs,[kt,Yn],[5,1],5,[this.e.Rd().gc(),this.c.Rd().gc()],2),this.a=l,lmr(this)}function wVt(n){!gbe&&(gbe=NRr());var i=n.replace(/[\x00-\x1f\xad\u0600-\u0603\u06dd\u070f\u17b4\u17b5\u200b-\u200f\u2028-\u202e\u2060-\u2064\u206a-\u206f\ufeff\ufff9-\ufffb"\\]/g,function(l){return Mfr(l)});return'"'+i+'"'}function AMe(n,i,l,d,g,y){var x,T,R,O,D;if(g!=0)for(Ze(n)===Ze(l)&&(n=n.slice(i,i+g),i=0),R=l,T=i,O=i+g;T=x)throw _e(new XS(i,x));return g=l[i],x==1?d=null:(d=st(H2e,jme,424,x-1,0,1),Gc(l,0,d,0,i),y=x-i-1,y>0&&Gc(l,i+1,d,i,y)),J8(n,d),HHt(n,i,g),g}function xVt(n){var i,l;if(n.f){for(;n.n0?y=zk(l):y=Xz(zk(l))),sa(i,lN,y)}function U4r(n,i){var l;i.Ug("Partition preprocessing",1),l=v(Wl(Ki(ic(Ki(new xn(null,new Nn(n.a,16)),new l2t),new c2t),new u2t),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[(Ch(),Ql)]))),15),ts(l.Oc(),new h2t),i.Vg()}function z4r(n,i){var l,d,g,y,x;for(x=n.j,i.a!=i.b&&us(x,new z_t),g=x.c.length/2|0,d=0;d0&&EG(n,l,i),y):d.a!=null?(EG(n,i,l),-1):g.a!=null?(EG(n,l,i),1):0}function q4r(n,i){var l,d,g,y,x;for(g=i.b.b,n.a=st(_f,I4,15,g,0,1),n.b=st(Wh,Qg,28,g,16,1),x=Ur(i.b,0);x.b!=x.d.c;)y=v(Fr(x),40),n.a[y.g]=new Ea;for(d=Ur(i.a,0);d.b!=d.d.c;)l=v(Fr(d),65),n.a[l.b.g].Fc(l),n.a[l.c.g].Fc(l)}function AVt(n,i){var l,d,g,y;n.Pj()?(l=n.Ej(),y=n.Qj(),++n.j,n.qj(l,n.Zi(l,i)),d=n.Ij(3,null,i,l,y),n.Mj()?(g=n.Nj(i,null),g?(g.nj(d),g.oj()):n.Jj(d)):n.Jj(d)):(bLt(n,i),n.Mj()&&(g=n.Nj(i,null),g&&g.oj()))}function kMe(n,i,l){var d,g,y;n.Pj()?(y=n.Qj(),Yz(n,i,l),d=n.Ij(3,null,l,i,y),n.Mj()?(g=n.Nj(l,null),n.Tj()&&(g=n.Uj(l,g)),g?(g.nj(d),g.oj()):n.Jj(d)):n.Jj(d)):(Yz(n,i,l),n.Mj()&&(g=n.Nj(l,null),g&&g.oj()))}function dJ(n,i){var l,d,g,y,x;for(x=Iu(n.e.Dh(),i),g=new fK,l=v(n.g,124),y=n.i;--y>=0;)d=l[y],x.am(d.Lk())&&Yr(g,d);!EKt(n,g)&&id(n.e)&&$R(n,i.Jk()?Bv(n,6,i,(Fn(),Zo),null,-1,!1):Bv(n,i.tk()?2:1,i,null,null,-1,!1))}function H4r(n,i){var l,d,g,y,x;return n.a==(aI(),rP)?!0:(y=i.a.c,l=i.a.c+i.a.b,!(i.j&&(d=i.A,x=d.c.c.a-d.o.a/2,g=y-(d.n.a+d.o.a),g>x)||i.q&&(d=i.C,x=d.c.c.a-d.o.a/2,g=d.n.a-l,g>x)))}function kVt(n){nfe();var i,l,d,g,y,x,T;for(l=new Zb,g=new me(n.e.b);g.a1?n.e*=We(n.a):n.f/=We(n.a),dyr(n),y2r(n),gCr(n),_t(n.b,(qD(),ote),n.g)}function OVt(n,i,l){var d,g,y,x,T,R;for(d=0,R=l,i||(d=l*(n.c.length-1),R*=-1),y=new me(n);y.a=0?n.Ah(null):n.Ph().Th(n,-1-i,null,null)),n.Bh(v(g,54),l),d&&d.oj(),n.vh()&&n.wh()&&l>-1&&Vi(n,new js(n,9,l,y,g)),g):y}function NMe(n,i){var l,d,g,y,x;for(y=n.b.Ce(i),d=(l=n.a.get(y),l??st(zs,Yn,1,0,5,1)),x=0;x>5,g>=n.d)return n.e<0;if(l=n.a[g],i=1<<(i&31),n.e<0){if(d=Y$t(n),g>16)),15).dd(y),T0&&(!(Bm(n.a.c)&&i.n.d)&&!(LT(n.a.c)&&i.n.b)&&(i.g.d+=u.Math.max(0,d/2-.5)),!(Bm(n.a.c)&&i.n.a)&&!(LT(n.a.c)&&i.n.c)&&(i.g.a-=d-1))}function zVt(n){var i,l,d,g,y;if(g=new Ot,y=Pjt(n,g),i=v(oe(n,(At(),kh)),10),i)for(d=new me(i.j);d.a>i,y=n.m>>i|l<<22-i,g=n.l>>i|n.m<<22-i):i<44?(x=d?rb:0,y=l>>i-22,g=n.m>>i-22|l<<44-i):(x=d?rb:0,y=d?Hh:0,g=l>>i-44),Su(g&Hh,y&Hh,x&rb)}function P1e(n){var i,l,d,g,y,x;for(this.c=new Ot,this.d=n,d=ka,g=ka,i=Ss,l=Ss,x=Ur(n,0);x.b!=x.d.c;)y=v(Fr(x),8),d=u.Math.min(d,y.a),g=u.Math.min(g,y.b),i=u.Math.max(i,y.a),l=u.Math.max(l,y.b);this.a=new rf(d,g,i-d,l-g)}function qVt(n,i){var l,d,g,y,x,T;for(y=new me(n.b);y.a0&&$e(i,44)&&(n.a._j(),O=v(i,44),R=O.ld(),y=R==null?0:ma(R),x=nIe(n.a,y),l=n.a.d[x],l)){for(d=v(l.g,379),D=l.i,T=0;T=2)for(l=g.Kc(),i=at(l.Pb());l.Ob();)y=i,i=at(l.Pb()),d=u.Math.min(d,(hr(i),i-(hr(y),y)));return d}function d3r(n,i){var l,d,g;for(g=new Ot,d=Ur(i.a,0);d.b!=d.d.c;)l=v(Fr(d),65),l.b.g==n.g&&!An(l.b.c,_ee)&&Ze(oe(l.b,(pc(),gg)))!==Ze(oe(l.c,gg))&&!VT(new xn(null,new Nn(g,16)),new AAt(l))&&jn(g.c,l);return us(g,new uEt),g}function f3r(n,i){var l,d,g;if(Ze(i)===Ze(ni(n)))return!0;if(!$e(i,15)||(d=v(i,15),g=n.gc(),g!=d.gc()))return!1;if($e(d,59)){for(l=0;l0&&(g=l),x=new me(n.f.e);x.a0?(i-=1,l-=1):d>=0&&g<0?(i+=1,l+=1):d>0&&g>=0?(i-=1,l+=1):(i+=1,l-=1),new Ms(Nt(i),Nt(l))}function A3r(n,i){return n.ci.c?1:n.bi.b?1:n.a!=i.a?ma(n.a)-ma(i.a):n.d==(yD(),EP)&&i.d==wP?-1:n.d==wP&&i.d==EP?1:0}function XVt(n,i){var l,d,g,y,x;return y=i.a,y.c.i==i.b?x=y.d:x=y.c,y.c.i==i.b?d=y.c:d=y.d,g=Kvr(n.a,x,d),g>0&&g0):g<0&&-g0):!1}function k3r(n,i,l,d){var g,y,x,T,R,O,D,q;for(g=(i-n.d)/n.c.c.length,y=0,n.a+=l,n.d=i,q=new me(n.c);q.a>24;return x}function I3r(n){if(n.ze()){var i=n.c;i.Ae()?n.o="["+i.n:i.ze()?n.o="["+i.xe():n.o="[L"+i.xe()+";",n.b=i.we()+"[]",n.k=i.ye()+"[]";return}var l=n.j,d=n.d;d=d.split("/"),n.o=U0e(".",[l,U0e("$",d)]),n.b=U0e(".",[l,U0e(".",d)]),n.k=d[d.length-1]}function N3r(n,i){var l,d,g,y,x;for(x=null,y=new me(n.e.a);y.a=0;i-=2)for(l=0;l<=i;l+=2)(n.b[l]>n.b[l+2]||n.b[l]===n.b[l+2]&&n.b[l+1]>n.b[l+3])&&(d=n.b[l+2],n.b[l+2]=n.b[l],n.b[l]=d,d=n.b[l+3],n.b[l+3]=n.b[l+1],n.b[l+1]=d);n.c=!0}}function D3r(n,i){var l,d,g,y,x,T,R,O,D;for(O=-1,D=0,x=n,T=0,R=x.length;T0&&++D;++O}return D}function T0(n){var i,l;return l=new Ed(__(n.Rm)),l.a+="@",bi(l,(i=ma(n)>>>0,i.toString(16))),n.Vh()?(l.a+=" (eProxyURI: ",Kc(l,n._h()),n.Kh()&&(l.a+=" eClass: ",Kc(l,n.Kh())),l.a+=")"):n.Kh()&&(l.a+=" (eClass: ",Kc(l,n.Kh()),l.a+=")"),l.a}function nM(n){var i,l,d,g;if(n.e)throw _e(new Tl((Fm(kbe),age+kbe.k+sge)));for(n.d==(ys(),cp)&&DJ(n,Ol),l=new me(n.a.a);l.a>24}return l}function B3r(n,i,l){var d,g,y;if(g=v(yl(n.i,i),314),!g)if(g=new PFt(n.d,i,l),Sk(n.i,i,g),VLe(i))Usr(n.a,i.c,i.b,g);else switch(y=_Sr(i),d=v(yl(n.p,y),252),y.g){case 1:case 3:g.j=!0,Uue(d,i.b,g);break;case 4:case 2:g.k=!0,Uue(d,i.c,g)}return g}function F3r(n,i){var l,d,g,y,x,T,R,O,D;for(R=Pg(n.c-n.b&n.a.length-1),O=null,D=null,y=new fD(n);y.a!=y.b;)g=v(CZ(y),10),l=(T=v(oe(g,(At(),m1)),12),T?T.i:null),d=(x=v(oe(g,Kf),12),x?x.i:null),(O!=l||D!=d)&&(LVt(R,i),O=l,D=d),jn(R.c,g);LVt(R,i)}function $3r(n,i,l,d){var g,y,x,T,R,O;if(T=new fK,R=Iu(n.e.Dh(),i),g=v(n.g,124),al(),v(i,69).xk())for(x=0;x=0)return g;for(y=1,T=new me(i.j);T.a=0)return g;for(y=1,T=new me(i.j);T.a0&&i.Ne(($n(g-1,n.c.length),v(n.c[g-1],10)),y)>0;)of(n,g,($n(g-1,n.c.length),v(n.c[g-1],10))),--g;$n(g,n.c.length),n.c[g]=y}l.a=new Br,l.b=new Br}function U3r(n,i,l){var d,g,y,x,T,R,O,D;for(D=(d=v(i.e&&i.e(),9),new nf(d,v(v0(d,d.length),9),0)),R=T4(l,"[\\[\\]\\s,]+"),y=R,x=0,T=y.length;x=0?(i||(i=new EL,d>0&&bl(i,(mo(0,d,n.length),n.substr(0,d)))),i.a+="\\",c8(i,l&vs)):i&&c8(i,l&vs);return i?i.a:n}function G3r(n){var i,l,d;for(l=new me(n.a.a.b);l.a0&&(!(Bm(n.a.c)&&i.n.d)&&!(LT(n.a.c)&&i.n.b)&&(i.g.d-=u.Math.max(0,d/2-.5)),!(Bm(n.a.c)&&i.n.a)&&!(LT(n.a.c)&&i.n.c)&&(i.g.a+=u.Math.max(0,d-1)))}function aYt(n,i,l){var d,g;if((n.c-n.b&n.a.length-1)==2)i==(Bt(),or)||i==gr?(ZQ(v(ID(n),15),(Id(),im)),ZQ(v(ID(n),15),m2)):(ZQ(v(ID(n),15),(Id(),m2)),ZQ(v(ID(n),15),im));else for(g=new fD(n);g.a!=g.b;)d=v(CZ(g),15),ZQ(d,l)}function q3r(n,i){var l,d,g,y,x,T,R;for(g=i8(new T7e(n)),T=new go(g,g.c.length),y=i8(new T7e(i)),R=new go(y,y.c.length),x=null;T.b>0&&R.b>0&&(l=(Tr(T.b>0),v(T.a.Xb(T.c=--T.b),27)),d=(Tr(R.b>0),v(R.a.Xb(R.c=--R.b),27)),l==d);)x=l;return x}function sYt(n,i,l){var d,g,y,x;oMt(n,i)>oMt(n,l)?(d=sc(l,(Bt(),gr)),n.d=d.dc()?0:pde(v(d.Xb(0),12)),x=sc(i,cr),n.b=x.dc()?0:pde(v(x.Xb(0),12))):(g=sc(l,(Bt(),cr)),n.d=g.dc()?0:pde(v(g.Xb(0),12)),y=sc(i,gr),n.b=y.dc()?0:pde(v(y.Xb(0),12)))}function oYt(n,i){var l,d,g,y;for(l=n.o.a,y=v(v(Zi(n.r,i),21),87).Kc();y.Ob();)g=v(y.Pb(),117),g.e.a=l*We(at(g.b.of(ite))),g.e.b=(d=g.b,d.pf((Ei(),jh))?d.ag()==(Bt(),or)?-d.Mf().b-We(at(d.of(jh))):We(at(d.of(jh))):d.ag()==(Bt(),or)?-d.Mf().b:0)}function H3r(n,i){var l,d,g,y;for(i.Ug("Self-Loop pre-processing",1),d=new me(n.a);d.an.c));x++)g.a>=n.s&&(y<0&&(y=x),T=x);return R=(n.s+n.c)/2,y>=0&&(d=OCr(n,i,y,T),R=Rar(($n(d,i.c.length),v(i.c[d],339))),B4r(i,d,l)),R}function Jr(n,i,l){var d,g,y,x,T,R,O;for(x=(y=new V6e,y),v9e(x,(hr(i),i)),O=(!x.b&&(x.b=new sd((Pn(),nl),_c,x)),x.b),R=1;R0&&k6r(this,g)}function GMe(n,i,l,d,g,y){var x,T,R;if(!g[i.a]){for(g[i.a]=!0,x=d,!x&&(x=new PQ),Lt(x.e,i),R=y[i.a].Kc();R.Ob();)T=v(R.Pb(),290),!(T.d==l||T.c==l)&&(T.c!=i&&GMe(n,T.c,i,x,g,y),T.d!=i&&GMe(n,T.d,i,x,g,y),Lt(x.c,T),xs(x.d,T.b));return x}return null}function j3r(n){var i,l,d,g,y,x,T;for(i=0,g=new me(n.e);g.a=2}function W3r(n,i,l,d,g){var y,x,T,R,O,D;for(y=n.c.d.j,x=v(gf(l,0),8),D=1;D1||(i=va(D0,Te(xe(fl,1),wt,95,0,[cb,M0])),Dz(xQ(i,n))>1)||(d=va(B0,Te(xe(fl,1),wt,95,0,[am,Qf])),Dz(xQ(d,n))>1))}function qMe(n,i,l){var d,g,y;for(y=new me(n.t);y.a0&&(d.b.n-=d.c,d.b.n<=0&&d.b.u>0&&pi(i,d.b));for(g=new me(n.i);g.a0&&(d.a.u-=d.c,d.a.u<=0&&d.a.n>0&&pi(l,d.a))}function pJ(n){var i,l,d,g,y;if(n.g==null&&(n.d=n.bj(n.f),Yr(n,n.d),n.c))return y=n.f,y;if(i=v(n.g[n.i-1],51),g=i.Pb(),n.e=i,l=n.bj(g),l.Ob())n.d=l,Yr(n,l);else for(n.d=null;!i.Ob()&&(Ga(n.g,--n.i,null),n.i!=0);)d=v(n.g[n.i-1],51),i=d;return g}function X3r(n,i){var l,d,g,y,x,T;if(d=i,g=d.Lk(),tb(n.e,g)){if(g.Si()&&NQ(n,g,d.md()))return!1}else for(T=Iu(n.e.Dh(),g),l=v(n.g,124),y=0;y1||l>1)return 2;return i+l==1?2:0}function Gh(n,i){var l,d,g,y,x,T;return y=n.a*tge+n.b*1502,T=n.b*tge+11,l=u.Math.floor(T*GG),y+=l,T-=l*fBe,y%=fBe,n.a=y,n.b=T,i<=24?u.Math.floor(n.a*Eze[i]):(g=n.a*(1<=2147483648&&(d-=4294967296),d)}function dYt(n,i,l){var d,g,y,x,T,R,O;for(y=new Ot,O=new Ea,x=new Ea,ykr(n,O,x,i),X6r(n,O,x,i,l),R=new me(n);R.ad.b.g&&jn(y.c,d);return y}function nTr(n,i,l){var d,g,y,x,T,R;for(T=n.c,x=(l.q?l.q:(Fn(),Fn(),Jg)).vc().Kc();x.Ob();)y=v(x.Pb(),44),d=!VR(Ki(new xn(null,new Nn(T,16)),new PR(new E8t(i,y)))).Bd((w_(),p6)),d&&(R=y.md(),$e(R,4)&&(g=WLe(R),g!=null&&(R=g)),i.qf(v(y.ld(),149),R))}function rTr(n,i,l){var d,g;if(nz(n.b),a1(n.b,(Kz(),Bne),(AL(),eH)),a1(n.b,Fne,i.g),a1(n.b,$ne,i.a),n.a=kG(n.b,i),l.Ug("Compaction by shrinking a tree",n.a.c.length),i.i.c.length>1)for(g=new me(n.a);g.a=0?n.Lh(d,!0,!0):XE(n,y,!0),160)),v(g,220).Xl(i,l)}else throw _e(new ar(r2+i.xe()+MM))}function gJ(n,i){var l,d,g,y,x;if(i){for(y=$e(n.Cb,90)||$e(n.Cb,102),x=!y&&$e(n.Cb,331),d=new mr((!i.a&&(i.a=new rD(i,pl,i)),i.a));d.e!=d.i.gc();)if(l=v(wr(d),89),g=kJ(l),y?$e(g,90):x?$e(g,156):g)return g;return y?(Pn(),n0):(Pn(),dp)}else return null}function iTr(n,i){var l,d,g,y;for(i.Ug("Resize child graph to fit parent.",1),d=new me(n.b);d.a=2*i&&Lt(l,new lde(x[d-1]+i,x[d]-i));return l}function oTr(n,i,l){var d,g,y,x,T,R,O,D;if(l)for(y=l.a.length,d=new S_(y),T=(d.b-d.a)*d.c<0?(Iv(),T2):new Lv(d);T.Ob();)x=v(T.Pb(),17),g=m8(l,x.a),g&&(R=B1r(n,(O=(kv(),D=new H7e,D),i&&YMe(O,i),O),g),I8(R,zm(g,ug)),sJ(g,R),mMe(g,R),c0e(n,g,R))}function mJ(n){var i,l,d,g,y,x;if(!n.j){if(x=new USt,i=eB,y=i.a.zc(n,i),y==null){for(d=new mr(Fl(n));d.e!=d.i.gc();)l=v(wr(d),29),g=mJ(l),Ka(x,g),Yr(x,l);i.a.Bc(n)!=null}h4(x),n.j=new NT((v(ze(bt((Mv(),Zn).o),11),19),x.i),x.g),$h(n).b&=-33}return n.j}function lTr(n){var i,l,d,g;if(n==null)return null;if(d=eu(n,!0),g=dq.length,An(d.substr(d.length-g,g),dq)){if(l=d.length,l==4){if(i=(sr(0,d.length),d.charCodeAt(0)),i==43)return ZKe;if(i==45)return Mhn}else if(l==3)return ZKe}return new L7e(d)}function cTr(n){var i,l,d;return l=n.l,l&l-1||(d=n.m,d&d-1)||(i=n.h,i&i-1)||i==0&&d==0&&l==0?-1:i==0&&d==0&&l!=0?c9e(l):i==0&&d!=0&&l==0?c9e(d)+22:i!=0&&d==0&&l==0?c9e(i)+44:-1}function s5(n,i){var l,d,g,y,x;for(g=i.a&n.f,y=null,d=n.b[g];;d=d.b){if(d==i){y?y.b=i.b:n.b[g]=i.b;break}y=d}for(x=i.f&n.f,y=null,l=n.c[x];;l=l.d){if(l==i){y?y.d=i.d:n.c[x]=i.d;break}y=l}i.e?i.e.c=i.c:n.a=i.c,i.c?i.c.e=i.e:n.e=i.e,--n.i,++n.g}function uTr(n,i){var l;i.d?i.d.b=i.b:n.a=i.b,i.b?i.b.d=i.d:n.e=i.d,!i.e&&!i.c?(l=v($f(v(Lk(n.b,i.a),260)),260),l.a=0,++n.c):(l=v($f(v(br(n.b,i.a),260)),260),--l.a,i.e?i.e.c=i.c:l.b=v($f(i.c),511),i.c?i.c.e=i.e:l.c=v($f(i.e),511)),--n.d}function hTr(n){var i,l,d,g,y,x,T,R,O,D;for(l=n.o,i=n.p,x=qi,g=Po,T=qi,y=Po,O=0;O0),y.a.Xb(y.c=--y.b),KS(y,g),Tr(y.b3&&Gg(n,0,i-3))}function fTr(n){var i,l,d,g;return Ze(oe(n,(qt(),W4)))===Ze((Km(),Cy))?!n.e&&Ze(oe(n,Pq))!==Ze((P8(),Iq)):(d=v(oe(n,qye),299),g=Vt(Ht(oe(n,Hye)))||Ze(oe(n,hP))===Ze((SD(),Rq)),i=v(oe(n,NHe),17).a,l=n.a.c.length,!g&&d!=(P8(),Iq)&&(i==0||i>l))}function pTr(n){var i,l;for(l=0;l0);l++);if(l>0&&l0);i++);return i>0&&l>16!=6&&i){if(tI(n,i))throw _e(new ar(PM+RVt(n)));d=null,n.Cb&&(d=(l=n.Db>>16,l>=0?gDe(n,d):n.Cb.Th(n,-1-l,null,d))),i&&(d=Hk(i,n,6,d)),d=J8e(n,i,d),d&&d.oj()}else n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,6,i,i))}function bJ(n,i){var l,d;if(i!=n.Cb||n.Db>>16!=3&&i){if(tI(n,i))throw _e(new ar(PM+mWt(n)));d=null,n.Cb&&(d=(l=n.Db>>16,l>=0?vDe(n,d):n.Cb.Th(n,-1-l,null,d))),i&&(d=Hk(i,n,12,d)),d=eIe(n,i,d),d&&d.oj()}else n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,3,i,i))}function YMe(n,i){var l,d;if(i!=n.Cb||n.Db>>16!=9&&i){if(tI(n,i))throw _e(new ar(PM+pjt(n)));d=null,n.Cb&&(d=(l=n.Db>>16,l>=0?bDe(n,d):n.Cb.Th(n,-1-l,null,d))),i&&(d=Hk(i,n,9,d)),d=tIe(n,i,d),d&&d.oj()}else n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,9,i,i))}function cI(n){var i,l,d,g,y;if(d=Gf(n),y=n.j,y==null&&d)return n.Jk()?null:d.ik();if($e(d,156)){if(l=d.jk(),l&&(g=l.wi(),g!=n.i)){if(i=v(d,156),i.nk())try{n.g=g.ti(i,y)}catch(x){if(x=Da(x),$e(x,82))n.g=null;else throw _e(x)}n.i=g}return n.g}return null}function mYt(n){var i;return i=new Ot,Lt(i,new ck(new Ct(n.c,n.d),new Ct(n.c+n.b,n.d))),Lt(i,new ck(new Ct(n.c,n.d),new Ct(n.c,n.d+n.a))),Lt(i,new ck(new Ct(n.c+n.b,n.d+n.a),new Ct(n.c+n.b,n.d))),Lt(i,new ck(new Ct(n.c+n.b,n.d+n.a),new Ct(n.c,n.d+n.a))),i}function gTr(n){var i,l,d;if(n==null)return Ku;try{return Kl(n)}catch(g){if(g=Da(g),$e(g,103))return i=g,d=__(cd(n))+"@"+(l=(Pm(),jLe(n)>>>0),l.toString(16)),R2r(pbr(),(KR(),"Exception during lenientFormat for "+d),i),"<"+d+" threw "+__(i.Rm)+">";throw _e(g)}}function mTr(n,i,l){var d,g,y;for(y=i.a.ec().Kc();y.Ob();)g=v(y.Pb(),74),d=v(br(n.b,g),272),!d&&(Aa(Hg(g))==Aa(jv(g))?r5r(n,g,l):Hg(g)==Aa(jv(g))?br(n.c,g)==null&&br(n.b,jv(g))!=null&&WWt(n,g,l,!1):br(n.d,g)==null&&br(n.b,Hg(g))!=null&&WWt(n,g,l,!0))}function bTr(n,i){var l,d,g,y,x,T,R;for(g=n.Kc();g.Ob();)for(d=v(g.Pb(),10),T=new zc,rc(T,d),Bs(T,(Bt(),gr)),_t(T,(At(),Xte),(Qn(),!0)),x=i.Kc();x.Ob();)y=v(x.Pb(),10),R=new zc,rc(R,y),Bs(R,cr),_t(R,Xte,!0),l=new NE,_t(l,Xte,!0),Uo(l,T),lo(l,R)}function yTr(n,i,l,d){var g,y,x,T;g=eGt(n,i,l),y=eGt(n,l,i),x=v(br(n.c,i),118),T=v(br(n.c,l),118),g1)for(i=yE((l=new v_,++n.b,l),n.d),T=Ur(y,0);T.b!=T.d.c;)x=v(Fr(T),125),C0(m0(g0(b0(p0(new Bf,1),0),i),x))}function wTr(n,i,l){var d,g,y,x,T;for(l.Ug("Breaking Point Removing",1),n.a=v(oe(i,(qt(),lb)),223),y=new me(i.b);y.a>16!=11&&i){if(tI(n,i))throw _e(new ar(PM+dPe(n)));d=null,n.Cb&&(d=(l=n.Db>>16,l>=0?_De(n,d):n.Cb.Th(n,-1-l,null,d))),i&&(d=Hk(i,n,10,d)),d=uIe(n,i,d),d&&d.oj()}else n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,11,i,i))}function ETr(n){var i,l,d,g;for(d=new P_(new b_(n.b).a);d.b;)l=zE(d),g=v(l.ld(),12),i=v(l.md(),10),_t(i,(At(),Ji),g),_t(g,kh,i),_t(g,Lq,(Qn(),!0)),Bs(g,v(oe(i,vc),64)),oe(i,vc),_t(g.i,(qt(),Qa),(co(),SN)),v(oe(So(g.i),au),21).Fc((cl(),iN))}function xTr(n,i,l){var d,g,y,x,T,R;if(y=0,x=0,n.c)for(R=new me(n.d.i.j);R.ay.a?-1:g.aR){for(D=n.d,n.d=st(xKe,OUe,66,2*R+4,0,1),y=0;y=9223372036854776e3?(E8(),JUe):(g=!1,n<0&&(g=!0,n=-n),d=0,n>=j_&&(d=Ps(n/j_),n-=d*j_),l=0,n>=n6&&(l=Ps(n/n6),n-=l*n6),i=Ps(n),y=Su(i,l,d),g&&u0e(y),y)}function DTr(n){var i,l,d,g,y;if(y=new Ot,Cu(n.b,new H5t(y)),n.b.c.length=0,y.c.length!=0){for(i=($n(0,y.c.length),v(y.c[0],82)),l=1,d=y.c.length;l=-i&&d==i?new Ms(Nt(l-1),Nt(d)):new Ms(Nt(l),Nt(d-1))}function vYt(){return qo(),Te(xe(Y8r,1),wt,81,0,[UGe,BGe,k5,nye,aqe,_te,Ite,q4,rqe,WGe,tqe,G4,iqe,VGe,sqe,NGe,Ste,rye,yte,Ate,lqe,Cte,OGe,nqe,cqe,kte,oqe,vte,GGe,JGe,ZGe,Nte,MGe,bte,Ete,DGe,jI,XGe,YGe,eqe,eP,FGe,PGe,QGe,jGe,xte,Rte,LGe,Tte,KGe,wte,qGe,zGe,Cq,mte,HGe,$Ge])}function BTr(n,i,l){n.d=0,n.b=0,i.k==(lr(),iu)&&l.k==iu&&v(oe(i,(At(),Ji)),10)==v(oe(l,Ji),10)&&(Ife(i).j==(Bt(),or)?sYt(n,i,l):sYt(n,l,i)),i.k==iu&&l.k==Ws?Ife(i).j==(Bt(),or)?n.d=1:n.b=1:l.k==iu&&i.k==Ws&&(Ife(l).j==(Bt(),or)?n.b=1:n.d=1),w_r(n,i,l)}function FTr(n){var i,l,d,g,y,x,T,R,O,D,q;return q=HDe(n),i=n.a,R=i!=null,R&&a8(q,"category",n.a),g=fU(new m_(n.d)),x=!g,x&&(O=new p_,c1(q,"knownOptions",O),l=new Tkt(O),To(new m_(n.d),l)),y=fU(n.g),T=!y,T&&(D=new p_,c1(q,"supportedFeatures",D),d=new Ckt(D),To(n.g,d)),q}function $Tr(n){var i,l,d,g,y,x,T,R,O;for(d=!1,i=336,l=0,y=new lOt(n.length),T=n,R=0,O=T.length;R>16!=7&&i){if(tI(n,i))throw _e(new ar(PM+CHt(n)));d=null,n.Cb&&(d=(l=n.Db>>16,l>=0?mDe(n,d):n.Cb.Th(n,-1-l,null,d))),i&&(d=v(i,54).Rh(n,1,vH,d)),d=rNe(n,i,d),d&&d.oj()}else n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,7,i,i))}function _Yt(n,i){var l,d;if(i!=n.Cb||n.Db>>16!=3&&i){if(tI(n,i))throw _e(new ar(PM+Szt(n)));d=null,n.Cb&&(d=(l=n.Db>>16,l>=0?yDe(n,d):n.Cb.Th(n,-1-l,null,d))),i&&(d=v(i,54).Rh(n,0,wH,d)),d=iNe(n,i,d),d&&d.oj()}else n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,3,i,i))}function z1e(n,i){uI();var l,d,g,y,x,T,R,O,D;return i.d>n.d&&(T=n,n=i,i=T),i.d<63?A5r(n,i):(x=(n.d&-2)<<4,O=xOe(n,x),D=xOe(i,x),d=ope(n,Ok(O,x)),g=ope(i,Ok(D,x)),R=z1e(O,D),l=z1e(d,g),y=z1e(ope(O,d),ope(g,D)),y=ppe(ppe(y,R),l),y=Ok(y,x),R=Ok(R,x<<1),ppe(ppe(R,y),l))}function fy(){fy=z,ive=new AT(SQt,0),bVe=new AT("LONGEST_PATH",1),yVe=new AT("LONGEST_PATH_SOURCE",2),rve=new AT("COFFMAN_GRAHAM",3),mVe=new AT(Ige,4),vVe=new AT("STRETCH_WIDTH",5),pne=new AT("MIN_WIDTH",6),dN=new AT("BF_MODEL_ORDER",7),fN=new AT("DF_MODEL_ORDER",8)}function zTr(n,i,l){var d,g,y,x,T;for(x=MD(n,l),T=st(tm,gy,10,i.length,0,1),d=0,y=x.Kc();y.Ob();)g=v(y.Pb(),12),Vt(Ht(oe(g,(At(),Lq))))&&(T[d++]=v(oe(g,kh),10));if(d=0;y+=l?1:-1)x=x|i.c.lg(R,y,l,d&&!Vt(Ht(oe(i.j,(At(),c2))))&&!Vt(Ht(oe(i.j,(At(),P5))))),x=x|i.q.ug(R,y,l),x=x|ojt(n,R[y],l,d);return Es(n.c,i),x}function _J(n,i,l){var d,g,y,x,T,R,O,D,q,J;for(D=UMt(n.j),q=0,J=D.length;q1&&(n.a=!0),_hr(v(l.b,68),Hi(Eo(v(i.b,68).c),Vp($s(Eo(v(l.b,68).a),v(i.b,68).a),g))),jDt(n,i),wYt(n,l)}function EYt(n){var i,l,d,g,y,x,T;for(y=new me(n.a.a);y.a0&&y>0?x.p=i++:d>0?x.p=l++:y>0?x.p=g++:x.p=l++}Fn(),us(n.j,new r2t)}function YTr(n){var i,l;l=null,i=v(Yt(n.g,0),18);do{if(l=i.d.i,ya(l,(At(),Kf)))return v(oe(l,Kf),12).i;if(l.k!=(lr(),is)&&zr(new yr(_r(os(l).a.Kc(),new S))))i=v(Rr(new yr(_r(os(l).a.Kc(),new S))),18);else if(l.k!=is)return null}while(l&&l.k!=(lr(),is));return l}function jTr(n,i){var l,d,g,y,x,T,R,O,D;for(T=i.j,x=i.g,R=v(Yt(T,T.c.length-1),113),D=($n(0,T.c.length),v(T.c[0],113)),O=l1e(n,x,R,D),y=1;yO&&(R=l,D=g,O=d);i.a=D,i.c=R}function WTr(n,i,l){var d,g,y,x,T,R,O;for(O=new Vb(new cAt(n)),x=Te(xe(Jnn,1),WXt,12,0,[i,l]),T=0,R=x.length;TR-n.b&&TR-n.a&&T0?y.a?(T=y.b.Mf().a,l>T&&(g=(l-T)/2,y.d.b=g,y.d.c=g)):y.d.c=n.s+l:aD(n.u)&&(d=VDe(y.b),d.c<0&&(y.d.b=-d.c),d.c+d.b>y.b.Mf().a&&(y.d.c=d.c+d.b-y.b.Mf().a))}function h5r(n,i){var l,d,g,y,x;x=new Ot,l=i;do y=v(br(n.b,l),131),y.B=l.c,y.D=l.d,jn(x.c,y),l=v(br(n.k,l),18);while(l);return d=($n(0,x.c.length),v(x.c[0],131)),d.j=!0,d.A=v(d.d.a.ec().Kc().Pb(),18).c.i,g=v(Yt(x,x.c.length-1),131),g.q=!0,g.C=v(g.d.a.ec().Kc().Pb(),18).d.i,x}function d5r(n){var i,l;if(i=v(n.a,17).a,l=v(n.b,17).a,i>=0){if(i==l)return new Ms(Nt(-i-1),Nt(-i-1));if(i==-l)return new Ms(Nt(-i),Nt(l+1))}return u.Math.abs(i)>u.Math.abs(l)?i<0?new Ms(Nt(-i),Nt(l)):new Ms(Nt(-i),Nt(l+1)):new Ms(Nt(i+1),Nt(l))}function f5r(n){var i,l;l=v(oe(n,(qt(),Lu)),171),i=v(oe(n,(At(),aw)),311),l==(pf(),u2)?(_t(n,Lu,Mq),_t(n,aw,(Ym(),D5))):l==Y4?(_t(n,Lu,Mq),_t(n,aw,(Ym(),y6))):i==(Ym(),D5)?(_t(n,Lu,u2),_t(n,aw,Nq)):i==y6&&(_t(n,Lu,Y4),_t(n,aw,Nq))}function wJ(){wJ=z,Hq=new qwt,don=yi(new ms,(Mo(),qc),(qo(),yte)),gon=ch(yi(new ms,qc,Cte),Gl,Tte),mon=Jp(Jp(RL(ch(yi(new ms,N0,Ite),Gl,Rte),ru),kte),Nte),fon=ch(yi(yi(yi(new ms,em,_te),ru,Ete),ru,jI),Gl,wte),pon=ch(yi(yi(new ms,ru,jI),ru,bte),Gl,mte)}function aM(){aM=z,von=yi(ch(new ms,(Mo(),Gl),(qo(),qGe)),qc,yte),xon=Jp(Jp(RL(ch(yi(new ms,N0,Ite),Gl,Rte),ru),kte),Nte),_on=ch(yi(yi(yi(new ms,em,_te),ru,Ete),ru,jI),Gl,wte),Eon=yi(yi(new ms,qc,Cte),Gl,Tte),won=ch(yi(yi(new ms,ru,jI),ru,bte),Gl,mte)}function p5r(n,i,l,d,g){var y,x;(!Jo(i)&&i.c.i.c==i.d.i.c||!T$t(ac(Te(xe(Vs,1),kt,8,0,[g.i.n,g.n,g.a])),l))&&!Jo(i)&&(i.c==g?JR(i.a,0,new Wo(l)):pi(i.a,new Wo(l)),d&&!r1(n.a,l)&&(x=v(oe(i,(qt(),Nl)),75),x||(x=new ah,_t(i,Nl,x)),y=new Wo(l),qa(x,y,x.c.b,x.c),Es(n.a,y)))}function TYt(n,i){var l,d,g,y;for(y=ti(Go(Wg,Ug(ti(Go(i==null?0:ma(i),Kg)),15))),l=y&n.b.length-1,g=null,d=n.b[l];d;g=d,d=d.a)if(d.d==y&&Wp(d.i,i))return g?g.a=d.a:n.b[l]=d.a,n7t(v($f(d.c),604),v($f(d.f),604)),lU(v($f(d.b),227),v($f(d.e),227)),--n.f,++n.e,!0;return!1}function g5r(n){var i,l;for(l=new yr(_r(Hs(n).a.Kc(),new S));zr(l);)if(i=v(Rr(l),18),i.c.i.k!=(lr(),Pc))throw _e(new Gb(Rge+rG(n)+"' has its layer constraint set to FIRST, but has at least one incoming edge that does not come from a FIRST_SEPARATE node. That must not happen."))}function m5r(n,i,l){var d,g,y,x,T,R,O;if(g=Rzt(n.Db&254),g==0)n.Eb=l;else{if(g==1)T=st(zs,Yn,1,2,5,1),y=o1e(n,i),y==0?(T[0]=l,T[1]=n.Eb):(T[0]=n.Eb,T[1]=l);else for(T=st(zs,Yn,1,g+1,5,1),x=L_(n.Eb),d=2,R=0,O=0;d<=128;d<<=1)d==i?T[O++]=l:n.Db&d&&(T[O++]=x[R++]);n.Eb=T}n.Db|=i}function CYt(n,i,l){var d,g,y,x;for(this.b=new Ot,g=0,d=0,x=new me(n);x.a0&&(y=v(Yt(this.b,0),176),g+=y.o,d+=y.p),g*=2,d*=2,i>1?g=Ps(u.Math.ceil(g*i)):d=Ps(u.Math.ceil(d/i)),this.a=new BLe(g,d)}function AYt(n,i,l,d,g,y){var x,T,R,O,D,q,J,re,ae,le,de,Se;for(D=d,i.j&&i.o?(re=v(br(n.f,i.A),60),le=re.d.c+re.d.b,--D):le=i.a.c+i.a.b,q=g,l.q&&l.o?(re=v(br(n.f,l.C),60),O=re.d.c,++q):O=l.a.c,de=O-le,R=u.Math.max(2,q-D),T=de/R,ae=le+T,J=D;J=0;x+=g?1:-1){for(T=i[x],R=d==(Bt(),gr)?g?sc(T,d):ff(sc(T,d)):g?ff(sc(T,d)):sc(T,d),y&&(n.c[T.p]=R.gc()),q=R.Kc();q.Ob();)D=v(q.Pb(),12),n.d[D.p]=O++;xs(l,R)}}function RYt(n,i,l){var d,g,y,x,T,R,O,D;for(y=We(at(n.b.Kc().Pb())),O=We(at(fbr(i.b))),d=Vp(Eo(n.a),O-l),g=Vp(Eo(i.a),l-y),D=Hi(d,g),Vp(D,1/(O-y)),this.a=D,this.b=new Ot,T=!0,x=n.b.Kc(),x.Pb();x.Ob();)R=We(at(x.Pb())),T&&R-l>cme&&(this.b.Fc(l),T=!1),this.b.Fc(R);T&&this.b.Fc(l)}function b5r(n){var i,l,d,g;if(MCr(n,n.n),n.d.c.length>0){for(_L(n.c);DMe(n,v(pe(new me(n.e.a)),125))>5,i&=31,d>=n.d)return n.e<0?(eg(),Men):(eg(),KM);if(y=n.d-d,g=st(Wr,vi,28,y+1,15,1),lSr(g,y,n.a,d,i),n.e<0){for(l=0;l0&&n.a[l]<<32-i){for(l=0;l=0?!1:(l=h5((dh(),ko),g,i),l?(d=l.Ik(),(d>1||d==-1)&&RE(Al(ko,l))!=3):!0)):!1}function w5r(n,i,l,d){var g,y,x,T,R;return T=zl(v(ze((!i.b&&(i.b=new Gn(Lr,i,4,7)),i.b),0),84)),R=zl(v(ze((!i.c&&(i.c=new Gn(Lr,i,5,8)),i.c),0),84)),Aa(T)==Aa(R)||l4(R,T)?null:(x=lz(i),x==l?d:(y=v(br(n.a,x),10),y&&(g=y.e,g)?g:null))}function E5r(n,i,l){var d,g,y,x,T;for(l.Ug("Longest path to source layering",1),n.a=i,T=n.a.a,n.b=st(Wr,vi,28,T.c.length,15,1),d=0,x=new me(T);x.a0&&(l[0]+=n.d,x-=l[0]),l[2]>0&&(l[2]+=n.d,x-=l[2]),y=u.Math.max(0,x),l[1]=u.Math.max(l[1],x),TOe(n,vu,g.c+d.b+l[0]-(l[1]-x)/2,l),i==vu&&(n.c.b=y,n.c.c=g.c+d.b+(y-x)/2)}function $Yt(){this.c=st(ao,_l,28,(Bt(),Te(xe(tl,1),Dc,64,0,[lc,or,gr,Mr,cr])).length,15,1),this.b=st(ao,_l,28,Te(xe(tl,1),Dc,64,0,[lc,or,gr,Mr,cr]).length,15,1),this.a=st(ao,_l,28,Te(xe(tl,1),Dc,64,0,[lc,or,gr,Mr,cr]).length,15,1),kRe(this.c,ka),kRe(this.b,Ss),kRe(this.a,Ss)}function Jc(n,i,l){var d,g,y,x;if(i<=l?(g=i,y=l):(g=l,y=i),d=0,n.b==null)n.b=st(Wr,vi,28,2,15,1),n.b[0]=g,n.b[1]=y,n.c=!0;else{if(d=n.b.length,n.b[d-1]+1==g){n.b[d-1]=y;return}x=st(Wr,vi,28,d+2,15,1),Gc(n.b,0,x,0,d),n.b=x,n.b[d-1]>=g&&(n.c=!1,n.a=!1),n.b[d++]=g,n.b[d]=y,n.c||a5(n)}}function k5r(n,i,l){var d,g,y,x,T,R,O;for(O=i.d,n.a=new gu(O.c.length),n.c=new Br,T=new me(O);T.a=0?n.Lh(O,!1,!0):XE(n,l,!1),61));e:for(y=q.Kc();y.Ob();){for(g=v(y.Pb(),58),D=0;D1;)x4(g,g.i-1);return d}function zYt(n,i){var l,d,g,y,x,T,R;for(l=new FT,y=new me(n.b);y.an.d[x.p]&&(l+=bOe(n.b,y),Fv(n.a,Nt(y)));for(;!wL(n.a);)XOe(n.b,v(xk(n.a),17).a)}return l}function D5r(n){var i,l,d,g,y,x,T,R,O;for(n.a=new cIe,O=0,g=0,d=new me(n.i.b);d.aT.d&&(D=T.d+T.a+O));l.c.d=D,i.a.zc(l,i),R=u.Math.max(R,l.c.d+l.c.a)}return R}function cl(){cl=z,qte=new GS("COMMENTS",0),wf=new GS("EXTERNAL_PORTS",1),iP=new GS("HYPEREDGES",2),Hte=new GS("HYPERNODES",3),iN=new GS("NON_FREE_PORTS",4),L5=new GS("NORTH_SOUTH_PORTS",5),aP=new GS(dQt,6),nN=new GS("CENTER_LABELS",7),rN=new GS("END_LABELS",8),Vte=new GS("PARTITIONS",9)}function P5r(n,i,l,d,g){return d<0?(d=i5(n,g,Te(xe(Xt,1),kt,2,6,[Ipe,Npe,Ope,Lpe,e6,Dpe,Mpe,Ppe,Bpe,Fpe,$pe,Upe]),i),d<0&&(d=i5(n,g,Te(xe(Xt,1),kt,2,6,["Jan","Feb","Mar","Apr",e6,"Jun","Jul","Aug","Sep","Oct","Nov","Dec"]),i)),d<0?!1:(l.k=d,!0)):d>0?(l.k=d-1,!0):!1}function B5r(n,i,l,d,g){return d<0?(d=i5(n,g,Te(xe(Xt,1),kt,2,6,[Ipe,Npe,Ope,Lpe,e6,Dpe,Mpe,Ppe,Bpe,Fpe,$pe,Upe]),i),d<0&&(d=i5(n,g,Te(xe(Xt,1),kt,2,6,["Jan","Feb","Mar","Apr",e6,"Jun","Jul","Aug","Sep","Oct","Nov","Dec"]),i)),d<0?!1:(l.k=d,!0)):d>0?(l.k=d-1,!0):!1}function F5r(n,i,l,d,g,y){var x,T,R,O;if(T=32,d<0){if(i[0]>=n.length||(T=Do(n,i[0]),T!=43&&T!=45)||(++i[0],d=hJ(n,i),d<0))return!1;T==45&&(d=-d)}return T==32&&i[0]-l==2&&g.b==2&&(R=new UK,O=R.q.getFullYear()-Jv+Jv-80,x=O%100,y.a=d==x,d+=(O/100|0)*100+(d=0?Yv(n):cD(Yv(ty(n)))),XM[i]=bX(w0(n,i),0)?Yv(w0(n,i)):cD(Yv(ty(w0(n,i)))),n=Go(n,5);for(;i=O&&(R=d);R&&(D=u.Math.max(D,R.a.o.a)),D>J&&(q=O,J=D)}return q}function H5r(n){var i,l,d,g,y,x,T;for(y=new Vb(v(ni(new Pr),50)),T=Ss,l=new me(n.d);l.aFQt?us(R,n.b):d<=FQt&&d>$Qt?us(R,n.d):d<=$Qt&&d>UQt?us(R,n.c):d<=UQt&&us(R,n.a),y=YYt(n,R,y);return g}function jYt(n,i,l,d){var g,y,x,T,R,O;for(g=(d.c+d.a)/2,xd(i.j),pi(i.j,g),xd(l.e),pi(l.e,g),O=new g7t,T=new me(n.f);T.a1,T&&(d=new Ct(g,l.b),pi(i.a,d)),xD(i.a,Te(xe(Vs,1),kt,8,0,[J,q]))}function rPe(n,i,l){var d,g;for(i=48;l--)iB[l]=l-48<<24>>24;for(d=70;d>=65;d--)iB[d]=d-65+10<<24>>24;for(g=102;g>=97;g--)iB[g]=g-97+10<<24>>24;for(y=0;y<10;y++)yre[y]=48+y&vs;for(n=10;n<=15;n++)yre[n]=65+n-10&vs}function W5r(n,i){i.Ug("Process graph bounds",1),_t(n,(fa(),Cve),CU(Jfe(e4(new xn(null,new Nn(n.b,16)),new _Et)))),_t(n,Ave,CU(Jfe(e4(new xn(null,new Nn(n.b,16)),new wEt)))),_t(n,lYe,CU(Zfe(e4(new xn(null,new Nn(n.b,16)),new EEt)))),_t(n,cYe,CU(Zfe(e4(new xn(null,new Nn(n.b,16)),new xEt)))),i.Vg()}function K5r(n){var i,l,d,g,y;g=v(oe(n,(qt(),uw)),21),y=v(oe(n,une),21),l=new Ct(n.f.a+n.d.b+n.d.c,n.f.b+n.d.d+n.d.a),i=new Wo(l),g.Hc((ud(),o3))&&(d=v(oe(n,sN),8),y.Hc((qh(),TN))&&(d.a<=0&&(d.a=20),d.b<=0&&(d.b=20)),i.a=u.Math.max(l.a,d.a),i.b=u.Math.max(l.b,d.b)),Vt(Ht(oe(n,Xye)))||Tkr(n,l,i)}function X5r(n,i){var l,d,g,y;for(y=sc(i,(Bt(),Mr)).Kc();y.Ob();)d=v(y.Pb(),12),l=v(oe(d,(At(),kh)),10),l&&C0(m0(g0(b0(p0(new Bf,0),.1),n.i[i.p].d),n.i[l.p].a));for(g=sc(i,or).Kc();g.Ob();)d=v(g.Pb(),12),l=v(oe(d,(At(),kh)),10),l&&C0(m0(g0(b0(p0(new Bf,0),.1),n.i[l.p].d),n.i[i.p].a))}function q1e(n){var i,l,d,g,y,x;if(!n.c){if(x=new PSt,i=eB,y=i.a.zc(n,i),y==null){for(d=new mr(Uc(n));d.e!=d.i.gc();)l=v(wr(d),89),g=kJ(l),$e(g,90)&&Ka(x,q1e(v(g,29))),Yr(x,l);i.a.Bc(n)!=null,i.a.gc()==0}Vvr(x),h4(x),n.c=new NT((v(ze(bt((Mv(),Zn).o),15),19),x.i),x.g),$h(n).b&=-33}return n.c}function aPe(n){var i;if(n.c!=10)throw _e(new oi(fi((ii(),Lee))));switch(i=n.a,i){case 110:i=10;break;case 114:i=13;break;case 116:i=9;break;case 92:case 124:case 46:case 94:case 45:case 63:case 42:case 43:case 123:case 125:case 40:case 41:case 91:case 93:break;default:throw _e(new oi(fi((ii(),vf))))}return i}function QYt(n){var i,l,d,g,y;if(n.l==0&&n.m==0&&n.h==0)return"0";if(n.h==FG&&n.m==0&&n.l==0)return"-9223372036854775808";if(n.h>>19)return"-"+QYt($8(n));for(l=n,d="";!(l.l==0&&l.m==0&&l.h==0);){if(g=vfe(zJ),l=$Pe(l,g,!0),i=""+w7t(i2),!(l.l==0&&l.m==0&&l.h==0))for(y=9-i.length;y>0;y--)i="0"+i;d=i+d}return d}function Q5r(n){var i,l,d,g,y,x,T;for(i=!1,l=0,g=new me(n.d.b);g.a=n.a||!zDe(i,l))return-1;if(b8(v(d.Kb(i),20)))return 1;for(g=0,x=v(d.Kb(i),20).Kc();x.Ob();)if(y=v(x.Pb(),18),R=y.c.i==i?y.d.i:y.c.i,T=sPe(n,R,l,d),T==-1||(g=u.Math.max(g,T),g>n.c-1))return-1;return g+1}function ZYt(n,i){var l,d,g,y,x,T;if(Ze(i)===Ze(n))return!0;if(!$e(i,15)||(d=v(i,15),T=n.gc(),d.gc()!=T))return!1;if(x=d.Kc(),n.Yi()){for(l=0;l0){if(n._j(),i!=null){for(y=0;y>24;case 97:case 98:case 99:case 100:case 101:case 102:return n-97+10<<24>>24;case 65:case 66:case 67:case 68:case 69:case 70:return n-65+10<<24>>24;default:throw _e(new Gp("Invalid hexadecimal"))}}function SJ(){SJ=z,Hze=new CT("SPIRAL",0),Uze=new CT("LINE_BY_LINE",1),zze=new CT("MANHATTAN",2),$ze=new CT("JITTER",3),Nbe=new CT("QUADRANTS_LINE_BY_LINE",4),qze=new CT("QUADRANTS_MANHATTAN",5),Gze=new CT("QUADRANTS_JITTER",6),Fze=new CT("COMBINE_LINE_BY_LINE_MANHATTAN",7),Bze=new CT("COMBINE_JITTER_MANHATTAN",8)}function ejt(n,i,l,d){var g,y,x,T,R,O;for(R=p1e(n,l),O=p1e(i,l),g=!1;R&&O&&(d||W_r(R,O,l));)x=p1e(R,l),T=p1e(O,l),xz(i),xz(n),y=R.c,gpe(R,!1),gpe(O,!1),l?(m4(i,O.p,y),i.p=O.p,m4(n,R.p+1,y),n.p=R.p):(m4(n,R.p,y),n.p=R.p,m4(i,O.p+1,y),i.p=O.p),po(R,null),po(O,null),R=x,O=T,g=!0;return g}function tjt(n){switch(n.g){case 0:return new pTt;case 1:return new dTt;case 3:return new RRt;case 4:return new cwt;case 5:return new rOt;case 6:return new fTt;case 2:return new hTt;case 7:return new aTt;case 8:return new oTt;default:throw _e(new ar("No implementation is available for the layerer "+(n.f!=null?n.f:""+n.g)))}}function rCr(n,i,l,d){var g,y,x,T,R;for(g=!1,y=!1,T=new me(d.j);T.a=i.length)throw _e(new Sl("Greedy SwitchDecider: Free layer not in graph."));this.c=i[n],this.e=new YU(d),Wfe(this.e,this.c,(Bt(),cr)),this.i=new YU(d),Wfe(this.i,this.c,gr),this.f=new _9t(this.c),this.a=!y&&g.i&&!g.s&&this.c[0].k==(lr(),hs),this.a&&bSr(this,n,i.length)}function rjt(n,i){var l,d,g,y,x,T;y=!n.B.Hc((qh(),bH)),x=n.B.Hc(P2e),n.a=new qzt(x,y,n.c),n.n&&FNe(n.a.n,n.n),Uue(n.g,(u1(),vu),n.a),i||(d=new GD(1,y,n.c),d.n.a=n.k,Sk(n.p,(Bt(),or),d),g=new GD(1,y,n.c),g.n.d=n.k,Sk(n.p,Mr,g),T=new GD(0,y,n.c),T.n.c=n.k,Sk(n.p,cr,T),l=new GD(0,y,n.c),l.n.b=n.k,Sk(n.p,gr,l))}function aCr(n){var i,l,d;switch(i=v(oe(n.d,(qt(),lb)),223),i.g){case 2:l=jRr(n);break;case 3:l=(d=new Ot,ts(Ki(Bl(ic(ic(new xn(null,new Nn(n.d.b,16)),new v_t),new __t),new w_t),new s_t),new $Ct(d)),d);break;default:throw _e(new Tl("Compaction not supported for "+i+" edges."))}g6r(n,l),To(new m_(n.g),new BCt(n))}function sCr(n,i){var l,d,g,y,x,T,R;if(i.Ug("Process directions",1),l=v(oe(n,(pc(),Ax)),88),l!=(ys(),lp))for(g=Ur(n.b,0);g.b!=g.d.c;){switch(d=v(Fr(g),40),T=v(oe(d,(fa(),jq)),17).a,R=v(oe(d,Wq),17).a,l.g){case 4:R*=-1;break;case 1:y=T,T=R,R=y;break;case 2:x=T,T=-R,R=x}_t(d,jq,Nt(T)),_t(d,Wq,Nt(R))}i.Vg()}function oCr(n,i){var l;return l=new Ii,i&&Ul(l,v(br(n.a,vH),96)),$e(i,422)&&Ul(l,v(br(n.a,_H),96)),$e(i,366)?(Ul(l,v(br(n.a,wl),96)),l):($e(i,84)&&Ul(l,v(br(n.a,Lr),96)),$e(i,207)?(Ul(l,v(br(n.a,Pi),96)),l):$e(i,193)?(Ul(l,v(br(n.a,Oh),96)),l):($e(i,326)&&Ul(l,v(br(n.a,ss),96)),l))}function lCr(n){var i,l,d,g,y,x,T,R;for(R=new BPt,T=new me(n.a);T.a0&&i=0)return!1;if(i.p=l.b,Lt(l.e,i),g==(lr(),Ws)||g==iu){for(x=new me(i.j);x.an.d[T.p]&&(l+=bOe(n.b,y),Fv(n.a,Nt(y)))):++x;for(l+=n.b.d*x;!wL(n.a);)XOe(n.b,v(xk(n.a),17).a)}return l}function fjt(n){var i,l,d,g,y,x;return y=0,i=Gf(n),i.kk()&&(y|=4),n.Bb&gh&&(y|=2),$e(n,102)?(l=v(n,19),g=sl(l),l.Bb&Sc&&(y|=32),g&&(kr(t4(g)),y|=8,x=g.t,(x>1||x==-1)&&(y|=16),g.Bb&Sc&&(y|=64)),l.Bb&el&&(y|=P4),y|=k0):$e(i,469)?y|=512:(d=i.kk(),d&&d.i&1&&(y|=256)),n.Bb&512&&(y|=128),y}function _Cr(n,i){var l;return n.f==K2e?(l=RE(Al((dh(),ko),i)),n.e?l==4&&i!=(Kk(),P6)&&i!=(Kk(),M6)&&i!=(Kk(),X2e)&&i!=(Kk(),Q2e):l==2):n.d&&(n.d.Hc(i)||n.d.Hc(Ik(Al((dh(),ko),i)))||n.d.Hc(h5((dh(),ko),n.b,i)))?!0:n.f&&jMe((dh(),n.f),rz(Al(ko,i)))?(l=RE(Al(ko,i)),n.e?l==4:l==2):!1}function wCr(n){var i,l,d,g,y,x,T,R,O,D,q,J,re;for(J=-1,re=0,O=n,D=0,q=O.length;D0&&++re;++J}return re}function ECr(n,i,l,d){var g,y,x,T,R,O,D,q;return x=v(Et(l,(Ei(),R6)),8),R=x.a,D=x.b+n,g=u.Math.atan2(D,R),g<0&&(g+=Z_),g+=i,g>Z_&&(g-=Z_),T=v(Et(d,R6),8),O=T.a,q=T.b+n,y=u.Math.atan2(q,O),y<0&&(y+=Z_),y+=i,y>Z_&&(y-=Z_),$1(),x0(1e-10),u.Math.abs(g-y)<=1e-10||g==y||isNaN(g)&&isNaN(y)?0:gy?1:mE(isNaN(g),isNaN(y))}function Y1e(n){var i,l,d,g,y,x,T;for(T=new Br,d=new me(n.a.b);d.a=n.o)throw _e(new z7e);T=i>>5,x=i&31,y=w0(1,ti(w0(x,1))),g?n.n[l][T]=s1(n.n[l][T],y):n.n[l][T]=Us(n.n[l][T],FIe(y)),y=w0(y,1),d?n.n[l][T]=s1(n.n[l][T],y):n.n[l][T]=Us(n.n[l][T],FIe(y))}catch(R){throw R=Da(R),$e(R,333)?_e(new Sl(fge+n.o+"*"+n.p+pge+i+Xo+l+gge)):_e(R)}}function TCr(n,i,l,d){var g,y,x,T,R,O,D,q,J;for(J=new Vb(new lAt(n)),T=Te(xe(tm,1),gy,10,0,[i,l]),R=0,O=T.length;R0&&(d=(!n.n&&(n.n=new vt(wl,n,1,7)),v(ze(n.n,0),135)).a,!d||bi(bi((i.a+=' "',i),d),'"'))),bi(uE(bi(uE(bi(uE(bi(uE((i.a+=" (",i),n.i),","),n.j)," | "),n.g),","),n.f),")"),i.a)}function pjt(n){var i,l,d;return n.Db&64?T1e(n):(i=new Ed(pUe),l=n.k,l?bi(bi((i.a+=' "',i),l),'"'):(!n.n&&(n.n=new vt(wl,n,1,7)),n.n.i>0&&(d=(!n.n&&(n.n=new vt(wl,n,1,7)),v(ze(n.n,0),135)).a,!d||bi(bi((i.a+=' "',i),d),'"'))),bi(uE(bi(uE(bi(uE(bi(uE((i.a+=" (",i),n.i),","),n.j)," | "),n.g),","),n.f),")"),i.a)}function kCr(n,i){var l,d,g,y,x;for(i==(ND(),gve)&&dG(v(Zi(n.a,(b4(),kq)),15)),g=v(Zi(n.a,(b4(),kq)),15).Kc();g.Ob();)switch(d=v(g.Pb(),105),l=v(Yt(d.j,0),113).d.j,y=new Eh(d.j),us(y,new k_t),i.g){case 2:v1e(n,y,l,(UE(),l2),1);break;case 1:case 0:x=pTr(y),v1e(n,new Qb(y,0,x),l,(UE(),l2),0),v1e(n,new Qb(y,x,y.c.length),l,l2,1)}}function W1e(n,i){var l,d,g,y,x,T,R;if(i==null||i.length==0)return null;if(g=v(Qc(n.a,i),143),!g){for(d=(T=new Dm(n.b).a.vc().Kc(),new FS(T));d.a.Ob();)if(l=(y=v(d.a.Pb(),44),v(y.md(),143)),x=l.c,R=i.length,An(x.substr(x.length-R,R),i)&&(i.length==x.length||Do(x,x.length-i.length-1)==46)){if(g)return null;g=l}g&&Cl(n.a,i,g)}return g}function RCr(n,i){var l,d,g,y;return l=new Ls,d=v(Wl(Bl(new xn(null,new Nn(n.f,16)),l),a4(new Ve,new Oe,new ht,new et,Te(xe(Il,1),wt,108,0,[(Ch(),B4),Ql]))),21),g=d.gc(),d=v(Wl(Bl(new xn(null,new Nn(i.f,16)),l),a4(new Ve,new Oe,new ht,new et,Te(xe(Il,1),wt,108,0,[B4,Ql]))),21),y=d.gc(),gg.p?(Bs(y,Mr),y.d&&(T=y.o.b,i=y.a.b,y.a.b=T-i)):y.j==Mr&&g.p>n.p&&(Bs(y,or),y.d&&(T=y.o.b,i=y.a.b,y.a.b=-(T-i)));break}return g}function wG(n,i,l,d,g){var y,x,T,R,O,D,q;if(!($e(i,207)||$e(i,366)||$e(i,193)))throw _e(new ar("Method only works for ElkNode-, ElkLabel and ElkPort-objects."));return x=n.a/2,R=i.i+d-x,D=i.j+g-x,O=R+i.g+n.a,q=D+i.f+n.a,y=new ah,pi(y,new Ct(R,D)),pi(y,new Ct(R,q)),pi(y,new Ct(O,q)),pi(y,new Ct(O,D)),T=new P1e(y),Ul(T,i),l&&Ni(n.b,i,T),T}function hI(n,i,l){var d,g,y,x,T,R,O,D,q,J;for(y=new Ct(i,l),D=new me(n.a);D.a1,T&&(d=new Ct(g,l.b),pi(i.a,d)),xD(i.a,Te(xe(Vs,1),kt,8,0,[J,q]))}function qf(){qf=z,bne=new qS(og,0),Uq=new qS("NIKOLOV",1),zq=new qS("NIKOLOV_PIXEL",2),CVe=new qS("NIKOLOV_IMPROVED",3),AVe=new qS("NIKOLOV_IMPROVED_PIXEL",4),TVe=new qS("DUMMYNODE_PERCENTAGE",5),kVe=new qS("NODECOUNT_PERCENTAGE",6),yne=new qS("NO_BOUNDARY",7),Tx=new qS("MODEL_ORDER_LEFT_TO_RIGHT",8),e3=new qS("MODEL_ORDER_RIGHT_TO_LEFT",9)}function $Cr(n){var i,l,d,g,y;for(d=n.length,i=new EL,y=0;y=40,x&&UAr(n),Wkr(n),b5r(n),l=Lzt(n),d=0;l&&d0&&pi(n.f,y)):(n.c[x]-=O+1,n.c[x]<=0&&n.a[x]>0&&pi(n.e,y))))}function Ajt(n,i,l,d){var g,y,x,T,R,O,D;for(R=new Ct(l,d),$s(R,v(oe(i,(fa(),gN)),8)),D=Ur(i.b,0);D.b!=D.d.c;)O=v(Fr(D),40),Hi(O.e,R),pi(n.b,O);for(T=v(Wl(KNe(new xn(null,new Nn(i.a,16))),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[(Ch(),Ql)]))),15).Kc();T.Ob();){for(x=v(T.Pb(),65),y=Ur(x.a,0);y.b!=y.d.c;)g=v(Fr(y),8),g.a+=R.a,g.b+=R.b;pi(n.a,x)}}function wPe(n,i){var l,d,g,y;if(0<($e(n,16)?v(n,16).gc():Gm(n.Kc()))){if(g=i,1=0&&Ry*2?(D=new eZ(q),O=lh(x)/od(x),R=vpe(D,i,new ek,l,d,g,O),Hi(i1(D.e),R),q.c.length=0,y=0,jn(q.c,D),jn(q.c,x),y=lh(D)*od(D)+lh(x)*od(x)):(jn(q.c,x),y+=lh(x)*od(x));return q}function Rjt(n,i){var l,d,g,y,x,T;if(T=v(oe(i,(qt(),Qa)),101),T==(co(),sm)||T==su)for(g=new Ct(i.f.a+i.d.b+i.d.c,i.f.b+i.d.d+i.d.a).b,x=new me(n.a);x.al?i:l;O<=q;++O)O==l?T=d++:(y=g[O],D=ae.am(y.Lk()),O==i&&(R=O==q&&!D?d-1:d),D&&++d);return J=v($D(n,i,l),76),T!=R&&$R(n,new vz(n.e,7,x,Nt(T),re.md(),R)),J}}else return v(L1e(n,i,l),76);return v($D(n,i,l),76)}function iAr(n,i){var l,d,g,y,x,T,R;for(i.Ug("Port order processing",1),R=v(oe(n,(qt(),iVe)),430),d=new me(n.b);d.a=0&&(T=J_r(n,x),!(T&&(O<22?R.l|=1<>>1,x.m=D>>>1|(q&1)<<21,x.l=J>>>1|(D&1)<<21,--O;return l&&u0e(R),y&&(d?(i2=$8(n),g&&(i2=pUt(i2,(E8(),eze)))):i2=Su(n.l,n.m,n.h)),R}function oAr(n,i){var l,d,g,y,x,T,R,O,D,q;for(O=n.e[i.c.p][i.p]+1,R=i.c.a.c.length+1,T=new me(n.a);T.a0&&(sr(0,n.length),n.charCodeAt(0)==45||(sr(0,n.length),n.charCodeAt(0)==43))?1:0,d=x;dl)throw _e(new Gp(nx+n+'"'));return T}function lAr(n){var i,l,d,g,y,x,T;for(x=new Ea,y=new me(n.a);y.a1)&&i==1&&v(n.a[n.b],10).k==(lr(),Pc)?Qk(v(n.a[n.b],10),(Id(),im)):d&&(!l||(n.c-n.b&n.a.length-1)>1)&&i==1&&v(n.a[n.c-1&n.a.length-1],10).k==(lr(),Pc)?Qk(v(n.a[n.c-1&n.a.length-1],10),(Id(),m2)):(n.c-n.b&n.a.length-1)==2?(Qk(v(ID(n),10),(Id(),im)),Qk(v(ID(n),10),m2)):F3r(n,g),gOe(n)}function hAr(n,i,l){var d,g,y,x,T;for(y=0,g=new mr((!n.a&&(n.a=new vt(Pi,n,10,11)),n.a));g.e!=g.i.gc();)d=v(wr(g),27),x="",(!d.n&&(d.n=new vt(wl,d,1,7)),d.n).i==0||(x=v(ze((!d.n&&(d.n=new vt(wl,d,1,7)),d.n),0),135).a),T=new h0e(y++,i,x),Ul(T,d),_t(T,(fa(),AP),d),T.e.b=d.j+d.f/2,T.f.a=u.Math.max(d.g,1),T.e.a=d.i+d.g/2,T.f.b=u.Math.max(d.f,1),pi(i.b,T),yu(l.f,d,T)}function dAr(n){var i,l,d,g,y;d=v(oe(n,(At(),Ji)),27),y=v(Et(d,(qt(),uw)),181).Hc((ud(),vw)),n.e||(g=v(oe(n,au),21),i=new Ct(n.f.a+n.d.b+n.d.c,n.f.b+n.d.d+n.d.a),g.Hc((cl(),wf))?(sa(d,Qa,(co(),su)),JE(d,i.a,i.b,!1,!0)):Vt(Ht(Et(d,Xye)))||JE(d,i.a,i.b,!0,!0)),y?sa(d,uw,bn(vw)):sa(d,uw,(l=v(n1(WP),9),new nf(l,v(v0(l,l.length),9),0)))}function EPe(n,i,l){var d,g,y,x;if(i[0]>=n.length)return l.o=0,!0;switch(Do(n,i[0])){case 43:g=1;break;case 45:g=-1;break;default:return l.o=0,!0}if(++i[0],y=i[0],x=hJ(n,i),x==0&&i[0]==y)return!1;if(i[0]T&&(T=g,D.c.length=0),g==T&&Lt(D,new Ms(l.c.i,l)));Fn(),us(D,n.c),EE(n.b,R.p,D)}}function mAr(n,i){var l,d,g,y,x,T,R,O,D;for(x=new me(i.b);x.aT&&(T=g,D.c.length=0),g==T&&Lt(D,new Ms(l.d.i,l)));Fn(),us(D,n.c),EE(n.f,R.p,D)}}function bAr(n,i){var l,d,g,y,x,T,R,O;if(O=Ht(oe(i,(pc(),Yon))),O==null||(hr(O),O)){for(q4r(n,i),g=new Ot,R=Ur(i.b,0);R.b!=R.d.c;)x=v(Fr(R),40),l=cMe(n,x,null),l&&(Ul(l,i),jn(g.c,l));if(n.a=null,n.b=null,g.c.length>1)for(d=new me(g);d.a=0&&T!=l&&(y=new js(n,1,T,x,null),d?d.nj(y):d=y),l>=0&&(y=new js(n,1,l,T==l?x:null,i),d?d.nj(y):d=y)),d}function Ojt(n){var i,l,d;if(n.b==null){if(d=new qb,n.i!=null&&(bl(d,n.i),d.a+=":"),n.f&256){for(n.f&256&&n.a!=null&&(Pdr(n.i)||(d.a+="//"),bl(d,n.a)),n.d!=null&&(d.a+="/",bl(d,n.d)),n.f&16&&(d.a+="/"),i=0,l=n.j.length;iJ?!1:(q=(R=dM(d,J,!1),R.a),D+T+q<=i.b&&(_z(l,y-l.s),l.c=!0,_z(d,y-l.s),nG(d,l.s,l.t+l.d+T),d.k=!0,I9e(l.q,d),re=!0,g&&(aZ(i,d),d.j=i,n.c.length>x&&(aG(($n(x,n.c.length),v(n.c[x],186)),d),($n(x,n.c.length),v(n.c[x],186)).a.c.length==0&&Jb(n,x)))),re)}function SAr(n,i){var l,d,g,y,x,T;if(i.Ug("Partition midprocessing",1),g=new OE,ts(Ki(new xn(null,new Nn(n.a,16)),new a2t),new CCt(g)),g.d!=0){for(T=v(Wl(ZNe((y=g.i,new xn(null,(y||(g.i=new $T(g,g.c))).Nc()))),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[(Ch(),Ql)]))),15),d=T.Kc(),l=v(d.Pb(),17);d.Ob();)x=v(d.Pb(),17),bTr(v(Zi(g,l),21),v(Zi(g,x),21)),l=x;i.Vg()}}function Mjt(n,i,l){var d,g,y,x,T,R,O,D;if(i.p==0){for(i.p=1,x=l,x||(g=new Ot,y=(d=v(n1(tl),9),new nf(d,v(v0(d,d.length),9),0)),x=new Ms(g,y)),v(x.a,15).Fc(i),i.k==(lr(),hs)&&v(x.b,21).Fc(v(oe(i,(At(),vc)),64)),R=new me(i.j);R.a0){if(g=v(n.Ab.g,2033),i==null){for(y=0;yl.s&&Tx)return Bt(),gr;break;case 4:case 3:if(D<0)return Bt(),or;if(D+l>y)return Bt(),Mr}return R=(O+T/2)/x,d=(D+l/2)/y,R+d<=1&&R-d<=0?(Bt(),cr):R+d>=1&&R-d>=0?(Bt(),gr):d<.5?(Bt(),or):(Bt(),Mr)}function RAr(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le;for(l=!1,D=We(at(oe(i,(qt(),Sx)))),ae=Zv*D,g=new me(i.b);g.aR+ae&&(le=q.g+J.g,J.a=(J.g*J.a+q.g*q.a)/le,J.g=le,q.f=J,l=!0)),y=T,q=J;return l}function $jt(n,i,l,d,g,y,x){var T,R,O,D,q,J;for(J=new fk,O=i.Kc();O.Ob();)for(T=v(O.Pb(),853),q=new me(T.Rf());q.a0?T.a?(O=T.b.Mf().b,g>O&&(n.v||T.c.d.c.length==1?(x=(g-O)/2,T.d.d=x,T.d.a=x):(l=v(Yt(T.c.d,0),187).Mf().b,d=(l-O)/2,T.d.d=u.Math.max(0,d),T.d.a=g-d-O))):T.d.a=n.t+g:aD(n.u)&&(y=VDe(T.b),y.d<0&&(T.d.d=-y.d),y.d+y.a>T.b.Mf().b&&(T.d.a=y.d+y.a-T.b.Mf().b))}function A0(){A0=z,g6=new fo((Ei(),lH),Nt(1)),hte=new fo(bw,80),ynn=new fo(LWe,5),lnn=new fo(X5,kI),mnn=new fo(N2e,Nt(1)),bnn=new fo(O2e,(Qn(),!0)),oGe=new bE(50),pnn=new fo(Ty,oGe),iGe=sH,lGe=UP,cnn=new fo(w2e,!1),sGe=oH,dnn=i3,fnn=g2,hnn=mw,unn=eC,gnn=a3,aGe=(tMe(),tnn),qbe=ann,ute=enn,Gbe=nnn,cGe=inn,wnn=_N,Enn=Kne,_nn=cH,vnn=Wne,uGe=(Uk(),l3),new fo(N6,uGe)}function OAr(n,i){var l;switch(kz(n)){case 6:return ro(i);case 7:return VS(i);case 8:return HS(i);case 3:return Array.isArray(i)&&(l=kz(i),!(l>=14&&l<=16));case 11:return i!=null&&typeof i===xpe;case 12:return i!=null&&(typeof i===NG||typeof i==xpe);case 0:return W0e(i,n.__elementTypeId$);case 2:return kde(i)&&i.Tm!==Z;case 1:return kde(i)&&i.Tm!==Z||W0e(i,n.__elementTypeId$);default:return!0}}function LAr(n){var i,l,d,g;d=n.o,WS(),n.A.dc()||Yi(n.A,jze)?g=d.a:(n.D?g=u.Math.max(d.a,JD(n.f)):g=JD(n.f),n.A.Hc((ud(),gH))&&!n.B.Hc((qh(),KP))&&(g=u.Math.max(g,JD(v(yl(n.p,(Bt(),or)),252))),g=u.Math.max(g,JD(v(yl(n.p,Mr),252)))),i=eUt(n),i&&(g=u.Math.max(g,i.a))),Vt(Ht(n.e.Tf().of((Ei(),i3))))?d.a=u.Math.max(d.a,g):d.a=g,l=n.f.i,l.c=0,l.b=g,tpe(n.f)}function Ujt(n,i){var l,d,g,y;return d=u.Math.min(u.Math.abs(n.c-(i.c+i.b)),u.Math.abs(n.c+n.b-i.c)),y=u.Math.min(u.Math.abs(n.d-(i.d+i.a)),u.Math.abs(n.d+n.a-i.d)),l=u.Math.abs(n.c+n.b/2-(i.c+i.b/2)),l>n.b/2+i.b/2||(g=u.Math.abs(n.d+n.a/2-(i.d+i.a/2)),g>n.a/2+i.a/2)?1:l==0&&g==0?0:l==0?y/g+1:g==0?d/l+1:u.Math.min(d/l,y/g)+1}function DAr(n,i){var l,d,g,y,x,T,R;for(y=0,T=0,R=0,g=new me(n.f.e);g.a0&&n.d!=(wD(),Ybe)&&(T+=x*(d.d.a+n.a[i.a][d.a]*(i.d.a-d.d.a)/l)),l>0&&n.d!=(wD(),Hbe)&&(R+=x*(d.d.b+n.a[i.a][d.a]*(i.d.b-d.d.b)/l)));switch(n.d.g){case 1:return new Ct(T/y,i.d.b);case 2:return new Ct(i.d.a,R/y);default:return new Ct(T/y,R/y)}}function zjt(n){var i,l,d,g,y,x;for(l=(!n.a&&(n.a=new gs(Ud,n,5)),n.a).i+2,x=new gu(l),Lt(x,new Ct(n.j,n.k)),ts(new xn(null,(!n.a&&(n.a=new gs(Ud,n,5)),new Nn(n.a,16))),new ZAt(x)),Lt(x,new Ct(n.b,n.c)),i=1;i0&&(Uz(R,!1,(ys(),Ol)),Uz(R,!0,ql)),Cu(i.g,new t8t(n,l)),Ni(n.g,i,l)}function Hjt(){Hjt=z;var n;for(lze=Te(xe(Wr,1),vi,28,15,[-1,-1,30,19,15,13,11,11,10,9,9,8,8,8,8,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5]),ybe=st(Wr,vi,28,37,15,1),Oen=Te(xe(Wr,1),vi,28,15,[-1,-1,63,40,32,28,25,23,21,20,19,19,18,18,17,17,16,16,16,15,15,15,15,14,14,14,14,14,14,13,13,13,13,13,13,13,13]),cze=st(C2,Xpe,28,37,14,1),n=2;n<=36;n++)ybe[n]=Ps(u.Math.pow(n,lze[n])),cze[n]=oG(MG,ybe[n])}function MAr(n){var i;if((!n.a&&(n.a=new vt(xa,n,6,6)),n.a).i!=1)throw _e(new ar(yZt+(!n.a&&(n.a=new vt(xa,n,6,6)),n.a).i));return i=new ah,Fz(v(ze((!n.b&&(n.b=new Gn(Lr,n,4,7)),n.b),0),84))&&bo(i,OKt(n,Fz(v(ze((!n.b&&(n.b=new Gn(Lr,n,4,7)),n.b),0),84)),!1)),Fz(v(ze((!n.c&&(n.c=new Gn(Lr,n,5,8)),n.c),0),84))&&bo(i,OKt(n,Fz(v(ze((!n.c&&(n.c=new Gn(Lr,n,5,8)),n.c),0),84)),!0)),i}function Vjt(n,i){var l,d,g,y,x;for(i.d?g=n.a.c==(Kp(),Cx)?Hs(i.b):os(i.b):g=n.a.c==(Kp(),Ey)?Hs(i.b):os(i.b),y=!1,d=new yr(_r(g.a.Kc(),new S));zr(d);)if(l=v(Rr(d),18),x=Vt(n.a.f[n.a.g[i.b.p].p]),!(!x&&!Jo(l)&&l.c.i.c==l.d.i.c)&&!(Vt(n.a.n[n.a.g[i.b.p].p])||Vt(n.a.n[n.a.g[i.b.p].p]))&&(y=!0,r1(n.b,n.a.g[M_r(l,i.b).p])))return i.c=!0,i.a=l,i;return i.c=y,i.a=null,i}function SPe(n,i,l){var d,g,y,x,T,R,O;if(d=l.gc(),d==0)return!1;if(n.Pj())if(R=n.Qj(),LLe(n,i,l),x=d==1?n.Ij(3,null,l.Kc().Pb(),i,R):n.Ij(5,null,l,i,R),n.Mj()){for(T=d<100?null:new Av(d),y=i+d,g=i;g0){for(x=0;x>16==-15&&n.Cb.Yh()&&Ofe(new Afe(n.Cb,9,13,l,n.c,uy(Uh(v(n.Cb,62)),n))):$e(n.Cb,90)&&n.Db>>16==-23&&n.Cb.Yh()&&(i=n.c,$e(i,90)||(i=(Pn(),n0)),$e(l,90)||(l=(Pn(),n0)),Ofe(new Afe(n.Cb,9,10,l,i,uy(Uc(v(n.Cb,29)),n)))))),n.c}function FAr(n,i,l){var d,g,y,x,T,R,O,D,q;for(l.Ug("Hyperedge merging",1),l3r(n,i),R=new go(i.b,0);R.b0,T=OZ(i,y),B8e(l?T.b:T.g,i),XT(T).c.length==1&&qa(d,T,d.c.b,d.c),g=new Ms(y,i),Fv(n.o,g),Yu(n.e.a,y))}function Zjt(n,i){var l,d,g,y,x,T,R;return d=u.Math.abs(sQ(n.b).a-sQ(i.b).a),T=u.Math.abs(sQ(n.b).b-sQ(i.b).b),g=0,R=0,l=1,x=1,d>n.b.b/2+i.b.b/2&&(g=u.Math.min(u.Math.abs(n.b.c-(i.b.c+i.b.b)),u.Math.abs(n.b.c+n.b.b-i.b.c)),l=1-g/d),T>n.b.a/2+i.b.a/2&&(R=u.Math.min(u.Math.abs(n.b.d-(i.b.d+i.b.a)),u.Math.abs(n.b.d+n.b.a-i.b.d)),x=1-R/T),y=u.Math.min(l,x),(1-y)*u.Math.sqrt(d*d+T*T)}function zAr(n){var i,l,d,g;for(ype(n,n.e,n.f,(LE(),f2),!0,n.c,n.i),ype(n,n.e,n.f,f2,!1,n.c,n.i),ype(n,n.e,n.f,H5,!0,n.c,n.i),ype(n,n.e,n.f,H5,!1,n.c,n.i),BAr(n,n.c,n.e,n.f,n.i),d=new go(n.i,0);d.b=65;l--)fp[l]=l-65<<24>>24;for(d=122;d>=97;d--)fp[d]=d-97+26<<24>>24;for(g=57;g>=48;g--)fp[g]=g-48+52<<24>>24;for(fp[43]=62,fp[47]=63,y=0;y<=25;y++)Oy[y]=65+y&vs;for(x=26,R=0;x<=51;++x,R++)Oy[x]=97+R&vs;for(n=52,T=0;n<=61;++n,T++)Oy[n]=48+T&vs;Oy[62]=43,Oy[63]=47}function Jjt(n,i){var l,d,g,y,x,T;return g=T9e(n),T=T9e(i),g==T?n.e==i.e&&n.a<54&&i.a<54?n.fi.f?1:0:(d=n.e-i.e,l=(n.d>0?n.d:u.Math.floor((n.a-1)*sXt)+1)-(i.d>0?i.d:u.Math.floor((i.a-1)*sXt)+1),l>d+1?g:l0&&(x=HT(x,uWt(d))),cGt(y,x))):gO&&(J=0,re+=R+i,R=0),hI(x,J,re),l=u.Math.max(l,J+D.a),R=u.Math.max(R,D.b),J+=D.a+i;return new Ct(l+i,re+R+i)}function kPe(n,i){var l,d,g,y,x,T,R;if(!z1(n))throw _e(new Tl(bZt));if(d=z1(n),y=d.g,g=d.f,y<=0&&g<=0)return Bt(),lc;switch(T=n.i,R=n.j,i.g){case 2:case 1:if(T<0)return Bt(),cr;if(T+n.g>y)return Bt(),gr;break;case 4:case 3:if(R<0)return Bt(),or;if(R+n.f>g)return Bt(),Mr}return x=(T+n.g/2)/y,l=(R+n.f/2)/g,x+l<=1&&x-l<=0?(Bt(),cr):x+l>=1&&x-l>=0?(Bt(),gr):l<.5?(Bt(),or):(Bt(),Mr)}function HAr(n,i,l,d,g){var y,x;if(y=zo(Us(i[0],ul),Us(d[0],ul)),n[0]=ti(y),y=xE(y,32),l>=g){for(x=1;x0&&(g.b[x++]=0,g.b[x++]=y.b[0]-1),i=1;i0&&(yue(R,R.d-g.d),g.c==(o1(),d2)&&Crr(R,R.a-g.d),R.d<=0&&R.i>0&&qa(i,R,i.c.b,i.c)));for(y=new me(n.f);y.a0&&(yK(T,T.i-g.d),g.c==(o1(),d2)&&Arr(T,T.b-g.d),T.i<=0&&T.d>0&&qa(l,T,l.c.b,l.c)))}function jAr(n,i,l,d,g){var y,x,T,R,O,D,q,J,re;for(Fn(),us(n,new dSt),x=KU(n),re=new Ot,J=new Ot,T=null,R=0;x.b!=0;)y=v(x.b==0?null:(Tr(x.b!=0),cf(x,x.a.a)),163),!T||lh(T)*od(T)/21&&(R>lh(T)*od(T)/2||x.b==0)&&(q=new eZ(J),D=lh(T)/od(T),O=vpe(q,i,new ek,l,d,g,D),Hi(i1(q.e),O),T=q,jn(re.c,q),R=0,J.c.length=0));return xs(re,J),re}function Gc(n,i,l,d,g){Pm();var y,x,T,R,O,D,q;if(yNe(n,"src"),yNe(l,"dest"),q=cd(n),R=cd(l),BIe((q.i&4)!=0,"srcType is not an array"),BIe((R.i&4)!=0,"destType is not an array"),D=q.c,x=R.c,BIe(D.i&1?D==x:(x.i&1)==0,"Array types don't match"),Lbr(n,i,l,d,g),!(D.i&1)&&q!=R)if(O=L_(n),y=L_(l),Ze(n)===Ze(l)&&id;)Ga(y,T,O[--i]);else for(T=d+g;d0),d.a.Xb(d.c=--d.b),q>J+R&&ld(d);for(x=new me(re);x.a0),d.a.Xb(d.c=--d.b)}}function KAr(){zi();var n,i,l,d,g,y;if(J2e)return J2e;for(n=new Td(4),C4(n,Qv(abe,!0)),gM(n,Qv("M",!0)),gM(n,Qv("C",!0)),y=new Td(4),d=0;d<11;d++)Jc(y,d,d);return i=new Td(4),C4(i,Qv("M",!0)),Jc(i,4448,4607),Jc(i,65438,65439),g=new jL(2),V_(g,n),V_(g,sB),l=new jL(2),l.Jm(XX(y,Qv("L",!0))),l.Jm(i),l=new r4(3,l),l=new bNe(g,l),J2e=l,J2e}function T4(n,i){var l,d,g,y,x,T,R,O;for(l=new RegExp(i,"g"),R=st(Xt,kt,2,0,6,1),d=0,O=n,y=null;;)if(T=l.exec(O),T==null||O==""){R[d]=O;break}else x=T.index,R[d]=(mo(0,x,O.length),O.substr(0,x)),O=af(O,x+T[0].length,O.length),l.lastIndex=0,y==O&&(R[d]=(mo(0,1,O.length),O.substr(0,1)),O=(sr(1,O.length+1),O.substr(1))),y=O,++d;if(n.length>0){for(g=R.length;g>0&&R[g-1]=="";)--g;g0&&(q-=d[0]+n.c,d[0]+=n.c),d[2]>0&&(q-=d[2]+n.c),d[1]=u.Math.max(d[1],q),eQ(n.a[1],l.c+i.b+d[0]-(d[1]-q)/2,d[1]);for(y=n.a,T=0,O=y.length;T0?(n.n.c.length-1)*n.i:0,d=new me(n.n);d.a1)for(d=Ur(g,0);d.b!=d.d.c;)for(l=v(Fr(d),235),y=0,R=new me(l.e);R.a0&&(i[0]+=n.c,q-=i[0]),i[2]>0&&(q-=i[2]+n.c),i[1]=u.Math.max(i[1],q),tQ(n.a[1],d.d+l.d+i[0]-(i[1]-q)/2,i[1]);else for(ae=d.d+l.d,re=d.a-l.d-l.a,x=n.a,R=0,D=x.length;R0||HE(g.b.d,n.b.d+n.b.a)==0&&d.b<0||HE(g.b.d+g.b.a,n.b.d)==0&&d.b>0){T=0;break}}else T=u.Math.min(T,ZHt(n,g,d));T=u.Math.min(T,rWt(n,y,T,d))}return T}function TG(n,i){var l,d,g,y,x,T,R;if(n.b<2)throw _e(new ar("The vector chain must contain at least a source and a target point."));for(g=(Tr(n.b!=0),v(n.a.a.c,8)),PU(i,g.a,g.b),R=new gk((!i.a&&(i.a=new gs(Ud,i,5)),i.a)),x=Ur(n,1);x.a=0&&y!=l))throw _e(new ar(sq));for(g=0,R=0;RWe(U1(x.g,x.d[0]).a)?(Tr(R.b>0),R.a.Xb(R.c=--R.b),KS(R,x),g=!0):T.e&&T.e.gc()>0&&(y=(!T.e&&(T.e=new Ot),T.e).Mc(i),O=(!T.e&&(T.e=new Ot),T.e).Mc(l),(y||O)&&((!T.e&&(T.e=new Ot),T.e).Fc(x),++x.c));g||jn(d.c,x)}function nkr(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se;return q=n.a.i+n.a.g/2,J=n.a.i+n.a.g/2,ae=i.i+i.g/2,de=i.j+i.f/2,T=new Ct(ae,de),O=v(Et(i,(Ei(),R6)),8),O.a=O.a+q,O.b=O.b+J,y=(T.b-O.b)/(T.a-O.a),d=T.b-y*T.a,le=l.i+l.g/2,Se=l.j+l.f/2,R=new Ct(le,Se),D=v(Et(l,R6),8),D.a=D.a+q,D.b=D.b+J,x=(R.b-D.b)/(R.a-D.a),g=R.b-x*R.a,re=(d-g)/(x-y),O.a>>0,"0"+i.toString(16)),d="\\x"+af(l,l.length-2,l.length)):n>=el?(l=(i=n>>>0,"0"+i.toString(16)),d="\\v"+af(l,l.length-6,l.length)):d=""+String.fromCharCode(n&vs)}return d}function oWt(n){var i,l,d;if(OT(v(oe(n,(qt(),Qa)),101)))for(l=new me(n.j);l.a=i.o&&l.f<=i.f||i.a*.5<=l.f&&i.a*1.5>=l.f){if(x=v(Yt(i.n,i.n.c.length-1),209),x.e+x.d+l.g+g<=d&&(y=v(Yt(i.n,i.n.c.length-1),209),y.f-n.f+l.f<=n.b||n.a.c.length==1))return TLe(i,l),!0;if(i.s+l.g<=d&&(i.t+i.d+l.f+g<=n.b||n.a.c.length==1))return Lt(i.b,l),T=v(Yt(i.n,i.n.c.length-1),209),Lt(i.n,new SQ(i.s,T.f+T.a+i.i,i.i)),aDe(v(Yt(i.n,i.n.c.length-1),209),l),tWt(i,l),!0}return!1}function cWt(n,i,l){var d,g,y,x;return n.Pj()?(g=null,y=n.Qj(),d=n.Ij(1,x=Mfe(n,i,l),l,i,y),n.Mj()&&!(n.Yi()&&x!=null?Yi(x,l):Ze(x)===Ze(l))?(x!=null&&(g=n.Oj(x,g)),g=n.Nj(l,g),n.Tj()&&(g=n.Wj(x,l,g)),g?(g.nj(d),g.oj()):n.Jj(d)):(n.Tj()&&(g=n.Wj(x,l,g)),g?(g.nj(d),g.oj()):n.Jj(d)),x):(x=Mfe(n,i,l),n.Mj()&&!(n.Yi()&&x!=null?Yi(x,l):Ze(x)===Ze(l))&&(g=null,x!=null&&(g=n.Oj(x,null)),g=n.Nj(l,g),g&&g.oj()),x)}function ckr(n,i){var l,d,g,y,x;if(i.Ug("Path-Like Graph Wrapping",1),n.b.c.length==0){i.Vg();return}if(g=new MMe(n),x=(g.i==null&&(g.i=C9e(g,new B6e)),We(g.i)*g.f),l=x/(g.i==null&&(g.i=C9e(g,new B6e)),We(g.i)),g.b>l){i.Vg();return}switch(v(oe(n,(qt(),tve)),351).g){case 2:y=new $6e;break;case 0:y=new P6e;break;default:y=new U6e}if(d=y.og(n,g),!y.pg())switch(v(oe(n,dne),352).g){case 2:d=JHt(g,d);break;case 1:d=Hqt(g,d)}i6r(n,g,d),i.Vg()}function cM(n,i){var l,d,g,y,x,T,R,O;i%=24,n.q.getHours()!=i&&(d=new u.Date(n.q.getTime()),d.setDate(d.getDate()+1),T=n.q.getTimezoneOffset()-d.getTimezoneOffset(),T>0&&(R=T/60|0,O=T%60,g=n.q.getDate(),l=n.q.getHours(),l+R>=24&&++g,y=new u.Date(n.q.getFullYear(),n.q.getMonth(),g,i+R,n.q.getMinutes()+O,n.q.getSeconds(),n.q.getMilliseconds()),n.q.setTime(y.getTime()))),x=n.q.getTime(),n.q.setTime(x+36e5),n.q.getHours()!=i&&n.q.setTime(x)}function ukr(n,i){var l,d,g,y;if(x0r(n.d,n.e),n.c.a.$b(),We(at(oe(i.j,(qt(),ene))))!=0||We(at(oe(i.j,ene)))!=0)for(l=b5,Ze(oe(i.j,nm))!==Ze((Zp(),wy))&&_t(i.j,(At(),c2),(Qn(),!0)),y=v(oe(i.j,gP),17).a,g=0;gg&&++O,Lt(x,($n(T+O,i.c.length),v(i.c[T+O],17))),R+=($n(T+O,i.c.length),v(i.c[T+O],17)).a-d,++l;l=de&&n.e[R.p]>ae*n.b||Ue>=l*de)&&(jn(J.c,T),T=new Ot,bo(x,y),y.a.$b(),O-=D,re=u.Math.max(re,O*n.b+le),O+=Ue,Me=Ue,Ue=0,D=0,le=0);return new Ms(re,J)}function rpe(n){var i,l,d,g,y,x,T;if(!n.d){if(T=new FSt,i=eB,y=i.a.zc(n,i),y==null){for(d=new mr(Fl(n));d.e!=d.i.gc();)l=v(wr(d),29),Ka(T,rpe(l));i.a.Bc(n)!=null,i.a.gc()==0}for(x=T.i,g=(!n.q&&(n.q=new vt(e0,n,11,10)),new mr(n.q));g.e!=g.i.gc();++x)v(wr(g),411);Ka(T,(!n.q&&(n.q=new vt(e0,n,11,10)),n.q)),h4(T),n.d=new NT((v(ze(bt((Mv(),Zn).o),9),19),T.i),T.g),n.e=v(T.g,688),n.e==null&&(n.e=dhn),$h(n).b&=-17}return n.d}function pI(n,i,l,d){var g,y,x,T,R,O;if(O=Iu(n.e.Dh(),i),R=0,g=v(n.g,124),al(),v(i,69).xk()){for(x=0;x1||ae==-1)if(q=v(le,71),J=v(D,71),q.dc())J.$b();else for(x=!!sl(i),y=0,T=n.a?q.Kc():q.Ii();T.Ob();)O=v(T.Pb(),58),g=v(j1(n,O),58),g?(x?(R=J.dd(g),R==-1?J.Gi(y,g):y!=R&&J.Ui(y,g)):J.Gi(y,g),++y):n.b&&!x&&(J.Gi(y,O),++y);else le==null?D.Wb(null):(g=j1(n,le),g==null?n.b&&!sl(i)&&D.Wb(le):D.Wb(g))}function gkr(n,i){var l,d,g,y,x,T,R,O;for(l=new xvt,g=new yr(_r(Hs(i).a.Kc(),new S));zr(g);)if(d=v(Rr(g),18),!Jo(d)&&(T=d.c.i,zDe(T,gte))){if(O=sPe(n,T,gte,pte),O==-1)continue;l.b=u.Math.max(l.b,O),!l.a&&(l.a=new Ot),Lt(l.a,T)}for(x=new yr(_r(os(i).a.Kc(),new S));zr(x);)if(y=v(Rr(x),18),!Jo(y)&&(R=y.d.i,zDe(R,pte))){if(O=sPe(n,R,pte,gte),O==-1)continue;l.d=u.Math.max(l.d,O),!l.c&&(l.c=new Ot),Lt(l.c,R)}return l}function mkr(n,i,l,d){var g,y,x,T,R,O,D;if(l.d.i!=i.i){for(g=new Jm(n),g_(g,(lr(),Ws)),_t(g,(At(),Ji),l),_t(g,(qt(),Qa),(co(),su)),jn(d.c,g),x=new zc,rc(x,g),Bs(x,(Bt(),cr)),T=new zc,rc(T,g),Bs(T,gr),D=l.d,lo(l,x),y=new NE,Ul(y,l),_t(y,Nl,null),Uo(y,T),lo(y,D),O=new go(l.b,0);O.b1e6)throw _e(new NK("power of ten too big"));if(n<=qi)return Ok(mG(f6[1],i),i);for(d=mG(f6[1],qi),g=d,l=xc(n-qi),i=Ps(n%qi);Oc(l,qi)>0;)g=HT(g,d),l=zf(l,qi);for(g=HT(g,mG(f6[1],i)),g=Ok(g,qi),l=xc(n-qi);Oc(l,qi)>0;)g=Ok(g,qi),l=zf(l,qi);return g=Ok(g,i),g}function hWt(n){var i,l,d,g,y,x,T,R,O,D;for(R=new me(n.a);R.aO&&d>O)D=T,O=We(i.p[T.p])+We(i.d[T.p])+T.o.b+T.d.a;else{g=!1,l._g()&&l.bh("bk node placement breaks on "+T+" which should have been after "+D);break}if(!g)break}return l._g()&&l.bh(i+" is feasible: "+g),g}function OPe(n,i,l,d){var g,y,x,T,R,O,D,q,J;if(y=new Jm(n),g_(y,(lr(),iu)),_t(y,(qt(),Qa),(co(),su)),g=0,i){for(x=new zc,_t(x,(At(),Ji),i),_t(y,Ji,i.i),Bs(x,(Bt(),cr)),rc(x,y),J=Xp(i.e),O=J,D=0,q=O.length;D0){if(g<0&&D.a&&(g=R,y=O[0],d=0),g>=0){if(T=D.b,R==g&&(T-=d++,T==0))return 0;if(!gKt(i,O,D,T,x)){R=g-1,O[0]=y;continue}}else if(g=-1,!gKt(i,O,D,0,x))return 0}else{if(g=-1,Do(D.c,0)==32){if(q=O[0],mFt(i,O),O[0]>q)continue}else if(ifr(i,D.c,O[0])){O[0]+=D.c.length;continue}return 0}return sRr(x,l)?O[0]:0}function Ekr(n,i,l){var d,g,y,x,T,R,O,D,q,J;for(D=new rQ(new eCt(l)),T=st(Wh,Qg,28,n.f.e.c.length,16,1),gNe(T,T.length),l[i.a]=0,O=new me(n.f.e);O.a=0&&!e5(n,D,q);)--q;g[D]=q}for(re=0;re=0&&!e5(n,T,ae);)--T;y[ae]=T}for(R=0;Ri[J]&&Jd[R]&&CJ(n,R,J,!1,!0)}function LPe(n){var i,l,d,g,y,x,T,R;l=Vt(Ht(oe(n,(A0(),cnn)))),y=n.a.c.d,T=n.a.d.d,l?(x=Vp($s(new Ct(T.a,T.b),y),.5),R=Vp(Eo(n.e),.5),i=$s(Hi(new Ct(y.a,y.b),x),R),G8e(n.d,i)):(g=We(at(oe(n.a,ynn))),d=n.d,y.a>=T.a?y.b>=T.b?(d.a=T.a+(y.a-T.a)/2+g,d.b=T.b+(y.b-T.b)/2-g-n.e.b):(d.a=T.a+(y.a-T.a)/2+g,d.b=y.b+(T.b-y.b)/2+g):y.b>=T.b?(d.a=y.a+(T.a-y.a)/2+g,d.b=T.b+(y.b-T.b)/2+g):(d.a=y.a+(T.a-y.a)/2+g,d.b=y.b+(T.b-y.b)/2-g-n.e.b))}function hM(n){var i,l,d,g,y,x,T,R;if(!n.f){if(R=new Y6e,T=new Y6e,i=eB,x=i.a.zc(n,i),x==null){for(y=new mr(Fl(n));y.e!=y.i.gc();)g=v(wr(y),29),Ka(R,hM(g));i.a.Bc(n)!=null,i.a.gc()==0}for(d=(!n.s&&(n.s=new vt(Ju,n,21,17)),new mr(n.s));d.e!=d.i.gc();)l=v(wr(d),179),$e(l,102)&&Yr(T,v(l,19));h4(T),n.r=new r9t(n,(v(ze(bt((Mv(),Zn).o),6),19),T.i),T.g),Ka(R,n.r),h4(R),n.f=new NT((v(ze(bt(Zn.o),5),19),R.i),R.g),$h(n).b&=-3}return n.f}function fWt(n){dE(n,new H_(cE(sE(lE(oE(new f_,X_),"ELK DisCo"),"Layouter for arranging unconnected subgraphs. The subgraphs themselves are, by default, not laid out."),new xr))),It(n,X_,bge,zt(tGe)),It(n,X_,yge,zt(Fbe)),It(n,X_,s6,zt(Wtn)),It(n,X_,rx,zt(eGe)),It(n,X_,wBe,zt(Ztn)),It(n,X_,EBe,zt(Qtn)),It(n,X_,_Be,zt(Jtn)),It(n,X_,xBe,zt(Xtn)),It(n,X_,IBe,zt(Ktn)),It(n,X_,NBe,zt(Bbe)),It(n,X_,OBe,zt(Jze)),It(n,X_,LBe,zt(ote))}function IJ(){IJ=z,wKe=Te(xe(Tf,1),rg,28,15,[48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70]),Gun=new RegExp(`[ +\r\f]+`);try{QP=Te(xe(iIr,1),Yn,2114,0,[new oU((c8e(),PZ("yyyy-MM-dd'T'HH:mm:ss'.'SSSZ",HU((IK(),IK(),jM))))),new oU(PZ("yyyy-MM-dd'T'HH:mm:ss'.'SSS",HU(jM))),new oU(PZ("yyyy-MM-dd'T'HH:mm:ss",HU(jM))),new oU(PZ("yyyy-MM-dd'T'HH:mm",HU(jM))),new oU(PZ("yyyy-MM-dd",HU(jM)))])}catch(n){if(n=Da(n),!$e(n,82))throw _e(n)}}function Skr(n,i){var l,d,g,y;if(g=Gh(n.d,1)!=0,d=fPe(n,i),d==0&&Vt(Ht(oe(i.j,(At(),c2)))))return 0;!Vt(Ht(oe(i.j,(At(),c2))))&&!Vt(Ht(oe(i.j,P5)))||Ze(oe(i.j,(qt(),nm)))===Ze((Zp(),wy))?i.c.mg(i.e,g):g=Vt(Ht(oe(i.j,c2))),_G(n,i,g,!0),Vt(Ht(oe(i.j,P5)))&&_t(i.j,P5,(Qn(),!1)),Vt(Ht(oe(i.j,c2)))&&(_t(i.j,c2,(Qn(),!1)),_t(i.j,P5,!0)),l=fPe(n,i);do{if(S9e(n),l==0)return 0;g=!g,y=l,_G(n,i,g,!1),l=fPe(n,i)}while(y>l);return y}function pWt(n,i){var l,d,g,y;if(g=Gh(n.d,1)!=0,d=uJ(n,i),d==0&&Vt(Ht(oe(i.j,(At(),c2)))))return 0;!Vt(Ht(oe(i.j,(At(),c2))))&&!Vt(Ht(oe(i.j,P5)))||Ze(oe(i.j,(qt(),nm)))===Ze((Zp(),wy))?i.c.mg(i.e,g):g=Vt(Ht(oe(i.j,c2))),_G(n,i,g,!0),Vt(Ht(oe(i.j,P5)))&&_t(i.j,P5,(Qn(),!1)),Vt(Ht(oe(i.j,c2)))&&(_t(i.j,c2,(Qn(),!1)),_t(i.j,P5,!0)),l=uJ(n,i);do{if(S9e(n),l==0)return 0;g=!g,y=l,_G(n,i,g,!1),l=uJ(n,i)}while(y>l);return y}function DPe(n,i,l,d){var g,y,x,T,R,O,D,q,J;return R=$s(new Ct(l.a,l.b),n),O=R.a*i.b-R.b*i.a,D=i.a*d.b-i.b*d.a,q=(R.a*d.b-R.b*d.a)/D,J=O/D,D==0?O==0?(g=Hi(new Ct(l.a,l.b),Vp(new Ct(d.a,d.b),.5)),y=$v(n,g),x=$v(Hi(new Ct(n.a,n.b),i),g),T=u.Math.sqrt(d.a*d.a+d.b*d.b)*.5,y=0&&q<=1&&J>=0&&J<=1?Hi(new Ct(n.a,n.b),Vp(new Ct(i.a,i.b),q)):null}function Tkr(n,i,l){var d,g,y,x,T;if(d=v(oe(n,(qt(),Gye)),21),l.a>i.a&&(d.Hc((q_(),PP))?n.c.a+=(l.a-i.a)/2:d.Hc(BP)&&(n.c.a+=l.a-i.a)),l.b>i.b&&(d.Hc((q_(),$P))?n.c.b+=(l.b-i.b)/2:d.Hc(FP)&&(n.c.b+=l.b-i.b)),v(oe(n,(At(),au)),21).Hc((cl(),wf))&&(l.a>i.a||l.b>i.b))for(T=new me(n.a);T.ai.a&&(d.Hc((q_(),PP))?n.c.a+=(l.a-i.a)/2:d.Hc(BP)&&(n.c.a+=l.a-i.a)),l.b>i.b&&(d.Hc((q_(),$P))?n.c.b+=(l.b-i.b)/2:d.Hc(FP)&&(n.c.b+=l.b-i.b)),v(oe(n,(At(),au)),21).Hc((cl(),wf))&&(l.a>i.a||l.b>i.b))for(x=new me(n.a);x.a0?n.i:0)>i&&R>0&&(y=0,x+=R+n.i,g=u.Math.max(g,J),d+=R+n.i,R=0,J=0,l&&(++q,Lt(n.n,new SQ(n.s,x,n.i))),T=0),J+=O.g+(T>0?n.i:0),R=u.Math.max(R,O.f),l&&aDe(v(Yt(n.n,q),209),O),y+=O.g+(T>0?n.i:0),++T;return g=u.Math.max(g,J),d+=R,l&&(n.r=g,n.d=d,cDe(n.j)),new rf(n.s,n.t,g,d)}function ipe(n){var i,l,d,g,y,x,T,R,O,D,q,J;for(n.b=!1,q=ka,R=Ss,J=ka,O=Ss,d=n.e.a.ec().Kc();d.Ob();)for(l=v(d.Pb(),272),g=l.a,q=u.Math.min(q,g.c),R=u.Math.max(R,g.c+g.b),J=u.Math.min(J,g.d),O=u.Math.max(O,g.d+g.a),x=new me(l.c);x.an.o.a&&(D=(R-n.o.a)/2,T.b=u.Math.max(T.b,D),T.c=u.Math.max(T.c,D))}}function Rkr(n){var i,l,d,g,y,x,T,R;for(y=new cMt,asr(y,(Fk(),Rcn)),d=(g=Xfe(n,st(Xt,kt,2,0,6,1)),new hL(new wh(new Xue(n,g).b)));d.bT?1:-1:J9e(n.a,i.a,y),g==-1)q=-R,D=x==R?wfe(i.a,T,n.a,y):xfe(i.a,T,n.a,y);else if(q=x,x==R){if(g==0)return eg(),KM;D=wfe(n.a,y,i.a,T)}else D=xfe(n.a,y,i.a,T);return O=new T_(q,D.length,D),gD(O),O}function Ikr(n,i){var l,d,g,y;if(y=Qjt(i),!i.c&&(i.c=new vt(Oh,i,9,9)),ts(new xn(null,(!i.c&&(i.c=new vt(Oh,i,9,9)),new Nn(i.c,16))),new iCt(y)),g=v(oe(y,(At(),au)),21),E7r(i,g),g.Hc((cl(),wf)))for(d=new mr((!i.c&&(i.c=new vt(Oh,i,9,9)),i.c));d.e!=d.i.gc();)l=v(wr(d),123),Q7r(n,i,y,l);return v(Et(i,(qt(),uw)),181).gc()!=0&&qYt(i,y),Vt(Ht(oe(y,tVe)))&&g.Fc(Vte),ya(y,Bq)&&Z6t(new PLe(We(at(oe(y,Bq)))),y),Ze(Et(i,W4))===Ze((Km(),Cy))?w8r(n,i,y):a8r(n,i,y),y}function Nkr(n){var i,l,d,g,y,x,T,R;for(g=new me(n.b);g.a0?af(l.a,0,y-1):""):(mo(0,y-1,n.length),n.substr(0,y-1)):l?l.a:n}function Okr(n,i){var l,d,g,y,x,T,R;for(i.Ug("Sort By Input Model "+oe(n,(qt(),nm)),1),g=0,d=new me(n.b);d.a=n.b.length?(y[g++]=x.b[d++],y[g++]=x.b[d++]):d>=x.b.length?(y[g++]=n.b[l++],y[g++]=n.b[l++]):x.b[d]0?n.i:0)),++i;for(vLe(n.n,R),n.d=l,n.r=d,n.g=0,n.f=0,n.e=0,n.o=ka,n.p=ka,y=new me(n.b);y.a0&&(g=(!n.n&&(n.n=new vt(wl,n,1,7)),v(ze(n.n,0),135)).a,!g||bi(bi((i.a+=' "',i),g),'"'))),l=(!n.b&&(n.b=new Gn(Lr,n,4,7)),!(n.b.i<=1&&(!n.c&&(n.c=new Gn(Lr,n,5,8)),n.c.i<=1))),l?i.a+=" [":i.a+=" ",bi(i,k8e(new que,new mr(n.b))),l&&(i.a+="]"),i.a+=Tge,l&&(i.a+="["),bi(i,k8e(new que,new mr(n.c))),l&&(i.a+="]"),i.a)}function Dkr(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn;for(yt=n.c,xt=i.c,l=$l(yt.a,n,0),d=$l(xt.a,i,0),Ue=v(VE(n,(ll(),Rh)).Kc().Pb(),12),mn=v(VE(n,_u).Kc().Pb(),12),je=v(VE(i,Rh).Kc().Pb(),12),Kn=v(VE(i,_u).Kc().Pb(),12),Se=Xp(Ue.e),Mt=Xp(mn.g),Me=Xp(je.e),yn=Xp(Kn.g),m4(n,d,xt),x=Me,D=0,ae=x.length;DD?new R_((o1(),n3),l,i,O-D):O>0&&D>0&&(new R_((o1(),n3),i,l,0),new R_(n3,l,i,0))),x)}function Bkr(n,i,l){var d,g,y;for(n.a=new Ot,y=Ur(i.b,0);y.b!=y.d.c;){for(g=v(Fr(y),40);v(oe(g,(pc(),gg)),17).a>n.a.c.length-1;)Lt(n.a,new Ms(b5,m$e));d=v(oe(g,gg),17).a,l==(ys(),Ol)||l==ql?(g.e.aWe(at(v(Yt(n.a,d),42).b))&&_ue(v(Yt(n.a,d),42),g.e.a+g.f.a)):(g.e.bWe(at(v(Yt(n.a,d),42).b))&&_ue(v(Yt(n.a,d),42),g.e.b+g.f.b))}}function bWt(n,i,l,d){var g,y,x,T,R,O,D;if(y=IZ(d),T=Vt(Ht(oe(d,(qt(),KHe)))),(T||Vt(Ht(oe(n,ane))))&&!OT(v(oe(n,Qa),101)))g=zk(y),R=xPe(n,l,l==(ll(),_u)?g:Xz(g));else switch(R=new zc,rc(R,n),i?(D=R.n,D.a=i.a-n.n.a,D.b=i.b-n.n.b,xHt(D,0,0,n.o.a,n.o.b),Bs(R,Fjt(R,y))):(g=zk(y),Bs(R,l==(ll(),_u)?g:Xz(g))),x=v(oe(d,(At(),au)),21),O=R.j,y.g){case 2:case 1:(O==(Bt(),or)||O==Mr)&&x.Fc((cl(),L5));break;case 4:case 3:(O==(Bt(),gr)||O==cr)&&x.Fc((cl(),L5))}return R}function yWt(n,i){var l,d,g,y,x,T;for(x=new P_(new b_(n.f.b).a);x.b;){if(y=zE(x),g=v(y.ld(),602),i==1){if(g.Af()!=(ys(),Ef)&&g.Af()!=lp)continue}else if(g.Af()!=(ys(),Ol)&&g.Af()!=ql)continue;switch(d=v(v(y.md(),42).b,86),T=v(v(y.md(),42).a,194),l=T.c,g.Af().g){case 2:d.g.c=n.e.a,d.g.b=u.Math.max(1,d.g.b+l);break;case 1:d.g.c=d.g.c+l,d.g.b=u.Math.max(1,d.g.b-l);break;case 4:d.g.d=n.e.b,d.g.a=u.Math.max(1,d.g.a+l);break;case 3:d.g.d=d.g.d+l,d.g.a=u.Math.max(1,d.g.a-l)}}}function Fkr(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le;for(T=st(Wr,vi,28,i.b.c.length,15,1),O=st(eye,wt,273,i.b.c.length,0,1),R=st(tm,gy,10,i.b.c.length,0,1),q=n.a,J=0,re=q.length;J0&&R[d]&&(ae=PT(n.b,R[d],g)),le=u.Math.max(le,g.c.c.b+ae);for(y=new me(D.e);y.a1)throw _e(new ar(hq));R||(y=zg(i,d.Kc().Pb()),x.Fc(y))}return $9e(n,sMe(n,i,l),x)}function OJ(n,i,l){var d,g,y,x,T,R,O,D;if(tb(n.e,i))R=(al(),v(i,69).xk()?new VX(i,n):new DU(i,n)),dJ(R.c,R.b),WL(R,v(l,16));else{for(D=Iu(n.e.Dh(),i),d=v(n.g,124),x=0;x"}R!=null&&(i.a+=""+R)}else n.e?(T=n.e.zb,T!=null&&(i.a+=""+T)):(i.a+="?",n.b?(i.a+=" super ",cpe(n.b,i)):n.f&&(i.a+=" extends ",cpe(n.f,i)))}function qkr(n){n.b=null,n.a=null,n.o=null,n.q=null,n.v=null,n.w=null,n.B=null,n.p=null,n.Q=null,n.R=null,n.S=null,n.T=null,n.U=null,n.V=null,n.W=null,n.bb=null,n.eb=null,n.ab=null,n.H=null,n.db=null,n.c=null,n.d=null,n.f=null,n.n=null,n.r=null,n.s=null,n.u=null,n.G=null,n.J=null,n.e=null,n.j=null,n.i=null,n.g=null,n.k=null,n.t=null,n.F=null,n.I=null,n.L=null,n.M=null,n.O=null,n.P=null,n.$=null,n.N=null,n.Z=null,n.cb=null,n.K=null,n.D=null,n.A=null,n.C=null,n._=null,n.fb=null,n.X=null,n.Y=null,n.gb=!1,n.hb=!1}function Hkr(n){var i,l,d,g;if(d=wpe((!n.c&&(n.c=uz(xc(n.f))),n.c),0),n.e==0||n.a==0&&n.f!=-1&&n.e<0)return d;if(i=T9e(n)<0?1:0,l=n.e,g=(d.length+1+u.Math.abs(Ps(n.e)),new sk),i==1&&(g.a+="-"),n.e>0)if(l-=d.length-i,l>=0){for(g.a+="0.";l>iw.length;l-=iw.length)f9t(g,iw);QNt(g,iw,Ps(l)),bi(g,(sr(i,d.length+1),d.substr(i)))}else l=i-l,bi(g,af(d,i,Ps(l))),g.a+=".",bi(g,SNe(d,Ps(l)));else{for(bi(g,(sr(i,d.length+1),d.substr(i)));l<-iw.length;l+=iw.length)f9t(g,iw);QNt(g,iw,Ps(-l))}return g.a}function upe(n){var i,l,d,g,y,x,T,R,O;return!(n.k!=(lr(),is)||n.j.c.length<=1||(y=v(oe(n,(qt(),Qa)),101),y==(co(),su))||(g=(g4(),(n.q?n.q:(Fn(),Fn(),Jg))._b(wx)?d=v(oe(n,wx),203):d=v(oe(So(n),fP),203),d),g==mne)||!(g==q5||g==G5)&&(x=We(at(p4(n,pP))),i=v(oe(n,$q),140),!i&&(i=new oIe(x,x,x,x)),O=sc(n,(Bt(),cr)),R=i.d+i.a+(O.gc()-1)*x,R>n.o.b||(l=sc(n,gr),T=i.d+i.a+(l.gc()-1)*x,T>n.o.b)))}function Vkr(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de;i.Ug("Orthogonal edge routing",1),O=We(at(oe(n,(qt(),z5)))),l=We(at(oe(n,$5))),d=We(at(oe(n,dw))),J=new Lde(0,l),de=0,x=new go(n.b,0),T=null,D=null,R=null,q=null;do D=x.b0?(re=(ae-1)*l,T&&(re+=d),D&&(re+=d),rei||Vt(Ht(Et(R,(Z1(),Zq)))))&&(g=0,y+=D.b+l,jn(q.c,D),D=new nOe(y,l),d=new d0e(0,D.f,D,l),aZ(D,d),g=0),d.b.c.length==0||!Vt(Ht(Et(Aa(R),(Z1(),t2e))))&&(R.f>=d.o&&R.f<=d.f||d.a*.5<=R.f&&d.a*1.5>=R.f)?TLe(d,R):(x=new d0e(d.s+d.r+l,D.f,D,l),aZ(D,x),TLe(x,R)),g=R.i+R.g;return jn(q.c,D),q}function fM(n){var i,l,d,g;if(!(n.b==null||n.b.length<=2)&&!n.a){for(i=0,g=0;g=n.b[g+1])g+=2;else if(l0)for(d=new Eh(v(Zi(n.a,y),21)),Fn(),us(d,new E7e(i)),g=new go(y.b,0);g.b0&&d>=-6?d>=0?BU(y,l-Ps(n.e),"."):(t0e(y,i-1,i-1,"0."),BU(y,i+1,Qp(iw,0,-Ps(d)-1))):(l-i>=1&&(BU(y,i,"."),++l),BU(y,l,"E"),d>0&&BU(y,++l,"+"),BU(y,++l,""+sD(xc(d)))),n.g=y.a,n.g))}function t6r(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt;d=We(at(oe(i,(qt(),ZHe)))),yt=v(oe(i,gP),17).a,J=4,g=3,xt=20/yt,re=!1,R=0,x=qi;do{for(y=R!=1,q=R!=0,Mt=0,de=n.a,Me=0,je=de.length;Meyt)?(R=2,x=qi):R==0?(R=1,x=Mt):(R=0,x=Mt)):(re=Mt>=x||x-Mt0?1:mE(isNaN(d),isNaN(0)))>=0^(x0(cg),(u.Math.abs(T)<=cg||T==0||isNaN(T)&&isNaN(0)?0:T<0?-1:T>0?1:mE(isNaN(T),isNaN(0)))>=0)?u.Math.max(T,d):(x0(cg),(u.Math.abs(d)<=cg||d==0||isNaN(d)&&isNaN(0)?0:d<0?-1:d>0?1:mE(isNaN(d),isNaN(0)))>0?u.Math.sqrt(T*T+d*d):-u.Math.sqrt(T*T+d*d))}function V_(n,i){var l,d,g,y,x,T;if(i){if(!n.a&&(n.a=new kK),n.e==2){AK(n.a,i);return}if(i.e==1){for(g=0;g=el?bl(l,SLe(d)):c8(l,d&vs),x=new Zde(10,null,0),Uhr(n.a,x,T-1)):(l=(x.Mm().length+y,new EL),bl(l,x.Mm())),i.e==0?(d=i.Km(),d>=el?bl(l,SLe(d)):c8(l,d&vs)):bl(l,i.Mm()),v(x,530).b=l.a}}function i6r(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de;if(!l.dc()){for(T=0,J=0,d=l.Kc(),ae=v(d.Pb(),17).a;T1&&(R=O.Hg(R,n.a,T));return R.c.length==1?v(Yt(R,R.c.length-1),238):R.c.length==2?jkr(($n(0,R.c.length),v(R.c[0],238)),($n(1,R.c.length),v(R.c[1],238)),x,y):null}function c6r(n,i,l){var d,g,y,x,T,R,O;for(l.Ug("Find roots",1),n.a.c.length=0,g=Ur(i.b,0);g.b!=g.d.c;)d=v(Fr(g),40),d.b.b==0&&(_t(d,(fa(),p2),(Qn(),!0)),Lt(n.a,d));switch(n.a.c.length){case 0:y=new h0e(0,i,"DUMMY_ROOT"),_t(y,(fa(),p2),(Qn(),!0)),_t(y,Sve,!0),pi(i.b,y);break;case 1:break;default:for(x=new h0e(0,i,_ee),R=new me(n.a);R.a=u.Math.abs(d.b)?(d.b=0,y.d+y.a>x.d&&y.dx.c&&y.c0){if(i=new a8e(n.i,n.g),l=n.i,y=l<100?null:new Av(l),n.Tj())for(d=0;d0){for(T=n.g,O=n.i,_D(n),y=O<100?null:new Av(O),d=0;d>13|(n.m&15)<<9,g=n.m>>4&8191,y=n.m>>17|(n.h&255)<<5,x=(n.h&1048320)>>8,T=i.l&8191,R=i.l>>13|(i.m&15)<<9,O=i.m>>4&8191,D=i.m>>17|(i.h&255)<<5,q=(i.h&1048320)>>8,yn=l*T,mn=d*T,Kn=g*T,Xn=y*T,Sr=x*T,R!=0&&(mn+=l*R,Kn+=d*R,Xn+=g*R,Sr+=y*R),O!=0&&(Kn+=l*O,Xn+=d*O,Sr+=g*O),D!=0&&(Xn+=l*D,Sr+=d*D),q!=0&&(Sr+=l*q),re=yn&Hh,ae=(mn&511)<<13,J=re+ae,de=yn>>22,Se=mn>>9,Me=(Kn&262143)<<4,Ue=(Xn&31)<<17,le=de+Se+Me+Ue,yt=Kn>>18,xt=Xn>>5,Mt=(Sr&4095)<<8,je=yt+xt+Mt,le+=J>>22,J&=Hh,je+=le>>22,le&=Hh,je&=rb,Su(J,le,je)}function RWt(n){var i,l,d,g,y,x,T;if(T=v(Yt(n.j,0),12),T.g.c.length!=0&&T.e.c.length!=0)throw _e(new Tl("Interactive layout does not support NORTH/SOUTH ports with incoming _and_ outgoing edges."));if(T.g.c.length!=0){for(y=ka,l=new me(T.g);l.a4)if(n.fk(i)){if(n.al()){if(g=v(i,54),d=g.Eh(),R=d==n.e&&(n.ml()?g.yh(g.Fh(),n.il())==n.jl():-1-g.Fh()==n.Lj()),n.nl()&&!R&&!d&&g.Jh()){for(y=0;y0&&IHt(n,T,q);for(g=new me(q);g.an.d[x.p]&&(l+=bOe(n.b,y)*v(R.b,17).a,Fv(n.a,Nt(y)));for(;!wL(n.a);)XOe(n.b,v(xk(n.a),17).a)}return l}function p6r(n,i){var l,d,g,y,x,T,R,O,D,q;if(D=v(oe(n,(At(),vc)),64),d=v(Yt(n.j,0),12),D==(Bt(),or)?Bs(d,Mr):D==Mr&&Bs(d,or),v(oe(i,(qt(),uw)),181).Hc((ud(),vw))){if(R=We(at(oe(n,uN))),O=We(at(oe(n,hN))),x=We(at(oe(n,J4))),T=v(oe(i,Q4),21),T.Hc((Ah(),ub)))for(l=O,q=n.o.a/2-d.n.a,y=new me(d.f);y.a0&&(O=n.n.a/y);break;case 2:case 4:g=n.i.o.b,g>0&&(O=n.n.b/g)}_t(n,(At(),bx),O)}if(R=n.o,x=n.a,d)x.a=d.a,x.b=d.b,n.d=!0;else if(i!=up&&i!=y2&&T!=lc)switch(T.g){case 1:x.a=R.a/2;break;case 2:x.a=R.a,x.b=R.b/2;break;case 3:x.a=R.a/2,x.b=R.b;break;case 4:x.b=R.b/2}else x.a=R.a/2,x.b=R.b/2}function pM(n){var i,l,d,g,y,x,T,R,O,D;if(n.Pj())if(D=n.Ej(),R=n.Qj(),D>0)if(i=new R9e(n.pj()),l=D,y=l<100?null:new Av(l),GU(n,l,i.g),g=l==1?n.Ij(4,ze(i,0),null,0,R):n.Ij(6,i,null,-1,R),n.Mj()){for(d=new mr(i);d.e!=d.i.gc();)y=n.Oj(wr(d),y);y?(y.nj(g),y.oj()):n.Jj(g)}else y?(y.nj(g),y.oj()):n.Jj(g);else GU(n,n.Ej(),n.Fj()),n.Jj(n.Ij(6,(Fn(),Zo),null,-1,R));else if(n.Mj())if(D=n.Ej(),D>0){for(T=n.Fj(),O=D,GU(n,D,T),y=O<100?null:new Av(O),d=0;d1&&lh(x)*od(x)/2>T[0]){for(y=0;yT[y];)++y;ae=new Qb(le,0,y+1),q=new eZ(ae),D=lh(x)/od(x),R=vpe(q,i,new ek,l,d,g,D),Hi(i1(q.e),R),_k(iI(J,q),SI),re=new Qb(le,y+1,le.c.length),fDe(J,re),le.c.length=0,O=0,I9t(T,T.length,0)}else de=J.b.c.length==0?null:Yt(J.b,0),de!=null&&jfe(J,0),O>0&&(T[O]=T[O-1]),T[O]+=lh(x)*od(x),++O,jn(le.c,x);return le}function _6r(n,i){var l,d,g,y;l=i.b,y=new Eh(l.j),g=0,d=l.j,d.c.length=0,SE(v(M_(n.b,(Bt(),or),(UE(),px)),15),l),g=tG(y,g,new I_t,d),SE(v(M_(n.b,or,l2),15),l),g=tG(y,g,new x_t,d),SE(v(M_(n.b,or,fx),15),l),SE(v(M_(n.b,gr,px),15),l),SE(v(M_(n.b,gr,l2),15),l),g=tG(y,g,new N_t,d),SE(v(M_(n.b,gr,fx),15),l),SE(v(M_(n.b,Mr,px),15),l),g=tG(y,g,new O_t,d),SE(v(M_(n.b,Mr,l2),15),l),g=tG(y,g,new L_t,d),SE(v(M_(n.b,Mr,fx),15),l),SE(v(M_(n.b,cr,px),15),l),g=tG(y,g,new C_t,d),SE(v(M_(n.b,cr,l2),15),l),SE(v(M_(n.b,cr,fx),15),l)}function w6r(n,i,l){var d,g,y,x,T,R,O,D,q,J,re;for(T=new me(i);T.a.5?Se-=x*2*(ae-.5):ae<.5&&(Se+=y*2*(.5-ae)),g=T.d.b,Sede.a-le-D&&(Se=de.a-le-D),T.n.a=i+Se}}function T6r(n){var i,l,d,g,y;if(d=v(oe(n,(qt(),Lu)),171),d==(pf(),u2)){for(l=new yr(_r(Hs(n).a.Kc(),new S));zr(l);)if(i=v(Rr(l),18),!HPt(i))throw _e(new Gb(Rge+rG(n)+"' has its layer constraint set to FIRST_SEPARATE, but has at least one incoming edge. FIRST_SEPARATE nodes must not have incoming edges."))}else if(d==Y4){for(y=new yr(_r(os(n).a.Kc(),new S));zr(y);)if(g=v(Rr(y),18),!HPt(g))throw _e(new Gb(Rge+rG(n)+"' has its layer constraint set to LAST_SEPARATE, but has at least one outgoing edge. LAST_SEPARATE nodes must not have outgoing edges."))}}function kG(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae;if(n.e&&n.c.c>19&&(i=$8(i),R=!R),x=cTr(i),y=!1,g=!1,d=!1,n.h==FG&&n.m==0&&n.l==0)if(g=!0,y=!0,x==-1)n=mIt((E8(),JUe)),d=!0,R=!R;else return T=PMe(n,x),R&&u0e(T),l&&(i2=Su(0,0,0)),T;else n.h>>19&&(y=!0,n=$8(n),d=!0,R=!R);return x!=-1?Fbr(n,x,R,y,l):wDe(n,i)<0?(l&&(y?i2=$8(n):i2=Su(n.l,n.m,n.h)),Su(0,0,0)):sAr(d?n:Su(n.l,n.m,n.h),i,R,y,g,l)}function ppe(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae;if(x=n.e,R=i.e,x==0)return i;if(R==0)return n;if(y=n.d,T=i.d,y+T==2)return l=Us(n.a[0],ul),d=Us(i.a[0],ul),x==R?(D=zo(l,d),ae=ti(D),re=ti(Dv(D,32)),re==0?new qm(x,ae):new T_(x,2,Te(xe(Wr,1),vi,28,15,[ae,re]))):(eg(),bX(x<0?zf(d,l):zf(l,d),0)?Yv(x<0?zf(d,l):zf(l,d)):cD(Yv(ty(x<0?zf(d,l):zf(l,d)))));if(x==R)J=x,q=y>=T?xfe(n.a,y,i.a,T):xfe(i.a,T,n.a,y);else{if(g=y!=T?y>T?1:-1:J9e(n.a,i.a,y),g==0)return eg(),KM;g==1?(J=x,q=wfe(n.a,y,i.a,T)):(J=R,q=wfe(i.a,T,n.a,y))}return O=new T_(J,q.length,q),gD(O),O}function A6r(n,i){var l,d,g,y,x,T,R;if(!(n.g>i.f||i.g>n.f)){for(l=0,d=0,x=n.w.a.ec().Kc();x.Ob();)g=v(x.Pb(),12),E0e(ac(Te(xe(Vs,1),kt,8,0,[g.i.n,g.n,g.a])).b,i.g,i.f)&&++l;for(T=n.r.a.ec().Kc();T.Ob();)g=v(T.Pb(),12),E0e(ac(Te(xe(Vs,1),kt,8,0,[g.i.n,g.n,g.a])).b,i.g,i.f)&&--l;for(R=i.w.a.ec().Kc();R.Ob();)g=v(R.Pb(),12),E0e(ac(Te(xe(Vs,1),kt,8,0,[g.i.n,g.n,g.a])).b,n.g,n.f)&&++d;for(y=i.r.a.ec().Kc();y.Ob();)g=v(y.Pb(),12),E0e(ac(Te(xe(Vs,1),kt,8,0,[g.i.n,g.n,g.a])).b,n.g,n.f)&&--d;l=0)return l;switch(RE(Al(n,l))){case 2:{if(An("",ay(n,l.qk()).xe())){if(R=rz(Al(n,l)),T=d8(Al(n,l)),D=UMe(n,i,R,T),D)return D;for(g=mPe(n,i),x=0,q=g.gc();x1)throw _e(new ar(hq));for(D=Iu(n.e.Dh(),i),d=v(n.g,124),x=0;x1,O=new V1(J.b);nc(O.a)||nc(O.b);)R=v(nc(O.a)?pe(O.a):pe(O.b),18),q=R.c==J?R.d:R.c,u.Math.abs(ac(Te(xe(Vs,1),kt,8,0,[q.i.n,q.n,q.a])).b-x.b)>1&&p5r(n,R,x,y,J)}}function L6r(n){var i,l,d,g,y,x;if(g=new go(n.e,0),d=new go(n.a,0),n.d)for(l=0;lcme;){for(y=i,x=0;u.Math.abs(i-y)0),g.a.Xb(g.c=--g.b),WAr(n,n.b-x,y,d,g),Tr(g.b0),d.a.Xb(d.c=--d.b)}if(!n.d)for(l=0;l0?(n.f[D.p]=re/(D.e.c.length+D.g.c.length),n.c=u.Math.min(n.c,n.f[D.p]),n.b=u.Math.max(n.b,n.f[D.p])):T&&(n.f[D.p]=re)}}function M6r(n){n.b=null,n.bb=null,n.fb=null,n.qb=null,n.a=null,n.c=null,n.d=null,n.e=null,n.f=null,n.n=null,n.M=null,n.L=null,n.Q=null,n.R=null,n.K=null,n.db=null,n.eb=null,n.g=null,n.i=null,n.j=null,n.k=null,n.gb=null,n.o=null,n.p=null,n.q=null,n.r=null,n.$=null,n.ib=null,n.S=null,n.T=null,n.t=null,n.s=null,n.u=null,n.v=null,n.w=null,n.B=null,n.A=null,n.C=null,n.D=null,n.F=null,n.G=null,n.H=null,n.I=null,n.J=null,n.P=null,n.Z=null,n.U=null,n.V=null,n.W=null,n.X=null,n.Y=null,n._=null,n.ab=null,n.cb=null,n.hb=null,n.nb=null,n.lb=null,n.mb=null,n.ob=null,n.pb=null,n.jb=null,n.kb=null,n.N=!1,n.O=!1}function P6r(n,i,l){var d,g,y,x;for(l.Ug("Graph transformation ("+n.a+")",1),x=DE(i.a),y=new me(i.b);y.a=T.b.c)&&(T.b=i),(!T.c||i.c<=T.c.c)&&(T.d=T.c,T.c=i),(!T.e||i.d>=T.e.d)&&(T.e=i),(!T.f||i.d<=T.f.d)&&(T.f=i);return d=new VZ((B8(),dx)),hz(n,Ynn,new wh(Te(xe(Sq,1),Yn,382,0,[d]))),x=new VZ(U4),hz(n,Vnn,new wh(Te(xe(Sq,1),Yn,382,0,[x]))),g=new VZ($4),hz(n,Hnn,new wh(Te(xe(Sq,1),Yn,382,0,[g]))),y=new VZ(A5),hz(n,qnn,new wh(Te(xe(Sq,1),Yn,382,0,[y]))),$1e(d.c,dx),$1e(g.c,$4),$1e(y.c,A5),$1e(x.c,U4),T.a.c.length=0,xs(T.a,d.c),xs(T.a,ff(g.c)),xs(T.a,y.c),xs(T.a,ff(x.c)),T}function $6r(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae;for(i.Ug(HQt,1),re=We(at(Et(n,(Vg(),r3)))),x=We(at(Et(n,(Z1(),OP)))),T=v(Et(n,NP),107),x9e((!n.a&&(n.a=new vt(Pi,n,10,11)),n.a)),D=TWt((!n.a&&(n.a=new vt(Pi,n,10,11)),n.a),re,x),!n.a&&(n.a=new vt(Pi,n,10,11)),O=new me(D);O.a0&&(n.a=R+(re-1)*y,i.c.b+=n.a,i.f.b+=n.a)),ae.a.gc()!=0&&(J=new Lde(1,y),re=qPe(J,i,ae,le,i.f.b+R-i.c.b),re>0&&(i.f.b+=R+(re-1)*y))}function OWt(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je;for(D=We(at(oe(n,(qt(),xx)))),d=We(at(oe(n,lVe))),J=new cue,_t(J,xx,D+d),O=i,Se=O.d,le=O.c.i,Me=O.d.i,de=d8e(le.c),Ue=d8e(Me.c),g=new Ot,q=de;q<=Ue;q++)T=new Jm(n),g_(T,(lr(),Ws)),_t(T,(At(),Ji),O),_t(T,Qa,(co(),su)),_t(T,hne,J),re=v(Yt(n.b,q),30),q==de?m4(T,re.a.c.length-l,re):po(T,re),je=We(at(oe(O,vy))),je<0&&(je=0,_t(O,vy,je)),T.o.b=je,ae=u.Math.floor(je/2),x=new zc,Bs(x,(Bt(),cr)),rc(x,T),x.n.b=ae,R=new zc,Bs(R,gr),rc(R,T),R.n.b=ae,lo(O,x),y=new NE,Ul(y,O),_t(y,Nl,null),Uo(y,R),lo(y,Se),kwr(T,O,y),jn(g.c,y),O=y;return g}function gpe(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue;for(R=v(hy(n,(Bt(),cr)).Kc().Pb(),12).e,re=v(hy(n,gr).Kc().Pb(),12).g,T=R.c.length,Ue=q1(v(Yt(n.j,0),12));T-- >0;){for(le=($n(0,R.c.length),v(R.c[0],18)),g=($n(0,re.c.length),v(re.c[0],18)),Me=g.d.e,y=$l(Me,g,0),c1r(le,g.d,y),Uo(g,null),lo(g,null),ae=le.a,i&&pi(ae,new Wo(Ue)),d=Ur(g.a,0);d.b!=d.d.c;)l=v(Fr(d),8),pi(ae,new Wo(l));for(Se=le.b,J=new me(g.b);J.ax)&&Es(n.b,v(de.b,18));++T}y=x}}}function UPe(n,i){var l;if(i==null||An(i,Ku)||i.length==0&&n.k!=(dy(),k6))return null;switch(n.k.g){case 1:return UZ(i,BI)?(Qn(),HI):UZ(i,Ame)?(Qn(),a2):null;case 2:try{return Nt(Nd(i,Po,qi))}catch(d){if(d=Da(d),$e(d,130))return null;throw _e(d)}case 4:try{return y4(i)}catch(d){if(d=Da(d),$e(d,130))return null;throw _e(d)}case 3:return i;case 5:return JUt(n),dVt(n,i);case 6:return JUt(n),U3r(n,n.a,i);case 7:try{return l=Q4r(n),l.cg(i),l}catch(d){if(d=Da(d),$e(d,33))return null;throw _e(d)}default:throw _e(new Tl("Invalid type set for this layout option."))}}function zPe(n){var i;switch(n.d){case 1:{if(n.Sj())return n.o!=-2;break}case 2:{if(n.Sj())return n.o==-2;break}case 3:case 5:case 4:case 6:case 7:return n.o>-2;default:return!1}switch(i=n.Rj(),n.p){case 0:return i!=null&&Vt(Ht(i))!=qL(n.k,0);case 1:return i!=null&&v(i,222).a!=ti(n.k)<<24>>24;case 2:return i!=null&&v(i,180).a!=(ti(n.k)&vs);case 6:return i!=null&&qL(v(i,168).a,n.k);case 5:return i!=null&&v(i,17).a!=ti(n.k);case 7:return i!=null&&v(i,191).a!=ti(n.k)<<16>>16;case 3:return i!=null&&We(at(i))!=n.j;case 4:return i!=null&&v(i,161).a!=n.j;default:return i==null?n.n!=null:!Yi(i,n.n)}}function RG(n,i,l){var d,g,y,x;return n.ol()&&n.nl()&&(x=Ade(n,v(l,58)),Ze(x)!==Ze(l))?(n.xj(i),n.Dj(i,PBt(n,i,x)),n.al()&&(y=(g=v(l,54),n.ml()?n.kl()?g.Th(n.b,sl(v(qn(Vu(n.b),n.Lj()),19)).n,v(qn(Vu(n.b),n.Lj()).Hk(),29).kk(),null):g.Th(n.b,Ma(g.Dh(),sl(v(qn(Vu(n.b),n.Lj()),19))),null,null):g.Th(n.b,-1-n.Lj(),null,null)),!v(x,54).Ph()&&(y=(d=v(x,54),n.ml()?n.kl()?d.Rh(n.b,sl(v(qn(Vu(n.b),n.Lj()),19)).n,v(qn(Vu(n.b),n.Lj()).Hk(),29).kk(),y):d.Rh(n.b,Ma(d.Dh(),sl(v(qn(Vu(n.b),n.Lj()),19))),null,y):d.Rh(n.b,-1-n.Lj(),null,y))),y&&y.oj()),id(n.b)&&n.Jj(n.Ij(9,l,x,i,!1)),x):l}function LWt(n){var i,l,d,g,y,x,T,R,O,D;for(d=new Ot,x=new me(n.e.a);x.a0&&(x=u.Math.max(x,F$t(n.C.b+d.d.b,g))),D=d,q=g,J=y;n.C&&n.C.c>0&&(re=J+n.C.c,O&&(re+=D.d.c),x=u.Math.max(x,($1(),x0(ep),u.Math.abs(q-1)<=ep||q==1||isNaN(q)&&isNaN(1)?0:re/(1-q)))),l.n.b=0,l.a.a=x}function MWt(n,i){var l,d,g,y,x,T,R,O,D,q,J,re;if(l=v(yl(n.b,i),127),R=v(v(Zi(n.r,i),21),87),R.dc()){l.n.d=0,l.n.a=0;return}for(O=n.u.Hc((Ah(),ub)),x=0,n.A.Hc((ud(),vw))&&ujt(n,i),T=R.Kc(),D=null,J=0,q=0;T.Ob();)d=v(T.Pb(),117),y=We(at(d.b.of((IX(),ite)))),g=d.b.Mf().b,D?(re=q+D.d.a+n.w+d.d.d,x=u.Math.max(x,($1(),x0(ep),u.Math.abs(J-y)<=ep||J==y||isNaN(J)&&isNaN(y)?0:re/(y-J)))):n.C&&n.C.d>0&&(x=u.Math.max(x,F$t(n.C.d+d.d.d,y))),D=d,J=y,q=g;n.C&&n.C.a>0&&(re=q+n.C.a,O&&(re+=D.d.a),x=u.Math.max(x,($1(),x0(ep),u.Math.abs(J-1)<=ep||J==1||isNaN(J)&&isNaN(1)?0:re/(1-J)))),l.n.d=0,l.a.b=x}function G6r(n,i,l,d,g,y,x,T){var R,O,D,q,J,re,ae,le,de,Se;if(ae=!1,O=WMe(l.q,i.f+i.b-l.q.f),re=d.f>i.b&&T,Se=g-(l.q.e+O-x),q=(R=dM(d,Se,!1),R.a),re&&q>d.f)return!1;if(re){for(J=0,de=new me(i.d);de.a=($n(y,n.c.length),v(n.c[y],186)).e,!re&&q>i.b&&!D)?!1:((D||re||q<=i.b)&&(D&&q>i.b?(l.d=q,_z(l,wHt(l,q))):($qt(l.q,O),l.c=!0),_z(d,g-(l.s+l.r)),nG(d,l.q.e+l.q.d,i.f),aZ(i,d),n.c.length>y&&(aG(($n(y,n.c.length),v(n.c[y],186)),d),($n(y,n.c.length),v(n.c[y],186)).a.c.length==0&&Jb(n,y)),ae=!0),ae)}function PWt(n,i,l){var d,g,y,x,T,R;for(this.g=n,T=i.d.length,R=l.d.length,this.d=st(tm,gy,10,T+R,0,1),x=0;x0?Ufe(this,this.f/this.a):U1(i.g,i.d[0]).a!=null&&U1(l.g,l.d[0]).a!=null?Ufe(this,(We(U1(i.g,i.d[0]).a)+We(U1(l.g,l.d[0]).a))/2):U1(i.g,i.d[0]).a!=null?Ufe(this,U1(i.g,i.d[0]).a):U1(l.g,l.d[0]).a!=null&&Ufe(this,U1(l.g,l.d[0]).a)}function q6r(n,i){var l,d,g,y,x,T,R,O,D,q;for(n.a=new gLt(Tbr(zP)),d=new me(i.a);d.a=1&&(de-x>0&&q>=0?(R.n.a+=le,R.n.b+=y*x):de-x<0&&D>=0&&(R.n.a+=le*de,R.n.b+=y));n.o.a=i.a,n.o.b=i.b,_t(n,(qt(),uw),(ud(),d=v(n1(WP),9),new nf(d,v(v0(d,d.length),9),0)))}function Y6r(n,i,l,d,g,y){var x;if(!(i==null||!L0e(i,RKe,IKe)))throw _e(new ar("invalid scheme: "+i));if(!n&&!(l!=null&&qp(l,Wu(35))==-1&&l.length>0&&(sr(0,l.length),l.charCodeAt(0)!=47)))throw _e(new ar("invalid opaquePart: "+l));if(n&&!(i!=null&&mU(dre,i.toLowerCase()))&&!(l==null||!L0e(l,ZP,JP)))throw _e(new ar(yJt+l));if(n&&i!=null&&mU(dre,i.toLowerCase())&&!TEr(l))throw _e(new ar(yJt+l));if(!Nvr(d))throw _e(new ar("invalid device: "+d));if(!gyr(g))throw x=g==null?"invalid segments: null":"invalid segment: "+hyr(g),_e(new ar(x));if(!(y==null||qp(y,Wu(35))==-1))throw _e(new ar("invalid query: "+y))}function j6r(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se;if(l.Ug("Network simplex layering",1),n.b=i,Se=v(oe(i,(qt(),gP)),17).a*4,de=n.b.a,de.c.length<1){l.Vg();return}for(y=HCr(n,de),le=null,g=Ur(y,0);g.b!=g.d.c;){for(d=v(Fr(g),15),T=Se*Ps(u.Math.sqrt(d.gc())),x=aAr(d),Q1e(oRe(Vir(lRe(sde(x),T),le),!0),l.eh(1)),J=n.b.b,ae=new me(x.a);ae.a1)for(le=st(Wr,vi,28,n.b.b.c.length,15,1),q=0,O=new me(n.b.b);O.a0){zZ(n,l,0),l.a+=String.fromCharCode(d),g=g2r(i,y),zZ(n,l,g),y+=g-1;continue}d==39?y+10&&ae.a<=0){R.c.length=0,jn(R.c,ae);break}re=ae.i-ae.d,re>=T&&(re>T&&(R.c.length=0,T=re),jn(R.c,ae))}R.c.length!=0&&(x=v(Yt(R,KZ(g,R.c.length)),118),Ue.a.Bc(x)!=null,x.g=D++,RPe(x,i,l,d),R.c.length=0)}for(de=n.c.length+1,J=new me(n);J.aSs||i.o==fw&&D=T&&g<=R)T<=g&&y<=R?(l[D++]=g,l[D++]=y,d+=2):T<=g?(l[D++]=g,l[D++]=R,n.b[d]=R+1,x+=2):y<=R?(l[D++]=T,l[D++]=y,d+=2):(l[D++]=T,l[D++]=R,n.b[d]=R+1);else if(RZv)&&T<10);uRe(n.c,new tE),UWt(n),Ghr(n.c),B6r(n.f)}function n7r(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le;for(l=v(oe(n,(qt(),Qa)),101),x=n.f,y=n.d,T=x.a+y.b+y.c,R=0-y.d-n.c.b,D=x.b+y.d+y.a-n.c.b,O=new Ot,q=new Ot,g=new me(i);g.a=2){for(R=Ur(l,0),x=v(Fr(R),8),T=v(Fr(R),8);T.a0&&Uz(O,!0,(ys(),ql)),T.k==(lr(),hs)&&SLt(O),Ni(n.f,T,i)}}function a7r(n){var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je;for(g=v(oe(n,(fa(),AP)),27),O=qi,D=qi,T=Po,R=Po,Ue=Ur(n.b,0);Ue.b!=Ue.d.c;)Se=v(Fr(Ue),40),re=Se.e,ae=Se.f,O=u.Math.min(O,re.a-ae.a/2),D=u.Math.min(D,re.b-ae.b/2),T=u.Math.max(T,re.a+ae.a/2),R=u.Math.max(R,re.b+ae.b/2);for(J=v(Et(g,(pc(),vYe)),107),Me=Ur(n.b,0);Me.b!=Me.d.c;)Se=v(Fr(Me),40),q=oe(Se,AP),$e(q,207)&&(y=v(q,27),ef(y,Se.e.a,Se.e.b),yG(y,Se));for(de=Ur(n.a,0);de.b!=de.d.c;)le=v(Fr(de),65),d=v(oe(le,AP),74),d&&(i=le.a,l=o5(d,!0,!0),TG(i,l));je=T-O+(J.b+J.c),x=R-D+(J.d+J.a),Vt(Ht(Et(g,(Ei(),i3))))||JE(g,je,x,!1,!1),sa(g,Z5,je-(J.b+J.c)),sa(g,Q5,x-(J.d+J.a))}function GWt(n,i){var l,d,g,y,x,T,R,O,D,q;for(R=!0,g=0,O=n.g[i.p],D=i.o.b+n.o,l=n.d[i.p][2],of(n.b,O,Nt(v(Yt(n.b,O),17).a-1+l)),of(n.c,O,We(at(Yt(n.c,O)))-D+l*n.f),++O,O>=n.j?(++n.j,Lt(n.b,Nt(1)),Lt(n.c,D)):(d=n.d[i.p][1],of(n.b,O,Nt(v(Yt(n.b,O),17).a+1-d)),of(n.c,O,We(at(Yt(n.c,O)))+D-d*n.f)),(n.r==(qf(),Uq)&&(v(Yt(n.b,O),17).a>n.k||v(Yt(n.b,O-1),17).a>n.k)||n.r==zq&&(We(at(Yt(n.c,O)))>n.n||We(at(Yt(n.c,O-1)))>n.n))&&(R=!1),x=new yr(_r(Hs(i).a.Kc(),new S));zr(x);)y=v(Rr(x),18),T=y.c.i,n.g[T.p]==O&&(q=GWt(n,T),g=g+v(q.a,17).a,R=R&&Vt(Ht(q.b)));return n.g[i.p]=O,g=g+n.d[i.p][0],new Ms(Nt(g),(Qn(),!!R))}function qWt(n,i){var l,d,g,y,x;l=We(at(oe(i,(qt(),O0)))),l<2&&_t(i,O0,2),d=v(oe(i,Pd),88),d==(ys(),cp)&&_t(i,Pd,IZ(i)),g=v(oe(i,ssn),17),g.a==0?_t(i,(At(),x6),new M0e):_t(i,(At(),x6),new LQ(g.a)),y=Ht(oe(i,dP)),y==null&&_t(i,dP,(Qn(),Ze(oe(i,lb))===Ze((Xm(),xN)))),ts(new xn(null,new Nn(i.a,16)),new _7e(n)),ts(ic(new xn(null,new Nn(i.b,16)),new rd),new w7e(n)),x=new BWt(i),_t(i,(At(),B5),x),nz(n.a),a1(n.a,(Mo(),N0),v(oe(i,ow),188)),a1(n.a,em,v(oe(i,cw),188)),a1(n.a,qc,v(oe(i,hP),188)),a1(n.a,ru,v(oe(i,cne),188)),a1(n.a,Gl,abr(v(oe(i,lb),223))),p8e(n.a,e8r(i)),_t(i,Bye,kG(n.a,i))}function qPe(n,i,l,d,g){var y,x,T,R,O,D,q,J,re,ae,le,de,Se;for(q=new Br,x=new Ot,GHt(n,l,n.d.Ag(),x,q),GHt(n,d,n.d.Bg(),x,q),n.b=.2*(le=jVt(ic(new xn(null,new Nn(x,16)),new Jwt)),de=jVt(ic(new xn(null,new Nn(x,16)),new eEt)),u.Math.min(le,de)),y=0,T=0;T=2&&(Se=dYt(x,!0,J),!n.e&&(n.e=new xAt(n)),h2r(n.e,Se,x,n.b)),Kqt(x,J),h7r(x),re=-1,D=new me(x);D.aT)}function HWt(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me;for(O=ka,D=ka,T=Ss,R=Ss,J=new me(i.i);J.a-1){for(g=Ur(T,0);g.b!=g.d.c;)d=v(Fr(g),131),d.v=x;for(;T.b!=0;)for(d=v(d1e(T,0),131),l=new me(d.i);l.a-1){for(y=new me(T);y.a0)&&(s7e(R,u.Math.min(R.o,g.o-1)),yK(R,R.i-1),R.i==0&&jn(T.c,R))}}function YWt(n,i,l,d,g){var y,x,T,R;return R=ka,x=!1,T=DPe(n,$s(new Ct(i.a,i.b),n),Hi(new Ct(l.a,l.b),g),$s(new Ct(d.a,d.b),l)),y=!!T&&!(u.Math.abs(T.a-n.a)<=sx&&u.Math.abs(T.b-n.b)<=sx||u.Math.abs(T.a-i.a)<=sx&&u.Math.abs(T.b-i.b)<=sx),T=DPe(n,$s(new Ct(i.a,i.b),n),l,g),T&&((u.Math.abs(T.a-n.a)<=sx&&u.Math.abs(T.b-n.b)<=sx)==(u.Math.abs(T.a-i.a)<=sx&&u.Math.abs(T.b-i.b)<=sx)||y?R=u.Math.min(R,hD($s(T,l))):x=!0),T=DPe(n,$s(new Ct(i.a,i.b),n),d,g),T&&(x||(u.Math.abs(T.a-n.a)<=sx&&u.Math.abs(T.b-n.b)<=sx)==(u.Math.abs(T.a-i.a)<=sx&&u.Math.abs(T.b-i.b)<=sx)||y)&&(R=u.Math.min(R,hD($s(T,d)))),R}function jWt(n){dE(n,new H_(DK(cE(sE(lE(oE(new f_,e2),HXt),"Minimizes the stress within a layout using stress majorization. Stress exists if the euclidean distance between a pair of nodes doesn't match their graph theoretic distance, that is, the shortest path between the two nodes. The method allows to specify individual edge lengths."),new Fh),Nu))),It(n,e2,SM,zt(gGe)),It(n,e2,QJ,(Qn(),!0)),It(n,e2,y5,zt(Rnn)),It(n,e2,l6,zt(Inn)),It(n,e2,o6,zt(Nnn)),It(n,e2,II,zt(knn)),It(n,e2,TM,zt(bGe)),It(n,e2,NI,zt(Onn)),It(n,e2,UBe,zt(pGe)),It(n,e2,GBe,zt(dGe)),It(n,e2,qBe,zt(fGe)),It(n,e2,HBe,zt(mGe)),It(n,e2,zBe,zt(fte))}function d7r(n){var i,l,d,g,y,x,T,R;for(i=null,d=new me(n);d.a0&&l.c==0&&(!i&&(i=new Ot),jn(i.c,l));if(i)for(;i.c.length!=0;){if(l=v(Jb(i,0),239),l.b&&l.b.c.length>0){for(y=(!l.b&&(l.b=new Ot),new me(l.b));y.a$l(n,l,0))return new Ms(g,l)}else if(We(U1(g.g,g.d[0]).a)>We(U1(l.g,l.d[0]).a))return new Ms(g,l)}for(T=(!l.e&&(l.e=new Ot),l.e).Kc();T.Ob();)x=v(T.Pb(),239),R=(!x.b&&(x.b=new Ot),x.b),n4(0,R.c.length),OL(R.c,0,l),x.c==R.c.length&&jn(i.c,x)}return null}function f7r(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se;for(i.Ug("Interactive crossing minimization",1),x=0,y=new me(n.b);y.a0&&(l+=R.n.a+R.o.a/2,++q),ae=new me(R.j);ae.a0&&(l/=q),Se=st(ao,_l,28,d.a.c.length,15,1),T=0,O=new me(d.a);O.a=T&&g<=R)T<=g&&y<=R?d+=2:T<=g?(n.b[d]=R+1,x+=2):y<=R?(l[D++]=g,l[D++]=T-1,d+=2):(l[D++]=g,l[D++]=T-1,n.b[d]=R+1,x+=2);else if(R2?(D=new Ot,xs(D,new Qb(Se,1,Se.b)),y=DKt(D,Ue+n.a),Me=new P1e(y),Ul(Me,i),jn(l.c,Me)):d?Me=v(br(n.b,Hg(i)),272):Me=v(br(n.b,jv(i)),272),R=Hg(i),d&&(R=jv(i)),x=dSr(de,R),O=Ue+n.a,x.a?(O+=u.Math.abs(de.b-q.b),le=new Ct(q.a,(q.b+de.b)/2)):(O+=u.Math.abs(de.a-q.a),le=new Ct((q.a+de.a)/2,q.b)),d?Ni(n.d,i,new oDe(Me,x,le,O)):Ni(n.c,i,new oDe(Me,x,le,O)),Ni(n.b,i,Me),ae=(!i.n&&(i.n=new vt(wl,i,1,7)),i.n),re=new mr(ae);re.e!=re.i.gc();)J=v(wr(re),135),g=wG(n,J,!0,0,0),jn(l.c,g)}function p7r(n){var i,l,d,g,y,x,T;if(!n.A.dc()){if(n.A.Hc((ud(),mH))&&(v(yl(n.b,(Bt(),or)),127).k=!0,v(yl(n.b,Mr),127).k=!0,i=n.q!=(co(),sm)&&n.q!=su,r7e(v(yl(n.b,gr),127),i),r7e(v(yl(n.b,cr),127),i),r7e(n.g,i),n.A.Hc(vw)&&(v(yl(n.b,or),127).j=!0,v(yl(n.b,Mr),127).j=!0,v(yl(n.b,gr),127).k=!0,v(yl(n.b,cr),127).k=!0,n.g.k=!0)),n.A.Hc(gH))for(n.a.j=!0,n.a.k=!0,n.g.j=!0,n.g.k=!0,T=n.B.Hc((qh(),KP)),g=H0e(),y=0,x=g.length;y0),v(D.a.Xb(D.c=--D.b),18));y!=d&&D.b>0;)n.a[y.p]=!0,n.a[d.p]=!0,y=(Tr(D.b>0),v(D.a.Xb(D.c=--D.b),18));D.b>0&&ld(D)}}function KWt(n,i,l){var d,g,y,x,T,R,O,D,q,J,re;if(!n.b)return!1;for(x=null,J=null,R=new Cfe(null,null),g=1,R.a[1]=n.b,q=R;q.a[g];)O=g,T=J,J=q,q=q.a[g],d=n.a.Ne(i,q.d),g=d<0?0:1,d==0&&(!l.c||Ec(q.e,l.d))&&(x=q),!(q&&q.b)&&!US(q.a[g])&&(US(q.a[1-g])?J=J.a[O]=dZ(q,g):US(q.a[1-g])||(re=J.a[1-O],re&&(!US(re.a[1-O])&&!US(re.a[O])?(J.b=!1,re.b=!0,q.b=!0):(y=T.a[1]==J?1:0,US(re.a[O])?T.a[y]=TMt(J,O):US(re.a[1-O])&&(T.a[y]=dZ(J,O)),q.b=T.a[y].b=!0,T.a[y].a[0].b=!1,T.a[y].a[1].b=!1))));return x&&(l.b=!0,l.d=x.e,q!=x&&(D=new Cfe(q.d,q.e),bxr(n,R,x,D),J==x&&(J=D)),J.a[J.a[1]==q?1:0]=q.a[q.a[0]?0:1],--n.c),n.b=R.a[1],n.b&&(n.b.b=!1),l.b}function b7r(n){var i,l,d,g,y,x,T,R,O,D,q,J;for(g=new me(n.a.a.b);g.a0?g-=864e5:g+=864e5,R=new Z8e(zo(xc(i.q.getTime()),g))),D=new sk,O=n.a.length,y=0;y=97&&d<=122||d>=65&&d<=90){for(x=y+1;x=O)throw _e(new ar("Missing trailing '"));x+1=14&&D<=16))?i.a._b(d)?(l.a?bi(l.a,l.b):l.a=new Ed(l.d),VL(l.a,"[...]")):(T=L_(d),O=new nD(i),Hm(l,QWt(T,O))):$e(d,183)?Hm(l,KSr(v(d,183))):$e(d,195)?Hm(l,DEr(v(d,195))):$e(d,201)?Hm(l,Hxr(v(d,201))):$e(d,2111)?Hm(l,MEr(v(d,2111))):$e(d,53)?Hm(l,WSr(v(d,53))):$e(d,376)?Hm(l,d4r(v(d,376))):$e(d,846)?Hm(l,jSr(v(d,846))):$e(d,109)&&Hm(l,YSr(v(d,109))):Hm(l,d==null?Ku:Kl(d));return l.a?l.e.length==0?l.a.a:l.a.a+(""+l.e):l.c}function mI(n,i){var l,d,g,y;y=n.F,i==null?(n.F=null,q8(n,null)):(n.F=(hr(i),i),d=qp(i,Wu(60)),d!=-1?(g=(mo(0,d,i.length),i.substr(0,d)),qp(i,Wu(46))==-1&&!An(g,Zk)&&!An(g,$M)&&!An(g,Mee)&&!An(g,UM)&&!An(g,zM)&&!An(g,GM)&&!An(g,qM)&&!An(g,HM)&&(g=NJt),l=AX(i,Wu(62)),l!=-1&&(g+=""+(sr(l+1,i.length+1),i.substr(l+1))),q8(n,g)):(g=i,qp(i,Wu(46))==-1&&(d=qp(i,Wu(91)),d!=-1&&(g=(mo(0,d,i.length),i.substr(0,d))),!An(g,Zk)&&!An(g,$M)&&!An(g,Mee)&&!An(g,UM)&&!An(g,zM)&&!An(g,GM)&&!An(g,qM)&&!An(g,HM)?(g=NJt,d!=-1&&(g+=""+(sr(d,i.length+1),i.substr(d)))):g=i),q8(n,g),g==i&&(n.F=n.D))),n.Db&4&&!(n.Db&1)&&Vi(n,new js(n,1,5,y,i))}function ZWt(n,i){var l,d,g,y,x,T,R,O,D,q;if(R=i.length-1,T=(sr(R,i.length),i.charCodeAt(R)),T==93){if(x=qp(i,Wu(91)),x>=0)return g=Evr(n,(mo(1,x,i.length),i.substr(1,x-1))),D=(mo(x+1,R,i.length),i.substr(x+1,R-(x+1))),WRr(n,D,g)}else{if(l=-1,ize==null&&(ize=new RegExp("\\d")),ize.test(String.fromCharCode(T))&&(l=mIe(i,Wu(46),R-1),l>=0)){d=v(_fe(n,UFt(n,(mo(1,l,i.length),i.substr(1,l-1))),!1),61),O=0;try{O=Nd((sr(l+1,i.length+1),i.substr(l+1)),Po,qi)}catch(J){throw J=Da(J),$e(J,130)?(y=J,_e(new VQ(y))):_e(J)}if(O>16==-10?l=v(n.Cb,292).Yk(i,l):n.Db>>16==-15&&(!i&&(i=(Pn(),dp)),!O&&(O=(Pn(),dp)),n.Cb.Yh()&&(R=new Vm(n.Cb,1,13,O,i,uy(Uh(v(n.Cb,62)),n),!1),l?l.nj(R):l=R));else if($e(n.Cb,90))n.Db>>16==-23&&($e(i,90)||(i=(Pn(),n0)),$e(O,90)||(O=(Pn(),n0)),n.Cb.Yh()&&(R=new Vm(n.Cb,1,10,O,i,uy(Uc(v(n.Cb,29)),n),!1),l?l.nj(R):l=R));else if($e(n.Cb,457))for(T=v(n.Cb,850),x=(!T.b&&(T.b=new SK(new Due)),T.b),y=(d=new P_(new b_(x.a).a),new TK(d));y.a.b;)g=v(zE(y.a).ld(),89),l=bI(g,gJ(g,T),l)}return l}function E7r(n,i){var l,d,g,y,x,T,R,O,D,q,J;for(x=Vt(Ht(Et(n,(qt(),K4)))),J=v(Et(n,Q4),21),R=!1,O=!1,q=new mr((!n.c&&(n.c=new vt(Oh,n,9,9)),n.c));q.e!=q.i.gc()&&(!R||!O);){for(y=v(wr(q),123),T=0,g=$g(Ad(Te(xe(Md,1),Yn,20,0,[(!y.d&&(y.d=new Gn(ss,y,8,5)),y.d),(!y.e&&(y.e=new Gn(ss,y,7,4)),y.e)])));zr(g)&&(d=v(Rr(g),74),D=x&&KE(d)&&Vt(Ht(Et(d,lw))),l=IWt((!d.b&&(d.b=new Gn(Lr,d,4,7)),d.b),y)?n==Aa(zl(v(ze((!d.c&&(d.c=new Gn(Lr,d,5,8)),d.c),0),84))):n==Aa(zl(v(ze((!d.b&&(d.b=new Gn(Lr,d,4,7)),d.b),0),84))),!((D||l)&&(++T,T>1))););(T>0||J.Hc((Ah(),ub))&&(!y.n&&(y.n=new vt(wl,y,1,7)),y.n).i>0)&&(R=!0),T>1&&(O=!0)}R&&i.Fc((cl(),wf)),O&&i.Fc((cl(),iP))}function JWt(n){var i,l,d,g,y,x,T,R,O,D,q,J;if(J=v(Et(n,(Ei(),mw)),21),J.dc())return null;if(T=0,x=0,J.Hc((ud(),mH))){for(D=v(Et(n,UP),101),d=2,l=2,g=2,y=2,i=Aa(n)?v(Et(Aa(n),gw),88):v(Et(n,gw),88),O=new mr((!n.c&&(n.c=new vt(Oh,n,9,9)),n.c));O.e!=O.i.gc();)if(R=v(wr(O),123),q=v(Et(R,nC),64),q==(Bt(),lc)&&(q=kPe(R,i),sa(R,nC,q)),D==(co(),su))switch(q.g){case 1:d=u.Math.max(d,R.i+R.g);break;case 2:l=u.Math.max(l,R.j+R.f);break;case 3:g=u.Math.max(g,R.i+R.g);break;case 4:y=u.Math.max(y,R.j+R.f)}else switch(q.g){case 1:d+=R.g+2;break;case 2:l+=R.f+2;break;case 3:g+=R.g+2;break;case 4:y+=R.f+2}T=u.Math.max(d,g),x=u.Math.max(l,y)}return JE(n,T,x,!0,!0)}function mpe(n,i,l,d,g){var y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je;for(Me=v(Wl(JQ(Ki(new xn(null,new Nn(i.d,16)),new qCt(l)),new HCt(l)),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[(Ch(),Ql)]))),15),q=qi,D=Po,R=new me(i.b.j);R.a0,O?O&&(J=Se.p,x?++J:--J,q=v(Yt(Se.c.a,J),10),d=xUt(q),re=!(U1e(d,xt,l[0])||j9t(d,xt,l[0]))):re=!0),ae=!1,yt=i.D.i,yt&&yt.c&&T.e&&(D=x&&yt.p>0||!x&&yt.p=0){for(R=null,T=new go(D.a,O+1);T.bx?1:mE(isNaN(0),isNaN(x)))<0&&(x0(cg),(u.Math.abs(x-1)<=cg||x==1||isNaN(x)&&isNaN(1)?0:x<1?-1:x>1?1:mE(isNaN(x),isNaN(1)))<0)&&(x0(cg),(u.Math.abs(0-T)<=cg||T==0||isNaN(0)&&isNaN(T)?0:0T?1:mE(isNaN(0),isNaN(T)))<0)&&(x0(cg),(u.Math.abs(T-1)<=cg||T==1||isNaN(T)&&isNaN(1)?0:T<1?-1:T>1?1:mE(isNaN(T),isNaN(1)))<0)),y)}function k7r(n){var i,l,d,g;if(l=n.D!=null?n.D:n.B,i=qp(l,Wu(91)),i!=-1){d=(mo(0,i,l.length),l.substr(0,i)),g=new qb;do g.a+="[";while((i=ZR(l,91,++i))!=-1);An(d,Zk)?g.a+="Z":An(d,$M)?g.a+="B":An(d,Mee)?g.a+="C":An(d,UM)?g.a+="D":An(d,zM)?g.a+="F":An(d,GM)?g.a+="I":An(d,qM)?g.a+="J":An(d,HM)?g.a+="S":(g.a+="L",g.a+=""+d,g.a+=";");try{return null}catch(y){if(y=Da(y),!$e(y,63))throw _e(y)}}else if(qp(l,Wu(46))==-1){if(An(l,Zk))return Wh;if(An(l,$M))return bh;if(An(l,Mee))return Tf;if(An(l,UM))return ao;if(An(l,zM))return g3;if(An(l,GM))return Wr;if(An(l,qM))return C2;if(An(l,HM))return lC}return null}function R7r(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt;for(n.e=i,T=R4r(i),xt=new Ot,d=new me(T);d.a=0&&le=O.c.c.length?D=pOe((lr(),is),Ws):D=pOe((lr(),Ws),Ws),D*=2,y=l.a.g,l.a.g=u.Math.max(y,y+(D-y)),x=l.b.g,l.b.g=u.Math.max(x,x+(D-x)),g=i}}function L7r(n){var i,l,d,g;for(ts(Ki(new xn(null,new Nn(n.a.b,16)),new c_t),new u_t),pEr(n),ts(Ki(new xn(null,new Nn(n.a.b,16)),new h_t),new d_t),n.c==(Xm(),O6)&&(ts(Ki(ic(new xn(null,new Nn(new m_(n.f),1)),new f_t),new p_t),new PCt(n)),ts(Ki(Bl(ic(ic(new xn(null,new Nn(n.d.b,16)),new g_t),new m_t),new b_t),new y_t),new FCt(n))),g=new Ct(ka,ka),i=new Ct(Ss,Ss),d=new me(n.a.b);d.a0&&(i.a+=Xo),MJ(v(wr(T),167),i);for(i.a+=Tge,R=new gk((!d.c&&(d.c=new Gn(Lr,d,5,8)),d.c));R.e!=R.i.gc();)R.e>0&&(i.a+=Xo),MJ(v(wr(R),167),i);i.a+=")"}}function D7r(n,i,l){var d,g,y,x,T,R,O,D;for(R=new mr((!n.a&&(n.a=new vt(Pi,n,10,11)),n.a));R.e!=R.i.gc();)for(T=v(wr(R),27),g=new yr(_r(eb(T).a.Kc(),new S));zr(g);){if(d=v(Rr(g),74),!d.b&&(d.b=new Gn(Lr,d,4,7)),!(d.b.i<=1&&(!d.c&&(d.c=new Gn(Lr,d,5,8)),d.c.i<=1)))throw _e(new ik("Graph must not contain hyperedges."));if(!tM(d)&&T!=zl(v(ze((!d.c&&(d.c=new Gn(Lr,d,5,8)),d.c),0),84)))for(O=new tOt,Ul(O,d),_t(O,(Uv(),m6),d),vrr(O,v(Pl(ol(l.f,T)),153)),Err(O,v(br(l,zl(v(ze((!d.c&&(d.c=new Gn(Lr,d,5,8)),d.c),0),84))),153)),Lt(i.c,O),x=new mr((!d.n&&(d.n=new vt(wl,d,1,7)),d.n));x.e!=x.i.gc();)y=v(wr(x),135),D=new rPt(O,y.a),Ul(D,y),_t(D,m6,y),D.e.a=u.Math.max(y.g,1),D.e.b=u.Math.max(y.f,1),LPe(D),Lt(i.d,D)}}function M7r(n,i,l){var d,g,y,x,T,R,O,D,q,J;switch(l.Ug("Node promotion heuristic",1),n.i=i,n.r=v(oe(i,(qt(),h2)),243),n.r!=(qf(),Tx)&&n.r!=e3?lRr(n):D5r(n),D=v(oe(n.i,WHe),17).a,y=new e2t,n.r.g){case 2:case 1:gI(n,y);break;case 3:for(n.r=yne,gI(n,y),R=0,T=new me(n.b);T.an.k&&(n.r=Uq,gI(n,y));break;case 4:for(n.r=yne,gI(n,y),O=0,g=new me(n.c);g.an.n&&(n.r=zq,gI(n,y));break;case 6:J=Ps(u.Math.ceil(n.g.length*D/100)),gI(n,new SCt(J));break;case 5:q=Ps(u.Math.ceil(n.e*D/100)),gI(n,new TCt(q));break;case 8:BKt(n,!0);break;case 9:BKt(n,!1);break;default:gI(n,y)}n.r!=Tx&&n.r!=e3?i5r(n,i):SCr(n,i),l.Vg()}function P7r(n){var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue;for(q=n.b,D=new go(q,0),KS(D,new Xc(n)),Me=!1,x=1;D.b0&&(J.d+=D.n.d,J.d+=D.d),J.a>0&&(J.a+=D.n.a,J.a+=D.d),J.b>0&&(J.b+=D.n.b,J.b+=D.d),J.c>0&&(J.c+=D.n.c,J.c+=D.d),J}function tKt(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae;for(J=l.d,q=l.c,y=new Ct(l.f.a+l.d.b+l.d.c,l.f.b+l.d.d+l.d.a),x=y.b,O=new me(n.a);O.a0&&(n.c[i.c.p][i.p].d+=Gh(n.i,24)*GG*.07000000029802322-.03500000014901161,n.c[i.c.p][i.p].a=n.c[i.c.p][i.p].d/n.c[i.c.p][i.p].b)}}function $7r(n){var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de;for(ae=new me(n);ae.ad.d,d.d=u.Math.max(d.d,i),T&&l&&(d.d=u.Math.max(d.d,d.a),d.a=d.d+g);break;case 3:l=i>d.a,d.a=u.Math.max(d.a,i),T&&l&&(d.a=u.Math.max(d.a,d.d),d.d=d.a+g);break;case 2:l=i>d.c,d.c=u.Math.max(d.c,i),T&&l&&(d.c=u.Math.max(d.b,d.c),d.b=d.c+g);break;case 4:l=i>d.b,d.b=u.Math.max(d.b,i),T&&l&&(d.b=u.Math.max(d.b,d.c),d.c=d.b+g)}}}function rKt(n,i){var l,d,g,y,x,T,R,O,D;return O="",i.length==0?n.ne(cBe,kpe,-1,-1):(D=v4(i),An(D.substr(0,3),"at ")&&(D=(sr(3,D.length+1),D.substr(3))),D=D.replace(/\[.*?\]/g,""),x=D.indexOf("("),x==-1?(x=D.indexOf("@"),x==-1?(O=D,D=""):(O=v4((sr(x+1,D.length+1),D.substr(x+1))),D=v4((mo(0,x,D.length),D.substr(0,x))))):(l=D.indexOf(")",x),O=(mo(x+1,l,D.length),D.substr(x+1,l-(x+1))),D=v4((mo(0,x,D.length),D.substr(0,x)))),x=qp(D,Wu(46)),x!=-1&&(D=(sr(x+1,D.length+1),D.substr(x+1))),(D.length==0||An(D,"Anonymous function"))&&(D=kpe),T=AX(O,Wu(58)),g=mIe(O,Wu(58),T-1),R=-1,d=-1,y=cBe,T!=-1&&g!=-1&&(y=(mo(0,g,O.length),O.substr(0,g)),R=_Nt((mo(g+1,T,O.length),O.substr(g+1,T-(g+1)))),d=_Nt((sr(T+1,O.length+1),O.substr(T+1)))),n.ne(y,D,R,d))}function G7r(n){var i,l,d,g,y,x,T,R,O,D,q;for(O=new me(n);O.a0||D.j==cr&&D.e.c.length-D.g.c.length<0)){i=!1;break}for(g=new me(D.g);g.a=O&&yt>=de&&(J+=ae.n.b+le.n.b+le.a.b-je,++T));if(l)for(x=new me(Me.e);x.a=O&&yt>=de&&(J+=ae.n.b+le.n.b+le.a.b-je,++T))}T>0&&(xt+=J/T,++re)}re>0?(i.a=g*xt/re,i.g=re):(i.a=0,i.g=0)}function H7r(n){var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt;for(y=n.f.b,J=y.a,D=y.b,ae=n.e.g,re=n.e.f,DT(n.e,y.a,y.b),xt=J/ae,Mt=D/re,O=new mr(dQ(n.e));O.e!=O.i.gc();)R=v(wr(O),135),Au(R,R.i*xt),ku(R,R.j*Mt);for(Me=new mr(Ude(n.e));Me.e!=Me.i.gc();)Se=v(wr(Me),123),je=Se.i,yt=Se.j,je>0&&Au(Se,je*xt),yt>0&&ku(Se,yt*Mt);for(kD(n.b,new Lm),i=new Ot,T=new P_(new b_(n.c).a);T.b;)x=zE(T),d=v(x.ld(),74),l=v(x.md(),407).a,g=o5(d,!1,!1),q=Xqt(Hg(d),hG(g),l),TG(q,g),Ue=cHt(d),Ue&&$l(i,Ue,0)==-1&&(jn(i.c,Ue),FLt(Ue,(Tr(q.b!=0),v(q.a.a.c,8)),l));for(de=new P_(new b_(n.d).a);de.b;)le=zE(de),d=v(le.ld(),74),l=v(le.md(),407).a,g=o5(d,!1,!1),q=Xqt(jv(d),Gz(hG(g)),l),q=Gz(q),TG(q,g),Ue=uHt(d),Ue&&$l(i,Ue,0)==-1&&(jn(i.c,Ue),FLt(Ue,(Tr(q.b!=0),v(q.c.b.c,8)),l))}function iKt(n,i,l,d){var g,y,x,T,R;return T=new jPe(i),MTr(T,d),g=!0,n&&n.pf((Ei(),gw))&&(y=v(n.of((Ei(),gw)),88),g=y==(ys(),cp)||y==Ol||y==ql),rjt(T,!1),Cu(T.e.Rf(),new xIe(T,!1,g)),Jde(T,T.f,(u1(),bc),(Bt(),or)),Jde(T,T.f,yc,Mr),Jde(T,T.g,bc,cr),Jde(T,T.g,yc,gr),OGt(T,or),OGt(T,Mr),MLt(T,gr),MLt(T,cr),WS(),x=T.A.Hc((ud(),o3))&&T.B.Hc((qh(),yH))?Xzt(T):null,x&&Gir(T.a,x),z7r(T),G_r(T),q_r(T),p7r(T),LAr(T),gwr(T),G0e(T,or),G0e(T,Mr),vCr(T),o6r(T),l&&(xvr(T),mwr(T),G0e(T,gr),G0e(T,cr),R=T.B.Hc((qh(),KP)),KHt(T,R,or),KHt(T,R,Mr),XHt(T,R,gr),XHt(T,R,cr),ts(new xn(null,new Nn(new Dm(T.i),0)),new ur),ts(Ki(new xn(null,wNe(T.r).a.oc()),new On),new Ir),IEr(T),T.e.Pf(T.o),ts(new xn(null,wNe(T.r).a.oc()),new Ln)),T.o}function V7r(n){var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le;for(O=ka,d=new me(n.a.b);d.a1)for(re=new BPe(ae,Ue,d),To(Ue,new p8t(n,re)),jn(x.c,re),q=Ue.a.ec().Kc();q.Ob();)D=v(q.Pb(),42),Yu(y,D.b);if(T.a.gc()>1)for(re=new BPe(ae,T,d),To(T,new g8t(n,re)),jn(x.c,re),q=T.a.ec().Kc();q.Ob();)D=v(q.Pb(),42),Yu(y,D.b)}}function K7r(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se;if(le=n.n,de=n.o,J=n.d,q=We(at(p4(n,(qt(),Qye)))),i){for(D=q*(i.gc()-1),re=0,R=i.Kc();R.Ob();)x=v(R.Pb(),10),D+=x.o.a,re=u.Math.max(re,x.o.b);for(Se=le.a-(D-de.a)/2,y=le.b-J.d+re,d=de.a/(i.gc()+1),g=d,T=i.Kc();T.Ob();)x=v(T.Pb(),10),x.n.a=Se,x.n.b=y-x.o.b,Se+=x.o.a+q,O=fYt(x),O.n.a=x.o.a/2-O.a.a,O.n.b=x.o.b,ae=v(oe(x,(At(),Yte)),12),ae.e.c.length+ae.g.c.length==1&&(ae.n.a=g-ae.a.a,ae.n.b=0,rc(ae,n)),g+=d}if(l){for(D=q*(l.gc()-1),re=0,R=l.Kc();R.Ob();)x=v(R.Pb(),10),D+=x.o.a,re=u.Math.max(re,x.o.b);for(Se=le.a-(D-de.a)/2,y=le.b+de.b+J.a-re,d=de.a/(l.gc()+1),g=d,T=l.Kc();T.Ob();)x=v(T.Pb(),10),x.n.a=Se,x.n.b=y,Se+=x.o.a+q,O=fYt(x),O.n.a=x.o.a/2-O.a.a,O.n.b=0,ae=v(oe(x,(At(),Yte)),12),ae.e.c.length+ae.g.c.length==1&&(ae.n.a=g-ae.a.a,ae.n.b=de.b,rc(ae,n)),g+=d}}function X7r(n,i){var l,d,g,y,x,T;if(v(oe(i,(At(),au)),21).Hc((cl(),wf))){for(T=new me(i.a);T.a=0&&x0&&(v(yl(n.b,i),127).a.b=l)}function tRr(n,i,l,d){var g,y,x,T,R,O,D,q,J,re,ae,le;if(J=We(at(oe(n,(qt(),uN)))),re=We(at(oe(n,hN))),q=We(at(oe(n,J4))),T=n.o,y=v(Yt(n.j,0),12),x=y.n,le=ySr(y,q),!!le){if(i.Hc((Ah(),ub)))switch(v(oe(n,(At(),vc)),64).g){case 1:le.c=(T.a-le.b)/2-x.a,le.d=re;break;case 3:le.c=(T.a-le.b)/2-x.a,le.d=-re-le.a;break;case 2:l&&y.e.c.length==0&&y.g.c.length==0?(D=d?le.a:v(Yt(y.f,0),72).o.b,le.d=(T.b-D)/2-x.b):le.d=T.b+re-x.b,le.c=-J-le.b;break;case 4:l&&y.e.c.length==0&&y.g.c.length==0?(D=d?le.a:v(Yt(y.f,0),72).o.b,le.d=(T.b-D)/2-x.b):le.d=T.b+re-x.b,le.c=J}else if(i.Hc(v2))switch(v(oe(n,(At(),vc)),64).g){case 1:case 3:le.c=x.a+J;break;case 2:case 4:l&&!y.c?(D=d?le.a:v(Yt(y.f,0),72).o.b,le.d=(T.b-D)/2-x.b):le.d=x.b+re}for(g=le.d,O=new me(y.f);O.a=i.length)return{done:!0};var g=i[d++];return{value:[g,l.get(g)],done:!1}}}},Z5r()||(n.prototype.createObject=function(){return{}},n.prototype.get=function(i){return this.obj[":"+i]},n.prototype.set=function(i,l){this.obj[":"+i]=l},n.prototype[ege]=function(i){delete this.obj[":"+i]},n.prototype.keys=function(){var i=[];for(var l in this.obj)l.charCodeAt(0)==58&&i.push(l.substring(1));return i}),n}function fa(){fa=z,AP=new la($Be),new Ba("DEPTH",Nt(0)),Tve=new Ba("FAN",Nt(0)),oYe=new Ba(IQt,Nt(0)),p2=new Ba("ROOT",(Qn(),!1)),kve=new Ba("LEFTNEIGHBOR",null),Ron=new Ba("RIGHTNEIGHBOR",null),Tne=new Ba("LEFTSIBLING",null),Rve=new Ba("RIGHTSIBLING",null),Sve=new Ba("DUMMY",!1),new Ba("LEVEL",Nt(0)),uYe=new Ba("REMOVABLE_EDGES",new Ea),jq=new Ba("XCOOR",Nt(0)),Wq=new Ba("YCOOR",Nt(0)),Cne=new Ba("LEVELHEIGHT",0),b1=new Ba("LEVELMIN",0),L0=new Ba("LEVELMAX",0),Cve=new Ba("GRAPH_XMIN",0),Ave=new Ba("GRAPH_YMIN",0),lYe=new Ba("GRAPH_XMAX",0),cYe=new Ba("GRAPH_YMAX",0),sYe=new Ba("COMPACT_LEVEL_ASCENSION",!1),xve=new Ba("COMPACT_CONSTRAINTS",new Ot),CP=new Ba("ID",""),kP=new Ba("POSITION",Nt(0)),xy=new Ba("PRELIM",0),mN=new Ba("MODIFIER",0),gN=new la(GXt),Yq=new la(qXt)}function aRr(n){APe();var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de;if(n==null)return null;if(q=n.length*8,q==0)return"";for(T=q%24,re=q/24|0,J=T!=0?re+1:re,y=null,y=st(Tf,rg,28,J*4,15,1),O=0,D=0,i=0,l=0,d=0,x=0,g=0,R=0;R>24,O=(i&3)<<24>>24,ae=i&-128?(i>>2^192)<<24>>24:i>>2<<24>>24,le=l&-128?(l>>4^240)<<24>>24:l>>4<<24>>24,de=d&-128?(d>>6^252)<<24>>24:d>>6<<24>>24,y[x++]=Oy[ae],y[x++]=Oy[le|O<<4],y[x++]=Oy[D<<2|de],y[x++]=Oy[d&63];return T==8?(i=n[g],O=(i&3)<<24>>24,ae=i&-128?(i>>2^192)<<24>>24:i>>2<<24>>24,y[x++]=Oy[ae],y[x++]=Oy[O<<4],y[x++]=61,y[x++]=61):T==16&&(i=n[g],l=n[g+1],D=(l&15)<<24>>24,O=(i&3)<<24>>24,ae=i&-128?(i>>2^192)<<24>>24:i>>2<<24>>24,le=l&-128?(l>>4^240)<<24>>24:l>>4<<24>>24,y[x++]=Oy[ae],y[x++]=Oy[le|O<<4],y[x++]=Oy[D<<2],y[x++]=61),Qp(y,0,y.length)}function sRr(n,i){var l,d,g,y,x,T,R;if(n.e==0&&n.p>0&&(n.p=-(n.p-1)),n.p>Po&&fOe(i,n.p-Jv),x=i.q.getDate(),cz(i,1),n.k>=0&&Wfr(i,n.k),n.c>=0?cz(i,n.c):n.k>=0?(R=new q9e(i.q.getFullYear()-Jv,i.q.getMonth(),35),d=35-R.q.getDate(),cz(i,u.Math.min(d,x))):cz(i,x),n.f<0&&(n.f=i.q.getHours()),n.b>0&&n.f<12&&(n.f+=12),Fsr(i,n.f==24&&n.g?0:n.f),n.j>=0&&Ipr(i,n.j),n.n>=0&&Gpr(i,n.n),n.i>=0&&fIt(i,zo(Go(oG(xc(i.q.getTime()),py),py),n.i)),n.a&&(g=new UK,fOe(g,g.q.getFullYear()-Jv-80),nhe(xc(i.q.getTime()),xc(g.q.getTime()))&&fOe(i,g.q.getFullYear()-Jv+100)),n.d>=0){if(n.c==-1)l=(7+n.d-i.q.getDay())%7,l>3&&(l-=7),T=i.q.getMonth(),cz(i,i.q.getDate()+l),i.q.getMonth()!=T&&cz(i,i.q.getDate()+(l>0?-7:7));else if(i.q.getDay()!=n.d)return!1}return n.o>Po&&(y=i.q.getTimezoneOffset(),fIt(i,zo(xc(i.q.getTime()),(n.o-y)*60*py))),!0}function cKt(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je;if(g=oe(i,(At(),Ji)),!!$e(g,207)){for(ae=v(g,27),le=i.e,J=new Wo(i.c),y=i.d,J.a+=y.b,J.b+=y.d,je=v(Et(ae,(qt(),une)),181),oh(je,(qh(),Zne))&&(re=v(Et(ae,JHe),107),frr(re,y.a),wrr(re,y.d),prr(re,y.b),_rr(re,y.c)),l=new Ot,D=new me(i.a);D.ad.c.length-1;)Lt(d,new Ms(b5,m$e));l=v(oe(g,gg),17).a,Bm(v(oe(n,Ax),88))?(g.e.aWe(at(($n(l,d.c.length),v(d.c[l],42)).b))&&_ue(($n(l,d.c.length),v(d.c[l],42)),g.e.a+g.f.a)):(g.e.bWe(at(($n(l,d.c.length),v(d.c[l],42)).b))&&_ue(($n(l,d.c.length),v(d.c[l],42)),g.e.b+g.f.b))}for(y=Ur(n.b,0);y.b!=y.d.c;)g=v(Fr(y),40),l=v(oe(g,(pc(),gg)),17).a,_t(g,(fa(),b1),at(($n(l,d.c.length),v(d.c[l],42)).a)),_t(g,L0,at(($n(l,d.c.length),v(d.c[l],42)).b));i.Vg()}function lRr(n){var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le;for(n.o=We(at(oe(n.i,(qt(),Sx)))),n.f=We(at(oe(n.i,dw))),n.j=n.i.b.c.length,T=n.j-1,J=0,n.k=0,n.n=0,n.b=H1(st(Ao,kt,17,n.j,0,1)),n.c=H1(st(ws,kt,345,n.j,7,1)),x=new me(n.i.b);x.a0&&Lt(n.q,D),Lt(n.p,D);i-=d,re=R+i,O+=i*n.f,of(n.b,T,Nt(re)),of(n.c,T,O),n.k=u.Math.max(n.k,re),n.n=u.Math.max(n.n,O),n.e+=i,i+=le}}function Bt(){Bt=z;var n;lc=new LU(wM,0),or=new LU(VJ,1),gr=new LU(uge,2),Mr=new LU(hge,3),cr=new LU(dge,4),hp=(Fn(),new zR((n=v(n1(tl),9),new nf(n,v(v0(n,n.length),9),0)))),F0=iy(va(or,Te(xe(tl,1),Dc,64,0,[]))),xf=iy(va(gr,Te(xe(tl,1),Dc,64,0,[]))),Fd=iy(va(Mr,Te(xe(tl,1),Dc,64,0,[]))),Zf=iy(va(cr,Te(xe(tl,1),Dc,64,0,[]))),Qu=iy(va(or,Te(xe(tl,1),Dc,64,0,[Mr]))),Du=iy(va(gr,Te(xe(tl,1),Dc,64,0,[cr]))),$0=iy(va(or,Te(xe(tl,1),Dc,64,0,[cr]))),Ih=iy(va(or,Te(xe(tl,1),Dc,64,0,[gr]))),$d=iy(va(Mr,Te(xe(tl,1),Dc,64,0,[cr]))),Sf=iy(va(gr,Te(xe(tl,1),Dc,64,0,[Mr]))),Nh=iy(va(or,Te(xe(tl,1),Dc,64,0,[gr,cr]))),Xu=iy(va(gr,Te(xe(tl,1),Dc,64,0,[Mr,cr]))),Zu=iy(va(or,Te(xe(tl,1),Dc,64,0,[Mr,cr]))),mh=iy(va(or,Te(xe(tl,1),Dc,64,0,[gr,Mr]))),ou=iy(va(or,Te(xe(tl,1),Dc,64,0,[gr,Mr,cr])))}function cRr(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt;for(i.Ug(cQt,1),le=new Ot,xt=new Ot,O=new me(n.b);O.a0&&(Ue-=re),FPe(x,Ue),D=0,J=new me(x.a);J.a0),T.a.Xb(T.c=--T.b)),R=.4*d*D,!y&&T.b0&&(R=(sr(0,i.length),i.charCodeAt(0)),R!=64)){if(R==37&&(q=i.lastIndexOf("%"),O=!1,q!=0&&(q==J-1||(O=(sr(q+1,i.length),i.charCodeAt(q+1)==46))))){if(x=(mo(1,q,i.length),i.substr(1,q-1)),Ue=An("%",x)?null:KPe(x),d=0,O)try{d=Nd((sr(q+2,i.length+1),i.substr(q+2)),Po,qi)}catch(je){throw je=Da(je),$e(je,130)?(T=je,_e(new VQ(T))):_e(je)}for(de=E9e(n.Gh());de.Ob();)if(ae=vZ(de),$e(ae,519)&&(g=v(ae,598),Me=g.d,(Ue==null?Me==null:An(Ue,Me))&&d--==0))return g;return null}if(D=i.lastIndexOf("."),re=D==-1?i:(mo(0,D,i.length),i.substr(0,D)),l=0,D!=-1)try{l=Nd((sr(D+1,i.length+1),i.substr(D+1)),Po,qi)}catch(je){if(je=Da(je),$e(je,130))re=i;else throw _e(je)}for(re=An("%",re)?null:KPe(re),le=E9e(n.Gh());le.Ob();)if(ae=vZ(le),$e(ae,197)&&(y=v(ae,197),Se=y.xe(),(re==null?Se==null:An(re,Se))&&l--==0))return y;return null}return ZWt(n,i)}function bRr(n){var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me;for(D=new Br,R=new OE,d=new me(n.a.a.b);d.ai.d.c){if(re=n.c[i.a.d],de=n.c[q.a.d],re==de)continue;C0(m0(g0(b0(p0(new Bf,1),100),re),de))}}}}}function yRr(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt;if(J=v(v(Zi(n.r,i),21),87),i==(Bt(),gr)||i==cr){sKt(n,i);return}for(y=i==or?(GE(),gq):(GE(),mq),je=i==or?(ju(),g1):(ju(),I0),l=v(yl(n.b,i),127),d=l.i,g=d.c+YT(Te(xe(ao,1),_l,28,15,[l.n.b,n.C.b,n.k])),Se=d.c+d.b-YT(Te(xe(ao,1),_l,28,15,[l.n.c,n.C.c,n.k])),x=cRe(TIe(y),n.t),Me=i==or?Ss:ka,q=J.Kc();q.Ob();)O=v(q.Pb(),117),!(!O.c||O.c.d.c.length<=0)&&(de=O.b.Mf(),le=O.e,re=O.c,ae=re.i,ae.b=(R=re.n,re.e.a+R.b+R.c),ae.a=(T=re.n,re.e.b+T.d+T.a),az(je,TBe),re.f=je,l1(re,(Th(),R0)),ae.c=le.a-(ae.b-de.a)/2,yt=u.Math.min(g,le.a),xt=u.Math.max(Se,le.a+de.a),ae.cxt&&(ae.c=xt-ae.b),Lt(x.d,new wde(ae,mLe(x,ae))),Me=i==or?u.Math.max(Me,le.b+O.b.Mf().b):u.Math.min(Me,le.b));for(Me+=i==or?n.t:-n.t,Ue=MLe((x.e=Me,x)),Ue>0&&(v(yl(n.b,i),127).a.b=Ue),D=J.Kc();D.Ob();)O=v(D.Pb(),117),!(!O.c||O.c.d.c.length<=0)&&(ae=O.c.i,ae.c-=O.e.a,ae.d-=O.e.b)}function vRr(n){var i,l,d,g,y,x,T,R,O,D,q,J,re;for(i=new Br,R=new mr(n);R.e!=R.i.gc();){for(T=v(wr(R),27),l=new fs,Ni(Ube,T,l),re=new qs,g=v(Wl(new xn(null,new TE(new yr(_r(bG(T).a.Kc(),new S)))),R9t(re,Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[(Ch(),Ql)])))),85),c$t(l,v(g.xc((Qn(),!0)),16),new Rt),d=v(Wl(Ki(v(g.xc(!1),15).Lc(),new Bb),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[Ql]))),15),x=d.Kc();x.Ob();)y=v(x.Pb(),74),J=cHt(y),J&&(O=v(Pl(ol(i.f,J)),21),O||(O=OYt(J),yu(i.f,J,O)),bo(l,O));for(g=v(Wl(new xn(null,new TE(new yr(_r(eb(T).a.Kc(),new S)))),R9t(re,Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[Ql])))),85),c$t(l,v(g.xc(!0),16),new Gt),d=v(Wl(Ki(v(g.xc(!1),15).Lc(),new Ds),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[Ql]))),15),q=d.Kc();q.Ob();)D=v(q.Pb(),74),J=uHt(D),J&&(O=v(Pl(ol(i.f,J)),21),O||(O=OYt(J),yu(i.f,J,O)),bo(l,O))}}function _Rr(n,i){spe();var l,d,g,y,x,T,R,O,D,q,J,re,ae,le;if(R=Oc(n,0)<0,R&&(n=ty(n)),Oc(n,0)==0)switch(i){case 0:return"0";case 1:return xI;case 2:return"0.00";case 3:return"0.000";case 4:return"0.0000";case 5:return"0.00000";case 6:return"0.000000";default:return re=new Cv,i<0?re.a+="0E+":re.a+="0E",re.a+=i==Po?"2147483648":""+-i,re.a}D=18,q=st(Tf,rg,28,D+1,15,1),l=D,le=n;do O=le,le=oG(le,10),q[--l]=ti(zo(48,zf(O,Go(le,10))))&vs;while(Oc(le,0)!=0);if(g=zf(zf(zf(D,l),i),1),i==0)return R&&(q[--l]=45),Qp(q,l,D-l);if(i>0&&Oc(g,-6)>=0){if(Oc(g,0)>=0){for(y=l+ti(g),T=D-1;T>=y;T--)q[T+1]=q[T];return q[++y]=46,R&&(q[--l]=45),Qp(q,l,D-l+1)}for(x=2;nhe(x,zo(ty(g),1));x++)q[--l]=48;return q[--l]=46,q[--l]=48,R&&(q[--l]=45),Qp(q,l,D-l)}return ae=l+1,d=D,J=new sk,R&&(J.a+="-"),d-ae>=1?(C_(J,q[l]),J.a+=".",J.a+=Qp(q,l+1,D-l-1)):J.a+=Qp(q,l,D-l),J.a+="E",Oc(g,0)>0&&(J.a+="+"),J.a+=""+sD(g),J.a}function JE(n,i,l,d,g){var y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt;if(de=new Ct(n.g,n.f),le=hMe(n),le.a=u.Math.max(le.a,i),le.b=u.Math.max(le.b,l),xt=le.a/de.a,D=le.b/de.b,je=le.a-de.a,R=le.b-de.b,d)for(x=Aa(n)?v(Et(Aa(n),(Ei(),gw)),88):v(Et(n,(Ei(),gw)),88),T=Ze(Et(n,(Ei(),UP)))===Ze((co(),su)),Me=new mr((!n.c&&(n.c=new vt(Oh,n,9,9)),n.c));Me.e!=Me.i.gc();)switch(Se=v(wr(Me),123),Ue=v(Et(Se,nC),64),Ue==(Bt(),lc)&&(Ue=kPe(Se,x),sa(Se,nC,Ue)),Ue.g){case 1:T||Au(Se,Se.i*xt);break;case 2:Au(Se,Se.i+je),T||ku(Se,Se.j*D);break;case 3:T||Au(Se,Se.i*xt),ku(Se,Se.j+R);break;case 4:T||ku(Se,Se.j*D)}if(DT(n,le.a,le.b),g)for(J=new mr((!n.n&&(n.n=new vt(wl,n,1,7)),n.n));J.e!=J.i.gc();)q=v(wr(J),135),re=q.i+q.g/2,ae=q.j+q.f/2,yt=re/de.a,O=ae/de.b,yt+O>=1&&(yt-O>0&&ae>=0?(Au(q,q.i+je),ku(q,q.j+R*O)):yt-O<0&&re>=0&&(Au(q,q.i+je*yt),ku(q,q.j+R)));return sa(n,(Ei(),mw),(ud(),y=v(n1(WP),9),new nf(y,v(v0(y,y.length),9),0))),new Ct(xt,D)}function fKt(n){dE(n,new H_(DK(cE(sE(lE(oE(new f_,bf),"ELK Radial"),'A radial layout provider which is based on the algorithm of Peter Eades published in "Drawing free trees.", published by International Institute for Advanced Study of Social Information Science, Fujitsu Limited in 1991. The radial layouter takes a tree and places the nodes in radial order around the root. The nodes of the same tree level are placed on the same radius.'),new uxt),bf))),It(n,bf,mee,zt(Tln)),It(n,bf,N4,zt(Cln)),It(n,bf,y5,zt(wln)),It(n,bf,l6,zt(Eln)),It(n,bf,o6,zt(xln)),It(n,bf,II,zt(_ln)),It(n,bf,TM,zt($Ye)),It(n,bf,NI,zt(Sln)),It(n,bf,gme,zt(Gve)),It(n,bf,pme,zt(qve)),It(n,bf,xee,zt(zYe)),It(n,bf,mme,zt(Hve)),It(n,bf,bme,zt(GYe)),It(n,bf,M$e,zt(qYe)),It(n,bf,D$e,zt(UYe)),It(n,bf,I$e,zt(Nne)),It(n,bf,N$e,zt(One)),It(n,bf,O$e,zt(Kq)),It(n,bf,L$e,zt(HYe)),It(n,bf,R$e,zt(FYe))}function PJ(n){var i,l,d,g,y,x,T,R,O,D,q;if(n==null)throw _e(new Gp(Ku));if(O=n,y=n.length,R=!1,y>0&&(i=(sr(0,n.length),n.charCodeAt(0)),(i==45||i==43)&&(n=(sr(1,n.length+1),n.substr(1)),--y,R=i==45)),y==0)throw _e(new Gp(nx+O+'"'));for(;n.length>0&&(sr(0,n.length),n.charCodeAt(0)==48);)n=(sr(1,n.length+1),n.substr(1)),--y;if(y>(Hjt(),Oen)[10])throw _e(new Gp(nx+O+'"'));for(g=0;g0&&(q=-parseInt((mo(0,d,n.length),n.substr(0,d)),10),n=(sr(d,n.length+1),n.substr(d)),y-=d,l=!1);y>=x;){if(d=parseInt((mo(0,x,n.length),n.substr(0,x)),10),n=(sr(x,n.length+1),n.substr(x)),y-=x,l)l=!1;else{if(Oc(q,T)<0)throw _e(new Gp(nx+O+'"'));q=Go(q,D)}q=zf(q,d)}if(Oc(q,0)>0)throw _e(new Gp(nx+O+'"'));if(!R&&(q=ty(q),Oc(q,0)<0))throw _e(new Gp(nx+O+'"'));return q}function KPe(n){dpe();var i,l,d,g,y,x,T,R;if(n==null)return null;if(g=qp(n,Wu(37)),g<0)return n;for(R=new Ed((mo(0,g,n.length),n.substr(0,g))),i=st(bh,E5,28,4,15,1),T=0,d=0,x=n.length;gg+2&&o0e((sr(g+1,n.length),n.charCodeAt(g+1)),AKe,kKe)&&o0e((sr(g+2,n.length),n.charCodeAt(g+2)),AKe,kKe))if(l=zur((sr(g+1,n.length),n.charCodeAt(g+1)),(sr(g+2,n.length),n.charCodeAt(g+2))),g+=2,d>0?(l&192)==128?i[T++]=l<<24>>24:d=0:l>=128&&((l&224)==192?(i[T++]=l<<24>>24,d=2):(l&240)==224?(i[T++]=l<<24>>24,d=3):(l&248)==240&&(i[T++]=l<<24>>24,d=4)),d>0){if(T==d){switch(T){case 2:{C_(R,((i[0]&31)<<6|i[1]&63)&vs);break}case 3:{C_(R,((i[0]&15)<<12|(i[1]&63)<<6|i[2]&63)&vs);break}}T=0,d=0}}else{for(y=0;y=2){if((!n.a&&(n.a=new vt(xa,n,6,6)),n.a).i==0)l=(kv(),g=new dK,g),Yr((!n.a&&(n.a=new vt(xa,n,6,6)),n.a),l);else if((!n.a&&(n.a=new vt(xa,n,6,6)),n.a).i>1)for(J=new gk((!n.a&&(n.a=new vt(xa,n,6,6)),n.a));J.e!=J.i.gc();)XD(J);TG(i,v(ze((!n.a&&(n.a=new vt(xa,n,6,6)),n.a),0),166))}if(q)for(d=new mr((!n.a&&(n.a=new vt(xa,n,6,6)),n.a));d.e!=d.i.gc();)for(l=v(wr(d),166),O=new mr((!l.a&&(l.a=new gs(Ud,l,5)),l.a));O.e!=O.i.gc();)R=v(wr(O),377),T.a=u.Math.max(T.a,R.a),T.b=u.Math.max(T.b,R.b);for(x=new mr((!n.n&&(n.n=new vt(wl,n,1,7)),n.n));x.e!=x.i.gc();)y=v(wr(x),135),D=v(Et(y,GP),8),D&&ef(y,D.a,D.b),q&&(T.a=u.Math.max(T.a,y.i+y.g),T.b=u.Math.max(T.b,y.j+y.f));return T}function gKt(n,i,l,d,g){var y,x,T;if(mFt(n,i),x=i[0],y=Do(l.c,0),T=-1,Y9e(l))if(d>0){if(x+d>n.length)return!1;T=hJ((mo(0,x+d,n.length),n.substr(0,x+d)),i)}else T=hJ(n,i);switch(y){case 71:return T=i5(n,x,Te(xe(Xt,1),kt,2,6,[eXt,tXt]),i),g.e=T,!0;case 77:return P5r(n,i,g,T,x);case 76:return B5r(n,i,g,T,x);case 69:return kSr(n,i,x,g);case 99:return RSr(n,i,x,g);case 97:return T=i5(n,x,Te(xe(Xt,1),kt,2,6,["AM","PM"]),i),g.b=T,!0;case 121:return F5r(n,i,x,T,l,g);case 100:return T<=0?!1:(g.c=T,!0);case 83:return T<0?!1:Hvr(T,x,i[0],g);case 104:T==12&&(T=0);case 75:case 72:return T<0?!1:(g.f=T,g.g=!1,!0);case 107:return T<0?!1:(g.f=T,g.g=!0,!0);case 109:return T<0?!1:(g.j=T,!0);case 115:return T<0?!1:(g.n=T,!0);case 90:if(xyn[R]&&(de=R),q=new me(n.a.b);q.a1;){if(g=RTr(i),q=y.g,ae=v(Et(i,NP),107),le=We(at(Et(i,Pne))),(!i.a&&(i.a=new vt(Pi,i,10,11)),i.a).i>1&&We(at(Et(i,(Vg(),Zve))))!=ka&&(y.c+(ae.b+ae.c))/(y.b+(ae.d+ae.a))1&&We(at(Et(i,(Vg(),Qve))))!=ka&&(y.c+(ae.b+ae.c))/(y.b+(ae.d+ae.a))>le&&sa(g,(Vg(),r3),u.Math.max(We(at(Et(i,IP))),We(at(Et(g,r3)))-We(at(Et(i,Qve))))),re=new n8e(d,D),R=MKt(re,g,J),O=R.g,O>=q&&O==O){for(x=0;x<(!g.a&&(g.a=new vt(Pi,g,10,11)),g.a).i;x++)lVt(n,v(ze((!g.a&&(g.a=new vt(Pi,g,10,11)),g.a),x),27),v(ze((!i.a&&(i.a=new vt(Pi,i,10,11)),i.a),x),27));GFt(i,re),Lfr(y,R.c),Ofr(y,R.b)}--T}sa(i,(Vg(),bN),y.b),sa(i,C6,y.c),l.Vg()}function SRr(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me;for(i.Ug("Interactive node layering",1),l=new Ot,J=new me(n.a);J.a=T){Tr(Me.b>0),Me.a.Xb(Me.c=--Me.b);break}else de.a>R&&(d?(xs(d.b,de.b),d.a=u.Math.max(d.a,de.a),ld(Me)):(Lt(de.b,D),de.c=u.Math.min(de.c,R),de.a=u.Math.max(de.a,T),d=de));d||(d=new u6t,d.c=R,d.a=T,KS(Me,d),Lt(d.b,D))}for(x=n.b,O=0,Se=new me(l);Se.are&&(y&&(jo(xt,J),jo(yn,Nt(O.b-1))),Ui=l.b,Fa+=J+i,J=0,D=u.Math.max(D,l.b+l.c+Sr)),Au(T,Ui),ku(T,Fa),D=u.Math.max(D,Ui+Sr+l.c),J=u.Math.max(J,q),Ui+=Sr+i;if(D=u.Math.max(D,d),Xn=Fa+J+l.a,Xnsg,mn=u.Math.abs(J.b-ae.b)>sg,(!l&&yn&&mn||l&&(yn||mn))&&pi(de.a,je)),bo(de.a,d),d.b==0?J=je:J=(Tr(d.b!=0),v(d.c.b.c,8)),ubr(re,q,le),z$t(g)==Mt&&(So(Mt.i)!=g.a&&(le=new ho,oMe(le,So(Mt.i),Me)),_t(de,$ye,le)),Yxr(re,de,Me),D.a.zc(re,D);Uo(de,yt),lo(de,Mt)}for(O=D.a.ec().Kc();O.Ob();)R=v(O.Pb(),18),Uo(R,null),lo(R,null);i.Vg()}function ARr(n,i){var l,d,g,y,x,T,R,O,D,q,J;for(g=v(oe(n,(pc(),Ax)),88),D=g==(ys(),Ol)||g==ql?lp:ql,l=v(Wl(Ki(new xn(null,new Nn(n.b,16)),new mEt),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[(Ch(),Ql)]))),15),R=v(Wl(Bl(l.Oc(),new NAt(i)),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[Ql]))),15),R.Gc(v(Wl(Bl(l.Oc(),new OAt(i)),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[Ql]))),16)),R.jd(new LAt(D)),J=new Vb(new DAt(g)),d=new Br,T=R.Kc();T.Ob();)x=v(T.Pb(),240),O=v(x.a,40),Vt(Ht(x.c))?(J.a.zc(O,(Qn(),a2))==null,new MR(J.a.Zc(O,!1)).a.gc()>0&&Ni(d,O,v(new MR(J.a.Zc(O,!1)).a.Vc(),40)),new MR(J.a.ad(O,!0)).a.gc()>1&&Ni(d,Vzt(J,O),O)):(new MR(J.a.Zc(O,!1)).a.gc()>0&&(y=v(new MR(J.a.Zc(O,!1)).a.Vc(),40),Ze(y)===Ze(Pl(ol(d.f,O)))&&v(oe(O,(fa(),xve)),15).Fc(y)),new MR(J.a.ad(O,!0)).a.gc()>1&&(q=Vzt(J,O),Ze(Pl(ol(d.f,q)))===Ze(O)&&v(oe(q,(fa(),xve)),15).Fc(O)),J.a.Bc(O)!=null)}function mKt(n){var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je;if(n.gc()==1)return v(n.Xb(0),235);if(n.gc()<=0)return new PQ;for(g=n.Kc();g.Ob();){for(l=v(g.Pb(),235),ae=0,D=qi,q=qi,R=Po,O=Po,re=new me(l.e);re.aT&&(Ue=0,je+=x+Se,x=0),JCr(le,l,Ue,je),i=u.Math.max(i,Ue+de.a),x=u.Math.max(x,de.b),Ue+=de.a+Se;return le}function kRr(n){APe();var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de;if(n==null||(y=jQ(n),ae=nvr(y),ae%4!=0))return null;if(le=ae/4|0,le==0)return st(bh,E5,28,0,15,1);for(q=null,i=0,l=0,d=0,g=0,x=0,T=0,R=0,O=0,re=0,J=0,D=0,q=st(bh,E5,28,le*3,15,1);re>4)<<24>>24,q[J++]=((l&15)<<4|d>>2&15)<<24>>24,q[J++]=(d<<6|g)<<24>>24}return!pU(x=y[D++])||!pU(T=y[D++])?null:(i=fp[x],l=fp[T],R=y[D++],O=y[D++],fp[R]==-1||fp[O]==-1?R==61&&O==61?l&15?null:(de=st(bh,E5,28,re*3+1,15,1),Gc(q,0,de,0,re*3),de[J]=(i<<2|l>>4)<<24>>24,de):R!=61&&O==61?(d=fp[R],d&3?null:(de=st(bh,E5,28,re*3+2,15,1),Gc(q,0,de,0,re*3),de[J++]=(i<<2|l>>4)<<24>>24,de[J]=((l&15)<<4|d>>2&15)<<24>>24,de)):null:(d=fp[R],g=fp[O],q[J++]=(i<<2|l>>4)<<24>>24,q[J++]=((l&15)<<4|d>>2&15)<<24>>24,q[J++]=(d<<6|g)<<24>>24,q))}function RRr(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt;for(i.Ug(cQt,1),ae=v(oe(n,(qt(),lb)),223),g=new me(n.b);g.a=2){for(le=!0,J=new me(y.j),l=v(pe(J),12),re=null;J.a0)if(d=q.gc(),O=Ps(u.Math.floor((d+1)/2))-1,g=Ps(u.Math.ceil((d+1)/2))-1,i.o==sp)for(D=g;D>=O;D--)i.a[je.p]==je&&(le=v(q.Xb(D),42),ae=v(le.a,10),!r1(l,le.b)&&re>n.b.e[ae.p]&&(i.a[ae.p]=je,i.g[je.p]=i.g[ae.p],i.a[je.p]=i.g[je.p],i.f[i.g[je.p].p]=(Qn(),!!(Vt(i.f[i.g[je.p].p])&je.k==(lr(),Ws))),re=n.b.e[ae.p]));else for(D=O;D<=g;D++)i.a[je.p]==je&&(Se=v(q.Xb(D),42),de=v(Se.a,10),!r1(l,Se.b)&&re0&&(g=v(Yt(de.c.a,xt-1),10),x=n.i[g.p],yn=u.Math.ceil(PT(n.n,g,de)),y=yt.a.e-de.d.d-(x.a.e+g.o.b+g.d.a)-yn),O=ka,xt0&&Mt.a.e.e-Mt.a.a-(Mt.b.e.e-Mt.b.a)<0,ae=Ue.a.e.e-Ue.a.a-(Ue.b.e.e-Ue.b.a)<0&&Mt.a.e.e-Mt.a.a-(Mt.b.e.e-Mt.b.a)>0,re=Ue.a.e.e+Ue.b.aMt.b.e.e+Mt.a.a,je=0,!le&&!ae&&(J?y+q>0?je=q:O-d>0&&(je=d):re&&(y+T>0?je=T:O-Me>0&&(je=Me))),yt.a.e+=je,yt.b&&(yt.d.e+=je),!1))}function yKt(n,i,l){var d,g,y,x,T,R,O,D,q,J;if(d=new rf(i.Lf().a,i.Lf().b,i.Mf().a,i.Mf().b),g=new fk,n.c)for(x=new me(i.Rf());x.aO&&(d.a+=YIt(st(Tf,rg,28,-O,15,1))),d.a+="Is",qp(R,Wu(32))>=0)for(g=0;g=d.o.b/2}else Me=!q;Me?(Se=v(oe(d,(At(),S6)),15),Se?J?y=Se:(g=v(oe(d,v6),15),g?Se.gc()<=g.gc()?y=Se:y=g:(y=new Ot,_t(d,v6,y))):(y=new Ot,_t(d,S6,y))):(g=v(oe(d,(At(),v6)),15),g?q?y=g:(Se=v(oe(d,S6),15),Se?g.gc()<=Se.gc()?y=g:y=Se:(y=new Ot,_t(d,S6,y))):(y=new Ot,_t(d,v6,y))),y.Fc(n),_t(n,(At(),Yte),l),i.d==l?(lo(i,null),l.e.c.length+l.g.c.length==0&&rc(l,null),jbr(l)):(Uo(i,null),l.e.c.length+l.g.c.length==0&&rc(l,null)),xd(i.a)}function LRr(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn,Xn,Sr,Ui,Fa;for(l.Ug("MinWidth layering",1),re=i.b,Mt=i.a,Fa=v(oe(i,(qt(),YHe)),17).a,T=v(oe(i,jHe),17).a,n.b=We(at(oe(i,O0))),n.d=ka,je=new me(Mt);je.a0?(O=0,de&&(O+=T),O+=(mn-1)*x,Ue&&(O+=T),yn&&Ue&&(O=u.Math.max(O,JTr(Ue,x,Me,Mt))),O=n.a&&(d=gkr(n,Me),D=u.Math.max(D,d.b),je=u.Math.max(je,d.d),Lt(T,new Ms(Me,d)));for(yn=new Ot,O=0;O0),de.a.Xb(de.c=--de.b),mn=new Xc(n.b),KS(de,mn),Tr(de.b0){for(J=D<100?null:new Av(D),O=new R9e(i),ae=O.g,Se=st(Wr,vi,28,D,15,1),d=0,je=new PE(D),g=0;g=0;)if(re!=null?Yi(re,ae[R]):Ze(re)===Ze(ae[R])){Se.length<=d&&(de=Se,Se=st(Wr,vi,28,2*Se.length,15,1),Gc(de,0,Se,0,d)),Se[d++]=g,Yr(je,ae[R]);break e}if(re=re,Ze(re)===Ze(T))break}}if(O=je,ae=je.g,D=d,d>Se.length&&(de=Se,Se=st(Wr,vi,28,d,15,1),Gc(de,0,Se,0,d)),d>0){for(Ue=!0,y=0;y=0;)Vk(n,Se[x]);if(d!=D){for(g=D;--g>=d;)Vk(O,g);de=Se,Se=st(Wr,vi,28,d,15,1),Gc(de,0,Se,0,d)}i=O}}}else for(i=X_r(n,i),g=n.i;--g>=0;)i.Hc(n.g[g])&&(Vk(n,g),Ue=!0);if(Ue){if(Se!=null){for(l=i.gc(),q=l==1?pD(n,4,i.Kc().Pb(),null,Se[0],le):pD(n,6,i,Se,Se[0],le),J=l<100?null:new Av(l),g=i.Kc();g.Ob();)re=g.Pb(),J=yIe(n,v(re,76),J);J?(J.nj(q),J.oj()):Vi(n.e,q)}else{for(J=nlr(i.gc()),g=i.Kc();g.Ob();)re=g.Pb(),J=yIe(n,v(re,76),J);J&&J.oj()}return!0}else return!1}function PRr(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue;for(l=new BGt(i),l.a||uAr(i),O=lCr(i),R=new OE,de=new $Yt,le=new me(i.a);le.a0||l.o==sp&&g=l}function FRr(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn,Xn,Sr;for(Ue=i,Me=new OE,je=new OE,D=ME(Ue,bUe),d=new YLt(n,l,Me,je),iSr(d.a,d.b,d.c,d.d,D),R=(Mt=Me.i,Mt||(Me.i=new $T(Me,Me.c))),mn=R.Kc();mn.Ob();)for(yn=v(mn.Pb(),166),g=v(Zi(Me,yn),21),le=g.Kc();le.Ob();)if(ae=le.Pb(),yt=v(jT(n.d,ae),166),yt)T=(!yn.e&&(yn.e=new Gn(xa,yn,10,9)),yn.e),Yr(T,yt);else throw x=zm(Ue,ug),J=PZt+ae+BZt+x,re=J+UI,_e(new zp(re));for(O=(xt=je.i,xt||(je.i=new $T(je,je.c))),Xn=O.Kc();Xn.Ob();)for(Kn=v(Xn.Pb(),166),y=v(Zi(je,Kn),21),Se=y.Kc();Se.Ob();)if(de=Se.Pb(),yt=v(jT(n.d,de),166),yt)q=(!Kn.g&&(Kn.g=new Gn(xa,Kn,9,10)),Kn.g),Yr(q,yt);else throw x=zm(Ue,ug),J=PZt+de+BZt+x,re=J+UI,_e(new zp(re));!l.b&&(l.b=new Gn(Lr,l,4,7)),l.b.i!=0&&(!l.c&&(l.c=new Gn(Lr,l,5,8)),l.c.i!=0)&&(!l.b&&(l.b=new Gn(Lr,l,4,7)),l.b.i<=1&&(!l.c&&(l.c=new Gn(Lr,l,5,8)),l.c.i<=1))&&(!l.a&&(l.a=new vt(xa,l,6,6)),l.a).i==1&&(Sr=v(ze((!l.a&&(l.a=new vt(xa,l,6,6)),l.a),0),166),!X0e(Sr)&&!Q0e(Sr)&&(lZ(Sr,v(ze((!l.b&&(l.b=new Gn(Lr,l,4,7)),l.b),0),84)),cZ(Sr,v(ze((!l.c&&(l.c=new Gn(Lr,l,5,8)),l.c),0),84))))}function $Rr(n){var i,l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn;for(Ue=n.a,je=0,yt=Ue.length;je0?(q=v(Yt(J.c.a,x-1),10),yn=PT(n.b,J,q),de=J.n.b-J.d.d-(q.n.b+q.o.b+q.d.a+yn)):de=J.n.b-J.d.d,O=u.Math.min(de,O),x1&&(x=u.Math.min(x,u.Math.abs(v(gf(T.a,1),8).b-D.b)))));else for(le=new me(i.j);le.ag&&(y=J.a-g,x=qi,d.c.length=0,g=J.a),J.a>=g&&(jn(d.c,T),T.a.b>1&&(x=u.Math.min(x,u.Math.abs(v(gf(T.a,T.a.b-2),8).b-J.b)))));if(d.c.length!=0&&y>i.o.a/2&&x>i.o.b/2){for(re=new zc,rc(re,i),Bs(re,(Bt(),or)),re.n.a=i.o.a/2,Se=new zc,rc(Se,i),Bs(Se,Mr),Se.n.a=i.o.a/2,Se.n.b=i.o.b,R=new me(d);R.a=O.b?Uo(T,Se):Uo(T,re)):(O=v(Iur(T.a),8),de=T.a.b==0?q1(T.c):v(y0(T.a),8),de.b>=O.b?lo(T,Se):lo(T,re)),q=v(oe(T,(qt(),Nl)),75),q&&f4(q,O,!0);i.n.a=g-i.o.a/2}}function zRr(n,i,l){var d,g,y,x,T,R,O,D,q,J;for(T=Ur(n.b,0);T.b!=T.d.c;)if(x=v(Fr(T),40),!An(x.c,_ee))for(O=d3r(x,n),i==(ys(),Ol)||i==ql?us(O,new zEt):us(O,new GEt),R=O.c.length,d=0;d=0?re=zk(T):re=Xz(zk(T)),n.qf(lN,re)),O=new ho,J=!1,n.pf(Ex)?(G8e(O,v(n.of(Ex),8)),J=!0):Xsr(O,x.a/2,x.b/2),re.g){case 4:_t(D,Lu,(pf(),u2)),_t(D,Wte,(F_(),O5)),D.o.b=x.b,le<0&&(D.o.a=-le),Bs(q,(Bt(),gr)),J||(O.a=x.a),O.a-=x.a;break;case 2:_t(D,Lu,(pf(),Y4)),_t(D,Wte,(F_(),tN)),D.o.b=x.b,le<0&&(D.o.a=-le),Bs(q,(Bt(),cr)),J||(O.a=0);break;case 1:_t(D,aw,(Ym(),D5)),D.o.a=x.a,le<0&&(D.o.b=-le),Bs(q,(Bt(),Mr)),J||(O.b=x.b),O.b-=x.b;break;case 3:_t(D,aw,(Ym(),y6)),D.o.a=x.a,le<0&&(D.o.b=-le),Bs(q,(Bt(),or)),J||(O.b=0)}if(G8e(q.n,O),_t(D,Ex,O),i==yw||i==sm||i==su){if(ae=0,i==yw&&n.pf(_y))switch(re.g){case 1:case 2:ae=v(n.of(_y),17).a;break;case 3:case 4:ae=-v(n.of(_y),17).a}else switch(re.g){case 4:case 2:ae=y.b,i==sm&&(ae/=g.b);break;case 1:case 3:ae=y.a,i==sm&&(ae/=g.a)}_t(D,bx,ae)}return _t(D,vc,re),D}function GRr(){fRe();function n(d){var g=this;this.dispatch=function(y){var x=y.data;switch(x.cmd){case"algorithms":var T=DLe((Fn(),new DR(new Dm(w2.b))));d.postMessage({id:x.id,data:T});break;case"categories":var R=DLe((Fn(),new DR(new Dm(w2.c))));d.postMessage({id:x.id,data:R});break;case"options":var O=DLe((Fn(),new DR(new Dm(w2.d))));d.postMessage({id:x.id,data:O});break;case"register":V6r(x.algorithms),d.postMessage({id:x.id});break;case"layout":_kr(x.graph,x.layoutOptions||{},x.options||{}),d.postMessage({id:x.id,data:x.graph});break}},this.saveDispatch=function(y){try{g.dispatch(y)}catch(x){d.postMessage({id:y.data.id,error:x})}}}function i(d){var g=this;this.dispatcher=new n({postMessage:function(y){g.onmessage({data:y})}}),this.postMessage=function(y){setTimeout(function(){g.dispatcher.saveDispatch({data:y})},0)}}if(typeof document===ige&&typeof self!==ige){var l=new n(self);self.onmessage=l.saveDispatch}else typeof a!==ige&&a.exports&&(Object.defineProperty(s,"__esModule",{value:!0}),a.exports={default:i,Worker:i})}function SKt(n,i,l){var d,g,y,x,T,R,O,D,q,J;for(D=new Jm(l),Ul(D,i),_t(D,(At(),Ji),i),D.o.a=i.g,D.o.b=i.f,D.n.a=i.i,D.n.b=i.j,Lt(l.a,D),Ni(n.a,i,D),((!i.a&&(i.a=new vt(Pi,i,10,11)),i.a).i!=0||Vt(Ht(Et(i,(qt(),K4)))))&&_t(D,Gqe,(Qn(),!0)),O=v(oe(l,au),21),q=v(oe(D,(qt(),Qa)),101),q==(co(),y2)?_t(D,Qa,up):q!=up&&O.Fc((cl(),iN)),J=0,d=v(oe(l,Pd),88),R=new mr((!i.c&&(i.c=new vt(Oh,i,9,9)),i.c));R.e!=R.i.gc();)T=v(wr(R),123),g=Aa(i),(Ze(Et(g,nm))!==Ze((Zp(),wy))||Ze(Et(g,ow))===Ze((ly(),eN))||Ze(Et(g,ow))===Ze((ly(),JI))||Vt(Ht(Et(g,vx)))||Ze(Et(g,j4))!==Ze((z_(),z4))||Ze(Et(g,h2))===Ze((qf(),Tx))||Ze(Et(g,h2))===Ze((qf(),e3))||Ze(Et(g,cw))===Ze((fy(),dN))||Ze(Et(g,cw))===Ze((fy(),fN)))&&!Vt(Ht(Et(i,tne)))&&sa(T,ua,Nt(J++)),Vt(Ht(Et(T,hw)))||Z7r(n,T,D,O,d,q);for(x=new mr((!i.n&&(i.n=new vt(wl,i,1,7)),i.n));x.e!=x.i.gc();)y=v(wr(x),135),!Vt(Ht(Et(y,hw)))&&y.a&&Lt(D.b,x0e(y));return Vt(Ht(oe(D,uP)))&&O.Fc((cl(),qte)),Vt(Ht(oe(D,ane)))&&(O.Fc((cl(),Hte)),O.Fc(iP),_t(D,Qa,up)),D}function vpe(n,i,l,d,g,y,x){var T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn,Xn,Sr,Ui,Fa;for(le=0,Kn=0,O=new me(n.b);O.ale&&(y&&(jo(xt,re),jo(yn,Nt(D.b-1)),Lt(n.d,ae),T.c.length=0),Ui=l.b,Fa+=re+i,re=0,q=u.Math.max(q,l.b+l.c+Sr)),jn(T.c,R),RGt(R,Ui,Fa),q=u.Math.max(q,Ui+Sr+l.c),re=u.Math.max(re,J),Ui+=Sr+i,ae=R;if(xs(n.a,T),Lt(n.d,v(Yt(T,T.c.length-1),163)),q=u.Math.max(q,d),Xn=Fa+re+l.a,Xng.d.d+g.d.a?D.f.d=!0:(D.f.d=!0,D.f.a=!0))),d.b!=d.d.c&&(i=l);D&&(y=v(br(n.f,x.d.i),60),i.by.d.d+y.d.a?D.f.d=!0:(D.f.d=!0,D.f.a=!0))}for(T=new yr(_r(Hs(re).a.Kc(),new S));zr(T);)x=v(Rr(T),18),x.a.b!=0&&(i=v(y0(x.a),8),x.d.j==(Bt(),or)&&(de=new uM(i,new Ct(i.a,g.d.d),g,x),de.f.a=!0,de.a=x.d,jn(le.c,de)),x.d.j==Mr&&(de=new uM(i,new Ct(i.a,g.d.d+g.d.a),g,x),de.f.d=!0,de.a=x.d,jn(le.c,de)))}return le}function WRr(n,i,l){var d,g,y,x,T,R,O,D,q,J;for(R=new Ot,q=i.length,x=V9e(l),O=0;O=ae&&(Me>ae&&(re.c.length=0,ae=Me),jn(re.c,x));re.c.length!=0&&(J=v(Yt(re,KZ(i,re.c.length)),131),Xn.a.Bc(J)!=null,J.s=le++,qMe(J,mn,xt),re.c.length=0)}for(je=n.c.length+1,T=new me(n);T.aKn.s&&(ld(l),Yu(Kn.i,d),d.c>0&&(d.a=Kn,Lt(Kn.t,d),d.b=Mt,Lt(Mt.i,d)))}function TKt(n,i,l,d,g){var y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn,Xn;for(le=new gu(i.b),je=new gu(i.b),J=new gu(i.b),yn=new gu(i.b),de=new gu(i.b),Mt=Ur(i,0);Mt.b!=Mt.d.c;)for(yt=v(Fr(Mt),12),T=new me(yt.g);T.a0,Se=yt.g.c.length>0,O&&Se?jn(J.c,yt):O?jn(le.c,yt):Se&&jn(je.c,yt);for(ae=new me(le);ae.aMe.nh()-O.b&&(J=Me.nh()-O.b),re>Me.oh()-O.d&&(re=Me.oh()-O.d),D0){for(Ue=Ur(n.f,0);Ue.b!=Ue.d.c;)Me=v(Fr(Ue),10),Me.p+=J-n.e;lMe(n),xd(n.f),rPe(n,d,re)}else{for(pi(n.f,re),re.p=d,n.e=u.Math.max(n.e,d),y=new yr(_r(Hs(re).a.Kc(),new S));zr(y);)g=v(Rr(y),18),!g.c.i.c&&g.c.i.k==(lr(),Pc)&&(pi(n.f,g.c.i),g.c.i.p=d-1);n.c=d}else lMe(n),xd(n.f),d=0,zr(new yr(_r(Hs(re).a.Kc(),new S)))?(J=0,J=DGt(J,re),d=J+2,rPe(n,d,re)):(pi(n.f,re),re.p=0,n.e=u.Math.max(n.e,0),n.b=v(Yt(n.d.b,0),30),n.c=0);for(n.f.b==0||lMe(n),n.d.a.c.length=0,Se=new Ot,O=new me(n.d.b);O.a=48&&i<=57){for(d=i-48;g=48&&i<=57;)if(d=d*10+i-48,d<0)throw _e(new oi(fi((ii(),IUe))))}else throw _e(new oi(fi((ii(),cJt))));if(l=d,i==44){if(g>=n.j)throw _e(new oi(fi((ii(),hJt))));if((i=Do(n.i,g++))>=48&&i<=57){for(l=i-48;g=48&&i<=57;)if(l=l*10+i-48,l<0)throw _e(new oi(fi((ii(),IUe))));if(d>l)throw _e(new oi(fi((ii(),dJt))))}else l=-1}if(i!=125)throw _e(new oi(fi((ii(),uJt))));n.bm(g)?(y=(zi(),zi(),new r4(9,y)),n.d=g+1):(y=(zi(),zi(),new r4(3,y)),n.d=g),y.Om(d),y.Nm(l),$i(n)}}return y}function e8r(n){var i,l,d,g,y;switch(l=v(oe(n,(At(),au)),21),i=EX(Dnn),g=v(oe(n,(qt(),W4)),346),g==(Km(),Cy)&&Rd(i,Mnn),Vt(Ht(oe(n,Wye)))?yi(i,(Mo(),N0),(qo(),rye)):yi(i,(Mo(),qc),(qo(),rye)),oe(n,(UQ(),MP))!=null&&Rd(i,Pnn),(Vt(Ht(oe(n,qHe)))||Vt(Ht(oe(n,$He))))&&ch(i,(Mo(),Gl),(qo(),FGe)),v(oe(n,Pd),88).g){case 2:case 3:case 4:ch(yi(i,(Mo(),N0),(qo(),UGe)),Gl,$Ge)}switch(l.Hc((cl(),qte))&&ch(yi(yi(i,(Mo(),N0),(qo(),BGe)),ru,MGe),Gl,PGe),Ze(oe(n,h2))!==Ze((qf(),bne))&&yi(i,(Mo(),qc),(qo(),tqe)),l.Hc(Vte)&&(yi(i,(Mo(),N0),(qo(),aqe)),yi(i,em,rqe),yi(i,qc,iqe)),Ze(oe(n,Jte))!==Ze((aI(),rP))&&Ze(oe(n,lb))!==Ze((Xm(),uH))&&ch(i,(Mo(),Gl),(qo(),KGe)),Vt(Ht(oe(n,zHe)))&&yi(i,(Mo(),qc),(qo(),WGe)),Vt(Ht(oe(n,Hye)))&&yi(i,(Mo(),qc),(qo(),sqe)),fTr(n)&&(Ze(oe(n,W4))===Ze(Cy)?d=v(oe(n,Pq),299):d=v(oe(n,qye),299),y=d==(P8(),kye)?(qo(),nqe):(qo(),cqe),yi(i,(Mo(),ru),y)),v(oe(n,gVe),388).g){case 1:yi(i,(Mo(),ru),(qo(),oqe));break;case 2:ch(yi(yi(i,(Mo(),qc),(qo(),NGe)),ru,OGe),Gl,LGe)}return Ze(oe(n,nm))!==Ze((Zp(),wy))&&yi(i,(Mo(),qc),(qo(),lqe)),i}function RKt(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue;if(Tu(n.a,i)){if(r1(v(br(n.a,i),49),l))return 1}else Ni(n.a,i,new fs);if(Tu(n.a,l)){if(r1(v(br(n.a,l),49),i))return-1}else Ni(n.a,l,new fs);if(Tu(n.e,i)){if(r1(v(br(n.e,i),49),l))return-1}else Ni(n.e,i,new fs);if(Tu(n.e,l)){if(r1(v(br(n.a,l),49),i))return 1}else Ni(n.e,l,new fs);if(n.c==(Zp(),uve)||!ya(i,(At(),ua))||!ya(l,(At(),ua))){for(q=null,O=new me(i.j);O.ax?dI(n,i,l):dI(n,l,i),gx?1:0}return d=v(oe(i,(At(),ua)),17).a,y=v(oe(l,ua),17).a,d>y?dI(n,i,l):dI(n,l,i),dy?1:0}function ex(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de;if(l==null)return null;if(n.a!=i.jk())throw _e(new ar(FI+i.xe()+lx));if($e(i,469)){if(de=V5r(v(i,685),l),!de)throw _e(new ar(Nme+l+"' is not a valid enumerator of '"+i.xe()+"'"));return de}switch(ay((dh(),ko),i).Nl()){case 2:{l=eu(l,!1);break}case 3:{l=eu(l,!0);break}}if(d=ay(ko,i).Jl(),d)return d.jk().wi().ti(d,l);if(J=ay(ko,i).Ll(),J){for(de=new Ot,O=p0e(l),D=0,q=O.length;D1)for(ae=new gk((!n.a&&(n.a=new vt(xa,n,6,6)),n.a));ae.e!=ae.i.gc();)XD(ae);for(x=v(ze((!n.a&&(n.a=new vt(xa,n,6,6)),n.a),0),166),de=Ui,Ui>yt+je?de=yt+je:Uixt+le?Se=xt+le:Fayt-je&&dext-le&&SeUi+Sr?yn=Ui+Sr:ytFa+Mt?mn=Fa+Mt:xtUi-Sr&&ynFa-Mt&&mnl&&(J=l-1),re=Ly+Gh(i,24)*GG*q-q/2,re<0?re=1:re>d&&(re=d-1),g=(kv(),R=new hK,R),nZ(g,J),tZ(g,re),Yr((!x.a&&(x.a=new gs(Ud,x,5)),x.a),g)}function IKt(n){dE(n,new H_(cE(sE(lE(oE(new f_,Vh),"ELK Rectangle Packing"),"Algorithm for packing of unconnected boxes, i.e. graphs without edges. The given order of the boxes is always preserved and the main reading direction of the boxes is left to right. The algorithm is divided into two phases. One phase approximates the width in which the rectangles can be placed. The next phase places the rectangles in rows using the previously calculated width as bounding width and bundles rectangles with a similar height in blocks. A compaction step reduces the size of the drawing. Finally, the rectangles are expanded to fill their bounding box and eliminate empty unused spaces."),new _xt))),It(n,Vh,s6,1.3),It(n,Vh,RI,(Qn(),!1)),It(n,Vh,rx,cje),It(n,Vh,N4,15),It(n,Vh,gee,zt(jln)),It(n,Vh,y5,zt(Xln)),It(n,Vh,l6,zt(Zln)),It(n,Vh,o6,zt(Jln)),It(n,Vh,II,zt(Kln)),It(n,Vh,TM,zt(e2e)),It(n,Vh,NI,zt(ecn)),It(n,Vh,H$e,zt(fje)),It(n,Vh,V$e,zt(dje)),It(n,Vh,q$e,zt(n2e)),It(n,Vh,G$e,zt(pje)),It(n,Vh,Y$e,zt(lje)),It(n,Vh,j$e,zt(t2e)),It(n,Vh,W$e,zt(oje)),It(n,Vh,K$e,zt(hje)),It(n,Vh,SM,zt(sje)),It(n,Vh,bee,zt(Wln)),It(n,Vh,U$e,zt(Qq)),It(n,Vh,$$e,zt(aje)),It(n,Vh,z$e,zt(Zq)),It(n,Vh,F$e,zt(uje))}function wpe(n,i){spe();var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt;if(Ue=n.e,D=n.d,g=n.a,Ue==0)switch(i){case 0:return"0";case 1:return xI;case 2:return"0.00";case 3:return"0.000";case 4:return"0.0000";case 5:return"0.00000";case 6:return"0.000000";default:return Se=new Cv,Se.a+="0E",Se.a+=-i,Se.a}if(le=D*10+1+7,de=st(Tf,rg,28,le+1,15,1),l=le,D==1)if(y=g[0],y<0){Mt=Us(y,ul);do q=Mt,Mt=oG(Mt,10),de[--l]=48+ti(zf(q,Go(Mt,10)))&vs;while(Oc(Mt,0)!=0)}else{Mt=y;do q=Mt,Mt=Mt/10|0,de[--l]=48+(q-Mt*10)&vs;while(Mt!=0)}else{je=st(Wr,vi,28,D,15,1),xt=D,Gc(g,0,je,0,xt);e:for(;;){for(Me=0,T=xt-1;T>=0;T--)yt=zo(w0(Me,32),Us(je[T],ul)),re=qEr(yt),je[T]=ti(re),Me=ti(xE(re,32));ae=ti(Me),J=l;do de[--l]=48+ae%10&vs;while((ae=ae/10|0)!=0&&l!=0);for(d=9-J+l,x=0;x0;x++)de[--l]=48;for(R=xt-1;je[R]==0;R--)if(R==0)break e;xt=R+1}for(;de[l]==48;)++l}return O=Ue<0,O&&(de[--l]=45),Qp(de,l,le-l)}function NKt(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt;switch(n.c=i,n.g=new Br,l=(fE(),new aE(n.c)),d=new _K(l),NLe(d),Ue=ai(Et(n.c,(cG(),Lje))),R=v(Et(n.c,d2e),324),yt=v(Et(n.c,f2e),437),x=v(Et(n.c,Ije),490),je=v(Et(n.c,h2e),438),n.j=We(at(Et(n.c,pcn))),T=n.a,R.g){case 0:T=n.a;break;case 1:T=n.b;break;case 2:T=n.i;break;case 3:T=n.e;break;case 4:T=n.f;break;default:throw _e(new ar(Cee+(R.f!=null?R.f:""+R.g)))}if(n.d=new SDt(T,yt,x),_t(n.d,(L8(),ZM),Ht(Et(n.c,dcn))),n.d.c=Vt(Ht(Et(n.c,Nje))),bQ(n.c).i==0)return n.d;for(q=new mr(bQ(n.c));q.e!=q.i.gc();){for(D=v(wr(q),27),re=D.g/2,J=D.f/2,xt=new Ct(D.i+re,D.j+J);Tu(n.g,xt);)_E(xt,(u.Math.random()-.5)*sg,(u.Math.random()-.5)*sg);le=v(Et(D,(Ei(),vN)),140),de=new FDt(xt,new rf(xt.a-re-n.j/2-le.b,xt.b-J-n.j/2-le.d,D.g+n.j+(le.b+le.c),D.f+n.j+(le.d+le.a))),Lt(n.d.i,de),Ni(n.g,xt,new Ms(de,D))}switch(je.g){case 0:if(Ue==null)n.d.d=v(Yt(n.d.i,0),68);else for(Me=new me(n.d.i);Me.a0?Sr+1:1);for(x=new me(xt.g);x.a0?Sr+1:1)}n.c[O]==0?pi(n.e,le):n.a[O]==0&&pi(n.f,le),++O}for(ae=-1,re=1,q=new Ot,n.d=v(oe(i,(At(),x6)),234);zd>0;){for(;n.e.b!=0;)Fa=v(dde(n.e),10),n.b[Fa.p]=ae--,_Pe(n,Fa),--zd;for(;n.f.b!=0;)Lh=v(dde(n.f),10),n.b[Lh.p]=re++,_Pe(n,Lh),--zd;if(zd>0){for(J=Po,Me=new me(Ue);Me.a=J&&(je>J&&(q.c.length=0,J=je),jn(q.c,le)));D=n.sg(q),n.b[D.p]=re++,_Pe(n,D),--zd}}for(Ui=Ue.c.length+1,O=0;On.b[Ll]&&(ZE(d,!0),_t(i,Oq,(Qn(),!0)));n.a=null,n.c=null,n.b=null,xd(n.f),xd(n.e),l.Vg()}function OKt(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt;for(yt=v(ze((!n.a&&(n.a=new vt(xa,n,6,6)),n.a),0),166),D=new ah,je=new Br,xt=zjt(yt),yu(je.f,yt,xt),J=new Br,d=new Ea,ae=$g(Ad(Te(xe(Md,1),Yn,20,0,[(!i.d&&(i.d=new Gn(ss,i,8,5)),i.d),(!i.e&&(i.e=new Gn(ss,i,7,4)),i.e)])));zr(ae);){if(re=v(Rr(ae),74),(!n.a&&(n.a=new vt(xa,n,6,6)),n.a).i!=1)throw _e(new ar(yZt+(!n.a&&(n.a=new vt(xa,n,6,6)),n.a).i));re!=n&&(de=v(ze((!re.a&&(re.a=new vt(xa,re,6,6)),re.a),0),166),qa(d,de,d.c.b,d.c),le=v(Pl(ol(je.f,de)),13),le||(le=zjt(de),yu(je.f,de,le)),q=l?$s(new Wo(v(Yt(xt,xt.c.length-1),8)),v(Yt(le,le.c.length-1),8)):$s(new Wo(($n(0,xt.c.length),v(xt.c[0],8))),($n(0,le.c.length),v(le.c[0],8))),yu(J.f,de,q))}if(d.b!=0)for(Se=v(Yt(xt,l?xt.c.length-1:0),8),O=1;O1&&qa(D,Se,D.c.b,D.c),$fe(g)));Se=Me}return D}function LKt(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn;for(l.Ug(LQt,1),Kn=v(Wl(Ki(new xn(null,new Nn(i,16)),new KEt),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[(Ch(),Ql)]))),15),D=v(Wl(Ki(new xn(null,new Nn(i,16)),new PAt(i)),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[Ql]))),15),ae=v(Wl(Ki(new xn(null,new Nn(i,16)),new MAt(i)),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[Ql]))),15),le=st(Sne,wee,40,i.gc(),0,1),x=0;x=0&&mn=0&&!le[re]){le[re]=g,D.gd(T),--T;break}if(re=mn-J,re=0&&!le[re]){le[re]=g,D.gd(T),--T;break}}for(ae.jd(new XEt),R=le.length-1;R>=0;R--)!le[R]&&!ae.dc()&&(le[R]=v(ae.Xb(0),40),ae.gd(0));for(O=0;O=0;R--)pi(l,($n(R,x.c.length),v(x.c[R],8)));return l}function MKt(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je;for(Ue=We(at(Et(i,(Vg(),r3)))),re=We(at(Et(i,IP))),J=We(at(Et(i,Dne))),x9e((!i.a&&(i.a=new vt(Pi,i,10,11)),i.a)),Se=TWt((!i.a&&(i.a=new vt(Pi,i,10,11)),i.a),Ue,n.b),de=0;deJ&&aG(($n(J,i.c.length),v(i.c[J],186)),D),D=null;i.c.length>J&&($n(J,i.c.length),v(i.c[J],186)).a.c.length==0;)Yu(i,($n(J,i.c.length),i.c[J]));if(!D){--x;continue}if(!Vt(Ht(v(Yt(D.b,0),27).of((Z1(),Zq))))&&xAr(i,ae,y,D,de,l,J,d)){le=!0;continue}if(de){if(re=ae.b,q=D.f,!Vt(Ht(v(Yt(D.b,0),27).of(Zq)))&&G6r(i,ae,y,D,l,J,d,g)){if(le=!0,re=n.j){n.a=-1,n.c=1;return}if(i=Do(n.i,n.d++),n.a=i,n.b==1){switch(i){case 92:if(d=10,n.d>=n.j)throw _e(new oi(fi((ii(),Lee))));n.a=Do(n.i,n.d++);break;case 45:(n.e&512)==512&&n.d=n.j||Do(n.i,n.d)!=63)break;if(++n.d>=n.j)throw _e(new oi(fi((ii(),Hme))));switch(i=Do(n.i,n.d++),i){case 58:d=13;break;case 61:d=14;break;case 33:d=15;break;case 91:d=19;break;case 62:d=18;break;case 60:if(n.d>=n.j)throw _e(new oi(fi((ii(),Hme))));if(i=Do(n.i,n.d++),i==61)d=16;else if(i==33)d=17;else throw _e(new oi(fi((ii(),VZt))));break;case 35:for(;n.d=n.j)throw _e(new oi(fi((ii(),Lee))));n.a=Do(n.i,n.d++);break;default:d=0}n.c=d}function u8r(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de;if(l.Ug("Process compaction",1),!!Vt(Ht(oe(i,(pc(),pYe))))){for(g=v(oe(i,Ax),88),re=We(at(oe(i,Nve))),Bkr(n,i,g),ARr(i,re/2/2),ae=i.b,D_(ae,new kAt(g)),O=Ur(ae,0);O.b!=O.d.c;)if(R=v(Fr(O),40),!Vt(Ht(oe(R,(fa(),p2))))){if(d=cCr(R,g),le=ikr(R,i),q=0,J=0,d)switch(de=d.e,g.g){case 2:q=de.a-re-R.f.a,le.e.a-re-R.f.aq&&(q=le.e.a+le.f.a+re),J=q+R.f.a;break;case 4:q=de.b-re-R.f.b,le.e.b-re-R.f.bq&&(q=le.e.b+le.f.b+re),J=q+R.f.b}else if(le)switch(g.g){case 2:q=le.e.a-re-R.f.a,J=q+R.f.a;break;case 1:q=le.e.a+le.f.a+re,J=q+R.f.a;break;case 4:q=le.e.b-re-R.f.b,J=q+R.f.b;break;case 3:q=le.e.b+le.f.b+re,J=q+R.f.b}Ze(oe(i,Ive))===Ze((OD(),Vq))?(y=q,x=J,T=U8(Ki(new xn(null,new Nn(n.a,16)),new b8t(y,x))),T.a!=null?g==(ys(),Ol)||g==ql?R.e.a=q:R.e.b=q:(g==(ys(),Ol)||g==Ef?T=U8(Ki(jFt(new xn(null,new Nn(n.a,16))),new RAt(y))):T=U8(Ki(jFt(new xn(null,new Nn(n.a,16))),new IAt(y))),T.a!=null&&(g==Ol||g==ql?R.e.a=We(at((Tr(T.a!=null),v(T.a,42)).a)):R.e.b=We(at((Tr(T.a!=null),v(T.a,42)).a)))),T.a!=null&&(D=$l(n.a,(Tr(T.a!=null),T.a),0),D>0&&D!=v(oe(R,gg),17).a&&(_t(R,sYe,(Qn(),!0)),_t(R,gg,Nt(D))))):g==(ys(),Ol)||g==ql?R.e.a=q:R.e.b=q}l.Vg()}}function PKt(n){var i,l,d,g,y,x,T,R,O;for(n.b=1,$i(n),i=null,n.c==0&&n.a==94?($i(n),i=(zi(),zi(),new Td(4)),Jc(i,0,GI),T=new Td(4)):T=(zi(),zi(),new Td(4)),g=!0;(O=n.c)!=1;){if(O==0&&n.a==93&&!g){i&&(gM(i,T),T=i);break}if(l=n.a,d=!1,O==10)switch(l){case 100:case 68:case 119:case 87:case 115:case 83:C4(T,fI(l)),d=!0;break;case 105:case 73:case 99:case 67:l=(C4(T,fI(l)),-1),l<0&&(d=!0);break;case 112:case 80:if(R=SMe(n,l),!R)throw _e(new oi(fi((ii(),Vme))));C4(T,R),d=!0;break;default:l=aPe(n)}else if(O==24&&!g){if(i&&(gM(i,T),T=i),y=PKt(n),gM(T,y),n.c!=0||n.a!=93)throw _e(new oi(fi((ii(),tJt))));break}if($i(n),!d){if(O==0){if(l==91)throw _e(new oi(fi((ii(),kUe))));if(l==93)throw _e(new oi(fi((ii(),RUe))));if(l==45&&!g&&n.a!=93)throw _e(new oi(fi((ii(),Yme))))}if(n.c!=0||n.a!=45||l==45&&g)Jc(T,l,l);else{if($i(n),(O=n.c)==1)throw _e(new oi(fi((ii(),Dee))));if(O==0&&n.a==93)Jc(T,l,l),Jc(T,45,45);else{if(O==0&&n.a==93||O==24)throw _e(new oi(fi((ii(),Yme))));if(x=n.a,O==0){if(x==91)throw _e(new oi(fi((ii(),kUe))));if(x==93)throw _e(new oi(fi((ii(),RUe))));if(x==45)throw _e(new oi(fi((ii(),Yme))))}else O==10&&(x=aPe(n));if($i(n),l>x)throw _e(new oi(fi((ii(),iJt))));Jc(T,l,x)}}}g=!1}if(n.c==1)throw _e(new oi(fi((ii(),Dee))));return a5(T),fM(T),n.b=0,$i(n),T}function h8r(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt;if(l.Ug("Coffman-Graham Layering",1),i.a.c.length==0){l.Vg();return}for(yt=v(oe(i,(qt(),VHe)),17).a,R=0,x=0,J=new me(i.a);J.a=yt||!a2r(Se,d))&&(d=DLt(i,D)),po(Se,d),y=new yr(_r(Hs(Se).a.Kc(),new S));zr(y);)g=v(Rr(y),18),!n.a[g.p]&&(le=g.c.i,--n.e[le.p],n.e[le.p]==0&&_k(iI(re,le),SI));for(O=D.c.length-1;O>=0;--O)Lt(i.b,($n(O,D.c.length),v(D.c[O],30)));i.a.c.length=0,l.Vg()}function BKt(n,i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je;je=!1;do for(je=!1,y=i?new m_(n.a.b).a.gc()-2:1;i?y>=0:yv(oe(de,ua),17).a)&&(Ue=!1);if(Ue){for(R=i?y+1:y-1,T=uOe(n.a,Nt(R)),x=!1,Me=!0,d=!1,D=Ur(T,0);D.b!=D.d.c;)O=v(Fr(D),10),ya(O,ua)?O.p!=q.p&&(x=x|(i?v(oe(O,ua),17).av(oe(q,ua),17).a),Me=!1):!x&&Me&&O.k==(lr(),Pc)&&(d=!0,i?J=v(Rr(new yr(_r(Hs(O).a.Kc(),new S))),18).c.i:J=v(Rr(new yr(_r(os(O).a.Kc(),new S))),18).d.i,J==q&&(i?l=v(Rr(new yr(_r(os(O).a.Kc(),new S))),18).d.i:l=v(Rr(new yr(_r(Hs(O).a.Kc(),new S))),18).c.i,(i?v(YS(n.a,l),17).a-v(YS(n.a,J),17).a:v(YS(n.a,J),17).a-v(YS(n.a,l),17).a)<=2&&(Me=!1)));if(d&&Me&&(i?l=v(Rr(new yr(_r(os(q).a.Kc(),new S))),18).d.i:l=v(Rr(new yr(_r(Hs(q).a.Kc(),new S))),18).c.i,(i?v(YS(n.a,l),17).a-v(YS(n.a,q),17).a:v(YS(n.a,q),17).a-v(YS(n.a,l),17).a)<=2&&l.k==(lr(),is)&&(Me=!1)),x||Me){for(le=pYt(n,q,i);le.a.gc()!=0;)ae=v(le.a.ec().Kc().Pb(),10),le.a.Bc(ae)!=null,bo(le,pYt(n,ae,i));--re,je=!0}}}while(je)}function d8r(n){Jr(n.c,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#decimal"])),Jr(n.d,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#integer"])),Jr(n.e,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#boolean"])),Jr(n.f,gi,Te(xe(Xt,1),kt,2,6,[Bo,"EBoolean",Mi,"EBoolean:Object"])),Jr(n.i,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#byte"])),Jr(n.g,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#hexBinary"])),Jr(n.j,gi,Te(xe(Xt,1),kt,2,6,[Bo,"EByte",Mi,"EByte:Object"])),Jr(n.n,gi,Te(xe(Xt,1),kt,2,6,[Bo,"EChar",Mi,"EChar:Object"])),Jr(n.t,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#double"])),Jr(n.u,gi,Te(xe(Xt,1),kt,2,6,[Bo,"EDouble",Mi,"EDouble:Object"])),Jr(n.F,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#float"])),Jr(n.G,gi,Te(xe(Xt,1),kt,2,6,[Bo,"EFloat",Mi,"EFloat:Object"])),Jr(n.I,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#int"])),Jr(n.J,gi,Te(xe(Xt,1),kt,2,6,[Bo,"EInt",Mi,"EInt:Object"])),Jr(n.N,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#long"])),Jr(n.O,gi,Te(xe(Xt,1),kt,2,6,[Bo,"ELong",Mi,"ELong:Object"])),Jr(n.Z,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#short"])),Jr(n.$,gi,Te(xe(Xt,1),kt,2,6,[Bo,"EShort",Mi,"EShort:Object"])),Jr(n._,gi,Te(xe(Xt,1),kt,2,6,[Bo,"http://www.w3.org/2001/XMLSchema#string"]))}function f8r(n,i,l,d,g,y,x){var T,R,O,D,q,J,re,ae;return J=v(d.a,17).a,re=v(d.b,17).a,q=n.b,ae=n.c,T=0,D=0,i==(ys(),Ol)||i==ql?(D=CU(Azt(e4(Bl(new xn(null,new Nn(l.b,16)),new ZEt),new DEt))),q.e.b+q.f.b/2>D?(O=++re,T=We(at(ad(QS(Bl(new xn(null,new Nn(l.b,16)),new _8t(g,O)),new MEt))))):(R=++J,T=We(at(ad(Ek(Bl(new xn(null,new Nn(l.b,16)),new w8t(g,R)),new PEt)))))):(D=CU(Azt(e4(Bl(new xn(null,new Nn(l.b,16)),new UEt),new LEt))),q.e.a+q.f.a/2>D?(O=++re,T=We(at(ad(QS(Bl(new xn(null,new Nn(l.b,16)),new y8t(g,O)),new BEt))))):(R=++J,T=We(at(ad(Ek(Bl(new xn(null,new Nn(l.b,16)),new v8t(g,R)),new FEt)))))),i==Ol?(jo(n.a,new Ct(We(at(oe(q,(fa(),b1))))-g,T)),jo(n.a,new Ct(ae.e.a+ae.f.a+g+y,T)),jo(n.a,new Ct(ae.e.a+ae.f.a+g+y,ae.e.b+ae.f.b/2)),jo(n.a,new Ct(ae.e.a+ae.f.a,ae.e.b+ae.f.b/2))):i==ql?(jo(n.a,new Ct(We(at(oe(q,(fa(),L0))))+g,q.e.b+q.f.b/2)),jo(n.a,new Ct(q.e.a+q.f.a+g,T)),jo(n.a,new Ct(ae.e.a-g-y,T)),jo(n.a,new Ct(ae.e.a-g-y,ae.e.b+ae.f.b/2)),jo(n.a,new Ct(ae.e.a,ae.e.b+ae.f.b/2))):i==Ef?(jo(n.a,new Ct(T,We(at(oe(q,(fa(),b1))))-g)),jo(n.a,new Ct(T,ae.e.b+ae.f.b+g+y)),jo(n.a,new Ct(ae.e.a+ae.f.a/2,ae.e.b+ae.f.b+g+y)),jo(n.a,new Ct(ae.e.a+ae.f.a/2,ae.e.b+ae.f.b+g))):(n.a.b==0||(v(y0(n.a),8).b=We(at(oe(q,(fa(),L0))))+g*v(x.b,17).a),jo(n.a,new Ct(T,We(at(oe(q,(fa(),L0))))+g*v(x.b,17).a)),jo(n.a,new Ct(T,ae.e.b-g*v(x.a,17).a-y))),new Ms(Nt(J),Nt(re))}function p8r(n){var i,l,d,g,y,x,T,R,O,D,q,J,re;if(x=!0,q=null,d=null,g=null,i=!1,re=Qun,O=null,y=null,T=0,R=q0e(n,T,RKe,IKe),R=0&&An(n.substr(T,2),"//")?(T+=2,R=q0e(n,T,ZP,JP),d=(mo(T,R,n.length),n.substr(T,R-T)),T=R):q!=null&&(T==n.length||(sr(T,n.length),n.charCodeAt(T)!=47))&&(x=!1,R=D8e(n,Wu(35),T),R==-1&&(R=n.length),d=(mo(T,R,n.length),n.substr(T,R-T)),T=R);if(!l&&T0&&Do(D,D.length-1)==58&&(g=D,T=R)),TF1e(y))&&(q=y);for(!q&&(q=($n(0,de.c.length),v(de.c[0],185))),le=new me(i.b);le.aq&&(Xn=0,Sr+=D+Mt,D=0),Ajt(yt,x,Xn,Sr),i=u.Math.max(i,Xn+xt.a),D=u.Math.max(D,xt.b),Xn+=xt.a+Mt;for(je=new Br,l=new Br,mn=new me(n);mn.a=-1900?1:0,l>=4?bi(n,Te(xe(Xt,1),kt,2,6,[eXt,tXt])[T]):bi(n,Te(xe(Xt,1),kt,2,6,["BC","AD"])[T]);break;case 121:D2r(n,l,d);break;case 77:ZCr(n,l,d);break;case 107:R=g.q.getHours(),R==0?Gg(n,24,l):Gg(n,R,l);break;case 83:dTr(n,l,g);break;case 69:D=d.q.getDay(),l==5?bi(n,Te(xe(Xt,1),kt,2,6,["S","M","T","W","T","F","S"])[D]):l==4?bi(n,Te(xe(Xt,1),kt,2,6,[zpe,Gpe,qpe,Hpe,Vpe,Ype,jpe])[D]):bi(n,Te(xe(Xt,1),kt,2,6,["Sun","Mon","Tue","Wed","Thu","Fri","Sat"])[D]);break;case 97:g.q.getHours()>=12&&g.q.getHours()<24?bi(n,Te(xe(Xt,1),kt,2,6,["AM","PM"])[1]):bi(n,Te(xe(Xt,1),kt,2,6,["AM","PM"])[0]);break;case 104:q=g.q.getHours()%12,q==0?Gg(n,12,l):Gg(n,q,l);break;case 75:J=g.q.getHours()%12,Gg(n,J,l);break;case 72:re=g.q.getHours(),Gg(n,re,l);break;case 99:ae=d.q.getDay(),l==5?bi(n,Te(xe(Xt,1),kt,2,6,["S","M","T","W","T","F","S"])[ae]):l==4?bi(n,Te(xe(Xt,1),kt,2,6,[zpe,Gpe,qpe,Hpe,Vpe,Ype,jpe])[ae]):l==3?bi(n,Te(xe(Xt,1),kt,2,6,["Sun","Mon","Tue","Wed","Thu","Fri","Sat"])[ae]):Gg(n,ae,1);break;case 76:le=d.q.getMonth(),l==5?bi(n,Te(xe(Xt,1),kt,2,6,["J","F","M","A","M","J","J","A","S","O","N","D"])[le]):l==4?bi(n,Te(xe(Xt,1),kt,2,6,[Ipe,Npe,Ope,Lpe,e6,Dpe,Mpe,Ppe,Bpe,Fpe,$pe,Upe])[le]):l==3?bi(n,Te(xe(Xt,1),kt,2,6,["Jan","Feb","Mar","Apr",e6,"Jun","Jul","Aug","Sep","Oct","Nov","Dec"])[le]):Gg(n,le+1,l);break;case 81:de=d.q.getMonth()/3|0,l<4?bi(n,Te(xe(Xt,1),kt,2,6,["Q1","Q2","Q3","Q4"])[de]):bi(n,Te(xe(Xt,1),kt,2,6,["1st quarter","2nd quarter","3rd quarter","4th quarter"])[de]);break;case 100:Se=d.q.getDate(),Gg(n,Se,l);break;case 109:O=g.q.getMinutes(),Gg(n,O,l);break;case 115:x=g.q.getSeconds(),Gg(n,x,l);break;case 122:l<4?bi(n,y.c[0]):bi(n,y.c[1]);break;case 118:bi(n,y.b);break;case 90:l<3?bi(n,a4r(y)):l==3?bi(n,u4r(y)):bi(n,h4r(y.a));break;default:return!1}return!0}function JPe(n,i,l,d){var g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn,Xn,Sr,Ui;if(mjt(i),R=v(ze((!i.b&&(i.b=new Gn(Lr,i,4,7)),i.b),0),84),D=v(ze((!i.c&&(i.c=new Gn(Lr,i,5,8)),i.c),0),84),T=zl(R),O=zl(D),x=(!i.a&&(i.a=new vt(xa,i,6,6)),i.a).i==0?null:v(ze((!i.a&&(i.a=new vt(xa,i,6,6)),i.a),0),166),Mt=v(br(n.a,T),10),Xn=v(br(n.a,O),10),yn=null,Sr=null,$e(R,193)&&(xt=v(br(n.a,R),305),$e(xt,12)?yn=v(xt,12):$e(xt,10)&&(Mt=v(xt,10),yn=v(Yt(Mt.j,0),12))),$e(D,193)&&(Kn=v(br(n.a,D),305),$e(Kn,12)?Sr=v(Kn,12):$e(Kn,10)&&(Xn=v(Kn,10),Sr=v(Yt(Xn.j,0),12))),!Mt||!Xn)throw _e(new ik("The source or the target of edge "+i+" could not be found. This usually happens when an edge connects a node laid out by ELK Layered to a node in another level of hierarchy laid out by either another instance of ELK Layered or another layout algorithm alltogether. The former can be solved by setting the hierarchyHandling option to INCLUDE_CHILDREN."));for(le=new NE,Ul(le,i),_t(le,(At(),Ji),i),_t(le,(qt(),Nl),null),re=v(oe(d,au),21),Mt==Xn&&re.Fc((cl(),aP)),yn||(yt=(ll(),_u),mn=null,x&&OT(v(oe(Mt,Qa),101))&&(mn=new Ct(x.j,x.k),sPt(mn,lz(i)),DPt(mn,l),l4(O,T)&&(yt=Rh,Hi(mn,Mt.n))),yn=bWt(Mt,mn,yt,d)),Sr||(yt=(ll(),Rh),Ui=null,x&&OT(v(oe(Xn,Qa),101))&&(Ui=new Ct(x.b,x.c),sPt(Ui,lz(i)),DPt(Ui,l)),Sr=bWt(Xn,Ui,yt,So(Xn))),Uo(le,yn),lo(le,Sr),(yn.e.c.length>1||yn.g.c.length>1||Sr.e.c.length>1||Sr.g.c.length>1)&&re.Fc((cl(),iP)),J=new mr((!i.n&&(i.n=new vt(wl,i,1,7)),i.n));J.e!=J.i.gc();)if(q=v(wr(J),135),!Vt(Ht(Et(q,hw)))&&q.a)switch(de=x0e(q),Lt(le.b,de),v(oe(de,pg),278).g){case 1:case 2:re.Fc((cl(),rN));break;case 0:re.Fc((cl(),nN)),_t(de,pg,(W1(),wN))}if(y=v(oe(d,hP),322),Se=v(oe(d,cne),323),g=y==(SD(),Rq)||Se==(HD(),lve),x&&(!x.a&&(x.a=new gs(Ud,x,5)),x.a).i!=0&&g){for(Me=hG(x),ae=new ah,je=Ur(Me,0);je.b!=je.d.c;)Ue=v(Fr(je),8),pi(ae,new Wo(Ue));_t(le,jqe,ae)}return le}function y8r(n,i,l,d){var g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn,Xn,Sr,Ui,Fa;for(mn=0,Kn=0,Mt=new Br,yt=v(ad(QS(Bl(new xn(null,new Nn(n.b,16)),new $Et),new jEt)),17).a+1,yn=st(Wr,vi,28,yt,15,1),de=st(Wr,vi,28,yt,15,1),le=0;le1)for(T=Sr+1;TO.b.e.b*(1-Se)+O.c.e.b*Se));ae++);if(xt.gc()>0&&(Ui=O.a.b==0?Eo(O.b.e):v(y0(O.a),8),Ue=Hi(Eo(v(xt.Xb(xt.gc()-1),40).e),v(xt.Xb(xt.gc()-1),40).f),J=Hi(Eo(v(xt.Xb(0),40).e),v(xt.Xb(0),40).f),ae>=xt.gc()-1&&Ui.b>Ue.b&&O.c.e.b>Ue.b||ae<=0&&Ui.bO.b.e.a*(1-Se)+O.c.e.a*Se));ae++);if(xt.gc()>0&&(Ui=O.a.b==0?Eo(O.b.e):v(y0(O.a),8),Ue=Hi(Eo(v(xt.Xb(xt.gc()-1),40).e),v(xt.Xb(xt.gc()-1),40).f),J=Hi(Eo(v(xt.Xb(0),40).e),v(xt.Xb(0),40).f),ae>=xt.gc()-1&&Ui.a>Ue.a&&O.c.e.a>Ue.a||ae<=0&&Ui.a=We(at(oe(n,(fa(),cYe))))&&++Kn):(re.f&&re.d.e.a<=We(at(oe(n,(fa(),Cve))))&&++mn,re.g&&re.c.e.a+re.c.f.a>=We(at(oe(n,(fa(),lYe))))&&++Kn)}else je==0?wMe(O):je<0&&(++yn[Sr],++de[Fa],Xn=f8r(O,i,n,new Ms(Nt(mn),Nt(Kn)),l,d,new Ms(Nt(de[Fa]),Nt(yn[Sr]))),mn=v(Xn.a,17).a,Kn=v(Xn.b,17).a)}function v8r(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me;if(d=i,R=l,n.b&&d.j==(Bt(),cr)&&R.j==(Bt(),cr)&&(Me=d,d=R,R=Me),Tu(n.a,d)){if(r1(v(br(n.a,d),49),R))return 1}else Ni(n.a,d,new fs);if(Tu(n.a,R)){if(r1(v(br(n.a,R),49),d))return-1}else Ni(n.a,R,new fs);if(Tu(n.d,d)){if(r1(v(br(n.d,d),49),R))return-1}else Ni(n.d,d,new fs);if(Tu(n.d,R)){if(r1(v(br(n.a,R),49),d))return 1}else Ni(n.d,R,new fs);if(d.j!=R.j)return Se=ssr(d.j,R.j),Se==-1?mf(n,R,d):mf(n,d,R),Se;if(d.e.c.length!=0&&R.e.c.length!=0){if(n.b&&(Se=tzt(d,R),Se!=0))return Se==-1?mf(n,R,d):Se==1&&mf(n,d,R),Se;if(y=v(Yt(d.e,0),18).c.i,D=v(Yt(R.e,0),18).c.i,y==D)return g=v(oe(v(Yt(d.e,0),18),(At(),ua)),17).a,O=v(oe(v(Yt(R.e,0),18),ua),17).a,g>O?mf(n,d,R):mf(n,R,d),gO?1:0;for(ae=n.c,le=0,de=ae.length;leO?mf(n,d,R):mf(n,R,d),gO?1:0):n.b&&(Se=tzt(d,R),Se!=0)?(Se==-1?mf(n,R,d):Se==1&&mf(n,d,R),Se):(x=0,q=0,ya(v(Yt(d.g,0),18),ua)&&(x=v(oe(v(Yt(d.g,0),18),ua),17).a),ya(v(Yt(R.g,0),18),ua)&&(q=v(oe(v(Yt(d.g,0),18),ua),17).a),T&&T==J?Vt(Ht(oe(v(Yt(d.g,0),18),ap)))&&!Vt(Ht(oe(v(Yt(R.g,0),18),ap)))?(mf(n,d,R),1):!Vt(Ht(oe(v(Yt(d.g,0),18),ap)))&&Vt(Ht(oe(v(Yt(R.g,0),18),ap)))?(mf(n,R,d),-1):(x>q?mf(n,d,R):mf(n,R,d),xq?1:0):(n.f&&(n.f._b(T)&&(x=v(n.f.xc(T),17).a),n.f._b(J)&&(q=v(n.f.xc(J),17).a)),x>q?mf(n,d,R):mf(n,R,d),xq?1:0))):d.e.c.length!=0&&R.g.c.length!=0?(mf(n,d,R),1):d.g.c.length!=0&&R.e.c.length!=0?(mf(n,R,d),-1):ya(d,(At(),ua))&&ya(R,ua)?(g=v(oe(d,ua),17).a,O=v(oe(R,ua),17).a,g>O?mf(n,d,R):mf(n,R,d),gO?1:0):(mf(n,R,d),-1)}function _8r(n){n.gb||(n.gb=!0,n.b=fc(n,0),Ha(n.b,18),_a(n.b,19),n.a=fc(n,1),Ha(n.a,1),_a(n.a,2),_a(n.a,3),_a(n.a,4),_a(n.a,5),n.o=fc(n,2),Ha(n.o,8),Ha(n.o,9),_a(n.o,10),_a(n.o,11),_a(n.o,12),_a(n.o,13),_a(n.o,14),_a(n.o,15),_a(n.o,16),_a(n.o,17),_a(n.o,18),_a(n.o,19),_a(n.o,20),_a(n.o,21),_a(n.o,22),_a(n.o,23),kl(n.o),kl(n.o),kl(n.o),kl(n.o),kl(n.o),kl(n.o),kl(n.o),kl(n.o),kl(n.o),kl(n.o),n.p=fc(n,3),Ha(n.p,2),Ha(n.p,3),Ha(n.p,4),Ha(n.p,5),_a(n.p,6),_a(n.p,7),kl(n.p),kl(n.p),n.q=fc(n,4),Ha(n.q,8),n.v=fc(n,5),_a(n.v,9),kl(n.v),kl(n.v),kl(n.v),n.w=fc(n,6),Ha(n.w,2),Ha(n.w,3),Ha(n.w,4),_a(n.w,5),n.B=fc(n,7),_a(n.B,1),kl(n.B),kl(n.B),kl(n.B),n.Q=fc(n,8),_a(n.Q,0),kl(n.Q),n.R=fc(n,9),Ha(n.R,1),n.S=fc(n,10),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),kl(n.S),n.T=fc(n,11),_a(n.T,10),_a(n.T,11),_a(n.T,12),_a(n.T,13),_a(n.T,14),kl(n.T),kl(n.T),n.U=fc(n,12),Ha(n.U,2),Ha(n.U,3),_a(n.U,4),_a(n.U,5),_a(n.U,6),_a(n.U,7),kl(n.U),n.V=fc(n,13),_a(n.V,10),n.W=fc(n,14),Ha(n.W,18),Ha(n.W,19),Ha(n.W,20),_a(n.W,21),_a(n.W,22),_a(n.W,23),n.bb=fc(n,15),Ha(n.bb,10),Ha(n.bb,11),Ha(n.bb,12),Ha(n.bb,13),Ha(n.bb,14),Ha(n.bb,15),Ha(n.bb,16),_a(n.bb,17),kl(n.bb),kl(n.bb),n.eb=fc(n,16),Ha(n.eb,2),Ha(n.eb,3),Ha(n.eb,4),Ha(n.eb,5),Ha(n.eb,6),Ha(n.eb,7),_a(n.eb,8),_a(n.eb,9),n.ab=fc(n,17),Ha(n.ab,0),Ha(n.ab,1),n.H=fc(n,18),_a(n.H,0),_a(n.H,1),_a(n.H,2),_a(n.H,3),_a(n.H,4),_a(n.H,5),kl(n.H),n.db=fc(n,19),_a(n.db,2),n.c=Li(n,20),n.d=Li(n,21),n.e=Li(n,22),n.f=Li(n,23),n.i=Li(n,24),n.g=Li(n,25),n.j=Li(n,26),n.k=Li(n,27),n.n=Li(n,28),n.r=Li(n,29),n.s=Li(n,30),n.t=Li(n,31),n.u=Li(n,32),n.fb=Li(n,33),n.A=Li(n,34),n.C=Li(n,35),n.D=Li(n,36),n.F=Li(n,37),n.G=Li(n,38),n.I=Li(n,39),n.J=Li(n,40),n.L=Li(n,41),n.M=Li(n,42),n.N=Li(n,43),n.O=Li(n,44),n.P=Li(n,45),n.X=Li(n,46),n.Y=Li(n,47),n.Z=Li(n,48),n.$=Li(n,49),n._=Li(n,50),n.cb=Li(n,51),n.K=Li(n,52))}function w8r(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn,Xn,Sr;for(x=new Ea,xt=v(oe(l,(qt(),Pd)),88),le=0,bo(x,(!i.a&&(i.a=new vt(Pi,i,10,11)),i.a));x.b!=0;)D=v(x.b==0?null:(Tr(x.b!=0),cf(x,x.a.a)),27),O=Aa(D),(Ze(Et(O,nm))!==Ze((Zp(),wy))||Ze(Et(O,ow))===Ze((ly(),eN))||Ze(Et(O,ow))===Ze((ly(),JI))||Vt(Ht(Et(O,vx)))||Ze(Et(O,j4))!==Ze((z_(),z4))||Ze(Et(O,h2))===Ze((qf(),Tx))||Ze(Et(O,h2))===Ze((qf(),e3))||Ze(Et(O,cw))===Ze((fy(),dN))||Ze(Et(O,cw))===Ze((fy(),fN)))&&!Vt(Ht(Et(D,tne)))&&sa(D,(At(),ua),Nt(le++)),Se=!Vt(Ht(Et(D,hw))),Se&&(J=(!D.a&&(D.a=new vt(Pi,D,10,11)),D.a).i!=0,ae=XEr(D),re=Ze(Et(D,W4))===Ze((Km(),Cy)),Sr=!Y1(D,(Ei(),yN))||GPt(ai(Et(D,yN))),je=null,Sr&&re&&(J||ae)&&(je=Qjt(D),_t(je,Pd,xt),ya(je,Bq)&&Z6t(new PLe(We(at(oe(je,Bq)))),je),v(Et(D,uw),181).gc()!=0&&(q=je,ts(new xn(null,(!D.c&&(D.c=new vt(Oh,D,9,9)),new Nn(D.c,16))),new aCt(q)),qYt(D,je))),Mt=l,yn=v(br(n.a,Aa(D)),10),yn&&(Mt=yn.e),Ue=SKt(n,D,Mt),je&&(Ue.e=je,je.e=Ue,bo(x,(!D.a&&(D.a=new vt(Pi,D,10,11)),D.a))));for(le=0,qa(x,i,x.c.b,x.c);x.b!=0;){for(y=v(x.b==0?null:(Tr(x.b!=0),cf(x,x.a.a)),27),R=new mr((!y.b&&(y.b=new vt(ss,y,12,3)),y.b));R.e!=R.i.gc();)T=v(wr(R),74),mjt(T),(Ze(Et(i,nm))!==Ze((Zp(),wy))||Ze(Et(i,ow))===Ze((ly(),eN))||Ze(Et(i,ow))===Ze((ly(),JI))||Vt(Ht(Et(i,vx)))||Ze(Et(i,j4))!==Ze((z_(),z4))||Ze(Et(i,h2))===Ze((qf(),Tx))||Ze(Et(i,h2))===Ze((qf(),e3))||Ze(Et(i,cw))===Ze((fy(),dN))||Ze(Et(i,cw))===Ze((fy(),fN)))&&sa(T,(At(),ua),Nt(le++)),Kn=zl(v(ze((!T.b&&(T.b=new Gn(Lr,T,4,7)),T.b),0),84)),Xn=zl(v(ze((!T.c&&(T.c=new Gn(Lr,T,5,8)),T.c),0),84)),!(Vt(Ht(Et(T,hw)))||Vt(Ht(Et(Kn,hw)))||Vt(Ht(Et(Xn,hw))))&&(de=KE(T)&&Vt(Ht(Et(Kn,K4)))&&Vt(Ht(Et(T,lw))),yt=y,de||l4(Xn,Kn)?yt=Kn:l4(Kn,Xn)&&(yt=Xn),Mt=l,yn=v(br(n.a,yt),10),yn&&(Mt=yn.e),Me=JPe(n,T,yt,Mt),_t(Me,(At(),qqe),w5r(n,T,i,l)));if(re=Ze(Et(y,W4))===Ze((Km(),Cy)),re)for(g=new mr((!y.a&&(y.a=new vt(Pi,y,10,11)),y.a));g.e!=g.i.gc();)d=v(wr(g),27),Sr=!Y1(d,(Ei(),yN))||GPt(ai(Et(d,yN))),mn=Ze(Et(d,W4))===Ze(Cy),Sr&&mn&&qa(x,d,x.c.b,x.c)}}function At(){At=z;var n,i;Ji=new la($Be),qqe=new la("coordinateOrigin"),Bye=new la("processors"),Gqe=new Ba("compoundNode",(Qn(),!1)),Lq=new Ba("insideConnections",!1),jqe=new la("originalBendpoints"),Wqe=new la("originalDummyNodePosition"),Kqe=new la("originalLabelEdge"),oP=new la("representedLabels"),sP=new la("endLabels"),_6=new la("endLabel.origin"),E6=new Ba("labelSide",(Id(),dH)),M5=new Ba("maxEdgeThickness",0),ap=new Ba("reversed",!1),x6=new la(zXt),m1=new Ba("longEdgeSource",null),Kf=new Ba("longEdgeTarget",null),V4=new Ba("longEdgeHasLabelDummies",!1),Dq=new Ba("longEdgeBeforeLabelDummy",!1),Wte=new Ba("edgeConstraint",(F_(),_ye)),mx=new la("inLayerLayoutUnit"),aw=new Ba("inLayerConstraint",(Ym(),Nq)),w6=new Ba("inLayerSuccessorConstraint",new Ot),Yqe=new Ba("inLayerSuccessorConstraintBetweenNonDummies",!1),kh=new la("portDummy"),jte=new Ba("crossingHint",Nt(0)),au=new Ba("graphProperties",(i=v(n1(Aye),9),new nf(i,v(v0(i,i.length),9),0))),vc=new Ba("externalPortSide",(Bt(),lc)),Vqe=new Ba("externalPortSize",new ho),Oye=new la("externalPortReplacedDummies"),Kte=new la("externalPortReplacedDummy"),ob=new Ba("externalPortConnections",(n=v(n1(tl),9),new nf(n,v(v0(n,n.length),9),0))),bx=new Ba(OXt,0),zqe=new la("barycenterAssociates"),S6=new la("TopSideComments"),v6=new la("BottomSideComments"),Yte=new la("CommentConnectionPort"),Dye=new Ba("inputCollect",!1),Pye=new Ba("outputCollect",!1),Oq=new Ba("cyclic",!1),Hqe=new la("crossHierarchyMap"),$ye=new la("targetOffset"),new Ba("splineLabelSize",new ho),B5=new la("spacings"),Xte=new Ba("partitionConstraint",!1),gx=new la("breakingPoint.info"),Zqe=new la("splines.survivingEdge"),sw=new la("splines.route.start"),F5=new la("splines.edgeChain"),Qqe=new la("originalPortConstraints"),yx=new la("selfLoopHolder"),aN=new la("splines.nsPortY"),ua=new la("modelOrder"),Mye=new la("longEdgeTargetNode"),c2=new Ba(fQt,!1),P5=new Ba(fQt,!1),Lye=new la("layerConstraints.hiddenNodes"),Xqe=new la("layerConstraints.opposidePort"),Fye=new la("targetNode.modelOrder")}function E8r(n,i,l,d){var g,y,x,T,R,O,D,q,J,re,ae;for(q=Ur(n.b,0);q.b!=q.d.c;)if(D=v(Fr(q),40),!An(D.c,_ee))for(y=v(Wl(new xn(null,new Nn(N4r(D,n),16)),Sh(new Fe,new Le,new Je,Te(xe(Il,1),wt,108,0,[(Ch(),Ql)]))),15),i==(ys(),Ol)||i==ql?y.jd(new qEt):y.jd(new HEt),ae=y.gc(),g=0;g0&&(T=v(y0(v(y.Xb(g),65).a),8).a,J=D.e.a+D.f.a/2,R=v(y0(v(y.Xb(g),65).a),8).b,re=D.e.b+D.f.b/2,d>0&&u.Math.abs(R-re)/(u.Math.abs(T-J)/40)>50&&(re>R?jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a+d/5.3,D.e.b+D.f.b*x-d/2)):jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a+d/5.3,D.e.b+D.f.b*x+d/2)))),jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a,D.e.b+D.f.b*x))):i==ql?(O=We(at(oe(D,(fa(),b1)))),D.e.a-d>O?jo(v(y.Xb(g),65).a,new Ct(O-l,D.e.b+D.f.b*x)):v(y.Xb(g),65).a.b>0&&(T=v(y0(v(y.Xb(g),65).a),8).a,J=D.e.a+D.f.a/2,R=v(y0(v(y.Xb(g),65).a),8).b,re=D.e.b+D.f.b/2,d>0&&u.Math.abs(R-re)/(u.Math.abs(T-J)/40)>50&&(re>R?jo(v(y.Xb(g),65).a,new Ct(D.e.a-d/5.3,D.e.b+D.f.b*x-d/2)):jo(v(y.Xb(g),65).a,new Ct(D.e.a-d/5.3,D.e.b+D.f.b*x+d/2)))),jo(v(y.Xb(g),65).a,new Ct(D.e.a,D.e.b+D.f.b*x))):i==Ef?(O=We(at(oe(D,(fa(),L0)))),D.e.b+D.f.b+d0&&(T=v(y0(v(y.Xb(g),65).a),8).a,J=D.e.a+D.f.a/2,R=v(y0(v(y.Xb(g),65).a),8).b,re=D.e.b+D.f.b/2,d>0&&u.Math.abs(T-J)/(u.Math.abs(R-re)/40)>50&&(J>T?jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a*x-d/2,D.e.b+d/5.3+D.f.b)):jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a*x+d/2,D.e.b+d/5.3+D.f.b)))),jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a*x,D.e.b+D.f.b))):(O=We(at(oe(D,(fa(),b1)))),zUt(v(y.Xb(g),65),n)?jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a*x,v(y0(v(y.Xb(g),65).a),8).b)):D.e.b-d>O?jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a*x,O-l)):v(y.Xb(g),65).a.b>0&&(T=v(y0(v(y.Xb(g),65).a),8).a,J=D.e.a+D.f.a/2,R=v(y0(v(y.Xb(g),65).a),8).b,re=D.e.b+D.f.b/2,d>0&&u.Math.abs(T-J)/(u.Math.abs(R-re)/40)>50&&(J>T?jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a*x-d/2,D.e.b-d/5.3)):jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a*x+d/2,D.e.b-d/5.3)))),jo(v(y.Xb(g),65).a,new Ct(D.e.a+D.f.a*x,D.e.b)))}function Ei(){Ei=z;var n,i;yN=new la(ZQt),rC=new la(JQt),aWe=(qg(),m2e),Hcn=new En(jFe,aWe),X5=new En(s6,null),Vcn=new la(sUe),oWe=(q_(),va(v2e,Te(xe(_2e,1),wt,298,0,[y2e]))),rH=new En(gee,oWe),iH=new En(nq,(Qn(),!1)),lWe=(ys(),cp),gw=new En(ime,lWe),hWe=(Xm(),L2e),uWe=new En(tq,hWe),Wcn=new En(iUe,!1),pWe=(Km(),Xne),J5=new En(pee,pWe),xWe=new bE(12),Ty=new En(rx,xWe),sH=new En(SM,!1),S2e=new En(bee,!1),oH=new En(TM,!1),kWe=(co(),y2),UP=new En(Sge,kWe),R6=new la(mee),lH=new la(YG),N2e=new la(XJ),O2e=new la(xM),gWe=new ah,kx=new En(i$e,gWe),jcn=new En(o$e,!1),Kcn=new En(l$e,!1),mWe=new mL,vN=new En(u$e,mWe),Yne=new En(VFe,!1),Jcn=new En(eZt,1),Z5=new la(tZt),Q5=new la(nZt),_N=new En(jG,!1),new En(rZt,!0),Nt(0),new En(iZt,Nt(100)),new En(aZt,!1),Nt(0),new En(sZt,Nt(4e3)),Nt(0),new En(oZt,Nt(400)),new En(lZt,!1),new En(cZt,!1),new En(uZt,!0),new En(hZt,!1),sWe=(LZ(),B2e),Ycn=new En(aUe,sWe),eun=new En(DFe,10),tun=new En(MFe,10),OWe=new En(bge,20),nun=new En(PFe,10),LWe=new En(xge,2),DWe=new En(rme,10),MWe=new En(BFe,0),jne=new En(UFe,5),PWe=new En(FFe,1),BWe=new En($Fe,1),bw=new En(N4,20),run=new En(zFe,10),UWe=new En(GFe,10),I6=new la(qFe),$We=new yIt,FWe=new En(h$e,$We),Qcn=new la(sme),SWe=!1,Xcn=new En(ame,SWe),yWe=new bE(5),bWe=new En(XFe,yWe),vWe=(w4(),i=v(n1(fl),9),new nf(i,v(v0(i,i.length),9),0)),eC=new En(II,vWe),CWe=(ZT(),b2),TWe=new En(JFe,CWe),C2e=new la(e$e),A2e=new la(t$e),k2e=new la(n$e),T2e=new la(r$e),_We=(n=v(n1(WP),9),new nf(n,v(v0(n,n.length),9),0)),mw=new En(y5,_We),EWe=bn((qh(),TN)),g2=new En(o6,EWe),wWe=new Ct(0,0),tC=new En(l6,wWe),i3=new En(RI,!1),cWe=(W1(),wN),E2e=new En(a$e,cWe),w2e=new En(QJ,!1),Nt(1),new En(dZt,null),AWe=new la(c$e),R2e=new la(s$e),NWe=(Bt(),lc),nC=new En(YFe,NWe),jh=new la(HFe),RWe=(Ah(),bn(v2)),a3=new En(NI,RWe),I2e=new En(QFe,!1),IWe=new En(ZFe,!0),Kne=new En(WG,1),zWe=new En(oUe,null),cH=new En(KG,150),Wne=new En(XG,1.414),N6=new En(ix,null),iun=new En(lUe,1),aH=new En(WFe,!1),x2e=new En(KFe,!1),dWe=new En(yge,1),fWe=(oJ(),M2e),new En(fZt,fWe),Zcn=!0,sun=(Uk(),l3),oun=l3,aun=l3}function qo(){qo=z,UGe=new ps("DIRECTION_PREPROCESSOR",0),BGe=new ps("COMMENT_PREPROCESSOR",1),k5=new ps("EDGE_AND_LAYER_CONSTRAINT_EDGE_REVERSER",2),nye=new ps("INTERACTIVE_EXTERNAL_PORT_POSITIONER",3),aqe=new ps("PARTITION_PREPROCESSOR",4),_te=new ps("LABEL_DUMMY_INSERTER",5),Ite=new ps("SELF_LOOP_PREPROCESSOR",6),q4=new ps("LAYER_CONSTRAINT_PREPROCESSOR",7),rqe=new ps("PARTITION_MIDPROCESSOR",8),WGe=new ps("HIGH_DEGREE_NODE_LAYER_PROCESSOR",9),tqe=new ps("NODE_PROMOTION",10),G4=new ps("LAYER_CONSTRAINT_POSTPROCESSOR",11),iqe=new ps("PARTITION_POSTPROCESSOR",12),VGe=new ps("HIERARCHICAL_PORT_CONSTRAINT_PROCESSOR",13),sqe=new ps("SEMI_INTERACTIVE_CROSSMIN_PROCESSOR",14),NGe=new ps("BREAKING_POINT_INSERTER",15),Ste=new ps("LONG_EDGE_SPLITTER",16),rye=new ps("PORT_SIDE_PROCESSOR",17),yte=new ps("INVERTED_PORT_PROCESSOR",18),Ate=new ps("PORT_LIST_SORTER",19),lqe=new ps("SORT_BY_INPUT_ORDER_OF_MODEL",20),Cte=new ps("NORTH_SOUTH_PORT_PREPROCESSOR",21),OGe=new ps("BREAKING_POINT_PROCESSOR",22),nqe=new ps(aQt,23),cqe=new ps(sQt,24),kte=new ps("SELF_LOOP_PORT_RESTORER",25),oqe=new ps("SINGLE_EDGE_GRAPH_WRAPPER",26),vte=new ps("IN_LAYER_CONSTRAINT_PROCESSOR",27),GGe=new ps("END_NODE_PORT_LABEL_MANAGEMENT_PROCESSOR",28),JGe=new ps("LABEL_AND_NODE_SIZE_PROCESSOR",29),ZGe=new ps("INNERMOST_NODE_MARGIN_CALCULATOR",30),Nte=new ps("SELF_LOOP_ROUTER",31),MGe=new ps("COMMENT_NODE_MARGIN_CALCULATOR",32),bte=new ps("END_LABEL_PREPROCESSOR",33),Ete=new ps("LABEL_DUMMY_SWITCHER",34),DGe=new ps("CENTER_LABEL_MANAGEMENT_PROCESSOR",35),jI=new ps("LABEL_SIDE_SELECTOR",36),XGe=new ps("HYPEREDGE_DUMMY_MERGER",37),YGe=new ps("HIERARCHICAL_PORT_DUMMY_SIZE_PROCESSOR",38),eqe=new ps("LAYER_SIZE_AND_GRAPH_HEIGHT_CALCULATOR",39),eP=new ps("HIERARCHICAL_PORT_POSITION_PROCESSOR",40),FGe=new ps("CONSTRAINTS_POSTPROCESSOR",41),PGe=new ps("COMMENT_POSTPROCESSOR",42),QGe=new ps("HYPERNODE_PROCESSOR",43),jGe=new ps("HIERARCHICAL_PORT_ORTHOGONAL_EDGE_ROUTER",44),xte=new ps("LONG_EDGE_JOINER",45),Rte=new ps("SELF_LOOP_POSTPROCESSOR",46),LGe=new ps("BREAKING_POINT_REMOVER",47),Tte=new ps("NORTH_SOUTH_PORT_POSTPROCESSOR",48),KGe=new ps("HORIZONTAL_COMPACTOR",49),wte=new ps("LABEL_DUMMY_REMOVER",50),qGe=new ps("FINAL_SPLINE_BENDPOINTS_CALCULATOR",51),zGe=new ps("END_LABEL_SORTER",52),Cq=new ps("REVERSED_EDGE_RESTORER",53),mte=new ps("END_LABEL_POSTPROCESSOR",54),HGe=new ps("HIERARCHICAL_NODE_RESIZER",55),$Ge=new ps("DIRECTION_POSTPROCESSOR",56)}function eBe(){eBe=z,cHe=(Rz(),$te),vin=new En(KBe,cHe),Nin=new En(XBe,(Qn(),!1)),gHe=(IQ(),Nye),Pin=new En(tee,gHe),Qin=new En(QBe,!1),Zin=new En(ZBe,!0),Vrn=new En(JBe,!1),xHe=(Az(),dve),fan=new En(eFe,xHe),Nt(1),wan=new En(tFe,Nt(7)),Ean=new En(nFe,!1),Oin=new En(rFe,!1),lHe=(ly(),yye),yin=new En(Nge,lHe),yHe=(fy(),ive),Xin=new En(eq,yHe),mHe=(pf(),Mq),Gin=new En(iFe,mHe),Nt(-1),zin=new En(aFe,null),Nt(-1),qin=new En(sFe,Nt(-1)),Nt(-1),Hin=new En(Oge,Nt(4)),Nt(-1),Yin=new En(Lge,Nt(2)),bHe=(qf(),bne),Kin=new En(Dge,bHe),Nt(0),Win=new En(Mge,Nt(0)),$in=new En(Pge,Nt(qi)),oHe=(SD(),nP),bin=new En(kM,oHe),nin=new En(oFe,!1),cin=new En(Bge,.1),gin=new En(Fge,!1),hin=new En(lFe,null),din=new En(cFe,null),Nt(-1),fin=new En(uFe,null),Nt(-1),pin=new En(hFe,Nt(-1)),Nt(0),rin=new En(dFe,Nt(40)),sHe=(P8(),Rye),oin=new En($ge,sHe),aHe=Iq,iin=new En(nee,aHe),EHe=(HD(),mP),dan=new En(v5,EHe),ran=new la(ree),vHe=(Ez(),zte),Jin=new En(Uge,vHe),_He=(lG(),Gte),tan=new En(zge,_He),san=new En(Gge,.3),lan=new la(qge),wHe=(g4(),mne),can=new En(Hge,wHe),dHe=(yZ(),pve),Sin=new En(fFe,dHe),fHe=(ND(),mve),Tin=new En(pFe,fHe),pHe=(H8(),vP),Cin=new En(iee,pHe),kin=new En(aee,.2),Ein=new En(Vge,2),ban=new En(gFe,null),van=new En(mFe,10),yan=new En(bFe,10),_an=new En(yFe,20),Nt(0),pan=new En(vFe,Nt(0)),Nt(0),gan=new En(_Fe,Nt(0)),Nt(0),man=new En(wFe,Nt(0)),Yrn=new En(Yge,!1),tHe=(aI(),rP),Wrn=new En(EFe,tHe),eHe=(zQ(),mye),jrn=new En(xFe,eHe),Din=new En(see,!1),Nt(0),Lin=new En(jge,Nt(16)),Nt(0),Min=new En(Wge,Nt(5)),CHe=(EZ(),vve),Gan=new En(ib,CHe),xan=new En(oee,10),Can=new En(lee,1),THe=(iZ(),Fte),Lan=new En(RM,THe),Ran=new la(Kge),SHe=Nt(1),Nt(0),Nan=new En(Xge,SHe),AHe=(rZ(),yve),Yan=new En(cee,AHe),qan=new la(uee),Fan=new En(hee,!0),Pan=new En(dee,2),Uan=new En(Qge,!0),hHe=(cJ(),Ute),win=new En(SFe,hHe),uHe=(jk(),QI),_in=new En(TFe,uHe),iHe=(Zp(),wy),tin=new En(fee,iHe),ein=new En(CFe,!1),Jrn=new En(AFe,!1),nHe=(z_(),z4),Krn=new En(Zge,nHe),rHe=(DD(),ave),Zrn=new En(kFe,rHe),Xrn=new En(Jge,0),Qrn=new En(eme,0),Fin=vye,Bin=Rq,Vin=pne,jin=pne,Uin=rve,uin=(Km(),Cy),min=nP,lin=nP,ain=nP,sin=Cy,ian=bP,aan=mP,ean=mP,nan=mP,oan=cve,han=bP,uan=bP,Ain=(Xm(),O6),Rin=O6,Iin=vP,xin=uH,San=pN,Tan=t3,Aan=pN,kan=t3,Dan=pN,Man=t3,Ian=bye,Oan=Fte,jan=pN,Wan=t3,Han=pN,Van=t3,$an=t3,Ban=t3,zan=t3}function x8r(n,i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn,Xn,Sr,Ui,Fa,Lh,Ll,zd,cC,Ly,U0,z0,ww,F6,A2,$6,bg,cm,Lx,U6,uC,yg,Ew,db,Whn,uXe,Dx,oB,e_e,z6,lB,m3,cB,t_e,Khn;for(uXe=0,Ui=i,Ll=0,Ly=Ui.length;Ll0&&(n.a[bg.p]=uXe++)}for(lB=0,Fa=l,zd=0,U0=Fa.length;zd0;){for(bg=(Tr(uC.b>0),v(uC.a.Xb(uC.c=--uC.b),12)),U6=0,T=new me(bg.e);T.a0&&(bg.j==(Bt(),or)?(n.a[bg.p]=lB,++lB):(n.a[bg.p]=lB+z0+F6,++F6))}lB+=F6}for(Lx=new Br,ae=new Hp,Sr=i,Lh=0,cC=Sr.length;LhO.b&&(O.b=yg)):bg.i.c==Whn&&(ygO.c&&(O.c=yg));for(_8(le,0,le.length,null),z6=st(Wr,vi,28,le.length,15,1),d=st(Wr,vi,28,lB+1,15,1),Se=0;Se0;)Mt%2>0&&(g+=t_e[Mt+1]),Mt=(Mt-1)/2|0,++t_e[Mt];for(mn=st(Ysn,Yn,374,le.length*2,0,1),je=0;je0&&sz(Lh.f),Et(Se,zWe)!=null&&(T=v(Et(Se,zWe),347),Lx=T.Tg(Se),DT(Se,u.Math.max(Se.g,Lx.a),u.Math.max(Se.f,Lx.b)));if(U0=v(Et(i,Ty),107),re=i.g-(U0.b+U0.c),J=i.f-(U0.d+U0.a),yg.bh("Available Child Area: ("+re+"|"+J+")"),sa(i,X5,re/J),wGt(i,g,d.eh(cC)),v(Et(i,N6),280)==nre&&(XPe(i),DT(i,U0.b+We(at(Et(i,Z5)))+U0.c,U0.d+We(at(Et(i,Q5)))+U0.a)),yg.bh("Executed layout algorithm: "+ai(Et(i,yN))+" on node "+i.k),v(Et(i,N6),280)==l3){if(re<0||J<0)throw _e(new Gb("The size defined by the parent parallel node is too small for the space provided by the paddings of the child hierarchical node. "+i.k));for(Y1(i,Z5)||Y1(i,Q5)||XPe(i),le=We(at(Et(i,Z5))),ae=We(at(Et(i,Q5))),yg.bh("Desired Child Area: ("+le+"|"+ae+")"),ww=re/le,F6=J/ae,z0=u.Math.min(ww,u.Math.min(F6,We(at(Et(i,iun))))),sa(i,Kne,z0),yg.bh(i.k+" -- Local Scale Factor (X|Y): ("+ww+"|"+F6+")"),je=v(Et(i,rH),21),y=0,x=0,z0'?":An(VZt,n)?"'(?<' or '(? toIndex: ",bBe=", toIndex: ",yBe="Index: ",vBe=", Size: ",TI="org.eclipse.elk.alg.common",ui={50:1},pXt="org.eclipse.elk.alg.common.compaction",gXt="Scanline/EventHandler",Xg="org.eclipse.elk.alg.common.compaction.oned",mXt="CNode belongs to another CGroup.",bXt="ISpacingsHandler/1",age="The ",sge=" instance has been finished already.",yXt="The direction ",vXt=" is not supported by the CGraph instance.",_Xt="OneDimensionalCompactor",wXt="OneDimensionalCompactor/lambda$0$Type",EXt="Quadruplet",xXt="ScanlineConstraintCalculator",SXt="ScanlineConstraintCalculator/ConstraintsScanlineHandler",TXt="ScanlineConstraintCalculator/ConstraintsScanlineHandler/lambda$0$Type",CXt="ScanlineConstraintCalculator/Timestamp",AXt="ScanlineConstraintCalculator/lambda$0$Type",ig={178:1,46:1},oge="org.eclipse.elk.alg.common.compaction.options",oc="org.eclipse.elk.core.data",_Be="org.eclipse.elk.polyomino.traversalStrategy",wBe="org.eclipse.elk.polyomino.lowLevelSort",EBe="org.eclipse.elk.polyomino.highLevelSort",xBe="org.eclipse.elk.polyomino.fill",Hf={134:1},lge="polyomino",_M="org.eclipse.elk.alg.common.networksimplex",Qg={183:1,3:1,4:1},kXt="org.eclipse.elk.alg.common.nodespacing",W_="org.eclipse.elk.alg.common.nodespacing.cellsystem",CI="CENTER",RXt={217:1,336:1},SBe={3:1,4:1,5:1,603:1},r6="LEFT",i6="RIGHT",TBe="Vertical alignment cannot be null",CBe="BOTTOM",HJ="org.eclipse.elk.alg.common.nodespacing.internal",wM="UNDEFINED",ep=.01,qG="org.eclipse.elk.alg.common.nodespacing.internal.algorithm",IXt="LabelPlacer/lambda$0$Type",NXt="LabelPlacer/lambda$1$Type",OXt="portRatioOrPosition",AI="org.eclipse.elk.alg.common.overlaps",cge="DOWN",ag="org.eclipse.elk.alg.common.polyomino",VJ="NORTH",uge="EAST",hge="SOUTH",dge="WEST",YJ="org.eclipse.elk.alg.common.polyomino.structures",ABe="Direction",fge="Grid is only of size ",pge=". Requested point (",gge=") is out of bounds.",jJ=" Given center based coordinates were (",HG="org.eclipse.elk.graph.properties",LXt="IPropertyHolder",kBe={3:1,96:1,137:1},a6="org.eclipse.elk.alg.common.spore",DXt="org.eclipse.elk.alg.common.utils",K_={205:1},g5="org.eclipse.elk.core",MXt="Connected Components Compaction",PXt="org.eclipse.elk.alg.disco",WJ="org.eclipse.elk.alg.disco.graph",mge="org.eclipse.elk.alg.disco.options",RBe="CompactionStrategy",IBe="org.eclipse.elk.disco.componentCompaction.strategy",NBe="org.eclipse.elk.disco.componentCompaction.componentLayoutAlgorithm",OBe="org.eclipse.elk.disco.debug.discoGraph",LBe="org.eclipse.elk.disco.debug.discoPolys",BXt="componentCompaction",X_="org.eclipse.elk.disco",bge="org.eclipse.elk.spacing.componentComponent",yge="org.eclipse.elk.edge.thickness",s6="org.eclipse.elk.aspectRatio",rx="org.eclipse.elk.padding",m5="org.eclipse.elk.alg.disco.transform",vge=1.5707963267948966,b5=17976931348623157e292,I4={3:1,4:1,5:1,198:1},FXt={3:1,6:1,4:1,5:1,100:1,115:1},_ge="org.eclipse.elk.alg.force",DBe="ComponentsProcessor",$Xt="ComponentsProcessor/1",MBe="ElkGraphImporter/lambda$0$Type",VG="org.eclipse.elk.alg.force.graph",UXt="Component Layout",PBe="org.eclipse.elk.alg.force.model",KJ="org.eclipse.elk.force.model",BBe="org.eclipse.elk.force.iterations",FBe="org.eclipse.elk.force.repulsivePower",wge="org.eclipse.elk.force.temperature",sg=.001,Ege="org.eclipse.elk.force.repulsion",EM="org.eclipse.elk.alg.force.options",kI=1.600000023841858,Nu="org.eclipse.elk.force",YG="org.eclipse.elk.priority",N4="org.eclipse.elk.spacing.nodeNode",xge="org.eclipse.elk.spacing.edgeLabel",XJ="org.eclipse.elk.randomSeed",xM="org.eclipse.elk.separateConnectedComponents",SM="org.eclipse.elk.interactive",Sge="org.eclipse.elk.portConstraints",QJ="org.eclipse.elk.edgeLabels.inline",TM="org.eclipse.elk.omitNodeMicroLayout",RI="org.eclipse.elk.nodeSize.fixedGraphSize",o6="org.eclipse.elk.nodeSize.options",y5="org.eclipse.elk.nodeSize.constraints",II="org.eclipse.elk.nodeLabels.placement",NI="org.eclipse.elk.portLabels.placement",jG="org.eclipse.elk.topdownLayout",WG="org.eclipse.elk.topdown.scaleFactor",KG="org.eclipse.elk.topdown.hierarchicalNodeWidth",XG="org.eclipse.elk.topdown.hierarchicalNodeAspectRatio",ix="org.eclipse.elk.topdown.nodeType",$Be="origin",zXt="random",GXt="boundingBox.upLeft",qXt="boundingBox.lowRight",UBe="org.eclipse.elk.stress.fixed",zBe="org.eclipse.elk.stress.desiredEdgeLength",GBe="org.eclipse.elk.stress.dimension",qBe="org.eclipse.elk.stress.epsilon",HBe="org.eclipse.elk.stress.iterationLimit",e2="org.eclipse.elk.stress",HXt="ELK Stress",l6="org.eclipse.elk.nodeSize.minimum",ZJ="org.eclipse.elk.alg.force.stress",VXt="Layered layout",c6="org.eclipse.elk.alg.layered",QG="org.eclipse.elk.alg.layered.compaction.components",CM="org.eclipse.elk.alg.layered.compaction.oned",JJ="org.eclipse.elk.alg.layered.compaction.oned.algs",Q_="org.eclipse.elk.alg.layered.compaction.recthull",tp="org.eclipse.elk.alg.layered.components",og="NONE",VBe="MODEL_ORDER",Dc={3:1,6:1,4:1,9:1,5:1,126:1},YXt={3:1,6:1,4:1,5:1,150:1,100:1,115:1},eee="org.eclipse.elk.alg.layered.compound",ba={47:1},tu="org.eclipse.elk.alg.layered.graph",Tge=" -> ",jXt="Not supported by LGraph",YBe="Port side is undefined",Cge={3:1,6:1,4:1,5:1,483:1,150:1,100:1,115:1},gy={3:1,6:1,4:1,5:1,150:1,199:1,210:1,100:1,115:1},WXt={3:1,6:1,4:1,5:1,150:1,2042:1,210:1,100:1,115:1},KXt=`([{"' \r +`,XXt=`)]}"' \r +`,QXt="The given string contains parts that cannot be parsed as numbers.",ZG="org.eclipse.elk.core.math",ZXt={3:1,4:1,140:1,214:1,423:1},JXt={3:1,4:1,107:1,214:1,423:1},my="org.eclipse.elk.alg.layered.graph.transform",eQt="ElkGraphImporter",tQt="ElkGraphImporter/lambda$1$Type",nQt="ElkGraphImporter/lambda$2$Type",rQt="ElkGraphImporter/lambda$4$Type",dr="org.eclipse.elk.alg.layered.intermediate",iQt="Node margin calculation",aQt="ONE_SIDED_GREEDY_SWITCH",sQt="TWO_SIDED_GREEDY_SWITCH",Age="No implementation is available for the layout processor ",kge="IntermediateProcessorStrategy",Rge="Node '",oQt="FIRST_SEPARATE",lQt="LAST_SEPARATE",cQt="Odd port side processing",Cs="org.eclipse.elk.alg.layered.intermediate.compaction",AM="org.eclipse.elk.alg.layered.intermediate.greedyswitch",Zg="org.eclipse.elk.alg.layered.p3order.counting",JG={230:1},u6="org.eclipse.elk.alg.layered.intermediate.loops",Dd="org.eclipse.elk.alg.layered.intermediate.loops.ordering",t2="org.eclipse.elk.alg.layered.intermediate.loops.routing",jBe="org.eclipse.elk.alg.layered.intermediate.preserveorder",lg="org.eclipse.elk.alg.layered.intermediate.wrapping",Mc="org.eclipse.elk.alg.layered.options",Ige="INTERACTIVE",WBe="GREEDY",uQt="DEPTH_FIRST",hQt="EDGE_LENGTH",dQt="SELF_LOOPS",fQt="firstTryWithInitialOrder",KBe="org.eclipse.elk.layered.directionCongruency",XBe="org.eclipse.elk.layered.feedbackEdges",tee="org.eclipse.elk.layered.interactiveReferencePoint",QBe="org.eclipse.elk.layered.mergeEdges",ZBe="org.eclipse.elk.layered.mergeHierarchyEdges",JBe="org.eclipse.elk.layered.allowNonFlowPortsToSwitchSides",eFe="org.eclipse.elk.layered.portSortingStrategy",tFe="org.eclipse.elk.layered.thoroughness",nFe="org.eclipse.elk.layered.unnecessaryBendpoints",rFe="org.eclipse.elk.layered.generatePositionAndLayerIds",Nge="org.eclipse.elk.layered.cycleBreaking.strategy",eq="org.eclipse.elk.layered.layering.strategy",iFe="org.eclipse.elk.layered.layering.layerConstraint",aFe="org.eclipse.elk.layered.layering.layerChoiceConstraint",sFe="org.eclipse.elk.layered.layering.layerId",Oge="org.eclipse.elk.layered.layering.minWidth.upperBoundOnWidth",Lge="org.eclipse.elk.layered.layering.minWidth.upperLayerEstimationScalingFactor",Dge="org.eclipse.elk.layered.layering.nodePromotion.strategy",Mge="org.eclipse.elk.layered.layering.nodePromotion.maxIterations",Pge="org.eclipse.elk.layered.layering.coffmanGraham.layerBound",kM="org.eclipse.elk.layered.crossingMinimization.strategy",oFe="org.eclipse.elk.layered.crossingMinimization.forceNodeModelOrder",Bge="org.eclipse.elk.layered.crossingMinimization.hierarchicalSweepiness",Fge="org.eclipse.elk.layered.crossingMinimization.semiInteractive",lFe="org.eclipse.elk.layered.crossingMinimization.inLayerPredOf",cFe="org.eclipse.elk.layered.crossingMinimization.inLayerSuccOf",uFe="org.eclipse.elk.layered.crossingMinimization.positionChoiceConstraint",hFe="org.eclipse.elk.layered.crossingMinimization.positionId",dFe="org.eclipse.elk.layered.crossingMinimization.greedySwitch.activationThreshold",$ge="org.eclipse.elk.layered.crossingMinimization.greedySwitch.type",nee="org.eclipse.elk.layered.crossingMinimization.greedySwitchHierarchical.type",v5="org.eclipse.elk.layered.nodePlacement.strategy",ree="org.eclipse.elk.layered.nodePlacement.favorStraightEdges",Uge="org.eclipse.elk.layered.nodePlacement.bk.edgeStraightening",zge="org.eclipse.elk.layered.nodePlacement.bk.fixedAlignment",Gge="org.eclipse.elk.layered.nodePlacement.linearSegments.deflectionDampening",qge="org.eclipse.elk.layered.nodePlacement.networkSimplex.nodeFlexibility",Hge="org.eclipse.elk.layered.nodePlacement.networkSimplex.nodeFlexibility.default",fFe="org.eclipse.elk.layered.edgeRouting.selfLoopDistribution",pFe="org.eclipse.elk.layered.edgeRouting.selfLoopOrdering",iee="org.eclipse.elk.layered.edgeRouting.splines.mode",aee="org.eclipse.elk.layered.edgeRouting.splines.sloppy.layerSpacingFactor",Vge="org.eclipse.elk.layered.edgeRouting.polyline.slopedEdgeZoneWidth",gFe="org.eclipse.elk.layered.spacing.baseValue",mFe="org.eclipse.elk.layered.spacing.edgeNodeBetweenLayers",bFe="org.eclipse.elk.layered.spacing.edgeEdgeBetweenLayers",yFe="org.eclipse.elk.layered.spacing.nodeNodeBetweenLayers",vFe="org.eclipse.elk.layered.priority.direction",_Fe="org.eclipse.elk.layered.priority.shortness",wFe="org.eclipse.elk.layered.priority.straightness",Yge="org.eclipse.elk.layered.compaction.connectedComponents",EFe="org.eclipse.elk.layered.compaction.postCompaction.strategy",xFe="org.eclipse.elk.layered.compaction.postCompaction.constraints",see="org.eclipse.elk.layered.highDegreeNodes.treatment",jge="org.eclipse.elk.layered.highDegreeNodes.threshold",Wge="org.eclipse.elk.layered.highDegreeNodes.treeHeight",ib="org.eclipse.elk.layered.wrapping.strategy",oee="org.eclipse.elk.layered.wrapping.additionalEdgeSpacing",lee="org.eclipse.elk.layered.wrapping.correctionFactor",RM="org.eclipse.elk.layered.wrapping.cutting.strategy",Kge="org.eclipse.elk.layered.wrapping.cutting.cuts",Xge="org.eclipse.elk.layered.wrapping.cutting.msd.freedom",cee="org.eclipse.elk.layered.wrapping.validify.strategy",uee="org.eclipse.elk.layered.wrapping.validify.forbiddenIndices",hee="org.eclipse.elk.layered.wrapping.multiEdge.improveCuts",dee="org.eclipse.elk.layered.wrapping.multiEdge.distancePenalty",Qge="org.eclipse.elk.layered.wrapping.multiEdge.improveWrappedEdges",SFe="org.eclipse.elk.layered.edgeLabels.sideSelection",TFe="org.eclipse.elk.layered.edgeLabels.centerLabelPlacementStrategy",fee="org.eclipse.elk.layered.considerModelOrder.strategy",CFe="org.eclipse.elk.layered.considerModelOrder.portModelOrder",AFe="org.eclipse.elk.layered.considerModelOrder.noModelOrder",Zge="org.eclipse.elk.layered.considerModelOrder.components",kFe="org.eclipse.elk.layered.considerModelOrder.longEdgeStrategy",Jge="org.eclipse.elk.layered.considerModelOrder.crossingCounterNodeInfluence",eme="org.eclipse.elk.layered.considerModelOrder.crossingCounterPortInfluence",tme="layering",pQt="layering.minWidth",gQt="layering.nodePromotion",OI="crossingMinimization",pee="org.eclipse.elk.hierarchyHandling",mQt="crossingMinimization.greedySwitch",bQt="nodePlacement",yQt="nodePlacement.bk",vQt="edgeRouting",tq="org.eclipse.elk.edgeRouting",np="spacing",RFe="priority",IFe="compaction",_Qt="compaction.postCompaction",wQt="Specifies whether and how post-process compaction is applied.",NFe="highDegreeNodes",OFe="wrapping",EQt="wrapping.cutting",xQt="wrapping.validify",LFe="wrapping.multiEdge",nme="edgeLabels",IM="considerModelOrder",DFe="org.eclipse.elk.spacing.commentComment",MFe="org.eclipse.elk.spacing.commentNode",PFe="org.eclipse.elk.spacing.edgeEdge",rme="org.eclipse.elk.spacing.edgeNode",BFe="org.eclipse.elk.spacing.labelLabel",FFe="org.eclipse.elk.spacing.labelPortHorizontal",$Fe="org.eclipse.elk.spacing.labelPortVertical",UFe="org.eclipse.elk.spacing.labelNode",zFe="org.eclipse.elk.spacing.nodeSelfLoop",GFe="org.eclipse.elk.spacing.portPort",qFe="org.eclipse.elk.spacing.individual",HFe="org.eclipse.elk.port.borderOffset",VFe="org.eclipse.elk.noLayout",YFe="org.eclipse.elk.port.side",nq="org.eclipse.elk.debugMode",jFe="org.eclipse.elk.alignment",WFe="org.eclipse.elk.insideSelfLoops.activate",KFe="org.eclipse.elk.insideSelfLoops.yo",ime="org.eclipse.elk.direction",XFe="org.eclipse.elk.nodeLabels.padding",QFe="org.eclipse.elk.portLabels.nextToPortIfPossible",ZFe="org.eclipse.elk.portLabels.treatAsGroup",JFe="org.eclipse.elk.portAlignment.default",e$e="org.eclipse.elk.portAlignment.north",t$e="org.eclipse.elk.portAlignment.south",n$e="org.eclipse.elk.portAlignment.west",r$e="org.eclipse.elk.portAlignment.east",gee="org.eclipse.elk.contentAlignment",i$e="org.eclipse.elk.junctionPoints",a$e="org.eclipse.elk.edgeLabels.placement",s$e="org.eclipse.elk.port.index",o$e="org.eclipse.elk.commentBox",l$e="org.eclipse.elk.hypernode",c$e="org.eclipse.elk.port.anchor",ame="org.eclipse.elk.partitioning.activate",sme="org.eclipse.elk.partitioning.partition",mee="org.eclipse.elk.position",u$e="org.eclipse.elk.margins",h$e="org.eclipse.elk.spacing.portsSurrounding",bee="org.eclipse.elk.interactiveLayout",mc="org.eclipse.elk.core.util",d$e={3:1,4:1,5:1,601:1},SQt="NETWORK_SIMPLEX",f$e="SIMPLE",hl={106:1,47:1},yee="org.eclipse.elk.alg.layered.p1cycles",ab="org.eclipse.elk.alg.layered.p2layers",p$e={413:1,230:1},TQt={846:1,3:1,4:1},ph="org.eclipse.elk.alg.layered.p3order",dl="org.eclipse.elk.alg.layered.p4nodes",CQt={3:1,4:1,5:1,854:1},cg=1e-5,n2="org.eclipse.elk.alg.layered.p4nodes.bk",ome="org.eclipse.elk.alg.layered.p5edges",f1="org.eclipse.elk.alg.layered.p5edges.orthogonal",lme="org.eclipse.elk.alg.layered.p5edges.orthogonal.direction",cme=1e-6,O4="org.eclipse.elk.alg.layered.p5edges.splines",ume=.09999999999999998,vee=1e-8,AQt=4.71238898038469,g$e=3.141592653589793,sb="org.eclipse.elk.alg.mrtree",hme=.10000000149011612,_ee="SUPER_ROOT",NM="org.eclipse.elk.alg.mrtree.graph",m$e=-17976931348623157e292,nu="org.eclipse.elk.alg.mrtree.intermediate",kQt="Processor compute fanout",wee={3:1,6:1,4:1,5:1,534:1,100:1,115:1},RQt="Set neighbors in level",rq="org.eclipse.elk.alg.mrtree.options",IQt="DESCENDANTS",b$e="org.eclipse.elk.mrtree.compaction",y$e="org.eclipse.elk.mrtree.edgeEndTextureLength",v$e="org.eclipse.elk.mrtree.treeLevel",_$e="org.eclipse.elk.mrtree.positionConstraint",w$e="org.eclipse.elk.mrtree.weighting",E$e="org.eclipse.elk.mrtree.edgeRoutingMode",x$e="org.eclipse.elk.mrtree.searchOrder",NQt="Position Constraint",Ou="org.eclipse.elk.mrtree",OQt="org.eclipse.elk.tree",LQt="Processor arrange level",LI="org.eclipse.elk.alg.mrtree.p2order",hd="org.eclipse.elk.alg.mrtree.p4route",S$e="org.eclipse.elk.alg.radial",Z_=6.283185307179586,T$e="Before",C$e=5e-324,Eee="After",A$e="org.eclipse.elk.alg.radial.intermediate",DQt="COMPACTION",dme="org.eclipse.elk.alg.radial.intermediate.compaction",MQt={3:1,4:1,5:1,100:1},k$e="org.eclipse.elk.alg.radial.intermediate.optimization",fme="No implementation is available for the layout option ",OM="org.eclipse.elk.alg.radial.options",R$e="org.eclipse.elk.radial.centerOnRoot",I$e="org.eclipse.elk.radial.orderId",N$e="org.eclipse.elk.radial.radius",xee="org.eclipse.elk.radial.rotate",pme="org.eclipse.elk.radial.compactor",gme="org.eclipse.elk.radial.compactionStepSize",O$e="org.eclipse.elk.radial.sorter",L$e="org.eclipse.elk.radial.wedgeCriteria",D$e="org.eclipse.elk.radial.optimizationCriteria",mme="org.eclipse.elk.radial.rotation.targetAngle",bme="org.eclipse.elk.radial.rotation.computeAdditionalWedgeSpace",M$e="org.eclipse.elk.radial.rotation.outgoingEdgeAngles",PQt="Compaction",P$e="rotation",bf="org.eclipse.elk.radial",BQt="org.eclipse.elk.alg.radial.p1position.wedge",B$e="org.eclipse.elk.alg.radial.sorting",FQt=5.497787143782138,$Qt=3.9269908169872414,UQt=2.356194490192345,zQt="org.eclipse.elk.alg.rectpacking",See="org.eclipse.elk.alg.rectpacking.intermediate",yme="org.eclipse.elk.alg.rectpacking.options",F$e="org.eclipse.elk.rectpacking.trybox",$$e="org.eclipse.elk.rectpacking.currentPosition",U$e="org.eclipse.elk.rectpacking.desiredPosition",z$e="org.eclipse.elk.rectpacking.inNewRow",G$e="org.eclipse.elk.rectpacking.widthApproximation.strategy",q$e="org.eclipse.elk.rectpacking.widthApproximation.targetWidth",H$e="org.eclipse.elk.rectpacking.widthApproximation.optimizationGoal",V$e="org.eclipse.elk.rectpacking.widthApproximation.lastPlaceShift",Y$e="org.eclipse.elk.rectpacking.packing.strategy",j$e="org.eclipse.elk.rectpacking.packing.compaction.rowHeightReevaluation",W$e="org.eclipse.elk.rectpacking.packing.compaction.iterations",K$e="org.eclipse.elk.rectpacking.whiteSpaceElimination.strategy",vme="widthApproximation",GQt="Compaction Strategy",qQt="packing.compaction",Vh="org.eclipse.elk.rectpacking",DI="org.eclipse.elk.alg.rectpacking.p1widthapproximation",Tee="org.eclipse.elk.alg.rectpacking.p2packing",HQt="No Compaction",X$e="org.eclipse.elk.alg.rectpacking.p3whitespaceelimination",iq="org.eclipse.elk.alg.rectpacking.util",Cee="No implementation available for ",L4="org.eclipse.elk.alg.spore",D4="org.eclipse.elk.alg.spore.options",ax="org.eclipse.elk.sporeCompaction",_me="org.eclipse.elk.underlyingLayoutAlgorithm",Q$e="org.eclipse.elk.processingOrder.treeConstruction",Z$e="org.eclipse.elk.processingOrder.spanningTreeCostFunction",wme="org.eclipse.elk.processingOrder.preferredRoot",Eme="org.eclipse.elk.processingOrder.rootSelection",xme="org.eclipse.elk.structure.structureExtractionStrategy",J$e="org.eclipse.elk.compaction.compactionStrategy",eUe="org.eclipse.elk.compaction.orthogonal",tUe="org.eclipse.elk.overlapRemoval.maxIterations",nUe="org.eclipse.elk.overlapRemoval.runScanline",Sme="processingOrder",VQt="overlapRemoval",MI="org.eclipse.elk.sporeOverlap",YQt="org.eclipse.elk.alg.spore.p1structure",Tme="org.eclipse.elk.alg.spore.p2processingorder",Cme="org.eclipse.elk.alg.spore.p3execution",jQt="Topdown Layout",WQt="Invalid index: ",PI="org.eclipse.elk.core.alg",_5={341:1},M4={295:1},KQt="Make sure its type is registered with the ",rUe=" utility class.",BI="true",Ame="false",XQt="Couldn't clone property '",sx=.05,Yh="org.eclipse.elk.core.options",QQt=1.2999999523162842,ox="org.eclipse.elk.box",iUe="org.eclipse.elk.expandNodes",aUe="org.eclipse.elk.box.packingMode",ZQt="org.eclipse.elk.algorithm",JQt="org.eclipse.elk.resolvedAlgorithm",sUe="org.eclipse.elk.bendPoints",k8r="org.eclipse.elk.labelManager",eZt="org.eclipse.elk.scaleFactor",tZt="org.eclipse.elk.childAreaWidth",nZt="org.eclipse.elk.childAreaHeight",rZt="org.eclipse.elk.animate",iZt="org.eclipse.elk.animTimeFactor",aZt="org.eclipse.elk.layoutAncestors",sZt="org.eclipse.elk.maxAnimTime",oZt="org.eclipse.elk.minAnimTime",lZt="org.eclipse.elk.progressBar",cZt="org.eclipse.elk.validateGraph",uZt="org.eclipse.elk.validateOptions",hZt="org.eclipse.elk.zoomToFit",R8r="org.eclipse.elk.font.name",dZt="org.eclipse.elk.font.size",oUe="org.eclipse.elk.topdown.sizeApproximator",lUe="org.eclipse.elk.topdown.scaleCap",fZt="org.eclipse.elk.edge.type",pZt="partitioning",gZt="nodeLabels",Aee="portAlignment",kme="nodeSize",Rme="port",cUe="portLabels",aq="topdown",mZt="insideSelfLoops",LM="org.eclipse.elk.fixed",kee="org.eclipse.elk.random",uUe={3:1,34:1,22:1,347:1},bZt="port must have a parent node to calculate the port side",yZt="The edge needs to have exactly one edge section. Found: ",DM="org.eclipse.elk.core.util.adapters",yf="org.eclipse.emf.ecore",w5="org.eclipse.elk.graph",vZt="EMapPropertyHolder",_Zt="ElkBendPoint",wZt="ElkGraphElement",EZt="ElkConnectableShape",hUe="ElkEdge",xZt="ElkEdgeSection",SZt="EModelElement",TZt="ENamedElement",dUe="ElkLabel",fUe="ElkNode",pUe="ElkPort",CZt={94:1,93:1},h6="org.eclipse.emf.common.notify.impl",r2="The feature '",MM="' is not a valid changeable feature",AZt="Expecting null",Ime="' is not a valid feature",kZt="The feature ID",RZt=" is not a valid feature ID",Sc=32768,IZt={110:1,94:1,93:1,58:1,54:1,99:1},tr="org.eclipse.emf.ecore.impl",J_="org.eclipse.elk.graph.impl",PM="Recursive containment not allowed for ",FI="The datatype '",lx="' is not a valid classifier",Nme="The value '",E5={195:1,3:1,4:1},Ome="The class '",$I="http://www.eclipse.org/elk/ElkGraph",gUe="property",BM="value",Lme="source",NZt="properties",OZt="identifier",Dme="height",Mme="width",Pme="parent",Bme="text",Fme="children",LZt="hierarchical",mUe="sources",$me="targets",bUe="sections",Ree="bendPoints",yUe="outgoingShape",vUe="incomingShape",_Ue="outgoingSections",wUe="incomingSections",Qo="org.eclipse.emf.common.util",EUe="Severe implementation error in the Json to ElkGraph importer.",ug="id",Co="org.eclipse.elk.graph.json",xUe="Unhandled parameter types: ",DZt="startPoint",MZt="An edge must have at least one source and one target (edge id: '",UI="').",PZt="Referenced edge section does not exist: ",BZt=" (edge id: '",SUe="target",FZt="sourcePoint",$Zt="targetPoint",Iee="group",Mi="name",UZt="connectableShape cannot be null",zZt="edge cannot be null",Ume="Passed edge is not 'simple'.",Nee="org.eclipse.elk.graph.util",sq="The 'no duplicates' constraint is violated",zme="targetIndex=",ew=", size=",Gme="sourceIndex=",hg={3:1,4:1,20:1,31:1,56:1,16:1,15:1,59:1,70:1,66:1,61:1},qme={3:1,4:1,20:1,31:1,56:1,16:1,51:1,15:1,59:1,70:1,66:1,61:1,596:1},Oee="logging",GZt="measureExecutionTime",qZt="parser.parse.1",HZt="parser.parse.2",Lee="parser.next.1",Hme="parser.next.2",VZt="parser.next.3",YZt="parser.next.4",tw="parser.factor.1",TUe="parser.factor.2",jZt="parser.factor.3",WZt="parser.factor.4",KZt="parser.factor.5",XZt="parser.factor.6",QZt="parser.atom.1",ZZt="parser.atom.2",JZt="parser.atom.3",CUe="parser.atom.4",Vme="parser.atom.5",AUe="parser.cc.1",Dee="parser.cc.2",eJt="parser.cc.3",tJt="parser.cc.5",kUe="parser.cc.6",RUe="parser.cc.7",Yme="parser.cc.8",nJt="parser.ope.1",rJt="parser.ope.2",iJt="parser.ope.3",by="parser.descape.1",aJt="parser.descape.2",sJt="parser.descape.3",oJt="parser.descape.4",lJt="parser.descape.5",vf="parser.process.1",cJt="parser.quantifier.1",uJt="parser.quantifier.2",hJt="parser.quantifier.3",dJt="parser.quantifier.4",IUe="parser.quantifier.5",fJt="org.eclipse.emf.common.notify",NUe={424:1,686:1},pJt={3:1,4:1,20:1,31:1,56:1,16:1,15:1,70:1,61:1},oq={378:1,152:1},FM="index=",jme={3:1,4:1,5:1,129:1},gJt={3:1,4:1,20:1,31:1,56:1,16:1,15:1,59:1,70:1,61:1},OUe={3:1,6:1,4:1,5:1,198:1},mJt={3:1,4:1,5:1,173:1,379:1},bJt=";/?:@&=+$,",yJt="invalid authority: ",vJt="EAnnotation",_Jt="ETypedElement",wJt="EStructuralFeature",EJt="EAttribute",xJt="EClassifier",SJt="EEnumLiteral",TJt="EGenericType",CJt="EOperation",AJt="EParameter",kJt="EReference",RJt="ETypeParameter",Ca="org.eclipse.emf.ecore.util",Wme={79:1},LUe={3:1,20:1,16:1,15:1,61:1,597:1,79:1,71:1,97:1},IJt="org.eclipse.emf.ecore.util.FeatureMap$Entry",gh=8192,P4=2048,$M="byte",Mee="char",UM="double",zM="float",GM="int",qM="long",HM="short",NJt="java.lang.Object",x5={3:1,4:1,5:1,254:1},DUe={3:1,4:1,5:1,688:1},OJt={3:1,4:1,20:1,31:1,56:1,16:1,15:1,59:1,70:1,66:1,61:1,71:1},Xl={3:1,4:1,20:1,31:1,56:1,16:1,15:1,59:1,70:1,66:1,61:1,79:1,71:1,97:1},lq="mixed",gi="http:///org/eclipse/emf/ecore/util/ExtendedMetaData",Vf="kind",LJt={3:1,4:1,5:1,689:1},MUe={3:1,4:1,20:1,31:1,56:1,16:1,15:1,70:1,61:1,79:1,71:1,97:1},Pee={20:1,31:1,56:1,16:1,15:1,61:1,71:1},Bee={51:1,128:1,287:1},Fee={76:1,343:1},$ee="The value of type '",Uee="' must be of type '",S5=1352,Yf="http://www.eclipse.org/emf/2002/Ecore",zee=-32768,cx="constraints",Bo="baseType",DJt="getEStructuralFeature",MJt="getFeatureID",VM="feature",PJt="getOperationID",PUe="operation",BJt="defaultValue",FJt="eTypeParameters",$Jt="isInstance",UJt="getEEnumLiteral",zJt="eContainingClass",ki={57:1},GJt={3:1,4:1,5:1,124:1},qJt="org.eclipse.emf.ecore.resource",HJt={94:1,93:1,599:1,2034:1},Kme="org.eclipse.emf.ecore.resource.impl",BUe="unspecified",cq="simple",Gee="attribute",VJt="attributeWildcard",qee="element",Xme="elementWildcard",p1="collapse",Qme="itemType",Hee="namespace",uq="##targetNamespace",jf="whiteSpace",FUe="wildcards",nw="http://www.eclipse.org/emf/2003/XMLType",Zme="##any",zI="uninitialized",hq="The multiplicity constraint is violated",Vee="org.eclipse.emf.ecore.xml.type",YJt="ProcessingInstruction",jJt="SimpleAnyType",WJt="XMLTypeDocumentRoot",_s="org.eclipse.emf.ecore.xml.type.impl",dq="INF",KJt="processing",XJt="ENTITIES_._base",$Ue="minLength",UUe="ENTITY",Yee="NCName",QJt="IDREFS_._base",zUe="integer",Jme="token",ebe="pattern",ZJt="[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*",GUe="\\i\\c*",JJt="[\\i-[:]][\\c-[:]]*",een="nonPositiveInteger",fq="maxInclusive",qUe="NMTOKEN",ten="NMTOKENS_._base",HUe="nonNegativeInteger",pq="minInclusive",nen="normalizedString",ren="unsignedByte",ien="unsignedInt",aen="18446744073709551615",sen="unsignedShort",oen="processingInstruction",yy="org.eclipse.emf.ecore.xml.type.internal",GI=1114111,len="Internal Error: shorthands: \\u",YM="xml:isDigit",tbe="xml:isWord",nbe="xml:isSpace",rbe="xml:isNameChar",ibe="xml:isInitialNameChar",cen="09٠٩۰۹०९০৯੦੯૦૯୦୯௧௯౦౯೦೯൦൯๐๙໐໙༠༩",uen="AZazÀÖØöøıĴľŁňŊžƀǃǍǰǴǵǺȗɐʨʻˁΆΆΈΊΌΌΎΡΣώϐϖϚϚϜϜϞϞϠϠϢϳЁЌЎяёќўҁҐӄӇӈӋӌӐӫӮӵӸӹԱՖՙՙաֆאתװײءغفيٱڷںھۀێېۓەەۥۦअहऽऽक़ॡঅঌএঐওনপরললশহড়ঢ়য়ৡৰৱਅਊਏਐਓਨਪਰਲਲ਼ਵਸ਼ਸਹਖ਼ੜਫ਼ਫ਼ੲੴઅઋઍઍએઑઓનપરલળવહઽઽૠૠଅଌଏଐଓନପରଲଳଶହଽଽଡ଼ଢ଼ୟୡஅஊஎஐஒகஙசஜஜஞடணதநபமவஷஹఅఌఎఐఒనపళవహౠౡಅಌಎಐಒನಪಳವಹೞೞೠೡഅഌഎഐഒനപഹൠൡกฮะะาำเๅກຂຄຄງຈຊຊຍຍດທນຟມຣລລວວສຫອຮະະາຳຽຽເໄཀཇཉཀྵႠჅაჶᄀᄀᄂᄃᄅᄇᄉᄉᄋᄌᄎᄒᄼᄼᄾᄾᅀᅀᅌᅌᅎᅎᅐᅐᅔᅕᅙᅙᅟᅡᅣᅣᅥᅥᅧᅧᅩᅩᅭᅮᅲᅳᅵᅵᆞᆞᆨᆨᆫᆫᆮᆯᆷᆸᆺᆺᆼᇂᇫᇫᇰᇰᇹᇹḀẛẠỹἀἕἘἝἠὅὈὍὐὗὙὙὛὛὝὝὟώᾀᾴᾶᾼιιῂῄῆῌῐΐῖΊῠῬῲῴῶῼΩΩKÅ℮℮ↀↂ〇〇〡〩ぁゔァヺㄅㄬ一龥가힣",hen="Private Use",abe="ASSIGNED",sbe="\0€ÿĀſƀɏɐʯʰ˿̀ͯͰϿЀӿ԰֏֐׿؀ۿ܀ݏހ޿ऀॿঀ৿਀੿઀૿଀୿஀௿ఀ౿ಀ೿ഀൿ඀෿฀๿຀໿ༀ࿿က႟Ⴀჿᄀᇿሀ፿Ꭰ᏿᐀ᙿ ᚟ᚠ᛿ក៿᠀᢯Ḁỿἀ῿ ⁰₟₠⃏⃐⃿℀⅏⅐↏←⇿∀⋿⌀⏿␀␿⑀⑟①⓿─╿▀▟■◿☀⛿✀➿⠀⣿⺀⻿⼀⿟⿰⿿ 〿぀ゟ゠ヿ㄀ㄯ㄰㆏㆐㆟ㆠㆿ㈀㋿㌀㏿㐀䶵一鿿ꀀ꒏꒐꓏가힣豈﫿ffﭏﭐ﷿︠︯︰﹏﹐﹯ﹰ﻾\uFEFF\uFEFF＀￯",VUe="UNASSIGNED",qI={3:1,122:1},den="org.eclipse.emf.ecore.xml.type.util",jee={3:1,4:1,5:1,381:1},YUe="org.eclipse.xtext.xbase.lib",fen="Cannot add elements to a Range",pen="Cannot set elements in a Range",gen="Cannot remove elements from a Range",men="user.agent",E,Wee,obe;u.goog=u.goog||{},u.goog.global=u.goog.global||u,Wee={},H(1,null,{},f),E.Fb=function(i){return pIt(this,i)},E.Gb=function(){return this.Rm},E.Hb=function(){return vE(this)},E.Ib=function(){var i;return __(cd(this))+"@"+(i=ma(this)>>>0,i.toString(16))},E.equals=function(n){return this.Fb(n)},E.hashCode=function(){return this.Hb()},E.toString=function(){return this.Ib()};var ben,yen,ven;H(297,1,{297:1,2124:1},z9e),E.ve=function(i){var l;return l=new z9e,l.i=4,i>1?l.c=PDt(this,i-1):l.c=this,l},E.we=function(){return Fm(this),this.b},E.xe=function(){return __(this)},E.ye=function(){return Fm(this),this.k},E.ze=function(){return(this.i&4)!=0},E.Ae=function(){return(this.i&1)!=0},E.Ib=function(){return ZOe(this)},E.i=0;var zs=K(gc,"Object",1),jUe=K(gc,"Class",297);H(2096,1,OG),K(LG,"Optional",2096),H(1191,2096,OG,p),E.Fb=function(i){return i===this},E.Hb=function(){return 2040732332},E.Ib=function(){return"Optional.absent()"},E.Jb=function(i){return ni(i),yL(),lbe};var lbe;K(LG,"Absent",1191),H(636,1,{},que),K(LG,"Joiner",636);var I8r=$a(LG,"Predicate");H(589,1,{178:1,589:1,3:1,46:1},qTt),E.Mb=function(i){return PUt(this,i)},E.Lb=function(i){return PUt(this,i)},E.Fb=function(i){var l;return $e(i,589)?(l=v(i,589),FMe(this.a,l.a)):!1},E.Hb=function(){return j9e(this.a)+306654252},E.Ib=function(){return mSr(this.a)},K(LG,"Predicates/AndPredicate",589),H(419,2096,{419:1,3:1},mK),E.Fb=function(i){var l;return $e(i,419)?(l=v(i,419),Yi(this.a,l.a)):!1},E.Hb=function(){return 1502476572+ma(this.a)},E.Ib=function(){return HKt+this.a+")"},E.Jb=function(i){return new mK(mQ(i.Kb(this.a),"the Function passed to Optional.transform() must not return null."))},K(LG,"Present",419),H(204,1,yI),E.Nb=function(i){xo(this,i)},E.Qb=function(){r7t()},K(_n,"UnmodifiableIterator",204),H(2076,204,vI),E.Qb=function(){r7t()},E.Rb=function(i){throw _e(new ri)},E.Wb=function(i){throw _e(new ri)},K(_n,"UnmodifiableListIterator",2076),H(399,2076,vI),E.Ob=function(){return this.c0},E.Pb=function(){if(this.c>=this.d)throw _e(new ec);return this.Xb(this.c++)},E.Tb=function(){return this.c},E.Ub=function(){if(this.c<=0)throw _e(new ec);return this.Xb(--this.c)},E.Vb=function(){return this.c-1},E.c=0,E.d=0,K(_n,"AbstractIndexedListIterator",399),H(713,204,yI),E.Ob=function(){return Vfe(this)},E.Pb=function(){return YOe(this)},E.e=1,K(_n,"AbstractIterator",713),H(2084,1,{229:1}),E.Zb=function(){var i;return i=this.f,i||(this.f=this.ac())},E.Fb=function(i){return f0e(this,i)},E.Hb=function(){return ma(this.Zb())},E.dc=function(){return this.gc()==0},E.ec=function(){return wk(this)},E.Ib=function(){return Kl(this.Zb())},K(_n,"AbstractMultimap",2084),H(742,2084,Y_),E.$b=function(){sZ(this)},E._b=function(i){return E7t(this,i)},E.ac=function(){return new jR(this,this.c)},E.ic=function(i){return this.hc()},E.bc=function(){return new $T(this,this.c)},E.jc=function(){return this.mc(this.hc())},E.kc=function(){return new z6t(this)},E.lc=function(){return E1e(this.c.vc().Nc(),new b,64,this.d)},E.cc=function(i){return Zi(this,i)},E.fc=function(i){return Vz(this,i)},E.gc=function(){return this.d},E.mc=function(i){return Fn(),new DR(i)},E.nc=function(){return new U6t(this)},E.oc=function(){return E1e(this.c.Cc().Nc(),new m,64,this.d)},E.pc=function(i,l){return new FQ(this,i,l,null)},E.d=0,K(_n,"AbstractMapBasedMultimap",742),H(1696,742,Y_),E.hc=function(){return new gu(this.a)},E.jc=function(){return Fn(),Fn(),Zo},E.cc=function(i){return v(Zi(this,i),15)},E.fc=function(i){return v(Vz(this,i),15)},E.Zb=function(){return Ak(this)},E.Fb=function(i){return f0e(this,i)},E.qc=function(i){return v(Zi(this,i),15)},E.rc=function(i){return v(Vz(this,i),15)},E.mc=function(i){return Wde(v(i,15))},E.pc=function(i,l){return qMt(this,i,v(l,15),null)},K(_n,"AbstractListMultimap",1696),H(748,1,io),E.Nb=function(i){xo(this,i)},E.Ob=function(){return this.c.Ob()||this.e.Ob()},E.Pb=function(){var i;return this.e.Ob()||(i=v(this.c.Pb(),44),this.b=i.ld(),this.a=v(i.md(),16),this.e=this.a.Kc()),this.sc(this.b,this.e.Pb())},E.Qb=function(){this.e.Qb(),v($f(this.a),16).dc()&&this.c.Qb(),--this.d.d},K(_n,"AbstractMapBasedMultimap/Itr",748),H(1129,748,io,U6t),E.sc=function(i,l){return l},K(_n,"AbstractMapBasedMultimap/1",1129),H(1130,1,{},m),E.Kb=function(i){return v(i,16).Nc()},K(_n,"AbstractMapBasedMultimap/1methodref$spliterator$Type",1130),H(1131,748,io,z6t),E.sc=function(i,l){return new hE(i,l)},K(_n,"AbstractMapBasedMultimap/2",1131);var WUe=$a(Dr,"Map");H(2065,1,tx),E.wc=function(i){kD(this,i)},E.yc=function(i,l,d){return O0e(this,i,l,d)},E.$b=function(){this.vc().$b()},E.tc=function(i){return i1e(this,i)},E._b=function(i){return!!PDe(this,i,!1)},E.uc=function(i){var l,d,g;for(d=this.vc().Kc();d.Ob();)if(l=v(d.Pb(),44),g=l.md(),Ze(i)===Ze(g)||i!=null&&Yi(i,g))return!0;return!1},E.Fb=function(i){var l,d,g;if(i===this)return!0;if(!$e(i,85)||(g=v(i,85),this.gc()!=g.gc()))return!1;for(d=g.vc().Kc();d.Ob();)if(l=v(d.Pb(),44),!this.tc(l))return!1;return!0},E.xc=function(i){return Pl(PDe(this,i,!1))},E.Hb=function(){return B9e(this.vc())},E.dc=function(){return this.gc()==0},E.ec=function(){return new m_(this)},E.zc=function(i,l){throw _e(new zb("Put not supported on this map"))},E.Ac=function(i){AD(this,i)},E.Bc=function(i){return Pl(PDe(this,i,!0))},E.gc=function(){return this.vc().gc()},E.Ib=function(){return Wqt(this)},E.Cc=function(){return new Dm(this)},K(Dr,"AbstractMap",2065),H(2085,2065,tx),E.bc=function(){return new FK(this)},E.vc=function(){return $9t(this)},E.ec=function(){var i;return i=this.g,i||(this.g=this.bc())},E.Cc=function(){var i;return i=this.i,i||(this.i=new dRt(this))},K(_n,"Maps/ViewCachingAbstractMap",2085),H(402,2085,tx,jR),E.xc=function(i){return Mgr(this,i)},E.Bc=function(i){return iyr(this,i)},E.$b=function(){this.d==this.e.c?this.e.$b():jX(new KIe(this))},E._b=function(i){return _zt(this.d,i)},E.Ec=function(){return new HTt(this)},E.Dc=function(){return this.Ec()},E.Fb=function(i){return this===i||Yi(this.d,i)},E.Hb=function(){return ma(this.d)},E.ec=function(){return this.e.ec()},E.gc=function(){return this.d.gc()},E.Ib=function(){return Kl(this.d)},K(_n,"AbstractMapBasedMultimap/AsMap",402);var Md=$a(gc,"Iterable");H(31,1,A4),E.Jc=function(i){To(this,i)},E.Lc=function(){return this.Oc()},E.Nc=function(){return new Nn(this,0)},E.Oc=function(){return new xn(null,this.Nc())},E.Fc=function(i){throw _e(new zb("Add not supported on this collection"))},E.Gc=function(i){return bo(this,i)},E.$b=function(){MNe(this)},E.Hc=function(i){return f4(this,i,!1)},E.Ic=function(i){return Bz(this,i)},E.dc=function(){return this.gc()==0},E.Mc=function(i){return f4(this,i,!0)},E.Pc=function(){return aNe(this)},E.Qc=function(i){return YD(this,i)},E.Ib=function(){return Wv(this)},K(Dr,"AbstractCollection",31);var Wf=$a(Dr,"Set");H(J1,31,fh),E.Nc=function(){return new Nn(this,1)},E.Fb=function(i){return hGt(this,i)},E.Hb=function(){return B9e(this)},K(Dr,"AbstractSet",J1),H(2068,J1,fh),K(_n,"Sets/ImprovedAbstractSet",2068),H(2069,2068,fh),E.$b=function(){this.Rc().$b()},E.Hc=function(i){return Kzt(this,i)},E.dc=function(){return this.Rc().dc()},E.Mc=function(i){var l;return this.Hc(i)&&$e(i,44)?(l=v(i,44),this.Rc().ec().Mc(l.ld())):!1},E.gc=function(){return this.Rc().gc()},K(_n,"Maps/EntrySet",2069),H(1127,2069,fh,HTt),E.Hc=function(i){return uLe(this.a.d.vc(),i)},E.Kc=function(){return new KIe(this.a)},E.Rc=function(){return this.a},E.Mc=function(i){var l;return uLe(this.a.d.vc(),i)?(l=v($f(v(i,44)),44),xpr(this.a.e,l.ld()),!0):!1},E.Nc=function(){return WU(this.a.d.vc().Nc(),new VTt(this.a))},K(_n,"AbstractMapBasedMultimap/AsMap/AsMapEntries",1127),H(1128,1,{},VTt),E.Kb=function(i){return zPt(this.a,v(i,44))},K(_n,"AbstractMapBasedMultimap/AsMap/AsMapEntries/0methodref$wrapEntry$Type",1128),H(746,1,io,KIe),E.Nb=function(i){xo(this,i)},E.Pb=function(){var i;return i=v(this.b.Pb(),44),this.a=v(i.md(),16),zPt(this.c,i)},E.Ob=function(){return this.b.Ob()},E.Qb=function(){n8(!!this.a),this.b.Qb(),this.c.e.d-=this.a.gc(),this.a.$b(),this.a=null},K(_n,"AbstractMapBasedMultimap/AsMap/AsMapIterator",746),H(542,2068,fh,FK),E.$b=function(){this.b.$b()},E.Hc=function(i){return this.b._b(i)},E.Jc=function(i){ni(i),this.b.wc(new l5t(i))},E.dc=function(){return this.b.dc()},E.Kc=function(){return new vL(this.b.vc().Kc())},E.Mc=function(i){return this.b._b(i)?(this.b.Bc(i),!0):!1},E.gc=function(){return this.b.gc()},K(_n,"Maps/KeySet",542),H(327,542,fh,$T),E.$b=function(){var i;jX((i=this.b.vc().Kc(),new vRe(this,i)))},E.Ic=function(i){return this.b.ec().Ic(i)},E.Fb=function(i){return this===i||Yi(this.b.ec(),i)},E.Hb=function(){return ma(this.b.ec())},E.Kc=function(){var i;return i=this.b.vc().Kc(),new vRe(this,i)},E.Mc=function(i){var l,d;return d=0,l=v(this.b.Bc(i),16),l&&(d=l.gc(),l.$b(),this.a.d-=d),d>0},E.Nc=function(){return this.b.ec().Nc()},K(_n,"AbstractMapBasedMultimap/KeySet",327),H(747,1,io,vRe),E.Nb=function(i){xo(this,i)},E.Ob=function(){return this.c.Ob()},E.Pb=function(){return this.a=v(this.c.Pb(),44),this.a.ld()},E.Qb=function(){var i;n8(!!this.a),i=v(this.a.md(),16),this.c.Qb(),this.b.a.d-=i.gc(),i.$b(),this.a=null},K(_n,"AbstractMapBasedMultimap/KeySet/1",747),H(503,402,{85:1,133:1},zU),E.bc=function(){return this.Sc()},E.ec=function(){return this.Uc()},E.Sc=function(){return new gU(this.c,this.Wc())},E.Tc=function(){return this.Wc().Tc()},E.Uc=function(){var i;return i=this.b,i||(this.b=this.Sc())},E.Vc=function(){return this.Wc().Vc()},E.Wc=function(){return v(this.d,133)},K(_n,"AbstractMapBasedMultimap/SortedAsMap",503),H(446,503,iBe,JL),E.bc=function(){return new YR(this.a,v(v(this.d,133),139))},E.Sc=function(){return new YR(this.a,v(v(this.d,133),139))},E.ec=function(){var i;return i=this.b,v(i||(this.b=new YR(this.a,v(v(this.d,133),139))),277)},E.Uc=function(){var i;return i=this.b,v(i||(this.b=new YR(this.a,v(v(this.d,133),139))),277)},E.Wc=function(){return v(v(this.d,133),139)},E.Xc=function(i){return v(v(this.d,133),139).Xc(i)},E.Yc=function(i){return v(v(this.d,133),139).Yc(i)},E.Zc=function(i,l){return new JL(this.a,v(v(this.d,133),139).Zc(i,l))},E.$c=function(i){return v(v(this.d,133),139).$c(i)},E._c=function(i){return v(v(this.d,133),139)._c(i)},E.ad=function(i,l){return new JL(this.a,v(v(this.d,133),139).ad(i,l))},K(_n,"AbstractMapBasedMultimap/NavigableAsMap",446),H(502,327,VKt,gU),E.Nc=function(){return this.b.ec().Nc()},K(_n,"AbstractMapBasedMultimap/SortedKeySet",502),H(401,502,aBe,YR),K(_n,"AbstractMapBasedMultimap/NavigableKeySet",401),H(551,31,A4,FQ),E.Fc=function(i){var l,d;return zh(this),d=this.d.dc(),l=this.d.Fc(i),l&&(++this.f.d,d&&VU(this)),l},E.Gc=function(i){var l,d,g;return i.dc()?!1:(g=(zh(this),this.d.gc()),l=this.d.Gc(i),l&&(d=this.d.gc(),this.f.d+=d-g,g==0&&VU(this)),l)},E.$b=function(){var i;i=(zh(this),this.d.gc()),i!=0&&(this.d.$b(),this.f.d-=i,JX(this))},E.Hc=function(i){return zh(this),this.d.Hc(i)},E.Ic=function(i){return zh(this),this.d.Ic(i)},E.Fb=function(i){return i===this?!0:(zh(this),Yi(this.d,i))},E.Hb=function(){return zh(this),ma(this.d)},E.Kc=function(){return zh(this),new OIe(this)},E.Mc=function(i){var l;return zh(this),l=this.d.Mc(i),l&&(--this.f.d,JX(this)),l},E.gc=function(){return eIt(this)},E.Nc=function(){return zh(this),this.d.Nc()},E.Ib=function(){return zh(this),Kl(this.d)},K(_n,"AbstractMapBasedMultimap/WrappedCollection",551);var _f=$a(Dr,"List");H(744,551,{20:1,31:1,16:1,15:1},lNe),E.jd=function(i){D_(this,i)},E.Nc=function(){return zh(this),this.d.Nc()},E.bd=function(i,l){var d;zh(this),d=this.d.dc(),v(this.d,15).bd(i,l),++this.a.d,d&&VU(this)},E.cd=function(i,l){var d,g,y;return l.dc()?!1:(y=(zh(this),this.d.gc()),d=v(this.d,15).cd(i,l),d&&(g=this.d.gc(),this.a.d+=g-y,y==0&&VU(this)),d)},E.Xb=function(i){return zh(this),v(this.d,15).Xb(i)},E.dd=function(i){return zh(this),v(this.d,15).dd(i)},E.ed=function(){return zh(this),new IIt(this)},E.fd=function(i){return zh(this),new JLt(this,i)},E.gd=function(i){var l;return zh(this),l=v(this.d,15).gd(i),--this.a.d,JX(this),l},E.hd=function(i,l){return zh(this),v(this.d,15).hd(i,l)},E.kd=function(i,l){return zh(this),qMt(this.a,this.e,v(this.d,15).kd(i,l),this.b?this.b:this)},K(_n,"AbstractMapBasedMultimap/WrappedList",744),H(1126,744,{20:1,31:1,16:1,15:1,59:1},vNt),K(_n,"AbstractMapBasedMultimap/RandomAccessWrappedList",1126),H(628,1,io,OIe),E.Nb=function(i){xo(this,i)},E.Ob=function(){return f8(this),this.b.Ob()},E.Pb=function(){return f8(this),this.b.Pb()},E.Qb=function(){rNt(this)},K(_n,"AbstractMapBasedMultimap/WrappedCollection/WrappedIterator",628),H(745,628,Yg,IIt,JLt),E.Qb=function(){rNt(this)},E.Rb=function(i){var l;l=eIt(this.a)==0,(f8(this),v(this.b,128)).Rb(i),++this.a.a.d,l&&VU(this.a)},E.Sb=function(){return(f8(this),v(this.b,128)).Sb()},E.Tb=function(){return(f8(this),v(this.b,128)).Tb()},E.Ub=function(){return(f8(this),v(this.b,128)).Ub()},E.Vb=function(){return(f8(this),v(this.b,128)).Vb()},E.Wb=function(i){(f8(this),v(this.b,128)).Wb(i)},K(_n,"AbstractMapBasedMultimap/WrappedList/WrappedListIterator",745),H(743,551,VKt,Q8e),E.Nc=function(){return zh(this),this.d.Nc()},K(_n,"AbstractMapBasedMultimap/WrappedSortedSet",743),H(1125,743,aBe,TIt),K(_n,"AbstractMapBasedMultimap/WrappedNavigableSet",1125),H(1124,551,fh,UNt),E.Nc=function(){return zh(this),this.d.Nc()},K(_n,"AbstractMapBasedMultimap/WrappedSet",1124),H(1133,1,{},b),E.Kb=function(i){return Lpr(v(i,44))},K(_n,"AbstractMapBasedMultimap/lambda$1$Type",1133),H(1132,1,{},KTt),E.Kb=function(i){return new hE(this.a,i)},K(_n,"AbstractMapBasedMultimap/lambda$2$Type",1132);var rw=$a(Dr,"Map/Entry");H(358,1,Spe),E.Fb=function(i){var l;return $e(i,44)?(l=v(i,44),Wp(this.ld(),l.ld())&&Wp(this.md(),l.md())):!1},E.Hb=function(){var i,l;return i=this.ld(),l=this.md(),(i==null?0:ma(i))^(l==null?0:ma(l))},E.nd=function(i){throw _e(new ri)},E.Ib=function(){return this.ld()+"="+this.md()},K(_n,YKt,358),H(2086,31,A4),E.$b=function(){this.od().$b()},E.Hc=function(i){var l;return $e(i,44)?(l=v(i,44),e1r(this.od(),l.ld(),l.md())):!1},E.Mc=function(i){var l;return $e(i,44)?(l=v(i,44),SMt(this.od(),l.ld(),l.md())):!1},E.gc=function(){return this.od().d},K(_n,"Multimaps/Entries",2086),H(749,2086,A4,Z6e),E.Kc=function(){return this.a.kc()},E.od=function(){return this.a},E.Nc=function(){return this.a.lc()},K(_n,"AbstractMultimap/Entries",749),H(750,749,fh,X7e),E.Nc=function(){return this.a.lc()},E.Fb=function(i){return nMe(this,i)},E.Hb=function(){return M$t(this)},K(_n,"AbstractMultimap/EntrySet",750),H(751,31,A4,J6e),E.$b=function(){this.a.$b()},E.Hc=function(i){return Zbr(this.a,i)},E.Kc=function(){return this.a.nc()},E.gc=function(){return this.a.d},E.Nc=function(){return this.a.oc()},K(_n,"AbstractMultimap/Values",751),H(2087,31,{849:1,20:1,31:1,16:1}),E.Jc=function(i){ni(i),zT(this).Jc(new p5t(i))},E.Nc=function(){var i;return i=zT(this).Nc(),E1e(i,new N,64|i.yd()&1296,this.a.d)},E.Fc=function(i){return iRe(),!0},E.Gc=function(i){return ni(this),ni(i),$e(i,552)?r1r(v(i,849)):!i.dc()&&Pfe(this,i.Kc())},E.Hc=function(i){var l;return l=v(d4(Ak(this.a),i),16),(l?l.gc():0)>0},E.Fb=function(i){return T3r(this,i)},E.Hb=function(){return ma(zT(this))},E.dc=function(){return zT(this).dc()},E.Mc=function(i){return oVt(this,i,1)>0},E.Ib=function(){return Kl(zT(this))},K(_n,"AbstractMultiset",2087),H(2089,2068,fh),E.$b=function(){sZ(this.a.a)},E.Hc=function(i){var l,d;return $e(i,504)?(d=v(i,425),v(d.a.md(),16).gc()<=0?!1:(l=QDt(this.a,d.a.ld()),l==v(d.a.md(),16).gc())):!1},E.Mc=function(i){var l,d,g,y;return $e(i,504)&&(d=v(i,425),l=d.a.ld(),g=v(d.a.md(),16).gc(),g!=0)?(y=this.a,g4r(y,l,g)):!1},K(_n,"Multisets/EntrySet",2089),H(1139,2089,fh,XTt),E.Kc=function(){return new Y6t($9t(Ak(this.a.a)).Kc())},E.gc=function(){return Ak(this.a.a).gc()},K(_n,"AbstractMultiset/EntrySet",1139),H(627,742,Y_),E.hc=function(){return this.pd()},E.jc=function(){return this.qd()},E.cc=function(i){return this.rd(i)},E.fc=function(i){return this.sd(i)},E.Zb=function(){var i;return i=this.f,i||(this.f=this.ac())},E.qd=function(){return Fn(),Fn(),ete},E.Fb=function(i){return f0e(this,i)},E.rd=function(i){return v(Zi(this,i),21)},E.sd=function(i){return v(Vz(this,i),21)},E.mc=function(i){return Fn(),new zR(v(i,21))},E.pc=function(i,l){return new UNt(this,i,v(l,21))},K(_n,"AbstractSetMultimap",627),H(1723,627,Y_),E.hc=function(){return new Vb(this.b)},E.pd=function(){return new Vb(this.b)},E.jc=function(){return RNe(new Vb(this.b))},E.qd=function(){return RNe(new Vb(this.b))},E.cc=function(i){return v(v(Zi(this,i),21),87)},E.rd=function(i){return v(v(Zi(this,i),21),87)},E.fc=function(i){return v(v(Vz(this,i),21),87)},E.sd=function(i){return v(v(Vz(this,i),21),87)},E.mc=function(i){return $e(i,277)?RNe(v(i,277)):(Fn(),new P8e(v(i,87)))},E.Zb=function(){var i;return i=this.f,i||(this.f=$e(this.c,139)?new JL(this,v(this.c,139)):$e(this.c,133)?new zU(this,v(this.c,133)):new jR(this,this.c))},E.pc=function(i,l){return $e(l,277)?new TIt(this,i,v(l,277)):new Q8e(this,i,v(l,87))},K(_n,"AbstractSortedSetMultimap",1723),H(1724,1723,Y_),E.Zb=function(){var i;return i=this.f,v(v(i||(this.f=$e(this.c,139)?new JL(this,v(this.c,139)):$e(this.c,133)?new zU(this,v(this.c,133)):new jR(this,this.c)),133),139)},E.ec=function(){var i;return i=this.i,v(v(i||(this.i=$e(this.c,139)?new YR(this,v(this.c,139)):$e(this.c,133)?new gU(this,v(this.c,133)):new $T(this,this.c)),87),277)},E.bc=function(){return $e(this.c,139)?new YR(this,v(this.c,139)):$e(this.c,133)?new gU(this,v(this.c,133)):new $T(this,this.c)},K(_n,"AbstractSortedKeySortedSetMultimap",1724),H(2109,1,{2046:1}),E.Fb=function(i){return Xwr(this,i)},E.Hb=function(){var i;return B9e((i=this.g,i||(this.g=new pue(this))))},E.Ib=function(){var i;return Wqt((i=this.f,i||(this.f=new O8e(this))))},K(_n,"AbstractTable",2109),H(679,J1,fh,pue),E.$b=function(){i7t()},E.Hc=function(i){var l,d;return $e(i,479)?(l=v(i,697),d=v(d4(cLt(this.a),Nv(l.c.e,l.b)),85),!!d&&uLe(d.vc(),new hE(Nv(l.c.c,l.a),Dk(l.c,l.b,l.a)))):!1},E.Kc=function(){return efr(this.a)},E.Mc=function(i){var l,d;return $e(i,479)?(l=v(i,697),d=v(d4(cLt(this.a),Nv(l.c.e,l.b)),85),!!d&&Nyr(d.vc(),new hE(Nv(l.c.c,l.a),Dk(l.c,l.b,l.a)))):!1},E.gc=function(){return d9t(this.a)},E.Nc=function(){return s1r(this.a)},K(_n,"AbstractTable/CellSet",679),H(2025,31,A4,ZTt),E.$b=function(){i7t()},E.Hc=function(i){return GEr(this.a,i)},E.Kc=function(){return tfr(this.a)},E.gc=function(){return d9t(this.a)},E.Nc=function(){return xMt(this.a)},K(_n,"AbstractTable/Values",2025),H(1697,1696,Y_),K(_n,"ArrayListMultimapGwtSerializationDependencies",1697),H(520,1697,Y_,Yue,QNe),E.hc=function(){return new gu(this.a)},E.a=0,K(_n,"ArrayListMultimap",520),H(678,2109,{678:1,2046:1,3:1},_Vt),K(_n,"ArrayTable",678),H(2021,399,vI,iNt),E.Xb=function(i){return new G9e(this.a,i)},K(_n,"ArrayTable/1",2021),H(2022,1,{},YTt),E.td=function(i){return new G9e(this.a,i)},K(_n,"ArrayTable/1methodref$getCell$Type",2022),H(2110,1,{697:1}),E.Fb=function(i){var l;return i===this?!0:$e(i,479)?(l=v(i,697),Wp(Nv(this.c.e,this.b),Nv(l.c.e,l.b))&&Wp(Nv(this.c.c,this.a),Nv(l.c.c,l.a))&&Wp(Dk(this.c,this.b,this.a),Dk(l.c,l.b,l.a))):!1},E.Hb=function(){return Hz(Te(xe(zs,1),Yn,1,5,[Nv(this.c.e,this.b),Nv(this.c.c,this.a),Dk(this.c,this.b,this.a)]))},E.Ib=function(){return"("+Nv(this.c.e,this.b)+","+Nv(this.c.c,this.a)+")="+Dk(this.c,this.b,this.a)},K(_n,"Tables/AbstractCell",2110),H(479,2110,{479:1,697:1},G9e),E.a=0,E.b=0,E.d=0,K(_n,"ArrayTable/2",479),H(2024,1,{},jTt),E.td=function(i){return WBt(this.a,i)},K(_n,"ArrayTable/2methodref$getValue$Type",2024),H(2023,399,vI,aNt),E.Xb=function(i){return WBt(this.a,i)},K(_n,"ArrayTable/3",2023),H(2077,2065,tx),E.$b=function(){jX(this.kc())},E.vc=function(){return new o5t(this)},E.lc=function(){return new qLt(this.kc(),this.gc())},K(_n,"Maps/IteratorBasedAbstractMap",2077),H(842,2077,tx),E.$b=function(){throw _e(new ri)},E._b=function(i){return x7t(this.c,i)},E.kc=function(){return new sNt(this,this.c.b.c.gc())},E.lc=function(){return gde(this.c.b.c.gc(),16,new WTt(this))},E.xc=function(i){var l;return l=v(eD(this.c,i),17),l?this.vd(l.a):null},E.dc=function(){return this.c.b.c.dc()},E.ec=function(){return xde(this.c)},E.zc=function(i,l){var d;if(d=v(eD(this.c,i),17),!d)throw _e(new ar(this.ud()+" "+i+" not in "+xde(this.c)));return this.wd(d.a,l)},E.Bc=function(i){throw _e(new ri)},E.gc=function(){return this.c.b.c.gc()},K(_n,"ArrayTable/ArrayMap",842),H(2020,1,{},WTt),E.td=function(i){return hLt(this.a,i)},K(_n,"ArrayTable/ArrayMap/0methodref$getEntry$Type",2020),H(2018,358,Spe,K7t),E.ld=function(){return por(this.a,this.b)},E.md=function(){return this.a.vd(this.b)},E.nd=function(i){return this.a.wd(this.b,i)},E.b=0,K(_n,"ArrayTable/ArrayMap/1",2018),H(2019,399,vI,sNt),E.Xb=function(i){return hLt(this.a,i)},K(_n,"ArrayTable/ArrayMap/2",2019),H(2017,842,tx,Z9t),E.ud=function(){return"Column"},E.vd=function(i){return Dk(this.b,this.a,i)},E.wd=function(i,l){return wUt(this.b,this.a,i,l)},E.a=0,K(_n,"ArrayTable/Row",2017),H(843,842,tx,O8e),E.vd=function(i){return new Z9t(this.a,i)},E.zc=function(i,l){return v(l,85),Lir()},E.wd=function(i,l){return v(l,85),Dir()},E.ud=function(){return"Row"},K(_n,"ArrayTable/RowMap",843),H(1157,1,Ld,X7t),E.Ad=function(i){return(this.a.yd()&-262&i)!=0},E.yd=function(){return this.a.yd()&-262},E.zd=function(){return this.a.zd()},E.Nb=function(i){this.a.Nb(new Z7t(i,this.b))},E.Bd=function(i){return this.a.Bd(new Q7t(i,this.b))},K(_n,"CollectSpliterators/1",1157),H(1158,1,vr,Q7t),E.Cd=function(i){this.a.Cd(this.b.Kb(i))},K(_n,"CollectSpliterators/1/lambda$0$Type",1158),H(1159,1,vr,Z7t),E.Cd=function(i){this.a.Cd(this.b.Kb(i))},K(_n,"CollectSpliterators/1/lambda$1$Type",1159),H(1154,1,Ld,wOt),E.Ad=function(i){return((16464|this.b)&i)!=0},E.yd=function(){return 16464|this.b},E.zd=function(){return this.a.zd()},E.Nb=function(i){this.a.Qe(new eRt(i,this.c))},E.Bd=function(i){return this.a.Re(new J7t(i,this.c))},E.b=0,K(_n,"CollectSpliterators/1WithCharacteristics",1154),H(1155,1,DG,J7t),E.Dd=function(i){this.a.Cd(this.b.td(i))},K(_n,"CollectSpliterators/1WithCharacteristics/lambda$0$Type",1155),H(1156,1,DG,eRt),E.Dd=function(i){this.a.Cd(this.b.td(i))},K(_n,"CollectSpliterators/1WithCharacteristics/lambda$1$Type",1156),H(1150,1,Ld),E.Ad=function(i){return(this.a&i)!=0},E.yd=function(){return this.a},E.zd=function(){return this.e&&(this.b=_8e(this.b,this.e.zd())),_8e(this.b,0)},E.Nb=function(i){this.e&&(this.e.Nb(i),this.e=null),this.c.Nb(new tRt(this,i)),this.b=0},E.Bd=function(i){for(;;){if(this.e&&this.e.Bd(i))return qL(this.b,MG)&&(this.b=zf(this.b,1)),!0;if(this.e=null,!this.c.Bd(new JTt(this)))return!1}},E.a=0,E.b=0,K(_n,"CollectSpliterators/FlatMapSpliterator",1150),H(1152,1,vr,JTt),E.Cd=function(i){dlr(this.a,i)},K(_n,"CollectSpliterators/FlatMapSpliterator/lambda$0$Type",1152),H(1153,1,vr,tRt),E.Cd=function(i){Bdr(this.a,this.b,i)},K(_n,"CollectSpliterators/FlatMapSpliterator/lambda$1$Type",1153),H(1151,1150,Ld,zMt),K(_n,"CollectSpliterators/FlatMapSpliteratorOfObject",1151),H(253,1,Tpe),E.Fd=function(i){return this.Ed(v(i,253))},E.Ed=function(i){var l;return i==(Pue(),ube)?1:i==(Mue(),cbe)?-1:(l=(GX(),Oz(this.a,i.a)),l!=0?l:$e(this,526)==$e(i,526)?0:$e(this,526)?1:-1)},E.Id=function(){return this.a},E.Fb=function(i){return lDe(this,i)},K(_n,"Cut",253),H(1823,253,Tpe,$6t),E.Ed=function(i){return i==this?0:1},E.Gd=function(i){throw _e(new N7e)},E.Hd=function(i){i.a+="+∞)"},E.Id=function(){throw _e(new Tl(WKt))},E.Hb=function(){return Pm(),jLe(this)},E.Jd=function(i){return!1},E.Ib=function(){return"+∞"};var cbe;K(_n,"Cut/AboveAll",1823),H(526,253,{253:1,526:1,3:1,34:1},dNt),E.Gd=function(i){Kc((i.a+="(",i),this.a)},E.Hd=function(i){C_(Kc(i,this.a),93)},E.Hb=function(){return~ma(this.a)},E.Jd=function(i){return GX(),Oz(this.a,i)<0},E.Ib=function(){return"/"+this.a+"\\"},K(_n,"Cut/AboveValue",526),H(1822,253,Tpe,F6t),E.Ed=function(i){return i==this?0:-1},E.Gd=function(i){i.a+="(-∞"},E.Hd=function(i){throw _e(new N7e)},E.Id=function(){throw _e(new Tl(WKt))},E.Hb=function(){return Pm(),jLe(this)},E.Jd=function(i){return!0},E.Ib=function(){return"-∞"};var ube;K(_n,"Cut/BelowAll",1822),H(1824,253,Tpe,fNt),E.Gd=function(i){Kc((i.a+="[",i),this.a)},E.Hd=function(i){C_(Kc(i,this.a),41)},E.Hb=function(){return ma(this.a)},E.Jd=function(i){return GX(),Oz(this.a,i)<=0},E.Ib=function(){return"\\"+this.a+"/"},K(_n,"Cut/BelowValue",1824),H(547,1,jg),E.Jc=function(i){To(this,i)},E.Ib=function(){return Zyr(v(mQ(this,"use Optional.orNull() instead of Optional.or(null)"),20).Kc())},K(_n,"FluentIterable",547),H(442,547,jg,YL),E.Kc=function(){return new yr(_r(this.a.Kc(),new S))},K(_n,"FluentIterable/2",442),H(1059,547,jg,wIt),E.Kc=function(){return $g(this)},K(_n,"FluentIterable/3",1059),H(724,399,vI,L8e),E.Xb=function(i){return this.a[i].Kc()},K(_n,"FluentIterable/3/1",724),H(2070,1,{}),E.Ib=function(){return Kl(this.Kd().b)},K(_n,"ForwardingObject",2070),H(2071,2070,KKt),E.Kd=function(){return this.Ld()},E.Jc=function(i){To(this,i)},E.Lc=function(){return this.Oc()},E.Nc=function(){return new Nn(this,0)},E.Oc=function(){return new xn(null,this.Nc())},E.Fc=function(i){return this.Ld(),T7t()},E.Gc=function(i){return this.Ld(),C7t()},E.$b=function(){this.Ld(),A7t()},E.Hc=function(i){return this.Ld().Hc(i)},E.Ic=function(i){return this.Ld().Ic(i)},E.dc=function(){return this.Ld().b.dc()},E.Kc=function(){return this.Ld().Kc()},E.Mc=function(i){return this.Ld(),k7t()},E.gc=function(){return this.Ld().b.gc()},E.Pc=function(){return this.Ld().Pc()},E.Qc=function(i){return this.Ld().Qc(i)},K(_n,"ForwardingCollection",2071),H(2078,31,sBe),E.Kc=function(){return this.Od()},E.Fc=function(i){throw _e(new ri)},E.Gc=function(i){throw _e(new ri)},E.Md=function(){var i;return i=this.c,i||(this.c=this.Nd())},E.$b=function(){throw _e(new ri)},E.Hc=function(i){return i!=null&&f4(this,i,!1)},E.Nd=function(){switch(this.gc()){case 0:return CE(),CE(),hbe;case 1:return CE(),new mde(ni(this.Od().Pb()));default:return new dNe(this,this.Pc())}},E.Mc=function(i){throw _e(new ri)},K(_n,"ImmutableCollection",2078),H(727,2078,sBe,R7e),E.Kc=function(){return Mk(this.a.Kc())},E.Hc=function(i){return i!=null&&this.a.Hc(i)},E.Ic=function(i){return this.a.Ic(i)},E.dc=function(){return this.a.dc()},E.Od=function(){return Mk(this.a.Kc())},E.gc=function(){return this.a.gc()},E.Pc=function(){return this.a.Pc()},E.Qc=function(i){return this.a.Qc(i)},E.Ib=function(){return Kl(this.a)},K(_n,"ForwardingImmutableCollection",727),H(307,2078,_I),E.Kc=function(){return this.Od()},E.ed=function(){return this.Pd(0)},E.fd=function(i){return this.Pd(i)},E.jd=function(i){D_(this,i)},E.Nc=function(){return new Nn(this,16)},E.kd=function(i,l){return this.Qd(i,l)},E.bd=function(i,l){throw _e(new ri)},E.cd=function(i,l){throw _e(new ri)},E.Md=function(){return this},E.Fb=function(i){return f3r(this,i)},E.Hb=function(){return obr(this)},E.dd=function(i){return i==null?-1:I_r(this,i)},E.Od=function(){return this.Pd(0)},E.Pd=function(i){return Whe(this,i)},E.gd=function(i){throw _e(new ri)},E.hd=function(i,l){throw _e(new ri)},E.Qd=function(i,l){var d;return AZ((d=new hRt(this),new Qb(d,i,l)))};var hbe;K(_n,"ImmutableList",307),H(2105,307,_I),E.Kc=function(){return Mk(this.Rd().Kc())},E.kd=function(i,l){return AZ(this.Rd().kd(i,l))},E.Hc=function(i){return i!=null&&this.Rd().Hc(i)},E.Ic=function(i){return this.Rd().Ic(i)},E.Fb=function(i){return Yi(this.Rd(),i)},E.Xb=function(i){return Nv(this,i)},E.Hb=function(){return ma(this.Rd())},E.dd=function(i){return this.Rd().dd(i)},E.dc=function(){return this.Rd().dc()},E.Od=function(){return Mk(this.Rd().Kc())},E.gc=function(){return this.Rd().gc()},E.Qd=function(i,l){return AZ(this.Rd().kd(i,l))},E.Pc=function(){return this.Rd().Qc(st(zs,Yn,1,this.Rd().gc(),5,1))},E.Qc=function(i){return this.Rd().Qc(i)},E.Ib=function(){return Kl(this.Rd())},K(_n,"ForwardingImmutableList",2105),H(729,1,wI),E.vc=function(){return x_(this)},E.wc=function(i){kD(this,i)},E.ec=function(){return xde(this)},E.yc=function(i,l,d){return O0e(this,i,l,d)},E.Cc=function(){return this.Vd()},E.$b=function(){throw _e(new ri)},E._b=function(i){return this.xc(i)!=null},E.uc=function(i){return this.Vd().Hc(i)},E.Td=function(){return new jkt(this)},E.Ud=function(){return new Wkt(this)},E.Fb=function(i){return Jbr(this,i)},E.Hb=function(){return x_(this).Hb()},E.dc=function(){return this.gc()==0},E.zc=function(i,l){return Oir()},E.Bc=function(i){throw _e(new ri)},E.Ib=function(){return Uxr(this)},E.Vd=function(){return this.e?this.e:this.e=this.Ud()},E.c=null,E.d=null,E.e=null;var _en;K(_n,"ImmutableMap",729),H(730,729,wI),E._b=function(i){return x7t(this,i)},E.uc=function(i){return bRt(this.b,i)},E.Sd=function(){return bzt(new QTt(this))},E.Td=function(){return bzt(LLt(this.b))},E.Ud=function(){return jp(),new R7e(OLt(this.b))},E.Fb=function(i){return yRt(this.b,i)},E.xc=function(i){return eD(this,i)},E.Hb=function(){return ma(this.b.c)},E.dc=function(){return this.b.c.dc()},E.gc=function(){return this.b.c.gc()},E.Ib=function(){return Kl(this.b.c)},K(_n,"ForwardingImmutableMap",730),H(2072,2071,Cpe),E.Kd=function(){return this.Wd()},E.Ld=function(){return this.Wd()},E.Nc=function(){return new Nn(this,1)},E.Fb=function(i){return i===this||this.Wd().Fb(i)},E.Hb=function(){return this.Wd().Hb()},K(_n,"ForwardingSet",2072),H(1085,2072,Cpe,QTt),E.Kd=function(){return h8(this.a.b)},E.Ld=function(){return h8(this.a.b)},E.Hc=function(i){if($e(i,44)&&v(i,44).ld()==null)return!1;try{return mRt(h8(this.a.b),i)}catch(l){if(l=Da(l),$e(l,212))return!1;throw _e(l)}},E.Wd=function(){return h8(this.a.b)},E.Qc=function(i){var l;return l=bDt(h8(this.a.b),i),h8(this.a.b).b.gc()=0?"+":"")+(d/60|0),l=wX(u.Math.abs(d)%60),(sHt(),$en)[this.q.getDay()]+" "+Uen[this.q.getMonth()]+" "+wX(this.q.getDate())+" "+wX(this.q.getHours())+":"+wX(this.q.getMinutes())+":"+wX(this.q.getSeconds())+" GMT"+i+l+" "+this.q.getFullYear()};var Qee=K(Dr,"Date",206);H(2015,206,iXt,Rqt),E.a=!1,E.b=0,E.c=0,E.d=0,E.e=0,E.f=0,E.g=!1,E.i=0,E.j=0,E.k=0,E.n=0,E.o=0,E.p=0,K("com.google.gwt.i18n.shared.impl","DateRecord",2015),H(2064,1,{}),E.pe=function(){return null},E.qe=function(){return null},E.re=function(){return null},E.se=function(){return null},E.te=function(){return null},K(t6,"JSONValue",2064),H(221,2064,{221:1},p_,t7e),E.Fb=function(i){return $e(i,221)?JNe(this.a,v(i,221).a):!1},E.oe=function(){return rir},E.Hb=function(){return GNe(this.a)},E.pe=function(){return this},E.Ib=function(){var i,l,d;for(d=new Ed("["),l=0,i=this.a.length;l0&&(d.a+=","),Kc(d,s4(this,l));return d.a+="]",d.a},K(t6,"JSONArray",221),H(493,2064,{493:1},n7e),E.oe=function(){return iir},E.qe=function(){return this},E.Ib=function(){return Qn(),""+this.a},E.a=!1;var Aen,ken;K(t6,"JSONBoolean",493),H(997,63,nb,j6t),K(t6,"JSONException",997),H(1036,2064,{},B),E.oe=function(){return air},E.Ib=function(){return Ku};var Ren;K(t6,"JSONNull",1036),H(263,2064,{263:1},bK),E.Fb=function(i){return $e(i,263)?this.a==v(i,263).a:!1},E.oe=function(){return tir},E.Hb=function(){return dk(this.a)},E.re=function(){return this},E.Ib=function(){return this.a+""},E.a=0,K(t6,"JSONNumber",263),H(190,2064,{190:1},nk,iU),E.Fb=function(i){return $e(i,190)?JNe(this.a,v(i,190).a):!1},E.oe=function(){return nir},E.Hb=function(){return GNe(this.a)},E.se=function(){return this},E.Ib=function(){var i,l,d,g,y,x,T;for(T=new Ed("{"),i=!0,x=Xfe(this,st(Xt,kt,2,0,6,1)),d=x,g=0,y=d.length;g=0?":"+this.c:"")+")"},E.c=0;var hze=K(gc,"StackTraceElement",319);ven={3:1,484:1,34:1,2:1};var Xt=K(gc,oBe,2);H(111,427,{484:1},qb,EL,Ff),K(gc,"StringBuffer",111),H(104,427,{484:1},Cv,sk,Ed),K(gc,"StringBuilder",104),H(702,77,Kpe,aRe),K(gc,"StringIndexOutOfBoundsException",702),H(2145,1,{});var Len;H(48,63,{3:1,103:1,63:1,82:1,48:1},ri,zb),K(gc,"UnsupportedOperationException",48),H(247,242,{3:1,34:1,242:1,247:1},Wz,mRe),E.Fd=function(i){return Jjt(this,v(i,247))},E.ue=function(){return y4(AWt(this))},E.Fb=function(i){var l;return this===i?!0:$e(i,247)?(l=v(i,247),this.e==l.e&&Jjt(this,l)==0):!1},E.Hb=function(){var i;return this.b!=0?this.b:this.a<54?(i=xc(this.f),this.b=ti(Us(i,-1)),this.b=33*this.b+ti(Us(xE(i,32),-1)),this.b=17*this.b+Ps(this.e),this.b):(this.b=17*dzt(this.c)+Ps(this.e),this.b)},E.Ib=function(){return AWt(this)},E.a=0,E.b=0,E.d=0,E.e=0,E.f=0;var Den,iw,dze,fze,pze,gze,mze,bze,vbe=K("java.math","BigDecimal",247);H(92,242,{3:1,34:1,242:1,92:1},qm,iMt,T_,fGt,Ov),E.Fd=function(i){return cGt(this,v(i,92))},E.ue=function(){return y4(wpe(this,0))},E.Fb=function(i){return ILe(this,i)},E.Hb=function(){return dzt(this)},E.Ib=function(){return wpe(this,0)},E.b=-2,E.c=0,E.d=0,E.e=0;var Men,Zee,Pen,_be,Jee,KM,T5=K("java.math","BigInteger",92),Ben,Fen,f6,XM;H(498,2065,tx),E.$b=function(){xh(this)},E._b=function(i){return Tu(this,i)},E.uc=function(i){return jUt(this,i,this.i)||jUt(this,i,this.f)},E.vc=function(){return new b_(this)},E.xc=function(i){return br(this,i)},E.zc=function(i,l){return Ni(this,i,l)},E.Bc=function(i){return Lk(this,i)},E.gc=function(){return SL(this)},E.g=0,K(Dr,"AbstractHashMap",498),H(267,J1,fh,b_),E.$b=function(){this.a.$b()},E.Hc=function(i){return DMt(this,i)},E.Kc=function(){return new P_(this.a)},E.Mc=function(i){var l;return DMt(this,i)?(l=v(i,44).ld(),this.a.Bc(l),!0):!1},E.gc=function(){return this.a.gc()},K(Dr,"AbstractHashMap/EntrySet",267),H(268,1,io,P_),E.Nb=function(i){xo(this,i)},E.Pb=function(){return zE(this)},E.Ob=function(){return this.b},E.Qb=function(){cFt(this)},E.b=!1,E.d=0,K(Dr,"AbstractHashMap/EntrySetIterator",268),H(426,1,io,hL),E.Nb=function(i){xo(this,i)},E.Ob=function(){return ehe(this)},E.Pb=function(){return BNe(this)},E.Qb=function(){ld(this)},E.b=0,E.c=-1,K(Dr,"AbstractList/IteratorImpl",426),H(98,426,Yg,go),E.Qb=function(){ld(this)},E.Rb=function(i){KS(this,i)},E.Sb=function(){return this.b>0},E.Tb=function(){return this.b},E.Ub=function(){return Tr(this.b>0),this.a.Xb(this.c=--this.b)},E.Vb=function(){return this.b-1},E.Wb=function(i){jS(this.c!=-1),this.a.hd(this.c,i)},K(Dr,"AbstractList/ListIteratorImpl",98),H(244,56,EI,Qb),E.bd=function(i,l){n4(i,this.b),this.c.bd(this.a+i,l),++this.b},E.Xb=function(i){return $n(i,this.b),this.c.Xb(this.a+i)},E.gd=function(i){var l;return $n(i,this.b),l=this.c.gd(this.a+i),--this.b,l},E.hd=function(i,l){return $n(i,this.b),this.c.hd(this.a+i,l)},E.gc=function(){return this.b},E.a=0,E.b=0,K(Dr,"AbstractList/SubList",244),H(266,J1,fh,m_),E.$b=function(){this.a.$b()},E.Hc=function(i){return this.a._b(i)},E.Kc=function(){var i;return i=this.a.vc().Kc(),new vK(i)},E.Mc=function(i){return this.a._b(i)?(this.a.Bc(i),!0):!1},E.gc=function(){return this.a.gc()},K(Dr,"AbstractMap/1",266),H(541,1,io,vK),E.Nb=function(i){xo(this,i)},E.Ob=function(){return this.a.Ob()},E.Pb=function(){var i;return i=v(this.a.Pb(),44),i.ld()},E.Qb=function(){this.a.Qb()},K(Dr,"AbstractMap/1/1",541),H(231,31,A4,Dm),E.$b=function(){this.a.$b()},E.Hc=function(i){return this.a.uc(i)},E.Kc=function(){var i;return i=this.a.vc().Kc(),new FS(i)},E.gc=function(){return this.a.gc()},K(Dr,"AbstractMap/2",231),H(301,1,io,FS),E.Nb=function(i){xo(this,i)},E.Ob=function(){return this.a.Ob()},E.Pb=function(){var i;return i=v(this.a.Pb(),44),i.md()},E.Qb=function(){this.a.Qb()},K(Dr,"AbstractMap/2/1",301),H(494,1,{494:1,44:1}),E.Fb=function(i){var l;return $e(i,44)?(l=v(i,44),Ec(this.d,l.ld())&&Ec(this.e,l.md())):!1},E.ld=function(){return this.d},E.md=function(){return this.e},E.Hb=function(){return MT(this.d)^MT(this.e)},E.nd=function(i){return iIe(this,i)},E.Ib=function(){return this.d+"="+this.e},K(Dr,"AbstractMap/AbstractEntry",494),H(397,494,{494:1,397:1,44:1},QK),K(Dr,"AbstractMap/SimpleEntry",397),H(2082,1,Zpe),E.Fb=function(i){var l;return $e(i,44)?(l=v(i,44),Ec(this.ld(),l.ld())&&Ec(this.md(),l.md())):!1},E.Hb=function(){return MT(this.ld())^MT(this.md())},E.Ib=function(){return this.ld()+"="+this.md()},K(Dr,YKt,2082),H(2090,2065,iBe),E.Xc=function(i){return jue(this.Ee(i))},E.tc=function(i){return UPt(this,i)},E._b=function(i){return aIe(this,i)},E.vc=function(){return new wue(this)},E.Tc=function(){return eLt(this.Ge())},E.Yc=function(i){return jue(this.He(i))},E.xc=function(i){var l;return l=i,Pl(this.Fe(l))},E.$c=function(i){return jue(this.Ie(i))},E.ec=function(){return new x5t(this)},E.Vc=function(){return eLt(this.Je())},E._c=function(i){return jue(this.Ke(i))},K(Dr,"AbstractNavigableMap",2090),H(629,J1,fh,wue),E.Hc=function(i){return $e(i,44)&&UPt(this.b,v(i,44))},E.Kc=function(){return this.b.De()},E.Mc=function(i){var l;return $e(i,44)?(l=v(i,44),this.b.Le(l)):!1},E.gc=function(){return this.b.gc()},K(Dr,"AbstractNavigableMap/EntrySet",629),H(1146,J1,aBe,x5t),E.Nc=function(){return new KK(this)},E.$b=function(){this.a.$b()},E.Hc=function(i){return aIe(this.a,i)},E.Kc=function(){var i;return i=this.a.vc().b.De(),new S5t(i)},E.Mc=function(i){return aIe(this.a,i)?(this.a.Bc(i),!0):!1},E.gc=function(){return this.a.gc()},K(Dr,"AbstractNavigableMap/NavigableKeySet",1146),H(1147,1,io,S5t),E.Nb=function(i){xo(this,i)},E.Ob=function(){return ehe(this.a.a)},E.Pb=function(){var i;return i=xNt(this.a),i.ld()},E.Qb=function(){ROt(this.a)},K(Dr,"AbstractNavigableMap/NavigableKeySet/1",1147),H(2103,31,A4),E.Fc=function(i){return _k(iI(this,i),SI),!0},E.Gc=function(i){return hr(i),XU(i!=this,"Can't add a queue to itself"),bo(this,i)},E.$b=function(){for(;Bfe(this)!=null;);},K(Dr,"AbstractQueue",2103),H(310,31,{4:1,20:1,31:1,16:1},FT,RMt),E.Fc=function(i){return cOe(this,i),!0},E.$b=function(){gOe(this)},E.Hc=function(i){return gUt(new fD(this),i)},E.dc=function(){return wL(this)},E.Kc=function(){return new fD(this)},E.Mc=function(i){return Gfr(new fD(this),i)},E.gc=function(){return this.c-this.b&this.a.length-1},E.Nc=function(){return new Nn(this,272)},E.Qc=function(i){var l;return l=this.c-this.b&this.a.length-1,i.lengthl&&Ga(i,l,null),i},E.b=0,E.c=0,K(Dr,"ArrayDeque",310),H(459,1,io,fD),E.Nb=function(i){xo(this,i)},E.Ob=function(){return this.a!=this.b},E.Pb=function(){return CZ(this)},E.Qb=function(){h$t(this)},E.a=0,E.b=0,E.c=-1,K(Dr,"ArrayDeque/IteratorImpl",459),H(13,56,oXt,Ot,gu,Eh),E.bd=function(i,l){EE(this,i,l)},E.Fc=function(i){return Lt(this,i)},E.cd=function(i,l){return nLe(this,i,l)},E.Gc=function(i){return xs(this,i)},E.$b=function(){$S(this.c,0)},E.Hc=function(i){return $l(this,i,0)!=-1},E.Jc=function(i){Cu(this,i)},E.Xb=function(i){return Yt(this,i)},E.dd=function(i){return $l(this,i,0)},E.dc=function(){return this.c.length==0},E.Kc=function(){return new me(this)},E.gd=function(i){return Jb(this,i)},E.Mc=function(i){return Yu(this,i)},E.ce=function(i,l){ZDt(this,i,l)},E.hd=function(i,l){return of(this,i,l)},E.gc=function(){return this.c.length},E.jd=function(i){us(this,i)},E.Pc=function(){return qX(this.c)},E.Qc=function(i){return X1(this,i)};var N8r=K(Dr,"ArrayList",13);H(7,1,io,me),E.Nb=function(i){xo(this,i)},E.Ob=function(){return nc(this)},E.Pb=function(){return pe(this)},E.Qb=function(){lD(this)},E.a=0,E.b=-1,K(Dr,"ArrayList/1",7),H(2112,u.Function,{},W),E.Me=function(i,l){return ha(i,l)},H(151,56,lXt,wh),E.Hc=function(i){return d$t(this,i)!=-1},E.Jc=function(i){var l,d,g,y;for(hr(i),d=this.a,g=0,y=d.length;g0)throw _e(new ar(gBe+i+" greater than "+this.e));return this.f.Te()?wDt(this.c,this.b,this.a,i,l):JDt(this.c,i,l)},E.zc=function(i,l){if(!h1e(this.c,this.f,i,this.b,this.a,this.e,this.d))throw _e(new ar(i+" outside the range "+this.b+" to "+this.e));return OUt(this.c,i,l)},E.Bc=function(i){var l;return l=i,h1e(this.c,this.f,l,this.b,this.a,this.e,this.d)?EDt(this.c,l):null},E.Le=function(i){return cQ(this,i.ld())&&DOe(this.c,i)},E.gc=function(){var i,l,d;if(this.f.Te()?this.a?l=Q8(this.c,this.b,!0):l=Q8(this.c,this.b,!1):l=HOe(this.c),!(l&&cQ(this,l.d)&&l))return 0;for(i=0,d=new Qfe(this.c,this.f,this.b,this.a,this.e,this.d);ehe(d.a);d.b=v(BNe(d.a),44))++i;return i},E.ad=function(i,l){if(this.f.Te()&&this.c.a.Ne(i,this.b)<0)throw _e(new ar(gBe+i+hXt+this.b));return this.f.Ue()?wDt(this.c,i,l,this.e,this.d):eMt(this.c,i,l)},E.a=!1,E.d=!1,K(Dr,"TreeMap/SubMap",631),H(304,22,nge,XK),E.Te=function(){return!1},E.Ue=function(){return!1};var xbe,Sbe,Tbe,Cbe,tte=$r(Dr,"TreeMap/SubMapType",304,jr,g1r,Tlr);H(1143,304,nge,AIt),E.Ue=function(){return!0},$r(Dr,"TreeMap/SubMapType/1",1143,tte,null,null),H(1144,304,nge,PIt),E.Te=function(){return!0},E.Ue=function(){return!0},$r(Dr,"TreeMap/SubMapType/2",1144,tte,null,null),H(1145,304,nge,CIt),E.Te=function(){return!0},$r(Dr,"TreeMap/SubMapType/3",1145,tte,null,null);var Yen;H(157,J1,{3:1,20:1,31:1,16:1,277:1,21:1,87:1,157:1},D7e,Vb,MR),E.Nc=function(){return new KK(this)},E.Fc=function(i){return JU(this,i)},E.$b=function(){this.a.$b()},E.Hc=function(i){return this.a._b(i)},E.Kc=function(){return this.a.ec().Kc()},E.Mc=function(i){return Vhe(this,i)},E.gc=function(){return this.a.gc()};var B8r=K(Dr,"TreeSet",157);H(1082,1,{},k5t),E.Ve=function(i,l){return Gor(this.a,i,l)},K(rge,"BinaryOperator/lambda$0$Type",1082),H(1083,1,{},R5t),E.Ve=function(i,l){return qor(this.a,i,l)},K(rge,"BinaryOperator/lambda$1$Type",1083),H(952,1,{},Ee),E.Kb=function(i){return i},K(rge,"Function/lambda$0$Type",952),H(395,1,si,PR),E.Mb=function(i){return!this.a.Mb(i)},K(rge,"Predicate/lambda$2$Type",395),H(581,1,{581:1});var jen=K(vM,"Handler",581);H(2107,1,OG),E.xe=function(){return"DUMMY"},E.Ib=function(){return this.xe()};var Sze;K(vM,"Level",2107),H(1706,2107,OG,he),E.xe=function(){return"INFO"},K(vM,"Level/LevelInfo",1706),H(1843,1,{},t6t);var Abe;K(vM,"LogManager",1843),H(1896,1,OG,kOt),E.b=null,K(vM,"LogRecord",1896),H(525,1,{525:1},mfe),E.e=!1;var Wen=!1,Ken=!1,rp=!1,Xen=!1,Qen=!1;K(vM,"Logger",525),H(835,581,{581:1},we),K(vM,"SimpleConsoleLogHandler",835),H(108,22,{3:1,34:1,22:1,108:1},rhe);var Tze,Ql,B4,Il=$r(Ts,"Collector/Characteristics",108,jr,n0r,Clr),Zen;H(758,1,{},mNe),K(Ts,"CollectorImpl",758),H(1074,1,{},Ce),E.Ve=function(i,l){return Pyr(v(i,213),v(l,213))},K(Ts,"Collectors/10methodref$merge$Type",1074),H(1075,1,{},Ie),E.Kb=function(i){return IMt(v(i,213))},K(Ts,"Collectors/11methodref$toString$Type",1075),H(1076,1,{},I5t),E.Kb=function(i){return Qn(),!!u8e(i)},K(Ts,"Collectors/12methodref$test$Type",1076),H(144,1,{},Le),E.Yd=function(i,l){v(i,16).Fc(l)},K(Ts,"Collectors/20methodref$add$Type",144),H(146,1,{},Fe),E.Xe=function(){return new Ot},K(Ts,"Collectors/21methodref$ctor$Type",146),H(359,1,{},Ve),E.Xe=function(){return new fs},K(Ts,"Collectors/23methodref$ctor$Type",359),H(360,1,{},Oe),E.Yd=function(i,l){Es(v(i,49),l)},K(Ts,"Collectors/24methodref$add$Type",360),H(1069,1,{},Dt),E.Ve=function(i,l){return wRt(v(i,15),v(l,16))},K(Ts,"Collectors/4methodref$addAll$Type",1069),H(1073,1,{},ot),E.Yd=function(i,l){Hm(v(i,213),v(l,484))},K(Ts,"Collectors/9methodref$add$Type",1073),H(1072,1,{},VOt),E.Xe=function(){return new B_(this.a,this.b,this.c)},K(Ts,"Collectors/lambda$15$Type",1072),H(1077,1,{},sn),E.Xe=function(){var i;return i=new Zb,cy(i,(Qn(),!1),new Ot),cy(i,!0,new Ot),i},K(Ts,"Collectors/lambda$22$Type",1077),H(1078,1,{},N5t),E.Xe=function(){return Te(xe(zs,1),Yn,1,5,[this.a])},K(Ts,"Collectors/lambda$25$Type",1078),H(1079,1,{},O5t),E.Yd=function(i,l){lhr(this.a,L_(i))},K(Ts,"Collectors/lambda$26$Type",1079),H(1080,1,{},L5t),E.Ve=function(i,l){return Phr(this.a,L_(i),L_(l))},K(Ts,"Collectors/lambda$27$Type",1080),H(1081,1,{},Kt),E.Kb=function(i){return L_(i)[0]},K(Ts,"Collectors/lambda$28$Type",1081),H(728,1,{},Ft),E.Ve=function(i,l){return XIe(i,l)},K(Ts,"Collectors/lambda$4$Type",728),H(145,1,{},Je),E.Ve=function(i,l){return gar(v(i,16),v(l,16))},K(Ts,"Collectors/lambda$42$Type",145),H(361,1,{},ht),E.Ve=function(i,l){return mar(v(i,49),v(l,49))},K(Ts,"Collectors/lambda$50$Type",361),H(362,1,{},et),E.Kb=function(i){return v(i,49)},K(Ts,"Collectors/lambda$51$Type",362),H(1068,1,{},D5t),E.Yd=function(i,l){Gbr(this.a,v(i,85),l)},K(Ts,"Collectors/lambda$7$Type",1068),H(1070,1,{},qe),E.Ve=function(i,l){return ybr(v(i,85),v(l,85),new Dt)},K(Ts,"Collectors/lambda$8$Type",1070),H(1071,1,{},M5t),E.Kb=function(i){return gvr(this.a,v(i,85))},K(Ts,"Collectors/lambda$9$Type",1071),H(550,1,{}),E.$e=function(){dD(this)},E.d=!1,K(Ts,"TerminatableStream",550),H(827,550,mBe,K8e),E.$e=function(){dD(this)},K(Ts,"DoubleStreamImpl",827),H(1847,736,Ld,YOt),E.Re=function(i){return y_r(this,v(i,189))},E.a=null,K(Ts,"DoubleStreamImpl/2",1847),H(1848,1,zG,P5t),E.Pe=function(i){usr(this.a,i)},K(Ts,"DoubleStreamImpl/2/lambda$0$Type",1848),H(1845,1,zG,B5t),E.Pe=function(i){csr(this.a,i)},K(Ts,"DoubleStreamImpl/lambda$0$Type",1845),H(1846,1,zG,F5t),E.Pe=function(i){Yzt(this.a,i)},K(Ts,"DoubleStreamImpl/lambda$2$Type",1846),H(1397,735,Ld,MPt),E.Re=function(i){return i1r(this,v(i,202))},E.a=0,E.b=0,E.c=0,K(Ts,"IntStream/5",1397),H(806,550,mBe,X8e),E.$e=function(){dD(this)},E._e=function(){return Pv(this),this.a},K(Ts,"IntStreamImpl",806),H(807,550,mBe,wRe),E.$e=function(){dD(this)},E._e=function(){return Pv(this),N8e(),Ven},K(Ts,"IntStreamImpl/Empty",807),H(1687,1,DG,$5t),E.Dd=function(i){nUt(this.a,i)},K(Ts,"IntStreamImpl/lambda$4$Type",1687);var F8r=$a(Ts,"Stream");H(26,550,{533:1,687:1,848:1},xn),E.$e=function(){dD(this)};var p6;K(Ts,"StreamImpl",26),H(1102,500,Ld,_Ot),E.Bd=function(i){for(;ogr(this);){if(this.a.Bd(i))return!0;dD(this.b),this.b=null,this.a=null}return!1},K(Ts,"StreamImpl/1",1102),H(1103,1,vr,U5t),E.Cd=function(i){Dur(this.a,v(i,848))},K(Ts,"StreamImpl/1/lambda$0$Type",1103),H(1104,1,si,z5t),E.Mb=function(i){return Es(this.a,i)},K(Ts,"StreamImpl/1methodref$add$Type",1104),H(1105,500,Ld,eDt),E.Bd=function(i){var l;return this.a||(l=new Ot,this.b.a.Nb(new G5t(l)),Fn(),us(l,this.c),this.a=new Nn(l,16)),BFt(this.a,i)},E.a=null,K(Ts,"StreamImpl/5",1105),H(1106,1,vr,G5t),E.Cd=function(i){Lt(this.a,i)},K(Ts,"StreamImpl/5/2methodref$add$Type",1106),H(737,500,Ld,VOe),E.Bd=function(i){for(this.b=!1;!this.b&&this.c.Bd(new FRt(this,i)););return this.b},E.b=!1,K(Ts,"StreamImpl/FilterSpliterator",737),H(1096,1,vr,FRt),E.Cd=function(i){Ihr(this.a,this.b,i)},K(Ts,"StreamImpl/FilterSpliterator/lambda$0$Type",1096),H(1091,736,Ld,YPt),E.Re=function(i){return ulr(this,v(i,189))},K(Ts,"StreamImpl/MapToDoubleSpliterator",1091),H(1095,1,vr,$Rt),E.Cd=function(i){Lar(this.a,this.b,i)},K(Ts,"StreamImpl/MapToDoubleSpliterator/lambda$0$Type",1095),H(1090,735,Ld,jPt),E.Re=function(i){return hlr(this,v(i,202))},K(Ts,"StreamImpl/MapToIntSpliterator",1090),H(1094,1,vr,URt),E.Cd=function(i){Dar(this.a,this.b,i)},K(Ts,"StreamImpl/MapToIntSpliterator/lambda$0$Type",1094),H(734,500,Ld,IOe),E.Bd=function(i){return bOt(this,i)},K(Ts,"StreamImpl/MapToObjSpliterator",734),H(1093,1,vr,zRt),E.Cd=function(i){Mar(this.a,this.b,i)},K(Ts,"StreamImpl/MapToObjSpliterator/lambda$0$Type",1093),H(1092,500,Ld,E$t),E.Bd=function(i){for(;the(this.b,0);){if(!this.a.Bd(new He))return!1;this.b=zf(this.b,1)}return this.a.Bd(i)},E.b=0,K(Ts,"StreamImpl/SkipSpliterator",1092),H(1097,1,vr,He),E.Cd=function(i){},K(Ts,"StreamImpl/SkipSpliterator/lambda$0$Type",1097),H(626,1,vr,Ge),E.Cd=function(i){y5t(this,i)},K(Ts,"StreamImpl/ValueConsumer",626),H(1098,1,vr,Ye),E.Cd=function(i){w_()},K(Ts,"StreamImpl/lambda$0$Type",1098),H(1099,1,vr,Ae),E.Cd=function(i){w_()},K(Ts,"StreamImpl/lambda$1$Type",1099),H(1100,1,{},q5t),E.Ve=function(i,l){return qlr(this.a,i,l)},K(Ts,"StreamImpl/lambda$4$Type",1100),H(1101,1,vr,GRt),E.Cd=function(i){Kor(this.b,this.a,i)},K(Ts,"StreamImpl/lambda$5$Type",1101),H(1107,1,vr,H5t),E.Cd=function(i){sbr(this.a,v(i,380))},K(Ts,"TerminatableStream/lambda$0$Type",1107),H(2142,1,{}),H(2014,1,{},Xe),K("javaemul.internal","ConsoleLogger",2014);var $8r=0;H(2134,1,{}),H(1830,1,vr,fe),E.Cd=function(i){v(i,317)},K(TI,"BowyerWatsonTriangulation/lambda$0$Type",1830),H(1831,1,vr,V5t),E.Cd=function(i){bo(this.a,v(i,317).e)},K(TI,"BowyerWatsonTriangulation/lambda$1$Type",1831),H(1832,1,vr,Qe),E.Cd=function(i){v(i,177)},K(TI,"BowyerWatsonTriangulation/lambda$2$Type",1832),H(1827,1,ui,Y5t),E.Ne=function(i,l){return q1r(this.a,v(i,177),v(l,177))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(TI,"NaiveMinST/lambda$0$Type",1827),H(449,1,{},dL),K(TI,"NodeMicroLayout",449),H(177,1,{177:1},ck),E.Fb=function(i){var l;return $e(i,177)?(l=v(i,177),Ec(this.a,l.a)&&Ec(this.b,l.b)||Ec(this.a,l.b)&&Ec(this.b,l.a)):!1},E.Hb=function(){return MT(this.a)+MT(this.b)};var U8r=K(TI,"TEdge",177);H(317,1,{317:1},IPe),E.Fb=function(i){var l;return $e(i,317)?(l=v(i,317),YQ(this,l.a)&&YQ(this,l.b)&&YQ(this,l.c)):!1},E.Hb=function(){return MT(this.a)+MT(this.b)+MT(this.c)},K(TI,"TTriangle",317),H(225,1,{225:1},xX),K(TI,"Tree",225),H(1218,1,{},$Dt),K(pXt,"Scanline",1218);var Jen=$a(pXt,gXt);H(1758,1,{},DFt),K(Xg,"CGraph",1758),H(316,1,{316:1},GDt),E.b=0,E.c=0,E.d=0,E.g=0,E.i=0,E.k=Ss,K(Xg,"CGroup",316),H(830,1,{},B7e),K(Xg,"CGroup/CGroupBuilder",830),H(60,1,{60:1},eOt),E.Ib=function(){var i;return this.j?ai(this.j.Kb(this)):(Fm(nte),nte.o+"@"+(i=vE(this)>>>0,i.toString(16)))},E.f=0,E.i=Ss;var nte=K(Xg,"CNode",60);H(829,1,{},F7e),K(Xg,"CNode/CNodeBuilder",829);var etn;H(1590,1,{},Ke),E.ff=function(i,l){return 0},E.gf=function(i,l){return 0},K(Xg,bXt,1590),H(1853,1,{},mt),E.cf=function(i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de;for(D=ka,g=new me(i.a.b);g.ag.d.c||g.d.c==x.d.c&&g.d.b0?i+this.n.d+this.n.a:0},E.kf=function(){var i,l,d,g,y;if(y=0,this.e)this.b?y=this.b.a:this.a[1][1]&&(y=this.a[1][1].kf());else if(this.g)y=kLe(this,f1e(this,null,!0));else for(l=(u1(),Te(xe(F4,1),wt,237,0,[bc,vu,yc])),d=0,g=l.length;d0?y+this.n.b+this.n.c:0},E.lf=function(){var i,l,d,g,y;if(this.g)for(i=f1e(this,null,!1),d=(u1(),Te(xe(F4,1),wt,237,0,[bc,vu,yc])),g=0,y=d.length;g0&&(g[0]+=this.d,d-=g[0]),g[2]>0&&(g[2]+=this.d,d-=g[2]),this.c.a=u.Math.max(0,d),this.c.d=l.d+i.d+(this.c.a-d)/2,g[1]=u.Math.max(g[1],d),COe(this,vu,l.d+i.d+g[0]-(g[1]-d)/2,g)},E.b=null,E.d=0,E.e=!1,E.f=!1,E.g=!1;var Obe=0,rte=0;K(W_,"GridContainerCell",1538),H(471,22,{3:1,34:1,22:1,471:1},ahe);var s2,dg,R0,utn=$r(W_,"HorizontalLabelAlignment",471,jr,i0r,Nlr),htn;H(314,217,{217:1,314:1},TDt,PFt,yDt),E.jf=function(){return a9t(this)},E.kf=function(){return HIe(this)},E.a=0,E.c=!1;var z8r=K(W_,"LabelCell",314);H(252,336,{217:1,336:1,252:1},GD),E.jf=function(){return ZD(this)},E.kf=function(){return JD(this)},E.lf=function(){tpe(this)},E.mf=function(){npe(this)},E.b=0,E.c=0,E.d=!1,K(W_,"StripContainerCell",252),H(1691,1,si,Wn),E.Mb=function(i){return Rir(v(i,217))},K(W_,"StripContainerCell/lambda$0$Type",1691),H(1692,1,{},Dn),E.Ye=function(i){return v(i,217).kf()},K(W_,"StripContainerCell/lambda$1$Type",1692),H(1693,1,si,zn),E.Mb=function(i){return Iir(v(i,217))},K(W_,"StripContainerCell/lambda$2$Type",1693),H(1694,1,{},vn),E.Ye=function(i){return v(i,217).jf()},K(W_,"StripContainerCell/lambda$3$Type",1694),H(472,22,{3:1,34:1,22:1,472:1},she);var I0,o2,g1,dtn=$r(W_,"VerticalLabelAlignment",472,jr,r0r,Olr),ftn;H(800,1,{},jPe),E.c=0,E.d=0,E.k=0,E.s=0,E.t=0,E.v=!1,E.w=0,E.D=!1,E.F=!1,K(HJ,"NodeContext",800),H(1536,1,ui,Cn),E.Ne=function(i,l){return bIt(v(i,64),v(l,64))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(HJ,"NodeContext/0methodref$comparePortSides$Type",1536),H(1537,1,ui,Ar),E.Ne=function(i,l){return oxr(v(i,117),v(l,117))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(HJ,"NodeContext/1methodref$comparePortContexts$Type",1537),H(164,22,{3:1,34:1,22:1,164:1},uf);var ptn,gtn,mtn,btn,ytn,vtn,_tn,wtn,Etn,xtn,Stn,Ttn,Ctn,Atn,ktn,Rtn,Itn,Ntn,Otn,Ltn,Dtn,Lbe,Mtn=$r(HJ,"NodeLabelLocation",164,jr,H0e,Llr),Ptn;H(117,1,{117:1},SVt),E.a=!1,K(HJ,"PortContext",117),H(1541,1,vr,ur),E.Cd=function(i){P7t(v(i,314))},K(qG,IXt,1541),H(1542,1,si,On),E.Mb=function(i){return!!v(i,117).c},K(qG,NXt,1542),H(1543,1,vr,Ir),E.Cd=function(i){P7t(v(i,117).c)},K(qG,"LabelPlacer/lambda$2$Type",1543);var jze;H(1540,1,vr,Ln),E.Cd=function(i){WS(),lir(v(i,117))},K(qG,"NodeLabelAndSizeUtilities/lambda$0$Type",1540),H(801,1,vr,xIe),E.Cd=function(i){xar(this.b,this.c,this.a,v(i,187))},E.a=!1,E.c=!1,K(qG,"NodeLabelCellCreator/lambda$0$Type",801),H(1539,1,vr,K5t),E.Cd=function(i){hir(this.a,v(i,187))},K(qG,"PortContextCreator/lambda$0$Type",1539);var ite;H(1902,1,{},pr),K(AI,"GreedyRectangleStripOverlapRemover",1902),H(1903,1,ui,Cr),E.Ne=function(i,l){return tor(v(i,226),v(l,226))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(AI,"GreedyRectangleStripOverlapRemover/0methodref$compareByYCoordinate$Type",1903),H(1849,1,{},a6t),E.a=5,E.e=0,K(AI,"RectangleStripOverlapRemover",1849),H(1850,1,ui,Zr),E.Ne=function(i,l){return nor(v(i,226),v(l,226))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(AI,"RectangleStripOverlapRemover/0methodref$compareLeftRectangleBorders$Type",1850),H(1852,1,ui,Pr),E.Ne=function(i,l){return Yhr(v(i,226),v(l,226))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(AI,"RectangleStripOverlapRemover/1methodref$compareRightRectangleBorders$Type",1852),H(417,22,{3:1,34:1,22:1,417:1},ZK);var gq,Dbe,Mbe,mq,Btn=$r(AI,"RectangleStripOverlapRemover/OverlapRemovalDirection",417,jr,y1r,Dlr),Ftn;H(226,1,{226:1},wde),K(AI,"RectangleStripOverlapRemover/RectangleNode",226),H(1851,1,vr,X5t),E.Cd=function(i){L_r(this.a,v(i,226))},K(AI,"RectangleStripOverlapRemover/lambda$1$Type",1851),H(1323,1,ui,Ci),E.Ne=function(i,l){return Zkr(v(i,176),v(l,176))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(ag,"PolyominoCompactor/CornerCasesGreaterThanRestComparator",1323),H(1326,1,{},ds),E.Kb=function(i){return v(i,334).a},K(ag,"PolyominoCompactor/CornerCasesGreaterThanRestComparator/lambda$0$Type",1326),H(1327,1,si,ta),E.Mb=function(i){return v(i,332).a},K(ag,"PolyominoCompactor/CornerCasesGreaterThanRestComparator/lambda$1$Type",1327),H(1328,1,si,Os),E.Mb=function(i){return v(i,332).a},K(ag,"PolyominoCompactor/CornerCasesGreaterThanRestComparator/lambda$2$Type",1328),H(1321,1,ui,uo),E.Ne=function(i,l){return RCr(v(i,176),v(l,176))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(ag,"PolyominoCompactor/MinNumOfExtensionDirectionsComparator",1321),H(1324,1,{},Ls),E.Kb=function(i){return v(i,334).a},K(ag,"PolyominoCompactor/MinNumOfExtensionDirectionsComparator/lambda$0$Type",1324),H(781,1,ui,La),E.Ne=function(i,l){return hbr(v(i,176),v(l,176))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(ag,"PolyominoCompactor/MinNumOfExtensionsComparator",781),H(1319,1,ui,to),E.Ne=function(i,l){return vmr(v(i,330),v(l,330))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(ag,"PolyominoCompactor/MinPerimeterComparator",1319),H(1320,1,ui,Fi),E.Ne=function(i,l){return r_r(v(i,330),v(l,330))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(ag,"PolyominoCompactor/MinPerimeterComparatorWithShape",1320),H(1322,1,ui,Pt),E.Ne=function(i,l){return KCr(v(i,176),v(l,176))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(ag,"PolyominoCompactor/SingleExtensionSideGreaterThanRestComparator",1322),H(1325,1,{},St),E.Kb=function(i){return v(i,334).a},K(ag,"PolyominoCompactor/SingleExtensionSideGreaterThanRestComparator/lambda$0$Type",1325),H(782,1,{},DRe),E.Ve=function(i,l){return u1r(this,v(i,42),v(l,176))},K(ag,"SuccessorCombination",782),H(649,1,{},Un),E.Ve=function(i,l){var d;return C4r((d=v(i,42),v(l,176),d))},K(ag,"SuccessorJitter",649),H(648,1,{},Hr),E.Ve=function(i,l){var d;return d5r((d=v(i,42),v(l,176),d))},K(ag,"SuccessorLineByLine",648),H(573,1,{},za),E.Ve=function(i,l){var d;return C3r((d=v(i,42),v(l,176),d))},K(ag,"SuccessorManhattan",573),H(1344,1,{},Rs),E.Ve=function(i,l){var d;return PTr((d=v(i,42),v(l,176),d))},K(ag,"SuccessorMaxNormWindingInMathPosSense",1344),H(409,1,{},BR),E.Ve=function(i,l){return pNe(this,i,l)},E.c=!1,E.d=!1,E.e=!1,E.f=!1,K(ag,"SuccessorQuadrantsGeneric",409),H(1345,1,{},Vr),E.Kb=function(i){return v(i,334).a},K(ag,"SuccessorQuadrantsGeneric/lambda$0$Type",1345),H(332,22,{3:1,34:1,22:1,332:1},JK),E.a=!1;var bq,yq,vq,_q,$tn=$r(YJ,ABe,332,jr,m1r,Mlr),Utn;H(1317,1,{}),E.Ib=function(){var i,l,d,g,y,x;for(d=" ",i=Nt(0),y=0;y=0?"b"+i+"["+gfe(this.a)+"]":"b["+gfe(this.a)+"]"):"b_"+vE(this)},K(VG,"FBendpoint",250),H(290,137,{3:1,290:1,96:1,137:1},tOt),E.Ib=function(){return gfe(this)},K(VG,"FEdge",290),H(235,137,{3:1,235:1,96:1,137:1},PQ);var q8r=K(VG,"FGraph",235);H(454,309,{3:1,454:1,309:1,96:1,137:1},rPt),E.Ib=function(){return this.b==null||this.b.length==0?"l["+gfe(this.a)+"]":"l_"+this.b},K(VG,"FLabel",454),H(153,309,{3:1,153:1,309:1,96:1,137:1},MIt),E.Ib=function(){return tOe(this)},E.a=0,K(VG,"FNode",153),H(2100,1,{}),E.vf=function(i){TPe(this,i)},E.wf=function(){iqt(this)},E.d=0,K(PBe,"AbstractForceModel",2100),H(641,2100,{641:1},tUt),E.uf=function(i,l){var d,g,y,x,T;return NWt(this.f,i,l),y=$s(Eo(l.d),i.d),T=u.Math.sqrt(y.a*y.a+y.b*y.b),g=u.Math.max(0,T-hD(i.e)/2-hD(l.e)/2),d=fVt(this.e,i,l),d>0?x=-qhr(g,this.c)*d:x=yor(g,this.b)*v(oe(i,(A0(),g6)),17).a,Vp(y,x/T),y},E.vf=function(i){TPe(this,i),this.a=v(oe(i,(A0(),ute)),17).a,this.c=We(at(oe(i,hte))),this.b=We(at(oe(i,Gbe)))},E.xf=function(i){return i0&&(x-=Tir(g,this.a)*d),Vp(y,x*this.b/T),y},E.vf=function(i){var l,d,g,y,x,T,R;for(TPe(this,i),this.b=We(at(oe(i,(A0(),qbe)))),this.c=this.b/v(oe(i,ute),17).a,g=i.e.c.length,x=0,y=0,R=new me(i.e);R.a0},E.a=0,E.b=0,E.c=0,K(PBe,"FruchtermanReingoldModel",642),H(860,1,Hf,X3t),E.hf=function(i){pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,KJ),""),"Force Model"),"Determines the model for force calculation."),nGe),(dy(),Ra)),rGe),bn((d1(),Hn))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,BBe),""),"Iterations"),"The number of iterations on the force model."),Nt(300)),Zl),Ao),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,FBe),""),"Repulsive Power"),"Determines how many bend points are added to the edge; such bend points are regarded as repelling particles in the force model"),Nt(0)),Zl),Ao),bn(mg)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,wge),""),"FR Temperature"),"The temperature is used as a scaling factor for particle displacements."),sg),Fo),ws),bn(Hn)))),bs(i,wge,KJ,snn),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Ege),""),"Eades Repulsion"),"Factor for repulsive forces in Eades' model."),5),Fo),ws),bn(Hn)))),bs(i,Ege,KJ,rnn),vKt((new Q3t,i))};var enn,tnn,nGe,nnn,rnn,inn,ann,snn;K(EM,"ForceMetaDataProvider",860),H(432,22,{3:1,34:1,22:1,432:1},PRe);var zbe,cte,rGe=$r(EM,"ForceModelStrategy",432,jr,ufr,Flr),onn;H(py,1,Hf,Q3t),E.hf=function(i){vKt(i)};var lnn,cnn,iGe,ute,aGe,unn,hnn,dnn,fnn,sGe,pnn,oGe,lGe,gnn,g6,mnn,Gbe,cGe,bnn,ynn,hte,qbe,vnn,_nn,wnn,uGe,Enn;K(EM,"ForceOptions",py),H(1001,1,{},e1),E.sf=function(){var i;return i=new P7e,i},E.tf=function(i){},K(EM,"ForceOptions/ForceFactory",1001);var xq,JM,m6,dte;H(861,1,Hf,Z3t),E.hf=function(i){pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,UBe),""),"Fixed Position"),"Prevent that the node is moved by the layout algorithm."),(Qn(),!1)),(dy(),Gs)),rs),bn((d1(),Fs))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,zBe),""),"Desired Edge Length"),"Either specified for parent nodes or for individual edges, where the latter takes higher precedence."),100),Fo),ws),va(Hn,Te(xe(rm,1),wt,170,0,[mg]))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,GBe),""),"Layout Dimension"),"Dimensions that are permitted to be altered during layout."),hGe),Ra),yGe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,qBe),""),"Stress Epsilon"),"Termination criterion for the iterative process."),sg),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,HBe),""),"Iteration Limit"),"Maximum number of performed iterations. Takes higher precedence than 'epsilon'."),Nt(qi)),Zl),Ao),bn(Hn)))),jWt((new J3t,i))};var xnn,Snn,hGe,Tnn,Cnn,Ann;K(EM,"StressMetaDataProvider",861),H(1004,1,Hf,J3t),E.hf=function(i){jWt(i)};var fte,dGe,fGe,pGe,gGe,mGe,knn,Rnn,Inn,Nnn,bGe,Onn;K(EM,"StressOptions",1004),H(1005,1,{},Fh),E.sf=function(){var i;return i=new nOt,i},E.tf=function(i){},K(EM,"StressOptions/StressFactory",1005),H(1110,205,K_,nOt),E.rf=function(i,l){var d,g,y,x,T;for(l.Ug(HXt,1),Vt(Ht(Et(i,(iG(),gGe))))?Vt(Ht(Et(i,bGe)))||oz((d=new dL((fE(),new aE(i))),d)):uYt(new P7e,i,l.eh(1)),y=TUt(i),g=nWt(this.a,y),T=g.Kc();T.Ob();)x=v(T.Pb(),235),!(x.e.c.length<=1)&&(Kkr(this.b,x),w3r(this.b),Cu(x.d,new Fb));y=mKt(g),CKt(y),l.Vg()},K(ZJ,"StressLayoutProvider",1110),H(1111,1,vr,Fb),E.Cd=function(i){LPe(v(i,454))},K(ZJ,"StressLayoutProvider/lambda$0$Type",1111),H(1002,1,{},e6t),E.c=0,E.e=0,E.g=0,K(ZJ,"StressMajorization",1002),H(391,22,{3:1,34:1,22:1,391:1},ohe);var Hbe,Vbe,Ybe,yGe=$r(ZJ,"StressMajorization/Dimension",391,jr,s0r,$lr),Lnn;H(1003,1,ui,eCt),E.Ne=function(i,l){return flr(this.a,v(i,153),v(l,153))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(ZJ,"StressMajorization/lambda$0$Type",1003),H(1192,1,{},lMt),K(c6,"ElkLayered",1192),H(1193,1,vr,tCt),E.Cd=function(i){XSr(this.a,v(i,36))},K(c6,"ElkLayered/lambda$0$Type",1193),H(1194,1,vr,nCt),E.Cd=function(i){plr(this.a,v(i,36))},K(c6,"ElkLayered/lambda$1$Type",1194),H(1281,1,{},VIt);var Dnn,Mnn,Pnn;K(c6,"GraphConfigurator",1281),H(770,1,vr,_7e),E.Cd=function(i){bHt(this.a,v(i,10))},K(c6,"GraphConfigurator/lambda$0$Type",770),H(771,1,{},rd),E.Kb=function(i){return EDe(),new xn(null,new Nn(v(i,30).a,16))},K(c6,"GraphConfigurator/lambda$1$Type",771),H(772,1,vr,w7e),E.Cd=function(i){bHt(this.a,v(i,10))},K(c6,"GraphConfigurator/lambda$2$Type",772),H(1109,205,K_,s6t),E.rf=function(i,l){var d;d=Ikr(new l6t,i),Ze(Et(i,(qt(),W4)))===Ze((Km(),Cy))?lvr(this.a,d,l):b3r(this.a,d,l),l.$g()||cKt(new eTt,d)},K(c6,"LayeredLayoutProvider",1109),H(367,22,{3:1,34:1,22:1,367:1},wU);var N0,em,qc,ru,Gl,vGe=$r(c6,"LayeredPhases",367,jr,upr,Ulr),Bnn;H(1717,1,{},v$t),E.i=0;var Fnn;K(QG,"ComponentsToCGraphTransformer",1717);var $nn;H(1718,1,{},uL),E.yf=function(i,l){return u.Math.min(i.a!=null?We(i.a):i.c.i,l.a!=null?We(l.a):l.c.i)},E.zf=function(i,l){return u.Math.min(i.a!=null?We(i.a):i.c.i,l.a!=null?We(l.a):l.c.i)},K(QG,"ComponentsToCGraphTransformer/1",1718),H(86,1,{86:1}),E.i=0,E.k=!0,E.o=Ss;var jbe=K(CM,"CNode",86);H(470,86,{470:1,86:1},U8e,XLe),E.Ib=function(){return""},K(QG,"ComponentsToCGraphTransformer/CRectNode",470),H(1688,1,{},wT);var Wbe,Kbe;K(QG,"OneDimensionalComponentsCompaction",1688),H(1689,1,{},d_),E.Kb=function(i){return Qfr(v(i,42))},E.Fb=function(i){return this===i},K(QG,"OneDimensionalComponentsCompaction/lambda$0$Type",1689),H(1690,1,{},tE),E.Kb=function(i){return uvr(v(i,42))},E.Fb=function(i){return this===i},K(QG,"OneDimensionalComponentsCompaction/lambda$1$Type",1690),H(1720,1,{},gLt),K(CM,"CGraph",1720),H(194,1,{194:1},z0e),E.b=0,E.c=0,E.e=0,E.g=!0,E.i=Ss,K(CM,"CGroup",194),H(1719,1,{},qu),E.yf=function(i,l){return u.Math.max(i.a!=null?We(i.a):i.c.i,l.a!=null?We(l.a):l.c.i)},E.zf=function(i,l){return u.Math.max(i.a!=null?We(i.a):i.c.i,l.a!=null?We(l.a):l.c.i)},K(CM,bXt,1719),H(1721,1,{},gVt),E.d=!1;var Unn,Xbe=K(CM,_Xt,1721);H(1722,1,{},$b),E.Kb=function(i){return xRe(),Qn(),v(v(i,42).a,86).d.e!=0},E.Fb=function(i){return this===i},K(CM,wXt,1722),H(833,1,{},QIe),E.a=!1,E.b=!1,E.c=!1,E.d=!1,K(CM,EXt,833),H(1898,1,{},N9t),K(JJ,xXt,1898);var Sq=$a(Q_,gXt);H(1899,1,{382:1},hDt),E.bf=function(i){T5r(this,v(i,476))},K(JJ,SXt,1899),H(Jv,1,ui,Mf),E.Ne=function(i,l){return Ddr(v(i,86),v(l,86))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(JJ,TXt,Jv),H(476,1,{476:1},FRe),E.a=!1,K(JJ,CXt,476),H(1901,1,ui,nE),E.Ne=function(i,l){return Mwr(v(i,476),v(l,476))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(JJ,AXt,1901),H(148,1,{148:1},XR,DIe),E.Fb=function(i){var l;return i==null||H8r!=cd(i)?!1:(l=v(i,148),Ec(this.c,l.c)&&Ec(this.d,l.d))},E.Hb=function(){return Hz(Te(xe(zs,1),Yn,1,5,[this.c,this.d]))},E.Ib=function(){return"("+this.c+Xo+this.d+(this.a?"cx":"")+this.b+")"},E.a=!0,E.c=0,E.d=0;var H8r=K(Q_,"Point",148);H(416,22,{3:1,34:1,22:1,416:1},tX);var dx,$4,A5,U4,znn=$r(Q_,"Point/Quadrant",416,jr,v1r,zlr),Gnn;H(1708,1,{},i6t),E.b=null,E.c=null,E.d=null,E.e=null,E.f=null;var qnn,Hnn,Vnn,Ynn,jnn;K(Q_,"RectilinearConvexHull",1708),H(583,1,{382:1},VZ),E.bf=function(i){cgr(this,v(i,148))},E.b=0;var _Ge;K(Q_,"RectilinearConvexHull/MaximalElementsEventHandler",583),H(1710,1,ui,Pf),E.Ne=function(i,l){return Mdr(at(i),at(l))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Q_,"RectilinearConvexHull/MaximalElementsEventHandler/lambda$0$Type",1710),H(1709,1,{382:1},MFt),E.bf=function(i){UTr(this,v(i,148))},E.a=0,E.b=null,E.c=null,E.d=null,E.e=null,K(Q_,"RectilinearConvexHull/RectangleEventHandler",1709),H(1711,1,ui,ET),E.Ne=function(i,l){return q0r(v(i,148),v(l,148))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Q_,"RectilinearConvexHull/lambda$0$Type",1711),H(1712,1,ui,KA),E.Ne=function(i,l){return H0r(v(i,148),v(l,148))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Q_,"RectilinearConvexHull/lambda$1$Type",1712),H(1713,1,ui,f0),E.Ne=function(i,l){return G0r(v(i,148),v(l,148))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Q_,"RectilinearConvexHull/lambda$2$Type",1713),H(1714,1,ui,WA),E.Ne=function(i,l){return V0r(v(i,148),v(l,148))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Q_,"RectilinearConvexHull/lambda$3$Type",1714),H(1715,1,ui,rU),E.Ne=function(i,l){return Exr(v(i,148),v(l,148))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Q_,"RectilinearConvexHull/lambda$4$Type",1715),H(1716,1,{},UDt),K(Q_,"Scanline",1716),H(2104,1,{}),K(tp,"AbstractGraphPlacer",2104),H(335,1,{335:1},ANt),E.Ff=function(i){return this.Gf(i)?(Rn(this.b,v(oe(i,(At(),ob)),21),i),!0):!1},E.Gf=function(i){var l,d,g,y;for(l=v(oe(i,(At(),ob)),21),y=v(Zi(da,l),21),g=y.Kc();g.Ob();)if(d=v(g.Pb(),21),!v(Zi(this.b,d),15).dc())return!1;return!0};var da;K(tp,"ComponentGroup",335),H(779,2104,{},$7e),E.Hf=function(i){var l,d;for(d=new me(this.a);d.ad&&(q=0,J+=R+g,R=0),O=x.c,hI(x,q+O.a,J+O.b),i1(O),y=u.Math.max(y,q+D.a),R=u.Math.max(R,D.b),q+=D.a+g;l.f.a=y,l.f.b=J+R},E.Jf=function(i,l){var d,g,y,x,T;if(Ze(oe(l,(qt(),j4)))===Ze((z_(),z4))){for(g=i.Kc();g.Ob();){for(d=v(g.Pb(),36),T=0,x=new me(d.a);x.ad&&!v(oe(x,(At(),ob)),21).Hc((Bt(),or))||O&&v(oe(O,(At(),ob)),21).Hc((Bt(),gr))||v(oe(x,(At(),ob)),21).Hc((Bt(),cr)))&&(re=J,ae+=R+g,R=0),D=x.c,v(oe(x,(At(),ob)),21).Hc((Bt(),or))&&(re=y+g),hI(x,re+D.a,ae+D.b),y=u.Math.max(y,re+q.a),v(oe(x,ob),21).Hc(Mr)&&(J=u.Math.max(J,re+q.a+g)),i1(D),R=u.Math.max(R,q.b),re+=q.a+g,O=x;l.f.a=y,l.f.b=ae+R},E.Jf=function(i,l){},K(tp,"ModelOrderRowGraphPlacer",1313),H(1311,1,ui,uK),E.Ne=function(i,l){return lbr(v(i,36),v(l,36))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(tp,"SimpleRowGraphPlacer/1",1311);var Knn;H(1280,1,ig,I6e),E.Lb=function(i){var l;return l=v(oe(v(i,249).b,(qt(),Nl)),75),!!l&&l.b!=0},E.Fb=function(i){return this===i},E.Mb=function(i){var l;return l=v(oe(v(i,249).b,(qt(),Nl)),75),!!l&&l.b!=0},K(eee,"CompoundGraphPostprocessor/1",1280),H(1279,1,ba,c6t),E.Kf=function(i,l){FGt(this,v(i,36),l)},K(eee,"CompoundGraphPreprocessor",1279),H(453,1,{453:1},kzt),E.c=!1,K(eee,"CompoundGraphPreprocessor/ExternalPort",453),H(249,1,{249:1},PX),E.Ib=function(){return Xhe(this.c)+":"+cVt(this.b)},K(eee,"CrossHierarchyEdge",249),H(777,1,ui,E7e),E.Ne=function(i,l){return cwr(this,v(i,249),v(l,249))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(eee,"CrossHierarchyEdgeComparator",777),H(305,137,{3:1,305:1,96:1,137:1}),E.p=0,K(tu,"LGraphElement",305),H(18,305,{3:1,18:1,305:1,96:1,137:1},NE),E.Ib=function(){return cVt(this)};var Jbe=K(tu,"LEdge",18);H(36,305,{3:1,20:1,36:1,305:1,96:1,137:1},d9e),E.Jc=function(i){To(this,i)},E.Kc=function(){return new me(this.b)},E.Ib=function(){return this.b.c.length==0?"G-unlayered"+Wv(this.a):this.a.c.length==0?"G-layered"+Wv(this.b):"G[layerless"+Wv(this.a)+", layers"+Wv(this.b)+"]"};var Xnn=K(tu,"LGraph",36),Qnn;H(666,1,{}),E.Lf=function(){return this.e.n},E.of=function(i){return oe(this.e,i)},E.Mf=function(){return this.e.o},E.Nf=function(){return this.e.p},E.pf=function(i){return ya(this.e,i)},E.Of=function(i){this.e.n.a=i.a,this.e.n.b=i.b},E.Pf=function(i){this.e.o.a=i.a,this.e.o.b=i.b},E.Qf=function(i){this.e.p=i},K(tu,"LGraphAdapters/AbstractLShapeAdapter",666),H(474,1,{853:1},fL),E.Rf=function(){var i,l;if(!this.b)for(this.b=Pg(this.a.b.c.length),l=new me(this.a.b);l.a0&&azt((sr(l-1,i.length),i.charCodeAt(l-1)),XXt);)--l;if(x> ",i),tJ(d)),bi(Kc((i.a+="[",i),d.i),"]")),i.a},E.c=!0,E.d=!1;var TGe,CGe,AGe,kGe,RGe,IGe,Jnn=K(tu,"LPort",12);H(408,1,jg,FR),E.Jc=function(i){To(this,i)},E.Kc=function(){var i;return i=new me(this.a.e),new rCt(i)},K(tu,"LPort/1",408),H(1309,1,io,rCt),E.Nb=function(i){xo(this,i)},E.Pb=function(){return v(pe(this.a),18).c},E.Ob=function(){return nc(this.a)},E.Qb=function(){lD(this.a)},K(tu,"LPort/1/1",1309),H(369,1,jg,QA),E.Jc=function(i){To(this,i)},E.Kc=function(){var i;return i=new me(this.a.g),new x7e(i)},K(tu,"LPort/2",369),H(776,1,io,x7e),E.Nb=function(i){xo(this,i)},E.Pb=function(){return v(pe(this.a),18).d},E.Ob=function(){return nc(this.a)},E.Qb=function(){lD(this.a)},K(tu,"LPort/2/1",776),H(1302,1,jg,YRt),E.Jc=function(i){To(this,i)},E.Kc=function(){return new V1(this)},K(tu,"LPort/CombineIter",1302),H(208,1,io,V1),E.Nb=function(i){xo(this,i)},E.Qb=function(){S7t()},E.Ob=function(){return QL(this)},E.Pb=function(){return nc(this.a)?pe(this.a):pe(this.b)},K(tu,"LPort/CombineIter/1",208),H(1303,1,ig,Nyt),E.Lb=function(i){return V9t(i)},E.Fb=function(i){return this===i},E.Mb=function(i){return hh(),v(i,12).g.c.length!=0},K(tu,"LPort/lambda$0$Type",1303),H(1304,1,ig,Oyt),E.Lb=function(i){return Y9t(i)},E.Fb=function(i){return this===i},E.Mb=function(i){return hh(),v(i,12).e.c.length!=0},K(tu,"LPort/lambda$1$Type",1304),H(1305,1,ig,Lyt),E.Lb=function(i){return hh(),v(i,12).j==(Bt(),or)},E.Fb=function(i){return this===i},E.Mb=function(i){return hh(),v(i,12).j==(Bt(),or)},K(tu,"LPort/lambda$2$Type",1305),H(1306,1,ig,Dyt),E.Lb=function(i){return hh(),v(i,12).j==(Bt(),gr)},E.Fb=function(i){return this===i},E.Mb=function(i){return hh(),v(i,12).j==(Bt(),gr)},K(tu,"LPort/lambda$3$Type",1306),H(1307,1,ig,Myt),E.Lb=function(i){return hh(),v(i,12).j==(Bt(),Mr)},E.Fb=function(i){return this===i},E.Mb=function(i){return hh(),v(i,12).j==(Bt(),Mr)},K(tu,"LPort/lambda$4$Type",1307),H(1308,1,ig,Pyt),E.Lb=function(i){return hh(),v(i,12).j==(Bt(),cr)},E.Fb=function(i){return this===i},E.Mb=function(i){return hh(),v(i,12).j==(Bt(),cr)},K(tu,"LPort/lambda$5$Type",1308),H(30,305,{3:1,20:1,305:1,30:1,96:1,137:1},Xc),E.Jc=function(i){To(this,i)},E.Kc=function(){return new me(this.a)},E.Ib=function(){return"L_"+$l(this.b.b,this,0)+Wv(this.a)},K(tu,"Layer",30),H(1330,1,{},l6t),K(my,eQt,1330),H(1334,1,{},Byt),E.Kb=function(i){return zl(v(i,84))},K(my,"ElkGraphImporter/0methodref$connectableShapeToNode$Type",1334),H(1337,1,{},Fyt),E.Kb=function(i){return zl(v(i,84))},K(my,"ElkGraphImporter/1methodref$connectableShapeToNode$Type",1337),H(1331,1,vr,iCt),E.Cd=function(i){CVt(this.a,v(i,123))},K(my,MBe,1331),H(1332,1,vr,aCt),E.Cd=function(i){CVt(this.a,v(i,123))},K(my,tQt,1332),H(1333,1,{},$yt),E.Kb=function(i){return new xn(null,new Nn(LNe(v(i,74)),16))},K(my,nQt,1333),H(1335,1,si,sCt),E.Mb=function(i){return hsr(this.a,v(i,27))},K(my,rQt,1335),H(1336,1,{},Uyt),E.Kb=function(i){return new xn(null,new Nn(Rdr(v(i,74)),16))},K(my,"ElkGraphImporter/lambda$5$Type",1336),H(1338,1,si,oCt),E.Mb=function(i){return dsr(this.a,v(i,27))},K(my,"ElkGraphImporter/lambda$7$Type",1338),H(1339,1,si,zyt),E.Mb=function(i){return qdr(v(i,74))},K(my,"ElkGraphImporter/lambda$8$Type",1339),H(1297,1,{},eTt);var ern;K(my,"ElkGraphLayoutTransferrer",1297),H(1298,1,si,lCt),E.Mb=function(i){return tlr(this.a,v(i,18))},K(my,"ElkGraphLayoutTransferrer/lambda$0$Type",1298),H(1299,1,vr,cCt),E.Cd=function(i){vU(),Lt(this.a,v(i,18))},K(my,"ElkGraphLayoutTransferrer/lambda$1$Type",1299),H(1300,1,si,uCt),E.Mb=function(i){return Uor(this.a,v(i,18))},K(my,"ElkGraphLayoutTransferrer/lambda$2$Type",1300),H(1301,1,vr,hCt),E.Cd=function(i){vU(),Lt(this.a,v(i,18))},K(my,"ElkGraphLayoutTransferrer/lambda$3$Type",1301),H(819,1,{},cIe),K(dr,"BiLinkedHashMultiMap",819),H(1550,1,ba,Gyt),E.Kf=function(i,l){kmr(v(i,36),l)},K(dr,"CommentNodeMarginCalculator",1550),H(1551,1,{},qyt),E.Kb=function(i){return new xn(null,new Nn(v(i,30).a,16))},K(dr,"CommentNodeMarginCalculator/lambda$0$Type",1551),H(1552,1,vr,Hyt),E.Cd=function(i){kkr(v(i,10))},K(dr,"CommentNodeMarginCalculator/lambda$1$Type",1552),H(1553,1,ba,Vyt),E.Kf=function(i,l){O5r(v(i,36),l)},K(dr,"CommentPostprocessor",1553),H(1554,1,ba,Yyt),E.Kf=function(i,l){eRr(v(i,36),l)},K(dr,"CommentPreprocessor",1554),H(1555,1,ba,jyt),E.Kf=function(i,l){KTr(v(i,36),l)},K(dr,"ConstraintsPostprocessor",1555),H(1556,1,ba,Wyt),E.Kf=function(i,l){nbr(v(i,36),l)},K(dr,"EdgeAndLayerConstraintEdgeReverser",1556),H(1557,1,ba,Kyt),E.Kf=function(i,l){Yvr(v(i,36),l)},K(dr,"EndLabelPostprocessor",1557),H(1558,1,{},Xyt),E.Kb=function(i){return new xn(null,new Nn(v(i,30).a,16))},K(dr,"EndLabelPostprocessor/lambda$0$Type",1558),H(1559,1,si,Qyt),E.Mb=function(i){return opr(v(i,10))},K(dr,"EndLabelPostprocessor/lambda$1$Type",1559),H(1560,1,vr,Zyt),E.Cd=function(i){Pwr(v(i,10))},K(dr,"EndLabelPostprocessor/lambda$2$Type",1560),H(1561,1,ba,Jyt),E.Kf=function(i,l){SSr(v(i,36),l)},K(dr,"EndLabelPreprocessor",1561),H(1562,1,{},evt),E.Kb=function(i){return new xn(null,new Nn(v(i,30).a,16))},K(dr,"EndLabelPreprocessor/lambda$0$Type",1562),H(1563,1,vr,LOt),E.Cd=function(i){Sar(this.a,this.b,this.c,v(i,10))},E.a=0,E.b=0,E.c=!1,K(dr,"EndLabelPreprocessor/lambda$1$Type",1563),H(1564,1,si,tvt),E.Mb=function(i){return Ze(oe(v(i,72),(qt(),pg)))===Ze((W1(),EN))},K(dr,"EndLabelPreprocessor/lambda$2$Type",1564),H(1565,1,vr,dCt),E.Cd=function(i){pi(this.a,v(i,72))},K(dr,"EndLabelPreprocessor/lambda$3$Type",1565),H(1566,1,si,nvt),E.Mb=function(i){return Ze(oe(v(i,72),(qt(),pg)))===Ze((W1(),s3))},K(dr,"EndLabelPreprocessor/lambda$4$Type",1566),H(1567,1,vr,fCt),E.Cd=function(i){pi(this.a,v(i,72))},K(dr,"EndLabelPreprocessor/lambda$5$Type",1567),H(1615,1,ba,Y3t),E.Kf=function(i,l){Vyr(v(i,36),l)};var trn;K(dr,"EndLabelSorter",1615),H(1616,1,ui,rvt),E.Ne=function(i,l){return S2r(v(i,466),v(l,466))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"EndLabelSorter/1",1616),H(466,1,{466:1},aDt),K(dr,"EndLabelSorter/LabelGroup",466),H(1617,1,{},ivt),E.Kb=function(i){return yU(),new xn(null,new Nn(v(i,30).a,16))},K(dr,"EndLabelSorter/lambda$0$Type",1617),H(1618,1,si,avt),E.Mb=function(i){return yU(),v(i,10).k==(lr(),is)},K(dr,"EndLabelSorter/lambda$1$Type",1618),H(1619,1,vr,svt),E.Cd=function(i){Fxr(v(i,10))},K(dr,"EndLabelSorter/lambda$2$Type",1619),H(1620,1,si,ovt),E.Mb=function(i){return yU(),Ze(oe(v(i,72),(qt(),pg)))===Ze((W1(),s3))},K(dr,"EndLabelSorter/lambda$3$Type",1620),H(1621,1,si,lvt),E.Mb=function(i){return yU(),Ze(oe(v(i,72),(qt(),pg)))===Ze((W1(),EN))},K(dr,"EndLabelSorter/lambda$4$Type",1621),H(1568,1,ba,cvt),E.Kf=function(i,l){Gkr(this,v(i,36))},E.b=0,E.c=0,K(dr,"FinalSplineBendpointsCalculator",1568),H(1569,1,{},uvt),E.Kb=function(i){return new xn(null,new Nn(v(i,30).a,16))},K(dr,"FinalSplineBendpointsCalculator/lambda$0$Type",1569),H(1570,1,{},hvt),E.Kb=function(i){return new xn(null,new TE(new yr(_r(os(v(i,10)).a.Kc(),new S))))},K(dr,"FinalSplineBendpointsCalculator/lambda$1$Type",1570),H(1571,1,si,dvt),E.Mb=function(i){return!Jo(v(i,18))},K(dr,"FinalSplineBendpointsCalculator/lambda$2$Type",1571),H(1572,1,si,fvt),E.Mb=function(i){return ya(v(i,18),(At(),sw))},K(dr,"FinalSplineBendpointsCalculator/lambda$3$Type",1572),H(1573,1,vr,pCt),E.Cd=function(i){QCr(this.a,v(i,131))},K(dr,"FinalSplineBendpointsCalculator/lambda$4$Type",1573),H(1574,1,vr,pvt),E.Cd=function(i){dG(v(i,18).a)},K(dr,"FinalSplineBendpointsCalculator/lambda$5$Type",1574),H(803,1,ba,S7e),E.Kf=function(i,l){P6r(this,v(i,36),l)},K(dr,"GraphTransformer",803),H(517,22,{3:1,34:1,22:1,517:1},BRe);var tye,Tq,nrn=$r(dr,"GraphTransformer/Mode",517,jr,hfr,Ycr),rrn;H(1575,1,ba,gvt),E.Kf=function(i,l){iTr(v(i,36),l)},K(dr,"HierarchicalNodeResizingProcessor",1575),H(1576,1,ba,mvt),E.Kf=function(i,l){xmr(v(i,36),l)},K(dr,"HierarchicalPortConstraintProcessor",1576),H(1577,1,ui,bvt),E.Ne=function(i,l){return V2r(v(i,10),v(l,10))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"HierarchicalPortConstraintProcessor/NodeComparator",1577),H(1578,1,ba,yvt),E.Kf=function(i,l){YAr(v(i,36),l)},K(dr,"HierarchicalPortDummySizeProcessor",1578),H(1579,1,ba,vvt),E.Kf=function(i,l){nCr(this,v(i,36),l)},E.a=0,K(dr,"HierarchicalPortOrthogonalEdgeRouter",1579),H(1580,1,ui,_vt),E.Ne=function(i,l){return ror(v(i,10),v(l,10))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"HierarchicalPortOrthogonalEdgeRouter/1",1580),H(1581,1,ui,wvt),E.Ne=function(i,l){return ugr(v(i,10),v(l,10))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"HierarchicalPortOrthogonalEdgeRouter/2",1581),H(1582,1,ba,Evt),E.Kf=function(i,l){vxr(v(i,36),l)},K(dr,"HierarchicalPortPositionProcessor",1582),H(1583,1,ba,tTt),E.Kf=function(i,l){MRr(this,v(i,36))},E.a=0,E.c=0;var pte,gte;K(dr,"HighDegreeNodeLayeringProcessor",1583),H(580,1,{580:1},xvt),E.b=-1,E.d=-1,K(dr,"HighDegreeNodeLayeringProcessor/HighDegreeNodeInformation",580),H(1584,1,{},Svt),E.Kb=function(i){return jU(),Hs(v(i,10))},E.Fb=function(i){return this===i},K(dr,"HighDegreeNodeLayeringProcessor/lambda$0$Type",1584),H(1585,1,{},Tvt),E.Kb=function(i){return jU(),os(v(i,10))},E.Fb=function(i){return this===i},K(dr,"HighDegreeNodeLayeringProcessor/lambda$1$Type",1585),H(1591,1,ba,Cvt),E.Kf=function(i,l){FAr(this,v(i,36),l)},K(dr,"HyperedgeDummyMerger",1591),H(804,1,{},SIe),E.a=!1,E.b=!1,E.c=!1,K(dr,"HyperedgeDummyMerger/MergeState",804),H(1592,1,{},Avt),E.Kb=function(i){return new xn(null,new Nn(v(i,30).a,16))},K(dr,"HyperedgeDummyMerger/lambda$0$Type",1592),H(1593,1,{},kvt),E.Kb=function(i){return new xn(null,new Nn(v(i,10).j,16))},K(dr,"HyperedgeDummyMerger/lambda$1$Type",1593),H(1594,1,vr,Rvt),E.Cd=function(i){v(i,12).p=-1},K(dr,"HyperedgeDummyMerger/lambda$2$Type",1594),H(1595,1,ba,Ivt),E.Kf=function(i,l){PAr(v(i,36),l)},K(dr,"HypernodesProcessor",1595),H(1596,1,ba,Nvt),E.Kf=function(i,l){VAr(v(i,36),l)},K(dr,"InLayerConstraintProcessor",1596),H(1597,1,ba,Ovt),E.Kf=function(i,l){Fmr(v(i,36),l)},K(dr,"InnermostNodeMarginCalculator",1597),H(1598,1,ba,Lvt),E.Kf=function(i,l){X7r(this,v(i,36))},E.a=Ss,E.b=Ss,E.c=ka,E.d=ka;var V8r=K(dr,"InteractiveExternalPortPositioner",1598);H(1599,1,{},Dvt),E.Kb=function(i){return v(i,18).d.i},E.Fb=function(i){return this===i},K(dr,"InteractiveExternalPortPositioner/lambda$0$Type",1599),H(1600,1,{},gCt),E.Kb=function(i){return ior(this.a,at(i))},E.Fb=function(i){return this===i},K(dr,"InteractiveExternalPortPositioner/lambda$1$Type",1600),H(1601,1,{},Mvt),E.Kb=function(i){return v(i,18).c.i},E.Fb=function(i){return this===i},K(dr,"InteractiveExternalPortPositioner/lambda$2$Type",1601),H(1602,1,{},mCt),E.Kb=function(i){return aor(this.a,at(i))},E.Fb=function(i){return this===i},K(dr,"InteractiveExternalPortPositioner/lambda$3$Type",1602),H(1603,1,{},bCt),E.Kb=function(i){return rlr(this.a,at(i))},E.Fb=function(i){return this===i},K(dr,"InteractiveExternalPortPositioner/lambda$4$Type",1603),H(1604,1,{},yCt),E.Kb=function(i){return ilr(this.a,at(i))},E.Fb=function(i){return this===i},K(dr,"InteractiveExternalPortPositioner/lambda$5$Type",1604),H(81,22,{3:1,34:1,22:1,81:1,196:1},ps),E.dg=function(){switch(this.g){case 15:return new Z_t;case 22:return new J_t;case 47:return new nwt;case 28:case 35:return new Yvt;case 32:return new Gyt;case 42:return new Vyt;case 1:return new Yyt;case 41:return new jyt;case 56:return new S7e((N8(),Tq));case 0:return new S7e((N8(),tye));case 2:return new Wyt;case 54:return new Kyt;case 33:return new Jyt;case 51:return new cvt;case 55:return new gvt;case 13:return new mvt;case 38:return new yvt;case 44:return new vvt;case 40:return new Evt;case 9:return new tTt;case 49:return new yNt;case 37:return new Cvt;case 43:return new Ivt;case 27:return new Nvt;case 30:return new Ovt;case 3:return new Lvt;case 18:return new Bvt;case 29:return new Fvt;case 5:return new nTt;case 50:return new Pvt;case 34:return new rTt;case 36:return new jvt;case 52:return new Y3t;case 11:return new Wvt;case 7:return new iTt;case 39:return new Kvt;case 45:return new Xvt;case 16:return new Qvt;case 10:return new u8t;case 48:return new t2t;case 21:return new n2t;case 23:return new Fue(($E(),_P));case 8:return new i2t;case 12:return new s2t;case 4:return new o2t;case 19:return new uTt;case 17:return new b2t;case 53:return new y2t;case 6:return new I2t;case 25:return new h6t;case 46:return new x2t;case 31:return new sOt;case 14:return new F2t;case 26:return new awt;case 20:return new q2t;case 24:return new Fue(($E(),vne));default:throw _e(new ar(Age+(this.f!=null?this.f:""+this.g)))}};var NGe,OGe,LGe,DGe,MGe,PGe,BGe,FGe,$Ge,UGe,k5,mte,bte,zGe,GGe,qGe,HGe,VGe,YGe,jGe,eP,WGe,KGe,XGe,QGe,ZGe,nye,yte,vte,JGe,_te,wte,Ete,jI,G4,q4,eqe,xte,Ste,tqe,Tte,Cte,nqe,rqe,iqe,aqe,Ate,rye,Cq,kte,Rte,Ite,Nte,sqe,oqe,lqe,cqe,Y8r=$r(dr,kge,81,jr,vYt,Vlr),irn;H(1605,1,ba,Bvt),E.Kf=function(i,l){W7r(v(i,36),l)},K(dr,"InvertedPortProcessor",1605),H(1606,1,ba,Fvt),E.Kf=function(i,l){qCr(v(i,36),l)},K(dr,"LabelAndNodeSizeProcessor",1606),H(1607,1,si,$vt),E.Mb=function(i){return v(i,10).k==(lr(),is)},K(dr,"LabelAndNodeSizeProcessor/lambda$0$Type",1607),H(1608,1,si,Uvt),E.Mb=function(i){return v(i,10).k==(lr(),hs)},K(dr,"LabelAndNodeSizeProcessor/lambda$1$Type",1608),H(1609,1,vr,DOt),E.Cd=function(i){Tar(this.b,this.a,this.c,v(i,10))},E.a=!1,E.c=!1,K(dr,"LabelAndNodeSizeProcessor/lambda$2$Type",1609),H(1610,1,ba,nTt),E.Kf=function(i,l){_7r(v(i,36),l)};var arn;K(dr,"LabelDummyInserter",1610),H(1611,1,ig,zvt),E.Lb=function(i){return Ze(oe(v(i,72),(qt(),pg)))===Ze((W1(),wN))},E.Fb=function(i){return this===i},E.Mb=function(i){return Ze(oe(v(i,72),(qt(),pg)))===Ze((W1(),wN))},K(dr,"LabelDummyInserter/1",1611),H(1612,1,ba,Pvt),E.Kf=function(i,l){l7r(v(i,36),l)},K(dr,"LabelDummyRemover",1612),H(1613,1,si,Gvt),E.Mb=function(i){return Vt(Ht(oe(v(i,72),(qt(),Vye))))},K(dr,"LabelDummyRemover/lambda$0$Type",1613),H(1378,1,ba,rTt),E.Kf=function(i,l){e7r(this,v(i,36),l)},E.a=null;var iye;K(dr,"LabelDummySwitcher",1378),H(293,1,{293:1},yjt),E.c=0,E.d=null,E.f=0,K(dr,"LabelDummySwitcher/LabelDummyInfo",293),H(1379,1,{},qvt),E.Kb=function(i){return Bk(),new xn(null,new Nn(v(i,30).a,16))},K(dr,"LabelDummySwitcher/lambda$0$Type",1379),H(1380,1,si,Hvt),E.Mb=function(i){return Bk(),v(i,10).k==(lr(),Pc)},K(dr,"LabelDummySwitcher/lambda$1$Type",1380),H(1381,1,{},vCt),E.Kb=function(i){return zor(this.a,v(i,10))},K(dr,"LabelDummySwitcher/lambda$2$Type",1381),H(1382,1,vr,_Ct),E.Cd=function(i){odr(this.a,v(i,293))},K(dr,"LabelDummySwitcher/lambda$3$Type",1382),H(1383,1,ui,Vvt),E.Ne=function(i,l){return Nhr(v(i,293),v(l,293))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"LabelDummySwitcher/lambda$4$Type",1383),H(802,1,ba,Yvt),E.Kf=function(i,l){qpr(v(i,36),l)},K(dr,"LabelManagementProcessor",802),H(1614,1,ba,jvt),E.Kf=function(i,l){_5r(v(i,36),l)},K(dr,"LabelSideSelector",1614),H(1622,1,ba,Wvt),E.Kf=function(i,l){okr(v(i,36),l)},K(dr,"LayerConstraintPostprocessor",1622),H(1623,1,ba,iTt),E.Kf=function(i,l){n3r(v(i,36),l)};var uqe;K(dr,"LayerConstraintPreprocessor",1623),H(371,22,{3:1,34:1,22:1,371:1},rX);var Aq,Ote,Lte,aye,srn=$r(dr,"LayerConstraintPreprocessor/HiddenNodeConnections",371,jr,w1r,Ylr),orn;H(1624,1,ba,Kvt),E.Kf=function(i,l){S6r(v(i,36),l)},K(dr,"LayerSizeAndGraphHeightCalculator",1624),H(1625,1,ba,Xvt),E.Kf=function(i,l){aTr(v(i,36),l)},K(dr,"LongEdgeJoiner",1625),H(1626,1,ba,Qvt),E.Kf=function(i,l){Jkr(v(i,36),l)},K(dr,"LongEdgeSplitter",1626),H(1627,1,ba,u8t),E.Kf=function(i,l){M7r(this,v(i,36),l)},E.e=0,E.f=0,E.j=0,E.k=0,E.n=0,E.o=0;var lrn,crn;K(dr,"NodePromotion",1627),H(1628,1,ui,Zvt),E.Ne=function(i,l){return Wbr(v(i,10),v(l,10))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"NodePromotion/1",1628),H(1629,1,ui,Jvt),E.Ne=function(i,l){return Kbr(v(i,10),v(l,10))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"NodePromotion/2",1629),H(1630,1,{},e2t),E.Kb=function(i){return v(i,42),FX(),Qn(),!0},E.Fb=function(i){return this===i},K(dr,"NodePromotion/lambda$0$Type",1630),H(1631,1,{},SCt),E.Kb=function(i){return Hfr(this.a,v(i,42))},E.Fb=function(i){return this===i},E.a=0,K(dr,"NodePromotion/lambda$1$Type",1631),H(1632,1,{},TCt),E.Kb=function(i){return qfr(this.a,v(i,42))},E.Fb=function(i){return this===i},E.a=0,K(dr,"NodePromotion/lambda$2$Type",1632),H(1633,1,ba,t2t),E.Kf=function(i,l){RRr(v(i,36),l)},K(dr,"NorthSouthPortPostprocessor",1633),H(1634,1,ba,n2t),E.Kf=function(i,l){cRr(v(i,36),l)},K(dr,"NorthSouthPortPreprocessor",1634),H(1635,1,ui,r2t),E.Ne=function(i,l){return cbr(v(i,12),v(l,12))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"NorthSouthPortPreprocessor/lambda$0$Type",1635),H(1636,1,ba,i2t),E.Kf=function(i,l){SAr(v(i,36),l)},K(dr,"PartitionMidprocessor",1636),H(1637,1,si,a2t),E.Mb=function(i){return ya(v(i,10),(qt(),oN))},K(dr,"PartitionMidprocessor/lambda$0$Type",1637),H(1638,1,vr,CCt),E.Cd=function(i){Hdr(this.a,v(i,10))},K(dr,"PartitionMidprocessor/lambda$1$Type",1638),H(1639,1,ba,s2t),E.Kf=function(i,l){CTr(v(i,36),l)},K(dr,"PartitionPostprocessor",1639),H(1640,1,ba,o2t),E.Kf=function(i,l){U4r(v(i,36),l)},K(dr,"PartitionPreprocessor",1640),H(1641,1,si,l2t),E.Mb=function(i){return ya(v(i,10),(qt(),oN))},K(dr,"PartitionPreprocessor/lambda$0$Type",1641),H(1642,1,{},c2t),E.Kb=function(i){return new xn(null,new TE(new yr(_r(os(v(i,10)).a.Kc(),new S))))},K(dr,"PartitionPreprocessor/lambda$1$Type",1642),H(1643,1,si,u2t),E.Mb=function(i){return I2r(v(i,18))},K(dr,"PartitionPreprocessor/lambda$2$Type",1643),H(1644,1,vr,h2t),E.Cd=function(i){Cbr(v(i,18))},K(dr,"PartitionPreprocessor/lambda$3$Type",1644),H(1645,1,ba,uTt),E.Kf=function(i,l){iAr(v(i,36),l)};var hqe,urn,hrn,drn,dqe,fqe;K(dr,"PortListSorter",1645),H(1648,1,ui,d2t),E.Ne=function(i,l){return cPt(v(i,12),v(l,12))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"PortListSorter/lambda$0$Type",1648),H(1650,1,ui,f2t),E.Ne=function(i,l){return Gjt(v(i,12),v(l,12))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"PortListSorter/lambda$1$Type",1650),H(1646,1,{},p2t),E.Kb=function(i){return G8(),v(i,12).e},K(dr,"PortListSorter/lambda$2$Type",1646),H(1647,1,{},g2t),E.Kb=function(i){return G8(),v(i,12).g},K(dr,"PortListSorter/lambda$3$Type",1647),H(1649,1,ui,m2t),E.Ne=function(i,l){return ewr(v(i,12),v(l,12))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"PortListSorter/lambda$4$Type",1649),H(1651,1,ba,b2t),E.Kf=function(i,l){g3r(v(i,36),l)},K(dr,"PortSideProcessor",1651),H(1652,1,ba,y2t),E.Kf=function(i,l){mCr(v(i,36),l)},K(dr,"ReversedEdgeRestorer",1652),H(1657,1,ba,h6t),E.Kf=function(i,l){P_r(this,v(i,36),l)},K(dr,"SelfLoopPortRestorer",1657),H(1658,1,{},v2t),E.Kb=function(i){return new xn(null,new Nn(v(i,30).a,16))},K(dr,"SelfLoopPortRestorer/lambda$0$Type",1658),H(1659,1,si,_2t),E.Mb=function(i){return v(i,10).k==(lr(),is)},K(dr,"SelfLoopPortRestorer/lambda$1$Type",1659),H(1660,1,si,w2t),E.Mb=function(i){return ya(v(i,10),(At(),yx))},K(dr,"SelfLoopPortRestorer/lambda$2$Type",1660),H(1661,1,{},E2t),E.Kb=function(i){return v(oe(v(i,10),(At(),yx)),337)},K(dr,"SelfLoopPortRestorer/lambda$3$Type",1661),H(1662,1,vr,ECt),E.Cd=function(i){Qxr(this.a,v(i,337))},K(dr,"SelfLoopPortRestorer/lambda$4$Type",1662),H(805,1,vr,D6e),E.Cd=function(i){uSr(v(i,105))},K(dr,"SelfLoopPortRestorer/lambda$5$Type",805),H(1663,1,ba,x2t),E.Kf=function(i,l){G2r(v(i,36),l)},K(dr,"SelfLoopPostProcessor",1663),H(1664,1,{},S2t),E.Kb=function(i){return new xn(null,new Nn(v(i,30).a,16))},K(dr,"SelfLoopPostProcessor/lambda$0$Type",1664),H(1665,1,si,T2t),E.Mb=function(i){return v(i,10).k==(lr(),is)},K(dr,"SelfLoopPostProcessor/lambda$1$Type",1665),H(1666,1,si,C2t),E.Mb=function(i){return ya(v(i,10),(At(),yx))},K(dr,"SelfLoopPostProcessor/lambda$2$Type",1666),H(1667,1,vr,A2t),E.Cd=function(i){Jwr(v(i,10))},K(dr,"SelfLoopPostProcessor/lambda$3$Type",1667),H(1668,1,{},k2t),E.Kb=function(i){return new xn(null,new Nn(v(i,105).f,1))},K(dr,"SelfLoopPostProcessor/lambda$4$Type",1668),H(1669,1,vr,wCt),E.Cd=function(i){T1r(this.a,v(i,340))},K(dr,"SelfLoopPostProcessor/lambda$5$Type",1669),H(1670,1,si,R2t),E.Mb=function(i){return!!v(i,105).i},K(dr,"SelfLoopPostProcessor/lambda$6$Type",1670),H(1671,1,vr,xCt),E.Cd=function(i){xir(this.a,v(i,105))},K(dr,"SelfLoopPostProcessor/lambda$7$Type",1671),H(1653,1,ba,I2t),E.Kf=function(i,l){H3r(v(i,36),l)},K(dr,"SelfLoopPreProcessor",1653),H(1654,1,{},N2t),E.Kb=function(i){return new xn(null,new Nn(v(i,105).f,1))},K(dr,"SelfLoopPreProcessor/lambda$0$Type",1654),H(1655,1,{},O2t),E.Kb=function(i){return v(i,340).a},K(dr,"SelfLoopPreProcessor/lambda$1$Type",1655),H(1656,1,vr,L2t),E.Cd=function(i){Asr(v(i,18))},K(dr,"SelfLoopPreProcessor/lambda$2$Type",1656),H(1672,1,ba,sOt),E.Kf=function(i,l){Oxr(this,v(i,36),l)},K(dr,"SelfLoopRouter",1672),H(1673,1,{},D2t),E.Kb=function(i){return new xn(null,new Nn(v(i,30).a,16))},K(dr,"SelfLoopRouter/lambda$0$Type",1673),H(1674,1,si,M2t),E.Mb=function(i){return v(i,10).k==(lr(),is)},K(dr,"SelfLoopRouter/lambda$1$Type",1674),H(1675,1,si,P2t),E.Mb=function(i){return ya(v(i,10),(At(),yx))},K(dr,"SelfLoopRouter/lambda$2$Type",1675),H(1676,1,{},B2t),E.Kb=function(i){return v(oe(v(i,10),(At(),yx)),337)},K(dr,"SelfLoopRouter/lambda$3$Type",1676),H(1677,1,vr,HRt),E.Cd=function(i){Fdr(this.a,this.b,v(i,337))},K(dr,"SelfLoopRouter/lambda$4$Type",1677),H(1678,1,ba,F2t),E.Kf=function(i,l){l5r(v(i,36),l)},K(dr,"SemiInteractiveCrossMinProcessor",1678),H(1679,1,si,$2t),E.Mb=function(i){return v(i,10).k==(lr(),is)},K(dr,"SemiInteractiveCrossMinProcessor/lambda$0$Type",1679),H(1680,1,si,U2t),E.Mb=function(i){return x9t(v(i,10))._b((qt(),Z4))},K(dr,"SemiInteractiveCrossMinProcessor/lambda$1$Type",1680),H(1681,1,ui,z2t),E.Ne=function(i,l){return Tmr(v(i,10),v(l,10))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dr,"SemiInteractiveCrossMinProcessor/lambda$2$Type",1681),H(1682,1,{},G2t),E.Ve=function(i,l){return Vdr(v(i,10),v(l,10))},K(dr,"SemiInteractiveCrossMinProcessor/lambda$3$Type",1682),H(1684,1,ba,q2t),E.Kf=function(i,l){Okr(v(i,36),l)},K(dr,"SortByInputModelProcessor",1684),H(1685,1,si,H2t),E.Mb=function(i){return v(i,12).g.c.length!=0},K(dr,"SortByInputModelProcessor/lambda$0$Type",1685),H(1686,1,vr,ACt),E.Cd=function(i){gSr(this.a,v(i,12))},K(dr,"SortByInputModelProcessor/lambda$1$Type",1686),H(1759,817,{},L$t),E.df=function(i){var l,d,g,y;switch(this.c=i,this.a.g){case 2:l=new Ot,ts(Ki(new xn(null,new Nn(this.c.a.b,16)),new i_t),new JRt(this,l)),fG(this,new Y2t),Cu(l,new j2t),l.c.length=0,ts(Ki(new xn(null,new Nn(this.c.a.b,16)),new W2t),new RCt(l)),fG(this,new K2t),Cu(l,new X2t),l.c.length=0,d=DIt(Jfe(e4(new xn(null,new Nn(this.c.a.b,16)),new ICt(this))),new Q2t),ts(new xn(null,new Nn(this.c.a.a,16)),new jRt(d,l)),fG(this,new J2t),Cu(l,new e_t),l.c.length=0;break;case 3:g=new Ot,fG(this,new V2t),y=DIt(Jfe(e4(new xn(null,new Nn(this.c.a.b,16)),new kCt(this))),new Z2t),ts(Ki(new xn(null,new Nn(this.c.a.b,16)),new t_t),new KRt(y,g)),fG(this,new n_t),Cu(g,new r_t),g.c.length=0;break;default:throw _e(new Zkt)}},E.b=0,K(Cs,"EdgeAwareScanlineConstraintCalculation",1759),H(1760,1,ig,V2t),E.Lb=function(i){return $e(v(i,60).g,154)},E.Fb=function(i){return this===i},E.Mb=function(i){return $e(v(i,60).g,154)},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$0$Type",1760),H(1761,1,{},kCt),E.Ye=function(i){return ZSr(this.a,v(i,60))},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$1$Type",1761),H(1769,1,UJ,VRt),E.de=function(){WD(this.a,this.b,-1)},E.b=0,K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$10$Type",1769),H(1771,1,ig,Y2t),E.Lb=function(i){return $e(v(i,60).g,154)},E.Fb=function(i){return this===i},E.Mb=function(i){return $e(v(i,60).g,154)},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$11$Type",1771),H(1772,1,vr,j2t),E.Cd=function(i){v(i,380).de()},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$12$Type",1772),H(1773,1,si,W2t),E.Mb=function(i){return $e(v(i,60).g,10)},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$13$Type",1773),H(1775,1,vr,RCt),E.Cd=function(i){yvr(this.a,v(i,60))},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$14$Type",1775),H(1774,1,UJ,XRt),E.de=function(){WD(this.b,this.a,-1)},E.a=0,K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$15$Type",1774),H(1776,1,ig,K2t),E.Lb=function(i){return $e(v(i,60).g,10)},E.Fb=function(i){return this===i},E.Mb=function(i){return $e(v(i,60).g,10)},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$16$Type",1776),H(1777,1,vr,X2t),E.Cd=function(i){v(i,380).de()},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$17$Type",1777),H(1778,1,{},ICt),E.Ye=function(i){return JSr(this.a,v(i,60))},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$18$Type",1778),H(1779,1,{},Q2t),E.We=function(){return 0},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$19$Type",1779),H(1762,1,{},Z2t),E.We=function(){return 0},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$2$Type",1762),H(1781,1,vr,jRt),E.Cd=function(i){xhr(this.a,this.b,v(i,316))},E.a=0,K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$20$Type",1781),H(1780,1,UJ,WRt),E.de=function(){WVt(this.a,this.b,-1)},E.b=0,K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$21$Type",1780),H(1782,1,ig,J2t),E.Lb=function(i){return v(i,60),!0},E.Fb=function(i){return this===i},E.Mb=function(i){return v(i,60),!0},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$22$Type",1782),H(1783,1,vr,e_t),E.Cd=function(i){v(i,380).de()},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$23$Type",1783),H(1763,1,si,t_t),E.Mb=function(i){return $e(v(i,60).g,10)},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$3$Type",1763),H(1765,1,vr,KRt),E.Cd=function(i){Shr(this.a,this.b,v(i,60))},E.a=0,K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$4$Type",1765),H(1764,1,UJ,QRt),E.de=function(){WD(this.b,this.a,-1)},E.a=0,K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$5$Type",1764),H(1766,1,ig,n_t),E.Lb=function(i){return v(i,60),!0},E.Fb=function(i){return this===i},E.Mb=function(i){return v(i,60),!0},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$6$Type",1766),H(1767,1,vr,r_t),E.Cd=function(i){v(i,380).de()},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$7$Type",1767),H(1768,1,si,i_t),E.Mb=function(i){return $e(v(i,60).g,154)},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$8$Type",1768),H(1770,1,vr,JRt),E.Cd=function(i){Ggr(this.a,this.b,v(i,60))},K(Cs,"EdgeAwareScanlineConstraintCalculation/lambda$9$Type",1770),H(1586,1,ba,yNt),E.Kf=function(i,l){a6r(this,v(i,36),l)};var frn;K(Cs,"HorizontalGraphCompactor",1586),H(1587,1,{},NCt),E.ff=function(i,l){var d,g,y;return jOe(i,l)||(d=qT(i),g=qT(l),d&&d.k==(lr(),hs)||g&&g.k==(lr(),hs))?0:(y=v(oe(this.a.a,(At(),B5)),312),cor(y,d?d.k:(lr(),Ws),g?g.k:(lr(),Ws)))},E.gf=function(i,l){var d,g,y;return jOe(i,l)?1:(d=qT(i),g=qT(l),y=v(oe(this.a.a,(At(),B5)),312),F8e(y,d?d.k:(lr(),Ws),g?g.k:(lr(),Ws)))},K(Cs,"HorizontalGraphCompactor/1",1587),H(1588,1,{},a_t),E.ef=function(i,l){return CL(),i.a.i==0},K(Cs,"HorizontalGraphCompactor/lambda$0$Type",1588),H(1589,1,{},OCt),E.ef=function(i,l){return Wdr(this.a,i,l)},K(Cs,"HorizontalGraphCompactor/lambda$1$Type",1589),H(1730,1,{},lFt);var prn,grn;K(Cs,"LGraphToCGraphTransformer",1730),H(1738,1,si,s_t),E.Mb=function(i){return i!=null},K(Cs,"LGraphToCGraphTransformer/0methodref$nonNull$Type",1738),H(1731,1,{},o_t),E.Kb=function(i){return _0(),Kl(oe(v(v(i,60).g,10),(At(),Ji)))},K(Cs,"LGraphToCGraphTransformer/lambda$0$Type",1731),H(1732,1,{},l_t),E.Kb=function(i){return _0(),vzt(v(v(i,60).g,154))},K(Cs,"LGraphToCGraphTransformer/lambda$1$Type",1732),H(1741,1,si,c_t),E.Mb=function(i){return _0(),$e(v(i,60).g,10)},K(Cs,"LGraphToCGraphTransformer/lambda$10$Type",1741),H(1742,1,vr,u_t),E.Cd=function(i){Jdr(v(i,60))},K(Cs,"LGraphToCGraphTransformer/lambda$11$Type",1742),H(1743,1,si,h_t),E.Mb=function(i){return _0(),$e(v(i,60).g,154)},K(Cs,"LGraphToCGraphTransformer/lambda$12$Type",1743),H(1747,1,vr,d_t),E.Cd=function(i){Iyr(v(i,60))},K(Cs,"LGraphToCGraphTransformer/lambda$13$Type",1747),H(1744,1,vr,LCt),E.Cd=function(i){nsr(this.a,v(i,8))},E.a=0,K(Cs,"LGraphToCGraphTransformer/lambda$14$Type",1744),H(1745,1,vr,DCt),E.Cd=function(i){isr(this.a,v(i,116))},E.a=0,K(Cs,"LGraphToCGraphTransformer/lambda$15$Type",1745),H(1746,1,vr,MCt),E.Cd=function(i){rsr(this.a,v(i,8))},E.a=0,K(Cs,"LGraphToCGraphTransformer/lambda$16$Type",1746),H(1748,1,{},f_t),E.Kb=function(i){return _0(),new xn(null,new TE(new yr(_r(os(v(i,10)).a.Kc(),new S))))},K(Cs,"LGraphToCGraphTransformer/lambda$17$Type",1748),H(1749,1,si,p_t),E.Mb=function(i){return _0(),Jo(v(i,18))},K(Cs,"LGraphToCGraphTransformer/lambda$18$Type",1749),H(1750,1,vr,PCt),E.Cd=function(i){_gr(this.a,v(i,18))},K(Cs,"LGraphToCGraphTransformer/lambda$19$Type",1750),H(1734,1,vr,BCt),E.Cd=function(i){j0r(this.a,v(i,154))},K(Cs,"LGraphToCGraphTransformer/lambda$2$Type",1734),H(1751,1,{},g_t),E.Kb=function(i){return _0(),new xn(null,new Nn(v(i,30).a,16))},K(Cs,"LGraphToCGraphTransformer/lambda$20$Type",1751),H(1752,1,{},m_t),E.Kb=function(i){return _0(),new xn(null,new TE(new yr(_r(os(v(i,10)).a.Kc(),new S))))},K(Cs,"LGraphToCGraphTransformer/lambda$21$Type",1752),H(1753,1,{},b_t),E.Kb=function(i){return _0(),v(oe(v(i,18),(At(),sw)),15)},K(Cs,"LGraphToCGraphTransformer/lambda$22$Type",1753),H(1754,1,si,y_t),E.Mb=function(i){return uor(v(i,15))},K(Cs,"LGraphToCGraphTransformer/lambda$23$Type",1754),H(1755,1,vr,FCt),E.Cd=function(i){zSr(this.a,v(i,15))},K(Cs,"LGraphToCGraphTransformer/lambda$24$Type",1755),H(1733,1,vr,e8t),E.Cd=function(i){H1r(this.a,this.b,v(i,154))},K(Cs,"LGraphToCGraphTransformer/lambda$3$Type",1733),H(1735,1,{},v_t),E.Kb=function(i){return _0(),new xn(null,new Nn(v(i,30).a,16))},K(Cs,"LGraphToCGraphTransformer/lambda$4$Type",1735),H(1736,1,{},__t),E.Kb=function(i){return _0(),new xn(null,new TE(new yr(_r(os(v(i,10)).a.Kc(),new S))))},K(Cs,"LGraphToCGraphTransformer/lambda$5$Type",1736),H(1737,1,{},w_t),E.Kb=function(i){return _0(),v(oe(v(i,18),(At(),sw)),15)},K(Cs,"LGraphToCGraphTransformer/lambda$6$Type",1737),H(1739,1,vr,$Ct),E.Cd=function(i){e4r(this.a,v(i,15))},K(Cs,"LGraphToCGraphTransformer/lambda$8$Type",1739),H(1740,1,vr,t8t),E.Cd=function(i){ksr(this.a,this.b,v(i,154))},K(Cs,"LGraphToCGraphTransformer/lambda$9$Type",1740),H(1729,1,{},E_t),E.cf=function(i){var l,d,g,y,x;for(this.a=i,this.d=new Rue,this.c=st(Yze,Yn,125,this.a.a.a.c.length,0,1),this.b=0,d=new me(this.a.a.a);d.a=de&&(Lt(x,Nt(q)),Ue=u.Math.max(Ue,je[q-1]-J),R+=le,Se+=je[q-1]-Se,J=je[q-1],le=O[q]),le=u.Math.max(le,O[q]),++q;R+=le}ae=u.Math.min(1/Ue,1/l.b/R),ae>g&&(g=ae,d=x)}return d},E.pg=function(){return!1},K(lg,"MSDCutIndexHeuristic",816),H(1683,1,ba,awt),E.Kf=function(i,l){ckr(v(i,36),l)},K(lg,"SingleEdgeGraphWrapper",1683),H(232,22,{3:1,34:1,22:1,232:1},DL);var I5,XI,QI,H4,tP,N5,ZI=$r(Mc,"CenterEdgeLabelPlacementStrategy",232,jr,Wpr,Xlr),Arn;H(431,22,{3:1,34:1,22:1,431:1},$Re);var gqe,mye,mqe=$r(Mc,"ConstraintCalculationStrategy",431,jr,pfr,Qlr),krn;H(322,22,{3:1,34:1,22:1,322:1,188:1,196:1},che),E.dg=function(){return nVt(this)},E.qg=function(){return nVt(this)};var Rq,nP,bqe,yqe=$r(Mc,"CrossingMinimizationStrategy",322,jr,l0r,Zlr),Rrn;H(351,22,{3:1,34:1,22:1,351:1},uhe);var vqe,bye,Fte,_qe=$r(Mc,"CuttingStrategy",351,jr,c0r,Jlr),Irn;H(348,22,{3:1,34:1,22:1,348:1,188:1,196:1},xU),E.dg=function(){return YVt(this)},E.qg=function(){return YVt(this)};var wqe,yye,JI,vye,eN,Eqe=$r(Mc,"CycleBreakingStrategy",348,jr,dpr,ecr),Nrn;H(428,22,{3:1,34:1,22:1,428:1},URe);var $te,xqe,Sqe=$r(Mc,"DirectionCongruency",428,jr,ffr,tcr),Orn;H(460,22,{3:1,34:1,22:1,460:1},hhe);var tN,_ye,O5,Lrn=$r(Mc,"EdgeConstraint",460,jr,u0r,lcr),Drn;H(283,22,{3:1,34:1,22:1,283:1},ML);var wye,Eye,xye,Sye,Ute,Tye,Tqe=$r(Mc,"EdgeLabelSideSelection",283,jr,Vpr,ccr),Mrn;H(488,22,{3:1,34:1,22:1,488:1},zRe);var zte,Cqe,Aqe=$r(Mc,"EdgeStraighteningStrategy",488,jr,wfr,ucr),Prn;H(281,22,{3:1,34:1,22:1,281:1},PL);var Cye,kqe,Rqe,Gte,Iqe,Nqe,Oqe=$r(Mc,"FixedAlignment",281,jr,Ypr,ocr),Brn;H(282,22,{3:1,34:1,22:1,282:1},BL);var Lqe,Dqe,Mqe,Pqe,rP,Bqe,Fqe=$r(Mc,"GraphCompactionStrategy",282,jr,jpr,ncr),Frn;H(259,22,{3:1,34:1,22:1,259:1},GS);var nN,qte,rN,wf,iP,Hte,iN,L5,Vte,aP,Aye=$r(Mc,"GraphProperties",259,jr,Nmr,rcr),$rn;H(299,22,{3:1,34:1,22:1,299:1},dhe);var Iq,kye,Rye,Iye=$r(Mc,"GreedySwitchType",299,jr,h0r,icr),Urn;H(311,22,{3:1,34:1,22:1,311:1},fhe);var y6,Nq,D5,zrn=$r(Mc,"InLayerConstraint",311,jr,d0r,acr),Grn;H(429,22,{3:1,34:1,22:1,429:1},GRe);var Nye,$qe,Uqe=$r(Mc,"InteractiveReferencePoint",429,jr,dfr,scr),qrn,zqe,v6,gx,Yte,Gqe,qqe,jte,Hqe,Oq,Wte,sP,_6,ob,Oye,Kte,vc,Vqe,c2,au,Lye,Dye,Lq,aw,mx,w6,Yqe,E6,Dq,V4,m1,Kf,Mye,M5,ua,Ji,jqe,Wqe,Kqe,Xqe,Qqe,Pye,Xte,kh,bx,Bye,x6,oP,ap,P5,yx,B5,F5,aN,sw,Zqe,Fye,$ye,S6;H(171,22,{3:1,34:1,22:1,171:1},SU);var lP,u2,cP,Y4,Mq,Jqe=$r(Mc,"LayerConstraint",171,jr,ppr,hcr),Hrn;H(859,1,Hf,bTt),E.hf=function(i){pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,KBe),""),"Direction Congruency"),"Specifies how drawings of the same graph with different layout directions compare to each other: either a natural reading direction is preserved or the drawings are rotated versions of each other."),cHe),(dy(),Ra)),Sqe),bn((d1(),Hn))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,XBe),""),"Feedback Edges"),"Whether feedback edges should be highlighted by routing around the nodes."),(Qn(),!1)),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,tee),""),"Interactive Reference Point"),"Determines which point of a node is considered by interactive layout phases."),gHe),Ra),Uqe),bn(Hn)))),bs(i,tee,Nge,Fin),bs(i,tee,kM,Bin),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,QBe),""),"Merge Edges"),"Edges that have no ports are merged so they touch the connected nodes at the same points. When this option is disabled, one port is created for each edge directly connected to a node. When it is enabled, all such incoming edges share an input port, and all outgoing edges share an output port."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,ZBe),""),"Merge Hierarchy-Crossing Edges"),"If hierarchical layout is active, hierarchy-crossing edges use as few hierarchical ports as possible. They are broken by the algorithm, with hierarchical ports inserted as required. Usually, one such port is created for each edge at each hierarchy crossing point. With this option set to true, we try to create as few hierarchical ports as possible in the process. In particular, all edges that form a hyperedge can share a port."),!0),Gs),rs),bn(Hn)))),pn(i,new an(tar(dn(hn(fn(kn(on(un(ln(cn(new rn,JBe),""),"Allow Non-Flow Ports To Switch Sides"),"Specifies whether non-flow ports may switch sides if their node's port constraints are either FIXED_SIDE or FIXED_ORDER. A non-flow port is a port on a side that is not part of the currently configured layout flow. For instance, given a left-to-right layout direction, north and south ports would be considered non-flow ports. Further note that the underlying criterium whether to switch sides or not solely relies on the minimization of edge crossings. Hence, edge length and other aesthetics criteria are not addressed."),!1),Gs),rs),bn(pw)),Te(xe(Xt,1),kt,2,6,["org.eclipse.elk.layered.northOrSouthPort"])))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,eFe),""),"Port Sorting Strategy"),"Only relevant for nodes with FIXED_SIDE port constraints. Determines the way a node's ports are distributed on the sides of a node if their order is not prescribed. The option is set on parent nodes."),xHe),Ra),OVe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,tFe),""),"Thoroughness"),"How much effort should be spent to produce a nice layout."),Nt(7)),Zl),Ao),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,nFe),""),"Add Unnecessary Bendpoints"),"Adds bend points even if an edge does not change direction. If true, each long edge dummy will contribute a bend point to its edges and hierarchy-crossing edges will always get a bend point where they cross hierarchy boundaries. By default, bend points are only added where an edge changes direction."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,rFe),""),"Generate Position and Layer IDs"),"If enabled position id and layer id are generated, which are usually only used internally when setting the interactiveLayout option. This option should be specified on the root node."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Nge),"cycleBreaking"),"Cycle Breaking Strategy"),"Strategy for cycle breaking. Cycle breaking looks for cycles in the graph and determines which edges to reverse to break the cycles. Reversed edges will end up pointing to the opposite direction of regular edges (that is, reversed edges will point left if edges usually point right)."),lHe),Ra),Eqe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,eq),tme),"Node Layering Strategy"),"Strategy for node layering."),yHe),Ra),_Ve),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,iFe),tme),"Layer Constraint"),"Determines a constraint on the placement of the node regarding the layering."),mHe),Ra),Jqe),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,aFe),tme),"Layer Choice Constraint"),"Allows to set a constraint regarding the layer placement of a node. Let i be the value of teh constraint. Assumed the drawing has n layers and i < n. If set to i, it expresses that the node should be placed in i-th layer. Should i>=n be true then the node is placed in the last layer of the drawing. Note that this option is not part of any of ELK Layered's default configurations but is only evaluated as part of the `InteractiveLayeredGraphVisitor`, which must be applied manually or used via the `DiagramLayoutEngine."),null),Zl),Ao),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,sFe),tme),"Layer ID"),"Layer identifier that was calculated by ELK Layered for a node. This is only generated if interactiveLayot or generatePositionAndLayerIds is set."),Nt(-1)),Zl),Ao),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Oge),pQt),"Upper Bound On Width [MinWidth Layerer]"),"Defines a loose upper bound on the width of the MinWidth layerer. If set to '-1' multiple values are tested and the best result is selected."),Nt(4)),Zl),Ao),bn(Hn)))),bs(i,Oge,eq,Vin),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Lge),pQt),"Upper Layer Estimation Scaling Factor [MinWidth Layerer]"),"Multiplied with Upper Bound On Width for defining an upper bound on the width of layers which haven't been determined yet, but whose maximum width had been (roughly) estimated by the MinWidth algorithm. Compensates for too high estimations. If set to '-1' multiple values are tested and the best result is selected."),Nt(2)),Zl),Ao),bn(Hn)))),bs(i,Lge,eq,jin),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Dge),gQt),"Node Promotion Strategy"),"Reduces number of dummy nodes after layering phase (if possible)."),bHe),Ra),RVe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Mge),gQt),"Max Node Promotion Iterations"),"Limits the number of iterations for node promotion."),Nt(0)),Zl),Ao),bn(Hn)))),bs(i,Mge,Dge,null),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Pge),"layering.coffmanGraham"),"Layer Bound"),"The maximum number of nodes allowed per layer."),Nt(qi)),Zl),Ao),bn(Hn)))),bs(i,Pge,eq,Uin),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,kM),OI),"Crossing Minimization Strategy"),"Strategy for crossing minimization."),oHe),Ra),yqe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,oFe),OI),"Force Node Model Order"),"The node order given by the model does not change to produce a better layout. E.g. if node A is before node B in the model this is not changed during crossing minimization. This assumes that the node model order is already respected before crossing minimization. This can be achieved by setting considerModelOrder.strategy to NODES_AND_EDGES."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Bge),OI),"Hierarchical Sweepiness"),"How likely it is to use cross-hierarchy (1) vs bottom-up (-1)."),.1),Fo),ws),bn(Hn)))),bs(i,Bge,pee,uin),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Fge),OI),"Semi-Interactive Crossing Minimization"),"Preserves the order of nodes within a layer but still minimizes crossings between edges connecting long edge dummies. Derives the desired order from positions specified by the 'org.eclipse.elk.position' layout option. Requires a crossing minimization strategy that is able to process 'in-layer' constraints."),!1),Gs),rs),bn(Hn)))),bs(i,Fge,kM,min),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,lFe),OI),"In Layer Predecessor of"),"Allows to set a constraint which specifies of which node the current node is the predecessor. If set to 's' then the node is the predecessor of 's' and is in the same layer"),null),K5),Xt),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,cFe),OI),"In Layer Successor of"),"Allows to set a constraint which specifies of which node the current node is the successor. If set to 's' then the node is the successor of 's' and is in the same layer"),null),K5),Xt),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,uFe),OI),"Position Choice Constraint"),"Allows to set a constraint regarding the position placement of a node in a layer. Assumed the layer in which the node placed includes n other nodes and i < n. If set to i, it expresses that the node should be placed at the i-th position. Should i>=n be true then the node is placed at the last position in the layer. Note that this option is not part of any of ELK Layered's default configurations but is only evaluated as part of the `InteractiveLayeredGraphVisitor`, which must be applied manually or used via the `DiagramLayoutEngine."),null),Zl),Ao),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,hFe),OI),"Position ID"),"Position within a layer that was determined by ELK Layered for a node. This is only generated if interactiveLayot or generatePositionAndLayerIds is set."),Nt(-1)),Zl),Ao),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,dFe),mQt),"Greedy Switch Activation Threshold"),"By default it is decided automatically if the greedy switch is activated or not. The decision is based on whether the size of the input graph (without dummy nodes) is smaller than the value of this option. A '0' enforces the activation."),Nt(40)),Zl),Ao),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,$ge),mQt),"Greedy Switch Crossing Minimization"),"Greedy Switch strategy for crossing minimization. The greedy switch heuristic is executed after the regular crossing minimization as a post-processor. Note that if 'hierarchyHandling' is set to 'INCLUDE_CHILDREN', the 'greedySwitchHierarchical.type' option must be used."),sHe),Ra),Iye),bn(Hn)))),bs(i,$ge,kM,lin),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,nee),"crossingMinimization.greedySwitchHierarchical"),"Greedy Switch Crossing Minimization (hierarchical)"),"Activates the greedy switch heuristic in case hierarchical layout is used. The differences to the non-hierarchical case (see 'greedySwitch.type') are: 1) greedy switch is inactive by default, 3) only the option value set on the node at which hierarchical layout starts is relevant, and 2) if it's activated by the user, it properly addresses hierarchy-crossing edges."),aHe),Ra),Iye),bn(Hn)))),bs(i,nee,kM,ain),bs(i,nee,pee,sin),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,v5),bQt),"Node Placement Strategy"),"Strategy for node placement."),EHe),Ra),SVe),bn(Hn)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,ree),bQt),"Favor Straight Edges Over Balancing"),"Favor straight edges over a balanced node placement. The default behavior is determined automatically based on the used 'edgeRouting'. For an orthogonal style it is set to true, for all other styles to false."),Gs),rs),bn(Hn)))),bs(i,ree,v5,ian),bs(i,ree,v5,aan),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Uge),yQt),"BK Edge Straightening"),"Specifies whether the Brandes Koepf node placer tries to increase the number of straight edges at the expense of diagram size. There is a subtle difference to the 'favorStraightEdges' option, which decides whether a balanced placement of the nodes is desired, or not. In bk terms this means combining the four alignments into a single balanced one, or not. This option on the other hand tries to straighten additional edges during the creation of each of the four alignments."),vHe),Ra),Aqe),bn(Hn)))),bs(i,Uge,v5,ean),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,zge),yQt),"BK Fixed Alignment"),"Tells the BK node placer to use a certain alignment (out of its four) instead of the one producing the smallest height, or the combination of all four."),_He),Ra),Oqe),bn(Hn)))),bs(i,zge,v5,nan),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Gge),"nodePlacement.linearSegments"),"Linear Segments Deflection Dampening"),"Dampens the movement of nodes to keep the diagram from getting too large."),.3),Fo),ws),bn(Hn)))),bs(i,Gge,v5,oan),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,qge),"nodePlacement.networkSimplex"),"Node Flexibility"),"Aims at shorter and straighter edges. Two configurations are possible: (a) allow ports to move freely on the side they are assigned to (the order is always defined beforehand), (b) additionally allow to enlarge a node wherever it helps. If this option is not configured for a node, the 'nodeFlexibility.default' value is used, which is specified for the node's parent."),Ra),ove),bn(Fs)))),bs(i,qge,v5,han),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Hge),"nodePlacement.networkSimplex.nodeFlexibility"),"Node Flexibility Default"),"Default value of the 'nodeFlexibility' option for the children of a hierarchical node."),wHe),Ra),ove),bn(Hn)))),bs(i,Hge,v5,uan),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,fFe),vQt),"Self-Loop Distribution"),"Alter the distribution of the loops around the node. It only takes effect for PortConstraints.FREE."),dHe),Ra),MVe),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,pFe),vQt),"Self-Loop Ordering"),"Alter the ordering of the loops they can either be stacked or sequenced. It only takes effect for PortConstraints.FREE."),fHe),Ra),PVe),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,iee),"edgeRouting.splines"),"Spline Routing Mode"),"Specifies the way control points are assembled for each individual edge. CONSERVATIVE ensures that edges are properly routed around the nodes but feels rather orthogonal at times. SLOPPY uses fewer control points to obtain curvier edge routes but may result in edges overlapping nodes."),pHe),Ra),FVe),bn(Hn)))),bs(i,iee,tq,Ain),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,aee),"edgeRouting.splines.sloppy"),"Sloppy Spline Layer Spacing Factor"),"Spacing factor for routing area between layers when using sloppy spline routing."),.2),Fo),ws),bn(Hn)))),bs(i,aee,tq,Rin),bs(i,aee,iee,Iin),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Vge),"edgeRouting.polyline"),"Sloped Edge Zone Width"),"Width of the strip to the left and to the right of each layer where the polyline edge router is allowed to refrain from ensuring that edges are routed horizontally. This prevents awkward bend points for nodes that extent almost to the edge of their layer."),2),Fo),ws),bn(Hn)))),bs(i,Vge,tq,xin),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,gFe),np),"Spacing Base Value"),"An optional base value for all other layout options of the 'spacing' group. It can be used to conveniently alter the overall 'spaciousness' of the drawing. Whenever an explicit value is set for the other layout options, this base value will have no effect. The base value is not inherited, i.e. it must be set for each hierarchical node."),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,mFe),np),"Edge Node Between Layers Spacing"),"The spacing to be preserved between nodes and edges that are routed next to the node's layer. For the spacing between nodes and edges that cross the node's layer 'spacing.edgeNode' is used."),10),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,bFe),np),"Edge Edge Between Layer Spacing"),"Spacing to be preserved between pairs of edges that are routed between the same pair of layers. Note that 'spacing.edgeEdge' is used for the spacing between pairs of edges crossing the same layer."),10),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,yFe),np),"Node Node Between Layers Spacing"),"The spacing to be preserved between any pair of nodes of two adjacent layers. Note that 'spacing.nodeNode' is used for the spacing between nodes within the layer itself."),20),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,vFe),RFe),"Direction Priority"),"Defines how important it is to have a certain edge point into the direction of the overall layout. This option is evaluated during the cycle breaking phase."),Nt(0)),Zl),Ao),bn(mg)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,_Fe),RFe),"Shortness Priority"),"Defines how important it is to keep an edge as short as possible. This option is evaluated during the layering phase."),Nt(0)),Zl),Ao),bn(mg)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,wFe),RFe),"Straightness Priority"),"Defines how important it is to keep an edge straight, i.e. aligned with one of the two axes. This option is evaluated during node placement."),Nt(0)),Zl),Ao),bn(mg)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Yge),IFe),MXt),"Tries to further compact components (disconnected sub-graphs)."),!1),Gs),rs),bn(Hn)))),bs(i,Yge,xM,!0),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,EFe),_Qt),"Post Compaction Strategy"),wQt),tHe),Ra),Fqe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,xFe),_Qt),"Post Compaction Constraint Calculation"),wQt),eHe),Ra),mqe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,see),NFe),"High Degree Node Treatment"),"Makes room around high degree nodes to place leafs and trees."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,jge),NFe),"High Degree Node Threshold"),"Whether a node is considered to have a high degree."),Nt(16)),Zl),Ao),bn(Hn)))),bs(i,jge,see,!0),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Wge),NFe),"High Degree Node Maximum Tree Height"),"Maximum height of a subtree connected to a high degree node to be moved to separate layers."),Nt(5)),Zl),Ao),bn(Hn)))),bs(i,Wge,see,!0),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,ib),OFe),"Graph Wrapping Strategy"),"For certain graphs and certain prescribed drawing areas it may be desirable to split the laid out graph into chunks that are placed side by side. The edges that connect different chunks are 'wrapped' around from the end of one chunk to the start of the other chunk. The points between the chunks are referred to as 'cuts'."),CHe),Ra),GVe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,oee),OFe),"Additional Wrapped Edges Spacing"),"To visually separate edges that are wrapped from regularly routed edges an additional spacing value can be specified in form of this layout option. The spacing is added to the regular edgeNode spacing."),10),Fo),ws),bn(Hn)))),bs(i,oee,ib,San),bs(i,oee,ib,Tan),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,lee),OFe),"Correction Factor for Wrapping"),"At times and for certain types of graphs the executed wrapping may produce results that are consistently biased in the same fashion: either wrapping to often or to rarely. This factor can be used to correct the bias. Internally, it is simply multiplied with the 'aspect ratio' layout option."),1),Fo),ws),bn(Hn)))),bs(i,lee,ib,Aan),bs(i,lee,ib,kan),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,RM),EQt),"Cutting Strategy"),"The strategy by which the layer indexes are determined at which the layering crumbles into chunks."),THe),Ra),_qe),bn(Hn)))),bs(i,RM,ib,Dan),bs(i,RM,ib,Man),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,Kge),EQt),"Manually Specified Cuts"),"Allows the user to specify her own cuts for a certain graph."),op),_f),bn(Hn)))),bs(i,Kge,RM,Ian),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Xge),"wrapping.cutting.msd"),"MSD Freedom"),"The MSD cutting strategy starts with an initial guess on the number of chunks the graph should be split into. The freedom specifies how much the strategy may deviate from this guess. E.g. if an initial number of 3 is computed, a freedom of 1 allows 2, 3, and 4 cuts."),SHe),Zl),Ao),bn(Hn)))),bs(i,Xge,RM,Oan),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,cee),xQt),"Validification Strategy"),"When wrapping graphs, one can specify indices that are not allowed as split points. The validification strategy makes sure every computed split point is allowed."),AHe),Ra),zVe),bn(Hn)))),bs(i,cee,ib,jan),bs(i,cee,ib,Wan),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,uee),xQt),"Valid Indices for Wrapping"),null),op),_f),bn(Hn)))),bs(i,uee,ib,Han),bs(i,uee,ib,Van),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,hee),LFe),"Improve Cuts"),"For general graphs it is important that not too many edges wrap backwards. Thus a compromise between evenly-distributed cuts and the total number of cut edges is sought."),!0),Gs),rs),bn(Hn)))),bs(i,hee,ib,$an),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,dee),LFe),"Distance Penalty When Improving Cuts"),null),2),Fo),ws),bn(Hn)))),bs(i,dee,ib,Ban),bs(i,dee,hee,!0),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Qge),LFe),"Improve Wrapped Edges"),"The initial wrapping is performed in a very simple way. As a consequence, edges that wrap from one chunk to another may be unnecessarily long. Activating this option tries to shorten such edges."),!0),Gs),rs),bn(Hn)))),bs(i,Qge,ib,zan),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,SFe),nme),"Edge Label Side Selection"),"Method to decide on edge label sides."),hHe),Ra),Tqe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,TFe),nme),"Edge Center Label Placement Strategy"),"Determines in which layer center labels of long edges should be placed."),uHe),Ra),ZI),va(Hn,Te(xe(rm,1),wt,170,0,[Sy]))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,fee),IM),"Consider Model Order"),"Preserves the order of nodes and edges in the model file if this does not lead to additional edge crossings. Depending on the strategy this is not always possible since the node and edge order might be conflicting."),iHe),Ra),NVe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,CFe),IM),"Consider Port Order"),"If disabled the port order of output ports is derived from the edge order and input ports are ordered by their incoming connections. If enabled all ports are ordered by the port model order."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,AFe),IM),"No Model Order"),"Set on a node to not set a model order for this node even though it is a real node."),!1),Gs),rs),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Zge),IM),"Consider Model Order for Components"),"If set to NONE the usual ordering strategy (by cumulative node priority and size of nodes) is used. INSIDE_PORT_SIDES orders the components with external ports only inside the groups with the same port side. FORCE_MODEL_ORDER enforces the mode order on components. This option might produce bad alignments and sub optimal drawings in terms of used area since the ordering should be respected."),nHe),Ra),EGe),bn(Hn)))),bs(i,Zge,xM,null),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,kFe),IM),"Long Edge Ordering Strategy"),"Indicates whether long edges are sorted under, over, or equal to nodes that have no connection to a previous layer in a left-to-right or right-to-left layout. Under and over changes to right and left in a vertical layout."),rHe),Ra),EVe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Jge),IM),"Crossing Counter Node Order Influence"),"Indicates with what percentage (1 for 100%) violations of the node model order are weighted against the crossings e.g. a value of 0.5 means two model order violations are as important as on edge crossing. This allows some edge crossings in favor of preserving the model order. It is advised to set this value to a very small positive value (e.g. 0.001) to have minimal crossing and a optimal node order. Defaults to no influence (0)."),0),Fo),ws),bn(Hn)))),bs(i,Jge,fee,null),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,eme),IM),"Crossing Counter Port Order Influence"),"Indicates with what percentage (1 for 100%) violations of the port model order are weighted against the crossings e.g. a value of 0.5 means two model order violations are as important as on edge crossing. This allows some edge crossings in favor of preserving the model order. It is advised to set this value to a very small positive value (e.g. 0.001) to have minimal crossing and a optimal port order. Defaults to no influence (0)."),0),Fo),ws),bn(Hn)))),bs(i,eme,fee,null),UKt((new yTt,i))};var Vrn,Yrn,jrn,eHe,Wrn,tHe,Krn,nHe,Xrn,Qrn,Zrn,rHe,Jrn,ein,tin,iHe,nin,rin,iin,aHe,ain,sin,oin,sHe,lin,cin,uin,hin,din,fin,pin,gin,min,bin,oHe,yin,lHe,vin,cHe,_in,uHe,win,hHe,Ein,xin,Sin,dHe,Tin,fHe,Cin,pHe,Ain,kin,Rin,Iin,Nin,Oin,Lin,Din,Min,Pin,gHe,Bin,Fin,$in,Uin,zin,Gin,mHe,qin,Hin,Vin,Yin,jin,Win,Kin,bHe,Xin,yHe,Qin,Zin,Jin,vHe,ean,tan,_He,nan,ran,ian,aan,san,oan,lan,can,wHe,uan,han,dan,EHe,fan,xHe,pan,gan,man,ban,yan,van,_an,wan,Ean,xan,San,Tan,Can,Aan,kan,Ran,Ian,Nan,SHe,Oan,Lan,THe,Dan,Man,Pan,Ban,Fan,$an,Uan,zan,Gan,CHe,qan,Han,Van,Yan,AHe,jan,Wan;K(Mc,"LayeredMetaDataProvider",859),H(998,1,Hf,yTt),E.hf=function(i){UKt(i)};var fg,Uye,Qte,uP,Zte,kHe,Jte,j4,ene,RHe,IHe,tne,zye,nm,Gye,vx,NHe,Pq,qye,OHe,Kan,Xan,Qan,nne,Hye,hP,ow,Zan,Pd,LHe,DHe,rne,Vye,pg,ine,lb,MHe,PHe,BHe,Yye,jye,FHe,vy,Wye,$He,W4,UHe,zHe,GHe,ane,K4,lw,qHe,HHe,Nl,VHe,Jan,Lu,sne,YHe,jHe,WHe,h2,cw,one,KHe,XHe,lne,_x,QHe,Kye,dP,ZHe,wx,fP,cne,uw,Xye,sN,une,hw,JHe,eVe,tVe,oN,nVe,esn,tsn,nsn,rsn,Ex,X4,Qa,_y,isn,Q4,rVe,lN,iVe,Z4,asn,cN,aVe,T6,ssn,osn,Bq,Qye,sVe,Fq,O0,$5,U5,xx,dw,hne,J4,Zye,uN,hN,Sx,z5,Jye,$q,pP,gP,lsn,csn,usn,oVe,hsn,eve,lVe,cVe,uVe,hVe,tve,dVe,fVe,pVe,gVe,nve,dne;K(Mc,"LayeredOptions",998),H(999,1,{},swt),E.sf=function(){var i;return i=new s6t,i},E.tf=function(i){},K(Mc,"LayeredOptions/LayeredFactory",999),H(1391,1,{}),E.a=0;var dsn;K(mc,"ElkSpacings/AbstractSpacingsBuilder",1391),H(792,1391,{},PLe);var fne,fsn;K(Mc,"LayeredSpacings/LayeredSpacingsBuilder",792),H(265,22,{3:1,34:1,22:1,265:1,188:1,196:1},AT),E.dg=function(){return tjt(this)},E.qg=function(){return tjt(this)};var dN,rve,fN,mVe,bVe,yVe,pne,ive,vVe,_Ve=$r(Mc,"LayeringStrategy",265,jr,omr,dcr),psn;H(390,22,{3:1,34:1,22:1,390:1},phe);var ave,wVe,gne,EVe=$r(Mc,"LongEdgeOrderingStrategy",390,jr,f0r,fcr),gsn;H(203,22,{3:1,34:1,22:1,203:1},aX);var G5,q5,mne,sve,ove=$r(Mc,"NodeFlexibility",203,jr,E1r,pcr),msn;H(323,22,{3:1,34:1,22:1,323:1,188:1,196:1},TU),E.dg=function(){return VVt(this)},E.qg=function(){return VVt(this)};var mP,lve,cve,bP,xVe,SVe=$r(Mc,"NodePlacementStrategy",323,jr,fpr,gcr),bsn;H(243,22,{3:1,34:1,22:1,243:1},qS);var TVe,Tx,e3,Uq,CVe,AVe,zq,kVe,bne,yne,RVe=$r(Mc,"NodePromotionStrategy",243,jr,Omr,mcr),ysn;H(284,22,{3:1,34:1,22:1,284:1},sX);var IVe,wy,uve,hve,NVe=$r(Mc,"OrderingStrategy",284,jr,x1r,bcr),vsn;H(430,22,{3:1,34:1,22:1,430:1},qRe);var dve,fve,OVe=$r(Mc,"PortSortingStrategy",430,jr,gfr,ycr),_sn;H(463,22,{3:1,34:1,22:1,463:1},ghe);var Rh,_u,yP,wsn=$r(Mc,"PortType",463,jr,p0r,vcr),Esn;H(387,22,{3:1,34:1,22:1,387:1},mhe);var LVe,pve,DVe,MVe=$r(Mc,"SelfLoopDistributionStrategy",387,jr,g0r,_cr),xsn;H(349,22,{3:1,34:1,22:1,349:1},bhe);var gve,Gq,mve,PVe=$r(Mc,"SelfLoopOrderingStrategy",349,jr,m0r,wcr),Ssn;H(312,1,{312:1},BWt),K(Mc,"Spacings",312),H(350,22,{3:1,34:1,22:1,350:1},yhe);var bve,BVe,vP,FVe=$r(Mc,"SplineRoutingMode",350,jr,b0r,Ecr),Tsn;H(352,22,{3:1,34:1,22:1,352:1},vhe);var yve,$Ve,UVe,zVe=$r(Mc,"ValidifyStrategy",352,jr,y0r,xcr),Csn;H(388,22,{3:1,34:1,22:1,388:1},_he);var t3,vve,pN,GVe=$r(Mc,"WrappingStrategy",388,jr,v0r,Scr),Asn;H(1398,1,hl,cTt),E.rg=function(i){return v(i,36),ksn},E.Kf=function(i,l){n6r(this,v(i,36),l)};var ksn;K(yee,"DepthFirstCycleBreaker",1398),H(793,1,hl,nNe),E.rg=function(i){return v(i,36),Rsn},E.Kf=function(i,l){s8r(this,v(i,36),l)},E.sg=function(i){return v(Yt(i,KZ(this.d,i.c.length)),10)};var Rsn;K(yee,"GreedyCycleBreaker",793),H(1401,793,hl,nIt),E.sg=function(i){var l,d,g,y;for(y=null,l=qi,g=new me(i);g.a1&&(Vt(Ht(oe(So(($n(0,i.c.length),v(i.c[0],10))),(qt(),vx))))?iYt(i,this.d,v(this,669)):(Fn(),us(i,this.d)),aUt(this.e,i))},E.lg=function(i,l,d,g){var y,x,T,R,O,D,q;for(l!=E9t(d,i.length)&&(x=i[l-(d?1:-1)],NOe(this.f,x,d?(ll(),_u):(ll(),Rh))),y=i[l][0],q=!g||y.k==(lr(),hs),D=H1(i[l]),this.vg(D,q,!1,d),T=0,O=new me(D);O.a"),i0?efe(this.a,i[l-1],i[l]):!d&&l1&&(Vt(Ht(oe(So(($n(0,i.c.length),v(i.c[0],10))),(qt(),vx))))?iYt(i,this.d,this):(Fn(),us(i,this.d)),Vt(Ht(oe(So(($n(0,i.c.length),v(i.c[0],10))),vx)))||aUt(this.e,i))},K(ph,"ModelOrderBarycenterHeuristic",669),H(1866,1,ui,aAt),E.Ne=function(i,l){return nSr(this.a,v(i,10),v(l,10))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(ph,"ModelOrderBarycenterHeuristic/lambda$0$Type",1866),H(1423,1,hl,_Tt),E.rg=function(i){var l;return v(i,36),l=EX(Vsn),yi(l,(Mo(),qc),(qo(),Ate)),l},E.Kf=function(i,l){$dr((v(i,36),l))};var Vsn;K(ph,"NoCrossingMinimizer",1423),H(809,413,p$e,dRe),E.tg=function(i,l,d){var g,y,x,T,R,O,D,q,J,re,ae;switch(J=this.g,d.g){case 1:{for(y=0,x=0,q=new me(i.j);q.a1&&(y.j==(Bt(),gr)?this.b[i]=!0:y.j==cr&&i>0&&(this.b[i-1]=!0))},E.f=0,K(Zg,"AllCrossingsCounter",1861),H(595,1,{},fZ),E.b=0,E.d=0,K(Zg,"BinaryIndexedTree",595),H(532,1,{},YU);var VVe,_ne;K(Zg,"CrossingsCounter",532),H(1950,1,ui,sAt),E.Ne=function(i,l){return hhr(this.a,v(i,12),v(l,12))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Zg,"CrossingsCounter/lambda$0$Type",1950),H(1951,1,ui,oAt),E.Ne=function(i,l){return dhr(this.a,v(i,12),v(l,12))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Zg,"CrossingsCounter/lambda$1$Type",1951),H(1952,1,ui,lAt),E.Ne=function(i,l){return fhr(this.a,v(i,12),v(l,12))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Zg,"CrossingsCounter/lambda$2$Type",1952),H(1953,1,ui,cAt),E.Ne=function(i,l){return phr(this.a,v(i,12),v(l,12))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(Zg,"CrossingsCounter/lambda$3$Type",1953),H(1954,1,vr,uAt),E.Cd=function(i){pgr(this.a,v(i,12))},K(Zg,"CrossingsCounter/lambda$4$Type",1954),H(1955,1,si,hAt),E.Mb=function(i){return Far(this.a,v(i,12))},K(Zg,"CrossingsCounter/lambda$5$Type",1955),H(1956,1,vr,dAt),E.Cd=function(i){j8t(this,i)},K(Zg,"CrossingsCounter/lambda$6$Type",1956),H(1957,1,vr,i8t),E.Cd=function(i){var l;r8(),Fv(this.b,(l=this.a,v(i,12),l))},K(Zg,"CrossingsCounter/lambda$7$Type",1957),H(839,1,ig,z6e),E.Lb=function(i){return r8(),ya(v(i,12),(At(),kh))},E.Fb=function(i){return this===i},E.Mb=function(i){return r8(),ya(v(i,12),(At(),kh))},K(Zg,"CrossingsCounter/lambda$8$Type",839),H(1949,1,{},fAt),K(Zg,"HyperedgeCrossingsCounter",1949),H(478,1,{34:1,478:1},oOt),E.Fd=function(i){return f2r(this,v(i,478))},E.b=0,E.c=0,E.e=0,E.f=0;var j8r=K(Zg,"HyperedgeCrossingsCounter/Hyperedge",478);H(374,1,{34:1,374:1},pQ),E.Fd=function(i){return A3r(this,v(i,374))},E.b=0,E.c=0;var Ysn=K(Zg,"HyperedgeCrossingsCounter/HyperedgeCorner",374);H(531,22,{3:1,34:1,22:1,531:1},HRe);var wP,EP,jsn=$r(Zg,"HyperedgeCrossingsCounter/HyperedgeCorner/Type",531,jr,mfr,Ccr),Wsn;H(1425,1,hl,wTt),E.rg=function(i){return v(oe(v(i,36),(At(),au)),21).Hc((cl(),wf))?Ksn:null},E.Kf=function(i,l){Fwr(this,v(i,36),l)};var Ksn;K(dl,"InteractiveNodePlacer",1425),H(1426,1,hl,ETt),E.rg=function(i){return v(oe(v(i,36),(At(),au)),21).Hc((cl(),wf))?Xsn:null},E.Kf=function(i,l){E_r(this,v(i,36),l)};var Xsn,wne,Ene;K(dl,"LinearSegmentsNodePlacer",1426),H(261,1,{34:1,261:1},U7e),E.Fd=function(i){return Kir(this,v(i,261))},E.Fb=function(i){var l;return $e(i,261)?(l=v(i,261),this.b==l.b):!1},E.Hb=function(){return this.b},E.Ib=function(){return"ls"+Wv(this.e)},E.a=0,E.b=0,E.c=-1,E.d=-1,E.g=0;var Qsn=K(dl,"LinearSegmentsNodePlacer/LinearSegment",261);H(1428,1,hl,O9t),E.rg=function(i){return v(oe(v(i,36),(At(),au)),21).Hc((cl(),wf))?Zsn:null},E.Kf=function(i,l){QRr(this,v(i,36),l)},E.b=0,E.g=0;var Zsn;K(dl,"NetworkSimplexPlacer",1428),H(1447,1,ui,mwt),E.Ne=function(i,l){return Nc(v(i,17).a,v(l,17).a)},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dl,"NetworkSimplexPlacer/0methodref$compare$Type",1447),H(1449,1,ui,bwt),E.Ne=function(i,l){return Nc(v(i,17).a,v(l,17).a)},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(dl,"NetworkSimplexPlacer/1methodref$compare$Type",1449),H(655,1,{655:1},a8t);var W8r=K(dl,"NetworkSimplexPlacer/EdgeRep",655);H(412,1,{412:1},PNe),E.b=!1;var K8r=K(dl,"NetworkSimplexPlacer/NodeRep",412);H(515,13,{3:1,4:1,20:1,31:1,56:1,13:1,16:1,15:1,59:1,515:1},g6t),K(dl,"NetworkSimplexPlacer/Path",515),H(1429,1,{},ywt),E.Kb=function(i){return v(i,18).d.i.k},K(dl,"NetworkSimplexPlacer/Path/lambda$0$Type",1429),H(1430,1,si,vwt),E.Mb=function(i){return v(i,273)==(lr(),Ws)},K(dl,"NetworkSimplexPlacer/Path/lambda$1$Type",1430),H(1431,1,{},_wt),E.Kb=function(i){return v(i,18).d.i},K(dl,"NetworkSimplexPlacer/Path/lambda$2$Type",1431),H(1432,1,si,pAt),E.Mb=function(i){return VNt(Wzt(v(i,10)))},K(dl,"NetworkSimplexPlacer/Path/lambda$3$Type",1432),H(1433,1,si,wwt),E.Mb=function(i){return Kur(v(i,12))},K(dl,"NetworkSimplexPlacer/lambda$0$Type",1433),H(1434,1,vr,s8t),E.Cd=function(i){Rsr(this.a,this.b,v(i,12))},K(dl,"NetworkSimplexPlacer/lambda$1$Type",1434),H(1443,1,vr,gAt),E.Cd=function(i){n4r(this.a,v(i,18))},K(dl,"NetworkSimplexPlacer/lambda$10$Type",1443),H(1444,1,{},Ewt),E.Kb=function(i){return Sd(),new xn(null,new Nn(v(i,30).a,16))},K(dl,"NetworkSimplexPlacer/lambda$11$Type",1444),H(1445,1,vr,mAt),E.Cd=function(i){X5r(this.a,v(i,10))},K(dl,"NetworkSimplexPlacer/lambda$12$Type",1445),H(1446,1,{},xwt),E.Kb=function(i){return Sd(),Nt(v(i,125).e)},K(dl,"NetworkSimplexPlacer/lambda$13$Type",1446),H(1448,1,{},Swt),E.Kb=function(i){return Sd(),Nt(v(i,125).e)},K(dl,"NetworkSimplexPlacer/lambda$15$Type",1448),H(1450,1,si,Twt),E.Mb=function(i){return Sd(),v(i,412).c.k==(lr(),is)},K(dl,"NetworkSimplexPlacer/lambda$17$Type",1450),H(1451,1,si,Cwt),E.Mb=function(i){return Sd(),v(i,412).c.j.c.length>1},K(dl,"NetworkSimplexPlacer/lambda$18$Type",1451),H(1452,1,vr,ULt),E.Cd=function(i){Mvr(this.c,this.b,this.d,this.a,v(i,412))},E.c=0,E.d=0,K(dl,"NetworkSimplexPlacer/lambda$19$Type",1452),H(1435,1,{},Awt),E.Kb=function(i){return Sd(),new xn(null,new Nn(v(i,30).a,16))},K(dl,"NetworkSimplexPlacer/lambda$2$Type",1435),H(1453,1,vr,bAt),E.Cd=function(i){Nsr(this.a,v(i,12))},E.a=0,K(dl,"NetworkSimplexPlacer/lambda$20$Type",1453),H(1454,1,{},kwt),E.Kb=function(i){return Sd(),new xn(null,new Nn(v(i,30).a,16))},K(dl,"NetworkSimplexPlacer/lambda$21$Type",1454),H(1455,1,vr,yAt),E.Cd=function(i){qsr(this.a,v(i,10))},K(dl,"NetworkSimplexPlacer/lambda$22$Type",1455),H(1456,1,si,Rwt),E.Mb=function(i){return VNt(i)},K(dl,"NetworkSimplexPlacer/lambda$23$Type",1456),H(1457,1,{},Iwt),E.Kb=function(i){return Sd(),new xn(null,new Nn(v(i,30).a,16))},K(dl,"NetworkSimplexPlacer/lambda$24$Type",1457),H(1458,1,si,vAt),E.Mb=function(i){return Zar(this.a,v(i,10))},K(dl,"NetworkSimplexPlacer/lambda$25$Type",1458),H(1459,1,vr,o8t),E.Cd=function(i){sSr(this.a,this.b,v(i,10))},K(dl,"NetworkSimplexPlacer/lambda$26$Type",1459),H(1460,1,si,Nwt),E.Mb=function(i){return Sd(),!Jo(v(i,18))},K(dl,"NetworkSimplexPlacer/lambda$27$Type",1460),H(1461,1,si,Owt),E.Mb=function(i){return Sd(),!Jo(v(i,18))},K(dl,"NetworkSimplexPlacer/lambda$28$Type",1461),H(1462,1,{},_At),E.Ve=function(i,l){return Isr(this.a,v(i,30),v(l,30))},K(dl,"NetworkSimplexPlacer/lambda$29$Type",1462),H(1436,1,{},Lwt),E.Kb=function(i){return Sd(),new xn(null,new TE(new yr(_r(os(v(i,10)).a.Kc(),new S))))},K(dl,"NetworkSimplexPlacer/lambda$3$Type",1436),H(1437,1,si,Dwt),E.Mb=function(i){return Sd(),o1r(v(i,18))},K(dl,"NetworkSimplexPlacer/lambda$4$Type",1437),H(1438,1,vr,wAt),E.Cd=function(i){akr(this.a,v(i,18))},K(dl,"NetworkSimplexPlacer/lambda$5$Type",1438),H(1439,1,{},Mwt),E.Kb=function(i){return Sd(),new xn(null,new Nn(v(i,30).a,16))},K(dl,"NetworkSimplexPlacer/lambda$6$Type",1439),H(1440,1,si,Pwt),E.Mb=function(i){return Sd(),v(i,10).k==(lr(),is)},K(dl,"NetworkSimplexPlacer/lambda$7$Type",1440),H(1441,1,{},Bwt),E.Kb=function(i){return Sd(),new xn(null,new TE(new yr(_r(Qm(v(i,10)).a.Kc(),new S))))},K(dl,"NetworkSimplexPlacer/lambda$8$Type",1441),H(1442,1,si,Fwt),E.Mb=function(i){return Sd(),Wur(v(i,18))},K(dl,"NetworkSimplexPlacer/lambda$9$Type",1442),H(1424,1,hl,xTt),E.rg=function(i){return v(oe(v(i,36),(At(),au)),21).Hc((cl(),wf))?Jsn:null},E.Kf=function(i,l){$kr(v(i,36),l)};var Jsn;K(dl,"SimpleNodePlacer",1424),H(185,1,{185:1},c5),E.Ib=function(){var i;return i="",this.c==(Kp(),Cx)?i+=i6:this.c==Ey&&(i+=r6),this.o==(G1(),fw)?i+=cge:this.o==sp?i+="UP":i+="BALANCED",i},K(n2,"BKAlignedLayout",185),H(523,22,{3:1,34:1,22:1,523:1},VRe);var Ey,Cx,eon=$r(n2,"BKAlignedLayout/HDirection",523,jr,yfr,Acr),ton;H(522,22,{3:1,34:1,22:1,522:1},YRe);var fw,sp,non=$r(n2,"BKAlignedLayout/VDirection",522,jr,vfr,kcr),ron;H(1699,1,{},l8t),K(n2,"BKAligner",1699),H(1702,1,{},vqt),K(n2,"BKCompactor",1702),H(663,1,{663:1},$wt),E.a=0,K(n2,"BKCompactor/ClassEdge",663),H(467,1,{467:1},d6t),E.a=null,E.b=0,K(n2,"BKCompactor/ClassNode",467),H(1427,1,hl,d8t),E.rg=function(i){return v(oe(v(i,36),(At(),au)),21).Hc((cl(),wf))?ion:null},E.Kf=function(i,l){g8r(this,v(i,36),l)},E.d=!1;var ion;K(n2,"BKNodePlacer",1427),H(1700,1,{},Uwt),E.d=0,K(n2,"NeighborhoodInformation",1700),H(1701,1,ui,EAt),E.Ne=function(i,l){return qgr(this,v(i,42),v(l,42))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(n2,"NeighborhoodInformation/NeighborComparator",1701),H(823,1,{}),K(n2,"ThresholdStrategy",823),H(1825,823,{},f6t),E.wg=function(i,l,d){return this.a.o==(G1(),sp)?ka:Ss},E.xg=function(){},K(n2,"ThresholdStrategy/NullThresholdStrategy",1825),H(587,1,{587:1},f8t),E.c=!1,E.d=!1,K(n2,"ThresholdStrategy/Postprocessable",587),H(1826,823,{},p6t),E.wg=function(i,l,d){var g,y,x;return y=l==d,g=this.a.a[d.p]==l,y||g?(x=i,this.a.c==(Kp(),Cx)?(y&&(x=lpe(this,l,!0)),!isNaN(x)&&!isFinite(x)&&g&&(x=lpe(this,d,!1))):(y&&(x=lpe(this,l,!0)),!isNaN(x)&&!isFinite(x)&&g&&(x=lpe(this,d,!1))),x):i},E.xg=function(){for(var i,l,d,g,y;this.d.b!=0;)y=v(Dfr(this.d),587),g=Vjt(this,y),g.a&&(i=g.a,d=Vt(this.a.f[this.a.g[y.b.p].p]),!(!d&&!Jo(i)&&i.c.i.c==i.d.i.c)&&(l=XVt(this,y),l||tsr(this.e,y)));for(;this.e.a.c.length!=0;)XVt(this,v(QUt(this.e),587))},K(n2,"ThresholdStrategy/SimpleThresholdStrategy",1826),H(645,1,{645:1,188:1,196:1},zwt),E.dg=function(){return sUt(this)},E.qg=function(){return sUt(this)};var _ve;K(ome,"EdgeRouterFactory",645),H(1485,1,hl,STt),E.rg=function(i){return C5r(v(i,36))},E.Kf=function(i,l){Vkr(v(i,36),l)};var aon,son,oon,lon,con,YVe,uon,hon;K(ome,"OrthogonalEdgeRouter",1485),H(1478,1,hl,h8t),E.rg=function(i){return Wwr(v(i,36))},E.Kf=function(i,l){gRr(this,v(i,36),l)};var don,fon,pon,gon,Hq,mon;K(ome,"PolylineEdgeRouter",1478),H(1479,1,ig,qwt),E.Lb=function(i){return L9e(v(i,10))},E.Fb=function(i){return this===i},E.Mb=function(i){return L9e(v(i,10))},K(ome,"PolylineEdgeRouter/1",1479),H(1872,1,si,Hwt),E.Mb=function(i){return v(i,132).c==(o1(),d2)},K(f1,"HyperEdgeCycleDetector/lambda$0$Type",1872),H(1873,1,{},Vwt),E.Ze=function(i){return v(i,132).d},K(f1,"HyperEdgeCycleDetector/lambda$1$Type",1873),H(1874,1,si,Ywt),E.Mb=function(i){return v(i,132).c==(o1(),d2)},K(f1,"HyperEdgeCycleDetector/lambda$2$Type",1874),H(1875,1,{},jwt),E.Ze=function(i){return v(i,132).d},K(f1,"HyperEdgeCycleDetector/lambda$3$Type",1875),H(1876,1,{},Wwt),E.Ze=function(i){return v(i,132).d},K(f1,"HyperEdgeCycleDetector/lambda$4$Type",1876),H(1877,1,{},Gwt),E.Ze=function(i){return v(i,132).d},K(f1,"HyperEdgeCycleDetector/lambda$5$Type",1877),H(118,1,{34:1,118:1},Mz),E.Fd=function(i){return Xir(this,v(i,118))},E.Fb=function(i){var l;return $e(i,118)?(l=v(i,118),this.g==l.g):!1},E.Hb=function(){return this.g},E.Ib=function(){var i,l,d,g;for(i=new Ed("{"),g=new me(this.n);g.a"+this.b+" ("+bor(this.c)+")"},E.d=0,K(f1,"HyperEdgeSegmentDependency",132),H(528,22,{3:1,34:1,22:1,528:1},jRe);var d2,n3,bon=$r(f1,"HyperEdgeSegmentDependency/DependencyType",528,jr,_fr,Rcr),yon;H(1878,1,{},xAt),K(f1,"HyperEdgeSegmentSplitter",1878),H(1879,1,{},g7t),E.a=0,E.b=0,K(f1,"HyperEdgeSegmentSplitter/AreaRating",1879),H(339,1,{339:1},lde),E.a=0,E.b=0,E.c=0,K(f1,"HyperEdgeSegmentSplitter/FreeArea",339),H(1880,1,ui,Kwt),E.Ne=function(i,l){return blr(v(i,118),v(l,118))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(f1,"HyperEdgeSegmentSplitter/lambda$0$Type",1880),H(1881,1,vr,zLt),E.Cd=function(i){V1r(this.a,this.d,this.c,this.b,v(i,118))},E.b=0,K(f1,"HyperEdgeSegmentSplitter/lambda$1$Type",1881),H(1882,1,{},Xwt),E.Kb=function(i){return new xn(null,new Nn(v(i,118).e,16))},K(f1,"HyperEdgeSegmentSplitter/lambda$2$Type",1882),H(1883,1,{},Qwt),E.Kb=function(i){return new xn(null,new Nn(v(i,118).j,16))},K(f1,"HyperEdgeSegmentSplitter/lambda$3$Type",1883),H(1884,1,{},Zwt),E.Ye=function(i){return We(at(i))},K(f1,"HyperEdgeSegmentSplitter/lambda$4$Type",1884),H(664,1,{},Lde),E.a=0,E.b=0,E.c=0,K(f1,"OrthogonalRoutingGenerator",664),H(1703,1,{},Jwt),E.Kb=function(i){return new xn(null,new Nn(v(i,118).e,16))},K(f1,"OrthogonalRoutingGenerator/lambda$0$Type",1703),H(1704,1,{},eEt),E.Kb=function(i){return new xn(null,new Nn(v(i,118).j,16))},K(f1,"OrthogonalRoutingGenerator/lambda$1$Type",1704),H(670,1,{}),K(lme,"BaseRoutingDirectionStrategy",670),H(1870,670,{},y6t),E.yg=function(i,l,d){var g,y,x,T,R,O,D,q,J,re,ae,le,de;if(!(i.r&&!i.q))for(q=l+i.o*d,D=new me(i.n);D.asg&&(x=q,y=i,g=new Ct(J,x),pi(T.a,g),QE(this,T,y,g,!1),re=i.r,re&&(ae=We(at(gf(re.e,0))),g=new Ct(ae,x),pi(T.a,g),QE(this,T,y,g,!1),x=l+re.o*d,y=re,g=new Ct(ae,x),pi(T.a,g),QE(this,T,y,g,!1)),g=new Ct(de,x),pi(T.a,g),QE(this,T,y,g,!1)))},E.zg=function(i){return i.i.n.a+i.n.a+i.a.a},E.Ag=function(){return Bt(),Mr},E.Bg=function(){return Bt(),or},K(lme,"NorthToSouthRoutingStrategy",1870),H(1871,670,{},v6t),E.yg=function(i,l,d){var g,y,x,T,R,O,D,q,J,re,ae,le,de;if(!(i.r&&!i.q))for(q=l-i.o*d,D=new me(i.n);D.asg&&(x=q,y=i,g=new Ct(J,x),pi(T.a,g),QE(this,T,y,g,!1),re=i.r,re&&(ae=We(at(gf(re.e,0))),g=new Ct(ae,x),pi(T.a,g),QE(this,T,y,g,!1),x=l-re.o*d,y=re,g=new Ct(ae,x),pi(T.a,g),QE(this,T,y,g,!1)),g=new Ct(de,x),pi(T.a,g),QE(this,T,y,g,!1)))},E.zg=function(i){return i.i.n.a+i.n.a+i.a.a},E.Ag=function(){return Bt(),or},E.Bg=function(){return Bt(),Mr},K(lme,"SouthToNorthRoutingStrategy",1871),H(1869,670,{},_6t),E.yg=function(i,l,d){var g,y,x,T,R,O,D,q,J,re,ae,le,de;if(!(i.r&&!i.q))for(q=l+i.o*d,D=new me(i.n);D.asg&&(x=q,y=i,g=new Ct(x,J),pi(T.a,g),QE(this,T,y,g,!0),re=i.r,re&&(ae=We(at(gf(re.e,0))),g=new Ct(x,ae),pi(T.a,g),QE(this,T,y,g,!0),x=l+re.o*d,y=re,g=new Ct(x,ae),pi(T.a,g),QE(this,T,y,g,!0)),g=new Ct(x,de),pi(T.a,g),QE(this,T,y,g,!0)))},E.zg=function(i){return i.i.n.b+i.n.b+i.a.b},E.Ag=function(){return Bt(),gr},E.Bg=function(){return Bt(),cr},K(lme,"WestToEastRoutingStrategy",1869),H(828,1,{},NPe),E.Ib=function(){return Wv(this.a)},E.b=0,E.c=!1,E.d=!1,E.f=0,K(O4,"NubSpline",828),H(418,1,{418:1},RYt,vDt),K(O4,"NubSpline/PolarCP",418),H(1480,1,hl,hqt),E.rg=function(i){return BEr(v(i,36))},E.Kf=function(i,l){DRr(this,v(i,36),l)};var von,_on,won,Eon,xon;K(O4,"SplineEdgeRouter",1480),H(274,1,{274:1},BQ),E.Ib=function(){return this.a+" ->("+this.c+") "+this.b},E.c=0,K(O4,"SplineEdgeRouter/Dependency",274),H(465,22,{3:1,34:1,22:1,465:1},WRe);var f2,H5,Son=$r(O4,"SplineEdgeRouter/SideToProcess",465,jr,Cfr,Icr),Ton;H(1481,1,si,tEt),E.Mb=function(i){return aM(),!v(i,131).o},K(O4,"SplineEdgeRouter/lambda$0$Type",1481),H(1482,1,{},nEt),E.Ze=function(i){return aM(),v(i,131).v+1},K(O4,"SplineEdgeRouter/lambda$1$Type",1482),H(1483,1,vr,p8t),E.Cd=function(i){Zur(this.a,this.b,v(i,42))},K(O4,"SplineEdgeRouter/lambda$2$Type",1483),H(1484,1,vr,g8t),E.Cd=function(i){Jur(this.a,this.b,v(i,42))},K(O4,"SplineEdgeRouter/lambda$3$Type",1484),H(131,1,{34:1,131:1},qHt,BPe),E.Fd=function(i){return Jir(this,v(i,131))},E.b=0,E.e=!1,E.f=0,E.g=0,E.j=!1,E.k=!1,E.n=0,E.o=!1,E.p=!1,E.q=!1,E.s=0,E.u=0,E.v=0,E.F=0,K(O4,"SplineSegment",131),H(468,1,{468:1},rEt),E.a=0,E.b=!1,E.c=!1,E.d=!1,E.e=!1,E.f=0,K(O4,"SplineSegment/EdgeInformation",468),H(1198,1,{},iEt),K(sb,DBe,1198),H(1199,1,ui,aEt),E.Ne=function(i,l){return v4r(v(i,121),v(l,121))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(sb,$Xt,1199),H(1197,1,{},N7t),K(sb,"MrTree",1197),H(405,22,{3:1,34:1,22:1,405:1,188:1,196:1},oX),E.dg=function(){return uVt(this)},E.qg=function(){return uVt(this)};var xne,xP,SP,TP,jVe=$r(sb,"TreeLayoutPhases",405,jr,k1r,Ncr),Con;H(1112,205,K_,aOt),E.rf=function(i,l){var d,g,y,x,T,R,O,D;for(Vt(Ht(Et(i,(pc(),yYe))))||oz((d=new dL((fE(),new aE(i))),d)),T=l.eh(hme),T.Ug("build tGraph",1),R=(O=new mz,Ul(O,i),_t(O,(fa(),AP),i),D=new Br,hAr(i,O,D),IAr(i,O,D),O),T.Vg(),T=l.eh(hme),T.Ug("Split graph",1),x=bAr(this.a,R),T.Vg(),y=new me(x);y.a"+I_(this.c):"e_"+ma(this)},K(NM,"TEdge",65),H(121,137,{3:1,121:1,96:1,137:1},mz),E.Ib=function(){var i,l,d,g,y;for(y=null,g=Ur(this.b,0);g.b!=g.d.c;)d=v(Fr(g),40),y+=(d.c==null||d.c.length==0?"n_"+d.g:"n_"+d.c)+` +`;for(l=Ur(this.a,0);l.b!=l.d.c;)i=v(Fr(l),65),y+=(i.b&&i.c?I_(i.b)+"->"+I_(i.c):"e_"+ma(i))+` +`;return y};var X8r=K(NM,"TGraph",121);H(643,508,{3:1,508:1,643:1,96:1,137:1}),K(NM,"TShape",643),H(40,643,{3:1,508:1,40:1,643:1,96:1,137:1},h0e),E.Ib=function(){return I_(this)};var Sne=K(NM,"TNode",40);H(236,1,jg,Mm),E.Jc=function(i){To(this,i)},E.Kc=function(){var i;return i=Ur(this.a.d,0),new xT(i)},K(NM,"TNode/2",236),H(329,1,io,xT),E.Nb=function(i){xo(this,i)},E.Pb=function(){return v(Fr(this.a),65).c},E.Ob=function(){return hU(this.a)},E.Qb=function(){$fe(this.a)},K(NM,"TNode/2/1",329),H(1923,1,ba,dEt),E.Kf=function(i,l){u8r(this,v(i,121),l)},K(nu,"CompactionProcessor",1923),H(1924,1,ui,kAt),E.Ne=function(i,l){return Qmr(this.a,v(i,40),v(l,40))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(nu,"CompactionProcessor/lambda$0$Type",1924),H(1925,1,si,b8t),E.Mb=function(i){return rfr(this.b,this.a,v(i,42))},E.a=0,E.b=0,K(nu,"CompactionProcessor/lambda$1$Type",1925),H(1934,1,ui,fEt),E.Ne=function(i,l){return Whr(v(i,40),v(l,40))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(nu,"CompactionProcessor/lambda$10$Type",1934),H(1935,1,ui,pEt),E.Ne=function(i,l){return oor(v(i,40),v(l,40))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(nu,"CompactionProcessor/lambda$11$Type",1935),H(1936,1,ui,gEt),E.Ne=function(i,l){return Khr(v(i,40),v(l,40))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(nu,"CompactionProcessor/lambda$12$Type",1936),H(1926,1,si,RAt),E.Mb=function(i){return Hsr(this.a,v(i,42))},E.a=0,K(nu,"CompactionProcessor/lambda$2$Type",1926),H(1927,1,si,IAt),E.Mb=function(i){return Vsr(this.a,v(i,42))},E.a=0,K(nu,"CompactionProcessor/lambda$3$Type",1927),H(1928,1,si,mEt),E.Mb=function(i){return v(i,40).c.indexOf(_ee)==-1},K(nu,"CompactionProcessor/lambda$4$Type",1928),H(1929,1,{},NAt),E.Kb=function(i){return a1r(this.a,v(i,40))},E.a=0,K(nu,"CompactionProcessor/lambda$5$Type",1929),H(1930,1,{},OAt),E.Kb=function(i){return fgr(this.a,v(i,40))},E.a=0,K(nu,"CompactionProcessor/lambda$6$Type",1930),H(1931,1,ui,LAt),E.Ne=function(i,l){return Spr(this.a,v(i,240),v(l,240))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(nu,"CompactionProcessor/lambda$7$Type",1931),H(1932,1,ui,DAt),E.Ne=function(i,l){return Tpr(this.a,v(i,40),v(l,40))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(nu,"CompactionProcessor/lambda$8$Type",1932),H(1933,1,ui,bEt),E.Ne=function(i,l){return lor(v(i,40),v(l,40))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(nu,"CompactionProcessor/lambda$9$Type",1933),H(1921,1,ba,yEt),E.Kf=function(i,l){sCr(v(i,121),l)},K(nu,"DirectionProcessor",1921),H(1913,1,ba,iOt),E.Kf=function(i,l){kAr(this,v(i,121),l)},K(nu,"FanProcessor",1913),H(1937,1,ba,vEt),E.Kf=function(i,l){W5r(v(i,121),l)},K(nu,"GraphBoundsProcessor",1937),H(1938,1,{},_Et),E.Ye=function(i){return v(i,40).e.a},K(nu,"GraphBoundsProcessor/lambda$0$Type",1938),H(1939,1,{},wEt),E.Ye=function(i){return v(i,40).e.b},K(nu,"GraphBoundsProcessor/lambda$1$Type",1939),H(1940,1,{},EEt),E.Ye=function(i){return Aar(v(i,40))},K(nu,"GraphBoundsProcessor/lambda$2$Type",1940),H(1941,1,{},xEt),E.Ye=function(i){return Car(v(i,40))},K(nu,"GraphBoundsProcessor/lambda$3$Type",1941),H(262,22,{3:1,34:1,22:1,262:1,196:1},pE),E.dg=function(){switch(this.g){case 0:return new D6t;case 1:return new iOt;case 2:return new L6t;case 3:return new kEt;case 4:return new TEt;case 8:return new SEt;case 5:return new yEt;case 6:return new IEt;case 7:return new dEt;case 9:return new vEt;case 10:return new NEt;default:throw _e(new ar(Age+(this.f!=null?this.f:""+this.g)))}};var WVe,KVe,XVe,QVe,ZVe,JVe,eYe,tYe,nYe,rYe,wve,Q8r=$r(nu,kge,262,jr,Z$t,Ocr),Aon;H(1920,1,ba,SEt),E.Kf=function(i,l){oRr(v(i,121),l)},K(nu,"LevelCoordinatesProcessor",1920),H(1918,1,ba,TEt),E.Kf=function(i,l){kTr(this,v(i,121),l)},E.a=0,K(nu,"LevelHeightProcessor",1918),H(1919,1,jg,CEt),E.Jc=function(i){To(this,i)},E.Kc=function(){return Fn(),WR(),YI},K(nu,"LevelHeightProcessor/1",1919),H(1914,1,ba,L6t),E.Kf=function(i,l){G5r(this,v(i,121),l)},K(nu,"LevelProcessor",1914),H(1915,1,si,AEt),E.Mb=function(i){return Vt(Ht(oe(v(i,40),(fa(),p2))))},K(nu,"LevelProcessor/lambda$0$Type",1915),H(1916,1,ba,kEt),E.Kf=function(i,l){TSr(this,v(i,121),l)},E.a=0,K(nu,"NeighborsProcessor",1916),H(1917,1,jg,REt),E.Jc=function(i){To(this,i)},E.Kc=function(){return Fn(),WR(),YI},K(nu,"NeighborsProcessor/1",1917),H(1922,1,ba,IEt),E.Kf=function(i,l){AAr(this,v(i,121),l)},E.a=0,K(nu,"NodePositionProcessor",1922),H(1912,1,ba,D6t),E.Kf=function(i,l){c6r(this,v(i,121),l)},K(nu,"RootProcessor",1912),H(1942,1,ba,NEt),E.Kf=function(i,l){a_r(v(i,121),l)},K(nu,"Untreeifyer",1942),H(392,22,{3:1,34:1,22:1,392:1},xhe);var Vq,Eve,iYe,aYe=$r(rq,"EdgeRoutingMode",392,jr,w0r,Lcr),kon,Yq,gN,xve,sYe,oYe,Sve,Tve,lYe,Cve,cYe,Ave,CP,kve,Tne,Cne,L0,b1,mN,AP,kP,xy,uYe,Ron,Rve,p2,jq,Wq;H(862,1,Hf,TTt),E.hf=function(i){pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,b$e),""),NQt),"Turns on Tree compaction which decreases the size of the whole tree by placing nodes of multiple levels in one large level"),(Qn(),!1)),(dy(),Gs)),rs),bn((d1(),Hn))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,y$e),""),"Edge End Texture Length"),"Should be set to the length of the texture at the end of an edge. This value can be used to improve the Edge Routing."),7),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,v$e),""),"Tree Level"),"The index for the tree level the node is in"),Nt(0)),Zl),Ao),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,_$e),""),NQt),"When set to a positive number this option will force the algorithm to place the node to the specified position within the trees layer if weighting is set to constraint"),Nt(-1)),Zl),Ao),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,w$e),""),"Weighting of Nodes"),"Which weighting to use when computing a node order."),fYe),Ra),TYe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,E$e),""),"Edge Routing Mode"),"Chooses an Edge Routing algorithm."),hYe),Ra),aYe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,x$e),""),"Search Order"),"Which search order to use when computing a spanning tree."),dYe),Ra),AYe),bn(Hn)))),_Kt((new kTt,i))};var Ion,Non,Oon,hYe,Lon,Don,dYe,Mon,Pon,fYe;K(rq,"MrTreeMetaDataProvider",862),H(1006,1,Hf,kTt),E.hf=function(i){_Kt(i)};var Bon,pYe,gYe,Ax,mYe,bYe,Ive,Fon,$on,Uon,zon,Gon,qon,Hon,yYe,vYe,_Ye,Von,V5,Ane,wYe,Yon,EYe,Nve,jon,Won,Kon,xYe,Xon,gg,SYe;K(rq,"MrTreeOptions",1006),H(1007,1,{},OEt),E.sf=function(){var i;return i=new aOt,i},E.tf=function(i){},K(rq,"MrTreeOptions/MrtreeFactory",1007),H(353,22,{3:1,34:1,22:1,353:1},lX);var Ove,kne,Lve,Dve,TYe=$r(rq,"OrderWeighting",353,jr,R1r,Dcr),Qon;H(433,22,{3:1,34:1,22:1,433:1},KRe);var CYe,Mve,AYe=$r(rq,"TreeifyingOrder",433,jr,Sfr,Mcr),Zon;H(1486,1,hl,RTt),E.rg=function(i){return v(i,121),Jon},E.Kf=function(i,l){$mr(this,v(i,121),l)};var Jon;K("org.eclipse.elk.alg.mrtree.p1treeify","DFSTreeifyer",1486),H(1487,1,hl,ITt),E.rg=function(i){return v(i,121),eln},E.Kf=function(i,l){Y5r(this,v(i,121),l)};var eln;K(LI,"NodeOrderer",1487),H(1494,1,{},urr),E.td=function(i){return h9t(i)},K(LI,"NodeOrderer/0methodref$lambda$6$Type",1494),H(1488,1,si,WEt),E.Mb=function(i){return Pk(),Vt(Ht(oe(v(i,40),(fa(),p2))))},K(LI,"NodeOrderer/lambda$0$Type",1488),H(1489,1,si,KEt),E.Mb=function(i){return Pk(),v(oe(v(i,40),(pc(),V5)),17).a<0},K(LI,"NodeOrderer/lambda$1$Type",1489),H(1490,1,si,PAt),E.Mb=function(i){return pmr(this.a,v(i,40))},K(LI,"NodeOrderer/lambda$2$Type",1490),H(1491,1,si,MAt),E.Mb=function(i){return l1r(this.a,v(i,40))},K(LI,"NodeOrderer/lambda$3$Type",1491),H(1492,1,ui,XEt),E.Ne=function(i,l){return Bgr(v(i,40),v(l,40))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(LI,"NodeOrderer/lambda$4$Type",1492),H(1493,1,si,QEt),E.Mb=function(i){return Pk(),v(oe(v(i,40),(fa(),Tve)),17).a!=0},K(LI,"NodeOrderer/lambda$5$Type",1493),H(1495,1,hl,ATt),E.rg=function(i){return v(i,121),tln},E.Kf=function(i,l){eAr(this,v(i,121),l)},E.b=0;var tln;K("org.eclipse.elk.alg.mrtree.p3place","NodePlacer",1495),H(1496,1,hl,CTt),E.rg=function(i){return v(i,121),nln},E.Kf=function(i,l){PCr(v(i,121),l)};var nln,Z8r=K(hd,"EdgeRouter",1496);H(1498,1,ui,jEt),E.Ne=function(i,l){return Nc(v(i,17).a,v(l,17).a)},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/0methodref$compare$Type",1498),H(1503,1,{},DEt),E.Ye=function(i){return We(at(i))},K(hd,"EdgeRouter/1methodref$doubleValue$Type",1503),H(1505,1,ui,MEt),E.Ne=function(i,l){return ha(We(at(i)),We(at(l)))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/2methodref$compare$Type",1505),H(1507,1,ui,PEt),E.Ne=function(i,l){return ha(We(at(i)),We(at(l)))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/3methodref$compare$Type",1507),H(1509,1,{},LEt),E.Ye=function(i){return We(at(i))},K(hd,"EdgeRouter/4methodref$doubleValue$Type",1509),H(1511,1,ui,BEt),E.Ne=function(i,l){return ha(We(at(i)),We(at(l)))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/5methodref$compare$Type",1511),H(1513,1,ui,FEt),E.Ne=function(i,l){return ha(We(at(i)),We(at(l)))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/6methodref$compare$Type",1513),H(1497,1,{},$Et),E.Kb=function(i){return jm(),v(oe(v(i,40),(pc(),gg)),17)},K(hd,"EdgeRouter/lambda$0$Type",1497),H(1508,1,{},UEt),E.Kb=function(i){return Eor(v(i,40))},K(hd,"EdgeRouter/lambda$11$Type",1508),H(1510,1,{},y8t),E.Kb=function(i){return Xur(this.b,this.a,v(i,40))},E.a=0,E.b=0,K(hd,"EdgeRouter/lambda$13$Type",1510),H(1512,1,{},v8t),E.Kb=function(i){return xor(this.b,this.a,v(i,40))},E.a=0,E.b=0,K(hd,"EdgeRouter/lambda$15$Type",1512),H(1514,1,ui,zEt),E.Ne=function(i,l){return M2r(v(i,65),v(l,65))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/lambda$17$Type",1514),H(1515,1,ui,GEt),E.Ne=function(i,l){return P2r(v(i,65),v(l,65))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/lambda$18$Type",1515),H(1516,1,ui,qEt),E.Ne=function(i,l){return F2r(v(i,65),v(l,65))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/lambda$19$Type",1516),H(1499,1,si,BAt),E.Mb=function(i){return $fr(this.a,v(i,40))},E.a=0,K(hd,"EdgeRouter/lambda$2$Type",1499),H(1517,1,ui,HEt),E.Ne=function(i,l){return B2r(v(i,65),v(l,65))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/lambda$20$Type",1517),H(1500,1,ui,VEt),E.Ne=function(i,l){return Pur(v(i,40),v(l,40))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/lambda$3$Type",1500),H(1501,1,ui,YEt),E.Ne=function(i,l){return Bur(v(i,40),v(l,40))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"EdgeRouter/lambda$4$Type",1501),H(1502,1,{},ZEt),E.Kb=function(i){return Sor(v(i,40))},K(hd,"EdgeRouter/lambda$5$Type",1502),H(1504,1,{},_8t),E.Kb=function(i){return Qur(this.b,this.a,v(i,40))},E.a=0,E.b=0,K(hd,"EdgeRouter/lambda$7$Type",1504),H(1506,1,{},w8t),E.Kb=function(i){return Tor(this.b,this.a,v(i,40))},E.a=0,E.b=0,K(hd,"EdgeRouter/lambda$9$Type",1506),H(675,1,{675:1},JGt),E.e=0,E.f=!1,E.g=!1,K(hd,"MultiLevelEdgeNodeNodeGap",675),H(1943,1,ui,JEt),E.Ne=function(i,l){return Kfr(v(i,240),v(l,240))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"MultiLevelEdgeNodeNodeGap/lambda$0$Type",1943),H(1944,1,ui,ext),E.Ne=function(i,l){return Xfr(v(i,240),v(l,240))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(hd,"MultiLevelEdgeNodeNodeGap/lambda$1$Type",1944);var Y5;H(501,22,{3:1,34:1,22:1,501:1,188:1,196:1},XRe),E.dg=function(){return $zt(this)},E.qg=function(){return $zt(this)};var Rne,j5,kYe=$r(S$e,"RadialLayoutPhases",501,jr,bfr,Pcr),rln;H(1113,205,K_,I7t),E.rf=function(i,l){var d,g,y,x,T,R;if(d=SYt(this,i),l.Ug("Radial layout",d.c.length),Vt(Ht(Et(i,(Xv(),$Ye))))||oz((g=new dL((fE(),new aE(i))),g)),R=UEr(i),sa(i,(UT(),Y5),R),!R)throw _e(new ar("The given graph is not a tree!"));for(y=We(at(Et(i,One))),y==0&&(y=iVt(i)),sa(i,One,y),T=new me(SYt(this,i));T.a=3)for(xt=v(ze(je,0),27),Mt=v(ze(je,1),27),x=0;x+2=xt.f+Mt.f+q||Mt.f>=yt.f+xt.f+q){yn=!0;break}else++x;else yn=!0;if(!yn){for(re=je.i,R=new mr(je);R.e!=R.i.gc();)T=v(wr(R),27),sa(T,(Ei(),lH),Nt(re)),--re;eWt(i,new tk),l.Vg();return}for(d=(nz(this.a),a1(this.a,(BZ(),Xq),v(Et(i,pje),188)),a1(this.a,Lne,v(Et(i,lje),188)),a1(this.a,jve,v(Et(i,hje),188)),p8e(this.a,(Kn=new ms,yi(Kn,Xq,(WZ(),Xve)),yi(Kn,Lne,Kve),Vt(Ht(Et(i,sje)))&&yi(Kn,Xq,Wve),Kn)),kG(this.a,i)),D=1/d.c.length,le=new me(d);le.a0&&czt((sr(l-1,i.length),i.charCodeAt(l-1)),XXt);)--l;if(g>=l)throw _e(new ar("The given string does not contain any numbers."));if(y=T4((mo(g,l,i.length),i.substr(g,l-g)),`,|;|\r| +`),y.length!=2)throw _e(new ar("Exactly two numbers are expected, "+y.length+" were found."));try{this.a=y4(v4(y[0])),this.b=y4(v4(y[1]))}catch(x){throw x=Da(x),$e(x,130)?(d=x,_e(new ar(QXt+d))):_e(x)}},E.Ib=function(){return"("+this.a+","+this.b+")"},E.a=0,E.b=0;var Vs=K(ZG,"KVector",8);H(75,67,{3:1,4:1,20:1,31:1,56:1,16:1,67:1,15:1,75:1,423:1},ah,MK,kNt),E.Pc=function(){return nyr(this)},E.cg=function(i){var l,d,g,y,x,T;g=T4(i,`,|;|\\(|\\)|\\[|\\]|\\{|\\}| | | +`),xd(this);try{for(d=0,x=0,y=0,T=0;d0&&(x%2==0?y=y4(g[d]):T=y4(g[d]),x>0&&x%2!=0&&pi(this,new Ct(y,T)),++x),++d}catch(R){throw R=Da(R),$e(R,130)?(l=R,_e(new ar("The given string does not match the expected format for vectors."+l))):_e(R)}},E.Ib=function(){var i,l,d;for(i=new Ed("("),l=Ur(this,0);l.b!=l.d.c;)d=v(Fr(l),8),bi(i,d.a+","+d.b),l.b!=l.d.c&&(i.a+="; ");return(i.a+=")",i).a};var Qje=K(ZG,"KVectorChain",75);H(255,22,{3:1,34:1,22:1,255:1},FL);var m2e,qne,Hne,tH,nH,Vne,Zje=$r(Yh,"Alignment",255,jr,Jpr,sur),Bcn;H(991,1,Hf,$Tt),E.hf=function(i){Bjt(i)};var Jje,b2e,Fcn,eWe,tWe,$cn,nWe,Ucn,zcn,rWe,iWe,Gcn;K(Yh,"BoxLayouterOptions",991),H(992,1,{},lSt),E.sf=function(){var i;return i=new hSt,i},E.tf=function(i){},K(Yh,"BoxLayouterOptions/BoxFactory",992),H(298,22,{3:1,34:1,22:1,298:1},$L);var PP,y2e,BP,FP,$P,v2e,_2e=$r(Yh,"ContentAlignment",298,jr,egr,our),qcn;H(699,1,Hf,W6e),E.hf=function(i){pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,ZQt),""),"Layout Algorithm"),"Select a specific layout algorithm."),(dy(),K5)),Xt),bn((d1(),Hn))))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,JQt),""),"Resolved Layout Algorithm"),"Meta data associated with the selected algorithm."),op),tIr),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,jFe),""),"Alignment"),"Alignment of the selected node relative to other nodes; the exact meaning depends on the used algorithm."),aWe),Ra),Zje),bn(Fs)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,s6),""),"Aspect Ratio"),"The desired aspect ratio of the drawing, that is the quotient of width by height."),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,sUe),""),"Bend Points"),"A fixed list of bend points for the edge. This is used by the 'Fixed Layout' algorithm to specify a pre-defined routing for an edge. The vector chain must include the source point, any bend points, and the target point, so it must have at least two points."),op),Qje),bn(mg)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,gee),""),"Content Alignment"),"Specifies how the content of a node are aligned. Each node can individually control the alignment of its contents. I.e. if a node should be aligned top left in its parent node, the parent node should specify that option."),oWe),k6),_2e),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,nq),""),"Debug Mode"),"Whether additional debug information shall be generated."),(Qn(),!1)),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,ime),""),ABe),"Overall direction of edges: horizontal (right / left) or vertical (down / up)."),lWe),Ra),zP),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,tq),""),"Edge Routing"),"What kind of edge routing style should be applied for the content of a parent node. Algorithms may also set this option to single edges in order to mark them as splines. The bend point list of edges with this option set to SPLINES must be interpreted as control points for a piecewise cubic spline."),hWe),Ra),D2e),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,iUe),""),"Expand Nodes"),"If active, nodes are expanded to fill the area of their parent."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,pee),""),"Hierarchy Handling"),"Determines whether separate layout runs are triggered for different compound nodes in a hierarchical graph. Setting a node's hierarchy handling to `INCLUDE_CHILDREN` will lay out that node and all of its descendants in a single layout run, until a descendant is encountered which has its hierarchy handling set to `SEPARATE_CHILDREN`. In general, `SEPARATE_CHILDREN` will ensure that a new layout run is triggered for a node with that setting. Including multiple levels of hierarchy in a single layout run may allow cross-hierarchical edges to be laid out properly. If the root node is set to `INHERIT` (or not set at all), the default behavior is `SEPARATE_CHILDREN`."),pWe),Ra),eKe),va(Hn,Te(xe(rm,1),wt,170,0,[Fs]))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,rx),""),"Padding"),"The padding to be left to a parent element's border when placing child elements. This can also serve as an output option of a layout algorithm if node size calculation is setup appropriately."),xWe),op),SGe),va(Hn,Te(xe(rm,1),wt,170,0,[Fs]))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,SM),""),"Interactive"),"Whether the algorithm should be run in interactive mode for the content of a parent node. What this means exactly depends on how the specific algorithm interprets this option. Usually in the interactive mode algorithms try to modify the current layout as little as possible."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,bee),""),"interactive Layout"),"Whether the graph should be changeable interactively and by setting constraints"),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,TM),""),"Omit Node Micro Layout"),"Node micro layout comprises the computation of node dimensions (if requested), the placement of ports and their labels, and the placement of node labels. The functionality is implemented independent of any specific layout algorithm and shouldn't have any negative impact on the layout algorithm's performance itself. Yet, if any unforeseen behavior occurs, this option allows to deactivate the micro layout."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,Sge),""),"Port Constraints"),"Defines constraints of the position of the ports of a node."),kWe),Ra),rKe),bn(Fs)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,mee),""),"Position"),"The position of a node, port, or label. This is used by the 'Fixed Layout' algorithm to specify a pre-defined position."),op),Vs),va(Fs,Te(xe(rm,1),wt,170,0,[pw,Sy]))))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,YG),""),"Priority"),"Defines the priority of an object; its meaning depends on the specific layout algorithm and the context where it is used."),Zl),Ao),va(Fs,Te(xe(rm,1),wt,170,0,[mg]))))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,XJ),""),"Randomization Seed"),"Seed used for pseudo-random number generators to control the layout algorithm. If the value is 0, the seed shall be determined pseudo-randomly (e.g. from the system time)."),Zl),Ao),bn(Hn)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,xM),""),"Separate Connected Components"),"Whether each connected component should be processed separately."),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,i$e),""),"Junction Points"),"This option is not used as option, but as output of the layout algorithms. It is attached to edges and determines the points where junction symbols should be drawn in order to represent hyperedges with orthogonal routing. Whether such points are computed depends on the chosen layout algorithm and edge routing style. The points are put into the vector chain with no specific order."),gWe),op),Qje),bn(mg)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,o$e),""),"Comment Box"),"Whether the node should be regarded as a comment box instead of a regular node. In that case its placement should be similar to how labels are handled. Any edges incident to a comment box specify to which graph elements the comment is related."),!1),Gs),rs),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,l$e),""),"Hypernode"),"Whether the node should be handled as a hypernode."),!1),Gs),rs),bn(Fs)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,k8r),""),"Label Manager"),"Label managers can shorten labels upon a layout algorithm's request."),op),sIr),va(Hn,Te(xe(rm,1),wt,170,0,[Sy]))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,u$e),""),"Margins"),"Margins define additional space around the actual bounds of a graph element. For instance, ports or labels being placed on the outside of a node's border might introduce such a margin. The margin is used to guarantee non-overlap of other graph elements with those ports or labels."),mWe),op),xGe),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,VFe),""),"No Layout"),"No layout is done for the associated element. This is used to mark parts of a diagram to avoid their inclusion in the layout graph, or to mark parts of the layout graph to prevent layout engines from processing them. If you wish to exclude the contents of a compound node from automatic layout, while the node itself is still considered on its own layer, use the 'Fixed Layout' algorithm for that node."),!1),Gs),rs),va(Fs,Te(xe(rm,1),wt,170,0,[mg,pw,Sy]))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,eZt),""),"Scale Factor"),"The scaling factor to be applied to the corresponding node in recursive layout. It causes the corresponding node's size to be adjusted, and its ports and labels to be sized and placed accordingly after the layout of that node has been determined (and before the node itself and its siblings are arranged). The scaling is not reverted afterwards, so the resulting layout graph contains the adjusted size and position data. This option is currently not supported if 'Layout Hierarchy' is set."),1),Fo),ws),bn(Fs)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,tZt),""),"Child Area Width"),"The width of the area occupied by the laid out children of a node."),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,nZt),""),"Child Area Height"),"The height of the area occupied by the laid out children of a node."),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,jG),""),jQt),"Turns topdown layout on and off. If this option is enabled, hierarchical layout will be computed first for the root node and then for its children recursively. Layouts are then scaled down to fit the area provided by their parents. Graphs must follow a certain structure for topdown layout to work properly. {@link TopdownNodeTypes.PARALLEL_NODE} nodes must have children of type {@link TopdownNodeTypes.HIERARCHICAL_NODE} and must define {@link topdown.hierarchicalNodeWidth} and {@link topdown.hierarchicalNodeAspectRatio} for their children. Furthermore they need to be laid out using an algorithm that is a {@link TopdownLayoutProvider}. Hierarchical nodes can also be parents of other hierarchical nodes and can optionally use a {@link TopdownSizeApproximator} to dynamically set sizes during topdown layout. In this case {@link topdown.hierarchicalNodeWidth} and {@link topdown.hierarchicalNodeAspectRatio} should be set on the node itself rather than the parent. The values are then used by the size approximator as base values. Hierarchical nodes require the layout option {@link nodeSize.fixedGraphSize} to be true to prevent the algorithm used there from resizing the hierarchical node. This option is not supported if 'Hierarchy Handling' is set to 'INCLUDE_CHILDREN'"),!1),Gs),rs),bn(Hn)))),bs(i,jG,ix,null),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,rZt),""),"Animate"),"Whether the shift from the old layout to the new computed layout shall be animated."),!0),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,iZt),""),"Animation Time Factor"),"Factor for computation of animation time. The higher the value, the longer the animation time. If the value is 0, the resulting time is always equal to the minimum defined by 'Minimal Animation Time'."),Nt(100)),Zl),Ao),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,aZt),""),"Layout Ancestors"),"Whether the hierarchy levels on the path from the selected element to the root of the diagram shall be included in the layout process."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,sZt),""),"Maximal Animation Time"),"The maximal time for animations, in milliseconds."),Nt(4e3)),Zl),Ao),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,oZt),""),"Minimal Animation Time"),"The minimal time for animations, in milliseconds."),Nt(400)),Zl),Ao),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,lZt),""),"Progress Bar"),"Whether a progress bar shall be displayed during layout computations."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,cZt),""),"Validate Graph"),"Whether the graph shall be validated before any layout algorithm is applied. If this option is enabled and at least one error is found, the layout process is aborted and a message is shown to the user."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,uZt),""),"Validate Options"),"Whether layout options shall be validated before any layout algorithm is applied. If this option is enabled and at least one error is found, the layout process is aborted and a message is shown to the user."),!0),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,hZt),""),"Zoom to Fit"),"Whether the zoom level shall be set to view the whole diagram after layout."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,aUe),"box"),"Box Layout Mode"),"Configures the packing mode used by the {@link BoxLayoutProvider}. If SIMPLE is not required (neither priorities are used nor the interactive mode), GROUP_DEC can improve the packing and decrease the area. GROUP_MIXED and GROUP_INC may, in very specific scenarios, work better."),sWe),Ra),fKe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,DFe),np),"Comment Comment Spacing"),"Spacing to be preserved between a comment box and other comment boxes connected to the same node. The space left between comment boxes of different nodes is controlled by the node-node spacing."),10),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,MFe),np),"Comment Node Spacing"),"Spacing to be preserved between a node and its connected comment boxes. The space left between a node and the comments of another node is controlled by the node-node spacing."),10),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,bge),np),"Components Spacing"),"Spacing to be preserved between pairs of connected components. This option is only relevant if 'separateConnectedComponents' is activated."),20),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,PFe),np),"Edge Spacing"),"Spacing to be preserved between any two edges. Note that while this can somewhat easily be satisfied for the segments of orthogonally drawn edges, it is harder for general polylines or splines."),10),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,xge),np),"Edge Label Spacing"),"The minimal distance to be preserved between a label and the edge it is associated with. Note that the placement of a label is influenced by the 'edgelabels.placement' option."),2),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,rme),np),"Edge Node Spacing"),"Spacing to be preserved between nodes and edges."),10),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,BFe),np),"Label Spacing"),"Determines the amount of space to be left between two labels of the same graph element."),0),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,UFe),np),"Label Node Spacing"),"Spacing to be preserved between labels and the border of node they are associated with. Note that the placement of a label is influenced by the 'nodelabels.placement' option."),5),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,FFe),np),"Horizontal spacing between Label and Port"),"Horizontal spacing to be preserved between labels and the ports they are associated with. Note that the placement of a label is influenced by the 'portlabels.placement' option."),1),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,$Fe),np),"Vertical spacing between Label and Port"),"Vertical spacing to be preserved between labels and the ports they are associated with. Note that the placement of a label is influenced by the 'portlabels.placement' option."),1),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,N4),np),"Node Spacing"),"The minimal distance to be preserved between each two nodes."),20),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,zFe),np),"Node Self Loop Spacing"),"Spacing to be preserved between a node and its self loops."),10),Fo),ws),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,GFe),np),"Port Spacing"),"Spacing between pairs of ports of the same node."),10),Fo),ws),va(Hn,Te(xe(rm,1),wt,170,0,[Fs]))))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,qFe),np),"Individual Spacing"),"Allows to specify individual spacing values for graph elements that shall be different from the value specified for the element's parent."),op),Iun),va(Fs,Te(xe(rm,1),wt,170,0,[mg,pw,Sy]))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,h$e),np),"Additional Port Space"),"Additional space around the sets of ports on each node side. For each side of a node, this option can reserve additional space before and after the ports on each side. For example, a top spacing of 20 makes sure that the first port on the western and eastern side is 20 units away from the northern border."),$We),op),xGe),bn(Hn)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,sme),pZt),"Layout Partition"),"Partition to which the node belongs. This requires Layout Partitioning to be active. Nodes with lower partition IDs will appear to the left of nodes with higher partition IDs (assuming a left-to-right layout direction)."),Zl),Ao),va(Hn,Te(xe(rm,1),wt,170,0,[Fs]))))),bs(i,sme,ame,Zcn),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,ame),pZt),"Layout Partitioning"),"Whether to activate partitioned layout. This will allow to group nodes through the Layout Partition option. a pair of nodes with different partition indices is then placed such that the node with lower index is placed to the left of the other node (with left-to-right layout direction). Depending on the layout algorithm, this may only be guaranteed to work if all nodes have a layout partition configured, or at least if edges that cross partitions are not part of a partition-crossing cycle."),SWe),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,XFe),gZt),"Node Label Padding"),"Define padding for node labels that are placed inside of a node."),yWe),op),SGe),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,II),gZt),"Node Label Placement"),"Hints for where node labels are to be placed; if empty, the node label's position is not modified."),vWe),k6),fl),va(Fs,Te(xe(rm,1),wt,170,0,[Sy]))))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,JFe),Aee),"Port Alignment"),"Defines the default port distribution for a node. May be overridden for each side individually."),CWe),Ra),VP),bn(Fs)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,e$e),Aee),"Port Alignment (North)"),"Defines how ports on the northern side are placed, overriding the node's general port alignment."),Ra),VP),bn(Fs)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,t$e),Aee),"Port Alignment (South)"),"Defines how ports on the southern side are placed, overriding the node's general port alignment."),Ra),VP),bn(Fs)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,n$e),Aee),"Port Alignment (West)"),"Defines how ports on the western side are placed, overriding the node's general port alignment."),Ra),VP),bn(Fs)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,r$e),Aee),"Port Alignment (East)"),"Defines how ports on the eastern side are placed, overriding the node's general port alignment."),Ra),VP),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,y5),kme),"Node Size Constraints"),"What should be taken into account when calculating a node's size. Empty size constraints specify that a node's size is already fixed and should not be changed."),_We),k6),WP),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,o6),kme),"Node Size Options"),"Options modifying the behavior of the size constraints set on a node. Each member of the set specifies something that should be taken into account when calculating node sizes. The empty set corresponds to no further modifications."),EWe),k6),aKe),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,l6),kme),"Node Size Minimum"),"The minimal size to which a node can be reduced."),wWe),op),Vs),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,RI),kme),"Fixed Graph Size"),"By default, the fixed layout provider will enlarge a graph until it is large enough to contain its children. If this option is set, it won't do so."),!1),Gs),rs),bn(Hn)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,a$e),nme),"Edge Label Placement"),"Gives a hint on where to put edge labels."),cWe),Ra),GWe),bn(Sy)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,QJ),nme),"Inline Edge Labels"),"If true, an edge label is placed directly on its edge. May only apply to center edge labels. This kind of label placement is only advisable if the label's rendering is such that it is not crossed by its edge and thus stays legible."),!1),Gs),rs),bn(Sy)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,R8r),"font"),"Font Name"),"Font name used for a label."),K5),Xt),bn(Sy)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,dZt),"font"),"Font Size"),"Font size used for a label."),Zl),Ao),bn(Sy)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,c$e),Rme),"Port Anchor Offset"),"The offset to the port position where connections shall be attached."),op),Vs),bn(pw)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,s$e),Rme),"Port Index"),"The index of a port in the fixed order around a node. The order is assumed as clockwise, starting with the leftmost port on the top side. This option must be set if 'Port Constraints' is set to FIXED_ORDER and no specific positions are given for the ports. Additionally, the option 'Port Side' must be defined in this case."),Zl),Ao),bn(pw)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,YFe),Rme),"Port Side"),"The side of a node on which a port is situated. This option must be set if 'Port Constraints' is set to FIXED_SIDE or FIXED_ORDER and no specific positions are given for the ports."),NWe),Ra),tl),bn(pw)))),pn(i,new an(dn(hn(fn(on(un(ln(cn(new rn,HFe),Rme),"Port Border Offset"),"The offset of ports on the node border. With a positive offset the port is moved outside of the node, while with a negative offset the port is moved towards the inside. An offset of 0 means that the port is placed directly on the node border, i.e. if the port side is north, the port's south border touches the nodes's north border; if the port side is east, the port's west border touches the nodes's east border; if the port side is south, the port's north border touches the node's south border; if the port side is west, the port's east border touches the node's west border."),Fo),ws),bn(pw)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,NI),cUe),"Port Label Placement"),"Decides on a placement method for port labels; if empty, the node label's position is not modified."),RWe),k6),Qne),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,QFe),cUe),"Port Labels Next to Port"),"Use 'portLabels.placement': NEXT_TO_PORT_OF_POSSIBLE."),!1),Gs),rs),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,ZFe),cUe),"Treat Port Labels as Group"),"If this option is true (default), the labels of a port will be treated as a group when it comes to centering them next to their port. If this option is false, only the first label will be centered next to the port, with the others being placed below. This only applies to labels of eastern and western ports and will have no effect if labels are not placed next to their port."),!0),Gs),rs),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,WG),aq),"Topdown Scale Factor"),"The scaling factor to be applied to the nodes laid out within the node in recursive topdown layout. The difference to 'Scale Factor' is that the node itself is not scaled. This value has to be set on hierarchical nodes."),1),Fo),ws),bn(Hn)))),bs(i,WG,ix,sun),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,oUe),aq),"Topdown Size Approximator"),"The size approximator to be used to set sizes of hierarchical nodes during topdown layout. The default value is null, which results in nodes keeping whatever size is defined for them e.g. through parent parallel node or by manually setting the size."),null),Ra),rre),bn(Fs)))),bs(i,oUe,ix,oun),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,KG),aq),"Topdown Hierarchical Node Width"),"The fixed size of a hierarchical node when using topdown layout. If this value is set on a parallel node it applies to its children, when set on a hierarchical node it applies to the node itself."),150),Fo),ws),va(Hn,Te(xe(rm,1),wt,170,0,[Fs]))))),bs(i,KG,ix,null),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,XG),aq),"Topdown Hierarchical Node Aspect Ratio"),"The fixed aspect ratio of a hierarchical node when using topdown layout. Default is 1/sqrt(2). If this value is set on a parallel node it applies to its children, when set on a hierarchical node it applies to the node itself."),1.414),Fo),ws),va(Hn,Te(xe(rm,1),wt,170,0,[Fs]))))),bs(i,XG,ix,null),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,ix),aq),"Topdown Node Type"),"The different node types used for topdown layout. If the node type is set to {@link TopdownNodeTypes.PARALLEL_NODE} the algorithm must be set to a {@link TopdownLayoutProvider} such as {@link TopdownPacking}. The {@link nodeSize.fixedGraphSize} option is technically only required for hierarchical nodes."),null),Ra),oKe),bn(Fs)))),bs(i,ix,RI,null),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,lUe),aq),"Topdown Scale Cap"),"Determines the upper limit for the topdown scale factor. The default value is 1.0 which ensures that nested children never end up appearing larger than their parents in terms of unit sizes such as the font size. If the limit is larger, nodes will fully utilize the available space, but it is counteriniuitive for inner nodes to have a larger scale than outer nodes."),1),Fo),ws),bn(Hn)))),bs(i,lUe,ix,aun),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,WFe),mZt),"Activate Inside Self Loops"),"Whether this node allows to route self loops inside of it instead of around it. If set to true, this will make the node a compound node if it isn't already, and will require the layout algorithm to support compound nodes with hierarchical ports."),!1),Gs),rs),bn(Fs)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,KFe),mZt),"Inside Self Loop"),"Whether a self loop should be routed inside a node instead of around that node."),!1),Gs),rs),bn(mg)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,yge),"edge"),"Edge Thickness"),"The thickness of an edge. This is a hint on the line width used to draw an edge, possibly requiring more space to be reserved for it."),1),Fo),ws),bn(mg)))),pn(i,new an(dn(hn(fn(kn(on(un(ln(cn(new rn,fZt),"edge"),"Edge Type"),"The type of an edge. This is usually used for UML class diagrams, where associations must be handled differently from generalizations."),fWe),Ra),WWe),bn(mg)))),kL(i,new Rk(xL(qR(GR(new XA,fr),"Layered"),'The layer-based method was introduced by Sugiyama, Tagawa and Toda in 1981. It emphasizes the direction of edges by pointing as many edges as possible into the same direction. The nodes are arranged in layers, which are sometimes called "hierarchies", and then reordered such that the number of edge crossings is minimized. Afterwards, concrete coordinates are computed for the nodes and edge bend points.'))),kL(i,new Rk(xL(qR(GR(new XA,"org.eclipse.elk.orthogonal"),"Orthogonal"),`Orthogonal methods that follow the "topology-shape-metrics" approach by Batini, Nardelli and Tamassia '86. The first phase determines the topology of the drawing by applying a planarization technique, which results in a planar representation of the graph. The orthogonal shape is computed in the second phase, which aims at minimizing the number of edge bends, and is called orthogonalization. The third phase leads to concrete coordinates for nodes and edge bend points by applying a compaction method, thus defining the metrics.`))),kL(i,new Rk(xL(qR(GR(new XA,Nu),"Force"),"Layout algorithms that follow physical analogies by simulating a system of attractive and repulsive forces. The first successful method of this kind was proposed by Eades in 1984."))),kL(i,new Rk(xL(qR(GR(new XA,"org.eclipse.elk.circle"),"Circle"),"Circular layout algorithms emphasize cycles or biconnected components of a graph by arranging them in circles. This is useful if a drawing is desired where such components are clearly grouped, or where cycles are shown as prominent OPTIONS of the graph."))),kL(i,new Rk(xL(qR(GR(new XA,OQt),"Tree"),"Specialized layout methods for trees, i.e. acyclic graphs. The regular structure of graphs that have no undirected cycles can be emphasized using an algorithm of this type."))),kL(i,new Rk(xL(qR(GR(new XA,"org.eclipse.elk.planar"),"Planar"),"Algorithms that require a planar or upward planar graph. Most of these algorithms are theoretically interesting, but not practically usable."))),kL(i,new Rk(xL(qR(GR(new XA,bf),"Radial"),"Radial layout algorithms usually position the nodes of the graph on concentric circles."))),Ejt((new UTt,i)),Bjt((new $Tt,i)),XYt((new zTt,i))};var yN,Hcn,aWe,X5,Vcn,Ycn,sWe,Q5,Z5,jcn,rH,oWe,iH,gw,lWe,w2e,E2e,cWe,uWe,hWe,dWe,fWe,Wcn,J5,pWe,Kcn,aH,x2e,sH,S2e,kx,gWe,vN,mWe,bWe,yWe,eC,vWe,mw,_We,i3,tC,wWe,g2,EWe,Yne,oH,Ty,xWe,Xcn,SWe,Qcn,Zcn,TWe,CWe,T2e,C2e,A2e,k2e,AWe,jh,UP,kWe,R2e,I2e,a3,RWe,IWe,nC,NWe,R6,lH,N2e,rC,Jcn,O2e,eun,tun,OWe,nun,LWe,DWe,I6,MWe,jne,PWe,BWe,bw,run,FWe,$We,UWe,Wne,cH,_N,N6,iun,aun,Kne,sun,zWe,oun;K(Yh,"CoreOptions",699),H(88,22,{3:1,34:1,22:1,88:1},NU);var lp,Ol,ql,cp,Ef,zP=$r(Yh,ABe,88,jr,ipr,lur),lun;H(278,22,{3:1,34:1,22:1,278:1},Nhe);var wN,s3,EN,GWe=$r(Yh,"EdgeLabelPlacement",278,jr,L0r,cur),cun;H(223,22,{3:1,34:1,22:1,223:1},uX);var xN,uH,O6,L2e,D2e=$r(Yh,"EdgeRouting",223,jr,L1r,uur),uun;H(321,22,{3:1,34:1,22:1,321:1},UL);var qWe,HWe,VWe,YWe,M2e,jWe,WWe=$r(Yh,"EdgeType",321,jr,Zpr,hur),hun;H(989,1,Hf,UTt),E.hf=function(i){Ejt(i)};var KWe,XWe,QWe,ZWe,dun,JWe,GP;K(Yh,"FixedLayouterOptions",989),H(990,1,{},cSt),E.sf=function(){var i;return i=new _St,i},E.tf=function(i){},K(Yh,"FixedLayouterOptions/FixedFactory",990),H(346,22,{3:1,34:1,22:1,346:1},Ohe);var Cy,Xne,qP,eKe=$r(Yh,"HierarchyHandling",346,jr,N0r,dur),fun;H(291,22,{3:1,34:1,22:1,291:1},hX);var im,m2,hH,dH,pun=$r(Yh,"LabelSide",291,jr,O1r,fur),gun;H(95,22,{3:1,34:1,22:1,95:1},kT);var cb,D0,Xf,M0,Bd,P0,Qf,am,B0,fl=$r(Yh,"NodeLabelPlacement",95,jr,Jgr,pur),mun;H(256,22,{3:1,34:1,22:1,256:1},OU);var tKe,HP,b2,nKe,fH,VP=$r(Yh,"PortAlignment",256,jr,vpr,gur),bun;H(101,22,{3:1,34:1,22:1,101:1},zL);var yw,su,sm,SN,up,y2,rKe=$r(Yh,"PortConstraints",101,jr,Qpr,mur),yun;H(279,22,{3:1,34:1,22:1,279:1},GL);var YP,jP,ub,pH,v2,L6,Qne=$r(Yh,"PortLabelPlacement",279,jr,Xpr,bur),vun;H(64,22,{3:1,34:1,22:1,64:1},LU);var gr,or,xf,Sf,Xu,Du,hp,F0,Ih,mh,ou,Nh,Qu,Zu,$0,Fd,$d,Zf,Mr,lc,cr,tl=$r(Yh,"PortSide",64,jr,apr,yur),_un;H(993,1,Hf,zTt),E.hf=function(i){XYt(i)};var wun,Eun,iKe,xun,Sun;K(Yh,"RandomLayouterOptions",993),H(994,1,{},uSt),E.sf=function(){var i;return i=new bSt,i},E.tf=function(i){},K(Yh,"RandomLayouterOptions/RandomFactory",994),H(386,22,{3:1,34:1,22:1,386:1},dX);var o3,gH,mH,vw,WP=$r(Yh,"SizeConstraint",386,jr,N1r,vur),Tun;H(264,22,{3:1,34:1,22:1,264:1},RT);var bH,Zne,TN,P2e,yH,KP,Jne,ere,tre,aKe=$r(Yh,"SizeOptions",264,jr,hmr,_ur),Cun;H(280,22,{3:1,34:1,22:1,280:1},Lhe);var l3,sKe,nre,oKe=$r(Yh,"TopdownNodeTypes",280,jr,D0r,wur),Aun;H(347,22,uUe);var lKe,cKe,rre=$r(Yh,"TopdownSizeApproximator",347,jr,Rfr,xur);H(987,347,uUe,u9t),E.Tg=function(i){return UGt(i)},$r(Yh,"TopdownSizeApproximator/1",987,rre,null,null),H(988,347,uUe,K9t),E.Tg=function(i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn,Kn;for(l=v(Et(i,(Ei(),rC)),143),Mt=(kv(),ae=new bL,ae),yG(Mt,i),yn=new Br,x=new mr((!i.a&&(i.a=new vt(Pi,i,10,11)),i.a));x.e!=x.i.gc();)g=v(wr(x),27),Ue=(re=new bL,re),yJ(Ue,Mt),yG(Ue,g),Kn=UGt(g),DT(Ue,u.Math.max(g.g,Kn.a),u.Math.max(g.f,Kn.b)),yu(yn.f,g,Ue);for(y=new mr((!i.a&&(i.a=new vt(Pi,i,10,11)),i.a));y.e!=y.i.gc();)for(g=v(wr(y),27),q=new mr((!g.e&&(g.e=new Gn(ss,g,7,4)),g.e));q.e!=q.i.gc();)D=v(wr(q),74),yt=v(Pl(ol(yn.f,g)),27),xt=v(br(yn,ze((!D.c&&(D.c=new Gn(Lr,D,5,8)),D.c),0)),27),je=(J=new uue,J),Yr((!je.b&&(je.b=new Gn(Lr,je,4,7)),je.b),yt),Yr((!je.c&&(je.c=new Gn(Lr,je,5,8)),je.c),xt),bJ(je,Aa(yt)),yG(je,D);de=v(sz(l.f),205);try{de.rf(Mt,new xSt),CLt(l.f,de)}catch(Xn){throw Xn=Da(Xn),$e(Xn,103)?(le=Xn,_e(le)):_e(Xn)}return Y1(Mt,Z5)||Y1(Mt,Q5)||XPe(Mt),O=We(at(Et(Mt,Z5))),R=We(at(Et(Mt,Q5))),T=O/R,d=We(at(Et(Mt,cH)))*u.Math.sqrt((!Mt.a&&(Mt.a=new vt(Pi,Mt,10,11)),Mt.a).i),mn=v(Et(Mt,Ty),107),Me=mn.b+mn.c+1,Se=mn.d+mn.a+1,new Ct(u.Math.max(Me,d),u.Math.max(Se,d/T))},$r(Yh,"TopdownSizeApproximator/2",988,rre,null,null);var kun;H(344,1,{871:1},tk),E.Ug=function(i,l){return Jqt(this,i,l)},E.Vg=function(){EHt(this)},E.Wg=function(){return this.q},E.Xg=function(){return this.f?Wde(this.f):null},E.Yg=function(){return Wde(this.a)},E.Zg=function(){return this.p},E.$g=function(){return!1},E._g=function(){return this.n},E.ah=function(){return this.p!=null&&!this.b},E.bh=function(i){var l;this.n&&(l=i,Lt(this.f,l))},E.dh=function(i,l){var d,g;this.n&&i&&K0r(this,(d=new oLt,g=Z1e(d,i),I7r(d),g),(xZ(),F2e))},E.eh=function(i){var l;return this.b?null:(l=Dgr(this,this.g),pi(this.a,l),l.i=this,this.d=i,l)},E.fh=function(i){i>0&&!this.b&&f9e(this,i)},E.b=!1,E.c=0,E.d=-1,E.e=null,E.f=null,E.g=-1,E.j=!1,E.k=!1,E.n=!1,E.o=0,E.q=0,E.r=0,K(mc,"BasicProgressMonitor",344),H(717,205,K_,hSt),E.rf=function(i,l){eWt(i,l)},K(mc,"BoxLayoutProvider",717),H(983,1,ui,KAt),E.Ne=function(i,l){return ITr(this,v(i,27),v(l,27))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},E.a=!1,K(mc,"BoxLayoutProvider/1",983),H(163,1,{163:1},eZ,DNt),E.Ib=function(){return this.c?dPe(this.c):Wv(this.b)},K(mc,"BoxLayoutProvider/Group",163),H(320,22,{3:1,34:1,22:1,320:1},fX);var uKe,hKe,dKe,B2e,fKe=$r(mc,"BoxLayoutProvider/PackingMode",320,jr,D1r,Sur),Run;H(984,1,ui,dSt),E.Ne=function(i,l){return Kdr(v(i,163),v(l,163))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(mc,"BoxLayoutProvider/lambda$0$Type",984),H(985,1,ui,fSt),E.Ne=function(i,l){return zdr(v(i,163),v(l,163))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(mc,"BoxLayoutProvider/lambda$1$Type",985),H(986,1,ui,pSt),E.Ne=function(i,l){return Gdr(v(i,163),v(l,163))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(mc,"BoxLayoutProvider/lambda$2$Type",986),H(1384,1,{845:1},gSt),E.Mg=function(i,l){return HK(),!$e(l,167)||M7t((Fk(),v(i,167)),l)},K(mc,"ElkSpacings/AbstractSpacingsBuilder/lambda$0$Type",1384),H(1385,1,vr,XAt),E.Cd=function(i){ayr(this.a,v(i,149))},K(mc,"ElkSpacings/AbstractSpacingsBuilder/lambda$1$Type",1385),H(1386,1,vr,ySt),E.Cd=function(i){v(i,96),HK()},K(mc,"ElkSpacings/AbstractSpacingsBuilder/lambda$2$Type",1386),H(1390,1,vr,QAt),E.Cd=function(i){Amr(this.a,v(i,96))},K(mc,"ElkSpacings/AbstractSpacingsBuilder/lambda$3$Type",1390),H(1388,1,si,T8t),E.Mb=function(i){return Ubr(this.a,this.b,v(i,149))},K(mc,"ElkSpacings/AbstractSpacingsBuilder/lambda$4$Type",1388),H(1387,1,si,C8t),E.Mb=function(i){return wor(this.a,this.b,v(i,845))},K(mc,"ElkSpacings/AbstractSpacingsBuilder/lambda$5$Type",1387),H(1389,1,vr,A8t),E.Cd=function(i){Dhr(this.a,this.b,v(i,149))},K(mc,"ElkSpacings/AbstractSpacingsBuilder/lambda$6$Type",1389),H(947,1,{},vSt),E.Kb=function(i){return EIt(i)},E.Fb=function(i){return this===i},K(mc,"ElkUtil/lambda$0$Type",947),H(948,1,vr,k8t),E.Cd=function(i){L4r(this.a,this.b,v(i,74))},E.a=0,E.b=0,K(mc,"ElkUtil/lambda$1$Type",948),H(949,1,vr,R8t),E.Cd=function(i){Eir(this.a,this.b,v(i,166))},E.a=0,E.b=0,K(mc,"ElkUtil/lambda$2$Type",949),H(950,1,vr,I8t),E.Cd=function(i){ysr(this.a,this.b,v(i,135))},E.a=0,E.b=0,K(mc,"ElkUtil/lambda$3$Type",950),H(951,1,vr,ZAt),E.Cd=function(i){thr(this.a,v(i,377))},K(mc,"ElkUtil/lambda$4$Type",951),H(325,1,{34:1,325:1},Zrr),E.Fd=function(i){return jsr(this,v(i,242))},E.Fb=function(i){var l;return $e(i,325)?(l=v(i,325),this.a==l.a):!1},E.Hb=function(){return Ps(this.a)},E.Ib=function(){return this.a+" (exclusive)"},E.a=0,K(mc,"ExclusiveBounds/ExclusiveLowerBound",325),H(1119,205,K_,_St),E.rf=function(i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me,Ue,je,yt,xt,Mt,yn,mn;for(l.Ug("Fixed Layout",1),x=v(Et(i,(Ei(),uWe)),223),J=0,re=0,Ue=new mr((!i.a&&(i.a=new vt(Pi,i,10,11)),i.a));Ue.e!=Ue.i.gc();){for(Se=v(wr(Ue),27),mn=v(Et(Se,(SZ(),GP)),8),mn&&(ef(Se,mn.a,mn.b),v(Et(Se,XWe),181).Hc((ud(),o3))&&(ae=v(Et(Se,ZWe),8),ae.a>0&&ae.b>0&&JE(Se,ae.a,ae.b,!0,!0))),J=u.Math.max(J,Se.i+Se.g),re=u.Math.max(re,Se.j+Se.f),D=new mr((!Se.n&&(Se.n=new vt(wl,Se,1,7)),Se.n));D.e!=D.i.gc();)R=v(wr(D),135),mn=v(Et(R,GP),8),mn&&ef(R,mn.a,mn.b),J=u.Math.max(J,Se.i+R.i+R.g),re=u.Math.max(re,Se.j+R.j+R.f);for(xt=new mr((!Se.c&&(Se.c=new vt(Oh,Se,9,9)),Se.c));xt.e!=xt.i.gc();)for(yt=v(wr(xt),123),mn=v(Et(yt,GP),8),mn&&ef(yt,mn.a,mn.b),Mt=Se.i+yt.i,yn=Se.j+yt.j,J=u.Math.max(J,Mt+yt.g),re=u.Math.max(re,yn+yt.f),O=new mr((!yt.n&&(yt.n=new vt(wl,yt,1,7)),yt.n));O.e!=O.i.gc();)R=v(wr(O),135),mn=v(Et(R,GP),8),mn&&ef(R,mn.a,mn.b),J=u.Math.max(J,Mt+R.i+R.g),re=u.Math.max(re,yn+R.j+R.f);for(y=new yr(_r(eb(Se).a.Kc(),new S));zr(y);)d=v(Rr(y),74),q=pKt(d),J=u.Math.max(J,q.a),re=u.Math.max(re,q.b);for(g=new yr(_r(bG(Se).a.Kc(),new S));zr(g);)d=v(Rr(g),74),Aa(Hg(d))!=i&&(q=pKt(d),J=u.Math.max(J,q.a),re=u.Math.max(re,q.b))}if(x==(Xm(),xN))for(Me=new mr((!i.a&&(i.a=new vt(Pi,i,10,11)),i.a));Me.e!=Me.i.gc();)for(Se=v(wr(Me),27),g=new yr(_r(eb(Se).a.Kc(),new S));zr(g);)d=v(Rr(g),74),T=MAr(d),T.b==0?sa(d,kx,null):sa(d,kx,T);Vt(Ht(Et(i,(SZ(),QWe))))||(je=v(Et(i,dun),107),de=J+je.b+je.c,le=re+je.d+je.a,JE(i,de,le,!0,!0)),l.Vg()},K(mc,"FixedLayoutProvider",1119),H(385,137,{3:1,423:1,385:1,96:1,137:1},cue,dFt),E.cg=function(i){var l,d,g,y,x,T,R,O,D;if(i)try{for(O=T4(i,";,;"),x=O,T=0,R=x.length;T>16&vs|l^g<<16},E.Kc=function(){return new JAt(this)},E.Ib=function(){return this.a==null&&this.b==null?"pair(null,null)":this.a==null?"pair(null,"+Kl(this.b)+")":this.b==null?"pair("+Kl(this.a)+",null)":"pair("+Kl(this.a)+","+Kl(this.b)+")"},K(mc,"Pair",42),H(995,1,io,JAt),E.Nb=function(i){xo(this,i)},E.Ob=function(){return!this.c&&(!this.b&&this.a.a!=null||this.a.b!=null)},E.Pb=function(){if(!this.c&&!this.b&&this.a.a!=null)return this.b=!0,this.a.a;if(!this.c&&this.a.b!=null)return this.c=!0,this.a.b;throw _e(new ec)},E.Qb=function(){throw this.c&&this.a.b!=null?this.a.b=null:this.b&&this.a.a!=null&&(this.a.a=null),_e(new ih)},E.b=!1,E.c=!1,K(mc,"Pair/1",995),H(455,1,{455:1},GLt),E.Fb=function(i){return Ec(this.a,v(i,455).a)&&Ec(this.c,v(i,455).c)&&Ec(this.d,v(i,455).d)&&Ec(this.b,v(i,455).b)},E.Hb=function(){return Hz(Te(xe(zs,1),Yn,1,5,[this.a,this.c,this.d,this.b]))},E.Ib=function(){return"("+this.a+Xo+this.c+Xo+this.d+Xo+this.b+")"},K(mc,"Quadruple",455),H(1108,205,K_,bSt),E.rf=function(i,l){var d,g,y,x,T;if(l.Ug("Random Layout",1),(!i.a&&(i.a=new vt(Pi,i,10,11)),i.a).i==0){l.Vg();return}x=v(Et(i,(zLe(),xun)),17),x&&x.a!=0?y=new LQ(x.a):y=new M0e,d=uU(at(Et(i,wun))),T=uU(at(Et(i,Sun))),g=v(Et(i,Eun),107),J7r(i,y,d,T,g),l.Vg()},K(mc,"RandomLayoutProvider",1108),H(240,1,{240:1},cde),E.Fb=function(i){return Ec(this.a,v(i,240).a)&&Ec(this.b,v(i,240).b)&&Ec(this.c,v(i,240).c)},E.Hb=function(){return Hz(Te(xe(zs,1),Yn,1,5,[this.a,this.b,this.c]))},E.Ib=function(){return"("+this.a+Xo+this.b+Xo+this.c+")"},K(mc,"Triple",240);var Lun;H(562,1,{}),E.Lf=function(){return new Ct(this.f.i,this.f.j)},E.of=function(i){return mDt(i,(Ei(),jh))?Et(this.f,Dun):Et(this.f,i)},E.Mf=function(){return new Ct(this.f.g,this.f.f)},E.Nf=function(){return this.g},E.pf=function(i){return Y1(this.f,i)},E.Of=function(i){Au(this.f,i.a),ku(this.f,i.b)},E.Pf=function(i){FE(this.f,i.a),BE(this.f,i.b)},E.Qf=function(i){this.g=i},E.g=0;var Dun;K(DM,"ElkGraphAdapters/AbstractElkGraphElementAdapter",562),H(563,1,{853:1},EK),E.Rf=function(){var i,l;if(!this.b)for(this.b=RQ(dQ(this.a).i),l=new mr(dQ(this.a));l.e!=l.i.gc();)i=v(wr(l),135),Lt(this.b,new $ue(i));return this.b},E.b=null,K(DM,"ElkGraphAdapters/ElkEdgeAdapter",563),H(289,562,{},aE),E.Sf=function(){return lqt(this)},E.a=null,K(DM,"ElkGraphAdapters/ElkGraphAdapter",289),H(640,562,{187:1},$ue),K(DM,"ElkGraphAdapters/ElkLabelAdapter",640),H(639,562,{695:1},jhe),E.Rf=function(){return U_r(this)},E.Vf=function(){var i;return i=v(Et(this.f,(Ei(),vN)),140),!i&&(i=new mL),i},E.Xf=function(){return z_r(this)},E.Zf=function(i){var l;l=new hde(i),sa(this.f,(Ei(),vN),l)},E.$f=function(i){sa(this.f,(Ei(),Ty),new NIe(i))},E.Tf=function(){return this.d},E.Uf=function(){var i,l;if(!this.a)for(this.a=new Ot,l=new yr(_r(bG(v(this.f,27)).a.Kc(),new S));zr(l);)i=v(Rr(l),74),Lt(this.a,new EK(i));return this.a},E.Wf=function(){var i,l;if(!this.c)for(this.c=new Ot,l=new yr(_r(eb(v(this.f,27)).a.Kc(),new S));zr(l);)i=v(Rr(l),74),Lt(this.c,new EK(i));return this.c},E.Yf=function(){return bQ(v(this.f,27)).i!=0||Vt(Ht(v(this.f,27).of((Ei(),aH))))},E._f=function(){vgr(this,(fE(),Lun))},E.a=null,E.b=null,E.c=null,E.d=null,E.e=null,K(DM,"ElkGraphAdapters/ElkNodeAdapter",639),H(1284,562,{852:1},ekt),E.Rf=function(){return K_r(this)},E.Uf=function(){var i,l;if(!this.a)for(this.a=Pg(v(this.f,123).hh().i),l=new mr(v(this.f,123).hh());l.e!=l.i.gc();)i=v(wr(l),74),Lt(this.a,new EK(i));return this.a},E.Wf=function(){var i,l;if(!this.c)for(this.c=Pg(v(this.f,123).ih().i),l=new mr(v(this.f,123).ih());l.e!=l.i.gc();)i=v(wr(l),74),Lt(this.c,new EK(i));return this.c},E.ag=function(){return v(v(this.f,123).of((Ei(),nC)),64)},E.bg=function(){var i,l,d,g,y,x,T,R;for(g=z1(v(this.f,123)),d=new mr(v(this.f,123).ih());d.e!=d.i.gc();)for(i=v(wr(d),74),R=new mr((!i.c&&(i.c=new Gn(Lr,i,5,8)),i.c));R.e!=R.i.gc();){if(T=v(wr(R),84),l4(zl(T),g))return!0;if(zl(T)==g&&Vt(Ht(Et(i,(Ei(),x2e)))))return!0}for(l=new mr(v(this.f,123).hh());l.e!=l.i.gc();)for(i=v(wr(l),74),x=new mr((!i.b&&(i.b=new Gn(Lr,i,4,7)),i.b));x.e!=x.i.gc();)if(y=v(wr(x),84),l4(zl(y),g))return!0;return!1},E.a=null,E.b=null,E.c=null,K(DM,"ElkGraphAdapters/ElkPortAdapter",1284),H(1285,1,ui,mSt),E.Ne=function(i,l){return ACr(v(i,123),v(l,123))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(DM,"ElkGraphAdapters/PortComparator",1285);var _2=$a(yf,"EObject"),CN=$a(w5,vZt),Ud=$a(w5,_Zt),vH=$a(w5,wZt),_H=$a(w5,"ElkShape"),Lr=$a(w5,EZt),ss=$a(w5,hUe),xa=$a(w5,xZt),wH=$a(yf,SZt),XP=$a(yf,"EFactory"),Mun,$2e=$a(yf,TZt),y1=$a(yf,"EPackage"),Ks,Pun,Bun,bKe,ire,Fun,yKe,vKe,_Ke,om,$un,Uun,wl=$a(w5,dUe),Pi=$a(w5,fUe),Oh=$a(w5,pUe);H(93,1,CZt),E.th=function(){return this.uh(),null},E.uh=function(){return null},E.vh=function(){return this.uh(),!1},E.wh=function(){return!1},E.xh=function(i){Vi(this,i)},K(h6,"BasicNotifierImpl",93),H(99,93,IZt),E.Yh=function(){return id(this)},E.yh=function(i,l){return i},E.zh=function(){throw _e(new ri)},E.Ah=function(i){var l;return l=sl(v(qn(this.Dh(),this.Fh()),19)),this.Ph().Th(this,l.n,l.f,i)},E.Bh=function(i,l){throw _e(new ri)},E.Ch=function(i,l,d){return Od(this,i,l,d)},E.Dh=function(){var i;return this.zh()&&(i=this.zh().Nk(),i)?i:this.ii()},E.Eh=function(){return M1e(this)},E.Fh=function(){throw _e(new ri)},E.Gh=function(){var i,l;return l=this.$h().Ok(),!l&&this.zh().Tk(l=(IL(),i=HNe(tg(this.Dh())),i==null?j2e:new FU(this,i))),l},E.Hh=function(i,l){return i},E.Ih=function(i){var l;return l=i.pk(),l?i.Lj():Ma(this.Dh(),i)},E.Jh=function(){var i;return i=this.zh(),i?i.Qk():null},E.Kh=function(){return this.zh()?this.zh().Nk():null},E.Lh=function(i,l,d){return YZ(this,i,l,d)},E.Mh=function(i){return v8(this,i)},E.Nh=function(i,l){return _fe(this,i,l)},E.Oh=function(){var i;return i=this.zh(),!!i&&i.Rk()},E.Ph=function(){throw _e(new ri)},E.Qh=function(){return $Z(this)},E.Rh=function(i,l,d,g){return Hk(this,i,l,g)},E.Sh=function(i,l,d){var g;return g=v(qn(this.Dh(),l),69),g.wk().zk(this,this.hi(),l-this.ji(),i,d)},E.Th=function(i,l,d,g){return wQ(this,i,l,g)},E.Uh=function(i,l,d){var g;return g=v(qn(this.Dh(),l),69),g.wk().Ak(this,this.hi(),l-this.ji(),i,d)},E.Vh=function(){return!!this.zh()&&!!this.zh().Pk()},E.Wh=function(i){return Y0e(this,i)},E.Xh=function(i){return IDt(this,i)},E.Zh=function(i){return ZWt(this,i)},E.$h=function(){throw _e(new ri)},E._h=function(){return this.zh()?this.zh().Pk():null},E.ai=function(){return $Z(this)},E.bi=function(i,l){I1e(this,i,l)},E.ci=function(i){this.$h().Sk(i)},E.di=function(i){this.$h().Vk(i)},E.ei=function(i){this.$h().Uk(i)},E.fi=function(i,l){var d,g,y,x;return x=this.Jh(),x&&i&&(l=Ko(x.El(),this,l),x.Il(this)),g=this.Ph(),g&&(K1e(this,this.Ph(),this.Fh()).Bb&el?(y=g.Qh(),y&&(i?!x&&y.Il(this):y.Hl(this))):(l=(d=this.Fh(),d>=0?this.Ah(l):this.Ph().Th(this,-1-d,null,l)),l=this.Ch(null,-1,l))),this.di(i),l},E.gi=function(i){var l,d,g,y,x,T,R,O;if(d=this.Dh(),x=Ma(d,i),l=this.ji(),x>=l)return v(i,69).wk().Dk(this,this.hi(),x-l);if(x<=-1)if(T=h5((dh(),ko),d,i),T){if(al(),v(T,69).xk()||(T=Ik(Al(ko,T))),y=(g=this.Ih(T),v(g>=0?this.Lh(g,!0,!0):XE(this,T,!0),160)),O=T.Ik(),O>1||O==-1)return v(v(y,220).Sl(i,!1),79)}else throw _e(new ar(r2+i.xe()+Ime));else if(i.Jk())return g=this.Ih(i),v(g>=0?this.Lh(g,!1,!0):XE(this,i,!1),79);return R=new W8t(this,i),R},E.hi=function(){return KOe(this)},E.ii=function(){return(Mv(),Zn).S},E.ji=function(){return kr(this.ii())},E.ki=function(i){A1e(this,i)},E.Ib=function(){return T0(this)},K(tr,"BasicEObjectImpl",99);var zun;H(119,99,{110:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1}),E.li=function(i){var l;return l=WOe(this),l[i]},E.mi=function(i,l){var d;d=WOe(this),Ga(d,i,l)},E.ni=function(i){var l;l=WOe(this),Ga(l,i,null)},E.th=function(){return v(rr(this,4),129)},E.uh=function(){throw _e(new ri)},E.vh=function(){return(this.Db&4)!=0},E.zh=function(){throw _e(new ri)},E.oi=function(i){Gk(this,2,i)},E.Bh=function(i,l){this.Db=l<<16|this.Db&255,this.oi(i)},E.Dh=function(){return Vu(this)},E.Fh=function(){return this.Db>>16},E.Gh=function(){var i,l;return IL(),l=HNe(tg((i=v(rr(this,16),29),i||this.ii()))),l==null?j2e:new FU(this,l)},E.wh=function(){return(this.Db&1)==0},E.Jh=function(){return v(rr(this,128),2034)},E.Kh=function(){return v(rr(this,16),29)},E.Oh=function(){return(this.Db&32)!=0},E.Ph=function(){return v(rr(this,2),54)},E.Vh=function(){return(this.Db&64)!=0},E.$h=function(){throw _e(new ri)},E._h=function(){return v(rr(this,64),288)},E.ci=function(i){Gk(this,16,i)},E.di=function(i){Gk(this,128,i)},E.ei=function(i){Gk(this,64,i)},E.hi=function(){return Ru(this)},E.Db=0,K(tr,"MinimalEObjectImpl",119),H(120,119,{110:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1}),E.oi=function(i){this.Cb=i},E.Ph=function(){return this.Cb},K(tr,"MinimalEObjectImpl/Container",120),H(2083,120,{110:1,342:1,96:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1}),E.Lh=function(i,l,d){return uDe(this,i,l,d)},E.Uh=function(i,l,d){return JDe(this,i,l,d)},E.Wh=function(i){return iOe(this,i)},E.bi=function(i,l){K9e(this,i,l)},E.ii=function(){return Lc(),Uun},E.ki=function(i){F9e(this,i)},E.nf=function(){return kGt(this)},E.gh=function(){return!this.o&&(this.o=new uh((Lc(),om),Ay,this,0)),this.o},E.of=function(i){return Et(this,i)},E.pf=function(i){return Y1(this,i)},E.qf=function(i,l){return sa(this,i,l)},K(J_,"EMapPropertyHolderImpl",2083),H(572,120,{110:1,377:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1},hK),E.Lh=function(i,l,d){switch(i){case 0:return this.a;case 1:return this.b}return YZ(this,i,l,d)},E.Wh=function(i){switch(i){case 0:return this.a!=0;case 1:return this.b!=0}return Y0e(this,i)},E.bi=function(i,l){switch(i){case 0:nZ(this,We(at(l)));return;case 1:tZ(this,We(at(l)));return}I1e(this,i,l)},E.ii=function(){return Lc(),Pun},E.ki=function(i){switch(i){case 0:nZ(this,0);return;case 1:tZ(this,0);return}A1e(this,i)},E.Ib=function(){var i;return this.Db&64?T0(this):(i=new Ff(T0(this)),i.a+=" (x: ",ST(i,this.a),i.a+=", y: ",ST(i,this.b),i.a+=")",i.a)},E.a=0,E.b=0,K(J_,"ElkBendPointImpl",572),H(739,2083,{110:1,342:1,167:1,96:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1}),E.Lh=function(i,l,d){return yLe(this,i,l,d)},E.Sh=function(i,l,d){return _1e(this,i,l,d)},E.Uh=function(i,l,d){return r0e(this,i,l,d)},E.Wh=function(i){return O9e(this,i)},E.bi=function(i,l){RDe(this,i,l)},E.ii=function(){return Lc(),Fun},E.ki=function(i){cLe(this,i)},E.jh=function(){return this.k},E.kh=function(){return dQ(this)},E.Ib=function(){return R0e(this)},E.k=null,K(J_,"ElkGraphElementImpl",739),H(740,739,{110:1,342:1,167:1,422:1,96:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1}),E.Lh=function(i,l,d){return CLe(this,i,l,d)},E.Wh=function(i){return OLe(this,i)},E.bi=function(i,l){IDe(this,i,l)},E.ii=function(){return Lc(),$un},E.ki=function(i){$Le(this,i)},E.lh=function(){return this.f},E.mh=function(){return this.g},E.nh=function(){return this.i},E.oh=function(){return this.j},E.ph=function(i,l){DT(this,i,l)},E.qh=function(i,l){ef(this,i,l)},E.rh=function(i){Au(this,i)},E.sh=function(i){ku(this,i)},E.Ib=function(){return T1e(this)},E.f=0,E.g=0,E.i=0,E.j=0,K(J_,"ElkShapeImpl",740),H(741,740,{110:1,342:1,84:1,167:1,422:1,96:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1}),E.Lh=function(i,l,d){return rDe(this,i,l,d)},E.Sh=function(i,l,d){return xDe(this,i,l,d)},E.Uh=function(i,l,d){return SDe(this,i,l,d)},E.Wh=function(i){return W9e(this,i)},E.bi=function(i,l){BMe(this,i,l)},E.ii=function(){return Lc(),Bun},E.ki=function(i){ZLe(this,i)},E.hh=function(){return!this.d&&(this.d=new Gn(ss,this,8,5)),this.d},E.ih=function(){return!this.e&&(this.e=new Gn(ss,this,7,4)),this.e},K(J_,"ElkConnectableShapeImpl",741),H(326,739,{110:1,342:1,74:1,167:1,326:1,96:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1},uue),E.Ah=function(i){return vDe(this,i)},E.Lh=function(i,l,d){switch(i){case 3:return lz(this);case 4:return!this.b&&(this.b=new Gn(Lr,this,4,7)),this.b;case 5:return!this.c&&(this.c=new Gn(Lr,this,5,8)),this.c;case 6:return!this.a&&(this.a=new vt(xa,this,6,6)),this.a;case 7:return Qn(),!this.b&&(this.b=new Gn(Lr,this,4,7)),!(this.b.i<=1&&(!this.c&&(this.c=new Gn(Lr,this,5,8)),this.c.i<=1));case 8:return Qn(),!!tM(this);case 9:return Qn(),!!KE(this);case 10:return Qn(),!this.b&&(this.b=new Gn(Lr,this,4,7)),this.b.i!=0&&(!this.c&&(this.c=new Gn(Lr,this,5,8)),this.c.i!=0)}return yLe(this,i,l,d)},E.Sh=function(i,l,d){var g;switch(l){case 3:return this.Cb&&(d=(g=this.Db>>16,g>=0?vDe(this,d):this.Cb.Th(this,-1-g,null,d))),eIe(this,v(i,27),d);case 4:return!this.b&&(this.b=new Gn(Lr,this,4,7)),bu(this.b,i,d);case 5:return!this.c&&(this.c=new Gn(Lr,this,5,8)),bu(this.c,i,d);case 6:return!this.a&&(this.a=new vt(xa,this,6,6)),bu(this.a,i,d)}return _1e(this,i,l,d)},E.Uh=function(i,l,d){switch(l){case 3:return eIe(this,null,d);case 4:return!this.b&&(this.b=new Gn(Lr,this,4,7)),Ko(this.b,i,d);case 5:return!this.c&&(this.c=new Gn(Lr,this,5,8)),Ko(this.c,i,d);case 6:return!this.a&&(this.a=new vt(xa,this,6,6)),Ko(this.a,i,d)}return r0e(this,i,l,d)},E.Wh=function(i){switch(i){case 3:return!!lz(this);case 4:return!!this.b&&this.b.i!=0;case 5:return!!this.c&&this.c.i!=0;case 6:return!!this.a&&this.a.i!=0;case 7:return!this.b&&(this.b=new Gn(Lr,this,4,7)),!(this.b.i<=1&&(!this.c&&(this.c=new Gn(Lr,this,5,8)),this.c.i<=1));case 8:return tM(this);case 9:return KE(this);case 10:return!this.b&&(this.b=new Gn(Lr,this,4,7)),this.b.i!=0&&(!this.c&&(this.c=new Gn(Lr,this,5,8)),this.c.i!=0)}return O9e(this,i)},E.bi=function(i,l){switch(i){case 3:bJ(this,v(l,27));return;case 4:!this.b&&(this.b=new Gn(Lr,this,4,7)),Gr(this.b),!this.b&&(this.b=new Gn(Lr,this,4,7)),Ka(this.b,v(l,16));return;case 5:!this.c&&(this.c=new Gn(Lr,this,5,8)),Gr(this.c),!this.c&&(this.c=new Gn(Lr,this,5,8)),Ka(this.c,v(l,16));return;case 6:!this.a&&(this.a=new vt(xa,this,6,6)),Gr(this.a),!this.a&&(this.a=new vt(xa,this,6,6)),Ka(this.a,v(l,16));return}RDe(this,i,l)},E.ii=function(){return Lc(),bKe},E.ki=function(i){switch(i){case 3:bJ(this,null);return;case 4:!this.b&&(this.b=new Gn(Lr,this,4,7)),Gr(this.b);return;case 5:!this.c&&(this.c=new Gn(Lr,this,5,8)),Gr(this.c);return;case 6:!this.a&&(this.a=new vt(xa,this,6,6)),Gr(this.a);return}cLe(this,i)},E.Ib=function(){return mWt(this)},K(J_,"ElkEdgeImpl",326),H(452,2083,{110:1,342:1,166:1,452:1,96:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1},dK),E.Ah=function(i){return gDe(this,i)},E.Lh=function(i,l,d){switch(i){case 1:return this.j;case 2:return this.k;case 3:return this.b;case 4:return this.c;case 5:return!this.a&&(this.a=new gs(Ud,this,5)),this.a;case 6:return CDt(this);case 7:return l?Q0e(this):this.i;case 8:return l?X0e(this):this.f;case 9:return!this.g&&(this.g=new Gn(xa,this,9,10)),this.g;case 10:return!this.e&&(this.e=new Gn(xa,this,10,9)),this.e;case 11:return this.d}return uDe(this,i,l,d)},E.Sh=function(i,l,d){var g,y,x;switch(l){case 6:return this.Cb&&(d=(y=this.Db>>16,y>=0?gDe(this,d):this.Cb.Th(this,-1-y,null,d))),J8e(this,v(i,74),d);case 9:return!this.g&&(this.g=new Gn(xa,this,9,10)),bu(this.g,i,d);case 10:return!this.e&&(this.e=new Gn(xa,this,10,9)),bu(this.e,i,d)}return x=v(qn((g=v(rr(this,16),29),g||(Lc(),ire)),l),69),x.wk().zk(this,Ru(this),l-kr((Lc(),ire)),i,d)},E.Uh=function(i,l,d){switch(l){case 5:return!this.a&&(this.a=new gs(Ud,this,5)),Ko(this.a,i,d);case 6:return J8e(this,null,d);case 9:return!this.g&&(this.g=new Gn(xa,this,9,10)),Ko(this.g,i,d);case 10:return!this.e&&(this.e=new Gn(xa,this,10,9)),Ko(this.e,i,d)}return JDe(this,i,l,d)},E.Wh=function(i){switch(i){case 1:return this.j!=0;case 2:return this.k!=0;case 3:return this.b!=0;case 4:return this.c!=0;case 5:return!!this.a&&this.a.i!=0;case 6:return!!CDt(this);case 7:return!!this.i;case 8:return!!this.f;case 9:return!!this.g&&this.g.i!=0;case 10:return!!this.e&&this.e.i!=0;case 11:return this.d!=null}return iOe(this,i)},E.bi=function(i,l){switch(i){case 1:T8(this,We(at(l)));return;case 2:A8(this,We(at(l)));return;case 3:S8(this,We(at(l)));return;case 4:C8(this,We(at(l)));return;case 5:!this.a&&(this.a=new gs(Ud,this,5)),Gr(this.a),!this.a&&(this.a=new gs(Ud,this,5)),Ka(this.a,v(l,16));return;case 6:gYt(this,v(l,74));return;case 7:cZ(this,v(l,84));return;case 8:lZ(this,v(l,84));return;case 9:!this.g&&(this.g=new Gn(xa,this,9,10)),Gr(this.g),!this.g&&(this.g=new Gn(xa,this,9,10)),Ka(this.g,v(l,16));return;case 10:!this.e&&(this.e=new Gn(xa,this,10,9)),Gr(this.e),!this.e&&(this.e=new Gn(xa,this,10,9)),Ka(this.e,v(l,16));return;case 11:_9e(this,ai(l));return}K9e(this,i,l)},E.ii=function(){return Lc(),ire},E.ki=function(i){switch(i){case 1:T8(this,0);return;case 2:A8(this,0);return;case 3:S8(this,0);return;case 4:C8(this,0);return;case 5:!this.a&&(this.a=new gs(Ud,this,5)),Gr(this.a);return;case 6:gYt(this,null);return;case 7:cZ(this,null);return;case 8:lZ(this,null);return;case 9:!this.g&&(this.g=new Gn(xa,this,9,10)),Gr(this.g);return;case 10:!this.e&&(this.e=new Gn(xa,this,10,9)),Gr(this.e);return;case 11:_9e(this,null);return}F9e(this,i)},E.Ib=function(){return RVt(this)},E.b=0,E.c=0,E.d=null,E.j=0,E.k=0,K(J_,"ElkEdgeSectionImpl",452),H(158,120,{110:1,94:1,93:1,155:1,58:1,114:1,54:1,99:1,158:1,119:1,120:1}),E.Lh=function(i,l,d){var g;return i==0?(!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab):lf(this,i-kr(this.ii()),qn((g=v(rr(this,16),29),g||this.ii()),i),l,d)},E.Sh=function(i,l,d){var g,y;return l==0?(!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d)):(y=v(qn((g=v(rr(this,16),29),g||this.ii()),l),69),y.wk().zk(this,Ru(this),l-kr(this.ii()),i,d))},E.Uh=function(i,l,d){var g,y;return l==0?(!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d)):(y=v(qn((g=v(rr(this,16),29),g||this.ii()),l),69),y.wk().Ak(this,Ru(this),l-kr(this.ii()),i,d))},E.Wh=function(i){var l;return i==0?!!this.Ab&&this.Ab.i!=0:sf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.Zh=function(i){return WPe(this,i)},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return}df(this,i-kr(this.ii()),qn((d=v(rr(this,16),29),d||this.ii()),i),l)},E.di=function(i){Gk(this,128,i)},E.ii=function(){return Pn(),ahn},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return}hf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.pi=function(){this.Bb|=1},E.qi=function(i){return lM(this,i)},E.Bb=0,K(tr,"EModelElementImpl",158),H(720,158,{110:1,94:1,93:1,480:1,155:1,58:1,114:1,54:1,99:1,158:1,119:1,120:1},X6e),E.ri=function(i,l){return VWt(this,i,l)},E.si=function(i){var l,d,g,y,x;if(this.a!=Cd(i)||i.Bb&256)throw _e(new ar(Ome+i.zb+lx));for(g=Fl(i);Uc(g.a).i!=0;){if(d=v(RG(g,0,(l=v(ze(Uc(g.a),0),89),x=l.c,$e(x,90)?v(x,29):(Pn(),n0))),29),WE(d))return y=Cd(d).wi().si(d),v(y,54).ci(i),y;g=Fl(d)}return(i.D!=null?i.D:i.B)=="java.util.Map$Entry"?new l9t(i):new GIe(i)},E.ti=function(i,l){return ex(this,i,l)},E.Lh=function(i,l,d){var g;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.a}return lf(this,i-kr((Pn(),S2)),qn((g=v(rr(this,16),29),g||S2),i),l,d)},E.Sh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d);case 1:return this.a&&(d=v(this.a,54).Th(this,4,y1,d)),lLe(this,v(i,241),d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),S2)),l),69),y.wk().zk(this,Ru(this),l-kr((Pn(),S2)),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 1:return lLe(this,null,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),S2)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),S2)),i,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return!!this.a}return sf(this,i-kr((Pn(),S2)),qn((l=v(rr(this,16),29),l||S2),i))},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:dHt(this,v(l,241));return}df(this,i-kr((Pn(),S2)),qn((d=v(rr(this,16),29),d||S2),i),l)},E.ii=function(){return Pn(),S2},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:dHt(this,null);return}hf(this,i-kr((Pn(),S2)),qn((l=v(rr(this,16),29),l||S2),i))};var QP,wKe,Gun;K(tr,"EFactoryImpl",720),H(1037,720,{110:1,2113:1,94:1,93:1,480:1,155:1,58:1,114:1,54:1,99:1,158:1,119:1,120:1},TSt),E.ri=function(i,l){switch(i.hk()){case 12:return v(l,149).Pg();case 13:return Kl(l);default:throw _e(new ar(FI+i.xe()+lx))}},E.si=function(i){var l,d,g,y,x,T,R,O;switch(i.G==-1&&(i.G=(l=Cd(i),l?uy(l.vi(),i):-1)),i.G){case 4:return x=new H6e,x;case 6:return T=new bL,T;case 7:return R=new H7e,R;case 8:return g=new uue,g;case 9:return d=new hK,d;case 10:return y=new dK,y;case 11:return O=new CSt,O;default:throw _e(new ar(Ome+i.zb+lx))}},E.ti=function(i,l){switch(i.hk()){case 13:case 12:return null;default:throw _e(new ar(FI+i.xe()+lx))}},K(J_,"ElkGraphFactoryImpl",1037),H(448,158,{110:1,94:1,93:1,155:1,197:1,58:1,114:1,54:1,99:1,158:1,119:1,120:1}),E.Gh=function(){var i,l;return l=(i=v(rr(this,16),29),HNe(tg(i||this.ii()))),l==null?(IL(),IL(),j2e):new NNt(this,l)},E.Lh=function(i,l,d){var g;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.xe()}return lf(this,i-kr(this.ii()),qn((g=v(rr(this,16),29),g||this.ii()),i),l,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null}return sf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:this.ui(ai(l));return}df(this,i-kr(this.ii()),qn((d=v(rr(this,16),29),d||this.ii()),i),l)},E.ii=function(){return Pn(),shn},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:this.ui(null);return}hf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.xe=function(){return this.zb},E.ui=function(i){mu(this,i)},E.Ib=function(){return PD(this)},E.zb=null,K(tr,"ENamedElementImpl",448),H(184,448,{110:1,94:1,93:1,155:1,197:1,58:1,241:1,114:1,54:1,99:1,158:1,184:1,119:1,120:1,690:1},iDt),E.Ah=function(i){return xqt(this,i)},E.Lh=function(i,l,d){var g;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return this.yb;case 3:return this.xb;case 4:return this.sb;case 5:return!this.rb&&(this.rb=new ZS(this,v1,this)),this.rb;case 6:return!this.vb&&(this.vb=new bk(y1,this,6,7)),this.vb;case 7:return l?this.Db>>16==7?v(this.Cb,241):null:LDt(this)}return lf(this,i-kr((Pn(),Ny)),qn((g=v(rr(this,16),29),g||Ny),i),l,d)},E.Sh=function(i,l,d){var g,y,x;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d);case 4:return this.sb&&(d=v(this.sb,54).Th(this,1,XP,d)),hLe(this,v(i,480),d);case 5:return!this.rb&&(this.rb=new ZS(this,v1,this)),bu(this.rb,i,d);case 6:return!this.vb&&(this.vb=new bk(y1,this,6,7)),bu(this.vb,i,d);case 7:return this.Cb&&(d=(y=this.Db>>16,y>=0?xqt(this,d):this.Cb.Th(this,-1-y,null,d))),Od(this,i,7,d)}return x=v(qn((g=v(rr(this,16),29),g||(Pn(),Ny)),l),69),x.wk().zk(this,Ru(this),l-kr((Pn(),Ny)),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 4:return hLe(this,null,d);case 5:return!this.rb&&(this.rb=new ZS(this,v1,this)),Ko(this.rb,i,d);case 6:return!this.vb&&(this.vb=new bk(y1,this,6,7)),Ko(this.vb,i,d);case 7:return Od(this,null,7,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),Ny)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),Ny)),i,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return this.yb!=null;case 3:return this.xb!=null;case 4:return!!this.sb;case 5:return!!this.rb&&this.rb.i!=0;case 6:return!!this.vb&&this.vb.i!=0;case 7:return!!LDt(this)}return sf(this,i-kr((Pn(),Ny)),qn((l=v(rr(this,16),29),l||Ny),i))},E.Zh=function(i){var l;return l=GTr(this,i),l||WPe(this,i)},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:mu(this,ai(l));return;case 2:gZ(this,ai(l));return;case 3:pZ(this,ai(l));return;case 4:S1e(this,v(l,480));return;case 5:!this.rb&&(this.rb=new ZS(this,v1,this)),Gr(this.rb),!this.rb&&(this.rb=new ZS(this,v1,this)),Ka(this.rb,v(l,16));return;case 6:!this.vb&&(this.vb=new bk(y1,this,6,7)),Gr(this.vb),!this.vb&&(this.vb=new bk(y1,this,6,7)),Ka(this.vb,v(l,16));return}df(this,i-kr((Pn(),Ny)),qn((d=v(rr(this,16),29),d||Ny),i),l)},E.ei=function(i){var l,d;if(i&&this.rb)for(d=new mr(this.rb);d.e!=d.i.gc();)l=wr(d),$e(l,364)&&(v(l,364).w=null);Gk(this,64,i)},E.ii=function(){return Pn(),Ny},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:mu(this,null);return;case 2:gZ(this,null);return;case 3:pZ(this,null);return;case 4:S1e(this,null);return;case 5:!this.rb&&(this.rb=new ZS(this,v1,this)),Gr(this.rb);return;case 6:!this.vb&&(this.vb=new bk(y1,this,6,7)),Gr(this.vb);return}hf(this,i-kr((Pn(),Ny)),qn((l=v(rr(this,16),29),l||Ny),i))},E.pi=function(){u1e(this)},E.vi=function(){return!this.rb&&(this.rb=new ZS(this,v1,this)),this.rb},E.wi=function(){return this.sb},E.xi=function(){return this.ub},E.yi=function(){return this.xb},E.zi=function(){return this.yb},E.Ai=function(i){this.ub=i},E.Ib=function(){var i;return this.Db&64?PD(this):(i=new Ff(PD(this)),i.a+=" (nsURI: ",bl(i,this.yb),i.a+=", nsPrefix: ",bl(i,this.xb),i.a+=")",i.a)},E.xb=null,E.yb=null,K(tr,"EPackageImpl",184),H(569,184,{110:1,2115:1,569:1,94:1,93:1,155:1,197:1,58:1,241:1,114:1,54:1,99:1,158:1,184:1,119:1,120:1,690:1},FVt),E.q=!1,E.r=!1;var qun=!1;K(J_,"ElkGraphPackageImpl",569),H(366,740,{110:1,342:1,167:1,135:1,422:1,366:1,96:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1},H6e),E.Ah=function(i){return mDe(this,i)},E.Lh=function(i,l,d){switch(i){case 7:return DDt(this);case 8:return this.a}return CLe(this,i,l,d)},E.Sh=function(i,l,d){var g;switch(l){case 7:return this.Cb&&(d=(g=this.Db>>16,g>=0?mDe(this,d):this.Cb.Th(this,-1-g,null,d))),rNe(this,v(i,167),d)}return _1e(this,i,l,d)},E.Uh=function(i,l,d){return l==7?rNe(this,null,d):r0e(this,i,l,d)},E.Wh=function(i){switch(i){case 7:return!!DDt(this);case 8:return!An("",this.a)}return OLe(this,i)},E.bi=function(i,l){switch(i){case 7:XMe(this,v(l,167));return;case 8:g9e(this,ai(l));return}IDe(this,i,l)},E.ii=function(){return Lc(),yKe},E.ki=function(i){switch(i){case 7:XMe(this,null);return;case 8:g9e(this,"");return}$Le(this,i)},E.Ib=function(){return CHt(this)},E.a="",K(J_,"ElkLabelImpl",366),H(207,741,{110:1,342:1,84:1,167:1,27:1,422:1,207:1,96:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1},bL),E.Ah=function(i){return _De(this,i)},E.Lh=function(i,l,d){switch(i){case 9:return!this.c&&(this.c=new vt(Oh,this,9,9)),this.c;case 10:return!this.a&&(this.a=new vt(Pi,this,10,11)),this.a;case 11:return Aa(this);case 12:return!this.b&&(this.b=new vt(ss,this,12,3)),this.b;case 13:return Qn(),!this.a&&(this.a=new vt(Pi,this,10,11)),this.a.i>0}return rDe(this,i,l,d)},E.Sh=function(i,l,d){var g;switch(l){case 9:return!this.c&&(this.c=new vt(Oh,this,9,9)),bu(this.c,i,d);case 10:return!this.a&&(this.a=new vt(Pi,this,10,11)),bu(this.a,i,d);case 11:return this.Cb&&(d=(g=this.Db>>16,g>=0?_De(this,d):this.Cb.Th(this,-1-g,null,d))),uIe(this,v(i,27),d);case 12:return!this.b&&(this.b=new vt(ss,this,12,3)),bu(this.b,i,d)}return xDe(this,i,l,d)},E.Uh=function(i,l,d){switch(l){case 9:return!this.c&&(this.c=new vt(Oh,this,9,9)),Ko(this.c,i,d);case 10:return!this.a&&(this.a=new vt(Pi,this,10,11)),Ko(this.a,i,d);case 11:return uIe(this,null,d);case 12:return!this.b&&(this.b=new vt(ss,this,12,3)),Ko(this.b,i,d)}return SDe(this,i,l,d)},E.Wh=function(i){switch(i){case 9:return!!this.c&&this.c.i!=0;case 10:return!!this.a&&this.a.i!=0;case 11:return!!Aa(this);case 12:return!!this.b&&this.b.i!=0;case 13:return!this.a&&(this.a=new vt(Pi,this,10,11)),this.a.i>0}return W9e(this,i)},E.bi=function(i,l){switch(i){case 9:!this.c&&(this.c=new vt(Oh,this,9,9)),Gr(this.c),!this.c&&(this.c=new vt(Oh,this,9,9)),Ka(this.c,v(l,16));return;case 10:!this.a&&(this.a=new vt(Pi,this,10,11)),Gr(this.a),!this.a&&(this.a=new vt(Pi,this,10,11)),Ka(this.a,v(l,16));return;case 11:yJ(this,v(l,27));return;case 12:!this.b&&(this.b=new vt(ss,this,12,3)),Gr(this.b),!this.b&&(this.b=new vt(ss,this,12,3)),Ka(this.b,v(l,16));return}BMe(this,i,l)},E.ii=function(){return Lc(),vKe},E.ki=function(i){switch(i){case 9:!this.c&&(this.c=new vt(Oh,this,9,9)),Gr(this.c);return;case 10:!this.a&&(this.a=new vt(Pi,this,10,11)),Gr(this.a);return;case 11:yJ(this,null);return;case 12:!this.b&&(this.b=new vt(ss,this,12,3)),Gr(this.b);return}ZLe(this,i)},E.Ib=function(){return dPe(this)},K(J_,"ElkNodeImpl",207),H(193,741,{110:1,342:1,84:1,167:1,123:1,422:1,193:1,96:1,94:1,93:1,58:1,114:1,54:1,99:1,119:1,120:1},H7e),E.Ah=function(i){return bDe(this,i)},E.Lh=function(i,l,d){return i==9?z1(this):rDe(this,i,l,d)},E.Sh=function(i,l,d){var g;switch(l){case 9:return this.Cb&&(d=(g=this.Db>>16,g>=0?bDe(this,d):this.Cb.Th(this,-1-g,null,d))),tIe(this,v(i,27),d)}return xDe(this,i,l,d)},E.Uh=function(i,l,d){return l==9?tIe(this,null,d):SDe(this,i,l,d)},E.Wh=function(i){return i==9?!!z1(this):W9e(this,i)},E.bi=function(i,l){switch(i){case 9:YMe(this,v(l,27));return}BMe(this,i,l)},E.ii=function(){return Lc(),_Ke},E.ki=function(i){switch(i){case 9:YMe(this,null);return}ZLe(this,i)},E.Ib=function(){return pjt(this)},K(J_,"ElkPortImpl",193);var Hun=$a(Qo,"BasicEMap/Entry");H(1122,120,{110:1,44:1,94:1,93:1,136:1,58:1,114:1,54:1,99:1,119:1,120:1},CSt),E.Fb=function(i){return this===i},E.ld=function(){return this.b},E.Hb=function(){return vE(this)},E.Di=function(i){m9e(this,v(i,149))},E.Lh=function(i,l,d){switch(i){case 0:return this.b;case 1:return this.c}return YZ(this,i,l,d)},E.Wh=function(i){switch(i){case 0:return!!this.b;case 1:return this.c!=null}return Y0e(this,i)},E.bi=function(i,l){switch(i){case 0:m9e(this,v(l,149));return;case 1:p9e(this,l);return}I1e(this,i,l)},E.ii=function(){return Lc(),om},E.ki=function(i){switch(i){case 0:m9e(this,null);return;case 1:p9e(this,null);return}A1e(this,i)},E.Bi=function(){var i;return this.a==-1&&(i=this.b,this.a=i?ma(i):0),this.a},E.md=function(){return this.c},E.Ci=function(i){this.a=i},E.nd=function(i){var l;return l=this.c,p9e(this,i),l},E.Ib=function(){var i;return this.Db&64?T0(this):(i=new Cv,bi(bi(bi(i,this.b?this.b.Pg():Ku),Tge),XL(this.c)),i.a)},E.a=-1,E.c=null;var Ay=K(J_,"ElkPropertyToValueMapEntryImpl",1122);H(996,1,{},RSt),K(Co,"JsonAdapter",996),H(216,63,nb,zp),K(Co,"JsonImportException",216),H(868,1,{},Sqt),K(Co,"JsonImporter",868),H(903,1,{},N8t),K(Co,"JsonImporter/lambda$0$Type",903),H(904,1,{},O8t),K(Co,"JsonImporter/lambda$1$Type",904),H(912,1,{},tkt),K(Co,"JsonImporter/lambda$10$Type",912),H(914,1,{},L8t),K(Co,"JsonImporter/lambda$11$Type",914),H(915,1,{},D8t),K(Co,"JsonImporter/lambda$12$Type",915),H(921,1,{},YLt),K(Co,"JsonImporter/lambda$13$Type",921),H(920,1,{},jLt),K(Co,"JsonImporter/lambda$14$Type",920),H(916,1,{},M8t),K(Co,"JsonImporter/lambda$15$Type",916),H(917,1,{},P8t),K(Co,"JsonImporter/lambda$16$Type",917),H(918,1,{},B8t),K(Co,"JsonImporter/lambda$17$Type",918),H(919,1,{},F8t),K(Co,"JsonImporter/lambda$18$Type",919),H(924,1,{},nkt),K(Co,"JsonImporter/lambda$19$Type",924),H(905,1,{},rkt),K(Co,"JsonImporter/lambda$2$Type",905),H(922,1,{},ikt),K(Co,"JsonImporter/lambda$20$Type",922),H(923,1,{},akt),K(Co,"JsonImporter/lambda$21$Type",923),H(927,1,{},skt),K(Co,"JsonImporter/lambda$22$Type",927),H(925,1,{},okt),K(Co,"JsonImporter/lambda$23$Type",925),H(926,1,{},lkt),K(Co,"JsonImporter/lambda$24$Type",926),H(929,1,{},ckt),K(Co,"JsonImporter/lambda$25$Type",929),H(928,1,{},ukt),K(Co,"JsonImporter/lambda$26$Type",928),H(930,1,vr,$8t),E.Cd=function(i){ngr(this.b,this.a,ai(i))},K(Co,"JsonImporter/lambda$27$Type",930),H(931,1,vr,U8t),E.Cd=function(i){rgr(this.b,this.a,ai(i))},K(Co,"JsonImporter/lambda$28$Type",931),H(932,1,{},z8t),K(Co,"JsonImporter/lambda$29$Type",932),H(908,1,{},hkt),K(Co,"JsonImporter/lambda$3$Type",908),H(933,1,{},G8t),K(Co,"JsonImporter/lambda$30$Type",933),H(934,1,{},dkt),K(Co,"JsonImporter/lambda$31$Type",934),H(935,1,{},fkt),K(Co,"JsonImporter/lambda$32$Type",935),H(936,1,{},pkt),K(Co,"JsonImporter/lambda$33$Type",936),H(937,1,{},gkt),K(Co,"JsonImporter/lambda$34$Type",937),H(870,1,{},mkt),K(Co,"JsonImporter/lambda$35$Type",870),H(941,1,{},POt),K(Co,"JsonImporter/lambda$36$Type",941),H(938,1,vr,bkt),E.Cd=function(i){lpr(this.a,v(i,377))},K(Co,"JsonImporter/lambda$37$Type",938),H(939,1,vr,q8t),E.Cd=function(i){Gar(this.a,this.b,v(i,166))},K(Co,"JsonImporter/lambda$38$Type",939),H(940,1,vr,H8t),E.Cd=function(i){qar(this.a,this.b,v(i,166))},K(Co,"JsonImporter/lambda$39$Type",940),H(906,1,{},ykt),K(Co,"JsonImporter/lambda$4$Type",906),H(942,1,vr,vkt),E.Cd=function(i){cpr(this.a,v(i,8))},K(Co,"JsonImporter/lambda$40$Type",942),H(907,1,{},_kt),K(Co,"JsonImporter/lambda$5$Type",907),H(911,1,{},wkt),K(Co,"JsonImporter/lambda$6$Type",911),H(909,1,{},Ekt),K(Co,"JsonImporter/lambda$7$Type",909),H(910,1,{},xkt),K(Co,"JsonImporter/lambda$8$Type",910),H(913,1,{},Skt),K(Co,"JsonImporter/lambda$9$Type",913),H(961,1,vr,Tkt),E.Cd=function(i){Tk(this.a,new JS(ai(i)))},K(Co,"JsonMetaDataConverter/lambda$0$Type",961),H(962,1,vr,Ckt),E.Cd=function(i){edr(this.a,v(i,245))},K(Co,"JsonMetaDataConverter/lambda$1$Type",962),H(963,1,vr,Akt),E.Cd=function(i){Jfr(this.a,v(i,143))},K(Co,"JsonMetaDataConverter/lambda$2$Type",963),H(964,1,vr,kkt),E.Cd=function(i){tdr(this.a,v(i,170))},K(Co,"JsonMetaDataConverter/lambda$3$Type",964),H(245,22,{3:1,34:1,22:1,245:1},hk);var are,sre,U2e,ore,lre,cre,z2e,G2e,ure=$r(HG,"GraphFeature",245,jr,Fgr,Aur),Vun;H(11,1,{34:1,149:1},la,Ba,En,fo),E.Fd=function(i){return Wsr(this,v(i,149))},E.Fb=function(i){return mDt(this,i)},E.Sg=function(){return zt(this)},E.Pg=function(){return this.b},E.Hb=function(){return ry(this.b)},E.Ib=function(){return this.b},K(HG,"Property",11),H(671,1,ui,Sue),E.Ne=function(i,l){return avr(this,v(i,96),v(l,96))},E.Fb=function(i){return this===i},E.Oe=function(){return new ei(this)},K(HG,"PropertyHolderComparator",671),H(709,1,io,T7e),E.Nb=function(i){xo(this,i)},E.Pb=function(){return sgr(this)},E.Qb=function(){S7t()},E.Ob=function(){return!!this.a},K(Nee,"ElkGraphUtil/AncestorIterator",709);var EKe=$a(Qo,"EList");H(70,56,{20:1,31:1,56:1,16:1,15:1,70:1,61:1}),E.bd=function(i,l){FD(this,i,l)},E.Fc=function(i){return Yr(this,i)},E.cd=function(i,l){return $9e(this,i,l)},E.Gc=function(i){return Ka(this,i)},E.Ii=function(){return new mk(this)},E.Ji=function(){return new $U(this)},E.Ki=function(i){return Nz(this,i)},E.Li=function(){return!0},E.Mi=function(i,l){},E.Ni=function(){},E.Oi=function(i,l){Sfe(this,i,l)},E.Pi=function(i,l,d){},E.Qi=function(i,l){},E.Ri=function(i,l,d){},E.Fb=function(i){return ZYt(this,i)},E.Hb=function(){return M9e(this)},E.Si=function(){return!1},E.Kc=function(){return new mr(this)},E.ed=function(){return new gk(this)},E.fd=function(i){var l;if(l=this.gc(),i<0||i>l)throw _e(new XS(i,l));return new Rde(this,i)},E.Ui=function(i,l){this.Ti(i,this.dd(l))},E.Mc=function(i){return WQ(this,i)},E.Wi=function(i,l){return l},E.hd=function(i,l){return JT(this,i,l)},E.Ib=function(){return RLe(this)},E.Yi=function(){return!0},E.Zi=function(i,l){return z8(this,l)},K(Qo,"AbstractEList",70),H(66,70,hg,fK,PE,R9e),E.Ei=function(i,l){return w1e(this,i,l)},E.Fi=function(i){return KGt(this,i)},E.Gi=function(i,l){Yz(this,i,l)},E.Hi=function(i){gz(this,i)},E.$i=function(i){return qOe(this,i)},E.$b=function(){_D(this)},E.Hc=function(i){return rI(this,i)},E.Xb=function(i){return ze(this,i)},E._i=function(i){var l,d,g;++this.j,d=this.g==null?0:this.g.length,i>d&&(g=this.g,l=d+(d/2|0)+4,l=0?(this.gd(l),!0):!1},E.Xi=function(i,l){return this.Dj(i,this.Zi(i,l))},E.gc=function(){return this.Ej()},E.Pc=function(){return this.Fj()},E.Qc=function(i){return this.Gj(i)},E.Ib=function(){return this.Hj()},K(Qo,"DelegatingEList",2093),H(2094,2093,pJt),E.Ei=function(i,l){return SPe(this,i,l)},E.Fi=function(i){return this.Ei(this.Ej(),i)},E.Gi=function(i,l){$Vt(this,i,l)},E.Hi=function(i){AVt(this,i)},E.Li=function(){return!this.Mj()},E.$b=function(){pM(this)},E.Ij=function(i,l,d,g,y){return new gDt(this,i,l,d,g,y)},E.Jj=function(i){Vi(this.jj(),i)},E.Kj=function(){return null},E.Lj=function(){return-1},E.jj=function(){return null},E.Mj=function(){return!1},E.Nj=function(i,l){return l},E.Oj=function(i,l){return l},E.Pj=function(){return!1},E.Qj=function(){return!this.Aj()},E.Ti=function(i,l){var d,g;return this.Pj()?(g=this.Qj(),d=XDe(this,i,l),this.Jj(this.Ij(7,Nt(l),d,i,g)),d):XDe(this,i,l)},E.gd=function(i){var l,d,g,y;return this.Pj()?(d=null,g=this.Qj(),l=this.Ij(4,y=YX(this,i),null,i,g),this.Mj()&&y?(d=this.Oj(y,d),d?(d.nj(l),d.oj()):this.Jj(l)):d?(d.nj(l),d.oj()):this.Jj(l),y):(y=YX(this,i),this.Mj()&&y&&(d=this.Oj(y,null),d&&d.oj()),y)},E.Xi=function(i,l){return Yjt(this,i,l)},K(h6,"DelegatingNotifyingListImpl",2094),H(152,1,oq),E.nj=function(i){return MDe(this,i)},E.oj=function(){Ofe(this)},E.gj=function(){return this.d},E.Kj=function(){return null},E.Rj=function(){return null},E.hj=function(i){return-1},E.ij=function(){return LYt(this)},E.jj=function(){return null},E.kj=function(){return tPe(this)},E.lj=function(){return this.o<0?this.o<-2?-2-this.o-1:-1:this.o},E.Sj=function(){return!1},E.mj=function(i){var l,d,g,y,x,T,R,O,D,q,J;switch(this.d){case 1:case 2:switch(y=i.gj(),y){case 1:case 2:if(x=i.jj(),Ze(x)===Ze(this.jj())&&this.hj(null)==i.hj(null))return this.g=i.ij(),i.gj()==1&&(this.d=1),!0}case 4:{switch(y=i.gj(),y){case 4:{if(x=i.jj(),Ze(x)===Ze(this.jj())&&this.hj(null)==i.hj(null))return D=zPe(this),O=this.o<0?this.o<-2?-2-this.o-1:-1:this.o,T=i.lj(),this.d=6,J=new PE(2),O<=T?(Yr(J,this.n),Yr(J,i.kj()),this.g=Te(xe(Wr,1),vi,28,15,[this.o=O,T+1])):(Yr(J,i.kj()),Yr(J,this.n),this.g=Te(xe(Wr,1),vi,28,15,[this.o=T,O])),this.n=J,D||(this.o=-2-this.o-1),!0;break}}break}case 6:{switch(y=i.gj(),y){case 4:{if(x=i.jj(),Ze(x)===Ze(this.jj())&&this.hj(null)==i.hj(null)){for(D=zPe(this),T=i.lj(),q=v(this.g,53),g=st(Wr,vi,28,q.length+1,15,1),l=0;l>>0,l.toString(16))),g.a+=" (eventType: ",this.d){case 1:{g.a+="SET";break}case 2:{g.a+="UNSET";break}case 3:{g.a+="ADD";break}case 5:{g.a+="ADD_MANY";break}case 4:{g.a+="REMOVE";break}case 6:{g.a+="REMOVE_MANY";break}case 7:{g.a+="MOVE";break}case 8:{g.a+="REMOVING_ADAPTER";break}case 9:{g.a+="RESOLVE";break}default:{Wue(g,this.d);break}}if(_jt(this)&&(g.a+=", touch: true"),g.a+=", position: ",Wue(g,this.o<0?this.o<-2?-2-this.o-1:-1:this.o),g.a+=", notifier: ",HL(g,this.jj()),g.a+=", feature: ",HL(g,this.Kj()),g.a+=", oldValue: ",HL(g,tPe(this)),g.a+=", newValue: ",this.d==6&&$e(this.g,53)){for(d=v(this.g,53),g.a+="[",i=0;i10?((!this.b||this.c.j!=this.a)&&(this.b=new nD(this),this.a=this.j),r1(this.b,i)):rI(this,i)},E.Yi=function(){return!0},E.a=0,K(Qo,"AbstractEList/1",966),H(302,77,Kpe,XS),K(Qo,"AbstractEList/BasicIndexOutOfBoundsException",302),H(37,1,io,mr),E.Nb=function(i){xo(this,i)},E.Xj=function(){if(this.i.j!=this.f)throw _e(new Jd)},E.Yj=function(){return wr(this)},E.Ob=function(){return this.e!=this.i.gc()},E.Pb=function(){return this.Yj()},E.Qb=function(){XD(this)},E.e=0,E.f=0,E.g=-1,K(Qo,"AbstractEList/EIterator",37),H(286,37,Yg,gk,Rde),E.Qb=function(){XD(this)},E.Rb=function(i){jzt(this,i)},E.Zj=function(){var i;try{return i=this.d.Xb(--this.e),this.Xj(),this.g=this.e,i}catch(l){throw l=Da(l),$e(l,77)?(this.Xj(),_e(new ec)):_e(l)}},E.$j=function(i){ZGt(this,i)},E.Sb=function(){return this.e!=0},E.Tb=function(){return this.e},E.Ub=function(){return this.Zj()},E.Vb=function(){return this.e-1},E.Wb=function(i){this.$j(i)},K(Qo,"AbstractEList/EListIterator",286),H(355,37,io,mk),E.Yj=function(){return j0e(this)},E.Qb=function(){throw _e(new ri)},K(Qo,"AbstractEList/NonResolvingEIterator",355),H(398,286,Yg,$U,bIe),E.Rb=function(i){throw _e(new ri)},E.Yj=function(){var i;try{return i=this.c.Vi(this.e),this.Xj(),this.g=this.e++,i}catch(l){throw l=Da(l),$e(l,77)?(this.Xj(),_e(new ec)):_e(l)}},E.Zj=function(){var i;try{return i=this.c.Vi(--this.e),this.Xj(),this.g=this.e,i}catch(l){throw l=Da(l),$e(l,77)?(this.Xj(),_e(new ec)):_e(l)}},E.Qb=function(){throw _e(new ri)},E.Wb=function(i){throw _e(new ri)},K(Qo,"AbstractEList/NonResolvingEListIterator",398),H(2080,70,gJt),E.Ei=function(i,l){var d,g,y,x,T,R,O,D,q,J,re;if(y=l.gc(),y!=0){for(D=v(rr(this.a,4),129),q=D==null?0:D.length,re=q+y,g=m0e(this,re),J=q-i,J>0&&Gc(D,i,g,i+y,J),O=l.Kc(),T=0;Td)throw _e(new XS(i,d));return new BLt(this,i)},E.$b=function(){var i,l;++this.j,i=v(rr(this.a,4),129),l=i==null?0:i.length,J8(this,null),Sfe(this,l,i)},E.Hc=function(i){var l,d,g,y,x;if(l=v(rr(this.a,4),129),l!=null){if(i!=null){for(g=l,y=0,x=g.length;y=d)throw _e(new XS(i,d));return l[i]},E.dd=function(i){var l,d,g;if(l=v(rr(this.a,4),129),l!=null){if(i!=null){for(d=0,g=l.length;dd)throw _e(new XS(i,d));return new PLt(this,i)},E.Ti=function(i,l){var d,g,y;if(d=rGt(this),y=d==null?0:d.length,i>=y)throw _e(new Sl(zme+i+ew+y));if(l>=y)throw _e(new Sl(Gme+l+ew+y));return g=d[l],i!=l&&(i0&&Gc(i,0,l,0,d),l},E.Qc=function(i){var l,d,g;return l=v(rr(this.a,4),129),g=l==null?0:l.length,g>0&&(i.lengthg&&Ga(i,g,null),i};var Yun;K(Qo,"ArrayDelegatingEList",2080),H(1051,37,io,FPt),E.Xj=function(){if(this.b.j!=this.f||Ze(v(rr(this.b.a,4),129))!==Ze(this.a))throw _e(new Jd)},E.Qb=function(){XD(this),this.a=v(rr(this.b.a,4),129)},K(Qo,"ArrayDelegatingEList/EIterator",1051),H(722,286,Yg,X9t,PLt),E.Xj=function(){if(this.b.j!=this.f||Ze(v(rr(this.b.a,4),129))!==Ze(this.a))throw _e(new Jd)},E.$j=function(i){ZGt(this,i),this.a=v(rr(this.b.a,4),129)},E.Qb=function(){XD(this),this.a=v(rr(this.b.a,4),129)},K(Qo,"ArrayDelegatingEList/EListIterator",722),H(1052,355,io,$Pt),E.Xj=function(){if(this.b.j!=this.f||Ze(v(rr(this.b.a,4),129))!==Ze(this.a))throw _e(new Jd)},K(Qo,"ArrayDelegatingEList/NonResolvingEIterator",1052),H(723,398,Yg,Q9t,BLt),E.Xj=function(){if(this.b.j!=this.f||Ze(v(rr(this.b.a,4),129))!==Ze(this.a))throw _e(new Jd)},K(Qo,"ArrayDelegatingEList/NonResolvingEListIterator",723),H(615,302,Kpe,Dhe),K(Qo,"BasicEList/BasicIndexOutOfBoundsException",615),H(710,66,hg,a8e),E.bd=function(i,l){throw _e(new ri)},E.Fc=function(i){throw _e(new ri)},E.cd=function(i,l){throw _e(new ri)},E.Gc=function(i){throw _e(new ri)},E.$b=function(){throw _e(new ri)},E._i=function(i){throw _e(new ri)},E.Kc=function(){return this.Ii()},E.ed=function(){return this.Ji()},E.fd=function(i){return this.Ki(i)},E.Ti=function(i,l){throw _e(new ri)},E.Ui=function(i,l){throw _e(new ri)},E.gd=function(i){throw _e(new ri)},E.Mc=function(i){throw _e(new ri)},E.hd=function(i,l){throw _e(new ri)},K(Qo,"BasicEList/UnmodifiableEList",710),H(721,1,{3:1,20:1,16:1,15:1,61:1,597:1}),E.bd=function(i,l){Psr(this,i,v(l,44))},E.Fc=function(i){return Ior(this,v(i,44))},E.Jc=function(i){To(this,i)},E.Xb=function(i){return v(ze(this.c,i),136)},E.Ti=function(i,l){return v(this.c.Ti(i,l),44)},E.Ui=function(i,l){Bsr(this,i,v(l,44))},E.Lc=function(){return new xn(null,new Nn(this,16))},E.gd=function(i){return v(this.c.gd(i),44)},E.hd=function(i,l){return Jhr(this,i,v(l,44))},E.jd=function(i){D_(this,i)},E.Nc=function(){return new Nn(this,16)},E.Oc=function(){return new xn(null,new Nn(this,16))},E.cd=function(i,l){return this.c.cd(i,l)},E.Gc=function(i){return this.c.Gc(i)},E.$b=function(){this.c.$b()},E.Hc=function(i){return this.c.Hc(i)},E.Ic=function(i){return Bz(this.c,i)},E._j=function(){var i,l,d;if(this.d==null){for(this.d=st(xKe,OUe,66,2*this.f+1,0,1),d=this.e,this.f=0,l=this.c.Kc();l.e!=l.i.gc();)i=v(l.Yj(),136),XZ(this,i);this.e=d}},E.Fb=function(i){return SOt(this,i)},E.Hb=function(){return M9e(this.c)},E.dd=function(i){return this.c.dd(i)},E.ak=function(){this.c=new Rkt(this)},E.dc=function(){return this.f==0},E.Kc=function(){return this.c.Kc()},E.ed=function(){return this.c.ed()},E.fd=function(i){return this.c.fd(i)},E.bk=function(){return yz(this)},E.ck=function(i,l,d){return new BOt(i,l,d)},E.dk=function(){return new LSt},E.Mc=function(i){return u$t(this,i)},E.gc=function(){return this.f},E.kd=function(i,l){return new Qb(this.c,i,l)},E.Pc=function(){return this.c.Pc()},E.Qc=function(i){return this.c.Qc(i)},E.Ib=function(){return RLe(this.c)},E.e=0,E.f=0,K(Qo,"BasicEMap",721),H(1046,66,hg,Rkt),E.Mi=function(i,l){fir(this,v(l,136))},E.Pi=function(i,l,d){var g;++(g=this,v(l,136),g).a.e},E.Qi=function(i,l){pir(this,v(l,136))},E.Ri=function(i,l,d){gor(this,v(l,136),v(d,136))},E.Oi=function(i,l){rUt(this.a)},K(Qo,"BasicEMap/1",1046),H(1047,66,hg,LSt),E.aj=function(i){return st(rIr,mJt,621,i,0,1)},K(Qo,"BasicEMap/2",1047),H(1048,J1,fh,Ikt),E.$b=function(){this.a.c.$b()},E.Hc=function(i){return B0e(this.a,i)},E.Kc=function(){return this.a.f==0?(t8(),SH.a):new d7t(this.a)},E.Mc=function(i){var l;return l=this.a.f,FZ(this.a,i),this.a.f!=l},E.gc=function(){return this.a.f},K(Qo,"BasicEMap/3",1048),H(1049,31,A4,Nkt),E.$b=function(){this.a.c.$b()},E.Hc=function(i){return JYt(this.a,i)},E.Kc=function(){return this.a.f==0?(t8(),SH.a):new f7t(this.a)},E.gc=function(){return this.a.f},K(Qo,"BasicEMap/4",1049),H(1050,J1,fh,Okt),E.$b=function(){this.a.c.$b()},E.Hc=function(i){var l,d,g,y,x,T,R,O,D;if(this.a.f>0&&$e(i,44)&&(this.a._j(),O=v(i,44),R=O.ld(),y=R==null?0:ma(R),x=nIe(this.a,y),l=this.a.d[x],l)){for(d=v(l.g,379),D=l.i,T=0;T"+this.c},E.a=0;var rIr=K(Qo,"BasicEMap/EntryImpl",621);H(546,1,{},pK),K(Qo,"BasicEMap/View",546);var SH;H(783,1,{}),E.Fb=function(i){return FMe((Fn(),Zo),i)},E.Hb=function(){return j9e((Fn(),Zo))},E.Ib=function(){return Wv((Fn(),Zo))},K(Qo,"ECollections/BasicEmptyUnmodifiableEList",783),H(1348,1,Yg,DSt),E.Nb=function(i){xo(this,i)},E.Rb=function(i){throw _e(new ri)},E.Ob=function(){return!1},E.Sb=function(){return!1},E.Pb=function(){throw _e(new ec)},E.Tb=function(){return 0},E.Ub=function(){throw _e(new ec)},E.Vb=function(){return-1},E.Qb=function(){throw _e(new ri)},E.Wb=function(i){throw _e(new ri)},K(Qo,"ECollections/BasicEmptyUnmodifiableEList/1",1348),H(1346,783,{20:1,16:1,15:1,61:1},E6t),E.bd=function(i,l){B7t()},E.Fc=function(i){return F7t()},E.cd=function(i,l){return $7t()},E.Gc=function(i){return U7t()},E.$b=function(){z7t()},E.Hc=function(i){return!1},E.Ic=function(i){return!1},E.Jc=function(i){To(this,i)},E.Xb=function(i){return l8e((Fn(),i)),null},E.dd=function(i){return-1},E.dc=function(){return!0},E.Kc=function(){return this.a},E.ed=function(){return this.a},E.fd=function(i){return this.a},E.Ti=function(i,l){return G7t()},E.Ui=function(i,l){q7t()},E.Lc=function(){return new xn(null,new Nn(this,16))},E.gd=function(i){return H7t()},E.Mc=function(i){return V7t()},E.hd=function(i,l){return Y7t()},E.gc=function(){return 0},E.jd=function(i){D_(this,i)},E.Nc=function(){return new Nn(this,16)},E.Oc=function(){return new xn(null,new Nn(this,16))},E.kd=function(i,l){return Fn(),new Qb(Zo,i,l)},E.Pc=function(){return aNe((Fn(),Zo))},E.Qc=function(i){return Fn(),YD(Zo,i)},K(Qo,"ECollections/EmptyUnmodifiableEList",1346),H(1347,783,{20:1,16:1,15:1,61:1,597:1},x6t),E.bd=function(i,l){B7t()},E.Fc=function(i){return F7t()},E.cd=function(i,l){return $7t()},E.Gc=function(i){return U7t()},E.$b=function(){z7t()},E.Hc=function(i){return!1},E.Ic=function(i){return!1},E.Jc=function(i){To(this,i)},E.Xb=function(i){return l8e((Fn(),i)),null},E.dd=function(i){return-1},E.dc=function(){return!0},E.Kc=function(){return this.a},E.ed=function(){return this.a},E.fd=function(i){return this.a},E.Ti=function(i,l){return G7t()},E.Ui=function(i,l){q7t()},E.Lc=function(){return new xn(null,new Nn(this,16))},E.gd=function(i){return H7t()},E.Mc=function(i){return V7t()},E.hd=function(i,l){return Y7t()},E.gc=function(){return 0},E.jd=function(i){D_(this,i)},E.Nc=function(){return new Nn(this,16)},E.Oc=function(){return new xn(null,new Nn(this,16))},E.kd=function(i,l){return Fn(),new Qb(Zo,i,l)},E.Pc=function(){return aNe((Fn(),Zo))},E.Qc=function(i){return Fn(),YD(Zo,i)},E.bk=function(){return Fn(),Fn(),Jg},K(Qo,"ECollections/EmptyUnmodifiableEMap",1347);var TKe=$a(Qo,"Enumerator"),hre;H(288,1,{288:1},H1e),E.Fb=function(i){var l;return this===i?!0:$e(i,288)?(l=v(i,288),this.f==l.f&&ghr(this.i,l.i)&&bde(this.a,this.f&256?l.f&256?l.a:null:l.f&256?null:l.a)&&bde(this.d,l.d)&&bde(this.g,l.g)&&bde(this.e,l.e)&&$2r(this,l)):!1},E.Hb=function(){return this.f},E.Ib=function(){return Ojt(this)},E.f=0;var jun=0,Wun=0,Kun=0,Xun=0,CKe=0,AKe=0,kKe=0,RKe=0,IKe=0,Qun,ZP=0,JP=0,Zun=0,Jun=0,dre,NKe;K(Qo,"URI",288),H(1121,45,p5,S6t),E.zc=function(i,l){return v(Cl(this,ai(i),v(l,288)),288)},K(Qo,"URI/URICache",1121),H(506,66,hg,kSt,ZX),E.Si=function(){return!0},K(Qo,"UniqueEList",506),H(590,63,nb,VQ),K(Qo,"WrappedException",590);var wi=$a(yf,vJt),c3=$a(yf,_Jt),Ju=$a(yf,wJt),u3=$a(yf,EJt),v1=$a(yf,xJt),Jf=$a(yf,"EClass"),V2e=$a(yf,"EDataType"),ehn;H(1233,45,p5,T6t),E.xc=function(i){return ro(i)?Qc(this,i):Pl(ol(this.f,i))},K(yf,"EDataType/Internal/ConversionDelegate/Factory/Registry/Impl",1233);var fre=$a(yf,"EEnum"),hb=$a(yf,SJt),pl=$a(yf,TJt),e0=$a(yf,CJt),t0,Rx=$a(yf,AJt),h3=$a(yf,kJt);H(1042,1,{},ASt),E.Ib=function(){return"NIL"},K(yf,"EStructuralFeature/Internal/DynamicValueHolder/1",1042);var thn;H(1041,45,p5,C6t),E.xc=function(i){return ro(i)?Qc(this,i):Pl(ol(this.f,i))},K(yf,"EStructuralFeature/Internal/SettingDelegate/Factory/Registry/Impl",1041);var Mu=$a(yf,RJt),D6=$a(yf,"EValidator/PatternMatcher"),OKe,LKe,Zn,ky,d3,E2,nhn,rhn,ihn,x2,Ry,S2,Ix,dp,ahn,shn,n0,Iy,ohn,Ny,f3,iC,nl,lhn,chn,Nx,pre=$a(Ca,"FeatureMap/Entry");H(545,1,{76:1},gX),E.Lk=function(){return this.a},E.md=function(){return this.b},K(tr,"BasicEObjectImpl/1",545),H(1040,1,Wme,W8t),E.Fk=function(i){return _fe(this.a,this.b,i)},E.Qj=function(){return IDt(this.a,this.b)},E.Wb=function(i){jNe(this.a,this.b,i)},E.Gk=function(){ddr(this.a,this.b)},K(tr,"BasicEObjectImpl/4",1040),H(2081,1,{114:1}),E.Mk=function(i){this.e=i==0?uhn:st(zs,Yn,1,i,5,1)},E.li=function(i){return this.e[i]},E.mi=function(i,l){this.e[i]=l},E.ni=function(i){this.e[i]=null},E.Nk=function(){return this.c},E.Ok=function(){throw _e(new ri)},E.Pk=function(){throw _e(new ri)},E.Qk=function(){return this.d},E.Rk=function(){return this.e!=null},E.Sk=function(i){this.c=i},E.Tk=function(i){throw _e(new ri)},E.Uk=function(i){throw _e(new ri)},E.Vk=function(i){this.d=i};var uhn;K(tr,"BasicEObjectImpl/EPropertiesHolderBaseImpl",2081),H(192,2081,{114:1},t1),E.Ok=function(){return this.a},E.Pk=function(){return this.b},E.Tk=function(i){this.a=i},E.Uk=function(i){this.b=i},K(tr,"BasicEObjectImpl/EPropertiesHolderImpl",192),H(516,99,IZt,gK),E.uh=function(){return this.f},E.zh=function(){return this.k},E.Bh=function(i,l){this.g=i,this.i=l},E.Dh=function(){return this.j&2?this.$h().Nk():this.ii()},E.Fh=function(){return this.i},E.wh=function(){return(this.j&1)!=0},E.Ph=function(){return this.g},E.Vh=function(){return(this.j&4)!=0},E.$h=function(){return!this.k&&(this.k=new t1),this.k},E.ci=function(i){this.$h().Sk(i),i?this.j|=2:this.j&=-3},E.ei=function(i){this.$h().Uk(i),i?this.j|=4:this.j&=-5},E.ii=function(){return(Mv(),Zn).S},E.i=0,E.j=1,K(tr,"EObjectImpl",516),H(798,516,{110:1,94:1,93:1,58:1,114:1,54:1,99:1},GIe),E.li=function(i){return this.e[i]},E.mi=function(i,l){this.e[i]=l},E.ni=function(i){this.e[i]=null},E.Dh=function(){return this.d},E.Ih=function(i){return Ma(this.d,i)},E.Kh=function(){return this.d},E.Oh=function(){return this.e!=null},E.$h=function(){return!this.k&&(this.k=new MSt),this.k},E.ci=function(i){this.d=i},E.hi=function(){var i;return this.e==null&&(i=kr(this.d),this.e=i==0?hhn:st(zs,Yn,1,i,5,1)),this},E.ji=function(){return 0};var hhn;K(tr,"DynamicEObjectImpl",798),H(1522,798,{110:1,44:1,94:1,93:1,136:1,58:1,114:1,54:1,99:1},l9t),E.Fb=function(i){return this===i},E.Hb=function(){return vE(this)},E.ci=function(i){this.d=i,this.b=vG(i,"key"),this.c=vG(i,BM)},E.Bi=function(){var i;return this.a==-1&&(i=Lfe(this,this.b),this.a=i==null?0:ma(i)),this.a},E.ld=function(){return Lfe(this,this.b)},E.md=function(){return Lfe(this,this.c)},E.Ci=function(i){this.a=i},E.Di=function(i){jNe(this,this.b,i)},E.nd=function(i){var l;return l=Lfe(this,this.c),jNe(this,this.c,i),l},E.a=0,K(tr,"DynamicEObjectImpl/BasicEMapEntry",1522),H(1523,1,{114:1},MSt),E.Mk=function(i){throw _e(new ri)},E.li=function(i){throw _e(new ri)},E.mi=function(i,l){throw _e(new ri)},E.ni=function(i){throw _e(new ri)},E.Nk=function(){throw _e(new ri)},E.Ok=function(){return this.a},E.Pk=function(){return this.b},E.Qk=function(){return this.c},E.Rk=function(){throw _e(new ri)},E.Sk=function(i){throw _e(new ri)},E.Tk=function(i){this.a=i},E.Uk=function(i){this.b=i},E.Vk=function(i){this.c=i},K(tr,"DynamicEObjectImpl/DynamicEPropertiesHolderImpl",1523),H(519,158,{110:1,94:1,93:1,598:1,155:1,58:1,114:1,54:1,99:1,519:1,158:1,119:1,120:1},V6e),E.Ah=function(i){return yDe(this,i)},E.Lh=function(i,l,d){var g;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.d;case 2:return d?(!this.b&&(this.b=new sd((Pn(),nl),_c,this)),this.b):(!this.b&&(this.b=new sd((Pn(),nl),_c,this)),yz(this.b));case 3:return MDt(this);case 4:return!this.a&&(this.a=new gs(_2,this,4)),this.a;case 5:return!this.c&&(this.c=new BT(_2,this,5)),this.c}return lf(this,i-kr((Pn(),ky)),qn((g=v(rr(this,16),29),g||ky),i),l,d)},E.Sh=function(i,l,d){var g,y,x;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d);case 3:return this.Cb&&(d=(y=this.Db>>16,y>=0?yDe(this,d):this.Cb.Th(this,-1-y,null,d))),iNe(this,v(i,155),d)}return x=v(qn((g=v(rr(this,16),29),g||(Pn(),ky)),l),69),x.wk().zk(this,Ru(this),l-kr((Pn(),ky)),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 2:return!this.b&&(this.b=new sd((Pn(),nl),_c,this)),DX(this.b,i,d);case 3:return iNe(this,null,d);case 4:return!this.a&&(this.a=new gs(_2,this,4)),Ko(this.a,i,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),ky)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),ky)),i,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.d!=null;case 2:return!!this.b&&this.b.f!=0;case 3:return!!MDt(this);case 4:return!!this.a&&this.a.i!=0;case 5:return!!this.c&&this.c.i!=0}return sf(this,i-kr((Pn(),ky)),qn((l=v(rr(this,16),29),l||ky),i))},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:nhr(this,ai(l));return;case 2:!this.b&&(this.b=new sd((Pn(),nl),_c,this)),mZ(this.b,l);return;case 3:_Yt(this,v(l,155));return;case 4:!this.a&&(this.a=new gs(_2,this,4)),Gr(this.a),!this.a&&(this.a=new gs(_2,this,4)),Ka(this.a,v(l,16));return;case 5:!this.c&&(this.c=new BT(_2,this,5)),Gr(this.c),!this.c&&(this.c=new BT(_2,this,5)),Ka(this.c,v(l,16));return}df(this,i-kr((Pn(),ky)),qn((d=v(rr(this,16),29),d||ky),i),l)},E.ii=function(){return Pn(),ky},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:v9e(this,null);return;case 2:!this.b&&(this.b=new sd((Pn(),nl),_c,this)),this.b.c.$b();return;case 3:_Yt(this,null);return;case 4:!this.a&&(this.a=new gs(_2,this,4)),Gr(this.a);return;case 5:!this.c&&(this.c=new BT(_2,this,5)),Gr(this.c);return}hf(this,i-kr((Pn(),ky)),qn((l=v(rr(this,16),29),l||ky),i))},E.Ib=function(){return Szt(this)},E.d=null,K(tr,"EAnnotationImpl",519),H(141,721,LUe,uh),E.Gi=function(i,l){vsr(this,i,v(l,44))},E.Wk=function(i,l){return Elr(this,v(i,44),l)},E.$i=function(i){return v(v(this.c,71).$i(i),136)},E.Ii=function(){return v(this.c,71).Ii()},E.Ji=function(){return v(this.c,71).Ji()},E.Ki=function(i){return v(this.c,71).Ki(i)},E.Xk=function(i,l){return DX(this,i,l)},E.Fk=function(i){return v(this.c,79).Fk(i)},E.ak=function(){},E.Qj=function(){return v(this.c,79).Qj()},E.ck=function(i,l,d){var g;return g=v(Cd(this.b).wi().si(this.b),136),g.Ci(i),g.Di(l),g.nd(d),g},E.dk=function(){return new A7e(this)},E.Wb=function(i){mZ(this,i)},E.Gk=function(){v(this.c,79).Gk()},K(Ca,"EcoreEMap",141),H(165,141,LUe,sd),E._j=function(){var i,l,d,g,y,x;if(this.d==null){for(x=st(xKe,OUe,66,2*this.f+1,0,1),d=this.c.Kc();d.e!=d.i.gc();)l=v(d.Yj(),136),g=l.Bi(),y=(g&qi)%x.length,i=x[y],!i&&(i=x[y]=new A7e(this)),i.Fc(l);this.d=x}},K(tr,"EAnnotationImpl/1",165),H(292,448,{110:1,94:1,93:1,155:1,197:1,58:1,114:1,481:1,54:1,99:1,158:1,292:1,119:1,120:1}),E.Lh=function(i,l,d){var g,y;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return Qn(),!!(this.Bb&256);case 3:return Qn(),!!(this.Bb&512);case 4:return Nt(this.s);case 5:return Nt(this.t);case 6:return Qn(),!!this.Jk();case 7:return Qn(),y=this.s,y>=1;case 8:return l?Gf(this):this.r;case 9:return this.q}return lf(this,i-kr(this.ii()),qn((g=v(rr(this,16),29),g||this.ii()),i),l,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 9:return Ode(this,d)}return y=v(qn((g=v(rr(this,16),29),g||this.ii()),l),69),y.wk().Ak(this,Ru(this),l-kr(this.ii()),i,d)},E.Wh=function(i){var l,d;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return(this.Bb&256)==0;case 3:return(this.Bb&512)==0;case 4:return this.s!=0;case 5:return this.t!=1;case 6:return this.Jk();case 7:return d=this.s,d>=1;case 8:return!!this.r&&!this.q.e&&AE(this.q).i==0;case 9:return!!this.q&&!(this.r&&!this.q.e&&AE(this.q).i==0)}return sf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.bi=function(i,l){var d,g;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:this.ui(ai(l));return;case 2:sy(this,Vt(Ht(l)));return;case 3:oy(this,Vt(Ht(l)));return;case 4:ny(this,v(l,17).a);return;case 5:this.Zk(v(l,17).a);return;case 8:U_(this,v(l,142));return;case 9:g=Q1(this,v(l,89),null),g&&g.oj();return}df(this,i-kr(this.ii()),qn((d=v(rr(this,16),29),d||this.ii()),i),l)},E.ii=function(){return Pn(),chn},E.ki=function(i){var l,d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:this.ui(null);return;case 2:sy(this,!0);return;case 3:oy(this,!0);return;case 4:ny(this,0);return;case 5:this.Zk(1);return;case 8:U_(this,null);return;case 9:d=Q1(this,null,null),d&&d.oj();return}hf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.pi=function(){Gf(this),this.Bb|=1},E.Hk=function(){return Gf(this)},E.Ik=function(){return this.t},E.Jk=function(){var i;return i=this.t,i>1||i==-1},E.Si=function(){return(this.Bb&512)!=0},E.Yk=function(i,l){return dLe(this,i,l)},E.Zk=function(i){c4(this,i)},E.Ib=function(){return RMe(this)},E.s=0,E.t=1,K(tr,"ETypedElementImpl",292),H(462,292,{110:1,94:1,93:1,155:1,197:1,58:1,179:1,69:1,114:1,481:1,54:1,99:1,158:1,462:1,292:1,119:1,120:1,692:1}),E.Ah=function(i){return fqt(this,i)},E.Lh=function(i,l,d){var g,y;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return Qn(),!!(this.Bb&256);case 3:return Qn(),!!(this.Bb&512);case 4:return Nt(this.s);case 5:return Nt(this.t);case 6:return Qn(),!!this.Jk();case 7:return Qn(),y=this.s,y>=1;case 8:return l?Gf(this):this.r;case 9:return this.q;case 10:return Qn(),!!(this.Bb&k0);case 11:return Qn(),!!(this.Bb&P4);case 12:return Qn(),!!(this.Bb&R4);case 13:return this.j;case 14:return cI(this);case 15:return Qn(),!!(this.Bb&gh);case 16:return Qn(),!!(this.Bb&ng);case 17:return t4(this)}return lf(this,i-kr(this.ii()),qn((g=v(rr(this,16),29),g||this.ii()),i),l,d)},E.Sh=function(i,l,d){var g,y,x;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d);case 17:return this.Cb&&(d=(y=this.Db>>16,y>=0?fqt(this,d):this.Cb.Th(this,-1-y,null,d))),Od(this,i,17,d)}return x=v(qn((g=v(rr(this,16),29),g||this.ii()),l),69),x.wk().zk(this,Ru(this),l-kr(this.ii()),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 9:return Ode(this,d);case 17:return Od(this,null,17,d)}return y=v(qn((g=v(rr(this,16),29),g||this.ii()),l),69),y.wk().Ak(this,Ru(this),l-kr(this.ii()),i,d)},E.Wh=function(i){var l,d;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return(this.Bb&256)==0;case 3:return(this.Bb&512)==0;case 4:return this.s!=0;case 5:return this.t!=1;case 6:return this.Jk();case 7:return d=this.s,d>=1;case 8:return!!this.r&&!this.q.e&&AE(this.q).i==0;case 9:return!!this.q&&!(this.r&&!this.q.e&&AE(this.q).i==0);case 10:return(this.Bb&k0)==0;case 11:return(this.Bb&P4)!=0;case 12:return(this.Bb&R4)!=0;case 13:return this.j!=null;case 14:return cI(this)!=null;case 15:return(this.Bb&gh)!=0;case 16:return(this.Bb&ng)!=0;case 17:return!!t4(this)}return sf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.bi=function(i,l){var d,g;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:afe(this,ai(l));return;case 2:sy(this,Vt(Ht(l)));return;case 3:oy(this,Vt(Ht(l)));return;case 4:ny(this,v(l,17).a);return;case 5:this.Zk(v(l,17).a);return;case 8:U_(this,v(l,142));return;case 9:g=Q1(this,v(l,89),null),g&&g.oj();return;case 10:Y8(this,Vt(Ht(l)));return;case 11:K8(this,Vt(Ht(l)));return;case 12:j8(this,Vt(Ht(l)));return;case 13:i8e(this,ai(l));return;case 15:W8(this,Vt(Ht(l)));return;case 16:X8(this,Vt(Ht(l)));return}df(this,i-kr(this.ii()),qn((d=v(rr(this,16),29),d||this.ii()),i),l)},E.ii=function(){return Pn(),lhn},E.ki=function(i){var l,d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:$e(this.Cb,90)&&_4($h(v(this.Cb,90)),4),mu(this,null);return;case 2:sy(this,!0);return;case 3:oy(this,!0);return;case 4:ny(this,0);return;case 5:this.Zk(1);return;case 8:U_(this,null);return;case 9:d=Q1(this,null,null),d&&d.oj();return;case 10:Y8(this,!0);return;case 11:K8(this,!1);return;case 12:j8(this,!1);return;case 13:this.i=null,uZ(this,null);return;case 15:W8(this,!1);return;case 16:X8(this,!1);return}hf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.pi=function(){d8(Al((dh(),ko),this)),Gf(this),this.Bb|=1},E.pk=function(){return this.f},E.ik=function(){return cI(this)},E.qk=function(){return t4(this)},E.uk=function(){return null},E.$k=function(){return this.k},E.Lj=function(){return this.n},E.vk=function(){return iJ(this)},E.wk=function(){var i,l,d,g,y,x,T,R,O;return this.p||(d=t4(this),(d.i==null&&tg(d),d.i).length,g=this.uk(),g&&kr(t4(g)),y=Gf(this),T=y.kk(),i=T?T.i&1?T==Wh?rs:T==Wr?Ao:T==g3?VI:T==ao?ws:T==C2?ux:T==lC?hx:T==bh?d6:WM:T:null,l=cI(this),R=y.ik(),mvr(this),this.Bb&ng&&((x=TDe((dh(),ko),d))&&x!=this||(x=Ik(Al(ko,this))))?this.p=new X8t(this,x):this.Jk()?this.al()?g?this.Bb&gh?i?this.bl()?this.p=new A_(47,i,this,g):this.p=new A_(5,i,this,g):this.bl()?this.p=new O_(46,this,g):this.p=new O_(4,this,g):i?this.bl()?this.p=new A_(49,i,this,g):this.p=new A_(7,i,this,g):this.bl()?this.p=new O_(48,this,g):this.p=new O_(6,this,g):this.Bb&gh?i?i==rw?this.p=new Wb(50,Hun,this):this.bl()?this.p=new Wb(43,i,this):this.p=new Wb(1,i,this):this.bl()?this.p=new Xb(42,this):this.p=new Xb(0,this):i?i==rw?this.p=new Wb(41,Hun,this):this.bl()?this.p=new Wb(45,i,this):this.p=new Wb(3,i,this):this.bl()?this.p=new Xb(44,this):this.p=new Xb(2,this):$e(y,156)?i==pre?this.p=new Xb(40,this):this.Bb&512?this.Bb&gh?i?this.p=new Wb(9,i,this):this.p=new Xb(8,this):i?this.p=new Wb(11,i,this):this.p=new Xb(10,this):this.Bb&gh?i?this.p=new Wb(13,i,this):this.p=new Xb(12,this):i?this.p=new Wb(15,i,this):this.p=new Xb(14,this):g?(O=g.t,O>1||O==-1?this.bl()?this.Bb&gh?i?this.p=new A_(25,i,this,g):this.p=new O_(24,this,g):i?this.p=new A_(27,i,this,g):this.p=new O_(26,this,g):this.Bb&gh?i?this.p=new A_(29,i,this,g):this.p=new O_(28,this,g):i?this.p=new A_(31,i,this,g):this.p=new O_(30,this,g):this.bl()?this.Bb&gh?i?this.p=new A_(33,i,this,g):this.p=new O_(32,this,g):i?this.p=new A_(35,i,this,g):this.p=new O_(34,this,g):this.Bb&gh?i?this.p=new A_(37,i,this,g):this.p=new O_(36,this,g):i?this.p=new A_(39,i,this,g):this.p=new O_(38,this,g)):this.bl()?this.Bb&gh?i?this.p=new Wb(17,i,this):this.p=new Xb(16,this):i?this.p=new Wb(19,i,this):this.p=new Xb(18,this):this.Bb&gh?i?this.p=new Wb(21,i,this):this.p=new Xb(20,this):i?this.p=new Wb(23,i,this):this.p=new Xb(22,this):this._k()?this.bl()?this.p=new FOt(v(y,29),this,g):this.p=new VNe(v(y,29),this,g):$e(y,156)?i==pre?this.p=new Xb(40,this):this.Bb&gh?i?this.p=new B9t(l,R,this,(F0e(),T==Wr?UKe:T==Wh?MKe:T==C2?zKe:T==g3?$Ke:T==ao?FKe:T==lC?GKe:T==bh?PKe:T==Tf?BKe:W2e)):this.p=new XLt(v(y,156),l,R,this):i?this.p=new P9t(l,R,this,(F0e(),T==Wr?UKe:T==Wh?MKe:T==C2?zKe:T==g3?$Ke:T==ao?FKe:T==lC?GKe:T==bh?PKe:T==Tf?BKe:W2e)):this.p=new KLt(v(y,156),l,R,this):this.al()?g?this.Bb&gh?this.bl()?this.p=new UOt(v(y,29),this,g):this.p=new IIe(v(y,29),this,g):this.bl()?this.p=new $Ot(v(y,29),this,g):this.p=new ude(v(y,29),this,g):this.Bb&gh?this.bl()?this.p=new PNt(v(y,29),this):this.p=new H8e(v(y,29),this):this.bl()?this.p=new MNt(v(y,29),this):this.p=new Qhe(v(y,29),this):this.bl()?g?this.Bb&gh?this.p=new zOt(v(y,29),this,g):this.p=new kIe(v(y,29),this,g):this.Bb&gh?this.p=new BNt(v(y,29),this):this.p=new V8e(v(y,29),this):g?this.Bb&gh?this.p=new GOt(v(y,29),this,g):this.p=new RIe(v(y,29),this,g):this.Bb&gh?this.p=new FNt(v(y,29),this):this.p=new QX(v(y,29),this)),this.p},E.rk=function(){return(this.Bb&k0)!=0},E._k=function(){return!1},E.al=function(){return!1},E.sk=function(){return(this.Bb&ng)!=0},E.xk=function(){return Dfe(this)},E.bl=function(){return!1},E.tk=function(){return(this.Bb&gh)!=0},E.cl=function(i){this.k=i},E.ui=function(i){afe(this,i)},E.Ib=function(){return TJ(this)},E.e=!1,E.n=0,K(tr,"EStructuralFeatureImpl",462),H(331,462,{110:1,94:1,93:1,35:1,155:1,197:1,58:1,179:1,69:1,114:1,481:1,54:1,99:1,331:1,158:1,462:1,292:1,119:1,120:1,692:1},Nue),E.Lh=function(i,l,d){var g,y;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return Qn(),!!(this.Bb&256);case 3:return Qn(),!!(this.Bb&512);case 4:return Nt(this.s);case 5:return Nt(this.t);case 6:return Qn(),!!xMe(this);case 7:return Qn(),y=this.s,y>=1;case 8:return l?Gf(this):this.r;case 9:return this.q;case 10:return Qn(),!!(this.Bb&k0);case 11:return Qn(),!!(this.Bb&P4);case 12:return Qn(),!!(this.Bb&R4);case 13:return this.j;case 14:return cI(this);case 15:return Qn(),!!(this.Bb&gh);case 16:return Qn(),!!(this.Bb&ng);case 17:return t4(this);case 18:return Qn(),!!(this.Bb&Sc);case 19:return l?i0e(this):JPt(this)}return lf(this,i-kr((Pn(),d3)),qn((g=v(rr(this,16),29),g||d3),i),l,d)},E.Wh=function(i){var l,d;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return(this.Bb&256)==0;case 3:return(this.Bb&512)==0;case 4:return this.s!=0;case 5:return this.t!=1;case 6:return xMe(this);case 7:return d=this.s,d>=1;case 8:return!!this.r&&!this.q.e&&AE(this.q).i==0;case 9:return!!this.q&&!(this.r&&!this.q.e&&AE(this.q).i==0);case 10:return(this.Bb&k0)==0;case 11:return(this.Bb&P4)!=0;case 12:return(this.Bb&R4)!=0;case 13:return this.j!=null;case 14:return cI(this)!=null;case 15:return(this.Bb&gh)!=0;case 16:return(this.Bb&ng)!=0;case 17:return!!t4(this);case 18:return(this.Bb&Sc)!=0;case 19:return!!JPt(this)}return sf(this,i-kr((Pn(),d3)),qn((l=v(rr(this,16),29),l||d3),i))},E.bi=function(i,l){var d,g;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:afe(this,ai(l));return;case 2:sy(this,Vt(Ht(l)));return;case 3:oy(this,Vt(Ht(l)));return;case 4:ny(this,v(l,17).a);return;case 5:m7t(this,v(l,17).a);return;case 8:U_(this,v(l,142));return;case 9:g=Q1(this,v(l,89),null),g&&g.oj();return;case 10:Y8(this,Vt(Ht(l)));return;case 11:K8(this,Vt(Ht(l)));return;case 12:j8(this,Vt(Ht(l)));return;case 13:i8e(this,ai(l));return;case 15:W8(this,Vt(Ht(l)));return;case 16:X8(this,Vt(Ht(l)));return;case 18:I0e(this,Vt(Ht(l)));return}df(this,i-kr((Pn(),d3)),qn((d=v(rr(this,16),29),d||d3),i),l)},E.ii=function(){return Pn(),d3},E.ki=function(i){var l,d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:$e(this.Cb,90)&&_4($h(v(this.Cb,90)),4),mu(this,null);return;case 2:sy(this,!0);return;case 3:oy(this,!0);return;case 4:ny(this,0);return;case 5:this.b=0,c4(this,1);return;case 8:U_(this,null);return;case 9:d=Q1(this,null,null),d&&d.oj();return;case 10:Y8(this,!0);return;case 11:K8(this,!1);return;case 12:j8(this,!1);return;case 13:this.i=null,uZ(this,null);return;case 15:W8(this,!1);return;case 16:X8(this,!1);return;case 18:I0e(this,!1);return}hf(this,i-kr((Pn(),d3)),qn((l=v(rr(this,16),29),l||d3),i))},E.pi=function(){i0e(this),d8(Al((dh(),ko),this)),Gf(this),this.Bb|=1},E.Jk=function(){return xMe(this)},E.Yk=function(i,l){return this.b=0,this.a=null,dLe(this,i,l)},E.Zk=function(i){m7t(this,i)},E.Ib=function(){var i;return this.Db&64?TJ(this):(i=new Ff(TJ(this)),i.a+=" (iD: ",Hb(i,(this.Bb&Sc)!=0),i.a+=")",i.a)},E.b=0,K(tr,"EAttributeImpl",331),H(364,448,{110:1,94:1,93:1,142:1,155:1,197:1,58:1,114:1,54:1,99:1,364:1,158:1,119:1,120:1,691:1}),E.dl=function(i){return i.Dh()==this},E.Ah=function(i){return c1e(this,i)},E.Bh=function(i,l){this.w=null,this.Db=l<<16|this.Db&255,this.Cb=i},E.Lh=function(i,l,d){var g;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return this.D!=null?this.D:this.B;case 3:return WE(this);case 4:return this.ik();case 5:return this.F;case 6:return l?Cd(this):g8(this);case 7:return!this.A&&(this.A=new sh(Mu,this,7)),this.A}return lf(this,i-kr(this.ii()),qn((g=v(rr(this,16),29),g||this.ii()),i),l,d)},E.Sh=function(i,l,d){var g,y,x;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d);case 6:return this.Cb&&(d=(y=this.Db>>16,y>=0?c1e(this,d):this.Cb.Th(this,-1-y,null,d))),Od(this,i,6,d)}return x=v(qn((g=v(rr(this,16),29),g||this.ii()),l),69),x.wk().zk(this,Ru(this),l-kr(this.ii()),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 6:return Od(this,null,6,d);case 7:return!this.A&&(this.A=new sh(Mu,this,7)),Ko(this.A,i,d)}return y=v(qn((g=v(rr(this,16),29),g||this.ii()),l),69),y.wk().Ak(this,Ru(this),l-kr(this.ii()),i,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return this.D!=null&&this.D==this.F;case 3:return!!WE(this);case 4:return this.ik()!=null;case 5:return this.F!=null&&this.F!=this.D&&this.F!=this.B;case 6:return!!g8(this);case 7:return!!this.A&&this.A.i!=0}return sf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:CQ(this,ai(l));return;case 2:Bhe(this,ai(l));return;case 5:mI(this,ai(l));return;case 7:!this.A&&(this.A=new sh(Mu,this,7)),Gr(this.A),!this.A&&(this.A=new sh(Mu,this,7)),Ka(this.A,v(l,16));return}df(this,i-kr(this.ii()),qn((d=v(rr(this,16),29),d||this.ii()),i),l)},E.ii=function(){return Pn(),nhn},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:$e(this.Cb,184)&&(v(this.Cb,184).tb=null),mu(this,null);return;case 2:q8(this,null),k8(this,this.D);return;case 5:mI(this,null);return;case 7:!this.A&&(this.A=new sh(Mu,this,7)),Gr(this.A);return}hf(this,i-kr(this.ii()),qn((l=v(rr(this,16),29),l||this.ii()),i))},E.hk=function(){var i;return this.G==-1&&(this.G=(i=Cd(this),i?uy(i.vi(),this):-1)),this.G},E.ik=function(){return null},E.jk=function(){return Cd(this)},E.el=function(){return this.v},E.kk=function(){return WE(this)},E.lk=function(){return this.D!=null?this.D:this.B},E.mk=function(){return this.F},E.fk=function(i){return J1e(this,i)},E.fl=function(i){this.v=i},E.gl=function(i){B$t(this,i)},E.hl=function(i){this.C=i},E.ui=function(i){CQ(this,i)},E.Ib=function(){return DZ(this)},E.C=null,E.D=null,E.G=-1,K(tr,"EClassifierImpl",364),H(90,364,{110:1,94:1,93:1,29:1,142:1,155:1,197:1,58:1,114:1,54:1,99:1,90:1,364:1,158:1,482:1,119:1,120:1,691:1},K6e),E.dl=function(i){return alr(this,i.Dh())},E.Lh=function(i,l,d){var g;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return this.D!=null?this.D:this.B;case 3:return WE(this);case 4:return null;case 5:return this.F;case 6:return l?Cd(this):g8(this);case 7:return!this.A&&(this.A=new sh(Mu,this,7)),this.A;case 8:return Qn(),!!(this.Bb&256);case 9:return Qn(),!!(this.Bb&512);case 10:return Fl(this);case 11:return!this.q&&(this.q=new vt(e0,this,11,10)),this.q;case 12:return u5(this);case 13:return hM(this);case 14:return hM(this),this.r;case 15:return u5(this),this.k;case 16:return dMe(this);case 17:return rpe(this);case 18:return tg(this);case 19:return mJ(this);case 20:return u5(this),this.o;case 21:return!this.s&&(this.s=new vt(Ju,this,21,17)),this.s;case 22:return Uc(this);case 23:return q1e(this)}return lf(this,i-kr((Pn(),E2)),qn((g=v(rr(this,16),29),g||E2),i),l,d)},E.Sh=function(i,l,d){var g,y,x;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d);case 6:return this.Cb&&(d=(y=this.Db>>16,y>=0?c1e(this,d):this.Cb.Th(this,-1-y,null,d))),Od(this,i,6,d);case 11:return!this.q&&(this.q=new vt(e0,this,11,10)),bu(this.q,i,d);case 21:return!this.s&&(this.s=new vt(Ju,this,21,17)),bu(this.s,i,d)}return x=v(qn((g=v(rr(this,16),29),g||(Pn(),E2)),l),69),x.wk().zk(this,Ru(this),l-kr((Pn(),E2)),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 6:return Od(this,null,6,d);case 7:return!this.A&&(this.A=new sh(Mu,this,7)),Ko(this.A,i,d);case 11:return!this.q&&(this.q=new vt(e0,this,11,10)),Ko(this.q,i,d);case 21:return!this.s&&(this.s=new vt(Ju,this,21,17)),Ko(this.s,i,d);case 22:return Ko(Uc(this),i,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),E2)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),E2)),i,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return this.D!=null&&this.D==this.F;case 3:return!!WE(this);case 4:return!1;case 5:return this.F!=null&&this.F!=this.D&&this.F!=this.B;case 6:return!!g8(this);case 7:return!!this.A&&this.A.i!=0;case 8:return(this.Bb&256)!=0;case 9:return(this.Bb&512)!=0;case 10:return!!this.u&&Uc(this.u.a).i!=0&&!(this.n&&Z0e(this.n));case 11:return!!this.q&&this.q.i!=0;case 12:return u5(this).i!=0;case 13:return hM(this).i!=0;case 14:return hM(this),this.r.i!=0;case 15:return u5(this),this.k.i!=0;case 16:return dMe(this).i!=0;case 17:return rpe(this).i!=0;case 18:return tg(this).i!=0;case 19:return mJ(this).i!=0;case 20:return u5(this),!!this.o;case 21:return!!this.s&&this.s.i!=0;case 22:return!!this.n&&Z0e(this.n);case 23:return q1e(this).i!=0}return sf(this,i-kr((Pn(),E2)),qn((l=v(rr(this,16),29),l||E2),i))},E.Zh=function(i){var l;return l=this.i==null||this.q&&this.q.i!=0?null:vG(this,i),l||WPe(this,i)},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:CQ(this,ai(l));return;case 2:Bhe(this,ai(l));return;case 5:mI(this,ai(l));return;case 7:!this.A&&(this.A=new sh(Mu,this,7)),Gr(this.A),!this.A&&(this.A=new sh(Mu,this,7)),Ka(this.A,v(l,16));return;case 8:fLe(this,Vt(Ht(l)));return;case 9:pLe(this,Vt(Ht(l)));return;case 10:pM(Fl(this)),Ka(Fl(this),v(l,16));return;case 11:!this.q&&(this.q=new vt(e0,this,11,10)),Gr(this.q),!this.q&&(this.q=new vt(e0,this,11,10)),Ka(this.q,v(l,16));return;case 21:!this.s&&(this.s=new vt(Ju,this,21,17)),Gr(this.s),!this.s&&(this.s=new vt(Ju,this,21,17)),Ka(this.s,v(l,16));return;case 22:Gr(Uc(this)),Ka(Uc(this),v(l,16));return}df(this,i-kr((Pn(),E2)),qn((d=v(rr(this,16),29),d||E2),i),l)},E.ii=function(){return Pn(),E2},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:$e(this.Cb,184)&&(v(this.Cb,184).tb=null),mu(this,null);return;case 2:q8(this,null),k8(this,this.D);return;case 5:mI(this,null);return;case 7:!this.A&&(this.A=new sh(Mu,this,7)),Gr(this.A);return;case 8:fLe(this,!1);return;case 9:pLe(this,!1);return;case 10:this.u&&pM(this.u);return;case 11:!this.q&&(this.q=new vt(e0,this,11,10)),Gr(this.q);return;case 21:!this.s&&(this.s=new vt(Ju,this,21,17)),Gr(this.s);return;case 22:this.n&&Gr(this.n);return}hf(this,i-kr((Pn(),E2)),qn((l=v(rr(this,16),29),l||E2),i))},E.pi=function(){var i,l;if(u5(this),hM(this),dMe(this),rpe(this),tg(this),mJ(this),q1e(this),_D(Nur($h(this))),this.s)for(i=0,l=this.s.i;i=0;--l)ze(this,l);return FLe(this,i)},E.Gk=function(){Gr(this)},E.Zi=function(i,l){return a$t(this,i,l)},K(Ca,"EcoreEList",632),H(505,632,Xl,QU),E.Li=function(){return!1},E.Lj=function(){return this.c},E.Mj=function(){return!1},E.ol=function(){return!0},E.Si=function(){return!0},E.Wi=function(i,l){return l},E.Yi=function(){return!1},E.c=0,K(Ca,"EObjectEList",505),H(83,505,Xl,gs),E.Mj=function(){return!0},E.ml=function(){return!1},E.al=function(){return!0},K(Ca,"EObjectContainmentEList",83),H(555,83,Xl,TX),E.Ni=function(){this.b=!0},E.Qj=function(){return this.b},E.Gk=function(){var i;Gr(this),id(this.e)?(i=this.b,this.b=!1,Vi(this.e,new E0(this.e,2,this.c,i,!1))):this.b=!1},E.b=!1,K(Ca,"EObjectContainmentEList/Unsettable",555),H(1161,555,Xl,D9t),E.Ti=function(i,l){var d,g;return d=v($D(this,i,l),89),id(this.e)&&$R(this,new vz(this.a,7,(Pn(),rhn),Nt(l),(g=d.c,$e(g,90)?v(g,29):n0),i)),d},E.Uj=function(i,l){return Zvr(this,v(i,89),l)},E.Vj=function(i,l){return Qvr(this,v(i,89),l)},E.Wj=function(i,l,d){return tEr(this,v(i,89),v(l,89),d)},E.Ij=function(i,l,d,g,y){switch(i){case 3:return pD(this,i,l,d,g,this.i>1);case 5:return pD(this,i,l,d,g,this.i-v(d,15).gc()>0);default:return new Vm(this.e,i,this.c,l,d,g,!0)}},E.Tj=function(){return!0},E.Qj=function(){return Z0e(this)},E.Gk=function(){Gr(this)},K(tr,"EClassImpl/1",1161),H(1175,1174,NUe),E.dj=function(i){var l,d,g,y,x,T,R;if(d=i.gj(),d!=8){if(g=L2r(i),g==0)switch(d){case 1:case 9:{R=i.kj(),R!=null&&(l=$h(v(R,482)),!l.c&&(l.c=new OR),WQ(l.c,i.jj())),T=i.ij(),T!=null&&(y=v(T,482),y.Bb&1||(l=$h(y),!l.c&&(l.c=new OR),Yr(l.c,v(i.jj(),29))));break}case 3:{T=i.ij(),T!=null&&(y=v(T,482),y.Bb&1||(l=$h(y),!l.c&&(l.c=new OR),Yr(l.c,v(i.jj(),29))));break}case 5:{if(T=i.ij(),T!=null)for(x=v(T,16).Kc();x.Ob();)y=v(x.Pb(),482),y.Bb&1||(l=$h(y),!l.c&&(l.c=new OR),Yr(l.c,v(i.jj(),29)));break}case 4:{R=i.kj(),R!=null&&(y=v(R,482),y.Bb&1||(l=$h(y),!l.c&&(l.c=new OR),WQ(l.c,i.jj())));break}case 6:{if(R=i.kj(),R!=null)for(x=v(R,16).Kc();x.Ob();)y=v(x.Pb(),482),y.Bb&1||(l=$h(y),!l.c&&(l.c=new OR),WQ(l.c,i.jj()));break}}this.ql(g)}},E.ql=function(i){sjt(this,i)},E.b=63,K(tr,"ESuperAdapter",1175),H(1176,1175,NUe,Dkt),E.ql=function(i){_4(this,i)},K(tr,"EClassImpl/10",1176),H(1165,710,Xl),E.Ei=function(i,l){return w1e(this,i,l)},E.Fi=function(i){return KGt(this,i)},E.Gi=function(i,l){Yz(this,i,l)},E.Hi=function(i){gz(this,i)},E.$i=function(i){return qOe(this,i)},E.Xi=function(i,l){return Mfe(this,i,l)},E.Wk=function(i,l){throw _e(new ri)},E.Ii=function(){return new mk(this)},E.Ji=function(){return new $U(this)},E.Ki=function(i){return Nz(this,i)},E.Xk=function(i,l){throw _e(new ri)},E.Fk=function(i){return this},E.Qj=function(){return this.i!=0},E.Wb=function(i){throw _e(new ri)},E.Gk=function(){throw _e(new ri)},K(Ca,"EcoreEList/UnmodifiableEList",1165),H(328,1165,Xl,NT),E.Yi=function(){return!1},K(Ca,"EcoreEList/UnmodifiableEList/FastCompare",328),H(1168,328,Xl,IUt),E.dd=function(i){var l,d,g;if($e(i,179)&&(l=v(i,179),d=l.Lj(),d!=-1)){for(g=this.i;d4)if(this.fk(i)){if(this.al()){if(g=v(i,54),d=g.Eh(),R=d==this.b&&(this.ml()?g.yh(g.Fh(),v(qn(Vu(this.b),this.Lj()).Hk(),29).kk())==sl(v(qn(Vu(this.b),this.Lj()),19)).n:-1-g.Fh()==this.Lj()),this.nl()&&!R&&!d&&g.Jh()){for(y=0;y1||g==-1)):!1},E.ml=function(){var i,l,d;return l=qn(Vu(this.b),this.Lj()),$e(l,102)?(i=v(l,19),d=sl(i),!!d):!1},E.nl=function(){var i,l;return l=qn(Vu(this.b),this.Lj()),$e(l,102)?(i=v(l,19),(i.Bb&el)!=0):!1},E.dd=function(i){var l,d,g,y;if(g=this.zj(i),g>=0)return g;if(this.ol()){for(d=0,y=this.Ej();d=0;--i)RG(this,i,this.xj(i));return this.Fj()},E.Qc=function(i){var l;if(this.nl())for(l=this.Ej()-1;l>=0;--l)RG(this,l,this.xj(l));return this.Gj(i)},E.Gk=function(){pM(this)},E.Zi=function(i,l){return PBt(this,i,l)},K(Ca,"DelegatingEcoreEList",756),H(1171,756,MUe,XNt),E.qj=function(i,l){Ror(this,i,v(l,29))},E.rj=function(i){msr(this,v(i,29))},E.xj=function(i){var l,d;return l=v(ze(Uc(this.a),i),89),d=l.c,$e(d,90)?v(d,29):(Pn(),n0)},E.Cj=function(i){var l,d;return l=v(x4(Uc(this.a),i),89),d=l.c,$e(d,90)?v(d,29):(Pn(),n0)},E.Dj=function(i,l){return C_r(this,i,v(l,29))},E.Li=function(){return!1},E.Ij=function(i,l,d,g,y){return null},E.sj=function(){return new Bkt(this)},E.tj=function(){Gr(Uc(this.a))},E.uj=function(i){return Czt(this,i)},E.vj=function(i){var l,d;for(d=i.Kc();d.Ob();)if(l=d.Pb(),!Czt(this,l))return!1;return!0},E.wj=function(i){var l,d,g;if($e(i,15)&&(g=v(i,15),g.gc()==Uc(this.a).i)){for(l=g.Kc(),d=new mr(this);l.Ob();)if(Ze(l.Pb())!==Ze(wr(d)))return!1;return!0}return!1},E.yj=function(){var i,l,d,g,y;for(d=1,l=new mr(Uc(this.a));l.e!=l.i.gc();)i=v(wr(l),89),g=(y=i.c,$e(y,90)?v(y,29):(Pn(),n0)),d=31*d+(g?vE(g):0);return d},E.zj=function(i){var l,d,g,y;for(g=0,d=new mr(Uc(this.a));d.e!=d.i.gc();){if(l=v(wr(d),89),Ze(i)===Ze((y=l.c,$e(y,90)?v(y,29):(Pn(),n0))))return g;++g}return-1},E.Aj=function(){return Uc(this.a).i==0},E.Bj=function(){return null},E.Ej=function(){return Uc(this.a).i},E.Fj=function(){var i,l,d,g,y,x;for(x=Uc(this.a).i,y=st(zs,Yn,1,x,5,1),d=0,l=new mr(Uc(this.a));l.e!=l.i.gc();)i=v(wr(l),89),y[d++]=(g=i.c,$e(g,90)?v(g,29):(Pn(),n0));return y},E.Gj=function(i){var l,d,g,y,x,T,R;for(R=Uc(this.a).i,i.lengthR&&Ga(i,R,null),g=0,d=new mr(Uc(this.a));d.e!=d.i.gc();)l=v(wr(d),89),x=(T=l.c,$e(T,90)?v(T,29):(Pn(),n0)),Ga(i,g++,x);return i},E.Hj=function(){var i,l,d,g,y;for(y=new qb,y.a+="[",i=Uc(this.a),l=0,g=Uc(this.a).i;l>16,y>=0?c1e(this,d):this.Cb.Th(this,-1-y,null,d))),Od(this,i,6,d);case 9:return!this.a&&(this.a=new vt(hb,this,9,5)),bu(this.a,i,d)}return x=v(qn((g=v(rr(this,16),29),g||(Pn(),x2)),l),69),x.wk().zk(this,Ru(this),l-kr((Pn(),x2)),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 6:return Od(this,null,6,d);case 7:return!this.A&&(this.A=new sh(Mu,this,7)),Ko(this.A,i,d);case 9:return!this.a&&(this.a=new vt(hb,this,9,5)),Ko(this.a,i,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),x2)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),x2)),i,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return this.D!=null&&this.D==this.F;case 3:return!!WE(this);case 4:return!!tLe(this);case 5:return this.F!=null&&this.F!=this.D&&this.F!=this.B;case 6:return!!g8(this);case 7:return!!this.A&&this.A.i!=0;case 8:return(this.Bb&256)==0;case 9:return!!this.a&&this.a.i!=0}return sf(this,i-kr((Pn(),x2)),qn((l=v(rr(this,16),29),l||x2),i))},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:CQ(this,ai(l));return;case 2:Bhe(this,ai(l));return;case 5:mI(this,ai(l));return;case 7:!this.A&&(this.A=new sh(Mu,this,7)),Gr(this.A),!this.A&&(this.A=new sh(Mu,this,7)),Ka(this.A,v(l,16));return;case 8:kZ(this,Vt(Ht(l)));return;case 9:!this.a&&(this.a=new vt(hb,this,9,5)),Gr(this.a),!this.a&&(this.a=new vt(hb,this,9,5)),Ka(this.a,v(l,16));return}df(this,i-kr((Pn(),x2)),qn((d=v(rr(this,16),29),d||x2),i),l)},E.ii=function(){return Pn(),x2},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:$e(this.Cb,184)&&(v(this.Cb,184).tb=null),mu(this,null);return;case 2:q8(this,null),k8(this,this.D);return;case 5:mI(this,null);return;case 7:!this.A&&(this.A=new sh(Mu,this,7)),Gr(this.A);return;case 8:kZ(this,!0);return;case 9:!this.a&&(this.a=new vt(hb,this,9,5)),Gr(this.a);return}hf(this,i-kr((Pn(),x2)),qn((l=v(rr(this,16),29),l||x2),i))},E.pi=function(){var i,l;if(this.a)for(i=0,l=this.a.i;i>16==5?v(this.Cb,685):null}return lf(this,i-kr((Pn(),Ry)),qn((g=v(rr(this,16),29),g||Ry),i),l,d)},E.Sh=function(i,l,d){var g,y,x;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d);case 5:return this.Cb&&(d=(y=this.Db>>16,y>=0?Eqt(this,d):this.Cb.Th(this,-1-y,null,d))),Od(this,i,5,d)}return x=v(qn((g=v(rr(this,16),29),g||(Pn(),Ry)),l),69),x.wk().zk(this,Ru(this),l-kr((Pn(),Ry)),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 5:return Od(this,null,5,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),Ry)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),Ry)),i,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return this.d!=0;case 3:return!!this.b;case 4:return this.c!=null;case 5:return!!(this.Db>>16==5&&v(this.Cb,685))}return sf(this,i-kr((Pn(),Ry)),qn((l=v(rr(this,16),29),l||Ry),i))},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:mu(this,ai(l));return;case 2:zfe(this,v(l,17).a);return;case 3:vVt(this,v(l,2039));return;case 4:qfe(this,ai(l));return}df(this,i-kr((Pn(),Ry)),qn((d=v(rr(this,16),29),d||Ry),i),l)},E.ii=function(){return Pn(),Ry},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:mu(this,null);return;case 2:zfe(this,0);return;case 3:vVt(this,null);return;case 4:qfe(this,null);return}hf(this,i-kr((Pn(),Ry)),qn((l=v(rr(this,16),29),l||Ry),i))},E.Ib=function(){var i;return i=this.c,i??this.zb},E.b=null,E.c=null,E.d=0,K(tr,"EEnumLiteralImpl",582);var iIr=$a(tr,"EFactoryImpl/InternalEDateTimeFormat");H(499,1,{2114:1},oU),K(tr,"EFactoryImpl/1ClientInternalEDateTimeFormat",499),H(248,120,{110:1,94:1,93:1,89:1,58:1,114:1,54:1,99:1,248:1,119:1,120:1},iE),E.Ch=function(i,l,d){var g;return d=Od(this,i,l,d),this.e&&$e(i,179)&&(g=gJ(this,this.e),g!=this.c&&(d=bI(this,g,d))),d},E.Lh=function(i,l,d){var g;switch(i){case 0:return this.f;case 1:return!this.d&&(this.d=new gs(pl,this,1)),this.d;case 2:return l?kJ(this):this.c;case 3:return this.b;case 4:return this.e;case 5:return l?t1e(this):this.a}return lf(this,i-kr((Pn(),Ix)),qn((g=v(rr(this,16),29),g||Ix),i),l,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return fzt(this,null,d);case 1:return!this.d&&(this.d=new gs(pl,this,1)),Ko(this.d,i,d);case 3:return pzt(this,null,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),Ix)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),Ix)),i,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.f;case 1:return!!this.d&&this.d.i!=0;case 2:return!!this.c;case 3:return!!this.b;case 4:return!!this.e;case 5:return!!this.a}return sf(this,i-kr((Pn(),Ix)),qn((l=v(rr(this,16),29),l||Ix),i))},E.bi=function(i,l){var d;switch(i){case 0:zqt(this,v(l,89));return;case 1:!this.d&&(this.d=new gs(pl,this,1)),Gr(this.d),!this.d&&(this.d=new gs(pl,this,1)),Ka(this.d,v(l,16));return;case 3:LDe(this,v(l,89));return;case 4:ZDe(this,v(l,850));return;case 5:x8(this,v(l,142));return}df(this,i-kr((Pn(),Ix)),qn((d=v(rr(this,16),29),d||Ix),i),l)},E.ii=function(){return Pn(),Ix},E.ki=function(i){var l;switch(i){case 0:zqt(this,null);return;case 1:!this.d&&(this.d=new gs(pl,this,1)),Gr(this.d);return;case 3:LDe(this,null);return;case 4:ZDe(this,null);return;case 5:x8(this,null);return}hf(this,i-kr((Pn(),Ix)),qn((l=v(rr(this,16),29),l||Ix),i))},E.Ib=function(){var i;return i=new Ed(T0(this)),i.a+=" (expression: ",cpe(this,i),i.a+=")",i.a};var DKe;K(tr,"EGenericTypeImpl",248),H(2067,2062,Pee),E.Gi=function(i,l){jNt(this,i,l)},E.Wk=function(i,l){return jNt(this,this.gc(),i),l},E.$i=function(i){return gf(this.pj(),i)},E.Ii=function(){return this.Ji()},E.pj=function(){return new zkt(this)},E.Ji=function(){return this.Ki(0)},E.Ki=function(i){return this.pj().fd(i)},E.Xk=function(i,l){return f4(this,i,!0),l},E.Ti=function(i,l){var d,g;return g=d1e(this,l),d=this.fd(i),d.Rb(g),g},E.Ui=function(i,l){var d;f4(this,l,!0),d=this.fd(i),d.Rb(l)},K(Ca,"AbstractSequentialInternalEList",2067),H(496,2067,Pee,FU),E.$i=function(i){return gf(this.pj(),i)},E.Ii=function(){return this.b==null?(Yb(),Yb(),TH):this.sl()},E.pj=function(){return new dIt(this.a,this.b)},E.Ji=function(){return this.b==null?(Yb(),Yb(),TH):this.sl()},E.Ki=function(i){var l,d;if(this.b==null){if(i<0||i>1)throw _e(new Sl(FM+i+", size=0"));return Yb(),Yb(),TH}for(d=this.sl(),l=0;l0;)if(l=this.c[--this.d],(!this.e||l.pk()!=CN||l.Lj()!=0)&&(!this.vl()||this.b.Xh(l))){if(x=this.b.Nh(l,this.ul()),this.f=(al(),v(l,69).xk()),this.f||l.Jk()){if(this.ul()?(g=v(x,15),this.k=g):(g=v(x,71),this.k=this.j=g),$e(this.k,59)?(this.o=this.k.gc(),this.n=this.o):this.p=this.j?this.j.Ki(this.k.gc()):this.k.fd(this.k.gc()),this.p?MHt(this,this.p):YHt(this))return y=this.p?this.p.Ub():this.j?this.j.$i(--this.n):this.k.Xb(--this.n),this.f?(i=v(y,76),i.Lk(),d=i.md(),this.i=d):(d=y,this.i=d),this.g=-3,!0}else if(x!=null)return this.k=null,this.p=null,d=x,this.i=d,this.g=-2,!0}return this.k=null,this.p=null,this.g=-1,!1}else return y=this.p?this.p.Ub():this.j?this.j.$i(--this.n):this.k.Xb(--this.n),this.f?(i=v(y,76),i.Lk(),d=i.md(),this.i=d):(d=y,this.i=d),this.g=-3,!0}},E.Pb=function(){return vZ(this)},E.Tb=function(){return this.a},E.Ub=function(){var i;if(this.g<-1||this.Sb())return--this.a,this.g=0,i=this.i,this.Sb(),i;throw _e(new ec)},E.Vb=function(){return this.a-1},E.Qb=function(){throw _e(new ri)},E.ul=function(){return!1},E.Wb=function(i){throw _e(new ri)},E.vl=function(){return!0},E.a=0,E.d=0,E.f=!1,E.g=0,E.n=0,E.o=0;var TH;K(Ca,"EContentsEList/FeatureIteratorImpl",287),H(711,287,Bee,q8e),E.ul=function(){return!0},K(Ca,"EContentsEList/ResolvingFeatureIteratorImpl",711),H(1178,711,Bee,ONt),E.vl=function(){return!1},K(tr,"ENamedElementImpl/1/1",1178),H(1179,287,Bee,LNt),E.vl=function(){return!1},K(tr,"ENamedElementImpl/1/2",1179),H(39,152,oq,i4,dfe,js,Afe,Vm,E0,n9e,dMt,r9e,fMt,_Oe,pMt,s9e,gMt,wOe,mMt,i9e,bMt,oD,vz,jde,a9e,yMt,EOe,vMt),E.Kj=function(){return $Oe(this)},E.Rj=function(){var i;return i=$Oe(this),i?i.ik():null},E.hj=function(i){return this.b==-1&&this.a&&(this.b=this.c.Hh(this.a.Lj(),this.a.pk())),this.c.yh(this.b,i)},E.jj=function(){return this.c},E.Sj=function(){var i;return i=$Oe(this),i?i.tk():!1},E.b=-1,K(tr,"ENotificationImpl",39),H(411,292,{110:1,94:1,93:1,155:1,197:1,58:1,62:1,114:1,481:1,54:1,99:1,158:1,411:1,292:1,119:1,120:1},Oue),E.Ah=function(i){return Tqt(this,i)},E.Lh=function(i,l,d){var g,y,x;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return Qn(),!!(this.Bb&256);case 3:return Qn(),!!(this.Bb&512);case 4:return Nt(this.s);case 5:return Nt(this.t);case 6:return Qn(),x=this.t,x>1||x==-1;case 7:return Qn(),y=this.s,y>=1;case 8:return l?Gf(this):this.r;case 9:return this.q;case 10:return this.Db>>16==10?v(this.Cb,29):null;case 11:return!this.d&&(this.d=new sh(Mu,this,11)),this.d;case 12:return!this.c&&(this.c=new vt(Rx,this,12,10)),this.c;case 13:return!this.a&&(this.a=new qU(this,this)),this.a;case 14:return Uh(this)}return lf(this,i-kr((Pn(),Iy)),qn((g=v(rr(this,16),29),g||Iy),i),l,d)},E.Sh=function(i,l,d){var g,y,x;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d);case 10:return this.Cb&&(d=(y=this.Db>>16,y>=0?Tqt(this,d):this.Cb.Th(this,-1-y,null,d))),Od(this,i,10,d);case 12:return!this.c&&(this.c=new vt(Rx,this,12,10)),bu(this.c,i,d)}return x=v(qn((g=v(rr(this,16),29),g||(Pn(),Iy)),l),69),x.wk().zk(this,Ru(this),l-kr((Pn(),Iy)),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 9:return Ode(this,d);case 10:return Od(this,null,10,d);case 11:return!this.d&&(this.d=new sh(Mu,this,11)),Ko(this.d,i,d);case 12:return!this.c&&(this.c=new vt(Rx,this,12,10)),Ko(this.c,i,d);case 14:return Ko(Uh(this),i,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),Iy)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),Iy)),i,d)},E.Wh=function(i){var l,d,g;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return(this.Bb&256)==0;case 3:return(this.Bb&512)==0;case 4:return this.s!=0;case 5:return this.t!=1;case 6:return g=this.t,g>1||g==-1;case 7:return d=this.s,d>=1;case 8:return!!this.r&&!this.q.e&&AE(this.q).i==0;case 9:return!!this.q&&!(this.r&&!this.q.e&&AE(this.q).i==0);case 10:return!!(this.Db>>16==10&&v(this.Cb,29));case 11:return!!this.d&&this.d.i!=0;case 12:return!!this.c&&this.c.i!=0;case 13:return!!this.a&&Uh(this.a.a).i!=0&&!(this.b&&J0e(this.b));case 14:return!!this.b&&J0e(this.b)}return sf(this,i-kr((Pn(),Iy)),qn((l=v(rr(this,16),29),l||Iy),i))},E.bi=function(i,l){var d,g;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:mu(this,ai(l));return;case 2:sy(this,Vt(Ht(l)));return;case 3:oy(this,Vt(Ht(l)));return;case 4:ny(this,v(l,17).a);return;case 5:c4(this,v(l,17).a);return;case 8:U_(this,v(l,142));return;case 9:g=Q1(this,v(l,89),null),g&&g.oj();return;case 11:!this.d&&(this.d=new sh(Mu,this,11)),Gr(this.d),!this.d&&(this.d=new sh(Mu,this,11)),Ka(this.d,v(l,16));return;case 12:!this.c&&(this.c=new vt(Rx,this,12,10)),Gr(this.c),!this.c&&(this.c=new vt(Rx,this,12,10)),Ka(this.c,v(l,16));return;case 13:!this.a&&(this.a=new qU(this,this)),pM(this.a),!this.a&&(this.a=new qU(this,this)),Ka(this.a,v(l,16));return;case 14:Gr(Uh(this)),Ka(Uh(this),v(l,16));return}df(this,i-kr((Pn(),Iy)),qn((d=v(rr(this,16),29),d||Iy),i),l)},E.ii=function(){return Pn(),Iy},E.ki=function(i){var l,d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:mu(this,null);return;case 2:sy(this,!0);return;case 3:oy(this,!0);return;case 4:ny(this,0);return;case 5:c4(this,1);return;case 8:U_(this,null);return;case 9:d=Q1(this,null,null),d&&d.oj();return;case 11:!this.d&&(this.d=new sh(Mu,this,11)),Gr(this.d);return;case 12:!this.c&&(this.c=new vt(Rx,this,12,10)),Gr(this.c);return;case 13:this.a&&pM(this.a);return;case 14:this.b&&Gr(this.b);return}hf(this,i-kr((Pn(),Iy)),qn((l=v(rr(this,16),29),l||Iy),i))},E.pi=function(){var i,l;if(this.c)for(i=0,l=this.c.i;iR&&Ga(i,R,null),g=0,d=new mr(Uh(this.a));d.e!=d.i.gc();)l=v(wr(d),89),x=(T=l.c,T||(Pn(),dp)),Ga(i,g++,x);return i},E.Hj=function(){var i,l,d,g,y;for(y=new qb,y.a+="[",i=Uh(this.a),l=0,g=Uh(this.a).i;l1);case 5:return pD(this,i,l,d,g,this.i-v(d,15).gc()>0);default:return new Vm(this.e,i,this.c,l,d,g,!0)}},E.Tj=function(){return!0},E.Qj=function(){return J0e(this)},E.Gk=function(){Gr(this)},K(tr,"EOperationImpl/2",1377),H(507,1,{2037:1,507:1},K8t),K(tr,"EPackageImpl/1",507),H(14,83,Xl,vt),E.il=function(){return this.d},E.jl=function(){return this.b},E.ml=function(){return!0},E.b=0,K(Ca,"EObjectContainmentWithInverseEList",14),H(365,14,Xl,bk),E.nl=function(){return!0},E.Wi=function(i,l){return Xk(this,i,v(l,58))},K(Ca,"EObjectContainmentWithInverseEList/Resolving",365),H(308,365,Xl,ZS),E.Ni=function(){this.a.tb=null},K(tr,"EPackageImpl/2",308),H(1278,1,{},drr),K(tr,"EPackageImpl/3",1278),H(733,45,p5,V7e),E._b=function(i){return ro(i)?Kde(this,i):!!ol(this.f,i)},K(tr,"EPackageRegistryImpl",733),H(518,292,{110:1,94:1,93:1,155:1,197:1,58:1,2116:1,114:1,481:1,54:1,99:1,158:1,518:1,292:1,119:1,120:1},Lue),E.Ah=function(i){return Cqt(this,i)},E.Lh=function(i,l,d){var g,y,x;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return Qn(),!!(this.Bb&256);case 3:return Qn(),!!(this.Bb&512);case 4:return Nt(this.s);case 5:return Nt(this.t);case 6:return Qn(),x=this.t,x>1||x==-1;case 7:return Qn(),y=this.s,y>=1;case 8:return l?Gf(this):this.r;case 9:return this.q;case 10:return this.Db>>16==10?v(this.Cb,62):null}return lf(this,i-kr((Pn(),f3)),qn((g=v(rr(this,16),29),g||f3),i),l,d)},E.Sh=function(i,l,d){var g,y,x;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),bu(this.Ab,i,d);case 10:return this.Cb&&(d=(y=this.Db>>16,y>=0?Cqt(this,d):this.Cb.Th(this,-1-y,null,d))),Od(this,i,10,d)}return x=v(qn((g=v(rr(this,16),29),g||(Pn(),f3)),l),69),x.wk().zk(this,Ru(this),l-kr((Pn(),f3)),i,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 9:return Ode(this,d);case 10:return Od(this,null,10,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),f3)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),f3)),i,d)},E.Wh=function(i){var l,d,g;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return(this.Bb&256)==0;case 3:return(this.Bb&512)==0;case 4:return this.s!=0;case 5:return this.t!=1;case 6:return g=this.t,g>1||g==-1;case 7:return d=this.s,d>=1;case 8:return!!this.r&&!this.q.e&&AE(this.q).i==0;case 9:return!!this.q&&!(this.r&&!this.q.e&&AE(this.q).i==0);case 10:return!!(this.Db>>16==10&&v(this.Cb,62))}return sf(this,i-kr((Pn(),f3)),qn((l=v(rr(this,16),29),l||f3),i))},E.ii=function(){return Pn(),f3},K(tr,"EParameterImpl",518),H(102,462,{110:1,94:1,93:1,155:1,197:1,58:1,19:1,179:1,69:1,114:1,481:1,54:1,99:1,158:1,102:1,462:1,292:1,119:1,120:1,692:1},W8e),E.Lh=function(i,l,d){var g,y,x,T;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return Qn(),!!(this.Bb&256);case 3:return Qn(),!!(this.Bb&512);case 4:return Nt(this.s);case 5:return Nt(this.t);case 6:return Qn(),T=this.t,T>1||T==-1;case 7:return Qn(),y=this.s,y>=1;case 8:return l?Gf(this):this.r;case 9:return this.q;case 10:return Qn(),!!(this.Bb&k0);case 11:return Qn(),!!(this.Bb&P4);case 12:return Qn(),!!(this.Bb&R4);case 13:return this.j;case 14:return cI(this);case 15:return Qn(),!!(this.Bb&gh);case 16:return Qn(),!!(this.Bb&ng);case 17:return t4(this);case 18:return Qn(),!!(this.Bb&Sc);case 19:return Qn(),x=sl(this),!!(x&&x.Bb&Sc);case 20:return Qn(),!!(this.Bb&el);case 21:return l?sl(this):this.b;case 22:return l?V9e(this):qPt(this);case 23:return!this.a&&(this.a=new BT(u3,this,23)),this.a}return lf(this,i-kr((Pn(),iC)),qn((g=v(rr(this,16),29),g||iC),i),l,d)},E.Wh=function(i){var l,d,g,y;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return(this.Bb&256)==0;case 3:return(this.Bb&512)==0;case 4:return this.s!=0;case 5:return this.t!=1;case 6:return y=this.t,y>1||y==-1;case 7:return d=this.s,d>=1;case 8:return!!this.r&&!this.q.e&&AE(this.q).i==0;case 9:return!!this.q&&!(this.r&&!this.q.e&&AE(this.q).i==0);case 10:return(this.Bb&k0)==0;case 11:return(this.Bb&P4)!=0;case 12:return(this.Bb&R4)!=0;case 13:return this.j!=null;case 14:return cI(this)!=null;case 15:return(this.Bb&gh)!=0;case 16:return(this.Bb&ng)!=0;case 17:return!!t4(this);case 18:return(this.Bb&Sc)!=0;case 19:return g=sl(this),!!g&&(g.Bb&Sc)!=0;case 20:return(this.Bb&el)==0;case 21:return!!this.b;case 22:return!!qPt(this);case 23:return!!this.a&&this.a.i!=0}return sf(this,i-kr((Pn(),iC)),qn((l=v(rr(this,16),29),l||iC),i))},E.bi=function(i,l){var d,g;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:afe(this,ai(l));return;case 2:sy(this,Vt(Ht(l)));return;case 3:oy(this,Vt(Ht(l)));return;case 4:ny(this,v(l,17).a);return;case 5:c4(this,v(l,17).a);return;case 8:U_(this,v(l,142));return;case 9:g=Q1(this,v(l,89),null),g&&g.oj();return;case 10:Y8(this,Vt(Ht(l)));return;case 11:K8(this,Vt(Ht(l)));return;case 12:j8(this,Vt(Ht(l)));return;case 13:i8e(this,ai(l));return;case 15:W8(this,Vt(Ht(l)));return;case 16:X8(this,Vt(Ht(l)));return;case 18:Zfr(this,Vt(Ht(l)));return;case 20:xLe(this,Vt(Ht(l)));return;case 21:w9e(this,v(l,19));return;case 23:!this.a&&(this.a=new BT(u3,this,23)),Gr(this.a),!this.a&&(this.a=new BT(u3,this,23)),Ka(this.a,v(l,16));return}df(this,i-kr((Pn(),iC)),qn((d=v(rr(this,16),29),d||iC),i),l)},E.ii=function(){return Pn(),iC},E.ki=function(i){var l,d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:$e(this.Cb,90)&&_4($h(v(this.Cb,90)),4),mu(this,null);return;case 2:sy(this,!0);return;case 3:oy(this,!0);return;case 4:ny(this,0);return;case 5:c4(this,1);return;case 8:U_(this,null);return;case 9:d=Q1(this,null,null),d&&d.oj();return;case 10:Y8(this,!0);return;case 11:K8(this,!1);return;case 12:j8(this,!1);return;case 13:this.i=null,uZ(this,null);return;case 15:W8(this,!1);return;case 16:X8(this,!1);return;case 18:ELe(this,!1),$e(this.Cb,90)&&_4($h(v(this.Cb,90)),2);return;case 20:xLe(this,!0);return;case 21:w9e(this,null);return;case 23:!this.a&&(this.a=new BT(u3,this,23)),Gr(this.a);return}hf(this,i-kr((Pn(),iC)),qn((l=v(rr(this,16),29),l||iC),i))},E.pi=function(){V9e(this),d8(Al((dh(),ko),this)),Gf(this),this.Bb|=1},E.uk=function(){return sl(this)},E._k=function(){var i;return i=sl(this),!!i&&(i.Bb&Sc)!=0},E.al=function(){return(this.Bb&Sc)!=0},E.bl=function(){return(this.Bb&el)!=0},E.Yk=function(i,l){return this.c=null,dLe(this,i,l)},E.Ib=function(){var i;return this.Db&64?TJ(this):(i=new Ff(TJ(this)),i.a+=" (containment: ",Hb(i,(this.Bb&Sc)!=0),i.a+=", resolveProxies: ",Hb(i,(this.Bb&el)!=0),i.a+=")",i.a)},K(tr,"EReferenceImpl",102),H(561,120,{110:1,44:1,94:1,93:1,136:1,58:1,114:1,54:1,99:1,561:1,119:1,120:1},zSt),E.Fb=function(i){return this===i},E.ld=function(){return this.b},E.md=function(){return this.c},E.Hb=function(){return vE(this)},E.Di=function(i){rhr(this,ai(i))},E.nd=function(i){return Gur(this,ai(i))},E.Lh=function(i,l,d){var g;switch(i){case 0:return this.b;case 1:return this.c}return lf(this,i-kr((Pn(),nl)),qn((g=v(rr(this,16),29),g||nl),i),l,d)},E.Wh=function(i){var l;switch(i){case 0:return this.b!=null;case 1:return this.c!=null}return sf(this,i-kr((Pn(),nl)),qn((l=v(rr(this,16),29),l||nl),i))},E.bi=function(i,l){var d;switch(i){case 0:ihr(this,ai(l));return;case 1:y9e(this,ai(l));return}df(this,i-kr((Pn(),nl)),qn((d=v(rr(this,16),29),d||nl),i),l)},E.ii=function(){return Pn(),nl},E.ki=function(i){var l;switch(i){case 0:b9e(this,null);return;case 1:y9e(this,null);return}hf(this,i-kr((Pn(),nl)),qn((l=v(rr(this,16),29),l||nl),i))},E.Bi=function(){var i;return this.a==-1&&(i=this.b,this.a=i==null?0:ry(i)),this.a},E.Ci=function(i){this.a=i},E.Ib=function(){var i;return this.Db&64?T0(this):(i=new Ff(T0(this)),i.a+=" (key: ",bl(i,this.b),i.a+=", value: ",bl(i,this.c),i.a+=")",i.a)},E.a=-1,E.b=null,E.c=null;var _c=K(tr,"EStringToStringMapEntryImpl",561),fhn=$a(Ca,"FeatureMap/Entry/Internal");H(576,1,Fee),E.xl=function(i){return this.yl(v(i,54))},E.yl=function(i){return this.xl(i)},E.Fb=function(i){var l,d;return this===i?!0:$e(i,76)?(l=v(i,76),l.Lk()==this.c?(d=this.md(),d==null?l.md()==null:Yi(d,l.md())):!1):!1},E.Lk=function(){return this.c},E.Hb=function(){var i;return i=this.md(),ma(this.c)^(i==null?0:ma(i))},E.Ib=function(){var i,l;return i=this.c,l=Cd(i.qk()).yi(),i.xe(),(l!=null&&l.length!=0?l+":"+i.xe():i.xe())+"="+this.md()},K(tr,"EStructuralFeatureImpl/BasicFeatureMapEntry",576),H(791,576,Fee,rIe),E.yl=function(i){return new rIe(this.c,i)},E.md=function(){return this.a},E.zl=function(i,l,d){return zmr(this,i,this.a,l,d)},E.Al=function(i,l,d){return Gmr(this,i,this.a,l,d)},K(tr,"EStructuralFeatureImpl/ContainmentUpdatingFeatureMapEntry",791),H(1350,1,{},X8t),E.yk=function(i,l,d,g,y){var x;return x=v(v8(i,this.b),220),x.Yl(this.a).Fk(g)},E.zk=function(i,l,d,g,y){var x;return x=v(v8(i,this.b),220),x.Pl(this.a,g,y)},E.Ak=function(i,l,d,g,y){var x;return x=v(v8(i,this.b),220),x.Ql(this.a,g,y)},E.Bk=function(i,l,d){var g;return g=v(v8(i,this.b),220),g.Yl(this.a).Qj()},E.Ck=function(i,l,d,g){var y;y=v(v8(i,this.b),220),y.Yl(this.a).Wb(g)},E.Dk=function(i,l,d){return v(v8(i,this.b),220).Yl(this.a)},E.Ek=function(i,l,d){var g;g=v(v8(i,this.b),220),g.Yl(this.a).Gk()},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateFeatureMapDelegator",1350),H(91,1,{},Wb,A_,Xb,O_),E.yk=function(i,l,d,g,y){var x;if(x=l.li(d),x==null&&l.mi(d,x=BJ(this,i)),!y)switch(this.e){case 50:case 41:return v(x,597).bk();case 40:return v(x,220).Vl()}return x},E.zk=function(i,l,d,g,y){var x,T;return T=l.li(d),T==null&&l.mi(d,T=BJ(this,i)),x=v(T,71).Wk(g,y),x},E.Ak=function(i,l,d,g,y){var x;return x=l.li(d),x!=null&&(y=v(x,71).Xk(g,y)),y},E.Bk=function(i,l,d){var g;return g=l.li(d),g!=null&&v(g,79).Qj()},E.Ck=function(i,l,d,g){var y;y=v(l.li(d),79),!y&&l.mi(d,y=BJ(this,i)),y.Wb(g)},E.Dk=function(i,l,d){var g,y;return y=l.li(d),y==null&&l.mi(d,y=BJ(this,i)),$e(y,79)?v(y,79):(g=v(l.li(d),15),new $kt(g))},E.Ek=function(i,l,d){var g;g=v(l.li(d),79),!g&&l.mi(d,g=BJ(this,i)),g.Gk()},E.b=0,E.e=0,K(tr,"EStructuralFeatureImpl/InternalSettingDelegateMany",91),H(512,1,{}),E.zk=function(i,l,d,g,y){throw _e(new ri)},E.Ak=function(i,l,d,g,y){throw _e(new ri)},E.Dk=function(i,l,d){return new WLt(this,i,l,d)};var lm;K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingle",512),H(1367,1,Wme,WLt),E.Fk=function(i){return this.a.yk(this.c,this.d,this.b,i,!0)},E.Qj=function(){return this.a.Bk(this.c,this.d,this.b)},E.Wb=function(i){this.a.Ck(this.c,this.d,this.b,i)},E.Gk=function(){this.a.Ek(this.c,this.d,this.b)},E.b=0,K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingle/1",1367),H(784,512,{},VNe),E.yk=function(i,l,d,g,y){return K1e(i,i.Ph(),i.Fh())==this.b?this.bl()&&g?M1e(i):i.Ph():null},E.zk=function(i,l,d,g,y){var x,T;return i.Ph()&&(y=(x=i.Fh(),x>=0?i.Ah(y):i.Ph().Th(i,-1-x,null,y))),T=Ma(i.Dh(),this.e),i.Ch(g,T,y)},E.Ak=function(i,l,d,g,y){var x;return x=Ma(i.Dh(),this.e),i.Ch(null,x,y)},E.Bk=function(i,l,d){var g;return g=Ma(i.Dh(),this.e),!!i.Ph()&&i.Fh()==g},E.Ck=function(i,l,d,g){var y,x,T,R,O;if(g!=null&&!J1e(this.a,g))throw _e(new UR($ee+($e(g,58)?ODe(v(g,58).Dh()):ZOe(cd(g)))+Uee+this.a+"'"));if(y=i.Ph(),T=Ma(i.Dh(),this.e),Ze(g)!==Ze(y)||i.Fh()!=T&&g!=null){if(tI(i,v(g,58)))throw _e(new ar(PM+i.Ib()));O=null,y&&(O=(x=i.Fh(),x>=0?i.Ah(O):i.Ph().Th(i,-1-x,null,O))),R=v(g,54),R&&(O=R.Rh(i,Ma(R.Dh(),this.b),null,O)),O=i.Ch(R,T,O),O&&O.oj()}else i.vh()&&i.wh()&&Vi(i,new js(i,1,T,g,g))},E.Ek=function(i,l,d){var g,y,x,T;g=i.Ph(),g?(T=(y=i.Fh(),y>=0?i.Ah(null):i.Ph().Th(i,-1-y,null,null)),x=Ma(i.Dh(),this.e),T=i.Ch(null,x,T),T&&T.oj()):i.vh()&&i.wh()&&Vi(i,new oD(i,1,this.e,null,null))},E.bl=function(){return!1},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleContainer",784),H(1351,784,{},FOt),E.bl=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleContainerResolving",1351),H(574,512,{}),E.yk=function(i,l,d,g,y){var x;return x=l.li(d),x==null?this.b:Ze(x)===Ze(lm)?null:x},E.Bk=function(i,l,d){var g;return g=l.li(d),g!=null&&(Ze(g)===Ze(lm)||!Yi(g,this.b))},E.Ck=function(i,l,d,g){var y,x;i.vh()&&i.wh()?(y=(x=l.li(d),x==null?this.b:Ze(x)===Ze(lm)?null:x),g==null?this.c!=null?(l.mi(d,null),g=this.b):this.b!=null?l.mi(d,lm):l.mi(d,null):(this.Bl(g),l.mi(d,g)),Vi(i,this.d.Cl(i,1,this.e,y,g))):g==null?this.c!=null?l.mi(d,null):this.b!=null?l.mi(d,lm):l.mi(d,null):(this.Bl(g),l.mi(d,g))},E.Ek=function(i,l,d){var g,y;i.vh()&&i.wh()?(g=(y=l.li(d),y==null?this.b:Ze(y)===Ze(lm)?null:y),l.ni(d),Vi(i,this.d.Cl(i,1,this.e,g,this.b))):l.ni(d)},E.Bl=function(i){throw _e(new Xkt)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData",574),H(S5,1,{},GSt),E.Cl=function(i,l,d,g,y){return new oD(i,l,d,g,y)},E.Dl=function(i,l,d,g,y,x){return new jde(i,l,d,g,y,x)};var MKe,PKe,BKe,FKe,$Ke,UKe,zKe,W2e,GKe;K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData/NotificationCreator",S5),H(1368,S5,{},qSt),E.Cl=function(i,l,d,g,y){return new EOe(i,l,d,Vt(Ht(g)),Vt(Ht(y)))},E.Dl=function(i,l,d,g,y,x){return new vMt(i,l,d,Vt(Ht(g)),Vt(Ht(y)),x)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData/NotificationCreator/1",1368),H(1369,S5,{},HSt),E.Cl=function(i,l,d,g,y){return new n9e(i,l,d,v(g,222).a,v(y,222).a)},E.Dl=function(i,l,d,g,y,x){return new dMt(i,l,d,v(g,222).a,v(y,222).a,x)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData/NotificationCreator/2",1369),H(1370,S5,{},VSt),E.Cl=function(i,l,d,g,y){return new r9e(i,l,d,v(g,180).a,v(y,180).a)},E.Dl=function(i,l,d,g,y,x){return new fMt(i,l,d,v(g,180).a,v(y,180).a,x)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData/NotificationCreator/3",1370),H(1371,S5,{},YSt),E.Cl=function(i,l,d,g,y){return new _Oe(i,l,d,We(at(g)),We(at(y)))},E.Dl=function(i,l,d,g,y,x){return new pMt(i,l,d,We(at(g)),We(at(y)),x)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData/NotificationCreator/4",1371),H(1372,S5,{},jSt),E.Cl=function(i,l,d,g,y){return new s9e(i,l,d,v(g,161).a,v(y,161).a)},E.Dl=function(i,l,d,g,y,x){return new gMt(i,l,d,v(g,161).a,v(y,161).a,x)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData/NotificationCreator/5",1372),H(1373,S5,{},WSt),E.Cl=function(i,l,d,g,y){return new wOe(i,l,d,v(g,17).a,v(y,17).a)},E.Dl=function(i,l,d,g,y,x){return new mMt(i,l,d,v(g,17).a,v(y,17).a,x)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData/NotificationCreator/6",1373),H(1374,S5,{},KSt),E.Cl=function(i,l,d,g,y){return new i9e(i,l,d,v(g,168).a,v(y,168).a)},E.Dl=function(i,l,d,g,y,x){return new bMt(i,l,d,v(g,168).a,v(y,168).a,x)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData/NotificationCreator/7",1374),H(1375,S5,{},XSt),E.Cl=function(i,l,d,g,y){return new a9e(i,l,d,v(g,191).a,v(y,191).a)},E.Dl=function(i,l,d,g,y,x){return new yMt(i,l,d,v(g,191).a,v(y,191).a,x)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleData/NotificationCreator/8",1375),H(1353,574,{},KLt),E.Bl=function(i){if(!this.a.fk(i))throw _e(new UR($ee+cd(i)+Uee+this.a+"'"))},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleDataDynamic",1353),H(1354,574,{},P9t),E.Bl=function(i){},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleDataStatic",1354),H(785,574,{}),E.Bk=function(i,l,d){var g;return g=l.li(d),g!=null},E.Ck=function(i,l,d,g){var y,x;i.vh()&&i.wh()?(y=!0,x=l.li(d),x==null?(y=!1,x=this.b):Ze(x)===Ze(lm)&&(x=null),g==null?this.c!=null?(l.mi(d,null),g=this.b):l.mi(d,lm):(this.Bl(g),l.mi(d,g)),Vi(i,this.d.Dl(i,1,this.e,x,g,!y))):g==null?this.c!=null?l.mi(d,null):l.mi(d,lm):(this.Bl(g),l.mi(d,g))},E.Ek=function(i,l,d){var g,y;i.vh()&&i.wh()?(g=!0,y=l.li(d),y==null?(g=!1,y=this.b):Ze(y)===Ze(lm)&&(y=null),l.ni(d),Vi(i,this.d.Dl(i,2,this.e,y,this.b,g))):l.ni(d)},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleDataUnsettable",785),H(1355,785,{},XLt),E.Bl=function(i){if(!this.a.fk(i))throw _e(new UR($ee+cd(i)+Uee+this.a+"'"))},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleDataUnsettableDynamic",1355),H(1356,785,{},B9t),E.Bl=function(i){},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleDataUnsettableStatic",1356),H(410,512,{},QX),E.yk=function(i,l,d,g,y){var x,T,R,O,D;if(D=l.li(d),this.tk()&&Ze(D)===Ze(lm))return null;if(this.bl()&&g&&D!=null){if(R=v(D,54),R.Vh()&&(O=Hv(i,R),R!=O)){if(!J1e(this.a,O))throw _e(new UR($ee+cd(O)+Uee+this.a+"'"));l.mi(d,D=O),this.al()&&(x=v(O,54),T=R.Th(i,this.b?Ma(R.Dh(),this.b):-1-Ma(i.Dh(),this.e),null,null),!x.Ph()&&(T=x.Rh(i,this.b?Ma(x.Dh(),this.b):-1-Ma(i.Dh(),this.e),null,T)),T&&T.oj()),i.vh()&&i.wh()&&Vi(i,new oD(i,9,this.e,R,O))}return D}else return D},E.zk=function(i,l,d,g,y){var x,T;return T=l.li(d),Ze(T)===Ze(lm)&&(T=null),l.mi(d,g),this.Mj()?Ze(T)!==Ze(g)&&T!=null&&(x=v(T,54),y=x.Th(i,Ma(x.Dh(),this.b),null,y)):this.al()&&T!=null&&(y=v(T,54).Th(i,-1-Ma(i.Dh(),this.e),null,y)),i.vh()&&i.wh()&&(!y&&(y=new Av(4)),y.nj(new oD(i,1,this.e,T,g))),y},E.Ak=function(i,l,d,g,y){var x;return x=l.li(d),Ze(x)===Ze(lm)&&(x=null),l.ni(d),i.vh()&&i.wh()&&(!y&&(y=new Av(4)),this.tk()?y.nj(new oD(i,2,this.e,x,null)):y.nj(new oD(i,1,this.e,x,null))),y},E.Bk=function(i,l,d){var g;return g=l.li(d),g!=null},E.Ck=function(i,l,d,g){var y,x,T,R,O;if(g!=null&&!J1e(this.a,g))throw _e(new UR($ee+($e(g,58)?ODe(v(g,58).Dh()):ZOe(cd(g)))+Uee+this.a+"'"));O=l.li(d),R=O!=null,this.tk()&&Ze(O)===Ze(lm)&&(O=null),T=null,this.Mj()?Ze(O)!==Ze(g)&&(O!=null&&(y=v(O,54),T=y.Th(i,Ma(y.Dh(),this.b),null,T)),g!=null&&(y=v(g,54),T=y.Rh(i,Ma(y.Dh(),this.b),null,T))):this.al()&&Ze(O)!==Ze(g)&&(O!=null&&(T=v(O,54).Th(i,-1-Ma(i.Dh(),this.e),null,T)),g!=null&&(T=v(g,54).Rh(i,-1-Ma(i.Dh(),this.e),null,T))),g==null&&this.tk()?l.mi(d,lm):l.mi(d,g),i.vh()&&i.wh()?(x=new jde(i,1,this.e,O,g,this.tk()&&!R),T?(T.nj(x),T.oj()):Vi(i,x)):T&&T.oj()},E.Ek=function(i,l,d){var g,y,x,T,R;R=l.li(d),T=R!=null,this.tk()&&Ze(R)===Ze(lm)&&(R=null),x=null,R!=null&&(this.Mj()?(g=v(R,54),x=g.Th(i,Ma(g.Dh(),this.b),null,x)):this.al()&&(x=v(R,54).Th(i,-1-Ma(i.Dh(),this.e),null,x))),l.ni(d),i.vh()&&i.wh()?(y=new jde(i,this.tk()?2:1,this.e,R,null,T),x?(x.nj(y),x.oj()):Vi(i,y)):x&&x.oj()},E.Mj=function(){return!1},E.al=function(){return!1},E.bl=function(){return!1},E.tk=function(){return!1},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObject",410),H(575,410,{},Qhe),E.al=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectContainment",575),H(1359,575,{},MNt),E.bl=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectContainmentResolving",1359),H(787,575,{},H8e),E.tk=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectContainmentUnsettable",787),H(1361,787,{},PNt),E.bl=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectContainmentUnsettableResolving",1361),H(650,575,{},ude),E.Mj=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectContainmentWithInverse",650),H(1360,650,{},$Ot),E.bl=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectContainmentWithInverseResolving",1360),H(788,650,{},IIe),E.tk=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectContainmentWithInverseUnsettable",788),H(1362,788,{},UOt),E.bl=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectContainmentWithInverseUnsettableResolving",1362),H(651,410,{},V8e),E.bl=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectResolving",651),H(1363,651,{},BNt),E.tk=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectResolvingUnsettable",1363),H(789,651,{},kIe),E.Mj=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectResolvingWithInverse",789),H(1364,789,{},zOt),E.tk=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectResolvingWithInverseUnsettable",1364),H(1357,410,{},FNt),E.tk=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectUnsettable",1357),H(786,410,{},RIe),E.Mj=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectWithInverse",786),H(1358,786,{},GOt),E.tk=function(){return!0},K(tr,"EStructuralFeatureImpl/InternalSettingDelegateSingleEObjectWithInverseUnsettable",1358),H(790,576,Fee,CNe),E.yl=function(i){return new CNe(this.a,this.c,i)},E.md=function(){return this.b},E.zl=function(i,l,d){return $pr(this,i,this.b,d)},E.Al=function(i,l,d){return Upr(this,i,this.b,d)},K(tr,"EStructuralFeatureImpl/InverseUpdatingFeatureMapEntry",790),H(1365,1,Wme,$kt),E.Fk=function(i){return this.a},E.Qj=function(){return $e(this.a,97)?v(this.a,97).Qj():!this.a.dc()},E.Wb=function(i){this.a.$b(),this.a.Gc(v(i,15))},E.Gk=function(){$e(this.a,97)?v(this.a,97).Gk():this.a.$b()},K(tr,"EStructuralFeatureImpl/SettingMany",1365),H(1366,576,Fee,uPt),E.xl=function(i){return new ede((ca(),rB),this.b.ri(this.a,i))},E.md=function(){return null},E.zl=function(i,l,d){return d},E.Al=function(i,l,d){return d},K(tr,"EStructuralFeatureImpl/SimpleContentFeatureMapEntry",1366),H(652,576,Fee,ede),E.xl=function(i){return new ede(this.c,i)},E.md=function(){return this.a},E.zl=function(i,l,d){return d},E.Al=function(i,l,d){return d},K(tr,"EStructuralFeatureImpl/SimpleFeatureMapEntry",652),H(403,506,hg,OR),E.aj=function(i){return st(Jf,Yn,29,i,0,1)},E.Yi=function(){return!1},K(tr,"ESuperAdapter/1",403),H(457,448,{110:1,94:1,93:1,155:1,197:1,58:1,114:1,850:1,54:1,99:1,158:1,457:1,119:1,120:1},due),E.Lh=function(i,l,d){var g;switch(i){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),this.Ab;case 1:return this.zb;case 2:return!this.a&&(this.a=new rD(this,pl,this)),this.a}return lf(this,i-kr((Pn(),Nx)),qn((g=v(rr(this,16),29),g||Nx),i),l,d)},E.Uh=function(i,l,d){var g,y;switch(l){case 0:return!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ko(this.Ab,i,d);case 2:return!this.a&&(this.a=new rD(this,pl,this)),Ko(this.a,i,d)}return y=v(qn((g=v(rr(this,16),29),g||(Pn(),Nx)),l),69),y.wk().Ak(this,Ru(this),l-kr((Pn(),Nx)),i,d)},E.Wh=function(i){var l;switch(i){case 0:return!!this.Ab&&this.Ab.i!=0;case 1:return this.zb!=null;case 2:return!!this.a&&this.a.i!=0}return sf(this,i-kr((Pn(),Nx)),qn((l=v(rr(this,16),29),l||Nx),i))},E.bi=function(i,l){var d;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab),!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Ka(this.Ab,v(l,16));return;case 1:mu(this,ai(l));return;case 2:!this.a&&(this.a=new rD(this,pl,this)),Gr(this.a),!this.a&&(this.a=new rD(this,pl,this)),Ka(this.a,v(l,16));return}df(this,i-kr((Pn(),Nx)),qn((d=v(rr(this,16),29),d||Nx),i),l)},E.ii=function(){return Pn(),Nx},E.ki=function(i){var l;switch(i){case 0:!this.Ab&&(this.Ab=new vt(wi,this,0,3)),Gr(this.Ab);return;case 1:mu(this,null);return;case 2:!this.a&&(this.a=new rD(this,pl,this)),Gr(this.a);return}hf(this,i-kr((Pn(),Nx)),qn((l=v(rr(this,16),29),l||Nx),i))},K(tr,"ETypeParameterImpl",457),H(458,83,Xl,rD),E.Nj=function(i,l){return exr(this,v(i,89),l)},E.Oj=function(i,l){return txr(this,v(i,89),l)},K(tr,"ETypeParameterImpl/1",458),H(647,45,p5,Due),E.ec=function(){return new SK(this)},K(tr,"ETypeParameterImpl/2",647),H(570,J1,fh,SK),E.Fc=function(i){return uOt(this,v(i,89))},E.Gc=function(i){var l,d,g;for(g=!1,d=i.Kc();d.Ob();)l=v(d.Pb(),89),Ni(this.a,l,"")==null&&(g=!0);return g},E.$b=function(){xh(this.a)},E.Hc=function(i){return Tu(this.a,i)},E.Kc=function(){var i;return i=new P_(new b_(this.a).a),new TK(i)},E.Mc=function(i){return eBt(this,i)},E.gc=function(){return SL(this.a)},K(tr,"ETypeParameterImpl/2/1",570),H(571,1,io,TK),E.Nb=function(i){xo(this,i)},E.Pb=function(){return v(zE(this.a).ld(),89)},E.Ob=function(){return this.a.b},E.Qb=function(){cFt(this.a)},K(tr,"ETypeParameterImpl/2/1/1",571),H(1329,45,p5,R6t),E._b=function(i){return ro(i)?Kde(this,i):!!ol(this.f,i)},E.xc=function(i){var l,d;return l=ro(i)?Qc(this,i):Pl(ol(this.f,i)),$e(l,851)?(d=v(l,851),l=d.Kk(),Ni(this,v(i,241),l),l):l??(i==null?(Jue(),ghn):null)},K(tr,"EValidatorRegistryImpl",1329),H(1349,720,{110:1,94:1,93:1,480:1,155:1,58:1,114:1,2040:1,54:1,99:1,158:1,119:1,120:1},QSt),E.ri=function(i,l){switch(i.hk()){case 21:case 22:case 23:case 24:case 26:case 31:case 32:case 37:case 38:case 39:case 40:case 43:case 44:case 48:case 49:case 20:return l==null?null:Kl(l);case 25:return Qgr(l);case 27:return hgr(l);case 28:return dgr(l);case 29:return l==null?null:zIt(QP[0],v(l,206));case 41:return l==null?"":__(v(l,297));case 42:return Kl(l);case 50:return ai(l);default:throw _e(new ar(FI+i.xe()+lx))}},E.si=function(i){var l,d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se;switch(i.G==-1&&(i.G=(re=Cd(i),re?uy(re.vi(),i):-1)),i.G){case 0:return d=new Nue,d;case 1:return l=new V6e,l;case 2:return g=new K6e,g;case 4:return y=new CK,y;case 5:return x=new k6t,x;case 6:return T=new Jkt,T;case 7:return R=new X6e,R;case 10:return D=new gK,D;case 11:return q=new Oue,q;case 12:return J=new iDt,J;case 13:return ae=new Lue,ae;case 14:return le=new W8e,le;case 17:return de=new zSt,de;case 18:return O=new iE,O;case 19:return Se=new due,Se;default:throw _e(new ar(Ome+i.zb+lx))}},E.ti=function(i,l){switch(i.hk()){case 20:return l==null?null:new mRe(l);case 21:return l==null?null:new Ov(l);case 23:case 22:return l==null?null:u2r(l);case 26:case 24:return l==null?null:Cz(Nd(l,-128,127)<<24>>24);case 25:return R3r(l);case 27:return Q_r(l);case 28:return Z_r(l);case 29:return wxr(l);case 32:case 31:return l==null?null:y4(l);case 38:case 37:return l==null?null:new L7e(l);case 40:case 39:return l==null?null:Nt(Nd(l,Po,qi));case 41:return null;case 42:return l==null,null;case 44:case 43:return l==null?null:Zm(PJ(l));case 49:case 48:return l==null?null:V8(Nd(l,zee,32767)<<16>>16);case 50:return l;default:throw _e(new ar(FI+i.xe()+lx))}},K(tr,"EcoreFactoryImpl",1349),H(560,184,{110:1,94:1,93:1,155:1,197:1,58:1,241:1,114:1,2038:1,54:1,99:1,158:1,184:1,560:1,119:1,120:1,690:1},kLt),E.gb=!1,E.hb=!1;var qKe,phn=!1;K(tr,"EcorePackageImpl",560),H(1234,1,{851:1},ZSt),E.Kk=function(){return eNt(),mhn},K(tr,"EcorePackageImpl/1",1234),H(1243,1,ki,JSt),E.fk=function(i){return $e(i,155)},E.gk=function(i){return st(wH,Yn,155,i,0,1)},K(tr,"EcorePackageImpl/10",1243),H(1244,1,ki,e4t),E.fk=function(i){return $e(i,197)},E.gk=function(i){return st($2e,Yn,197,i,0,1)},K(tr,"EcorePackageImpl/11",1244),H(1245,1,ki,t4t),E.fk=function(i){return $e(i,58)},E.gk=function(i){return st(_2,Yn,58,i,0,1)},K(tr,"EcorePackageImpl/12",1245),H(1246,1,ki,n4t),E.fk=function(i){return $e(i,411)},E.gk=function(i){return st(e0,DUe,62,i,0,1)},K(tr,"EcorePackageImpl/13",1246),H(1247,1,ki,r4t),E.fk=function(i){return $e(i,241)},E.gk=function(i){return st(y1,Yn,241,i,0,1)},K(tr,"EcorePackageImpl/14",1247),H(1248,1,ki,i4t),E.fk=function(i){return $e(i,518)},E.gk=function(i){return st(Rx,Yn,2116,i,0,1)},K(tr,"EcorePackageImpl/15",1248),H(1249,1,ki,a4t),E.fk=function(i){return $e(i,102)},E.gk=function(i){return st(h3,x5,19,i,0,1)},K(tr,"EcorePackageImpl/16",1249),H(1250,1,ki,s4t),E.fk=function(i){return $e(i,179)},E.gk=function(i){return st(Ju,x5,179,i,0,1)},K(tr,"EcorePackageImpl/17",1250),H(1251,1,ki,o4t),E.fk=function(i){return $e(i,481)},E.gk=function(i){return st(c3,Yn,481,i,0,1)},K(tr,"EcorePackageImpl/18",1251),H(1252,1,ki,l4t),E.fk=function(i){return $e(i,561)},E.gk=function(i){return st(_c,mJt,561,i,0,1)},K(tr,"EcorePackageImpl/19",1252),H(1235,1,ki,c4t),E.fk=function(i){return $e(i,331)},E.gk=function(i){return st(u3,x5,35,i,0,1)},K(tr,"EcorePackageImpl/2",1235),H(1253,1,ki,u4t),E.fk=function(i){return $e(i,248)},E.gk=function(i){return st(pl,LJt,89,i,0,1)},K(tr,"EcorePackageImpl/20",1253),H(1254,1,ki,h4t),E.fk=function(i){return $e(i,457)},E.gk=function(i){return st(Mu,Yn,850,i,0,1)},K(tr,"EcorePackageImpl/21",1254),H(1255,1,ki,d4t),E.fk=function(i){return HS(i)},E.gk=function(i){return st(rs,kt,485,i,8,1)},K(tr,"EcorePackageImpl/22",1255),H(1256,1,ki,f4t),E.fk=function(i){return $e(i,195)},E.gk=function(i){return st(bh,kt,195,i,0,2)},K(tr,"EcorePackageImpl/23",1256),H(1257,1,ki,p4t),E.fk=function(i){return $e(i,222)},E.gk=function(i){return st(d6,kt,222,i,0,1)},K(tr,"EcorePackageImpl/24",1257),H(1258,1,ki,g4t),E.fk=function(i){return $e(i,180)},E.gk=function(i){return st(WM,kt,180,i,0,1)},K(tr,"EcorePackageImpl/25",1258),H(1259,1,ki,m4t),E.fk=function(i){return $e(i,206)},E.gk=function(i){return st(Qee,kt,206,i,0,1)},K(tr,"EcorePackageImpl/26",1259),H(1260,1,ki,b4t),E.fk=function(i){return!1},E.gk=function(i){return st(oXe,Yn,2215,i,0,1)},K(tr,"EcorePackageImpl/27",1260),H(1261,1,ki,y4t),E.fk=function(i){return VS(i)},E.gk=function(i){return st(ws,kt,345,i,7,1)},K(tr,"EcorePackageImpl/28",1261),H(1262,1,ki,v4t),E.fk=function(i){return $e(i,61)},E.gk=function(i){return st(EKe,I4,61,i,0,1)},K(tr,"EcorePackageImpl/29",1262),H(1236,1,ki,_4t),E.fk=function(i){return $e(i,519)},E.gk=function(i){return st(wi,{3:1,4:1,5:1,2033:1},598,i,0,1)},K(tr,"EcorePackageImpl/3",1236),H(1263,1,ki,w4t),E.fk=function(i){return $e(i,582)},E.gk=function(i){return st(TKe,Yn,2039,i,0,1)},K(tr,"EcorePackageImpl/30",1263),H(1264,1,ki,E4t),E.fk=function(i){return $e(i,160)},E.gk=function(i){return st(WKe,I4,160,i,0,1)},K(tr,"EcorePackageImpl/31",1264),H(1265,1,ki,x4t),E.fk=function(i){return $e(i,76)},E.gk=function(i){return st(pre,GJt,76,i,0,1)},K(tr,"EcorePackageImpl/32",1265),H(1266,1,ki,S4t),E.fk=function(i){return $e(i,161)},E.gk=function(i){return st(VI,kt,161,i,0,1)},K(tr,"EcorePackageImpl/33",1266),H(1267,1,ki,T4t),E.fk=function(i){return $e(i,17)},E.gk=function(i){return st(Ao,kt,17,i,0,1)},K(tr,"EcorePackageImpl/34",1267),H(1268,1,ki,C4t),E.fk=function(i){return $e(i,297)},E.gk=function(i){return st(jUe,Yn,297,i,0,1)},K(tr,"EcorePackageImpl/35",1268),H(1269,1,ki,A4t),E.fk=function(i){return $e(i,168)},E.gk=function(i){return st(ux,kt,168,i,0,1)},K(tr,"EcorePackageImpl/36",1269),H(1270,1,ki,k4t),E.fk=function(i){return $e(i,85)},E.gk=function(i){return st(WUe,Yn,85,i,0,1)},K(tr,"EcorePackageImpl/37",1270),H(1271,1,ki,R4t),E.fk=function(i){return $e(i,599)},E.gk=function(i){return st(HKe,Yn,599,i,0,1)},K(tr,"EcorePackageImpl/38",1271),H(1272,1,ki,I4t),E.fk=function(i){return!1},E.gk=function(i){return st(lXe,Yn,2216,i,0,1)},K(tr,"EcorePackageImpl/39",1272),H(1237,1,ki,N4t),E.fk=function(i){return $e(i,90)},E.gk=function(i){return st(Jf,Yn,29,i,0,1)},K(tr,"EcorePackageImpl/4",1237),H(1273,1,ki,O4t),E.fk=function(i){return $e(i,191)},E.gk=function(i){return st(hx,kt,191,i,0,1)},K(tr,"EcorePackageImpl/40",1273),H(1274,1,ki,L4t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(tr,"EcorePackageImpl/41",1274),H(1275,1,ki,D4t),E.fk=function(i){return $e(i,596)},E.gk=function(i){return st(SKe,Yn,596,i,0,1)},K(tr,"EcorePackageImpl/42",1275),H(1276,1,ki,M4t),E.fk=function(i){return!1},E.gk=function(i){return st(cXe,kt,2217,i,0,1)},K(tr,"EcorePackageImpl/43",1276),H(1277,1,ki,P4t),E.fk=function(i){return $e(i,44)},E.gk=function(i){return st(rw,$J,44,i,0,1)},K(tr,"EcorePackageImpl/44",1277),H(1238,1,ki,B4t),E.fk=function(i){return $e(i,142)},E.gk=function(i){return st(v1,Yn,142,i,0,1)},K(tr,"EcorePackageImpl/5",1238),H(1239,1,ki,F4t),E.fk=function(i){return $e(i,156)},E.gk=function(i){return st(V2e,Yn,156,i,0,1)},K(tr,"EcorePackageImpl/6",1239),H(1240,1,ki,$4t),E.fk=function(i){return $e(i,469)},E.gk=function(i){return st(fre,Yn,685,i,0,1)},K(tr,"EcorePackageImpl/7",1240),H(1241,1,ki,U4t),E.fk=function(i){return $e(i,582)},E.gk=function(i){return st(hb,Yn,694,i,0,1)},K(tr,"EcorePackageImpl/8",1241),H(1242,1,ki,z4t),E.fk=function(i){return $e(i,480)},E.gk=function(i){return st(XP,Yn,480,i,0,1)},K(tr,"EcorePackageImpl/9",1242),H(1038,2080,gJt,X6t),E.Mi=function(i,l){$yr(this,v(l,424))},E.Qi=function(i,l){HHt(this,i,v(l,424))},K(tr,"MinimalEObjectImpl/1ArrayDelegatingAdapterList",1038),H(1039,152,oq,yLt),E.jj=function(){return this.a.a},K(tr,"MinimalEObjectImpl/1ArrayDelegatingAdapterList/1",1039),H(1067,1066,{},OIt),K("org.eclipse.emf.ecore.plugin","EcorePlugin",1067);var HKe=$a(qJt,"Resource");H(799,1524,HJt),E.Hl=function(i){},E.Il=function(i){},E.El=function(){return!this.a&&(this.a=new Tue(this)),this.a},E.Fl=function(i){var l,d,g,y,x;if(g=i.length,g>0)if(sr(0,i.length),i.charCodeAt(0)==47){for(x=new gu(4),y=1,l=1;l0&&(i=(mo(0,d,i.length),i.substr(0,d))));return p4r(this,i)},E.Gl=function(){return this.c},E.Ib=function(){var i;return __(this.Rm)+"@"+(i=ma(this)>>>0,i.toString(16))+" uri='"+this.d+"'"},E.b=!1,K(Kme,"ResourceImpl",799),H(1525,799,HJt,Ukt),K(Kme,"BinaryResourceImpl",1525),H(1190,708,qme),E.bj=function(i){return $e(i,58)?afr(this,v(i,58)):$e(i,599)?new mr(v(i,599).El()):Ze(i)===Ze(this.f)?v(i,16).Kc():(t8(),SH.a)},E.Ob=function(){return CMe(this)},E.a=!1,K(Ca,"EcoreUtil/ContentTreeIterator",1190),H(1526,1190,qme,W9t),E.bj=function(i){return Ze(i)===Ze(this.f)?v(i,15).Kc():new VMt(v(i,58))},K(Kme,"ResourceImpl/5",1526),H(658,2092,OJt,Tue),E.Hc=function(i){return this.i<=4?rI(this,i):$e(i,54)&&v(i,54).Jh()==this.a},E.Mi=function(i,l){i==this.i-1&&(this.a.b||(this.a.b=!0))},E.Oi=function(i,l){i==0?this.a.b||(this.a.b=!0):Sfe(this,i,l)},E.Qi=function(i,l){},E.Ri=function(i,l,d){},E.Lj=function(){return 2},E.jj=function(){return this.a},E.Mj=function(){return!0},E.Nj=function(i,l){var d;return d=v(i,54),l=d.fi(this.a,l),l},E.Oj=function(i,l){var d;return d=v(i,54),d.fi(null,l)},E.Pj=function(){return!1},E.Si=function(){return!0},E.aj=function(i){return st(_2,Yn,58,i,0,1)},E.Yi=function(){return!1},K(Kme,"ResourceImpl/ContentsEList",658),H(970,2062,EI,zkt),E.fd=function(i){return this.a.Ki(i)},E.gc=function(){return this.a.gc()},K(Ca,"AbstractSequentialInternalEList/1",970);var VKe,YKe,ko,jKe;H(634,1,{},XOt);var gre,mre;K(Ca,"BasicExtendedMetaData",634),H(1181,1,{},Z8t),E.Jl=function(){return null},E.Kl=function(){return this.a==-2&&Prr(this,pxr(this.d,this.b)),this.a},E.Ll=function(){return null},E.Ml=function(){return Fn(),Fn(),Zo},E.xe=function(){return this.c==zI&&Brr(this,pGt(this.d,this.b)),this.c},E.Nl=function(){return 0},E.a=-2,E.c=zI,K(Ca,"BasicExtendedMetaData/EClassExtendedMetaDataImpl",1181),H(1182,1,{},wMt),E.Jl=function(){return this.a==(y8(),gre)&&Urr(this,fCr(this.f,this.b)),this.a},E.Kl=function(){return 0},E.Ll=function(){return this.c==(y8(),gre)&&Frr(this,pCr(this.f,this.b)),this.c},E.Ml=function(){return!this.d&&Grr(this,ZAr(this.f,this.b)),this.d},E.xe=function(){return this.e==zI&&Hrr(this,pGt(this.f,this.b)),this.e},E.Nl=function(){return this.g==-2&&Yrr(this,LEr(this.f,this.b)),this.g},E.e=zI,E.g=-2,K(Ca,"BasicExtendedMetaData/EDataTypeExtendedMetaDataImpl",1182),H(1180,1,{},J8t),E.b=!1,E.c=!1,K(Ca,"BasicExtendedMetaData/EPackageExtendedMetaDataImpl",1180),H(1183,1,{},EMt),E.c=-2,E.e=zI,E.f=zI,K(Ca,"BasicExtendedMetaData/EStructuralFeatureExtendedMetaDataImpl",1183),H(593,632,Xl,zX),E.Lj=function(){return this.c},E.ol=function(){return!1},E.Wi=function(i,l){return l},E.c=0,K(Ca,"EDataTypeEList",593);var WKe=$a(Ca,"FeatureMap");H(78,593,{3:1,4:1,20:1,31:1,56:1,16:1,15:1,59:1,70:1,66:1,61:1,79:1,160:1,220:1,2036:1,71:1,97:1},Xa),E.bd=function(i,l){OTr(this,i,v(l,76))},E.Fc=function(i){return X3r(this,v(i,76))},E.Hi=function(i){ndr(this,v(i,76))},E.Nj=function(i,l){return xlr(this,v(i,76),l)},E.Oj=function(i,l){return yIe(this,v(i,76),l)},E.Ti=function(i,l){return rAr(this,i,l)},E.Wi=function(i,l){return H6r(this,i,v(l,76))},E.hd=function(i,l){return v5r(this,i,v(l,76))},E.Uj=function(i,l){return Slr(this,v(i,76),l)},E.Vj=function(i,l){return TOt(this,v(i,76),l)},E.Wj=function(i,l,d){return _Er(this,v(i,76),v(l,76),d)},E.Zi=function(i,l){return y1e(this,i,v(l,76))},E.Ol=function(i,l){return bPe(this,i,l)},E.cd=function(i,l){var d,g,y,x,T,R,O,D,q;for(D=new PE(l.gc()),y=l.Kc();y.Ob();)if(g=v(y.Pb(),76),x=g.Lk(),tb(this.e,x))(!x.Si()||!NQ(this,x,g.md())&&!rI(D,g))&&Yr(D,g);else{for(q=Iu(this.e.Dh(),x),d=v(this.g,124),T=!0,R=0;R=0;)if(l=i[this.c],this.k.am(l.Lk()))return this.j=this.f?l:l.md(),this.i=-2,!0;return this.i=-1,this.g=-1,!1},K(Ca,"BasicFeatureMap/FeatureEIterator",420),H(676,420,Yg,Mhe),E.ul=function(){return!0},K(Ca,"BasicFeatureMap/ResolvingFeatureEIterator",676),H(968,496,Pee,GIt),E.pj=function(){return this},K(Ca,"EContentsEList/1",968),H(969,496,Pee,dIt),E.ul=function(){return!1},K(Ca,"EContentsEList/2",969),H(967,287,Bee,qIt),E.wl=function(i){},E.Ob=function(){return!1},E.Sb=function(){return!1},K(Ca,"EContentsEList/FeatureIteratorImpl/1",967),H(840,593,Xl,T8e),E.Ni=function(){this.a=!0},E.Qj=function(){return this.a},E.Gk=function(){var i;Gr(this),id(this.e)?(i=this.a,this.a=!1,Vi(this.e,new E0(this.e,2,this.c,i,!1))):this.a=!1},E.a=!1,K(Ca,"EDataTypeEList/Unsettable",840),H(1958,593,Xl,XIt),E.Si=function(){return!0},K(Ca,"EDataTypeUniqueEList",1958),H(1959,840,Xl,QIt),E.Si=function(){return!0},K(Ca,"EDataTypeUniqueEList/Unsettable",1959),H(147,83,Xl,sh),E.nl=function(){return!0},E.Wi=function(i,l){return Xk(this,i,v(l,58))},K(Ca,"EObjectContainmentEList/Resolving",147),H(1184,555,Xl,ZIt),E.nl=function(){return!0},E.Wi=function(i,l){return Xk(this,i,v(l,58))},K(Ca,"EObjectContainmentEList/Unsettable/Resolving",1184),H(766,14,Xl,hIe),E.Ni=function(){this.a=!0},E.Qj=function(){return this.a},E.Gk=function(){var i;Gr(this),id(this.e)?(i=this.a,this.a=!1,Vi(this.e,new E0(this.e,2,this.c,i,!1))):this.a=!1},E.a=!1,K(Ca,"EObjectContainmentWithInverseEList/Unsettable",766),H(1222,766,Xl,hOt),E.nl=function(){return!0},E.Wi=function(i,l){return Xk(this,i,v(l,58))},K(Ca,"EObjectContainmentWithInverseEList/Unsettable/Resolving",1222),H(757,505,Xl,C8e),E.Ni=function(){this.a=!0},E.Qj=function(){return this.a},E.Gk=function(){var i;Gr(this),id(this.e)?(i=this.a,this.a=!1,Vi(this.e,new E0(this.e,2,this.c,i,!1))):this.a=!1},E.a=!1,K(Ca,"EObjectEList/Unsettable",757),H(338,505,Xl,BT),E.nl=function(){return!0},E.Wi=function(i,l){return Xk(this,i,v(l,58))},K(Ca,"EObjectResolvingEList",338),H(1844,757,Xl,JIt),E.nl=function(){return!0},E.Wi=function(i,l){return Xk(this,i,v(l,58))},K(Ca,"EObjectResolvingEList/Unsettable",1844),H(1527,1,{},G4t);var ghn;K(Ca,"EObjectValidator",1527),H(559,505,Xl,iQ),E.il=function(){return this.d},E.jl=function(){return this.b},E.Mj=function(){return!0},E.ml=function(){return!0},E.b=0,K(Ca,"EObjectWithInverseEList",559),H(1225,559,Xl,dOt),E.ll=function(){return!0},K(Ca,"EObjectWithInverseEList/ManyInverse",1225),H(635,559,Xl,nde),E.Ni=function(){this.a=!0},E.Qj=function(){return this.a},E.Gk=function(){var i;Gr(this),id(this.e)?(i=this.a,this.a=!1,Vi(this.e,new E0(this.e,2,this.c,i,!1))):this.a=!1},E.a=!1,K(Ca,"EObjectWithInverseEList/Unsettable",635),H(1224,635,Xl,fOt),E.ll=function(){return!0},K(Ca,"EObjectWithInverseEList/Unsettable/ManyInverse",1224),H(767,559,Xl,dIe),E.nl=function(){return!0},E.Wi=function(i,l){return Xk(this,i,v(l,58))},K(Ca,"EObjectWithInverseResolvingEList",767),H(32,767,Xl,Gn),E.ll=function(){return!0},K(Ca,"EObjectWithInverseResolvingEList/ManyInverse",32),H(768,635,Xl,fIe),E.nl=function(){return!0},E.Wi=function(i,l){return Xk(this,i,v(l,58))},K(Ca,"EObjectWithInverseResolvingEList/Unsettable",768),H(1223,768,Xl,pOt),E.ll=function(){return!0},K(Ca,"EObjectWithInverseResolvingEList/Unsettable/ManyInverse",1223),H(1185,632,Xl),E.Li=function(){return(this.b&1792)==0},E.Ni=function(){this.b|=1},E.kl=function(){return(this.b&4)!=0},E.Mj=function(){return(this.b&40)!=0},E.ll=function(){return(this.b&16)!=0},E.ml=function(){return(this.b&8)!=0},E.nl=function(){return(this.b&P4)!=0},E.al=function(){return(this.b&32)!=0},E.ol=function(){return(this.b&k0)!=0},E.fk=function(i){return this.d?ePt(this.d,i):this.Lk().Hk().fk(i)},E.Qj=function(){return this.b&2?(this.b&1)!=0:this.i!=0},E.Si=function(){return(this.b&128)!=0},E.Gk=function(){var i;Gr(this),this.b&2&&(id(this.e)?(i=(this.b&1)!=0,this.b&=-2,$R(this,new E0(this.e,2,Ma(this.e.Dh(),this.Lk()),i,!1))):this.b&=-2)},E.Yi=function(){return(this.b&1536)==0},E.b=0,K(Ca,"EcoreEList/Generic",1185),H(1186,1185,Xl,sDt),E.Lk=function(){return this.a},K(Ca,"EcoreEList/Dynamic",1186),H(765,66,hg,A7e),E.aj=function(i){return Iz(this.a.a,i)},K(Ca,"EcoreEMap/1",765),H(764,83,Xl,hNe),E.Mi=function(i,l){XZ(this.b,v(l,136))},E.Oi=function(i,l){rUt(this.b)},E.Pi=function(i,l,d){var g;++(g=this.b,v(l,136),g).e},E.Qi=function(i,l){A0e(this.b,v(l,136))},E.Ri=function(i,l,d){A0e(this.b,v(d,136)),Ze(d)===Ze(l)&&v(d,136).Ci(_sr(v(l,136).ld())),XZ(this.b,v(l,136))},K(Ca,"EcoreEMap/DelegateEObjectContainmentEList",764),H(1220,141,LUe,_$t),K(Ca,"EcoreEMap/Unsettable",1220),H(1221,764,Xl,gOt),E.Ni=function(){this.a=!0},E.Qj=function(){return this.a},E.Gk=function(){var i;Gr(this),id(this.e)?(i=this.a,this.a=!1,Vi(this.e,new E0(this.e,2,this.c,i,!1))):this.a=!1},E.a=!1,K(Ca,"EcoreEMap/Unsettable/UnsettableDelegateEObjectContainmentEList",1221),H(1189,215,p5,oLt),E.a=!1,E.b=!1,K(Ca,"EcoreUtil/Copier",1189),H(759,1,io,VMt),E.Nb=function(i){xo(this,i)},E.Ob=function(){return Jzt(this)},E.Pb=function(){var i;return Jzt(this),i=this.b,this.b=null,i},E.Qb=function(){this.a.Qb()},K(Ca,"EcoreUtil/ProperContentIterator",759),H(1528,1527,{},GTt);var mhn;K(Ca,"EcoreValidator",1528);var bhn;$a(Ca,"FeatureMapUtil/Validator"),H(1295,1,{2041:1},q4t),E.am=function(i){return!0},K(Ca,"FeatureMapUtil/1",1295),H(773,1,{2041:1},YPe),E.am=function(i){var l;return this.c==i?!0:(l=Ht(br(this.a,i)),l==null?_Cr(this,i)?(VPt(this.a,i,(Qn(),HI)),!0):(VPt(this.a,i,(Qn(),a2)),!1):l==(Qn(),HI))},E.e=!1;var K2e;K(Ca,"FeatureMapUtil/BasicValidator",773),H(774,45,p5,x8e),K(Ca,"FeatureMapUtil/BasicValidator/Cache",774),H(509,56,{20:1,31:1,56:1,16:1,15:1,61:1,79:1,71:1,97:1},DU),E.bd=function(i,l){DYt(this.c,this.b,i,l)},E.Fc=function(i){return bPe(this.c,this.b,i)},E.cd=function(i,l){return zkr(this.c,this.b,i,l)},E.Gc=function(i){return WL(this,i)},E.Gi=function(i,l){Pgr(this.c,this.b,i,l)},E.Wk=function(i,l){return cPe(this.c,this.b,i,l)},E.$i=function(i){return NJ(this.c,this.b,i,!1)},E.Ii=function(){return SIt(this.c,this.b)},E.Ji=function(){return osr(this.c,this.b)},E.Ki=function(i){return zpr(this.c,this.b,i)},E.Xk=function(i,l){return WNt(this,i,l)},E.$b=function(){JA(this)},E.Hc=function(i){return NQ(this.c,this.b,i)},E.Ic=function(i){return Umr(this.c,this.b,i)},E.Xb=function(i){return NJ(this.c,this.b,i,!0)},E.Fk=function(i){return this},E.dd=function(i){return W1r(this.c,this.b,i)},E.dc=function(){return mX(this)},E.Qj=function(){return!Qz(this.c,this.b)},E.Kc=function(){return Cgr(this.c,this.b)},E.ed=function(){return Agr(this.c,this.b)},E.fd=function(i){return ivr(this.c,this.b,i)},E.Ti=function(i,l){return Kjt(this.c,this.b,i,l)},E.Ui=function(i,l){Hpr(this.c,this.b,i,l)},E.gd=function(i){return AHt(this.c,this.b,i)},E.Mc=function(i){return GCr(this.c,this.b,i)},E.hd=function(i,l){return iWt(this.c,this.b,i,l)},E.Wb=function(i){dJ(this.c,this.b),WL(this,v(i,15))},E.gc=function(){return rvr(this.c,this.b)},E.Pc=function(){return X0r(this.c,this.b)},E.Qc=function(i){return K1r(this.c,this.b,i)},E.Ib=function(){var i,l;for(l=new qb,l.a+="[",i=SIt(this.c,this.b);b0e(i);)bl(l,XL(jZ(i))),b0e(i)&&(l.a+=Xo);return l.a+="]",l.a},E.Gk=function(){dJ(this.c,this.b)},K(Ca,"FeatureMapUtil/FeatureEList",509),H(644,39,oq,ffe),E.hj=function(i){return BD(this,i)},E.mj=function(i){var l,d,g,y,x,T,R;switch(this.d){case 1:case 2:{if(x=i.jj(),Ze(x)===Ze(this.c)&&BD(this,null)==i.hj(null))return this.g=i.ij(),i.gj()==1&&(this.d=1),!0;break}case 3:{switch(y=i.gj(),y){case 3:{if(x=i.jj(),Ze(x)===Ze(this.c)&&BD(this,null)==i.hj(null))return this.d=5,l=new PE(2),Yr(l,this.g),Yr(l,i.ij()),this.g=l,!0;break}}break}case 5:{switch(y=i.gj(),y){case 3:{if(x=i.jj(),Ze(x)===Ze(this.c)&&BD(this,null)==i.hj(null))return d=v(this.g,16),d.Fc(i.ij()),!0;break}}break}case 4:{switch(y=i.gj(),y){case 3:{if(x=i.jj(),Ze(x)===Ze(this.c)&&BD(this,null)==i.hj(null))return this.d=1,this.g=i.ij(),!0;break}case 4:{if(x=i.jj(),Ze(x)===Ze(this.c)&&BD(this,null)==i.hj(null))return this.d=6,R=new PE(2),Yr(R,this.n),Yr(R,i.kj()),this.n=R,T=Te(xe(Wr,1),vi,28,15,[this.o,i.lj()]),this.g=T,!0;break}}break}case 6:{switch(y=i.gj(),y){case 4:{if(x=i.jj(),Ze(x)===Ze(this.c)&&BD(this,null)==i.hj(null))return d=v(this.n,16),d.Fc(i.kj()),T=v(this.g,53),g=st(Wr,vi,28,T.length+1,15,1),Gc(T,0,g,0,T.length),g[T.length]=i.lj(),this.g=g,!0;break}}break}}return!1},K(Ca,"FeatureMapUtil/FeatureENotificationImpl",644),H(564,509,{20:1,31:1,56:1,16:1,15:1,61:1,79:1,160:1,220:1,2036:1,71:1,97:1},VX),E.Ol=function(i,l){return bPe(this.c,i,l)},E.Pl=function(i,l,d){return cPe(this.c,i,l,d)},E.Ql=function(i,l,d){return MPe(this.c,i,l,d)},E.Rl=function(){return this},E.Sl=function(i,l){return AG(this.c,i,l)},E.Tl=function(i){return v(NJ(this.c,this.b,i,!1),76).Lk()},E.Ul=function(i){return v(NJ(this.c,this.b,i,!1),76).md()},E.Vl=function(){return this.a},E.Wl=function(i){return!Qz(this.c,i)},E.Xl=function(i,l){OJ(this.c,i,l)},E.Yl=function(i){return x$t(this.c,i)},E.Zl=function(i){tqt(this.c,i)},K(Ca,"FeatureMapUtil/FeatureFeatureMap",564),H(1294,1,Wme,Q8t),E.Fk=function(i){return NJ(this.b,this.a,-1,i)},E.Qj=function(){return!Qz(this.b,this.a)},E.Wb=function(i){OJ(this.b,this.a,i)},E.Gk=function(){dJ(this.b,this.a)},K(Ca,"FeatureMapUtil/FeatureValue",1294);var M6,X2e,Q2e,P6,yhn,CH=$a(Vee,"AnyType");H(680,63,nb,Gue),K(Vee,"InvalidDatatypeValueException",680);var bre=$a(Vee,YJt),AH=$a(Vee,jJt),KKe=$a(Vee,WJt),vhn,Tc,XKe,_w,_hn,whn,Ehn,xhn,Shn,Thn,Chn,Ahn,khn,Rhn,Ihn,aC,Nhn,sC,tB,Ohn,Ox,kH,RH,Lhn,nB,rB;H(844,516,{110:1,94:1,93:1,58:1,54:1,99:1,857:1},Y7e),E.Lh=function(i,l,d){switch(i){case 0:return d?(!this.c&&(this.c=new Xa(this,0)),this.c):(!this.c&&(this.c=new Xa(this,0)),this.c.b);case 1:return d?(!this.c&&(this.c=new Xa(this,0)),v(Zc(this.c,(ca(),_w)),160)):(!this.c&&(this.c=new Xa(this,0)),v(v(Zc(this.c,(ca(),_w)),160),220)).Vl();case 2:return d?(!this.b&&(this.b=new Xa(this,2)),this.b):(!this.b&&(this.b=new Xa(this,2)),this.b.b)}return lf(this,i-kr(this.ii()),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():this.ii(),i),l,d)},E.Uh=function(i,l,d){var g;switch(l){case 0:return!this.c&&(this.c=new Xa(this,0)),xG(this.c,i,d);case 1:return(!this.c&&(this.c=new Xa(this,0)),v(v(Zc(this.c,(ca(),_w)),160),71)).Xk(i,d);case 2:return!this.b&&(this.b=new Xa(this,2)),xG(this.b,i,d)}return g=v(qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():this.ii(),l),69),g.wk().Ak(this,KOe(this),l-kr(this.ii()),i,d)},E.Wh=function(i){switch(i){case 0:return!!this.c&&this.c.i!=0;case 1:return!(!this.c&&(this.c=new Xa(this,0)),v(Zc(this.c,(ca(),_w)),160)).dc();case 2:return!!this.b&&this.b.i!=0}return sf(this,i-kr(this.ii()),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():this.ii(),i))},E.bi=function(i,l){switch(i){case 0:!this.c&&(this.c=new Xa(this,0)),ez(this.c,l);return;case 1:(!this.c&&(this.c=new Xa(this,0)),v(v(Zc(this.c,(ca(),_w)),160),220)).Wb(l);return;case 2:!this.b&&(this.b=new Xa(this,2)),ez(this.b,l);return}df(this,i-kr(this.ii()),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():this.ii(),i),l)},E.ii=function(){return ca(),XKe},E.ki=function(i){switch(i){case 0:!this.c&&(this.c=new Xa(this,0)),Gr(this.c);return;case 1:(!this.c&&(this.c=new Xa(this,0)),v(Zc(this.c,(ca(),_w)),160)).$b();return;case 2:!this.b&&(this.b=new Xa(this,2)),Gr(this.b);return}hf(this,i-kr(this.ii()),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():this.ii(),i))},E.Ib=function(){var i;return this.j&4?T0(this):(i=new Ff(T0(this)),i.a+=" (mixed: ",HL(i,this.c),i.a+=", anyAttribute: ",HL(i,this.b),i.a+=")",i.a)},K(_s,"AnyTypeImpl",844),H(681,516,{110:1,94:1,93:1,58:1,54:1,99:1,2119:1,681:1},e3t),E.Lh=function(i,l,d){switch(i){case 0:return this.a;case 1:return this.b}return lf(this,i-kr((ca(),aC)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():aC,i),l,d)},E.Wh=function(i){switch(i){case 0:return this.a!=null;case 1:return this.b!=null}return sf(this,i-kr((ca(),aC)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():aC,i))},E.bi=function(i,l){switch(i){case 0:Krr(this,ai(l));return;case 1:Qrr(this,ai(l));return}df(this,i-kr((ca(),aC)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():aC,i),l)},E.ii=function(){return ca(),aC},E.ki=function(i){switch(i){case 0:this.a=null;return;case 1:this.b=null;return}hf(this,i-kr((ca(),aC)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():aC,i))},E.Ib=function(){var i;return this.j&4?T0(this):(i=new Ff(T0(this)),i.a+=" (data: ",bl(i,this.a),i.a+=", target: ",bl(i,this.b),i.a+=")",i.a)},E.a=null,E.b=null,K(_s,"ProcessingInstructionImpl",681),H(682,844,{110:1,94:1,93:1,58:1,54:1,99:1,857:1,2120:1,682:1},I6t),E.Lh=function(i,l,d){switch(i){case 0:return d?(!this.c&&(this.c=new Xa(this,0)),this.c):(!this.c&&(this.c=new Xa(this,0)),this.c.b);case 1:return d?(!this.c&&(this.c=new Xa(this,0)),v(Zc(this.c,(ca(),_w)),160)):(!this.c&&(this.c=new Xa(this,0)),v(v(Zc(this.c,(ca(),_w)),160),220)).Vl();case 2:return d?(!this.b&&(this.b=new Xa(this,2)),this.b):(!this.b&&(this.b=new Xa(this,2)),this.b.b);case 3:return!this.c&&(this.c=new Xa(this,0)),ai(AG(this.c,(ca(),tB),!0));case 4:return gIe(this.a,(!this.c&&(this.c=new Xa(this,0)),ai(AG(this.c,(ca(),tB),!0))));case 5:return this.a}return lf(this,i-kr((ca(),sC)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():sC,i),l,d)},E.Wh=function(i){switch(i){case 0:return!!this.c&&this.c.i!=0;case 1:return!(!this.c&&(this.c=new Xa(this,0)),v(Zc(this.c,(ca(),_w)),160)).dc();case 2:return!!this.b&&this.b.i!=0;case 3:return!this.c&&(this.c=new Xa(this,0)),ai(AG(this.c,(ca(),tB),!0))!=null;case 4:return gIe(this.a,(!this.c&&(this.c=new Xa(this,0)),ai(AG(this.c,(ca(),tB),!0))))!=null;case 5:return!!this.a}return sf(this,i-kr((ca(),sC)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():sC,i))},E.bi=function(i,l){switch(i){case 0:!this.c&&(this.c=new Xa(this,0)),ez(this.c,l);return;case 1:(!this.c&&(this.c=new Xa(this,0)),v(v(Zc(this.c,(ca(),_w)),160),220)).Wb(l);return;case 2:!this.b&&(this.b=new Xa(this,2)),ez(this.b,l);return;case 3:rOe(this,ai(l));return;case 4:rOe(this,pIe(this.a,l));return;case 5:Xrr(this,v(l,156));return}df(this,i-kr((ca(),sC)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():sC,i),l)},E.ii=function(){return ca(),sC},E.ki=function(i){switch(i){case 0:!this.c&&(this.c=new Xa(this,0)),Gr(this.c);return;case 1:(!this.c&&(this.c=new Xa(this,0)),v(Zc(this.c,(ca(),_w)),160)).$b();return;case 2:!this.b&&(this.b=new Xa(this,2)),Gr(this.b);return;case 3:!this.c&&(this.c=new Xa(this,0)),OJ(this.c,(ca(),tB),null);return;case 4:rOe(this,pIe(this.a,null));return;case 5:this.a=null;return}hf(this,i-kr((ca(),sC)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():sC,i))},K(_s,"SimpleAnyTypeImpl",682),H(683,516,{110:1,94:1,93:1,58:1,54:1,99:1,2121:1,683:1},N6t),E.Lh=function(i,l,d){switch(i){case 0:return d?(!this.a&&(this.a=new Xa(this,0)),this.a):(!this.a&&(this.a=new Xa(this,0)),this.a.b);case 1:return d?(!this.b&&(this.b=new uh((Pn(),nl),_c,this,1)),this.b):(!this.b&&(this.b=new uh((Pn(),nl),_c,this,1)),yz(this.b));case 2:return d?(!this.c&&(this.c=new uh((Pn(),nl),_c,this,2)),this.c):(!this.c&&(this.c=new uh((Pn(),nl),_c,this,2)),yz(this.c));case 3:return!this.a&&(this.a=new Xa(this,0)),Zc(this.a,(ca(),kH));case 4:return!this.a&&(this.a=new Xa(this,0)),Zc(this.a,(ca(),RH));case 5:return!this.a&&(this.a=new Xa(this,0)),Zc(this.a,(ca(),nB));case 6:return!this.a&&(this.a=new Xa(this,0)),Zc(this.a,(ca(),rB))}return lf(this,i-kr((ca(),Ox)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():Ox,i),l,d)},E.Uh=function(i,l,d){var g;switch(l){case 0:return!this.a&&(this.a=new Xa(this,0)),xG(this.a,i,d);case 1:return!this.b&&(this.b=new uh((Pn(),nl),_c,this,1)),DX(this.b,i,d);case 2:return!this.c&&(this.c=new uh((Pn(),nl),_c,this,2)),DX(this.c,i,d);case 5:return!this.a&&(this.a=new Xa(this,0)),WNt(Zc(this.a,(ca(),nB)),i,d)}return g=v(qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():(ca(),Ox),l),69),g.wk().Ak(this,KOe(this),l-kr((ca(),Ox)),i,d)},E.Wh=function(i){switch(i){case 0:return!!this.a&&this.a.i!=0;case 1:return!!this.b&&this.b.f!=0;case 2:return!!this.c&&this.c.f!=0;case 3:return!this.a&&(this.a=new Xa(this,0)),!mX(Zc(this.a,(ca(),kH)));case 4:return!this.a&&(this.a=new Xa(this,0)),!mX(Zc(this.a,(ca(),RH)));case 5:return!this.a&&(this.a=new Xa(this,0)),!mX(Zc(this.a,(ca(),nB)));case 6:return!this.a&&(this.a=new Xa(this,0)),!mX(Zc(this.a,(ca(),rB)))}return sf(this,i-kr((ca(),Ox)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():Ox,i))},E.bi=function(i,l){switch(i){case 0:!this.a&&(this.a=new Xa(this,0)),ez(this.a,l);return;case 1:!this.b&&(this.b=new uh((Pn(),nl),_c,this,1)),mZ(this.b,l);return;case 2:!this.c&&(this.c=new uh((Pn(),nl),_c,this,2)),mZ(this.c,l);return;case 3:!this.a&&(this.a=new Xa(this,0)),JA(Zc(this.a,(ca(),kH))),!this.a&&(this.a=new Xa(this,0)),WL(Zc(this.a,kH),v(l,16));return;case 4:!this.a&&(this.a=new Xa(this,0)),JA(Zc(this.a,(ca(),RH))),!this.a&&(this.a=new Xa(this,0)),WL(Zc(this.a,RH),v(l,16));return;case 5:!this.a&&(this.a=new Xa(this,0)),JA(Zc(this.a,(ca(),nB))),!this.a&&(this.a=new Xa(this,0)),WL(Zc(this.a,nB),v(l,16));return;case 6:!this.a&&(this.a=new Xa(this,0)),JA(Zc(this.a,(ca(),rB))),!this.a&&(this.a=new Xa(this,0)),WL(Zc(this.a,rB),v(l,16));return}df(this,i-kr((ca(),Ox)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():Ox,i),l)},E.ii=function(){return ca(),Ox},E.ki=function(i){switch(i){case 0:!this.a&&(this.a=new Xa(this,0)),Gr(this.a);return;case 1:!this.b&&(this.b=new uh((Pn(),nl),_c,this,1)),this.b.c.$b();return;case 2:!this.c&&(this.c=new uh((Pn(),nl),_c,this,2)),this.c.c.$b();return;case 3:!this.a&&(this.a=new Xa(this,0)),JA(Zc(this.a,(ca(),kH)));return;case 4:!this.a&&(this.a=new Xa(this,0)),JA(Zc(this.a,(ca(),RH)));return;case 5:!this.a&&(this.a=new Xa(this,0)),JA(Zc(this.a,(ca(),nB)));return;case 6:!this.a&&(this.a=new Xa(this,0)),JA(Zc(this.a,(ca(),rB)));return}hf(this,i-kr((ca(),Ox)),qn(this.j&2?(!this.k&&(this.k=new t1),this.k).Nk():Ox,i))},E.Ib=function(){var i;return this.j&4?T0(this):(i=new Ff(T0(this)),i.a+=" (mixed: ",HL(i,this.a),i.a+=")",i.a)},K(_s,"XMLTypeDocumentRootImpl",683),H(2028,720,{110:1,94:1,93:1,480:1,155:1,58:1,114:1,54:1,99:1,158:1,119:1,120:1,2122:1},H4t),E.ri=function(i,l){switch(i.hk()){case 7:case 8:case 9:case 10:case 16:case 22:case 23:case 24:case 25:case 26:case 32:case 33:case 34:case 36:case 37:case 44:case 45:case 50:case 51:case 53:case 55:case 56:case 57:case 58:case 60:case 61:case 4:return l==null?null:Kl(l);case 19:case 28:case 29:case 35:case 38:case 39:case 41:case 46:case 52:case 54:case 5:return ai(l);case 6:return Dor(v(l,195));case 12:case 47:case 49:case 11:return VWt(this,i,l);case 13:return l==null?null:Hkr(v(l,247));case 15:case 14:return l==null?null:Xhr(We(at(l)));case 17:return Gqt((ca(),l));case 18:return Gqt(l);case 21:case 20:return l==null?null:Qhr(v(l,161).a);case 27:return Mor(v(l,195));case 30:return nqt((ca(),v(l,15)));case 31:return nqt(v(l,15));case 40:return Bor((ca(),l));case 42:return qqt((ca(),l));case 43:return qqt(l);case 59:case 48:return Por((ca(),l));default:throw _e(new ar(FI+i.xe()+lx))}},E.si=function(i){var l,d,g,y,x;switch(i.G==-1&&(i.G=(d=Cd(i),d?uy(d.vi(),i):-1)),i.G){case 0:return l=new Y7e,l;case 1:return g=new e3t,g;case 2:return y=new I6t,y;case 3:return x=new N6t,x;default:throw _e(new ar(Ome+i.zb+lx))}},E.ti=function(i,l){var d,g,y,x,T,R,O,D,q,J,re,ae,le,de,Se,Me;switch(i.hk()){case 5:case 52:case 4:return l;case 6:return q2r(l);case 8:case 7:return l==null?null:REr(l);case 9:return l==null?null:Cz(Nd((g=eu(l,!0),g.length>0&&(sr(0,g.length),g.charCodeAt(0)==43)?(sr(1,g.length+1),g.substr(1)):g),-128,127)<<24>>24);case 10:return l==null?null:Cz(Nd((y=eu(l,!0),y.length>0&&(sr(0,y.length),y.charCodeAt(0)==43)?(sr(1,y.length+1),y.substr(1)):y),-128,127)<<24>>24);case 11:return ai(ex(this,(ca(),Ehn),l));case 12:return ai(ex(this,(ca(),xhn),l));case 13:return l==null?null:new mRe(eu(l,!0));case 15:case 14:return Z3r(l);case 16:return ai(ex(this,(ca(),Shn),l));case 17:return iGt((ca(),l));case 18:return iGt(l);case 28:case 29:case 35:case 38:case 39:case 41:case 54:case 19:return eu(l,!0);case 21:case 20:return lTr(l);case 22:return ai(ex(this,(ca(),Thn),l));case 23:return ai(ex(this,(ca(),Chn),l));case 24:return ai(ex(this,(ca(),Ahn),l));case 25:return ai(ex(this,(ca(),khn),l));case 26:return ai(ex(this,(ca(),Rhn),l));case 27:return N2r(l);case 30:return aGt((ca(),l));case 31:return aGt(l);case 32:return l==null?null:Nt(Nd((q=eu(l,!0),q.length>0&&(sr(0,q.length),q.charCodeAt(0)==43)?(sr(1,q.length+1),q.substr(1)):q),Po,qi));case 33:return l==null?null:new Ov((J=eu(l,!0),J.length>0&&(sr(0,J.length),J.charCodeAt(0)==43)?(sr(1,J.length+1),J.substr(1)):J));case 34:return l==null?null:Nt(Nd((re=eu(l,!0),re.length>0&&(sr(0,re.length),re.charCodeAt(0)==43)?(sr(1,re.length+1),re.substr(1)):re),Po,qi));case 36:return l==null?null:Zm(PJ((ae=eu(l,!0),ae.length>0&&(sr(0,ae.length),ae.charCodeAt(0)==43)?(sr(1,ae.length+1),ae.substr(1)):ae)));case 37:return l==null?null:Zm(PJ((le=eu(l,!0),le.length>0&&(sr(0,le.length),le.charCodeAt(0)==43)?(sr(1,le.length+1),le.substr(1)):le)));case 40:return k_r((ca(),l));case 42:return sGt((ca(),l));case 43:return sGt(l);case 44:return l==null?null:new Ov((de=eu(l,!0),de.length>0&&(sr(0,de.length),de.charCodeAt(0)==43)?(sr(1,de.length+1),de.substr(1)):de));case 45:return l==null?null:new Ov((Se=eu(l,!0),Se.length>0&&(sr(0,Se.length),Se.charCodeAt(0)==43)?(sr(1,Se.length+1),Se.substr(1)):Se));case 46:return eu(l,!1);case 47:return ai(ex(this,(ca(),Ihn),l));case 59:case 48:return A_r((ca(),l));case 49:return ai(ex(this,(ca(),Nhn),l));case 50:return l==null?null:V8(Nd((Me=eu(l,!0),Me.length>0&&(sr(0,Me.length),Me.charCodeAt(0)==43)?(sr(1,Me.length+1),Me.substr(1)):Me),zee,32767)<<16>>16);case 51:return l==null?null:V8(Nd((x=eu(l,!0),x.length>0&&(sr(0,x.length),x.charCodeAt(0)==43)?(sr(1,x.length+1),x.substr(1)):x),zee,32767)<<16>>16);case 53:return ai(ex(this,(ca(),Ohn),l));case 55:return l==null?null:V8(Nd((T=eu(l,!0),T.length>0&&(sr(0,T.length),T.charCodeAt(0)==43)?(sr(1,T.length+1),T.substr(1)):T),zee,32767)<<16>>16);case 56:return l==null?null:V8(Nd((R=eu(l,!0),R.length>0&&(sr(0,R.length),R.charCodeAt(0)==43)?(sr(1,R.length+1),R.substr(1)):R),zee,32767)<<16>>16);case 57:return l==null?null:Zm(PJ((O=eu(l,!0),O.length>0&&(sr(0,O.length),O.charCodeAt(0)==43)?(sr(1,O.length+1),O.substr(1)):O)));case 58:return l==null?null:Zm(PJ((D=eu(l,!0),D.length>0&&(sr(0,D.length),D.charCodeAt(0)==43)?(sr(1,D.length+1),D.substr(1)):D)));case 60:return l==null?null:Nt(Nd((d=eu(l,!0),d.length>0&&(sr(0,d.length),d.charCodeAt(0)==43)?(sr(1,d.length+1),d.substr(1)):d),Po,qi));case 61:return l==null?null:Nt(Nd(eu(l,!0),Po,qi));default:throw _e(new ar(FI+i.xe()+lx))}};var Dhn,QKe,Mhn,ZKe;K(_s,"XMLTypeFactoryImpl",2028),H(594,184,{110:1,94:1,93:1,155:1,197:1,58:1,241:1,114:1,54:1,99:1,158:1,184:1,119:1,120:1,690:1,2044:1,594:1},RLt),E.N=!1,E.O=!1;var Phn=!1;K(_s,"XMLTypePackageImpl",594),H(1961,1,{851:1},V4t),E.Kk=function(){return CPe(),Vhn},K(_s,"XMLTypePackageImpl/1",1961),H(1970,1,ki,Y4t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/10",1970),H(1971,1,ki,j4t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/11",1971),H(1972,1,ki,W4t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/12",1972),H(1973,1,ki,K4t),E.fk=function(i){return VS(i)},E.gk=function(i){return st(ws,kt,345,i,7,1)},K(_s,"XMLTypePackageImpl/13",1973),H(1974,1,ki,X4t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/14",1974),H(1975,1,ki,Q4t),E.fk=function(i){return $e(i,15)},E.gk=function(i){return st(_f,I4,15,i,0,1)},K(_s,"XMLTypePackageImpl/15",1975),H(1976,1,ki,Z4t),E.fk=function(i){return $e(i,15)},E.gk=function(i){return st(_f,I4,15,i,0,1)},K(_s,"XMLTypePackageImpl/16",1976),H(1977,1,ki,J4t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/17",1977),H(1978,1,ki,t3t),E.fk=function(i){return $e(i,161)},E.gk=function(i){return st(VI,kt,161,i,0,1)},K(_s,"XMLTypePackageImpl/18",1978),H(1979,1,ki,n3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/19",1979),H(1962,1,ki,r3t),E.fk=function(i){return $e(i,857)},E.gk=function(i){return st(CH,Yn,857,i,0,1)},K(_s,"XMLTypePackageImpl/2",1962),H(1980,1,ki,i3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/20",1980),H(1981,1,ki,a3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/21",1981),H(1982,1,ki,s3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/22",1982),H(1983,1,ki,o3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/23",1983),H(1984,1,ki,l3t),E.fk=function(i){return $e(i,195)},E.gk=function(i){return st(bh,kt,195,i,0,2)},K(_s,"XMLTypePackageImpl/24",1984),H(1985,1,ki,c3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/25",1985),H(1986,1,ki,u3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/26",1986),H(1987,1,ki,h3t),E.fk=function(i){return $e(i,15)},E.gk=function(i){return st(_f,I4,15,i,0,1)},K(_s,"XMLTypePackageImpl/27",1987),H(1988,1,ki,d3t),E.fk=function(i){return $e(i,15)},E.gk=function(i){return st(_f,I4,15,i,0,1)},K(_s,"XMLTypePackageImpl/28",1988),H(1989,1,ki,f3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/29",1989),H(1963,1,ki,p3t),E.fk=function(i){return $e(i,681)},E.gk=function(i){return st(bre,Yn,2119,i,0,1)},K(_s,"XMLTypePackageImpl/3",1963),H(1990,1,ki,g3t),E.fk=function(i){return $e(i,17)},E.gk=function(i){return st(Ao,kt,17,i,0,1)},K(_s,"XMLTypePackageImpl/30",1990),H(1991,1,ki,m3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/31",1991),H(1992,1,ki,b3t),E.fk=function(i){return $e(i,168)},E.gk=function(i){return st(ux,kt,168,i,0,1)},K(_s,"XMLTypePackageImpl/32",1992),H(1993,1,ki,y3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/33",1993),H(1994,1,ki,v3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/34",1994),H(1995,1,ki,_3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/35",1995),H(1996,1,ki,w3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/36",1996),H(1997,1,ki,E3t),E.fk=function(i){return $e(i,15)},E.gk=function(i){return st(_f,I4,15,i,0,1)},K(_s,"XMLTypePackageImpl/37",1997),H(1998,1,ki,x3t),E.fk=function(i){return $e(i,15)},E.gk=function(i){return st(_f,I4,15,i,0,1)},K(_s,"XMLTypePackageImpl/38",1998),H(1999,1,ki,S3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/39",1999),H(1964,1,ki,T3t),E.fk=function(i){return $e(i,682)},E.gk=function(i){return st(AH,Yn,2120,i,0,1)},K(_s,"XMLTypePackageImpl/4",1964),H(2e3,1,ki,C3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/40",2e3),H(2001,1,ki,A3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/41",2001),H(2002,1,ki,k3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/42",2002),H(2003,1,ki,R3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/43",2003),H(2004,1,ki,I3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/44",2004),H(2005,1,ki,N3t),E.fk=function(i){return $e(i,191)},E.gk=function(i){return st(hx,kt,191,i,0,1)},K(_s,"XMLTypePackageImpl/45",2005),H(2006,1,ki,O3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/46",2006),H(2007,1,ki,L3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/47",2007),H(2008,1,ki,D3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/48",2008),H(2009,1,ki,M3t),E.fk=function(i){return $e(i,191)},E.gk=function(i){return st(hx,kt,191,i,0,1)},K(_s,"XMLTypePackageImpl/49",2009),H(1965,1,ki,P3t),E.fk=function(i){return $e(i,683)},E.gk=function(i){return st(KKe,Yn,2121,i,0,1)},K(_s,"XMLTypePackageImpl/5",1965),H(2010,1,ki,B3t),E.fk=function(i){return $e(i,168)},E.gk=function(i){return st(ux,kt,168,i,0,1)},K(_s,"XMLTypePackageImpl/50",2010),H(2011,1,ki,F3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/51",2011),H(2012,1,ki,$3t),E.fk=function(i){return $e(i,17)},E.gk=function(i){return st(Ao,kt,17,i,0,1)},K(_s,"XMLTypePackageImpl/52",2012),H(1966,1,ki,U3t),E.fk=function(i){return ro(i)},E.gk=function(i){return st(Xt,kt,2,i,6,1)},K(_s,"XMLTypePackageImpl/6",1966),H(1967,1,ki,z3t),E.fk=function(i){return $e(i,195)},E.gk=function(i){return st(bh,kt,195,i,0,2)},K(_s,"XMLTypePackageImpl/7",1967),H(1968,1,ki,G3t),E.fk=function(i){return HS(i)},E.gk=function(i){return st(rs,kt,485,i,8,1)},K(_s,"XMLTypePackageImpl/8",1968),H(1969,1,ki,q3t),E.fk=function(i){return $e(i,222)},E.gk=function(i){return st(d6,kt,222,i,0,1)},K(_s,"XMLTypePackageImpl/9",1969);var fp,Oy,iB,yre,Ne;H(55,63,nb,oi),K(yy,"RegEx/ParseException",55),H(836,1,{},j6e),E.bm=function(i){return id*16)throw _e(new oi(fi((ii(),aJt))));d=d*16+y}while(!0);if(this.a!=125)throw _e(new oi(fi((ii(),sJt))));if(d>GI)throw _e(new oi(fi((ii(),oJt))));i=d}else{if(y=0,this.c!=0||(y=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(d=y,$i(this),this.c!=0||(y=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));d=d*16+y,i=d}break;case 117:if(g=0,$i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(l=g,$i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(l=l*16+g,$i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(l=l*16+g,$i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));l=l*16+g,i=l;break;case 118:if($i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(l=g,$i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(l=l*16+g,$i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(l=l*16+g,$i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(l=l*16+g,$i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(l=l*16+g,$i(this),this.c!=0||(g=G_(this.a))<0)throw _e(new oi(fi((ii(),by))));if(l=l*16+g,l>GI)throw _e(new oi(fi((ii(),"parser.descappe.4"))));i=l;break;case 65:case 90:case 122:throw _e(new oi(fi((ii(),lJt))))}return i},E.dm=function(i){var l,d;switch(i){case 100:d=(this.e&32)==32?Qv("Nd",!0):(zi(),vre);break;case 68:d=(this.e&32)==32?Qv("Nd",!1):(zi(),iXe);break;case 119:d=(this.e&32)==32?Qv("IsWord",!0):(zi(),RN);break;case 87:d=(this.e&32)==32?Qv("IsWord",!1):(zi(),sXe);break;case 115:d=(this.e&32)==32?Qv("IsSpace",!0):(zi(),B6);break;case 83:d=(this.e&32)==32?Qv("IsSpace",!1):(zi(),aXe);break;default:throw _e(new tc((l=i,len+l.toString(16))))}return d},E.em=function(i){var l,d,g,y,x,T,R,O,D,q,J,re;for(this.b=1,$i(this),l=null,this.c==0&&this.a==94?($i(this),i?q=(zi(),zi(),new Td(5)):(l=(zi(),zi(),new Td(4)),Jc(l,0,GI),q=new Td(4))):q=(zi(),zi(),new Td(4)),y=!0;(re=this.c)!=1&&!(re==0&&this.a==93&&!y);){if(y=!1,d=this.a,g=!1,re==10)switch(d){case 100:case 68:case 119:case 87:case 115:case 83:C4(q,this.dm(d)),g=!0;break;case 105:case 73:case 99:case 67:d=this.um(q,d),d<0&&(g=!0);break;case 112:case 80:if(J=SMe(this,d),!J)throw _e(new oi(fi((ii(),Vme))));C4(q,J),g=!0;break;default:d=this.cm()}else if(re==20){if(T=ZR(this.i,58,this.d),T<0)throw _e(new oi(fi((ii(),AUe))));if(R=!0,Do(this.i,this.d)==94&&(++this.d,R=!1),x=af(this.i,this.d,T),O=DBt(x,R,(this.e&512)==512),!O)throw _e(new oi(fi((ii(),eJt))));if(C4(q,O),g=!0,T+1>=this.j||Do(this.i,T+1)!=93)throw _e(new oi(fi((ii(),AUe))));this.d=T+2}if($i(this),!g)if(this.c!=0||this.a!=45)Jc(q,d,d);else{if($i(this),(re=this.c)==1)throw _e(new oi(fi((ii(),Dee))));re==0&&this.a==93?(Jc(q,d,d),Jc(q,45,45)):(D=this.a,re==10&&(D=this.cm()),$i(this),Jc(q,d,D))}(this.e&k0)==k0&&this.c==0&&this.a==44&&$i(this)}if(this.c==1)throw _e(new oi(fi((ii(),Dee))));return l&&(gM(l,q),q=l),a5(q),fM(q),this.b=0,$i(this),q},E.fm=function(){var i,l,d,g;for(d=this.em(!1);(g=this.c)!=7;)if(i=this.a,g==0&&(i==45||i==38)||g==4){if($i(this),this.c!=9)throw _e(new oi(fi((ii(),nJt))));if(l=this.em(!1),g==4)C4(d,l);else if(i==45)gM(d,l);else if(i==38)zWt(d,l);else throw _e(new tc("ASSERT"))}else throw _e(new oi(fi((ii(),rJt))));return $i(this),d},E.gm=function(){var i,l;return i=this.a-48,l=(zi(),zi(),new Zde(12,null,i)),!this.g&&(this.g=new kK),AK(this.g,new k7e(i)),$i(this),l},E.hm=function(){return $i(this),zi(),$hn},E.im=function(){return $i(this),zi(),Fhn},E.jm=function(){throw _e(new oi(fi((ii(),vf))))},E.km=function(){throw _e(new oi(fi((ii(),vf))))},E.lm=function(){return $i(this),Ybr()},E.mm=function(){return $i(this),zi(),zhn},E.nm=function(){return $i(this),zi(),qhn},E.om=function(){var i;if(this.d>=this.j||((i=Do(this.i,this.d++))&65504)!=64)throw _e(new oi(fi((ii(),QZt))));return $i(this),zi(),zi(),new Fg(0,i-64)},E.pm=function(){return $i(this),KAr()},E.qm=function(){return $i(this),zi(),Hhn},E.rm=function(){var i;return i=(zi(),zi(),new Fg(0,105)),$i(this),i},E.sm=function(){return $i(this),zi(),Ghn},E.tm=function(){return $i(this),zi(),Uhn},E.um=function(i,l){return this.cm()},E.vm=function(){return $i(this),zi(),nXe},E.wm=function(){var i,l,d,g,y;if(this.d+1>=this.j)throw _e(new oi(fi((ii(),WZt))));if(g=-1,l=null,i=Do(this.i,this.d),49<=i&&i<=57){if(g=i-48,!this.g&&(this.g=new kK),AK(this.g,new k7e(g)),++this.d,Do(this.i,this.d)!=41)throw _e(new oi(fi((ii(),tw))));++this.d}else switch(i==63&&--this.d,$i(this),l=QPe(this),l.e){case 20:case 21:case 22:case 23:break;case 8:if(this.c!=7)throw _e(new oi(fi((ii(),tw))));break;default:throw _e(new oi(fi((ii(),KZt))))}if($i(this),y=YE(this),d=null,y.e==2){if(y.Pm()!=2)throw _e(new oi(fi((ii(),XZt))));d=y.Lm(1),y=y.Lm(0)}if(this.c!=7)throw _e(new oi(fi((ii(),tw))));return $i(this),zi(),zi(),new gFt(g,l,y,d)},E.xm=function(){return $i(this),zi(),rXe},E.ym=function(){var i;if($i(this),i=aQ(24,YE(this)),this.c!=7)throw _e(new oi(fi((ii(),tw))));return $i(this),i},E.zm=function(){var i;if($i(this),i=aQ(20,YE(this)),this.c!=7)throw _e(new oi(fi((ii(),tw))));return $i(this),i},E.Am=function(){var i;if($i(this),i=aQ(22,YE(this)),this.c!=7)throw _e(new oi(fi((ii(),tw))));return $i(this),i},E.Bm=function(){var i,l,d,g,y;for(i=0,d=0,l=-1;this.d=this.j)throw _e(new oi(fi((ii(),TUe))));if(l==45){for(++this.d;this.d=this.j)throw _e(new oi(fi((ii(),TUe))))}if(l==58){if(++this.d,$i(this),g=uLt(YE(this),i,d),this.c!=7)throw _e(new oi(fi((ii(),tw))));$i(this)}else if(l==41)++this.d,$i(this),g=uLt(YE(this),i,d);else throw _e(new oi(fi((ii(),jZt))));return g},E.Cm=function(){var i;if($i(this),i=aQ(21,YE(this)),this.c!=7)throw _e(new oi(fi((ii(),tw))));return $i(this),i},E.Dm=function(){var i;if($i(this),i=aQ(23,YE(this)),this.c!=7)throw _e(new oi(fi((ii(),tw))));return $i(this),i},E.Em=function(){var i,l;if($i(this),i=this.f++,l=Cde(YE(this),i),this.c!=7)throw _e(new oi(fi((ii(),tw))));return $i(this),l},E.Fm=function(){var i;if($i(this),i=Cde(YE(this),0),this.c!=7)throw _e(new oi(fi((ii(),tw))));return $i(this),i},E.Gm=function(i){return $i(this),this.c==5?($i(this),XX(i,(zi(),zi(),new r4(9,i)))):XX(i,(zi(),zi(),new r4(3,i)))},E.Hm=function(i){var l;return $i(this),l=(zi(),zi(),new jL(2)),this.c==5?($i(this),V_(l,sB),V_(l,i)):(V_(l,i),V_(l,sB)),l},E.Im=function(i){return $i(this),this.c==5?($i(this),zi(),zi(),new r4(9,i)):(zi(),zi(),new r4(3,i))},E.a=0,E.b=0,E.c=0,E.d=0,E.e=0,E.f=1,E.g=null,E.j=0,K(yy,"RegEx/RegexParser",836),H(1947,836,{},O6t),E.bm=function(i){return!1},E.cm=function(){return aPe(this)},E.dm=function(i){return fI(i)},E.em=function(i){return PKt(this)},E.fm=function(){throw _e(new oi(fi((ii(),vf))))},E.gm=function(){throw _e(new oi(fi((ii(),vf))))},E.hm=function(){throw _e(new oi(fi((ii(),vf))))},E.im=function(){throw _e(new oi(fi((ii(),vf))))},E.jm=function(){return $i(this),fI(67)},E.km=function(){return $i(this),fI(73)},E.lm=function(){throw _e(new oi(fi((ii(),vf))))},E.mm=function(){throw _e(new oi(fi((ii(),vf))))},E.nm=function(){throw _e(new oi(fi((ii(),vf))))},E.om=function(){return $i(this),fI(99)},E.pm=function(){throw _e(new oi(fi((ii(),vf))))},E.qm=function(){throw _e(new oi(fi((ii(),vf))))},E.rm=function(){return $i(this),fI(105)},E.sm=function(){throw _e(new oi(fi((ii(),vf))))},E.tm=function(){throw _e(new oi(fi((ii(),vf))))},E.um=function(i,l){return C4(i,fI(l)),-1},E.vm=function(){return $i(this),zi(),zi(),new Fg(0,94)},E.wm=function(){throw _e(new oi(fi((ii(),vf))))},E.xm=function(){return $i(this),zi(),zi(),new Fg(0,36)},E.ym=function(){throw _e(new oi(fi((ii(),vf))))},E.zm=function(){throw _e(new oi(fi((ii(),vf))))},E.Am=function(){throw _e(new oi(fi((ii(),vf))))},E.Bm=function(){throw _e(new oi(fi((ii(),vf))))},E.Cm=function(){throw _e(new oi(fi((ii(),vf))))},E.Dm=function(){throw _e(new oi(fi((ii(),vf))))},E.Em=function(){var i;if($i(this),i=Cde(YE(this),0),this.c!=7)throw _e(new oi(fi((ii(),tw))));return $i(this),i},E.Fm=function(){throw _e(new oi(fi((ii(),vf))))},E.Gm=function(i){return $i(this),XX(i,(zi(),zi(),new r4(3,i)))},E.Hm=function(i){var l;return $i(this),l=(zi(),zi(),new jL(2)),V_(l,i),V_(l,sB),l},E.Im=function(i){return $i(this),zi(),zi(),new r4(3,i)};var oC=null,AN=null;K(yy,"RegEx/ParserForXMLSchema",1947),H(122,1,qI,rE),E.Jm=function(i){throw _e(new tc("Not supported."))},E.Km=function(){return-1},E.Lm=function(i){return null},E.Mm=function(){return null},E.Nm=function(i){},E.Om=function(i){},E.Pm=function(){return 0},E.Ib=function(){return this.Qm(0)},E.Qm=function(i){return this.e==11?".":""},E.e=0;var JKe,kN,aB,Bhn,eXe,p3=null,vre,Z2e=null,tXe,sB,J2e=null,nXe,rXe,iXe,aXe,sXe,Fhn,B6,$hn,Uhn,zhn,Ghn,RN,qhn,Hhn,aIr=K(yy,"RegEx/Token",122);H(138,122,{3:1,138:1,122:1},Td),E.Qm=function(i){var l,d,g;if(this.e==4)if(this==tXe)d=".";else if(this==vre)d="\\d";else if(this==RN)d="\\w";else if(this==B6)d="\\s";else{for(g=new qb,g.a+="[",l=0;l0&&(g.a+=","),this.b[l]===this.b[l+1]?bl(g,CG(this.b[l])):(bl(g,CG(this.b[l])),g.a+="-",bl(g,CG(this.b[l+1])));g.a+="]",d=g.a}else if(this==iXe)d="\\D";else if(this==sXe)d="\\W";else if(this==aXe)d="\\S";else{for(g=new qb,g.a+="[^",l=0;l0&&(g.a+=","),this.b[l]===this.b[l+1]?bl(g,CG(this.b[l])):(bl(g,CG(this.b[l])),g.a+="-",bl(g,CG(this.b[l+1])));g.a+="]",d=g.a}return d},E.a=!1,E.c=!1,K(yy,"RegEx/RangeToken",138),H(592,1,{592:1},k7e),E.a=0,K(yy,"RegEx/RegexParser/ReferencePosition",592),H(591,1,{3:1,591:1},j7t),E.Fb=function(i){var l;return i==null||!$e(i,591)?!1:(l=v(i,591),An(this.b,l.b)&&this.a==l.a)},E.Hb=function(){return ry(this.b+"/"+ZMe(this.a))},E.Ib=function(){return this.c.Qm(this.a)},E.a=0,K(yy,"RegEx/RegularExpression",591),H(228,122,qI,Fg),E.Km=function(){return this.a},E.Qm=function(i){var l,d,g;switch(this.e){case 0:switch(this.a){case 124:case 42:case 43:case 63:case 40:case 41:case 46:case 91:case 123:case 92:g="\\"+tde(this.a&vs);break;case 12:g="\\f";break;case 10:g="\\n";break;case 13:g="\\r";break;case 9:g="\\t";break;case 27:g="\\e";break;default:this.a>=el?(d=(l=this.a>>>0,"0"+l.toString(16)),g="\\v"+af(d,d.length-6,d.length)):g=""+tde(this.a&vs)}break;case 8:this==nXe||this==rXe?g=""+tde(this.a&vs):g="\\"+tde(this.a&vs);break;default:g=null}return g},E.a=0,K(yy,"RegEx/Token/CharToken",228),H(318,122,qI,r4),E.Lm=function(i){return this.a},E.Nm=function(i){this.b=i},E.Om=function(i){this.c=i},E.Pm=function(){return 1},E.Qm=function(i){var l;if(this.e==3)if(this.c<0&&this.b<0)l=this.a.Qm(i)+"*";else if(this.c==this.b)l=this.a.Qm(i)+"{"+this.c+"}";else if(this.c>=0&&this.b>=0)l=this.a.Qm(i)+"{"+this.c+","+this.b+"}";else if(this.c>=0&&this.b<0)l=this.a.Qm(i)+"{"+this.c+",}";else throw _e(new tc("Token#toString(): CLOSURE "+this.c+Xo+this.b));else if(this.c<0&&this.b<0)l=this.a.Qm(i)+"*?";else if(this.c==this.b)l=this.a.Qm(i)+"{"+this.c+"}?";else if(this.c>=0&&this.b>=0)l=this.a.Qm(i)+"{"+this.c+","+this.b+"}?";else if(this.c>=0&&this.b<0)l=this.a.Qm(i)+"{"+this.c+",}?";else throw _e(new tc("Token#toString(): NONGREEDYCLOSURE "+this.c+Xo+this.b));return l},E.b=0,E.c=0,K(yy,"RegEx/Token/ClosureToken",318),H(837,122,qI,bNe),E.Lm=function(i){return i==0?this.a:this.b},E.Pm=function(){return 2},E.Qm=function(i){var l;return this.b.e==3&&this.b.Lm(0)==this.a?l=this.a.Qm(i)+"+":this.b.e==9&&this.b.Lm(0)==this.a?l=this.a.Qm(i)+"+?":l=this.a.Qm(i)+(""+this.b.Qm(i)),l},K(yy,"RegEx/Token/ConcatToken",837),H(1945,122,qI,gFt),E.Lm=function(i){if(i==0)return this.d;if(i==1)return this.b;throw _e(new tc("Internal Error: "+i))},E.Pm=function(){return this.b?2:1},E.Qm=function(i){var l;return this.c>0?l="(?("+this.c+")":this.a.e==8?l="(?("+this.a+")":l="(?"+this.a,this.b?l+=this.d+"|"+this.b+")":l+=this.d+")",l},E.c=0,K(yy,"RegEx/Token/ConditionToken",1945),H(1946,122,qI,aMt),E.Lm=function(i){return this.b},E.Pm=function(){return 1},E.Qm=function(i){return"(?"+(this.a==0?"":ZMe(this.a))+(this.c==0?"":ZMe(this.c))+":"+this.b.Qm(i)+")"},E.a=0,E.c=0,K(yy,"RegEx/Token/ModifierToken",1946),H(838,122,qI,ANe),E.Lm=function(i){return this.a},E.Pm=function(){return 1},E.Qm=function(i){var l;switch(l=null,this.e){case 6:this.b==0?l="(?:"+this.a.Qm(i)+")":l="("+this.a.Qm(i)+")";break;case 20:l="(?="+this.a.Qm(i)+")";break;case 21:l="(?!"+this.a.Qm(i)+")";break;case 22:l="(?<="+this.a.Qm(i)+")";break;case 23:l="(?"+this.a.Qm(i)+")"}return l},E.b=0,K(yy,"RegEx/Token/ParenToken",838),H(530,122,{3:1,122:1,530:1},Zde),E.Mm=function(){return this.b},E.Qm=function(i){return this.e==12?"\\"+this.a:z3r(this.b)},E.a=0,K(yy,"RegEx/Token/StringToken",530),H(477,122,qI,jL),E.Jm=function(i){V_(this,i)},E.Lm=function(i){return v(kE(this.a,i),122)},E.Pm=function(){return this.a?this.a.a.c.length:0},E.Qm=function(i){var l,d,g,y,x;if(this.e==1){if(this.a.a.c.length==2)l=v(kE(this.a,0),122),d=v(kE(this.a,1),122),d.e==3&&d.Lm(0)==l?y=l.Qm(i)+"+":d.e==9&&d.Lm(0)==l?y=l.Qm(i)+"+?":y=l.Qm(i)+(""+d.Qm(i));else{for(x=new qb,g=0;g=this.c.b:this.a<=this.c.b},E.Sb=function(){return this.b>0},E.Tb=function(){return this.b},E.Vb=function(){return this.b-1},E.Qb=function(){throw _e(new zb(gen))},E.a=0,E.b=0,K(YUe,"ExclusiveRange/RangeIterator",258);var Tf=u8(Mee,"C"),Wr=u8(GM,"I"),Wh=u8(Zk,"Z"),C2=u8(qM,"J"),bh=u8($M,"B"),ao=u8(UM,"D"),g3=u8(zM,"F"),lC=u8(HM,"S"),sIr=$a("org.eclipse.elk.core.labels","ILabelManager"),oXe=$a(Qo,"DiagnosticChain"),lXe=$a(qJt,"ResourceSet"),cXe=K(Qo,"InvocationTargetException",null),Yhn=(OK(),_pr),jhn=jhn=hEr;fmr(oir),cmr("permProps",[[["locale","default"],[men,"gecko1_8"]],[["locale","default"],[men,"safari"]]]),jhn(null,"elk",null)}).call(this)}).call(this,typeof ml<"u"?ml:typeof self<"u"?self:typeof window<"u"?window:{})},{}],3:[function(r,a,s){function o(m,b){if(!(m instanceof b))throw new TypeError("Cannot call a class as a function")}function u(m,b){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:m}function h(m,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);m.prototype=Object.create(b&&b.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(m,b):m.__proto__=b)}var f=r("./elk-api.js?v=1775123024591").default,p=function(m){h(b,m);function b(){var _=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};o(this,b);var w=Object.assign({},_),S=!1;try{r.resolve("web-worker"),S=!0}catch{}if(_.workerUrl)if(S){var C=r("web-worker");w.workerFactory=function(I){return new C(I)}}else console.warn(`Web worker requested but 'web-worker' package not installed. +Consider installing the package or pass your own 'workerFactory' to ELK's constructor. +... Falling back to non-web worker version.`);if(!w.workerFactory){var A=r("./elk-worker.min.js?v=1775123024591"),k=A.Worker;w.workerFactory=function(I){return new k(I)}}return u(this,(b.__proto__||Object.getPrototypeOf(b)).call(this,w))}return b}(f);Object.defineProperty(a.exports,"__esModule",{value:!0}),a.exports=p,p.default=p},{"./elk-api.js?v=1775123024591":1,"./elk-worker.min.js?v=1775123024591":2,"web-worker":4}],4:[function(r,a,s){a.exports=Worker},{}]},{},[3])(3)})})(Bnr);var xwa=Bnr.exports;const Swa=O1(xwa),Twa=(e,t,r)=>{const{parentById:a}=r,s=new Set;let o=e;for(;o;){if(s.add(o),o===t)return o;o=a[o]}for(o=t;o;){if(s.has(o))return o;o=a[o]}return"root"},eAn=new Swa;let Hx={};const Cwa={};let Y7={};const Awa=async function(e,t,r,a,s,o,u){const f=r.select(`[id="${t}"]`).insert("g").attr("class","nodes"),p=Object.keys(e);return await Promise.all(p.map(async function(m){const b=e[m];let _="default";b.classes.length>0&&(_=b.classes.join(" ")),_=_+" flowchart-label";const w=Hw(b.styles);let S=b.text!==void 0?b.text:b.id;const C={width:0,height:0},A=[{id:b.id+"-west",layoutOptions:{"port.side":"WEST"}},{id:b.id+"-east",layoutOptions:{"port.side":"EAST"}},{id:b.id+"-south",layoutOptions:{"port.side":"SOUTH"}},{id:b.id+"-north",layoutOptions:{"port.side":"NORTH"}}];let k=0,I="",N={};switch(b.type){case"round":k=5,I="rect";break;case"square":I="rect";break;case"diamond":I="question",N={portConstraints:"FIXED_SIDE"};break;case"hexagon":I="hexagon";break;case"odd":I="rect_left_inv_arrow";break;case"lean_right":I="lean_right";break;case"lean_left":I="lean_left";break;case"trapezoid":I="trapezoid";break;case"inv_trapezoid":I="inv_trapezoid";break;case"odd_right":I="rect_left_inv_arrow";break;case"circle":I="circle";break;case"ellipse":I="ellipse";break;case"stadium":I="stadium";break;case"subroutine":I="subroutine";break;case"cylinder":I="cylinder";break;case"group":I="rect";break;case"doublecircle":I="doublecircle";break;default:I="rect"}const L={labelStyle:w.labelStyle,shape:I,labelText:S,labelType:b.labelType,rx:k,ry:k,class:_,style:w.style,id:b.id,link:b.link,linkTarget:b.linkTarget,tooltip:s.db.getTooltip(b.id)||"",domId:s.db.lookUpDomId(b.id),haveCallback:b.haveCallback,width:b.type==="group"?500:void 0,dir:b.dir,type:b.type,props:b.props,padding:Lf().flowchart.padding};let P,M;if(L.type!=="group")M=await _6e(f,L,b.dir),P=M.node().getBBox();else{a.createElementNS("http://www.w3.org/2000/svg","text");const{shapeSvg:U,bbox:$}=await Up(f,L,void 0,!0);C.width=$.width,C.wrappingWidth=Lf().flowchart.wrappingWidth,C.height=$.height,C.labelNode=U.node(),L.labelData=C}const F={id:b.id,ports:b.type==="diamond"?A:[],layoutOptions:N,labelText:S,labelData:C,domId:s.db.lookUpDomId(b.id),width:P==null?void 0:P.width,height:P==null?void 0:P.height,type:b.type,el:M,parent:o.parentById[b.id]};Y7[L.id]=F})),u},tAn=(e,t,r)=>{const a={TB:{in:{north:"north"},out:{south:"west",west:"east",east:"south"}},LR:{in:{west:"west"},out:{east:"south",south:"north",north:"east"}},RL:{in:{east:"east"},out:{west:"north",north:"south",south:"west"}},BT:{in:{south:"south"},out:{north:"east",east:"west",west:"north"}}};return a.TD=a.TB,a[r][t][e]},nAn=(e,t,r)=>{if(ut.info("getNextPort",{node:e,edgeDirection:t,graphDirection:r}),!Hx[e])switch(r){case"TB":case"TD":Hx[e]={inPosition:"north",outPosition:"south"};break;case"BT":Hx[e]={inPosition:"south",outPosition:"north"};break;case"RL":Hx[e]={inPosition:"east",outPosition:"west"};break;case"LR":Hx[e]={inPosition:"west",outPosition:"east"};break}const a=t==="in"?Hx[e].inPosition:Hx[e].outPosition;return t==="in"?Hx[e].inPosition=tAn(Hx[e].inPosition,t,r):Hx[e].outPosition=tAn(Hx[e].outPosition,t,r),a},kwa=(e,t)=>{let r=e.start,a=e.end;const s=r,o=a,u=Y7[r],h=Y7[a];return!u||!h?{source:r,target:a}:(u.type==="diamond"&&(r=`${r}-${nAn(r,"out",t)}`),h.type==="diamond"&&(a=`${a}-${nAn(a,"in",t)}`),{source:r,target:a,sourceId:s,targetId:o})},Rwa=function(e,t,r,a){ut.info("abc78 edges = ",e);const s=a.insert("g").attr("class","edgeLabels");let o={},u=t.db.getDirection(),h,f;if(e.defaultStyle!==void 0){const p=Hw(e.defaultStyle);h=p.style,f=p.labelStyle}return e.forEach(function(p){const m="L-"+p.start+"-"+p.end;o[m]===void 0?(o[m]=0,ut.info("abc78 new entry",m,o[m])):(o[m]++,ut.info("abc78 new entry",m,o[m]));let b=m+"-"+o[m];ut.info("abc78 new link id to be used is",m,b,o[m]);const _="LS-"+p.start,w="LE-"+p.end,S={style:"",labelStyle:""};switch(S.minlen=p.length||1,p.type==="arrow_open"?S.arrowhead="none":S.arrowhead="normal",S.arrowTypeStart="arrow_open",S.arrowTypeEnd="arrow_open",p.type){case"double_arrow_cross":S.arrowTypeStart="arrow_cross";case"arrow_cross":S.arrowTypeEnd="arrow_cross";break;case"double_arrow_point":S.arrowTypeStart="arrow_point";case"arrow_point":S.arrowTypeEnd="arrow_point";break;case"double_arrow_circle":S.arrowTypeStart="arrow_circle";case"arrow_circle":S.arrowTypeEnd="arrow_circle";break}let C="",A="";switch(p.stroke){case"normal":C="fill:none;",h!==void 0&&(C=h),f!==void 0&&(A=f),S.thickness="normal",S.pattern="solid";break;case"dotted":S.thickness="normal",S.pattern="dotted",S.style="fill:none;stroke-width:2px;stroke-dasharray:3;";break;case"thick":S.thickness="thick",S.pattern="solid",S.style="stroke-width: 3.5px;fill:none;";break}if(p.style!==void 0){const M=Hw(p.style);C=M.style,A=M.labelStyle}S.style=S.style+=C,S.labelStyle=S.labelStyle+=A,p.interpolate!==void 0?S.curve=fS(p.interpolate,Cg):e.defaultInterpolate!==void 0?S.curve=fS(e.defaultInterpolate,Cg):S.curve=fS(Cwa.curve,Cg),p.text===void 0?p.style!==void 0&&(S.arrowheadStyle="fill: #333"):(S.arrowheadStyle="fill: #333",S.labelpos="c"),S.labelType=p.labelType,S.label=p.text.replace(mi.lineBreakRegex,` +`),p.style===void 0&&(S.style=S.style||"stroke: #333; stroke-width: 1.5px;fill:none;"),S.labelStyle=S.labelStyle.replace("color:","fill:"),S.id=b,S.classes="flowchart-link "+_+" "+w;const k=Kbt(s,S),{source:I,target:N,sourceId:L,targetId:P}=kwa(p,u);ut.debug("abc78 source and target",I,N),r.edges.push({id:"e"+p.start+p.end,sources:[I],targets:[N],sourceId:L,targetId:P,labelEl:k,labels:[{width:S.width,height:S.height,orgWidth:S.width,orgHeight:S.height,text:S.label,layoutOptions:{"edgeLabels.inline":"true","edgeLabels.placement":"CENTER"}}],edgeData:S})}),r},Iwa=function(e,t,r,a,s){let o="";a&&(o=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search,o=o.replace(/\(/g,"\\("),o=o.replace(/\)/g,"\\)")),$er(e,t,o,s,r)},Nwa=function(e,t){return ut.info("Extracting classes"),t.db.getClasses()},Owa=function(e){const t={parentById:{},childrenById:{}},r=e.getSubGraphs();return ut.info("Subgraphs - ",r),r.forEach(function(a){a.nodes.forEach(function(s){t.parentById[s]=a.id,t.childrenById[a.id]===void 0&&(t.childrenById[a.id]=[]),t.childrenById[a.id].push(s)})}),r.forEach(function(a){a.id,t.parentById[a.id]!==void 0&&t.parentById[a.id]}),t},Lwa=function(e,t,r){const a=Twa(e,t,r);if(a===void 0||a==="root")return{x:0,y:0};const s=Y7[a].offset;return{x:s.posX,y:s.posY}},Dwa=function(e,t,r,a,s,o){const u=Lwa(t.sourceId,t.targetId,s),h=t.sections[0].startPoint,f=t.sections[0].endPoint,m=(t.sections[0].bendPoints?t.sections[0].bendPoints:[]).map(N=>[N.x+u.x,N.y+u.y]),b=[[h.x+u.x,h.y+u.y],...m,[f.x+u.x,f.y+u.y]],{x:_,y:w}=Fer(t.edgeData),S=r_().x(_).y(w).curve(Cg),C=e.insert("path").attr("d",S(b)).attr("class","path "+r.classes).attr("fill","none"),A=e.insert("g").attr("class","edgeLabel"),k=gn(A.node().appendChild(t.labelEl)),I=k.node().firstChild.getBoundingClientRect();k.attr("width",I.width),k.attr("height",I.height),A.attr("transform",`translate(${t.labels[0].x+u.x}, ${t.labels[0].y+u.y})`),Iwa(C,r,a.type,a.arrowMarkerAbsolute,o)},Fnr=(e,t)=>{e.forEach(r=>{r.children||(r.children=[]);const a=t.childrenById[r.id];a&&a.forEach(s=>{r.children.push(Y7[s])}),Fnr(r.children,t)})},Mwa=async function(e,t,r,a){var s;a.db.clear(),Y7={},Hx={},a.db.setGen("gen-2"),a.parser.parse(e);const o=gn("body").append("div").attr("style","height:400px").attr("id","cy");let u={id:"root",layoutOptions:{"elk.hierarchyHandling":"INCLUDE_CHILDREN","org.eclipse.elk.padding":"[top=100, left=100, bottom=110, right=110]","elk.layered.spacing.edgeNodeBetweenLayers":"30","elk.direction":"DOWN"},children:[],edges:[]};switch(ut.info("Drawing flowchart using v3 renderer",eAn),a.db.getDirection()){case"BT":u.layoutOptions["elk.direction"]="UP";break;case"TB":u.layoutOptions["elk.direction"]="DOWN";break;case"LR":u.layoutOptions["elk.direction"]="RIGHT";break;case"RL":u.layoutOptions["elk.direction"]="LEFT";break}const{securityLevel:f,flowchart:p}=Lf();let m;f==="sandbox"&&(m=gn("#i"+t));const b=gn(f==="sandbox"?m.nodes()[0].contentDocument.body:"body"),_=f==="sandbox"?m.nodes()[0].contentDocument:document,w=b.select(`[id="${t}"]`);jbt(w,["point","circle","cross"],a.type,t);const C=a.db.getVertices();let A;const k=a.db.getSubGraphs();ut.info("Subgraphs - ",k);for(let U=k.length-1;U>=0;U--)A=k[U],a.db.addVertex(A.id,{text:A.title,type:A.labelType},"group",void 0,A.classes,A.dir);const I=w.insert("g").attr("class","subgraphs"),N=Owa(a.db);u=await Awa(C,t,b,_,a,N,u);const L=w.insert("g").attr("class","edges edgePath"),P=a.db.getEdges();u=Rwa(P,a,u,w),Object.keys(Y7).forEach(U=>{const $=Y7[U];$.parent||u.children.push($),N.childrenById[U]!==void 0&&($.labels=[{text:$.labelText,layoutOptions:{"nodeLabels.placement":"[H_CENTER, V_TOP, INSIDE]"},width:$.labelData.width,height:$.labelData.height}],delete $.x,delete $.y,delete $.width,delete $.height)}),Fnr(u.children,N),ut.info("after layout",JSON.stringify(u,null,2));const F=await eAn.layout(u);$nr(0,0,F.children,w,I,a,0),ut.info("after layout",F),(s=F.edges)==null||s.map(U=>{Dwa(L,U,U.edgeData,a,N,t)}),oL({},w,p.diagramPadding,p.useMaxWidth),o.remove()},$nr=(e,t,r,a,s,o,u)=>{r.forEach(function(h){if(h)if(Y7[h.id].offset={posX:h.x+e,posY:h.y+t,x:e,y:t,depth:u,width:h.width,height:h.height},h.type==="group"){const f=s.insert("g").attr("class","subgraph");f.insert("rect").attr("class","subgraph subgraph-lvl-"+u%5+" node").attr("x",h.x+e).attr("y",h.y+t).attr("width",h.width).attr("height",h.height);const p=f.insert("g").attr("class","label"),m=Lf().flowchart.htmlLabels?h.labelData.width/2:0;p.attr("transform",`translate(${h.labels[0].x+e+h.x+m}, ${h.labels[0].y+t+h.y+3})`),p.node().appendChild(h.labelData.labelNode),ut.info("Id (UGH)= ",h.type,h.labels)}else ut.info("Id (UGH)= ",h.id),h.el.attr("transform",`translate(${h.x+e+h.width/2}, ${h.y+t+h.height/2})`)}),r.forEach(function(h){h&&h.type==="group"&&$nr(e+h.x,t+h.y,h.children,a,s,o,u+1)})},Pwa={getClasses:Nwa,draw:Mwa},Bwa=e=>{let t="";for(let r=0;r<5;r++)t+=` + .subgraph-lvl-${r} { + fill: ${e[`surface${r}`]}; + stroke: ${e[`surfacePeer${r}`]}; + } + `;return t},Fwa=e=>`.label { + font-family: ${e.fontFamily}; + color: ${e.nodeTextColor||e.textColor}; + } + .cluster-label text { + fill: ${e.titleColor}; + } + .cluster-label span { + color: ${e.titleColor}; + } + + .label text,span { + fill: ${e.nodeTextColor||e.textColor}; + color: ${e.nodeTextColor||e.textColor}; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + + .node .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + .arrowheadPath { + fill: ${e.arrowheadColor}; + } + + .edgePath .path { + stroke: ${e.lineColor}; + stroke-width: 2.0px; + } + + .flowchart-link { + stroke: ${e.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${e.edgeLabelBackground}; + rect { + opacity: 0.85; + background-color: ${e.edgeLabelBackground}; + fill: ${e.edgeLabelBackground}; + } + text-align: center; + } + + .cluster rect { + fill: ${e.clusterBkg}; + stroke: ${e.clusterBorder}; + stroke-width: 1px; + } + + .cluster text { + fill: ${e.titleColor}; + } + + .cluster span { + color: ${e.titleColor}; + } + /* .cluster div { + color: ${e.titleColor}; + } */ + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: ${e.fontFamily}; + font-size: 12px; + background: ${e.tertiaryColor}; + border: 1px solid ${e.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .flowchartTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; + } + .subgraph { + stroke-width:2; + rx:3; + } + // .subgraph-lvl-1 { + // fill:#ccc; + // // stroke:black; + // } + + .flowchart-label text { + text-anchor: middle; + } + + ${Bwa(e)} +`,$wa=Fwa,Uwa={db:Nua,renderer:Pwa,parser:Pbt,styles:$wa},zwa=Object.freeze(Object.defineProperty({__proto__:null,diagram:Uwa},Symbol.toStringTag,{value:"Module"}));var tdt=function(){var e=function(_,w,S,C){for(S=S||{},C=_.length;C--;S[_[C]]=w);return S},t=[6,8,10,11,12,14,16,17,20,21],r=[1,9],a=[1,10],s=[1,11],o=[1,12],u=[1,13],h=[1,16],f=[1,17],p={trace:function(){},yy:{},symbols_:{error:2,start:3,timeline:4,document:5,EOF:6,line:7,SPACE:8,statement:9,NEWLINE:10,title:11,acc_title:12,acc_title_value:13,acc_descr:14,acc_descr_value:15,acc_descr_multiline_value:16,section:17,period_statement:18,event_statement:19,period:20,event:21,$accept:0,$end:1},terminals_:{2:"error",4:"timeline",6:"EOF",8:"SPACE",10:"NEWLINE",11:"title",12:"acc_title",13:"acc_title_value",14:"acc_descr",15:"acc_descr_value",16:"acc_descr_multiline_value",17:"section",20:"period",21:"event"},productions_:[0,[3,3],[5,0],[5,2],[7,2],[7,1],[7,1],[7,1],[9,1],[9,2],[9,2],[9,1],[9,1],[9,1],[9,1],[18,1],[19,1]],performAction:function(w,S,C,A,k,I,N){var L=I.length-1;switch(k){case 1:return I[L-1];case 2:this.$=[];break;case 3:I[L-1].push(I[L]),this.$=I[L-1];break;case 4:case 5:this.$=I[L];break;case 6:case 7:this.$=[];break;case 8:A.getCommonDb().setDiagramTitle(I[L].substr(6)),this.$=I[L].substr(6);break;case 9:this.$=I[L].trim(),A.getCommonDb().setAccTitle(this.$);break;case 10:case 11:this.$=I[L].trim(),A.getCommonDb().setAccDescription(this.$);break;case 12:A.addSection(I[L].substr(8)),this.$=I[L].substr(8);break;case 15:A.addTask(I[L],0,""),this.$=I[L];break;case 16:A.addEvent(I[L].substr(2)),this.$=I[L];break}},table:[{3:1,4:[1,2]},{1:[3]},e(t,[2,2],{5:3}),{6:[1,4],7:5,8:[1,6],9:7,10:[1,8],11:r,12:a,14:s,16:o,17:u,18:14,19:15,20:h,21:f},e(t,[2,7],{1:[2,1]}),e(t,[2,3]),{9:18,11:r,12:a,14:s,16:o,17:u,18:14,19:15,20:h,21:f},e(t,[2,5]),e(t,[2,6]),e(t,[2,8]),{13:[1,19]},{15:[1,20]},e(t,[2,11]),e(t,[2,12]),e(t,[2,13]),e(t,[2,14]),e(t,[2,15]),e(t,[2,16]),e(t,[2,4]),e(t,[2,9]),e(t,[2,10])],defaultActions:{},parseError:function(w,S){if(S.recoverable)this.trace(w);else{var C=new Error(w);throw C.hash=S,C}},parse:function(w){var S=this,C=[0],A=[],k=[null],I=[],N=this.table,L="",P=0,M=0,F=2,U=1,$=I.slice.call(arguments,1),G=Object.create(this.lexer),B={yy:{}};for(var Z in this.yy)Object.prototype.hasOwnProperty.call(this.yy,Z)&&(B.yy[Z]=this.yy[Z]);G.setInput(w,B.yy),B.yy.lexer=G,B.yy.parser=this,typeof G.yylloc>"u"&&(G.yylloc={});var z=G.yylloc;I.push(z);var Y=G.options&&G.options.ranges;typeof B.yy.parseError=="function"?this.parseError=B.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function W(){var be;return be=A.pop()||G.lex()||U,typeof be!="number"&&(be instanceof Array&&(A=be,be=A.pop()),be=S.symbols_[be]||be),be}for(var Q,V,j,ee,te={},ne,se,ie,ge;;){if(V=C[C.length-1],this.defaultActions[V]?j=this.defaultActions[V]:((Q===null||typeof Q>"u")&&(Q=W()),j=N[V]&&N[V][Q]),typeof j>"u"||!j.length||!j[0]){var ce="";ge=[];for(ne in N[V])this.terminals_[ne]&&ne>F&&ge.push("'"+this.terminals_[ne]+"'");G.showPosition?ce="Parse error on line "+(P+1)+`: +`+G.showPosition()+` +Expecting `+ge.join(", ")+", got '"+(this.terminals_[Q]||Q)+"'":ce="Parse error on line "+(P+1)+": Unexpected "+(Q==U?"end of input":"'"+(this.terminals_[Q]||Q)+"'"),this.parseError(ce,{text:G.match,token:this.terminals_[Q]||Q,line:G.yylineno,loc:z,expected:ge})}if(j[0]instanceof Array&&j.length>1)throw new Error("Parse Error: multiple actions possible at state: "+V+", token: "+Q);switch(j[0]){case 1:C.push(Q),k.push(G.yytext),I.push(G.yylloc),C.push(j[1]),Q=null,M=G.yyleng,L=G.yytext,P=G.yylineno,z=G.yylloc;break;case 2:if(se=this.productions_[j[1]][1],te.$=k[k.length-se],te._$={first_line:I[I.length-(se||1)].first_line,last_line:I[I.length-1].last_line,first_column:I[I.length-(se||1)].first_column,last_column:I[I.length-1].last_column},Y&&(te._$.range=[I[I.length-(se||1)].range[0],I[I.length-1].range[1]]),ee=this.performAction.apply(te,[L,M,P,B.yy,j[1],k,I].concat($)),typeof ee<"u")return ee;se&&(C=C.slice(0,-1*se*2),k=k.slice(0,-1*se),I=I.slice(0,-1*se)),C.push(this.productions_[j[1]][0]),k.push(te.$),I.push(te._$),ie=N[C[C.length-2]][C[C.length-1]],C.push(ie);break;case 3:return!0}}return!0}},m=function(){var _={EOF:1,parseError:function(S,C){if(this.yy.parser)this.yy.parser.parseError(S,C);else throw new Error(S)},setInput:function(w,S){return this.yy=S||this.yy||{},this._input=w,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var w=this._input[0];this.yytext+=w,this.yyleng++,this.offset++,this.match+=w,this.matched+=w;var S=w.match(/(?:\r\n?|\n).*/g);return S?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),w},unput:function(w){var S=w.length,C=w.split(/(?:\r\n?|\n)/g);this._input=w+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-S),this.offset-=S;var A=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),C.length-1&&(this.yylineno-=C.length-1);var k=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:C?(C.length===A.length?this.yylloc.first_column:0)+A[A.length-C.length].length-C[0].length:this.yylloc.first_column-S},this.options.ranges&&(this.yylloc.range=[k[0],k[0]+this.yyleng-S]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(w){this.unput(this.match.slice(w))},pastInput:function(){var w=this.matched.substr(0,this.matched.length-this.match.length);return(w.length>20?"...":"")+w.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var w=this.match;return w.length<20&&(w+=this._input.substr(0,20-w.length)),(w.substr(0,20)+(w.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var w=this.pastInput(),S=new Array(w.length+1).join("-");return w+this.upcomingInput()+` +`+S+"^"},test_match:function(w,S){var C,A,k;if(this.options.backtrack_lexer&&(k={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(k.yylloc.range=this.yylloc.range.slice(0))),A=w[0].match(/(?:\r\n?|\n).*/g),A&&(this.yylineno+=A.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:A?A[A.length-1].length-A[A.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+w[0].length},this.yytext+=w[0],this.match+=w[0],this.matches=w,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(w[0].length),this.matched+=w[0],C=this.performAction.call(this,this.yy,this,S,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),C)return C;if(this._backtrack){for(var I in k)this[I]=k[I];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var w,S,C,A;this._more||(this.yytext="",this.match="");for(var k=this._currentRules(),I=0;IS[0].length)){if(S=C,A=I,this.options.backtrack_lexer){if(w=this.test_match(C,k[I]),w!==!1)return w;if(this._backtrack){S=!1;continue}else return!1}else if(!this.options.flex)break}return S?(w=this.test_match(S,k[A]),w!==!1?w:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var S=this.next();return S||this.lex()},begin:function(S){this.conditionStack.push(S)},popState:function(){var S=this.conditionStack.length-1;return S>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(S){return S=this.conditionStack.length-1-Math.abs(S||0),S>=0?this.conditionStack[S]:"INITIAL"},pushState:function(S){this.begin(S)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(S,C,A,k){switch(A){case 0:break;case 1:break;case 2:return 10;case 3:break;case 4:break;case 5:return 4;case 6:return 11;case 7:return this.begin("acc_title"),12;case 8:return this.popState(),"acc_title_value";case 9:return this.begin("acc_descr"),14;case 10:return this.popState(),"acc_descr_value";case 11:this.begin("acc_descr_multiline");break;case 12:this.popState();break;case 13:return"acc_descr_multiline_value";case 14:return 17;case 15:return 21;case 16:return 20;case 17:return 6;case 18:return"INVALID"}},rules:[/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:timeline\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:accTitle\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*:\s*)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:accDescr\s*\{\s*)/i,/^(?:[\}])/i,/^(?:[^\}]*)/i,/^(?:section\s[^#:\n;]+)/i,/^(?::\s[^#:\n;]+)/i,/^(?:[^#:\n;]+)/i,/^(?:$)/i,/^(?:.)/i],conditions:{acc_descr_multiline:{rules:[12,13],inclusive:!1},acc_descr:{rules:[10],inclusive:!1},acc_title:{rules:[8],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,9,11,14,15,16,17,18],inclusive:!0}}};return _}();p.lexer=m;function b(){this.yy={}}return b.prototype=p,p.Parser=b,new b}();tdt.parser=tdt;const Gwa=tdt;let pW="",Unr=0;const Tyt=[],w5e=[],gW=[],znr=()=>SZn,Gnr=function(){Tyt.length=0,w5e.length=0,pW="",gW.length=0,Mb()},qnr=function(e){pW=e,Tyt.push(e)},Hnr=function(){return Tyt},Vnr=function(){let e=rAn();const t=100;let r=0;for(;!e&&rr.id===Unr-1).events.push(e)},Wnr=function(e){const t={section:pW,type:pW,description:e,task:e,classes:[]};w5e.push(t)},rAn=function(){const e=function(r){return gW[r].processed};let t=!0;for(const[r,a]of gW.entries())e(r),t=t&&a.processed;return t},qwa={clear:Gnr,getCommonDb:znr,addSection:qnr,getSections:Hnr,getTasks:Vnr,addTask:Ynr,addTaskOrg:Wnr,addEvent:jnr},Hwa=Object.freeze(Object.defineProperty({__proto__:null,addEvent:jnr,addSection:qnr,addTask:Ynr,addTaskOrg:Wnr,clear:Gnr,default:qwa,getCommonDb:znr,getSections:Hnr,getTasks:Vnr},Symbol.toStringTag,{value:"Module"})),Vwa=12,C6e=function(e,t){const r=e.append("rect");return r.attr("x",t.x),r.attr("y",t.y),r.attr("fill",t.fill),r.attr("stroke",t.stroke),r.attr("width",t.width),r.attr("height",t.height),r.attr("rx",t.rx),r.attr("ry",t.ry),t.class!==void 0&&r.attr("class",t.class),r},Ywa=function(e,t){const a=e.append("circle").attr("cx",t.cx).attr("cy",t.cy).attr("class","face").attr("r",15).attr("stroke-width",2).attr("overflow","visible"),s=e.append("g");s.append("circle").attr("cx",t.cx-15/3).attr("cy",t.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666"),s.append("circle").attr("cx",t.cx+15/3).attr("cy",t.cy-15/3).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666");function o(f){const p=_S().startAngle(Math.PI/2).endAngle(3*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);f.append("path").attr("class","mouth").attr("d",p).attr("transform","translate("+t.cx+","+(t.cy+2)+")")}function u(f){const p=_S().startAngle(3*Math.PI/2).endAngle(5*(Math.PI/2)).innerRadius(7.5).outerRadius(6.8181818181818175);f.append("path").attr("class","mouth").attr("d",p).attr("transform","translate("+t.cx+","+(t.cy+7)+")")}function h(f){f.append("line").attr("class","mouth").attr("stroke",2).attr("x1",t.cx-5).attr("y1",t.cy+7).attr("x2",t.cx+5).attr("y2",t.cy+7).attr("class","mouth").attr("stroke-width","1px").attr("stroke","#666")}return t.score>3?o(s):t.score<3?u(s):h(s),a},jwa=function(e,t){const r=e.append("circle");return r.attr("cx",t.cx),r.attr("cy",t.cy),r.attr("class","actor-"+t.pos),r.attr("fill",t.fill),r.attr("stroke",t.stroke),r.attr("r",t.r),r.class!==void 0&&r.attr("class",r.class),t.title!==void 0&&r.append("title").text(t.title),r},Knr=function(e,t){const r=t.text.replace(//gi," "),a=e.append("text");a.attr("x",t.x),a.attr("y",t.y),a.attr("class","legend"),a.style("text-anchor",t.anchor),t.class!==void 0&&a.attr("class",t.class);const s=a.append("tspan");return s.attr("x",t.x+t.textMargin*2),s.text(r),a},Wwa=function(e,t){function r(s,o,u,h,f){return s+","+o+" "+(s+u)+","+o+" "+(s+u)+","+(o+h-f)+" "+(s+u-f*1.2)+","+(o+h)+" "+s+","+(o+h)}const a=e.append("polygon");a.attr("points",r(t.x,t.y,50,20,7)),a.attr("class","labelBox"),t.y=t.y+t.labelMargin,t.x=t.x+.5*t.labelMargin,Knr(e,t)},Kwa=function(e,t,r){const a=e.append("g"),s=Cyt();s.x=t.x,s.y=t.y,s.fill=t.fill,s.width=r.width,s.height=r.height,s.class="journey-section section-type-"+t.num,s.rx=3,s.ry=3,C6e(a,s),Xnr(r)(t.text,a,s.x,s.y,s.width,s.height,{class:"journey-section section-type-"+t.num},r,t.colour)};let iAn=-1;const Xwa=function(e,t,r){const a=t.x+r.width/2,s=e.append("g");iAn++;const o=300+5*30;s.append("line").attr("id","task"+iAn).attr("x1",a).attr("y1",t.y).attr("x2",a).attr("y2",o).attr("class","task-line").attr("stroke-width","1px").attr("stroke-dasharray","4 2").attr("stroke","#666"),Ywa(s,{cx:a,cy:300+(5-t.score)*30,score:t.score});const u=Cyt();u.x=t.x,u.y=t.y,u.fill=t.fill,u.width=r.width,u.height=r.height,u.class="task task-type-"+t.num,u.rx=3,u.ry=3,C6e(s,u),t.x+14,Xnr(r)(t.task,s,u.x,u.y,u.width,u.height,{class:"task"},r,t.colour)},Qwa=function(e,t){C6e(e,{x:t.startx,y:t.starty,width:t.stopx-t.startx,height:t.stopy-t.starty,fill:t.fill,class:"rect"}).lower()},Zwa=function(){return{x:0,y:0,fill:void 0,"text-anchor":"start",width:100,height:100,textMargin:0,rx:0,ry:0}},Cyt=function(){return{x:0,y:0,width:100,anchor:"start",height:100,rx:0,ry:0}},Xnr=function(){function e(s,o,u,h,f,p,m,b){const _=o.append("text").attr("x",u+f/2).attr("y",h+p/2+5).style("font-color",b).style("text-anchor","middle").text(s);a(_,m)}function t(s,o,u,h,f,p,m,b,_){const{taskFontSize:w,taskFontFamily:S}=b,C=s.split(//gi);for(let A=0;A)/).reverse(),s,o=[],u=1.1,h=r.attr("y"),f=parseFloat(r.attr("dy")),p=r.text(null).append("tspan").attr("x",0).attr("y",h).attr("dy",f+"em");for(let m=0;mt||s==="
    ")&&(o.pop(),p.text(o.join(" ").trim()),s==="
    "?o=[""]:o=[s],p=r.append("tspan").attr("x",0).attr("y",h).attr("dy",u+"em").text(s))})}const eEa=function(e,t,r,a){const s=r%Vwa-1,o=e.append("g");t.section=s,o.attr("class",(t.class?t.class+" ":"")+"timeline-node "+("section-"+s));const u=o.append("g"),h=o.append("g"),p=h.append("text").text(t.descr).attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle").call(Qnr,t.width).node().getBBox(),m=a.fontSize&&a.fontSize.replace?a.fontSize.replace("px",""):a.fontSize;return t.height=p.height+m*1.1*.5+t.padding,t.height=Math.max(t.height,t.maxHeight),t.width=t.width+2*t.padding,h.attr("transform","translate("+t.width/2+", "+t.padding/2+")"),nEa(u,t,s),t},tEa=function(e,t,r){const a=e.append("g"),o=a.append("text").text(t.descr).attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle").call(Qnr,t.width).node().getBBox(),u=r.fontSize&&r.fontSize.replace?r.fontSize.replace("px",""):r.fontSize;return a.remove(),o.height+u*1.1*.5+t.padding},nEa=function(e,t,r){e.append("path").attr("id","node-"+t.id).attr("class","node-bkg node-"+t.type).attr("d",`M0 ${t.height-5} v${-t.height+2*5} q0,-5 5,-5 h${t.width-2*5} q5,0 5,5 v${t.height-5} H0 Z`),e.append("line").attr("class","node-line-"+r).attr("x1",0).attr("y1",t.height).attr("x2",t.width).attr("y2",t.height)},VB={drawRect:C6e,drawCircle:jwa,drawSection:Kwa,drawText:Knr,drawLabel:Wwa,drawTask:Xwa,drawBackgroundRect:Qwa,getTextObj:Zwa,getNoteRect:Cyt,initGraphics:Jwa,drawNode:eEa,getVirtualNodeHeight:tEa},rEa=function(e,t,r,a){var s,o;const u=Qt(),h=u.leftMargin??50;ut.debug("timeline",a.db);const f=u.securityLevel;let p;f==="sandbox"&&(p=gn("#i"+t));const b=gn(f==="sandbox"?p.nodes()[0].contentDocument.body:"body").select("#"+t);b.append("g");const _=a.db.getTasks(),w=a.db.getCommonDb().getDiagramTitle();ut.debug("task",_),VB.initGraphics(b);const S=a.db.getSections();ut.debug("sections",S);let C=0,A=0,k=0,I=0,N=50+h,L=50;I=50;let P=0,M=!0;S.forEach(function(B){const Z={number:P,descr:B,section:P,width:150,padding:20,maxHeight:C},z=VB.getVirtualNodeHeight(b,Z,u);ut.debug("sectionHeight before draw",z),C=Math.max(C,z+20)});let F=0,U=0;ut.debug("tasks.length",_.length);for(const[B,Z]of _.entries()){const z={number:B,descr:Z,section:Z.section,width:150,padding:20,maxHeight:A},Y=VB.getVirtualNodeHeight(b,z,u);ut.debug("taskHeight before draw",Y),A=Math.max(A,Y+20),F=Math.max(F,Z.events.length);let W=0;for(let Q=0;Q0?S.forEach(B=>{const Z=_.filter(Q=>Q.section===B),z={number:P,descr:B,section:P,width:200*Math.max(Z.length,1)-50,padding:20,maxHeight:C};ut.debug("sectionNode",z);const Y=b.append("g"),W=VB.drawNode(Y,z,P,u);ut.debug("sectionNode output",W),Y.attr("transform",`translate(${N}, ${I})`),L+=C+50,Z.length>0&&aAn(b,Z,P,N,L,A,u,F,U,C,!1),N+=200*Math.max(Z.length,1),L=I,P++}):(M=!1,aAn(b,_,P,N,L,A,u,F,U,C,!0));const $=b.node().getBBox();ut.debug("bounds",$),w&&b.append("text").text(w).attr("x",$.width/2-h).attr("font-size","4ex").attr("font-weight","bold").attr("y",20),k=M?C+A+150:A+100,b.append("g").attr("class","lineWrapper").append("line").attr("x1",h).attr("y1",k).attr("x2",$.width+3*h).attr("y2",k).attr("stroke-width",4).attr("stroke","black").attr("marker-end","url(#arrowhead)"),oL(void 0,b,((s=u.timeline)==null?void 0:s.padding)??50,((o=u.timeline)==null?void 0:o.useMaxWidth)??!1)},aAn=function(e,t,r,a,s,o,u,h,f,p,m){var b;for(const _ of t){const w={descr:_.task,section:r,number:r,width:150,padding:20,maxHeight:o};ut.debug("taskNode",w);const S=e.append("g").attr("class","taskWrapper"),A=VB.drawNode(S,w,r,u).height;if(ut.debug("taskHeight after draw",A),S.attr("transform",`translate(${a}, ${s})`),o=Math.max(o,A),_.events){const k=e.append("g").attr("class","lineWrapper");let I=o;s+=100,I=I+iEa(e,_.events,r,a,s,u),s-=100,k.append("line").attr("x1",a+190/2).attr("y1",s+o).attr("x2",a+190/2).attr("y2",s+o+(m?o:p)+f+120).attr("stroke-width",2).attr("stroke","black").attr("marker-end","url(#arrowhead)").attr("stroke-dasharray","5,5")}a=a+200,m&&!((b=u.timeline)!=null&&b.disableMulticolor)&&r++}s=s-10},iEa=function(e,t,r,a,s,o){let u=0;const h=s;s=s+100;for(const f of t){const p={descr:f,section:r,number:r,width:150,padding:20,maxHeight:50};ut.debug("eventNode",p);const m=e.append("g").attr("class","eventWrapper"),_=VB.drawNode(m,p,r,o).height;u=u+_,m.attr("transform",`translate(${a}, ${s})`),s=s+10+_}return s=h,u},aEa={setConf:()=>{},draw:rEa},sEa=e=>{let t="";for(let r=0;r` + .edge { + stroke-width: 3; + } + ${sEa(e)} + .section-root rect, .section-root path, .section-root circle { + fill: ${e.git0}; + } + .section-root text { + fill: ${e.gitBranchLabel0}; + } + .icon-container { + height:100%; + display: flex; + justify-content: center; + align-items: center; + } + .edge { + fill: none; + } + .eventWrapper { + filter: brightness(120%); + } +`,lEa=oEa,cEa={db:Hwa,renderer:aEa,parser:Gwa,styles:lEa},uEa=Object.freeze(Object.defineProperty({__proto__:null,diagram:cEa},Symbol.toStringTag,{value:"Module"}));var ndt=function(){var e=function(L,P,M,F){for(M=M||{},F=L.length;F--;M[L[F]]=P);return M},t=[1,4],r=[1,13],a=[1,12],s=[1,15],o=[1,16],u=[1,20],h=[1,19],f=[6,7,8],p=[1,26],m=[1,24],b=[1,25],_=[6,7,11],w=[1,6,13,15,16,19,22],S=[1,33],C=[1,34],A=[1,6,7,11,13,15,16,19,22],k={trace:function(){},yy:{},symbols_:{error:2,start:3,mindMap:4,spaceLines:5,SPACELINE:6,NL:7,MINDMAP:8,document:9,stop:10,EOF:11,statement:12,SPACELIST:13,node:14,ICON:15,CLASS:16,nodeWithId:17,nodeWithoutId:18,NODE_DSTART:19,NODE_DESCR:20,NODE_DEND:21,NODE_ID:22,$accept:0,$end:1},terminals_:{2:"error",6:"SPACELINE",7:"NL",8:"MINDMAP",11:"EOF",13:"SPACELIST",15:"ICON",16:"CLASS",19:"NODE_DSTART",20:"NODE_DESCR",21:"NODE_DEND",22:"NODE_ID"},productions_:[0,[3,1],[3,2],[5,1],[5,2],[5,2],[4,2],[4,3],[10,1],[10,1],[10,1],[10,2],[10,2],[9,3],[9,2],[12,2],[12,2],[12,2],[12,1],[12,1],[12,1],[12,1],[12,1],[14,1],[14,1],[18,3],[17,1],[17,4]],performAction:function(P,M,F,U,$,G,B){var Z=G.length-1;switch($){case 6:case 7:return U;case 8:U.getLogger().trace("Stop NL ");break;case 9:U.getLogger().trace("Stop EOF ");break;case 11:U.getLogger().trace("Stop NL2 ");break;case 12:U.getLogger().trace("Stop EOF2 ");break;case 15:U.getLogger().info("Node: ",G[Z].id),U.addNode(G[Z-1].length,G[Z].id,G[Z].descr,G[Z].type);break;case 16:U.getLogger().trace("Icon: ",G[Z]),U.decorateNode({icon:G[Z]});break;case 17:case 21:U.decorateNode({class:G[Z]});break;case 18:U.getLogger().trace("SPACELIST");break;case 19:U.getLogger().trace("Node: ",G[Z].id),U.addNode(0,G[Z].id,G[Z].descr,G[Z].type);break;case 20:U.decorateNode({icon:G[Z]});break;case 25:U.getLogger().trace("node found ..",G[Z-2]),this.$={id:G[Z-1],descr:G[Z-1],type:U.getType(G[Z-2],G[Z])};break;case 26:this.$={id:G[Z],descr:G[Z],type:U.nodeType.DEFAULT};break;case 27:U.getLogger().trace("node found ..",G[Z-3]),this.$={id:G[Z-3],descr:G[Z-1],type:U.getType(G[Z-2],G[Z])};break}},table:[{3:1,4:2,5:3,6:[1,5],8:t},{1:[3]},{1:[2,1]},{4:6,6:[1,7],7:[1,8],8:t},{6:r,7:[1,10],9:9,12:11,13:a,14:14,15:s,16:o,17:17,18:18,19:u,22:h},e(f,[2,3]),{1:[2,2]},e(f,[2,4]),e(f,[2,5]),{1:[2,6],6:r,12:21,13:a,14:14,15:s,16:o,17:17,18:18,19:u,22:h},{6:r,9:22,12:11,13:a,14:14,15:s,16:o,17:17,18:18,19:u,22:h},{6:p,7:m,10:23,11:b},e(_,[2,22],{17:17,18:18,14:27,15:[1,28],16:[1,29],19:u,22:h}),e(_,[2,18]),e(_,[2,19]),e(_,[2,20]),e(_,[2,21]),e(_,[2,23]),e(_,[2,24]),e(_,[2,26],{19:[1,30]}),{20:[1,31]},{6:p,7:m,10:32,11:b},{1:[2,7],6:r,12:21,13:a,14:14,15:s,16:o,17:17,18:18,19:u,22:h},e(w,[2,14],{7:S,11:C}),e(A,[2,8]),e(A,[2,9]),e(A,[2,10]),e(_,[2,15]),e(_,[2,16]),e(_,[2,17]),{20:[1,35]},{21:[1,36]},e(w,[2,13],{7:S,11:C}),e(A,[2,11]),e(A,[2,12]),{21:[1,37]},e(_,[2,25]),e(_,[2,27])],defaultActions:{2:[2,1],6:[2,2]},parseError:function(P,M){if(M.recoverable)this.trace(P);else{var F=new Error(P);throw F.hash=M,F}},parse:function(P){var M=this,F=[0],U=[],$=[null],G=[],B=this.table,Z="",z=0,Y=0,W=2,Q=1,V=G.slice.call(arguments,1),j=Object.create(this.lexer),ee={yy:{}};for(var te in this.yy)Object.prototype.hasOwnProperty.call(this.yy,te)&&(ee.yy[te]=this.yy[te]);j.setInput(P,ee.yy),ee.yy.lexer=j,ee.yy.parser=this,typeof j.yylloc>"u"&&(j.yylloc={});var ne=j.yylloc;G.push(ne);var se=j.options&&j.options.ranges;typeof ee.yy.parseError=="function"?this.parseError=ee.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function ie(){var Ie;return Ie=U.pop()||j.lex()||Q,typeof Ie!="number"&&(Ie instanceof Array&&(U=Ie,Ie=U.pop()),Ie=M.symbols_[Ie]||Ie),Ie}for(var ge,ce,be,ve,De={},ye,Ee,he,we;;){if(ce=F[F.length-1],this.defaultActions[ce]?be=this.defaultActions[ce]:((ge===null||typeof ge>"u")&&(ge=ie()),be=B[ce]&&B[ce][ge]),typeof be>"u"||!be.length||!be[0]){var Ce="";we=[];for(ye in B[ce])this.terminals_[ye]&&ye>W&&we.push("'"+this.terminals_[ye]+"'");j.showPosition?Ce="Parse error on line "+(z+1)+`: +`+j.showPosition()+` +Expecting `+we.join(", ")+", got '"+(this.terminals_[ge]||ge)+"'":Ce="Parse error on line "+(z+1)+": Unexpected "+(ge==Q?"end of input":"'"+(this.terminals_[ge]||ge)+"'"),this.parseError(Ce,{text:j.match,token:this.terminals_[ge]||ge,line:j.yylineno,loc:ne,expected:we})}if(be[0]instanceof Array&&be.length>1)throw new Error("Parse Error: multiple actions possible at state: "+ce+", token: "+ge);switch(be[0]){case 1:F.push(ge),$.push(j.yytext),G.push(j.yylloc),F.push(be[1]),ge=null,Y=j.yyleng,Z=j.yytext,z=j.yylineno,ne=j.yylloc;break;case 2:if(Ee=this.productions_[be[1]][1],De.$=$[$.length-Ee],De._$={first_line:G[G.length-(Ee||1)].first_line,last_line:G[G.length-1].last_line,first_column:G[G.length-(Ee||1)].first_column,last_column:G[G.length-1].last_column},se&&(De._$.range=[G[G.length-(Ee||1)].range[0],G[G.length-1].range[1]]),ve=this.performAction.apply(De,[Z,Y,z,ee.yy,be[1],$,G].concat(V)),typeof ve<"u")return ve;Ee&&(F=F.slice(0,-1*Ee*2),$=$.slice(0,-1*Ee),G=G.slice(0,-1*Ee)),F.push(this.productions_[be[1]][0]),$.push(De.$),G.push(De._$),he=B[F[F.length-2]][F[F.length-1]],F.push(he);break;case 3:return!0}}return!0}},I=function(){var L={EOF:1,parseError:function(M,F){if(this.yy.parser)this.yy.parser.parseError(M,F);else throw new Error(M)},setInput:function(P,M){return this.yy=M||this.yy||{},this._input=P,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var P=this._input[0];this.yytext+=P,this.yyleng++,this.offset++,this.match+=P,this.matched+=P;var M=P.match(/(?:\r\n?|\n).*/g);return M?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),P},unput:function(P){var M=P.length,F=P.split(/(?:\r\n?|\n)/g);this._input=P+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-M),this.offset-=M;var U=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),F.length-1&&(this.yylineno-=F.length-1);var $=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:F?(F.length===U.length?this.yylloc.first_column:0)+U[U.length-F.length].length-F[0].length:this.yylloc.first_column-M},this.options.ranges&&(this.yylloc.range=[$[0],$[0]+this.yyleng-M]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(P){this.unput(this.match.slice(P))},pastInput:function(){var P=this.matched.substr(0,this.matched.length-this.match.length);return(P.length>20?"...":"")+P.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var P=this.match;return P.length<20&&(P+=this._input.substr(0,20-P.length)),(P.substr(0,20)+(P.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var P=this.pastInput(),M=new Array(P.length+1).join("-");return P+this.upcomingInput()+` +`+M+"^"},test_match:function(P,M){var F,U,$;if(this.options.backtrack_lexer&&($={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&($.yylloc.range=this.yylloc.range.slice(0))),U=P[0].match(/(?:\r\n?|\n).*/g),U&&(this.yylineno+=U.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:U?U[U.length-1].length-U[U.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+P[0].length},this.yytext+=P[0],this.match+=P[0],this.matches=P,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(P[0].length),this.matched+=P[0],F=this.performAction.call(this,this.yy,this,M,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),F)return F;if(this._backtrack){for(var G in $)this[G]=$[G];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var P,M,F,U;this._more||(this.yytext="",this.match="");for(var $=this._currentRules(),G=0;G<$.length;G++)if(F=this._input.match(this.rules[$[G]]),F&&(!M||F[0].length>M[0].length)){if(M=F,U=G,this.options.backtrack_lexer){if(P=this.test_match(F,$[G]),P!==!1)return P;if(this._backtrack){M=!1;continue}else return!1}else if(!this.options.flex)break}return M?(P=this.test_match(M,$[U]),P!==!1?P:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var M=this.next();return M||this.lex()},begin:function(M){this.conditionStack.push(M)},popState:function(){var M=this.conditionStack.length-1;return M>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(M){return M=this.conditionStack.length-1-Math.abs(M||0),M>=0?this.conditionStack[M]:"INITIAL"},pushState:function(M){this.begin(M)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(M,F,U,$){switch(U){case 0:return M.getLogger().trace("Found comment",F.yytext),6;case 1:return 8;case 2:this.begin("CLASS");break;case 3:return this.popState(),16;case 4:this.popState();break;case 5:M.getLogger().trace("Begin icon"),this.begin("ICON");break;case 6:return M.getLogger().trace("SPACELINE"),6;case 7:return 7;case 8:return 15;case 9:M.getLogger().trace("end icon"),this.popState();break;case 10:return M.getLogger().trace("Exploding node"),this.begin("NODE"),19;case 11:return M.getLogger().trace("Cloud"),this.begin("NODE"),19;case 12:return M.getLogger().trace("Explosion Bang"),this.begin("NODE"),19;case 13:return M.getLogger().trace("Cloud Bang"),this.begin("NODE"),19;case 14:return this.begin("NODE"),19;case 15:return this.begin("NODE"),19;case 16:return this.begin("NODE"),19;case 17:return this.begin("NODE"),19;case 18:return 13;case 19:return 22;case 20:return 11;case 21:this.begin("NSTR2");break;case 22:return"NODE_DESCR";case 23:this.popState();break;case 24:M.getLogger().trace("Starting NSTR"),this.begin("NSTR");break;case 25:return M.getLogger().trace("description:",F.yytext),"NODE_DESCR";case 26:this.popState();break;case 27:return this.popState(),M.getLogger().trace("node end ))"),"NODE_DEND";case 28:return this.popState(),M.getLogger().trace("node end )"),"NODE_DEND";case 29:return this.popState(),M.getLogger().trace("node end ...",F.yytext),"NODE_DEND";case 30:return this.popState(),M.getLogger().trace("node end (("),"NODE_DEND";case 31:return this.popState(),M.getLogger().trace("node end (-"),"NODE_DEND";case 32:return this.popState(),M.getLogger().trace("node end (-"),"NODE_DEND";case 33:return this.popState(),M.getLogger().trace("node end (("),"NODE_DEND";case 34:return this.popState(),M.getLogger().trace("node end (("),"NODE_DEND";case 35:return M.getLogger().trace("Long description:",F.yytext),20;case 36:return M.getLogger().trace("Long description:",F.yytext),20}},rules:[/^(?:\s*%%.*)/i,/^(?:mindmap\b)/i,/^(?::::)/i,/^(?:.+)/i,/^(?:\n)/i,/^(?:::icon\()/i,/^(?:[\s]+[\n])/i,/^(?:[\n]+)/i,/^(?:[^\)]+)/i,/^(?:\))/i,/^(?:-\))/i,/^(?:\(-)/i,/^(?:\)\))/i,/^(?:\))/i,/^(?:\(\()/i,/^(?:\{\{)/i,/^(?:\()/i,/^(?:\[)/i,/^(?:[\s]+)/i,/^(?:[^\(\[\n\)\{\}]+)/i,/^(?:$)/i,/^(?:["][`])/i,/^(?:[^`"]+)/i,/^(?:[`]["])/i,/^(?:["])/i,/^(?:[^"]+)/i,/^(?:["])/i,/^(?:[\)]\))/i,/^(?:[\)])/i,/^(?:[\]])/i,/^(?:\}\})/i,/^(?:\(-)/i,/^(?:-\))/i,/^(?:\(\()/i,/^(?:\()/i,/^(?:[^\)\]\(\}]+)/i,/^(?:.+(?!\(\())/i],conditions:{CLASS:{rules:[3,4],inclusive:!1},ICON:{rules:[8,9],inclusive:!1},NSTR2:{rules:[22,23],inclusive:!1},NSTR:{rules:[25,26],inclusive:!1},NODE:{rules:[21,24,27,28,29,30,31,32,33,34,35,36],inclusive:!1},INITIAL:{rules:[0,1,2,5,6,7,10,11,12,13,14,15,16,17,18,19,20],inclusive:!0}}};return L}();k.lexer=I;function N(){this.yy={}}return N.prototype=k,k.Parser=N,new N}();ndt.parser=ndt;const hEa=ndt;let iT=[],Znr=0,Ayt={};const dEa=()=>{iT=[],Znr=0,Ayt={}},fEa=function(e){for(let t=iT.length-1;t>=0;t--)if(iT[t].leveliT.length>0?iT[0]:null,gEa=(e,t,r,a)=>{var s,o;ut.info("addNode",e,t,r,a);const u=Qt();let h=((s=u.mindmap)==null?void 0:s.padding)??fd.mindmap.padding;switch(a){case Sp.ROUNDED_RECT:case Sp.RECT:case Sp.HEXAGON:h*=2}const f={id:Znr++,nodeId:J0(t,u),level:e,descr:J0(r,u),type:a,children:[],width:((o=u.mindmap)==null?void 0:o.maxNodeWidth)??fd.mindmap.maxNodeWidth,padding:h},p=fEa(e);if(p)p.children.push(f),iT.push(f);else if(iT.length===0)iT.push(f);else throw new Error('There can be only one root. No parent could be found for ("'+f.descr+'")')},Sp={DEFAULT:0,NO_BORDER:0,ROUNDED_RECT:1,RECT:2,CIRCLE:3,CLOUD:4,BANG:5,HEXAGON:6},mEa=(e,t)=>{switch(ut.debug("In get type",e,t),e){case"[":return Sp.RECT;case"(":return t===")"?Sp.ROUNDED_RECT:Sp.CLOUD;case"((":return Sp.CIRCLE;case")":return Sp.CLOUD;case"))":return Sp.BANG;case"{{":return Sp.HEXAGON;default:return Sp.DEFAULT}},bEa=(e,t)=>{Ayt[e]=t},yEa=e=>{if(!e)return;const t=Qt(),r=iT[iT.length-1];e.icon&&(r.icon=J0(e.icon,t)),e.class&&(r.class=J0(e.class,t))},vEa=e=>{switch(e){case Sp.DEFAULT:return"no-border";case Sp.RECT:return"rect";case Sp.ROUNDED_RECT:return"rounded-rect";case Sp.CIRCLE:return"circle";case Sp.CLOUD:return"cloud";case Sp.BANG:return"bang";case Sp.HEXAGON:return"hexgon";default:return"no-border"}},_Ea=()=>ut,wEa=e=>Ayt[e],EEa={clear:dEa,addNode:gEa,getMindmap:pEa,nodeType:Sp,getType:mEa,setElementForId:bEa,decorateNode:yEa,type2Str:vEa,getLogger:_Ea,getElementById:wEa},xEa=EEa,SEa=12,TEa=function(e,t,r,a){t.append("path").attr("id","node-"+r.id).attr("class","node-bkg node-"+e.type2Str(r.type)).attr("d",`M0 ${r.height-5} v${-r.height+2*5} q0,-5 5,-5 h${r.width-2*5} q5,0 5,5 v${r.height-5} H0 Z`),t.append("line").attr("class","node-line-"+a).attr("x1",0).attr("y1",r.height).attr("x2",r.width).attr("y2",r.height)},CEa=function(e,t,r){t.append("rect").attr("id","node-"+r.id).attr("class","node-bkg node-"+e.type2Str(r.type)).attr("height",r.height).attr("width",r.width)},AEa=function(e,t,r){const a=r.width,s=r.height,o=.15*a,u=.25*a,h=.35*a,f=.2*a;t.append("path").attr("id","node-"+r.id).attr("class","node-bkg node-"+e.type2Str(r.type)).attr("d",`M0 0 a${o},${o} 0 0,1 ${a*.25},${-1*a*.1} + a${h},${h} 1 0,1 ${a*.4},${-1*a*.1} + a${u},${u} 1 0,1 ${a*.35},${1*a*.2} + + a${o},${o} 1 0,1 ${a*.15},${1*s*.35} + a${f},${f} 1 0,1 ${-1*a*.15},${1*s*.65} + + a${u},${o} 1 0,1 ${-1*a*.25},${a*.15} + a${h},${h} 1 0,1 ${-1*a*.5},0 + a${o},${o} 1 0,1 ${-1*a*.25},${-1*a*.15} + + a${o},${o} 1 0,1 ${-1*a*.1},${-1*s*.35} + a${f},${f} 1 0,1 ${a*.1},${-1*s*.65} + + H0 V0 Z`)},kEa=function(e,t,r){const a=r.width,s=r.height,o=.15*a;t.append("path").attr("id","node-"+r.id).attr("class","node-bkg node-"+e.type2Str(r.type)).attr("d",`M0 0 a${o},${o} 1 0,0 ${a*.25},${-1*s*.1} + a${o},${o} 1 0,0 ${a*.25},0 + a${o},${o} 1 0,0 ${a*.25},0 + a${o},${o} 1 0,0 ${a*.25},${1*s*.1} + + a${o},${o} 1 0,0 ${a*.15},${1*s*.33} + a${o*.8},${o*.8} 1 0,0 0,${1*s*.34} + a${o},${o} 1 0,0 ${-1*a*.15},${1*s*.33} + + a${o},${o} 1 0,0 ${-1*a*.25},${s*.15} + a${o},${o} 1 0,0 ${-1*a*.25},0 + a${o},${o} 1 0,0 ${-1*a*.25},0 + a${o},${o} 1 0,0 ${-1*a*.25},${-1*s*.15} + + a${o},${o} 1 0,0 ${-1*a*.1},${-1*s*.33} + a${o*.8},${o*.8} 1 0,0 0,${-1*s*.34} + a${o},${o} 1 0,0 ${a*.1},${-1*s*.33} + + H0 V0 Z`)},REa=function(e,t,r){t.append("circle").attr("id","node-"+r.id).attr("class","node-bkg node-"+e.type2Str(r.type)).attr("r",r.width/2)};function IEa(e,t,r,a,s){return e.insert("polygon",":first-child").attr("points",a.map(function(o){return o.x+","+o.y}).join(" ")).attr("transform","translate("+(s.width-t)/2+", "+r+")")}const NEa=function(e,t,r){const a=r.height,o=a/4,u=r.width-r.padding+2*o,h=[{x:o,y:0},{x:u-o,y:0},{x:u,y:-a/2},{x:u-o,y:-a},{x:o,y:-a},{x:0,y:-a/2}];IEa(t,u,a,h,r)},OEa=function(e,t,r){t.append("rect").attr("id","node-"+r.id).attr("class","node-bkg node-"+e.type2Str(r.type)).attr("height",r.height).attr("rx",r.padding).attr("ry",r.padding).attr("width",r.width)},LEa=function(e,t,r,a,s){const o=s.htmlLabels,u=a%(SEa-1),h=t.append("g");r.section=u;let f="section-"+u;u<0&&(f+=" section-root"),h.attr("class",(r.class?r.class+" ":"")+"mindmap-node "+f);const p=h.append("g"),m=h.append("g"),b=r.descr.replace(/()/g,` +`);v6e(m,b,{useHtmlLabels:o,width:r.width,classes:"mindmap-node-label"}),o||m.attr("dy","1em").attr("alignment-baseline","middle").attr("dominant-baseline","middle").attr("text-anchor","middle");const _=m.node().getBBox(),[w]=J$(s.fontSize);if(r.height=_.height+w*1.1*.5+r.padding,r.width=_.width+2*r.padding,r.icon)if(r.type===e.nodeType.CIRCLE)r.height+=50,r.width+=50,h.append("foreignObject").attr("height","50px").attr("width",r.width).attr("style","text-align: center;").append("div").attr("class","icon-container").append("i").attr("class","node-icon-"+u+" "+r.icon),m.attr("transform","translate("+r.width/2+", "+(r.height/2-1.5*r.padding)+")");else{r.width+=50;const S=r.height;r.height=Math.max(S,60);const C=Math.abs(r.height-S);h.append("foreignObject").attr("width","60px").attr("height",r.height).attr("style","text-align: center;margin-top:"+C/2+"px;").append("div").attr("class","icon-container").append("i").attr("class","node-icon-"+u+" "+r.icon),m.attr("transform","translate("+(25+r.width/2)+", "+(C/2+r.padding/2)+")")}else if(o){const S=(r.width-_.width)/2,C=(r.height-_.height)/2;m.attr("transform","translate("+S+", "+C+")")}else{const S=r.width/2,C=r.padding/2;m.attr("transform","translate("+S+", "+C+")")}switch(r.type){case e.nodeType.DEFAULT:TEa(e,p,r,u);break;case e.nodeType.ROUNDED_RECT:OEa(e,p,r);break;case e.nodeType.RECT:CEa(e,p,r);break;case e.nodeType.CIRCLE:p.attr("transform","translate("+r.width/2+", "+ +r.height/2+")"),REa(e,p,r);break;case e.nodeType.CLOUD:AEa(e,p,r);break;case e.nodeType.BANG:kEa(e,p,r);break;case e.nodeType.HEXAGON:NEa(e,p,r);break}return e.setElementForId(r.id,h),r.height},DEa=function(e,t){const r=e.getElementById(t.id),a=t.x||0,s=t.y||0;r.attr("transform","translate("+a+","+s+")")};CS.use(KVn);function Jnr(e,t,r,a,s){LEa(e,t,r,a,s),r.children&&r.children.forEach((o,u)=>{Jnr(e,t,o,a<0?u:a,s)})}function MEa(e,t){t.edges().map((r,a)=>{const s=r.data();if(r[0]._private.bodyBounds){const o=r[0]._private.rscratch;ut.trace("Edge: ",a,s),e.insert("path").attr("d",`M ${o.startX},${o.startY} L ${o.midX},${o.midY} L${o.endX},${o.endY} `).attr("class","edge section-edge-"+s.section+" edge-depth-"+s.depth)}})}function err(e,t,r,a){t.add({group:"nodes",data:{id:e.id.toString(),labelText:e.descr,height:e.height,width:e.width,level:a,nodeId:e.id,padding:e.padding,type:e.type},position:{x:e.x,y:e.y}}),e.children&&e.children.forEach(s=>{err(s,t,r,a+1),t.add({group:"edges",data:{id:`${e.id}_${s.id}`,source:e.id,target:s.id,depth:a,section:s.section}})})}function PEa(e,t){return new Promise(r=>{const a=gn("body").append("div").attr("id","cy").attr("style","display:none"),s=CS({container:document.getElementById("cy"),style:[{selector:"edge",style:{"curve-style":"bezier"}}]});a.remove(),err(e,s,t,0),s.nodes().forEach(function(o){o.layoutDimensions=()=>{const u=o.data();return{w:u.width,h:u.height}}}),s.layout({name:"cose-bilkent",quality:"proof",styleEnabled:!1,animate:!1}).run(),s.ready(o=>{ut.info("Ready",o),r(s)})})}function BEa(e,t){t.nodes().map((r,a)=>{const s=r.data();s.x=r.position().x,s.y=r.position().y,DEa(e,s);const o=e.getElementById(s.nodeId);ut.info("Id:",a,"Position: (",r.position().x,", ",r.position().y,")",s),o.attr("transform",`translate(${r.position().x-s.width/2}, ${r.position().y-s.height/2})`),o.attr("attr",`apa-${a})`)})}const FEa=async(e,t,r,a)=>{var s,o;ut.debug(`Rendering mindmap diagram +`+e);const u=a.db,h=u.getMindmap();if(!h)return;const f=Qt();f.htmlLabels=!1;const p=Zce(t),m=p.append("g");m.attr("class","mindmap-edges");const b=p.append("g");b.attr("class","mindmap-nodes"),Jnr(u,b,h,-1,f);const _=await PEa(h,f);MEa(m,_),BEa(u,_),oL(void 0,p,((s=f.mindmap)==null?void 0:s.padding)??fd.mindmap.padding,((o=f.mindmap)==null?void 0:o.useMaxWidth)??fd.mindmap.useMaxWidth)},$Ea={draw:FEa},UEa=e=>{let t="";for(let r=0;r` + .edge { + stroke-width: 3; + } + ${UEa(e)} + .section-root rect, .section-root path, .section-root circle, .section-root polygon { + fill: ${e.git0}; + } + .section-root text { + fill: ${e.gitBranchLabel0}; + } + .icon-container { + height:100%; + display: flex; + justify-content: center; + align-items: center; + } + .edge { + fill: none; + } + .mindmap-node-label { + dy: 1em; + alignment-baseline: middle; + text-anchor: middle; + dominant-baseline: middle; + text-align: center; + } +`,GEa=zEa,qEa={db:xEa,renderer:$Ea,parser:hEa,styles:GEa},HEa=Object.freeze(Object.defineProperty({__proto__:null,diagram:qEa},Symbol.toStringTag,{value:"Module"}));var rdt=function(){var e=function(h,f,p,m){for(p=p||{},m=h.length;m--;p[h[m]]=f);return p},t=[1,9],r=[1,10],a=[1,5,10,12],s={trace:function(){},yy:{},symbols_:{error:2,start:3,SANKEY:4,NEWLINE:5,csv:6,opt_eof:7,record:8,csv_tail:9,EOF:10,"field[source]":11,COMMA:12,"field[target]":13,"field[value]":14,field:15,escaped:16,non_escaped:17,DQUOTE:18,ESCAPED_TEXT:19,NON_ESCAPED_TEXT:20,$accept:0,$end:1},terminals_:{2:"error",4:"SANKEY",5:"NEWLINE",10:"EOF",11:"field[source]",12:"COMMA",13:"field[target]",14:"field[value]",18:"DQUOTE",19:"ESCAPED_TEXT",20:"NON_ESCAPED_TEXT"},productions_:[0,[3,4],[6,2],[9,2],[9,0],[7,1],[7,0],[8,5],[15,1],[15,1],[16,3],[17,1]],performAction:function(f,p,m,b,_,w,S){var C=w.length-1;switch(_){case 7:const A=b.findOrCreateNode(w[C-4].trim().replaceAll('""','"')),k=b.findOrCreateNode(w[C-2].trim().replaceAll('""','"')),I=parseFloat(w[C].trim());b.addLink(A,k,I);break;case 8:case 9:case 11:this.$=w[C];break;case 10:this.$=w[C-1];break}},table:[{3:1,4:[1,2]},{1:[3]},{5:[1,3]},{6:4,8:5,15:6,16:7,17:8,18:t,20:r},{1:[2,6],7:11,10:[1,12]},e(r,[2,4],{9:13,5:[1,14]}),{12:[1,15]},e(a,[2,8]),e(a,[2,9]),{19:[1,16]},e(a,[2,11]),{1:[2,1]},{1:[2,5]},e(r,[2,2]),{6:17,8:5,15:6,16:7,17:8,18:t,20:r},{15:18,16:7,17:8,18:t,20:r},{18:[1,19]},e(r,[2,3]),{12:[1,20]},e(a,[2,10]),{15:21,16:7,17:8,18:t,20:r},e([1,5,10],[2,7])],defaultActions:{11:[2,1],12:[2,5]},parseError:function(f,p){if(p.recoverable)this.trace(f);else{var m=new Error(f);throw m.hash=p,m}},parse:function(f){var p=this,m=[0],b=[],_=[null],w=[],S=this.table,C="",A=0,k=0,I=2,N=1,L=w.slice.call(arguments,1),P=Object.create(this.lexer),M={yy:{}};for(var F in this.yy)Object.prototype.hasOwnProperty.call(this.yy,F)&&(M.yy[F]=this.yy[F]);P.setInput(f,M.yy),M.yy.lexer=P,M.yy.parser=this,typeof P.yylloc>"u"&&(P.yylloc={});var U=P.yylloc;w.push(U);var $=P.options&&P.options.ranges;typeof M.yy.parseError=="function"?this.parseError=M.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function G(){var ne;return ne=b.pop()||P.lex()||N,typeof ne!="number"&&(ne instanceof Array&&(b=ne,ne=b.pop()),ne=p.symbols_[ne]||ne),ne}for(var B,Z,z,Y,W={},Q,V,j,ee;;){if(Z=m[m.length-1],this.defaultActions[Z]?z=this.defaultActions[Z]:((B===null||typeof B>"u")&&(B=G()),z=S[Z]&&S[Z][B]),typeof z>"u"||!z.length||!z[0]){var te="";ee=[];for(Q in S[Z])this.terminals_[Q]&&Q>I&&ee.push("'"+this.terminals_[Q]+"'");P.showPosition?te="Parse error on line "+(A+1)+`: +`+P.showPosition()+` +Expecting `+ee.join(", ")+", got '"+(this.terminals_[B]||B)+"'":te="Parse error on line "+(A+1)+": Unexpected "+(B==N?"end of input":"'"+(this.terminals_[B]||B)+"'"),this.parseError(te,{text:P.match,token:this.terminals_[B]||B,line:P.yylineno,loc:U,expected:ee})}if(z[0]instanceof Array&&z.length>1)throw new Error("Parse Error: multiple actions possible at state: "+Z+", token: "+B);switch(z[0]){case 1:m.push(B),_.push(P.yytext),w.push(P.yylloc),m.push(z[1]),B=null,k=P.yyleng,C=P.yytext,A=P.yylineno,U=P.yylloc;break;case 2:if(V=this.productions_[z[1]][1],W.$=_[_.length-V],W._$={first_line:w[w.length-(V||1)].first_line,last_line:w[w.length-1].last_line,first_column:w[w.length-(V||1)].first_column,last_column:w[w.length-1].last_column},$&&(W._$.range=[w[w.length-(V||1)].range[0],w[w.length-1].range[1]]),Y=this.performAction.apply(W,[C,k,A,M.yy,z[1],_,w].concat(L)),typeof Y<"u")return Y;V&&(m=m.slice(0,-1*V*2),_=_.slice(0,-1*V),w=w.slice(0,-1*V)),m.push(this.productions_[z[1]][0]),_.push(W.$),w.push(W._$),j=S[m[m.length-2]][m[m.length-1]],m.push(j);break;case 3:return!0}}return!0}},o=function(){var h={EOF:1,parseError:function(p,m){if(this.yy.parser)this.yy.parser.parseError(p,m);else throw new Error(p)},setInput:function(f,p){return this.yy=p||this.yy||{},this._input=f,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var f=this._input[0];this.yytext+=f,this.yyleng++,this.offset++,this.match+=f,this.matched+=f;var p=f.match(/(?:\r\n?|\n).*/g);return p?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),f},unput:function(f){var p=f.length,m=f.split(/(?:\r\n?|\n)/g);this._input=f+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-p),this.offset-=p;var b=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),m.length-1&&(this.yylineno-=m.length-1);var _=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:m?(m.length===b.length?this.yylloc.first_column:0)+b[b.length-m.length].length-m[0].length:this.yylloc.first_column-p},this.options.ranges&&(this.yylloc.range=[_[0],_[0]+this.yyleng-p]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(f){this.unput(this.match.slice(f))},pastInput:function(){var f=this.matched.substr(0,this.matched.length-this.match.length);return(f.length>20?"...":"")+f.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var f=this.match;return f.length<20&&(f+=this._input.substr(0,20-f.length)),(f.substr(0,20)+(f.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var f=this.pastInput(),p=new Array(f.length+1).join("-");return f+this.upcomingInput()+` +`+p+"^"},test_match:function(f,p){var m,b,_;if(this.options.backtrack_lexer&&(_={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(_.yylloc.range=this.yylloc.range.slice(0))),b=f[0].match(/(?:\r\n?|\n).*/g),b&&(this.yylineno+=b.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:b?b[b.length-1].length-b[b.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+f[0].length},this.yytext+=f[0],this.match+=f[0],this.matches=f,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(f[0].length),this.matched+=f[0],m=this.performAction.call(this,this.yy,this,p,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),m)return m;if(this._backtrack){for(var w in _)this[w]=_[w];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var f,p,m,b;this._more||(this.yytext="",this.match="");for(var _=this._currentRules(),w=0;w<_.length;w++)if(m=this._input.match(this.rules[_[w]]),m&&(!p||m[0].length>p[0].length)){if(p=m,b=w,this.options.backtrack_lexer){if(f=this.test_match(m,_[w]),f!==!1)return f;if(this._backtrack){p=!1;continue}else return!1}else if(!this.options.flex)break}return p?(f=this.test_match(p,_[b]),f!==!1?f:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var p=this.next();return p||this.lex()},begin:function(p){this.conditionStack.push(p)},popState:function(){var p=this.conditionStack.length-1;return p>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(p){return p=this.conditionStack.length-1-Math.abs(p||0),p>=0?this.conditionStack[p]:"INITIAL"},pushState:function(p){this.begin(p)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(p,m,b,_){switch(b){case 0:return this.pushState("csv"),4;case 1:return 10;case 2:return 5;case 3:return 12;case 4:return this.pushState("escaped_text"),18;case 5:return 20;case 6:return this.popState("escaped_text"),18;case 7:return 19}},rules:[/^(?:sankey-beta\b)/i,/^(?:$)/i,/^(?:((\u000D\u000A)|(\u000A)))/i,/^(?:(\u002C))/i,/^(?:(\u0022))/i,/^(?:([\u0020-\u0021\u0023-\u002B\u002D-\u007E])*)/i,/^(?:(\u0022)(?!(\u0022)))/i,/^(?:(([\u0020-\u0021\u0023-\u002B\u002D-\u007E])|(\u002C)|(\u000D)|(\u000A)|(\u0022)(\u0022))*)/i],conditions:{csv:{rules:[1,2,3,4,5,6,7],inclusive:!1},escaped_text:{rules:[6,7],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7],inclusive:!0}}};return h}();s.lexer=o;function u(){this.yy={}}return u.prototype=s,s.Parser=u,new u}();rdt.parser=rdt;const E5e=rdt;let A6e=[],k6e=[],zV={};const VEa=()=>{A6e=[],k6e=[],zV={},Mb()};class YEa{constructor(t,r,a=0){this.source=t,this.target=r,this.value=a}}const jEa=(e,t,r)=>{A6e.push(new YEa(e,t,r))};class WEa{constructor(t){this.ID=t}}const KEa=e=>(e=mi.sanitizeText(e,Qt()),zV[e]||(zV[e]=new WEa(e),k6e.push(zV[e])),zV[e]),XEa=()=>k6e,QEa=()=>A6e,ZEa=()=>({nodes:k6e.map(e=>({id:e.ID})),links:A6e.map(e=>({source:e.source.ID,target:e.target.ID,value:e.value}))}),JEa={nodesMap:zV,getConfig:()=>Qt().sankey,getNodes:XEa,getLinks:QEa,getGraph:ZEa,addLink:jEa,findOrCreateNode:KEa,getAccTitle:Ev,setAccTitle:Pb,getAccDescription:Sv,setAccDescription:xv,getDiagramTitle:Tv,setDiagramTitle:Zw,clear:VEa},trr=class idt{static next(t){return new idt(t+ ++idt.count)}constructor(t){this.id=t,this.href=`#${t}`}toString(){return"url("+this.href+")"}};trr.count=0;let sAn=trr;const exa={left:MXn,right:PXn,center:BXn,justify:obt},txa=function(e,t,r,a){const{securityLevel:s,sankey:o}=Qt(),u=TZn.sankey;let h;s==="sandbox"&&(h=gn("#i"+t));const f=gn(s==="sandbox"?h.nodes()[0].contentDocument.body:"body"),p=s==="sandbox"?f.select(`[id="${t}"]`):gn(`[id="${t}"]`),m=(o==null?void 0:o.width)??u.width,b=(o==null?void 0:o.height)??u.width,_=(o==null?void 0:o.useMaxWidth)??u.useMaxWidth,w=(o==null?void 0:o.nodeAlignment)??u.nodeAlignment,S=(o==null?void 0:o.prefix)??u.prefix,C=(o==null?void 0:o.suffix)??u.suffix,A=(o==null?void 0:o.showValues)??u.showValues,k=a.db.getGraph(),I=exa[w];FXn().nodeId(G=>G.id).nodeWidth(10).nodePadding(10+(A?15:0)).nodeAlign(I).extent([[0,0],[m,b]])(k);const P=cA(o1t);p.append("g").attr("class","nodes").selectAll(".node").data(k.nodes).join("g").attr("class","node").attr("id",G=>(G.uid=sAn.next("node-")).id).attr("transform",function(G){return"translate("+G.x0+","+G.y0+")"}).attr("x",G=>G.x0).attr("y",G=>G.y0).append("rect").attr("height",G=>G.y1-G.y0).attr("width",G=>G.x1-G.x0).attr("fill",G=>P(G.id));const M=({id:G,value:B})=>A?`${G} +${S}${Math.round(B*100)/100}${C}`:G;p.append("g").attr("class","node-labels").attr("font-family","sans-serif").attr("font-size",14).selectAll("text").data(k.nodes).join("text").attr("x",G=>G.x0(G.y1+G.y0)/2).attr("dy",`${A?"0":"0.35"}em`).attr("text-anchor",G=>G.x0(B.uid=sAn.next("linearGradient-")).id).attr("gradientUnits","userSpaceOnUse").attr("x1",B=>B.source.x1).attr("x2",B=>B.target.x0);G.append("stop").attr("offset","0%").attr("stop-color",B=>P(B.source.id)),G.append("stop").attr("offset","100%").attr("stop-color",B=>P(B.target.id))}let $;switch(U){case"gradient":$=G=>G.uid;break;case"source":$=G=>P(G.source.id);break;case"target":$=G=>P(G.target.id);break;default:$=U}F.append("path").attr("d",UXn()).attr("stroke",$).attr("stroke-width",G=>Math.max(1,G.width)),oL(void 0,p,0,_)},nxa={draw:txa},rxa=e=>e.replaceAll(/^[^\S\n\r]+|[^\S\n\r]+$/g,"").replaceAll(/([\n\r])+/g,` +`).trim(),ixa=E5e.parse.bind(E5e);E5e.parse=e=>ixa(rxa(e));const axa={parser:E5e,db:JEa,renderer:nxa},sxa=Object.freeze(Object.defineProperty({__proto__:null,diagram:axa},Symbol.toStringTag,{value:"Module"}));var oAn,lAn,adt=function(){var e=function(N,L,P,M){for(P=P||{},M=N.length;M--;P[N[M]]=L);return P},t=[1,7],r=[1,13],a=[1,14],s=[1,15],o=[1,19],u=[1,16],h=[1,17],f=[1,18],p=[8,30],m=[8,21,28,29,30,31,32,40,44,47],b=[1,23],_=[1,24],w=[8,15,16,21,28,29,30,31,32,40,44,47],S=[8,15,16,21,27,28,29,30,31,32,40,44,47],C=[1,49],A={trace:function(){},yy:{},symbols_:{error:2,spaceLines:3,SPACELINE:4,NL:5,separator:6,SPACE:7,EOF:8,start:9,BLOCK_DIAGRAM_KEY:10,document:11,stop:12,statement:13,link:14,LINK:15,START_LINK:16,LINK_LABEL:17,STR:18,nodeStatement:19,columnsStatement:20,SPACE_BLOCK:21,blockStatement:22,classDefStatement:23,cssClassStatement:24,styleStatement:25,node:26,SIZE:27,COLUMNS:28,"id-block":29,end:30,block:31,NODE_ID:32,nodeShapeNLabel:33,dirList:34,DIR:35,NODE_DSTART:36,NODE_DEND:37,BLOCK_ARROW_START:38,BLOCK_ARROW_END:39,classDef:40,CLASSDEF_ID:41,CLASSDEF_STYLEOPTS:42,DEFAULT:43,class:44,CLASSENTITY_IDS:45,STYLECLASS:46,style:47,STYLE_ENTITY_IDS:48,STYLE_DEFINITION_DATA:49,$accept:0,$end:1},terminals_:{2:"error",4:"SPACELINE",5:"NL",7:"SPACE",8:"EOF",10:"BLOCK_DIAGRAM_KEY",15:"LINK",16:"START_LINK",17:"LINK_LABEL",18:"STR",21:"SPACE_BLOCK",27:"SIZE",28:"COLUMNS",29:"id-block",30:"end",31:"block",32:"NODE_ID",35:"DIR",36:"NODE_DSTART",37:"NODE_DEND",38:"BLOCK_ARROW_START",39:"BLOCK_ARROW_END",40:"classDef",41:"CLASSDEF_ID",42:"CLASSDEF_STYLEOPTS",43:"DEFAULT",44:"class",45:"CLASSENTITY_IDS",46:"STYLECLASS",47:"style",48:"STYLE_ENTITY_IDS",49:"STYLE_DEFINITION_DATA"},productions_:[0,[3,1],[3,2],[3,2],[6,1],[6,1],[6,1],[9,3],[12,1],[12,1],[12,2],[12,2],[11,1],[11,2],[14,1],[14,4],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[13,1],[19,3],[19,2],[19,1],[20,1],[22,4],[22,3],[26,1],[26,2],[34,1],[34,2],[33,3],[33,4],[23,3],[23,3],[24,3],[25,3]],performAction:function(L,P,M,F,U,$,G){var B=$.length-1;switch(U){case 4:F.getLogger().debug("Rule: separator (NL) ");break;case 5:F.getLogger().debug("Rule: separator (Space) ");break;case 6:F.getLogger().debug("Rule: separator (EOF) ");break;case 7:F.getLogger().debug("Rule: hierarchy: ",$[B-1]),F.setHierarchy($[B-1]);break;case 8:F.getLogger().debug("Stop NL ");break;case 9:F.getLogger().debug("Stop EOF ");break;case 10:F.getLogger().debug("Stop NL2 ");break;case 11:F.getLogger().debug("Stop EOF2 ");break;case 12:F.getLogger().debug("Rule: statement: ",$[B]),typeof $[B].length=="number"?this.$=$[B]:this.$=[$[B]];break;case 13:F.getLogger().debug("Rule: statement #2: ",$[B-1]),this.$=[$[B-1]].concat($[B]);break;case 14:F.getLogger().debug("Rule: link: ",$[B],L),this.$={edgeTypeStr:$[B],label:""};break;case 15:F.getLogger().debug("Rule: LABEL link: ",$[B-3],$[B-1],$[B]),this.$={edgeTypeStr:$[B],label:$[B-1]};break;case 18:const Z=parseInt($[B]),z=F.generateId();this.$={id:z,type:"space",label:"",width:Z,children:[]};break;case 23:F.getLogger().debug("Rule: (nodeStatement link node) ",$[B-2],$[B-1],$[B]," typestr: ",$[B-1].edgeTypeStr);const Y=F.edgeStrToEdgeData($[B-1].edgeTypeStr);this.$=[{id:$[B-2].id,label:$[B-2].label,type:$[B-2].type,directions:$[B-2].directions},{id:$[B-2].id+"-"+$[B].id,start:$[B-2].id,end:$[B].id,label:$[B-1].label,type:"edge",directions:$[B].directions,arrowTypeEnd:Y,arrowTypeStart:"arrow_open"},{id:$[B].id,label:$[B].label,type:F.typeStr2Type($[B].typeStr),directions:$[B].directions}];break;case 24:F.getLogger().debug("Rule: nodeStatement (abc88 node size) ",$[B-1],$[B]),this.$={id:$[B-1].id,label:$[B-1].label,type:F.typeStr2Type($[B-1].typeStr),directions:$[B-1].directions,widthInColumns:parseInt($[B],10)};break;case 25:F.getLogger().debug("Rule: nodeStatement (node) ",$[B]),this.$={id:$[B].id,label:$[B].label,type:F.typeStr2Type($[B].typeStr),directions:$[B].directions,widthInColumns:1};break;case 26:F.getLogger().debug("APA123",this?this:"na"),F.getLogger().debug("COLUMNS: ",$[B]),this.$={type:"column-setting",columns:$[B]==="auto"?-1:parseInt($[B])};break;case 27:F.getLogger().debug("Rule: id-block statement : ",$[B-2],$[B-1]),F.generateId(),this.$={...$[B-2],type:"composite",children:$[B-1]};break;case 28:F.getLogger().debug("Rule: blockStatement : ",$[B-2],$[B-1],$[B]);const W=F.generateId();this.$={id:W,type:"composite",label:"",children:$[B-1]};break;case 29:F.getLogger().debug("Rule: node (NODE_ID separator): ",$[B]),this.$={id:$[B]};break;case 30:F.getLogger().debug("Rule: node (NODE_ID nodeShapeNLabel separator): ",$[B-1],$[B]),this.$={id:$[B-1],label:$[B].label,typeStr:$[B].typeStr,directions:$[B].directions};break;case 31:F.getLogger().debug("Rule: dirList: ",$[B]),this.$=[$[B]];break;case 32:F.getLogger().debug("Rule: dirList: ",$[B-1],$[B]),this.$=[$[B-1]].concat($[B]);break;case 33:F.getLogger().debug("Rule: nodeShapeNLabel: ",$[B-2],$[B-1],$[B]),this.$={typeStr:$[B-2]+$[B],label:$[B-1]};break;case 34:F.getLogger().debug("Rule: BLOCK_ARROW nodeShapeNLabel: ",$[B-3],$[B-2]," #3:",$[B-1],$[B]),this.$={typeStr:$[B-3]+$[B],label:$[B-2],directions:$[B-1]};break;case 35:case 36:this.$={type:"classDef",id:$[B-1].trim(),css:$[B].trim()};break;case 37:this.$={type:"applyClass",id:$[B-1].trim(),styleClass:$[B].trim()};break;case 38:this.$={type:"applyStyles",id:$[B-1].trim(),stylesStr:$[B].trim()};break}},table:[{9:1,10:[1,2]},{1:[3]},{11:3,13:4,19:5,20:6,21:t,22:8,23:9,24:10,25:11,26:12,28:r,29:a,31:s,32:o,40:u,44:h,47:f},{8:[1,20]},e(p,[2,12],{13:4,19:5,20:6,22:8,23:9,24:10,25:11,26:12,11:21,21:t,28:r,29:a,31:s,32:o,40:u,44:h,47:f}),e(m,[2,16],{14:22,15:b,16:_}),e(m,[2,17]),e(m,[2,18]),e(m,[2,19]),e(m,[2,20]),e(m,[2,21]),e(m,[2,22]),e(w,[2,25],{27:[1,25]}),e(m,[2,26]),{19:26,26:12,32:o},{11:27,13:4,19:5,20:6,21:t,22:8,23:9,24:10,25:11,26:12,28:r,29:a,31:s,32:o,40:u,44:h,47:f},{41:[1,28],43:[1,29]},{45:[1,30]},{48:[1,31]},e(S,[2,29],{33:32,36:[1,33],38:[1,34]}),{1:[2,7]},e(p,[2,13]),{26:35,32:o},{32:[2,14]},{17:[1,36]},e(w,[2,24]),{11:37,13:4,14:22,15:b,16:_,19:5,20:6,21:t,22:8,23:9,24:10,25:11,26:12,28:r,29:a,31:s,32:o,40:u,44:h,47:f},{30:[1,38]},{42:[1,39]},{42:[1,40]},{46:[1,41]},{49:[1,42]},e(S,[2,30]),{18:[1,43]},{18:[1,44]},e(w,[2,23]),{18:[1,45]},{30:[1,46]},e(m,[2,28]),e(m,[2,35]),e(m,[2,36]),e(m,[2,37]),e(m,[2,38]),{37:[1,47]},{34:48,35:C},{15:[1,50]},e(m,[2,27]),e(S,[2,33]),{39:[1,51]},{34:52,35:C,39:[2,31]},{32:[2,15]},e(S,[2,34]),{39:[2,32]}],defaultActions:{20:[2,7],23:[2,14],50:[2,15],52:[2,32]},parseError:function(L,P){if(P.recoverable)this.trace(L);else{var M=new Error(L);throw M.hash=P,M}},parse:function(L){var P=this,M=[0],F=[],U=[null],$=[],G=this.table,B="",Z=0,z=0,Y=2,W=1,Q=$.slice.call(arguments,1),V=Object.create(this.lexer),j={yy:{}};for(var ee in this.yy)Object.prototype.hasOwnProperty.call(this.yy,ee)&&(j.yy[ee]=this.yy[ee]);V.setInput(L,j.yy),j.yy.lexer=V,j.yy.parser=this,typeof V.yylloc>"u"&&(V.yylloc={});var te=V.yylloc;$.push(te);var ne=V.options&&V.options.ranges;typeof j.yy.parseError=="function"?this.parseError=j.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;function se(){var Ce;return Ce=F.pop()||V.lex()||W,typeof Ce!="number"&&(Ce instanceof Array&&(F=Ce,Ce=F.pop()),Ce=P.symbols_[Ce]||Ce),Ce}for(var ie,ge,ce,be,ve={},De,ye,Ee,he;;){if(ge=M[M.length-1],this.defaultActions[ge]?ce=this.defaultActions[ge]:((ie===null||typeof ie>"u")&&(ie=se()),ce=G[ge]&&G[ge][ie]),typeof ce>"u"||!ce.length||!ce[0]){var we="";he=[];for(De in G[ge])this.terminals_[De]&&De>Y&&he.push("'"+this.terminals_[De]+"'");V.showPosition?we="Parse error on line "+(Z+1)+`: +`+V.showPosition()+` +Expecting `+he.join(", ")+", got '"+(this.terminals_[ie]||ie)+"'":we="Parse error on line "+(Z+1)+": Unexpected "+(ie==W?"end of input":"'"+(this.terminals_[ie]||ie)+"'"),this.parseError(we,{text:V.match,token:this.terminals_[ie]||ie,line:V.yylineno,loc:te,expected:he})}if(ce[0]instanceof Array&&ce.length>1)throw new Error("Parse Error: multiple actions possible at state: "+ge+", token: "+ie);switch(ce[0]){case 1:M.push(ie),U.push(V.yytext),$.push(V.yylloc),M.push(ce[1]),ie=null,z=V.yyleng,B=V.yytext,Z=V.yylineno,te=V.yylloc;break;case 2:if(ye=this.productions_[ce[1]][1],ve.$=U[U.length-ye],ve._$={first_line:$[$.length-(ye||1)].first_line,last_line:$[$.length-1].last_line,first_column:$[$.length-(ye||1)].first_column,last_column:$[$.length-1].last_column},ne&&(ve._$.range=[$[$.length-(ye||1)].range[0],$[$.length-1].range[1]]),be=this.performAction.apply(ve,[B,z,Z,j.yy,ce[1],U,$].concat(Q)),typeof be<"u")return be;ye&&(M=M.slice(0,-1*ye*2),U=U.slice(0,-1*ye),$=$.slice(0,-1*ye)),M.push(this.productions_[ce[1]][0]),U.push(ve.$),$.push(ve._$),Ee=G[M[M.length-2]][M[M.length-1]],M.push(Ee);break;case 3:return!0}}return!0}},k=function(){var N={EOF:1,parseError:function(P,M){if(this.yy.parser)this.yy.parser.parseError(P,M);else throw new Error(P)},setInput:function(L,P){return this.yy=P||this.yy||{},this._input=L,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var L=this._input[0];this.yytext+=L,this.yyleng++,this.offset++,this.match+=L,this.matched+=L;var P=L.match(/(?:\r\n?|\n).*/g);return P?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),L},unput:function(L){var P=L.length,M=L.split(/(?:\r\n?|\n)/g);this._input=L+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-P),this.offset-=P;var F=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),M.length-1&&(this.yylineno-=M.length-1);var U=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:M?(M.length===F.length?this.yylloc.first_column:0)+F[F.length-M.length].length-M[0].length:this.yylloc.first_column-P},this.options.ranges&&(this.yylloc.range=[U[0],U[0]+this.yyleng-P]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){if(this.options.backtrack_lexer)this._backtrack=!0;else return this.parseError("Lexical error on line "+(this.yylineno+1)+`. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true). +`+this.showPosition(),{text:"",token:null,line:this.yylineno});return this},less:function(L){this.unput(this.match.slice(L))},pastInput:function(){var L=this.matched.substr(0,this.matched.length-this.match.length);return(L.length>20?"...":"")+L.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var L=this.match;return L.length<20&&(L+=this._input.substr(0,20-L.length)),(L.substr(0,20)+(L.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var L=this.pastInput(),P=new Array(L.length+1).join("-");return L+this.upcomingInput()+` +`+P+"^"},test_match:function(L,P){var M,F,U;if(this.options.backtrack_lexer&&(U={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(U.yylloc.range=this.yylloc.range.slice(0))),F=L[0].match(/(?:\r\n?|\n).*/g),F&&(this.yylineno+=F.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:F?F[F.length-1].length-F[F.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+L[0].length},this.yytext+=L[0],this.match+=L[0],this.matches=L,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(L[0].length),this.matched+=L[0],M=this.performAction.call(this,this.yy,this,P,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),M)return M;if(this._backtrack){for(var $ in U)this[$]=U[$];return!1}return!1},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var L,P,M,F;this._more||(this.yytext="",this.match="");for(var U=this._currentRules(),$=0;$P[0].length)){if(P=M,F=$,this.options.backtrack_lexer){if(L=this.test_match(M,U[$]),L!==!1)return L;if(this._backtrack){P=!1;continue}else return!1}else if(!this.options.flex)break}return P?(L=this.test_match(P,U[F]),L!==!1?L:!1):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var P=this.next();return P||this.lex()},begin:function(P){this.conditionStack.push(P)},popState:function(){var P=this.conditionStack.length-1;return P>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(P){return P=this.conditionStack.length-1-Math.abs(P||0),P>=0?this.conditionStack[P]:"INITIAL"},pushState:function(P){this.begin(P)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(P,M,F,U){switch(F){case 0:return 10;case 1:return P.getLogger().debug("Found space-block"),31;case 2:return P.getLogger().debug("Found nl-block"),31;case 3:return P.getLogger().debug("Found space-block"),29;case 4:P.getLogger().debug(".",M.yytext);break;case 5:P.getLogger().debug("_",M.yytext);break;case 6:return 5;case 7:return M.yytext=-1,28;case 8:return M.yytext=M.yytext.replace(/columns\s+/,""),P.getLogger().debug("COLUMNS (LEX)",M.yytext),28;case 9:this.pushState("md_string");break;case 10:return"MD_STR";case 11:this.popState();break;case 12:this.pushState("string");break;case 13:P.getLogger().debug("LEX: POPPING STR:",M.yytext),this.popState();break;case 14:return P.getLogger().debug("LEX: STR end:",M.yytext),"STR";case 15:return M.yytext=M.yytext.replace(/space\:/,""),P.getLogger().debug("SPACE NUM (LEX)",M.yytext),21;case 16:return M.yytext="1",P.getLogger().debug("COLUMNS (LEX)",M.yytext),21;case 17:return 43;case 18:return"LINKSTYLE";case 19:return"INTERPOLATE";case 20:return this.pushState("CLASSDEF"),40;case 21:return this.popState(),this.pushState("CLASSDEFID"),"DEFAULT_CLASSDEF_ID";case 22:return this.popState(),this.pushState("CLASSDEFID"),41;case 23:return this.popState(),42;case 24:return this.pushState("CLASS"),44;case 25:return this.popState(),this.pushState("CLASS_STYLE"),45;case 26:return this.popState(),46;case 27:return this.pushState("STYLE_STMNT"),47;case 28:return this.popState(),this.pushState("STYLE_DEFINITION"),48;case 29:return this.popState(),49;case 30:return this.pushState("acc_title"),"acc_title";case 31:return this.popState(),"acc_title_value";case 32:return this.pushState("acc_descr"),"acc_descr";case 33:return this.popState(),"acc_descr_value";case 34:this.pushState("acc_descr_multiline");break;case 35:this.popState();break;case 36:return"acc_descr_multiline_value";case 37:return 30;case 38:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 39:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 40:return this.popState(),P.getLogger().debug("Lex: ))"),"NODE_DEND";case 41:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 42:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 43:return this.popState(),P.getLogger().debug("Lex: (-"),"NODE_DEND";case 44:return this.popState(),P.getLogger().debug("Lex: -)"),"NODE_DEND";case 45:return this.popState(),P.getLogger().debug("Lex: (("),"NODE_DEND";case 46:return this.popState(),P.getLogger().debug("Lex: ]]"),"NODE_DEND";case 47:return this.popState(),P.getLogger().debug("Lex: ("),"NODE_DEND";case 48:return this.popState(),P.getLogger().debug("Lex: ])"),"NODE_DEND";case 49:return this.popState(),P.getLogger().debug("Lex: /]"),"NODE_DEND";case 50:return this.popState(),P.getLogger().debug("Lex: /]"),"NODE_DEND";case 51:return this.popState(),P.getLogger().debug("Lex: )]"),"NODE_DEND";case 52:return this.popState(),P.getLogger().debug("Lex: )"),"NODE_DEND";case 53:return this.popState(),P.getLogger().debug("Lex: ]>"),"NODE_DEND";case 54:return this.popState(),P.getLogger().debug("Lex: ]"),"NODE_DEND";case 55:return P.getLogger().debug("Lexa: -)"),this.pushState("NODE"),36;case 56:return P.getLogger().debug("Lexa: (-"),this.pushState("NODE"),36;case 57:return P.getLogger().debug("Lexa: ))"),this.pushState("NODE"),36;case 58:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;case 59:return P.getLogger().debug("Lex: ((("),this.pushState("NODE"),36;case 60:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;case 61:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;case 62:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;case 63:return P.getLogger().debug("Lexc: >"),this.pushState("NODE"),36;case 64:return P.getLogger().debug("Lexa: (["),this.pushState("NODE"),36;case 65:return P.getLogger().debug("Lexa: )"),this.pushState("NODE"),36;case 66:return this.pushState("NODE"),36;case 67:return this.pushState("NODE"),36;case 68:return this.pushState("NODE"),36;case 69:return this.pushState("NODE"),36;case 70:return this.pushState("NODE"),36;case 71:return this.pushState("NODE"),36;case 72:return this.pushState("NODE"),36;case 73:return P.getLogger().debug("Lexa: ["),this.pushState("NODE"),36;case 74:return this.pushState("BLOCK_ARROW"),P.getLogger().debug("LEX ARR START"),38;case 75:return P.getLogger().debug("Lex: NODE_ID",M.yytext),32;case 76:return P.getLogger().debug("Lex: EOF",M.yytext),8;case 77:this.pushState("md_string");break;case 78:this.pushState("md_string");break;case 79:return"NODE_DESCR";case 80:this.popState();break;case 81:P.getLogger().debug("Lex: Starting string"),this.pushState("string");break;case 82:P.getLogger().debug("LEX ARR: Starting string"),this.pushState("string");break;case 83:return P.getLogger().debug("LEX: NODE_DESCR:",M.yytext),"NODE_DESCR";case 84:P.getLogger().debug("LEX POPPING"),this.popState();break;case 85:P.getLogger().debug("Lex: =>BAE"),this.pushState("ARROW_DIR");break;case 86:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (right): dir:",M.yytext),"DIR";case 87:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (left):",M.yytext),"DIR";case 88:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (x):",M.yytext),"DIR";case 89:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (y):",M.yytext),"DIR";case 90:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (up):",M.yytext),"DIR";case 91:return M.yytext=M.yytext.replace(/^,\s*/,""),P.getLogger().debug("Lex (down):",M.yytext),"DIR";case 92:return M.yytext="]>",P.getLogger().debug("Lex (ARROW_DIR end):",M.yytext),this.popState(),this.popState(),"BLOCK_ARROW_END";case 93:return P.getLogger().debug("Lex: LINK","#"+M.yytext+"#"),15;case 94:return P.getLogger().debug("Lex: LINK",M.yytext),15;case 95:return P.getLogger().debug("Lex: LINK",M.yytext),15;case 96:return P.getLogger().debug("Lex: LINK",M.yytext),15;case 97:return P.getLogger().debug("Lex: START_LINK",M.yytext),this.pushState("LLABEL"),16;case 98:return P.getLogger().debug("Lex: START_LINK",M.yytext),this.pushState("LLABEL"),16;case 99:return P.getLogger().debug("Lex: START_LINK",M.yytext),this.pushState("LLABEL"),16;case 100:this.pushState("md_string");break;case 101:return P.getLogger().debug("Lex: Starting string"),this.pushState("string"),"LINK_LABEL";case 102:return this.popState(),P.getLogger().debug("Lex: LINK","#"+M.yytext+"#"),15;case 103:return this.popState(),P.getLogger().debug("Lex: LINK",M.yytext),15;case 104:return this.popState(),P.getLogger().debug("Lex: LINK",M.yytext),15;case 105:return P.getLogger().debug("Lex: COLON",M.yytext),M.yytext=M.yytext.slice(1),27}},rules:[/^(?:block-beta\b)/,/^(?:block\s+)/,/^(?:block\n+)/,/^(?:block:)/,/^(?:[\s]+)/,/^(?:[\n]+)/,/^(?:((\u000D\u000A)|(\u000A)))/,/^(?:columns\s+auto\b)/,/^(?:columns\s+[\d]+)/,/^(?:["][`])/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:space[:]\d+)/,/^(?:space\b)/,/^(?:default\b)/,/^(?:linkStyle\b)/,/^(?:interpolate\b)/,/^(?:classDef\s+)/,/^(?:DEFAULT\s+)/,/^(?:\w+\s+)/,/^(?:[^\n]*)/,/^(?:class\s+)/,/^(?:(\w+)+((,\s*\w+)*))/,/^(?:[^\n]*)/,/^(?:style\s+)/,/^(?:(\w+)+((,\s*\w+)*))/,/^(?:[^\n]*)/,/^(?:accTitle\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*:\s*)/,/^(?:(?!\n||)*[^\n]*)/,/^(?:accDescr\s*\{\s*)/,/^(?:[\}])/,/^(?:[^\}]*)/,/^(?:end\b\s*)/,/^(?:\(\(\()/,/^(?:\)\)\))/,/^(?:[\)]\))/,/^(?:\}\})/,/^(?:\})/,/^(?:\(-)/,/^(?:-\))/,/^(?:\(\()/,/^(?:\]\])/,/^(?:\()/,/^(?:\]\))/,/^(?:\\\])/,/^(?:\/\])/,/^(?:\)\])/,/^(?:[\)])/,/^(?:\]>)/,/^(?:[\]])/,/^(?:-\))/,/^(?:\(-)/,/^(?:\)\))/,/^(?:\))/,/^(?:\(\(\()/,/^(?:\(\()/,/^(?:\{\{)/,/^(?:\{)/,/^(?:>)/,/^(?:\(\[)/,/^(?:\()/,/^(?:\[\[)/,/^(?:\[\|)/,/^(?:\[\()/,/^(?:\)\)\))/,/^(?:\[\\)/,/^(?:\[\/)/,/^(?:\[\\)/,/^(?:\[)/,/^(?:<\[)/,/^(?:[^\(\[\n\-\)\{\}\s\<\>:]+)/,/^(?:$)/,/^(?:["][`])/,/^(?:["][`])/,/^(?:[^`"]+)/,/^(?:[`]["])/,/^(?:["])/,/^(?:["])/,/^(?:[^"]+)/,/^(?:["])/,/^(?:\]>\s*\()/,/^(?:,?\s*right\s*)/,/^(?:,?\s*left\s*)/,/^(?:,?\s*x\s*)/,/^(?:,?\s*y\s*)/,/^(?:,?\s*up\s*)/,/^(?:,?\s*down\s*)/,/^(?:\)\s*)/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?:\s*~~[\~]+\s*)/,/^(?:\s*[xo<]?--\s*)/,/^(?:\s*[xo<]?==\s*)/,/^(?:\s*[xo<]?-\.\s*)/,/^(?:["][`])/,/^(?:["])/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?::\d+)/],conditions:{STYLE_DEFINITION:{rules:[29],inclusive:!1},STYLE_STMNT:{rules:[28],inclusive:!1},CLASSDEFID:{rules:[23],inclusive:!1},CLASSDEF:{rules:[21,22],inclusive:!1},CLASS_STYLE:{rules:[26],inclusive:!1},CLASS:{rules:[25],inclusive:!1},LLABEL:{rules:[100,101,102,103,104],inclusive:!1},ARROW_DIR:{rules:[86,87,88,89,90,91,92],inclusive:!1},BLOCK_ARROW:{rules:[77,82,85],inclusive:!1},NODE:{rules:[38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,78,81],inclusive:!1},md_string:{rules:[10,11,79,80],inclusive:!1},space:{rules:[],inclusive:!1},string:{rules:[13,14,83,84],inclusive:!1},acc_descr_multiline:{rules:[35,36],inclusive:!1},acc_descr:{rules:[33],inclusive:!1},acc_title:{rules:[31],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,12,15,16,17,18,19,20,24,27,30,32,34,37,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,93,94,95,96,97,98,99,105],inclusive:!0}}};return N}();A.lexer=k;function I(){this.yy={}}return I.prototype=A,A.Parser=I,new I}();adt.parser=adt;const oxa=adt;let V2={},kyt=[],Hae={};const cAn="color",uAn="fill",lxa="bgFill",nrr=",",cxa=Qt();let $se={};const uxa=e=>mi.sanitizeText(e,cxa),hxa=function(e,t=""){$se[e]===void 0&&($se[e]={id:e,styles:[],textStyles:[]});const r=$se[e];t!=null&&t.split(nrr).forEach(a=>{const s=a.replace(/([^;]*);/,"$1").trim();if(a.match(cAn)){const u=s.replace(uAn,lxa).replace(cAn,uAn);r.textStyles.push(u)}r.styles.push(s)})},dxa=function(e,t=""){const r=V2[e];t!=null&&(r.styles=t.split(nrr))},fxa=function(e,t){e.split(",").forEach(function(r){let a=V2[r];if(a===void 0){const s=r.trim();V2[s]={id:s,type:"na",children:[]},a=V2[s]}a.classes||(a.classes=[]),a.classes.push(t)})},rrr=(e,t)=>{const r=e.flat(),a=[];for(const s of r){if(s.label&&(s.label=uxa(s.label)),s.type==="classDef"){hxa(s.id,s.css);continue}if(s.type==="applyClass"){fxa(s.id,(s==null?void 0:s.styleClass)||"");continue}if(s.type==="applyStyles"){s!=null&&s.stylesStr&&dxa(s.id,s==null?void 0:s.stylesStr);continue}if(s.type==="column-setting")t.columns=s.columns||-1;else if(s.type==="edge")Hae[s.id]?Hae[s.id]++:Hae[s.id]=1,s.id=Hae[s.id]+"-"+s.id,kyt.push(s);else{s.label||(s.type==="composite"?s.label="":s.label=s.id);const o=!V2[s.id];if(o?V2[s.id]=s:(s.type!=="na"&&(V2[s.id].type=s.type),s.label!==s.id&&(V2[s.id].label=s.label)),s.children&&rrr(s.children,s),s.type==="space"){const u=s.width||1;for(let h=0;h{ut.debug("Clear called"),Mb(),Use={id:"root",type:"composite",children:[],columns:-1},V2={root:Use},Ryt=[],$se={},kyt=[],Hae={}};function gxa(e){switch(ut.debug("typeStr2Type",e),e){case"[]":return"square";case"()":return ut.debug("we have a round"),"round";case"(())":return"circle";case">]":return"rect_left_inv_arrow";case"{}":return"diamond";case"{{}}":return"hexagon";case"([])":return"stadium";case"[[]]":return"subroutine";case"[()]":return"cylinder";case"((()))":return"doublecircle";case"[//]":return"lean_right";case"[\\\\]":return"lean_left";case"[/\\]":return"trapezoid";case"[\\/]":return"inv_trapezoid";case"<[]>":return"block_arrow";default:return"na"}}function mxa(e){switch(ut.debug("typeStr2Type",e),e){case"==":return"thick";default:return"normal"}}function bxa(e){switch(e.trim()){case"--x":return"arrow_cross";case"--o":return"arrow_circle";default:return"arrow_point"}}let hAn=0;const yxa=()=>(hAn++,"id-"+Math.random().toString(36).substr(2,12)+"-"+hAn),vxa=e=>{Use.children=e,rrr(e,Use),Ryt=Use.children},_xa=e=>{const t=V2[e];return t?t.columns?t.columns:t.children?t.children.length:-1:-1},wxa=()=>[...Object.values(V2)],Exa=()=>Ryt||[],xxa=()=>kyt,Sxa=e=>V2[e],Txa=e=>{V2[e.id]=e},Cxa=()=>console,Axa=function(){return $se},kxa={getConfig:()=>Lf().block,typeStr2Type:gxa,edgeTypeStr2Type:mxa,edgeStrToEdgeData:bxa,getLogger:Cxa,getBlocksFlat:wxa,getBlocks:Exa,getEdges:xxa,setHierarchy:vxa,getBlock:Sxa,setBlock:Txa,getColumns:_xa,getClasses:Axa,clear:pxa,generateId:yxa},Rxa=kxa,AEe=(e,t)=>{const r=ece,a=r(e,"r"),s=r(e,"g"),o=r(e,"b");return Z2(a,s,o,t)},Ixa=e=>`.label { + font-family: ${e.fontFamily}; + color: ${e.nodeTextColor||e.textColor}; + } + .cluster-label text { + fill: ${e.titleColor}; + } + .cluster-label span,p { + color: ${e.titleColor}; + } + + + + .label text,span,p { + fill: ${e.nodeTextColor||e.textColor}; + color: ${e.nodeTextColor||e.textColor}; + } + + .node rect, + .node circle, + .node ellipse, + .node polygon, + .node path { + fill: ${e.mainBkg}; + stroke: ${e.nodeBorder}; + stroke-width: 1px; + } + .flowchart-label text { + text-anchor: middle; + } + // .flowchart-label .text-outer-tspan { + // text-anchor: middle; + // } + // .flowchart-label .text-inner-tspan { + // text-anchor: start; + // } + + .node .label { + text-align: center; + } + .node.clickable { + cursor: pointer; + } + + .arrowheadPath { + fill: ${e.arrowheadColor}; + } + + .edgePath .path { + stroke: ${e.lineColor}; + stroke-width: 2.0px; + } + + .flowchart-link { + stroke: ${e.lineColor}; + fill: none; + } + + .edgeLabel { + background-color: ${e.edgeLabelBackground}; + rect { + opacity: 0.5; + background-color: ${e.edgeLabelBackground}; + fill: ${e.edgeLabelBackground}; + } + text-align: center; + } + + /* For html labels only */ + .labelBkg { + background-color: ${AEe(e.edgeLabelBackground,.5)}; + // background-color: + } + + .node .cluster { + // fill: ${AEe(e.mainBkg,.5)}; + fill: ${AEe(e.clusterBkg,.5)}; + stroke: ${AEe(e.clusterBorder,.2)}; + box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; + stroke-width: 1px; + } + + .cluster text { + fill: ${e.titleColor}; + } + + .cluster span,p { + color: ${e.titleColor}; + } + /* .cluster div { + color: ${e.titleColor}; + } */ + + div.mermaidTooltip { + position: absolute; + text-align: center; + max-width: 200px; + padding: 2px; + font-family: ${e.fontFamily}; + font-size: 12px; + background: ${e.tertiaryColor}; + border: 1px solid ${e.border2}; + border-radius: 2px; + pointer-events: none; + z-index: 100; + } + + .flowchartTitleText { + text-anchor: middle; + font-size: 18px; + fill: ${e.textColor}; + } +`,Nxa=Ixa;function irr(e,t,r=!1){var a,s,o;const u=e;let h="default";(((a=u==null?void 0:u.classes)==null?void 0:a.length)||0)>0&&(h=((u==null?void 0:u.classes)||[]).join(" ")),h=h+" flowchart-label";let f=0,p="",m;switch(u.type){case"round":f=5,p="rect";break;case"composite":f=0,p="composite",m=0;break;case"square":p="rect";break;case"diamond":p="question";break;case"hexagon":p="hexagon";break;case"block_arrow":p="block_arrow";break;case"odd":p="rect_left_inv_arrow";break;case"lean_right":p="lean_right";break;case"lean_left":p="lean_left";break;case"trapezoid":p="trapezoid";break;case"inv_trapezoid":p="inv_trapezoid";break;case"rect_left_inv_arrow":p="rect_left_inv_arrow";break;case"circle":p="circle";break;case"ellipse":p="ellipse";break;case"stadium":p="stadium";break;case"subroutine":p="subroutine";break;case"cylinder":p="cylinder";break;case"group":p="rect";break;case"doublecircle":p="doublecircle";break;default:p="rect"}const b=Hw((u==null?void 0:u.styles)||[]),_=u.label,w=u.size||{width:0,height:0,x:0,y:0};return{labelStyle:b.labelStyle,shape:p,labelText:_,rx:f,ry:f,class:h,style:b.style,id:u.id,directions:u.directions,width:w.width,height:w.height,x:w.x,y:w.y,positioned:r,intersect:void 0,type:u.type,padding:m??(((o=(s=Lf())==null?void 0:s.block)==null?void 0:o.padding)||0)}}async function Oxa(e,t,r){const a=irr(t,r,!1);if(a.type==="group")return;const s=await _6e(e,a),o=s.node().getBBox(),u=r.getBlock(a.id);u.size={width:o.width,height:o.height,x:0,y:0,node:s},r.setBlock(u),s.remove()}async function Lxa(e,t,r){const a=irr(t,r,!0);r.getBlock(a.id).type!=="space"&&(await _6e(e,a),t.intersect=a==null?void 0:a.intersect,Aht(a))}async function Iyt(e,t,r,a){for(const s of t)await a(e,s,r),s.children&&await Iyt(e,s.children,r,a)}async function Dxa(e,t,r){await Iyt(e,t,r,Oxa)}async function Mxa(e,t,r){await Iyt(e,t,r,Lxa)}async function Pxa(e,t,r,a,s){const o=new F1({multigraph:!0,compound:!0});o.setGraph({rankdir:"TB",nodesep:10,ranksep:10,marginx:8,marginy:8});for(const u of r)u.size&&o.setNode(u.id,{width:u.size.width,height:u.size.height,intersect:u.intersect});for(const u of t)if(u.start&&u.end){const h=a.getBlock(u.start),f=a.getBlock(u.end);if(h!=null&&h.size&&(f!=null&&f.size)){const p=h.size,m=f.size,b=[{x:p.x,y:p.y},{x:p.x+(m.x-p.x)/2,y:p.y+(m.y-p.y)/2},{x:m.x,y:m.y}];await zer(e,{v:u.start,w:u.end,name:u.id},{...u,arrowTypeEnd:u.arrowTypeEnd,arrowTypeStart:u.arrowTypeStart,points:b,classes:"edge-thickness-normal edge-pattern-solid flowchart-link LS-a1 LE-b1"},void 0,"block",o,s),u.label&&(await Kbt(e,{...u,label:u.label,labelStyle:"stroke: #333; stroke-width: 1.5px;fill:none;",arrowTypeEnd:u.arrowTypeEnd,arrowTypeStart:u.arrowTypeStart}),await Uer({...u,x:b[1].x,y:b[1].y},{originalPath:b}))}}}const Y0=((lAn=(oAn=Qt())==null?void 0:oAn.block)==null?void 0:lAn.padding)||8;function Bxa(e,t){if(e===0||!Number.isInteger(e))throw new Error("Columns must be an integer !== 0.");if(t<0||!Number.isInteger(t))throw new Error("Position must be a non-negative integer."+t);if(e<0)return{px:t,py:0};if(e===1)return{px:0,py:t};const r=t%e,a=Math.floor(t/e);return{px:r,py:a}}const Fxa=e=>{let t=0,r=0;for(const a of e.children){const{width:s,height:o,x:u,y:h}=a.size||{width:0,height:0,x:0,y:0};ut.debug("getMaxChildSize abc95 child:",a.id,"width:",s,"height:",o,"x:",u,"y:",h,a.type),a.type!=="space"&&(s>t&&(t=s/(e.widthInColumns||1)),o>r&&(r=o))}return{width:t,height:r}};function sdt(e,t,r=0,a=0){var s,o,u,h,f,p,m,b,_,w,S;ut.debug("setBlockSizes abc95 (start)",e.id,(s=e==null?void 0:e.size)==null?void 0:s.x,"block width =",e==null?void 0:e.size,"sieblingWidth",r),(o=e==null?void 0:e.size)!=null&&o.width||(e.size={width:r,height:a,x:0,y:0});let C=0,A=0;if(((u=e.children)==null?void 0:u.length)>0){for(const U of e.children)sdt(U,t);const k=Fxa(e);C=k.width,A=k.height,ut.debug("setBlockSizes abc95 maxWidth of",e.id,":s children is ",C,A);for(const U of e.children)U.size&&(ut.debug(`abc95 Setting size of children of ${e.id} id=${U.id} ${C} ${A} ${U.size}`),U.size.width=C*(U.widthInColumns||1)+Y0*((U.widthInColumns||1)-1),U.size.height=A,U.size.x=0,U.size.y=0,ut.debug(`abc95 updating size of ${e.id} children child:${U.id} maxWidth:${C} maxHeight:${A}`));for(const U of e.children)sdt(U,t,C,A);const I=e.columns||-1;let N=0;for(const U of e.children)N+=U.widthInColumns||1;let L=e.children.length;I>0&&I0?Math.min(e.children.length,I):e.children.length;if(U>0){const $=(M-U*Y0-Y0)/U;ut.debug("abc95 (growing to fit) width",e.id,M,(m=e.size)==null?void 0:m.width,$);for(const G of e.children)G.size&&(G.size.width=$)}}e.size={width:M,height:F,x:0,y:0}}ut.debug("setBlockSizes abc94 (done)",e.id,(b=e==null?void 0:e.size)==null?void 0:b.x,(_=e==null?void 0:e.size)==null?void 0:_.width,(w=e==null?void 0:e.size)==null?void 0:w.y,(S=e==null?void 0:e.size)==null?void 0:S.height)}function arr(e,t){var r,a,s,o,u,h,f,p,m,b,_,w,S,C,A,k,I;ut.debug(`abc85 layout blocks (=>layoutBlocks) ${e.id} x: ${(r=e==null?void 0:e.size)==null?void 0:r.x} y: ${(a=e==null?void 0:e.size)==null?void 0:a.y} width: ${(s=e==null?void 0:e.size)==null?void 0:s.width}`);const N=e.columns||-1;if(ut.debug("layoutBlocks columns abc95",e.id,"=>",N,e),e.children&&e.children.length>0){const L=((u=(o=e==null?void 0:e.children[0])==null?void 0:o.size)==null?void 0:u.width)||0,P=e.children.length*L+(e.children.length-1)*Y0;ut.debug("widthOfChildren 88",P,"posX");let M=0;ut.debug("abc91 block?.size?.x",e.id,(h=e==null?void 0:e.size)==null?void 0:h.x);let F=(f=e==null?void 0:e.size)!=null&&f.x?((p=e==null?void 0:e.size)==null?void 0:p.x)+(-((m=e==null?void 0:e.size)==null?void 0:m.width)/2||0):-Y0,U=0;for(const $ of e.children){const G=e;if(!$.size)continue;const{width:B,height:Z}=$.size,{px:z,py:Y}=Bxa(N,M);if(Y!=U&&(U=Y,F=(b=e==null?void 0:e.size)!=null&&b.x?((_=e==null?void 0:e.size)==null?void 0:_.x)+(-((w=e==null?void 0:e.size)==null?void 0:w.width)/2||0):-Y0,ut.debug("New row in layout for block",e.id," and child ",$.id,U)),ut.debug(`abc89 layout blocks (child) id: ${$.id} Pos: ${M} (px, py) ${z},${Y} (${(S=G==null?void 0:G.size)==null?void 0:S.x},${(C=G==null?void 0:G.size)==null?void 0:C.y}) parent: ${G.id} width: ${B}${Y0}`),G.size){const W=B/2;$.size.x=F+Y0+W,ut.debug(`abc91 layout blocks (calc) px, pyid:${$.id} startingPos=X${F} new startingPosX${$.size.x} ${W} padding=${Y0} width=${B} halfWidth=${W} => x:${$.size.x} y:${$.size.y} ${$.widthInColumns} (width * (child?.w || 1)) / 2 ${B*(($==null?void 0:$.widthInColumns)||1)/2}`),F=$.size.x+W,$.size.y=G.size.y-G.size.height/2+Y*(Z+Y0)+Z/2+Y0,ut.debug(`abc88 layout blocks (calc) px, pyid:${$.id}startingPosX${F}${Y0}${W}=>x:${$.size.x}y:${$.size.y}${$.widthInColumns}(width * (child?.w || 1)) / 2${B*(($==null?void 0:$.widthInColumns)||1)/2}`)}$.children&&arr($),M+=($==null?void 0:$.widthInColumns)||1,ut.debug("abc88 columnsPos",$,M)}}ut.debug(`layout blocks (<==layoutBlocks) ${e.id} x: ${(A=e==null?void 0:e.size)==null?void 0:A.x} y: ${(k=e==null?void 0:e.size)==null?void 0:k.y} width: ${(I=e==null?void 0:e.size)==null?void 0:I.width}`)}function srr(e,{minX:t,minY:r,maxX:a,maxY:s}={minX:0,minY:0,maxX:0,maxY:0}){if(e.size&&e.id!=="root"){const{x:o,y:u,width:h,height:f}=e.size;o-h/2a&&(a=o+h/2),u+f/2>s&&(s=u+f/2)}if(e.children)for(const o of e.children)({minX:t,minY:r,maxX:a,maxY:s}=srr(o,{minX:t,minY:r,maxX:a,maxY:s}));return{minX:t,minY:r,maxX:a,maxY:s}}function $xa(e){const t=e.getBlock("root");if(!t)return;sdt(t,e,0,0),arr(t),ut.debug("getBlocks",JSON.stringify(t,null,2));const{minX:r,minY:a,maxX:s,maxY:o}=srr(t),u=o-a,h=s-r;return{x:r,y:a,width:h,height:u}}const Uxa=function(e,t){return t.db.getClasses()},zxa=async function(e,t,r,a){const{securityLevel:s,block:o}=Lf(),u=a.db;let h;s==="sandbox"&&(h=gn("#i"+t));const f=gn(s==="sandbox"?h.nodes()[0].contentDocument.body:"body"),p=s==="sandbox"?f.select(`[id="${t}"]`):gn(`[id="${t}"]`);jbt(p,["point","circle","cross"],a.type,t);const b=u.getBlocks(),_=u.getBlocksFlat(),w=u.getEdges(),S=p.insert("g").attr("class","block");await Dxa(S,b,u);const C=$xa(u);if(await Mxa(S,b,u),await Pxa(S,w,_,u,t),C){const A=C,k=Math.max(1,Math.round(.125*(A.width/A.height))),I=A.height+k+10,N=A.width+10,{useMaxWidth:L}=o;Db(p,I,N,!!L),ut.debug("Here Bounds",C,A),p.attr("viewBox",`${A.x-5} ${A.y-5} ${A.width+10} ${A.height+10}`)}cA(o1t)},Gxa={draw:zxa,getClasses:Uxa},qxa={parser:oxa,db:Rxa,renderer:Gxa,styles:Nxa},Hxa=Object.freeze(Object.defineProperty({__proto__:null,diagram:qxa},Symbol.toStringTag,{value:"Module"}));function Vxa(e){return typeof e=="string"&&/^data:image\/svg\+xml/i.test(e)}function Yxa(e){let t=e.indexOf(",");return t>=0?decodeURIComponent(e.slice(t+1)):""}function jxa(e){return`data:image/svg+xml;charset=utf-8,${encodeURIComponent(e)}`}function Wxa(e){let t=[],r="",a=0;for(let s=0;ss.trim()).filter(Boolean)}function Kxa(e){let t=[],r="",a=0;for(let o=0;o`${h}:${f}`).join(";")}function Xxa(e){return e.replace(/([^{}]+)\{([^}]*)\}/g,(t,r,a)=>`${r}{${orr(a)}}`)}function Qxa(e){return e=e.replace(/]*>([\s\S]*?)<\/style>/gi,(t,r)=>t.replace(r,Xxa(r))),e=e.replace(/style=(['"])([\s\S]*?)\1/gi,(t,r,a)=>`style=${r}${orr(a)}${r}`),e}function Zxa(e){if(!cF()||!Vxa(e))return e;try{let t=Yxa(e),r=Qxa(t);return jxa(r)}catch{return e}}async function R6e(e,t){let{width:r,height:a,scale:s=1,dpr:o=1,meta:u={},backgroundColor:h}=t;e=Zxa(e);let f=new Image;f.loading="eager",f.decoding="sync",f.crossOrigin="anonymous",f.src=e,await f.decode();let p=f.naturalWidth,m=f.naturalHeight,b=Number.isFinite(u.w0)?u.w0:p,_=Number.isFinite(u.h0)?u.h0:m,w,S,C=Number.isFinite(r),A=Number.isFinite(a);if(C&&A)w=Math.max(1,r),S=Math.max(1,a);else if(C){let N=r/Math.max(1,b);w=r,S=_*N}else if(A){let N=a/Math.max(1,_);S=a,w=b*N}else w=p,S=m;w=w*s,S=S*s;let k=document.createElement("canvas");k.width=w*o,k.height=S*o,k.style.width=`${w}px`,k.style.height=`${S}px`;let I=k.getContext("2d");return o!==1&&I.scale(o,o),h&&(I.save(),I.fillStyle=h,I.fillRect(0,0,w,S),I.restore()),I.drawImage(f,0,0,w,S),k}async function lrr(e,t){let r=await R6e(e,t),a=new Image;return a.src=r.toDataURL(`image/${t.format}`,t.quality),await a.decode(),a.style.width=`${r.width/t.dpr}px`,a.style.height=`${r.height/t.dpr}px`,a}async function dAn(e,t){let{scale:r=1,width:a,height:s,meta:o={}}=t,u=Number.isFinite(a),h=Number.isFinite(s),f=Number.isFinite(r)&&r!==1||u||h;if(cF()&&f)return await lrr(e,{...t,format:"png",quality:1,meta:o});let p=new Image;if(p.decoding="sync",p.loading="eager",p.src=e,await p.decode(),u&&h)p.style.width=`${a}px`,p.style.height=`${s}px`;else if(u){let m=Number.isFinite(o.w0)?o.w0:p.naturalWidth,b=Number.isFinite(o.h0)?o.h0:p.naturalHeight,_=a/Math.max(1,m);p.style.width=`${a}px`,p.style.height=`${Math.round(b*_)}px`}else if(h){let m=Number.isFinite(o.w0)?o.w0:p.naturalWidth,b=Number.isFinite(o.h0)?o.h0:p.naturalHeight,_=s/Math.max(1,b);p.style.height=`${s}px`,p.style.width=`${Math.round(m*_)}px`}else{let m=Math.round(p.naturalWidth*r),b=Math.round(p.naturalHeight*r);if(p.style.width=`${m}px`,p.style.height=`${b}px`,typeof e=="string"&&e.startsWith("data:image/svg+xml"))try{let _=decodeURIComponent(e.split(",")[1]).replace(/width="[^"]*"/,`width="${m}"`).replace(/height="[^"]*"/,`height="${b}"`);e=`data:image/svg+xml;charset=utf-8,${encodeURIComponent(_)}`,p.src=e}catch{}}return p}const kEe=Object.freeze(Object.defineProperty({__proto__:null,toImg:dAn,toSvg:dAn},Symbol.toStringTag,{value:"Module"})),fAn=Object.freeze(Object.defineProperty({__proto__:null,toCanvas:R6e},Symbol.toStringTag,{value:"Module"}));async function crr(e,t){let r=t.type;if(r==="svg"){let s=decodeURIComponent(e.split(",")[1]);return new Blob([s],{type:"image/svg+xml"})}let a=await R6e(e,t);return new Promise(s=>a.toBlob(o=>s(o),`image/${r}`,t.quality))}const pAn=Object.freeze(Object.defineProperty({__proto__:null,toBlob:crr},Symbol.toStringTag,{value:"Module"})),SB=Object.freeze(Object.defineProperty({__proto__:null,rasterize:lrr},Symbol.toStringTag,{value:"Module"}));async function Jxa(e,t){let r=((t==null?void 0:t.format)||(t==null?void 0:t.type)||"").toLowerCase(),a=r==="jpg"?"jpeg":r||"png",s=(t==null?void 0:t.filename)||`snapdom.${a}`,o={...t||{},format:a,type:a};if(o.dpr=1,a==="svg"){let f=await crr(e,{...o,type:"svg"}),p=URL.createObjectURL(f),m=document.createElement("a");m.href=p,m.download=s,m.click(),URL.revokeObjectURL(p);return}let u=await R6e(e,o),h=document.createElement("a");h.href=u.toDataURL(`image/${a}`,t==null?void 0:t.quality),h.download=s,h.click()}const eSa=Object.freeze(Object.defineProperty({__proto__:null,download:Jxa},Symbol.toStringTag,{value:"Module"}));export{AFr as $,L4a as A,D4a as B,z4a as C,C4a as D,T4a as E,n_ as F,odn as G,G4a as H,H4a as I,V4a as J,q4a as K,BTa as L,HQr as M,U4a as N,FTa as O,ldt as P,DOr as Q,dj as R,A4a as S,Y4a as T,X4a as U,zy as V,i5a as W,GF as X,PFr as Y,a5a as Z,Pat as _,Sj as a,T3a as a$,l5a as a0,o5a as a1,cUn as a2,s5a as a3,Cb as a4,vh as a5,k3e as a6,E5a as a7,k5a as a8,A5a as a9,V5a as aA,G5a as aB,H5a as aC,q5a as aD,z5a as aE,tCa as aF,EA as aG,S4a as aH,GSa as aI,jSa as aJ,b4a as aK,USa as aL,mSa as aM,x4a as aN,M3a as aO,dSa as aP,P3a as aQ,A3a as aR,k3a as aS,I3a as aT,N3a as aU,L3a as aV,uSa as aW,O3a as aX,vSa as aY,R3a as aZ,D3a as a_,yEi as aa,S5a as ab,C5a as ac,T5a as ad,u_n as ae,R5a as af,x5a as ag,U9 as ah,N5a as ai,I5a as aj,y5a as ak,gUn as al,v5a as am,xpt as an,_5a as ao,w5a as ap,O5a as aq,dzn as ar,hxi as as,B5a as at,F5a as au,$5a as av,M5a as aw,U5a as ax,P5a as ay,Y5a as az,PTa as b,dWr as b$,C3a as b0,hSa as b1,xSa as b2,d4a as b3,Y3a as b4,j3a as b5,H3a as b6,V3a as b7,Z3a as b8,o4a as b9,c4a as bA,aTa as bB,sTa as bC,oTa as bD,cTa as bE,hTa as bF,vTa as bG,fSa as bH,_Ta as bI,dTa as bJ,fTa as bK,pTa as bL,gTa as bM,mTa as bN,yTa as bO,bTa as bP,wTa as bQ,lTa as bR,uTa as bS,ETa as bT,xTa as bU,TTa as bV,CTa as bW,ATa as bX,kTa as bY,STa as bZ,oSa as b_,E4a as ba,_Sa as bb,ISa as bc,VYr as bd,HYr as be,YYr as bf,Q3a as bg,Q4a as bh,K3a as bi,X3a as bj,qYr as bk,eTa as bl,tTa as bm,nTa as bn,J3a as bo,rTa as bp,iTa as bq,JSa as br,wSa as bs,cSa as bt,sSa as bu,PSa as bv,zSa as bw,n4a as bx,m4a as by,$Sa as bz,e3a as c,h5a as c$,fWr as c0,RTa as c1,HSa as c2,pSa as c3,TSa as c4,w4a as c5,gSa as c6,y4a as c7,lSa as c8,FSa as c9,DSa as cA,RSa as cB,s4a as cC,a4a as cD,ySa as cE,h4a as cF,ASa as cG,QSa as cH,VSa as cI,XSa as cJ,KSa as cK,v4a as cL,ZSa as cM,Z4a as cN,r4a as cO,g4a as cP,x3a as cQ,E3a as cR,B3a as cS,z3a as cT,G3a as cU,q3a as cV,$3a as cW,U3a as cX,F3a as cY,c5a as cZ,d5a as c_,MSa as ca,kSa as cb,i4a as cc,u4a as cd,ITa as ce,NTa as cf,OTa as cg,_Wr as ch,CWr as ci,qSa as cj,l4a as ck,p4a as cl,YSa as cm,bSa as cn,BSa as co,t4a as cp,LSa as cq,WSa as cr,ESa as cs,SSa as ct,CSa as cu,f4a as cv,e4a as cw,_4a as cx,NSa as cy,OSa as cz,sOr as d,p5a as d0,G6n as d1,V6n as d2,q6n as d3,u5a as d4,g5a as d5,f5a as d6,b5a as d7,m5a as d8,U6n as d9,J4a as da,W4a as db,K4a as dc,LTa as dd,DTa as de,MTa as df,NWr as dg,eCa as dh,sCa as di,oCa as dj,Fat as e,R4a as f,UTa as g,Yri as h,RAn as i,N4a as j,NAn as k,T9n as l,r5a as m,O4a as n,B4a as o,J5a as p,P4a as q,k4a as r,Gse as s,F4a as t,I4a as u,$4a as v,NOr as w,OOr as x,pj as y,M4a as z}; diff --git a/axhub-make/admin/assets/chunks/vendor-editor.js b/axhub-make/admin/assets/chunks/vendor-editor.js new file mode 100644 index 0000000..beabad8 --- /dev/null +++ b/axhub-make/admin/assets/chunks/vendor-editor.js @@ -0,0 +1,146 @@ +import{r as V,j as de,a as Ya,R as it,b as Qa}from"./vendor-react.js?v=1775123024591";import{V as Os,W as Za,X as ec,Y as tc,Z as nc,$ as fo,a0 as po,a1 as Rs,a2 as rc,a3 as sc,a4 as mo,a5 as ic}from"./vendor-common.js?v=1775123024591";function go(t,e,n){for(let r=0;;r++){if(r==t.childCount||r==e.childCount)return t.childCount==e.childCount?null:n;let s=t.child(r),i=e.child(r);if(s==i){n+=s.nodeSize;continue}if(!s.sameMarkup(i))return n;if(s.isText&&s.text!=i.text){for(let o=0;s.text[o]==i.text[o];o++)n++;return n}if(s.content.size||i.content.size){let o=go(s.content,i.content,n+1);if(o!=null)return o}n+=s.nodeSize}}function yo(t,e,n,r){for(let s=t.childCount,i=e.childCount;;){if(s==0||i==0)return s==i?null:{a:n,b:r};let o=t.child(--s),l=e.child(--i),a=o.nodeSize;if(o==l){n-=a,r-=a;continue}if(!o.sameMarkup(l))return{a:n,b:r};if(o.isText&&o.text!=l.text){let c=0,d=Math.min(o.text.length,l.text.length);for(;ce&&r(a,s+l,i||null,o)!==!1&&a.content.size){let d=l+1;a.nodesBetween(Math.max(0,e-d),Math.min(a.content.size,n-d),r,s+d)}l=c}}descendants(e){this.nodesBetween(0,this.size,e)}textBetween(e,n,r,s){let i="",o=!0;return this.nodesBetween(e,n,(l,a)=>{let c=l.isText?l.text.slice(Math.max(e,a)-a,n-a):l.isLeaf?s?typeof s=="function"?s(l):s:l.type.spec.leafText?l.type.spec.leafText(l):"":"";l.isBlock&&(l.isLeaf&&c||l.isTextblock)&&r&&(o?o=!1:i+=r),i+=c},0),i}append(e){if(!e.size)return this;if(!this.size)return e;let n=this.lastChild,r=e.firstChild,s=this.content.slice(),i=0;for(n.isText&&n.sameMarkup(r)&&(s[s.length-1]=n.withText(n.text+r.text),i=1);ie)for(let i=0,o=0;oe&&((on)&&(l.isText?l=l.cut(Math.max(0,e-o),Math.min(l.text.length,n-o)):l=l.cut(Math.max(0,e-o-1),Math.min(l.content.size,n-o-1))),r.push(l),s+=l.nodeSize),o=a}return new b(r,s)}cutByIndex(e,n){return e==n?b.empty:e==0&&n==this.content.length?this:new b(this.content.slice(e,n))}replaceChild(e,n){let r=this.content[e];if(r==n)return this;let s=this.content.slice(),i=this.size+n.nodeSize-r.nodeSize;return s[e]=n,new b(s,i)}addToStart(e){return new b([e].concat(this.content),this.size+e.nodeSize)}addToEnd(e){return new b(this.content.concat(e),this.size+e.nodeSize)}eq(e){if(this.content.length!=e.content.length)return!1;for(let n=0;nthis.size||e<0)throw new RangeError(`Position ${e} outside of fragment (${this})`);for(let n=0,r=0;;n++){let s=this.child(n),i=r+s.nodeSize;if(i>=e)return i==e?tn(n+1,i):tn(n,r);r=i}}toString(){return"<"+this.toStringInner()+">"}toStringInner(){return this.content.join(", ")}toJSON(){return this.content.length?this.content.map(e=>e.toJSON()):null}static fromJSON(e,n){if(!n)return b.empty;if(!Array.isArray(n))throw new RangeError("Invalid input for Fragment.fromJSON");return new b(n.map(e.nodeFromJSON))}static fromArray(e){if(!e.length)return b.empty;let n,r=0;for(let s=0;sthis.type.rank&&(n||(n=e.slice(0,s)),n.push(this),r=!0),n&&n.push(i)}}return n||(n=e.slice()),r||n.push(this),n}removeFromSet(e){for(let n=0;nr.type.rank-s.type.rank),n}};P.none=[];class Sn extends Error{}class x{constructor(e,n,r){this.content=e,this.openStart=n,this.openEnd=r}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(e,n){let r=ko(this.content,e+this.openStart,n);return r&&new x(r,this.openStart,this.openEnd)}removeBetween(e,n){return new x(bo(this.content,e+this.openStart,n+this.openStart),this.openStart,this.openEnd)}eq(e){return this.content.eq(e.content)&&this.openStart==e.openStart&&this.openEnd==e.openEnd}toString(){return this.content+"("+this.openStart+","+this.openEnd+")"}toJSON(){if(!this.content.size)return null;let e={content:this.content.toJSON()};return this.openStart>0&&(e.openStart=this.openStart),this.openEnd>0&&(e.openEnd=this.openEnd),e}static fromJSON(e,n){if(!n)return x.empty;let r=n.openStart||0,s=n.openEnd||0;if(typeof r!="number"||typeof s!="number")throw new RangeError("Invalid input for Slice.fromJSON");return new x(b.fromJSON(e,n.content),r,s)}static maxOpen(e,n=!0){let r=0,s=0;for(let i=e.firstChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.firstChild)r++;for(let i=e.lastChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.lastChild)s++;return new x(e,r,s)}}x.empty=new x(b.empty,0,0);function bo(t,e,n){let{index:r,offset:s}=t.findIndex(e),i=t.maybeChild(r),{index:o,offset:l}=t.findIndex(n);if(s==e||i.isText){if(l!=n&&!t.child(o).isText)throw new RangeError("Removing non-flat range");return t.cut(0,e).append(t.cut(n))}if(r!=o)throw new RangeError("Removing non-flat range");return t.replaceChild(r,i.copy(bo(i.content,e-s-1,n-s-1)))}function ko(t,e,n,r){let{index:s,offset:i}=t.findIndex(e),o=t.maybeChild(s);if(i==e||o.isText)return r&&!r.canReplace(s,s,n)?null:t.cut(0,e).append(n).append(t.cut(e));let l=ko(o.content,e-i-1,n,o);return l&&t.replaceChild(s,o.copy(l))}function oc(t,e,n){if(n.openStart>t.depth)throw new Sn("Inserted content deeper than insertion position");if(t.depth-n.openStart!=e.depth-n.openEnd)throw new Sn("Inconsistent open depths");return wo(t,e,n,0)}function wo(t,e,n,r){let s=t.index(r),i=t.node(r);if(s==e.index(r)&&r=0&&t.isText&&t.sameMarkup(e[n])?e[n]=t.withText(e[n].text+t.text):e.push(t)}function Lt(t,e,n,r){let s=(e||t).node(n),i=0,o=e?e.index(n):s.childCount;t&&(i=t.index(n),t.depth>n?i++:t.textOffset&&(et(t.nodeAfter,r),i++));for(let l=i;ls&&kr(t,e,s+1),o=r.depth>s&&kr(n,r,s+1),l=[];return Lt(null,t,s,l),i&&o&&e.index(s)==n.index(s)?(xo(i,o),et(tt(i,So(t,e,n,r,s+1)),l)):(i&&et(tt(i,Cn(t,e,s+1)),l),Lt(e,n,s,l),o&&et(tt(o,Cn(n,r,s+1)),l)),Lt(r,null,s,l),new b(l)}function Cn(t,e,n){let r=[];if(Lt(null,t,n,r),t.depth>n){let s=kr(t,e,n+1);et(tt(s,Cn(t,e,n+1)),r)}return Lt(e,null,n,r),new b(r)}function lc(t,e){let n=e.depth-t.openStart,s=e.node(n).copy(t.content);for(let i=n-1;i>=0;i--)s=e.node(i).copy(b.from(s));return{start:s.resolveNoCache(t.openStart+n),end:s.resolveNoCache(s.content.size-t.openEnd-n)}}class Ht{constructor(e,n,r){this.pos=e,this.path=n,this.parentOffset=r,this.depth=n.length/3-1}resolveDepth(e){return e==null?this.depth:e<0?this.depth+e:e}get parent(){return this.node(this.depth)}get doc(){return this.node(0)}node(e){return this.path[this.resolveDepth(e)*3]}index(e){return this.path[this.resolveDepth(e)*3+1]}indexAfter(e){return e=this.resolveDepth(e),this.index(e)+(e==this.depth&&!this.textOffset?0:1)}start(e){return e=this.resolveDepth(e),e==0?0:this.path[e*3-1]+1}end(e){return e=this.resolveDepth(e),this.start(e)+this.node(e).content.size}before(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position before the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]}after(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position after the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]+this.path[e*3].nodeSize}get textOffset(){return this.pos-this.path[this.path.length-1]}get nodeAfter(){let e=this.parent,n=this.index(this.depth);if(n==e.childCount)return null;let r=this.pos-this.path[this.path.length-1],s=e.child(n);return r?e.child(n).cut(r):s}get nodeBefore(){let e=this.index(this.depth),n=this.pos-this.path[this.path.length-1];return n?this.parent.child(e).cut(0,n):e==0?null:this.parent.child(e-1)}posAtIndex(e,n){n=this.resolveDepth(n);let r=this.path[n*3],s=n==0?0:this.path[n*3-1]+1;for(let i=0;i0;n--)if(this.start(n)<=e&&this.end(n)>=e)return n;return 0}blockRange(e=this,n){if(e.pos=0;r--)if(e.pos<=this.end(r)&&(!n||n(this.node(r))))return new Mn(this,e,r);return null}sameParent(e){return this.pos-this.parentOffset==e.pos-e.parentOffset}max(e){return e.pos>this.pos?e:this}min(e){return e.pos=0&&n<=e.content.size))throw new RangeError("Position "+n+" out of range");let r=[],s=0,i=n;for(let o=e;;){let{index:l,offset:a}=o.content.findIndex(i),c=i-a;if(r.push(o,l,s+a),!c||(o=o.child(l),o.isText))break;i=c-1,s+=a+1}return new Ht(n,r,i)}static resolveCached(e,n){let r=Ds.get(e);if(r)for(let i=0;ie&&this.nodesBetween(e,n,i=>(r.isInSet(i.marks)&&(s=!0),!s)),s}get isBlock(){return this.type.isBlock}get isTextblock(){return this.type.isTextblock}get inlineContent(){return this.type.inlineContent}get isInline(){return this.type.isInline}get isText(){return this.type.isText}get isLeaf(){return this.type.isLeaf}get isAtom(){return this.type.isAtom}toString(){if(this.type.spec.toDebugString)return this.type.spec.toDebugString(this);let e=this.type.name;return this.content.size&&(e+="("+this.content.toStringInner()+")"),Co(this.marks,e)}contentMatchAt(e){let n=this.type.contentMatch.matchFragment(this.content,0,e);if(!n)throw new Error("Called contentMatchAt on a node with invalid content");return n}canReplace(e,n,r=b.empty,s=0,i=r.childCount){let o=this.contentMatchAt(e).matchFragment(r,s,i),l=o&&o.matchFragment(this.content,n);if(!l||!l.validEnd)return!1;for(let a=s;an.type.name)}`);this.content.forEach(n=>n.check())}toJSON(){let e={type:this.type.name};for(let n in this.attrs){e.attrs=this.attrs;break}return this.content.size&&(e.content=this.content.toJSON()),this.marks.length&&(e.marks=this.marks.map(n=>n.toJSON())),e}static fromJSON(e,n){if(!n)throw new RangeError("Invalid input for Node.fromJSON");let r;if(n.marks){if(!Array.isArray(n.marks))throw new RangeError("Invalid mark data for Node.fromJSON");r=n.marks.map(e.markFromJSON)}if(n.type=="text"){if(typeof n.text!="string")throw new RangeError("Invalid text node in JSON");return e.text(n.text,r)}let s=b.fromJSON(e,n.content),i=e.nodeType(n.type).create(n.attrs,s,r);return i.type.checkAttrs(i.attrs),i}}ge.prototype.text=void 0;class vn extends ge{constructor(e,n,r,s){if(super(e,n,null,s),!r)throw new RangeError("Empty text nodes are not allowed");this.text=r}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):Co(this.marks,JSON.stringify(this.text))}get textContent(){return this.text}textBetween(e,n){return this.text.slice(e,n)}get nodeSize(){return this.text.length}mark(e){return e==this.marks?this:new vn(this.type,this.attrs,this.text,e)}withText(e){return e==this.text?this:new vn(this.type,this.attrs,e,this.marks)}cut(e=0,n=this.text.length){return e==0&&n==this.text.length?this:this.withText(this.text.slice(e,n))}eq(e){return this.sameMarkup(e)&&this.text==e.text}toJSON(){let e=super.toJSON();return e.text=this.text,e}}function Co(t,e){for(let n=t.length-1;n>=0;n--)e=t[n].type.name+"("+e+")";return e}class ot{constructor(e){this.validEnd=e,this.next=[],this.wrapCache=[]}static parse(e,n){let r=new uc(e,n);if(r.next==null)return ot.empty;let s=Mo(r);r.next&&r.err("Unexpected trailing text");let i=bc(yc(s));return kc(i,r),i}matchType(e){for(let n=0;nc.createAndFill()));for(let c=0;c=this.next.length)throw new RangeError(`There's no ${e}th edge in this content match`);return this.next[e]}toString(){let e=[];function n(r){e.push(r);for(let s=0;s{let i=s+(r.validEnd?"*":" ")+" ";for(let o=0;o"+e.indexOf(r.next[o].next);return i}).join(` +`)}}ot.empty=new ot(!0);class uc{constructor(e,n){this.string=e,this.nodeTypes=n,this.inline=null,this.pos=0,this.tokens=e.split(/\s*(?=\b|\W|$)/),this.tokens[this.tokens.length-1]==""&&this.tokens.pop(),this.tokens[0]==""&&this.tokens.shift()}get next(){return this.tokens[this.pos]}eat(e){return this.next==e&&(this.pos++||!0)}err(e){throw new SyntaxError(e+" (in content expression '"+this.string+"')")}}function Mo(t){let e=[];do e.push(hc(t));while(t.eat("|"));return e.length==1?e[0]:{type:"choice",exprs:e}}function hc(t){let e=[];do e.push(fc(t));while(t.next&&t.next!=")"&&t.next!="|");return e.length==1?e[0]:{type:"seq",exprs:e}}function fc(t){let e=gc(t);for(;;)if(t.eat("+"))e={type:"plus",expr:e};else if(t.eat("*"))e={type:"star",expr:e};else if(t.eat("?"))e={type:"opt",expr:e};else if(t.eat("{"))e=pc(t,e);else break;return e}function Is(t){/\D/.test(t.next)&&t.err("Expected number, got '"+t.next+"'");let e=Number(t.next);return t.pos++,e}function pc(t,e){let n=Is(t),r=n;return t.eat(",")&&(t.next!="}"?r=Is(t):r=-1),t.eat("}")||t.err("Unclosed braced range"),{type:"range",min:n,max:r,expr:e}}function mc(t,e){let n=t.nodeTypes,r=n[e];if(r)return[r];let s=[];for(let i in n){let o=n[i];o.isInGroup(e)&&s.push(o)}return s.length==0&&t.err("No node type or group '"+e+"' found"),s}function gc(t){if(t.eat("(")){let e=Mo(t);return t.eat(")")||t.err("Missing closing paren"),e}else if(/\W/.test(t.next))t.err("Unexpected token '"+t.next+"'");else{let e=mc(t,t.next).map(n=>(t.inline==null?t.inline=n.isInline:t.inline!=n.isInline&&t.err("Mixing inline and block content"),{type:"name",value:n}));return t.pos++,e.length==1?e[0]:{type:"choice",exprs:e}}}function yc(t){let e=[[]];return s(i(t,0),n()),e;function n(){return e.push([])-1}function r(o,l,a){let c={term:a,to:l};return e[o].push(c),c}function s(o,l){o.forEach(a=>a.to=l)}function i(o,l){if(o.type=="choice")return o.exprs.reduce((a,c)=>a.concat(i(c,l)),[]);if(o.type=="seq")for(let a=0;;a++){let c=i(o.exprs[a],l);if(a==o.exprs.length-1)return c;s(c,l=n())}else if(o.type=="star"){let a=n();return r(l,a),s(i(o.expr,a),a),[r(a)]}else if(o.type=="plus"){let a=n();return s(i(o.expr,l),a),s(i(o.expr,a),a),[r(a)]}else{if(o.type=="opt")return[r(l)].concat(i(o.expr,l));if(o.type=="range"){let a=l;for(let c=0;c{t[o].forEach(({term:l,to:a})=>{if(!l)return;let c;for(let d=0;d{c||s.push([l,c=[]]),c.indexOf(d)==-1&&c.push(d)})})});let i=e[r.join(",")]=new ot(r.indexOf(t.length-1)>-1);for(let o=0;o-1}get whitespace(){return this.spec.whitespace||(this.spec.code?"pre":"normal")}hasRequiredAttrs(){for(let e in this.attrs)if(this.attrs[e].isRequired)return!0;return!1}compatibleContent(e){return this==e||this.contentMatch.compatible(e.contentMatch)}computeAttrs(e){return!e&&this.defaultAttrs?this.defaultAttrs:Eo(this.attrs,e)}create(e=null,n,r){if(this.isText)throw new Error("NodeType.create can't construct text nodes");return new ge(this,this.computeAttrs(e),b.from(n),P.setFrom(r))}createChecked(e=null,n,r){return n=b.from(n),this.checkContent(n),new ge(this,this.computeAttrs(e),n,P.setFrom(r))}createAndFill(e=null,n,r){if(e=this.computeAttrs(e),n=b.from(n),n.size){let o=this.contentMatch.fillBefore(n);if(!o)return null;n=o.append(n)}let s=this.contentMatch.matchFragment(n),i=s&&s.fillBefore(b.empty,!0);return i?new ge(this,e,n.append(i),P.setFrom(r)):null}validContent(e){let n=this.contentMatch.matchFragment(e);if(!n||!n.validEnd)return!1;for(let r=0;r-1}allowsMarks(e){if(this.markSet==null)return!0;for(let n=0;nr[i]=new Oo(i,n,o));let s=n.spec.topNode||"doc";if(!r[s])throw new RangeError("Schema is missing its top node type ('"+s+"')");if(!r.text)throw new RangeError("Every schema needs a 'text' type");for(let i in r.text.attrs)throw new RangeError("The text node type should not have attributes");return r}};function wc(t,e,n){let r=n.split("|");return s=>{let i=s===null?"null":typeof s;if(r.indexOf(i)<0)throw new RangeError(`Expected value of type ${r} for attribute ${e} on type ${t}, got ${i}`)}}class xc{constructor(e,n,r){this.hasDefault=Object.prototype.hasOwnProperty.call(r,"default"),this.default=r.default,this.validate=typeof r.validate=="string"?wc(e,n,r.validate):r.validate}get isRequired(){return!this.hasDefault}}class Pn{constructor(e,n,r,s){this.name=e,this.rank=n,this.schema=r,this.spec=s,this.attrs=No(e,s.attrs),this.excluded=null;let i=To(this.attrs);this.instance=i?new P(this,i):null}create(e=null){return!e&&this.instance?this.instance:new P(this,Eo(this.attrs,e))}static compile(e,n){let r=Object.create(null),s=0;return e.forEach((i,o)=>r[i]=new Pn(i,s++,n,o)),r}removeFromSet(e){for(var n=0;n-1}}class Ro{constructor(e){this.linebreakReplacement=null,this.cached=Object.create(null);let n=this.spec={};for(let s in e)n[s]=e[s];n.nodes=Os.from(e.nodes),n.marks=Os.from(e.marks||{}),this.nodes=Ls.compile(this.spec.nodes,this),this.marks=Pn.compile(this.spec.marks,this);let r=Object.create(null);for(let s in this.nodes){if(s in this.marks)throw new RangeError(s+" can not be both a node and a mark");let i=this.nodes[s],o=i.spec.content||"",l=i.spec.marks;if(i.contentMatch=r[o]||(r[o]=ot.parse(o,this.nodes)),i.inlineContent=i.contentMatch.inlineContent,i.spec.linebreakReplacement){if(this.linebreakReplacement)throw new RangeError("Multiple linebreak nodes defined");if(!i.isInline||!i.isLeaf)throw new RangeError("Linebreak replacement nodes must be inline leaf nodes");this.linebreakReplacement=i}i.markSet=l=="_"?null:l?zs(this,l.split(" ")):l==""||!i.inlineContent?[]:null}for(let s in this.marks){let i=this.marks[s],o=i.spec.excludes;i.excluded=o==null?[i]:o==""?[]:zs(this,o.split(" "))}this.nodeFromJSON=s=>ge.fromJSON(this,s),this.markFromJSON=s=>P.fromJSON(this,s),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(e,n=null,r,s){if(typeof e=="string")e=this.nodeType(e);else if(e instanceof Ls){if(e.schema!=this)throw new RangeError("Node type from different schema used ("+e.name+")")}else throw new RangeError("Invalid node type: "+e);return e.createChecked(n,r,s)}text(e,n){let r=this.nodes.text;return new vn(r,r.defaultAttrs,e,P.setFrom(n))}mark(e,n){return typeof e=="string"&&(e=this.marks[e]),e.create(n)}nodeType(e){let n=this.nodes[e];if(!n)throw new RangeError("Unknown node type: "+e);return n}}function zs(t,e){let n=[];for(let r=0;r-1)&&n.push(o=a)}if(!o)throw new SyntaxError("Unknown mark type: '"+e[r]+"'")}return n}function Sc(t){return t.tag!=null}function Cc(t){return t.style!=null}class Ne{constructor(e,n){this.schema=e,this.rules=n,this.tags=[],this.styles=[];let r=this.matchedStyles=[];n.forEach(s=>{if(Sc(s))this.tags.push(s);else if(Cc(s)){let i=/[^=]*/.exec(s.style)[0];r.indexOf(i)<0&&r.push(i),this.styles.push(s)}}),this.normalizeLists=!this.tags.some(s=>{if(!/^(ul|ol)\b/.test(s.tag)||!s.node)return!1;let i=e.nodes[s.node];return i.contentMatch.matchType(i)})}parse(e,n={}){let r=new $s(this,n,!1);return r.addAll(e,P.none,n.from,n.to),r.finish()}parseSlice(e,n={}){let r=new $s(this,n,!0);return r.addAll(e,P.none,n.from,n.to),x.maxOpen(r.finish())}matchTag(e,n,r){for(let s=r?this.tags.indexOf(r)+1:0;se.length&&(l.charCodeAt(e.length)!=61||l.slice(e.length+1)!=n))){if(o.getAttrs){let a=o.getAttrs(n);if(a===!1)continue;o.attrs=a||void 0}return o}}}static schemaRules(e){let n=[];function r(s){let i=s.priority==null?50:s.priority,o=0;for(;o{r(o=Hs(o)),o.mark||o.ignore||o.clearMark||(o.mark=s)})}for(let s in e.nodes){let i=e.nodes[s].spec.parseDOM;i&&i.forEach(o=>{r(o=Hs(o)),o.node||o.ignore||o.mark||(o.node=s)})}return n}static fromSchema(e){return e.cached.domParser||(e.cached.domParser=new Ne(e,Ne.schemaRules(e)))}}const Do={address:!0,article:!0,aside:!0,blockquote:!0,canvas:!0,dd:!0,div:!0,dl:!0,fieldset:!0,figcaption:!0,figure:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,li:!0,noscript:!0,ol:!0,output:!0,p:!0,pre:!0,section:!0,table:!0,tfoot:!0,ul:!0},Mc={head:!0,noscript:!0,object:!0,script:!0,style:!0,title:!0},Io={ol:!0,ul:!0},Ft=1,wr=2,zt=4;function Bs(t,e,n){return e!=null?(e?Ft:0)|(e==="full"?wr:0):t&&t.whitespace=="pre"?Ft|wr:n&~zt}class nn{constructor(e,n,r,s,i,o){this.type=e,this.attrs=n,this.marks=r,this.solid=s,this.options=o,this.content=[],this.activeMarks=P.none,this.match=i||(o&zt?null:e.contentMatch)}findWrapping(e){if(!this.match){if(!this.type)return[];let n=this.type.contentMatch.fillBefore(b.from(e));if(n)this.match=this.type.contentMatch.matchFragment(n);else{let r=this.type.contentMatch,s;return(s=r.findWrapping(e.type))?(this.match=r,s):null}}return this.match.findWrapping(e.type)}finish(e){if(!(this.options&Ft)){let r=this.content[this.content.length-1],s;if(r&&r.isText&&(s=/[ \t\r\n\u000c]+$/.exec(r.text))){let i=r;r.text.length==s[0].length?this.content.pop():this.content[this.content.length-1]=i.withText(i.text.slice(0,i.text.length-s[0].length))}}let n=b.from(this.content);return!e&&this.match&&(n=n.append(this.match.fillBefore(b.empty,!0))),this.type?this.type.create(this.attrs,n,this.marks):n}inlineContext(e){return this.type?this.type.inlineContent:this.content.length?this.content[0].isInline:e.parentNode&&!Do.hasOwnProperty(e.parentNode.nodeName.toLowerCase())}}class $s{constructor(e,n,r){this.parser=e,this.options=n,this.isOpen=r,this.open=0,this.localPreserveWS=!1;let s=n.topNode,i,o=Bs(null,n.preserveWhitespace,0)|(r?zt:0);s?i=new nn(s.type,s.attrs,P.none,!0,n.topMatch||s.type.contentMatch,o):r?i=new nn(null,null,P.none,!0,null,o):i=new nn(e.schema.topNodeType,null,P.none,!0,null,o),this.nodes=[i],this.find=n.findPositions,this.needsBlock=!1}get top(){return this.nodes[this.open]}addDOM(e,n){e.nodeType==3?this.addTextNode(e,n):e.nodeType==1&&this.addElement(e,n)}addTextNode(e,n){let r=e.nodeValue,s=this.top,i=s.options&wr?"full":this.localPreserveWS||(s.options&Ft)>0,{schema:o}=this.parser;if(i==="full"||s.inlineContext(e)||/[^ \t\r\n\u000c]/.test(r)){if(i)if(i==="full")r=r.replace(/\r\n?/g,` +`);else if(o.linebreakReplacement&&/[\r\n]/.test(r)&&this.top.findWrapping(o.linebreakReplacement.create())){let l=r.split(/\r?\n|\r/);for(let a=0;a!a.clearMark(c)):n=n.concat(this.parser.schema.marks[a.mark].create(a.attrs)),a.consuming===!1)l=a;else break}}return n}addElementByRule(e,n,r,s){let i,o;if(n.node)if(o=this.parser.schema.nodes[n.node],o.isLeaf)this.insertNode(o.create(n.attrs),r,e.nodeName=="BR")||this.leafFallback(e,r);else{let a=this.enter(o,n.attrs||null,r,n.preserveWhitespace);a&&(i=!0,r=a)}else{let a=this.parser.schema.marks[n.mark];r=r.concat(a.create(n.attrs))}let l=this.top;if(o&&o.isLeaf)this.findInside(e);else if(s)this.addElement(e,r,s);else if(n.getContent)this.findInside(e),n.getContent(e,this.parser.schema).forEach(a=>this.insertNode(a,r,!1));else{let a=e;typeof n.contentElement=="string"?a=e.querySelector(n.contentElement):typeof n.contentElement=="function"?a=n.contentElement(e):n.contentElement&&(a=n.contentElement),this.findAround(e,a,!0),this.addAll(a,r),this.findAround(e,a,!1)}i&&this.sync(l)&&this.open--}addAll(e,n,r,s){let i=r||0;for(let o=r?e.childNodes[r]:e.firstChild,l=s==null?null:e.childNodes[s];o!=l;o=o.nextSibling,++i)this.findAtPoint(e,i),this.addDOM(o,n);this.findAtPoint(e,i)}findPlace(e,n,r){let s,i;for(let o=this.open,l=0;o>=0;o--){let a=this.nodes[o],c=a.findWrapping(e);if(c&&(!s||s.length>c.length+l)&&(s=c,i=a,!c.length))break;if(a.solid){if(r)break;l+=2}}if(!s)return null;this.sync(i);for(let o=0;o(o.type?o.type.allowsMarkType(c.type):Fs(c.type,e))?(a=c.addToSet(a),!1):!0),this.nodes.push(new nn(e,n,a,s,null,l)),this.open++,r}closeExtra(e=!1){let n=this.nodes.length-1;if(n>this.open){for(;n>this.open;n--)this.nodes[n-1].content.push(this.nodes[n].finish(e));this.nodes.length=this.open+1}}finish(){return this.open=0,this.closeExtra(this.isOpen),this.nodes[0].finish(!!(this.isOpen||this.options.topOpen))}sync(e){for(let n=this.open;n>=0;n--){if(this.nodes[n]==e)return this.open=n,!0;this.localPreserveWS&&(this.nodes[n].options|=Ft)}return!1}get currentPos(){this.closeExtra();let e=0;for(let n=this.open;n>=0;n--){let r=this.nodes[n].content;for(let s=r.length-1;s>=0;s--)e+=r[s].nodeSize;n&&e++}return e}findAtPoint(e,n){if(this.find)for(let r=0;r-1)return e.split(/\s*\|\s*/).some(this.matchesContext,this);let n=e.split("/"),r=this.options.context,s=!this.isOpen&&(!r||r.parent.type==this.nodes[0].type),i=-(r?r.depth+1:0)+(s?0:1),o=(l,a)=>{for(;l>=0;l--){let c=n[l];if(c==""){if(l==n.length-1||l==0)continue;for(;a>=i;a--)if(o(l-1,a))return!0;return!1}else{let d=a>0||a==0&&s?this.nodes[a].type:r&&a>=i?r.node(a-i).type:null;if(!d||d.name!=c&&!d.isInGroup(c))return!1;a--}}return!0};return o(n.length-1,this.open)}textblockFromContext(){let e=this.options.context;if(e)for(let n=e.depth;n>=0;n--){let r=e.node(n).contentMatchAt(e.indexAfter(n)).defaultType;if(r&&r.isTextblock&&r.defaultAttrs)return r}for(let n in this.parser.schema.nodes){let r=this.parser.schema.nodes[n];if(r.isTextblock&&r.defaultAttrs)return r}}}function vc(t){for(let e=t.firstChild,n=null;e;e=e.nextSibling){let r=e.nodeType==1?e.nodeName.toLowerCase():null;r&&Io.hasOwnProperty(r)&&n?(n.appendChild(e),e=n):r=="li"?n=e:r&&(n=null)}}function Tc(t,e){return(t.matches||t.msMatchesSelector||t.webkitMatchesSelector||t.mozMatchesSelector).call(t,e)}function Hs(t){let e={};for(let n in t)e[n]=t[n];return e}function Fs(t,e){let n=e.schema.nodes;for(let r in n){let s=n[r];if(!s.allowsMarkType(t))continue;let i=[],o=l=>{i.push(l);for(let a=0;a{if(i.length||o.marks.length){let l=0,a=0;for(;l=0;s--){let i=this.serializeMark(e.marks[s],e.isInline,n);i&&((i.contentDOM||i.dom).appendChild(r),r=i.dom)}return r}serializeMark(e,n,r={}){let s=this.marks[e.type.name];return s&&mn(Qn(r),s(e,n),null,e.attrs)}static renderSpec(e,n,r=null,s){return mn(e,n,r,s)}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new ft(this.nodesFromSchema(e),this.marksFromSchema(e)))}static nodesFromSchema(e){let n=Vs(e.nodes);return n.text||(n.text=r=>r.text),n}static marksFromSchema(e){return Vs(e.marks)}}function Vs(t){let e={};for(let n in t){let r=t[n].spec.toDOM;r&&(e[n]=r)}return e}function Qn(t){return t.document||window.document}const _s=new WeakMap;function Ec(t){let e=_s.get(t);return e===void 0&&_s.set(t,e=Ac(t)),e}function Ac(t){let e=null;function n(r){if(r&&typeof r=="object")if(Array.isArray(r))if(typeof r[0]=="string")e||(e=[]),e.push(r);else for(let s=0;s-1)throw new RangeError("Using an array from an attribute object as a DOM spec. This may be an attempted cross site scripting attack.");let o=s.indexOf(" ");o>0&&(n=s.slice(0,o),s=s.slice(o+1));let l,a=n?t.createElementNS(n,s):t.createElement(s),c=e[1],d=1;if(c&&typeof c=="object"&&c.nodeType==null&&!Array.isArray(c)){d=2;for(let u in c)if(c[u]!=null){let h=u.indexOf(" ");h>0?a.setAttributeNS(u.slice(0,h),u.slice(h+1),c[u]):u=="style"&&a.style?a.style.cssText=c[u]:a.setAttribute(u,c[u])}}for(let u=d;ud)throw new RangeError("Content hole must be the only child of its parent node");return{dom:a,contentDOM:a}}else{let{dom:f,contentDOM:p}=mn(t,h,n,r);if(a.appendChild(f),p){if(l)throw new RangeError("Multiple content holes");l=p}}}return{dom:a,contentDOM:l}}const Po=65535,Lo=Math.pow(2,16);function Nc(t,e){return t+e*Lo}function Ws(t){return t&Po}function Oc(t){return(t-(t&Po))/Lo}const zo=1,Bo=2,gn=4,$o=8;class xr{constructor(e,n,r){this.pos=e,this.delInfo=n,this.recover=r}get deleted(){return(this.delInfo&$o)>0}get deletedBefore(){return(this.delInfo&(zo|gn))>0}get deletedAfter(){return(this.delInfo&(Bo|gn))>0}get deletedAcross(){return(this.delInfo&gn)>0}}class ie{constructor(e,n=!1){if(this.ranges=e,this.inverted=n,!e.length&&ie.empty)return ie.empty}recover(e){let n=0,r=Ws(e);if(!this.inverted)for(let s=0;se)break;let c=this.ranges[l+i],d=this.ranges[l+o],u=a+c;if(e<=u){let h=c?e==a?-1:e==u?1:n:n,f=a+s+(h<0?0:d);if(r)return f;let p=e==(n<0?a:u)?null:Nc(l/3,e-a),m=e==a?Bo:e==u?zo:gn;return(n<0?e!=a:e!=u)&&(m|=$o),new xr(f,m,p)}s+=d-c}return r?e+s:new xr(e+s,0,null)}touches(e,n){let r=0,s=Ws(n),i=this.inverted?2:1,o=this.inverted?1:2;for(let l=0;le)break;let c=this.ranges[l+i],d=a+c;if(e<=d&&l==s*3)return!0;r+=this.ranges[l+o]-c}return!1}forEach(e){let n=this.inverted?2:1,r=this.inverted?1:2;for(let s=0,i=0;s=0;n--){let s=e.getMirror(n);this.appendMap(e._maps[n].invert(),s!=null&&s>n?r-s-1:void 0)}}invert(){let e=new Vt;return e.appendMappingInverted(this),e}map(e,n=1){if(this.mirror)return this._map(e,n,!0);for(let r=this.from;ri&&a!o.isAtom||!l.type.allowsMarkType(this.mark.type)?o:o.mark(this.mark.addToSet(o.marks)),s),n.openStart,n.openEnd);return j.fromReplace(e,this.from,this.to,i)}invert(){return new me(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new He(n.pos,r.pos,this.mark)}merge(e){return e instanceof He&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new He(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"addMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for AddMarkStep.fromJSON");return new He(n.from,n.to,e.markFromJSON(n.mark))}}te.jsonID("addMark",He);class me extends te{constructor(e,n,r){super(),this.from=e,this.to=n,this.mark=r}apply(e){let n=e.slice(this.from,this.to),r=new x(Ur(n.content,s=>s.mark(this.mark.removeFromSet(s.marks)),e),n.openStart,n.openEnd);return j.fromReplace(e,this.from,this.to,r)}invert(){return new He(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new me(n.pos,r.pos,this.mark)}merge(e){return e instanceof me&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new me(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"removeMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for RemoveMarkStep.fromJSON");return new me(n.from,n.to,e.markFromJSON(n.mark))}}te.jsonID("removeMark",me);class Fe extends te{constructor(e,n){super(),this.pos=e,this.mark=n}apply(e){let n=e.nodeAt(this.pos);if(!n)return j.fail("No node at mark step's position");let r=n.type.create(n.attrs,null,this.mark.addToSet(n.marks));return j.fromReplace(e,this.pos,this.pos+1,new x(b.from(r),0,n.isLeaf?0:1))}invert(e){let n=e.nodeAt(this.pos);if(n){let r=this.mark.addToSet(n.marks);if(r.length==n.marks.length){for(let s=0;sr.pos?null:new J(n.pos,r.pos,s,i,this.slice,this.insert,this.structure)}toJSON(){let e={stepType:"replaceAround",from:this.from,to:this.to,gapFrom:this.gapFrom,gapTo:this.gapTo,insert:this.insert};return this.slice.size&&(e.slice=this.slice.toJSON()),this.structure&&(e.structure=!0),e}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number"||typeof n.gapFrom!="number"||typeof n.gapTo!="number"||typeof n.insert!="number")throw new RangeError("Invalid input for ReplaceAroundStep.fromJSON");return new J(n.from,n.to,n.gapFrom,n.gapTo,x.fromJSON(e,n.slice),n.insert,!!n.structure)}}te.jsonID("replaceAround",J);function Sr(t,e,n){let r=t.resolve(e),s=n-e,i=r.depth;for(;s>0&&i>0&&r.indexAfter(i)==r.node(i).childCount;)i--,s--;if(s>0){let o=r.node(i).maybeChild(r.indexAfter(i));for(;s>0;){if(!o||o.isLeaf)return!0;o=o.firstChild,s--}}return!1}function Rc(t,e,n,r){let s=[],i=[],o,l;t.doc.nodesBetween(e,n,(a,c,d)=>{if(!a.isInline)return;let u=a.marks;if(!r.isInSet(u)&&d.type.allowsMarkType(r.type)){let h=Math.max(c,e),f=Math.min(c+a.nodeSize,n),p=r.addToSet(u);for(let m=0;mt.step(a)),i.forEach(a=>t.step(a))}function Dc(t,e,n,r){let s=[],i=0;t.doc.nodesBetween(e,n,(o,l)=>{if(!o.isInline)return;i++;let a=null;if(r instanceof Pn){let c=o.marks,d;for(;d=r.isInSet(c);)(a||(a=[])).push(d),c=d.removeFromSet(c)}else r?r.isInSet(o.marks)&&(a=[r]):a=o.marks;if(a&&a.length){let c=Math.min(l+o.nodeSize,n);for(let d=0;dt.step(new me(o.from,o.to,o.style)))}function Jr(t,e,n,r=n.contentMatch,s=!0){let i=t.doc.nodeAt(e),o=[],l=e+1;for(let a=0;a=0;a--)t.step(o[a])}function Ic(t,e,n){return(e==0||t.canReplace(e,t.childCount))&&(n==t.childCount||t.canReplace(0,n))}function At(t){let n=t.parent.content.cutByIndex(t.startIndex,t.endIndex);for(let r=t.depth,s=0,i=0;;--r){let o=t.$from.node(r),l=t.$from.index(r)+s,a=t.$to.indexAfter(r)-i;if(rn;p--)m||r.index(p)>0?(m=!0,d=b.from(r.node(p).copy(d)),u++):a--;let h=b.empty,f=0;for(let p=i,m=!1;p>n;p--)m||s.after(p+1)=0;o--){if(r.size){let l=n[o].type.contentMatch.matchFragment(r);if(!l||!l.validEnd)throw new RangeError("Wrapper type given to Transform.wrap does not form valid content of its parent wrapper")}r=b.from(n[o].type.create(n[o].attrs,r))}let s=e.start,i=e.end;t.step(new J(s,i,s,i,new x(r,0,0),n.length,!0))}function $c(t,e,n,r,s){if(!r.isTextblock)throw new RangeError("Type given to setBlockType should be a textblock");let i=t.steps.length;t.doc.nodesBetween(e,n,(o,l)=>{let a=typeof s=="function"?s(o):s;if(o.isTextblock&&!o.hasMarkup(r,a)&&Hc(t.doc,t.mapping.slice(i).map(l),r)){let c=null;if(r.schema.linebreakReplacement){let f=r.whitespace=="pre",p=!!r.contentMatch.matchType(r.schema.linebreakReplacement);f&&!p?c=!1:!f&&p&&(c=!0)}c===!1&&Fo(t,o,l,i),Jr(t,t.mapping.slice(i).map(l,1),r,void 0,c===null);let d=t.mapping.slice(i),u=d.map(l,1),h=d.map(l+o.nodeSize,1);return t.step(new J(u,h,u+1,h-1,new x(b.from(r.create(a,null,o.marks)),0,0),1,!0)),c===!0&&Ho(t,o,l,i),!1}})}function Ho(t,e,n,r){e.forEach((s,i)=>{if(s.isText){let o,l=/\r?\n|\r/g;for(;o=l.exec(s.text);){let a=t.mapping.slice(r).map(n+1+i+o.index);t.replaceWith(a,a+1,e.type.schema.linebreakReplacement.create())}}})}function Fo(t,e,n,r){e.forEach((s,i)=>{if(s.type==s.type.schema.linebreakReplacement){let o=t.mapping.slice(r).map(n+1+i);t.replaceWith(o,o+1,e.type.schema.text(` +`))}})}function Hc(t,e,n){let r=t.resolve(e),s=r.index();return r.parent.canReplaceWith(s,s+1,n)}function Fc(t,e,n,r,s){let i=t.doc.nodeAt(e);if(!i)throw new RangeError("No node at given position");n||(n=i.type);let o=n.create(r,null,s||i.marks);if(i.isLeaf)return t.replaceWith(e,e+i.nodeSize,o);if(!n.validContent(i.content))throw new RangeError("Invalid content for node type "+n.name);t.step(new J(e,e+i.nodeSize,e+1,e+i.nodeSize-1,new x(b.from(o),0,0),1,!0))}function Oe(t,e,n=1,r){let s=t.resolve(e),i=s.depth-n,o=r&&r[r.length-1]||s.parent;if(i<0||s.parent.type.spec.isolating||!s.parent.canReplace(s.index(),s.parent.childCount)||!o.type.validContent(s.parent.content.cutByIndex(s.index(),s.parent.childCount)))return!1;for(let c=s.depth-1,d=n-2;c>i;c--,d--){let u=s.node(c),h=s.index(c);if(u.type.spec.isolating)return!1;let f=u.content.cutByIndex(h,u.childCount),p=r&&r[d+1];p&&(f=f.replaceChild(0,p.type.create(p.attrs)));let m=r&&r[d]||u;if(!u.canReplace(h+1,u.childCount)||!m.type.validContent(f))return!1}let l=s.indexAfter(i),a=r&&r[0];return s.node(i).canReplaceWith(l,l,a?a.type:s.node(i+1).type)}function Vc(t,e,n=1,r){let s=t.doc.resolve(e),i=b.empty,o=b.empty;for(let l=s.depth,a=s.depth-n,c=n-1;l>a;l--,c--){i=b.from(s.node(l).copy(i));let d=r&&r[c];o=b.from(d?d.type.create(d.attrs,o):s.node(l).copy(o))}t.step(new K(e,e,new x(i.append(o),n,n),!0))}function Ue(t,e){let n=t.resolve(e),r=n.index();return Vo(n.nodeBefore,n.nodeAfter)&&n.parent.canReplace(r,r+1)}function _c(t,e){e.content.size||t.type.compatibleContent(e.type);let n=t.contentMatchAt(t.childCount),{linebreakReplacement:r}=t.type.schema;for(let s=0;s0?(i=r.node(s+1),l++,o=r.node(s).maybeChild(l)):(i=r.node(s).maybeChild(l-1),o=r.node(s+1)),i&&!i.isTextblock&&Vo(i,o)&&r.node(s).canReplace(l,l+1))return e;if(s==0)break;e=n<0?r.before(s):r.after(s)}}function Wc(t,e,n){let r=null,{linebreakReplacement:s}=t.doc.type.schema,i=t.doc.resolve(e-n),o=i.node().type;if(s&&o.inlineContent){let d=o.whitespace=="pre",u=!!o.contentMatch.matchType(s);d&&!u?r=!1:!d&&u&&(r=!0)}let l=t.steps.length;if(r===!1){let d=t.doc.resolve(e+n);Fo(t,d.node(),d.before(),l)}o.inlineContent&&Jr(t,e+n-1,o,i.node().contentMatchAt(i.index()),r==null);let a=t.mapping.slice(l),c=a.map(e-n);if(t.step(new K(c,a.map(e+n,-1),x.empty,!0)),r===!0){let d=t.doc.resolve(c);Ho(t,d.node(),d.before(),t.steps.length)}return t}function jc(t,e,n){let r=t.resolve(e);if(r.parent.canReplaceWith(r.index(),r.index(),n))return e;if(r.parentOffset==0)for(let s=r.depth-1;s>=0;s--){let i=r.index(s);if(r.node(s).canReplaceWith(i,i,n))return r.before(s+1);if(i>0)return null}if(r.parentOffset==r.parent.content.size)for(let s=r.depth-1;s>=0;s--){let i=r.indexAfter(s);if(r.node(s).canReplaceWith(i,i,n))return r.after(s+1);if(i=0;o--){let l=o==r.depth?0:r.pos<=(r.start(o+1)+r.end(o+1))/2?-1:1,a=r.index(o)+(l>0?1:0),c=r.node(o),d=!1;if(i==1)d=c.canReplace(a,a,s);else{let u=c.contentMatchAt(a).findWrapping(s.firstChild.type);d=u&&c.canReplaceWith(a,a,u[0])}if(d)return l==0?r.pos:l<0?r.before(o+1):r.after(o+1)}return null}function zn(t,e,n=e,r=x.empty){if(e==n&&!r.size)return null;let s=t.resolve(e),i=t.resolve(n);return Wo(s,i,r)?new K(e,n,r):new qc(s,i,r).fit()}function Wo(t,e,n){return!n.openStart&&!n.openEnd&&t.start()==e.start()&&t.parent.canReplace(t.index(),e.index(),n.content)}class qc{constructor(e,n,r){this.$from=e,this.$to=n,this.unplaced=r,this.frontier=[],this.placed=b.empty;for(let s=0;s<=e.depth;s++){let i=e.node(s);this.frontier.push({type:i.type,match:i.contentMatchAt(e.indexAfter(s))})}for(let s=e.depth;s>0;s--)this.placed=b.from(e.node(s).copy(this.placed))}get depth(){return this.frontier.length-1}fit(){for(;this.unplaced.size;){let c=this.findFittable();c?this.placeNodes(c):this.openMore()||this.dropNode()}let e=this.mustMoveInline(),n=this.placed.size-this.depth-this.$from.depth,r=this.$from,s=this.close(e<0?this.$to:r.doc.resolve(e));if(!s)return null;let i=this.placed,o=r.depth,l=s.depth;for(;o&&l&&i.childCount==1;)i=i.firstChild.content,o--,l--;let a=new x(i,o,l);return e>-1?new J(r.pos,e,this.$to.pos,this.$to.end(),a,n):a.size||r.pos!=this.$to.pos?new K(r.pos,s.pos,a):null}findFittable(){let e=this.unplaced.openStart;for(let n=this.unplaced.content,r=0,s=this.unplaced.openEnd;r1&&(s=0),i.type.spec.isolating&&s<=r){e=r;break}n=i.content}for(let n=1;n<=2;n++)for(let r=n==1?e:this.unplaced.openStart;r>=0;r--){let s,i=null;r?(i=er(this.unplaced.content,r-1).firstChild,s=i.content):s=this.unplaced.content;let o=s.firstChild;for(let l=this.depth;l>=0;l--){let{type:a,match:c}=this.frontier[l],d,u=null;if(n==1&&(o?c.matchType(o.type)||(u=c.fillBefore(b.from(o),!1)):i&&a.compatibleContent(i.type)))return{sliceDepth:r,frontierDepth:l,parent:i,inject:u};if(n==2&&o&&(d=c.findWrapping(o.type)))return{sliceDepth:r,frontierDepth:l,parent:i,wrap:d};if(i&&c.matchType(i.type))break}}}openMore(){let{content:e,openStart:n,openEnd:r}=this.unplaced,s=er(e,n);return!s.childCount||s.firstChild.isLeaf?!1:(this.unplaced=new x(e,n+1,Math.max(r,s.size+n>=e.size-r?n+1:0)),!0)}dropNode(){let{content:e,openStart:n,openEnd:r}=this.unplaced,s=er(e,n);if(s.childCount<=1&&n>0){let i=e.size-n<=n+s.size;this.unplaced=new x(Ot(e,n-1,1),n-1,i?n-1:r)}else this.unplaced=new x(Ot(e,n,1),n,r)}placeNodes({sliceDepth:e,frontierDepth:n,parent:r,inject:s,wrap:i}){for(;this.depth>n;)this.closeFrontierNode();if(i)for(let m=0;m1||a==0||m.content.size)&&(u=g,d.push(jo(m.mark(h.allowedMarks(m.marks)),c==1?a:0,c==l.childCount?f:-1)))}let p=c==l.childCount;p||(f=-1),this.placed=Rt(this.placed,n,b.from(d)),this.frontier[n].match=u,p&&f<0&&r&&r.type==this.frontier[this.depth].type&&this.frontier.length>1&&this.closeFrontierNode();for(let m=0,g=l;m1&&s==this.$to.end(--r);)++s;return s}findCloseLevel(e){e:for(let n=Math.min(this.depth,e.depth);n>=0;n--){let{match:r,type:s}=this.frontier[n],i=n=0;l--){let{match:a,type:c}=this.frontier[l],d=tr(e,l,c,a,!0);if(!d||d.childCount)continue e}return{depth:n,fit:o,move:i?e.doc.resolve(e.after(n+1)):e}}}}close(e){let n=this.findCloseLevel(e);if(!n)return null;for(;this.depth>n.depth;)this.closeFrontierNode();n.fit.childCount&&(this.placed=Rt(this.placed,n.depth,n.fit)),e=n.move;for(let r=n.depth+1;r<=e.depth;r++){let s=e.node(r),i=s.type.contentMatch.fillBefore(s.content,!0,e.index(r));this.openFrontierNode(s.type,s.attrs,i)}return e}openFrontierNode(e,n=null,r){let s=this.frontier[this.depth];s.match=s.match.matchType(e),this.placed=Rt(this.placed,this.depth,b.from(e.create(n,r))),this.frontier.push({type:e,match:e.contentMatch})}closeFrontierNode(){let n=this.frontier.pop().match.fillBefore(b.empty,!0);n.childCount&&(this.placed=Rt(this.placed,this.frontier.length,n))}}function Ot(t,e,n){return e==0?t.cutByIndex(n,t.childCount):t.replaceChild(0,t.firstChild.copy(Ot(t.firstChild.content,e-1,n)))}function Rt(t,e,n){return e==0?t.append(n):t.replaceChild(t.childCount-1,t.lastChild.copy(Rt(t.lastChild.content,e-1,n)))}function er(t,e){for(let n=0;n1&&(r=r.replaceChild(0,jo(r.firstChild,e-1,r.childCount==1?n-1:0))),e>0&&(r=t.type.contentMatch.fillBefore(r).append(r),n<=0&&(r=r.append(t.type.contentMatch.matchFragment(r).fillBefore(b.empty,!0)))),t.copy(r)}function tr(t,e,n,r,s){let i=t.node(e),o=s?t.indexAfter(e):t.index(e);if(o==i.childCount&&!n.compatibleContent(i.type))return null;let l=r.fillBefore(i.content,!0,o);return l&&!Kc(n,i.content,o)?l:null}function Kc(t,e,n){for(let r=n;r0;h--,f--){let p=s.node(h).type.spec;if(p.defining||p.definingAsContext||p.isolating)break;o.indexOf(h)>-1?l=h:s.before(h)==f&&o.splice(1,0,-h)}let a=o.indexOf(l),c=[],d=r.openStart;for(let h=r.content,f=0;;f++){let p=h.firstChild;if(c.push(p),f==r.openStart)break;h=p.content}for(let h=d-1;h>=0;h--){let f=c[h],p=Uc(f.type);if(p&&!f.sameMarkup(s.node(Math.abs(l)-1)))d=h;else if(p||!f.type.isTextblock)break}for(let h=r.openStart;h>=0;h--){let f=(h+d+1)%(r.openStart+1),p=c[f];if(p)for(let m=0;m=0&&(t.replace(e,n,r),!(t.steps.length>u));h--){let f=o[h];f<0||(e=s.before(f),n=i.after(f))}}function qo(t,e,n,r,s){if(er){let i=s.contentMatchAt(0),o=i.fillBefore(t).append(t);t=o.append(i.matchFragment(o).fillBefore(b.empty,!0))}return t}function Xc(t,e,n,r){if(!r.isInline&&e==n&&t.doc.resolve(e).parent.content.size){let s=jc(t.doc,e,r.type);s!=null&&(e=n=s)}t.replaceRange(e,n,new x(b.from(r),0,0))}function Gc(t,e,n){let r=t.doc.resolve(e),s=t.doc.resolve(n),i=Ko(r,s);for(let o=0;o0&&(a||r.node(l-1).canReplace(r.index(l-1),s.indexAfter(l-1))))return t.delete(r.before(l),s.after(l))}for(let o=1;o<=r.depth&&o<=s.depth;o++)if(e-r.start(o)==r.depth-o&&n>r.end(o)&&s.end(o)-n!=s.depth-o&&r.start(o-1)==s.start(o-1)&&r.node(o-1).canReplace(r.index(o-1),s.index(o-1)))return t.delete(r.before(o),n);t.delete(e,n)}function Ko(t,e){let n=[],r=Math.min(t.depth,e.depth);for(let s=r;s>=0;s--){let i=t.start(s);if(ie.pos+(e.depth-s)||t.node(s).type.spec.isolating||e.node(s).type.spec.isolating)break;(i==e.start(s)||s==t.depth&&s==e.depth&&t.parent.inlineContent&&e.parent.inlineContent&&s&&e.start(s-1)==i-1)&&n.push(s)}return n}class kt extends te{constructor(e,n,r){super(),this.pos=e,this.attr=n,this.value=r}apply(e){let n=e.nodeAt(this.pos);if(!n)return j.fail("No node at attribute step's position");let r=Object.create(null);for(let i in n.attrs)r[i]=n.attrs[i];r[this.attr]=this.value;let s=n.type.create(r,null,n.marks);return j.fromReplace(e,this.pos,this.pos+1,new x(b.from(s),0,n.isLeaf?0:1))}getMap(){return ie.empty}invert(e){return new kt(this.pos,this.attr,e.nodeAt(this.pos).attrs[this.attr])}map(e){let n=e.mapResult(this.pos,1);return n.deletedAfter?null:new kt(n.pos,this.attr,this.value)}toJSON(){return{stepType:"attr",pos:this.pos,attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.pos!="number"||typeof n.attr!="string")throw new RangeError("Invalid input for AttrStep.fromJSON");return new kt(n.pos,n.attr,n.value)}}te.jsonID("attr",kt);class _t extends te{constructor(e,n){super(),this.attr=e,this.value=n}apply(e){let n=Object.create(null);for(let s in e.attrs)n[s]=e.attrs[s];n[this.attr]=this.value;let r=e.type.create(n,e.content,e.marks);return j.ok(r)}getMap(){return ie.empty}invert(e){return new _t(this.attr,e.attrs[this.attr])}map(e){return this}toJSON(){return{stepType:"docAttr",attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.attr!="string")throw new RangeError("Invalid input for DocAttrStep.fromJSON");return new _t(n.attr,n.value)}}te.jsonID("docAttr",_t);let xt=class extends Error{};xt=function t(e){let n=Error.call(this,e);return n.__proto__=t.prototype,n};xt.prototype=Object.create(Error.prototype);xt.prototype.constructor=xt;xt.prototype.name="TransformError";class Gr{constructor(e){this.doc=e,this.steps=[],this.docs=[],this.mapping=new Vt}get before(){return this.docs.length?this.docs[0]:this.doc}step(e){let n=this.maybeStep(e);if(n.failed)throw new xt(n.failed);return this}maybeStep(e){let n=e.apply(this.doc);return n.failed||this.addStep(e,n.doc),n}get docChanged(){return this.steps.length>0}changedRange(){let e=1e9,n=-1e9;for(let r=0;r{e=Math.min(e,l),n=Math.max(n,a)})}return e==1e9?null:{from:e,to:n}}addStep(e,n){this.docs.push(this.doc),this.steps.push(e),this.mapping.appendMap(e.getMap()),this.doc=n}replace(e,n=e,r=x.empty){let s=zn(this.doc,e,n,r);return s&&this.step(s),this}replaceWith(e,n,r){return this.replace(e,n,new x(b.from(r),0,0))}delete(e,n){return this.replace(e,n,x.empty)}insert(e,n){return this.replaceWith(e,e,n)}replaceRange(e,n,r){return Jc(this,e,n,r),this}replaceRangeWith(e,n,r){return Xc(this,e,n,r),this}deleteRange(e,n){return Gc(this,e,n),this}lift(e,n){return Pc(this,e,n),this}join(e,n=1){return Wc(this,e,n),this}wrap(e,n){return Bc(this,e,n),this}setBlockType(e,n=e,r,s=null){return $c(this,e,n,r,s),this}setNodeMarkup(e,n,r=null,s){return Fc(this,e,n,r,s),this}setNodeAttribute(e,n,r){return this.step(new kt(e,n,r)),this}setDocAttribute(e,n){return this.step(new _t(e,n)),this}addNodeMark(e,n){return this.step(new Fe(e,n)),this}removeNodeMark(e,n){let r=this.doc.nodeAt(e);if(!r)throw new RangeError("No node at position "+e);if(n instanceof P)n.isInSet(r.marks)&&this.step(new lt(e,n));else{let s=r.marks,i,o=[];for(;i=n.isInSet(s);)o.push(new lt(e,i)),s=i.removeFromSet(s);for(let l=o.length-1;l>=0;l--)this.step(o[l])}return this}split(e,n=1,r){return Vc(this,e,n,r),this}addMark(e,n,r){return Rc(this,e,n,r),this}removeMark(e,n,r){return Dc(this,e,n,r),this}clearIncompatible(e,n,r){return Jr(this,e,n,r),this}}const nr=Object.create(null);let N=class{constructor(e,n,r){this.$anchor=e,this.$head=n,this.ranges=r||[new Uo(e.min(n),e.max(n))]}get anchor(){return this.$anchor.pos}get head(){return this.$head.pos}get from(){return this.$from.pos}get to(){return this.$to.pos}get $from(){return this.ranges[0].$from}get $to(){return this.ranges[0].$to}get empty(){let e=this.ranges;for(let n=0;n=0;i--){let o=n<0?gt(e.node(0),e.node(i),e.before(i+1),e.index(i),n,r):gt(e.node(0),e.node(i),e.after(i+1),e.index(i)+1,n,r);if(o)return o}return null}static near(e,n=1){return this.findFrom(e,n)||this.findFrom(e,-n)||new le(e.node(0))}static atStart(e){return gt(e,e,0,0,1)||new le(e)}static atEnd(e){return gt(e,e,e.content.size,e.childCount,-1)||new le(e)}static fromJSON(e,n){if(!n||!n.type)throw new RangeError("Invalid input for Selection.fromJSON");let r=nr[n.type];if(!r)throw new RangeError(`No selection type ${n.type} defined`);return r.fromJSON(e,n)}static jsonID(e,n){if(e in nr)throw new RangeError("Duplicate use of selection JSON ID "+e);return nr[e]=n,n.prototype.jsonID=e,n}getBookmark(){return E.between(this.$anchor,this.$head).getBookmark()}};N.prototype.visible=!0;class Uo{constructor(e,n){this.$from=e,this.$to=n}}let qs=!1;function Ks(t){!qs&&!t.parent.inlineContent&&(qs=!0,console.warn("TextSelection endpoint not pointing into a node with inline content ("+t.parent.type.name+")"))}class E extends N{constructor(e,n=e){Ks(e),Ks(n),super(e,n)}get $cursor(){return this.$anchor.pos==this.$head.pos?this.$head:null}map(e,n){let r=e.resolve(n.map(this.head));if(!r.parent.inlineContent)return N.near(r);let s=e.resolve(n.map(this.anchor));return new E(s.parent.inlineContent?s:r,r)}replace(e,n=x.empty){if(super.replace(e,n),n==x.empty){let r=this.$from.marksAcross(this.$to);r&&e.ensureMarks(r)}}eq(e){return e instanceof E&&e.anchor==this.anchor&&e.head==this.head}getBookmark(){return new Bn(this.anchor,this.head)}toJSON(){return{type:"text",anchor:this.anchor,head:this.head}}static fromJSON(e,n){if(typeof n.anchor!="number"||typeof n.head!="number")throw new RangeError("Invalid input for TextSelection.fromJSON");return new E(e.resolve(n.anchor),e.resolve(n.head))}static create(e,n,r=n){let s=e.resolve(n);return new this(s,r==n?s:e.resolve(r))}static between(e,n,r){let s=e.pos-n.pos;if((!r||s)&&(r=s>=0?1:-1),!n.parent.inlineContent){let i=N.findFrom(n,r,!0)||N.findFrom(n,-r,!0);if(i)n=i.$head;else return N.near(n,r)}return e.parent.inlineContent||(s==0?e=n:(e=(N.findFrom(e,-r,!0)||N.findFrom(e,r,!0)).$anchor,e.pos0?0:1);s>0?o=0;o+=s){let l=e.child(o);if(l.isAtom){if(!i&&T.isSelectable(l))return T.create(t,n-(s<0?l.nodeSize:0))}else{let a=gt(t,l,n+s,s<0?l.childCount:0,s,i);if(a)return a}n+=l.nodeSize*s}return null}function Us(t,e,n){let r=t.steps.length-1;if(r{o==null&&(o=d)}),t.setSelection(N.near(t.doc.resolve(o),n))}const Js=1,rn=2,Xs=4;class Qc extends Gr{constructor(e){super(e.doc),this.curSelectionFor=0,this.updated=0,this.meta=Object.create(null),this.time=Date.now(),this.curSelection=e.selection,this.storedMarks=e.storedMarks}get selection(){return this.curSelectionFor0}setStoredMarks(e){return this.storedMarks=e,this.updated|=rn,this}ensureMarks(e){return P.sameSet(this.storedMarks||this.selection.$from.marks(),e)||this.setStoredMarks(e),this}addStoredMark(e){return this.ensureMarks(e.addToSet(this.storedMarks||this.selection.$head.marks()))}removeStoredMark(e){return this.ensureMarks(e.removeFromSet(this.storedMarks||this.selection.$head.marks()))}get storedMarksSet(){return(this.updated&rn)>0}addStep(e,n){super.addStep(e,n),this.updated=this.updated&~rn,this.storedMarks=null}setTime(e){return this.time=e,this}replaceSelection(e){return this.selection.replace(this,e),this}replaceSelectionWith(e,n=!0){let r=this.selection;return n&&(e=e.mark(this.storedMarks||(r.empty?r.$from.marks():r.$from.marksAcross(r.$to)||P.none))),r.replaceWith(this,e),this}deleteSelection(){return this.selection.replace(this),this}insertText(e,n,r){let s=this.doc.type.schema;if(n==null)return e?this.replaceSelectionWith(s.text(e),!0):this.deleteSelection();{if(r==null&&(r=n),!e)return this.deleteRange(n,r);let i=this.storedMarks;if(!i){let o=this.doc.resolve(n);i=r==n?o.marks():o.marksAcross(this.doc.resolve(r))}return this.replaceRangeWith(n,r,s.text(e,i)),!this.selection.empty&&this.selection.to==n+e.length&&this.setSelection(N.near(this.selection.$to)),this}}setMeta(e,n){return this.meta[typeof e=="string"?e:e.key]=n,this}getMeta(e){return this.meta[typeof e=="string"?e:e.key]}get isGeneric(){for(let e in this.meta)return!1;return!0}scrollIntoView(){return this.updated|=Xs,this}get scrolledIntoView(){return(this.updated&Xs)>0}}function Gs(t,e){return!e||!t?t:t.bind(e)}class Dt{constructor(e,n,r){this.name=e,this.init=Gs(n.init,r),this.apply=Gs(n.apply,r)}}const Zc=[new Dt("doc",{init(t){return t.doc||t.schema.topNodeType.createAndFill()},apply(t){return t.doc}}),new Dt("selection",{init(t,e){return t.selection||N.atStart(e.doc)},apply(t){return t.selection}}),new Dt("storedMarks",{init(t){return t.storedMarks||null},apply(t,e,n,r){return r.selection.$cursor?t.storedMarks:null}}),new Dt("scrollToSelection",{init(){return 0},apply(t,e){return t.scrolledIntoView?e+1:e}})];class rr{constructor(e,n){this.schema=e,this.plugins=[],this.pluginsByKey=Object.create(null),this.fields=Zc.slice(),n&&n.forEach(r=>{if(this.pluginsByKey[r.key])throw new RangeError("Adding different instances of a keyed plugin ("+r.key+")");this.plugins.push(r),this.pluginsByKey[r.key]=r,r.spec.state&&this.fields.push(new Dt(r.key,r.spec.state,r))})}}class bt{constructor(e){this.config=e}get schema(){return this.config.schema}get plugins(){return this.config.plugins}apply(e){return this.applyTransaction(e).state}filterTransaction(e,n=-1){for(let r=0;rr.toJSON())),e&&typeof e=="object")for(let r in e){if(r=="doc"||r=="selection")throw new RangeError("The JSON fields `doc` and `selection` are reserved");let s=e[r],i=s.spec.state;i&&i.toJSON&&(n[r]=i.toJSON.call(s,this[s.key]))}return n}static fromJSON(e,n,r){if(!n)throw new RangeError("Invalid input for EditorState.fromJSON");if(!e.schema)throw new RangeError("Required config field 'schema' missing");let s=new rr(e.schema,e.plugins),i=new bt(s);return s.fields.forEach(o=>{if(o.name=="doc")i.doc=ge.fromJSON(e.schema,n.doc);else if(o.name=="selection")i.selection=N.fromJSON(i.doc,n.selection);else if(o.name=="storedMarks")n.storedMarks&&(i.storedMarks=n.storedMarks.map(e.schema.markFromJSON));else{if(r)for(let l in r){let a=r[l],c=a.spec.state;if(a.key==o.name&&c&&c.fromJSON&&Object.prototype.hasOwnProperty.call(n,l)){i[o.name]=c.fromJSON.call(a,e,n[l],i);return}}i[o.name]=o.init(e,i)}}),i}}function Jo(t,e,n){for(let r in t){let s=t[r];s instanceof Function?s=s.bind(e):r=="handleDOMEvents"&&(s=Jo(s,e,{})),n[r]=s}return n}class B{constructor(e){this.spec=e,this.props={},e.props&&Jo(e.props,this,this.props),this.key=e.key?e.key.key:Xo("plugin")}getState(e){return e[this.key]}}const sr=Object.create(null);function Xo(t){return t in sr?t+"$"+ ++sr[t]:(sr[t]=0,t+"$")}class _{constructor(e="key"){this.key=Xo(e)}get(e){return e.config.pluginsByKey[this.key]}getState(e){return e[this.key]}}const Qr=(t,e)=>t.selection.empty?!1:(e&&e(t.tr.deleteSelection().scrollIntoView()),!0);function Go(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("backward",t):n.parentOffset>0)?null:n}const Yo=(t,e,n)=>{let r=Go(t,n);if(!r)return!1;let s=Zr(r);if(!s){let o=r.blockRange(),l=o&&At(o);return l==null?!1:(e&&e(t.tr.lift(o,l).scrollIntoView()),!0)}let i=s.nodeBefore;if(ol(t,s,e,-1))return!0;if(r.parent.content.size==0&&(St(i,"end")||T.isSelectable(i)))for(let o=r.depth;;o--){let l=zn(t.doc,r.before(o),r.after(o),x.empty);if(l&&l.slice.size1)break}return i.isAtom&&s.depth==r.depth-1?(e&&e(t.tr.delete(s.pos-i.nodeSize,s.pos).scrollIntoView()),!0):!1},ed=(t,e,n)=>{let r=Go(t,n);if(!r)return!1;let s=Zr(r);return s?Qo(t,s,e):!1},td=(t,e,n)=>{let r=el(t,n);if(!r)return!1;let s=es(r);return s?Qo(t,s,e):!1};function Qo(t,e,n){let r=e.nodeBefore,s=r,i=e.pos-1;for(;!s.isTextblock;i--){if(s.type.spec.isolating)return!1;let d=s.lastChild;if(!d)return!1;s=d}let o=e.nodeAfter,l=o,a=e.pos+1;for(;!l.isTextblock;a++){if(l.type.spec.isolating)return!1;let d=l.firstChild;if(!d)return!1;l=d}let c=zn(t.doc,i,a,x.empty);if(!c||c.from!=i||c instanceof K&&c.slice.size>=a-i)return!1;if(n){let d=t.tr.step(c);d.setSelection(E.create(d.doc,i)),n(d.scrollIntoView())}return!0}function St(t,e,n=!1){for(let r=t;r;r=e=="start"?r.firstChild:r.lastChild){if(r.isTextblock)return!0;if(n&&r.childCount!=1)return!1}return!1}const Zo=(t,e,n)=>{let{$head:r,empty:s}=t.selection,i=r;if(!s)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("backward",t):r.parentOffset>0)return!1;i=Zr(r)}let o=i&&i.nodeBefore;return!o||!T.isSelectable(o)?!1:(e&&e(t.tr.setSelection(T.create(t.doc,i.pos-o.nodeSize)).scrollIntoView()),!0)};function Zr(t){if(!t.parent.type.spec.isolating)for(let e=t.depth-1;e>=0;e--){if(t.index(e)>0)return t.doc.resolve(t.before(e+1));if(t.node(e).type.spec.isolating)break}return null}function el(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("forward",t):n.parentOffset{let r=el(t,n);if(!r)return!1;let s=es(r);if(!s)return!1;let i=s.nodeAfter;if(ol(t,s,e,1))return!0;if(r.parent.content.size==0&&(St(i,"start")||T.isSelectable(i))){let o=zn(t.doc,r.before(),r.after(),x.empty);if(o&&o.slice.size{let{$head:r,empty:s}=t.selection,i=r;if(!s)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("forward",t):r.parentOffset=0;e--){let n=t.node(e);if(t.index(e)+1{let n=t.selection,r=n instanceof T,s;if(r){if(n.node.isTextblock||!Ue(t.doc,n.from))return!1;s=n.from}else if(s=Ln(t.doc,n.from,-1),s==null)return!1;if(e){let i=t.tr.join(s);r&&i.setSelection(T.create(i.doc,s-t.doc.resolve(s).nodeBefore.nodeSize)),e(i.scrollIntoView())}return!0},rd=(t,e)=>{let n=t.selection,r;if(n instanceof T){if(n.node.isTextblock||!Ue(t.doc,n.to))return!1;r=n.to}else if(r=Ln(t.doc,n.to,1),r==null)return!1;return e&&e(t.tr.join(r).scrollIntoView()),!0},sd=(t,e)=>{let{$from:n,$to:r}=t.selection,s=n.blockRange(r),i=s&&At(s);return i==null?!1:(e&&e(t.tr.lift(s,i).scrollIntoView()),!0)},rl=(t,e)=>{let{$head:n,$anchor:r}=t.selection;return!n.parent.type.spec.code||!n.sameParent(r)?!1:(e&&e(t.tr.insertText(` +`).scrollIntoView()),!0)};function ts(t){for(let e=0;e{let{$head:n,$anchor:r}=t.selection;if(!n.parent.type.spec.code||!n.sameParent(r))return!1;let s=n.node(-1),i=n.indexAfter(-1),o=ts(s.contentMatchAt(i));if(!o||!s.canReplaceWith(i,i,o))return!1;if(e){let l=n.after(),a=t.tr.replaceWith(l,l,o.createAndFill());a.setSelection(N.near(a.doc.resolve(l),1)),e(a.scrollIntoView())}return!0},sl=(t,e)=>{let n=t.selection,{$from:r,$to:s}=n;if(n instanceof le||r.parent.inlineContent||s.parent.inlineContent)return!1;let i=ts(s.parent.contentMatchAt(s.indexAfter()));if(!i||!i.isTextblock)return!1;if(e){let o=(!r.parentOffset&&s.index(){let{$cursor:n}=t.selection;if(!n||n.parent.content.size)return!1;if(n.depth>1&&n.after()!=n.end(-1)){let i=n.before();if(Oe(t.doc,i))return e&&e(t.tr.split(i).scrollIntoView()),!0}let r=n.blockRange(),s=r&&At(r);return s==null?!1:(e&&e(t.tr.lift(r,s).scrollIntoView()),!0)};function od(t){return(e,n)=>{let{$from:r,$to:s}=e.selection;if(e.selection instanceof T&&e.selection.node.isBlock)return!r.parentOffset||!Oe(e.doc,r.pos)?!1:(n&&n(e.tr.split(r.pos).scrollIntoView()),!0);if(!r.depth)return!1;let i=[],o,l,a=!1,c=!1;for(let f=r.depth;;f--)if(r.node(f).isBlock){a=r.end(f)==r.pos+(r.depth-f),c=r.start(f)==r.pos-(r.depth-f),l=ts(r.node(f-1).contentMatchAt(r.indexAfter(f-1))),i.unshift(a&&l?{type:l}:null),o=f;break}else{if(f==1)return!1;i.unshift(null)}let d=e.tr;(e.selection instanceof E||e.selection instanceof le)&&d.deleteSelection();let u=d.mapping.map(r.pos),h=Oe(d.doc,u,i.length,i);if(h||(i[0]=l?{type:l}:null,h=Oe(d.doc,u,i.length,i)),!h)return!1;if(d.split(u,i.length,i),!a&&c&&r.node(o).type!=l){let f=d.mapping.map(r.before(o)),p=d.doc.resolve(f);l&&r.node(o-1).canReplaceWith(p.index(),p.index()+1,l)&&d.setNodeMarkup(d.mapping.map(r.before(o)),l)}return n&&n(d.scrollIntoView()),!0}}const ld=od(),ad=(t,e)=>{let{$from:n,to:r}=t.selection,s,i=n.sharedDepth(r);return i==0?!1:(s=n.before(i),e&&e(t.tr.setSelection(T.create(t.doc,s))),!0)};function cd(t,e,n){let r=e.nodeBefore,s=e.nodeAfter,i=e.index();return!r||!s||!r.type.compatibleContent(s.type)?!1:!r.content.size&&e.parent.canReplace(i-1,i)?(n&&n(t.tr.delete(e.pos-r.nodeSize,e.pos).scrollIntoView()),!0):!e.parent.canReplace(i,i+1)||!(s.isTextblock||Ue(t.doc,e.pos))?!1:(n&&n(t.tr.join(e.pos).scrollIntoView()),!0)}function ol(t,e,n,r){let s=e.nodeBefore,i=e.nodeAfter,o,l,a=s.type.spec.isolating||i.type.spec.isolating;if(!a&&cd(t,e,n))return!0;let c=!a&&e.parent.canReplace(e.index(),e.index()+1);if(c&&(o=(l=s.contentMatchAt(s.childCount)).findWrapping(i.type))&&l.matchType(o[0]||i.type).validEnd){if(n){let f=e.pos+i.nodeSize,p=b.empty;for(let y=o.length-1;y>=0;y--)p=b.from(o[y].create(null,p));p=b.from(s.copy(p));let m=t.tr.step(new J(e.pos-1,f,e.pos,f,new x(p,1,0),o.length,!0)),g=m.doc.resolve(f+2*o.length);g.nodeAfter&&g.nodeAfter.type==s.type&&Ue(m.doc,g.pos)&&m.join(g.pos),n(m.scrollIntoView())}return!0}let d=i.type.spec.isolating||r>0&&a?null:N.findFrom(e,1),u=d&&d.$from.blockRange(d.$to),h=u&&At(u);if(h!=null&&h>=e.depth)return n&&n(t.tr.lift(u,h).scrollIntoView()),!0;if(c&&St(i,"start",!0)&&St(s,"end")){let f=s,p=[];for(;p.push(f),!f.isTextblock;)f=f.lastChild;let m=i,g=1;for(;!m.isTextblock;m=m.firstChild)g++;if(f.canReplace(f.childCount,f.childCount,m.content)){if(n){let y=b.empty;for(let w=p.length-1;w>=0;w--)y=b.from(p[w].copy(y));let k=t.tr.step(new J(e.pos-p.length,e.pos+i.nodeSize,e.pos+g,e.pos+i.nodeSize-g,new x(y,p.length,0),0,!0));n(k.scrollIntoView())}return!0}}return!1}function ll(t){return function(e,n){let r=e.selection,s=t<0?r.$from:r.$to,i=s.depth;for(;s.node(i).isInline;){if(!i)return!1;i--}return s.node(i).isTextblock?(n&&n(e.tr.setSelection(E.create(e.doc,t<0?s.start(i):s.end(i)))),!0):!1}}const dd=ll(-1),ud=ll(1);function hd(t,e=null){return function(n,r){let{$from:s,$to:i}=n.selection,o=s.blockRange(i),l=o&&Xr(o,t,e);return l?(r&&r(n.tr.wrap(o,l).scrollIntoView()),!0):!1}}function Ys(t,e=null){return function(n,r){let s=!1;for(let i=0;i{if(s)return!1;if(!(!a.isTextblock||a.hasMarkup(t,e)))if(a.type==t)s=!0;else{let d=n.doc.resolve(c),u=d.index();s=d.parent.canReplaceWith(u,u+1,t)}})}if(!s)return!1;if(r){let i=n.tr;for(let o=0;o=2&&e.$from.node(e.depth-1).type.compatibleContent(n)&&e.startIndex==0){if(e.$from.index(e.depth-1)==0)return!1;let a=o.resolve(e.start-2);i=new Mn(a,a,e.depth),e.endIndex=0;d--)i=b.from(n[d].type.create(n[d].attrs,i));t.step(new J(e.start-(r?2:0),e.end,e.start,e.end,new x(i,0,0),n.length,!0));let o=0;for(let d=0;do.childCount>0&&o.firstChild.type==t);return i?n?r.node(i.depth-1).type==t?yd(e,n,t,i):bd(e,n,i):!0:!1}}function yd(t,e,n,r){let s=t.tr,i=r.end,o=r.$to.end(r.depth);im;p--)f-=s.child(p).nodeSize,r.delete(f-1,f+1);let i=r.doc.resolve(n.start),o=i.nodeAfter;if(r.mapping.map(n.end)!=n.start+i.nodeAfter.nodeSize)return!1;let l=n.startIndex==0,a=n.endIndex==s.childCount,c=i.node(-1),d=i.index(-1);if(!c.canReplace(d+(l?0:1),d+1,o.content.append(a?b.empty:b.from(s))))return!1;let u=i.pos,h=u+o.nodeSize;return r.step(new J(u-(l?1:0),h+(a?1:0),u+1,h-1,new x((l?b.empty:b.from(s.copy(b.empty))).append(a?b.empty:b.from(s.copy(b.empty))),l?0:1,a?0:1),l?0:1)),e(r.scrollIntoView()),!0}function kd(t){return function(e,n){let{$from:r,$to:s}=e.selection,i=r.blockRange(s,c=>c.childCount>0&&c.firstChild.type==t);if(!i)return!1;let o=i.startIndex;if(o==0)return!1;let l=i.parent,a=l.child(o-1);if(a.type!=t)return!1;if(n){let c=a.lastChild&&a.lastChild.type==l.type,d=b.from(c?t.create():null),u=new x(b.from(t.create(null,b.from(l.type.create(null,d)))),c?3:1,0),h=i.start,f=i.end;n(e.tr.step(new J(h-(c?3:1),f,h,f,u,1,!0)).scrollIntoView())}return!0}}const G=function(t){for(var e=0;;e++)if(t=t.previousSibling,!t)return e},Ct=function(t){let e=t.assignedSlot||t.parentNode;return e&&e.nodeType==11?e.host:e};let Cr=null;const Ee=function(t,e,n){let r=Cr||(Cr=document.createRange());return r.setEnd(t,n??t.nodeValue.length),r.setStart(t,e||0),r},wd=function(){Cr=null},at=function(t,e,n,r){return n&&(Qs(t,e,n,r,-1)||Qs(t,e,n,r,1))},xd=/^(img|br|input|textarea|hr)$/i;function Qs(t,e,n,r,s){for(var i;;){if(t==n&&e==r)return!0;if(e==(s<0?0:ce(t))){let o=t.parentNode;if(!o||o.nodeType!=1||Xt(t)||xd.test(t.nodeName)||t.contentEditable=="false")return!1;e=G(t)+(s<0?0:1),t=o}else if(t.nodeType==1){let o=t.childNodes[e+(s<0?-1:0)];if(o.nodeType==1&&o.contentEditable=="false")if(!((i=o.pmViewDesc)===null||i===void 0)&&i.ignoreForSelection)e+=s;else return!1;else t=o,e=s<0?ce(t):0}else return!1}}function ce(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function Sd(t,e){for(;;){if(t.nodeType==3&&e)return t;if(t.nodeType==1&&e>0){if(t.contentEditable=="false")return null;t=t.childNodes[e-1],e=ce(t)}else if(t.parentNode&&!Xt(t))e=G(t),t=t.parentNode;else return null}}function Cd(t,e){for(;;){if(t.nodeType==3&&e2),ae=Mt||(ke?/Mac/.test(ke.platform):!1),dl=ke?/Win/.test(ke.platform):!1,Ae=/Android \d/.test(Je),Gt=!!Zs&&"webkitFontSmoothing"in Zs.documentElement.style,Ed=Gt?+(/\bAppleWebKit\/(\d+)/.exec(navigator.userAgent)||[0,0])[1]:0;function Ad(t){let e=t.defaultView&&t.defaultView.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:t.documentElement.clientWidth,top:0,bottom:t.documentElement.clientHeight}}function ve(t,e){return typeof t=="number"?t:t[e]}function Nd(t){let e=t.getBoundingClientRect(),n=e.width/t.offsetWidth||1,r=e.height/t.offsetHeight||1;return{left:e.left,right:e.left+t.clientWidth*n,top:e.top,bottom:e.top+t.clientHeight*r}}function ei(t,e,n){let r=t.someProp("scrollThreshold")||0,s=t.someProp("scrollMargin")||5,i=t.dom.ownerDocument;for(let o=n||t.dom;o;){if(o.nodeType!=1){o=Ct(o);continue}let l=o,a=l==i.body,c=a?Ad(i):Nd(l),d=0,u=0;if(e.topc.bottom-ve(r,"bottom")&&(u=e.bottom-e.top>c.bottom-c.top?e.top+ve(s,"top")-c.top:e.bottom-c.bottom+ve(s,"bottom")),e.leftc.right-ve(r,"right")&&(d=e.right-c.right+ve(s,"right")),d||u)if(a)i.defaultView.scrollBy(d,u);else{let f=l.scrollLeft,p=l.scrollTop;u&&(l.scrollTop+=u),d&&(l.scrollLeft+=d);let m=l.scrollLeft-f,g=l.scrollTop-p;e={left:e.left-m,top:e.top-g,right:e.right-m,bottom:e.bottom-g}}let h=a?"fixed":getComputedStyle(o).position;if(/^(fixed|sticky)$/.test(h))break;o=h=="absolute"?o.offsetParent:Ct(o)}}function Od(t){let e=t.dom.getBoundingClientRect(),n=Math.max(0,e.top),r,s;for(let i=(e.left+e.right)/2,o=n+1;o=n-20){r=l,s=a.top;break}}return{refDOM:r,refTop:s,stack:ul(t.dom)}}function ul(t){let e=[],n=t.ownerDocument;for(let r=t;r&&(e.push({dom:r,top:r.scrollTop,left:r.scrollLeft}),t!=n);r=Ct(r));return e}function Rd({refDOM:t,refTop:e,stack:n}){let r=t?t.getBoundingClientRect().top:0;hl(n,r==0?0:r-e)}function hl(t,e){for(let n=0;n=l){o=Math.max(p.bottom,o),l=Math.min(p.top,l);let m=p.left>e.left?p.left-e.left:p.right=(p.left+p.right)/2?1:0));continue}}else p.top>e.top&&!a&&p.left<=e.left&&p.right>=e.left&&(a=d,c={left:Math.max(p.left,Math.min(p.right,e.left)),top:p.top});!n&&(e.left>=p.right&&e.top>=p.top||e.left>=p.left&&e.top>=p.bottom)&&(i=u+1)}}return!n&&a&&(n=a,s=c,r=0),n&&n.nodeType==3?Id(n,s):!n||r&&n.nodeType==1?{node:t,offset:i}:fl(n,s)}function Id(t,e){let n=t.nodeValue.length,r=document.createRange(),s;for(let i=0;i=(o.left+o.right)/2?1:0)};break}}return r.detach(),s||{node:t,offset:0}}function rs(t,e){return t.left>=e.left-1&&t.left<=e.right+1&&t.top>=e.top-1&&t.top<=e.bottom+1}function Pd(t,e){let n=t.parentNode;return n&&/^li$/i.test(n.nodeName)&&e.left(o.left+o.right)/2?1:-1}return t.docView.posFromDOM(r,s,i)}function zd(t,e,n,r){let s=-1;for(let i=e,o=!1;i!=t.dom;){let l=t.docView.nearestDesc(i,!0),a;if(!l)return null;if(l.dom.nodeType==1&&(l.node.isBlock&&l.parent||!l.contentDOM)&&((a=l.dom.getBoundingClientRect()).width||a.height)&&(l.node.isBlock&&l.parent&&!/^T(R|BODY|HEAD|FOOT)$/.test(l.dom.nodeName)&&(!o&&a.left>r.left||a.top>r.top?s=l.posBefore:(!o&&a.right-1?s:t.docView.posFromDOM(e,n,-1)}function pl(t,e,n){let r=t.childNodes.length;if(r&&n.tope.top&&s++}let c;Gt&&s&&r.nodeType==1&&(c=r.childNodes[s-1]).nodeType==1&&c.contentEditable=="false"&&c.getBoundingClientRect().top>=e.top&&s--,r==t.dom&&s==r.childNodes.length-1&&r.lastChild.nodeType==1&&e.top>r.lastChild.getBoundingClientRect().bottom?l=t.state.doc.content.size:(s==0||r.nodeType!=1||r.childNodes[s-1].nodeName!="BR")&&(l=zd(t,r,s,e))}l==null&&(l=Ld(t,o,e));let a=t.docView.nearestDesc(o,!0);return{pos:l,inside:a?a.posAtStart-a.border:-1}}function ti(t){return t.top=0&&s==r.nodeValue.length?(a--,d=1):n<0?a--:c++,Nt(Pe(Ee(r,a,c),d),d<0)}if(!t.state.doc.resolve(e-(i||0)).parent.inlineContent){if(i==null&&s&&(n<0||s==ce(r))){let a=r.childNodes[s-1];if(a.nodeType==1)return ir(a.getBoundingClientRect(),!1)}if(i==null&&s=0)}if(i==null&&s&&(n<0||s==ce(r))){let a=r.childNodes[s-1],c=a.nodeType==3?Ee(a,ce(a)-(o?0:1)):a.nodeType==1&&(a.nodeName!="BR"||!a.nextSibling)?a:null;if(c)return Nt(Pe(c,1),!1)}if(i==null&&s=0)}function Nt(t,e){if(t.width==0)return t;let n=e?t.left:t.right;return{top:t.top,bottom:t.bottom,left:n,right:n}}function ir(t,e){if(t.height==0)return t;let n=e?t.top:t.bottom;return{top:n,bottom:n,left:t.left,right:t.right}}function gl(t,e,n){let r=t.state,s=t.root.activeElement;r!=e&&t.updateState(e),s!=t.dom&&t.focus();try{return n()}finally{r!=e&&t.updateState(r),s!=t.dom&&s&&s.focus()}}function Hd(t,e,n){let r=e.selection,s=n=="up"?r.$from:r.$to;return gl(t,e,()=>{let{node:i}=t.docView.domFromPos(s.pos,n=="up"?-1:1);for(;;){let l=t.docView.nearestDesc(i,!0);if(!l)break;if(l.node.isBlock){i=l.contentDOM||l.dom;break}i=l.dom.parentNode}let o=ml(t,s.pos,1);for(let l=i.firstChild;l;l=l.nextSibling){let a;if(l.nodeType==1)a=l.getClientRects();else if(l.nodeType==3)a=Ee(l,0,l.nodeValue.length).getClientRects();else continue;for(let c=0;cd.top+1&&(n=="up"?o.top-d.top>(d.bottom-o.top)*2:d.bottom-o.bottom>(o.bottom-d.top)*2))return!1}}return!0})}const Fd=/[\u0590-\u08ac]/;function Vd(t,e,n){let{$head:r}=e.selection;if(!r.parent.isTextblock)return!1;let s=r.parentOffset,i=!s,o=s==r.parent.content.size,l=t.domSelection();return l?!Fd.test(r.parent.textContent)||!l.modify?n=="left"||n=="backward"?i:o:gl(t,e,()=>{let{focusNode:a,focusOffset:c,anchorNode:d,anchorOffset:u}=t.domSelectionRange(),h=l.caretBidiLevel;l.modify("move",n,"character");let f=r.depth?t.docView.domAfterPos(r.before()):t.dom,{focusNode:p,focusOffset:m}=t.domSelectionRange(),g=p&&!f.contains(p.nodeType==1?p:p.parentNode)||a==p&&c==m;try{l.collapse(d,u),a&&(a!=d||c!=u)&&l.extend&&l.extend(a,c)}catch{}return h!=null&&(l.caretBidiLevel=h),g}):r.pos==r.start()||r.pos==r.end()}let ni=null,ri=null,si=!1;function _d(t,e,n){return ni==e&&ri==n?si:(ni=e,ri=n,si=n=="up"||n=="down"?Hd(t,e,n):Vd(t,e,n))}const he=0,ii=1,Ye=2,we=3;class Yt{constructor(e,n,r,s){this.parent=e,this.children=n,this.dom=r,this.contentDOM=s,this.dirty=he,r.pmViewDesc=this}matchesWidget(e){return!1}matchesMark(e){return!1}matchesNode(e,n,r){return!1}matchesHack(e){return!1}parseRule(){return null}stopEvent(e){return!1}get size(){let e=0;for(let n=0;nG(this.contentDOM);else if(this.contentDOM&&this.contentDOM!=this.dom&&this.dom.contains(this.contentDOM))s=e.compareDocumentPosition(this.contentDOM)&2;else if(this.dom.firstChild){if(n==0)for(let i=e;;i=i.parentNode){if(i==this.dom){s=!1;break}if(i.previousSibling)break}if(s==null&&n==e.childNodes.length)for(let i=e;;i=i.parentNode){if(i==this.dom){s=!0;break}if(i.nextSibling)break}}return s??r>0?this.posAtEnd:this.posAtStart}nearestDesc(e,n=!1){for(let r=!0,s=e;s;s=s.parentNode){let i=this.getDesc(s),o;if(i&&(!n||i.node))if(r&&(o=i.nodeDOM)&&!(o.nodeType==1?o.contains(e.nodeType==1?e:e.parentNode):o==e))r=!1;else return i}}getDesc(e){let n=e.pmViewDesc;for(let r=n;r;r=r.parent)if(r==this)return n}posFromDOM(e,n,r){for(let s=e;s;s=s.parentNode){let i=this.getDesc(s);if(i)return i.localPosFromDOM(e,n,r)}return-1}descAt(e){for(let n=0,r=0;ne||o instanceof bl){s=e-i;break}i=l}if(s)return this.children[r].domFromPos(s-this.children[r].border,n);for(let i;r&&!(i=this.children[r-1]).size&&i instanceof yl&&i.side>=0;r--);if(n<=0){let i,o=!0;for(;i=r?this.children[r-1]:null,!(!i||i.dom.parentNode==this.contentDOM);r--,o=!1);return i&&n&&o&&!i.border&&!i.domAtom?i.domFromPos(i.size,n):{node:this.contentDOM,offset:i?G(i.dom)+1:0}}else{let i,o=!0;for(;i=r=d&&n<=c-a.border&&a.node&&a.contentDOM&&this.contentDOM.contains(a.contentDOM))return a.parseRange(e,n,d);e=o;for(let u=l;u>0;u--){let h=this.children[u-1];if(h.size&&h.dom.parentNode==this.contentDOM&&!h.emptyChildAt(1)){s=G(h.dom)+1;break}e-=h.size}s==-1&&(s=0)}if(s>-1&&(c>n||l==this.children.length-1)){n=c;for(let d=l+1;dp&&on){let p=l;l=a,a=p}let f=document.createRange();f.setEnd(a.node,a.offset),f.setStart(l.node,l.offset),c.removeAllRanges(),c.addRange(f)}}ignoreMutation(e){return!this.contentDOM&&e.type!="selection"}get contentLost(){return this.contentDOM&&this.contentDOM!=this.dom&&!this.dom.contains(this.contentDOM)}markDirty(e,n){for(let r=0,s=0;s=r:er){let l=r+i.border,a=o-i.border;if(e>=l&&n<=a){this.dirty=e==r||n==o?Ye:ii,e==l&&n==a&&(i.contentLost||i.dom.parentNode!=this.contentDOM)?i.dirty=we:i.markDirty(e-l,n-l);return}else i.dirty=i.dom==i.contentDOM&&i.dom.parentNode==this.contentDOM&&!i.children.length?Ye:we}r=o}this.dirty=Ye}markParentsDirty(){let e=1;for(let n=this.parent;n;n=n.parent,e++){let r=e==1?Ye:ii;n.dirty{if(!i)return s;if(i.parent)return i.parent.posBeforeChild(i)})),!n.type.spec.raw){if(o.nodeType!=1){let l=document.createElement("span");l.appendChild(o),o=l}o.contentEditable="false",o.classList.add("ProseMirror-widget")}super(e,[],o,null),this.widget=n,this.widget=n,i=this}matchesWidget(e){return this.dirty==he&&e.type.eq(this.widget.type)}parseRule(){return{ignore:!0}}stopEvent(e){let n=this.widget.spec.stopEvent;return n?n(e):!1}ignoreMutation(e){return e.type!="selection"||this.widget.spec.ignoreSelection}destroy(){this.widget.type.destroy(this.dom),super.destroy()}get domAtom(){return!0}get ignoreForSelection(){return!!this.widget.type.spec.relaxedSide}get side(){return this.widget.type.side}}class Wd extends Yt{constructor(e,n,r,s){super(e,[],n,null),this.textDOM=r,this.text=s}get size(){return this.text.length}localPosFromDOM(e,n){return e!=this.textDOM?this.posAtStart+(n?this.size:0):this.posAtStart+n}domFromPos(e){return{node:this.textDOM,offset:e}}ignoreMutation(e){return e.type==="characterData"&&e.target.nodeValue==e.oldValue}}class ct extends Yt{constructor(e,n,r,s,i){super(e,[],r,s),this.mark=n,this.spec=i}static create(e,n,r,s){let i=s.nodeViews[n.type.name],o=i&&i(n,s,r);return(!o||!o.dom)&&(o=ft.renderSpec(document,n.type.spec.toDOM(n,r),null,n.attrs)),new ct(e,n,o.dom,o.contentDOM||o.dom,o)}parseRule(){return this.dirty&we||this.mark.type.spec.reparseInView?null:{mark:this.mark.type.name,attrs:this.mark.attrs,contentElement:this.contentDOM}}matchesMark(e){return this.dirty!=we&&this.mark.eq(e)}markDirty(e,n){if(super.markDirty(e,n),this.dirty!=he){let r=this.parent;for(;!r.node;)r=r.parent;r.dirty0&&(i=Ar(i,0,e,r));for(let l=0;l{if(!a)return o;if(a.parent)return a.parent.posBeforeChild(a)},r,s),d=c&&c.dom,u=c&&c.contentDOM;if(n.isText){if(!d)d=document.createTextNode(n.text);else if(d.nodeType!=3)throw new RangeError("Text must be rendered as a DOM text node")}else d||({dom:d,contentDOM:u}=ft.renderSpec(document,n.type.spec.toDOM(n),null,n.attrs));!u&&!n.isText&&d.nodeName!="BR"&&(d.hasAttribute("contenteditable")||(d.contentEditable="false"),n.type.spec.draggable&&(d.draggable=!0));let h=d;return d=xl(d,r,n),c?a=new jd(e,n,r,s,d,u||null,h,c,i,o+1):n.isText?new Hn(e,n,r,s,d,h,i):new We(e,n,r,s,d,u||null,h,i,o+1)}parseRule(){if(this.node.type.spec.reparseInView)return null;let e={node:this.node.type.name,attrs:this.node.attrs};if(this.node.type.whitespace=="pre"&&(e.preserveWhitespace="full"),!this.contentDOM)e.getContent=()=>this.node.content;else if(!this.contentLost)e.contentElement=this.contentDOM;else{for(let n=this.children.length-1;n>=0;n--){let r=this.children[n];if(this.dom.contains(r.dom.parentNode)){e.contentElement=r.dom.parentNode;break}}e.contentElement||(e.getContent=()=>b.empty)}return e}matchesNode(e,n,r){return this.dirty==he&&e.eq(this.node)&&Tn(n,this.outerDeco)&&r.eq(this.innerDeco)}get size(){return this.node.nodeSize}get border(){return this.node.isLeaf?0:1}updateChildren(e,n){let r=this.node.inlineContent,s=n,i=e.composing?this.localCompositionInfo(e,n):null,o=i&&i.pos>-1?i:null,l=i&&i.pos<0,a=new Kd(this,o&&o.node,e);Xd(this.node,this.innerDeco,(c,d,u)=>{c.spec.marks?a.syncToMarks(c.spec.marks,r,e,d):c.type.side>=0&&!u&&a.syncToMarks(d==this.node.childCount?P.none:this.node.child(d).marks,r,e,d),a.placeWidget(c,e,s)},(c,d,u,h)=>{a.syncToMarks(c.marks,r,e,h);let f;a.findNodeMatch(c,d,u,h)||l&&e.state.selection.from>s&&e.state.selection.to-1&&a.updateNodeAt(c,d,u,f,e)||a.updateNextNode(c,d,u,e,h,s)||a.addNode(c,d,u,e,s),s+=c.nodeSize}),a.syncToMarks([],r,e,0),this.node.isTextblock&&a.addTextblockHacks(),a.destroyRest(),(a.changed||this.dirty==Ye)&&(o&&this.protectLocalComposition(e,o),kl(this.contentDOM,this.children,e),Mt&&Gd(this.dom))}localCompositionInfo(e,n){let{from:r,to:s}=e.state.selection;if(!(e.state.selection instanceof E)||rn+this.node.content.size)return null;let i=e.input.compositionNode;if(!i||!this.dom.contains(i.parentNode))return null;if(this.node.inlineContent){let o=i.nodeValue,l=Yd(this.node.content,o,r-n,s-n);return l<0?null:{node:i,pos:l,text:o}}else return{node:i,pos:-1,text:""}}protectLocalComposition(e,{node:n,pos:r,text:s}){if(this.getDesc(n))return;let i=n;for(;i.parentNode!=this.contentDOM;i=i.parentNode){for(;i.previousSibling;)i.parentNode.removeChild(i.previousSibling);for(;i.nextSibling;)i.parentNode.removeChild(i.nextSibling);i.pmViewDesc&&(i.pmViewDesc=void 0)}let o=new Wd(this,i,n,s);e.input.compositionNodes.push(o),this.children=Ar(this.children,r,r+s.length,e,o)}update(e,n,r,s){return this.dirty==we||!e.sameMarkup(this.node)?!1:(this.updateInner(e,n,r,s),!0)}updateInner(e,n,r,s){this.updateOuterDeco(n),this.node=e,this.innerDeco=r,this.contentDOM&&this.updateChildren(s,this.posAtStart),this.dirty=he}updateOuterDeco(e){if(Tn(e,this.outerDeco))return;let n=this.nodeDOM.nodeType!=1,r=this.dom;this.dom=wl(this.dom,this.nodeDOM,Er(this.outerDeco,this.node,n),Er(e,this.node,n)),this.dom!=r&&(r.pmViewDesc=void 0,this.dom.pmViewDesc=this),this.outerDeco=e}selectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.add("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&(this.nodeDOM.draggable=!0))}deselectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.remove("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&this.nodeDOM.removeAttribute("draggable"))}get domAtom(){return this.node.isAtom}}function oi(t,e,n,r,s){xl(r,e,t);let i=new We(void 0,t,e,n,r,r,r,s,0);return i.contentDOM&&i.updateChildren(s,0),i}class Hn extends We{constructor(e,n,r,s,i,o,l){super(e,n,r,s,i,null,o,l,0)}parseRule(){let e=this.nodeDOM.parentNode;for(;e&&e!=this.dom&&!e.pmIsDeco;)e=e.parentNode;return{skip:e||!0}}update(e,n,r,s){return this.dirty==we||this.dirty!=he&&!this.inParent()||!e.sameMarkup(this.node)?!1:(this.updateOuterDeco(n),(this.dirty!=he||e.text!=this.node.text)&&e.text!=this.nodeDOM.nodeValue&&(this.nodeDOM.nodeValue=e.text,s.trackWrites==this.nodeDOM&&(s.trackWrites=null)),this.node=e,this.dirty=he,!0)}inParent(){let e=this.parent.contentDOM;for(let n=this.nodeDOM;n;n=n.parentNode)if(n==e)return!0;return!1}domFromPos(e){return{node:this.nodeDOM,offset:e}}localPosFromDOM(e,n,r){return e==this.nodeDOM?this.posAtStart+Math.min(n,this.node.text.length):super.localPosFromDOM(e,n,r)}ignoreMutation(e){return e.type!="characterData"&&e.type!="selection"}slice(e,n,r){let s=this.node.cut(e,n),i=document.createTextNode(s.text);return new Hn(this.parent,s,this.outerDeco,this.innerDeco,i,i,r)}markDirty(e,n){super.markDirty(e,n),this.dom!=this.nodeDOM&&(e==0||n==this.nodeDOM.nodeValue.length)&&(this.dirty=we)}get domAtom(){return!1}isText(e){return this.node.text==e}}class bl extends Yt{parseRule(){return{ignore:!0}}matchesHack(e){return this.dirty==he&&this.dom.nodeName==e}get domAtom(){return!0}get ignoreForCoords(){return this.dom.nodeName=="IMG"}}class jd extends We{constructor(e,n,r,s,i,o,l,a,c,d){super(e,n,r,s,i,o,l,c,d),this.spec=a}update(e,n,r,s){if(this.dirty==we)return!1;if(this.spec.update&&(this.node.type==e.type||this.spec.multiType)){let i=this.spec.update(e,n,r);return i&&this.updateInner(e,n,r,s),i}else return!this.contentDOM&&!e.isLeaf?!1:super.update(e,n,r,s)}selectNode(){this.spec.selectNode?this.spec.selectNode():super.selectNode()}deselectNode(){this.spec.deselectNode?this.spec.deselectNode():super.deselectNode()}setSelection(e,n,r,s){this.spec.setSelection?this.spec.setSelection(e,n,r.root):super.setSelection(e,n,r,s)}destroy(){this.spec.destroy&&this.spec.destroy(),super.destroy()}stopEvent(e){return this.spec.stopEvent?this.spec.stopEvent(e):!1}ignoreMutation(e){return this.spec.ignoreMutation?this.spec.ignoreMutation(e):super.ignoreMutation(e)}}function kl(t,e,n){let r=t.firstChild,s=!1;for(let i=0;i>1,l=Math.min(o,e.length);for(;i-1)a>this.index&&(this.changed=!0,this.destroyBetween(this.index,a)),this.top=this.top.children[this.index];else{let d=ct.create(this.top,e[o],n,r);this.top.children.splice(this.index,0,d),this.top=d,this.changed=!0}this.index=0,o++}}findNodeMatch(e,n,r,s){let i=-1,o;if(s>=this.preMatch.index&&(o=this.preMatch.matches[s-this.preMatch.index]).parent==this.top&&o.matchesNode(e,n,r))i=this.top.children.indexOf(o,this.index);else for(let l=this.index,a=Math.min(this.top.children.length,l+5);l0;){let l;for(;;)if(r){let c=n.children[r-1];if(c instanceof ct)n=c,r=c.children.length;else{l=c,r--;break}}else{if(n==e)break e;r=n.parent.children.indexOf(n),n=n.parent}let a=l.node;if(a){if(a!=t.child(s-1))break;--s,i.set(l,s),o.push(l)}}return{index:s,matched:i,matches:o.reverse()}}function Jd(t,e){return t.type.side-e.type.side}function Xd(t,e,n,r){let s=e.locals(t),i=0;if(s.length==0){for(let c=0;ci;)l.push(s[o++]);let p=i+h.nodeSize;if(h.isText){let g=p;o!g.inline):l.slice();r(h,m,e.forChild(i,h),f),i=p}}function Gd(t){if(t.nodeName=="UL"||t.nodeName=="OL"){let e=t.style.cssText;t.style.cssText=e+"; list-style: square !important",window.getComputedStyle(t).listStyle,t.style.cssText=e}}function Yd(t,e,n,r){for(let s=0,i=0;s=n){if(i>=r&&a.slice(r-e.length-l,r-l)==e)return r-e.length;let c=l=0&&c+e.length+l>=n)return l+c;if(n==r&&a.length>=r+e.length-l&&a.slice(r-l,r-l+e.length)==e)return r}}return-1}function Ar(t,e,n,r,s){let i=[];for(let o=0,l=0;o=n||d<=e?i.push(a):(cn&&i.push(a.slice(n-c,a.size,r)))}return i}function ss(t,e=null){let n=t.domSelectionRange(),r=t.state.doc;if(!n.focusNode)return null;let s=t.docView.nearestDesc(n.focusNode),i=s&&s.size==0,o=t.docView.posFromDOM(n.focusNode,n.focusOffset,1);if(o<0)return null;let l=r.resolve(o),a,c;if($n(n)){for(a=o;s&&!s.node;)s=s.parent;let u=s.node;if(s&&u.isAtom&&T.isSelectable(u)&&s.parent&&!(u.isInline&&Md(n.focusNode,n.focusOffset,s.dom))){let h=s.posBefore;c=new T(o==h?l:r.resolve(h))}}else{if(n instanceof t.dom.ownerDocument.defaultView.Selection&&n.rangeCount>1){let u=o,h=o;for(let f=0;f{(n.anchorNode!=r||n.anchorOffset!=s)&&(e.removeEventListener("selectionchange",t.input.hideSelectionGuard),setTimeout(()=>{(!Sl(t)||t.state.selection.visible)&&t.dom.classList.remove("ProseMirror-hideselection")},20))})}function Zd(t){let e=t.domSelection();if(!e)return;let n=t.cursorWrapper.dom,r=n.nodeName=="IMG";r?e.collapse(n.parentNode,G(n)+1):e.collapse(n,0),!r&&!t.state.selection.visible&&se&&_e<=11&&(n.disabled=!0,n.disabled=!1)}function Cl(t,e){if(e instanceof T){let n=t.docView.descAt(e.from);n!=t.lastSelectedViewDesc&&(ui(t),n&&n.selectNode(),t.lastSelectedViewDesc=n)}else ui(t)}function ui(t){t.lastSelectedViewDesc&&(t.lastSelectedViewDesc.parent&&t.lastSelectedViewDesc.deselectNode(),t.lastSelectedViewDesc=void 0)}function is(t,e,n,r){return t.someProp("createSelectionBetween",s=>s(t,e,n))||E.between(e,n,r)}function hi(t){return t.editable&&!t.hasFocus()?!1:Ml(t)}function Ml(t){let e=t.domSelectionRange();if(!e.anchorNode)return!1;try{return t.dom.contains(e.anchorNode.nodeType==3?e.anchorNode.parentNode:e.anchorNode)&&(t.editable||t.dom.contains(e.focusNode.nodeType==3?e.focusNode.parentNode:e.focusNode))}catch{return!1}}function eu(t){let e=t.docView.domFromPos(t.state.selection.anchor,0),n=t.domSelectionRange();return at(e.node,e.offset,n.anchorNode,n.anchorOffset)}function Nr(t,e){let{$anchor:n,$head:r}=t.selection,s=e>0?n.max(r):n.min(r),i=s.parent.inlineContent?s.depth?t.doc.resolve(e>0?s.after():s.before()):null:s;return i&&N.findFrom(i,e)}function Le(t,e){return t.dispatch(t.state.tr.setSelection(e).scrollIntoView()),!0}function fi(t,e,n){let r=t.state.selection;if(r instanceof E)if(n.indexOf("s")>-1){let{$head:s}=r,i=s.textOffset?null:e<0?s.nodeBefore:s.nodeAfter;if(!i||i.isText||!i.isLeaf)return!1;let o=t.state.doc.resolve(s.pos+i.nodeSize*(e<0?-1:1));return Le(t,new E(r.$anchor,o))}else if(r.empty){if(t.endOfTextblock(e>0?"forward":"backward")){let s=Nr(t.state,e);return s&&s instanceof T?Le(t,s):!1}else if(!(ae&&n.indexOf("m")>-1)){let s=r.$head,i=s.textOffset?null:e<0?s.nodeBefore:s.nodeAfter,o;if(!i||i.isText)return!1;let l=e<0?s.pos-i.nodeSize:s.pos;return i.isAtom||(o=t.docView.descAt(l))&&!o.contentDOM?T.isSelectable(i)?Le(t,new T(e<0?t.state.doc.resolve(s.pos-i.nodeSize):s)):Gt?Le(t,new E(t.state.doc.resolve(e<0?l:l+i.nodeSize))):!1:!1}}else return!1;else{if(r instanceof T&&r.node.isInline)return Le(t,new E(e>0?r.$to:r.$from));{let s=Nr(t.state,e);return s?Le(t,s):!1}}}function En(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function $t(t,e){let n=t.pmViewDesc;return n&&n.size==0&&(e<0||t.nextSibling||t.nodeName!="BR")}function mt(t,e){return e<0?tu(t):nu(t)}function tu(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let s,i,o=!1;for(ue&&n.nodeType==1&&r0){if(n.nodeType!=1)break;{let l=n.childNodes[r-1];if($t(l,-1))s=n,i=--r;else if(l.nodeType==3)n=l,r=n.nodeValue.length;else break}}else{if(vl(n))break;{let l=n.previousSibling;for(;l&&$t(l,-1);)s=n.parentNode,i=G(l),l=l.previousSibling;if(l)n=l,r=En(n);else{if(n=n.parentNode,n==t.dom)break;r=0}}}o?Or(t,n,r):s&&Or(t,s,i)}function nu(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let s=En(n),i,o;for(;;)if(r{t.state==s&&Re(t)},50)}function pi(t,e){let n=t.state.doc.resolve(e);if(!(Y||dl)&&n.parent.inlineContent){let s=t.coordsAtPos(e);if(e>n.start()){let i=t.coordsAtPos(e-1),o=(i.top+i.bottom)/2;if(o>s.top&&o1)return i.lefts.top&&o1)return i.left>s.left?"ltr":"rtl"}}return getComputedStyle(t.dom).direction=="rtl"?"rtl":"ltr"}function mi(t,e,n){let r=t.state.selection;if(r instanceof E&&!r.empty||n.indexOf("s")>-1||ae&&n.indexOf("m")>-1)return!1;let{$from:s,$to:i}=r;if(!s.parent.inlineContent||t.endOfTextblock(e<0?"up":"down")){let o=Nr(t.state,e);if(o&&o instanceof T)return Le(t,o)}if(!s.parent.inlineContent){let o=e<0?s:i,l=r instanceof le?N.near(o,e):N.findFrom(o,e);return l?Le(t,l):!1}return!1}function gi(t,e){if(!(t.state.selection instanceof E))return!0;let{$head:n,$anchor:r,empty:s}=t.state.selection;if(!n.sameParent(r))return!0;if(!s)return!1;if(t.endOfTextblock(e>0?"forward":"backward"))return!0;let i=!n.textOffset&&(e<0?n.nodeBefore:n.nodeAfter);if(i&&!i.isText){let o=t.state.tr;return e<0?o.delete(n.pos-i.nodeSize,n.pos):o.delete(n.pos,n.pos+i.nodeSize),t.dispatch(o),!0}return!1}function yi(t,e,n){t.domObserver.stop(),e.contentEditable=n,t.domObserver.start()}function iu(t){if(!Z||t.state.selection.$head.parentOffset>0)return!1;let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(e&&e.nodeType==1&&n==0&&e.firstChild&&e.firstChild.contentEditable=="false"){let r=e.firstChild;yi(t,r,"true"),setTimeout(()=>yi(t,r,"false"),20)}return!1}function ou(t){let e="";return t.ctrlKey&&(e+="c"),t.metaKey&&(e+="m"),t.altKey&&(e+="a"),t.shiftKey&&(e+="s"),e}function lu(t,e){let n=e.keyCode,r=ou(e);if(n==8||ae&&n==72&&r=="c")return gi(t,-1)||mt(t,-1);if(n==46&&!e.shiftKey||ae&&n==68&&r=="c")return gi(t,1)||mt(t,1);if(n==13||n==27)return!0;if(n==37||ae&&n==66&&r=="c"){let s=n==37?pi(t,t.state.selection.from)=="ltr"?-1:1:-1;return fi(t,s,r)||mt(t,s)}else if(n==39||ae&&n==70&&r=="c"){let s=n==39?pi(t,t.state.selection.from)=="ltr"?1:-1:1;return fi(t,s,r)||mt(t,s)}else{if(n==38||ae&&n==80&&r=="c")return mi(t,-1,r)||mt(t,-1);if(n==40||ae&&n==78&&r=="c")return iu(t)||mi(t,1,r)||mt(t,1);if(r==(ae?"m":"c")&&(n==66||n==73||n==89||n==90))return!0}return!1}function ls(t,e){t.someProp("transformCopied",f=>{e=f(e,t)});let n=[],{content:r,openStart:s,openEnd:i}=e;for(;s>1&&i>1&&r.childCount==1&&r.firstChild.childCount==1;){s--,i--;let f=r.firstChild;n.push(f.type.name,f.attrs!=f.type.defaultAttrs?f.attrs:null),r=f.content}let o=t.someProp("clipboardSerializer")||ft.fromSchema(t.state.schema),l=Rl(),a=l.createElement("div");a.appendChild(o.serializeFragment(r,{document:l}));let c=a.firstChild,d,u=0;for(;c&&c.nodeType==1&&(d=Ol[c.nodeName.toLowerCase()]);){for(let f=d.length-1;f>=0;f--){let p=l.createElement(d[f]);for(;a.firstChild;)p.appendChild(a.firstChild);a.appendChild(p),u++}c=a.firstChild}c&&c.nodeType==1&&c.setAttribute("data-pm-slice",`${s} ${i}${u?` -${u}`:""} ${JSON.stringify(n)}`);let h=t.someProp("clipboardTextSerializer",f=>f(e,t))||e.content.textBetween(0,e.content.size,` + +`);return{dom:a,text:h,slice:e}}function Tl(t,e,n,r,s){let i=s.parent.type.spec.code,o,l;if(!n&&!e)return null;let a=!!e&&(r||i||!n);if(a){if(t.someProp("transformPastedText",h=>{e=h(e,i||r,t)}),i)return l=new x(b.from(t.state.schema.text(e.replace(/\r\n?/g,` +`))),0,0),t.someProp("transformPasted",h=>{l=h(l,t,!0)}),l;let u=t.someProp("clipboardTextParser",h=>h(e,s,r,t));if(u)l=u;else{let h=s.marks(),{schema:f}=t.state,p=ft.fromSchema(f);o=document.createElement("div"),e.split(/(?:\r\n?|\n)+/).forEach(m=>{let g=o.appendChild(document.createElement("p"));m&&g.appendChild(p.serializeNode(f.text(m,h)))})}}else t.someProp("transformPastedHTML",u=>{n=u(n,t)}),o=uu(n),Gt&&hu(o);let c=o&&o.querySelector("[data-pm-slice]"),d=c&&/^(\d+) (\d+)(?: -(\d+))? (.*)/.exec(c.getAttribute("data-pm-slice")||"");if(d&&d[3])for(let u=+d[3];u>0;u--){let h=o.firstChild;for(;h&&h.nodeType!=1;)h=h.nextSibling;if(!h)break;o=h}if(l||(l=(t.someProp("clipboardParser")||t.someProp("domParser")||Ne.fromSchema(t.state.schema)).parseSlice(o,{preserveWhitespace:!!(a||d),context:s,ruleFromNode(h){return h.nodeName=="BR"&&!h.nextSibling&&h.parentNode&&!au.test(h.parentNode.nodeName)?{ignore:!0}:null}})),d)l=fu(bi(l,+d[1],+d[2]),d[4]);else if(l=x.maxOpen(cu(l.content,s),!0),l.openStart||l.openEnd){let u=0,h=0;for(let f=l.content.firstChild;u{l=u(l,t,a)}),l}const au=/^(a|abbr|acronym|b|cite|code|del|em|i|ins|kbd|label|output|q|ruby|s|samp|span|strong|sub|sup|time|u|tt|var)$/i;function cu(t,e){if(t.childCount<2)return t;for(let n=e.depth;n>=0;n--){let s=e.node(n).contentMatchAt(e.index(n)),i,o=[];if(t.forEach(l=>{if(!o)return;let a=s.findWrapping(l.type),c;if(!a)return o=null;if(c=o.length&&i.length&&Al(a,i,l,o[o.length-1],0))o[o.length-1]=c;else{o.length&&(o[o.length-1]=Nl(o[o.length-1],i.length));let d=El(l,a);o.push(d),s=s.matchType(d.type),i=a}}),o)return b.from(o)}return t}function El(t,e,n=0){for(let r=e.length-1;r>=n;r--)t=e[r].create(null,b.from(t));return t}function Al(t,e,n,r,s){if(s1&&(i=0),s=n&&(l=e<0?o.contentMatchAt(0).fillBefore(l,i<=s).append(l):l.append(o.contentMatchAt(o.childCount).fillBefore(b.empty,!0))),t.replaceChild(e<0?0:t.childCount-1,o.copy(l))}function bi(t,e,n){return en})),lr.createHTML(t)):t}function uu(t){let e=/^(\s*]*>)*/.exec(t);e&&(t=t.slice(e[0].length));let n=Rl().createElement("div"),r=/<([a-z][^>\s]+)/i.exec(t),s;if((s=r&&Ol[r[1].toLowerCase()])&&(t=s.map(i=>"<"+i+">").join("")+t+s.map(i=>"").reverse().join("")),n.innerHTML=du(t),s)for(let i=0;i=0;l-=2){let a=n.nodes[r[l]];if(!a||a.hasRequiredAttrs())break;s=b.from(a.create(r[l+1],s)),i++,o++}return new x(s,i,o)}const ne={},re={},pu={touchstart:!0,touchmove:!0};class mu{constructor(){this.shiftKey=!1,this.mouseDown=null,this.lastKeyCode=null,this.lastKeyCodeTime=0,this.lastClick={time:0,x:0,y:0,type:"",button:0},this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastIOSEnter=0,this.lastIOSEnterFallbackTimeout=-1,this.lastFocus=0,this.lastTouch=0,this.lastChromeDelete=0,this.composing=!1,this.compositionNode=null,this.composingTimeout=-1,this.compositionNodes=[],this.compositionEndedAt=-2e8,this.compositionID=1,this.badSafariComposition=!1,this.compositionPendingChanges=0,this.domChangeCount=0,this.eventHandlers=Object.create(null),this.hideSelectionGuard=null}}function gu(t){for(let e in ne){let n=ne[e];t.dom.addEventListener(e,t.input.eventHandlers[e]=r=>{bu(t,r)&&!as(t,r)&&(t.editable||!(r.type in re))&&n(t,r)},pu[e]?{passive:!0}:void 0)}Z&&t.dom.addEventListener("input",()=>null),Dr(t)}function Ve(t,e){t.input.lastSelectionOrigin=e,t.input.lastSelectionTime=Date.now()}function yu(t){t.domObserver.stop();for(let e in t.input.eventHandlers)t.dom.removeEventListener(e,t.input.eventHandlers[e]);clearTimeout(t.input.composingTimeout),clearTimeout(t.input.lastIOSEnterFallbackTimeout)}function Dr(t){t.someProp("handleDOMEvents",e=>{for(let n in e)t.input.eventHandlers[n]||t.dom.addEventListener(n,t.input.eventHandlers[n]=r=>as(t,r))})}function as(t,e){return t.someProp("handleDOMEvents",n=>{let r=n[e.type];return r?r(t,e)||e.defaultPrevented:!1})}function bu(t,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let n=e.target;n!=t.dom;n=n.parentNode)if(!n||n.nodeType==11||n.pmViewDesc&&n.pmViewDesc.stopEvent(e))return!1;return!0}function ku(t,e){!as(t,e)&&ne[e.type]&&(t.editable||!(e.type in re))&&ne[e.type](t,e)}re.keydown=(t,e)=>{let n=e;if(t.input.shiftKey=n.keyCode==16||n.shiftKey,!Il(t,n)&&(t.input.lastKeyCode=n.keyCode,t.input.lastKeyCodeTime=Date.now(),!(Ae&&Y&&n.keyCode==13)))if(n.keyCode!=229&&t.domObserver.forceFlush(),Mt&&n.keyCode==13&&!n.ctrlKey&&!n.altKey&&!n.metaKey){let r=Date.now();t.input.lastIOSEnter=r,t.input.lastIOSEnterFallbackTimeout=setTimeout(()=>{t.input.lastIOSEnter==r&&(t.someProp("handleKeyDown",s=>s(t,Ge(13,"Enter"))),t.input.lastIOSEnter=0)},200)}else t.someProp("handleKeyDown",r=>r(t,n))||lu(t,n)?n.preventDefault():Ve(t,"key")};re.keyup=(t,e)=>{e.keyCode==16&&(t.input.shiftKey=!1)};re.keypress=(t,e)=>{let n=e;if(Il(t,n)||!n.charCode||n.ctrlKey&&!n.altKey||ae&&n.metaKey)return;if(t.someProp("handleKeyPress",s=>s(t,n))){n.preventDefault();return}let r=t.state.selection;if(!(r instanceof E)||!r.$from.sameParent(r.$to)){let s=String.fromCharCode(n.charCode),i=()=>t.state.tr.insertText(s).scrollIntoView();!/[\r\n]/.test(s)&&!t.someProp("handleTextInput",o=>o(t,r.$from.pos,r.$to.pos,s,i))&&t.dispatch(i()),n.preventDefault()}};function Fn(t){return{left:t.clientX,top:t.clientY}}function wu(t,e){let n=e.x-t.clientX,r=e.y-t.clientY;return n*n+r*r<100}function cs(t,e,n,r,s){if(r==-1)return!1;let i=t.state.doc.resolve(r);for(let o=i.depth+1;o>0;o--)if(t.someProp(e,l=>o>i.depth?l(t,n,i.nodeAfter,i.before(o),s,!0):l(t,n,i.node(o),i.before(o),s,!1)))return!0;return!1}function wt(t,e,n){if(t.focused||t.focus(),t.state.selection.eq(e))return;let r=t.state.tr.setSelection(e);r.setMeta("pointer",!0),t.dispatch(r)}function xu(t,e){if(e==-1)return!1;let n=t.state.doc.resolve(e),r=n.nodeAfter;return r&&r.isAtom&&T.isSelectable(r)?(wt(t,new T(n)),!0):!1}function Su(t,e){if(e==-1)return!1;let n=t.state.selection,r,s;n instanceof T&&(r=n.node);let i=t.state.doc.resolve(e);for(let o=i.depth+1;o>0;o--){let l=o>i.depth?i.nodeAfter:i.node(o);if(T.isSelectable(l)){r&&n.$from.depth>0&&o>=n.$from.depth&&i.before(n.$from.depth+1)==n.$from.pos?s=i.before(n.$from.depth):s=i.before(o);break}}return s!=null?(wt(t,T.create(t.state.doc,s)),!0):!1}function Cu(t,e,n,r,s){return cs(t,"handleClickOn",e,n,r)||t.someProp("handleClick",i=>i(t,e,r))||(s?Su(t,n):xu(t,n))}function Mu(t,e,n,r){return cs(t,"handleDoubleClickOn",e,n,r)||t.someProp("handleDoubleClick",s=>s(t,e,r))}function vu(t,e,n,r){return cs(t,"handleTripleClickOn",e,n,r)||t.someProp("handleTripleClick",s=>s(t,e,r))||Tu(t,n,r)}function Tu(t,e,n){if(n.button!=0)return!1;let r=t.state.doc;if(e==-1)return r.inlineContent?(wt(t,E.create(r,0,r.content.size)),!0):!1;let s=r.resolve(e);for(let i=s.depth+1;i>0;i--){let o=i>s.depth?s.nodeAfter:s.node(i),l=s.before(i);if(o.inlineContent)wt(t,E.create(r,l+1,l+1+o.content.size));else if(T.isSelectable(o))wt(t,T.create(r,l));else continue;return!0}}function ds(t){return An(t)}const Dl=ae?"metaKey":"ctrlKey";ne.mousedown=(t,e)=>{let n=e;t.input.shiftKey=n.shiftKey;let r=ds(t),s=Date.now(),i="singleClick";s-t.input.lastClick.time<500&&wu(n,t.input.lastClick)&&!n[Dl]&&t.input.lastClick.button==n.button&&(t.input.lastClick.type=="singleClick"?i="doubleClick":t.input.lastClick.type=="doubleClick"&&(i="tripleClick")),t.input.lastClick={time:s,x:n.clientX,y:n.clientY,type:i,button:n.button};let o=t.posAtCoords(Fn(n));o&&(i=="singleClick"?(t.input.mouseDown&&t.input.mouseDown.done(),t.input.mouseDown=new Eu(t,o,n,!!r)):(i=="doubleClick"?Mu:vu)(t,o.pos,o.inside,n)?n.preventDefault():Ve(t,"pointer"))};class Eu{constructor(e,n,r,s){this.view=e,this.pos=n,this.event=r,this.flushed=s,this.delayedSelectionSync=!1,this.mightDrag=null,this.startDoc=e.state.doc,this.selectNode=!!r[Dl],this.allowDefault=r.shiftKey;let i,o;if(n.inside>-1)i=e.state.doc.nodeAt(n.inside),o=n.inside;else{let d=e.state.doc.resolve(n.pos);i=d.parent,o=d.depth?d.before():0}const l=s?null:r.target,a=l?e.docView.nearestDesc(l,!0):null;this.target=a&&a.nodeDOM.nodeType==1?a.nodeDOM:null;let{selection:c}=e.state;(r.button==0&&i.type.spec.draggable&&i.type.spec.selectable!==!1||c instanceof T&&c.from<=o&&c.to>o)&&(this.mightDrag={node:i,pos:o,addAttr:!!(this.target&&!this.target.draggable),setUneditable:!!(this.target&&ue&&!this.target.hasAttribute("contentEditable"))}),this.target&&this.mightDrag&&(this.mightDrag.addAttr||this.mightDrag.setUneditable)&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&(this.target.draggable=!0),this.mightDrag.setUneditable&&setTimeout(()=>{this.view.input.mouseDown==this&&this.target.setAttribute("contentEditable","false")},20),this.view.domObserver.start()),e.root.addEventListener("mouseup",this.up=this.up.bind(this)),e.root.addEventListener("mousemove",this.move=this.move.bind(this)),Ve(e,"pointer")}done(){this.view.root.removeEventListener("mouseup",this.up),this.view.root.removeEventListener("mousemove",this.move),this.mightDrag&&this.target&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&this.target.removeAttribute("draggable"),this.mightDrag.setUneditable&&this.target.removeAttribute("contentEditable"),this.view.domObserver.start()),this.delayedSelectionSync&&setTimeout(()=>Re(this.view)),this.view.input.mouseDown=null}up(e){if(this.done(),!this.view.dom.contains(e.target))return;let n=this.pos;this.view.state.doc!=this.startDoc&&(n=this.view.posAtCoords(Fn(e))),this.updateAllowDefault(e),this.allowDefault||!n?Ve(this.view,"pointer"):Cu(this.view,n.pos,n.inside,e,this.selectNode)?e.preventDefault():e.button==0&&(this.flushed||Z&&this.mightDrag&&!this.mightDrag.node.isAtom||Y&&!this.view.state.selection.visible&&Math.min(Math.abs(n.pos-this.view.state.selection.from),Math.abs(n.pos-this.view.state.selection.to))<=2)?(wt(this.view,N.near(this.view.state.doc.resolve(n.pos))),e.preventDefault()):Ve(this.view,"pointer")}move(e){this.updateAllowDefault(e),Ve(this.view,"pointer"),e.buttons==0&&this.done()}updateAllowDefault(e){!this.allowDefault&&(Math.abs(this.event.x-e.clientX)>4||Math.abs(this.event.y-e.clientY)>4)&&(this.allowDefault=!0)}}ne.touchstart=t=>{t.input.lastTouch=Date.now(),ds(t),Ve(t,"pointer")};ne.touchmove=t=>{t.input.lastTouch=Date.now(),Ve(t,"pointer")};ne.contextmenu=t=>ds(t);function Il(t,e){return t.composing?!0:Z&&Math.abs(e.timeStamp-t.input.compositionEndedAt)<500?(t.input.compositionEndedAt=-2e8,!0):!1}const Au=Ae?5e3:-1;re.compositionstart=re.compositionupdate=t=>{if(!t.composing){t.domObserver.flush();let{state:e}=t,n=e.selection.$to;if(e.selection instanceof E&&(e.storedMarks||!n.textOffset&&n.parentOffset&&n.nodeBefore.marks.some(r=>r.type.spec.inclusive===!1)||Y&&dl&&Nu(t)))t.markCursor=t.state.storedMarks||n.marks(),An(t,!0),t.markCursor=null;else if(An(t,!e.selection.empty),ue&&e.selection.empty&&n.parentOffset&&!n.textOffset&&n.nodeBefore.marks.length){let r=t.domSelectionRange();for(let s=r.focusNode,i=r.focusOffset;s&&s.nodeType==1&&i!=0;){let o=i<0?s.lastChild:s.childNodes[i-1];if(!o)break;if(o.nodeType==3){let l=t.domSelection();l&&l.collapse(o,o.nodeValue.length);break}else s=o,i=-1}}t.input.composing=!0}Pl(t,Au)};function Nu(t){let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(!e||e.nodeType!=1||n>=e.childNodes.length)return!1;let r=e.childNodes[n];return r.nodeType==1&&r.contentEditable=="false"}re.compositionend=(t,e)=>{t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=e.timeStamp,t.input.compositionPendingChanges=t.domObserver.pendingRecords().length?t.input.compositionID:0,t.input.compositionNode=null,t.input.badSafariComposition?t.domObserver.forceFlush():t.input.compositionPendingChanges&&Promise.resolve().then(()=>t.domObserver.flush()),t.input.compositionID++,Pl(t,20))};function Pl(t,e){clearTimeout(t.input.composingTimeout),e>-1&&(t.input.composingTimeout=setTimeout(()=>An(t),e))}function Ll(t){for(t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=Ru());t.input.compositionNodes.length>0;)t.input.compositionNodes.pop().markParentsDirty()}function Ou(t){let e=t.domSelectionRange();if(!e.focusNode)return null;let n=Sd(e.focusNode,e.focusOffset),r=Cd(e.focusNode,e.focusOffset);if(n&&r&&n!=r){let s=r.pmViewDesc,i=t.domObserver.lastChangedTextNode;if(n==i||r==i)return i;if(!s||!s.isText(r.nodeValue))return r;if(t.input.compositionNode==r){let o=n.pmViewDesc;if(!(!o||!o.isText(n.nodeValue)))return r}}return n||r}function Ru(){let t=document.createEvent("Event");return t.initEvent("event",!0,!0),t.timeStamp}function An(t,e=!1){if(!(Ae&&t.domObserver.flushingSoon>=0)){if(t.domObserver.forceFlush(),Ll(t),e||t.docView&&t.docView.dirty){let n=ss(t),r=t.state.selection;return n&&!n.eq(r)?t.dispatch(t.state.tr.setSelection(n)):(t.markCursor||e)&&!r.$from.node(r.$from.sharedDepth(r.to)).inlineContent?t.dispatch(t.state.tr.deleteSelection()):t.updateState(t.state),!0}return!1}}function Du(t,e){if(!t.dom.parentNode)return;let n=t.dom.parentNode.appendChild(document.createElement("div"));n.appendChild(e),n.style.cssText="position: fixed; left: -10000px; top: 10px";let r=getSelection(),s=document.createRange();s.selectNodeContents(e),t.dom.blur(),r.removeAllRanges(),r.addRange(s),setTimeout(()=>{n.parentNode&&n.parentNode.removeChild(n),t.focus()},50)}const Wt=se&&_e<15||Mt&&Ed<604;ne.copy=re.cut=(t,e)=>{let n=e,r=t.state.selection,s=n.type=="cut";if(r.empty)return;let i=Wt?null:n.clipboardData,o=r.content(),{dom:l,text:a}=ls(t,o);i?(n.preventDefault(),i.clearData(),i.setData("text/html",l.innerHTML),i.setData("text/plain",a)):Du(t,l),s&&t.dispatch(t.state.tr.deleteSelection().scrollIntoView().setMeta("uiEvent","cut"))};function Iu(t){return t.openStart==0&&t.openEnd==0&&t.content.childCount==1?t.content.firstChild:null}function Pu(t,e){if(!t.dom.parentNode)return;let n=t.input.shiftKey||t.state.selection.$from.parent.type.spec.code,r=t.dom.parentNode.appendChild(document.createElement(n?"textarea":"div"));n||(r.contentEditable="true"),r.style.cssText="position: fixed; left: -10000px; top: 10px",r.focus();let s=t.input.shiftKey&&t.input.lastKeyCode!=45;setTimeout(()=>{t.focus(),r.parentNode&&r.parentNode.removeChild(r),n?jt(t,r.value,null,s,e):jt(t,r.textContent,r.innerHTML,s,e)},50)}function jt(t,e,n,r,s){let i=Tl(t,e,n,r,t.state.selection.$from);if(t.someProp("handlePaste",a=>a(t,s,i||x.empty)))return!0;if(!i)return!1;let o=Iu(i),l=o?t.state.tr.replaceSelectionWith(o,r):t.state.tr.replaceSelection(i);return t.dispatch(l.scrollIntoView().setMeta("paste",!0).setMeta("uiEvent","paste")),!0}function zl(t){let e=t.getData("text/plain")||t.getData("Text");if(e)return e;let n=t.getData("text/uri-list");return n?n.replace(/\r?\n/g," "):""}re.paste=(t,e)=>{let n=e;if(t.composing&&!Ae)return;let r=Wt?null:n.clipboardData,s=t.input.shiftKey&&t.input.lastKeyCode!=45;r&&jt(t,zl(r),r.getData("text/html"),s,n)?n.preventDefault():Pu(t,n)};class Bl{constructor(e,n,r){this.slice=e,this.move=n,this.node=r}}const Lu=ae?"altKey":"ctrlKey";function $l(t,e){let n=t.someProp("dragCopies",r=>!r(e));return n??!e[Lu]}ne.dragstart=(t,e)=>{let n=e,r=t.input.mouseDown;if(r&&r.done(),!n.dataTransfer)return;let s=t.state.selection,i=s.empty?null:t.posAtCoords(Fn(n)),o;if(!(i&&i.pos>=s.from&&i.pos<=(s instanceof T?s.to-1:s.to))){if(r&&r.mightDrag)o=T.create(t.state.doc,r.mightDrag.pos);else if(n.target&&n.target.nodeType==1){let u=t.docView.nearestDesc(n.target,!0);u&&u.node.type.spec.draggable&&u!=t.docView&&(o=T.create(t.state.doc,u.posBefore))}}let l=(o||t.state.selection).content(),{dom:a,text:c,slice:d}=ls(t,l);(!n.dataTransfer.files.length||!Y||cl>120)&&n.dataTransfer.clearData(),n.dataTransfer.setData(Wt?"Text":"text/html",a.innerHTML),n.dataTransfer.effectAllowed="copyMove",Wt||n.dataTransfer.setData("text/plain",c),t.dragging=new Bl(d,$l(t,n),o)};ne.dragend=t=>{let e=t.dragging;window.setTimeout(()=>{t.dragging==e&&(t.dragging=null)},50)};re.dragover=re.dragenter=(t,e)=>e.preventDefault();re.drop=(t,e)=>{try{zu(t,e,t.dragging)}finally{t.dragging=null}};function zu(t,e,n){if(!e.dataTransfer)return;let r=t.posAtCoords(Fn(e));if(!r)return;let s=t.state.doc.resolve(r.pos),i=n&&n.slice;i?t.someProp("transformPasted",f=>{i=f(i,t,!1)}):i=Tl(t,zl(e.dataTransfer),Wt?null:e.dataTransfer.getData("text/html"),!1,s);let o=!!(n&&$l(t,e));if(t.someProp("handleDrop",f=>f(t,e,i||x.empty,o))){e.preventDefault();return}if(!i)return;e.preventDefault();let l=i?_o(t.state.doc,s.pos,i):s.pos;l==null&&(l=s.pos);let a=t.state.tr;if(o){let{node:f}=n;f?f.replace(a):a.deleteSelection()}let c=a.mapping.map(l),d=i.openStart==0&&i.openEnd==0&&i.content.childCount==1,u=a.doc;if(d?a.replaceRangeWith(c,c,i.content.firstChild):a.replaceRange(c,c,i),a.doc.eq(u))return;let h=a.doc.resolve(c);if(d&&T.isSelectable(i.content.firstChild)&&h.nodeAfter&&h.nodeAfter.sameMarkup(i.content.firstChild))a.setSelection(new T(h));else{let f=a.mapping.map(l);a.mapping.maps[a.mapping.maps.length-1].forEach((p,m,g,y)=>f=y),a.setSelection(is(t,h,a.doc.resolve(f)))}t.focus(),t.dispatch(a.setMeta("uiEvent","drop"))}ne.focus=t=>{t.input.lastFocus=Date.now(),t.focused||(t.domObserver.stop(),t.dom.classList.add("ProseMirror-focused"),t.domObserver.start(),t.focused=!0,setTimeout(()=>{t.docView&&t.hasFocus()&&!t.domObserver.currentSelection.eq(t.domSelectionRange())&&Re(t)},20))};ne.blur=(t,e)=>{let n=e;t.focused&&(t.domObserver.stop(),t.dom.classList.remove("ProseMirror-focused"),t.domObserver.start(),n.relatedTarget&&t.dom.contains(n.relatedTarget)&&t.domObserver.currentSelection.clear(),t.focused=!1)};ne.beforeinput=(t,e)=>{if(Y&&Ae&&e.inputType=="deleteContentBackward"){t.domObserver.flushSoon();let{domChangeCount:r}=t.input;setTimeout(()=>{if(t.input.domChangeCount!=r||(t.dom.blur(),t.focus(),t.someProp("handleKeyDown",i=>i(t,Ge(8,"Backspace")))))return;let{$cursor:s}=t.state.selection;s&&s.pos>0&&t.dispatch(t.state.tr.delete(s.pos-1,s.pos).scrollIntoView())},50)}};for(let t in re)ne[t]=re[t];function qt(t,e){if(t==e)return!0;for(let n in t)if(t[n]!==e[n])return!1;for(let n in e)if(!(n in t))return!1;return!0}class Nn{constructor(e,n){this.toDOM=e,this.spec=n||nt,this.side=this.spec.side||0}map(e,n,r,s){let{pos:i,deleted:o}=e.mapResult(n.from+s,this.side<0?-1:1);return o?null:new U(i-r,i-r,this)}valid(){return!0}eq(e){return this==e||e instanceof Nn&&(this.spec.key&&this.spec.key==e.spec.key||this.toDOM==e.toDOM&&qt(this.spec,e.spec))}destroy(e){this.spec.destroy&&this.spec.destroy(e)}}class je{constructor(e,n){this.attrs=e,this.spec=n||nt}map(e,n,r,s){let i=e.map(n.from+s,this.spec.inclusiveStart?-1:1)-r,o=e.map(n.to+s,this.spec.inclusiveEnd?1:-1)-r;return i>=o?null:new U(i,o,this)}valid(e,n){return n.from=e&&(!i||i(l.spec))&&r.push(l.copy(l.from+s,l.to+s))}for(let o=0;oe){let l=this.children[o]+1;this.children[o+2].findInner(e-l,n-l,r,s+l,i)}}map(e,n,r){return this==Q||e.maps.length==0?this:this.mapInner(e,n,0,0,r||nt)}mapInner(e,n,r,s,i){let o;for(let l=0;l{let c=a+r,d;if(d=Fl(n,l,c)){for(s||(s=this.children.slice());il&&u.to=e){this.children[l]==e&&(r=this.children[l+2]);break}let i=e+1,o=i+n.content.size;for(let l=0;li&&a.type instanceof je){let c=Math.max(i,a.from)-i,d=Math.min(o,a.to)-i;cs.map(e,n,nt));return Be.from(r)}forChild(e,n){if(n.isLeaf)return L.empty;let r=[];for(let s=0;sn instanceof L)?e:e.reduce((n,r)=>n.concat(r instanceof L?r:r.members),[]))}}forEachSet(e){for(let n=0;n{let g=m-p-(f-h);for(let y=0;yk+d-u)continue;let w=l[y]+d-u;f>=w?l[y+1]=h<=w?-2:-1:h>=d&&g&&(l[y]+=g,l[y+1]+=g)}u+=g}),d=n.maps[c].map(d,-1)}let a=!1;for(let c=0;c=r.content.size){a=!0;continue}let h=n.map(t[c+1]+i,-1),f=h-s,{index:p,offset:m}=r.content.findIndex(u),g=r.maybeChild(p);if(g&&m==u&&m+g.nodeSize==f){let y=l[c+2].mapInner(n,g,d+1,t[c]+i+1,o);y!=Q?(l[c]=u,l[c+1]=f,l[c+2]=y):(l[c+1]=-2,a=!0)}else a=!0}if(a){let c=$u(l,t,e,n,s,i,o),d=On(c,r,0,o);e=d.local;for(let u=0;un&&o.to{let c=Fl(t,l,a+n);if(c){i=!0;let d=On(c,l,n+a+1,r);d!=Q&&s.push(a,a+l.nodeSize,d)}});let o=Hl(i?Vl(t):t,-n).sort(rt);for(let l=0;l0;)e++;t.splice(e,0,n)}function ar(t){let e=[];return t.someProp("decorations",n=>{let r=n(t.state);r&&r!=Q&&e.push(r)}),t.cursorWrapper&&e.push(L.create(t.state.doc,[t.cursorWrapper.deco])),Be.from(e)}const Hu={childList:!0,characterData:!0,characterDataOldValue:!0,attributes:!0,attributeOldValue:!0,subtree:!0},Fu=se&&_e<=11;class Vu{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}set(e){this.anchorNode=e.anchorNode,this.anchorOffset=e.anchorOffset,this.focusNode=e.focusNode,this.focusOffset=e.focusOffset}clear(){this.anchorNode=this.focusNode=null}eq(e){return e.anchorNode==this.anchorNode&&e.anchorOffset==this.anchorOffset&&e.focusNode==this.focusNode&&e.focusOffset==this.focusOffset}}class _u{constructor(e,n){this.view=e,this.handleDOMChange=n,this.queue=[],this.flushingSoon=-1,this.observer=null,this.currentSelection=new Vu,this.onCharData=null,this.suppressingSelectionUpdates=!1,this.lastChangedTextNode=null,this.observer=window.MutationObserver&&new window.MutationObserver(r=>{for(let s=0;ss.type=="childList"&&s.removedNodes.length||s.type=="characterData"&&s.oldValue.length>s.target.nodeValue.length)?this.flushSoon():Z&&e.composing&&r.some(s=>s.type=="childList"&&s.target.nodeName=="TR")?(e.input.badSafariComposition=!0,this.flushSoon()):this.flush()}),Fu&&(this.onCharData=r=>{this.queue.push({target:r.target,type:"characterData",oldValue:r.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this)}flushSoon(){this.flushingSoon<0&&(this.flushingSoon=window.setTimeout(()=>{this.flushingSoon=-1,this.flush()},20))}forceFlush(){this.flushingSoon>-1&&(window.clearTimeout(this.flushingSoon),this.flushingSoon=-1,this.flush())}start(){this.observer&&(this.observer.takeRecords(),this.observer.observe(this.view.dom,Hu)),this.onCharData&&this.view.dom.addEventListener("DOMCharacterDataModified",this.onCharData),this.connectSelection()}stop(){if(this.observer){let e=this.observer.takeRecords();if(e.length){for(let n=0;nthis.flush(),20)}this.observer.disconnect()}this.onCharData&&this.view.dom.removeEventListener("DOMCharacterDataModified",this.onCharData),this.disconnectSelection()}connectSelection(){this.view.dom.ownerDocument.addEventListener("selectionchange",this.onSelectionChange)}disconnectSelection(){this.view.dom.ownerDocument.removeEventListener("selectionchange",this.onSelectionChange)}suppressSelectionUpdates(){this.suppressingSelectionUpdates=!0,setTimeout(()=>this.suppressingSelectionUpdates=!1,50)}onSelectionChange(){if(hi(this.view)){if(this.suppressingSelectionUpdates)return Re(this.view);if(se&&_e<=11&&!this.view.state.selection.empty){let e=this.view.domSelectionRange();if(e.focusNode&&at(e.focusNode,e.focusOffset,e.anchorNode,e.anchorOffset))return this.flushSoon()}this.flush()}}setCurSelection(){this.currentSelection.set(this.view.domSelectionRange())}ignoreSelectionChange(e){if(!e.focusNode)return!0;let n=new Set,r;for(let i=e.focusNode;i;i=Ct(i))n.add(i);for(let i=e.anchorNode;i;i=Ct(i))if(n.has(i)){r=i;break}let s=r&&this.view.docView.nearestDesc(r);if(s&&s.ignoreMutation({type:"selection",target:r.nodeType==3?r.parentNode:r}))return this.setCurSelection(),!0}pendingRecords(){if(this.observer)for(let e of this.observer.takeRecords())this.queue.push(e);return this.queue}flush(){let{view:e}=this;if(!e.docView||this.flushingSoon>-1)return;let n=this.pendingRecords();n.length&&(this.queue=[]);let r=e.domSelectionRange(),s=!this.suppressingSelectionUpdates&&!this.currentSelection.eq(r)&&hi(e)&&!this.ignoreSelectionChange(r),i=-1,o=-1,l=!1,a=[];if(e.editable)for(let d=0;dd.nodeName=="BR")&&(e.input.lastKeyCode==8||e.input.lastKeyCode==46)){for(let d of a)if(d.nodeName=="BR"&&d.parentNode){let u=d.nextSibling;u&&u.nodeType==1&&u.contentEditable=="false"&&d.parentNode.removeChild(d)}}else if(ue&&a.length){let d=a.filter(u=>u.nodeName=="BR");if(d.length==2){let[u,h]=d;u.parentNode&&u.parentNode.parentNode==h.parentNode?h.remove():u.remove()}else{let{focusNode:u}=this.currentSelection;for(let h of d){let f=h.parentNode;f&&f.nodeName=="LI"&&(!u||qu(e,u)!=f)&&h.remove()}}}let c=null;i<0&&s&&e.input.lastFocus>Date.now()-200&&Math.max(e.input.lastTouch,e.input.lastClick.time)-1||s)&&(i>-1&&(e.docView.markDirty(i,o),Wu(e)),e.input.badSafariComposition&&(e.input.badSafariComposition=!1,Ku(e,a)),this.handleDOMChange(i,o,l,a),e.docView&&e.docView.dirty?e.updateState(e.state):this.currentSelection.eq(r)||Re(e),this.currentSelection.set(r))}registerMutation(e,n){if(n.indexOf(e.target)>-1)return null;let r=this.view.docView.nearestDesc(e.target);if(e.type=="attributes"&&(r==this.view.docView||e.attributeName=="contenteditable"||e.attributeName=="style"&&!e.oldValue&&!e.target.getAttribute("style"))||!r||r.ignoreMutation(e))return null;if(e.type=="childList"){for(let d=0;ds;g--){let y=r.childNodes[g-1],k=y.pmViewDesc;if(y.nodeName=="BR"&&!k){i=g;break}if(!k||k.size)break}let u=t.state.doc,h=t.someProp("domParser")||Ne.fromSchema(t.state.schema),f=u.resolve(o),p=null,m=h.parse(r,{topNode:f.parent,topMatch:f.parent.contentMatchAt(f.index()),topOpen:!0,from:s,to:i,preserveWhitespace:f.parent.type.whitespace=="pre"?"full":!0,findPositions:c,ruleFromNode:Ju,context:f});if(c&&c[0].pos!=null){let g=c[0].pos,y=c[1]&&c[1].pos;y==null&&(y=g),p={anchor:g+o,head:y+o}}return{doc:m,sel:p,from:o,to:l}}function Ju(t){let e=t.pmViewDesc;if(e)return e.parseRule();if(t.nodeName=="BR"&&t.parentNode){if(Z&&/^(ul|ol)$/i.test(t.parentNode.nodeName)){let n=document.createElement("div");return n.appendChild(document.createElement("li")),{skip:n}}else if(t.parentNode.lastChild==t||Z&&/^(tr|table)$/i.test(t.parentNode.nodeName))return{ignore:!0}}else if(t.nodeName=="IMG"&&t.getAttribute("mark-placeholder"))return{ignore:!0};return null}const Xu=/^(a|abbr|acronym|b|bd[io]|big|br|button|cite|code|data(list)?|del|dfn|em|i|img|ins|kbd|label|map|mark|meter|output|q|ruby|s|samp|small|span|strong|su[bp]|time|u|tt|var)$/i;function Gu(t,e,n,r,s){let i=t.input.compositionPendingChanges||(t.composing?t.input.compositionID:0);if(t.input.compositionPendingChanges=0,e<0){let v=t.input.lastSelectionTime>Date.now()-50?t.input.lastSelectionOrigin:null,O=ss(t,v);if(O&&!t.state.selection.eq(O)){if(Y&&Ae&&t.input.lastKeyCode===13&&Date.now()-100Ce(t,Ge(13,"Enter"))))return;let R=t.state.tr.setSelection(O);v=="pointer"?R.setMeta("pointer",!0):v=="key"&&R.scrollIntoView(),i&&R.setMeta("composition",i),t.dispatch(R)}return}let o=t.state.doc.resolve(e),l=o.sharedDepth(n);e=o.before(l+1),n=t.state.doc.resolve(n).after(l+1);let a=t.state.selection,c=Uu(t,e,n),d=t.state.doc,u=d.slice(c.from,c.to),h,f;t.input.lastKeyCode===8&&Date.now()-100Date.now()-225||Ae)&&s.some(v=>v.nodeType==1&&!Xu.test(v.nodeName))&&(!p||p.endA>=p.endB)&&t.someProp("handleKeyDown",v=>v(t,Ge(13,"Enter")))){t.input.lastIOSEnter=0;return}if(!p)if(r&&a instanceof E&&!a.empty&&a.$head.sameParent(a.$anchor)&&!t.composing&&!(c.sel&&c.sel.anchor!=c.sel.head))p={start:a.from,endA:a.to,endB:a.to};else{if(c.sel){let v=Mi(t,t.state.doc,c.sel);if(v&&!v.eq(t.state.selection)){let O=t.state.tr.setSelection(v);i&&O.setMeta("composition",i),t.dispatch(O)}}return}t.state.selection.fromt.state.selection.from&&p.start<=t.state.selection.from+2&&t.state.selection.from>=c.from?p.start=t.state.selection.from:p.endA=t.state.selection.to-2&&t.state.selection.to<=c.to&&(p.endB+=t.state.selection.to-p.endA,p.endA=t.state.selection.to)),se&&_e<=11&&p.endB==p.start+1&&p.endA==p.start&&p.start>c.from&&c.doc.textBetween(p.start-c.from-1,p.start-c.from+1)=="  "&&(p.start--,p.endA--,p.endB--);let m=c.doc.resolveNoCache(p.start-c.from),g=c.doc.resolveNoCache(p.endB-c.from),y=d.resolve(p.start),k=m.sameParent(g)&&m.parent.inlineContent&&y.end()>=p.endA;if((Mt&&t.input.lastIOSEnter>Date.now()-225&&(!k||s.some(v=>v.nodeName=="DIV"||v.nodeName=="P"))||!k&&m.posv(t,Ge(13,"Enter")))){t.input.lastIOSEnter=0;return}if(t.state.selection.anchor>p.start&&Qu(d,p.start,p.endA,m,g)&&t.someProp("handleKeyDown",v=>v(t,Ge(8,"Backspace")))){Ae&&Y&&t.domObserver.suppressSelectionUpdates();return}Y&&p.endB==p.start&&(t.input.lastChromeDelete=Date.now()),Ae&&!k&&m.start()!=g.start()&&g.parentOffset==0&&m.depth==g.depth&&c.sel&&c.sel.anchor==c.sel.head&&c.sel.head==p.endA&&(p.endB-=2,g=c.doc.resolveNoCache(p.endB-c.from),setTimeout(()=>{t.someProp("handleKeyDown",function(v){return v(t,Ge(13,"Enter"))})},20));let w=p.start,S=p.endA,C=v=>{let O=v||t.state.tr.replace(w,S,c.doc.slice(p.start-c.from,p.endB-c.from));if(c.sel){let R=Mi(t,O.doc,c.sel);R&&!(Y&&t.composing&&R.empty&&(p.start!=p.endB||t.input.lastChromeDeleteRe(t),20));let v=C(t.state.tr.delete(w,S)),O=d.resolve(p.start).marksAcross(d.resolve(p.endA));O&&v.ensureMarks(O),t.dispatch(v)}else if(p.endA==p.endB&&(A=Yu(m.parent.content.cut(m.parentOffset,g.parentOffset),y.parent.content.cut(y.parentOffset,p.endA-y.start())))){let v=C(t.state.tr);A.type=="add"?v.addMark(w,S,A.mark):v.removeMark(w,S,A.mark),t.dispatch(v)}else if(m.parent.child(m.index()).isText&&m.index()==g.index()-(g.textOffset?0:1)){let v=m.parent.textBetween(m.parentOffset,g.parentOffset),O=()=>C(t.state.tr.insertText(v,w,S));t.someProp("handleTextInput",R=>R(t,w,S,v,O))||t.dispatch(O())}else t.dispatch(C());else t.dispatch(C())}function Mi(t,e,n){return Math.max(n.anchor,n.head)>e.content.size?null:is(t,e.resolve(n.anchor),e.resolve(n.head))}function Yu(t,e){let n=t.firstChild.marks,r=e.firstChild.marks,s=n,i=r,o,l,a;for(let d=0;dd.mark(l.addToSet(d.marks));else if(s.length==0&&i.length==1)l=i[0],o="remove",a=d=>d.mark(l.removeFromSet(d.marks));else return null;let c=[];for(let d=0;dn||cr(o,!0,!1)0&&(e||t.indexAfter(r)==t.node(r).childCount);)r--,s++,e=!1;if(n){let i=t.node(r).maybeChild(t.indexAfter(r));for(;i&&!i.isLeaf;)i=i.firstChild,s++}return s}function Zu(t,e,n,r,s){let i=t.findDiffStart(e,n);if(i==null)return null;let{a:o,b:l}=t.findDiffEnd(e,n+t.size,n+e.size);if(s=="end"){let a=Math.max(0,i-Math.min(o,l));r-=o+a-i}if(o=o?i-r:0;i-=a,i&&i=l?i-r:0;i-=a,i&&i=56320&&e<=57343&&n>=55296&&n<=56319}class _l{constructor(e,n){this._root=null,this.focused=!1,this.trackWrites=null,this.mounted=!1,this.markCursor=null,this.cursorWrapper=null,this.lastSelectedViewDesc=void 0,this.input=new mu,this.prevDirectPlugins=[],this.pluginViews=[],this.requiresGeckoHackNode=!1,this.dragging=null,this._props=n,this.state=n.state,this.directPlugins=n.plugins||[],this.directPlugins.forEach(Oi),this.dispatch=this.dispatch.bind(this),this.dom=e&&e.mount||document.createElement("div"),e&&(e.appendChild?e.appendChild(this.dom):typeof e=="function"?e(this.dom):e.mount&&(this.mounted=!0)),this.editable=Ai(this),Ei(this),this.nodeViews=Ni(this),this.docView=oi(this.state.doc,Ti(this),ar(this),this.dom,this),this.domObserver=new _u(this,(r,s,i,o)=>Gu(this,r,s,i,o)),this.domObserver.start(),gu(this),this.updatePluginViews()}get composing(){return this.input.composing}get props(){if(this._props.state!=this.state){let e=this._props;this._props={};for(let n in e)this._props[n]=e[n];this._props.state=this.state}return this._props}update(e){e.handleDOMEvents!=this._props.handleDOMEvents&&Dr(this);let n=this._props;this._props=e,e.plugins&&(e.plugins.forEach(Oi),this.directPlugins=e.plugins),this.updateStateInner(e.state,n)}setProps(e){let n={};for(let r in this._props)n[r]=this._props[r];n.state=this.state;for(let r in e)n[r]=e[r];this.update(n)}updateState(e){this.updateStateInner(e,this._props)}updateStateInner(e,n){var r;let s=this.state,i=!1,o=!1;e.storedMarks&&this.composing&&(Ll(this),o=!0),this.state=e;let l=s.plugins!=e.plugins||this._props.plugins!=n.plugins;if(l||this._props.plugins!=n.plugins||this._props.nodeViews!=n.nodeViews){let f=Ni(this);th(f,this.nodeViews)&&(this.nodeViews=f,i=!0)}(l||n.handleDOMEvents!=this._props.handleDOMEvents)&&Dr(this),this.editable=Ai(this),Ei(this);let a=ar(this),c=Ti(this),d=s.plugins!=e.plugins&&!s.doc.eq(e.doc)?"reset":e.scrollToSelection>s.scrollToSelection?"to selection":"preserve",u=i||!this.docView.matchesNode(e.doc,c,a);(u||!e.selection.eq(s.selection))&&(o=!0);let h=d=="preserve"&&o&&this.dom.style.overflowAnchor==null&&Od(this);if(o){this.domObserver.stop();let f=u&&(se||Y)&&!this.composing&&!s.selection.empty&&!e.selection.empty&&eh(s.selection,e.selection);if(u){let p=Y?this.trackWrites=this.domSelectionRange().focusNode:null;this.composing&&(this.input.compositionNode=Ou(this)),(i||!this.docView.update(e.doc,c,a,this))&&(this.docView.updateOuterDeco(c),this.docView.destroy(),this.docView=oi(e.doc,c,a,this.dom,this)),p&&(!this.trackWrites||!this.dom.contains(this.trackWrites))&&(f=!0)}f||!(this.input.mouseDown&&this.domObserver.currentSelection.eq(this.domSelectionRange())&&eu(this))?Re(this,f):(Cl(this,e.selection),this.domObserver.setCurSelection()),this.domObserver.start()}this.updatePluginViews(s),!((r=this.dragging)===null||r===void 0)&&r.node&&!s.doc.eq(e.doc)&&this.updateDraggedNode(this.dragging,s),d=="reset"?this.dom.scrollTop=0:d=="to selection"?this.scrollToSelection():h&&Rd(h)}scrollToSelection(){let e=this.domSelectionRange().focusNode;if(!(!e||!this.dom.contains(e.nodeType==1?e:e.parentNode))){if(!this.someProp("handleScrollToSelection",n=>n(this)))if(this.state.selection instanceof T){let n=this.docView.domAfterPos(this.state.selection.from);n.nodeType==1&&ei(this,n.getBoundingClientRect(),e)}else ei(this,this.coordsAtPos(this.state.selection.head,1),e)}}destroyPluginViews(){let e;for(;e=this.pluginViews.pop();)e.destroy&&e.destroy()}updatePluginViews(e){if(!e||e.plugins!=this.state.plugins||this.directPlugins!=this.prevDirectPlugins){this.prevDirectPlugins=this.directPlugins,this.destroyPluginViews();for(let n=0;n0&&this.state.doc.nodeAt(i))==r.node&&(s=i)}this.dragging=new Bl(e.slice,e.move,s<0?void 0:T.create(this.state.doc,s))}someProp(e,n){let r=this._props&&this._props[e],s;if(r!=null&&(s=n?n(r):r))return s;for(let o=0;on.ownerDocument.getSelection()),this._root=n}return e||document}updateRoot(){this._root=null}posAtCoords(e){return Bd(this,e)}coordsAtPos(e,n=1){return ml(this,e,n)}domAtPos(e,n=0){return this.docView.domFromPos(e,n)}nodeDOM(e){let n=this.docView.descAt(e);return n?n.nodeDOM:null}posAtDOM(e,n,r=-1){let s=this.docView.posFromDOM(e,n,r);if(s==null)throw new RangeError("DOM position not inside the editor");return s}endOfTextblock(e,n){return _d(this,n||this.state,e)}pasteHTML(e,n){return jt(this,"",e,!1,n||new ClipboardEvent("paste"))}pasteText(e,n){return jt(this,e,null,!0,n||new ClipboardEvent("paste"))}serializeForClipboard(e){return ls(this,e)}destroy(){this.docView&&(yu(this),this.destroyPluginViews(),this.mounted?(this.docView.update(this.state.doc,[],ar(this),this),this.dom.textContent=""):this.dom.parentNode&&this.dom.parentNode.removeChild(this.dom),this.docView.destroy(),this.docView=null,wd())}get isDestroyed(){return this.docView==null}dispatchEvent(e){return ku(this,e)}domSelectionRange(){let e=this.domSelection();return e?Z&&this.root.nodeType===11&&vd(this.dom.ownerDocument)==this.dom&&ju(this,e)||e:{focusNode:null,focusOffset:0,anchorNode:null,anchorOffset:0}}domSelection(){return this.root.getSelection()}}_l.prototype.dispatch=function(t){let e=this._props.dispatchTransaction;e?e.call(this,t):this.updateState(this.state.apply(t))};function Ti(t){let e=Object.create(null);return e.class="ProseMirror",e.contenteditable=String(t.editable),t.someProp("attributes",n=>{if(typeof n=="function"&&(n=n(t.state)),n)for(let r in n)r=="class"?e.class+=" "+n[r]:r=="style"?e.style=(e.style?e.style+";":"")+n[r]:!e[r]&&r!="contenteditable"&&r!="nodeName"&&(e[r]=String(n[r]))}),e.translate||(e.translate="no"),[U.node(0,t.state.doc.content.size,e)]}function Ei(t){if(t.markCursor){let e=document.createElement("img");e.className="ProseMirror-separator",e.setAttribute("mark-placeholder","true"),e.setAttribute("alt",""),t.cursorWrapper={dom:e,deco:U.widget(t.state.selection.from,e,{raw:!0,marks:t.markCursor})}}else t.cursorWrapper=null}function Ai(t){return!t.someProp("editable",e=>e(t.state)===!1)}function eh(t,e){let n=Math.min(t.$anchor.sharedDepth(t.head),e.$anchor.sharedDepth(e.head));return t.$anchor.start(n)!=e.$anchor.start(n)}function Ni(t){let e=Object.create(null);function n(r){for(let s in r)Object.prototype.hasOwnProperty.call(e,s)||(e[s]=r[s])}return t.someProp("nodeViews",n),t.someProp("markViews",n),e}function th(t,e){let n=0,r=0;for(let s in t){if(t[s]!=e[s])return!0;n++}for(let s in e)r++;return n!=r}function Oi(t){if(t.spec.state||t.spec.filterTransaction||t.spec.appendTransaction)throw new RangeError("Plugins passed directly to the view must not have a state component")}const nh=typeof navigator<"u"&&/Mac|iP(hone|[oa]d)/.test(navigator.platform),rh=typeof navigator<"u"&&/Win/.test(navigator.platform);function sh(t){let e=t.split(/-(?!$)/),n=e[e.length-1];n=="Space"&&(n=" ");let r,s,i,o;for(let l=0;l{for(var n in e)lh(t,n,{get:e[n],enumerable:!0})};function Vn(t){const{state:e,transaction:n}=t;let{selection:r}=n,{doc:s}=n,{storedMarks:i}=n;return{...e,apply:e.apply.bind(e),applyTransaction:e.applyTransaction.bind(e),plugins:e.plugins,schema:e.schema,reconfigure:e.reconfigure.bind(e),toJSON:e.toJSON.bind(e),get storedMarks(){return i},get selection(){return r},get doc(){return s},get tr(){return r=n.selection,s=n.doc,i=n.storedMarks,n}}}var _n=class{constructor(t){this.editor=t.editor,this.rawCommands=this.editor.extensionManager.commands,this.customState=t.state}get hasCustomState(){return!!this.customState}get state(){return this.customState||this.editor.state}get commands(){const{rawCommands:t,editor:e,state:n}=this,{view:r}=e,{tr:s}=n,i=this.buildProps(s);return Object.fromEntries(Object.entries(t).map(([o,l])=>[o,(...c)=>{const d=l(...c)(i);return!s.getMeta("preventDispatch")&&!this.hasCustomState&&r.dispatch(s),d}]))}get chain(){return()=>this.createChain()}get can(){return()=>this.createCan()}createChain(t,e=!0){const{rawCommands:n,editor:r,state:s}=this,{view:i}=r,o=[],l=!!t,a=t||s.tr,c=()=>(!l&&e&&!a.getMeta("preventDispatch")&&!this.hasCustomState&&i.dispatch(a),o.every(u=>u===!0)),d={...Object.fromEntries(Object.entries(n).map(([u,h])=>[u,(...p)=>{const m=this.buildProps(a,e),g=h(...p)(m);return o.push(g),d}])),run:c};return d}createCan(t){const{rawCommands:e,state:n}=this,r=!1,s=t||n.tr,i=this.buildProps(s,r);return{...Object.fromEntries(Object.entries(e).map(([l,a])=>[l,(...c)=>a(...c)({...i,dispatch:void 0})])),chain:()=>this.createChain(s,r)}}buildProps(t,e=!0){const{rawCommands:n,editor:r,state:s}=this,{view:i}=r,o={tr:t,editor:r,view:i,state:Vn({state:s,transaction:t}),dispatch:e?()=>{}:void 0,chain:()=>this.createChain(t,e),can:()=>this.createCan(t),get commands(){return Object.fromEntries(Object.entries(n).map(([l,a])=>[l,(...c)=>a(...c)(o)]))}};return o}},fe={};ps(fe,{blur:()=>ah,clearContent:()=>ch,clearNodes:()=>dh,command:()=>uh,createParagraphNear:()=>hh,cut:()=>fh,deleteCurrentNode:()=>ph,deleteNode:()=>mh,deleteRange:()=>gh,deleteSelection:()=>yh,enter:()=>bh,exitCode:()=>kh,extendMarkRange:()=>wh,first:()=>xh,focus:()=>Ch,forEach:()=>Mh,insertContent:()=>vh,insertContentAt:()=>Ah,joinBackward:()=>Rh,joinDown:()=>Oh,joinForward:()=>Dh,joinItemBackward:()=>Ih,joinItemForward:()=>Ph,joinTextblockBackward:()=>Lh,joinTextblockForward:()=>zh,joinUp:()=>Nh,keyboardShortcut:()=>$h,lift:()=>Hh,liftEmptyBlock:()=>Fh,liftListItem:()=>Vh,newlineInCode:()=>_h,resetAttributes:()=>Wh,scrollIntoView:()=>jh,selectAll:()=>qh,selectNodeBackward:()=>Kh,selectNodeForward:()=>Uh,selectParentNode:()=>Jh,selectTextblockEnd:()=>Xh,selectTextblockStart:()=>Gh,setContent:()=>Yh,setMark:()=>bf,setMeta:()=>kf,setNode:()=>wf,setNodeSelection:()=>xf,setTextDirection:()=>Sf,setTextSelection:()=>Cf,sinkListItem:()=>Mf,splitBlock:()=>vf,splitListItem:()=>Tf,toggleList:()=>Ef,toggleMark:()=>Af,toggleNode:()=>Nf,toggleWrap:()=>Of,undoInputRule:()=>Rf,unsetAllMarks:()=>Df,unsetMark:()=>If,unsetTextDirection:()=>Pf,updateAttributes:()=>Lf,wrapIn:()=>zf,wrapInList:()=>Bf});var ah=()=>({editor:t,view:e})=>(requestAnimationFrame(()=>{var n;t.isDestroyed||(e.dom.blur(),(n=window==null?void 0:window.getSelection())==null||n.removeAllRanges())}),!0),ch=(t=!0)=>({commands:e})=>e.setContent("",{emitUpdate:t}),dh=()=>({state:t,tr:e,dispatch:n})=>{const{selection:r}=e,{ranges:s}=r;return n&&s.forEach(({$from:i,$to:o})=>{t.doc.nodesBetween(i.pos,o.pos,(l,a)=>{if(l.type.isText)return;const{doc:c,mapping:d}=e,u=c.resolve(d.map(a)),h=c.resolve(d.map(a+l.nodeSize)),f=u.blockRange(h);if(!f)return;const p=At(f);if(l.type.isTextblock){const{defaultType:m}=u.parent.contentMatchAt(u.index());e.setNodeMarkup(f.start,m)}(p||p===0)&&e.lift(f,p)})}),!0},uh=t=>e=>t(e),hh=()=>({state:t,dispatch:e})=>sl(t,e),fh=(t,e)=>({editor:n,tr:r})=>{const{state:s}=n,i=s.doc.slice(t.from,t.to);r.deleteRange(t.from,t.to);const o=r.mapping.map(e);return r.insert(o,i.content),r.setSelection(new E(r.doc.resolve(Math.max(o-1,0)))),!0},ph=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,r=n.$anchor.node();if(r.content.size>0)return!1;const s=t.selection.$anchor;for(let i=s.depth;i>0;i-=1)if(s.node(i).type===r.type){if(e){const l=s.before(i),a=s.after(i);t.delete(l,a).scrollIntoView()}return!0}return!1};function q(t,e){if(typeof t=="string"){if(!e.nodes[t])throw Error(`There is no node type named '${t}'. Maybe you forgot to add the extension?`);return e.nodes[t]}return t}var mh=t=>({tr:e,state:n,dispatch:r})=>{const s=q(t,n.schema),i=e.selection.$anchor;for(let o=i.depth;o>0;o-=1)if(i.node(o).type===s){if(r){const a=i.before(o),c=i.after(o);e.delete(a,c).scrollIntoView()}return!0}return!1},gh=t=>({tr:e,dispatch:n})=>{const{from:r,to:s}=t;return n&&e.delete(r,s),!0},yh=()=>({state:t,dispatch:e})=>Qr(t,e),bh=()=>({commands:t})=>t.keyboardShortcut("Enter"),kh=()=>({state:t,dispatch:e})=>id(t,e);function ms(t){return Object.prototype.toString.call(t)==="[object RegExp]"}function Rn(t,e,n={strict:!0}){const r=Object.keys(e);return r.length?r.every(s=>n.strict?e[s]===t[s]:ms(e[s])?e[s].test(t[s]):e[s]===t[s]):!0}function Wl(t,e,n={}){return t.find(r=>r.type===e&&Rn(Object.fromEntries(Object.keys(n).map(s=>[s,r.attrs[s]])),n))}function Ri(t,e,n={}){return!!Wl(t,e,n)}function gs(t,e,n){var r;if(!t||!e)return;let s=t.parent.childAfter(t.parentOffset);if((!s.node||!s.node.marks.some(d=>d.type===e))&&(s=t.parent.childBefore(t.parentOffset)),!s.node||!s.node.marks.some(d=>d.type===e)||(n=n||((r=s.node.marks[0])==null?void 0:r.attrs),!Wl([...s.node.marks],e,n)))return;let o=s.index,l=t.start()+s.offset,a=o+1,c=l+s.node.nodeSize;for(;o>0&&Ri([...t.parent.child(o-1).marks],e,n);)o-=1,l-=t.parent.child(o).nodeSize;for(;a({tr:n,state:r,dispatch:s})=>{const i=De(t,r.schema),{doc:o,selection:l}=n,{$from:a,from:c,to:d}=l;if(s){const u=gs(a,i,e);if(u&&u.from<=c&&u.to>=d){const h=E.create(o,u.from,u.to);n.setSelection(h)}}return!0},xh=t=>e=>{const n=typeof t=="function"?t(e):t;for(let r=0;r({editor:n,view:r,tr:s,dispatch:i})=>{e={scrollIntoView:!0,...e};const o=()=>{(Kt()||Ir())&&r.dom.focus(),Sh()&&!Kt()&&!Ir()&&r.dom.focus({preventScroll:!0}),requestAnimationFrame(()=>{n.isDestroyed||(r.focus(),e!=null&&e.scrollIntoView&&n.commands.scrollIntoView())})};try{if(r.hasFocus()&&t===null||t===!1)return!0}catch{return!1}if(i&&t===null&&!jl(n.state.selection))return o(),!0;const l=ql(s.doc,t)||n.state.selection,a=n.state.selection.eq(l);return i&&(a||s.setSelection(l),a&&s.storedMarks&&s.setStoredMarks(s.storedMarks),o()),!0},Mh=(t,e)=>n=>t.every((r,s)=>e(r,{...n,index:s})),vh=(t,e)=>({tr:n,commands:r})=>r.insertContentAt({from:n.selection.from,to:n.selection.to},t,e),Kl=t=>{const e=t.childNodes;for(let n=e.length-1;n>=0;n-=1){const r=e[n];r.nodeType===3&&r.nodeValue&&/^(\n\s\s|\n)$/.test(r.nodeValue)?t.removeChild(r):r.nodeType===1&&Kl(r)}return t};function It(t){if(typeof window>"u")throw new Error("[tiptap error]: there is no window object available, so this function cannot be used");const e=`${t}`,n=new window.DOMParser().parseFromString(e,"text/html").body;return Kl(n)}function Ut(t,e,n){if(t instanceof ge||t instanceof b)return t;n={slice:!0,parseOptions:{},...n};const r=typeof t=="object"&&t!==null,s=typeof t=="string";if(r)try{if(Array.isArray(t)&&t.length>0)return b.fromArray(t.map(l=>e.nodeFromJSON(l)));const o=e.nodeFromJSON(t);return n.errorOnInvalidContent&&o.check(),o}catch(i){if(n.errorOnInvalidContent)throw new Error("[tiptap error]: Invalid JSON content",{cause:i});return console.warn("[tiptap warn]: Invalid content.","Passed value:",t,"Error:",i),Ut("",e,n)}if(s){if(n.errorOnInvalidContent){let o=!1,l="";const a=new Ro({topNode:e.spec.topNode,marks:e.spec.marks,nodes:e.spec.nodes.append({__tiptap__private__unknown__catch__all__node:{content:"inline*",group:"block",parseDOM:[{tag:"*",getAttrs:c=>(o=!0,l=typeof c=="string"?c:c.outerHTML,null)}]}})});if(n.slice?Ne.fromSchema(a).parseSlice(It(t),n.parseOptions):Ne.fromSchema(a).parse(It(t),n.parseOptions),n.errorOnInvalidContent&&o)throw new Error("[tiptap error]: Invalid HTML content",{cause:new Error(`Invalid element found: ${l}`)})}const i=Ne.fromSchema(e);return n.slice?i.parseSlice(It(t),n.parseOptions).content:i.parse(It(t),n.parseOptions)}return Ut("",e,n)}function Th(t,e,n){const r=t.steps.length-1;if(r{o===0&&(o=d)}),t.setSelection(N.near(t.doc.resolve(o),n))}var Eh=t=>!("type"in t),Ah=(t,e,n)=>({tr:r,dispatch:s,editor:i})=>{var o;if(s){n={parseOptions:i.options.parseOptions,updateSelection:!0,applyInputRules:!1,applyPasteRules:!1,...n};let l;const a=g=>{i.emit("contentError",{editor:i,error:g,disableCollaboration:()=>{"collaboration"in i.storage&&typeof i.storage.collaboration=="object"&&i.storage.collaboration&&(i.storage.collaboration.isDisabled=!0)}})},c={preserveWhitespace:"full",...n.parseOptions};if(!n.errorOnInvalidContent&&!i.options.enableContentCheck&&i.options.emitContentError)try{Ut(e,i.schema,{parseOptions:c,errorOnInvalidContent:!0})}catch(g){a(g)}try{l=Ut(e,i.schema,{parseOptions:c,errorOnInvalidContent:(o=n.errorOnInvalidContent)!=null?o:i.options.enableContentCheck})}catch(g){return a(g),!1}let{from:d,to:u}=typeof t=="number"?{from:t,to:t}:{from:t.from,to:t.to},h=!0,f=!0;if((Eh(l)?l:[l]).forEach(g=>{g.check(),h=h?g.isText&&g.marks.length===0:!1,f=f?g.isBlock:!1}),d===u&&f){const{parent:g}=r.doc.resolve(d);g.isTextblock&&!g.type.spec.code&&!g.childCount&&(d-=1,u+=1)}let m;if(h){if(Array.isArray(e))m=e.map(g=>g.text||"").join("");else if(e instanceof b){let g="";e.forEach(y=>{y.text&&(g+=y.text)}),m=g}else typeof e=="object"&&e&&e.text?m=e.text:m=e;r.insertText(m,d,u)}else{m=l;const g=r.doc.resolve(d),y=g.node(),k=g.parentOffset===0,w=y.isText||y.isTextblock,S=y.content.size>0;k&&w&&S&&(d=Math.max(0,d-1)),r.replaceWith(d,u,m)}n.updateSelection&&Th(r,r.steps.length-1,-1),n.applyInputRules&&r.setMeta("applyInputRules",{from:d,text:m}),n.applyPasteRules&&r.setMeta("applyPasteRules",{from:d,text:m})}return!0},Nh=()=>({state:t,dispatch:e})=>nd(t,e),Oh=()=>({state:t,dispatch:e})=>rd(t,e),Rh=()=>({state:t,dispatch:e})=>Yo(t,e),Dh=()=>({state:t,dispatch:e})=>tl(t,e),Ih=()=>({state:t,dispatch:e,tr:n})=>{try{const r=Ln(t.doc,t.selection.$from.pos,-1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},Ph=()=>({state:t,dispatch:e,tr:n})=>{try{const r=Ln(t.doc,t.selection.$from.pos,1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},Lh=()=>({state:t,dispatch:e})=>ed(t,e),zh=()=>({state:t,dispatch:e})=>td(t,e);function Ul(){return typeof navigator<"u"?/Mac/.test(navigator.platform):!1}function Bh(t){const e=t.split(/-(?!$)/);let n=e[e.length-1];n==="Space"&&(n=" ");let r,s,i,o;for(let l=0;l({editor:e,view:n,tr:r,dispatch:s})=>{const i=Bh(t).split(/-(?!$)/),o=i.find(c=>!["Alt","Ctrl","Meta","Shift"].includes(c)),l=new KeyboardEvent("keydown",{key:o==="Space"?" ":o,altKey:i.includes("Alt"),ctrlKey:i.includes("Ctrl"),metaKey:i.includes("Meta"),shiftKey:i.includes("Shift"),bubbles:!0,cancelable:!0}),a=e.captureTransaction(()=>{n.someProp("handleKeyDown",c=>c(n,l))});return a==null||a.steps.forEach(c=>{const d=c.map(r.mapping);d&&s&&r.maybeStep(d)}),!0};function qe(t,e,n={}){const{from:r,to:s,empty:i}=t.selection,o=e?q(e,t.schema):null,l=[];t.doc.nodesBetween(r,s,(u,h)=>{if(u.isText)return;const f=Math.max(r,h),p=Math.min(s,h+u.nodeSize);l.push({node:u,from:f,to:p})});const a=s-r,c=l.filter(u=>o?o.name===u.node.type.name:!0).filter(u=>Rn(u.node.attrs,n,{strict:!1}));return i?!!c.length:c.reduce((u,h)=>u+h.to-h.from,0)>=a}var Hh=(t,e={})=>({state:n,dispatch:r})=>{const s=q(t,n.schema);return qe(n,s,e)?sd(n,r):!1},Fh=()=>({state:t,dispatch:e})=>il(t,e),Vh=t=>({state:e,dispatch:n})=>{const r=q(t,e.schema);return gd(r)(e,n)},_h=()=>({state:t,dispatch:e})=>rl(t,e);function Wn(t,e){return e.nodes[t]?"node":e.marks[t]?"mark":null}function Di(t,e){const n=typeof e=="string"?[e]:e;return Object.keys(t).reduce((r,s)=>(n.includes(s)||(r[s]=t[s]),r),{})}var Wh=(t,e)=>({tr:n,state:r,dispatch:s})=>{let i=null,o=null;const l=Wn(typeof t=="string"?t:t.name,r.schema);if(!l)return!1;l==="node"&&(i=q(t,r.schema)),l==="mark"&&(o=De(t,r.schema));let a=!1;return n.selection.ranges.forEach(c=>{r.doc.nodesBetween(c.$from.pos,c.$to.pos,(d,u)=>{i&&i===d.type&&(a=!0,s&&n.setNodeMarkup(u,void 0,Di(d.attrs,e))),o&&d.marks.length&&d.marks.forEach(h=>{o===h.type&&(a=!0,s&&n.addMark(u,u+d.nodeSize,o.create(Di(h.attrs,e))))})})}),a},jh=()=>({tr:t,dispatch:e})=>(e&&t.scrollIntoView(),!0),qh=()=>({tr:t,dispatch:e})=>{if(e){const n=new le(t.doc);t.setSelection(n)}return!0},Kh=()=>({state:t,dispatch:e})=>Zo(t,e),Uh=()=>({state:t,dispatch:e})=>nl(t,e),Jh=()=>({state:t,dispatch:e})=>ad(t,e),Xh=()=>({state:t,dispatch:e})=>ud(t,e),Gh=()=>({state:t,dispatch:e})=>dd(t,e);function Pr(t,e,n={},r={}){return Ut(t,e,{slice:!1,parseOptions:n,errorOnInvalidContent:r.errorOnInvalidContent})}var Yh=(t,{errorOnInvalidContent:e,emitUpdate:n=!0,parseOptions:r={}}={})=>({editor:s,tr:i,dispatch:o,commands:l})=>{const{doc:a}=i;if(r.preserveWhitespace!=="full"){const c=Pr(t,s.schema,r,{errorOnInvalidContent:e??s.options.enableContentCheck});return o&&i.replaceWith(0,a.content.size,c).setMeta("preventUpdate",!n),!0}return o&&i.setMeta("preventUpdate",!n),l.insertContentAt({from:0,to:a.content.size},t,{parseOptions:r,errorOnInvalidContent:e??s.options.enableContentCheck})};function Jl(t,e){const n=De(e,t.schema),{from:r,to:s,empty:i}=t.selection,o=[];i?(t.storedMarks&&o.push(...t.storedMarks),o.push(...t.selection.$head.marks())):t.doc.nodesBetween(r,s,a=>{o.push(...a.marks)});const l=o.find(a=>a.type.name===n.name);return l?{...l.attrs}:{}}function Xl(t,e){const n=new Gr(t);return e.forEach(r=>{r.steps.forEach(s=>{n.step(s)})}),n}function Qh(t){for(let e=0;e{n(s)&&r.push({node:s,pos:i})}),r}function Gl(t,e){for(let n=t.depth;n>0;n-=1){const r=t.node(n);if(e(r))return{pos:n>0?t.before(n):0,start:t.start(n),depth:n,node:r}}}function jn(t){return e=>Gl(e.$from,t)}function M(t,e,n){return t.config[e]===void 0&&t.parent?M(t.parent,e,n):typeof t.config[e]=="function"?t.config[e].bind({...n,parent:t.parent?M(t.parent,e,n):null}):t.config[e]}function qn(t){return t.map(e=>{const n={name:e.name,options:e.options,storage:e.storage},r=M(e,"addExtensions",n);return r?[e,...qn(r())]:e}).flat(10)}function ys(t,e){const n=ft.fromSchema(e).serializeFragment(t),s=document.implementation.createHTMLDocument().createElement("div");return s.appendChild(n),s.innerHTML}function Yl(t){return typeof t=="function"}function D(t,e=void 0,...n){return Yl(t)?e?t.bind(e)(...n):t(...n):t}function ef(t={}){return Object.keys(t).length===0&&t.constructor===Object}function vt(t){const e=t.filter(s=>s.type==="extension"),n=t.filter(s=>s.type==="node"),r=t.filter(s=>s.type==="mark");return{baseExtensions:e,nodeExtensions:n,markExtensions:r}}function Ql(t){const e=[],{nodeExtensions:n,markExtensions:r}=vt(t),s=[...n,...r],i={default:null,validate:void 0,rendered:!0,renderHTML:null,parseHTML:null,keepOnSplit:!0,isRequired:!1};return t.forEach(o=>{const l={name:o.name,options:o.options,storage:o.storage,extensions:s},a=M(o,"addGlobalAttributes",l);if(!a)return;a().forEach(d=>{d.types.forEach(u=>{Object.entries(d.attributes).forEach(([h,f])=>{e.push({type:u,name:h,attribute:{...i,...f}})})})})}),s.forEach(o=>{const l={name:o.name,options:o.options,storage:o.storage},a=M(o,"addAttributes",l);if(!a)return;const c=a();Object.entries(c).forEach(([d,u])=>{const h={...i,...u};typeof(h==null?void 0:h.default)=="function"&&(h.default=h.default()),h!=null&&h.isRequired&&(h==null?void 0:h.default)===void 0&&delete h.default,e.push({type:o.name,name:d,attribute:h})})}),e}function I(...t){return t.filter(e=>!!e).reduce((e,n)=>{const r={...e};return Object.entries(n).forEach(([s,i])=>{if(!r[s]){r[s]=i;return}if(s==="class"){const l=i?String(i).split(" "):[],a=r[s]?r[s].split(" "):[],c=l.filter(d=>!a.includes(d));r[s]=[...a,...c].join(" ")}else if(s==="style"){const l=i?i.split(";").map(d=>d.trim()).filter(Boolean):[],a=r[s]?r[s].split(";").map(d=>d.trim()).filter(Boolean):[],c=new Map;a.forEach(d=>{const[u,h]=d.split(":").map(f=>f.trim());c.set(u,h)}),l.forEach(d=>{const[u,h]=d.split(":").map(f=>f.trim());c.set(u,h)}),r[s]=Array.from(c.entries()).map(([d,u])=>`${d}: ${u}`).join("; ")}else r[s]=i}),r},{})}function Tt(t,e){return e.filter(n=>n.type===t.type.name).filter(n=>n.attribute.rendered).map(n=>n.attribute.renderHTML?n.attribute.renderHTML(t.attrs)||{}:{[n.name]:t.attrs[n.name]}).reduce((n,r)=>I(n,r),{})}function tf(t){return typeof t!="string"?t:t.match(/^[+-]?(?:\d*\.)?\d+$/)?Number(t):t==="true"?!0:t==="false"?!1:t}function Ii(t,e){return"style"in t?t:{...t,getAttrs:n=>{const r=t.getAttrs?t.getAttrs(n):t.attrs;if(r===!1)return!1;const s=e.reduce((i,o)=>{const l=o.attribute.parseHTML?o.attribute.parseHTML(n):tf(n.getAttribute(o.name));return l==null?i:{...i,[o.name]:l}},{});return{...r,...s}}}}function Pi(t){return Object.fromEntries(Object.entries(t).filter(([e,n])=>e==="attrs"&&ef(n)?!1:n!=null))}function Li(t){var e,n;const r={};return!((e=t==null?void 0:t.attribute)!=null&&e.isRequired)&&"default"in((t==null?void 0:t.attribute)||{})&&(r.default=t.attribute.default),((n=t==null?void 0:t.attribute)==null?void 0:n.validate)!==void 0&&(r.validate=t.attribute.validate),[t.name,r]}function Zl(t,e){var n;const r=Ql(t),{nodeExtensions:s,markExtensions:i}=vt(t),o=(n=s.find(c=>M(c,"topNode")))==null?void 0:n.name,l=Object.fromEntries(s.map(c=>{const d=r.filter(y=>y.type===c.name),u={name:c.name,options:c.options,storage:c.storage,editor:e},h=t.reduce((y,k)=>{const w=M(k,"extendNodeSchema",u);return{...y,...w?w(c):{}}},{}),f=Pi({...h,content:D(M(c,"content",u)),marks:D(M(c,"marks",u)),group:D(M(c,"group",u)),inline:D(M(c,"inline",u)),atom:D(M(c,"atom",u)),selectable:D(M(c,"selectable",u)),draggable:D(M(c,"draggable",u)),code:D(M(c,"code",u)),whitespace:D(M(c,"whitespace",u)),linebreakReplacement:D(M(c,"linebreakReplacement",u)),defining:D(M(c,"defining",u)),isolating:D(M(c,"isolating",u)),attrs:Object.fromEntries(d.map(Li))}),p=D(M(c,"parseHTML",u));p&&(f.parseDOM=p.map(y=>Ii(y,d)));const m=M(c,"renderHTML",u);m&&(f.toDOM=y=>m({node:y,HTMLAttributes:Tt(y,d)}));const g=M(c,"renderText",u);return g&&(f.toText=g),[c.name,f]})),a=Object.fromEntries(i.map(c=>{const d=r.filter(g=>g.type===c.name),u={name:c.name,options:c.options,storage:c.storage,editor:e},h=t.reduce((g,y)=>{const k=M(y,"extendMarkSchema",u);return{...g,...k?k(c):{}}},{}),f=Pi({...h,inclusive:D(M(c,"inclusive",u)),excludes:D(M(c,"excludes",u)),group:D(M(c,"group",u)),spanning:D(M(c,"spanning",u)),code:D(M(c,"code",u)),attrs:Object.fromEntries(d.map(Li))}),p=D(M(c,"parseHTML",u));p&&(f.parseDOM=p.map(g=>Ii(g,d)));const m=M(c,"renderHTML",u);return m&&(f.toDOM=g=>m({mark:g,HTMLAttributes:Tt(g,d)})),[c.name,f]}));return new Ro({topNode:o,nodes:l,marks:a})}function nf(t){const e=t.filter((n,r)=>t.indexOf(n)!==r);return Array.from(new Set(e))}function Dn(t){return t.sort((n,r)=>{const s=M(n,"priority")||100,i=M(r,"priority")||100;return s>i?-1:sr.name));return n.length&&console.warn(`[tiptap warn]: Duplicate extension names found: [${n.map(r=>`'${r}'`).join(", ")}]. This can lead to issues.`),e}function rf(t,e){const n=bs(t);return Zl(n,e)}function sf(t,e){const n=rf(e),r=It(t);return Ne.fromSchema(n).parse(r).toJSON()}function ea(t,e,n){const{from:r,to:s}=e,{blockSeparator:i=` + +`,textSerializers:o={}}=n||{};let l="";return t.nodesBetween(r,s,(a,c,d,u)=>{var h;a.isBlock&&c>r&&(l+=i);const f=o==null?void 0:o[a.type.name];if(f)return d&&(l+=f({node:a,pos:c,parent:d,index:u,range:e})),!1;a.isText&&(l+=(h=a==null?void 0:a.text)==null?void 0:h.slice(Math.max(r,c)-c,s-c))}),l}function of(t,e){const n={from:0,to:t.content.size};return ea(t,n,e)}function ta(t){return Object.fromEntries(Object.entries(t.nodes).filter(([,e])=>e.spec.toText).map(([e,n])=>[e,n.spec.toText]))}function lf(t,e){const n=q(e,t.schema),{from:r,to:s}=t.selection,i=[];t.doc.nodesBetween(r,s,l=>{i.push(l)});const o=i.reverse().find(l=>l.type.name===n.name);return o?{...o.attrs}:{}}function na(t,e){const n=Wn(typeof e=="string"?e:e.name,t.schema);return n==="node"?lf(t,e):n==="mark"?Jl(t,e):{}}function af(t,e=JSON.stringify){const n={};return t.filter(r=>{const s=e(r);return Object.prototype.hasOwnProperty.call(n,s)?!1:n[s]=!0})}function cf(t){const e=af(t);return e.length===1?e:e.filter((n,r)=>!e.filter((i,o)=>o!==r).some(i=>n.oldRange.from>=i.oldRange.from&&n.oldRange.to<=i.oldRange.to&&n.newRange.from>=i.newRange.from&&n.newRange.to<=i.newRange.to))}function ra(t){const{mapping:e,steps:n}=t,r=[];return e.maps.forEach((s,i)=>{const o=[];if(s.ranges.length)s.forEach((l,a)=>{o.push({from:l,to:a})});else{const{from:l,to:a}=n[i];if(l===void 0||a===void 0)return;o.push({from:l,to:a})}o.forEach(({from:l,to:a})=>{const c=e.slice(i).map(l,-1),d=e.slice(i).map(a),u=e.invert().map(c,-1),h=e.invert().map(d);r.push({oldRange:{from:u,to:h},newRange:{from:c,to:d}})})}),cf(r)}function ks(t,e,n){const r=[];return t===e?n.resolve(t).marks().forEach(s=>{const i=n.resolve(t),o=gs(i,s.type);o&&r.push({mark:s,...o})}):n.nodesBetween(t,e,(s,i)=>{!s||(s==null?void 0:s.nodeSize)===void 0||r.push(...s.marks.map(o=>({from:i,to:i+s.nodeSize,mark:o})))}),r}var df=(t,e,n,r=20)=>{const s=t.doc.resolve(n);let i=r,o=null;for(;i>0&&o===null;){const l=s.node(i);(l==null?void 0:l.type.name)===e?o=l:i-=1}return[o,i]};function sn(t,e){return e.nodes[t]||e.marks[t]||null}function yn(t,e,n){return Object.fromEntries(Object.entries(n).filter(([r])=>{const s=t.find(i=>i.type===e&&i.name===r);return s?s.attribute.keepOnSplit:!1}))}var uf=(t,e=500)=>{let n="";const r=t.parentOffset;return t.parent.nodesBetween(Math.max(0,r-e),r,(s,i,o,l)=>{var a,c;const d=((c=(a=s.type.spec).toText)==null?void 0:c.call(a,{node:s,pos:i,parent:o,index:l}))||s.textContent||"%leaf%";n+=s.isAtom&&!s.isText?d:d.slice(0,Math.max(0,r-i))}),n};function Lr(t,e,n={}){const{empty:r,ranges:s}=t.selection,i=e?De(e,t.schema):null;if(r)return!!(t.storedMarks||t.selection.$from.marks()).filter(u=>i?i.name===u.type.name:!0).find(u=>Rn(u.attrs,n,{strict:!1}));let o=0;const l=[];if(s.forEach(({$from:u,$to:h})=>{const f=u.pos,p=h.pos;t.doc.nodesBetween(f,p,(m,g)=>{if(!m.isText&&!m.marks.length)return;const y=Math.max(f,g),k=Math.min(p,g+m.nodeSize),w=k-y;o+=w,l.push(...m.marks.map(S=>({mark:S,from:y,to:k})))})}),o===0)return!1;const a=l.filter(u=>i?i.name===u.mark.type.name:!0).filter(u=>Rn(u.mark.attrs,n,{strict:!1})).reduce((u,h)=>u+h.to-h.from,0),c=l.filter(u=>i?u.mark.type!==i&&u.mark.type.excludes(i):!0).reduce((u,h)=>u+h.to-h.from,0);return(a>0?a+c:a)>=o}function hf(t,e,n={}){if(!e)return qe(t,null,n)||Lr(t,null,n);const r=Wn(e,t.schema);return r==="node"?qe(t,e,n):r==="mark"?Lr(t,e,n):!1}var ff=(t,e)=>{const{$from:n,$to:r,$anchor:s}=t.selection;if(e){const i=jn(l=>l.type.name===e)(t.selection);if(!i)return!1;const o=t.doc.resolve(i.pos+1);return s.pos+1===o.end()}return!(r.parentOffset{const{$from:e,$to:n}=t.selection;return!(e.parentOffset>0||e.pos!==n.pos)};function zi(t,e){return Array.isArray(e)?e.some(n=>(typeof n=="string"?n:n.name)===t.name):e}function Bi(t,e){const{nodeExtensions:n}=vt(e),r=n.find(o=>o.name===t);if(!r)return!1;const s={name:r.name,options:r.options,storage:r.storage},i=D(M(r,"group",s));return typeof i!="string"?!1:i.split(" ").includes("list")}function Kn(t,{checkChildren:e=!0,ignoreWhitespace:n=!1}={}){var r;if(n){if(t.type.name==="hardBreak")return!0;if(t.isText)return/^\s*$/m.test((r=t.text)!=null?r:"")}if(t.isText)return!t.text;if(t.isAtom||t.isLeaf)return!1;if(t.content.childCount===0)return!0;if(e){let s=!0;return t.content.forEach(i=>{s!==!1&&(Kn(i,{ignoreWhitespace:n,checkChildren:e})||(s=!1))}),s}return!1}function sa(t){return t instanceof T}var ia=class oa{constructor(e){this.position=e}static fromJSON(e){return new oa(e.position)}toJSON(){return{position:this.position}}};function mf(t,e){const n=e.mapping.mapResult(t.position);return{position:new ia(n.pos),mapResult:n}}function gf(t){return new ia(t)}function yf(t,e,n){var r;const{selection:s}=e;let i=null;if(jl(s)&&(i=s.$cursor),i){const l=(r=t.storedMarks)!=null?r:i.marks();return i.parent.type.allowsMarkType(n)&&(!!n.isInSet(l)||!l.some(c=>c.type.excludes(n)))}const{ranges:o}=s;return o.some(({$from:l,$to:a})=>{let c=l.depth===0?t.doc.inlineContent&&t.doc.type.allowsMarkType(n):!1;return t.doc.nodesBetween(l.pos,a.pos,(d,u,h)=>{if(c)return!1;if(d.isInline){const f=!h||h.type.allowsMarkType(n),p=!!n.isInSet(d.marks)||!d.marks.some(m=>m.type.excludes(n));c=f&&p}return!c}),c})}var bf=(t,e={})=>({tr:n,state:r,dispatch:s})=>{const{selection:i}=n,{empty:o,ranges:l}=i,a=De(t,r.schema);if(s)if(o){const c=Jl(r,a);n.addStoredMark(a.create({...c,...e}))}else l.forEach(c=>{const d=c.$from.pos,u=c.$to.pos;r.doc.nodesBetween(d,u,(h,f)=>{const p=Math.max(f,d),m=Math.min(f+h.nodeSize,u);h.marks.find(y=>y.type===a)?h.marks.forEach(y=>{a===y.type&&n.addMark(p,m,a.create({...y.attrs,...e}))}):n.addMark(p,m,a.create(e))})});return yf(r,n,a)},kf=(t,e)=>({tr:n})=>(n.setMeta(t,e),!0),wf=(t,e={})=>({state:n,dispatch:r,chain:s})=>{const i=q(t,n.schema);let o;return n.selection.$anchor.sameParent(n.selection.$head)&&(o=n.selection.$anchor.parent.attrs),i.isTextblock?s().command(({commands:l})=>Ys(i,{...o,...e})(n)?!0:l.clearNodes()).command(({state:l})=>Ys(i,{...o,...e})(l,r)).run():(console.warn('[tiptap warn]: Currently "setNode()" only supports text block nodes.'),!1)},xf=t=>({tr:e,dispatch:n})=>{if(n){const{doc:r}=e,s=Ze(t,0,r.content.size),i=T.create(r,s);e.setSelection(i)}return!0},Sf=(t,e)=>({tr:n,state:r,dispatch:s})=>{const{selection:i}=r;let o,l;return typeof e=="number"?(o=e,l=e):e&&"from"in e&&"to"in e?(o=e.from,l=e.to):(o=i.from,l=i.to),s&&n.doc.nodesBetween(o,l,(a,c)=>{a.isText||n.setNodeMarkup(c,void 0,{...a.attrs,dir:t})}),!0},Cf=t=>({tr:e,dispatch:n})=>{if(n){const{doc:r}=e,{from:s,to:i}=typeof t=="number"?{from:t,to:t}:t,o=E.atStart(r).from,l=E.atEnd(r).to,a=Ze(s,o,l),c=Ze(i,o,l),d=E.create(r,a,c);e.setSelection(d)}return!0},Mf=t=>({state:e,dispatch:n})=>{const r=q(t,e.schema);return kd(r)(e,n)};function $i(t,e){const n=t.storedMarks||t.selection.$to.parentOffset&&t.selection.$from.marks();if(n){const r=n.filter(s=>e==null?void 0:e.includes(s.type.name));t.tr.ensureMarks(r)}}var vf=({keepMarks:t=!0}={})=>({tr:e,state:n,dispatch:r,editor:s})=>{const{selection:i,doc:o}=e,{$from:l,$to:a}=i,c=s.extensionManager.attributes,d=yn(c,l.node().type.name,l.node().attrs);if(i instanceof T&&i.node.isBlock)return!l.parentOffset||!Oe(o,l.pos)?!1:(r&&(t&&$i(n,s.extensionManager.splittableMarks),e.split(l.pos).scrollIntoView()),!0);if(!l.parent.isBlock)return!1;const u=a.parentOffset===a.parent.content.size,h=l.depth===0?void 0:Qh(l.node(-1).contentMatchAt(l.indexAfter(-1)));let f=u&&h?[{type:h,attrs:d}]:void 0,p=Oe(e.doc,e.mapping.map(l.pos),1,f);if(!f&&!p&&Oe(e.doc,e.mapping.map(l.pos),1,h?[{type:h}]:void 0)&&(p=!0,f=h?[{type:h,attrs:d}]:void 0),r){if(p&&(i instanceof E&&e.deleteSelection(),e.split(e.mapping.map(l.pos),1,f),h&&!u&&!l.parentOffset&&l.parent.type!==h)){const m=e.mapping.map(l.before()),g=e.doc.resolve(m);l.node(-1).canReplaceWith(g.index(),g.index()+1,h)&&e.setNodeMarkup(e.mapping.map(l.before()),h)}t&&$i(n,s.extensionManager.splittableMarks),e.scrollIntoView()}return p},Tf=(t,e={})=>({tr:n,state:r,dispatch:s,editor:i})=>{var o;const l=q(t,r.schema),{$from:a,$to:c}=r.selection,d=r.selection.node;if(d&&d.isBlock||a.depth<2||!a.sameParent(c))return!1;const u=a.node(-1);if(u.type!==l)return!1;const h=i.extensionManager.attributes;if(a.parent.content.size===0&&a.node(-1).childCount===a.indexAfter(-1)){if(a.depth===2||a.node(-3).type!==l||a.index(-2)!==a.node(-2).childCount-1)return!1;if(s){let y=b.empty;const k=a.index(-1)?1:a.index(-2)?2:3;for(let O=a.depth-k;O>=a.depth-3;O-=1)y=b.from(a.node(O).copy(y));const w=a.indexAfter(-1){if(v>-1)return!1;O.isTextblock&&O.content.size===0&&(v=R+1)}),v>-1&&n.setSelection(E.near(n.doc.resolve(v))),n.scrollIntoView()}return!0}const f=c.pos===a.end()?u.contentMatchAt(0).defaultType:null,p={...yn(h,u.type.name,u.attrs),...e},m={...yn(h,a.node().type.name,a.node().attrs),...e};n.delete(a.pos,c.pos);const g=f?[{type:l,attrs:p},{type:f,attrs:m}]:[{type:l,attrs:p}];if(!Oe(n.doc,a.pos,2))return!1;if(s){const{selection:y,storedMarks:k}=r,{splittableMarks:w}=i.extensionManager,S=k||y.$to.parentOffset&&y.$from.marks();if(n.split(a.pos,2,g).scrollIntoView(),!S||!s)return!0;const C=S.filter(A=>w.includes(A.type.name));n.ensureMarks(C)}return!0},ur=(t,e)=>{const n=jn(o=>o.type===e)(t.selection);if(!n)return!0;const r=t.doc.resolve(Math.max(0,n.pos-1)).before(n.depth);if(r===void 0)return!0;const s=t.doc.nodeAt(r);return n.node.type===(s==null?void 0:s.type)&&Ue(t.doc,n.pos)&&t.join(n.pos),!0},hr=(t,e)=>{const n=jn(o=>o.type===e)(t.selection);if(!n)return!0;const r=t.doc.resolve(n.start).after(n.depth);if(r===void 0)return!0;const s=t.doc.nodeAt(r);return n.node.type===(s==null?void 0:s.type)&&Ue(t.doc,r)&&t.join(r),!0},Ef=(t,e,n,r={})=>({editor:s,tr:i,state:o,dispatch:l,chain:a,commands:c,can:d})=>{const{extensions:u,splittableMarks:h}=s.extensionManager,f=q(t,o.schema),p=q(e,o.schema),{selection:m,storedMarks:g}=o,{$from:y,$to:k}=m,w=y.blockRange(k),S=g||m.$to.parentOffset&&m.$from.marks();if(!w)return!1;const C=jn(A=>Bi(A.type.name,u))(m);if(w.depth>=1&&C&&w.depth-C.depth<=1){if(C.node.type===f)return c.liftListItem(p);if(Bi(C.node.type.name,u)&&f.validContent(C.node.content)&&l)return a().command(()=>(i.setNodeMarkup(C.pos,f),!0)).command(()=>ur(i,f)).command(()=>hr(i,f)).run()}return!n||!S||!l?a().command(()=>d().wrapInList(f,r)?!0:c.clearNodes()).wrapInList(f,r).command(()=>ur(i,f)).command(()=>hr(i,f)).run():a().command(()=>{const A=d().wrapInList(f,r),v=S.filter(O=>h.includes(O.type.name));return i.ensureMarks(v),A?!0:c.clearNodes()}).wrapInList(f,r).command(()=>ur(i,f)).command(()=>hr(i,f)).run()},Af=(t,e={},n={})=>({state:r,commands:s})=>{const{extendEmptyMarkRange:i=!1}=n,o=De(t,r.schema);return Lr(r,o,e)?s.unsetMark(o,{extendEmptyMarkRange:i}):s.setMark(o,e)},Nf=(t,e,n={})=>({state:r,commands:s})=>{const i=q(t,r.schema),o=q(e,r.schema),l=qe(r,i,n);let a;return r.selection.$anchor.sameParent(r.selection.$head)&&(a=r.selection.$anchor.parent.attrs),l?s.setNode(o,a):s.setNode(i,{...a,...n})},Of=(t,e={})=>({state:n,commands:r})=>{const s=q(t,n.schema);return qe(n,s,e)?r.lift(s):r.wrapIn(s,e)},Rf=()=>({state:t,dispatch:e})=>{const n=t.plugins;for(let r=0;r=0;a-=1)o.step(l.steps[a].invert(l.docs[a]));if(i.text){const a=o.doc.resolve(i.from).marks();o.replaceWith(i.from,i.to,t.schema.text(i.text,a))}else o.delete(i.from,i.to)}return!0}}return!1},Df=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,{empty:r,ranges:s}=n;return r||e&&s.forEach(i=>{t.removeMark(i.$from.pos,i.$to.pos)}),!0},If=(t,e={})=>({tr:n,state:r,dispatch:s})=>{var i;const{extendEmptyMarkRange:o=!1}=e,{selection:l}=n,a=De(t,r.schema),{$from:c,empty:d,ranges:u}=l;if(!s)return!0;if(d&&o){let{from:h,to:f}=l;const p=(i=c.marks().find(g=>g.type===a))==null?void 0:i.attrs,m=gs(c,a,p);m&&(h=m.from,f=m.to),n.removeMark(h,f,a)}else u.forEach(h=>{n.removeMark(h.$from.pos,h.$to.pos,a)});return n.removeStoredMark(a),!0},Pf=t=>({tr:e,state:n,dispatch:r})=>{const{selection:s}=n;let i,o;return typeof t=="number"?(i=t,o=t):t&&"from"in t&&"to"in t?(i=t.from,o=t.to):(i=s.from,o=s.to),r&&e.doc.nodesBetween(i,o,(l,a)=>{if(l.isText)return;const c={...l.attrs};delete c.dir,e.setNodeMarkup(a,void 0,c)}),!0},Lf=(t,e={})=>({tr:n,state:r,dispatch:s})=>{let i=null,o=null;const l=Wn(typeof t=="string"?t:t.name,r.schema);if(!l)return!1;l==="node"&&(i=q(t,r.schema)),l==="mark"&&(o=De(t,r.schema));let a=!1;return n.selection.ranges.forEach(c=>{const d=c.$from.pos,u=c.$to.pos;let h,f,p,m;n.selection.empty?r.doc.nodesBetween(d,u,(g,y)=>{i&&i===g.type&&(a=!0,p=Math.max(y,d),m=Math.min(y+g.nodeSize,u),h=y,f=g)}):r.doc.nodesBetween(d,u,(g,y)=>{y=d&&y<=u&&(i&&i===g.type&&(a=!0,s&&n.setNodeMarkup(y,void 0,{...g.attrs,...e})),o&&g.marks.length&&g.marks.forEach(k=>{if(o===k.type&&(a=!0,s)){const w=Math.max(y,d),S=Math.min(y+g.nodeSize,u);n.addMark(w,S,o.create({...k.attrs,...e}))}}))}),f&&(h!==void 0&&s&&n.setNodeMarkup(h,void 0,{...f.attrs,...e}),o&&f.marks.length&&f.marks.forEach(g=>{o===g.type&&s&&n.addMark(p,m,o.create({...g.attrs,...e}))}))}),a},zf=(t,e={})=>({state:n,dispatch:r})=>{const s=q(t,n.schema);return hd(s,e)(n,r)},Bf=(t,e={})=>({state:n,dispatch:r})=>{const s=q(t,n.schema);return fd(s,e)(n,r)},$f=class{constructor(){this.callbacks={}}on(t,e){return this.callbacks[t]||(this.callbacks[t]=[]),this.callbacks[t].push(e),this}emit(t,...e){const n=this.callbacks[t];return n&&n.forEach(r=>r.apply(this,e)),this}off(t,e){const n=this.callbacks[t];return n&&(e?this.callbacks[t]=n.filter(r=>r!==e):delete this.callbacks[t]),this}once(t,e){const n=(...r)=>{this.off(t,n),e.apply(this,r)};return this.on(t,n)}removeAllListeners(){this.callbacks={}}},Qt=class{constructor(t){var e;this.find=t.find,this.handler=t.handler,this.undoable=(e=t.undoable)!=null?e:!0}},Hf=(t,e)=>{if(ms(e))return e.exec(t);const n=e(t);if(!n)return null;const r=[n.text];return r.index=n.index,r.input=t,r.data=n.data,n.replaceWith&&(n.text.includes(n.replaceWith)||console.warn('[tiptap warn]: "inputRuleMatch.replaceWith" must be part of "inputRuleMatch.text".'),r.push(n.replaceWith)),r};function on(t){var e;const{editor:n,from:r,to:s,text:i,rules:o,plugin:l}=t,{view:a}=n;if(a.composing)return!1;const c=a.state.doc.resolve(r);if(c.parent.type.spec.code||(e=c.nodeBefore||c.nodeAfter)!=null&&e.marks.find(h=>h.type.spec.code))return!1;let d=!1;const u=uf(c)+i;return o.forEach(h=>{if(d)return;const f=Hf(u,h.find);if(!f)return;const p=a.state.tr,m=Vn({state:a.state,transaction:p}),g={from:r-(f[0].length-i.length),to:s},{commands:y,chain:k,can:w}=new _n({editor:n,state:m});h.handler({state:m,range:g,match:f,commands:y,chain:k,can:w})===null||!p.steps.length||(h.undoable&&p.setMeta(l,{transform:p,from:r,to:s,text:i}),a.dispatch(p),d=!0)}),d}function Ff(t){const{editor:e,rules:n}=t,r=new B({state:{init(){return null},apply(s,i,o){const l=s.getMeta(r);if(l)return l;const a=s.getMeta("applyInputRules");return!!a&&setTimeout(()=>{let{text:d}=a;typeof d=="string"?d=d:d=ys(b.from(d),o.schema);const{from:u}=a,h=u+d.length;on({editor:e,from:u,to:h,text:d,rules:n,plugin:r})}),s.selectionSet||s.docChanged?null:i}},props:{handleTextInput(s,i,o,l){return on({editor:e,from:i,to:o,text:l,rules:n,plugin:r})},handleDOMEvents:{compositionend:s=>(setTimeout(()=>{const{$cursor:i}=s.state.selection;i&&on({editor:e,from:i.pos,to:i.pos,text:"",rules:n,plugin:r})}),!1)},handleKeyDown(s,i){if(i.key!=="Enter")return!1;const{$cursor:o}=s.state.selection;return o?on({editor:e,from:o.pos,to:o.pos,text:` +`,rules:n,plugin:r}):!1}},isInputRules:!0});return r}function Vf(t){return Object.prototype.toString.call(t).slice(8,-1)}function ln(t){return Vf(t)!=="Object"?!1:t.constructor===Object&&Object.getPrototypeOf(t)===Object.prototype}function la(t,e){const n={...t};return ln(t)&&ln(e)&&Object.keys(e).forEach(r=>{ln(e[r])&&ln(t[r])?n[r]=la(t[r],e[r]):n[r]=e[r]}),n}var ws=class{constructor(t={}){this.type="extendable",this.parent=null,this.child=null,this.name="",this.config={name:this.name},this.config={...this.config,...t},this.name=this.config.name}get options(){return{...D(M(this,"addOptions",{name:this.name}))||{}}}get storage(){return{...D(M(this,"addStorage",{name:this.name,options:this.options}))||{}}}configure(t={}){const e=this.extend({...this.config,addOptions:()=>la(this.options,t)});return e.name=this.name,e.parent=this.parent,e}extend(t={}){const e=new this.constructor({...this.config,...t});return e.parent=this,this.child=e,e.name="name"in t?t.name:e.parent.name,e}},xe=class aa extends ws{constructor(){super(...arguments),this.type="mark"}static create(e={}){const n=typeof e=="function"?e():e;return new aa(n)}static handleExit({editor:e,mark:n}){const{tr:r}=e.state,s=e.state.selection.$from;if(s.pos===s.end()){const o=s.marks();if(!!!o.find(c=>(c==null?void 0:c.type.name)===n.name))return!1;const a=o.find(c=>(c==null?void 0:c.type.name)===n.name);return a&&r.removeStoredMark(a),r.insertText(" ",s.pos),e.view.dispatch(r),!0}return!1}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}};function _f(t){return typeof t=="number"}var Wf=class{constructor(t){this.find=t.find,this.handler=t.handler}},jf=(t,e,n)=>{if(ms(e))return[...t.matchAll(e)];const r=e(t,n);return r?r.map(s=>{const i=[s.text];return i.index=s.index,i.input=t,i.data=s.data,s.replaceWith&&(s.text.includes(s.replaceWith)||console.warn('[tiptap warn]: "pasteRuleMatch.replaceWith" must be part of "pasteRuleMatch.text".'),i.push(s.replaceWith)),i}):[]};function qf(t){const{editor:e,state:n,from:r,to:s,rule:i,pasteEvent:o,dropEvent:l}=t,{commands:a,chain:c,can:d}=new _n({editor:e,state:n}),u=[];return n.doc.nodesBetween(r,s,(f,p)=>{var m,g,y,k,w;if((g=(m=f.type)==null?void 0:m.spec)!=null&&g.code||!(f.isText||f.isTextblock||f.isInline))return;const S=(w=(k=(y=f.content)==null?void 0:y.size)!=null?k:f.nodeSize)!=null?w:0,C=Math.max(r,p),A=Math.min(s,p+S);if(C>=A)return;const v=f.isText?f.text||"":f.textBetween(C-p,A-p,void 0,"");jf(v,i.find,o).forEach(R=>{if(R.index===void 0)return;const Ce=C+R.index+1,Xn=Ce+R[0].length,en={from:n.tr.mapping.map(Ce),to:n.tr.mapping.map(Xn)},Gn=i.handler({state:n,range:en,match:R,commands:a,chain:c,can:d,pasteEvent:o,dropEvent:l});u.push(Gn)})}),u.every(f=>f!==null)}var an=null,Kf=t=>{var e;const n=new ClipboardEvent("paste",{clipboardData:new DataTransfer});return(e=n.clipboardData)==null||e.setData("text/html",t),n};function Uf(t){const{editor:e,rules:n}=t;let r=null,s=!1,i=!1,o=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,l;try{l=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{l=null}const a=({state:d,from:u,to:h,rule:f,pasteEvt:p})=>{const m=d.tr,g=Vn({state:d,transaction:m});if(!(!qf({editor:e,state:g,from:Math.max(u-1,0),to:h.b-1,rule:f,pasteEvent:p,dropEvent:l})||!m.steps.length)){try{l=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{l=null}return o=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,m}};return n.map(d=>new B({view(u){const h=p=>{var m;r=(m=u.dom.parentElement)!=null&&m.contains(p.target)?u.dom.parentElement:null,r&&(an=e)},f=()=>{an&&(an=null)};return window.addEventListener("dragstart",h),window.addEventListener("dragend",f),{destroy(){window.removeEventListener("dragstart",h),window.removeEventListener("dragend",f)}}},props:{handleDOMEvents:{drop:(u,h)=>{if(i=r===u.dom.parentElement,l=h,!i){const f=an;f!=null&&f.isEditable&&setTimeout(()=>{const p=f.state.selection;p&&f.commands.deleteRange({from:p.from,to:p.to})},10)}return!1},paste:(u,h)=>{var f;const p=(f=h.clipboardData)==null?void 0:f.getData("text/html");return o=h,s=!!(p!=null&&p.includes("data-pm-slice")),!1}}},appendTransaction:(u,h,f)=>{const p=u[0],m=p.getMeta("uiEvent")==="paste"&&!s,g=p.getMeta("uiEvent")==="drop"&&!i,y=p.getMeta("applyPasteRules"),k=!!y;if(!m&&!g&&!k)return;if(k){let{text:C}=y;typeof C=="string"?C=C:C=ys(b.from(C),f.schema);const{from:A}=y,v=A+C.length,O=Kf(C);return a({rule:d,state:f,from:A,to:{b:v},pasteEvt:O})}const w=h.doc.content.findDiffStart(f.doc.content),S=h.doc.content.findDiffEnd(f.doc.content);if(!(!_f(w)||!S||w===S.b))return a({rule:d,state:f,from:w,to:S,pasteEvt:o})}}))}var Un=class{constructor(t,e){this.splittableMarks=[],this.editor=e,this.baseExtensions=t,this.extensions=bs(t),this.schema=Zl(this.extensions,e),this.setupExtensions()}get commands(){return this.extensions.reduce((t,e)=>{const n={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:sn(e.name,this.schema)},r=M(e,"addCommands",n);return r?{...t,...r()}:t},{})}get plugins(){const{editor:t}=this;return Dn([...this.extensions].reverse()).flatMap(r=>{const s={name:r.name,options:r.options,storage:this.editor.extensionStorage[r.name],editor:t,type:sn(r.name,this.schema)},i=[],o=M(r,"addKeyboardShortcuts",s);let l={};if(r.type==="mark"&&M(r,"exitable",s)&&(l.ArrowRight=()=>xe.handleExit({editor:t,mark:r})),o){const h=Object.fromEntries(Object.entries(o()).map(([f,p])=>[f,()=>p({editor:t})]));l={...l,...h}}const a=oh(l);i.push(a);const c=M(r,"addInputRules",s);if(zi(r,t.options.enableInputRules)&&c){const h=c();if(h&&h.length){const f=Ff({editor:t,rules:h}),p=Array.isArray(f)?f:[f];i.push(...p)}}const d=M(r,"addPasteRules",s);if(zi(r,t.options.enablePasteRules)&&d){const h=d();if(h&&h.length){const f=Uf({editor:t,rules:h});i.push(...f)}}const u=M(r,"addProseMirrorPlugins",s);if(u){const h=u();i.push(...h)}return i})}get attributes(){return Ql(this.extensions)}get nodeViews(){const{editor:t}=this,{nodeExtensions:e}=vt(this.extensions);return Object.fromEntries(e.filter(n=>!!M(n,"addNodeView")).map(n=>{const r=this.attributes.filter(a=>a.type===n.name),s={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:q(n.name,this.schema)},i=M(n,"addNodeView",s);if(!i)return[];const o=i();if(!o)return[];const l=(a,c,d,u,h)=>{const f=Tt(a,r);return o({node:a,view:c,getPos:d,decorations:u,innerDecorations:h,editor:t,extension:n,HTMLAttributes:f})};return[n.name,l]}))}dispatchTransaction(t){const{editor:e}=this;return Dn([...this.extensions].reverse()).reduceRight((r,s)=>{const i={name:s.name,options:s.options,storage:this.editor.extensionStorage[s.name],editor:e,type:sn(s.name,this.schema)},o=M(s,"dispatchTransaction",i);return o?l=>{o.call(i,{transaction:l,next:r})}:r},t)}get markViews(){const{editor:t}=this,{markExtensions:e}=vt(this.extensions);return Object.fromEntries(e.filter(n=>!!M(n,"addMarkView")).map(n=>{const r=this.attributes.filter(l=>l.type===n.name),s={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:De(n.name,this.schema)},i=M(n,"addMarkView",s);if(!i)return[];const o=(l,a,c)=>{const d=Tt(l,r);return i()({mark:l,view:a,inline:c,editor:t,extension:n,HTMLAttributes:d,updateAttributes:u=>{ap(l,t,u)}})};return[n.name,o]}))}setupExtensions(){const t=this.extensions;this.editor.extensionStorage=Object.fromEntries(t.map(e=>[e.name,e.storage])),t.forEach(e=>{var n;const r={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:sn(e.name,this.schema)};e.type==="mark"&&((n=D(M(e,"keepOnSplit",r)))==null||n)&&this.splittableMarks.push(e.name);const s=M(e,"onBeforeCreate",r),i=M(e,"onCreate",r),o=M(e,"onUpdate",r),l=M(e,"onSelectionUpdate",r),a=M(e,"onTransaction",r),c=M(e,"onFocus",r),d=M(e,"onBlur",r),u=M(e,"onDestroy",r);s&&this.editor.on("beforeCreate",s),i&&this.editor.on("create",i),o&&this.editor.on("update",o),l&&this.editor.on("selectionUpdate",l),a&&this.editor.on("transaction",a),c&&this.editor.on("focus",c),d&&this.editor.on("blur",d),u&&this.editor.on("destroy",u)})}};Un.resolve=bs;Un.sort=Dn;Un.flatten=qn;var Jf={};ps(Jf,{ClipboardTextSerializer:()=>da,Commands:()=>ua,Delete:()=>ha,Drop:()=>fa,Editable:()=>pa,FocusEvents:()=>ga,Keymap:()=>ya,Paste:()=>ba,Tabindex:()=>ka,TextDirection:()=>wa,focusEventsPluginKey:()=>ma});var $=class ca extends ws{constructor(){super(...arguments),this.type="extension"}static create(e={}){const n=typeof e=="function"?e():e;return new ca(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}},da=$.create({name:"clipboardTextSerializer",addOptions(){return{blockSeparator:void 0}},addProseMirrorPlugins(){return[new B({key:new _("clipboardTextSerializer"),props:{clipboardTextSerializer:()=>{const{editor:t}=this,{state:e,schema:n}=t,{doc:r,selection:s}=e,{ranges:i}=s,o=Math.min(...i.map(d=>d.$from.pos)),l=Math.max(...i.map(d=>d.$to.pos)),a=ta(n);return ea(r,{from:o,to:l},{...this.options.blockSeparator!==void 0?{blockSeparator:this.options.blockSeparator}:{},textSerializers:a})}}})]}}),ua=$.create({name:"commands",addCommands(){return{...fe}}}),ha=$.create({name:"delete",onUpdate({transaction:t,appendedTransactions:e}){var n,r,s;const i=()=>{var o,l,a,c;if((c=(a=(l=(o=this.editor.options.coreExtensionOptions)==null?void 0:o.delete)==null?void 0:l.filterTransaction)==null?void 0:a.call(l,t))!=null?c:t.getMeta("y-sync$"))return;const d=Xl(t.before,[t,...e]);ra(d).forEach(f=>{d.mapping.mapResult(f.oldRange.from).deletedAfter&&d.mapping.mapResult(f.oldRange.to).deletedBefore&&d.before.nodesBetween(f.oldRange.from,f.oldRange.to,(p,m)=>{const g=m+p.nodeSize-2,y=f.oldRange.from<=m&&g<=f.oldRange.to;this.editor.emit("delete",{type:"node",node:p,from:m,to:g,newFrom:d.mapping.map(m),newTo:d.mapping.map(g),deletedRange:f.oldRange,newRange:f.newRange,partial:!y,editor:this.editor,transaction:t,combinedTransform:d})})});const h=d.mapping;d.steps.forEach((f,p)=>{var m,g;if(f instanceof me){const y=h.slice(p).map(f.from,-1),k=h.slice(p).map(f.to),w=h.invert().map(y,-1),S=h.invert().map(k),C=(m=d.doc.nodeAt(y-1))==null?void 0:m.marks.some(v=>v.eq(f.mark)),A=(g=d.doc.nodeAt(k))==null?void 0:g.marks.some(v=>v.eq(f.mark));this.editor.emit("delete",{type:"mark",mark:f.mark,from:f.from,to:f.to,deletedRange:{from:w,to:S},newRange:{from:y,to:k},partial:!!(A||C),editor:this.editor,transaction:t,combinedTransform:d})}})};(s=(r=(n=this.editor.options.coreExtensionOptions)==null?void 0:n.delete)==null?void 0:r.async)==null||s?setTimeout(i,0):i()}}),fa=$.create({name:"drop",addProseMirrorPlugins(){return[new B({key:new _("tiptapDrop"),props:{handleDrop:(t,e,n,r)=>{this.editor.emit("drop",{editor:this.editor,event:e,slice:n,moved:r})}}})]}}),pa=$.create({name:"editable",addProseMirrorPlugins(){return[new B({key:new _("editable"),props:{editable:()=>this.editor.options.editable}})]}}),ma=new _("focusEvents"),ga=$.create({name:"focusEvents",addProseMirrorPlugins(){const{editor:t}=this;return[new B({key:ma,props:{handleDOMEvents:{focus:(e,n)=>{t.isFocused=!0;const r=t.state.tr.setMeta("focus",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1},blur:(e,n)=>{t.isFocused=!1;const r=t.state.tr.setMeta("blur",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1}}}})]}}),ya=$.create({name:"keymap",addKeyboardShortcuts(){const t=()=>this.editor.commands.first(({commands:o})=>[()=>o.undoInputRule(),()=>o.command(({tr:l})=>{const{selection:a,doc:c}=l,{empty:d,$anchor:u}=a,{pos:h,parent:f}=u,p=u.parent.isTextblock&&h>0?l.doc.resolve(h-1):u,m=p.parent.type.spec.isolating,g=u.pos-u.parentOffset,y=m&&p.parent.childCount===1?g===u.pos:N.atStart(c).from===h;return!d||!f.type.isTextblock||f.textContent.length||!y||y&&u.parent.type.name==="paragraph"?!1:o.clearNodes()}),()=>o.deleteSelection(),()=>o.joinBackward(),()=>o.selectNodeBackward()]),e=()=>this.editor.commands.first(({commands:o})=>[()=>o.deleteSelection(),()=>o.deleteCurrentNode(),()=>o.joinForward(),()=>o.selectNodeForward()]),r={Enter:()=>this.editor.commands.first(({commands:o})=>[()=>o.newlineInCode(),()=>o.createParagraphNear(),()=>o.liftEmptyBlock(),()=>o.splitBlock()]),"Mod-Enter":()=>this.editor.commands.exitCode(),Backspace:t,"Mod-Backspace":t,"Shift-Backspace":t,Delete:e,"Mod-Delete":e,"Mod-a":()=>this.editor.commands.selectAll()},s={...r},i={...r,"Ctrl-h":t,"Alt-Backspace":t,"Ctrl-d":e,"Ctrl-Alt-Backspace":e,"Alt-Delete":e,"Alt-d":e,"Ctrl-a":()=>this.editor.commands.selectTextblockStart(),"Ctrl-e":()=>this.editor.commands.selectTextblockEnd()};return Kt()||Ul()?i:s},addProseMirrorPlugins(){return[new B({key:new _("clearDocument"),appendTransaction:(t,e,n)=>{if(t.some(m=>m.getMeta("composition")))return;const r=t.some(m=>m.docChanged)&&!e.doc.eq(n.doc),s=t.some(m=>m.getMeta("preventClearDocument"));if(!r||s)return;const{empty:i,from:o,to:l}=e.selection,a=N.atStart(e.doc).from,c=N.atEnd(e.doc).to;if(i||!(o===a&&l===c)||!Kn(n.doc))return;const h=n.tr,f=Vn({state:n,transaction:h}),{commands:p}=new _n({editor:this.editor,state:f});if(p.clearNodes(),!!h.steps.length)return h}})]}}),ba=$.create({name:"paste",addProseMirrorPlugins(){return[new B({key:new _("tiptapPaste"),props:{handlePaste:(t,e,n)=>{this.editor.emit("paste",{editor:this.editor,event:e,slice:n})}}})]}}),ka=$.create({name:"tabindex",addProseMirrorPlugins(){return[new B({key:new _("tabindex"),props:{attributes:()=>this.editor.isEditable?{tabindex:"0"}:{}}})]}}),wa=$.create({name:"textDirection",addOptions(){return{direction:void 0}},addGlobalAttributes(){if(!this.options.direction)return[];const{nodeExtensions:t}=vt(this.extensions);return[{types:t.filter(e=>e.name!=="text").map(e=>e.name),attributes:{dir:{default:this.options.direction,parseHTML:e=>{const n=e.getAttribute("dir");return n&&(n==="ltr"||n==="rtl"||n==="auto")?n:this.options.direction},renderHTML:e=>e.dir?{dir:e.dir}:{}}}}]},addProseMirrorPlugins(){return[new B({key:new _("textDirection"),props:{attributes:()=>{const t=this.options.direction;return t?{dir:t}:{}}}})]}}),Xf=class Pt{constructor(e,n,r=!1,s=null){this.currentNode=null,this.actualDepth=null,this.isBlock=r,this.resolvedPos=e,this.editor=n,this.currentNode=s}get name(){return this.node.type.name}get node(){return this.currentNode||this.resolvedPos.node()}get element(){return this.editor.view.domAtPos(this.pos).node}get depth(){var e;return(e=this.actualDepth)!=null?e:this.resolvedPos.depth}get pos(){return this.resolvedPos.pos}get content(){return this.node.content}set content(e){let n=this.from,r=this.to;if(this.isBlock){if(this.content.size===0){console.error(`You can’t set content on a block node. Tried to set content on ${this.name} at ${this.pos}`);return}n=this.from+1,r=this.to-1}this.editor.commands.insertContentAt({from:n,to:r},e)}get attributes(){return this.node.attrs}get textContent(){return this.node.textContent}get size(){return this.node.nodeSize}get from(){return this.isBlock?this.pos:this.resolvedPos.start(this.resolvedPos.depth)}get range(){return{from:this.from,to:this.to}}get to(){return this.isBlock?this.pos+this.size:this.resolvedPos.end(this.resolvedPos.depth)+(this.node.isText?0:1)}get parent(){if(this.depth===0)return null;const e=this.resolvedPos.start(this.resolvedPos.depth-1),n=this.resolvedPos.doc.resolve(e);return new Pt(n,this.editor)}get before(){let e=this.resolvedPos.doc.resolve(this.from-(this.isBlock?1:2));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.from-3)),new Pt(e,this.editor)}get after(){let e=this.resolvedPos.doc.resolve(this.to+(this.isBlock?2:1));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.to+3)),new Pt(e,this.editor)}get children(){const e=[];return this.node.content.forEach((n,r)=>{const s=n.isBlock&&!n.isTextblock,i=n.isAtom&&!n.isText,o=n.isInline,l=this.pos+r+(i?0:1);if(l<0||l>this.resolvedPos.doc.nodeSize-2)return;const a=this.resolvedPos.doc.resolve(l);if(!s&&!o&&a.depth<=this.depth)return;const c=new Pt(a,this.editor,s,s||o?n:null);s&&(c.actualDepth=this.depth+1),e.push(c)}),e}get firstChild(){return this.children[0]||null}get lastChild(){const e=this.children;return e[e.length-1]||null}closest(e,n={}){let r=null,s=this.parent;for(;s&&!r;){if(s.node.type.name===e)if(Object.keys(n).length>0){const i=s.node.attrs,o=Object.keys(n);for(let l=0;l{r&&s.length>0||(o.node.type.name===e&&i.every(a=>n[a]===o.node.attrs[a])&&s.push(o),!(r&&s.length>0)&&(s=s.concat(o.querySelectorAll(e,n,r))))}),s}setAttribute(e){const{tr:n}=this.editor.state;n.setNodeMarkup(this.from,void 0,{...this.node.attrs,...e}),this.editor.view.dispatch(n)}},Gf=`.ProseMirror { + position: relative; +} + +.ProseMirror { + word-wrap: break-word; + white-space: pre-wrap; + white-space: break-spaces; + -webkit-font-variant-ligatures: none; + font-variant-ligatures: none; + font-feature-settings: "liga" 0; /* the above doesn't seem to work in Edge */ +} + +.ProseMirror [contenteditable="false"] { + white-space: normal; +} + +.ProseMirror [contenteditable="false"] [contenteditable="true"] { + white-space: pre-wrap; +} + +.ProseMirror pre { + white-space: pre-wrap; +} + +img.ProseMirror-separator { + display: inline !important; + border: none !important; + margin: 0 !important; + width: 0 !important; + height: 0 !important; +} + +.ProseMirror-gapcursor { + display: none; + pointer-events: none; + position: absolute; + margin: 0; +} + +.ProseMirror-gapcursor:after { + content: ""; + display: block; + position: absolute; + top: -2px; + width: 20px; + border-top: 1px solid black; + animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite; +} + +@keyframes ProseMirror-cursor-blink { + to { + visibility: hidden; + } +} + +.ProseMirror-hideselection *::selection { + background: transparent; +} + +.ProseMirror-hideselection *::-moz-selection { + background: transparent; +} + +.ProseMirror-hideselection * { + caret-color: transparent; +} + +.ProseMirror-focused .ProseMirror-gapcursor { + display: block; +}`;function Yf(t,e,n){const r=document.querySelector("style[data-tiptap-style]");if(r!==null)return r;const s=document.createElement("style");return e&&s.setAttribute("nonce",e),s.setAttribute("data-tiptap-style",""),s.innerHTML=t,document.getElementsByTagName("head")[0].appendChild(s),s}var Qf=class extends $f{constructor(t={}){super(),this.css=null,this.className="tiptap",this.editorView=null,this.isFocused=!1,this.isInitialized=!1,this.extensionStorage={},this.instanceId=Math.random().toString(36).slice(2,9),this.options={element:typeof document<"u"?document.createElement("div"):null,content:"",injectCSS:!0,injectNonce:void 0,extensions:[],autofocus:!1,editable:!0,textDirection:void 0,editorProps:{},parseOptions:{},coreExtensionOptions:{},enableInputRules:!0,enablePasteRules:!0,enableCoreExtensions:!0,enableContentCheck:!1,emitContentError:!1,onBeforeCreate:()=>null,onCreate:()=>null,onMount:()=>null,onUnmount:()=>null,onUpdate:()=>null,onSelectionUpdate:()=>null,onTransaction:()=>null,onFocus:()=>null,onBlur:()=>null,onDestroy:()=>null,onContentError:({error:r})=>{throw r},onPaste:()=>null,onDrop:()=>null,onDelete:()=>null,enableExtensionDispatchTransaction:!0},this.isCapturingTransaction=!1,this.capturedTransaction=null,this.utils={getUpdatedPosition:mf,createMappablePosition:gf},this.setOptions(t),this.createExtensionManager(),this.createCommandManager(),this.createSchema(),this.on("beforeCreate",this.options.onBeforeCreate),this.emit("beforeCreate",{editor:this}),this.on("mount",this.options.onMount),this.on("unmount",this.options.onUnmount),this.on("contentError",this.options.onContentError),this.on("create",this.options.onCreate),this.on("update",this.options.onUpdate),this.on("selectionUpdate",this.options.onSelectionUpdate),this.on("transaction",this.options.onTransaction),this.on("focus",this.options.onFocus),this.on("blur",this.options.onBlur),this.on("destroy",this.options.onDestroy),this.on("drop",({event:r,slice:s,moved:i})=>this.options.onDrop(r,s,i)),this.on("paste",({event:r,slice:s})=>this.options.onPaste(r,s)),this.on("delete",this.options.onDelete);const e=this.createDoc(),n=ql(e,this.options.autofocus);this.editorState=bt.create({doc:e,schema:this.schema,selection:n||void 0}),this.options.element&&this.mount(this.options.element)}mount(t){if(typeof document>"u")throw new Error("[tiptap error]: The editor cannot be mounted because there is no 'document' defined in this environment.");this.createView(t),this.emit("mount",{editor:this}),this.css&&!document.head.contains(this.css)&&document.head.appendChild(this.css),window.setTimeout(()=>{this.isDestroyed||(this.options.autofocus!==!1&&this.options.autofocus!==null&&this.commands.focus(this.options.autofocus),this.emit("create",{editor:this}),this.isInitialized=!0)},0)}unmount(){if(this.editorView){const t=this.editorView.dom;t!=null&&t.editor&&delete t.editor,this.editorView.destroy()}if(this.editorView=null,this.isInitialized=!1,this.css&&!document.querySelectorAll(`.${this.className}`).length)try{typeof this.css.remove=="function"?this.css.remove():this.css.parentNode&&this.css.parentNode.removeChild(this.css)}catch(t){console.warn("Failed to remove CSS element:",t)}this.css=null,this.emit("unmount",{editor:this})}get storage(){return this.extensionStorage}get commands(){return this.commandManager.commands}chain(){return this.commandManager.chain()}can(){return this.commandManager.can()}injectCSS(){this.options.injectCSS&&typeof document<"u"&&(this.css=Yf(Gf,this.options.injectNonce))}setOptions(t={}){this.options={...this.options,...t},!(!this.editorView||!this.state||this.isDestroyed)&&(this.options.editorProps&&this.view.setProps(this.options.editorProps),this.view.updateState(this.state))}setEditable(t,e=!0){this.setOptions({editable:t}),e&&this.emit("update",{editor:this,transaction:this.state.tr,appendedTransactions:[]})}get isEditable(){return this.options.editable&&this.view&&this.view.editable}get view(){return this.editorView?this.editorView:new Proxy({state:this.editorState,updateState:t=>{this.editorState=t},dispatch:t=>{this.dispatchTransaction(t)},composing:!1,dragging:null,editable:!0,isDestroyed:!1},{get:(t,e)=>{if(this.editorView)return this.editorView[e];if(e==="state")return this.editorState;if(e in t)return Reflect.get(t,e);throw new Error(`[tiptap error]: The editor view is not available. Cannot access view['${e}']. The editor may not be mounted yet.`)}})}get state(){return this.editorView&&(this.editorState=this.view.state),this.editorState}registerPlugin(t,e){const n=Yl(e)?e(t,[...this.state.plugins]):[...this.state.plugins,t],r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}unregisterPlugin(t){if(this.isDestroyed)return;const e=this.state.plugins;let n=e;if([].concat(t).forEach(s=>{const i=typeof s=="string"?`${s}$`:s.key;n=n.filter(o=>!o.key.startsWith(i))}),e.length===n.length)return;const r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}createExtensionManager(){var t,e;const r=[...this.options.enableCoreExtensions?[pa,da.configure({blockSeparator:(e=(t=this.options.coreExtensionOptions)==null?void 0:t.clipboardTextSerializer)==null?void 0:e.blockSeparator}),ua,ga,ya,ka,fa,ba,ha,wa.configure({direction:this.options.textDirection})].filter(s=>typeof this.options.enableCoreExtensions=="object"?this.options.enableCoreExtensions[s.name]!==!1:!0):[],...this.options.extensions].filter(s=>["extension","node","mark"].includes(s==null?void 0:s.type));this.extensionManager=new Un(r,this)}createCommandManager(){this.commandManager=new _n({editor:this})}createSchema(){this.schema=this.extensionManager.schema}createDoc(){let t;try{t=Pr(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:this.options.enableContentCheck})}catch(e){if(!(e instanceof Error)||!["[tiptap error]: Invalid JSON content","[tiptap error]: Invalid HTML content"].includes(e.message))throw e;this.emit("contentError",{editor:this,error:e,disableCollaboration:()=>{"collaboration"in this.storage&&typeof this.storage.collaboration=="object"&&this.storage.collaboration&&(this.storage.collaboration.isDisabled=!0),this.options.extensions=this.options.extensions.filter(n=>n.name!=="collaboration"),this.createExtensionManager()}}),t=Pr(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:!1})}return t}createView(t){const{editorProps:e,enableExtensionDispatchTransaction:n}=this.options,r=e.dispatchTransaction||this.dispatchTransaction.bind(this),s=n?this.extensionManager.dispatchTransaction(r):r;this.editorView=new _l(t,{...e,attributes:{role:"textbox",...e==null?void 0:e.attributes},dispatchTransaction:s,state:this.editorState,markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews});const i=this.state.reconfigure({plugins:this.extensionManager.plugins});this.view.updateState(i),this.prependClass(),this.injectCSS();const o=this.view.dom;o.editor=this}createNodeViews(){this.view.isDestroyed||this.view.setProps({markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews})}prependClass(){this.view.dom.className=`${this.className} ${this.view.dom.className}`}captureTransaction(t){this.isCapturingTransaction=!0,t(),this.isCapturingTransaction=!1;const e=this.capturedTransaction;return this.capturedTransaction=null,e}dispatchTransaction(t){if(this.view.isDestroyed)return;if(this.isCapturingTransaction){if(!this.capturedTransaction){this.capturedTransaction=t;return}t.steps.forEach(c=>{var d;return(d=this.capturedTransaction)==null?void 0:d.step(c)});return}const{state:e,transactions:n}=this.state.applyTransaction(t),r=!this.state.selection.eq(e.selection),s=n.includes(t),i=this.state;if(this.emit("beforeTransaction",{editor:this,transaction:t,nextState:e}),!s)return;this.view.updateState(e),this.emit("transaction",{editor:this,transaction:t,appendedTransactions:n.slice(1)}),r&&this.emit("selectionUpdate",{editor:this,transaction:t});const o=n.findLast(c=>c.getMeta("focus")||c.getMeta("blur")),l=o==null?void 0:o.getMeta("focus"),a=o==null?void 0:o.getMeta("blur");l&&this.emit("focus",{editor:this,event:l.event,transaction:o}),a&&this.emit("blur",{editor:this,event:a.event,transaction:o}),!(t.getMeta("preventUpdate")||!n.some(c=>c.docChanged)||i.doc.eq(e.doc))&&this.emit("update",{editor:this,transaction:t,appendedTransactions:n.slice(1)})}getAttributes(t){return na(this.state,t)}isActive(t,e){const n=typeof t=="string"?t:null,r=typeof t=="string"?e:t;return hf(this.state,n,r)}getJSON(){return this.state.doc.toJSON()}getHTML(){return ys(this.state.doc.content,this.schema)}getText(t){const{blockSeparator:e=` + +`,textSerializers:n={}}=t||{};return of(this.state.doc,{blockSeparator:e,textSerializers:{...ta(this.schema),...n}})}get isEmpty(){return Kn(this.state.doc)}destroy(){this.emit("destroy"),this.unmount(),this.removeAllListeners()}get isDestroyed(){var t,e;return(e=(t=this.editorView)==null?void 0:t.isDestroyed)!=null?e:!0}$node(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelector(t,e))||null}$nodes(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelectorAll(t,e))||null}$pos(t){const e=this.state.doc.resolve(t);return new Xf(e,this)}get $doc(){return this.$pos(0)}};function dt(t){return new Qt({find:t.find,handler:({state:e,range:n,match:r})=>{const s=D(t.getAttributes,void 0,r);if(s===!1||s===null)return null;const{tr:i}=e,o=r[r.length-1],l=r[0];if(o){const a=l.search(/\S/),c=n.from+l.indexOf(o),d=c+o.length;if(ks(n.from,n.to,e.doc).filter(f=>f.mark.type.excluded.find(m=>m===t.type&&m!==f.mark.type)).filter(f=>f.to>c).length)return null;dn.from&&i.delete(n.from+a,c);const h=n.from+a+o.length;i.addMark(n.from+a,h,t.type.create(s||{})),i.removeStoredMark(t.type)}},undoable:t.undoable})}function xa(t){return new Qt({find:t.find,handler:({state:e,range:n,match:r})=>{const s=D(t.getAttributes,void 0,r)||{},{tr:i}=e,o=n.from;let l=n.to;const a=t.type.create(s);if(r[1]){const c=r[0].lastIndexOf(r[1]);let d=o+c;d>l?d=l:l=d+r[1].length;const u=r[0][r[0].length-1];i.insertText(u,o+r[0].length-1),i.replaceWith(d,l,a)}else if(r[0]){const c=t.type.isInline?o:o-1;i.insert(c,t.type.create(s)).delete(i.mapping.map(o),i.mapping.map(l))}i.scrollIntoView()},undoable:t.undoable})}function zr(t){return new Qt({find:t.find,handler:({state:e,range:n,match:r})=>{const s=e.doc.resolve(n.from),i=D(t.getAttributes,void 0,r)||{};if(!s.node(-1).canReplaceWith(s.index(-1),s.indexAfter(-1),t.type))return null;e.tr.delete(n.from,n.to).setBlockType(n.from,n.from,t.type,i)},undoable:t.undoable})}function W(t){return new Qt({find:t.find,handler:({state:e,range:n,match:r})=>{let s=t.replace,i=n.from;const o=n.to;if(r[1]){const l=r[0].lastIndexOf(r[1]);s+=r[0].slice(l+r[1].length),i+=l;const a=i-o;a>0&&(s=r[0].slice(l-a,l)+s,i=o)}e.tr.insertText(s,i,o)},undoable:t.undoable})}function Et(t){return new Qt({find:t.find,handler:({state:e,range:n,match:r,chain:s})=>{const i=D(t.getAttributes,void 0,r)||{},o=e.tr.delete(n.from,n.to),a=o.doc.resolve(n.from).blockRange(),c=a&&Xr(a,t.type,i);if(!c)return null;if(o.wrap(a,c),t.keepMarks&&t.editor){const{selection:u,storedMarks:h}=e,{splittableMarks:f}=t.editor.extensionManager,p=h||u.$to.parentOffset&&u.$from.marks();if(p){const m=p.filter(g=>f.includes(g.type.name));o.ensureMarks(m)}}if(t.keepAttributes){const u=t.type.name==="bulletList"||t.type.name==="orderedList"?"listItem":"taskList";s().updateAttributes(u,i).run()}const d=o.doc.resolve(n.from-1).nodeBefore;d&&d.type===t.type&&Ue(o.doc,n.from-1)&&(!t.joinPredicate||t.joinPredicate(r,d))&&o.join(n.from-1)},undoable:t.undoable})}var Zf=t=>"touches"in t,ep=class{constructor(t){this.directions=["bottom-left","bottom-right","top-left","top-right"],this.minSize={height:8,width:8},this.preserveAspectRatio=!1,this.classNames={container:"",wrapper:"",handle:"",resizing:""},this.initialWidth=0,this.initialHeight=0,this.aspectRatio=1,this.isResizing=!1,this.activeHandle=null,this.startX=0,this.startY=0,this.startWidth=0,this.startHeight=0,this.isShiftKeyPressed=!1,this.lastEditableState=void 0,this.handleMap=new Map,this.handleMouseMove=l=>{if(!this.isResizing||!this.activeHandle)return;const a=l.clientX-this.startX,c=l.clientY-this.startY;this.handleResize(a,c)},this.handleTouchMove=l=>{if(!this.isResizing||!this.activeHandle)return;const a=l.touches[0];if(!a)return;const c=a.clientX-this.startX,d=a.clientY-this.startY;this.handleResize(c,d)},this.handleMouseUp=()=>{if(!this.isResizing)return;const l=this.element.offsetWidth,a=this.element.offsetHeight;this.onCommit(l,a),this.isResizing=!1,this.activeHandle=null,this.container.dataset.resizeState="false",this.classNames.resizing&&this.container.classList.remove(this.classNames.resizing),document.removeEventListener("mousemove",this.handleMouseMove),document.removeEventListener("mouseup",this.handleMouseUp),document.removeEventListener("keydown",this.handleKeyDown),document.removeEventListener("keyup",this.handleKeyUp)},this.handleKeyDown=l=>{l.key==="Shift"&&(this.isShiftKeyPressed=!0)},this.handleKeyUp=l=>{l.key==="Shift"&&(this.isShiftKeyPressed=!1)};var e,n,r,s,i,o;this.node=t.node,this.editor=t.editor,this.element=t.element,this.contentElement=t.contentElement,this.getPos=t.getPos,this.onResize=t.onResize,this.onCommit=t.onCommit,this.onUpdate=t.onUpdate,(e=t.options)!=null&&e.min&&(this.minSize={...this.minSize,...t.options.min}),(n=t.options)!=null&&n.max&&(this.maxSize=t.options.max),(r=t==null?void 0:t.options)!=null&&r.directions&&(this.directions=t.options.directions),(s=t.options)!=null&&s.preserveAspectRatio&&(this.preserveAspectRatio=t.options.preserveAspectRatio),(i=t.options)!=null&&i.className&&(this.classNames={container:t.options.className.container||"",wrapper:t.options.className.wrapper||"",handle:t.options.className.handle||"",resizing:t.options.className.resizing||""}),(o=t.options)!=null&&o.createCustomHandle&&(this.createCustomHandle=t.options.createCustomHandle),this.wrapper=this.createWrapper(),this.container=this.createContainer(),this.applyInitialSize(),this.attachHandles(),this.editor.on("update",this.handleEditorUpdate.bind(this))}get dom(){return this.container}get contentDOM(){var t;return(t=this.contentElement)!=null?t:null}handleEditorUpdate(){const t=this.editor.isEditable;t!==this.lastEditableState&&(this.lastEditableState=t,t?t&&this.handleMap.size===0&&this.attachHandles():this.removeHandles())}update(t,e,n){return t.type!==this.node.type?!1:(this.node=t,this.onUpdate?this.onUpdate(t,e,n):!0)}destroy(){this.isResizing&&(this.container.dataset.resizeState="false",this.classNames.resizing&&this.container.classList.remove(this.classNames.resizing),document.removeEventListener("mousemove",this.handleMouseMove),document.removeEventListener("mouseup",this.handleMouseUp),document.removeEventListener("keydown",this.handleKeyDown),document.removeEventListener("keyup",this.handleKeyUp),this.isResizing=!1,this.activeHandle=null),this.editor.off("update",this.handleEditorUpdate.bind(this)),this.container.remove()}createContainer(){const t=document.createElement("div");return t.dataset.resizeContainer="",t.dataset.node=this.node.type.name,t.style.display="flex",this.classNames.container&&(t.className=this.classNames.container),t.appendChild(this.wrapper),t}createWrapper(){const t=document.createElement("div");return t.style.position="relative",t.style.display="block",t.dataset.resizeWrapper="",this.classNames.wrapper&&(t.className=this.classNames.wrapper),t.appendChild(this.element),t}createHandle(t){const e=document.createElement("div");return e.dataset.resizeHandle=t,e.style.position="absolute",this.classNames.handle&&(e.className=this.classNames.handle),e}positionHandle(t,e){const n=e.includes("top"),r=e.includes("bottom"),s=e.includes("left"),i=e.includes("right");n&&(t.style.top="0"),r&&(t.style.bottom="0"),s&&(t.style.left="0"),i&&(t.style.right="0"),(e==="top"||e==="bottom")&&(t.style.left="0",t.style.right="0"),(e==="left"||e==="right")&&(t.style.top="0",t.style.bottom="0")}attachHandles(){this.directions.forEach(t=>{let e;this.createCustomHandle?e=this.createCustomHandle(t):e=this.createHandle(t),e instanceof HTMLElement||(console.warn(`[ResizableNodeView] createCustomHandle("${t}") did not return an HTMLElement. Falling back to default handle.`),e=this.createHandle(t)),this.createCustomHandle||this.positionHandle(e,t),e.addEventListener("mousedown",n=>this.handleResizeStart(n,t)),e.addEventListener("touchstart",n=>this.handleResizeStart(n,t)),this.handleMap.set(t,e),this.wrapper.appendChild(e)})}removeHandles(){this.handleMap.forEach(t=>t.remove()),this.handleMap.clear()}applyInitialSize(){const t=this.node.attrs.width,e=this.node.attrs.height;t?(this.element.style.width=`${t}px`,this.initialWidth=t):this.initialWidth=this.element.offsetWidth,e?(this.element.style.height=`${e}px`,this.initialHeight=e):this.initialHeight=this.element.offsetHeight,this.initialWidth>0&&this.initialHeight>0&&(this.aspectRatio=this.initialWidth/this.initialHeight)}handleResizeStart(t,e){t.preventDefault(),t.stopPropagation(),this.isResizing=!0,this.activeHandle=e,Zf(t)?(this.startX=t.touches[0].clientX,this.startY=t.touches[0].clientY):(this.startX=t.clientX,this.startY=t.clientY),this.startWidth=this.element.offsetWidth,this.startHeight=this.element.offsetHeight,this.startWidth>0&&this.startHeight>0&&(this.aspectRatio=this.startWidth/this.startHeight),this.getPos(),this.container.dataset.resizeState="true",this.classNames.resizing&&this.container.classList.add(this.classNames.resizing),document.addEventListener("mousemove",this.handleMouseMove),document.addEventListener("touchmove",this.handleTouchMove),document.addEventListener("mouseup",this.handleMouseUp),document.addEventListener("keydown",this.handleKeyDown),document.addEventListener("keyup",this.handleKeyUp)}handleResize(t,e){if(!this.activeHandle)return;const n=this.preserveAspectRatio||this.isShiftKeyPressed,{width:r,height:s}=this.calculateNewDimensions(this.activeHandle,t,e),i=this.applyConstraints(r,s,n);this.element.style.width=`${i.width}px`,this.element.style.height=`${i.height}px`,this.onResize&&this.onResize(i.width,i.height)}calculateNewDimensions(t,e,n){let r=this.startWidth,s=this.startHeight;const i=t.includes("right"),o=t.includes("left"),l=t.includes("bottom"),a=t.includes("top");return i?r=this.startWidth+e:o&&(r=this.startWidth-e),l?s=this.startHeight+n:a&&(s=this.startHeight-n),(t==="right"||t==="left")&&(r=this.startWidth+(i?e:-e)),(t==="top"||t==="bottom")&&(s=this.startHeight+(l?n:-n)),this.preserveAspectRatio||this.isShiftKeyPressed?this.applyAspectRatio(r,s,t):{width:r,height:s}}applyConstraints(t,e,n){var r,s,i,o;if(!n){let c=Math.max(this.minSize.width,t),d=Math.max(this.minSize.height,e);return(r=this.maxSize)!=null&&r.width&&(c=Math.min(this.maxSize.width,c)),(s=this.maxSize)!=null&&s.height&&(d=Math.min(this.maxSize.height,d)),{width:c,height:d}}let l=t,a=e;return lthis.maxSize.width&&(l=this.maxSize.width,a=l/this.aspectRatio),(o=this.maxSize)!=null&&o.height&&a>this.maxSize.height&&(a=this.maxSize.height,l=a*this.aspectRatio),{width:l,height:a}}applyAspectRatio(t,e,n){const r=n==="left"||n==="right",s=n==="top"||n==="bottom";return r?{width:t,height:t/this.aspectRatio}:s?{width:e*this.aspectRatio,height:e}:{width:t,height:t/this.aspectRatio}}};function tp(t,e){const{selection:n}=t,{$from:r}=n;if(n instanceof T){const i=r.index();return r.parent.canReplaceWith(i,i+1,e)}let s=r.depth;for(;s>=0;){const i=r.index(s);if(r.node(s).contentMatchAt(i).matchType(e))return!0;s-=1}return!1}var np={};ps(np,{createAtomBlockMarkdownSpec:()=>rp,createBlockMarkdownSpec:()=>sp,createInlineMarkdownSpec:()=>lp,parseAttributes:()=>xs,parseIndentedBlocks:()=>Br,renderNestedMarkdownContent:()=>Cs,serializeAttributes:()=>Ss});function xs(t){if(!(t!=null&&t.trim()))return{};const e={},n=[],r=t.replace(/["']([^"']*)["']/g,c=>(n.push(c),`__QUOTED_${n.length-1}__`)),s=r.match(/(?:^|\s)\.([a-zA-Z][\w-]*)/g);if(s){const c=s.map(d=>d.trim().slice(1));e.class=c.join(" ")}const i=r.match(/(?:^|\s)#([a-zA-Z][\w-]*)/);i&&(e.id=i[1]);const o=/([a-zA-Z][\w-]*)\s*=\s*(__QUOTED_\d+__)/g;Array.from(r.matchAll(o)).forEach(([,c,d])=>{var u;const h=parseInt(((u=d.match(/__QUOTED_(\d+)__/))==null?void 0:u[1])||"0",10),f=n[h];f&&(e[c]=f.slice(1,-1))});const a=r.replace(/(?:^|\s)\.([a-zA-Z][\w-]*)/g,"").replace(/(?:^|\s)#([a-zA-Z][\w-]*)/g,"").replace(/([a-zA-Z][\w-]*)\s*=\s*__QUOTED_\d+__/g,"").trim();return a&&a.split(/\s+/).filter(Boolean).forEach(d=>{d.match(/^[a-zA-Z][\w-]*$/)&&(e[d]=!0)}),e}function Ss(t){if(!t||Object.keys(t).length===0)return"";const e=[];return t.class&&String(t.class).split(/\s+/).filter(Boolean).forEach(r=>e.push(`.${r}`)),t.id&&e.push(`#${t.id}`),Object.entries(t).forEach(([n,r])=>{n==="class"||n==="id"||(r===!0?e.push(n):r!==!1&&r!=null&&e.push(`${n}="${String(r)}"`))}),e.join(" ")}function rp(t){const{nodeName:e,name:n,parseAttributes:r=xs,serializeAttributes:s=Ss,defaultAttributes:i={},requiredAttributes:o=[],allowedAttributes:l}=t,a=n||e,c=d=>{if(!l)return d;const u={};return l.forEach(h=>{h in d&&(u[h]=d[h])}),u};return{parseMarkdown:(d,u)=>{const h={...i,...d.attributes};return u.createNode(e,h,[])},markdownTokenizer:{name:e,level:"block",start(d){var u;const h=new RegExp(`^:::${a}(?:\\s|$)`,"m"),f=(u=d.match(h))==null?void 0:u.index;return f!==void 0?f:-1},tokenize(d,u,h){const f=new RegExp(`^:::${a}(?:\\s+\\{([^}]*)\\})?\\s*:::(?:\\n|$)`),p=d.match(f);if(!p)return;const m=p[1]||"",g=r(m);if(!o.find(k=>!(k in g)))return{type:e,raw:p[0],attributes:g}}},renderMarkdown:d=>{const u=c(d.attrs||{}),h=s(u),f=h?` {${h}}`:"";return`:::${a}${f} :::`}}}function sp(t){const{nodeName:e,name:n,getContent:r,parseAttributes:s=xs,serializeAttributes:i=Ss,defaultAttributes:o={},content:l="block",allowedAttributes:a}=t,c=n||e,d=u=>{if(!a)return u;const h={};return a.forEach(f=>{f in u&&(h[f]=u[f])}),h};return{parseMarkdown:(u,h)=>{let f;if(r){const m=r(u);f=typeof m=="string"?[{type:"text",text:m}]:m}else l==="block"?f=h.parseChildren(u.tokens||[]):f=h.parseInline(u.tokens||[]);const p={...o,...u.attributes};return h.createNode(e,p,f)},markdownTokenizer:{name:e,level:"block",start(u){var h;const f=new RegExp(`^:::${c}`,"m"),p=(h=u.match(f))==null?void 0:h.index;return p!==void 0?p:-1},tokenize(u,h,f){var p;const m=new RegExp(`^:::${c}(?:\\s+\\{([^}]*)\\})?\\s*\\n`),g=u.match(m);if(!g)return;const[y,k=""]=g,w=s(k);let S=1;const C=y.length;let A="";const v=/^:::([\w-]*)(\s.*)?/gm,O=u.slice(C);for(v.lastIndex=0;;){const R=v.exec(O);if(R===null)break;const Ce=R.index,Xn=R[1];if(!((p=R[2])!=null&&p.endsWith(":::"))){if(Xn)S+=1;else if(S-=1,S===0){const en=O.slice(0,Ce);A=en.trim();const Gn=u.slice(0,C+Ce+R[0].length);let Ie=[];if(A)if(l==="block")for(Ie=f.blockTokens(en),Ie.forEach(Me=>{Me.text&&(!Me.tokens||Me.tokens.length===0)&&(Me.tokens=f.inlineTokens(Me.text))});Ie.length>0;){const Me=Ie[Ie.length-1];if(Me.type==="paragraph"&&(!Me.text||Me.text.trim()===""))Ie.pop();else break}else Ie=f.inlineTokens(A);return{type:e,raw:Gn,attributes:w,content:A,tokens:Ie}}}}}},renderMarkdown:(u,h)=>{const f=d(u.attrs||{}),p=i(f),m=p?` {${p}}`:"",g=h.renderChildren(u.content||[],` + +`);return`:::${c}${m} + +${g} + +:::`}}}function ip(t){if(!t.trim())return{};const e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let r=n.exec(t);for(;r!==null;){const[,s,i,o]=r;e[s]=i||o,r=n.exec(t)}return e}function op(t){return Object.entries(t).filter(([,e])=>e!=null).map(([e,n])=>`${e}="${n}"`).join(" ")}function lp(t){const{nodeName:e,name:n,getContent:r,parseAttributes:s=ip,serializeAttributes:i=op,defaultAttributes:o={},selfClosing:l=!1,allowedAttributes:a}=t,c=n||e,d=h=>{if(!a)return h;const f={};return a.forEach(p=>{const m=typeof p=="string"?p:p.name,g=typeof p=="string"?void 0:p.skipIfDefault;if(m in h){const y=h[m];if(g!==void 0&&y===g)return;f[m]=y}}),f},u=c.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return{parseMarkdown:(h,f)=>{const p={...o,...h.attributes};if(l)return f.createNode(e,p);const m=r?r(h):h.content||"";return m?f.createNode(e,p,[f.createTextNode(m)]):f.createNode(e,p,[])},markdownTokenizer:{name:e,level:"inline",start(h){const f=l?new RegExp(`\\[${u}\\s*[^\\]]*\\]`):new RegExp(`\\[${u}\\s*[^\\]]*\\][\\s\\S]*?\\[\\/${u}\\]`),p=h.match(f),m=p==null?void 0:p.index;return m!==void 0?m:-1},tokenize(h,f,p){const m=l?new RegExp(`^\\[${u}\\s*([^\\]]*)\\]`):new RegExp(`^\\[${u}\\s*([^\\]]*)\\]([\\s\\S]*?)\\[\\/${u}\\]`),g=h.match(m);if(!g)return;let y="",k="";if(l){const[,S]=g;k=S}else{const[,S,C]=g;k=S,y=C||""}const w=s(k.trim());return{type:e,raw:g[0],content:y.trim(),attributes:w}}},renderMarkdown:h=>{let f="";r?f=r(h):h.content&&h.content.length>0&&(f=h.content.filter(y=>y.type==="text").map(y=>y.text).join(""));const p=d(h.attrs||{}),m=i(p),g=m?` ${m}`:"";return l?`[${c}${g}]`:`[${c}${g}]${f}[/${c}]`}}}function Br(t,e,n){var r,s,i,o;const l=t.split(` +`),a=[];let c="",d=0;const u=e.baseIndentSize||2;for(;d0)break;if(h.trim()===""){d+=1,c=`${c}${h} +`;continue}else return}const p=e.extractItemData(f),{indentLevel:m,mainContent:g}=p;c=`${c}${h} +`;const y=[g];for(d+=1;dCe.trim()!=="");if(v===-1)break;if((((s=(r=l[d+1+v].match(/^(\s*)/))==null?void 0:r[1])==null?void 0:s.length)||0)>m){y.push(C),c=`${c}${C} +`,d+=1;continue}else break}if((((o=(i=C.match(/^(\s*)/))==null?void 0:i[1])==null?void 0:o.length)||0)>m)y.push(C),c=`${c}${C} +`,d+=1;else break}let k;const w=y.slice(1);if(w.length>0){const C=w.map(A=>A.slice(m+u)).join(` +`);C.trim()&&(e.customNestedParser?k=e.customNestedParser(C):k=n.blockTokens(C))}const S=e.createToken(p,k);a.push(S)}if(a.length!==0)return{items:a,raw:c}}function Cs(t,e,n,r){if(!t||!Array.isArray(t.content))return"";const s=typeof n=="function"?n(r):n,[i,...o]=t.content,l=e.renderChildren([i]),a=[`${s}${l}`];return o&&o.length>0&&o.forEach(c=>{const d=e.renderChildren([c]);if(d){const u=d.split(` +`).map(h=>h?e.indent(h):"").join(` +`);a.push(u)}}),a.join(` +`)}function ap(t,e,n={}){const{state:r}=e,{doc:s,tr:i}=r,o=t;s.descendants((l,a)=>{const c=i.mapping.map(a),d=i.mapping.map(a)+l.nodeSize;let u=null;if(l.marks.forEach(f=>{if(f!==o)return!1;u=f}),!u)return;let h=!1;if(Object.keys(n).forEach(f=>{n[f]!==u.attrs[f]&&(h=!0)}),h){const f=t.type.create({...t.attrs,...n});i.removeMark(c,d,t.type),i.addMark(c,d,f)}}),i.docChanged&&e.view.dispatch(i)}var X=class Sa extends ws{constructor(){super(...arguments),this.type="node"}static create(e={}){const n=typeof e=="function"?e():e;return new Sa(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}},cp=class{constructor(t,e,n){this.isDragging=!1,this.component=t,this.editor=e.editor,this.options={stopEvent:null,ignoreMutation:null,...n},this.extension=e.extension,this.node=e.node,this.decorations=e.decorations,this.innerDecorations=e.innerDecorations,this.view=e.view,this.HTMLAttributes=e.HTMLAttributes,this.getPos=e.getPos,this.mount()}mount(){}get dom(){return this.editor.view.dom}get contentDOM(){return null}onDragStart(t){var e,n,r,s,i,o,l;const{view:a}=this.editor,c=t.target,d=c.nodeType===3?(e=c.parentElement)==null?void 0:e.closest("[data-drag-handle]"):c.closest("[data-drag-handle]");if(!this.dom||(n=this.contentDOM)!=null&&n.contains(c)||!d)return;let u=0,h=0;if(this.dom!==d){const k=this.dom.getBoundingClientRect(),w=d.getBoundingClientRect(),S=(s=t.offsetX)!=null?s:(r=t.nativeEvent)==null?void 0:r.offsetX,C=(o=t.offsetY)!=null?o:(i=t.nativeEvent)==null?void 0:i.offsetY;u=w.x-k.x+S,h=w.y-k.y+C}const f=this.dom.cloneNode(!0);try{const k=this.dom.getBoundingClientRect();f.style.width=`${Math.round(k.width)}px`,f.style.height=`${Math.round(k.height)}px`,f.style.boxSizing="border-box",f.style.pointerEvents="none"}catch{}let p=null;try{p=document.createElement("div"),p.style.position="absolute",p.style.top="-9999px",p.style.left="-9999px",p.style.pointerEvents="none",p.appendChild(f),document.body.appendChild(p),(l=t.dataTransfer)==null||l.setDragImage(f,u,h)}finally{p&&setTimeout(()=>{try{p==null||p.remove()}catch{}},0)}const m=this.getPos();if(typeof m!="number")return;const g=T.create(a.state.doc,m),y=a.state.tr.setSelection(g);a.dispatch(y)}stopEvent(t){var e;if(!this.dom)return!1;if(typeof this.options.stopEvent=="function")return this.options.stopEvent({event:t});const n=t.target;if(!(this.dom.contains(n)&&!((e=this.contentDOM)!=null&&e.contains(n))))return!1;const s=t.type.startsWith("drag"),i=t.type==="drop";if((["INPUT","BUTTON","SELECT","TEXTAREA"].includes(n.tagName)||n.isContentEditable)&&!i&&!s)return!0;const{isEditable:l}=this.editor,{isDragging:a}=this,c=!!this.node.type.spec.draggable,d=T.isSelectable(this.node),u=t.type==="copy",h=t.type==="paste",f=t.type==="cut",p=t.type==="mousedown";if(!c&&d&&s&&t.target===this.dom&&t.preventDefault(),c&&s&&!a&&t.target===this.dom)return t.preventDefault(),!1;if(c&&l&&!a&&p){const m=n.closest("[data-drag-handle]");m&&(this.dom===m||this.dom.contains(m))&&(this.isDragging=!0,document.addEventListener("dragend",()=>{this.isDragging=!1},{once:!0}),document.addEventListener("drop",()=>{this.isDragging=!1},{once:!0}),document.addEventListener("mouseup",()=>{this.isDragging=!1},{once:!0}))}return!(a||i||u||h||f||p&&d)}ignoreMutation(t){return!this.dom||!this.contentDOM?!0:typeof this.options.ignoreMutation=="function"?this.options.ignoreMutation({mutation:t}):this.node.isLeaf||this.node.isAtom?!0:t.type==="selection"||this.dom.contains(t.target)&&t.type==="childList"&&(Kt()||Ir())&&this.editor.isFocused&&[...Array.from(t.addedNodes),...Array.from(t.removedNodes)].every(n=>n.isContentEditable)?!1:this.contentDOM===t.target&&t.type==="attributes"?!0:!this.contentDOM.contains(t.target)}updateAttributes(t){this.editor.commands.command(({tr:e})=>{const n=this.getPos();return typeof n!="number"?!1:(e.setNodeMarkup(n,void 0,{...this.node.attrs,...t}),!0)})}deleteNode(){const t=this.getPos();if(typeof t!="number")return;const e=t+this.node.nodeSize;this.editor.commands.deleteRange({from:t,to:e})}};function Ke(t){return new Wf({find:t.find,handler:({state:e,range:n,match:r,pasteEvent:s})=>{const i=D(t.getAttributes,void 0,r,s);if(i===!1||i===null)return null;const{tr:o}=e,l=r[r.length-1],a=r[0];let c=n.to;if(l){const d=a.search(/\S/),u=n.from+a.indexOf(l),h=u+l.length;if(ks(n.from,n.to,e.doc).filter(p=>p.mark.type.excluded.find(g=>g===t.type&&g!==p.mark.type)).filter(p=>p.to>u).length)return null;hn.from&&o.delete(n.from+d,u),c=n.from+d+l.length,o.addMark(n.from+d,c,t.type.create(i||{})),o.removeStoredMark(t.type)}}})}var dp=(...t)=>e=>{t.forEach(n=>{typeof n=="function"?n(e):n&&(n.current=e)})},up=({contentComponent:t})=>{const e=fo.useSyncExternalStore(t.subscribe,t.getSnapshot,t.getServerSnapshot);return de.jsx(de.Fragment,{children:Object.values(e)})};function hp(){const t=new Set;let e={};return{subscribe(n){return t.add(n),()=>{t.delete(n)}},getSnapshot(){return e},getServerSnapshot(){return e},setRenderer(n,r){e={...e,[n]:Qa.createPortal(r.reactElement,r.element,n)},t.forEach(s=>s())},removeRenderer(n){const r={...e};delete r[n],e=r,t.forEach(s=>s())}}}var fp=class extends it.Component{constructor(t){var e;super(t),this.editorContentRef=it.createRef(),this.initialized=!1,this.state={hasContentComponentInitialized:!!((e=t.editor)!=null&&e.contentComponent)}}componentDidMount(){this.init()}componentDidUpdate(){this.init()}init(){var t;const e=this.props.editor;if(e&&!e.isDestroyed&&((t=e.view.dom)!=null&&t.parentNode)){if(e.contentComponent)return;const n=this.editorContentRef.current;n.append(...e.view.dom.parentNode.childNodes),e.setOptions({element:n}),e.contentComponent=hp(),this.state.hasContentComponentInitialized||(this.unsubscribeToContentComponent=e.contentComponent.subscribe(()=>{this.setState(r=>r.hasContentComponentInitialized?r:{hasContentComponentInitialized:!0}),this.unsubscribeToContentComponent&&this.unsubscribeToContentComponent()})),e.createNodeViews(),this.initialized=!0}}componentWillUnmount(){var t;const e=this.props.editor;if(e){this.initialized=!1,e.isDestroyed||e.view.setProps({nodeViews:{}}),this.unsubscribeToContentComponent&&this.unsubscribeToContentComponent(),e.contentComponent=null;try{if(!((t=e.view.dom)!=null&&t.parentNode))return;const n=document.createElement("div");n.append(...e.view.dom.parentNode.childNodes),e.setOptions({element:n})}catch{}}}render(){const{editor:t,innerRef:e,...n}=this.props;return de.jsxs(de.Fragment,{children:[de.jsx("div",{ref:dp(e,this.editorContentRef),...n}),(t==null?void 0:t.contentComponent)&&de.jsx(up,{contentComponent:t.contentComponent})]})}},pp=V.forwardRef((t,e)=>{const n=it.useMemo(()=>Math.floor(Math.random()*4294967295).toString(),[t.editor]);return it.createElement(fp,{key:n,innerRef:e,...t})}),mp=it.memo(pp),gp=typeof window<"u"?V.useLayoutEffect:V.useEffect,yp=class{constructor(t){this.transactionNumber=0,this.lastTransactionNumber=0,this.subscribers=new Set,this.editor=t,this.lastSnapshot={editor:t,transactionNumber:0},this.getSnapshot=this.getSnapshot.bind(this),this.getServerSnapshot=this.getServerSnapshot.bind(this),this.watch=this.watch.bind(this),this.subscribe=this.subscribe.bind(this)}getSnapshot(){return this.transactionNumber===this.lastTransactionNumber?this.lastSnapshot:(this.lastTransactionNumber=this.transactionNumber,this.lastSnapshot={editor:this.editor,transactionNumber:this.transactionNumber},this.lastSnapshot)}getServerSnapshot(){return{editor:null,transactionNumber:0}}subscribe(t){return this.subscribers.add(t),()=>{this.subscribers.delete(t)}}watch(t){if(this.editor=t,this.editor){const e=()=>{this.transactionNumber+=1,this.subscribers.forEach(r=>r())},n=this.editor;return n.on("transaction",e),()=>{n.off("transaction",e)}}}};function bp(t){var e;const[n]=V.useState(()=>new yp(t.editor)),r=tc.useSyncExternalStoreWithSelector(n.subscribe,n.getSnapshot,n.getServerSnapshot,t.selector,(e=t.equalityFn)!=null?e:nc);return gp(()=>n.watch(t.editor),[t.editor,n]),V.useDebugValue(r),r}var kp=!1,$r=typeof window>"u",wp=$r||!!(typeof window<"u"&&window.next),xp=class Ca{constructor(e){this.editor=null,this.subscriptions=new Set,this.isComponentMounted=!1,this.previousDeps=null,this.instanceId="",this.options=e,this.subscriptions=new Set,this.setEditor(this.getInitialEditor()),this.scheduleDestroy(),this.getEditor=this.getEditor.bind(this),this.getServerSnapshot=this.getServerSnapshot.bind(this),this.subscribe=this.subscribe.bind(this),this.refreshEditorInstance=this.refreshEditorInstance.bind(this),this.scheduleDestroy=this.scheduleDestroy.bind(this),this.onRender=this.onRender.bind(this),this.createEditor=this.createEditor.bind(this)}setEditor(e){this.editor=e,this.instanceId=Math.random().toString(36).slice(2,9),this.subscriptions.forEach(n=>n())}getInitialEditor(){return this.options.current.immediatelyRender===void 0?$r||wp?null:this.createEditor():(this.options.current.immediatelyRender,this.options.current.immediatelyRender?this.createEditor():null)}createEditor(){const e={...this.options.current,onBeforeCreate:(...r)=>{var s,i;return(i=(s=this.options.current).onBeforeCreate)==null?void 0:i.call(s,...r)},onBlur:(...r)=>{var s,i;return(i=(s=this.options.current).onBlur)==null?void 0:i.call(s,...r)},onCreate:(...r)=>{var s,i;return(i=(s=this.options.current).onCreate)==null?void 0:i.call(s,...r)},onDestroy:(...r)=>{var s,i;return(i=(s=this.options.current).onDestroy)==null?void 0:i.call(s,...r)},onFocus:(...r)=>{var s,i;return(i=(s=this.options.current).onFocus)==null?void 0:i.call(s,...r)},onSelectionUpdate:(...r)=>{var s,i;return(i=(s=this.options.current).onSelectionUpdate)==null?void 0:i.call(s,...r)},onTransaction:(...r)=>{var s,i;return(i=(s=this.options.current).onTransaction)==null?void 0:i.call(s,...r)},onUpdate:(...r)=>{var s,i;return(i=(s=this.options.current).onUpdate)==null?void 0:i.call(s,...r)},onContentError:(...r)=>{var s,i;return(i=(s=this.options.current).onContentError)==null?void 0:i.call(s,...r)},onDrop:(...r)=>{var s,i;return(i=(s=this.options.current).onDrop)==null?void 0:i.call(s,...r)},onPaste:(...r)=>{var s,i;return(i=(s=this.options.current).onPaste)==null?void 0:i.call(s,...r)},onDelete:(...r)=>{var s,i;return(i=(s=this.options.current).onDelete)==null?void 0:i.call(s,...r)}};return new Qf(e)}getEditor(){return this.editor}getServerSnapshot(){return null}subscribe(e){return this.subscriptions.add(e),()=>{this.subscriptions.delete(e)}}static compareOptions(e,n){return Object.keys(e).every(r=>["onCreate","onBeforeCreate","onDestroy","onUpdate","onTransaction","onFocus","onBlur","onSelectionUpdate","onContentError","onDrop","onPaste"].includes(r)?!0:r==="extensions"&&e.extensions&&n.extensions?e.extensions.length!==n.extensions.length?!1:e.extensions.every((s,i)=>{var o;return s===((o=n.extensions)==null?void 0:o[i])}):e[r]===n[r])}onRender(e){return()=>(this.isComponentMounted=!0,clearTimeout(this.scheduledDestructionTimeout),this.editor&&!this.editor.isDestroyed&&e.length===0?Ca.compareOptions(this.options.current,this.editor.options)||this.editor.setOptions({...this.options.current,editable:this.editor.isEditable}):this.refreshEditorInstance(e),()=>{this.isComponentMounted=!1,this.scheduleDestroy()})}refreshEditorInstance(e){if(this.editor&&!this.editor.isDestroyed){if(this.previousDeps===null){this.previousDeps=e;return}if(this.previousDeps.length===e.length&&this.previousDeps.every((r,s)=>r===e[s]))return}this.editor&&!this.editor.isDestroyed&&this.editor.destroy(),this.setEditor(this.createEditor()),this.previousDeps=e}scheduleDestroy(){const e=this.instanceId,n=this.editor;this.scheduledDestructionTimeout=setTimeout(()=>{if(this.isComponentMounted&&this.instanceId===e){n&&n.setOptions(this.options.current);return}n&&!n.isDestroyed&&(n.destroy(),this.instanceId===e&&this.setEditor(null))},1)}};function By(t={},e=[]){const n=V.useRef(t);n.current=t;const[r]=V.useState(()=>new xp(n)),s=fo.useSyncExternalStore(r.subscribe,r.getEditor,r.getServerSnapshot);return V.useDebugValue(s),V.useEffect(r.onRender(e)),bp({editor:s,selector:({transactionNumber:i})=>t.shouldRerenderOnTransaction===!1||t.shouldRerenderOnTransaction===void 0?null:t.immediatelyRender&&i===0?0:i+1}),s}var Ms=V.createContext({editor:null});Ms.Consumer;var $y=()=>V.useContext(Ms),Ma=V.createContext({onDragStart:()=>{},nodeViewContentChildren:void 0,nodeViewContentRef:()=>{}}),Sp=()=>V.useContext(Ma),Hy=it.forwardRef((t,e)=>{const{onDragStart:n}=Sp(),r=t.as||"div";return de.jsx(r,{...t,ref:e,"data-node-view-wrapper":"",onDragStart:n,style:{whiteSpace:"normal",...t.style}})});function Hi(t){return!!(typeof t=="function"&&t.prototype&&t.prototype.isReactComponent)}function Fi(t){return!!(typeof t=="object"&&t.$$typeof&&(t.$$typeof.toString()==="Symbol(react.forward_ref)"||t.$$typeof.description==="react.forward_ref"))}function Cp(t){return!!(typeof t=="object"&&t.$$typeof&&(t.$$typeof.toString()==="Symbol(react.memo)"||t.$$typeof.description==="react.memo"))}function Mp(t){if(Hi(t)||Fi(t))return!0;if(Cp(t)){const e=t.type;if(e)return Hi(e)||Fi(e)}return!1}function vp(){try{if(V.version)return parseInt(V.version.split(".")[0],10)>=19}catch{}return!1}var Tp=class{constructor(t,{editor:e,props:n={},as:r="div",className:s=""}){this.ref=null,this.destroyed=!1,this.id=Math.floor(Math.random()*4294967295).toString(),this.component=t,this.editor=e,this.props=n,this.element=document.createElement(r),this.element.classList.add("react-renderer"),s&&this.element.classList.add(...s.split(" ")),this.editor.isInitialized?Ya.flushSync(()=>{this.render()}):queueMicrotask(()=>{this.destroyed||this.render()})}render(){var t;if(this.destroyed)return;const e=this.component,n=this.props,r=this.editor,s=vp(),i=Mp(e),o={...n};o.ref&&!(s||i)&&delete o.ref,!o.ref&&(s||i)&&(o.ref=l=>{this.ref=l}),this.reactElement=de.jsx(e,{...o}),(t=r==null?void 0:r.contentComponent)==null||t.setRenderer(this.id,this)}updateProps(t={}){this.destroyed||(this.props={...this.props,...t},this.render())}destroy(){var t;this.destroyed=!0;const e=this.editor;(t=e==null?void 0:e.contentComponent)==null||t.removeRenderer(this.id);try{this.element&&this.element.parentNode&&this.element.parentNode.removeChild(this.element)}catch{}}updateAttributes(t){Object.keys(t).forEach(e=>{this.element.setAttribute(e,t[e])})}};it.createContext({markViewContentRef:()=>{}});var Ep=class extends cp{constructor(t,e,n){if(super(t,e,n),this.selectionRafId=null,this.cachedExtensionWithSyncedStorage=null,!this.node.isLeaf){this.options.contentDOMElementTag?this.contentDOMElement=document.createElement(this.options.contentDOMElementTag):this.contentDOMElement=document.createElement(this.node.isInline?"span":"div"),this.contentDOMElement.dataset.nodeViewContentReact="",this.contentDOMElement.dataset.nodeViewWrapper="",this.contentDOMElement.style.whiteSpace="inherit";const r=this.dom.querySelector("[data-node-view-content]");if(!r)return;r.appendChild(this.contentDOMElement)}}get extensionWithSyncedStorage(){if(!this.cachedExtensionWithSyncedStorage){const t=this.editor,e=this.extension;this.cachedExtensionWithSyncedStorage=new Proxy(e,{get(n,r,s){var i;return r==="storage"?(i=t.storage[e.name])!=null?i:{}:Reflect.get(n,r,s)}})}return this.cachedExtensionWithSyncedStorage}mount(){const t={editor:this.editor,node:this.node,decorations:this.decorations,innerDecorations:this.innerDecorations,view:this.view,selected:!1,extension:this.extensionWithSyncedStorage,HTMLAttributes:this.HTMLAttributes,getPos:()=>this.getPos(),updateAttributes:(a={})=>this.updateAttributes(a),deleteNode:()=>this.deleteNode(),ref:V.createRef()};if(!this.component.displayName){const a=c=>c.charAt(0).toUpperCase()+c.substring(1);this.component.displayName=a(this.extension.name)}const r={onDragStart:this.onDragStart.bind(this),nodeViewContentRef:a=>{a&&this.contentDOMElement&&a.firstChild!==this.contentDOMElement&&(a.hasAttribute("data-node-view-wrapper")&&a.removeAttribute("data-node-view-wrapper"),a.appendChild(this.contentDOMElement))}},s=this.component,i=V.memo(a=>de.jsx(Ma.Provider,{value:r,children:V.createElement(s,a)}));i.displayName="ReactNodeView";let o=this.node.isInline?"span":"div";this.options.as&&(o=this.options.as);const{className:l=""}=this.options;this.handleSelectionUpdate=this.handleSelectionUpdate.bind(this),this.renderer=new Tp(i,{editor:this.editor,props:t,as:o,className:`node-${this.node.type.name} ${l}`.trim()}),this.editor.on("selectionUpdate",this.handleSelectionUpdate),this.updateElementAttributes()}get dom(){var t;if(this.renderer.element.firstElementChild&&!((t=this.renderer.element.firstElementChild)!=null&&t.hasAttribute("data-node-view-wrapper")))throw Error("Please use the NodeViewWrapper component for your node view.");return this.renderer.element}get contentDOM(){return this.node.isLeaf?null:this.contentDOMElement}handleSelectionUpdate(){this.selectionRafId&&(cancelAnimationFrame(this.selectionRafId),this.selectionRafId=null),this.selectionRafId=requestAnimationFrame(()=>{this.selectionRafId=null;const{from:t,to:e}=this.editor.state.selection,n=this.getPos();if(typeof n=="number")if(t<=n&&e>=n+this.node.nodeSize){if(this.renderer.props.selected)return;this.selectNode()}else{if(!this.renderer.props.selected)return;this.deselectNode()}})}update(t,e,n){const r=s=>{this.renderer.updateProps(s),typeof this.options.attrs=="function"&&this.updateElementAttributes()};if(t.type!==this.node.type)return!1;if(typeof this.options.update=="function"){const s=this.node,i=this.decorations,o=this.innerDecorations;return this.node=t,this.decorations=e,this.innerDecorations=n,this.options.update({oldNode:s,oldDecorations:i,newNode:t,newDecorations:e,oldInnerDecorations:o,innerDecorations:n,updateProps:()=>r({node:t,decorations:e,innerDecorations:n,extension:this.extensionWithSyncedStorage})})}return t===this.node&&this.decorations===e&&this.innerDecorations===n||(this.node=t,this.decorations=e,this.innerDecorations=n,r({node:t,decorations:e,innerDecorations:n,extension:this.extensionWithSyncedStorage})),!0}selectNode(){this.renderer.updateProps({selected:!0}),this.renderer.element.classList.add("ProseMirror-selectednode")}deselectNode(){this.renderer.updateProps({selected:!1}),this.renderer.element.classList.remove("ProseMirror-selectednode")}destroy(){this.renderer.destroy(),this.editor.off("selectionUpdate",this.handleSelectionUpdate),this.contentDOMElement=null,this.selectionRafId&&(cancelAnimationFrame(this.selectionRafId),this.selectionRafId=null)}updateElementAttributes(){if(this.options.attrs){let t={};if(typeof this.options.attrs=="function"){const e=this.editor.extensionManager.attributes,n=Tt(this.node,e);t=this.options.attrs({node:this.node,HTMLAttributes:n})}else t=this.options.attrs;this.renderer.updateAttributes(t)}}};function Fy(t,e){return n=>n.editor.contentComponent?new Ep(t,n,e):{}}var vs=V.createContext({get editor(){throw new Error("useTiptap must be used within a provider")}});vs.displayName="TiptapContext";var Ap=()=>V.useContext(vs);function va({editor:t,instance:e,children:n}){const r=t??e;if(!r)throw new Error("Tiptap: An editor instance is required. Pass a non-null `editor` prop.");const s=V.useMemo(()=>({editor:r}),[r]),i=V.useMemo(()=>({editor:r}),[r]);return de.jsx(Ms.Provider,{value:i,children:de.jsx(vs.Provider,{value:s,children:n})})}va.displayName="Tiptap";function Ta({...t}){const{editor:e}=Ap();return de.jsx(mp,{editor:e,...t})}Ta.displayName="Tiptap.Content";Object.assign(va,{Content:Ta});var In=(t,e)=>{if(t==="slot")return 0;if(t instanceof Function)return t(e);const{children:n,...r}=e??{};if(t==="svg")throw new Error("SVG elements are not supported in the JSX syntax, use the array syntax instead");return[t,r,n]},Np=/^\s*>\s$/,Op=X.create({name:"blockquote",addOptions(){return{HTMLAttributes:{}}},content:"block+",group:"block",defining:!0,parseHTML(){return[{tag:"blockquote"}]},renderHTML({HTMLAttributes:t}){return In("blockquote",{...I(this.options.HTMLAttributes,t),children:In("slot",{})})},parseMarkdown:(t,e)=>e.createNode("blockquote",void 0,e.parseChildren(t.tokens||[])),renderMarkdown:(t,e)=>{if(!t.content)return"";const n=">",r=[];return t.content.forEach(s=>{const l=e.renderChildren([s]).split(` +`).map(a=>a.trim()===""?n:`${n} ${a}`);r.push(l.join(` +`))}),r.join(` +${n} +`)},addCommands(){return{setBlockquote:()=>({commands:t})=>t.wrapIn(this.name),toggleBlockquote:()=>({commands:t})=>t.toggleWrap(this.name),unsetBlockquote:()=>({commands:t})=>t.lift(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-b":()=>this.editor.commands.toggleBlockquote()}},addInputRules(){return[Et({find:Np,type:this.type})]}}),Rp=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/,Dp=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g,Ip=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/,Pp=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g,Lp=xe.create({name:"bold",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"strong"},{tag:"b",getAttrs:t=>t.style.fontWeight!=="normal"&&null},{style:"font-weight=400",clearMark:t=>t.type.name===this.name},{style:"font-weight",getAttrs:t=>/^(bold(er)?|[5-9]\d{2,})$/.test(t)&&null}]},renderHTML({HTMLAttributes:t}){return In("strong",{...I(this.options.HTMLAttributes,t),children:In("slot",{})})},markdownTokenName:"strong",parseMarkdown:(t,e)=>e.applyMark("bold",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`**${e.renderChildren(t)}**`,addCommands(){return{setBold:()=>({commands:t})=>t.setMark(this.name),toggleBold:()=>({commands:t})=>t.toggleMark(this.name),unsetBold:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-b":()=>this.editor.commands.toggleBold(),"Mod-B":()=>this.editor.commands.toggleBold()}},addInputRules(){return[dt({find:Rp,type:this.type}),dt({find:Ip,type:this.type})]},addPasteRules(){return[Ke({find:Dp,type:this.type}),Ke({find:Pp,type:this.type})]}}),zp=/(^|[^`])`([^`]+)`(?!`)$/,Bp=/(^|[^`])`([^`]+)`(?!`)/g,$p=xe.create({name:"code",addOptions(){return{HTMLAttributes:{}}},excludes:"_",code:!0,exitable:!0,parseHTML(){return[{tag:"code"}]},renderHTML({HTMLAttributes:t}){return["code",I(this.options.HTMLAttributes,t),0]},markdownTokenName:"codespan",parseMarkdown:(t,e)=>e.applyMark("code",[{type:"text",text:t.text||""}]),renderMarkdown:(t,e)=>t.content?`\`${e.renderChildren(t.content)}\``:"",addCommands(){return{setCode:()=>({commands:t})=>t.setMark(this.name),toggleCode:()=>({commands:t})=>t.toggleMark(this.name),unsetCode:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-e":()=>this.editor.commands.toggleCode()}},addInputRules(){return[dt({find:zp,type:this.type})]},addPasteRules(){return[Ke({find:Bp,type:this.type})]}}),fr=4,Hp=/^```([a-z]+)?[\s\n]$/,Fp=/^~~~([a-z]+)?[\s\n]$/,Vp=X.create({name:"codeBlock",addOptions(){return{languageClassPrefix:"language-",exitOnTripleEnter:!0,exitOnArrowDown:!0,defaultLanguage:null,enableTabIndentation:!1,tabSize:fr,HTMLAttributes:{}}},content:"text*",marks:"",group:"block",code:!0,defining:!0,addAttributes(){return{language:{default:this.options.defaultLanguage,parseHTML:t=>{var e;const{languageClassPrefix:n}=this.options;if(!n)return null;const i=[...((e=t.firstElementChild)==null?void 0:e.classList)||[]].filter(o=>o.startsWith(n)).map(o=>o.replace(n,""))[0];return i||null},rendered:!1}}},parseHTML(){return[{tag:"pre",preserveWhitespace:"full"}]},renderHTML({node:t,HTMLAttributes:e}){return["pre",I(this.options.HTMLAttributes,e),["code",{class:t.attrs.language?this.options.languageClassPrefix+t.attrs.language:null},0]]},markdownTokenName:"code",parseMarkdown:(t,e)=>{var n;return((n=t.raw)==null?void 0:n.startsWith("```"))===!1&&t.codeBlockStyle!=="indented"?[]:e.createNode("codeBlock",{language:t.lang||null},t.text?[e.createTextNode(t.text)]:[])},renderMarkdown:(t,e)=>{var n;let r="";const s=((n=t.attrs)==null?void 0:n.language)||"";return t.content?r=[`\`\`\`${s}`,e.renderChildren(t.content),"```"].join(` +`):r=`\`\`\`${s} + +\`\`\``,r},addCommands(){return{setCodeBlock:t=>({commands:e})=>e.setNode(this.name,t),toggleCodeBlock:t=>({commands:e})=>e.toggleNode(this.name,"paragraph",t)}},addKeyboardShortcuts(){return{"Mod-Alt-c":()=>this.editor.commands.toggleCodeBlock(),Backspace:()=>{const{empty:t,$anchor:e}=this.editor.state.selection,n=e.pos===1;return!t||e.parent.type.name!==this.name?!1:n||!e.parent.textContent.length?this.editor.commands.clearNodes():!1},Tab:({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:fr,{state:r}=t,{selection:s}=r,{$from:i,empty:o}=s;if(i.parent.type!==this.type)return!1;const l=" ".repeat(n);return o?t.commands.insertContent(l):t.commands.command(({tr:a})=>{const{from:c,to:d}=s,f=r.doc.textBetween(c,d,` +`,` +`).split(` +`).map(p=>l+p).join(` +`);return a.replaceWith(c,d,r.schema.text(f)),!0})},"Shift-Tab":({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:fr,{state:r}=t,{selection:s}=r,{$from:i,empty:o}=s;return i.parent.type!==this.type?!1:o?t.commands.command(({tr:l})=>{var a;const{pos:c}=i,d=i.start(),u=i.end(),f=r.doc.textBetween(d,u,` +`,` +`).split(` +`);let p=0,m=0;const g=c-d;for(let A=0;A=g){p=A;break}m+=f[A].length+1}const k=((a=f[p].match(/^ */))==null?void 0:a[0])||"",w=Math.min(k.length,n);if(w===0)return!0;let S=d;for(let A=0;A{const{from:a,to:c}=s,h=r.doc.textBetween(a,c,` +`,` +`).split(` +`).map(f=>{var p;const m=((p=f.match(/^ */))==null?void 0:p[0])||"",g=Math.min(m.length,n);return f.slice(g)}).join(` +`);return l.replaceWith(a,c,r.schema.text(h)),!0})},Enter:({editor:t})=>{if(!this.options.exitOnTripleEnter)return!1;const{state:e}=t,{selection:n}=e,{$from:r,empty:s}=n;if(!s||r.parent.type!==this.type)return!1;const i=r.parentOffset===r.parent.nodeSize-2,o=r.parent.textContent.endsWith(` + +`);return!i||!o?!1:t.chain().command(({tr:l})=>(l.delete(r.pos-2,r.pos),!0)).exitCode().run()},ArrowDown:({editor:t})=>{if(!this.options.exitOnArrowDown)return!1;const{state:e}=t,{selection:n,doc:r}=e,{$from:s,empty:i}=n;if(!i||s.parent.type!==this.type||!(s.parentOffset===s.parent.nodeSize-2))return!1;const l=s.after();return l===void 0?!1:r.nodeAt(l)?t.commands.command(({tr:c})=>(c.setSelection(N.near(r.resolve(l))),!0)):t.commands.exitCode()}}},addInputRules(){return[zr({find:Hp,type:this.type,getAttributes:t=>({language:t[1]})}),zr({find:Fp,type:this.type,getAttributes:t=>({language:t[1]})})]},addProseMirrorPlugins(){return[new B({key:new _("codeBlockVSCodeHandler"),props:{handlePaste:(t,e)=>{if(!e.clipboardData||this.editor.isActive(this.type.name))return!1;const n=e.clipboardData.getData("text/plain"),r=e.clipboardData.getData("vscode-editor-data"),s=r?JSON.parse(r):void 0,i=s==null?void 0:s.mode;if(!n||!i)return!1;const{tr:o,schema:l}=t.state,a=l.text(n.replace(/\r\n?/g,` +`));return o.replaceSelectionWith(this.type.create({language:i},a)),o.selection.$from.parent.type!==this.type&&o.setSelection(E.near(o.doc.resolve(Math.max(0,o.selection.from-2)))),o.setMeta("paste",!0),t.dispatch(o),!0}}})]}}),_p=X.create({name:"doc",topNode:!0,content:"block+",renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` + +`):""}),Wp=X.create({name:"hardBreak",markdownTokenName:"br",addOptions(){return{keepMarks:!0,HTMLAttributes:{}}},inline:!0,group:"inline",selectable:!1,linebreakReplacement:!0,parseHTML(){return[{tag:"br"}]},renderHTML({HTMLAttributes:t}){return["br",I(this.options.HTMLAttributes,t)]},renderText(){return` +`},renderMarkdown:()=>` +`,parseMarkdown:()=>({type:"hardBreak"}),addCommands(){return{setHardBreak:()=>({commands:t,chain:e,state:n,editor:r})=>t.first([()=>t.exitCode(),()=>t.command(()=>{const{selection:s,storedMarks:i}=n;if(s.$from.parent.type.spec.isolating)return!1;const{keepMarks:o}=this.options,{splittableMarks:l}=r.extensionManager,a=i||s.$to.parentOffset&&s.$from.marks();return e().insertContent({type:this.name}).command(({tr:c,dispatch:d})=>{if(d&&a&&o){const u=a.filter(h=>l.includes(h.type.name));c.ensureMarks(u)}return!0}).run()})])}},addKeyboardShortcuts(){return{"Mod-Enter":()=>this.editor.commands.setHardBreak(),"Shift-Enter":()=>this.editor.commands.setHardBreak()}}}),jp=X.create({name:"heading",addOptions(){return{levels:[1,2,3,4,5,6],HTMLAttributes:{}}},content:"inline*",group:"block",defining:!0,addAttributes(){return{level:{default:1,rendered:!1}}},parseHTML(){return this.options.levels.map(t=>({tag:`h${t}`,attrs:{level:t}}))},renderHTML({node:t,HTMLAttributes:e}){return[`h${this.options.levels.includes(t.attrs.level)?t.attrs.level:this.options.levels[0]}`,I(this.options.HTMLAttributes,e),0]},parseMarkdown:(t,e)=>e.createNode("heading",{level:t.depth||1},e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>{var n;const r=(n=t.attrs)!=null&&n.level?parseInt(t.attrs.level,10):1,s="#".repeat(r);return t.content?`${s} ${e.renderChildren(t.content)}`:""},addCommands(){return{setHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.setNode(this.name,t):!1,toggleHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.toggleNode(this.name,"paragraph",t):!1}},addKeyboardShortcuts(){return this.options.levels.reduce((t,e)=>({...t,[`Mod-Alt-${e}`]:()=>this.editor.commands.toggleHeading({level:e})}),{})},addInputRules(){return this.options.levels.map(t=>zr({find:new RegExp(`^(#{${Math.min(...this.options.levels)},${t}})\\s$`),type:this.type,getAttributes:{level:t}}))}}),Ea=X.create({name:"horizontalRule",addOptions(){return{HTMLAttributes:{},nextNodeType:"paragraph"}},group:"block",parseHTML(){return[{tag:"hr"}]},renderHTML({HTMLAttributes:t}){return["hr",I(this.options.HTMLAttributes,t)]},markdownTokenName:"hr",parseMarkdown:(t,e)=>e.createNode("horizontalRule"),renderMarkdown:()=>"---",addCommands(){return{setHorizontalRule:()=>({chain:t,state:e})=>{if(!tp(e,e.schema.nodes[this.name]))return!1;const{selection:n}=e,{$to:r}=n,s=t();return sa(n)?s.insertContentAt(r.pos,{type:this.name}):s.insertContent({type:this.name}),s.command(({state:i,tr:o,dispatch:l})=>{if(l){const{$to:a}=o.selection,c=a.end();if(a.nodeAfter)a.nodeAfter.isTextblock?o.setSelection(E.create(o.doc,a.pos+1)):a.nodeAfter.isBlock?o.setSelection(T.create(o.doc,a.pos)):o.setSelection(E.create(o.doc,a.pos));else{const d=i.schema.nodes[this.options.nextNodeType]||a.parent.type.contentMatch.defaultType,u=d==null?void 0:d.create();u&&(o.insert(c,u),o.setSelection(E.create(o.doc,c+1)))}o.scrollIntoView()}return!0}).run()}}},addInputRules(){return[xa({find:/^(?:---|—-|___\s|\*\*\*\s)$/,type:this.type})]}}),Vy=Ea,qp=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))$/,Kp=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))/g,Up=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))$/,Jp=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))/g,Xp=xe.create({name:"italic",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"em"},{tag:"i",getAttrs:t=>t.style.fontStyle!=="normal"&&null},{style:"font-style=normal",clearMark:t=>t.type.name===this.name},{style:"font-style=italic"}]},renderHTML({HTMLAttributes:t}){return["em",I(this.options.HTMLAttributes,t),0]},addCommands(){return{setItalic:()=>({commands:t})=>t.setMark(this.name),toggleItalic:()=>({commands:t})=>t.toggleMark(this.name),unsetItalic:()=>({commands:t})=>t.unsetMark(this.name)}},markdownTokenName:"em",parseMarkdown:(t,e)=>e.applyMark("italic",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`*${e.renderChildren(t)}*`,addKeyboardShortcuts(){return{"Mod-i":()=>this.editor.commands.toggleItalic(),"Mod-I":()=>this.editor.commands.toggleItalic()}},addInputRules(){return[dt({find:qp,type:this.type}),dt({find:Up,type:this.type})]},addPasteRules(){return[Ke({find:Kp,type:this.type}),Ke({find:Jp,type:this.type})]}}),Ts="[\0-   ᠎ -\u2029  ]",Gp=new RegExp(Ts),Yp=new RegExp(`${Ts}$`),Qp=new RegExp(Ts,"g");function Zp(t){return t.length===1?t[0].isLink:t.length===3&&t[1].isLink?["()","[]"].includes(t[0].value+t[2].value):!1}function em(t){return new B({key:new _("autolink"),appendTransaction:(e,n,r)=>{const s=e.some(c=>c.docChanged)&&!n.doc.eq(r.doc),i=e.some(c=>c.getMeta("preventAutolink"));if(!s||i)return;const{tr:o}=r,l=Xl(n.doc,[...e]);if(ra(l).forEach(({newRange:c})=>{const d=Zh(r.doc,c,f=>f.isTextblock);let u,h;if(d.length>1)u=d[0],h=r.doc.textBetween(u.pos,u.pos+u.node.nodeSize,void 0," ");else if(d.length){const f=r.doc.textBetween(c.from,c.to," "," ");if(!Yp.test(f))return;u=d[0],h=r.doc.textBetween(u.pos,c.to,void 0," ")}if(u&&h){const f=h.split(Gp).filter(Boolean);if(f.length<=0)return!1;const p=f[f.length-1],m=u.pos+h.lastIndexOf(p);if(!p)return!1;const g=rc(p).map(y=>y.toObject(t.defaultProtocol));if(!Zp(g))return!1;g.filter(y=>y.isLink).map(y=>({...y,from:m+y.start+1,to:m+y.end+1})).filter(y=>r.schema.marks.code?!r.doc.rangeHasMark(y.from,y.to,r.schema.marks.code):!0).filter(y=>t.validate(y.value)).filter(y=>t.shouldAutoLink(y.value)).forEach(y=>{ks(y.from,y.to,r.doc).some(k=>k.mark.type===t.type)||o.addMark(y.from,y.to,t.type.create({href:y.href}))})}}),!!o.steps.length)return o}})}function tm(t){return new B({key:new _("handleClickLink"),props:{handleClick:(e,n,r)=>{var s,i;if(r.button!==0||!e.editable)return!1;let o=null;if(r.target instanceof HTMLAnchorElement)o=r.target;else{const a=r.target;if(!a)return!1;const c=t.editor.view.dom;o=a.closest("a"),o&&!c.contains(o)&&(o=null)}if(!o)return!1;let l=!1;if(t.enableClickSelection&&(l=t.editor.commands.extendMarkRange(t.type.name)),t.openOnClick){const a=na(e.state,t.type.name),c=(s=o.href)!=null?s:a.href,d=(i=o.target)!=null?i:a.target;c&&(window.open(c,d),l=!0)}return l}}})}function nm(t){return new B({key:new _("handlePasteLink"),props:{handlePaste:(e,n,r)=>{const{shouldAutoLink:s}=t,{state:i}=e,{selection:o}=i,{empty:l}=o;if(l)return!1;let a="";r.content.forEach(d=>{a+=d.textContent});const c=po(a,{defaultProtocol:t.defaultProtocol}).find(d=>d.isLink&&d.value===a);return!a||!c||s!==void 0&&!s(c.value)?!1:t.editor.commands.setMark(t.type,{href:c.href})}}})}function Xe(t,e){const n=["http","https","ftp","ftps","mailto","tel","callto","sms","cid","xmpp"];return e&&e.forEach(r=>{const s=typeof r=="string"?r:r.scheme;s&&n.push(s)}),!t||t.replace(Qp,"").match(new RegExp(`^(?:(?:${n.join("|")}):|[^a-z]|[a-z0-9+.-]+(?:[^a-z+.-:]|$))`,"i"))}var rm=xe.create({name:"link",priority:1e3,keepOnSplit:!1,exitable:!0,onCreate(){this.options.validate&&!this.options.shouldAutoLink&&(this.options.shouldAutoLink=this.options.validate,console.warn("The `validate` option is deprecated. Rename to the `shouldAutoLink` option instead.")),this.options.protocols.forEach(t=>{if(typeof t=="string"){Rs(t);return}Rs(t.scheme,t.optionalSlashes)})},onDestroy(){sc()},inclusive(){return this.options.autolink},addOptions(){return{openOnClick:!0,enableClickSelection:!1,linkOnPaste:!0,autolink:!0,protocols:[],defaultProtocol:"http",HTMLAttributes:{target:"_blank",rel:"noopener noreferrer nofollow",class:null},isAllowedUri:(t,e)=>!!Xe(t,e.protocols),validate:t=>!!t,shouldAutoLink:t=>{const e=/^[a-z][a-z0-9+.-]*:\/\//i.test(t),n=/^[a-z][a-z0-9+.-]*:/i.test(t);if(e||n&&!t.includes("@"))return!0;const s=(t.includes("@")?t.split("@").pop():t).split(/[/?#:]/)[0];return!(/^\d{1,3}(\.\d{1,3}){3}$/.test(s)||!/\./.test(s))}}},addAttributes(){return{href:{default:null,parseHTML(t){return t.getAttribute("href")}},target:{default:this.options.HTMLAttributes.target},rel:{default:this.options.HTMLAttributes.rel},class:{default:this.options.HTMLAttributes.class},title:{default:null}}},parseHTML(){return[{tag:"a[href]",getAttrs:t=>{const e=t.getAttribute("href");return!e||!this.options.isAllowedUri(e,{defaultValidate:n=>!!Xe(n,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:null}}]},renderHTML({HTMLAttributes:t}){return this.options.isAllowedUri(t.href,{defaultValidate:e=>!!Xe(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?["a",I(this.options.HTMLAttributes,t),0]:["a",I(this.options.HTMLAttributes,{...t,href:""}),0]},markdownTokenName:"link",parseMarkdown:(t,e)=>e.applyMark("link",e.parseInline(t.tokens||[]),{href:t.href,title:t.title||null}),renderMarkdown:(t,e)=>{var n,r,s,i;const o=(r=(n=t.attrs)==null?void 0:n.href)!=null?r:"",l=(i=(s=t.attrs)==null?void 0:s.title)!=null?i:"",a=e.renderChildren(t);return l?`[${a}](${o} "${l}")`:`[${a}](${o})`},addCommands(){return{setLink:t=>({chain:e})=>{const{href:n}=t;return this.options.isAllowedUri(n,{defaultValidate:r=>!!Xe(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?e().setMark(this.name,t).setMeta("preventAutolink",!0).run():!1},toggleLink:t=>({chain:e})=>{const{href:n}=t||{};return n&&!this.options.isAllowedUri(n,{defaultValidate:r=>!!Xe(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:e().toggleMark(this.name,t,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()},unsetLink:()=>({chain:t})=>t().unsetMark(this.name,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()}},addPasteRules(){return[Ke({find:t=>{const e=[];if(t){const{protocols:n,defaultProtocol:r}=this.options,s=po(t).filter(i=>i.isLink&&this.options.isAllowedUri(i.value,{defaultValidate:o=>!!Xe(o,n),protocols:n,defaultProtocol:r}));s.length&&s.forEach(i=>{this.options.shouldAutoLink(i.value)&&e.push({text:i.value,data:{href:i.href},index:i.start})})}return e},type:this.type,getAttributes:t=>{var e;return{href:(e=t.data)==null?void 0:e.href}}})]},addProseMirrorPlugins(){const t=[],{protocols:e,defaultProtocol:n}=this.options;return this.options.autolink&&t.push(em({type:this.type,defaultProtocol:this.options.defaultProtocol,validate:r=>this.options.isAllowedUri(r,{defaultValidate:s=>!!Xe(s,e),protocols:e,defaultProtocol:n}),shouldAutoLink:this.options.shouldAutoLink})),t.push(tm({type:this.type,editor:this.editor,openOnClick:this.options.openOnClick==="whenNotEditable"?!0:this.options.openOnClick,enableClickSelection:this.options.enableClickSelection})),this.options.linkOnPaste&&t.push(nm({editor:this.editor,defaultProtocol:this.options.defaultProtocol,type:this.type,shouldAutoLink:this.options.shouldAutoLink})),t}}),sm=Object.defineProperty,im=(t,e)=>{for(var n in e)sm(t,n,{get:e[n],enumerable:!0})},om="listItem",Vi="textStyle",_i=/^\s*([-+*])\s$/,Aa=X.create({name:"bulletList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:"ul"}]},renderHTML({HTMLAttributes:t}){return["ul",I(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>t.type!=="list"||t.ordered?[]:{type:"bulletList",content:t.items?e.parseChildren(t.items):[]},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` +`):"",markdownOptions:{indentsContent:!0},addCommands(){return{toggleBulletList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(om,this.editor.getAttributes(Vi)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-8":()=>this.editor.commands.toggleBulletList()}},addInputRules(){let t=Et({find:_i,type:this.type});return(this.options.keepMarks||this.options.keepAttributes)&&(t=Et({find:_i,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:()=>this.editor.getAttributes(Vi),editor:this.editor})),[t]}}),Na=X.create({name:"listItem",addOptions(){return{HTMLAttributes:{},bulletListTypeName:"bulletList",orderedListTypeName:"orderedList"}},content:"paragraph block*",defining:!0,parseHTML(){return[{tag:"li"}]},renderHTML({HTMLAttributes:t}){return["li",I(this.options.HTMLAttributes,t),0]},markdownTokenName:"list_item",parseMarkdown:(t,e)=>{if(t.type!=="list_item")return[];let n=[];if(t.tokens&&t.tokens.length>0)if(t.tokens.some(s=>s.type==="paragraph"))n=e.parseChildren(t.tokens);else{const s=t.tokens[0];if(s&&s.type==="text"&&s.tokens&&s.tokens.length>0){if(n=[{type:"paragraph",content:e.parseInline(s.tokens)}],t.tokens.length>1){const o=t.tokens.slice(1),l=e.parseChildren(o);n.push(...l)}}else n=e.parseChildren(t.tokens)}return n.length===0&&(n=[{type:"paragraph",content:[]}]),{type:"listItem",content:n}},renderMarkdown:(t,e,n)=>Cs(t,e,r=>{var s,i;return r.parentType==="bulletList"?"- ":r.parentType==="orderedList"?`${(((i=(s=r.meta)==null?void 0:s.parentAttrs)==null?void 0:i.start)||1)+r.index}. `:"- "},n),addKeyboardShortcuts(){return{Enter:()=>this.editor.commands.splitListItem(this.name),Tab:()=>this.editor.commands.sinkListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)}}}),lm={};im(lm,{findListItemPos:()=>Zt,getNextListDepth:()=>Es,handleBackspace:()=>Hr,handleDelete:()=>Fr,hasListBefore:()=>Oa,hasListItemAfter:()=>am,hasListItemBefore:()=>Ra,listItemHasSubList:()=>Da,nextListIsDeeper:()=>Ia,nextListIsHigher:()=>Pa});var Zt=(t,e)=>{const{$from:n}=e.selection,r=q(t,e.schema);let s=null,i=n.depth,o=n.pos,l=null;for(;i>0&&l===null;)s=n.node(i),s.type===r?l=i:(i-=1,o-=1);return l===null?null:{$pos:e.doc.resolve(o),depth:l}},Es=(t,e)=>{const n=Zt(t,e);if(!n)return!1;const[,r]=df(e,t,n.$pos.pos+4);return r},Oa=(t,e,n)=>{const{$anchor:r}=t.selection,s=Math.max(0,r.pos-2),i=t.doc.resolve(s).node();return!(!i||!n.includes(i.type.name))},Ra=(t,e)=>{var n;const{$anchor:r}=e.selection,s=e.doc.resolve(r.pos-2);return!(s.index()===0||((n=s.nodeBefore)==null?void 0:n.type.name)!==t)},Da=(t,e,n)=>{if(!n)return!1;const r=q(t,e.schema);let s=!1;return n.descendants(i=>{i.type===r&&(s=!0)}),s},Hr=(t,e,n)=>{if(t.commands.undoInputRule())return!0;if(t.state.selection.from!==t.state.selection.to)return!1;if(!qe(t.state,e)&&Oa(t.state,e,n)){const{$anchor:l}=t.state.selection,a=t.state.doc.resolve(l.before()-1),c=[];a.node().descendants((h,f)=>{h.type.name===e&&c.push({node:h,pos:f})});const d=c.at(-1);if(!d)return!1;const u=t.state.doc.resolve(a.start()+d.pos+1);return t.chain().cut({from:l.start()-1,to:l.end()+1},u.end()).joinForward().run()}if(!qe(t.state,e)||!pf(t.state))return!1;const r=Zt(e,t.state);if(!r)return!1;const i=t.state.doc.resolve(r.$pos.pos-2).node(r.depth),o=Da(e,t.state,i);return Ra(e,t.state)&&!o?t.commands.joinItemBackward():t.chain().liftListItem(e).run()},Ia=(t,e)=>{const n=Es(t,e),r=Zt(t,e);return!r||!n?!1:n>r.depth},Pa=(t,e)=>{const n=Es(t,e),r=Zt(t,e);return!r||!n?!1:n{if(!qe(t.state,e)||!ff(t.state,e))return!1;const{selection:n}=t.state,{$from:r,$to:s}=n;return!n.empty&&r.sameParent(s)?!1:Ia(e,t.state)?t.chain().focus(t.state.selection.from+4).lift(e).joinBackward().run():Pa(e,t.state)?t.chain().joinForward().joinBackward().run():t.commands.joinItemForward()},am=(t,e)=>{var n;const{$anchor:r}=e.selection,s=e.doc.resolve(r.pos-r.parentOffset-2);return!(s.index()===s.parent.childCount-1||((n=s.nodeAfter)==null?void 0:n.type.name)!==t)},La=$.create({name:"listKeymap",addOptions(){return{listTypes:[{itemName:"listItem",wrapperNames:["bulletList","orderedList"]},{itemName:"taskItem",wrapperNames:["taskList"]}]}},addKeyboardShortcuts(){return{Delete:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&Fr(t,n)&&(e=!0)}),e},"Mod-Delete":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&Fr(t,n)&&(e=!0)}),e},Backspace:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&Hr(t,n,r)&&(e=!0)}),e},"Mod-Backspace":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&Hr(t,n,r)&&(e=!0)}),e}}}}),Wi=/^(\s*)(\d+)\.\s+(.*)$/,cm=/^\s/;function dm(t){const e=[];let n=0,r=0;for(;ne;)h.push(t[u]),u+=1;if(h.length>0){const f=Math.min(...h.map(m=>m.indent)),p=za(h,f,n);c.push({type:"list",ordered:!0,start:h[0].number,items:p,raw:h.map(m=>m.raw).join(` +`)})}s.push({type:"list_item",raw:o.raw,tokens:c}),i=u}else i+=1}return s}function um(t,e){return t.map(n=>{if(n.type!=="list_item")return e.parseChildren([n])[0];const r=[];return n.tokens&&n.tokens.length>0&&n.tokens.forEach(s=>{if(s.type==="paragraph"||s.type==="list"||s.type==="blockquote"||s.type==="code")r.push(...e.parseChildren([s]));else if(s.type==="text"&&s.tokens){const i=e.parseChildren([s]);r.push({type:"paragraph",content:i})}else{const i=e.parseChildren([s]);i.length>0&&r.push(...i)}}),{type:"listItem",content:r}})}var hm="listItem",ji="textStyle",qi=/^(\d+)\.\s$/,Ba=X.create({name:"orderedList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},addAttributes(){return{start:{default:1,parseHTML:t=>t.hasAttribute("start")?parseInt(t.getAttribute("start")||"",10):1},type:{default:null,parseHTML:t=>t.getAttribute("type")}}},parseHTML(){return[{tag:"ol"}]},renderHTML({HTMLAttributes:t}){const{start:e,...n}=t;return e===1?["ol",I(this.options.HTMLAttributes,n),0]:["ol",I(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>{if(t.type!=="list"||!t.ordered)return[];const n=t.start||1,r=t.items?um(t.items,e):[];return n!==1?{type:"orderedList",attrs:{start:n},content:r}:{type:"orderedList",content:r}},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` +`):"",markdownTokenizer:{name:"orderedList",level:"block",start:t=>{const e=t.match(/^(\s*)(\d+)\.\s+/),n=e==null?void 0:e.index;return n!==void 0?n:-1},tokenize:(t,e,n)=>{var r;const s=t.split(` +`),[i,o]=dm(s);if(i.length===0)return;const l=za(i,0,n);return l.length===0?void 0:{type:"list",ordered:!0,start:((r=i[0])==null?void 0:r.number)||1,items:l,raw:s.slice(0,o).join(` +`)}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleOrderedList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(hm,this.editor.getAttributes(ji)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-7":()=>this.editor.commands.toggleOrderedList()}},addInputRules(){let t=Et({find:qi,type:this.type,getAttributes:e=>({start:+e[1]}),joinPredicate:(e,n)=>n.childCount+n.attrs.start===+e[1]});return(this.options.keepMarks||this.options.keepAttributes)&&(t=Et({find:qi,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:e=>({start:+e[1],...this.editor.getAttributes(ji)}),joinPredicate:(e,n)=>n.childCount+n.attrs.start===+e[1],editor:this.editor})),[t]}}),fm=/^\s*(\[([( |x])?\])\s$/,pm=X.create({name:"taskItem",addOptions(){return{nested:!1,HTMLAttributes:{},taskListTypeName:"taskList",a11y:void 0}},content(){return this.options.nested?"paragraph block*":"paragraph+"},defining:!0,addAttributes(){return{checked:{default:!1,keepOnSplit:!1,parseHTML:t=>{const e=t.getAttribute("data-checked");return e===""||e==="true"},renderHTML:t=>({"data-checked":t.checked})}}},parseHTML(){return[{tag:`li[data-type="${this.name}"]`,priority:51}]},renderHTML({node:t,HTMLAttributes:e}){return["li",I(this.options.HTMLAttributes,e,{"data-type":this.name}),["label",["input",{type:"checkbox",checked:t.attrs.checked?"checked":null}],["span"]],["div",0]]},parseMarkdown:(t,e)=>{const n=[];if(t.tokens&&t.tokens.length>0?n.push(e.createNode("paragraph",{},e.parseInline(t.tokens))):t.text?n.push(e.createNode("paragraph",{},[e.createNode("text",{text:t.text})])):n.push(e.createNode("paragraph",{},[])),t.nestedTokens&&t.nestedTokens.length>0){const r=e.parseChildren(t.nestedTokens);n.push(...r)}return e.createNode("taskItem",{checked:t.checked||!1},n)},renderMarkdown:(t,e)=>{var n;const s=`- [${(n=t.attrs)!=null&&n.checked?"x":" "}] `;return Cs(t,e,s)},addKeyboardShortcuts(){const t={Enter:()=>this.editor.commands.splitListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)};return this.options.nested?{...t,Tab:()=>this.editor.commands.sinkListItem(this.name)}:t},addNodeView(){return({node:t,HTMLAttributes:e,getPos:n,editor:r})=>{const s=document.createElement("li"),i=document.createElement("label"),o=document.createElement("span"),l=document.createElement("input"),a=document.createElement("div"),c=u=>{var h,f;l.ariaLabel=((f=(h=this.options.a11y)==null?void 0:h.checkboxLabel)==null?void 0:f.call(h,u,l.checked))||`Task item checkbox for ${u.textContent||"empty task item"}`};c(t),i.contentEditable="false",l.type="checkbox",l.addEventListener("mousedown",u=>u.preventDefault()),l.addEventListener("change",u=>{if(!r.isEditable&&!this.options.onReadOnlyChecked){l.checked=!l.checked;return}const{checked:h}=u.target;r.isEditable&&typeof n=="function"&&r.chain().focus(void 0,{scrollIntoView:!1}).command(({tr:f})=>{const p=n();if(typeof p!="number")return!1;const m=f.doc.nodeAt(p);return f.setNodeMarkup(p,void 0,{...m==null?void 0:m.attrs,checked:h}),!0}).run(),!r.isEditable&&this.options.onReadOnlyChecked&&(this.options.onReadOnlyChecked(t,h)||(l.checked=!l.checked))}),Object.entries(this.options.HTMLAttributes).forEach(([u,h])=>{s.setAttribute(u,h)}),s.dataset.checked=t.attrs.checked,l.checked=t.attrs.checked,i.append(l,o),s.append(i,a),Object.entries(e).forEach(([u,h])=>{s.setAttribute(u,h)});let d=new Set(Object.keys(e));return{dom:s,contentDOM:a,update:u=>{if(u.type!==this.type)return!1;s.dataset.checked=u.attrs.checked,l.checked=u.attrs.checked,c(u);const h=r.extensionManager.attributes,f=Tt(u,h),p=new Set(Object.keys(f)),m=this.options.HTMLAttributes;return d.forEach(g=>{p.has(g)||(g in m?s.setAttribute(g,m[g]):s.removeAttribute(g))}),Object.entries(f).forEach(([g,y])=>{y==null?g in m?s.setAttribute(g,m[g]):s.removeAttribute(g):s.setAttribute(g,y)}),d=p,!0}}}},addInputRules(){return[Et({find:fm,type:this.type,getAttributes:t=>({checked:t[t.length-1]==="x"})})]}}),mm=X.create({name:"taskList",addOptions(){return{itemTypeName:"taskItem",HTMLAttributes:{}}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:`ul[data-type="${this.name}"]`,priority:51}]},renderHTML({HTMLAttributes:t}){return["ul",I(this.options.HTMLAttributes,t,{"data-type":this.name}),0]},parseMarkdown:(t,e)=>e.createNode("taskList",{},e.parseChildren(t.items||[])),renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` +`):"",markdownTokenizer:{name:"taskList",level:"block",start(t){var e;const n=(e=t.match(/^\s*[-+*]\s+\[([ xX])\]\s+/))==null?void 0:e.index;return n!==void 0?n:-1},tokenize(t,e,n){const r=i=>{const o=Br(i,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:l=>({indentLevel:l[1].length,mainContent:l[4],checked:l[3].toLowerCase()==="x"}),createToken:(l,a)=>({type:"taskItem",raw:"",mainContent:l.mainContent,indentLevel:l.indentLevel,checked:l.checked,text:l.mainContent,tokens:n.inlineTokens(l.mainContent),nestedTokens:a}),customNestedParser:r},n);return o?[{type:"taskList",raw:o.raw,items:o.items}]:n.blockTokens(i)},s=Br(t,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:i=>({indentLevel:i[1].length,mainContent:i[4],checked:i[3].toLowerCase()==="x"}),createToken:(i,o)=>({type:"taskItem",raw:"",mainContent:i.mainContent,indentLevel:i.indentLevel,checked:i.checked,text:i.mainContent,tokens:n.inlineTokens(i.mainContent),nestedTokens:o}),customNestedParser:r},n);if(s)return{type:"taskList",raw:s.raw,items:s.items}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleTaskList:()=>({commands:t})=>t.toggleList(this.name,this.options.itemTypeName)}},addKeyboardShortcuts(){return{"Mod-Shift-9":()=>this.editor.commands.toggleTaskList()}}});$.create({name:"listKit",addExtensions(){const t=[];return this.options.bulletList!==!1&&t.push(Aa.configure(this.options.bulletList)),this.options.listItem!==!1&&t.push(Na.configure(this.options.listItem)),this.options.listKeymap!==!1&&t.push(La.configure(this.options.listKeymap)),this.options.orderedList!==!1&&t.push(Ba.configure(this.options.orderedList)),this.options.taskItem!==!1&&t.push(pm.configure(this.options.taskItem)),this.options.taskList!==!1&&t.push(mm.configure(this.options.taskList)),t}});var Ki=" ",gm=" ",ym=X.create({name:"paragraph",priority:1e3,addOptions(){return{HTMLAttributes:{}}},group:"block",content:"inline*",parseHTML(){return[{tag:"p"}]},renderHTML({HTMLAttributes:t}){return["p",I(this.options.HTMLAttributes,t),0]},parseMarkdown:(t,e)=>{const n=t.tokens||[];if(n.length===1&&n[0].type==="image")return e.parseChildren([n[0]]);const r=e.parseInline(n);return r.length===1&&r[0].type==="text"&&(r[0].text===Ki||r[0].text===gm)?e.createNode("paragraph",void 0,[]):e.createNode("paragraph",void 0,r)},renderMarkdown:(t,e)=>{if(!t)return"";const n=Array.isArray(t.content)?t.content:[];return n.length===0?Ki:e.renderChildren(n)},addCommands(){return{setParagraph:()=>({commands:t})=>t.setNode(this.name)}},addKeyboardShortcuts(){return{"Mod-Alt-0":()=>this.editor.commands.setParagraph()}}}),bm=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/,km=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g,wm=xe.create({name:"strike",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"s"},{tag:"del"},{tag:"strike"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("line-through")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["s",I(this.options.HTMLAttributes,t),0]},markdownTokenName:"del",parseMarkdown:(t,e)=>e.applyMark("strike",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`~~${e.renderChildren(t)}~~`,addCommands(){return{setStrike:()=>({commands:t})=>t.setMark(this.name),toggleStrike:()=>({commands:t})=>t.toggleMark(this.name),unsetStrike:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-s":()=>this.editor.commands.toggleStrike()}},addInputRules(){return[dt({find:bm,type:this.type})]},addPasteRules(){return[Ke({find:km,type:this.type})]}}),xm=X.create({name:"text",group:"inline",parseMarkdown:t=>({type:"text",text:t.text||""}),renderMarkdown:t=>t.text||""}),Sm=xe.create({name:"underline",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"u"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("underline")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["u",I(this.options.HTMLAttributes,t),0]},parseMarkdown(t,e){return e.applyMark(this.name||"underline",e.parseInline(t.tokens||[]))},renderMarkdown(t,e){return`++${e.renderChildren(t)}++`},markdownTokenizer:{name:"underline",level:"inline",start(t){return t.indexOf("++")},tokenize(t,e,n){const s=/^(\+\+)([\s\S]+?)(\+\+)/.exec(t);if(!s)return;const i=s[2].trim();return{type:"underline",raw:s[0],text:i,tokens:n.inlineTokens(i)}}},addCommands(){return{setUnderline:()=>({commands:t})=>t.setMark(this.name),toggleUnderline:()=>({commands:t})=>t.toggleMark(this.name),unsetUnderline:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-u":()=>this.editor.commands.toggleUnderline(),"Mod-U":()=>this.editor.commands.toggleUnderline()}}});function Cm(t={}){return new B({view(e){return new Mm(e,t)}})}class Mm{constructor(e,n){var r;this.editorView=e,this.cursorPos=null,this.element=null,this.timeout=-1,this.width=(r=n.width)!==null&&r!==void 0?r:1,this.color=n.color===!1?void 0:n.color||"black",this.class=n.class,this.handlers=["dragover","dragend","drop","dragleave"].map(s=>{let i=o=>{this[s](o)};return e.dom.addEventListener(s,i),{name:s,handler:i}})}destroy(){this.handlers.forEach(({name:e,handler:n})=>this.editorView.dom.removeEventListener(e,n))}update(e,n){this.cursorPos!=null&&n.doc!=e.state.doc&&(this.cursorPos>e.state.doc.content.size?this.setCursor(null):this.updateOverlay())}setCursor(e){e!=this.cursorPos&&(this.cursorPos=e,e==null?(this.element.parentNode.removeChild(this.element),this.element=null):this.updateOverlay())}updateOverlay(){let e=this.editorView.state.doc.resolve(this.cursorPos),n=!e.parent.inlineContent,r,s=this.editorView.dom,i=s.getBoundingClientRect(),o=i.width/s.offsetWidth,l=i.height/s.offsetHeight;if(n){let u=e.nodeBefore,h=e.nodeAfter;if(u||h){let f=this.editorView.nodeDOM(this.cursorPos-(u?u.nodeSize:0));if(f){let p=f.getBoundingClientRect(),m=u?p.bottom:p.top;u&&h&&(m=(m+this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top)/2);let g=this.width/2*l;r={left:p.left,right:p.right,top:m-g,bottom:m+g}}}}if(!r){let u=this.editorView.coordsAtPos(this.cursorPos),h=this.width/2*o;r={left:u.left-h,right:u.left+h,top:u.top,bottom:u.bottom}}let a=this.editorView.dom.offsetParent;this.element||(this.element=a.appendChild(document.createElement("div")),this.class&&(this.element.className=this.class),this.element.style.cssText="position: absolute; z-index: 50; pointer-events: none;",this.color&&(this.element.style.backgroundColor=this.color)),this.element.classList.toggle("prosemirror-dropcursor-block",n),this.element.classList.toggle("prosemirror-dropcursor-inline",!n);let c,d;if(!a||a==document.body&&getComputedStyle(a).position=="static")c=-pageXOffset,d=-pageYOffset;else{let u=a.getBoundingClientRect(),h=u.width/a.offsetWidth,f=u.height/a.offsetHeight;c=u.left-a.scrollLeft*h,d=u.top-a.scrollTop*f}this.element.style.left=(r.left-c)/o+"px",this.element.style.top=(r.top-d)/l+"px",this.element.style.width=(r.right-r.left)/o+"px",this.element.style.height=(r.bottom-r.top)/l+"px"}scheduleRemoval(e){clearTimeout(this.timeout),this.timeout=setTimeout(()=>this.setCursor(null),e)}dragover(e){if(!this.editorView.editable)return;let n=this.editorView.posAtCoords({left:e.clientX,top:e.clientY}),r=n&&n.inside>=0&&this.editorView.state.doc.nodeAt(n.inside),s=r&&r.type.spec.disableDropCursor,i=typeof s=="function"?s(this.editorView,n,e):s;if(n&&!i){let o=n.pos;if(this.editorView.dragging&&this.editorView.dragging.slice){let l=_o(this.editorView.state.doc,o,this.editorView.dragging.slice);l!=null&&(o=l)}this.setCursor(o),this.scheduleRemoval(5e3)}}dragend(){this.scheduleRemoval(20)}drop(){this.scheduleRemoval(20)}dragleave(e){this.editorView.dom.contains(e.relatedTarget)||this.setCursor(null)}}class H extends N{constructor(e){super(e,e)}map(e,n){let r=e.resolve(n.map(this.head));return H.valid(r)?new H(r):N.near(r)}content(){return x.empty}eq(e){return e instanceof H&&e.head==this.head}toJSON(){return{type:"gapcursor",pos:this.head}}static fromJSON(e,n){if(typeof n.pos!="number")throw new RangeError("Invalid input for GapCursor.fromJSON");return new H(e.resolve(n.pos))}getBookmark(){return new As(this.anchor)}static valid(e){let n=e.parent;if(n.isTextblock||!vm(e)||!Tm(e))return!1;let r=n.type.spec.allowGapCursor;if(r!=null)return r;let s=n.contentMatchAt(e.index()).defaultType;return s&&s.isTextblock}static findGapCursorFrom(e,n,r=!1){e:for(;;){if(!r&&H.valid(e))return e;let s=e.pos,i=null;for(let o=e.depth;;o--){let l=e.node(o);if(n>0?e.indexAfter(o)0){i=l.child(n>0?e.indexAfter(o):e.index(o)-1);break}else if(o==0)return null;s+=n;let a=e.doc.resolve(s);if(H.valid(a))return a}for(;;){let o=n>0?i.firstChild:i.lastChild;if(!o){if(i.isAtom&&!i.isText&&!T.isSelectable(i)){e=e.doc.resolve(s+i.nodeSize*n),r=!1;continue e}break}i=o,s+=n;let l=e.doc.resolve(s);if(H.valid(l))return l}return null}}}H.prototype.visible=!1;H.findFrom=H.findGapCursorFrom;N.jsonID("gapcursor",H);class As{constructor(e){this.pos=e}map(e){return new As(e.map(this.pos))}resolve(e){let n=e.resolve(this.pos);return H.valid(n)?new H(n):N.near(n)}}function $a(t){return t.isAtom||t.spec.isolating||t.spec.createGapCursor}function vm(t){for(let e=t.depth;e>=0;e--){let n=t.index(e),r=t.node(e);if(n==0){if(r.type.spec.isolating)return!0;continue}for(let s=r.child(n-1);;s=s.lastChild){if(s.childCount==0&&!s.inlineContent||$a(s.type))return!0;if(s.inlineContent)return!1}}return!0}function Tm(t){for(let e=t.depth;e>=0;e--){let n=t.indexAfter(e),r=t.node(e);if(n==r.childCount){if(r.type.spec.isolating)return!0;continue}for(let s=r.child(n);;s=s.firstChild){if(s.childCount==0&&!s.inlineContent||$a(s.type))return!0;if(s.inlineContent)return!1}}return!0}function Em(){return new B({props:{decorations:Rm,createSelectionBetween(t,e,n){return e.pos==n.pos&&H.valid(n)?new H(n):null},handleClick:Nm,handleKeyDown:Am,handleDOMEvents:{beforeinput:Om}}})}const Am=fs({ArrowLeft:cn("horiz",-1),ArrowRight:cn("horiz",1),ArrowUp:cn("vert",-1),ArrowDown:cn("vert",1)});function cn(t,e){const n=t=="vert"?e>0?"down":"up":e>0?"right":"left";return function(r,s,i){let o=r.selection,l=e>0?o.$to:o.$from,a=o.empty;if(o instanceof E){if(!i.endOfTextblock(n)||l.depth==0)return!1;a=!1,l=r.doc.resolve(e>0?l.after():l.before())}let c=H.findGapCursorFrom(l,e,a);return c?(s&&s(r.tr.setSelection(new H(c))),!0):!1}}function Nm(t,e,n){if(!t||!t.editable)return!1;let r=t.state.doc.resolve(e);if(!H.valid(r))return!1;let s=t.posAtCoords({left:n.clientX,top:n.clientY});return s&&s.inside>-1&&T.isSelectable(t.state.doc.nodeAt(s.inside))?!1:(t.dispatch(t.state.tr.setSelection(new H(r))),!0)}function Om(t,e){if(e.inputType!="insertCompositionText"||!(t.state.selection instanceof H))return!1;let{$from:n}=t.state.selection,r=n.parent.contentMatchAt(n.index()).findWrapping(t.state.schema.nodes.text);if(!r)return!1;let s=b.empty;for(let o=r.length-1;o>=0;o--)s=b.from(r[o].createAndFill(null,s));let i=t.state.tr.replace(n.pos,n.pos,new x(s,0,0));return i.setSelection(E.near(i.doc.resolve(n.pos+1))),t.dispatch(i),!1}function Rm(t){if(!(t.selection instanceof H))return null;let e=document.createElement("div");return e.className="ProseMirror-gapcursor",L.create(t.doc,[U.widget(t.selection.head,e,{key:"gapcursor"})])}const Dm=500;class pe{constructor(e,n){this.items=e,this.eventCount=n}popEvent(e,n){if(this.eventCount==0)return null;let r=this.items.length;for(;;r--)if(this.items.get(r-1).selection){--r;break}let s,i;n&&(s=this.remapping(r,this.items.length),i=s.maps.length);let o=e.tr,l,a,c=[],d=[];return this.items.forEach((u,h)=>{if(!u.step){s||(s=this.remapping(r,h+1),i=s.maps.length),i--,d.push(u);return}if(s){d.push(new be(u.map));let f=u.step.map(s.slice(i)),p;f&&o.maybeStep(f).doc&&(p=o.mapping.maps[o.mapping.maps.length-1],c.push(new be(p,void 0,void 0,c.length+d.length))),i--,p&&s.appendMap(p,i)}else o.maybeStep(u.step);if(u.selection)return l=s?u.selection.map(s.slice(i)):u.selection,a=new pe(this.items.slice(0,r).append(d.reverse().concat(c)),this.eventCount-1),!1},this.items.length,0),{remaining:a,transform:o,selection:l}}addTransform(e,n,r,s){let i=[],o=this.eventCount,l=this.items,a=!s&&l.length?l.get(l.length-1):null;for(let d=0;dPm&&(l=Im(l,c),o-=c),new pe(l.append(i),o)}remapping(e,n){let r=new Vt;return this.items.forEach((s,i)=>{let o=s.mirrorOffset!=null&&i-s.mirrorOffset>=e?r.maps.length-s.mirrorOffset:void 0;r.appendMap(s.map,o)},e,n),r}addMaps(e){return this.eventCount==0?this:new pe(this.items.append(e.map(n=>new be(n))),this.eventCount)}rebased(e,n){if(!this.eventCount)return this;let r=[],s=Math.max(0,this.items.length-n),i=e.mapping,o=e.steps.length,l=this.eventCount;this.items.forEach(h=>{h.selection&&l--},s);let a=n;this.items.forEach(h=>{let f=i.getMirror(--a);if(f==null)return;o=Math.min(o,f);let p=i.maps[f];if(h.step){let m=e.steps[f].invert(e.docs[f]),g=h.selection&&h.selection.map(i.slice(a+1,f));g&&l++,r.push(new be(p,m,g))}else r.push(new be(p))},s);let c=[];for(let h=n;hDm&&(u=u.compress(this.items.length-r.length)),u}emptyItemCount(){let e=0;return this.items.forEach(n=>{n.step||e++}),e}compress(e=this.items.length){let n=this.remapping(0,e),r=n.maps.length,s=[],i=0;return this.items.forEach((o,l)=>{if(l>=e)s.push(o),o.selection&&i++;else if(o.step){let a=o.step.map(n.slice(r)),c=a&&a.getMap();if(r--,c&&n.appendMap(c,r),a){let d=o.selection&&o.selection.map(n.slice(r));d&&i++;let u=new be(c.invert(),a,d),h,f=s.length-1;(h=s.length&&s[f].merge(u))?s[f]=h:s.push(u)}}else o.map&&r--},this.items.length,0),new pe(mo.from(s.reverse()),i)}}pe.empty=new pe(mo.empty,0);function Im(t,e){let n;return t.forEach((r,s)=>{if(r.selection&&e--==0)return n=s,!1}),t.slice(n)}class be{constructor(e,n,r,s){this.map=e,this.step=n,this.selection=r,this.mirrorOffset=s}merge(e){if(this.step&&e.step&&!e.selection){let n=e.step.merge(this.step);if(n)return new be(n.getMap().invert(),n,this.selection)}}}class ze{constructor(e,n,r,s,i){this.done=e,this.undone=n,this.prevRanges=r,this.prevTime=s,this.prevComposition=i}}const Pm=20;function Lm(t,e,n,r){let s=n.getMeta(st),i;if(s)return s.historyState;n.getMeta($m)&&(t=new ze(t.done,t.undone,null,0,-1));let o=n.getMeta("appendedTransaction");if(n.steps.length==0)return t;if(o&&o.getMeta(st))return o.getMeta(st).redo?new ze(t.done.addTransform(n,void 0,r,bn(e)),t.undone,Ui(n.mapping.maps),t.prevTime,t.prevComposition):new ze(t.done,t.undone.addTransform(n,void 0,r,bn(e)),null,t.prevTime,t.prevComposition);if(n.getMeta("addToHistory")!==!1&&!(o&&o.getMeta("addToHistory")===!1)){let l=n.getMeta("composition"),a=t.prevTime==0||!o&&t.prevComposition!=l&&(t.prevTime<(n.time||0)-r.newGroupDelay||!zm(n,t.prevRanges)),c=o?pr(t.prevRanges,n.mapping):Ui(n.mapping.maps);return new ze(t.done.addTransform(n,a?e.selection.getBookmark():void 0,r,bn(e)),pe.empty,c,n.time,l??t.prevComposition)}else return(i=n.getMeta("rebased"))?new ze(t.done.rebased(n,i),t.undone.rebased(n,i),pr(t.prevRanges,n.mapping),t.prevTime,t.prevComposition):new ze(t.done.addMaps(n.mapping.maps),t.undone.addMaps(n.mapping.maps),pr(t.prevRanges,n.mapping),t.prevTime,t.prevComposition)}function zm(t,e){if(!e)return!1;if(!t.docChanged)return!0;let n=!1;return t.mapping.maps[0].forEach((r,s)=>{for(let i=0;i=e[i]&&(n=!0)}),n}function Ui(t){let e=[];for(let n=t.length-1;n>=0&&e.length==0;n--)t[n].forEach((r,s,i,o)=>e.push(i,o));return e}function pr(t,e){if(!t)return null;let n=[];for(let r=0;r{let s=st.getState(n);if(!s||(t?s.undone:s.done).eventCount==0)return!1;if(r){let i=Bm(s,n,t);i&&r(e?i.scrollIntoView():i)}return!0}}const Fa=Ha(!1,!0),Va=Ha(!0,!0);$.create({name:"characterCount",addOptions(){return{limit:null,mode:"textSize",textCounter:t=>t.length,wordCounter:t=>t.split(" ").filter(e=>e!=="").length}},addStorage(){return{characters:()=>0,words:()=>0}},onBeforeCreate(){this.storage.characters=t=>{const e=(t==null?void 0:t.node)||this.editor.state.doc;if(((t==null?void 0:t.mode)||this.options.mode)==="textSize"){const r=e.textBetween(0,e.content.size,void 0," ");return this.options.textCounter(r)}return e.nodeSize},this.storage.words=t=>{const e=(t==null?void 0:t.node)||this.editor.state.doc,n=e.textBetween(0,e.content.size," "," ");return this.options.wordCounter(n)}},addProseMirrorPlugins(){let t=!1;return[new B({key:new _("characterCount"),appendTransaction:(e,n,r)=>{if(t)return;const s=this.options.limit;if(s==null||s===0){t=!0;return}const i=this.storage.characters({node:r.doc});if(i>s){const o=i-s,l=0,a=o;console.warn(`[CharacterCount] Initial content exceeded limit of ${s} characters. Content was automatically trimmed.`);const c=r.tr.deleteRange(l,a);return t=!0,c}t=!0},filterTransaction:(e,n)=>{const r=this.options.limit;if(!e.docChanged||r===0||r===null||r===void 0)return!0;const s=this.storage.characters({node:n.doc}),i=this.storage.characters({node:e.doc});if(i<=r||s>r&&i>r&&i<=s)return!0;if(s>r&&i>r&&i>s||!e.getMeta("paste"))return!1;const l=e.selection.$head.pos,a=i-r,c=l-a,d=l;return e.deleteRange(c,d),!(this.storage.characters({node:e.doc})>r)}})]}});var Fm=$.create({name:"dropCursor",addOptions(){return{color:"currentColor",width:1,class:void 0}},addProseMirrorPlugins(){return[Cm(this.options)]}});$.create({name:"focus",addOptions(){return{className:"has-focus",mode:"all"}},addProseMirrorPlugins(){return[new B({key:new _("focus"),props:{decorations:({doc:t,selection:e})=>{const{isEditable:n,isFocused:r}=this.editor,{anchor:s}=e,i=[];if(!n||!r)return L.create(t,[]);let o=0;this.options.mode==="deepest"&&t.descendants((a,c)=>{if(a.isText)return;if(!(s>=c&&s<=c+a.nodeSize-1))return!1;o+=1});let l=0;return t.descendants((a,c)=>{if(a.isText||!(s>=c&&s<=c+a.nodeSize-1))return!1;if(l+=1,this.options.mode==="deepest"&&o-l>0||this.options.mode==="shallowest"&&l>1)return this.options.mode==="deepest";i.push(U.node(c,c+a.nodeSize,{class:this.options.className}))}),L.create(t,i)}}})]}});var Vm=$.create({name:"gapCursor",addProseMirrorPlugins(){return[Em()]},extendNodeSchema(t){var e;const n={name:t.name,options:t.options,storage:t.storage};return{allowGapCursor:(e=D(M(t,"allowGapCursor",n)))!=null?e:null}}}),Xi="placeholder";function _m(t){return t.replace(/\s+/g,"-").replace(/[^a-zA-Z0-9-]/g,"").replace(/^[0-9-]+/,"").replace(/^-+/,"").toLowerCase()}$.create({name:"placeholder",addOptions(){return{emptyEditorClass:"is-editor-empty",emptyNodeClass:"is-empty",dataAttribute:Xi,placeholder:"Write something …",showOnlyWhenEditable:!0,showOnlyCurrent:!0,includeChildren:!1}},addProseMirrorPlugins(){const t=this.options.dataAttribute?`data-${_m(this.options.dataAttribute)}`:`data-${Xi}`;return[new B({key:new _("placeholder"),props:{decorations:({doc:e,selection:n})=>{const r=this.editor.isEditable||!this.options.showOnlyWhenEditable,{anchor:s}=n,i=[];if(!r)return null;const o=this.editor.isEmpty;return e.descendants((l,a)=>{const c=s>=a&&s<=a+l.nodeSize,d=!l.isLeaf&&Kn(l);if((c||!this.options.showOnlyCurrent)&&d){const u=[this.options.emptyNodeClass];o&&u.push(this.options.emptyEditorClass);const h=U.node(a,a+l.nodeSize,{class:u.join(" "),[t]:typeof this.options.placeholder=="function"?this.options.placeholder({editor:this.editor,node:l,pos:a,hasAnchor:c}):this.options.placeholder});i.push(h)}return this.options.includeChildren}),L.create(e,i)}}})]}});var _y=$.create({name:"selection",addOptions(){return{className:"selection"}},addProseMirrorPlugins(){const{editor:t,options:e}=this;return[new B({key:new _("selection"),props:{decorations(n){return n.selection.empty||t.isFocused||!t.isEditable||sa(n.selection)||t.view.dragging?null:L.create(n.doc,[U.inline(n.selection.from,n.selection.to,{class:e.className})])}}})]}});function Gi({types:t,node:e}){return e&&Array.isArray(t)&&t.includes(e.type)||(e==null?void 0:e.type)===t}var Wm=$.create({name:"trailingNode",addOptions(){return{node:void 0,notAfter:[]}},addProseMirrorPlugins(){var t;const e=new _(this.name),n=this.options.node||((t=this.editor.schema.topNodeType.contentMatch.defaultType)==null?void 0:t.name)||"paragraph",r=Object.entries(this.editor.schema.nodes).map(([,s])=>s).filter(s=>(this.options.notAfter||[]).concat(n).includes(s.name));return[new B({key:e,appendTransaction:(s,i,o)=>{const{doc:l,tr:a,schema:c}=o,d=e.getState(o),u=l.content.size,h=c.nodes[n];if(d)return a.insert(u,h.create())},state:{init:(s,i)=>{const o=i.tr.doc.lastChild;return!Gi({node:o,types:r})},apply:(s,i)=>{if(!s.docChanged||s.getMeta("__uniqueIDTransaction"))return i;const o=s.doc.lastChild;return!Gi({node:o,types:r})}}})]}}),jm=$.create({name:"undoRedo",addOptions(){return{depth:100,newGroupDelay:500}},addCommands(){return{undo:()=>({state:t,dispatch:e})=>Fa(t,e),redo:()=>({state:t,dispatch:e})=>Va(t,e)}},addProseMirrorPlugins(){return[Hm(this.options)]},addKeyboardShortcuts(){return{"Mod-z":()=>this.editor.commands.undo(),"Shift-Mod-z":()=>this.editor.commands.redo(),"Mod-y":()=>this.editor.commands.redo(),"Mod-я":()=>this.editor.commands.undo(),"Shift-Mod-я":()=>this.editor.commands.redo()}}}),Wy=$.create({name:"starterKit",addExtensions(){var t,e,n,r;const s=[];return this.options.bold!==!1&&s.push(Lp.configure(this.options.bold)),this.options.blockquote!==!1&&s.push(Op.configure(this.options.blockquote)),this.options.bulletList!==!1&&s.push(Aa.configure(this.options.bulletList)),this.options.code!==!1&&s.push($p.configure(this.options.code)),this.options.codeBlock!==!1&&s.push(Vp.configure(this.options.codeBlock)),this.options.document!==!1&&s.push(_p.configure(this.options.document)),this.options.dropcursor!==!1&&s.push(Fm.configure(this.options.dropcursor)),this.options.gapcursor!==!1&&s.push(Vm.configure(this.options.gapcursor)),this.options.hardBreak!==!1&&s.push(Wp.configure(this.options.hardBreak)),this.options.heading!==!1&&s.push(jp.configure(this.options.heading)),this.options.undoRedo!==!1&&s.push(jm.configure(this.options.undoRedo)),this.options.horizontalRule!==!1&&s.push(Ea.configure(this.options.horizontalRule)),this.options.italic!==!1&&s.push(Xp.configure(this.options.italic)),this.options.listItem!==!1&&s.push(Na.configure(this.options.listItem)),this.options.listKeymap!==!1&&s.push(La.configure((t=this.options)==null?void 0:t.listKeymap)),this.options.link!==!1&&s.push(rm.configure((e=this.options)==null?void 0:e.link)),this.options.orderedList!==!1&&s.push(Ba.configure(this.options.orderedList)),this.options.paragraph!==!1&&s.push(ym.configure(this.options.paragraph)),this.options.strike!==!1&&s.push(wm.configure(this.options.strike)),this.options.text!==!1&&s.push(xm.configure(this.options.text)),this.options.underline!==!1&&s.push(Sm.configure((n=this.options)==null?void 0:n.underline)),this.options.trailingNode!==!1&&s.push(Wm.configure((r=this.options)==null?void 0:r.trailingNode)),s}}),jy=$.create({name:"textAlign",addOptions(){return{types:[],alignments:["left","center","right","justify"],defaultAlignment:null}},addGlobalAttributes(){return[{types:this.options.types,attributes:{textAlign:{default:this.options.defaultAlignment,parseHTML:t=>{const e=t.style.textAlign;return this.options.alignments.includes(e)?e:this.options.defaultAlignment},renderHTML:t=>t.textAlign?{style:`text-align: ${t.textAlign}`}:{}}}}]},addCommands(){return{setTextAlign:t=>({commands:e})=>this.options.alignments.includes(t)?this.options.types.map(n=>e.updateAttributes(n,{textAlign:t})).some(n=>n):!1,unsetTextAlign:()=>({commands:t})=>this.options.types.map(e=>t.resetAttributes(e,"textAlign")).some(e=>e),toggleTextAlign:t=>({editor:e,commands:n})=>this.options.alignments.includes(t)?e.isActive({textAlign:t})?n.unsetTextAlign():n.setTextAlign(t):!1}},addKeyboardShortcuts(){return{"Mod-Shift-l":()=>this.editor.commands.setTextAlign("left"),"Mod-Shift-e":()=>this.editor.commands.setTextAlign("center"),"Mod-Shift-r":()=>this.editor.commands.setTextAlign("right"),"Mod-Shift-j":()=>this.editor.commands.setTextAlign("justify")}}}),qm=t=>W({find:/--$/,replace:t??"—"}),Km=t=>W({find:/\.\.\.$/,replace:t??"…"}),Um=t=>W({find:/(?:^|[\s{[(<'"\u2018\u201C])(")$/,replace:t??"“"}),Jm=t=>W({find:/"$/,replace:t??"”"}),Xm=t=>W({find:/(?:^|[\s{[(<'"\u2018\u201C])(')$/,replace:t??"‘"}),Gm=t=>W({find:/'$/,replace:t??"’"}),Ym=t=>W({find:/<-$/,replace:t??"←"}),Qm=t=>W({find:/->$/,replace:t??"→"}),Zm=t=>W({find:/\(c\)$/,replace:t??"©"}),eg=t=>W({find:/\(tm\)$/,replace:t??"™"}),tg=t=>W({find:/\(sm\)$/,replace:t??"℠"}),ng=t=>W({find:/\(r\)$/,replace:t??"®"}),rg=t=>W({find:/(?:^|\s)(1\/2)\s$/,replace:t??"½"}),sg=t=>W({find:/\+\/-$/,replace:t??"±"}),ig=t=>W({find:/!=$/,replace:t??"≠"}),og=t=>W({find:/<<$/,replace:t??"«"}),lg=t=>W({find:/>>$/,replace:t??"»"}),ag=t=>W({find:/\d+\s?([*x])\s?\d+$/,replace:t??"×"}),cg=t=>W({find:/\^2$/,replace:t??"²"}),dg=t=>W({find:/\^3$/,replace:t??"³"}),ug=t=>W({find:/(?:^|\s)(1\/4)\s$/,replace:t??"¼"}),hg=t=>W({find:/(?:^|\s)(3\/4)\s$/,replace:t??"¾"}),qy=$.create({name:"typography",addOptions(){return{closeDoubleQuote:"”",closeSingleQuote:"’",copyright:"©",ellipsis:"…",emDash:"—",laquo:"«",leftArrow:"←",multiplication:"×",notEqual:"≠",oneHalf:"½",oneQuarter:"¼",openDoubleQuote:"“",openSingleQuote:"‘",plusMinus:"±",raquo:"»",registeredTrademark:"®",rightArrow:"→",servicemark:"℠",superscriptThree:"³",superscriptTwo:"²",threeQuarters:"¾",trademark:"™"}},addInputRules(){const t=[];return this.options.emDash!==!1&&t.push(qm(this.options.emDash)),this.options.ellipsis!==!1&&t.push(Km(this.options.ellipsis)),this.options.openDoubleQuote!==!1&&t.push(Um(this.options.openDoubleQuote)),this.options.closeDoubleQuote!==!1&&t.push(Jm(this.options.closeDoubleQuote)),this.options.openSingleQuote!==!1&&t.push(Xm(this.options.openSingleQuote)),this.options.closeSingleQuote!==!1&&t.push(Gm(this.options.closeSingleQuote)),this.options.leftArrow!==!1&&t.push(Ym(this.options.leftArrow)),this.options.rightArrow!==!1&&t.push(Qm(this.options.rightArrow)),this.options.copyright!==!1&&t.push(Zm(this.options.copyright)),this.options.trademark!==!1&&t.push(eg(this.options.trademark)),this.options.servicemark!==!1&&t.push(tg(this.options.servicemark)),this.options.registeredTrademark!==!1&&t.push(ng(this.options.registeredTrademark)),this.options.oneHalf!==!1&&t.push(rg(this.options.oneHalf)),this.options.plusMinus!==!1&&t.push(sg(this.options.plusMinus)),this.options.notEqual!==!1&&t.push(ig(this.options.notEqual)),this.options.laquo!==!1&&t.push(og(this.options.laquo)),this.options.raquo!==!1&&t.push(lg(this.options.raquo)),this.options.multiplication!==!1&&t.push(ag(this.options.multiplication)),this.options.superscriptTwo!==!1&&t.push(cg(this.options.superscriptTwo)),this.options.superscriptThree!==!1&&t.push(dg(this.options.superscriptThree)),this.options.oneQuarter!==!1&&t.push(ug(this.options.oneQuarter)),this.options.threeQuarters!==!1&&t.push(hg(this.options.threeQuarters)),t}}),fg=/(?:^|\s)(==(?!\s+==)((?:[^=]+))==(?!\s+==))$/,pg=/(?:^|\s)(==(?!\s+==)((?:[^=]+))==(?!\s+==))/g,Ky=xe.create({name:"highlight",addOptions(){return{multicolor:!1,HTMLAttributes:{}}},addAttributes(){return this.options.multicolor?{color:{default:null,parseHTML:t=>t.getAttribute("data-color")||t.style.backgroundColor,renderHTML:t=>t.color?{"data-color":t.color,style:`background-color: ${t.color}; color: inherit`}:{}}}:{}},parseHTML(){return[{tag:"mark"}]},renderHTML({HTMLAttributes:t}){return["mark",I(this.options.HTMLAttributes,t),0]},renderMarkdown:(t,e)=>`==${e.renderChildren(t)}==`,parseMarkdown:(t,e)=>e.applyMark("highlight",e.parseInline(t.tokens||[])),markdownTokenizer:{name:"highlight",level:"inline",start:t=>t.indexOf("=="),tokenize(t,e,n){const s=/^(==)([^=]+)(==)/.exec(t);if(s){const i=s[2].trim(),o=n.inlineTokens(i);return{type:"highlight",raw:s[0],text:i,tokens:o}}}},addCommands(){return{setHighlight:t=>({commands:e})=>e.setMark(this.name,t),toggleHighlight:t=>({commands:e})=>e.toggleMark(this.name,t),unsetHighlight:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-h":()=>this.editor.commands.toggleHighlight()}},addInputRules(){return[dt({find:fg,type:this.type})]},addPasteRules(){return[Ke({find:pg,type:this.type})]}}),Uy=xe.create({name:"subscript",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"sub"},{style:"vertical-align",getAttrs(t){return t!=="sub"?!1:null}}]},renderHTML({HTMLAttributes:t}){return["sub",I(this.options.HTMLAttributes,t),0]},addCommands(){return{setSubscript:()=>({commands:t})=>t.setMark(this.name),toggleSubscript:()=>({commands:t})=>t.toggleMark(this.name),unsetSubscript:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-,":()=>this.editor.commands.toggleSubscript()}}}),Jy=xe.create({name:"superscript",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"sup"},{style:"vertical-align",getAttrs(t){return t!=="super"?!1:null}}]},renderHTML({HTMLAttributes:t}){return["sup",I(this.options.HTMLAttributes,t),0]},addCommands(){return{setSuperscript:()=>({commands:t})=>t.setMark(this.name),toggleSuperscript:()=>({commands:t})=>t.toggleMark(this.name),unsetSuperscript:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-.":()=>this.editor.commands.toggleSuperscript()}}});let Vr,_r;if(typeof WeakMap<"u"){let t=new WeakMap;Vr=e=>t.get(e),_r=(e,n)=>(t.set(e,n),n)}else{const t=[];let n=0;Vr=r=>{for(let s=0;s(n==10&&(n=0),t[n++]=r,t[n++]=s)}var F=class{constructor(t,e,n,r){this.width=t,this.height=e,this.map=n,this.problems=r}findCell(t){for(let e=0;e=n){(i||(i=[])).push({type:"overlong_rowspan",pos:d,n:y-w});break}const S=s+w*e;for(let C=0;Cr&&(i+=c.attrs.colspan)}}for(let o=0;o1&&(n=!0)}e==-1?e=i:e!=i&&(e=Math.max(e,i))}return e}function yg(t,e,n){t.problems||(t.problems=[]);const r={};for(let s=0;s0;e--)if(t.node(e).type.spec.tableRole=="row")return t.node(0).resolve(t.before(e+1));return null}function kg(t){for(let e=t.depth;e>0;e--){const n=t.node(e).type.spec.tableRole;if(n==="cell"||n==="header_cell")return t.node(e)}return null}function ye(t){const e=t.selection.$head;for(let n=e.depth;n>0;n--)if(e.node(n).type.spec.tableRole=="row")return!0;return!1}function Jn(t){const e=t.selection;if("$anchorCell"in e&&e.$anchorCell)return e.$anchorCell.pos>e.$headCell.pos?e.$anchorCell:e.$headCell;if("node"in e&&e.node&&e.node.type.spec.tableRole=="cell")return e.$anchor;const n=ut(e.$head)||wg(e.$head);if(n)return n;throw new RangeError(`No cell found around position ${e.head}`)}function wg(t){for(let e=t.nodeAfter,n=t.pos;e;e=e.firstChild,n++){const r=e.type.spec.tableRole;if(r=="cell"||r=="header_cell")return t.doc.resolve(n)}for(let e=t.nodeBefore,n=t.pos;e;e=e.lastChild,n--){const r=e.type.spec.tableRole;if(r=="cell"||r=="header_cell")return t.doc.resolve(n-e.nodeSize)}}function Wr(t){return t.parent.type.spec.tableRole=="row"&&!!t.nodeAfter}function xg(t){return t.node(0).resolve(t.pos+t.nodeAfter.nodeSize)}function Ns(t,e){return t.depth==e.depth&&t.pos>=e.start(-1)&&t.pos<=e.end(-1)}function _a(t,e,n){const r=t.node(-1),s=F.get(r),i=t.start(-1),o=s.nextCell(t.pos-i,e,n);return o==null?null:t.node(0).resolve(i+o)}function ht(t,e,n=1){const r={...t,colspan:t.colspan-n};return r.colwidth&&(r.colwidth=r.colwidth.slice(),r.colwidth.splice(e,n),r.colwidth.some(s=>s>0)||(r.colwidth=null)),r}function Wa(t,e,n=1){const r={...t,colspan:t.colspan+n};if(r.colwidth){r.colwidth=r.colwidth.slice();for(let s=0;sd!=n.pos-i);a.unshift(n.pos-i);const c=a.map(d=>{const u=r.nodeAt(d);if(!u)throw new RangeError(`No cell with offset ${d} found`);const h=i+d+1;return new Uo(l.resolve(h),l.resolve(h+u.content.size))});super(c[0].$from,c[0].$to,c),this.$anchorCell=e,this.$headCell=n}map(e,n){const r=e.resolve(n.map(this.$anchorCell.pos)),s=e.resolve(n.map(this.$headCell.pos));if(Wr(r)&&Wr(s)&&Ns(r,s)){const i=this.$anchorCell.node(-1)!=r.node(-1);return i&&this.isRowSelection()?Te.rowSelection(r,s):i&&this.isColSelection()?Te.colSelection(r,s):new Te(r,s)}return E.between(r,s)}content(){const e=this.$anchorCell.node(-1),n=F.get(e),r=this.$anchorCell.start(-1),s=n.rectBetween(this.$anchorCell.pos-r,this.$headCell.pos-r),i={},o=[];for(let a=s.top;a0||g>0){let y=p.attrs;if(m>0&&(y=ht(y,0,m)),g>0&&(y=ht(y,y.colspan-g,g)),f.lefts.bottom){const y={...p.attrs,rowspan:Math.min(f.bottom,s.bottom)-Math.max(f.top,s.top)};f.top0)return!1;const r=e+this.$anchorCell.nodeAfter.attrs.rowspan,s=n+this.$headCell.nodeAfter.attrs.rowspan;return Math.max(r,s)==this.$headCell.node(-1).childCount}static colSelection(e,n=e){const r=e.node(-1),s=F.get(r),i=e.start(-1),o=s.findCell(e.pos-i),l=s.findCell(n.pos-i),a=e.node(0);return o.top<=l.top?(o.top>0&&(e=a.resolve(i+s.map[o.left])),l.bottom0&&(n=a.resolve(i+s.map[l.left])),o.bottom0)return!1;const o=s+this.$anchorCell.nodeAfter.attrs.colspan,l=i+this.$headCell.nodeAfter.attrs.colspan;return Math.max(o,l)==n.width}eq(e){return e instanceof Te&&e.$anchorCell.pos==this.$anchorCell.pos&&e.$headCell.pos==this.$headCell.pos}static rowSelection(e,n=e){const r=e.node(-1),s=F.get(r),i=e.start(-1),o=s.findCell(e.pos-i),l=s.findCell(n.pos-i),a=e.node(0);return o.left<=l.left?(o.left>0&&(e=a.resolve(i+s.map[o.top*s.width])),l.right0&&(n=a.resolve(i+s.map[l.top*s.width])),o.right{e.push(U.node(r,r+n.nodeSize,{class:"selectedCell"}))}),L.create(t.doc,e)}function vg({$from:t,$to:e}){if(t.pos==e.pos||t.pos=0&&!(t.after(s+1)=0&&!(e.before(i+1)>e.start(i));i--,r--);return n==r&&/row|table/.test(t.node(s).type.spec.tableRole)}function Tg({$from:t,$to:e}){let n,r;for(let s=t.depth;s>0;s--){const i=t.node(s);if(i.type.spec.tableRole==="cell"||i.type.spec.tableRole==="header_cell"){n=i;break}}for(let s=e.depth;s>0;s--){const i=e.node(s);if(i.type.spec.tableRole==="cell"||i.type.spec.tableRole==="header_cell"){r=i;break}}return n!==r&&e.parentOffset===0}function Eg(t,e,n){const r=(e||t).selection,s=(e||t).doc;let i,o;if(r instanceof T&&(o=r.node.type.spec.tableRole)){if(o=="cell"||o=="header_cell")i=z.create(s,r.from);else if(o=="row"){const l=s.resolve(r.from+1);i=z.rowSelection(l,l)}else if(!n){const l=F.get(r.node),a=r.from+1,c=a+l.map[l.width*l.height-1];i=z.create(s,a+1,c)}}else r instanceof E&&vg(r)?i=E.create(s,r.from):r instanceof E&&Tg(r)&&(i=E.create(s,r.$from.start(),r.$from.end()));return i&&(e||(e=t.tr)).setSelection(i),e}const Ag=new _("fix-tables");function qa(t,e,n,r){const s=t.childCount,i=e.childCount;e:for(let o=0,l=0;o{s.type.spec.tableRole=="table"&&(n=Ng(t,s,i,n))};return e?e.doc!=t.doc&&qa(e.doc,t.doc,0,r):t.doc.descendants(r),n}function Ng(t,e,n,r){const s=F.get(e);if(!s.problems)return r;r||(r=t.tr);const i=[];for(let a=0;a0){let f="cell";d.firstChild&&(f=d.firstChild.type.spec.tableRole);const p=[];for(let g=0;g0?-1:0;Sg(e,r,s+i)&&(i=s==0||s==e.width?null:0);for(let o=0;o0&&s0&&e.map[l-1]==a||s0?-1:0;Pg(e,r,s+l)&&(l=s==0||s==e.height?null:0);for(let c=0,d=e.width*s;c0&&s0&&u==e.map[d-e.width]){const h=n.nodeAt(u).attrs;t.setNodeMarkup(t.mapping.slice(l).map(u+r),null,{...h,rowspan:h.rowspan-1}),c+=h.colspan-1}else if(s0&&n[i]==n[i-1]||r.right0&&n[s]==n[s-t]||r.bottom0){const d=a+1+c.content.size,u=Yi(c)?a+1:d;i.replaceWith(u+r.tableStart,d+r.tableStart,l)}i.setSelection(new z(i.doc.resolve(a+r.tableStart))),e(i)}return!0}function Zi(t,e){const n=ee(t.schema);return Fg(({node:r})=>n[r.type.spec.tableRole])(t,e)}function Fg(t){return(e,n)=>{const r=e.selection;let s,i;if(r instanceof z){if(r.$anchorCell.pos!=r.$headCell.pos)return!1;s=r.$anchorCell.nodeAfter,i=r.$anchorCell.pos}else{var o;if(s=kg(r.$from),!s)return!1;i=(o=ut(r.$from))===null||o===void 0?void 0:o.pos}if(s==null||i==null||s.attrs.colspan==1&&s.attrs.rowspan==1)return!1;if(n){let l=s.attrs;const a=[],c=l.colwidth;l.rowspan>1&&(l={...l,rowspan:1}),l.colspan>1&&(l={...l,colspan:1});const d=Se(e),u=e.tr;for(let f=0;f{o.attrs[t]!==e&&i.setNodeMarkup(l,null,{...o.attrs,[t]:e})}):i.setNodeMarkup(s.pos,null,{...s.nodeAfter.attrs,[t]:e}),r(i)}return!0}}function _g(t){return function(e,n){if(!ye(e))return!1;if(n){const r=ee(e.schema),s=Se(e),i=e.tr,o=s.map.cellsInRect(t=="column"?{left:s.left,top:0,right:s.right,bottom:s.map.height}:t=="row"?{left:0,top:s.top,right:s.map.width,bottom:s.bottom}:s),l=o.map(a=>s.table.nodeAt(a));for(let a=0;a{const f=h+i.tableStart,p=o.doc.nodeAt(f);p&&o.setNodeMarkup(f,u,p.attrs)}),r(o)}return!0}}Jt("row",{useDeprecatedLogic:!0});Jt("column",{useDeprecatedLogic:!0});const Wg=Jt("cell",{useDeprecatedLogic:!0});function jg(t,e){if(e<0){const n=t.nodeBefore;if(n)return t.pos-n.nodeSize;for(let r=t.index(-1)-1,s=t.before();r>=0;r--){const i=t.node(-1).child(r),o=i.lastChild;if(o)return s-1-o.nodeSize;s-=i.nodeSize}}else{if(t.index()0;r--)if(n.node(r).type.spec.tableRole=="table")return e&&e(t.tr.delete(n.before(r),n.after(r)).scrollIntoView()),!0;return!1}function dn(t,e){const n=t.selection;if(!(n instanceof z))return!1;if(e){const r=t.tr,s=ee(t.schema).cell.createAndFill().content;n.forEachCell((i,o)=>{i.content.eq(s)||r.replace(r.mapping.map(o+1),r.mapping.map(o+i.nodeSize-1),new x(s,0,0))}),r.docChanged&&e(r)}return!0}function Kg(t){if(t.size===0)return null;let{content:e,openStart:n,openEnd:r}=t;for(;e.childCount==1&&(n>0&&r>0||e.child(0).type.spec.tableRole=="table");)n--,r--,e=e.child(0).content;const s=e.child(0),i=s.type.spec.tableRole,o=s.type.schema,l=[];if(i=="row")for(let a=0;a=0;o--){const{rowspan:l,colspan:a}=i.child(o).attrs;for(let c=s;c=e.length&&e.push(b.empty),n[s]r&&(h=h.type.createChecked(ht(h.attrs,h.attrs.colspan,d+h.attrs.colspan-r),h.content)),c.push(h),d+=h.attrs.colspan;for(let f=1;fs&&(u=u.type.create({...u.attrs,rowspan:Math.max(1,s-u.attrs.rowspan)},u.content)),a.push(u)}i.push(b.from(a))}n=i,e=s}return{width:t,height:e,rows:n}}function Xg(t,e,n,r,s,i,o){const l=t.doc.type.schema,a=ee(l);let c,d;if(s>e.width)for(let u=0,h=0;ue.height){const u=[];for(let p=0,m=(e.height-1)*e.width;p=e.width?!1:n.nodeAt(e.map[m+p]).type==a.header_cell;u.push(g?d||(d=a.header_cell.createAndFill()):c||(c=a.cell.createAndFill()))}const h=a.row.create(null,b.from(u)),f=[];for(let p=e.height;p{if(!s)return!1;const i=n.selection;if(i instanceof z)return kn(n,r,N.near(i.$headCell,e));if(t!="horiz"&&!i.empty)return!1;const o=Xa(s,t,e);if(o==null)return!1;if(t=="horiz")return kn(n,r,N.near(n.doc.resolve(i.head+e),e));{const l=n.doc.resolve(o),a=_a(l,t,e);let c;return a?c=N.near(a,1):e<0?c=N.near(n.doc.resolve(l.before(-1)),-1):c=N.near(n.doc.resolve(l.after(-1)),1),kn(n,r,c)}}}function hn(t,e){return(n,r,s)=>{if(!s)return!1;const i=n.selection;let o;if(i instanceof z)o=i;else{const a=Xa(s,t,e);if(a==null)return!1;o=new z(n.doc.resolve(a))}const l=_a(o.$headCell,t,e);return l?kn(n,r,new z(o.$anchorCell,l)):!1}}function Yg(t,e){const n=t.state.doc,r=ut(n.resolve(e));return r?(t.dispatch(t.state.tr.setSelection(new z(r))),!0):!1}function Qg(t,e,n){if(!ye(t.state))return!1;let r=Kg(n);const s=t.state.selection;if(s instanceof z){r||(r={width:1,height:1,rows:[b.from(jr(ee(t.state.schema).cell,n))]});const i=s.$anchorCell.node(-1),o=s.$anchorCell.start(-1),l=F.get(i).rectBetween(s.$anchorCell.pos-o,s.$headCell.pos-o);return r=Jg(r,l.right-l.left,l.bottom-l.top),so(t.state,t.dispatch,o,l,r),!0}else if(r){const i=Jn(t.state),o=i.start(-1);return so(t.state,t.dispatch,o,F.get(i.node(-1)).findCell(i.pos-o),r),!0}else return!1}function Zg(t,e){var n;if(e.button!=0||e.ctrlKey||e.metaKey)return;const r=io(t,e.target);let s;if(e.shiftKey&&t.state.selection instanceof z)i(t.state.selection.$anchorCell,e),e.preventDefault();else if(e.shiftKey&&r&&(s=ut(t.state.selection.$anchor))!=null&&((n=gr(t,e))===null||n===void 0?void 0:n.pos)!=s.pos)i(s,e),e.preventDefault();else if(!r)return;function i(a,c){let d=gr(t,c);const u=$e.getState(t.state)==null;if(!d||!Ns(a,d))if(u)d=a;else return;const h=new z(a,d);if(u||!t.state.selection.eq(h)){const f=t.state.tr.setSelection(h);u&&f.setMeta($e,a.pos),t.dispatch(f)}}function o(){t.root.removeEventListener("mouseup",o),t.root.removeEventListener("dragstart",o),t.root.removeEventListener("mousemove",l),$e.getState(t.state)!=null&&t.dispatch(t.state.tr.setMeta($e,-1))}function l(a){const c=a,d=$e.getState(t.state);let u;if(d!=null)u=t.state.doc.resolve(d);else if(io(t,c.target)!=r&&(u=gr(t,e),!u))return o();u&&i(u,c)}t.root.addEventListener("mouseup",o),t.root.addEventListener("dragstart",o),t.root.addEventListener("mousemove",l)}function Xa(t,e,n){if(!(t.state.selection instanceof E))return null;const{$head:r}=t.state.selection;for(let s=r.depth-1;s>=0;s--){const i=r.node(s);if((n<0?r.index(s):r.indexAfter(s))!=(n<0?0:i.childCount))return null;if(i.type.spec.tableRole=="cell"||i.type.spec.tableRole=="header_cell"){const o=r.before(s),l=e=="vert"?n>0?"down":"up":n>0?"right":"left";return t.endOfTextblock(l)?o:null}}return null}function io(t,e){for(;e&&e!=t.dom;e=e.parentNode)if(e.nodeName=="TD"||e.nodeName=="TH")return e;return null}function gr(t,e){const n=t.posAtCoords({left:e.clientX,top:e.clientY});if(!n)return null;let{inside:r,pos:s}=n;return r>=0&&ut(t.state.doc.resolve(r))||ut(t.state.doc.resolve(s))}var ey=class{constructor(e,n){this.node=e,this.defaultCellMinWidth=n,this.dom=document.createElement("div"),this.dom.className="tableWrapper",this.table=this.dom.appendChild(document.createElement("table")),this.table.style.setProperty("--default-cell-min-width",`${n}px`),this.colgroup=this.table.appendChild(document.createElement("colgroup")),qr(e,this.colgroup,this.table,n),this.contentDOM=this.table.appendChild(document.createElement("tbody"))}update(e){return e.type!=this.node.type?!1:(this.node=e,qr(e,this.colgroup,this.table,this.defaultCellMinWidth),!0)}ignoreMutation(e){return e.type=="attributes"&&(e.target==this.table||this.colgroup.contains(e.target))}};function qr(t,e,n,r,s,i){let o=0,l=!0,a=e.firstChild;const c=t.firstChild;if(c){for(let u=0,h=0;unew r(u,n,h)),new ny(-1,!1)},apply(o,l){return l.apply(o)}},props:{attributes:o=>{const l=oe.getState(o);return l&&l.activeHandle>-1?{class:"resize-cursor"}:{}},handleDOMEvents:{mousemove:(o,l)=>{ry(o,l,t,s)},mouseleave:o=>{sy(o)},mousedown:(o,l)=>{iy(o,l,e,n)}},decorations:o=>{const l=oe.getState(o);if(l&&l.activeHandle>-1)return dy(o,l.activeHandle)},nodeViews:{}}});return i}var ny=class wn{constructor(e,n){this.activeHandle=e,this.dragging=n}apply(e){const n=this,r=e.getMeta(oe);if(r&&r.setHandle!=null)return new wn(r.setHandle,!1);if(r&&r.setDragging!==void 0)return new wn(n.activeHandle,r.setDragging);if(n.activeHandle>-1&&e.docChanged){let s=e.mapping.map(n.activeHandle,-1);return Wr(e.doc.resolve(s))||(s=-1),new wn(s,n.dragging)}return n}};function ry(t,e,n,r){if(!t.editable)return;const s=oe.getState(t.state);if(s&&!s.dragging){const i=ly(e.target);let o=-1;if(i){const{left:l,right:a}=i.getBoundingClientRect();e.clientX-l<=n?o=oo(t,e,"left",n):a-e.clientX<=n&&(o=oo(t,e,"right",n))}if(o!=s.activeHandle){if(!r&&o!==-1){const l=t.state.doc.resolve(o),a=l.node(-1),c=F.get(a),d=l.start(-1);if(c.colCount(l.pos-d)+l.nodeAfter.attrs.colspan-1==c.width-1)return}Ga(t,o)}}}function sy(t){if(!t.editable)return;const e=oe.getState(t.state);e&&e.activeHandle>-1&&!e.dragging&&Ga(t,-1)}function iy(t,e,n,r){var s;if(!t.editable)return!1;const i=(s=t.dom.ownerDocument.defaultView)!==null&&s!==void 0?s:window,o=oe.getState(t.state);if(!o||o.activeHandle==-1||o.dragging)return!1;const l=t.state.doc.nodeAt(o.activeHandle),a=oy(t,o.activeHandle,l.attrs);t.dispatch(t.state.tr.setMeta(oe,{setDragging:{startX:e.clientX,startWidth:a}}));function c(u){i.removeEventListener("mouseup",c),i.removeEventListener("mousemove",d);const h=oe.getState(t.state);h!=null&&h.dragging&&(ay(t,h.activeHandle,lo(h.dragging,u,n)),t.dispatch(t.state.tr.setMeta(oe,{setDragging:null})))}function d(u){if(!u.which)return c(u);const h=oe.getState(t.state);if(h&&h.dragging){const f=lo(h.dragging,u,n);ao(t,h.activeHandle,f,r)}}return ao(t,o.activeHandle,a,r),i.addEventListener("mouseup",c),i.addEventListener("mousemove",d),e.preventDefault(),!0}function oy(t,e,{colspan:n,colwidth:r}){const s=r&&r[r.length-1];if(s)return s;const i=t.domAtPos(e);let o=i.node.childNodes[i.offset].offsetWidth,l=n;if(r)for(let a=0;a{var e,n;const r=t.getAttribute("colwidth"),s=r?r.split(",").map(i=>parseInt(i,10)):null;if(!s){const i=(e=t.closest("table"))==null?void 0:e.querySelectorAll("colgroup > col"),o=Array.from(((n=t.parentElement)==null?void 0:n.children)||[]).indexOf(t);if(o&&o>-1&&i&&i[o]){const l=i[o].getAttribute("width");return l?[parseInt(l,10)]:null}}return s}}}},tableRole:"cell",isolating:!0,parseHTML(){return[{tag:"td"}]},renderHTML({HTMLAttributes:t}){return["td",I(this.options.HTMLAttributes,t),0]}}),fy=X.create({name:"tableHeader",addOptions(){return{HTMLAttributes:{}}},content:"block+",addAttributes(){return{colspan:{default:1},rowspan:{default:1},colwidth:{default:null,parseHTML:t=>{const e=t.getAttribute("colwidth");return e?e.split(",").map(r=>parseInt(r,10)):null}}}},tableRole:"header_cell",isolating:!0,parseHTML(){return[{tag:"th"}]},renderHTML({HTMLAttributes:t}){return["th",I(this.options.HTMLAttributes,t),0]}}),py=X.create({name:"tableRow",addOptions(){return{HTMLAttributes:{}}},content:"(tableCell | tableHeader)*",tableRole:"row",parseHTML(){return[{tag:"tr"}]},renderHTML({HTMLAttributes:t}){return["tr",I(this.options.HTMLAttributes,t),0]}});function Kr(t,e){return e?["width",`${Math.max(e,t)}px`]:["min-width",`${t}px`]}function co(t,e,n,r,s,i){var o;let l=0,a=!0,c=e.firstChild;const d=t.firstChild;if(d!==null)for(let h=0,f=0;h{const r=t.nodes[n];r.spec.tableRole&&(e[r.spec.tableRole]=r)}),t.cached.tableNodeTypes=e,e}function by(t,e,n,r,s){const i=yy(t),o=[],l=[];for(let c=0;c{const{selection:e}=t.state;if(!ky(e))return!1;let n=0;const r=Gl(e.ranges[0].$from,i=>i.type.name==="table");return r==null||r.node.descendants(i=>{if(i.type.name==="table")return!1;["tableCell","tableHeader"].includes(i.type.name)&&(n+=1)}),n===e.ranges.length?(t.commands.deleteTable(),!0):!1},wy="";function xy(t){return(t||"").replace(/\s+/g," ").trim()}function Sy(t,e,n={}){var r;const s=(r=n.cellLineSeparator)!=null?r:wy;if(!t||!t.content||t.content.length===0)return"";const i=[];t.content.forEach(p=>{const m=[];p.content&&p.content.forEach(g=>{let y="";g.content&&Array.isArray(g.content)&&g.content.length>1?y=g.content.map(C=>e.renderChildren(C)).join(s):y=g.content?e.renderChildren(g.content):"";const k=xy(y),w=g.type==="tableHeader";m.push({text:k,isHeader:w})}),i.push(m)});const o=i.reduce((p,m)=>Math.max(p,m.length),0);if(o===0)return"";const l=new Array(o).fill(0);i.forEach(p=>{var m;for(let g=0;gl[g]&&(l[g]=k),l[g]<3&&(l[g]=3)}});const a=(p,m)=>p+" ".repeat(Math.max(0,m-p.length)),c=i[0],d=c.some(p=>p.isHeader);let u=` +`;const h=new Array(o).fill(0).map((p,m)=>d&&c[m]&&c[m].text||"");return u+=`| ${h.map((p,m)=>a(p,l[m])).join(" | ")} | +`,u+=`| ${l.map(p=>"-".repeat(Math.max(3,p))).join(" | ")} | +`,(d?i.slice(1):i).forEach(p=>{u+=`| ${new Array(o).fill(0).map((m,g)=>a(p[g]&&p[g].text||"",l[g])).join(" | ")} | +`}),u}var Cy=Sy,My=X.create({name:"table",addOptions(){return{HTMLAttributes:{},resizable:!1,renderWrapper:!1,handleWidth:5,cellMinWidth:25,View:my,lastColumnResizable:!0,allowTableNodeSelection:!1}},content:"tableRow+",tableRole:"table",isolating:!0,group:"block",parseHTML(){return[{tag:"table"}]},renderHTML({node:t,HTMLAttributes:e}){const{colgroup:n,tableWidth:r,tableMinWidth:s}=gy(t,this.options.cellMinWidth),i=e.style;function o(){return i||(r?`width: ${r}`:`min-width: ${s}`)}const l=["table",I(this.options.HTMLAttributes,e,{style:o()}),n,["tbody",0]];return this.options.renderWrapper?["div",{class:"tableWrapper"},l]:l},parseMarkdown:(t,e)=>{const n=[];if(t.header){const r=[];t.header.forEach(s=>{r.push(e.createNode("tableHeader",{},[{type:"paragraph",content:e.parseInline(s.tokens)}]))}),n.push(e.createNode("tableRow",{},r))}return t.rows&&t.rows.forEach(r=>{const s=[];r.forEach(i=>{s.push(e.createNode("tableCell",{},[{type:"paragraph",content:e.parseInline(i.tokens)}]))}),n.push(e.createNode("tableRow",{},s))}),e.createNode("table",void 0,n)},renderMarkdown:(t,e)=>Cy(t,e),addCommands(){return{insertTable:({rows:t=3,cols:e=3,withHeaderRow:n=!0}={})=>({tr:r,dispatch:s,editor:i})=>{const o=by(i.schema,t,e,n);if(s){const l=r.selection.from+1;r.replaceSelectionWith(o).scrollIntoView().setSelection(E.near(r.doc.resolve(l)))}return!0},addColumnBefore:()=>({state:t,dispatch:e})=>Og(t,e),addColumnAfter:()=>({state:t,dispatch:e})=>Rg(t,e),deleteColumn:()=>({state:t,dispatch:e})=>Ig(t,e),addRowBefore:()=>({state:t,dispatch:e})=>Lg(t,e),addRowAfter:()=>({state:t,dispatch:e})=>zg(t,e),deleteRow:()=>({state:t,dispatch:e})=>$g(t,e),deleteTable:()=>({state:t,dispatch:e})=>qg(t,e),mergeCells:()=>({state:t,dispatch:e})=>Qi(t,e),splitCell:()=>({state:t,dispatch:e})=>Zi(t,e),toggleHeaderColumn:()=>({state:t,dispatch:e})=>Jt("column")(t,e),toggleHeaderRow:()=>({state:t,dispatch:e})=>Jt("row")(t,e),toggleHeaderCell:()=>({state:t,dispatch:e})=>Wg(t,e),mergeOrSplit:()=>({state:t,dispatch:e})=>Qi(t,e)?!0:Zi(t,e),setCellAttribute:(t,e)=>({state:n,dispatch:r})=>Vg(t,e)(n,r),goToNextCell:()=>({state:t,dispatch:e})=>to(1)(t,e),goToPreviousCell:()=>({state:t,dispatch:e})=>to(-1)(t,e),fixTables:()=>({state:t,dispatch:e})=>(e&&Ka(t),!0),setCellSelection:t=>({tr:e,dispatch:n})=>{if(n){const r=z.create(e.doc,t.anchorCell,t.headCell);e.setSelection(r)}return!0}}},addKeyboardShortcuts(){return{Tab:()=>this.editor.commands.goToNextCell()?!0:this.editor.can().addRowAfter()?this.editor.chain().addRowAfter().goToNextCell().run():!1,"Shift-Tab":()=>this.editor.commands.goToPreviousCell(),Backspace:fn,"Mod-Backspace":fn,Delete:fn,"Mod-Delete":fn}},addProseMirrorPlugins(){return[...this.options.resizable&&this.editor.isEditable?[ty({handleWidth:this.options.handleWidth,cellMinWidth:this.options.cellMinWidth,defaultCellMinWidth:this.options.cellMinWidth,View:this.options.View,lastColumnResizable:this.options.lastColumnResizable})]:[],uy({allowTableNodeSelection:this.options.allowTableNodeSelection})]},extendNodeSchema(t){const e={name:t.name,options:t.options,storage:t.storage};return{tableRole:D(M(t,"tableRole",e))}}}),Gy=$.create({name:"tableKit",addExtensions(){const t=[];return this.options.table!==!1&&t.push(My.configure(this.options.table)),this.options.tableCell!==!1&&t.push(hy.configure(this.options.tableCell)),this.options.tableHeader!==!1&&t.push(fy.configure(this.options.tableHeader)),this.options.tableRow!==!1&&t.push(py.configure(this.options.tableRow)),t}});function vy(t,e){const r=e.split(` +`).flatMap(s=>[s,""]).map(s=>`${t}${s}`).join(` +`);return r.slice(0,r.length-1)}function Ty(t,e){const n=[];return Array.from(t.keys()).forEach(r=>{(!e||!e.marks||!e.marks.map(s=>s.type).includes(r))&&n.push(r)}),n}function Ey(t,e){const n=[];return Array.from(e.entries()).forEach(([r,s])=>{t.has(r)||n.push({type:r,mark:s})}),n}function Ay(t,e,n,r){const s=!n,i=n&&n.type==="text"&&(!n.marks||n.marks.length===0),o=n&&n.type==="text"&&n.marks&&!r(e,new Map(n.marks.map(a=>[a.type,a]))),l=[];if(s||i||o)if(n&&n.type==="text"&&n.marks){const a=new Map(n.marks.map(c=>[c.type,c]));Array.from(t.keys()).forEach(c=>{a.has(c)||l.push(c)})}else(s||i)&&l.push(...Array.from(t.keys()));return l}function Ny(t,e){let n="";return Array.from(t.keys()).reverse().forEach(r=>{const s=t.get(r),i=e(r,s);i&&(n=i+n)}),t.clear(),n}function Oy(t,e,n){let r="";return Array.from(t.entries()).forEach(([s,i])=>{const o=n(s,i);o&&(r+=o),e.set(s,i)}),r}function yr(t){const n=(t.raw||t.text||"").match(/^(\s*)[-+*]\s+\[([ xX])\]\s+/);return n?{isTask:!0,checked:n[2].toLowerCase()==="x",indentLevel:n[1].length}:{isTask:!1,indentLevel:0}}function pn(t,e){return typeof t!="string"?"json":e}var Ry=class{constructor(t){this.baseExtensions=[],this.extensions=[],this.lastParseResult=null;var e,n,r,s,i;this.markedInstance=(e=t==null?void 0:t.marked)!=null?e:ic,this.lexer=new this.markedInstance.Lexer,this.indentStyle=(r=(n=t==null?void 0:t.indentation)==null?void 0:n.style)!=null?r:"space",this.indentSize=(i=(s=t==null?void 0:t.indentation)==null?void 0:s.size)!=null?i:2,this.baseExtensions=(t==null?void 0:t.extensions)||[],t!=null&&t.markedOptions&&typeof this.markedInstance.setOptions=="function"&&this.markedInstance.setOptions(t.markedOptions),this.registry=new Map,this.nodeTypeRegistry=new Map,t!=null&&t.extensions&&(this.baseExtensions=t.extensions,qn(t.extensions).forEach(l=>this.registerExtension(l,!1))),this.lexer=new this.markedInstance.Lexer}get instance(){return this.markedInstance}get indentCharacter(){return this.indentStyle==="space"?" ":" "}get indentString(){return this.indentCharacter.repeat(this.indentSize)}hasMarked(){return!!this.markedInstance}registerExtension(t,e=!0){var n,r;this.extensions.push(t);const s=t.name,i=M(t,"markdownTokenName")||s,o=M(t,"parseMarkdown"),l=M(t,"renderMarkdown"),a=M(t,"markdownTokenizer"),c=(n=M(t,"markdownOptions"))!=null?n:null,d=(r=c==null?void 0:c.indentsContent)!=null?r:!1,u={tokenName:i,nodeName:s,parseMarkdown:o,renderMarkdown:l,isIndenting:d,tokenizer:a};if(i&&o){const h=this.registry.get(i)||[];h.push(u),this.registry.set(i,h)}if(l){const h=this.nodeTypeRegistry.get(s)||[];h.push(u),this.nodeTypeRegistry.set(s,h)}a&&this.hasMarked()&&(this.registerTokenizer(a),e&&(this.lexer=new this.markedInstance.Lexer))}registerTokenizer(t){if(!this.hasMarked())return;const{name:e,start:n,level:r="inline",tokenize:s}=t,l={inlineTokens:d=>this.lexer.inlineTokens(d),blockTokens:d=>this.lexer.blockTokens(d)};let a;n?a=typeof n=="function"?n:d=>d.indexOf(n):a=d=>{const u=s(d,[],l);return u&&u.raw?d.indexOf(u.raw):-1};const c={name:e,level:r,start:a,tokenizer:(d,u)=>{const h=s(d,u,l);if(h&&h.type)return{...h,type:h.type||e,raw:h.raw||"",tokens:h.tokens||[]}},childTokens:[]};this.markedInstance.use({extensions:[c]})}getHandlersForToken(t){try{return this.registry.get(t)||[]}catch{return[]}}getHandlerForToken(t){const e=this.getHandlersForToken(t);if(e.length>0)return e[0];const n=this.getHandlersForNodeType(t);return n.length>0?n[0]:void 0}getHandlersForNodeType(t){try{return this.nodeTypeRegistry.get(t)||[]}catch{return[]}}serialize(t){return t?Array.isArray(t)?this.renderNodes(t,t):this.renderNodes(t,t):""}parse(t){if(!this.hasMarked())throw new Error("No marked instance available for parsing");const e=this.markedInstance.lexer(t);return{type:"doc",content:this.parseTokens(e)}}parseTokens(t){return t.map(e=>this.parseToken(e)).filter(e=>e!==null).flatMap(e=>Array.isArray(e)?e:[e])}parseToken(t){if(!t.type)return null;if(t.type==="list")return this.parseListToken(t);const e=this.getHandlersForToken(t.type),n=this.createParseHelpers();if(e.find(s=>{if(!s.parseMarkdown)return!1;const i=s.parseMarkdown(t,n),o=this.normalizeParseResult(i);return o&&(!Array.isArray(o)||o.length>0)?(this.lastParseResult=o,!0):!1})&&this.lastParseResult){const s=this.lastParseResult;return this.lastParseResult=null,s}return this.parseFallbackToken(t)}parseListToken(t){if(!t.items||t.items.length===0)return this.parseTokenWithHandlers(t);const e=t.items.some(l=>yr(l).isTask),n=t.items.some(l=>!yr(l).isTask);if(!e||!n||this.getHandlersForToken("taskList").length===0)return this.parseTokenWithHandlers(t);const r=[];let s=[],i=null;for(let l=0;l1&&m.slice(1).join(` +`).trim()){const S=m.slice(1),C=S.filter(A=>A.trim());if(C.length>0){const A=Math.min(...C.map(R=>R.length-R.trimStart().length)),O=S.map(R=>R.trim()?R.slice(A):"").join(` +`).trim();O&&(k=this.markedInstance.lexer(`${O} +`))}}h={type:"taskItem",raw:"",mainContent:y,indentLevel:u,checked:d??!1,text:y,tokens:this.lexer.inlineTokens(y),nestedTokens:k}}const f=c?"taskList":"list";i!==f?(s.length>0&&r.push({type:i,items:s}),s=[h],i=f):s.push(h)}s.length>0&&r.push({type:i,items:s});const o=[];for(let l=0;l0?o:null}parseTokenWithHandlers(t){if(!t.type)return null;const e=this.getHandlersForToken(t.type),n=this.createParseHelpers();if(e.find(s=>{if(!s.parseMarkdown)return!1;const i=s.parseMarkdown(t,n),o=this.normalizeParseResult(i);return o&&(!Array.isArray(o)||o.length>0)?(this.lastParseResult=o,!0):!1})&&this.lastParseResult){const s=this.lastParseResult;return this.lastParseResult=null,s}return this.parseFallbackToken(t)}createParseHelpers(){return{parseInline:t=>this.parseInlineTokens(t),parseChildren:t=>this.parseTokens(t),createTextNode:(t,e)=>({type:"text",text:t,marks:e||void 0}),createNode:(t,e,n)=>{const r={type:t,attrs:e||void 0,content:n||void 0};return(!e||Object.keys(e).length===0)&&delete r.attrs,r},applyMark:(t,e,n)=>({mark:t,content:e,attrs:n&&Object.keys(n).length>0?n:void 0})}}escapeRegex(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}parseInlineTokens(t){var e,n,r,s;const i=[];for(let o=0;o|\/|$)/i);if(!c&&d&&!/\/>$/.test(a)){const h=d[1],f=this.escapeRegex(h),p=new RegExp(`^<\\/\\s*${f}\\b`,"i");let m=-1;const g=[a];for(let y=o+1;y{if(r.type==="text"){const s=r.marks||[],i=n?{type:t,attrs:n}:{type:t};return{...r,marks:[...s,i]}}return{...r,content:r.content?this.applyMarkToContent(t,r.content,n):void 0}})}isMarkResult(t){return t&&typeof t=="object"&&"mark"in t}normalizeParseResult(t){return t?this.isMarkResult(t)?t.content:t:null}parseFallbackToken(t){switch(t.type){case"paragraph":return{type:"paragraph",content:t.tokens?this.parseInlineTokens(t.tokens):[]};case"heading":return{type:"heading",attrs:{level:t.depth||1},content:t.tokens?this.parseInlineTokens(t.tokens):[]};case"text":return{type:"text",text:t.text||""};case"html":return this.parseHTMLToken(t);case"space":return null;default:return t.tokens?this.parseTokens(t.tokens):null}}parseHTMLToken(t){const e=t.text||t.raw||"";if(!e.trim())return null;if(typeof window>"u")return t.block?{type:"paragraph",content:[{type:"text",text:e}]}:{type:"text",text:e};try{const n=sf(e,this.baseExtensions);return n.type==="doc"&&n.content?t.block?n.content:n.content.length===1&&n.content[0].type==="paragraph"&&n.content[0].content?n.content[0].content:n.content:n}catch(n){throw new Error(`Failed to parse HTML in markdown: ${n}`)}}renderNodeToMarkdown(t,e,n=0,r=0){var s;if(t.type==="text")return t.text||"";if(!t.type)return"";const i=this.getHandlerForToken(t.type);if(!i)return"";const o={renderChildren:(c,d)=>{const u=i.isIndenting?r+1:r;return!Array.isArray(c)&&c.content?this.renderNodes(c.content,t,d||"",n,u):this.renderNodes(c,t,d||"",n,u)},indent:c=>this.indentString+c,wrapInBlock:vy},l={index:n,level:r,parentType:e==null?void 0:e.type,meta:{parentAttrs:e==null?void 0:e.attrs}};return((s=i.renderMarkdown)==null?void 0:s.call(i,t,o,l))||""}renderNodes(t,e,n="",r=0,s=0){return Array.isArray(t)?this.renderNodesWithMarkBoundaries(t,e,n,s):t.type?this.renderNodeToMarkdown(t,e,r,s):""}renderNodesWithMarkBoundaries(t,e,n="",r=0){const s=[],i=new Map;return t.forEach((o,l)=>{const a=l[y.type,y])),u=Ey(i,d),h=Ty(d,a);let f="";if(h.length>0){const y=c.match(/(\s+)$/);y&&(f=y[1],c=c.slice(0,-f.length))}h.forEach(y=>{const k=d.get(y),w=this.getMarkClosing(y,k);w&&(c+=w),i.has(y)&&i.delete(y)});let p="";if(u.length>0){const y=c.match(/^(\s+)/);y&&(p=y[1],c=c.slice(p.length))}u.forEach(({type:y,mark:k})=>{const w=this.getMarkOpening(y,k);w&&(c=w+c),h.includes(y)||i.set(y,k)}),c=p+c;const m=Ay(i,d,a,this.markSetsEqual.bind(this));let g="";if(m.length>0){const y=c.match(/(\s+)$/);y&&(g=y[1],c=c.slice(0,-g.length))}m.forEach(y=>{const k=i.get(y),w=this.getMarkClosing(y,k);w&&(c+=w),i.delete(y)}),c+=g,c+=f,s.push(c)}else{const c=new Map(i),d=Ny(i,this.getMarkClosing.bind(this)),u=this.renderNodeToMarkdown(o,e,l,r),h=o.type==="hardBreak"?"":Oy(c,i,this.getMarkOpening.bind(this));s.push(d+u+h)}}),s.join(n)}getMarkOpening(t,e){const n=this.getHandlersForNodeType(t),r=n.length>0?n[0]:void 0;if(!r||!r.renderMarkdown)return"";const s="__TIPTAP_MARKDOWN_PLACEHOLDER__",i={type:t,attrs:e.attrs||{},content:[{type:"text",text:s}]};try{const o=r.renderMarkdown(i,{renderChildren:()=>s,indent:a=>a,wrapInBlock:(a,c)=>a+c},{index:0,level:0,parentType:"text",meta:{}}),l=o.indexOf(s);return l>=0?o.substring(0,l):""}catch(o){throw new Error(`Failed to get mark opening for ${t}: ${o}`)}}getMarkClosing(t,e){const n=this.getHandlersForNodeType(t),r=n.length>0?n[0]:void 0;if(!r||!r.renderMarkdown)return"";const s="__TIPTAP_MARKDOWN_PLACEHOLDER__",i={type:t,attrs:e.attrs||{},content:[{type:"text",text:s}]};try{const o=r.renderMarkdown(i,{renderChildren:()=>s,indent:c=>c,wrapInBlock:(c,d)=>c+d},{index:0,level:0,parentType:"text",meta:{}}),l=o.indexOf(s),a=l+s.length;return l>=0?o.substring(a):""}catch(o){throw new Error(`Failed to get mark closing for ${t}: ${o}`)}}markSetsEqual(t,e){return t.size!==e.size?!1:Array.from(t.keys()).every(n=>e.has(n))}},ho=Ry,Yy=$.create({name:"markdown",addOptions(){return{indentation:{style:"space",size:2},marked:void 0,markedOptions:{}}},addCommands(){return{setContent:(t,e)=>{if(!(e!=null&&e.contentType)||pn(t,e==null?void 0:e.contentType)!=="markdown"||!this.editor.markdown)return fe.setContent(t,e);const r=this.editor.markdown.parse(t);return fe.setContent(r,e)},insertContent:(t,e)=>{if(!(e!=null&&e.contentType)||pn(t,e==null?void 0:e.contentType)!=="markdown"||!this.editor.markdown)return fe.insertContent(t,e);const r=this.editor.markdown.parse(t);return fe.insertContent(r,e)},insertContentAt:(t,e,n)=>{if(!(n!=null&&n.contentType)||pn(e,n==null?void 0:n.contentType)!=="markdown"||!this.editor.markdown)return fe.insertContentAt(t,e,n);const s=this.editor.markdown.parse(e);return fe.insertContentAt(t,s,n)}}},addStorage(){return{manager:new ho({indentation:this.options.indentation,marked:this.options.marked,markedOptions:this.options.markedOptions,extensions:[]})}},onBeforeCreate(){if(this.editor.markdown){console.error("[tiptap][markdown]: There is already a `markdown` property on the editor instance. This might lead to unexpected behavior.");return}if(this.storage.manager=new ho({indentation:this.options.indentation,marked:this.options.marked,markedOptions:this.options.markedOptions,extensions:this.editor.extensionManager.baseExtensions}),this.editor.markdown=this.storage.manager,this.editor.getMarkdown=()=>this.storage.manager.serialize(this.editor.getJSON()),!this.editor.options.contentType||pn(this.editor.options.content,this.editor.options.contentType)!=="markdown")return;if(!this.editor.markdown)throw new Error('[tiptap][markdown]: The `contentType` option is set to "markdown", but the Markdown extension is not added to the editor. Please add the Markdown extension to use this feature.');if(this.editor.options.content===void 0||typeof this.editor.options.content!="string")throw new Error('[tiptap][markdown]: The `contentType` option is set to "markdown", but the initial content is not a string. Please provide the initial content as a markdown string.');const e=this.editor.markdown.parse(this.editor.options.content);this.editor.options.content=e}}),Dy=/(?:^|\s)(!\[(.+|:?)]\((\S+)(?:(?:\s+)["'](\S+)["'])?\))$/,Iy=X.create({name:"image",addOptions(){return{inline:!1,allowBase64:!1,HTMLAttributes:{},resize:!1}},inline(){return this.options.inline},group(){return this.options.inline?"inline":"block"},draggable:!0,addAttributes(){return{src:{default:null},alt:{default:null},title:{default:null},width:{default:null},height:{default:null}}},parseHTML(){return[{tag:this.options.allowBase64?"img[src]":'img[src]:not([src^="data:"])'}]},renderHTML({HTMLAttributes:t}){return["img",I(this.options.HTMLAttributes,t)]},parseMarkdown:(t,e)=>e.createNode("image",{src:t.href,title:t.title,alt:t.text}),renderMarkdown:t=>{var e,n,r,s,i,o;const l=(n=(e=t.attrs)==null?void 0:e.src)!=null?n:"",a=(s=(r=t.attrs)==null?void 0:r.alt)!=null?s:"",c=(o=(i=t.attrs)==null?void 0:i.title)!=null?o:"";return c?`![${a}](${l} "${c}")`:`![${a}](${l})`},addNodeView(){if(!this.options.resize||!this.options.resize.enabled||typeof document>"u")return null;const{directions:t,minWidth:e,minHeight:n,alwaysPreserveAspectRatio:r}=this.options.resize;return({node:s,getPos:i,HTMLAttributes:o,editor:l})=>{const a=document.createElement("img");Object.entries(o).forEach(([u,h])=>{if(h!=null)switch(u){case"width":case"height":break;default:a.setAttribute(u,h);break}}),a.src=o.src;const c=new ep({element:a,editor:l,node:s,getPos:i,onResize:(u,h)=>{a.style.width=`${u}px`,a.style.height=`${h}px`},onCommit:(u,h)=>{const f=i();f!==void 0&&this.editor.chain().setNodeSelection(f).updateAttributes(this.name,{width:u,height:h}).run()},onUpdate:(u,h,f)=>u.type===s.type,options:{directions:t,min:{width:e,height:n},preserveAspectRatio:r===!0}}),d=c.dom;return d.style.visibility="hidden",d.style.pointerEvents="none",a.onload=()=>{d.style.visibility="",d.style.pointerEvents=""},c}},addCommands(){return{setImage:t=>({commands:e})=>e.insertContent({type:this.name,attrs:t})}},addInputRules(){return[xa({find:Dy,type:this.type,getAttributes:t=>{const[,,e,n,r]=t;return{src:n,alt:e,title:r}}})]}}),Qy=Iy;export{le as A,Ms as E,Ky as H,Yy as M,T as N,Fy as R,N as S,E as T,Hy as a,X as b,Vy as c,bp as d,By as e,Wy as f,Gy as g,jy as h,Qy as i,mm as j,pm as k,qy as l,I as m,Jy as n,Uy as o,_y as p,mp as q,$y as u}; diff --git a/axhub-make/admin/assets/chunks/vendor-excalidraw.js b/axhub-make/admin/assets/chunks/vendor-excalidraw.js new file mode 100644 index 0000000..5b31a91 --- /dev/null +++ b/axhub-make/admin/assets/chunks/vendor-excalidraw.js @@ -0,0 +1,581 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/vendor-common.js","assets/chunks/vendor-react.js","assets/chunks/_commonjsHelpers.js","assets/chunks/preload-helper.js","assets/chunks/_commonjs-dynamic-modules.js"])))=>i.map(i=>d[i]); +import{_ as sA}from"./preload-helper.js?v=1775123024591";import{j as a,R as QA,r as f,a as k0}from"./vendor-react.js?v=1775123024591";import{a6 as RZ,a7 as Xu,a8 as MZ,g as WE,a9 as tA,aa as fZ,ab as YZ,ac as HZ,ad as TC,ae as KZ,af as JZ,ag as wQ,ah as vZ,ai as ZZ,aj as qZ,ak as ul,al as el,am as WZ,an as Ni,ao as jZ,ap as TZ,aq as Cl,ar as zZ,as as u0,at as PZ,au as hQ,av as Bl,aw as Si,ax as OZ,ay as Ri,az as VZ,aA as gl,aB as El,aC as Il,aD as il,aE as pe,aF as IC,aG as Ya}from"./vendor-common.js?v=1775123024591";var bA={VITE_APP_BACKEND_V2_GET_URL:"https://json.excalidraw.com/api/v2/",VITE_APP_BACKEND_V2_POST_URL:"https://json.excalidraw.com/api/v2/post/",VITE_APP_LIBRARY_URL:"https://libraries.excalidraw.com",VITE_APP_LIBRARY_BACKEND:"https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries",VITE_APP_PLUS_LP:"https://plus.excalidraw.com",VITE_APP_PLUS_APP:"https://app.excalidraw.com",VITE_APP_AI_BACKEND:"https://oss-ai.excalidraw.com",VITE_APP_WS_SERVER_URL:"https://oss-collab.excalidraw.com",VITE_APP_FIREBASE_CONFIG:'{"apiKey":"AIzaSyAd15pYlMci_xIp9ko6wkEsDzAAA0Dn0RU","authDomain":"excalidraw-room-persistence.firebaseapp.com","databaseURL":"https://excalidraw-room-persistence.firebaseio.com","projectId":"excalidraw-room-persistence","storageBucket":"excalidraw-room-persistence.appspot.com","messagingSenderId":"654800341332","appId":"1:654800341332:web:4a692de832b55bd57ce0c1"}',VITE_APP_ENABLE_TRACKING:"false",VITE_APP_PLUS_EXPORT_PUBLIC_KEY:`MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApQ0jM9Qz8TdFLzcuAZZX +/WvuKSOJxiw6AR/ZcE3eFQWM/mbFdhQgyK8eHGkKQifKzH1xUZjCxyXcxW6ZO02t +kPOPxhz+nxUrIoWCD/V4NGmUA1lxwHuO21HN1gzKrN3xHg5EGjyouR9vibT9VDGF +gq6+4Ic/kJX+AD2MM7Yre2+FsOdysrmuW2Fu3ahuC1uQE7pOe1j0k7auNP0y1q53 +PrB8Ts2LUpepWC1l7zIXFm4ViDULuyWXTEpUcHSsEH8vpd1tckjypxCwkipfZsXx +iPszy0o0Dx2iArPfWMXlFAI9mvyFCyFC3+nSvfyAUb2C4uZgCwAuyFh/ydPF4DEE +PQIDAQAB`,VITE_APP_DEBUG_ENABLE_TEXT_CONTAINER_BOUNDING_BOX:"false",VITE_APP_COLLAPSE_OVERLAY:"false",VITE_APP_ENABLE_ESLINT:"false",PKG_NAME:"@excalidraw/excalidraw",PKG_VERSION:"0.18.0",PROD:!0},al=Object.defineProperty,XZ=(A,u,e)=>u in A?al(A,u,{enumerable:!0,configurable:!0,writable:!0,value:e}):A[u]=e,Wr=(A=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(A,{get:(u,e)=>(typeof require<"u"?require:u)[e]}):A)(function(A){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+A+'" is not supported')}),_Z=A=>u=>{var e=A[u];if(e)return e();throw new Error("Module not found in bundle: "+u)},tl=(A,u)=>{for(var e in u)al(A,e,{get:u[e],enumerable:!0})},S=(A,u,e)=>(XZ(A,typeof u!="symbol"?u+"":u,e),e),$Z=(A,u)=>u.reduce((e,C)=>(C in A&&(e[C]=A[C]),e),{}),Aq=5,jB=5,uq=4,_g=4,$g=1,ee=[0,2,4,6,8],Ce=(A,u)=>u.map(e=>Xu[A][e]),SA={transparent:"transparent",black:"#1e1e1e",white:"#ffffff",gray:Ce("gray",ee),red:Ce("red",ee),pink:Ce("pink",ee),grape:Ce("grape",ee),violet:Ce("violet",ee),blue:Ce("blue",ee),cyan:Ce("cyan",ee),teal:Ce("teal",ee),green:Ce("green",ee),yellow:Ce("yellow",ee),orange:Ce("orange",ee),bronze:["#f8f1ee","#eaddd7","#d2bab0","#a18072","#846358"]},Ql=$Z(SA,["cyan","blue","violet","grape","pink","green","teal","yellow","orange","red"]),ol=[SA.black,SA.red[_g],SA.green[_g],SA.blue[_g],SA.yellow[_g]],rl=[SA.transparent,SA.red[$g],SA.green[$g],SA.blue[$g],SA.yellow[$g]],sl=[SA.white,"#f8f9fa","#f5faff","#fffce8","#fdf8f6"],eq={transparent:SA.transparent,white:SA.white,gray:SA.gray,black:SA.black,bronze:SA.bronze,...Ql},Cq={transparent:SA.transparent,white:SA.white,gray:SA.gray,black:SA.black,bronze:SA.bronze,...Ql},Bq=A=>[SA.cyan[A],SA.blue[A],SA.violet[A],SA.grape[A],SA.pink[A],SA.green[A],SA.teal[A],SA.yellow[A],SA.orange[A],SA.red[A]],gq=(A,u,e)=>`#${((1<<24)+(A<<16)+(u<<8)+e).toString(16).slice(1)}`,Ye=/Mac|iPod|iPhone|iPad/.test(navigator.platform),nl=/^Win/.test(navigator.platform),Eq=/\b(android)\b/i.test(navigator.userAgent),pE="netscape"in window&&navigator.userAgent.indexOf("rv:")>1&&navigator.userAgent.indexOf("Gecko")>1,Iq=navigator.userAgent.indexOf("Chrome")!==-1,iq=!Iq&&navigator.userAgent.indexOf("Safari")!==-1,ll=/iPad|iPhone/.test(navigator.platform)||navigator.userAgent.includes("Mac")&&"ontouchend"in document,aq=()=>{var A,u;return((u=(A=navigator.brave)==null?void 0:A.isBrave)==null?void 0:u.name)==="isBrave"},mt=typeof window<"u"&&"ResizeObserver"in window,tq="Excalidraw",Qq=36,eB=10,GI=8,oq=5,jr=1,rq=30,ZC=Math.PI/12,sq="red",VA={TEXT:"text",CROSSHAIR:"crosshair",GRABBING:"grabbing",GRAB:"grab",POINTER:"pointer",MOVE:"move",AUTO:""},NC={MAIN:0,WHEEL:1,SECONDARY:2,TOUCH:-1,ERASER:5},KB={enabled:"all",disabled:"none"},oI={UNSTARTED:-1,ENDED:0,PLAYING:1,PAUSED:2,BUFFERING:3,CUED:5},G0={TEST:"test"},Ig={SHAPE_ACTIONS_MENU:"App-menu__left",ZOOM_ACTIONS:"zoom-actions",SEARCH_MENU_INPUT_WRAPPER:"layer-ui__search-inputWrapper"},zB="Xiaolai",mE="Segoe UI Emoji",wu={Virgil:1,Helvetica:2,Cascadia:3,Excalifont:5,Nunito:6,"Lilita One":7,"Comic Shanns":8,"Liberation Sans":9},PB={[zB]:100,[mE]:1e3},Dl=A=>{switch(A){case wu.Excalifont:return[zB,mE];default:return[mE]}},fA={LIGHT:"light",DARK:"dark"},hu={strokeColor:"#bbb",strokeWidth:2,strokeStyle:"solid",fillStyle:"solid",roughness:0,roundness:null,backgroundColor:"transparent",radius:8,nameOffsetY:3,nameColorLightTheme:"#999999",nameColorDarkTheme:"#7a7a7a",nameFontSize:14,nameLineHeight:1.25},FQ=1,dC=20,zC=wu.Excalifont,jE="left",PI="top",wB=2,OI=2*wB,nq=1e-5,lq=2*OI-nq,rI="#ffffff",Dq="#1e1e1e",cq="#a2f1a6",VI=20,cl=5,ig={svg:"image/svg+xml",png:"image/png",jpg:"image/jpeg",gif:"image/gif",webp:"image/webp",bmp:"image/bmp",ico:"image/x-icon",avif:"image/avif",jfif:"image/jfif"},cA={text:"text/plain",html:"text/html",json:"application/json",excalidraw:"application/vnd.excalidraw+json",excalidrawlib:"application/vnd.excalidrawlib+json","excalidraw.svg":"image/svg+xml","excalidraw.png":"image/png",binary:"application/octet-stream",...ig},dq=[cA.text,cA.html,...Object.values(ig)],Ha={png:"png",svg:"svg",clipboard:"clipboard"},j0={excalidraw:"excalidraw",excalidrawClipboard:"excalidraw/clipboard",excalidrawLibrary:"excalidrawlib",excalidrawClipboardWithAPI:"excalidraw-api/clipboard"},pQ=window.EXCALIDRAW_EXPORT_SOURCE||window.location.origin,wq=500,hq=300,Fq=500,pq=100,Mi=.1,mQ=.1,kQ=30,mq=300,yQ="invert(93%) hue-rotate(180deg)",Tr={canvasActions:{changeViewBackgroundColor:!0,clearCanvas:!0,export:{saveFileToDisk:!0},loadScene:!0,saveToActiveFile:!0,toggleTheme:null,saveAsImage:!0}},kq=730,yq=1e3,bq=500,Gq=1229,Zg=2,bQ=[1,2,3],kg=10,Uq=1440,zr=4*1024*1024,vA="http://www.w3.org/2000/svg",fi={excalidraw:2,excalidrawLibrary:2},Ku=5,Lq=.7,xq=11,R0={TOP:"top",MIDDLE:"middle",BOTTOM:"bottom"},kE={LEFT:"left",CENTER:"center",RIGHT:"right"},Nq=20,Ka=.25,Sq=32,Ju={LEGACY:1,PROPORTIONAL_RADIUS:2,ADAPTIVE_RADIUS:3},dl={artist:1,cartoonist:2},Ja={thin:1,bold:2,extraBold:4},ku={strokeColor:SA.black,backgroundColor:SA.transparent,fillStyle:"solid",strokeWidth:2,strokeStyle:"solid",roughness:dl.artist,opacity:100,locked:!1},XI="library",eg="search",re={name:"default",defaultTab:XI},wl=new Set(["iframe","embeddable","image"]),Wu={selection:"selection",rectangle:"rectangle",diamond:"diamond",ellipse:"ellipse",text:"text",image:"image",eraser:"eraser",frame:"frame",magicframe:"magicframe",laser:"laser"},aE={MERMAID_TO_EXCALIDRAW:"mermaid-to-excalidraw",PUBLISH_LIBRARY:"publish-library-data"},hl="Untitled",OB={generalStats:1,elementProperties:2},v0=1,Ou={sharp:"sharp",round:"round",elbow:"elbow"},Fl=.3,_I="element",Rq=Symbol.for("__test__originalId__"),Mq=(A=>(A.ACTIVE="active",A.AWAY="away",A.IDLE="idle",A))(Mq||{}),fq=bQ.includes(devicePixelRatio)?devicePixelRatio:1,He=()=>({showWelcomeScreen:!1,theme:fA.LIGHT,collaborators:new Map,currentChartType:"bar",currentItemBackgroundColor:ku.backgroundColor,currentItemEndArrowhead:"arrow",currentItemFillStyle:ku.fillStyle,currentItemFontFamily:zC,currentItemFontSize:dC,currentItemOpacity:ku.opacity,currentItemRoughness:ku.roughness,currentItemStartArrowhead:null,currentItemStrokeColor:ku.strokeColor,currentItemRoundness:"round",currentItemArrowType:Ou.round,currentItemStrokeStyle:ku.strokeStyle,currentItemStrokeWidth:ku.strokeWidth,currentItemTextAlign:jE,currentHoveredFontFamily:null,cursorButton:"up",activeEmbeddable:null,newElement:null,editingTextElement:null,editingGroupId:null,editingLinearElement:null,activeTool:{type:"selection",customType:null,locked:ku.locked,lastActiveTool:null},penMode:!1,penDetected:!1,errorMessage:null,exportBackground:!0,exportScale:fq,exportEmbedScene:!1,exportWithDarkMode:!1,fileHandle:null,gridSize:VI,gridStep:cl,gridModeEnabled:!1,isBindingEnabled:!0,defaultSidebarDockedPreference:!1,isLoading:!1,isResizing:!1,isRotating:!1,lastPointerDownWith:"mouse",multiElement:null,name:null,contextMenu:null,openMenu:null,openPopup:null,openSidebar:null,openDialog:null,pasteDialog:{shown:!1,data:null},previousSelectedElementIds:{},resizingElement:null,scrolledOutside:!1,scrollX:0,scrollY:0,selectedElementIds:{},hoveredElementIds:{},selectedGroupIds:{},selectedElementsAreBeingDragged:!1,selectionElement:null,shouldCacheIgnoreZoom:!1,stats:{open:!1,panels:OB.generalStats|OB.elementProperties},startBoundElement:null,suggestedBindings:[],frameRendering:{enabled:!0,clip:!0,name:!0,outline:!0},frameToHighlight:null,editingFrame:null,elementsToHighlight:null,toast:null,viewBackgroundColor:SA.white,zenModeEnabled:!1,zoom:{value:1},viewModeEnabled:!1,pendingImageElementId:null,showHyperlinkPopup:!1,selectedLinearElement:null,snapLines:[],originSnapOffset:{x:0,y:0},objectsSnapModeEnabled:!1,userToFollow:null,followedBy:new Set,isCropping:!1,croppingElementId:null,searchMatches:[]}),Yq=(A=>A)({showWelcomeScreen:{browser:!0,export:!1,server:!1},theme:{browser:!0,export:!1,server:!1},collaborators:{browser:!1,export:!1,server:!1},currentChartType:{browser:!0,export:!1,server:!1},currentItemBackgroundColor:{browser:!0,export:!1,server:!1},currentItemEndArrowhead:{browser:!0,export:!1,server:!1},currentItemFillStyle:{browser:!0,export:!1,server:!1},currentItemFontFamily:{browser:!0,export:!1,server:!1},currentItemFontSize:{browser:!0,export:!1,server:!1},currentItemRoundness:{browser:!0,export:!1,server:!1},currentItemArrowType:{browser:!0,export:!1,server:!1},currentItemOpacity:{browser:!0,export:!1,server:!1},currentItemRoughness:{browser:!0,export:!1,server:!1},currentItemStartArrowhead:{browser:!0,export:!1,server:!1},currentItemStrokeColor:{browser:!0,export:!1,server:!1},currentItemStrokeStyle:{browser:!0,export:!1,server:!1},currentItemStrokeWidth:{browser:!0,export:!1,server:!1},currentItemTextAlign:{browser:!0,export:!1,server:!1},currentHoveredFontFamily:{browser:!1,export:!1,server:!1},cursorButton:{browser:!0,export:!1,server:!1},activeEmbeddable:{browser:!1,export:!1,server:!1},newElement:{browser:!1,export:!1,server:!1},editingTextElement:{browser:!1,export:!1,server:!1},editingGroupId:{browser:!0,export:!1,server:!1},editingLinearElement:{browser:!1,export:!1,server:!1},activeTool:{browser:!0,export:!1,server:!1},penMode:{browser:!0,export:!1,server:!1},penDetected:{browser:!0,export:!1,server:!1},errorMessage:{browser:!1,export:!1,server:!1},exportBackground:{browser:!0,export:!1,server:!1},exportEmbedScene:{browser:!0,export:!1,server:!1},exportScale:{browser:!0,export:!1,server:!1},exportWithDarkMode:{browser:!0,export:!1,server:!1},fileHandle:{browser:!1,export:!1,server:!1},gridSize:{browser:!0,export:!0,server:!0},gridStep:{browser:!0,export:!0,server:!0},gridModeEnabled:{browser:!0,export:!0,server:!0},height:{browser:!1,export:!1,server:!1},isBindingEnabled:{browser:!1,export:!1,server:!1},defaultSidebarDockedPreference:{browser:!0,export:!1,server:!1},isLoading:{browser:!1,export:!1,server:!1},isResizing:{browser:!1,export:!1,server:!1},isRotating:{browser:!1,export:!1,server:!1},lastPointerDownWith:{browser:!0,export:!1,server:!1},multiElement:{browser:!1,export:!1,server:!1},name:{browser:!0,export:!1,server:!1},offsetLeft:{browser:!1,export:!1,server:!1},offsetTop:{browser:!1,export:!1,server:!1},contextMenu:{browser:!1,export:!1,server:!1},openMenu:{browser:!0,export:!1,server:!1},openPopup:{browser:!1,export:!1,server:!1},openSidebar:{browser:!0,export:!1,server:!1},openDialog:{browser:!1,export:!1,server:!1},pasteDialog:{browser:!1,export:!1,server:!1},previousSelectedElementIds:{browser:!0,export:!1,server:!1},resizingElement:{browser:!1,export:!1,server:!1},scrolledOutside:{browser:!0,export:!1,server:!1},scrollX:{browser:!0,export:!1,server:!1},scrollY:{browser:!0,export:!1,server:!1},selectedElementIds:{browser:!0,export:!1,server:!1},hoveredElementIds:{browser:!1,export:!1,server:!1},selectedGroupIds:{browser:!0,export:!1,server:!1},selectedElementsAreBeingDragged:{browser:!1,export:!1,server:!1},selectionElement:{browser:!1,export:!1,server:!1},shouldCacheIgnoreZoom:{browser:!0,export:!1,server:!1},stats:{browser:!0,export:!1,server:!1},startBoundElement:{browser:!1,export:!1,server:!1},suggestedBindings:{browser:!1,export:!1,server:!1},frameRendering:{browser:!1,export:!1,server:!1},frameToHighlight:{browser:!1,export:!1,server:!1},editingFrame:{browser:!1,export:!1,server:!1},elementsToHighlight:{browser:!1,export:!1,server:!1},toast:{browser:!1,export:!1,server:!1},viewBackgroundColor:{browser:!0,export:!0,server:!0},width:{browser:!1,export:!1,server:!1},zenModeEnabled:{browser:!0,export:!1,server:!1},zoom:{browser:!0,export:!1,server:!1},viewModeEnabled:{browser:!1,export:!1,server:!1},pendingImageElementId:{browser:!1,export:!1,server:!1},showHyperlinkPopup:{browser:!1,export:!1,server:!1},selectedLinearElement:{browser:!0,export:!1,server:!1},snapLines:{browser:!1,export:!1,server:!1},originSnapOffset:{browser:!1,export:!1,server:!1},objectsSnapModeEnabled:{browser:!0,export:!1,server:!1},userToFollow:{browser:!1,export:!1,server:!1},followedBy:{browser:!1,export:!1,server:!1},isCropping:{browser:!1,export:!1,server:!1},croppingElementId:{browser:!1,export:!1,server:!1},searchMatches:{browser:!1,export:!1,server:!1}}),Hq=(A,u)=>{var C;let e={};for(let B of Object.keys(A))if((C=Yq[B])!=null&&C[u]){let g=A[B];e[B]=g}return e},pl=A=>Hq(A,"export"),Le=({activeTool:A})=>A.type==="eraser",ag=({activeTool:A})=>A.type==="hand",RA=(A,u,e)=>Math.min(Math.max(A,u),e),fe=(A,u,e="round")=>{let C=Math.pow(10,u);return Math[e]((A+Number.EPSILON)*C)/C},Kq=(A,u,e="round")=>{let C=1/u;return Math[e](A*C)/C},sI=(A,u)=>(A+u)/2,tE=A=>typeof A=="number"&&Number.isFinite(A),Pr=(A,u,e=1e-4)=>Math.abs(A-u)A<0?A+2*Math.PI:A>=2*Math.PI?A-2*Math.PI:A;function rB(A){return A*Math.PI/180}function TE(A){return A*180/Math.PI}function Jq(A){return Math.abs(Math.sin(2*A))<1e-4}function $u(A,u,e=0,C=0){return[A-e,u-C]}function rA(A,u=[0,0]){return $u(A[0]-u[0],A[1]-u[1])}function qu(A,u){return A[0]*u[1]-u[0]*A[1]}function Or(A,u){return A[0]*u[0]+A[1]*u[1]}function YC(A,u){return[A[0]+u[0],A[1]+u[1]]}function Ai(A,u){return[A[0]-u[0],A[1]-u[1]]}function bu(A,u){return $u(A[0]*u,A[1]*u)}function vq(A){return A[0]*A[0]+A[1]*A[1]}function Zq(A){return Math.sqrt(vq(A))}var I0=A=>{let u=Zq(A);return u===0?$u(0,0):$u(A[0]/u,A[1]/u)};function F(A,u){return[A,u]}function GQ(A){return A.length===2?F(A[0],A[1]):void 0}function MA(A,u=F(0,0)){return F(u[0]+A[0],u[1]+A[1])}function qq(A){return Array.isArray(A)&&A.length===2&&typeof A[0]=="number"&&!isNaN(A[0])&&typeof A[1]=="number"&&!isNaN(A[1])}function De(A,u){let e=Math.abs;return e(A[0]-u[0])<1e-4&&e(A[1]-u[1])<1e-4}function j([A,u],[e,C],B){return F((A-e)*Math.cos(B)-(u-C)*Math.sin(B)+e,(A-e)*Math.sin(B)+(u-C)*Math.cos(B)+C)}function ui(A,u=[0,0]){return F(A[0]+u[0],A[1]+u[1])}function zE(A,u){return F((A[0]+u[0])/2,(A[1]+u[1])/2)}function TA(A,u){return Math.hypot(u[0]-A[0],u[1]-A[1])}function yE(A,u){let e=u[0]-A[0],C=u[1]-A[1];return e*e+C*C}var $e=(A,u,e)=>ui(u,bu(rA(A,u),e)),ml=(A,u,e)=>u[0]<=Math.max(A[0],e[0])&&u[0]>=Math.min(A[0],e[0])&&u[1]<=Math.max(A[1],e[1])&&u[1]>=Math.min(A[1],e[1]);function kt(A,u){return[A,u]}function Wq(A,u){let e=A[1][1]-A[0][1],C=A[0][0]-A[1][0],B=u[1][1]-u[0][1],g=u[0][0]-u[1][0],E=e*g-B*C;if(E!==0){let i=e*A[0][0]+C*A[0][1],t=B*u[0][0]+g*u[0][1];return F((i*g-t*C)/E,(e*t-B*i)/E)}return null}function nA(A,u){return[A,u]}var hB=(A,u,e=1e-4)=>{let C=UQ(A,u);return C===0?!0:C{let[e,C]=A,[[B,g],[E,i]]=u,t=e-B,o=C-g,I=E-B,Q=i-g,r=t*I+o*Q,s=I*I+Q*Q,n=-1;s!==0&&(n=r/s);let l,D;n<0?(l=B,D=g):n>1?(l=E,D=i):(l=B+n*I,D=g+n*Q);let d=e-l,c=C-D;return Math.sqrt(d*d+c*c)};function bE(A,u){let e=Wq(kt(A[0],A[1]),kt(u[0],u[1]));return!e||!hB(e,u)||!hB(e,A)?null:e}function yt(A,u){return[A,u]}function jq(A,u){return[nA(A[0],F(A[1][0],A[0][1])),nA(F(A[1][0],A[0][1]),A[1]),nA(A[1],F(A[0][0],A[1][1])),nA(F(A[0][0],A[1][1]),A[0])].map(e=>bE(u,e)).filter(e=>!!e)}function BC(A,u,e,C){return[A,u,e,C]}function Vr(A,u,e,C=1e-6){return[(A(u+C,e)-A(u-C,e))/(2*C),(A(u,e+C)-A(u,e-C))/(2*C)]}function Tq(A,u,e,C=.001,B=10){let g=1/0,E=0;for(;g>=C;){if(E>=B)return null;let i=A(u,e),t=[Vr((l,D)=>A(l,D)[0],u,e),Vr((l,D)=>A(l,D)[1],u,e)],o=[[-i[0]],[-i[1]]],I=t[0][0]*t[1][1]-t[0][1]*t[1][0];if(I===0)return null;let Q=[[t[1][1]/I,-t[0][1]/I],[-t[1][0]/I,t[0][0]/I]],r=[[Q[0][0]*o[0][0]+Q[0][1]*o[1][0]],[Q[1][0]*o[0][0]+Q[1][1]*o[1][0]]];u=u+r[0][0],e=e+r[1][0];let[s,n]=A(u,e);g=Math.max(Math.abs(s),Math.abs(n)),E+=1}return[u,e]}var QE=(A,u)=>F((1-u)**3*A[0][0]+3*(1-u)**2*u*A[1][0]+3*(1-u)*u**2*A[2][0]+u**3*A[3][0],(1-u)**3*A[0][1]+3*(1-u)**2*u*A[1][1]+3*(1-u)*u**2*A[2][1]+u**3*A[3][1]);function kl(A,u){let e=Pq(A);if(jq(yt(F(e[0],e[1]),F(e[2],e[3])),u).length===0)return[];let C=i=>F(u[0][0]+i*(u[1][0]-u[0][0]),u[0][1]+i*(u[1][1]-u[0][1])),B=[[.5,0],[.2,0],[.8,0]],g=([i,t])=>{let o=Tq((r,s)=>{let n=QE(A,r),l=C(s);return[n[0]-l[0],n[1]-l[1]]},i,t);if(!o)return null;let[I,Q]=o;return I<0||I>1||Q<0||Q>1?null:QE(A,I)},E=g(B[0]);return E?[E]:(E=g(B[1]),E?[E]:(E=g(B[2]),E?[E]:[]))}function zq(A,u,e=.001){let C=(t,o,I,Q=e)=>{let r=t,s=o,n;for(;s-r>Q;)n=(s+r)/2,I(n-Q)TA(u,QE(A,t)));return i?QE(A,i):null}function yl(A,u){let e=zq(A,u);return e?TA(u,e):0}function Pq(A){let[u,e,C,B]=A,g=[u[0],e[0],C[0],B[0]],E=[u[1],e[1],C[1],B[1]];return[Math.min(...g),Math.min(...E),Math.max(...g),Math.max(...E)]}function Xr(...A){return bl(A)}function ei(A){return bl(A)}var _r=(A,u)=>{let e=A[0],C=A[1],B=!1;for(let g=0,E=u.length-1;gC&&I<=C||t<=C&&I>C)&&e<(o-i)*(C-t)/(I-t)+i&&(B=!B)}return B},Oq=(A,u,e=1e-4)=>{let C=!1;for(let B=0,g=u.length-1;BA<=e?u>=e:A>=e?C>=A:!1,Bi=([A,u],[e,C])=>{let B=Math.max(A,e),g=Math.min(u,C);return B<=g?z0([B,g]):null},nI=(A,[u,e])=>A>=u&&A<=e;function JB([A,u,e],C){let B=(I,Q,r)=>(I[0]-r[0])*(Q[1]-r[1])-(Q[0]-r[0])*(I[1]-r[1]),g=B(C,A,u),E=B(C,u,e),i=B(C,e,A),t=g<0||E<0||i<0,o=g>0||E>0||i>0;return!(t&&o)}var $r=()=>{let A=new Date,u=A.getFullYear(),e=`${A.getMonth()+1}`.padStart(2,"0"),C=`${A.getDate()}`.padStart(2,"0"),B=`${A.getHours()}`.padStart(2,"0"),g=`${A.getMinutes()}`.padStart(2,"0");return`${u}-${e}-${C}-${B}${g}`},oE=A=>A.charAt(0).toUpperCase()+A.slice(1),Xq=A=>A instanceof HTMLElement&&A.className.includes("ToolIcon"),bt=A=>A instanceof HTMLElement&&A.dataset.type==="wysiwyg"||A instanceof HTMLBRElement||A instanceof HTMLInputElement||A instanceof HTMLTextAreaElement||A instanceof HTMLSelectElement,_q=A=>bt(A)||A instanceof Element&&!!A.closest("label, button"),BB=A=>A instanceof HTMLElement&&A.dataset.type==="wysiwyg"||A instanceof HTMLBRElement||A instanceof HTMLTextAreaElement||A instanceof HTMLInputElement&&(A.type==="text"||A.type==="number"||A.type==="password"),tg=({fontFamily:A})=>{for(let[u,e]of Object.entries(wu))if(e===A)return`${u}${Dl(e).map(C=>`, ${C}`).join("")}`;return mE},Au=({fontSize:A,fontFamily:u})=>`${A}px ${tg({fontFamily:u})}`,Qg=(A,u)=>{let e=0,C=null,B=(...g)=>{C=g,clearTimeout(e),e=window.setTimeout(()=>{C=null,A(...g)},u)};return B.flush=()=>{if(clearTimeout(e),C){let g=C;C=null,A(...g)}},B.cancel=()=>{C=null,clearTimeout(e)},B},Yi=(A,u)=>{let e=null,C=null,B=null,g=i=>{e=window.requestAnimationFrame(()=>{e=null,A(...i),C=null,B&&(C=B,B=null,g(C))})},E=(...i)=>{if(bA.MODE==="test"){A(...i);return}C=i,e===null?g(C):u!=null&&u.trailing&&(B=i)};return E.flush=()=>{e!==null&&(cancelAnimationFrame(e),e=null),C&&(A(...B||C),C=B=null)},E.cancel=()=>{C=B=null,e!==null&&(cancelAnimationFrame(e),e=null)},E},sB=A=>1-Math.pow(1-A,4),As=(A,u,e)=>(u-A)*sB(e)+A,$q=({fromValues:A,toValues:u,onStep:e,duration:C=250,interpolateValue:B,onStart:g,onEnd:E,onCancel:i})=>{let t=!1,o=0,I;function Q(r){if(t)return;I===void 0&&(I=r,g==null||g());let s=Math.min(r-I,C),n=sB(s/C),l={};if(Object.keys(A).forEach(D=>{let d=D,c=(u[d]-A[d])*n+A[d];l[d]=c}),e(l),s{let w=c,h=A[w],m=u[w],b;b=B?B(h,m,D,w):As(h,m,D),b==null&&(b=As(h,m,D)),d[w]=b}),e(d),o=window.requestAnimationFrame(Q)}else e(u),E==null||E()}return o=window.requestAnimationFrame(Q),()=>{i==null||i(),t=!0,window.cancelAnimationFrame(o)}},AW=(A,u)=>{if(!A.length||u<1)return[];let e=0,C=0,B=Array(Math.ceil(A.length/u));for(;eMath.abs(A-u),Mu=(A,u)=>u.type==="custom"?{...A.activeTool,type:"custom",customType:u.customType,locked:u.locked??A.activeTool.locked}:{...A.activeTool,lastActiveTool:u.lastActiveToolBeforeEraser===void 0?A.activeTool.lastActiveTool:u.lastActiveToolBeforeEraser,type:u.type,customType:null,locked:u.locked??A.activeTool.locked},P=A=>(A=A.replace(/\bAlt\b/i,"Alt").replace(/\bShift\b/i,"Shift").replace(/\b(Enter|Return)\b/i,"Enter"),Ye?A.replace(/\bCtrlOrCmd\b/gi,"Cmd").replace(/\bAlt\b/i,"Option"):A.replace(/\bCtrlOrCmd\b/gi,"Ctrl")),Qu=({clientX:A,clientY:u},{zoom:e,offsetLeft:C,offsetTop:B,scrollX:g,scrollY:E})=>{let i=(A-C)/e.value-g,t=(u-B)/e.value-E;return{x:i,y:t}},ie=({sceneX:A,sceneY:u},{zoom:e,offsetLeft:C,offsetTop:B,scrollX:g,scrollY:E})=>{let i=(A+g)*e.value+C,t=(u+E)*e.value+B;return{x:i,y:t}},lI=A=>getComputedStyle(document.documentElement).getPropertyValue(`--${A}`),uW="A-Za-zÀ-ÖØ-öø-ʸ̀-֐ࠀ-῿Ⰰ-﬜﷾-﹯﻽-￿",eW="֑-߿יִ-﷽ﹰ-ﻼ",CW=new RegExp(`^[^${uW}]*[${eW}]`),Gl=A=>CW.test(A),ae=A=>{let[u,e]=A;return{x:u,y:e}},Ul=A=>{if((A==null?void 0:A.name)==="AbortError"){console.warn(A);return}throw A},Ll=(A,u,e=0)=>{e<0&&(e=A.length+e),e=Math.min(A.length,Math.max(e,0));let C=e-1;for(;++C{e<0&&(e=A.length+e),e=Math.min(A.length-1,Math.max(e,0));let C=e+1;for(;--C>-1;)if(u(A[C],C,A))return C;return-1},te=A=>{let u=A.length===5&&A.substr(4,1)==="0",e=A.length===9&&A.substr(7,2)==="00";return u||e||A===SA.transparent},va=A=>A.fillStyle!=="solid"||te(A.backgroundColor),BW=()=>{let A,u,e=new Promise((C,B)=>{A=C,u=B});return e.resolve=A,e.reject=u,e},gW=A=>{let u=A.parentElement;for(;u;){if(u===document.body)return document;let{overflowY:e}=window.getComputedStyle(u);if(u.scrollHeight>u.clientHeight&&(e==="auto"||e==="scroll"||e==="overlay"))return u;u=u.parentElement}return document},EW=A=>{let u=A.parentElement;for(;u;){if(u.tabIndex>-1){u.focus();return}u=u.parentElement}},IW=A=>Array.from(A).map(u=>`0${u.toString(16)}`.slice(-2)).join(""),yg=()=>tC()?1:Date.now(),wA=A=>A instanceof Map?A:A.reduce((u,e)=>(u.set(typeof e=="string"?e:e.id,e),u),new Map),iW=A=>A.reduce((u,e,C)=>(u.set(e.id,[e,C]),u),new Map),Xe=(A,u)=>A.reduce((e,C)=>(e[u?u(C):String(C)]=C,e),{}),aW=A=>A.reduce((u,e,C)=>{let B={...e,prev:null,next:null};if(C!==0){let g=u[C-1];if(B.prev=g,g.next=B,C===A.length-1){let E=u[0];B.next=E,E.prev=B}}return u.push(B),u},[]),tC=()=>bA.MODE==="test",xl=()=>bA.MODE==="development",tW=()=>typeof process<"u"&&!0,Nl=(A,u)=>new CustomEvent(A,{detail:{nativeEvent:u},cancelable:!0}),UI=(A,u)=>{let e=!1;for(let C in u){let B=u[C];if(typeof B<"u"){if(A[C]===B&&(typeof B!="object"||B===null))continue;e=!0}}return e?{...A,...u}:A},QW=()=>{try{return window.self===window.top?"top":"iframe"}catch{return"iframe"}},PE=A=>!!A&&typeof A=="object"&&"then"in A&&"catch"in A&&"finally"in A,Gt=A=>{let u=A==null?void 0:A.querySelectorAll("button, a, input, select, textarea, div[tabindex], label[tabindex]");return u?Array.from(u).filter(e=>e.tabIndex>-1&&!e.disabled):[]},us=(A,u)=>Array.isArray(A)&&Array.isArray(u)&&A.length===0&&u.length===0?!0:A===u,A0=(A,u,e,C=!1)=>{let B=Object.keys(A),g=Object.keys(u);if(B.length!==g.length)return C&&console.warn("%cisShallowEqual: objects don't have same properties ->","color: #8B4000",A,u),!1;if(e&&Array.isArray(e)){for(let E of e)if(!(A[E]===u[E]||us(A[E],u[E])))return C&&console.warn(`%cisShallowEqual: ${E} not equal ->`,"color: #8B4000",A[E],u[E]),!1;return!0}return B.every(E=>{let i=e==null?void 0:e[E],t=i?i(A[E],u[E]):A[E]===u[E]||us(A[E],u[E]);return!t&&C&&console.warn(`%cisShallowEqual: ${E} not equal ->`,"color: #8B4000",A[E],u[E]),t})},Hi=(A,u,{checkForDefaultPrevented:e=!0}={})=>function(C){if(A==null||A(C),!e||!(C!=null&&C.defaultPrevented))return u==null?void 0:u(C)},FB=(A,u,e)=>{if(!u)return A;if(e)return console.error(u),A;throw new Error(u)};function a0(A,u){if(!A)throw new Error(u)}var oW=A=>{let u,e,C=function(B){let g=Object.entries(B);if(u){let i=!0;for(let[t,o]of g)if(u.get(t)!==o){i=!1;break}if(i)return e}let E=A(B);return u=new Map(g),e=E,E};return C.clear=()=>{u=void 0,e=void 0},C},Sl=(A,u)=>A instanceof Set||A instanceof Map?A.has(u):"includes"in A?A.includes(u):A.hasOwnProperty(u),iC=A=>JSON.parse(JSON.stringify(A)),qg=(A,u)=>A0(A,u)?A:u;function cu(A,u,e,C){var B;return A?((B=A==null?void 0:A.addEventListener)==null||B.call(A,u,e,C),()=>{var g;(g=A==null?void 0:A.removeEventListener)==null||g.call(A,u,e,C)}):()=>{}}function rW(A,u=!0){let e=A.length;if(e<4)return"";let C=A[0],B=A[1],g=A[2],E=`M${C[0].toFixed(2)},${C[1].toFixed(2)} Q${B[0].toFixed(2)},${B[1].toFixed(2)} ${sI(B[0],g[0]).toFixed(2)},${sI(B[1],g[1]).toFixed(2)} T`;for(let i=2,t=e-1;iA.replace(/\r?\n|\r/g,` +`),z0=A=>A,og=async(A,...u)=>new Promise(e=>{e(A(...u))}),sW=(...A)=>Math.max(...A.map(u=>u?1:0))>0,es=class{constructor(A,u){S(this,"pool"),S(this,"entries",{}),this.pool=new YZ(A,u)}all(){let A=u=>{if(u.data.result){let[e,C]=u.data.result;this.entries[e]=C}};return this.pool.addEventListener("fulfilled",A),this.pool.start().then(()=>(setTimeout(()=>{this.pool.removeEventListener("fulfilled",A)}),Object.values(this.entries)))}},LI=A=>A.replace(/"/g,"""),Cs=A=>Array.isArray(A)?A:[A],Z0=A=>!!A&&A.type==="image"&&!!A.fileId,jA=A=>!!A&&A.type==="image",m0=A=>!!A&&A.type==="embeddable",MC=A=>!!A&&A.type==="iframe",q0=A=>!!A&&(A.type==="iframe"||A.type==="embeddable"),gA=A=>A!=null&&A.type==="text",Ml=A=>A!=null&&A.type==="frame",xI=A=>A!=null&&A.type==="magicframe",dA=A=>A!=null&&(A.type==="frame"||A.type==="magicframe"),P0=A=>A!=null&&nW(A.type),nW=A=>A==="freedraw",FA=A=>A!=null&&LQ(A.type),UA=A=>A!=null&&A.type==="arrow",iA=A=>UA(A)&&A.elbowed,LQ=A=>A==="arrow"||A==="line",Re=(A,u=!0)=>A!=null&&(!A.locked||u===!0)&&fl(A.type),fl=A=>A==="arrow",ce=(A,u=!0)=>A!=null&&(!A.locked||u===!0)&&(A.type==="rectangle"||A.type==="diamond"||A.type==="ellipse"||A.type==="image"||A.type==="iframe"||A.type==="embeddable"||A.type==="frame"||A.type==="magicframe"||A.type==="text"&&!A.containerId),lW=A=>A!=null&&(A.type==="rectangle"||A.type==="diamond"||A.type==="image"||A.type==="iframe"||A.type==="embeddable"||A.type==="frame"||A.type==="magicframe"||A.type==="text"&&!A.containerId),nB=(A,u=!0)=>A!=null&&(!A.locked||u===!0)&&(A.type==="rectangle"||A.type==="diamond"||A.type==="ellipse"||UA(A)),Yl=A=>{let u=A==null?void 0:A.type;if(!u)return!1;switch(u){case"text":case"diamond":case"rectangle":case"iframe":case"embeddable":case"ellipse":case"arrow":case"freedraw":case"line":case"frame":case"magicframe":case"image":case"selection":return!0;default:return FB(u,null),!1}},Ki=A=>A.type==="rectangle"||A.type==="ellipse"||A.type==="diamond",O0=A=>{var u;return nB(A)&&!!((u=A.boundElements)!=null&&u.some(({type:e})=>e==="text"))},nu=A=>A!==null&&"containerId"in A&&A.containerId!==null&&gA(A),bg=A=>A==="rectangle"||A==="embeddable"||A==="iframe"||A==="image",Hl=A=>A==="line"||A==="arrow"||A==="diamond",DW=(A,u)=>!!((A===Ju.ADAPTIVE_RADIUS||A===Ju.LEGACY)&&bg(u.type)||A===Ju.PROPORTIONAL_RADIUS&&Hl(u.type)),cW=A=>Hl(A.type)?{type:Ju.PROPORTIONAL_RADIUS}:bg(A.type)?{type:Ju.ADAPTIVE_RADIUS}:null,gi=A=>Object.hasOwn(A,"fixedPoint")&&A.fixedPoint!=null,t0=(A,u,e)=>{let C=A.split(` +`).map(E=>E||" ").join(` +`),B=parseFloat(u),g=FW(C,B,e);return{width:SQ(C,u),height:g}},Kl="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".toLocaleUpperCase(),Jl=(A,u)=>{let e=pW(A);return e===0?t0(Kl.split("").join(` +`),A,u).width+Ku*2:e+Ku*2},xQ=(A,u)=>t0("",A,u).width+Ku*2,dW=()=>SQ(Kl,Au({fontSize:dC,fontFamily:zC}))>0,rg=A=>Rl(A).replace(/\t/g," "),NQ=A=>rg(A).split(` +`),wW=A=>{let u=NQ(A.text).length;return A.height/u/A.fontSize},OE=(A,u)=>A*u,vl=(A,u)=>OE(A,u)+Ku*2,Za,hW=class{constructor(){S(this,"canvas"),this.canvas=document.createElement("canvas")}getLineWidth(A,u){let e=this.canvas.getContext("2d");e.font=u;let C=e.measureText(A).width;return tC()?C*10:C}},pB=(A,u)=>(Za||(Za=new hW),Za.getLineWidth(A,u)),SQ=(A,u)=>{let e=NQ(A),C=0;return e.forEach(B=>{C=Math.max(C,pB(B,u))}),C},FW=(A,u,e)=>{let C=NQ(A).length;return OE(u,e)*C},VE=(()=>{let A={};return{calculate:(u,e)=>{let C=u.charCodeAt(0);if(A[e]||(A[e]=[]),!A[e][C]){let B=pB(u,e);A[e][C]=B}return A[e][C]},getCache:u=>A[u],clearCache:u=>{A[u]=[]}}})(),pW=A=>{let u=VE.getCache(A);if(!u)return 0;let e=u.filter(C=>C!==void 0);return Math.max(...e)},qa,DI,Wa,mW=A=>(qa||(qa=PA.class(...Object.values(AC))),qa.test(A)),kW=()=>{if(!DI)try{DI=bW()}catch{DI=yW()}return DI},RQ=()=>(Wa||(Wa=GW()),Wa),K0={WHITESPACE:/\s/u,HYPHEN:/-/u,OPENING:/<\(\[\{/u,CLOSING:/>\)\]\}.,:;!\?…\//u},AC={CHAR:new RegExp("\\p{Script=Han}\\p{Script=Hiragana}\\p{Script=Katakana}\\p{Script=Hangul}`'^〃〰〆#&*+-ー/\=|¦〒¬ ̄","u"),OPENING:/([{〈《⦅「「『【〖〔〘〚<〝/u,CLOSING:/)]}〉》⦆」」』】〗〕〙〛>。.,、〟‥?!:;・〜〞/u,CURRENCY:/¥₩£¢$/u},$C={FLAG:new RegExp("\\p{RI}\\p{RI}","u"),JOINER:new RegExp("(?:\\p{Emoji_Modifier}|\\uFE0F\\u20E3?|[\\u{E0020}-\\u{E007E}]+\\u{E007F})?","u"),ZWJ:/\u200D/u,ANY:/[\p{Emoji}]/u,MOST:/[\p{Extended_Pictographic}\p{Emoji_Presentation}]/u},yW=()=>PA.or(RQ(),Su.On(K0.HYPHEN,K0.WHITESPACE,AC.CHAR)),bW=()=>PA.or(RQ(),Su.Before(K0.WHITESPACE).Build(),Su.After(K0.WHITESPACE,K0.HYPHEN).Build(),Su.Before(AC.CHAR,AC.CURRENCY).NotPrecededBy(K0.OPENING,AC.OPENING).Build(),Su.After(AC.CHAR).NotFollowedBy(K0.HYPHEN,K0.CLOSING,AC.CLOSING).Build(),Su.BeforeMany(AC.OPENING).NotPrecededBy(K0.OPENING).Build(),Su.AfterMany(AC.CLOSING).NotFollowedBy(K0.CLOSING).Build(),Su.AfterMany(K0.CLOSING).FollowedBy(K0.OPENING).Build()),GW=()=>PA.group(PA.or($C.FLAG,PA.and($C.MOST,$C.JOINER,PA.build(`(?:${$C.ZWJ.source}(?:${$C.FLAG.source}|${$C.ANY.source}${$C.JOINER.source}))*`)))),PA={build:A=>new RegExp(A,"u"),join:(...A)=>A.map(u=>u.source).join(""),and:(...A)=>PA.build(PA.join(...A)),or:(...A)=>PA.build(A.map(u=>u.source).join("|")),group:(...A)=>PA.build(`(${PA.join(...A)})`),class:(...A)=>PA.build(`[${PA.join(...A)}]`)},Su={On:(...A)=>{let u=PA.join(...A);return PA.build(`([${u}])`)},Before:(...A)=>{let u=PA.join(...A),e=()=>PA.build(`(?=[${u}])`);return Su.Chain(e)},After:(...A)=>{let u=PA.join(...A),e=()=>PA.build(`(?<=[${u}])`);return Su.Chain(e)},BeforeMany:(...A)=>{let u=PA.join(...A),e=()=>PA.build(`(?{let u=PA.join(...A),e=()=>PA.build(`(?<=[${u}])(?![${u}])`);return Su.Chain(e)},NotBefore:(...A)=>{let u=PA.join(...A),e=()=>PA.build(`(?![${u}])`);return Su.Chain(e)},NotAfter:(...A)=>{let u=PA.join(...A),e=()=>PA.build(`(?({Build:A,PreceededBy:(...u)=>{let e=A(),C=Su.After(...u).Build(),B=()=>PA.and(C,e);return Su.Chain(B)},FollowedBy:(...u)=>{let e=A(),C=Su.Before(...u).Build(),B=()=>PA.and(e,C);return Su.Chain(B)},NotPrecededBy:(...u)=>{let e=A(),C=Su.NotAfter(...u).Build(),B=()=>PA.and(C,e);return Su.Chain(B)},NotFollowedBy:(...u)=>{let e=A(),C=Su.NotBefore(...u).Build(),B=()=>PA.and(e,C);return Su.Chain(B)}})},UW=A=>{let u=kW();return A.normalize("NFC").split(u).filter(Boolean)},LB=(A,u,e)=>{if(!Number.isFinite(e)||e<0)return A;let C=[],B=A.split(` +`);for(let g of B){if(pB(g,u)<=e){C.push(g);continue}let E=LW(g,u,e);C.push(...E)}return C.join(` +`)},LW=(A,u,e)=>{let C=[],B=UW(A)[Symbol.iterator](),g="",E=0,i=B.next();for(;!i.done;){let t=i.value,o=g+t,I=SW(t)?E+VE.calculate(t,u):pB(o,u);if(/\s/.test(t)||I<=e){g=o,E=I,i=B.next();continue}if(g)C.push(g.trimEnd()),g="",E=0;else{let Q=xW(t,u,e),r=Q[Q.length-1]??"",s=Q.slice(0,-1);C.push(...s),g=r,E=pB(r,u),i=B.next()}}if(g){let t=NW(g,u,e);C.push(t)}return C},xW=(A,u,e)=>{if(RQ().test(A))return[A];RW(A);let C=[],B=Array.from(A),g="",E=0;for(let i of B){let t=VE.calculate(i,u),o=E+t;if(o<=e){g=g+i,E=o;continue}g&&C.push(g),g=i,E=t}return g&&C.push(g),C},NW=(A,u,e)=>{if(!(pB(A,u)>e))return A;let[,C,B]=A.match(/^(.+?)(\s+)$/)??[A,A.trimEnd(),""],g=pB(C,u);for(let E of Array.from(B)){let i=VE.calculate(E,u),t=g+i;if(t>e)break;C=C+E,g=t}return C},SW=A=>A.codePointAt(0)!==void 0&&A.codePointAt(1)===void 0,RW=A=>{if((bA.MODE===G0.TEST||bA.DEV)&&/\s/.test(A))throw new Error("Word should not contain any whitespaces!")},o0=class{};S(o0,"rg",new RZ),S(o0,"cache",new WeakMap),S(o0,"get",A=>o0.cache.get(A)),S(o0,"set",(A,u)=>o0.cache.set(A,u)),S(o0,"delete",A=>o0.cache.delete(A)),S(o0,"destroy",()=>{o0.cache=new WeakMap}),S(o0,"generateElementShape",(A,u)=>{let e=u!=null&&u.isExporting?void 0:o0.get(A);if(e!==void 0)return e;Yt.delete(A);let C=vX(A,o0.rg,u||{isExporting:!1,canvasBackgroundColor:SA.white,embedsValidationStatus:null});return o0.cache.set(A,C),C});var pu=o0,Ie=A=>"var(--icon-fill-color)",Zl=A=>A===fA.LIGHT?Xu.white:"#1e1e1e",J=(A,u=512)=>{let{width:e=512,height:C=e,mirror:B,style:g,...E}=typeof u=="number"?{width:u}:u;return a.jsx("svg",{"aria-hidden":"true",focusable:"false",role:"img",viewBox:`0 0 ${e} ${C}`,className:tA({"rtl-mirror":B}),style:g,...E,children:typeof A=="string"?a.jsx("path",{fill:"currentColor",d:A}):A})},BA={width:24,height:24,fill:"none",strokeWidth:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"},mA={width:20,height:20,fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"};J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("rect",{x:3,y:8,width:18,height:4,rx:1}),a.jsx("line",{x1:12,y1:8,x2:12,y2:21}),a.jsx("path",{d:"M19 12v7a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-7"}),a.jsx("path",{d:"M7.5 8a2.5 2.5 0 0 1 0 -5a4.8 8 0 0 1 4.5 5a4.8 8 0 0 1 4.5 -5a2.5 2.5 0 0 1 0 5"})]}),BA);var MQ=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M3 19a9 9 0 0 1 9 0a9 9 0 0 1 9 0"}),a.jsx("path",{d:"M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0"}),a.jsx("line",{x1:"3",y1:"6",x2:"3",y2:"19"}),a.jsx("line",{x1:"12",y1:"6",x2:"12",y2:"19"}),a.jsx("line",{x1:"21",y1:"6",x2:"21",y2:"19"})]}),BA),MW=J(a.jsxs("svg",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),a.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]}),BA),fW=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("circle",{cx:"12",cy:"12",r:"1"}),a.jsx("circle",{cx:"12",cy:"19",r:"1"}),a.jsx("circle",{cx:"12",cy:"5",r:"1"})]}),BA),YW=J(a.jsxs("svg",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M9 4v6l-2 4v2h10v-2l-2 -4v-6"}),a.jsx("line",{x1:"12",y1:"16",x2:"12",y2:"21"}),a.jsx("line",{x1:"8",y1:"4",x2:"16",y2:"4"})]}),BA),Ji=J(a.jsxs("g",{children:[a.jsx("path",{d:"M13.542 8.542H6.458a2.5 2.5 0 0 0-2.5 2.5v3.75a2.5 2.5 0 0 0 2.5 2.5h7.084a2.5 2.5 0 0 0 2.5-2.5v-3.75a2.5 2.5 0 0 0-2.5-2.5Z",stroke:"currentColor",strokeWidth:"1.25"}),a.jsx("path",{d:"M10 13.958a1.042 1.042 0 1 0 0-2.083 1.042 1.042 0 0 0 0 2.083Z",stroke:"currentColor",strokeWidth:"1.25"}),a.jsx("mask",{id:"UnlockedIcon",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:6,y:1,width:9,height:9,children:a.jsx("path",{stroke:"none",d:"M6.399 9.561V5.175c0-.93.401-1.823 1.116-2.48a3.981 3.981 0 0 1 2.693-1.028c1.01 0 1.98.37 2.694 1.027.715.658 1.116 1.55 1.116 2.481",fill:"#fff"})}),a.jsx("g",{mask:"url(#UnlockedIcon)",children:a.jsx("path",{stroke:"none",d:"M5.149 9.561v1.25h2.5v-1.25h-2.5Zm5.06-7.894V.417v1.25Zm2.559 3.508v1.25h2.5v-1.25h-2.5ZM7.648 8.51V5.175h-2.5V8.51h2.5Zm0-3.334c0-.564.243-1.128.713-1.561L6.668 1.775c-.959.883-1.52 2.104-1.52 3.4h2.5Zm.713-1.561a2.732 2.732 0 0 1 1.847-.697v-2.5c-1.31 0-2.585.478-3.54 1.358L8.36 3.614Zm1.847-.697c.71 0 1.374.26 1.847.697l1.694-1.839a5.231 5.231 0 0 0-3.54-1.358v2.5Zm1.847.697c.47.433.713.997.713 1.561h2.5c0-1.296-.56-2.517-1.52-3.4l-1.693 1.839Z",fill:"currentColor"})})]}),mA),fQ=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{d:"M13.542 8.542H6.458a2.5 2.5 0 0 0-2.5 2.5v3.75a2.5 2.5 0 0 0 2.5 2.5h7.084a2.5 2.5 0 0 0 2.5-2.5v-3.75a2.5 2.5 0 0 0-2.5-2.5Z"}),a.jsx("path",{d:"M10 13.958a1.042 1.042 0 1 0 0-2.083 1.042 1.042 0 0 0 0 2.083Z"}),a.jsx("path",{d:"M6.667 8.333V5.417C6.667 3.806 8.159 2.5 10 2.5c1.841 0 3.333 1.306 3.333 2.917v2.916"})]}),mA),HW=J(a.jsxs(a.Fragment,{children:[a.jsx("path",{d:"M38.5 83.5c-14-2-17.833-10.473-21-22.5C14.333 48.984 12 22 12 12.5",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"}),a.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m12.005 10.478 7.905 14.423L6 25.75l6.005-15.273Z",fill:"currentColor"}),a.jsx("path",{d:"M12.005 10.478c1.92 3.495 3.838 7 7.905 14.423m-7.905-14.423c3.11 5.683 6.23 11.368 7.905 14.423m0 0c-3.68.226-7.35.455-13.91.85m13.91-.85c-5.279.33-10.566.647-13.91.85m0 0c1.936-4.931 3.882-9.86 6.005-15.273M6 25.75c2.069-5.257 4.135-10.505 6.005-15.272",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"})]}),{width:41,height:94,fill:"none"}),KW=J(a.jsxs(a.Fragment,{children:[a.jsx("path",{d:"M18.026 1.232c-5.268 13.125-5.548 33.555 3.285 42.311 8.823 8.75 33.31 12.304 42.422 13.523",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"}),a.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m72.181 59.247-13.058-10-2.948 13.62 16.006-3.62Z",fill:"currentColor"}),a.jsx("path",{d:"M72.181 59.247c-3.163-2.429-6.337-4.856-13.058-10m13.058 10c-5.145-3.936-10.292-7.882-13.058-10m0 0c-.78 3.603-1.563 7.196-2.948 13.62m2.948-13.62c-1.126 5.168-2.24 10.346-2.948 13.62m0 0c5.168-1.166 10.334-2.343 16.006-3.62m-16.006 3.62c5.51-1.248 11.01-2.495 16.006-3.62",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"})]}),{width:85,height:71,fill:"none"}),JW=J(a.jsxs(a.Fragment,{children:[a.jsx("path",{d:"M1 77c14-2 31.833-11.973 35-24 3.167-12.016-6-35-9.5-43.5",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"}),a.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"m24.165 1.093-2.132 16.309 13.27-4.258-11.138-12.05Z",fill:"currentColor"}),a.jsx("path",{d:"M24.165 1.093c-.522 3.953-1.037 7.916-2.132 16.309m2.131-16.309c-.835 6.424-1.68 12.854-2.13 16.308m0 0c3.51-1.125 7.013-2.243 13.27-4.257m-13.27 4.257c5.038-1.608 10.08-3.232 13.27-4.257m0 0c-3.595-3.892-7.197-7.777-11.14-12.05m11.14 12.05c-3.837-4.148-7.667-8.287-11.14-12.05",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round"})]}),{width:38,height:78,fill:"none"});J(a.jsx("g",{fill:"currentColor",children:a.jsx("path",{d:"M39.9 32.889a.326.326 0 0 0-.279-.056c-2.094-3.083-4.774-6-7.343-8.833l-.419-.472a.212.212 0 0 0-.056-.139.586.586 0 0 0-.167-.111l-.084-.083-.056-.056c-.084-.167-.28-.278-.475-.167-.782.39-1.507.973-2.206 1.528-.92.722-1.842 1.445-2.708 2.25a8.405 8.405 0 0 0-.977 1.028c-.14.194-.028.361.14.444-.615.611-1.23 1.223-1.843 1.861a.315.315 0 0 0-.084.223c0 .083.056.166.111.194l1.09.833v.028c1.535 1.528 4.244 3.611 7.12 5.861.418.334.865.667 1.284 1 .195.223.39.473.558.695.084.11.28.139.391.055.056.056.14.111.196.167a.398.398 0 0 0 .167.056.255.255 0 0 0 .224-.111.394.394 0 0 0 .055-.167c.029 0 .028.028.056.028a.318.318 0 0 0 .224-.084l5.082-5.528a.309.309 0 0 0 0-.444Zm-14.63-1.917a.485.485 0 0 0 .111.14c.586.5 1.2 1 1.843 1.555l-2.569-1.945-.251-.166c-.056-.028-.112-.084-.168-.111l-.195-.167.056-.056.055-.055.112-.111c.866-.861 2.346-2.306 3.1-3.028-.81.805-2.43 3.167-2.095 3.944Zm8.767 6.89-2.122-1.612a44.713 44.713 0 0 0-2.625-2.5c1.145.861 2.122 1.611 2.262 1.75 1.117.972 1.06.806 1.815 1.445l.921.666a1.06 1.06 0 0 1-.251.25Zm.558.416-.056-.028c.084-.055.168-.111.252-.194l-.196.222ZM1.089 5.75c.055.361.14.722.195 1.056.335 1.833.67 3.5 1.284 4.75l.252.944c.084.361.223.806.363.917 1.424 1.25 3.602 3.11 5.947 4.889a.295.295 0 0 0 .363 0s0 .027.028.027a.254.254 0 0 0 .196.084.318.318 0 0 0 .223-.084c2.988-3.305 5.221-6.027 6.813-8.305.112-.111.14-.278.14-.417.111-.111.195-.25.307-.333.111-.111.111-.306 0-.39l-.028-.027c0-.055-.028-.139-.084-.167-.698-.666-1.2-1.138-1.731-1.638-.922-.862-1.871-1.75-3.881-3.75l-.028-.028c-.028-.028-.056-.056-.112-.056-.558-.194-1.703-.389-3.127-.639C6.087 2.223 3.21 1.723.614.944c0 0-.168 0-.196.028l-.083.084c-.028.027-.056.055-.224.11h.056-.056c.028.167.028.278.084.473 0 .055.112.5.112.555l.782 3.556Zm15.496 3.278-.335-.334c.084.112.196.195.335.334Zm-3.546 4.666-.056.056c0-.028.028-.056.056-.056Zm-2.038-10c.168.167.866.834 1.033.973-.726-.334-2.54-1.167-3.379-1.445.838.167 1.983.334 2.346.472ZM1.424 2.306c.419.722.754 3.222 1.089 5.666-.196-.778-.335-1.555-.503-2.278-.251-1.277-.503-2.416-.838-3.416.056 0 .14 0 .252.028Zm-.168-.584c-.112 0-.223-.028-.307-.028 0-.027 0-.055-.028-.055.14 0 .223.028.335.083Zm-1.089.222c0-.027 0-.027 0 0ZM39.453 1.333c.028-.11-.558-.61-.363-.639.42-.027.42-.666 0-.666-.558.028-1.144.166-1.675.25-.977.194-1.982.389-2.96.61-2.205.473-4.383.973-6.561 1.557-.67.194-1.424.333-2.066.666-.224.111-.196.333-.084.472-.056.028-.084.028-.14.056-.195.028-.363.056-.558.083-.168.028-.252.167-.224.334 0 .027.028.083.028.11-1.173 1.556-2.485 3.195-3.909 4.945-1.396 1.611-2.876 3.306-4.356 5.056-4.719 5.5-10.052 11.75-15.943 17.25a.268.268 0 0 0 0 .389c.028.027.056.055.084.055-.084.084-.168.14-.252.222-.056.056-.084.111-.084.167a.605.605 0 0 0-.111.139c-.112.111-.112.305.028.389.111.11.307.11.39-.028.029-.028.029-.056.056-.056a.44.44 0 0 1 .615 0c.335.362.67.723.977 1.028l-.698-.583c-.112-.111-.307-.083-.39.028-.113.11-.085.305.027.389l7.427 6.194c.056.056.112.056.196.056s.14-.028.195-.084l.168-.166c.028.027.083.027.111.027.084 0 .14-.027.196-.083 10.052-10.055 18.15-17.639 27.42-24.417.083-.055.111-.166.111-.25.112 0 .196-.083.251-.194 1.704-5.194 2.039-9.806 2.15-12.083v-.028c0-.028.028-.056.028-.083.028-.056.028-.084.028-.084a1.626 1.626 0 0 0-.111-1.028ZM21.472 9.5c.446-.5.893-1.028 1.34-1.5-2.876 3.778-7.65 9.583-14.408 16.5 4.607-5.083 9.242-10.333 13.068-15ZM5.193 35.778h.084-.084Zm3.462 3.194c-.027-.028-.027-.028 0-.028v.028Zm4.16-3.583c.224-.25.448-.472.699-.722 0 0 0 .027.028.027-.252.223-.475.445-.726.695Zm1.146-1.111c.14-.14.279-.334.446-.5l.028-.028c1.648-1.694 3.351-3.389 5.082-5.111l.028-.028c.419-.333.921-.694 1.368-1.028a379.003 379.003 0 0 0-6.952 6.695ZM24.794 6.472c-.921 1.195-1.954 2.778-2.82 4.028-2.736 3.944-11.532 13.583-11.727 13.75a1976.983 1976.983 0 0 1-8.042 7.639l-.167.167c-.14-.167-.14-.417.028-.556C14.49 19.861 22.03 10.167 25.074 5.917c-.084.194-.14.36-.28.555Zm4.83 5.695c-1.116-.64-1.646-1.64-1.34-2.611l.084-.334c.028-.083.084-.194.14-.277.307-.5.754-.917 1.257-1.167.027 0 .055 0 .083-.028-.028-.056-.028-.139-.028-.222.028-.167.14-.278.335-.278.335 0 1.369.306 1.76.639.111.083.223.194.335.305.14.167.363.445.474.667.056.028.112.306.196.445.056.222.111.472.084.694-.028.028 0 .194-.028.194a2.668 2.668 0 0 1-.363 1.028c-.028.028-.028.056-.056.084l-.028.027c-.14.223-.335.417-.53.556-.643.444-1.369.583-2.095.389 0 0-.195-.084-.28-.111Zm8.154-.834a39.098 39.098 0 0 1-.893 3.167c0 .028-.028.083 0 .111-.056 0-.084.028-.14.056-2.206 1.61-4.356 3.305-6.506 5.028 1.843-1.64 3.686-3.306 5.613-4.945.558-.5.949-1.139 1.06-1.861l.28-1.667v-.055c.14-.334.67-.195.586.166Z",fill:"currentColor"})}),{width:40,height:40,fill:"none"});var vW=J(a.jsxs("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M6 6l4.153 11.793a0.365 .365 0 0 0 .331 .207a0.366 .366 0 0 0 .332 -.207l2.184 -4.793l4.787 -1.994a0.355 .355 0 0 0 .213 -.323a0.355 .355 0 0 0 -.213 -.323l-11.787 -4.36z"}),a.jsx("path",{d:"M13.5 13.5l4.5 4.5"})]}),{fill:"none",width:22,height:22,strokeWidth:1.25}),ZW=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("rect",{x:"4",y:"4",width:"16",height:"16",rx:"2"})]}),BA),qW=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z"})]}),BA),WW=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("circle",{cx:"12",cy:"12",r:"9"})]}),BA),jW=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),a.jsx("line",{x1:"15",y1:"16",x2:"19",y2:"12"}),a.jsx("line",{x1:"15",y1:"8",x2:"19",y2:"12"})]}),BA),TW=J(a.jsx("path",{d:"M4.167 10h11.666",strokeWidth:"1.5"}),mA),zW=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M20 17v-12c0 -1.121 -.879 -2 -2 -2s-2 .879 -2 2v12l2 2l2 -2z"}),a.jsx("path",{d:"M16 7h4"}),a.jsx("path",{d:"M18 19h-13a2 2 0 1 1 0 -4h4a2 2 0 1 0 0 -4h-3"})]}),BA),GE=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{clipRule:"evenodd",d:"m7.643 15.69 7.774-7.773a2.357 2.357 0 1 0-3.334-3.334L4.31 12.357a3.333 3.333 0 0 0-.977 2.357v1.953h1.953c.884 0 1.732-.352 2.357-.977Z"}),a.jsx("path",{d:"m11.25 5.417 3.333 3.333"})]}),mA),ql=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"4",y1:"20",x2:"7",y2:"20"}),a.jsx("line",{x1:"14",y1:"20",x2:"21",y2:"20"}),a.jsx("line",{x1:"6.9",y1:"15",x2:"13.8",y2:"15"}),a.jsx("line",{x1:"10.2",y1:"6.3",x2:"16",y2:"20"}),a.jsx("polyline",{points:"5 20 11 4 13 4 20 20"})]}),BA),PW=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{d:"M12.5 6.667h.01"}),a.jsx("path",{d:"M4.91 2.625h10.18a2.284 2.284 0 0 1 2.285 2.284v10.182a2.284 2.284 0 0 1-2.284 2.284H4.909a2.284 2.284 0 0 1-2.284-2.284V4.909a2.284 2.284 0 0 1 2.284-2.284Z"}),a.jsx("path",{d:"m3.333 12.5 3.334-3.333c.773-.745 1.726-.745 2.5 0l4.166 4.166"}),a.jsx("path",{d:"m11.667 11.667.833-.834c.774-.744 1.726-.744 2.5 0l1.667 1.667"})]}),mA),OW=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M19 20h-10.5l-4.21 -4.3a1 1 0 0 1 0 -1.41l10 -10a1 1 0 0 1 1.41 0l5 5a1 1 0 0 1 0 1.41l-9.2 9.3"}),a.jsx("path",{d:"M18 13.3l-6.3 -6.3"})]}),BA),Bs=J(a.jsx("path",{strokeWidth:"1.25",d:"M10 4.167v11.666M4.167 10h11.666"}),mA),gs=J(a.jsx("path",{d:"M5 10h10",strokeWidth:"1.25"}),mA),VW=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M21 21l-6 -6"}),a.jsx("path",{d:"M3.268 12.043a7.017 7.017 0 0 0 6.634 4.957a7.012 7.012 0 0 0 7.043 -6.131a7 7 0 0 0 -5.314 -7.672a7.021 7.021 0 0 0 -8.241 4.403"}),a.jsx("path",{d:"M3 4v4h4"})]}),BA),mB=J(a.jsx("path",{strokeWidth:"1.25",d:"M3.333 5.833h13.334M8.333 9.167v5M11.667 9.167v5M4.167 5.833l.833 10c0 .92.746 1.667 1.667 1.667h6.666c.92 0 1.667-.746 1.667-1.667l.833-10M7.5 5.833v-2.5c0-.46.373-.833.833-.833h3.334c.46 0 .833.373.833.833v2.5"}),mA),XW=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("polyline",{points:"12 16 18 10 12 4"}),a.jsx("polyline",{points:"8 4 2 10 8 16"})]}),mA),Ut=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{d:"M14.375 6.458H8.958a2.5 2.5 0 0 0-2.5 2.5v5.417a2.5 2.5 0 0 0 2.5 2.5h5.417a2.5 2.5 0 0 0 2.5-2.5V8.958a2.5 2.5 0 0 0-2.5-2.5Z"}),a.jsx("path",{clipRule:"evenodd",d:"M11.667 3.125c.517 0 .986.21 1.325.55.34.338.55.807.55 1.325v1.458H8.333c-.485 0-.927.185-1.26.487-.343.312-.57.75-.609 1.24l-.005 5.357H5a1.87 1.87 0 0 1-1.326-.55 1.87 1.87 0 0 1-.549-1.325V5c0-.518.21-.987.55-1.326.338-.34.807-.549 1.325-.549h6.667Z"})]}),mA),Lt=J(a.jsx("path",{clipRule:"evenodd",d:"M10 2.5h.328a6.25 6.25 0 0 0 6.6 10.372A7.5 7.5 0 1 1 10 2.493V2.5Z",stroke:"currentColor"}),mA),xt=J(a.jsx("g",{stroke:"currentColor",strokeLinejoin:"round",children:a.jsx("path",{d:"M10 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM10 4.167V2.5M14.167 5.833l1.166-1.166M15.833 10H17.5M14.167 14.167l1.166 1.166M10 15.833V17.5M5.833 14.167l-1.166 1.166M5 10H3.333M5.833 5.833 4.667 4.667"})}),{...mA,strokeWidth:1.5}),Wl=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"4",y1:"6",x2:"20",y2:"6"}),a.jsx("line",{x1:"4",y1:"12",x2:"20",y2:"12"}),a.jsx("line",{x1:"4",y1:"18",x2:"20",y2:"18"})]}),BA),vi=J(a.jsx("path",{strokeWidth:"1.25",d:"M3.333 14.167v1.666c0 .92.747 1.667 1.667 1.667h10c.92 0 1.667-.746 1.667-1.667v-1.666M5.833 9.167 10 13.333l4.167-4.166M10 3.333v10"}),mA),YQ=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("circle",{cx:"12",cy:"12",r:"9"}),a.jsx("line",{x1:"12",y1:"17",x2:"12",y2:"17.01"}),a.jsx("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"})]}),BA),_W=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("circle",{cx:"12",cy:"12",r:"9"}),a.jsx("line",{x1:"12",y1:"17",x2:"12",y2:"17.01"}),a.jsx("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"})]}),BA),Es=J(a.jsx("path",{strokeWidth:"1.25",d:"M9.167 5.833H5.833c-1.254 0-2.5 1.282-2.5 2.5v5.834c0 1.283 1.252 2.5 2.5 2.5h5.834c1.251 0 2.5-1.25 2.5-2.5v-3.334M8.333 11.667l8.334-8.334M12.5 3.333h4.167V7.5"}),mA),jl=J(a.jsx("path",{d:"M7.5 15.833c-3.583 1.167-3.583-2.083-5-2.5m10 4.167v-2.917c0-.833.083-1.166-.417-1.666 2.334-.25 4.584-1.167 4.584-5a3.833 3.833 0 0 0-1.084-2.667 3.5 3.5 0 0 0-.083-2.667s-.917-.25-2.917 1.084a10.25 10.25 0 0 0-5.166 0C5.417 2.333 4.5 2.583 4.5 2.583a3.5 3.5 0 0 0-.083 2.667 3.833 3.833 0 0 0-1.084 2.667c0 3.833 2.25 4.75 4.584 5-.5.5-.5 1-.417 1.666V17.5",strokeWidth:"1.25"}),mA),$W=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{d:"M7.5 10.833a.833.833 0 1 0 0-1.666.833.833 0 0 0 0 1.666ZM12.5 10.833a.833.833 0 1 0 0-1.666.833.833 0 0 0 0 1.666ZM6.25 6.25c2.917-.833 4.583-.833 7.5 0M5.833 13.75c2.917.833 5.417.833 8.334 0"}),a.jsx("path",{d:"M12.917 14.167c0 .833 1.25 2.5 1.666 2.5 1.25 0 2.361-1.39 2.917-2.5.556-1.39.417-4.861-1.25-9.584-1.214-.846-2.5-1.116-3.75-1.25l-.833 2.084M7.083 14.167c0 .833-1.13 2.5-1.526 2.5-1.191 0-2.249-1.39-2.778-2.5-.529-1.39-.397-4.861 1.19-9.584 1.157-.846 2.318-1.116 3.531-1.25l.833 2.084"})]}),mA),Aj=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M4 4l11.733 16h4.267l-11.733 -16z"}),a.jsx("path",{d:"M4 20l6.768 -6.768m2.46 -2.46l6.772 -6.772"})]}),BA),uj=J(a.jsx("polyline",{fill:"none",stroke:"currentColor",points:"20 6 9 17 4 12"}),{width:24,height:24}),Nt=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{d:"M8.333 11.667a2.917 2.917 0 0 0 4.167 0l3.333-3.334a2.946 2.946 0 1 0-4.166-4.166l-.417.416"}),a.jsx("path",{d:"M11.667 8.333a2.917 2.917 0 0 0-4.167 0l-3.333 3.334a2.946 2.946 0 0 0 4.166 4.166l.417-.416"})]}),mA),ej=J("M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z",{width:448,height:512}),Cj=J("M252 54L203 8a28 27 0 00-20-8H28C12 0 0 12 0 27v195c0 15 12 26 28 26h204c15 0 28-11 28-26V73a28 27 0 00-8-19zM130 213c-21 0-37-16-37-36 0-19 16-35 37-35 20 0 37 16 37 35 0 20-17 36-37 36zm56-169v56c0 4-4 6-7 6H44c-4 0-7-2-7-6V42c0-4 3-7 7-7h133l4 2 3 2a7 7 0 012 5z M296 201l87 95-188 205-78 9c-10 1-19-8-18-20l9-84zm141-14l-41-44a31 31 0 00-46 0l-38 41 87 95 38-42c13-14 13-36 0-50z",{width:448,height:512}),HQ=J(a.jsx("path",{d:"m9.257 6.351.183.183H15.819c.34 0 .727.182 1.051.506.323.323.505.708.505 1.05v5.819c0 .316-.183.7-.52 1.035-.337.338-.723.522-1.037.522H4.182c-.352 0-.74-.181-1.058-.5-.318-.318-.499-.705-.499-1.057V5.182c0-.351.181-.736.5-1.054.32-.321.71-.503 1.057-.503H6.53l2.726 2.726Z",strokeWidth:"1.25"}),mA);J("M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z",{width:384,height:512});var Bj=J("M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"),ja=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M5 16l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z"}),a.jsx("path",{d:"M13.737 9.737c2.299 -2.3 3.23 -5.095 2.081 -6.245c-1.15 -1.15 -3.945 -.217 -6.244 2.082c-2.3 2.299 -3.231 5.095 -2.082 6.244c1.15 1.15 3.946 .218 6.245 -2.081z"}),a.jsx("path",{d:"M7.492 11.818c.362 .362 .768 .676 1.208 .934l6.895 4.047c1.078 .557 2.255 -.075 3.692 -1.512c1.437 -1.437 2.07 -2.614 1.512 -3.692c-.372 -.718 -1.72 -3.017 -4.047 -6.895a6.015 6.015 0 0 0 -.934 -1.208"})]}),BA),Tl=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M15 8h.01"}),a.jsx("path",{d:"M12 20h-5a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v5"}),a.jsx("path",{d:"M4 15l4 -4c.928 -.893 2.072 -.893 3 0l4 4"}),a.jsx("path",{d:"M14 14l1 -1c.617 -.593 1.328 -.793 2.009 -.598"}),a.jsx("path",{d:"M19 16v6"}),a.jsx("path",{d:"M22 19l-3 3l-3 -3"})]}),BA),gj=J("M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z",{width:512,height:512});J("M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z",{width:448,height:512});J("M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z",{width:448,height:512});var Ej=J("M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z");J("M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z");var Is=J(a.jsx("path",{d:"M7.5 10.833 4.167 7.5 7.5 4.167M4.167 7.5h9.166a3.333 3.333 0 0 1 0 6.667H12.5",strokeWidth:"1.25"}),mA),is=J(a.jsx("path",{d:"M12.5 10.833 15.833 7.5 12.5 4.167M15.833 7.5H6.667a3.333 3.333 0 1 0 0 6.667H7.5",strokeWidth:"1.25"}),mA),Ij=J("M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z",{mirror:!0});J(a.jsx("path",{d:"M5 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM15 7.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM15 17.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM7.25 8.917l5.5-2.834M7.25 11.083l5.5 2.834",strokeWidth:"1.5"}),mA);J("M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z");J("M16 5l-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z",{width:24,height:24});J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"}),a.jsx("path",{d:"M12 14v-11"}),a.jsx("path",{d:"M9 6l3 -3l3 3"})]}),BA);J(a.jsxs(a.Fragment,{children:[a.jsx("path",{fill:"currentColor",d:"M40 5.6v6.1l-4.1.7c-8.9 1.4-16.5 6.9-20.6 15C13 32 10.9 43 12.4 43c.4 0 2.4-1.3 4.4-3 5-3.9 12.1-7 18.2-7.7l5-.6v12.8l11.2-11.3L62.5 22 51.2 10.8 40-.5v6.1zm10.2 22.6L44 34.5v-6.8l-6.9.6c-3.9.3-9.8 1.7-13.2 3.1-3.5 1.4-6.5 2.4-6.7 2.2-.9-1 3-7.5 6.4-10.8C28 18.6 34.4 16 40.1 16c3.7 0 3.9-.1 3.9-3.2V9.5l6.2 6.3 6.3 6.2-6.3 6.2z"}),a.jsx("path",{stroke:"currentColor",fill:"currentColor",d:"M0 36v20h48v-6.2c0-6 0-6.1-2-4.3-1.1 1-2 2.9-2 4.2V52H4V34c0-17.3-.1-18-2-18s-2 .7-2 20z"})]}),{width:64,height:64});J(a.jsx("path",{stroke:"currentColor",strokeWidth:"40",fill:"currentColor",d:"M148 560a318 318 0 0 0 522 110 316 316 0 0 0 0-450 316 316 0 0 0-450 0c-11 11-21 22-30 34v4h47c25 0 46 21 46 46s-21 45-46 45H90c-13 0-25-6-33-14-9-9-14-20-14-33V156c0-25 20-45 45-45s45 20 45 45v32l1 1a401 401 0 0 1 623 509l212 212a42 42 0 0 1-59 59L698 757A401 401 0 0 1 65 570a42 42 0 0 1 83-10z"}),{width:1024});var zl=a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M12 10l0 10"}),a.jsx("path",{d:"M12 10l4 4"}),a.jsx("path",{d:"M12 10l-4 4"}),a.jsx("path",{d:"M4 4l16 0"})]}),Pl=a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M12 5l0 14"}),a.jsx("path",{d:"M16 9l-4 -4"}),a.jsx("path",{d:"M8 9l4 -4"})]}),as=J(Pl,BA),ts=J(Pl,{...BA,style:{transform:"rotate(180deg)"}}),Qs=J(zl,BA),os=J(zl,{...BA,style:{transform:"rotate(180deg)"}}),rs=J(a.jsxs(a.Fragment,{children:[a.jsxs("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[a.jsx("path",{d:"M3.333 3.333h13.334",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M13.542 6.458h-.417c-.92 0-1.667.747-1.667 1.667v7.083c0 .92.746 1.667 1.667 1.667h.417c.92 0 1.666-.746 1.666-1.667V8.125c0-.92-.746-1.667-1.666-1.667ZM6.875 6.458h-.417c-.92 0-1.666.747-1.666 1.667v3.75c0 .92.746 1.667 1.666 1.667h.417c.92 0 1.667-.746 1.667-1.667v-3.75c0-.92-.747-1.667-1.667-1.667Z"})]}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),ss=J(a.jsxs(a.Fragment,{children:[a.jsxs("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[a.jsx("path",{d:"M3.333 16.667h13.334",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M6.875 3.125h-.417c-.92 0-1.666.746-1.666 1.667v7.083c0 .92.746 1.667 1.666 1.667h.417c.92 0 1.667-.746 1.667-1.667V4.792c0-.92-.747-1.667-1.667-1.667ZM13.542 5.817h-.417c-.92 0-1.667.747-1.667 1.667v4.391c0 .92.746 1.667 1.667 1.667h.417c.92 0 1.666-.746 1.666-1.667V7.484c0-.92-.746-1.667-1.666-1.667Z"})]}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),ns=J(a.jsxs(a.Fragment,{children:[a.jsxs("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[a.jsx("path",{d:"M3.333 3.333v13.334",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M15.208 4.792H8.125c-.92 0-1.667.746-1.667 1.666v.417c0 .92.747 1.667 1.667 1.667h7.083c.92 0 1.667-.747 1.667-1.667v-.417c0-.92-.746-1.666-1.667-1.666ZM12.516 11.458H8.125c-.92 0-1.667.746-1.667 1.667v.417c0 .92.747 1.666 1.667 1.666h4.391c.92 0 1.667-.746 1.667-1.666v-.417c0-.92-.746-1.667-1.667-1.667Z"})]}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),ls=J(a.jsxs(a.Fragment,{children:[a.jsxs("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[a.jsx("path",{d:"M16.667 3.333v13.334",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M11.875 4.792H4.792c-.92 0-1.667.746-1.667 1.666v.417c0 .92.746 1.667 1.667 1.667h7.083c.92 0 1.667-.747 1.667-1.667v-.417c0-.92-.746-1.666-1.667-1.666ZM11.683 11.458H7.292c-.92 0-1.667.746-1.667 1.667v.417c0 .92.746 1.666 1.667 1.666h4.39c.921 0 1.667-.746 1.667-1.666v-.417c0-.92-.746-1.667-1.666-1.667Z"})]}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),ij=J(a.jsxs(a.Fragment,{children:[a.jsxs("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[a.jsx("path",{d:"M16.667 3.333v13.334M3.333 3.333v13.334",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M14.375 10.208v-.416c0-.92-.746-1.667-1.667-1.667H7.292c-.92 0-1.667.746-1.667 1.667v.416c0 .92.746 1.667 1.667 1.667h5.416c.92 0 1.667-.746 1.667-1.667Z"})]}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),aj=J(a.jsxs(a.Fragment,{children:[a.jsxs("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",children:[a.jsx("path",{d:"M3.333 3.333h13.334M3.333 16.667h13.334",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M10.208 5.625h-.416c-.92 0-1.667.746-1.667 1.667v5.416c0 .92.746 1.667 1.667 1.667h.416c.92 0 1.667-.746 1.667-1.667V7.292c0-.92-.746-1.667-1.667-1.667Z"})]}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),Ds=J(a.jsxs("g",{stroke:"currentColor",strokeWidth:"1.25",children:[a.jsx("path",{d:"M1.667 10h2.916",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M8.333 10h3.334",strokeLinejoin:"round"}),a.jsx("path",{d:"M15.417 10h2.916",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M6.875 4.792h-.417c-.92 0-1.666.746-1.666 1.666v7.084c0 .92.746 1.666 1.666 1.666h.417c.92 0 1.667-.746 1.667-1.666V6.458c0-.92-.747-1.666-1.667-1.666ZM13.542 6.458h-.417c-.92 0-1.667.747-1.667 1.667v3.75c0 .92.746 1.667 1.667 1.667h.417c.92 0 1.666-.746 1.666-1.667v-3.75c0-.92-.746-1.667-1.666-1.667Z"})]}),mA),cs=J(a.jsxs("g",{stroke:"currentColor",strokeWidth:"1.25",children:[a.jsx("path",{d:"M10 18.333v-2.916",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M10 11.667V8.333",strokeLinejoin:"round"}),a.jsx("path",{d:"M10 4.583V1.667",strokeLinecap:"round",strokeLinejoin:"round"}),a.jsx("path",{d:"M4.792 13.125v.417c0 .92.746 1.666 1.666 1.666h7.084c.92 0 1.666-.746 1.666-1.666v-.417c0-.92-.746-1.667-1.666-1.667H6.458c-.92 0-1.666.746-1.666 1.667ZM6.458 6.458v.417c0 .92.747 1.667 1.667 1.667h3.75c.92 0 1.667-.747 1.667-1.667v-.417c0-.92-.746-1.666-1.667-1.666h-3.75c-.92 0-1.667.746-1.667 1.666Z"})]}),mA),Ol=J(a.jsxs("g",{strokeWidth:"1.5",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("circle",{cx:"9",cy:"7",r:"4"}),a.jsx("path",{d:"M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"}),a.jsx("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"}),a.jsx("path",{d:"M21 21v-2a4 4 0 0 0 -3 -3.85"})]}),BA);J("M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z");J("M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z");var Gg=J(a.jsxs(a.Fragment,{children:[a.jsx("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:a.jsx("path",{d:"M15 5 5 15M5 5l10 10"})}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA);J("M464 0c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48H176c-26.51 0-48-21.49-48-48V48c0-26.51 21.49-48 48-48h288M176 416c-44.112 0-80-35.888-80-80V128H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h288c26.51 0 48-21.49 48-48v-48H176z",{mirror:!0});J("M11.553 22.894a.998.998 0 00.894 0s3.037-1.516 5.465-4.097C19.616 16.987 21 14.663 21 12V5a1 1 0 00-.649-.936l-8-3a.998.998 0 00-.702 0l-8 3A1 1 0 003 5v7c0 2.663 1.384 4.987 3.088 6.797 2.428 2.581 5.465 4.097 5.465 4.097zm-1.303-8.481l6.644-6.644a.856.856 0 111.212 1.212l-7.25 7.25a.856.856 0 01-1.212 0l-3.75-3.75a.856.856 0 111.212-1.212l3.144 3.144z",{width:24});J("M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm32-48h224V288l-23.5-23.5c-4.7-4.7-12.3-4.7-17 0L176 352l-39.5-39.5c-4.7-4.7-12.3-4.7-17 0L80 352v64zm48-240c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48z",{width:384,height:512});var ds=QA.memo(({theme:A})=>J(a.jsxs(a.Fragment,{children:[a.jsx("path",{d:"M25 26H111V111H25",fill:Ie()}),a.jsx("path",{d:"M25 111C25 80.2068 25 49.4135 25 26M25 26C48.6174 26 72.2348 26 111 26H25ZM25 26C53.3671 26 81.7343 26 111 26H25ZM111 26C111 52.303 111 78.606 111 111V26ZM111 26C111 51.2947 111 76.5893 111 111V26ZM111 111C87.0792 111 63.1585 111 25 111H111ZM111 111C87.4646 111 63.9293 111 25 111H111ZM25 111C25 81.1514 25 51.3028 25 26V111Z",stroke:Ie(),strokeWidth:"2"}),a.jsx("path",{d:"M100 100H160V160H100",fill:Ie()}),a.jsx("path",{d:"M100 160C100 144.106 100 128.211 100 100M100 100C117.706 100 135.412 100 160 100H100ZM100 100C114.214 100 128.428 100 160 100H100ZM160 100C160 120.184 160 140.369 160 160V100ZM160 100C160 113.219 160 126.437 160 160V100ZM160 160C145.534 160 131.068 160 100 160H160ZM160 160C143.467 160 126.934 160 100 160H160ZM100 160C100 143.661 100 127.321 100 100V160Z",stroke:Ie(),strokeWidth:"2"}),a.jsxs("g",{fill:Zl(A),stroke:Ie(),strokeWidth:"6",children:[a.jsx("rect",{x:"2.5",y:"2.5",width:"30",height:"30"}),a.jsx("rect",{x:"2.5",y:"149.5",width:"30",height:"30"}),a.jsx("rect",{x:"147.5",y:"149.5",width:"30",height:"30"}),a.jsx("rect",{x:"147.5",y:"2.5",width:"30",height:"30"})]})]}),{width:182,height:182,mirror:!0})),ws=QA.memo(({theme:A})=>J(a.jsxs(a.Fragment,{children:[a.jsx("path",{d:"M25 26H111V111H25",fill:Ie()}),a.jsx("path",{d:"M25 111C25 80.2068 25 49.4135 25 26M25 26C48.6174 26 72.2348 26 111 26H25ZM25 26C53.3671 26 81.7343 26 111 26H25ZM111 26C111 52.303 111 78.606 111 111V26ZM111 26C111 51.2947 111 76.5893 111 111V26ZM111 111C87.0792 111 63.1585 111 25 111H111ZM111 111C87.4646 111 63.9293 111 25 111H111ZM25 111C25 81.1514 25 51.3028 25 26V111Z",stroke:Ie(),strokeWidth:"2"}),a.jsx("path",{d:"M100 100H160V160H100",fill:Ie()}),a.jsx("path",{d:"M100 160C100 144.106 100 128.211 100 100M100 100C117.706 100 135.412 100 160 100H100ZM100 100C114.214 100 128.428 100 160 100H100ZM160 100C160 120.184 160 140.369 160 160V100ZM160 100C160 113.219 160 126.437 160 160V100ZM160 160C145.534 160 131.068 160 100 160H160ZM160 160C143.467 160 126.934 160 100 160H160ZM100 160C100 143.661 100 127.321 100 100V160Z",stroke:Ie(),strokeWidth:"2"}),a.jsxs("g",{fill:Zl(A),stroke:Ie(),strokeWidth:"6",children:[a.jsx("rect",{x:"2.5",y:"2.5",width:"30",height:"30"}),a.jsx("rect",{x:"78.5",y:"149.5",width:"30",height:"30"}),a.jsx("rect",{x:"147.5",y:"149.5",width:"30",height:"30"}),a.jsx("rect",{x:"147.5",y:"78.5",width:"30",height:"30"}),a.jsx("rect",{x:"105.5",y:"2.5",width:"30",height:"30"}),a.jsx("rect",{x:"2.5",y:"102.5",width:"30",height:"30"})]})]}),{width:182,height:182,mirror:!0})),tj=J(a.jsx("g",{strokeWidth:1.25,children:a.jsx("path",{d:"M5.879 2.625h8.242a3.27 3.27 0 0 1 3.254 3.254v8.242a3.27 3.27 0 0 1-3.254 3.254H5.88a3.27 3.27 0 0 1-3.254-3.254V5.88A3.27 3.27 0 0 1 5.88 2.626l-.001-.001ZM4.518 16.118l7.608-12.83m.198 13.934 5.051-9.897M2.778 9.675l9.348-6.387m-7.608 12.83 12.857-8.793"})}),mA),Qj=J(a.jsxs(a.Fragment,{children:[a.jsx("path",{d:"M5.879 2.625h8.242a3.254 3.254 0 0 1 3.254 3.254v8.242a3.254 3.254 0 0 1-3.254 3.254H5.88a3.254 3.254 0 0 1-3.254-3.254V5.88a3.254 3.254 0 0 1 3.254-3.254Z",stroke:"currentColor",strokeWidth:"1.25"}),a.jsx("mask",{id:"FillHachureIcon",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:2,y:2,width:16,height:16,children:a.jsx("path",{d:"M5.879 2.625h8.242a3.254 3.254 0 0 1 3.254 3.254v8.242a3.254 3.254 0 0 1-3.254 3.254H5.88a3.254 3.254 0 0 1-3.254-3.254V5.88a3.254 3.254 0 0 1 3.254-3.254Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"1.25"})}),a.jsx("g",{mask:"url(#FillHachureIcon)",children:a.jsx("path",{d:"M2.258 15.156 15.156 2.258M7.324 20.222 20.222 7.325m-20.444 5.35L12.675-.222m-8.157 18.34L17.416 5.22",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})})]}),mA),oj=J(a.jsxs(a.Fragment,{children:[a.jsxs("g",{clipPath:"url(#a)",children:[a.jsx("path",{d:"M5.879 2.625h8.242a3.254 3.254 0 0 1 3.254 3.254v8.242a3.254 3.254 0 0 1-3.254 3.254H5.88a3.254 3.254 0 0 1-3.254-3.254V5.88a3.254 3.254 0 0 1 3.254-3.254Z",stroke:"currentColor",strokeWidth:"1.25"}),a.jsx("mask",{id:"FillCrossHatchIcon",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:-1,y:-1,width:22,height:22,children:a.jsx("path",{d:"M2.426 15.044 15.044 2.426M7.383 20 20 7.383M0 12.617 12.617 0m-7.98 17.941L17.256 5.324m-2.211 12.25L2.426 4.956M20 12.617 7.383 0m5.234 20L0 7.383m17.941 7.98L5.324 2.745",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),a.jsx("g",{mask:"url(#FillCrossHatchIcon)",children:a.jsx("path",{d:"M14.121 2H5.88A3.879 3.879 0 0 0 2 5.879v8.242A3.879 3.879 0 0 0 5.879 18h8.242A3.879 3.879 0 0 0 18 14.121V5.88A3.879 3.879 0 0 0 14.121 2Z",fill:"currentColor"})})]}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),rj=J(a.jsxs(a.Fragment,{children:[a.jsx("g",{clipPath:"url(#a)",children:a.jsx("path",{d:"M4.91 2.625h10.18a2.284 2.284 0 0 1 2.285 2.284v10.182a2.284 2.284 0 0 1-2.284 2.284H4.909a2.284 2.284 0 0 1-2.284-2.284V4.909a2.284 2.284 0 0 1 2.284-2.284Z",stroke:"currentColor",strokeWidth:"1.25"})}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),{...mA,fill:"currentColor"}),Vl=J(a.jsx(a.Fragment,{children:a.jsx("path",{d:"M4.167 10h11.666",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),mA),sj=J(a.jsx("path",{d:"M5 10h10",stroke:"currentColor",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round"}),mA),nj=J(a.jsx("path",{d:"M5 10h10",stroke:"currentColor",strokeWidth:"3.75",strokeLinecap:"round",strokeLinejoin:"round"}),mA);QA.memo(({theme:A})=>J(a.jsx("path",{d:"M6 10H34",stroke:Ie(),strokeWidth:2,fill:"none",strokeLinecap:"round"}),{width:40,height:20}));var lj=J(a.jsxs("g",{strokeWidth:"2",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M5 12h2"}),a.jsx("path",{d:"M17 12h2"}),a.jsx("path",{d:"M11 12h2"})]}),BA),Dj=J(a.jsxs("g",{strokeWidth:"2",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M4 12v.01"}),a.jsx("path",{d:"M8 12v.01"}),a.jsx("path",{d:"M12 12v.01"}),a.jsx("path",{d:"M16 12v.01"}),a.jsx("path",{d:"M20 12v.01"})]}),BA),cj=J(a.jsx("path",{d:"M2.5 12.038c1.655-.885 5.9-3.292 8.568-4.354 2.668-1.063.101 2.821 1.32 3.104 1.218.283 5.112-1.814 5.112-1.814",strokeWidth:"1.25"}),mA),dj=J(a.jsx("path",{d:"M2.5 12.563c1.655-.886 5.9-3.293 8.568-4.355 2.668-1.062.101 2.822 1.32 3.105 1.218.283 5.112-1.814 5.112-1.814m-13.469 2.23c2.963-1.586 6.13-5.62 7.468-4.998 1.338.623-1.153 4.11-.132 5.595 1.02 1.487 6.133-1.43 6.133-1.43",strokeWidth:"1.25"}),mA),wj=J(a.jsx("path",{d:"M2.5 11.936c1.737-.879 8.627-5.346 10.42-5.268 1.795.078-.418 5.138.345 5.736.763.598 3.53-1.789 4.235-2.147M2.929 9.788c1.164-.519 5.47-3.28 6.987-3.114 1.519.165 1 3.827 2.121 4.109 1.122.281 3.839-2.016 4.606-2.42",strokeWidth:"1.25"}),mA),hj=J(a.jsxs("svg",{strokeWidth:"1.5",children:[a.jsx("path",{d:"M3.33334 9.99998V6.66665C3.33334 6.04326 3.33403 4.9332 3.33539 3.33646C4.95233 3.33436 6.06276 3.33331 6.66668 3.33331H10"}),a.jsx("path",{d:"M13.3333 3.33331V3.34331"}),a.jsx("path",{d:"M16.6667 3.33331V3.34331"}),a.jsx("path",{d:"M16.6667 6.66669V6.67669"}),a.jsx("path",{d:"M16.6667 10V10.01"}),a.jsx("path",{d:"M3.33334 13.3333V13.3433"}),a.jsx("path",{d:"M16.6667 13.3333V13.3433"}),a.jsx("path",{d:"M3.33334 16.6667V16.6767"}),a.jsx("path",{d:"M6.66666 16.6667V16.6767"}),a.jsx("path",{d:"M10 16.6667V16.6767"}),a.jsx("path",{d:"M13.3333 16.6667V16.6767"}),a.jsx("path",{d:"M16.6667 16.6667V16.6767"})]}),mA),Fj=J(a.jsxs("g",{strokeWidth:"1.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M4 12v-4a4 4 0 0 1 4 -4h4"}),a.jsx("line",{x1:"16",y1:"4",x2:"16",y2:"4.01"}),a.jsx("line",{x1:"20",y1:"4",x2:"20",y2:"4.01"}),a.jsx("line",{x1:"20",y1:"8",x2:"20",y2:"8.01"}),a.jsx("line",{x1:"20",y1:"12",x2:"20",y2:"12.01"}),a.jsx("line",{x1:"4",y1:"16",x2:"4",y2:"16.01"}),a.jsx("line",{x1:"20",y1:"16",x2:"20",y2:"16.01"}),a.jsx("line",{x1:"4",y1:"20",x2:"4",y2:"20.01"}),a.jsx("line",{x1:"8",y1:"20",x2:"8",y2:"20.01"}),a.jsx("line",{x1:"12",y1:"20",x2:"12",y2:"20.01"}),a.jsx("line",{x1:"16",y1:"20",x2:"16",y2:"20.01"}),a.jsx("line",{x1:"20",y1:"20",x2:"20",y2:"20.01"})]}),BA),pj=J(a.jsxs("g",{stroke:"currentColor",opacity:.3,strokeWidth:2,children:[a.jsx("path",{d:"M12 12l9 0"}),a.jsx("path",{d:"M3 9l6 6"}),a.jsx("path",{d:"M3 15l6 -6"})]}),BA),mj=QA.memo(({flip:A=!1})=>J(a.jsxs("g",{transform:A?"translate(40, 0) scale(-1, 1)":"",stroke:"currentColor",strokeWidth:2,fill:"none",children:[a.jsx("path",{d:"M34 10H6M34 10L27 5M34 10L27 15"}),a.jsx("path",{d:"M27.5 5L34.5 10L27.5 15"})]}),{width:40,height:20})),kj=QA.memo(({flip:A=!1})=>J(a.jsxs("g",{stroke:"currentColor",fill:"currentColor",transform:A?"translate(40, 0) scale(-1, 1)":"",children:[a.jsx("path",{d:"M32 10L6 10",strokeWidth:2}),a.jsx("circle",{r:"4",transform:"matrix(-1 0 0 1 30 10)"})]}),{width:40,height:20})),yj=QA.memo(({flip:A=!1})=>J(a.jsxs("g",{stroke:"currentColor",fill:"none",transform:A?"translate(40, 0) scale(-1, 1)":"",strokeWidth:2,children:[a.jsx("path",{d:"M26 10L6 10"}),a.jsx("circle",{r:"4",transform:"matrix(-1 0 0 1 30 10)"})]}),{width:40,height:20})),bj=QA.memo(({flip:A=!1})=>J(a.jsx("g",{transform:A?"translate(40, 0) scale(-1, 1)":"",children:a.jsx("path",{d:"M34 10H5.99996M34 10L34 5M34 10L34 15",stroke:"currentColor",strokeWidth:2,fill:"none"})}),{width:40,height:20})),Gj=QA.memo(({flip:A=!1})=>J(a.jsxs("g",{stroke:"currentColor",fill:"currentColor",transform:A?"translate(40, 0) scale(-1, 1)":"",children:[a.jsx("path",{d:"M32 10L6 10",strokeWidth:2}),a.jsx("path",{d:"M27.5 5.5L34.5 10L27.5 14.5L27.5 5.5"})]}),{width:40,height:20})),Uj=QA.memo(({flip:A=!1})=>J(a.jsxs("g",{stroke:"currentColor",fill:"none",transform:A?"translate(40, 0) scale(-1, 1)":"",strokeWidth:2,strokeLinejoin:"round",children:[a.jsx("path",{d:"M6,9.5H27"}),a.jsx("path",{d:"M27,5L34,10L27,14Z",fill:"none"})]}),{width:40,height:20})),Lj=QA.memo(({flip:A=!1})=>J(a.jsxs("g",{stroke:"currentColor",fill:"currentColor",transform:A?"translate(40, 0) scale(-1, 1)":"",strokeLinejoin:"round",strokeWidth:2,children:[a.jsx("path",{d:"M6,9.5H20"}),a.jsx("path",{d:"M27,5L34,10L27,14L20,9.5Z"})]}),{width:40,height:20})),xj=QA.memo(({flip:A=!1})=>J(a.jsxs("g",{stroke:"currentColor",fill:"none",transform:A?"translate(40, 0) scale(-1, 1)":"",strokeLinejoin:"round",strokeWidth:2,children:[a.jsx("path",{d:"M6,9.5H20"}),a.jsx("path",{d:"M27,5L34,10L27,14L20,9.5Z"})]}),{width:40,height:20})),Nj=QA.memo(({flip:A=!1})=>J(a.jsx("g",{stroke:"currentColor",fill:"none",transform:A?"":"translate(40, 0) scale(-1, 1)",strokeLinejoin:"round",strokeWidth:2,children:a.jsx("path",{d:"M34,10 H6 M15,10 L7,5 M15,10 L7,15"})}),{width:40,height:20})),Sj=QA.memo(({flip:A=!1})=>J(a.jsx("g",{stroke:"currentColor",fill:"none",transform:A?"":"translate(40, 0) scale(-1, 1)",strokeLinejoin:"round",strokeWidth:2,children:a.jsx("path",{d:"M34,10 H6 M15,10 L15,15 L15,5"})}),{width:40,height:20})),Rj=QA.memo(({flip:A=!1})=>J(a.jsx("g",{stroke:"currentColor",fill:"none",transform:A?"":"translate(40, 0) scale(-1, 1)",strokeLinejoin:"round",strokeWidth:2,children:a.jsx("path",{d:"M34,10 H6 M15,10 L15,16 L15,4 M15,10 L7,5 M15,10 L7,15"})}),{width:40,height:20})),Mj=J(a.jsxs(a.Fragment,{children:[a.jsx("g",{clipPath:"url(#a)",children:a.jsx("path",{d:"M14.167 6.667a3.333 3.333 0 0 0-3.334-3.334H9.167a3.333 3.333 0 0 0 0 6.667h1.666a3.333 3.333 0 0 1 0 6.667H9.167a3.333 3.333 0 0 1-3.334-3.334",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),fj=J(a.jsxs(a.Fragment,{children:[a.jsx("g",{clipPath:"url(#a)",children:a.jsx("path",{d:"M5 16.667V3.333L10 15l5-11.667v13.334",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),Yj=J(a.jsxs(a.Fragment,{children:[a.jsx("g",{clipPath:"url(#a)",children:a.jsx("path",{d:"M5.833 3.333v13.334h8.334",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),Hj=J(a.jsx(a.Fragment,{children:a.jsx("path",{d:"m1.667 3.333 6.666 13.334M8.333 3.333 1.667 16.667M11.667 3.333v13.334h6.666",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})}),mA),Zi=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M3 7v-2h13v2"}),a.jsx("path",{d:"M10 5v14"}),a.jsx("path",{d:"M12 19h-4"}),a.jsx("path",{d:"M15 13v-1h6v1"}),a.jsx("path",{d:"M18 12v7"}),a.jsx("path",{d:"M17 19h2"})]}),BA),Kj=J(a.jsx(a.Fragment,{children:a.jsxs("g",{stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M7 12h10"}),a.jsx("path",{d:"M7 5v14"}),a.jsx("path",{d:"M17 5v14"}),a.jsx("path",{d:"M15 19h4"}),a.jsx("path",{d:"M15 5h4"}),a.jsx("path",{d:"M5 19h4"}),a.jsx("path",{d:"M5 5h4"})]})}),BA),Ei=J(a.jsx(a.Fragment,{children:a.jsx("g",{stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:a.jsx("path",{d:"M5.833 16.667v-10a3.333 3.333 0 0 1 3.334-3.334h1.666a3.333 3.333 0 0 1 3.334 3.334v10M5.833 10.833h8.334"})})}),mA),St=J(a.jsxs(a.Fragment,{children:[a.jsx("g",{clipPath:"url(#a)",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",children:a.jsx("path",{d:"M5.833 6.667 2.5 10l3.333 3.333M14.167 6.667 17.5 10l-3.333 3.333M11.667 3.333 8.333 16.667"})}),a.jsx("defs",{children:a.jsx("clipPath",{id:"a",children:a.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),mA),Jj=J(a.jsxs("g",{stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"4",y1:"8",x2:"20",y2:"8"}),a.jsx("line",{x1:"4",y1:"12",x2:"12",y2:"12"}),a.jsx("line",{x1:"4",y1:"16",x2:"16",y2:"16"})]}),BA),vj=J(a.jsxs("g",{stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"4",y1:"8",x2:"20",y2:"8"}),a.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),a.jsx("line",{x1:"6",y1:"16",x2:"18",y2:"16"})]}),BA),Zj=J(a.jsxs("g",{stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"4",y1:"8",x2:"20",y2:"8"}),a.jsx("line",{x1:"10",y1:"12",x2:"20",y2:"12"}),a.jsx("line",{x1:"8",y1:"16",x2:"20",y2:"16"})]}),BA),qj=QA.memo(({theme:A})=>J(a.jsxs("g",{strokeWidth:"1.5",stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"4",y1:"4",x2:"20",y2:"4"}),a.jsx("rect",{x:"9",y:"8",width:"6",height:"12",rx:"2"})]}),BA)),Wj=QA.memo(({theme:A})=>J(a.jsxs("g",{strokeWidth:"2",stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"4",y1:"20",x2:"20",y2:"20"}),a.jsx("rect",{x:"9",y:"4",width:"6",height:"12",rx:"2"})]}),BA)),jj=QA.memo(({theme:A})=>J(a.jsxs("g",{strokeWidth:"1.5",stroke:"currentColor",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("line",{x1:"4",y1:"12",x2:"9",y2:"12"}),a.jsx("line",{x1:"15",y1:"12",x2:"20",y2:"12"}),a.jsx("rect",{x:"9",y:"6",width:"6",height:"12",rx:"2"})]}),BA)),Xl=J(a.jsxs("g",{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M21 19h-18l9 -15"}),a.jsx("path",{d:"M20.615 15.171h.015"}),a.jsx("path",{d:"M19.515 11.771h.015"}),a.jsx("path",{d:"M17.715 8.671h.015"}),a.jsx("path",{d:"M15.415 5.971h.015"})]}),BA),Tj=J(a.jsx("path",{d:"M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z",fill:"currentColor"}),{width:640,height:512});J(a.jsx("path",{d:"M480 416C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H150.6C133.7 480 117.4 473.3 105.4 461.3L25.37 381.3C.3786 356.3 .3786 315.7 25.37 290.7L258.7 57.37C283.7 32.38 324.3 32.38 349.3 57.37L486.6 194.7C511.6 219.7 511.6 260.3 486.6 285.3L355.9 416H480zM265.4 416L332.7 348.7L195.3 211.3L70.63 336L150.6 416L265.4 416z"}));var _l=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M8 13v-7.5a1.5 1.5 0 0 1 3 0v6.5"}),a.jsx("path",{d:"M11 5.5v-2a1.5 1.5 0 1 1 3 0v8.5"}),a.jsx("path",{d:"M14 5.5a1.5 1.5 0 0 1 3 0v6.5"}),a.jsx("path",{d:"M17 7.5a1.5 1.5 0 0 1 3 0v8.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7a69.74 69.74 0 0 1 -.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47"})]}),BA),hs=J(a.jsxs(a.Fragment,{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"}),a.jsx("path",{d:"M7 11l5 5l5 -5"}),a.jsx("path",{d:"M12 4l0 12"})]}),BA),KQ=J(a.jsxs(a.Fragment,{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M8 8m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z"}),a.jsx("path",{d:"M16 8v-2a2 2 0 0 0 -2 -2h-8a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h2"})]}),BA),zj=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M7 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"}),a.jsx("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"}),a.jsx("path",{d:"M9.15 14.85l8.85 -10.85"}),a.jsx("path",{d:"M6 4l8.85 10.85"})]}),BA),Pj=J(a.jsxs(a.Fragment,{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"}),a.jsx("path",{d:"M12 17l0 .01"}),a.jsx("path",{d:"M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4"})]}),BA);J(a.jsxs(a.Fragment,{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M7 4v16l13 -8z"})]}),BA);J(a.jsxs(a.Fragment,{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z",strokeWidth:"0",fill:"currentColor"})]}),BA);var Oj=J(a.jsxs(a.Fragment,{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M5 12l5 5l10 -10"})]}),BA),Vj=J(a.jsxs(a.Fragment,{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M10.24 3.957l-8.422 14.06a1.989 1.989 0 0 0 1.7 2.983h16.845a1.989 1.989 0 0 0 1.7 -2.983l-8.423 -14.06a1.989 1.989 0 0 0 -3.4 0z"}),a.jsx("path",{d:"M12 9v4"}),a.jsx("path",{d:"M12 17h.01"})]}),BA),Xj=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M11 7l6 6"}),a.jsx("path",{d:"M4 16l11.7 -11.7a1 1 0 0 1 1.4 0l2.6 2.6a1 1 0 0 1 0 1.4l-11.7 11.7h-4v-4z"})]}),BA),_j=J(a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M12 3l-4 7h8z"}),a.jsx("path",{d:"M17 17m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"}),a.jsx("path",{d:"M4 14m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z"})]}),BA),$l=J(a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M4 7l16 0"}),a.jsx("path",{d:"M4 17l16 0"}),a.jsx("path",{d:"M7 4l0 16"}),a.jsx("path",{d:"M17 4l0 16"})]}),BA),A3=J(a.jsx("path",{fill:"currentColor",d:"M407.48,111.18C335.587,108.103 269.573,152.338 245.08,220C220.587,152.338 154.573,108.103 82.68,111.18C80.285,168.229 107.577,222.632 154.74,254.82C178.908,271.419 193.35,298.951 193.27,328.27L193.27,379.13L296.9,379.13L296.9,328.27C296.816,298.953 311.255,271.42 335.42,254.82C382.596,222.644 409.892,168.233 407.48,111.18Z"})),NI=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{d:"M4.16602 10H15.8327"}),a.jsx("path",{d:"M12.5 13.3333L15.8333 10"}),a.jsx("path",{d:"M12.5 6.66666L15.8333 9.99999"})]}),mA),u3=J(a.jsxs("g",{fill:"none",stroke:"currentColor",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round",transform:"rotate(90 10 10)",children:[a.jsx("path",{clipRule:"evenodd",d:"m9.644 13.69 7.774-7.773a2.357 2.357 0 0 0-3.334-3.334l-7.773 7.774L8 12l1.643 1.69Z"}),a.jsx("path",{d:"m13.25 3.417 3.333 3.333M10 10l2-2M5 15l3-3M2.156 17.894l1-1M5.453 19.029l-.144-1.407M2.377 11.887l.866 1.118M8.354 17.273l-1.194-.758M.953 14.652l1.408.13"})]}),20),e3=J(a.jsxs("g",{stroke:"currentColor",fill:"none",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z"}),a.jsx("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"}),a.jsx("path",{d:"M15 6l3 3"}),a.jsx("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"}),a.jsx("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"})]}),BA);J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z"}),a.jsx("path",{d:"M6 21l15 -15l-3 -3l-15 15l3 3"}),a.jsx("path",{d:"M15 6l3 3"}),a.jsx("path",{d:"M9 3a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"}),a.jsx("path",{d:"M19 13a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2"})]}),BA);J(a.jsxs("g",{stroke:"currentColor",fill:"none",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M11.217 19.384a3.501 3.501 0 0 0 6.783 -1.217v-5.167l-6 -3.35"}),a.jsx("path",{d:"M5.214 15.014a3.501 3.501 0 0 0 4.446 5.266l4.34 -2.534v-6.946"}),a.jsx("path",{d:"M6 7.63c-1.391 -.236 -2.787 .395 -3.534 1.689a3.474 3.474 0 0 0 1.271 4.745l4.263 2.514l6 -3.348"}),a.jsx("path",{d:"M12.783 4.616a3.501 3.501 0 0 0 -6.783 1.217v5.067l6 3.45"}),a.jsx("path",{d:"M18.786 8.986a3.501 3.501 0 0 0 -4.446 -5.266l-4.34 2.534v6.946"}),a.jsx("path",{d:"M18 16.302c1.391 .236 2.787 -.395 3.534 -1.689a3.474 3.474 0 0 0 -1.271 -4.745l-4.308 -2.514l-5.955 3.42"})]}),BA);var $j=J(a.jsxs("g",{stroke:"currentColor",fill:"none",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M4 8v-2a2 2 0 0 1 2 -2h2"}),a.jsx("path",{d:"M4 16v2a2 2 0 0 0 2 2h2"}),a.jsx("path",{d:"M16 4h2a2 2 0 0 1 2 2v2"}),a.jsx("path",{d:"M16 20h2a2 2 0 0 0 2 -2v-2"})]}),BA),JQ=J(a.jsxs("g",{stroke:"currentColor",fill:"none",strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0"}),a.jsx("path",{d:"M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6"})]}),BA),AT=J(a.jsxs("g",{stroke:"currentColor",fill:"none",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M10.585 10.587a2 2 0 0 0 2.829 2.828"}),a.jsx("path",{d:"M16.681 16.673a8.717 8.717 0 0 1 -4.681 1.327c-3.6 0 -6.6 -2 -9 -6c1.272 -2.12 2.712 -3.678 4.32 -4.674m2.86 -1.146a9.055 9.055 0 0 1 1.82 -.18c3.6 0 6.6 2 9 6c-.666 1.11 -1.379 2.067 -2.138 2.87"}),a.jsx("path",{d:"M3 3l18 18"})]}),BA);J(a.jsxs("g",{stroke:"currentColor",fill:"none",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"}),a.jsx("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"}),a.jsx("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"}),a.jsx("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"}),a.jsx("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"}),a.jsx("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"})]}),BA);var uT=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M15.5 13a3.5 3.5 0 0 0 -3.5 3.5v1a3.5 3.5 0 0 0 7 0v-1.8"}),a.jsx("path",{d:"M8.5 13a3.5 3.5 0 0 1 3.5 3.5v1a3.5 3.5 0 0 1 -7 0v-1.8"}),a.jsx("path",{d:"M17.5 16a3.5 3.5 0 0 0 0 -7h-.5"}),a.jsx("path",{d:"M19 9.3v-2.8a3.5 3.5 0 0 0 -7 0"}),a.jsx("path",{d:"M6.5 16a3.5 3.5 0 0 1 0 -7h.5"}),a.jsx("path",{d:"M5 9.3v-2.8a3.5 3.5 0 0 1 7 0v10"})]}),BA),kB=J(a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0"}),a.jsx("path",{d:"M21 21l-6 -6"})]}),BA),eT=J(a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M20.984 12.53a9 9 0 1 0 -7.552 8.355"}),a.jsx("path",{d:"M12 7v5l3 3"}),a.jsx("path",{d:"M19 16l-2 3h4l-2 3"})]}),BA),CT=J(a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M9 2m0 3a3 3 0 0 1 3 -3h0a3 3 0 0 1 3 3v5a3 3 0 0 1 -3 3h0a3 3 0 0 1 -3 -3z"}),a.jsx("path",{d:"M5 10a7 7 0 0 0 14 0"}),a.jsx("path",{d:"M8 21l8 0"}),a.jsx("path",{d:"M12 17l0 4"})]}),BA),BT=J(a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M3 3l18 18"}),a.jsx("path",{d:"M9 5a3 3 0 0 1 6 0v5a3 3 0 0 1 -.13 .874m-2 2a3 3 0 0 1 -3.87 -2.872v-1"}),a.jsx("path",{d:"M5 10a7 7 0 0 0 10.846 5.85m2 -2a6.967 6.967 0 0 0 1.152 -3.85"}),a.jsx("path",{d:"M8 21l8 0"}),a.jsx("path",{d:"M12 17l0 4"})]}),BA),C3=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"})]}),BA),gT=J(a.jsxs("g",{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z"}),a.jsx("path",{d:"M12 20v.01"}),a.jsx("path",{d:"M16 20v.01"}),a.jsx("path",{d:"M8 20v.01"}),a.jsx("path",{d:"M4 20v.01"}),a.jsx("path",{d:"M4 16v.01"}),a.jsx("path",{d:"M4 12v.01"}),a.jsx("path",{d:"M4 8v.01"}),a.jsx("path",{d:"M4 4v.01"}),a.jsx("path",{d:"M8 4v.01"}),a.jsx("path",{d:"M12 4v.01"}),a.jsx("path",{d:"M16 4v.01"}),a.jsx("path",{d:"M20 4v.01"}),a.jsx("path",{d:"M20 8v.01"}),a.jsx("path",{d:"M20 12v.01"}),a.jsx("path",{d:"M20 16v.01"}),a.jsx("path",{d:"M20 20v.01"})]}),BA),ET=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M5 3v18"}),a.jsx("path",{d:"M19 21v-18"}),a.jsx("path",{d:"M5 7h14"}),a.jsx("path",{d:"M5 15h14"}),a.jsx("path",{d:"M8 13v4"}),a.jsx("path",{d:"M11 13v4"}),a.jsx("path",{d:"M16 13v4"}),a.jsx("path",{d:"M14 5v4"}),a.jsx("path",{d:"M11 5v4"}),a.jsx("path",{d:"M8 5v4"}),a.jsx("path",{d:"M3 21h18"})]}),BA),IT=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M3 12l18 0"}),a.jsx("path",{d:"M7 16l10 0l-10 5l0 -5"}),a.jsx("path",{d:"M7 8l10 0l-10 -5l0 5"})]}),BA),iT=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M12 3l0 18"}),a.jsx("path",{d:"M16 7l0 10l5 0l-5 -10"}),a.jsx("path",{d:"M8 7l0 10l-5 0l5 -10"})]}),BA),B3=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M5 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z"}),a.jsx("path",{d:"M19 6h1a2 2 0 0 1 2 2a5 5 0 0 1 -5 5l-5 0v2"}),a.jsx("path",{d:"M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"})]}),BA),vQ=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M15 15m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0"}),a.jsx("path",{d:"M22 22l-3 -3"}),a.jsx("path",{d:"M6 18h-1a2 2 0 0 1 -2 -2v-1"}),a.jsx("path",{d:"M3 11v-1"}),a.jsx("path",{d:"M3 6v-1a2 2 0 0 1 2 -2h1"}),a.jsx("path",{d:"M10 3h1"}),a.jsx("path",{d:"M15 3h1a2 2 0 0 1 2 2v1"})]}),BA),aT=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"}),a.jsx("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"}),a.jsx("path",{d:"M4 20.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"}),a.jsx("path",{d:"M10 15l2 6l2 -6"}),a.jsx("path",{d:"M20 15h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h1v-3"})]}),BA),tT=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M14 3v4a1 1 0 0 0 1 1h4"}),a.jsx("path",{d:"M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4"}),a.jsx("path",{d:"M20 15h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2h1v-3"}),a.jsx("path",{d:"M5 18h1.5a1.5 1.5 0 0 0 0 -3h-1.5v6"}),a.jsx("path",{d:"M11 21v-6l3 6v-6"})]}),BA),QT=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M4 13v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a2 2 0 0 0 6 0v-8a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v8a8 8 0 0 1 -16 0"}),a.jsx("path",{d:"M4 8l5 0"}),a.jsx("path",{d:"M15 8l4 0"})]}),BA),oT=J(a.jsxs("g",{strokeWidth:1.25,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M3 14c.83 .642 2.077 1.017 3.5 1c1.423 .017 2.67 -.358 3.5 -1c.83 -.642 2.077 -1.017 3.5 -1c1.423 -.017 2.67 .358 3.5 1"}),a.jsx("path",{d:"M8 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"}),a.jsx("path",{d:"M12 3a2.4 2.4 0 0 0 -1 2a2.4 2.4 0 0 0 1 2"}),a.jsx("path",{d:"M3 10h14v5a6 6 0 0 1 -6 6h-2a6 6 0 0 1 -6 -6v-5z"}),a.jsx("path",{d:"M16.746 16.726a3 3 0 1 0 .252 -5.555"})]}),BA),rT=J(a.jsxs("g",{stroke:"currentColor",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M3 5a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-16a1 1 0 0 1-1-1v-10zM7 20h10M9 16v4M15 16v4"})]}),{...BA,strokeWidth:1.5});J(a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M15 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"}),a.jsx("path",{d:"M21 12h-13l3 -3"}),a.jsx("path",{d:"M11 15l-3 -3"})]}),BA);var sT=J(a.jsxs("g",{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M2 8a4 4 0 0 1 4 -4h12a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-12a4 4 0 0 1 -4 -4v-8z"}),a.jsx("path",{d:"M10 9l5 3l-5 3z"})]}),BA),nT=J(a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M3 6h18"}),a.jsx("path",{d:"M3 12h18"}),a.jsx("path",{d:"M3 18h18"}),a.jsx("path",{d:"M6 3v18"}),a.jsx("path",{d:"M12 3v18"}),a.jsx("path",{d:"M18 3v18"})]}),BA),lT=J(a.jsxs("g",{strokeWidth:1.5,children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M17 3m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"}),a.jsx("path",{d:"M3 17m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z"}),a.jsx("path",{d:"M17 5c-6.627 0 -12 5.373 -12 12"})]}),BA),DT=J(a.jsxs("g",{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M6 18l12 -12"}),a.jsx("path",{d:"M18 10v-4h-4"})]}),BA),cT=J(a.jsxs("g",{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M4,19L10,19C11.097,19 12,18.097 12,17L12,9C12,7.903 12.903,7 14,7L21,7"}),a.jsx("path",{d:"M18 4l3 3l-3 3"})]}),BA),dT=J(a.jsxs("g",{children:[a.jsx("path",{d:"M16,12L20,9L16,6"}),a.jsx("path",{d:"M6 20c0 -6.075 4.925 -11 11 -11h3"})]}),BA),g3=J(a.jsxs("g",{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M6 9l6 6l6 -6"})]}),BA),wT=J(a.jsxs("g",{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M6 15l6 -6l6 6"})]}),BA),hT=J(a.jsxs("g",{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M6 15l6 -6l6 6"})]}),BA),Fs=J(a.jsxs("g",{strokeWidth:"1.25",children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M8 5v10a1 1 0 0 0 1 1h10"}),a.jsx("path",{d:"M5 8h10a1 1 0 0 1 1 1v10"})]}),BA),E3=J(a.jsxs("g",{children:[a.jsx("path",{stroke:"none",d:"M0 0h24v24H0z",fill:"none"}),a.jsx("path",{d:"M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}),a.jsx("path",{d:"M19 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}),a.jsx("path",{d:"M5 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}),a.jsx("path",{d:"M19 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"}),a.jsx("path",{d:"M5 7l0 10"}),a.jsx("path",{d:"M7 5l10 0"}),a.jsx("path",{d:"M7 19l10 0"}),a.jsx("path",{d:"M19 7l0 10"})]}),BA),Ii={[wu.Excalifont]:{metrics:{unitsPerEm:1e3,ascender:886,descender:-374,lineHeight:1.25},icon:GE},[wu.Nunito]:{metrics:{unitsPerEm:1e3,ascender:1011,descender:-353,lineHeight:1.35},icon:Ei},[wu["Lilita One"]]:{metrics:{unitsPerEm:1e3,ascender:923,descender:-220,lineHeight:1.15},icon:Kj},[wu["Comic Shanns"]]:{metrics:{unitsPerEm:1e3,ascender:750,descender:-250,lineHeight:1.25},icon:St},[wu.Virgil]:{metrics:{unitsPerEm:1e3,ascender:886,descender:-374,lineHeight:1.25},icon:GE,deprecated:!0},[wu.Helvetica]:{metrics:{unitsPerEm:2048,ascender:1577,descender:-471,lineHeight:1.15},icon:Ei,deprecated:!0,local:!0},[wu.Cascadia]:{metrics:{unitsPerEm:2048,ascender:1900,descender:-480,lineHeight:1.2},icon:St,deprecated:!0},[wu["Liberation Sans"]]:{metrics:{unitsPerEm:2048,ascender:1854,descender:-434,lineHeight:1.15},serverSide:!0},[PB.Xiaolai]:{metrics:{unitsPerEm:1e3,ascender:880,descender:-144,lineHeight:1.15},fallback:!0},[PB["Segoe UI Emoji"]]:{metrics:{unitsPerEm:1e3,ascender:886,descender:-374,lineHeight:1.25},local:!0,fallback:!0}},EB={LATIN:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD",LATIN_EXT:"U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF",CYRILIC_EXT:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F",CYRILIC:"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116",VIETNAMESE:"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB"},ZQ="local:",FT=class extends Error{constructor(A="Couldn't export canvas.",u="CANVAS_ERROR"){super(),this.name=u,this.message=A}},qi=class extends DOMException{constructor(A="Request Aborted"){super(A,"AbortError")}},aB=class extends Error{constructor(A="Image Scene Data Error",u="IMAGE_SCENE_DATA_ERROR"){super(A),S(this,"code"),this.name="EncodingError",this.code=u}},pT=class extends Error{constructor(){super(...arguments),S(this,"code","ELEMENT_HAS_INVALID_INDEX")}},I3=class extends Error{constructor(A="Worker URL is not defined!",u="WORKER_URL_NOT_DEFINED"){super(A),S(this,"code"),this.name="WorkerUrlNotDefinedError",this.code=u}},i3=class extends Error{constructor(A="Worker has to be in a separate chunk!",u="WORKER_IN_THE_MAIN_CHUNK"){super(A),S(this,"code"),this.name="WorkerInTheMainChunkError",this.code=u}},ps=class extends Error{constructor(A){super(A),this.name="ExcalidrawError"}},mT=class{constructor(A){S(this,"instance"),S(this,"debounceTerminate"),this.instance=new Worker(A,{type:"module"})}},kT=class a3{constructor(u,e){S(this,"idleWorkers",new Set),S(this,"workerUrl"),S(this,"workerTTL"),this.workerUrl=u,this.workerTTL=e.ttl||1e3}static create(u,e={}){if(!u)throw new I3;if(!import.meta.url||u.toString()===import.meta.url)throw new i3;return new a3(u,e)}async postMessage(u,e){let C,B=Array.from(this.idleWorkers).shift();return B?(this.idleWorkers.delete(B),C=B):C=await this.createWorker(),new Promise((g,E)=>{C.instance.onmessage=this.onMessageHandler(C,g),C.instance.onerror=this.onErrorHandler(C,E),C.instance.postMessage(u,e),C.debounceTerminate(()=>E(new Error(`Active worker did not respond for ${this.workerTTL}ms!`)))})}async clear(){for(let u of this.idleWorkers)u.debounceTerminate.cancel(),u.instance.terminate();this.idleWorkers.clear()}async createWorker(){let u=new mT(this.workerUrl);return u.debounceTerminate=Qg(e=>{u.instance.terminate(),this.idleWorkers.has(u)?(this.idleWorkers.delete(u),console.debug("Job finished! Idle worker has been released from the pool.")):e?e():console.error("Worker has been terminated!")},this.workerTTL),u}onMessageHandler(u,e){return C=>{u.debounceTerminate(),this.idleWorkers.add(u),e(C.data)}}onErrorHandler(u,e){return C=>{u.debounceTerminate(()=>e(C)),u.debounceTerminate.flush(),this.clear()}}},ms=typeof Worker<"u",yT=async(A,u)=>{let{Commands:e,subsetToBase64:C,toBase64:B}=await GT();return ms?og(async()=>{try{let g=await UT(),E=A.slice(0),i=await g.postMessage({command:e.Subset,arrayBuffer:E,codePoints:u},{transfer:[E]});return B(i)}catch(g){return ms=!1,tW()&&(g instanceof I3||g instanceof i3)||console.error("Failed to use workers for subsetting, falling back to the main thread.",g),C(A,u)}}):C(A,u)},Ta=null,za=null,bT=async()=>(Ta||(Ta=sA(()=>Promise.resolve().then(()=>TEA),void 0)),Ta),GT=async()=>(za||(za=sA(()=>Promise.resolve().then(()=>zEA),void 0)),za),Pa=null,UT=()=>(Pa||(Pa=og(async()=>{let{WorkerUrl:A}=await bT();return kT.create(A)})),Pa),t3=class SI{constructor(u,e,C){S(this,"urls"),S(this,"fontFace"),this.urls=SI.createUrls(e);let B=this.urls.map(g=>`url(${g}) ${SI.getFormat(g)}`).join(", ");this.fontFace=new FontFace(u,B,{display:"swap",style:"normal",weight:"400",...C})}toCSS(u){if(!this.getUnicodeRangeRegex().test(u))return;let e=Array.from(u).map(C=>C.codePointAt(0));return this.getContent(e).then(C=>`@font-face { font-family: ${this.fontFace.family}; src: url(${C}); }`)}async getContent(u){let e=0,C=[];for(;e{let e=await fetch(u,{cache:"force-cache",headers:{Accept:"font/woff2"}});if(!e.ok){let C=u instanceof URL?u.toString():"dataurl";throw new Error(`Failed to fetch "${C}": ${e.statusText}`)}return await e.arrayBuffer()})}getUnicodeRangeRegex(){let u=this.fontFace.unicodeRange.split(/,\s*/).map(e=>{let[C,B]=e.replace("U+","").split("-");return B?`\\u{${C}}-\\u{${B}}`:`\\u{${C}}`}).join("");return new RegExp(`[${u}]`,"u")}static createUrls(u){if(u.startsWith("data"))return[u];if(u.startsWith(ZQ))return[];if(u.startsWith("http"))return[new URL(u)];let e=u.replace(/^\/+/,""),C=[];if(typeof window.EXCALIDRAW_ASSET_PATH=="string"){let B=this.normalizeBaseUrl(window.EXCALIDRAW_ASSET_PATH);C.push(new URL(e,B))}else Array.isArray(window.EXCALIDRAW_ASSET_PATH)&&window.EXCALIDRAW_ASSET_PATH.forEach(B=>{let g=this.normalizeBaseUrl(B);C.push(new URL(e,g))});return C.push(new URL(e,SI.ASSETS_FALLBACK_URL)),C}static getFormat(u){if(!(u instanceof URL))return"";try{let e=new URL(u).pathname.split(".");return e.length===1?"":`format('${e.pop()}')`}catch{return""}}static normalizeBaseUrl(u){var C;let e=u;return/^\.?\//.test(e)&&(e=new URL(e.replace(/^\.?\/+/,""),(C=window==null?void 0:window.location)==null?void 0:C.origin).toString()),e=`${e.replace(/\/+$/,"")}/`,e}};S(t3,"ASSETS_FALLBACK_URL",`https://esm.sh/${`${bA.PKG_NAME}@${bA.PKG_VERSION}`}/dist/prod/`);var LT=t3,xT="./fonts/Cascadia/CascadiaCode-Regular.woff2?v=1775123024591",NT=[{uri:xT}],ST="./fonts/ComicShanns/ComicShanns-Regular-279a7b317d12eb88de06167bd672b4b4.woff2?v=1775123024591",RT="./fonts/ComicShanns/ComicShanns-Regular-fcb0fc02dcbee4c9846b3e2508668039.woff2?v=1775123024591",MT="./fonts/ComicShanns/ComicShanns-Regular-dc6a8806fa96795d7b3be5026f989a17.woff2?v=1775123024591",fT="./fonts/ComicShanns/ComicShanns-Regular-6e066e8de2ac57ea9283adb9c24d7f0c.woff2?v=1775123024591",YT=[{uri:ST,descriptors:{unicodeRange:"U+20-7e,U+a1-a6,U+a8,U+ab-ac,U+af-b1,U+b4,U+b8,U+bb-bc,U+bf-cf,U+d1-d7,U+d9-de,U+e0-ef,U+f1-f7,U+f9-ff,U+131,U+152-153,U+2c6,U+2da,U+2dc,U+2013-2014,U+2018-201a,U+201c-201d,U+2020-2022,U+2026,U+2039-203a,U+2044,U+20ac,U+2191,U+2193,U+2212"}},{uri:RT,descriptors:{unicodeRange:"U+100-10f,U+112-125,U+128-130,U+134-137,U+139-13c,U+141-148,U+14c-151,U+154-161,U+164-165,U+168-17f,U+1bf,U+1f7,U+218-21b,U+237,U+1e80-1e85,U+1ef2-1ef3,U+a75b"}},{uri:MT,descriptors:{unicodeRange:"U+2c7,U+2d8-2d9,U+2db,U+2dd,U+315,U+2190,U+2192,U+2200,U+2203-2204,U+2264-2265,U+f6c3"}},{uri:fT,descriptors:{unicodeRange:"U+3bb"}}],HT=[{uri:ZQ}],KT="./fonts/Excalifont/Excalifont-Regular-a88b72a24fb54c9f94e3b5fdaa7481c9.woff2?v=1775123024591",JT="./fonts/Excalifont/Excalifont-Regular-be310b9bcd4f1a43f571c46df7809174.woff2?v=1775123024591",vT="./fonts/Excalifont/Excalifont-Regular-b9dcf9d2e50a1eaf42fc664b50a3fd0d.woff2?v=1775123024591",ZT="./fonts/Excalifont/Excalifont-Regular-41b173a47b57366892116a575a43e2b6.woff2?v=1775123024591",qT="./fonts/Excalifont/Excalifont-Regular-3f2c5db56cc93c5a6873b1361d730c16.woff2?v=1775123024591",WT="./fonts/Excalifont/Excalifont-Regular-349fac6ca4700ffec595a7150a0d1e1d.woff2?v=1775123024591",jT="./fonts/Excalifont/Excalifont-Regular-623ccf21b21ef6b3a0d87738f77eb071.woff2?v=1775123024591",TT=[{uri:KT,descriptors:{unicodeRange:"U+20-7e,U+a0-a3,U+a5-a6,U+a8-ab,U+ad-b1,U+b4,U+b6-b8,U+ba-ff,U+131,U+152-153,U+2bc,U+2c6,U+2da,U+2dc,U+304,U+308,U+2013-2014,U+2018-201a,U+201c-201e,U+2020,U+2022,U+2024-2026,U+2030,U+2039-203a,U+20ac,U+2122,U+2212"}},{uri:JT,descriptors:{unicodeRange:"U+100-130,U+132-137,U+139-149,U+14c-151,U+154-17e,U+192,U+1fc-1ff,U+218-21b,U+237,U+1e80-1e85,U+1ef2-1ef3,U+2113"}},{uri:vT,descriptors:{unicodeRange:"U+400-45f,U+490-491,U+2116"}},{uri:ZT,descriptors:{unicodeRange:"U+37e,U+384-38a,U+38c,U+38e-393,U+395-3a1,U+3a3-3a8,U+3aa-3cf,U+3d7"}},{uri:qT,descriptors:{unicodeRange:"U+2c7,U+2d8-2d9,U+2db,U+2dd,U+302,U+306-307,U+30a-30c,U+326-328,U+212e,U+2211,U+fb01-fb02"}},{uri:WT,descriptors:{unicodeRange:"U+462-463,U+472-475,U+4d8-4d9,U+4e2-4e3,U+4e6-4e9,U+4ee-4ef"}},{uri:jT,descriptors:{unicodeRange:"U+300-301,U+303"}}],zT=[{uri:ZQ}],PT="./fonts/Liberation/LiberationSans-Regular.woff2?v=1775123024591",OT=[{uri:PT}],VT="./fonts/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYEF8RXi4EwQ.woff2?v=1775123024591",XT="./fonts/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYE98RXi4EwSsbg.woff2?v=1775123024591",_T=[{uri:XT,descriptors:{unicodeRange:EB.LATIN_EXT}},{uri:VT,descriptors:{unicodeRange:EB.LATIN}}],$T="./fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2?v=1775123024591",Az="./fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2?v=1775123024591",uz="./fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2?v=1775123024591",ez="./fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2?v=1775123024591",Cz="./fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2?v=1775123024591",Bz=[{uri:ez,descriptors:{unicodeRange:EB.CYRILIC_EXT,weight:"500"}},{uri:uz,descriptors:{unicodeRange:EB.CYRILIC,weight:"500"}},{uri:Cz,descriptors:{unicodeRange:EB.VIETNAMESE,weight:"500"}},{uri:Az,descriptors:{unicodeRange:EB.LATIN_EXT,weight:"500"}},{uri:$T,descriptors:{unicodeRange:EB.LATIN,weight:"500"}}],gz="./fonts/Virgil/Virgil-Regular.woff2?v=1775123024591",Ez=[{uri:gz}],Iz="./fonts/Xiaolai/Xiaolai-Regular-09850c4077f3fffe707905872e0e2460.woff2?v=1775123024591",iz="./fonts/Xiaolai/Xiaolai-Regular-7eb9fffd1aa890d07d0f88cc82e6cfe4.woff2?v=1775123024591",az="./fonts/Xiaolai/Xiaolai-Regular-60a3089806700d379f11827ee9843b6b.woff2?v=1775123024591",tz="./fonts/Xiaolai/Xiaolai-Regular-6fe5c5973cc06f74b2387a631ea36b88.woff2?v=1775123024591",Qz="./fonts/Xiaolai/Xiaolai-Regular-b96d9226ce77ec94ceca043d712182e6.woff2?v=1775123024591",oz="./fonts/Xiaolai/Xiaolai-Regular-6ae5b42180ad70b971c91e7eefb8eba2.woff2?v=1775123024591",rz="./fonts/Xiaolai/Xiaolai-Regular-a4c34be6d42152e64b0df90bc4607f64.woff2?v=1775123024591",sz="./fonts/Xiaolai/Xiaolai-Regular-c69f61a4ab18d0488c8d1fc12e7028e8.woff2?v=1775123024591",nz="./fonts/Xiaolai/Xiaolai-Regular-e3fcf5180fd466c8915c4e8069491054.woff2?v=1775123024591",lz="./fonts/Xiaolai/Xiaolai-Regular-c1f94158256bb1f3bf665b053d895af9.woff2?v=1775123024591",Dz="./fonts/Xiaolai/Xiaolai-Regular-544fc28abe2c5c30e62383fd4dac255f.woff2?v=1775123024591",cz="./fonts/Xiaolai/Xiaolai-Regular-7197d6fda6cba7c3874c53d6381ca239.woff2?v=1775123024591",dz="./fonts/Xiaolai/Xiaolai-Regular-70c2eb8d64e71a42a834eb857ea9df51.woff2?v=1775123024591",wz="./fonts/Xiaolai/Xiaolai-Regular-069e77aac84590e2e991d0a0176d34f2.woff2?v=1775123024591",hz="./fonts/Xiaolai/Xiaolai-Regular-41521fade99856108931b4768b1b2648.woff2?v=1775123024591",Fz="./fonts/Xiaolai/Xiaolai-Regular-a004ddfcb26e67bd6e678c8ed19e25ce.woff2?v=1775123024591",pz="./fonts/Xiaolai/Xiaolai-Regular-04b718e5623574919c8b0dea5f301444.woff2?v=1775123024591",mz="./fonts/Xiaolai/Xiaolai-Regular-7e4bde7e9c7f84cd34d8a845e384c746.woff2?v=1775123024591",kz="./fonts/Xiaolai/Xiaolai-Regular-23686f7f29da6e8008c36dd3a80c83d6.woff2?v=1775123024591",yz="./fonts/Xiaolai/Xiaolai-Regular-69c09cc5fa3e55c74fc4821f76909cc3.woff2?v=1775123024591",bz="./fonts/Xiaolai/Xiaolai-Regular-25b7f38e18f035f96cb5e547bd2bd08c.woff2?v=1775123024591",Gz="./fonts/Xiaolai/Xiaolai-Regular-ba3de316d63c7e339987b16f41a0b879.woff2?v=1775123024591",Uz="./fonts/Xiaolai/Xiaolai-Regular-12b52b58eb3df36804b9a654ec9ee194.woff2?v=1775123024591",Lz="./fonts/Xiaolai/Xiaolai-Regular-b1220a3c61f85cc0408deedb4c5f57a2.woff2?v=1775123024591",xz="./fonts/Xiaolai/Xiaolai-Regular-4535823663ad81405188a528d8f2b1a2.woff2?v=1775123024591",Nz="./fonts/Xiaolai/Xiaolai-Regular-3eaa538115d76932653c21d8dc28f207.woff2?v=1775123024591",Sz="./fonts/Xiaolai/Xiaolai-Regular-7e929f262f30c8ee78bf398150b1a7cd.woff2?v=1775123024591",Rz="./fonts/Xiaolai/Xiaolai-Regular-73e309718fd16cea44b4d54a33581811.woff2?v=1775123024591",Mz="./fonts/Xiaolai/Xiaolai-Regular-9eb5a99df4e76ac3363453ac9ca288b1.woff2?v=1775123024591",fz="./fonts/Xiaolai/Xiaolai-Regular-3e63ed8162808a9e425ed80a8bc79114.woff2?v=1775123024591",Yz="./fonts/Xiaolai/Xiaolai-Regular-cb17fc3db95f6d139afc9d31a8e93293.woff2?v=1775123024591",Hz="./fonts/Xiaolai/Xiaolai-Regular-c8b71798409ccc126ee264a00aadcf21.woff2?v=1775123024591",Kz="./fonts/Xiaolai/Xiaolai-Regular-11c345711937f0ba4b8f7b6b919c8440.woff2?v=1775123024591",Jz="./fonts/Xiaolai/Xiaolai-Regular-e480d9c614742d05f0e78f274f1e69e6.woff2?v=1775123024591",vz="./fonts/Xiaolai/Xiaolai-Regular-95429962233afd82db1c27df1500a28c.woff2?v=1775123024591",Zz="./fonts/Xiaolai/Xiaolai-Regular-2cf96d082d35ea3d8106851223ad0d16.woff2?v=1775123024591",qz="./fonts/Xiaolai/Xiaolai-Regular-2d43040e86ff03ba677f6f9c04cd0805.woff2?v=1775123024591",Wz="./fonts/Xiaolai/Xiaolai-Regular-2a26d20a23b00898ce82f09d2ee47c3f.woff2?v=1775123024591",jz="./fonts/Xiaolai/Xiaolai-Regular-a365e82ed54697a52f27adcea1315fe8.woff2?v=1775123024591",Tz="./fonts/Xiaolai/Xiaolai-Regular-f5d079153c99a25b9be5b8583c4cc8a7.woff2?v=1775123024591",zz="./fonts/Xiaolai/Xiaolai-Regular-10a7ae9a371830a80c3d844acf1c02d7.woff2?v=1775123024591",Pz="./fonts/Xiaolai/Xiaolai-Regular-e4bca6cfa53e499cae0a6be4894a90e9.woff2?v=1775123024591",Oz="./fonts/Xiaolai/Xiaolai-Regular-60a41c7e1c68f22424e6d22df544bc82.woff2?v=1775123024591",Vz="./fonts/Xiaolai/Xiaolai-Regular-7ab2bed91166a9dca83a5ebfbe2a7f38.woff2?v=1775123024591",Xz="./fonts/Xiaolai/Xiaolai-Regular-670ba603758d94268e8606f240a42e12.woff2?v=1775123024591",_z="./fonts/Xiaolai/Xiaolai-Regular-e656f091b9dc4709722c9f4b84d3c797.woff2?v=1775123024591",$z="./fonts/Xiaolai/Xiaolai-Regular-15dc6d811c9cd078f9086a740d5a1038.woff2?v=1775123024591",AP="./fonts/Xiaolai/Xiaolai-Regular-f0f13b5c60e0af5553bd359f5513be1b.woff2?v=1775123024591",uP="./fonts/Xiaolai/Xiaolai-Regular-8c2f33cee3993174f7e87c28e4bf42ee.woff2?v=1775123024591",eP="./fonts/Xiaolai/Xiaolai-Regular-761d05e3cd968cf574166867998ef06a.woff2?v=1775123024591",CP="./fonts/Xiaolai/Xiaolai-Regular-642b26e2e5f5fb780b51b593dbc8c851.woff2?v=1775123024591",BP="./fonts/Xiaolai/Xiaolai-Regular-5572b3513ba8df57a3d5d7303ee6b11b.woff2?v=1775123024591",gP="./fonts/Xiaolai/Xiaolai-Regular-3c9de2ae0ea4bc91a510942dfa4be8d2.woff2?v=1775123024591",EP="./fonts/Xiaolai/Xiaolai-Regular-671a2c20b1eb9e4ef8a192833940e319.woff2?v=1775123024591",IP="./fonts/Xiaolai/Xiaolai-Regular-4dc6d5f188d5c96d44815cd1e81aa885.woff2?v=1775123024591",iP="./fonts/Xiaolai/Xiaolai-Regular-ce4884f96f11589608b76b726a755803.woff2?v=1775123024591",aP="./fonts/Xiaolai/Xiaolai-Regular-8f476c4c99813d57cbe6eca4727388ad.woff2?v=1775123024591",tP="./fonts/Xiaolai/Xiaolai-Regular-5935a5775af3d5c6307ac667bd9ae74e.woff2?v=1775123024591",QP="./fonts/Xiaolai/Xiaolai-Regular-79f007c1c6d07557120982951ea67998.woff2?v=1775123024591",oP="./fonts/Xiaolai/Xiaolai-Regular-bafff7a14c27403dcc6cf1432e8ea836.woff2?v=1775123024591",rP="./fonts/Xiaolai/Xiaolai-Regular-543fa46ace099a7099dad69123399400.woff2?v=1775123024591",sP="./fonts/Xiaolai/Xiaolai-Regular-4ddc14ed3eb0c3e46364317dfc0144a3.woff2?v=1775123024591",nP="./fonts/Xiaolai/Xiaolai-Regular-0fa55a080fcd0f9dc2e0b0058b793df8.woff2?v=1775123024591",lP="./fonts/Xiaolai/Xiaolai-Regular-66493ba5a8367f2928812f446f47b56a.woff2?v=1775123024591",DP="./fonts/Xiaolai/Xiaolai-Regular-57862b464a55b18c7bf234ce22907d73.woff2?v=1775123024591",cP="./fonts/Xiaolai/Xiaolai-Regular-8d3bcabb847b56243b16afe62adaaf21.woff2?v=1775123024591",dP="./fonts/Xiaolai/Xiaolai-Regular-2b77e8ebfb2367ab2662396a60e7d320.woff2?v=1775123024591",wP="./fonts/Xiaolai/Xiaolai-Regular-0b5d723fdc4e249c140f0909e87d03b4.woff2?v=1775123024591",hP="./fonts/Xiaolai/Xiaolai-Regular-cdbce89e82cc1ab53a2decbf5819278f.woff2?v=1775123024591",FP="./fonts/Xiaolai/Xiaolai-Regular-739bc1a567439c7cffcd1614644593d2.woff2?v=1775123024591",pP="./fonts/Xiaolai/Xiaolai-Regular-72252d73220fa3cd856677888cee1635.woff2?v=1775123024591",mP="./fonts/Xiaolai/Xiaolai-Regular-08e0dc436ad0ad61ba5558db0674d762.woff2?v=1775123024591",kP="./fonts/Xiaolai/Xiaolai-Regular-cf6ff4e0f491ca0cf3038187a997b9b4.woff2?v=1775123024591",yP="./fonts/Xiaolai/Xiaolai-Regular-9cfb2a77a4e45025105ad29a1748b90d.woff2?v=1775123024591",bP="./fonts/Xiaolai/Xiaolai-Regular-450da755d5bcb70906e1295e559b9602.woff2?v=1775123024591",GP="./fonts/Xiaolai/Xiaolai-Regular-0986d134c05864f5025962eef9f994a0.woff2?v=1775123024591",UP="./fonts/Xiaolai/Xiaolai-Regular-1ee544f0f1dac422545c505baa788992.woff2?v=1775123024591",LP="./fonts/Xiaolai/Xiaolai-Regular-4806e761d750087c2d734fc64596eaff.woff2?v=1775123024591",xP="./fonts/Xiaolai/Xiaolai-Regular-33432927cd87d40cfe393c7482bf221f.woff2?v=1775123024591",NP="./fonts/Xiaolai/Xiaolai-Regular-be549ab72f0719d606a5c01e2c0219b6.woff2?v=1775123024591",SP="./fonts/Xiaolai/Xiaolai-Regular-019d66dcad46dc156b162d267f981c20.woff2?v=1775123024591",RP="./fonts/Xiaolai/Xiaolai-Regular-b5c1596551c256e0e9cf02028595b092.woff2?v=1775123024591",MP="./fonts/Xiaolai/Xiaolai-Regular-e5f453bb04da18eed01675eeebd88bf8.woff2?v=1775123024591",fP="./fonts/Xiaolai/Xiaolai-Regular-cf2cc71752631e579e35b0e423bf2638.woff2?v=1775123024591",YP="./fonts/Xiaolai/Xiaolai-Regular-6f3256af8454371776bc46670d33cc65.woff2?v=1775123024591",HP="./fonts/Xiaolai/Xiaolai-Regular-23f228f3999c01983860012330e4be08.woff2?v=1775123024591",KP="./fonts/Xiaolai/Xiaolai-Regular-21430ee05a1248901da8d0de08744d47.woff2?v=1775123024591",JP="./fonts/Xiaolai/Xiaolai-Regular-5330a2119a716e4e7224ed108b085dac.woff2?v=1775123024591",vP="./fonts/Xiaolai/Xiaolai-Regular-cd145ce4a0ea18469358df53c207bc1b.woff2?v=1775123024591",ZP="./fonts/Xiaolai/Xiaolai-Regular-36925dfe329a45086cbb7fc5c20d45ac.woff2?v=1775123024591",qP="./fonts/Xiaolai/Xiaolai-Regular-4bfaa8ffa64c5ee560aa2daba7c9cbd3.woff2?v=1775123024591",WP="./fonts/Xiaolai/Xiaolai-Regular-112c051027b2d766c19a519f6ee1f4f7.woff2?v=1775123024591",jP="./fonts/Xiaolai/Xiaolai-Regular-5b0ed6971aaab9c8ad563230bd5471a7.woff2?v=1775123024591",TP="./fonts/Xiaolai/Xiaolai-Regular-98f2ad84457de7f3740d9920b8fa8667.woff2?v=1775123024591",zP="./fonts/Xiaolai/Xiaolai-Regular-733171b4ffcd17ea1fe1c0ba627173bf.woff2?v=1775123024591",PP="./fonts/Xiaolai/Xiaolai-Regular-684d65f1793cac449dde5d59cb3c47fb.woff2?v=1775123024591",OP="./fonts/Xiaolai/Xiaolai-Regular-cbaaefaaf326668277aa24dfa93c4d28.woff2?v=1775123024591",VP="./fonts/Xiaolai/Xiaolai-Regular-58fd02350d0bc52cf1ca3bb32ce9766e.woff2?v=1775123024591",XP="./fonts/Xiaolai/Xiaolai-Regular-7ccce86603f80a099ddb0cb21d4ae3e3.woff2?v=1775123024591",_P="./fonts/Xiaolai/Xiaolai-Regular-3717077e38f98d89eae729b6c14e56dc.woff2?v=1775123024591",$P="./fonts/Xiaolai/Xiaolai-Regular-dbea1af6dcd9860be40c3d18254338f5.woff2?v=1775123024591",AO="./fonts/Xiaolai/Xiaolai-Regular-4a0fdb40036e87b40aa08dd30584cb85.woff2?v=1775123024591",uO="./fonts/Xiaolai/Xiaolai-Regular-0f626226ba1272e832aea87bafd9720e.woff2?v=1775123024591",eO="./fonts/Xiaolai/Xiaolai-Regular-938d90c10ff8c20386af7f242c05d6b0.woff2?v=1775123024591",CO="./fonts/Xiaolai/Xiaolai-Regular-b6d128682ee29e471486354d486a1b90.woff2?v=1775123024591",BO="./fonts/Xiaolai/Xiaolai-Regular-e51ef413167c6e14e0c0fdcc585f2fc9.woff2?v=1775123024591",gO="./fonts/Xiaolai/Xiaolai-Regular-9d81066dd2b337c938df6e90380a00dc.woff2?v=1775123024591",EO="./fonts/Xiaolai/Xiaolai-Regular-20e7bf72fa05de9adf7dbcc7bf51dde6.woff2?v=1775123024591",IO="./fonts/Xiaolai/Xiaolai-Regular-4095eb84ef3874e2600247bee0b04026.woff2?v=1775123024591",iO="./fonts/Xiaolai/Xiaolai-Regular-4ee10ae43505e2e0bc62656ced49c0fa.woff2?v=1775123024591",aO="./fonts/Xiaolai/Xiaolai-Regular-7494dc504ae00ee9cd0505f990f88c5d.woff2?v=1775123024591",tO="./fonts/Xiaolai/Xiaolai-Regular-8de5b863cb50dfefdd07cb11c774d579.woff2?v=1775123024591",QO="./fonts/Xiaolai/Xiaolai-Regular-3e1f8f654357353bf0e04ba5c34b5f7f.woff2?v=1775123024591",oO="./fonts/Xiaolai/Xiaolai-Regular-2e33e8dc771ef5e1d9127d60a6b73679.woff2?v=1775123024591",rO="./fonts/Xiaolai/Xiaolai-Regular-173945821411c09f70c95f98d590e697.woff2?v=1775123024591",sO="./fonts/Xiaolai/Xiaolai-Regular-b358f7a51ece39a3247942b1feabdb29.woff2?v=1775123024591",nO="./fonts/Xiaolai/Xiaolai-Regular-23ad2d71b280f00b1363b95b7bea94eb.woff2?v=1775123024591",lO="./fonts/Xiaolai/Xiaolai-Regular-5882ffa04f32584d26109137e2da4352.woff2?v=1775123024591",DO="./fonts/Xiaolai/Xiaolai-Regular-a203b91dad570bf05a58c3c3ddb529bf.woff2?v=1775123024591",cO="./fonts/Xiaolai/Xiaolai-Regular-bd77e3c7f9e0b072d96af37f73d1aa32.woff2?v=1775123024591",dO="./fonts/Xiaolai/Xiaolai-Regular-5a45d991244d4c7140217e1e5f5ca4f4.woff2?v=1775123024591",wO="./fonts/Xiaolai/Xiaolai-Regular-f56414bf9bced67990def8660e306759.woff2?v=1775123024591",hO="./fonts/Xiaolai/Xiaolai-Regular-583d166e56ba0de4b77eabb47ef67839.woff2?v=1775123024591",FO="./fonts/Xiaolai/Xiaolai-Regular-7f855356ab893b0d2b9c1c83b8116f0e.woff2?v=1775123024591",pO="./fonts/Xiaolai/Xiaolai-Regular-b57aaedfd8ebdf3931f25119dc6a5eb2.woff2?v=1775123024591",mO="./fonts/Xiaolai/Xiaolai-Regular-b6fd38ca30869792244804b04bc058da.woff2?v=1775123024591",kO="./fonts/Xiaolai/Xiaolai-Regular-452225341522a7942f0f6aab1a5c91a3.woff2?v=1775123024591",yO="./fonts/Xiaolai/Xiaolai-Regular-866fa7613df6b3fd272bcfd4530c0bb9.woff2?v=1775123024591",bO="./fonts/Xiaolai/Xiaolai-Regular-52a84a22fd1369bffeaf21da2d6158dc.woff2?v=1775123024591",GO="./fonts/Xiaolai/Xiaolai-Regular-829615148e6357d826b9242eb7fbbd1e.woff2?v=1775123024591",UO="./fonts/Xiaolai/Xiaolai-Regular-c99eda15fc26a2941579560f76c3a5cf.woff2?v=1775123024591",LO="./fonts/Xiaolai/Xiaolai-Regular-395c35dd584b56b0789f58a0559beaf1.woff2?v=1775123024591",xO="./fonts/Xiaolai/Xiaolai-Regular-203b0e569e3b14aac86a003dc3fa523e.woff2?v=1775123024591",NO="./fonts/Xiaolai/Xiaolai-Regular-51a0e808bbc8361236ac521a119758a3.woff2?v=1775123024591",SO="./fonts/Xiaolai/Xiaolai-Regular-6e092f71c1e634059ada0e52abadce67.woff2?v=1775123024591",RO="./fonts/Xiaolai/Xiaolai-Regular-0f7fb1e0d5015bb1371343153ecf7ce3.woff2?v=1775123024591",MO="./fonts/Xiaolai/Xiaolai-Regular-d0cf73942fea1c74edbdf0b3011f4656.woff2?v=1775123024591",fO="./fonts/Xiaolai/Xiaolai-Regular-968cffdc8ee679da094e77ebf50f58ef.woff2?v=1775123024591",YO="./fonts/Xiaolai/Xiaolai-Regular-7a07ddc0f0c0f5f4a9bad6ee3dda66b5.woff2?v=1775123024591",HO="./fonts/Xiaolai/Xiaolai-Regular-ec181b795ac1fb5a50d700b6e996d745.woff2?v=1775123024591",KO="./fonts/Xiaolai/Xiaolai-Regular-cfb211578629b7e8153b37240de6a9d5.woff2?v=1775123024591",JO="./fonts/Xiaolai/Xiaolai-Regular-59e9ff77b0efaf684bc09274fb6908c9.woff2?v=1775123024591",vO="./fonts/Xiaolai/Xiaolai-Regular-2adbc89c11e65905393d3dfc468b9d5b.woff2?v=1775123024591",ZO="./fonts/Xiaolai/Xiaolai-Regular-70e811fd7994e61f408c923de6ddd078.woff2?v=1775123024591",qO="./fonts/Xiaolai/Xiaolai-Regular-c4a687ac4f0c2766eefc9f77ed99cddf.woff2?v=1775123024591",WO="./fonts/Xiaolai/Xiaolai-Regular-51502f1206be09c565f1547c406e9558.woff2?v=1775123024591",jO="./fonts/Xiaolai/Xiaolai-Regular-1fdc0c67ed57263a80fd108c1f6ccf24.woff2?v=1775123024591",TO="./fonts/Xiaolai/Xiaolai-Regular-e11567fd2accf9957cd0d3c2be937d87.woff2?v=1775123024591",zO="./fonts/Xiaolai/Xiaolai-Regular-20cc1bbf50e7efb442756cb605672c1f.woff2?v=1775123024591",PO="./fonts/Xiaolai/Xiaolai-Regular-5d2898fbc097a7e24c6f38d80587621e.woff2?v=1775123024591",OO="./fonts/Xiaolai/Xiaolai-Regular-ac9ceb44437becc3e9c4dbfebab7fc2d.woff2?v=1775123024591",VO="./fonts/Xiaolai/Xiaolai-Regular-c16ed9740b85badf16e86ea782a3062f.woff2?v=1775123024591",XO="./fonts/Xiaolai/Xiaolai-Regular-aa0d470430e6391eca720c7cfa44446f.woff2?v=1775123024591",_O="./fonts/Xiaolai/Xiaolai-Regular-f2b54d4e7be0eaefe1c2c56836fa5368.woff2?v=1775123024591",$O="./fonts/Xiaolai/Xiaolai-Regular-99a16ef6a64934d5781933dbd9c46b2e.woff2?v=1775123024591",AV="./fonts/Xiaolai/Xiaolai-Regular-c40533fdf4cc57177b12803598af7e59.woff2?v=1775123024591",uV="./fonts/Xiaolai/Xiaolai-Regular-91ddb2969bf2d31ba02ad82998d1314c.woff2?v=1775123024591",eV="./fonts/Xiaolai/Xiaolai-Regular-774d4f764a1299da5d28ec2f2ffe0d69.woff2?v=1775123024591",CV="./fonts/Xiaolai/Xiaolai-Regular-7718fe60986d8b42b1be9c5ace5ccf25.woff2?v=1775123024591",BV="./fonts/Xiaolai/Xiaolai-Regular-aa5c9ca6cf4fba00433b7aa3fa10671a.woff2?v=1775123024591",gV="./fonts/Xiaolai/Xiaolai-Regular-4f50e5136e136527280bc902c5817561.woff2?v=1775123024591",EV="./fonts/Xiaolai/Xiaolai-Regular-093b9ef39a46ceae95a1df18a0a3a326.woff2?v=1775123024591",IV="./fonts/Xiaolai/Xiaolai-Regular-a0ca5df4258213d7fc9fce80f65ce760.woff2?v=1775123024591",iV="./fonts/Xiaolai/Xiaolai-Regular-d2666cbed13462c5dc36fa2f15c202ca.woff2?v=1775123024591",aV="./fonts/Xiaolai/Xiaolai-Regular-1e6fd68f1f3902ce48ce8c69df385622.woff2?v=1775123024591",tV="./fonts/Xiaolai/Xiaolai-Regular-87599f94b6cc129d505b375798d0d751.woff2?v=1775123024591",QV="./fonts/Xiaolai/Xiaolai-Regular-06c77b8c66e51ed6c63ccb502dd8b8af.woff2?v=1775123024591",oV="./fonts/Xiaolai/Xiaolai-Regular-13ae07ed2e272d26d59bc0691cd7117a.woff2?v=1775123024591",rV="./fonts/Xiaolai/Xiaolai-Regular-353f33792a8f60dc69323ddf635a269e.woff2?v=1775123024591",sV="./fonts/Xiaolai/Xiaolai-Regular-0facdf1ea213ba40261022f5d5ed4493.woff2?v=1775123024591",nV="./fonts/Xiaolai/Xiaolai-Regular-f8ee5d36068a42b51d0e4a1116cfcec1.woff2?v=1775123024591",lV="./fonts/Xiaolai/Xiaolai-Regular-79d494361ae093b69e74ee9dbe65bfd4.woff2?v=1775123024591",DV="./fonts/Xiaolai/Xiaolai-Regular-74e2263a91439c25b91d5132ce9f4d62.woff2?v=1775123024591",cV="./fonts/Xiaolai/Xiaolai-Regular-ee8bae97908d5147b423f77ad0d3c1bb.woff2?v=1775123024591",dV="./fonts/Xiaolai/Xiaolai-Regular-56467a5c8840c4d23a60b2f935114848.woff2?v=1775123024591",wV="./fonts/Xiaolai/Xiaolai-Regular-145aa02cdd91946e67dc934e1acffe75.woff2?v=1775123024591",hV="./fonts/Xiaolai/Xiaolai-Regular-54acdfc2166ad7fcbd074f75fd4a56ba.woff2?v=1775123024591",FV="./fonts/Xiaolai/Xiaolai-Regular-29cec36cd205b211da97acabaa62f055.woff2?v=1775123024591",pV="./fonts/Xiaolai/Xiaolai-Regular-3756e81d3e149cf6099163ee79944fec.woff2?v=1775123024591",mV="./fonts/Xiaolai/Xiaolai-Regular-8e9f97f01034820170065b2921b4fb5e.woff2?v=1775123024591",kV="./fonts/Xiaolai/Xiaolai-Regular-13d2887ec8ee73c43acdabc52a05af7b.woff2?v=1775123024591",yV="./fonts/Xiaolai/Xiaolai-Regular-72536a3d71b694a0d53dd90ddceae41e.woff2?v=1775123024591",bV="./fonts/Xiaolai/Xiaolai-Regular-603aefd23e350ba7eb124273e3c9bcf1.woff2?v=1775123024591",GV="./fonts/Xiaolai/Xiaolai-Regular-095c169f3314805276f603a362766abd.woff2?v=1775123024591",UV="./fonts/Xiaolai/Xiaolai-Regular-9544732d2e62d1a429674f8ee41b5d3a.woff2?v=1775123024591",LV="./fonts/Xiaolai/Xiaolai-Regular-d3716376641d615e2995605b29bca7b6.woff2?v=1775123024591",xV="./fonts/Xiaolai/Xiaolai-Regular-5a1ce3117cfe90c48e8fb4a9a00f694d.woff2?v=1775123024591",NV="./fonts/Xiaolai/Xiaolai-Regular-b7d203b051eff504ff59ddca7576b6a9.woff2?v=1775123024591",SV="./fonts/Xiaolai/Xiaolai-Regular-4a38cc3e9cf104e69ba246d37f8cf135.woff2?v=1775123024591",RV="./fonts/Xiaolai/Xiaolai-Regular-982b630266d87db93d2539affb1275c6.woff2?v=1775123024591",MV="./fonts/Xiaolai/Xiaolai-Regular-9592bfc861f07bcb8d75c196b370e548.woff2?v=1775123024591",fV="./fonts/Xiaolai/Xiaolai-Regular-a7accba310e821da5505f71c03b76bdb.woff2?v=1775123024591",YV="./fonts/Xiaolai/Xiaolai-Regular-dac48066b5883d8b4551fc584f0c2a3e.woff2?v=1775123024591",HV="./fonts/Xiaolai/Xiaolai-Regular-a1f916d6039285c4ffb900cd654e418f.woff2?v=1775123024591",KV="./fonts/Xiaolai/Xiaolai-Regular-95bfd249da4902577b4b7d76ebdd0b44.woff2?v=1775123024591",JV="./fonts/Xiaolai/Xiaolai-Regular-93fc8f28a33234bcadf1527cafabd502.woff2?v=1775123024591",vV="./fonts/Xiaolai/Xiaolai-Regular-903bb6865f3452e2fda42e3a25547bc5.woff2?v=1775123024591",ZV="./fonts/Xiaolai/Xiaolai-Regular-4aca6a43e59aceee2166b0c7e4e85ef1.woff2?v=1775123024591",qV="./fonts/Xiaolai/Xiaolai-Regular-24476a126f129212beb33f66853ea151.woff2?v=1775123024591",WV="./fonts/Xiaolai/Xiaolai-Regular-1b611157cd46bb184d4fa4dae2d6a2b8.woff2?v=1775123024591",jV="./fonts/Xiaolai/Xiaolai-Regular-56a32a7689abd0326e57c10c6c069bb4.woff2?v=1775123024591",TV="./fonts/Xiaolai/Xiaolai-Regular-3cc70dbb64df5b21f1326cc24dee2195.woff2?v=1775123024591",zV="./fonts/Xiaolai/Xiaolai-Regular-f6032fc06eb20480f096199713f70885.woff2?v=1775123024591",PV="./fonts/Xiaolai/Xiaolai-Regular-e2ead7ea7da0437f085f42ffc05f8d13.woff2?v=1775123024591",OV="./fonts/Xiaolai/Xiaolai-Regular-97f7f48ce90c9429bf32ae51469db74d.woff2?v=1775123024591",VV="./fonts/Xiaolai/Xiaolai-Regular-24a21c1e4449222e8d1898d69ff3a404.woff2?v=1775123024591",XV="./fonts/Xiaolai/Xiaolai-Regular-726303e0774b4e678bff8c2deb6ca603.woff2?v=1775123024591",_V="./fonts/Xiaolai/Xiaolai-Regular-5a7fac4b8b23a6e4e5ba0c9bf1756c91.woff2?v=1775123024591",$V="./fonts/Xiaolai/Xiaolai-Regular-2b7441d46298788ac94e610ffcc709b6.woff2?v=1775123024591",AX=[{uri:Iz,descriptors:{unicodeRange:"U+f9b8-fa6d,U+fe32,U+fe45-fe4f,U+ff02-ff0b,U+ff0d-ff1e,U+ff20-ff2a"}},{uri:iz,descriptors:{unicodeRange:"U+20dd-20de,U+25ef,U+ff2b-ffbe,U+ffc2-ffc7,U+ffca-ffcf,U+ffd2-ffd7,U+ffda-ffdc,U+ffe0-ffe6,U+ffe8-ffee"}},{uri:az,descriptors:{unicodeRange:"U+d7eb-d7fb,U+f900-f9b7"}},{uri:tz,descriptors:{unicodeRange:"U+d6f2-d7a3,U+d7b0-d7c6,U+d7cb-d7ea"}},{uri:Qz,descriptors:{unicodeRange:"U+d609-d6f1"}},{uri:oz,descriptors:{unicodeRange:"U+d520-d608"}},{uri:rz,descriptors:{unicodeRange:"U+d437-d51f"}},{uri:sz,descriptors:{unicodeRange:"U+d34e-d436"}},{uri:nz,descriptors:{unicodeRange:"U+d265-d34d"}},{uri:lz,descriptors:{unicodeRange:"U+d17c-d264"}},{uri:Dz,descriptors:{unicodeRange:"U+d093-d17b"}},{uri:cz,descriptors:{unicodeRange:"U+cfaa-d092"}},{uri:dz,descriptors:{unicodeRange:"U+cec1-cfa9"}},{uri:wz,descriptors:{unicodeRange:"U+cdd8-cec0"}},{uri:hz,descriptors:{unicodeRange:"U+ccf1-cdd7"}},{uri:Fz,descriptors:{unicodeRange:"U+cc08-ccf0"}},{uri:pz,descriptors:{unicodeRange:"U+cb43-cc07"}},{uri:mz,descriptors:{unicodeRange:"U+ca83-cb42"}},{uri:kz,descriptors:{unicodeRange:"U+c9a1-ca82"}},{uri:yz,descriptors:{unicodeRange:"U+c8b8-c9a0"}},{uri:bz,descriptors:{unicodeRange:"U+c7cf-c8b7"}},{uri:Gz,descriptors:{unicodeRange:"U+c6e6-c7ce"}},{uri:Uz,descriptors:{unicodeRange:"U+c5fd-c6e5"}},{uri:Lz,descriptors:{unicodeRange:"U+c514-c5fc"}},{uri:xz,descriptors:{unicodeRange:"U+c42b-c513"}},{uri:Nz,descriptors:{unicodeRange:"U+c341-c34e,U+c350-c42a"}},{uri:Sz,descriptors:{unicodeRange:"U+c258-c340"}},{uri:Rz,descriptors:{unicodeRange:"U+c16f-c257"}},{uri:Mz,descriptors:{unicodeRange:"U+c086-c16e"}},{uri:fz,descriptors:{unicodeRange:"U+bf9d-c085"}},{uri:Yz,descriptors:{unicodeRange:"U+beb4-bf9c"}},{uri:Hz,descriptors:{unicodeRange:"U+bdcb-beb3"}},{uri:Kz,descriptors:{unicodeRange:"U+bce2-bdca"}},{uri:Jz,descriptors:{unicodeRange:"U+bbf9-bce1"}},{uri:vz,descriptors:{unicodeRange:"U+bb10-bbf8"}},{uri:Zz,descriptors:{unicodeRange:"U+ba27-bb0f"}},{uri:qz,descriptors:{unicodeRange:"U+b93e-ba26"}},{uri:Wz,descriptors:{unicodeRange:"U+b855-b93d"}},{uri:jz,descriptors:{unicodeRange:"U+b76c-b854"}},{uri:Tz,descriptors:{unicodeRange:"U+b683-b76b"}},{uri:zz,descriptors:{unicodeRange:"U+b59a-b682"}},{uri:Pz,descriptors:{unicodeRange:"U+b4b1-b599"}},{uri:Oz,descriptors:{unicodeRange:"U+11fb-11ff,U+b3cd-b4b0"}},{uri:Vz,descriptors:{unicodeRange:"U+11e6-11fa,U+b2f9-b3cc"}},{uri:Xz,descriptors:{unicodeRange:"U+11d1-11e5,U+b225-b2f8"}},{uri:_z,descriptors:{unicodeRange:"U+11bc-11d0,U+b151-b224"}},{uri:$z,descriptors:{unicodeRange:"U+11a7-11bb,U+b07d-b150"}},{uri:AP,descriptors:{unicodeRange:"U+1191-11a6,U+afaa-b07c"}},{uri:uP,descriptors:{unicodeRange:"U+117c-1190,U+aed6-afa9"}},{uri:eP,descriptors:{unicodeRange:"U+1167-117b,U+ae02-aed5"}},{uri:CP,descriptors:{unicodeRange:"U+1152-115e,U+1160-1166,U+ad2d-ae01"}},{uri:BP,descriptors:{unicodeRange:"U+113d-1151,U+ac59-ad2c"}},{uri:gP,descriptors:{unicodeRange:"U+1100-113c,U+9f95-9f98,U+9f9c-9f9e,U+9fa1-9fce,U+9fd0,U+a960-a97c,U+ac00-ac58"}},{uri:EP,descriptors:{unicodeRange:"U+9771-9772,U+9775,U+9777-977b,U+977d-9784,U+9786-978a,U+978c,U+978e-9790,U+9793,U+9795-9797,U+9799-979f,U+97a1-97a2,U+97a4-97aa,U+97ac,U+97ae,U+97b0-97b1,U+97b3,U+97b5-97e5,U+97e8,U+97ee-97f2,U+97f4,U+97f7-982d"}},{uri:IP,descriptors:{unicodeRange:"U+9491,U+9496,U+9498,U+94c7,U+94cf,U+94d3-94d4,U+94da,U+94e6,U+94fb,U+951c,U+9520,U+9527,U+9533,U+953d,U+9543,U+9548,U+954b,U+9555,U+955a,U+9560,U+956e,U+9574-9575,U+9577-957e,U+9580-95e7,U+95ec,U+95ff,U+9607,U+9613,U+9618,U+961b,U+961e,U+9620,U+9623-9629,U+962b-962d,U+962f-9630,U+9637-963a,U+963e,U+9641,U+9643,U+964a,U+964e-964f,U+9651-9653,U+9656-965a,U+965c-965e,U+9660,U+9663,U+9665-9666,U+966b,U+966d-9671,U+9673,U+9678-9684,U+9687,U+9689-968a,U+968c,U+968e,U+9691-9693"}},{uri:iP,descriptors:{unicodeRange:"U+923c-9273,U+9275-928d,U+928f-92ad,U+92af-92c7,U+92c9-92ee"}},{uri:aP,descriptors:{unicodeRange:"U+9159,U+915b-915c,U+915f-9160,U+9166-9168,U+916b,U+916d,U+9173,U+917a-917c,U+9180-9184,U+9186,U+9188,U+918a,U+918e-918f,U+9193-9199,U+919c-91a1,U+91a4-91a9,U+91ab-91ac,U+91b0-91b3,U+91b6-91b9,U+91bb-91c6,U+91c8,U+91cb,U+91d0,U+91d2-91db,U+91dd-923b"}},{uri:tP,descriptors:{unicodeRange:"U+902b-902c,U+9030-9034,U+9037,U+9039-903a,U+903d,U+903f-9040,U+9043,U+9045-9046,U+9048-904c,U+904e,U+9054-9056,U+9059-905a,U+905c-9061,U+9064,U+9066-9067,U+9069-906c,U+906f-9073,U+9076-907c,U+907e,U+9081,U+9084-9087,U+9089-908a,U+908c-9090,U+9092,U+9094,U+9096,U+9098,U+909a,U+909c,U+909e-90a0,U+90a4-90a5,U+90a7-90a9,U+90ab,U+90ad,U+90b2,U+90b7,U+90bc-90bd,U+90bf-90c0,U+90c2-90c3,U+90c6,U+90c8-90c9,U+90cb-90cd,U+90d2,U+90d4-90d6,U+90d8-90da,U+90de-90e0,U+90e3-90e5,U+90e9-90ea,U+90ec,U+90ee,U+90f0-90f3,U+90f5-90f7,U+90f9-90fc,U+90ff-9101,U+9103,U+9105-9118,U+911a-911d,U+911f-9121,U+9124-912e,U+9130,U+9132-9138,U+913a-9142,U+9144-9145,U+9147-9148,U+9151,U+9153-9156,U+9158"}},{uri:QP,descriptors:{unicodeRange:"U+8f03-8f65,U+8f6a,U+8f80,U+8f8c,U+8f92,U+8f9d,U+8fa0-8fa2,U+8fa4-8fa7,U+8faa,U+8fac-8faf,U+8fb2-8fb5,U+8fb7-8fb8,U+8fba-8fbc,U+8fbf-8fc0,U+8fc3,U+8fc6,U+8fc9-8fcd,U+8fcf,U+8fd2,U+8fd6-8fd7,U+8fda,U+8fe0-8fe1,U+8fe3,U+8fe7,U+8fec,U+8fef,U+8ff1-8ff2,U+8ff4-8ff6,U+8ffa-8ffc,U+8ffe-8fff,U+9007-9008,U+900c,U+900e,U+9013,U+9015,U+9018-9019,U+901c,U+9023-9025,U+9027-902a"}},{uri:oP,descriptors:{unicodeRange:"U+8d03-8d1c,U+8d20,U+8d51-8d52,U+8d57,U+8d5f,U+8d65,U+8d68-8d6a,U+8d6c,U+8d6e-8d6f,U+8d71-8d72,U+8d78-8d80,U+8d82-8d83,U+8d86-8d89,U+8d8c-8d90,U+8d92-8d93,U+8d95-8d9e,U+8da0-8da2,U+8da4-8db0,U+8db2,U+8db6-8db7,U+8db9,U+8dbb,U+8dbd,U+8dc0-8dc2,U+8dc5,U+8dc7-8dca,U+8dcd,U+8dd0,U+8dd2-8dd5,U+8dd8-8dd9,U+8ddc,U+8de0-8de2,U+8de5-8de7,U+8de9,U+8ded-8dee,U+8df0-8df2,U+8df4,U+8df6,U+8dfc,U+8dfe-8e04,U+8e06-8e08,U+8e0b,U+8e0d-8e0e,U+8e10-8e13,U+8e15-8e1c,U+8e20-8e21,U+8e24-8e28,U+8e2b,U+8e2d,U+8e30,U+8e32-8e34,U+8e36-8e38,U+8e3b-8e3c,U+8e3e-8e3f,U+8e43,U+8e45-8e46"}},{uri:rP,descriptors:{unicodeRange:"U+8bea,U+8c09,U+8c1e,U+8c38-8c40,U+8c42-8c45,U+8c48,U+8c4a-8c4b,U+8c4d-8c54,U+8c56-8c59,U+8c5b-8c60,U+8c63-8c69,U+8c6c-8c72,U+8c74-8c77,U+8c7b-8c81,U+8c83-8c84,U+8c86-8c88,U+8c8b,U+8c8d-8c93,U+8c95-8c97,U+8c99-8d02"}},{uri:sP,descriptors:{unicodeRange:"U+8a64-8a78,U+8a7a-8a88,U+8a8b-8a92,U+8a94-8b06,U+8b08-8b1b"}},{uri:nP,descriptors:{unicodeRange:"U+8987-89c0,U+89c3,U+89cd,U+89d3-89d5,U+89d7-89d9,U+89db,U+89dd,U+89df-89e2,U+89e4,U+89e7-89ea,U+89ec-89ee,U+89f0-89f2,U+89f4-89ff,U+8a01-8a06,U+8a08-8a3d,U+8a3f-8a47,U+8a49-8a63"}},{uri:lP,descriptors:{unicodeRange:"U+87e3-87e4,U+87e6-87e9,U+87eb-87ed,U+87ef-87f8,U+87fa-87fd,U+87ff-8802,U+8804-8809,U+880b-8812,U+8814,U+8817-881a,U+881c-8820,U+8823-8831,U+8833-8838,U+883a-883b,U+883d-883f,U+8841-8843,U+8846-884b,U+884e-8853,U+8855-8856,U+8858,U+885a-8860,U+8866-8867,U+886a,U+886d,U+886f,U+8871,U+8873-8876,U+8878-887c,U+8880,U+8883,U+8886-8887,U+8889-888a,U+888c,U+888e-8891,U+8893-8895,U+8897-889b,U+889d-88a1,U+88a3,U+88a5-88aa,U+88ac,U+88ae-88b0,U+88b2-88b6,U+88b8-88bb"}},{uri:DP,descriptors:{unicodeRange:"U+86e7-86e8,U+86ea-86ec,U+86ef,U+86f5-86f7,U+86fa-86fd,U+86ff,U+8701,U+8704-8706,U+870b-870c,U+870e-8711,U+8714,U+8716,U+8719,U+871b,U+871d,U+871f-8720,U+8724,U+8726-8728,U+872a-872d,U+872f-8730,U+8732-8733,U+8735-8736,U+8738-873a,U+873c-873d,U+8740-8746,U+874a-874b,U+874d,U+874f-8752,U+8754-8756,U+8758,U+875a-875f,U+8761-8762,U+8766-876d,U+876f,U+8771-8773,U+8775,U+8777-877a,U+877f-8781,U+8784,U+8786-8787,U+8789-878a,U+878c,U+878e-8792,U+8794-8796,U+8798-879e,U+87a0-87a7,U+87a9-87aa,U+87ae,U+87b0-87b2,U+87b4,U+87b6-87b9,U+87bb-87bc,U+87be-87bf,U+87c1-87c5,U+87c7-87c9,U+87cc-87d0,U+87d4-87da,U+87dc-87df,U+87e1-87e2"}},{uri:cP,descriptors:{unicodeRange:"U+8604,U+8606-8610,U+8612-8615,U+8617-8626,U+8628,U+862a-8637,U+8639-863b,U+863d-864c,U+8652-8653,U+8655-8659,U+865b-865d,U+865f-8661,U+8663-866a,U+866d,U+866f-8670,U+8672-8678,U+8683-8689,U+868e-8692,U+8694,U+8696-869b,U+869e-86a2,U+86a5-86a6,U+86ab,U+86ad-86ae,U+86b2-86b3,U+86b7-86b9,U+86bb-86bf,U+86c1-86c3,U+86c5,U+86c8,U+86cc-86cd,U+86d2-86d3,U+86d5-86d7,U+86da,U+86dc-86dd,U+86e0-86e3,U+86e5-86e6"}},{uri:dP,descriptors:{unicodeRange:"U+8456,U+8458,U+845d-8460,U+8462,U+8464-8468,U+846a,U+846e-8470,U+8472,U+8474,U+8477,U+8479,U+847b-8481,U+8483-8486,U+848a,U+848d,U+848f-8496,U+8498,U+849a-849b,U+849d-84a0,U+84a2-84ae,U+84b0-84b1,U+84b3,U+84b5-84b7,U+84bb-84bc,U+84be,U+84c0,U+84c2-84c3,U+84c5-84c8,U+84cb-84cc,U+84ce-84cf,U+84d2,U+84d4-84d5,U+84d7-84dc,U+84de,U+84e1-84e2,U+84e4,U+84e7-84eb,U+84ed-84ef,U+84f1-84fb,U+84fd-84fe,U+8500-850b,U+850d-8510,U+8512,U+8514-8516,U+8518-8519,U+851b-851e,U+8520,U+8522-852a,U+852d-8536,U+853e-8542,U+8544-8547,U+854b-854f"}},{uri:wP,descriptors:{unicodeRange:"U+82c2-82c3,U+82c5-82c6,U+82c9,U+82d0,U+82d6,U+82d9-82da,U+82dd,U+82e2,U+82e7-82ea,U+82ec-82ee,U+82f0,U+82f2-82f3,U+82f5-82f6,U+82f8,U+82fa,U+82fc-8300,U+830a-830b,U+830d,U+8310,U+8312-8313,U+8316,U+8318-8319,U+831d-8326,U+8329-832a,U+832e,U+8330,U+8332,U+8337,U+833b,U+833d-833f,U+8341-8342,U+8344-8345,U+8348,U+834a-834e,U+8353,U+8355-8359,U+835d,U+8362,U+8370-8376,U+8379-837a,U+837e-8384,U+8387-8388,U+838a-838d,U+838f-8391,U+8394-8397,U+8399-839a,U+839d,U+839f,U+83a1-83a7,U+83ac-83af,U+83b5,U+83bb,U+83be-83bf,U+83c2-83c4,U+83c6,U+83c8-83c9,U+83cb,U+83cd-83ce,U+83d0-83d3,U+83d5,U+83d7,U+83d9-83db,U+83de,U+83e2-83e4,U+83e6-83e8,U+83eb-83ef,U+83f3-83f7,U+83fa-83fc,U+83fe-8400,U+8402,U+8405,U+8407-840a,U+8410,U+8412-8417,U+8419-841b,U+841e-8423,U+8429-8430,U+8432-8437,U+8439-843b,U+843e-8445,U+8447-8450,U+8452-8455"}},{uri:hP,descriptors:{unicodeRange:"U+81a4-81a5,U+81a7,U+81a9,U+81ab-81b2,U+81b4-81b9,U+81bc-81bf,U+81c4-81c5,U+81c7-81c9,U+81cb,U+81cd-81e2,U+81e4-81e6,U+81e8-81e9,U+81eb,U+81ee-81f2,U+81f5-81fa,U+81fd,U+81ff,U+8203,U+8207-820b,U+820e-820f,U+8211,U+8213,U+8215-821a,U+821d,U+8220,U+8224-8227,U+8229,U+822e,U+8232,U+823a,U+823c-823d,U+823f-8243,U+8245-8246,U+8248,U+824a,U+824c-824e,U+8250-8257,U+8259,U+825b-825e,U+8260-8267,U+8269-826d,U+8271,U+8275-8278,U+827b-827c,U+8280-8281,U+8283,U+8285-8287,U+8289,U+828c,U+8290,U+8293-8296,U+829a-829b,U+829e,U+82a0,U+82a2-82a3,U+82a7,U+82b2,U+82b5-82b6,U+82ba-82bc,U+82bf-82c0"}},{uri:FP,descriptors:{unicodeRange:"U+8059,U+805b-8068,U+806b-8070,U+8072-807e,U+8081-8082,U+8085,U+8088,U+808a,U+808d-8092,U+8094-8095,U+8097,U+8099,U+809e,U+80a3,U+80a6-80a8,U+80ac,U+80b0,U+80b3,U+80b5-80b6,U+80b8-80b9,U+80bb,U+80c5,U+80c7-80cb,U+80cf-80d5,U+80d8,U+80df-80e0,U+80e2-80e3,U+80e6,U+80ee,U+80f5,U+80f7,U+80f9,U+80fb,U+80fe-8101,U+8103-8105,U+8107-8108,U+810b-810c,U+8115,U+8117,U+8119,U+811b-811d,U+811f-812b,U+812d-812e,U+8130,U+8133-8135,U+8137,U+8139-813d,U+813f-8145,U+8147,U+8149,U+814d-814f,U+8152,U+8156-8158,U+815b-815f,U+8161-8164,U+8166,U+8168,U+816a-816c,U+816f,U+8172-8173,U+8175-8178,U+8181,U+8183-8187,U+8189,U+818b-818e,U+8190,U+8192-8197,U+8199-819a,U+819e-81a2"}},{uri:pP,descriptors:{unicodeRange:"U+7f3c-7f41,U+7f43,U+7f46-7f4f,U+7f52-7f53,U+7f56,U+7f59,U+7f5b-7f5e,U+7f60,U+7f63-7f67,U+7f6b-7f6d,U+7f6f-7f70,U+7f73,U+7f75-7f78,U+7f7a-7f7d,U+7f7f-7f80,U+7f82-7f89,U+7f8b,U+7f8d,U+7f8f-7f93,U+7f95-7f99,U+7f9b-7f9c,U+7fa0,U+7fa2-7fa3,U+7fa5-7fa6,U+7fa8-7fae,U+7fb1,U+7fb3-7fb7,U+7fba-7fbb,U+7fbe,U+7fc0,U+7fc2-7fc4,U+7fc6-7fc9,U+7fcb,U+7fcd,U+7fcf-7fd3,U+7fd6-7fd7,U+7fd9-7fde,U+7fe2-7fe4,U+7fe7-7fe8,U+7fea-7fed,U+7fef,U+7ff2,U+7ff4-7ffa,U+7ffd-7fff,U+8002,U+8007-800a,U+800e-800f,U+8011,U+8013,U+801a-801b,U+801d-801f,U+8021,U+8023-8024,U+802b-8030,U+8032,U+8034,U+8039-803a,U+803c,U+803e,U+8040-8041,U+8044-8045,U+8047-8049,U+804e-8051,U+8053,U+8055-8057"}},{uri:mP,descriptors:{unicodeRange:"U+7cd8,U+7cda-7cdb,U+7cdd-7cde,U+7ce1-7ce7,U+7ce9-7cee,U+7cf0-7cf7,U+7cf9-7cfa,U+7cfc-7d09,U+7d0b-7d1f,U+7d21,U+7d23-7d26,U+7d28-7d2a,U+7d2c-7d2e,U+7d30-7d6d,U+7d6f-7d76,U+7d78-7d94"}},{uri:kP,descriptors:{unicodeRange:"U+7afe,U+7b00-7b02,U+7b05,U+7b07,U+7b09,U+7b0c-7b0e,U+7b10,U+7b12-7b13,U+7b16-7b18,U+7b1a,U+7b1c-7b1d,U+7b1f,U+7b21-7b23,U+7b27,U+7b29,U+7b2d,U+7b2f-7b30,U+7b32,U+7b34-7b37,U+7b39,U+7b3b,U+7b3d,U+7b3f-7b44,U+7b46,U+7b48,U+7b4a,U+7b4d-7b4e,U+7b53,U+7b55,U+7b57,U+7b59,U+7b5c,U+7b5e-7b5f,U+7b61,U+7b63-7b6d,U+7b6f-7b70,U+7b73-7b74,U+7b76,U+7b78,U+7b7a,U+7b7c-7b7d,U+7b7f,U+7b81-7b84,U+7b86-7b8c,U+7b8e-7b8f,U+7b91-7b93,U+7b96,U+7b98-7b9b,U+7b9e-7ba0,U+7ba3-7ba5,U+7bae-7bb0,U+7bb2-7bb3,U+7bb5-7bb7,U+7bb9-7bc0,U+7bc2-7bc5,U+7bc8-7bcb,U+7bcd-7bd0,U+7bd2,U+7bd4-7bd8,U+7bdb-7bdc,U+7bde-7be0,U+7be2-7be4,U+7be7-7be9,U+7beb-7bed,U+7bef-7bf0,U+7bf2-7bf6,U+7bf8-7bfb,U+7bfd,U+7bff-7c06,U+7c08-7c0a,U+7c0d-7c0e,U+7c10-7c13"}},{uri:yP,descriptors:{unicodeRange:"U+7a10-7a13,U+7a15-7a16,U+7a18-7a19,U+7a1b-7a1d,U+7a1f,U+7a21-7a22,U+7a24-7a32,U+7a34-7a36,U+7a38,U+7a3a,U+7a3e,U+7a40-7a45,U+7a47-7a50,U+7a52-7a56,U+7a58-7a6f,U+7a71-7a73,U+7a75,U+7a7b-7a7e,U+7a82,U+7a85,U+7a87,U+7a89-7a8c,U+7a8e-7a90,U+7a93-7a94,U+7a99-7a9b,U+7a9e,U+7aa1-7aa4,U+7aa7,U+7aa9-7aab,U+7aae-7ab2,U+7ab4-7abe,U+7ac0-7aca,U+7acc-7ad5,U+7ad7-7ad8,U+7ada-7add,U+7ae1-7ae2,U+7ae4,U+7ae7-7aec,U+7aee,U+7af0-7af8,U+7afb-7afc"}},{uri:bP,descriptors:{unicodeRange:"U+790d-7912,U+7914-791d,U+791f-7923,U+7925-7933,U+7935-7939,U+793d,U+793f,U+7942-7945,U+7947,U+794a-7952,U+7954-7955,U+7958-7959,U+7961,U+7963-7964,U+7966,U+7969-796c,U+796e,U+7970-7976,U+7979,U+797b-797f,U+7982-7983,U+7986-7989,U+798b-798e,U+7990-7999,U+799b-79a6,U+79a8-79b2,U+79b4-79b8,U+79bc,U+79bf,U+79c2,U+79c4-79c5,U+79c7-79c8,U+79ca,U+79cc,U+79ce-79d0,U+79d3-79d4,U+79d6-79d7,U+79d9-79de,U+79e0-79e2,U+79e5,U+79e8,U+79ea,U+79ec,U+79ee,U+79f1-79f7,U+79f9-79fa,U+79fc,U+79fe-79ff,U+7a01,U+7a04-7a05,U+7a07-7a0a,U+7a0c,U+7a0f"}},{uri:GP,descriptors:{unicodeRange:"U+77d8-77da,U+77dd-77e1,U+77e4,U+77e6,U+77e8,U+77ea,U+77ef-77f2,U+77f4-77f5,U+77f7,U+77f9-77fc,U+7803-7808,U+780a-780b,U+780e-7810,U+7813,U+7815,U+7819,U+781b,U+781e,U+7820-7822,U+7824,U+7828,U+782a-782b,U+782e-782f,U+7831-7833,U+7835-7836,U+783d,U+783f,U+7841-7844,U+7846,U+7848-784b,U+784d,U+784f,U+7851,U+7853-7854,U+7858-785c,U+785e-7869,U+786f-7876,U+7878-787b,U+787d-7886,U+7888,U+788a-788b,U+788f-7890,U+7892,U+7894-7896,U+7899,U+789d-789e,U+78a0,U+78a2,U+78a4,U+78a6,U+78a8-78af,U+78b5-78b8,U+78ba-78bd,U+78bf-78c0,U+78c2-78c4,U+78c6-78c8,U+78cc-78cf,U+78d1-78d3,U+78d6-78d8,U+78da-78e7,U+78e9-78eb,U+78ed-78f1,U+78f3,U+78f5-78f6,U+78f8-78f9,U+78fb-7900,U+7902-7904,U+7906-790c"}},{uri:UP,descriptors:{unicodeRange:"U+76af-76b0,U+76b3,U+76b5-76be,U+76c0-76c1,U+76c3-76c4,U+76c7,U+76c9,U+76cb-76cc,U+76d3,U+76d5,U+76d9-76da,U+76dc-76de,U+76e0-76e4,U+76e6-76ed,U+76f0,U+76f3,U+76f5-76f7,U+76fa-76fb,U+76fd,U+76ff-7703,U+7705-7706,U+770a,U+770c,U+770e-7718,U+771b-771e,U+7721,U+7723-7725,U+7727,U+772a-772c,U+772e,U+7730-7734,U+7739,U+773b,U+773d-773f,U+7742,U+7744-7746,U+7748-774f,U+7752-7759,U+775c-7760,U+7764,U+7767,U+7769-776a,U+776d-7778,U+777a-777c,U+7781-7783,U+7786-778b,U+778f-7790,U+7793-779e,U+77a1,U+77a3-77a4,U+77a6,U+77a8,U+77ab,U+77ad-77af,U+77b1-77b2,U+77b4,U+77b6-77ba,U+77bc,U+77be,U+77c0-77cc,U+77ce-77d6"}},{uri:LP,descriptors:{unicodeRange:"U+7589-758a,U+758c-758e,U+7590,U+7593,U+7595,U+7598,U+759b-759c,U+759e,U+75a2,U+75a6-75aa,U+75ad,U+75b6-75b7,U+75ba-75bb,U+75bf-75c1,U+75c6,U+75cb-75cc,U+75ce-75d1,U+75d3,U+75d7,U+75d9-75da,U+75dc-75dd,U+75df-75e1,U+75e5,U+75e9,U+75ec-75ef,U+75f2-75f3,U+75f5-75f8,U+75fa-75fb,U+75fd-75fe,U+7602,U+7604,U+7606-7609,U+760b,U+760d-760f,U+7611-7614,U+7616,U+761a,U+761c-761e,U+7621,U+7623,U+7627-7628,U+762c,U+762e-762f,U+7631-7632,U+7636-7637,U+7639-763b,U+763d,U+7641-7642,U+7644-764b,U+764e-7653,U+7655,U+7657-765b,U+765d,U+765f-7662,U+7664-766a,U+766c-766e,U+7670-7677,U+7679-767a,U+767c,U+767f-7681,U+7683,U+7685,U+7689-768a,U+768c-768d,U+768f-7690,U+7692,U+7694-7695,U+7697-7698,U+769a-76a3,U+76a5-76ad"}},{uri:xP,descriptors:{unicodeRange:"U+7492-749b,U+749d,U+749f-74a6,U+74aa-74b9,U+74bb-74d1,U+74d3-74db,U+74dd,U+74df,U+74e1,U+74e5,U+74e7-74ed,U+74f0-74f3,U+74f5,U+74f8-74fe,U+7500-7503,U+7505-750c,U+750e,U+7510,U+7512,U+7514-7517,U+751b,U+751d-751e,U+7520-7524,U+7526-7527,U+752a,U+752e,U+7534,U+7536,U+7539,U+753c-753d,U+753f,U+7541-7544,U+7546-7547,U+7549-754a,U+754d,U+7550-7553,U+7555-7558,U+755d-7564,U+7567-7569,U+756b-7571,U+7573,U+7575-7577,U+757a-757e,U+7580-7582,U+7584-7585,U+7587-7588"}},{uri:NP,descriptors:{unicodeRange:"U+7372-737d,U+737f-7383,U+7385-7386,U+7388,U+738a,U+738c-738d,U+738f-7390,U+7392-7395,U+7397-739a,U+739c-739e,U+73a0-73a1,U+73a3-73a8,U+73aa,U+73ac-73ad,U+73b1,U+73b4-73b6,U+73b8-73b9,U+73bc-73bf,U+73c1,U+73c3-73c7,U+73cb-73cc,U+73ce,U+73d2-73d8,U+73da-73dd,U+73df,U+73e1-73e4,U+73e6,U+73e8,U+73ea-73ec,U+73ee-73f1,U+73f3-7402,U+7404,U+7407-7408,U+740b-740e,U+7411-7419,U+741c-7421,U+7423-7424,U+7427,U+7429,U+742b,U+742d,U+742f,U+7431-7432,U+7437-743b,U+743d-7440,U+7442-7454,U+7456,U+7458,U+745d,U+7460-746c,U+746e-746f,U+7471-7475,U+7478-747d,U+747f,U+7482,U+7484-7486,U+7488-748a,U+748c-748d,U+748f,U+7491"}},{uri:SP,descriptors:{unicodeRange:"U+7054-705d,U+705f-706a,U+706e,U+7071-7074,U+7077,U+7079-707b,U+707d,U+7081-7084,U+7086-7088,U+708b-708d,U+708f-7091,U+7093,U+7097-7098,U+709a-709b,U+709e-70aa,U+70b0,U+70b2,U+70b4-70b6,U+70ba,U+70be-70bf,U+70c4-70c7,U+70c9,U+70cb-70d7,U+70da,U+70dc-70de,U+70e0-70e3,U+70e5,U+70ea,U+70ee,U+70f0-70f6,U+70f8,U+70fa-70fc,U+70fe-7108,U+710b-710f,U+7111-7112,U+7114,U+7117,U+711b-7125,U+7127-712e,U+7132-7135,U+7137-7144,U+7146-7149,U+714b,U+714d,U+714f-715b,U+715d,U+715f-7163,U+7165,U+7169-716d,U+716f-7171,U+7174-7177"}},{uri:RP,descriptors:{unicodeRange:"U+722e-722f,U+7232-7234,U+723a,U+723c,U+723e,U+7240-7246,U+7249-724b,U+724e-7251,U+7253-7255,U+7257-7258,U+725a,U+725c,U+725e,U+7260,U+7263-7265,U+7268,U+726a-726d,U+7270-7271,U+7273-7274,U+7276-7278,U+727b-727d,U+7282-7283,U+7285-7289,U+728c,U+728e,U+7290-7291,U+7293-729e,U+72a0-72ab,U+72ae,U+72b1-72b3,U+72b5,U+72ba-72c0,U+72c5-72c7,U+72c9-72cc,U+72cf,U+72d1,U+72d3-72d6,U+72d8,U+72da-72dd,U+72df,U+72e2-72e7,U+72ea-72eb,U+72f5-72f6,U+72f9,U+72fd-7300,U+7302,U+7304-7309,U+730b-730d,U+730f-7312,U+7314,U+7318-731a,U+731f-7320,U+7323-7324,U+7326-7328,U+732d,U+732f-7330,U+7332-7333,U+7335-7336,U+733a-733d,U+7340-734c,U+734e-734f,U+7351,U+7353-7356,U+7358-735f,U+7361-736b,U+736e,U+7370-7371"}},{uri:MP,descriptors:{unicodeRange:"U+6ec5-6ec6,U+6ec8-6eca,U+6ecc-6ece,U+6ed0,U+6ed2,U+6ed6,U+6ed8-6ed9,U+6edb-6edd,U+6ee3,U+6ee7,U+6eea-6ef3,U+6ef5-6ef8,U+6efa-6f01,U+6f03-6f05,U+6f07-6f08,U+6f0a-6f0e,U+6f10-6f12,U+6f16-6f1f,U+6f21-6f23,U+6f25-6f28,U+6f2c,U+6f2e,U+6f30,U+6f32,U+6f34-6f35,U+6f37-6f3d,U+6f3f-6f45,U+6f48-6f4a,U+6f4c,U+6f4e-6f57,U+6f59-6f5b,U+6f5d,U+6f5f-6f61,U+6f63-6f65,U+6f67-6f6c,U+6f6f-6f71,U+6f73,U+6f75-6f77,U+6f79,U+6f7b,U+6f7d-6f83,U+6f85-6f87,U+6f8a-6f8b,U+6f8f-6f9b,U+6f9d-6fa0,U+6fa2-6fa6,U+6fa8-6fb1"}},{uri:fP,descriptors:{unicodeRange:"U+6d73,U+6d75-6d76,U+6d79-6d7b,U+6d7d-6d81,U+6d83-6d84,U+6d86-6d87,U+6d8a-6d8b,U+6d8d,U+6d8f-6d90,U+6d92,U+6d96-6d9a,U+6d9c,U+6da2,U+6da5,U+6dac-6dad,U+6db0-6db1,U+6db3-6db4,U+6db6-6db7,U+6db9-6dbe,U+6dc1-6dc3,U+6dc8-6dca,U+6dcd-6dd0,U+6dd2-6dd5,U+6dd7,U+6dda-6ddc,U+6ddf,U+6de2-6de3,U+6de5,U+6de7-6dea,U+6ded,U+6def-6df0,U+6df2,U+6df4-6df6,U+6df8,U+6dfa,U+6dfd-6e04,U+6e06-6e09,U+6e0b,U+6e0f,U+6e12-6e13,U+6e15,U+6e18-6e19,U+6e1b-6e1c,U+6e1e-6e1f,U+6e22,U+6e26-6e28,U+6e2a,U+6e2c,U+6e2e,U+6e30-6e31,U+6e33,U+6e35-6e37,U+6e39,U+6e3b-6e42,U+6e45-6e4c,U+6e4f-6e52,U+6e55,U+6e57,U+6e59-6e5a,U+6e5c-6e5e,U+6e60-6e6a,U+6e6c-6e6d,U+6e6f-6e7d,U+6e80-6e82,U+6e84,U+6e87-6e88,U+6e8a-6e8e,U+6e91-6e97,U+6e99-6e9b,U+6e9d-6e9e,U+6ea0-6ea1,U+6ea3-6ea4,U+6ea6,U+6ea8-6ea9,U+6eab-6eae,U+6eb0,U+6eb3,U+6eb5,U+6eb8-6eb9,U+6ebc,U+6ebe-6ec0,U+6ec3-6ec4"}},{uri:YP,descriptors:{unicodeRange:"U+6bbb-6bbe,U+6bc0,U+6bc3-6bc4,U+6bc6-6bca,U+6bcc,U+6bce,U+6bd0-6bd1,U+6bd8,U+6bda,U+6bdc-6be0,U+6be2-6be9,U+6bec-6bee,U+6bf0-6bf2,U+6bf4,U+6bf6-6bf8,U+6bfa-6bfc,U+6bfe-6c04,U+6c08-6c0c,U+6c0e,U+6c12,U+6c17,U+6c1c-6c1e,U+6c20,U+6c23,U+6c25,U+6c2b-6c2d,U+6c31,U+6c33,U+6c36-6c37,U+6c39-6c3c,U+6c3e-6c3f,U+6c43-6c45,U+6c48,U+6c4b-6c4f,U+6c51-6c53,U+6c56,U+6c58-6c5a,U+6c62-6c63,U+6c65-6c67,U+6c6b-6c6f,U+6c71,U+6c73,U+6c75,U+6c77-6c78,U+6c7a-6c7c,U+6c7f-6c80,U+6c84,U+6c87,U+6c8a-6c8b,U+6c8d-6c8e,U+6c91-6c92,U+6c95-6c98,U+6c9a,U+6c9c-6c9e,U+6ca0,U+6ca2,U+6ca8,U+6cac,U+6caf-6cb0,U+6cb4-6cb7,U+6cba,U+6cc0-6cc3,U+6cc6-6cc8,U+6ccb,U+6ccd-6ccf,U+6cd1-6cd2,U+6cd8-6cda,U+6cdc-6cdd,U+6cdf,U+6ce4,U+6ce6-6ce7,U+6ce9,U+6cec-6ced,U+6cf2,U+6cf4,U+6cf9,U+6cff-6d00,U+6d02-6d03,U+6d05-6d06,U+6d08-6d0a,U+6d0d,U+6d0f-6d11,U+6d13-6d16,U+6d18,U+6d1c-6d1d,U+6d1f-6d24,U+6d26,U+6d28-6d29,U+6d2c-6d2d,U+6d2f-6d30,U+6d34,U+6d36-6d38,U+6d3a,U+6d3f-6d40,U+6d42,U+6d44,U+6d49,U+6d4c,U+6d50,U+6d55-6d58,U+6d5b,U+6d5d,U+6d5f,U+6d61-6d62,U+6d64-6d65,U+6d67-6d68,U+6d6b-6d6d,U+6d70-6d72"}},{uri:HP,descriptors:{unicodeRange:"U+6967-696a,U+696c-696d,U+696f-6970,U+6972-6976,U+697a-697b,U+697d-697f,U+6981,U+6983,U+6985,U+698a-698c,U+698e-6993,U+6996-6997,U+6999-699a,U+699d-69a6,U+69a9-69aa,U+69ac,U+69ae-69b0,U+69b2-69b3,U+69b5-69b6,U+69b8-69ba,U+69bc-69c0,U+69c2-69c9,U+69cb,U+69cd,U+69cf,U+69d1-69d3,U+69d5-69da,U+69dc-69de,U+69e1-69ec,U+69ee-69f1,U+69f3-69fc,U+69fe,U+6a00-6a09,U+6a0b-6a16,U+6a19-6a1e,U+6a20,U+6a22-6a27,U+6a29,U+6a2b-6a2e,U+6a30,U+6a32-6a34,U+6a36-6a3c,U+6a3f-6a43,U+6a45-6a46,U+6a48-6a4a"}},{uri:KP,descriptors:{unicodeRange:"U+6830-6831,U+6834-6836,U+683a-683b,U+683f,U+6847,U+684b,U+684d,U+684f,U+6852,U+6856-685f,U+686a,U+686c-6873,U+6875,U+6878-6880,U+6882,U+6884,U+6887-688e,U+6890-6892,U+6894-6896,U+6898-68a1,U+68a3-68a5,U+68a9-68ac,U+68ae,U+68b1-68b2,U+68b4,U+68b6-68bf,U+68c1,U+68c3-68c8,U+68ca,U+68cc,U+68ce-68d1,U+68d3-68d4,U+68d6-68d7,U+68d9,U+68db-68df,U+68e1-68e2,U+68e4-68ed,U+68ef,U+68f2-68f4,U+68f6-68f8,U+68fb,U+68fd-6900,U+6902-6904,U+6906-690a,U+690c,U+690f,U+6911,U+6913-691e,U+6921-6923,U+6925-692c,U+692e-692f,U+6931-6933,U+6935-6938,U+693a-693c,U+693e,U+6940-6941,U+6943-6953,U+6955-6956,U+6958-6959,U+695b-695c,U+695f,U+6961-6962,U+6964-6965"}},{uri:JP,descriptors:{unicodeRange:"U+66b8,U+66ba-66bd,U+66bf-66d8,U+66da,U+66de-66e5,U+66e7-66e8,U+66ea-66ef,U+66f1,U+66f5-66f6,U+66f8,U+66fa-66fb,U+66fd,U+6701-6707,U+670c,U+670e-670f,U+6711-6713,U+6716,U+6718-671a,U+671c,U+671e,U+6720-6725,U+6727,U+6729,U+672e,U+6730,U+6732-6733,U+6736-6739,U+673b-673c,U+673e-673f,U+6741,U+6744-6745,U+6747,U+674a-674b,U+674d,U+6752,U+6754-6755,U+6757-675b,U+675d,U+6762-6764,U+6766-6767,U+676b-676c,U+676e,U+6771,U+6774,U+6776,U+6778-677b,U+677d,U+6780,U+6782-6783,U+6785-6786,U+6788,U+678a,U+678c-678f,U+6791-6794,U+6796,U+6799,U+679b,U+679f-67a1,U+67a4,U+67a6,U+67a9,U+67ac,U+67ae,U+67b1-67b2,U+67b4,U+67b9-67c0,U+67c2,U+67c5-67ce,U+67d5-67d7,U+67db,U+67df,U+67e1,U+67e3-67e4,U+67e6-67e8,U+67ea-67eb,U+67ed-67ee,U+67f2,U+67f5-67fc,U+67fe,U+6801-6804,U+6806,U+680d,U+6810,U+6812,U+6814-6815,U+6818-681c,U+681e-6820,U+6822-6828,U+682b-682f"}},{uri:vP,descriptors:{unicodeRange:"U+6569-656a,U+656d-656f,U+6571,U+6573,U+6575-6576,U+6578-6586,U+6588-658a,U+658d-658f,U+6592,U+6594-6596,U+6598,U+659a,U+659d-659e,U+65a0,U+65a2-65a3,U+65a6,U+65a8,U+65aa,U+65ac,U+65ae,U+65b1-65b8,U+65ba-65bb,U+65be-65c0,U+65c2,U+65c7-65ca,U+65cd,U+65d0-65d1,U+65d3-65d5,U+65d8-65df,U+65e1,U+65e3-65e4,U+65ea-65eb,U+65f2-65f5,U+65f8-65f9,U+65fb-65ff,U+6601,U+6604-6605,U+6607-6609,U+660b,U+660d,U+6610-6612,U+6616-6618,U+661a-661c,U+661e,U+6621-6624,U+6626,U+6629-662c,U+662e,U+6630,U+6632-6633,U+6637-663b,U+663d,U+663f-6640,U+6642,U+6644-664a,U+664d-664e,U+6650-6651,U+6658-6659,U+665b-665e,U+6660,U+6662-6663,U+6665,U+6667,U+6669-666d,U+6671-6673,U+6675,U+6678-6679,U+667b-667d,U+667f-6681,U+6683,U+6685-6686,U+6688-668b,U+668d-6690,U+6692-6695,U+6698-669c,U+669e-66a6,U+66a9-66ad,U+66af-66b3,U+66b5-66b7"}},{uri:ZP,descriptors:{unicodeRange:"U+5f30,U+5f32-5f38,U+5f3b,U+5f3d-5f3f,U+5f41-5f4f,U+5f51,U+5f54,U+5f59-5f5c,U+5f5e-5f60,U+5f63,U+5f65,U+5f67-5f68,U+5f6b,U+5f6e-5f6f,U+5f72,U+5f74-5f76,U+5f78,U+5f7a,U+5f7d-5f7f,U+5f83,U+5f86,U+5f8d-5f8f,U+5f91,U+5f93-5f94,U+5f96,U+5f9a-5f9b,U+5f9d-5fa0,U+5fa2-5fa7,U+5fa9,U+5fab-5fac,U+5faf-5fb4,U+5fb6,U+5fb8-5fbb,U+5fbe-5fc2,U+5fc7-5fc8,U+5fca-5fcb,U+5fce,U+5fd3-5fd5,U+5fda-5fdc,U+5fde-5fdf,U+5fe2-5fe3,U+5fe5-5fe6,U+5fe8-5fe9,U+5fec,U+5fef-5ff0,U+5ff2-5ff4,U+5ff6-5ff7,U+5ff9-5ffa,U+5ffc,U+6007-6009,U+600b-600c,U+6010-6011,U+6013,U+6017-6018,U+601a,U+601e-601f,U+6022-6024,U+602c-602e,U+6030-6034,U+6036-603a,U+603d-603e,U+6040,U+6044-604a,U+604c,U+604e-604f,U+6051,U+6053-6054,U+6056-6058,U+605b-605c,U+605e-6061,U+6065-6066,U+606e,U+6071-6072,U+6074-6075,U+6077,U+607e,U+6080-6082,U+6085-6088,U+608a-608b,U+608e-6091,U+6093,U+6095,U+6097-6099,U+609c,U+609e,U+60a1-60a2,U+60a4-60a5,U+60a7,U+60a9-60aa,U+60ae,U+60b0,U+60b3,U+60b5-60b7,U+60b9-60ba,U+60bd-60c4,U+60c7-60c9,U+60cc"}},{uri:qP,descriptors:{unicodeRange:"U+635a-635d,U+6360,U+6364-6366,U+6368,U+636a-636c,U+636f-6370,U+6372-6375,U+6378-6379,U+637c-637f,U+6381,U+6383-6386,U+638b,U+638d,U+6391,U+6393-6395,U+6397,U+6399-639f,U+63a1,U+63a4,U+63a6,U+63ab,U+63af,U+63b1-63b2,U+63b5-63b6,U+63b9,U+63bb,U+63bd,U+63bf-63c3,U+63c5,U+63c7-63c8,U+63ca-63cc,U+63d1,U+63d3-63d5,U+63d7-63dd,U+63df,U+63e2,U+63e4-63e8,U+63eb-63ec,U+63ee-63f1,U+63f3,U+63f5,U+63f7,U+63f9-63fc,U+63fe,U+6403-6404,U+6406-640a,U+640d-640e,U+6411-6412,U+6415-641a,U+641d,U+641f,U+6422-6425,U+6427-6429,U+642b,U+642e-6433,U+6435-6439,U+643b-643c,U+643e,U+6440,U+6442-6443,U+6449,U+644b-6451,U+6453,U+6455-6457,U+6459-645d,U+645f-6466,U+6468,U+646a-646c,U+646e-6477,U+647b-6481,U+6483,U+6486,U+6488-648f"}},{uri:WP,descriptors:{unicodeRange:"U+61c5-61c7,U+61c9,U+61cc-61d0,U+61d3,U+61d5-61e5,U+61e7-61f4,U+61f6-61fe,U+6200-6205,U+6207,U+6209,U+6213-6214,U+6219,U+621c-621e,U+6220,U+6223,U+6226-6229,U+622b,U+622d,U+622f-6232,U+6235-6236,U+6238-623c,U+6242,U+6244-6246,U+624a,U+624f-6250,U+6255-6257,U+6259-625a,U+625c-6262,U+6264-6265,U+6268,U+6271-6272,U+6274-6275,U+6277-6278,U+627a-627b,U+627d,U+6281-6283,U+6285-6288,U+628b-6290,U+6294,U+6299,U+629c-629e,U+62a3,U+62a6-62a7,U+62a9-62aa,U+62ad-62b0,U+62b2-62b4,U+62b6-62b8,U+62ba,U+62be,U+62c0-62c1,U+62c3,U+62cb,U+62cf,U+62d1,U+62d5,U+62dd-62de,U+62e0-62e1,U+62e4,U+62ea-62eb,U+62f0,U+62f2,U+62f5,U+62f8-62fb,U+6300,U+6303-6306,U+630a-630d,U+630f-6310,U+6312-6315,U+6317-6319,U+631c,U+6326-6327,U+6329,U+632c-632e,U+6330-6331,U+6333-6338,U+633b-633c,U+633e-6341,U+6344,U+6347-6348,U+634a,U+6351-6354,U+6356-6359"}},{uri:jP,descriptors:{unicodeRange:"U+5dd0-5dda,U+5ddc,U+5ddf-5de0,U+5de3-5de4,U+5dea,U+5dec-5ded,U+5df0,U+5df5-5df6,U+5df8-5dfc,U+5dff-5e00,U+5e04,U+5e07,U+5e09-5e0b,U+5e0d-5e0e,U+5e12-5e13,U+5e17,U+5e1e-5e25,U+5e28-5e2c,U+5e2f-5e30,U+5e32-5e36,U+5e39-5e3a,U+5e3e-5e41,U+5e43,U+5e46-5e4b,U+5e4d-5e53,U+5e56-5e5a,U+5e5c-5e5d,U+5e5f-5e60,U+5e63-5e71,U+5e75,U+5e77,U+5e79,U+5e7e,U+5e81-5e83,U+5e85,U+5e88-5e89,U+5e8c-5e8e,U+5e92,U+5e98,U+5e9b,U+5e9d,U+5ea1-5ea4,U+5ea8-5eac,U+5eae-5eb2,U+5eb4,U+5eba-5ebd,U+5ebf-5ec8,U+5ecb-5ed0,U+5ed4-5ed5,U+5ed7-5eda,U+5edc-5ee7,U+5ee9,U+5eeb-5ef3,U+5ef5,U+5ef8-5ef9,U+5efb-5efd,U+5f05-5f07,U+5f09,U+5f0c-5f0e,U+5f10,U+5f12,U+5f14,U+5f16,U+5f19-5f1a,U+5f1c-5f1e,U+5f21-5f24,U+5f28,U+5f2b-5f2c,U+5f2e"}},{uri:TP,descriptors:{unicodeRange:"U+60cd-60d0,U+60d2-60d4,U+60d6-60d7,U+60d9,U+60db,U+60de,U+60e1-60e5,U+60ea,U+60f1-60f2,U+60f5,U+60f7-60f8,U+60fb-60ff,U+6102-6105,U+6107,U+610a-610c,U+6110-6114,U+6116-6119,U+611b-611e,U+6121-6122,U+6125,U+6128-612a,U+612c-613e,U+6140-6147,U+6149,U+614b,U+614d,U+614f-6150,U+6152-6154,U+6156-615c,U+615e-6161,U+6163-6166,U+6169-616f,U+6171-6174,U+6176,U+6178-618a,U+618c-618d,U+618f-6193,U+6195-619c,U+619e-61a6,U+61aa-61ab,U+61ad-61b6,U+61b8-61bd,U+61bf-61c1,U+61c3-61c4"}},{uri:zP,descriptors:{unicodeRange:"U+5cf4-5cfa,U+5cfc-5d01,U+5d04-5d05,U+5d08-5d0d,U+5d0f-5d13,U+5d15,U+5d17-5d1a,U+5d1c-5d1d,U+5d1f-5d23,U+5d25,U+5d28,U+5d2a-5d2c,U+5d2f-5d33,U+5d35-5d3c,U+5d3f-5d46,U+5d48-5d49,U+5d4d-5d57,U+5d59-5d5a,U+5d5c,U+5d5e-5d68,U+5d6a,U+5d6d-5d6e,U+5d70-5d73,U+5d75-5d81,U+5d83-5d98,U+5d9a-5d9c,U+5d9e-5db6,U+5db8-5dc4,U+5dc6-5dcc,U+5dce-5dcf"}},{uri:PP,descriptors:{unicodeRange:"U+5b52,U+5b56,U+5b5e,U+5b60-5b61,U+5b67-5b68,U+5b6b,U+5b6d-5b6f,U+5b72,U+5b74,U+5b76-5b79,U+5b7b-5b7c,U+5b7e-5b7f,U+5b82,U+5b86,U+5b8a,U+5b8d-5b8e,U+5b90-5b92,U+5b94,U+5b96,U+5b9f,U+5ba7-5ba9,U+5bac-5baf,U+5bb1-5bb2,U+5bb7,U+5bba-5bbc,U+5bc0-5bc1,U+5bc3,U+5bc8-5bcb,U+5bcd-5bcf,U+5bd1,U+5bd4-5bdc,U+5be0,U+5be2-5be3,U+5be6-5be7,U+5be9-5bed,U+5bef,U+5bf1-5bf7,U+5bfd-5bfe,U+5c00,U+5c02-5c03,U+5c05,U+5c07-5c08,U+5c0b-5c0e,U+5c10,U+5c12-5c13,U+5c17,U+5c19,U+5c1b,U+5c1e-5c21,U+5c23,U+5c26,U+5c28-5c2b,U+5c2d-5c30,U+5c32-5c33,U+5c35-5c37,U+5c43-5c44,U+5c46-5c47,U+5c4c-5c4d,U+5c52-5c54,U+5c56-5c58,U+5c5a-5c5d,U+5c5f,U+5c62,U+5c64,U+5c67-5c6d,U+5c70,U+5c72-5c78,U+5c7b-5c7e,U+5c80,U+5c83-5c87,U+5c89-5c8b,U+5c8e-5c8f,U+5c92-5c93,U+5c95,U+5c9d-5ca1,U+5ca4-5ca8,U+5caa,U+5cae-5cb0,U+5cb2,U+5cb4,U+5cb6,U+5cb9-5cbc,U+5cbe,U+5cc0,U+5cc2-5cc3,U+5cc5-5cca,U+5ccc-5cd1,U+5cd3-5cd8,U+5cda-5ce0,U+5ce2-5ce3,U+5ce7,U+5ce9,U+5ceb-5cec,U+5cee-5cef,U+5cf1-5cf3"}},{uri:OP,descriptors:{unicodeRange:"U+593b,U+593d-5940,U+5943,U+5945-5946,U+594a,U+594c-594d,U+5950,U+5952-5953,U+5959,U+595b-595f,U+5961,U+5963-5964,U+5966-5972,U+5975,U+5977,U+597a-597c,U+597e-5980,U+5985,U+5989,U+598b-598c,U+598e-5991,U+5994-5995,U+5998,U+599a-599d,U+599f-59a2,U+59a6-59a7,U+59ac-59ad,U+59b0-59b1,U+59b3-59b8,U+59ba,U+59bc-59bd,U+59bf-59c5,U+59c7-59c9,U+59cc-59cf,U+59d5-59d6,U+59d9,U+59db,U+59de-59e2,U+59e4,U+59e6-59e7,U+59e9-59eb,U+59ed-59f8,U+59fa,U+59fc-59fe,U+5a00,U+5a02,U+5a0a-5a0b,U+5a0d-5a10,U+5a12,U+5a14-5a17,U+5a19-5a1b,U+5a1d-5a1e,U+5a21-5a22,U+5a24,U+5a26-5a28,U+5a2a-5a30,U+5a33,U+5a35,U+5a37-5a3b,U+5a3d-5a3f,U+5a41-5a45,U+5a47-5a48,U+5a4b-5a54,U+5a56-5a59,U+5a5b-5a61,U+5a63-5a66,U+5a68-5a69,U+5a6b-5a73,U+5a78-5a79,U+5a7b-5a7e,U+5a80-5a90"}},{uri:VP,descriptors:{unicodeRange:"U+5a91,U+5a93-5a99,U+5a9c-5aa9,U+5aab-5ab1,U+5ab4,U+5ab6-5ab7,U+5ab9-5abd,U+5abf-5ac0,U+5ac3-5ac8,U+5aca-5acb,U+5acd-5ad1,U+5ad3,U+5ad5,U+5ad7,U+5ad9-5adb,U+5add-5adf,U+5ae2,U+5ae4-5ae5,U+5ae7-5ae8,U+5aea,U+5aec-5af0,U+5af2-5b08,U+5b0a-5b15,U+5b18-5b31,U+5b33,U+5b35-5b36,U+5b38-5b3f,U+5b41-5b4f"}},{uri:XP,descriptors:{unicodeRange:"U+5843,U+5845-584b,U+584e-5850,U+5852-5853,U+5855-5857,U+5859-585d,U+585f-5864,U+5866-586a,U+586d-587d,U+587f,U+5882,U+5884,U+5886-5888,U+588a-5891,U+5894-5898,U+589b-589d,U+58a0-58a7,U+58aa-58bb,U+58bd-58c0,U+58c2-58c4,U+58c6-58d0,U+58d2-58d4,U+58d6-58e3,U+58e5-58ea,U+58ed,U+58ef,U+58f1-58f2,U+58f4-58f5,U+58f7-58f8,U+58fa-5901,U+5903,U+5905-5906,U+5908-590c,U+590e,U+5910-5913,U+5917-5918,U+591b,U+591d-591e,U+5920-5923,U+5926,U+5928,U+592c,U+5930,U+5932-5933,U+5935-5936"}},{uri:_P,descriptors:{unicodeRange:"U+56d0-56d3,U+56d5-56d6,U+56d8-56d9,U+56dc,U+56e3,U+56e5-56ea,U+56ec,U+56ee-56ef,U+56f2-56f3,U+56f6-56f8,U+56fb-56fc,U+5700-5702,U+5705,U+5707,U+570b-571b,U+571d-571e,U+5720-5722,U+5724-5727,U+572b,U+5731-5732,U+5734-5738,U+573c-573d,U+573f,U+5741,U+5743-5746,U+5748-5749,U+574b,U+5752-5756,U+5758-5759,U+5762-5763,U+5765,U+5767,U+576c,U+576e,U+5770-5772,U+5774-5775,U+5778-577a,U+577d-5781,U+5787-578a,U+578d-5791,U+5794-579a,U+579c-579f,U+57a5,U+57a8,U+57aa,U+57ac,U+57af-57b1,U+57b3,U+57b5-57b7,U+57b9-57c1,U+57c4-57ca,U+57cc-57cd,U+57d0-57d1,U+57d3,U+57d6-57d7,U+57db-57dc,U+57de,U+57e1-57e3,U+57e5-57ec,U+57ee,U+57f0-57f3,U+57f5-57f7,U+57fb-57fc,U+57fe-57ff,U+5801,U+5803-5805,U+5808-580a,U+580c,U+580e-5810,U+5812-5814,U+5816-5818,U+581a-581d,U+581f,U+5822-5823,U+5825-5829,U+582b-582f,U+5831-5834,U+5836-5842"}},{uri:$P,descriptors:{unicodeRange:"U+55f9-55fc,U+55ff,U+5602-5607,U+560a-560b,U+560d,U+5610-5617,U+5619-561a,U+561c-561d,U+5620-5622,U+5625-5626,U+5628-562b,U+562e-5630,U+5633,U+5635,U+5637-5638,U+563a,U+563c-563e,U+5640-564b,U+564f-5653,U+5655-5656,U+565a-565b,U+565d-5661,U+5663,U+5665-5667,U+566d-5670,U+5672-5675,U+5677-567a,U+567d-5684,U+5687-568d,U+5690-5692,U+5694-56a2,U+56a4-56ae,U+56b0-56b6,U+56b8-56bb,U+56bd-56c9,U+56cb-56cf"}},{uri:AO,descriptors:{unicodeRange:"U+5286-5287,U+5289-528f,U+5291-5292,U+5294-529a,U+529c,U+52a4-52a7,U+52ae-52b0,U+52b4-52bd,U+52c0-52c2,U+52c4-52c6,U+52c8,U+52ca,U+52cc-52cf,U+52d1,U+52d3-52d5,U+52d7,U+52d9-52de,U+52e0-52e3,U+52e5-52ef,U+52f1-52f8,U+52fb-52fd,U+5301-5304,U+5307,U+5309-530c,U+530e,U+5311-5314,U+5318,U+531b-531c,U+531e-531f,U+5322,U+5324-5325,U+5327-5329,U+532b-532d,U+532f-5338,U+533c-533d,U+5340,U+5342,U+5344,U+5346,U+534b-534d,U+5350,U+5354,U+5358-5359,U+535b,U+535d,U+5365,U+5368,U+536a,U+536c-536d,U+5372,U+5376,U+5379,U+537b-537e,U+5380-5381,U+5383,U+5387-5388,U+538a,U+538e-5394,U+5396-5397,U+5399,U+539b-539c,U+539e,U+53a0-53a1,U+53a4,U+53a7,U+53aa-53ad,U+53af-53b5,U+53b7-53ba,U+53bc-53be,U+53c0,U+53c3-53c7,U+53ce-53d0,U+53d2-53d3,U+53d5,U+53da,U+53dc-53de,U+53e1-53e2,U+53e7,U+53f4,U+53fa,U+53fe-5400,U+5402,U+5405,U+5407,U+540b,U+5414,U+5418-541a,U+541c,U+5422,U+5424-5425,U+542a,U+5430,U+5433,U+5436-5437,U+543a"}},{uri:uO,descriptors:{unicodeRange:"U+5101-5105,U+5108-510a,U+510c-5111,U+5113-5120,U+5122-513e,U+5142,U+5147,U+514a,U+514c,U+514e-5150,U+5152-5153,U+5157-5159,U+515b,U+515d-5161,U+5163-5164,U+5166-5167,U+5169-516a,U+516f,U+5172,U+517a,U+517e-517f,U+5183-5184,U+5186-5187,U+518a-518b,U+518e-5191,U+5193-5194,U+5198,U+519a,U+519d-519f,U+51a1,U+51a3,U+51a6-51aa,U+51ad-51ae,U+51b4,U+51b8-51ba,U+51be-51bf,U+51c1-51c3,U+51c5,U+51c8,U+51ca,U+51cd-51ce,U+51d0,U+51d2-51da,U+51dc,U+51de-51df,U+51e2-51e3,U+51e5-51ea,U+51ec,U+51ee,U+51f1-51f2,U+51f4,U+51f7,U+51fe,U+5204-5205,U+5209,U+520b-520c,U+520f-5210,U+5213-5215,U+521c,U+521e-521f,U+5221-5223,U+5225-5227,U+522a,U+522c,U+522f,U+5231-5232,U+5234-5235,U+523c,U+523e,U+5244-5249,U+524b,U+524e-524f,U+5252-5253,U+5255,U+5257-525b,U+525d,U+525f-5260,U+5262-5264,U+5266,U+5268,U+526b-526e,U+5270-5271,U+5273-527c,U+527e,U+5280,U+5283-5285"}},{uri:eO,descriptors:{unicodeRange:"U+543d,U+543f,U+5441-5442,U+5444-5445,U+5447,U+5449,U+544c-544f,U+5451,U+545a,U+545d-5461,U+5463,U+5465,U+5467,U+5469-5470,U+5474,U+5479-547a,U+547e-547f,U+5481,U+5483,U+5485,U+5487-548a,U+548d,U+5491,U+5493,U+5497-5498,U+549c,U+549e-54a2,U+54a5,U+54ae,U+54b0,U+54b2,U+54b5-54b7,U+54b9-54ba,U+54bc,U+54be,U+54c3,U+54c5,U+54ca-54cb,U+54d6,U+54d8,U+54db,U+54e0-54e4,U+54eb-54ec,U+54ef-54f1,U+54f4-54f9,U+54fb,U+54fe,U+5500,U+5502-5505,U+5508,U+550a-550e,U+5512-5513,U+5515-551a,U+551c-551f,U+5521,U+5525-5526,U+5528-5529,U+552b,U+552d,U+5532,U+5534-5536,U+5538-553b,U+553d,U+5540,U+5542,U+5545,U+5547-5548,U+554b-554f,U+5551-5554,U+5557-555b,U+555d-5560,U+5562-5563,U+5568-5569,U+556b,U+556f-5574,U+5579-557a,U+557d,U+557f,U+5585-5586,U+558c-558e,U+5590,U+5592-5593,U+5595-5597,U+559a-559b,U+559e,U+55a0-55a6,U+55a8-55b0,U+55b2,U+55b4,U+55b6,U+55b8,U+55ba,U+55bc,U+55bf-55c3,U+55c6-55c8,U+55ca-55cb,U+55ce-55d0,U+55d5,U+55d7-55db,U+55de,U+55e0,U+55e2,U+55e7,U+55e9,U+55ed-55ee,U+55f0-55f1,U+55f4,U+55f6,U+55f8"}},{uri:CO,descriptors:{unicodeRange:"U+4fe0,U+4fe2,U+4fe4-4fe5,U+4fe7,U+4feb-4fec,U+4ff0,U+4ff2,U+4ff4-4ff7,U+4ff9,U+4ffb-4ffd,U+4fff-500b,U+500e,U+5010-5011,U+5013,U+5015-5017,U+501b,U+501d-501e,U+5020,U+5022-5024,U+5027,U+502b,U+502f-5039,U+503b,U+503d,U+503f-5042,U+5044-5046,U+5049-504b,U+504d,U+5050-5054,U+5056-5059,U+505b,U+505d-5064,U+5066-506b,U+506d-5075,U+5078-507a,U+507c-507d,U+5081-5084,U+5086-5087,U+5089-508c,U+508e-50a2,U+50a4,U+50a6,U+50aa-50ab,U+50ad-50b1,U+50b3-50b9,U+50bc-50ce,U+50d0-50d5,U+50d7-50d9,U+50db-50e5,U+50e8-50eb,U+50ef-50f2,U+50f4,U+50f6-50fa,U+50fc-5100"}},{uri:BO,descriptors:{unicodeRange:"U+49d5-4a77"}},{uri:gO,descriptors:{unicodeRange:"U+4dac-4dad,U+4daf-4db5,U+4e02,U+4e04-4e06,U+4e0f,U+4e12,U+4e17,U+4e1f-4e21,U+4e23,U+4e26,U+4e29,U+4e2e-4e2f,U+4e31,U+4e33,U+4e35,U+4e37,U+4e3c,U+4e40-4e42,U+4e44,U+4e46,U+4e4a,U+4e51,U+4e55,U+4e57,U+4e5a-4e5b,U+4e62-4e65,U+4e67-4e68,U+4e6a-4e6f,U+4e72,U+4e74-4e7d,U+4e7f-4e85,U+4e87,U+4e8a,U+4e90,U+4e96-4e97,U+4e99,U+4e9c-4e9e,U+4ea3,U+4eaa,U+4eaf-4eb1,U+4eb4,U+4eb6-4eb9,U+4ebc-4ebe,U+4ec8,U+4ecc,U+4ecf-4ed0,U+4ed2,U+4eda-4edc,U+4ee0,U+4ee2,U+4ee6-4ee7,U+4ee9,U+4eed-4eef,U+4ef1,U+4ef4,U+4ef8-4efa,U+4efc,U+4efe,U+4f00,U+4f02-4f08,U+4f0b-4f0c,U+4f12-4f16,U+4f1c-4f1d,U+4f21,U+4f23,U+4f28-4f29,U+4f2c-4f2e,U+4f31,U+4f33,U+4f35,U+4f37,U+4f39,U+4f3b,U+4f3e-4f42,U+4f44-4f45,U+4f47-4f4c,U+4f52,U+4f54,U+4f56,U+4f61-4f62,U+4f66,U+4f68,U+4f6a-4f6b,U+4f6d-4f6e,U+4f71-4f72,U+4f75,U+4f77-4f7a,U+4f7d,U+4f80-4f82,U+4f85-4f87,U+4f8a,U+4f8c,U+4f8e,U+4f90,U+4f92-4f93,U+4f95-4f96,U+4f98-4f9a,U+4f9c,U+4f9e-4f9f,U+4fa1-4fa2,U+4fa4,U+4fab,U+4fad,U+4fb0-4fb4,U+4fb6-4fbe,U+4fc0-4fc2,U+4fc6-4fc9,U+4fcb-4fcd,U+4fd2-4fd6,U+4fd9,U+4fdb"}},{uri:EO,descriptors:{unicodeRange:"U+4933-49d4"}},{uri:IO,descriptors:{unicodeRange:"U+487a-4932"}},{uri:iO,descriptors:{unicodeRange:"U+47d2-4879,U+2ce7c,U+2ce88,U+2ce93"}},{uri:aO,descriptors:{unicodeRange:"U+4756-47d1,U+2ca02,U+2ca0e,U+2ca7d,U+2caa9,U+2cb29,U+2cb2e,U+2cb31,U+2cb38-2cb39,U+2cb3f,U+2cb41,U+2cb4e,U+2cb5a,U+2cb64,U+2cb69,U+2cb6c,U+2cb6f,U+2cb76,U+2cb78,U+2cb7c,U+2cbb1,U+2cbbf-2cbc0,U+2cbce,U+2cc5f,U+2ccf5-2ccf6,U+2ccfd,U+2ccff,U+2cd02-2cd03,U+2cd0a,U+2cd8b,U+2cd8d,U+2cd8f-2cd90,U+2cd9f-2cda0,U+2cda8,U+2cdad-2cdae,U+2cdd5,U+2ce18,U+2ce1a,U+2ce23,U+2ce26,U+2ce2a"}},{uri:tO,descriptors:{unicodeRange:"U+46c3-4755,U+2c488,U+2c494,U+2c497,U+2c542,U+2c613,U+2c618,U+2c621,U+2c629,U+2c62b-2c62d,U+2c62f,U+2c642,U+2c64a-2c64b,U+2c72c,U+2c72f,U+2c79f,U+2c7c1,U+2c7fd,U+2c8d9,U+2c8de,U+2c8e1,U+2c8f3,U+2c907,U+2c90a,U+2c91d"}},{uri:QO,descriptors:{unicodeRange:"U+4629-46c2,U+2bdf7,U+2be29,U+2c029-2c02a,U+2c0a9,U+2c0ca,U+2c1d5,U+2c1d9,U+2c1f9,U+2c27c,U+2c288,U+2c2a4,U+2c317,U+2c35b,U+2c361,U+2c364"}},{uri:oO,descriptors:{unicodeRange:"U+458e-4628,U+2b7a9,U+2b7c5,U+2b7e6,U+2b7f9,U+2b806,U+2b80a,U+2b81c,U+2b8b8,U+2bac7,U+2bb5f,U+2bb62,U+2bb7c,U+2bb83,U+2bc1b,U+2bd77,U+2bd87"}},{uri:rO,descriptors:{unicodeRange:"U+4449-4511,U+2afa2,U+2b127-2b128,U+2b137-2b138,U+2b1ed"}},{uri:sO,descriptors:{unicodeRange:"U+439b-4448,U+2a437,U+2a5f1,U+2a602,U+2a61a,U+2a6b2,U+2a7dd,U+2a8fb,U+2a917,U+2aa30,U+2aa36,U+2aa58"}},{uri:nO,descriptors:{unicodeRange:"U+4275-430d,U+298c6,U+29a72,U+29d98,U+29ddb,U+29e15,U+29e3d,U+29e49"}},{uri:lO,descriptors:{unicodeRange:"U+4132-41de,U+28bef,U+28c47,U+28c4f,U+28c51,U+28c54,U+28d10,U+28d71,U+28dfb,U+28e1f,U+28e36,U+28e89,U+28e99,U+28eeb,U+28f32,U+28ff8,U+292a0"}},{uri:DO,descriptors:{unicodeRange:"U+41df-4274,U+292b1,U+29490,U+295cf,U+2967f,U+296f0,U+29719,U+29750"}},{uri:cO,descriptors:{unicodeRange:"U+408e-4131,U+285c8-285c9,U+28678,U+28695,U+286d7,U+286fa,U+287e0,U+28946,U+28949,U+2896b,U+28987-28988,U+289ba-289bb,U+28a1e,U+28a29,U+28a43,U+28a71,U+28a99,U+28acd,U+28add,U+28ae4,U+28b49,U+28bc1"}},{uri:dO,descriptors:{unicodeRange:"U+3e83-3f2f,U+27139,U+273da-273db,U+273fe,U+27410,U+27449,U+27614-27615,U+27631,U+27684,U+27693,U+2770e,U+27723,U+27752"}},{uri:wO,descriptors:{unicodeRange:"U+3f30-3fdb,U+27985,U+27a84,U+27bb3,U+27bbe,U+27bc7,U+27cb8,U+27da0,U+27e10"}},{uri:hO,descriptors:{unicodeRange:"U+3fdc-408d,U+27fb7,U+27ff9,U+2808a,U+280bb,U+2815d,U+28277,U+28282,U+282e2,U+282f3,U+283cd,U+28408,U+2840c,U+28455,U+28468,U+2856b"}},{uri:FO,descriptors:{unicodeRange:"U+3dd2-3e82,U+26a58,U+26a8c,U+26ab7,U+26aff,U+26b5c,U+26c21,U+26c29,U+26c73,U+26cdd,U+26e40,U+26e65,U+26f94,U+26ff6-26ff8,U+270f4,U+2710d"}},{uri:pO,descriptors:{unicodeRange:"U+3d34-3dd1,U+2648d,U+26676,U+2667e,U+266b0,U+2671d,U+2677c,U+267cc,U+268dd,U+268ea,U+26951,U+2696f,U+269dd,U+269fa,U+26a1e"}},{uri:mO,descriptors:{unicodeRange:"U+3c76-3d33,U+25d0a,U+25da1,U+25e2e,U+25e56,U+25e62,U+25e65,U+25ec2,U+25ed7-25ed8,U+25ee8,U+25f23,U+25f5c,U+25fd4,U+25fe0,U+25ffb,U+2600c,U+26017,U+26060,U+260ed,U+26221,U+26270,U+26286,U+2634c,U+26402"}},{uri:kO,descriptors:{unicodeRange:"U+3bda-3c75,U+25771,U+257a9,U+257b4,U+259c4,U+259d4,U+25ae3-25ae4,U+25af1,U+25bb2,U+25c14,U+25c4b,U+25c64"}},{uri:yO,descriptors:{unicodeRange:"U+3b25-3bd9,U+2504a,U+25055,U+25122,U+2512b,U+251a9,U+251cd,U+251e5,U+2521e,U+2524c,U+2542e,U+2548e,U+254d9,U+2550e,U+25532,U+25562,U+255a7-255a8"}},{uri:bO,descriptors:{unicodeRange:"U+3a6b-3b24,U+24896,U+249db,U+24a4d,U+24a7d,U+24ac9,U+24b56,U+24b6f,U+24c16,U+24d14,U+24dea,U+24e0e,U+24e37,U+24e6a,U+24e8b,U+24eaa"}},{uri:GO,descriptors:{unicodeRange:"U+39a9-3a6a,U+24096,U+24103,U+241ac,U+241c6,U+241fe,U+243bc,U+243f8,U+244d3,U+24629,U+246a5,U+247f1"}},{uri:UO,descriptors:{unicodeRange:"U+38e3-39a8,U+23a98,U+23c7f,U+23c97-23c98,U+23cfe,U+23d00,U+23d0e,U+23d40,U+23dd3,U+23df9-23dfa,U+23e23,U+23f7e"}},{uri:LO,descriptors:{unicodeRange:"U+3760-382a,U+22ab8,U+22b43,U+22b46,U+22b4f-22b50,U+22ba6,U+22bca,U+22c1d,U+22c24,U+22c55,U+22d4c,U+22de1"}},{uri:xO,descriptors:{unicodeRange:"U+382b-38e2,U+231b6,U+231c3-231c4,U+231f5,U+23350,U+23372,U+233d0,U+233d2-233d3,U+233d5,U+233da,U+233df,U+233e4,U+2344a-2344b,U+23451,U+23465,U+234e4,U+2355a,U+23594,U+235c4,U+235cb,U+23638-2363a,U+23647,U+2370c,U+2371c,U+2373f,U+23763-23764,U+237e7,U+237ff,U+23824,U+2383d"}},{uri:NO,descriptors:{unicodeRange:"U+3698-375f,U+22218,U+2231e,U+223ad,U+224dc,U+226f3,U+2285b,U+228ab,U+2298f"}},{uri:SO,descriptors:{unicodeRange:"U+35e6-3697,U+21c56,U+21cde,U+21d2d,U+21d45,U+21d62,U+21d78,U+21d92,U+21d9c,U+21da1,U+21db7,U+21de0,U+21e33-21e34,U+21f1e,U+21f76,U+21ffa,U+2217b"}},{uri:RO,descriptors:{unicodeRange:"U+3444-350e,U+20ad3,U+20b1d,U+20b9f,U+20c41,U+20cbf,U+20cd0,U+20d45,U+20de1,U+20e64,U+20e6d,U+20e95,U+20e9d,U+20ea2,U+20f5f,U+210c1,U+21201,U+2123d,U+21255,U+21274,U+2127b"}},{uri:MO,descriptors:{unicodeRange:"U+350f-35e5,U+212d7,U+212e4,U+212fd,U+2131b,U+21336,U+21344,U+2139a,U+213c4,U+21413,U+2146d-2146e,U+215d7,U+21647,U+216b4,U+21706,U+21742,U+218bd,U+219c3"}},{uri:fO,descriptors:{unicodeRange:"U+336d-3443,U+2032b,U+20371,U+20381,U+203f9,U+2044a,U+20509,U+20547,U+205d6,U+20628,U+20676,U+2074f,U+20779,U+20807,U+2083a,U+20895,U+208b9,U+2097c,U+2099d"}},{uri:YO,descriptors:{unicodeRange:"U+328b-336c,U+2000b,U+20089,U+200a2,U+200a4,U+20164,U+201a2,U+20213"}},{uri:HO,descriptors:{unicodeRange:"U+3192-31ba,U+31c0-31e3,U+31f0-321e,U+3220-328a,U+1f250-1f251"}},{uri:KO,descriptors:{unicodeRange:"U+2f74-2fd5,U+3000,U+3003-3007,U+3012-3013,U+3018-301c,U+3020-3029,U+302f-303f,U+3041-3096,U+3099-30a1"}},{uri:JO,descriptors:{unicodeRange:"U+30a2-30ff,U+3105-312f,U+3131-318e,U+3190-3191"}},{uri:vO,descriptors:{unicodeRange:"U+4e36,U+4ea0,U+4f74,U+4f91,U+4f94,U+4fc5,U+507e,U+50ed,U+5182,U+51f5,U+525e,U+5282,U+52f9,U+5326,U+537a,U+53a3,U+5423,U+5459,U+54b4,U+54d9,U+55c9,U+57f4,U+580b,U+5902,U+5925,U+5a08,U+5ab5,U+5b84,U+5be4,U+5c22,U+5cb5,U+5cbd,U+5d3e,U+5e31,U+5e5e,U+5e80,U+5ee8,U+5f82,U+5fc9,U+5fed,U+600a,U+605d,U+609b,U+609d,U+60dd,U+6243,U+6322,U+63ce,U+640c,U+643f,U+6445,U+64d7,U+6534,U+6549,U+656b,U+6603,U+674c,U+680a,U+6864,U+69d4,U+6a65,U+6c2a,U+6c46,U+6c5c,U+6d0e,U+6d48,U+6e2b,U+6eb2,U+6eb7,U+6f89,U+706c,U+70b1,U+7113,U+71d4,U+727f,U+72f3,U+7303,U+7321,U+736c,U+736f,U+74a9,U+74de,U+750d,U+7513,U+7592,U+75c4,U+7605,U+760a,U+761b,U+7625,U+762d,U+7643,U+7707,U+7747,U+77b5,U+7839,U+784e,U+78a5,U+7924,U+793b,U+798a,U+7a03,U+7a06,U+7a78,U+7a80,U+7aad,U+7ba8,U+7be5,U+7cc8,U+7ec1,U+7f0b,U+7f0f,U+7f12,U+7f68,U+7f9d,U+8025,U+809c,U+80ad,U+80b7,U+80e8,U+811e,U+8204,U+8223,U+822d,U+823b,U+824b,U+825a,U+827d,U+827f,U+828f,U+82c8,U+8307,U+831b,U+8347,U+837d,U+839b,U+83a9,U+83f9,U+84b9,U+8579,U+864d,U+867f,U+86b0,U+86d1,U+86d8,U+86f2,U+8764,U+8770,U+8788,U+8797,U+87ac-87ad,U+87b5,U+881b,U+8844,U+88bc,U+88fc,U+8930,U+89cf,U+89d6,U+8ba0,U+8bd4,U+8c02,U+8c2b,U+8c85,U+8e23,U+8f81-8f82,U+8fd5,U+90b6,U+90db,U+914e,U+9164,U+91ad,U+943e,U+94b7-94b8,U+94eb,U+950d,U+9514,U+9516,U+9518,U+9529,U+9538,U+953f,U+954e,U+955f,U+95fc,U+9667,U+96b3,U+9792,U+97b2,U+98a1,U+9969,U+9987,U+9998,U+9a80,U+9a92,U+9a96,U+9adf,U+9cb4,U+9cbd,U+9cd0,U+9cd4,U+9e31,U+9e3a,U+9e71,U+9ee5,U+9eea,U+9ef9,U+9fa0"}},{uri:ZO,descriptors:{unicodeRange:"U+4e0c,U+4e28,U+4e3f,U+4ec2,U+502e,U+50ba,U+5155,U+5181,U+522d,U+5281,U+5290,U+5369,U+53b6,U+54d5,U+54dc,U+54ff,U+552a,U+553c,U+5588,U+55b5,U+5686,U+570a,U+5776,U+5786,U+57a4,U+5820,U+5865,U+58bc,U+5b32,U+5b65,U+5c1c,U+5c66,U+5c6e,U+5c8d,U+5ddb,U+5f2a,U+5f50,U+5f61,U+6067,U+614a,U+615d,U+619d,U+61d4,U+620b,U+6224-6225,U+6343,U+63ad,U+63f2,U+640b,U+6420,U+6434,U+6496,U+64d0,U+6509,U+652e,U+67a8,U+6833,U+6844,U+684a,U+6920,U+6957,U+6971,U+6a8e,U+6a91,U+6aa0,U+6b43,U+6bea,U+6bf5,U+6c15,U+6cd0,U+6ee0,U+6f24,U+6f2d,U+70c0,U+721d,U+728b,U+72c3,U+72e8,U+730a,U+7338-7339,U+734d,U+746d,U+752f,U+754e,U+770d,U+7735,U+778d,U+77a2,U+77e7,U+7857,U+786d,U+78c9,U+78f2,U+791e,U+7953,U+7b58,U+7b9d,U+7bda,U+7cd7,U+7f32-7f33,U+8022,U+8028-8029,U+8035,U+804d,U+8080,U+80c2,U+80e9,U+80ec,U+80f2,U+810e,U+8221,U+8274,U+82b0,U+82e0,U+83b0,U+8487-8488,U+848e,U+84cd,U+84d0,U+8539,U+857a,U+85a8,U+85b7,U+867c,U+871e,U+8723,U+877e,U+878b,U+8793,U+8803,U+88d2,U+8966,U+89cc,U+89eb,U+8b26,U+8c8a,U+8c98,U+8d33,U+8d47,U+8d55,U+8dbc,U+8e40,U+8e94,U+8f77,U+8f79,U+9058,U+91a2,U+91b5,U+928e,U+9494,U+94b6,U+94de,U+94f4,U+94f9,U+950a,U+950e,U+951e,U+952b,U+953c,U+953e,U+9544,U+9561,U+9564,U+9569,U+95f6,U+9603,U+960d,U+963d,U+9674,U+9794,U+97ab,U+98a5,U+9a9f,U+9ab1,U+9ad1,U+9b0f,U+9b2f,U+9c92,U+9c95,U+9cba,U+9cbc,U+9cc6,U+9ccb,U+9cd8,U+9e32,U+9e38,U+9e5b,U+9e7e,U+9eb4,U+9efb-9efc,U+9f3d"}},{uri:qO,descriptors:{unicodeRange:"U+2e3b,U+2e80-2e99,U+2e9b-2ef3,U+2f00-2f73,U+ffffd"}},{uri:WO,descriptors:{unicodeRange:"U+4e69,U+4f1b,U+4f67,U+4f7e,U+4fdc,U+50e6,U+5196,U+5202,U+5233,U+523f,U+52a2,U+536e,U+5476,U+54ad,U+54cf,U+5537,U+561e,U+56dd,U+56df,U+5709,U+572c,U+57cf,U+57f8,U+580d,U+5881,U+589a,U+5941,U+59b2,U+5c25,U+5d24,U+5d74,U+5e42,U+5e8b,U+5eb3,U+5ed2,U+5fad,U+6003,U+603c,U+6083,U+6100,U+6126,U+6206,U+62ca,U+638e,U+63b4,U+6426,U+646d,U+6535,U+65c4,U+66db,U+6715,U+6769,U+6798,U+67c3,U+6861,U+698d,U+69ca,U+69ed,U+69f2,U+69ff,U+6a18,U+6b39,U+6bb3,U+6c0d,U+6cb2,U+6cd6,U+6cf7,U+6cfa,U+6d33,U+6e16,U+6e53-6e54,U+6ebb,U+6fb6,U+709d,U+72ad,U+72f7,U+72fb,U+7313,U+739f,U+74ba,U+754b,U+755b,U+758b,U+75ac,U+75d6,U+7617,U+7635,U+7640,U+76a4,U+76b2,U+775a,U+77bd,U+781f,U+79b3,U+7b2b,U+7b31,U+7b3e,U+7b6e,U+7b9c,U+7c0b,U+7c9e,U+7cc1,U+7ce8,U+7ea5,U+7f21,U+7f27,U+7f74,U+7fb0,U+8031,U+8071,U+80ea,U+8114,U+8160,U+81a6,U+81c1,U+829f,U+82a4,U+82fb,U+831a,U+8333,U+836c,U+83b6,U+83f8,U+8411,U+841c,U+8489,U+848c,U+85a4,U+8627,U+8629,U+866e,U+86b5,U+872e,U+8731,U+877b,U+877d,U+87ea,U+8813,U+8816,U+8864,U+88ce,U+88e5,U+897b,U+89cb,U+89f3,U+8bfc,U+8c35,U+8d46,U+8d4d,U+8dba,U+8e3a,U+8f75,U+8f7e,U+8fd3,U+9161,U+9179,U+917e,U+91a3,U+94ac,U+94d7,U+94e5,U+952a,U+952c,U+9545,U+9565,U+9568,U+956a,U+961d,U+96e0,U+972a,U+9730,U+989f,U+98e7,U+990d,U+9967,U+9993,U+9aa3,U+9ac0,U+9ae1,U+9aeb,U+9af9,U+9c86,U+9c8b,U+9ca0-9ca1,U+9ca3,U+9ce2,U+9e48,U+9e6a,U+9e87,U+9ee2,U+9ee9,U+9f17,U+9f19,U+9f2c,U+9f80"}},{uri:jO,descriptors:{unicodeRange:"U+4ef3,U+50d6,U+50ec,U+51ab,U+51b1,U+52d6,U+54a9,U+54da,U+55be,U+55cd,U+564d,U+572f,U+574c,U+576b,U+57d8,U+57fd,U+5844,U+59d2,U+5ae0,U+5b16,U+5b37,U+5b5b,U+5b80,U+5d1e,U+5d6b,U+5efe,U+5f11,U+5f56,U+5f58,U+5f73,U+5f8c,U+5fc4,U+5fe4,U+602b,U+6106,U+610d,U+63de,U+63f8,U+641b,U+64e4,U+6634,U+676a,U+67b5,U+681d,U+6883,U+69b1,U+69e0,U+6b37,U+6b9b,U+6d7c,U+6ed7,U+6f36,U+6f72,U+6f8c,U+7035,U+7039,U+7173,U+7178,U+7228,U+728f,U+72b4,U+72ef,U+72f4,U+7331,U+7481,U+74e0,U+7540,U+75c3,U+75e6,U+763c,U+764d,U+76cd,U+7704,U+7743,U+7780,U+7847,U+786a,U+78b9,U+7962,U+7a02,U+7aac,U+7ab3,U+7b0a,U+7b4c,U+7b7b,U+7bfc,U+7c0f,U+7c16,U+7c40,U+7ca2,U+7cc7,U+7cf8,U+7d77,U+7e3b,U+7ea1,U+7ea9,U+7ef2,U+7f02,U+7f07,U+7f0c,U+7f23,U+7f2f,U+7fbc,U+8016,U+8020,U+812c,U+8136,U+8182,U+822f,U+8233,U+825f,U+8268,U+8284,U+8288,U+8291,U+8308,U+8311,U+835b,U+836d,U+83dd,U+8406,U+840f,U+845c,U+84b4,U+84e3,U+850c,U+855e,U+863c,U+86ba,U+86c4,U+86de,U+86f1,U+873e,U+87bd,U+87db,U+880a,U+883c,U+887f,U+88f0,U+890a,U+892b,U+895e,U+89ef,U+8a48,U+8bdc,U+8c18,U+8c33,U+8c94,U+8db1,U+8dcf,U+8dd6,U+8de3,U+8e6f,U+8e90,U+8f7a,U+8fb6,U+902d,U+90be,U+91af,U+936a,U+948b,U+94d8,U+9513,U+953a,U+956c,U+963c,U+9654,U+966c,U+9688,U+97b4,U+996b,U+9a75,U+9a7a,U+9aba,U+9aed,U+9b08,U+9b43,U+9c8e,U+9c94,U+9c9a,U+9e2b,U+9e36,U+9e4b,U+9e4e,U+9e55,U+9e63,U+9e68-9e69,U+9ebd,U+9ec9,U+9f0d,U+9f37,U+9f51"}},{uri:TO,descriptors:{unicodeRange:"U+50a7,U+5240,U+5261,U+52ac,U+531a,U+5363,U+5432,U+5452,U+5456,U+5472,U+5478,U+553f,U+5575,U+5581,U+55cc,U+55fe,U+5601,U+572e,U+57d2,U+57ef,U+581e,U+5924,U+5981,U+5997,U+59a3,U+5aaa,U+5ab8,U+5b34,U+5d5d,U+5def,U+5e11,U+5e91,U+5ed1,U+5ef4,U+5f40,U+600d,U+6019,U+601b,U+605a,U+6092,U+60ab,U+6217,U+623d,U+6369,U+65d2,U+6661,U+670a,U+6753,U+67a7,U+6855,U+68f9,U+6939,U+696e,U+6980,U+6a7c,U+6aab,U+6b82,U+6bf3,U+6bf9,U+6c05,U+6c19-6c1a,U+6ca9,U+6cf6,U+6d1a,U+6dab,U+6f74,U+7085,U+7198,U+71b5,U+7256,U+725d,U+727e,U+72fa,U+7322,U+738e,U+73e5,U+750f,U+755a,U+7594,U+75b3,U+760c,U+7615,U+7630,U+763f,U+77ec,U+7817,U+78a1,U+78d9,U+7905,U+7b2a,U+7b2e,U+7b62,U+7b85,U+7bcc,U+7bea,U+7c26,U+7c74,U+7c9c-7c9d,U+7e47,U+7e9b,U+7e9f,U+7ee0,U+7ee8,U+7ef1,U+7f01,U+7f11,U+7f17,U+7f36,U+7f7e,U+7fee,U+802a,U+80cd,U+8112,U+8169,U+8234,U+8279,U+8298,U+82ca,U+82d8,U+82e1,U+83c0,U+83d4,U+83df,U+8401,U+8451,U+845a,U+8476,U+8478,U+84ba,U+84bd,U+84e0,U+851f,U+8548,U+8556,U+8585,U+868d,U+86e9,U+86f4,U+86f8,U+8765,U+8785,U+87ab,U+87ee,U+8832,U+8872,U+88b7,U+88e2-88e3,U+89da,U+8bce,U+8bd3,U+8bd6,U+8bf9,U+8c16,U+8c73,U+8d5c,U+8dde,U+8f6d,U+8f94,U+8fe8,U+9011,U+915e,U+9185,U+918c,U+94ab,U+94d1,U+94f3,U+9515,U+951d,U+9558,U+9567,U+96ce,U+96e9,U+9785,U+9878,U+987c,U+9883,U+98d1,U+9954,U+9963,U+9a93,U+9ac1,U+9acc,U+9b1f,U+9b49,U+9b4d,U+9b51,U+9ca7,U+9cae,U+9cce,U+9cd3,U+9e37,U+9e39,U+9e41,U+9e46,U+9f22,U+9f2f,U+9f39,U+9f85"}},{uri:zO,descriptors:{unicodeRange:"U+4e5c,U+4edf,U+4f25,U+4f32,U+4f5e,U+4f76,U+4faa,U+4fe6,U+5028,U+5048,U+5250,U+535f,U+538d,U+53c1,U+5412,U+5443,U+54d4,U+54dd,U+5541,U+5550,U+5577,U+55dd,U+55f3,U+560f,U+562c,U+5657-5658,U+5664,U+56af,U+575c,U+577c,U+57b2,U+57da,U+5800,U+5a62,U+5aeb,U+5c3b,U+5ca3,U+5d26,U+5d9d,U+5f01,U+5fb5,U+5fdd,U+5ff8,U+6029,U+6041,U+6079,U+60b1,U+6222,U+629f,U+6332,U+63bc,U+63e0,U+6485,U+65ab,U+65c3,U+65c6,U+668c,U+669d,U+66be,U+67fd,U+6800,U+68fc,U+690b,U+6924,U+6978,U+69a7,U+6a3e,U+6a50,U+6a5b,U+6a97,U+6b24,U+6b8d,U+6baa,U+6c10,U+6c54,U+6ceb,U+6d04,U+6d4d,U+6eb1,U+6ebd,U+7110,U+71b3,U+71f9,U+7230,U+728d,U+7292,U+72b8,U+72d2,U+7360,U+73a2,U+7511,U+75a0,U+75c8,U+779f,U+7826,U+7877,U+7a39,U+7aa8,U+7ae6,U+7b04,U+7b0f,U+7baa,U+7bac,U+7c1f,U+7ccd,U+7ecb,U+7ed4,U+7ed7,U+7efb,U+7f0d,U+7f5f,U+7faf,U+7fd5,U+7fe5,U+8027,U+80bc,U+80dd,U+80fc,U+8132,U+815a,U+8167,U+816d,U+81ca,U+8228,U+82a1,U+82a9,U+82ab,U+82cc,U+8351,U+8368,U+83b8,U+83d8,U+83ea,U+83f0,U+8497,U+84c1,U+858f,U+85ff,U+867b,U+86a8-86a9,U+870a,U+8722,U+876e,U+877c,U+87e5,U+8888,U+88df,U+8919,U+8bcc,U+8bdf,U+8be8,U+8bee,U+8c20,U+8c2f,U+8d36,U+8df8,U+8e05,U+8e2f,U+8f9a,U+9021,U+908b,U+90b4,U+90ba,U+90d0,U+90eb,U+90fe,U+91aa,U+933e,U+9486-9487,U+948d,U+9490,U+94ad,U+94bd,U+94d6,U+94d9,U+9507,U+9546,U+955e,U+956b,U+95e9,U+9604,U+960b,U+9612,U+9615,U+9617,U+96b9,U+989a-989b,U+989e,U+9a78,U+9a7d,U+9aa0,U+9aa2,U+9ac2,U+9b23,U+9b3b,U+9c82,U+9cca,U+9cd9,U+9e28,U+9e5a,U+9e5e,U+9e6c,U+9efe,U+9f0b"}},{uri:PO,descriptors:{unicodeRange:"U+4e47,U+4e8d,U+4f65,U+4f89,U+50ee,U+520e,U+5416,U+5454,U+54bb,U+54c2,U+54d3,U+54de,U+5591,U+55e5,U+560c,U+566b,U+5769,U+578c,U+5793,U+57e4,U+5889,U+593c,U+59ab,U+5ad4,U+5ad8,U+5af1,U+5b53,U+5ba5,U+5c59,U+5c63,U+5d5b,U+5e0f,U+5e14,U+5edb,U+5fbc,U+6004,U+60ad,U+610e,U+61b7,U+624c,U+634c,U+647a,U+64ba,U+65f0,U+6600,U+66f7,U+67e2,U+67f0,U+680c,U+686b,U+6874,U+691f,U+6989,U+6a17,U+6b81,U+6b84,U+6c06-6c07,U+6c3d,U+6d07,U+6d27,U+6d2b,U+6d91,U+6e6b,U+6e8f,U+6fde,U+70bb,U+723b,U+726e,U+72b0,U+72ce,U+72f2,U+7301,U+731e,U+737e,U+7477,U+748e,U+74ff,U+7633,U+7654,U+771a,U+7726,U+7765,U+7768,U+781c,U+7829,U+78d4,U+7913,U+7957,U+79d5,U+79eb,U+7a70,U+7a86,U+7b25,U+7b38,U+7b47,U+7b72,U+7ba6-7ba7,U+7dae,U+7ee1,U+7efe,U+7f26,U+7f31,U+7f35,U+801c,U+8043,U+809f,U+80ab,U+80d7,U+8118,U+8188,U+81cc,U+823e,U+8244,U+824f,U+82b4,U+82c1,U+82e4,U+82f4,U+8306,U+833a,U+835c,U+839c,U+83b3,U+83bc,U+846d,U+867a,U+868b,U+8734,U+87ca,U+886e,U+887e,U+88a2,U+88c9,U+8921,U+8bb5,U+8bf3,U+8c04,U+8c17,U+8c1d,U+8c25,U+8c36,U+8c55,U+8c78,U+8d3d,U+8d40,U+8d59,U+8d67,U+8d91,U+8dbf,U+8deb-8dec,U+8dfd,U+8e14,U+8e41,U+8f8e,U+900b,U+9044,U+9062,U+90cf,U+9123,U+9146,U+9162,U+9172,U+918d,U+9190,U+92c8,U+93ca,U+948c,U+94aa,U+94b2,U+94c8,U+94ca,U+94d5,U+94df,U+94e9-94ea,U+94f7,U+94fc-94fd,U+951b,U+954f,U+9554,U+9559,U+9566,U+9571-9572,U+95f1,U+9608,U+960f,U+97af,U+988f,U+98d5,U+992e,U+9955,U+9ab0,U+9b32,U+9c90,U+9c9e,U+9ca5,U+9ca9,U+9cad,U+9cb1,U+9cc3,U+9e47,U+9ee7,U+9f87"}},{uri:OO,descriptors:{unicodeRange:"U+4e93,U+4ec4,U+4ef5,U+4f27,U+4f7b,U+4fe3,U+5080,U+5121,U+51eb,U+5208,U+52f0,U+53f5,U+5453,U+5466,U+54a6,U+54bf,U+54d0,U+5533,U+5549,U+5556,U+556d,U+558f,U+55f2,U+55f5,U+5627,U+567b,U+56d4,U+571c,U+5739,U+57b4,U+5807,U+58c5,U+59a4,U+59af,U+59d8,U+5a09,U+5a0c,U+5a4a,U+5ad2,U+5b6c,U+5ca2,U+5cac,U+5d03,U+5d6c,U+5db7,U+5ebe,U+5f2d,U+5fea,U+6042,U+6120,U+6175,U+6221,U+623e,U+6339,U+638a,U+643d,U+64b8,U+64e2,U+66e9,U+67b3,U+67c1,U+67d2,U+6832,U+6877,U+68f0,U+6934,U+6966,U+6987,U+6998,U+69c1,U+69ce,U+6a3d,U+6a84,U+6aa9,U+6b87,U+6bd6,U+6c16,U+6c18,U+6cd4,U+6cee,U+6de0,U+6e0c,U+6ecf,U+6f4b,U+70b7,U+7168,U+72d9,U+7352,U+73b3,U+73d0,U+7441,U+74d2,U+75a5,U+75e7-75e8,U+7610,U+7619,U+765e,U+772d,U+7812,U+782c,U+784c,U+7850,U+7856,U+789b,U+78f4,U+7a51,U+7b15,U+7b1e,U+7b24,U+7b5a,U+7bb8,U+7bc1,U+7bd9,U+7ed0,U+7ee6,U+7efa,U+7f1b,U+7f1f,U+7f22,U+7f45,U+7f71,U+7fa7,U+7fbf,U+7ff3,U+8052,U+80b1,U+80db,U+80f4,U+81bb,U+81ec,U+8202,U+8210,U+8249,U+828a,U+828e,U+82e3,U+8315,U+8369,U+8378,U+83a8,U+83aa,U+83b4,U+83e1,U+84fc,U+8538,U+853b,U+859c,U+85ae,U+86b4,U+86c9,U+86cf,U+8725,U+879f,U+87b3,U+887d,U+88fe,U+8a8a,U+8ba7,U+8c07,U+8c14,U+8c30,U+8c47,U+8db5,U+8dd7,U+8e1f,U+8e69,U+8e70,U+8e85,U+8f78,U+8f87,U+8f8b,U+8f8f,U+90c4,U+9143,U+917d,U+948f,U+94cd,U+94d2,U+94ef,U+954a,U+9609-960a,U+96d2,U+9708,U+9765,U+97ea,U+9880,U+98a7,U+996c,U+9980,U+9991,U+9a88,U+9ab6,U+9afb,U+9b47,U+9c87,U+9c9b,U+9cb5,U+9cc7,U+9e2c,U+9e42,U+9e58,U+9ecd,U+9ecf,U+9f8a,U+9f8c"}},{uri:VO,descriptors:{unicodeRange:"U+4ebb,U+4edd,U+4fa9,U+502c,U+50a5,U+51c7,U+51fc,U+523d,U+5241,U+530f,U+5464,U+549d,U+54a3,U+5514,U+5527,U+555c,U+556e,U+5576,U+55b1,U+55b9,U+55eb,U+5624,U+564c,U+5671,U+5685,U+568f,U+56d7,U+56e1,U+57a1,U+57d9,U+5942,U+5a67,U+5c50,U+5c7a,U+5c98,U+5d06,U+5d27,U+5d6f,U+5df3,U+5dfd,U+5e19,U+5ea0,U+5eb9,U+5eea,U+5ffe,U+600f,U+606b,U+6215,U+622c,U+6266,U+62bb,U+62bf,U+6308,U+6387,U+63b8,U+63c4,U+63c6,U+63f6,U+6441,U+6555,U+659b,U+6677,U+66a7,U+6775,U+678b,U+679e,U+6840,U+6849,U+6860,U+68c2,U+6910,U+6a28,U+6a2f,U+6a79,U+6b92-6b93,U+6bc2,U+6bfd,U+6c29,U+6c32,U+6c86,U+6cc5,U+6d0c,U+6d60,U+6da0,U+6ddd,U+6e86,U+6ed3,U+6edf,U+6fb9,U+6fd1,U+6fef,U+7023,U+7080,U+70ca,U+712f,U+7145,U+7284,U+732c,U+73c8,U+73d9,U+740a,U+7457,U+7596,U+759d,U+75a3,U+75d8,U+75e3-75e4,U+75ff,U+7622,U+7688,U+76b4,U+76e5,U+7818,U+7887,U+789a,U+78b2,U+7b08,U+7b33,U+7c2a,U+7ccc,U+7ea8,U+7ec0,U+7fe6,U+8012,U+8084,U+8093,U+80e4,U+80ef,U+8297,U+82a8,U+82be,U+8331,U+8366,U+83c5,U+83fd,U+8473,U+84a1,U+84ca,U+84d1,U+857b,U+85c1,U+85d3,U+8605,U+8662,U+86aa,U+86b1,U+86d4,U+86ed,U+86f3,U+8709,U+8748,U+874c,U+8763,U+89c7,U+89de,U+89e5,U+8a3e,U+8ba6,U+8c00,U+8c21,U+8c49,U+8c7a,U+8d30,U+8df9,U+8e51,U+8e59,U+8f6b,U+8f73,U+8ff3,U+9016,U+9026,U+902f,U+9099,U+909b,U+90c7,U+914a,U+91ae,U+91ba,U+9495,U+94a3,U+94af,U+94ba,U+94bf,U+94cc,U+94e1,U+94f0,U+9531,U+955d,U+95f3,U+9697,U+96bc,U+975b,U+977c,U+98a2,U+998a,U+9994-9995,U+9a9b,U+9ab7,U+9ac5,U+9c91,U+9ccf,U+9cd5,U+9e29,U+9edc,U+9edf,U+9f83,U+9f88-9f89"}},{uri:XO,descriptors:{unicodeRange:"U+4ee8,U+4f22,U+4f43,U+4f57,U+4f5d,U+4f6f,U+4ff8,U+502d,U+507b,U+5345,U+53df,U+53fb,U+544b,U+5482,U+54a7,U+54cc,U+550f,U+5544,U+5555,U+5594,U+55e8,U+55ec,U+55ef,U+564e,U+56f9,U+5704,U+576d,U+5785,U+57ad,U+5914,U+5958,U+599e,U+59aa,U+59be,U+5a06,U+5abe,U+5ae1,U+5b40,U+5bee,U+5cbf,U+5cc4,U+5ccb,U+5d47,U+603f,U+6078,U+607d,U+607f,U+608c,U+609a,U+60fa,U+61ff,U+621b,U+622e,U+626a,U+6371,U+63ae,U+63cd,U+63d6,U+6410,U+6414,U+6421,U+6448,U+64d8,U+6710,U+6748,U+6772,U+680e,U+6954,U+69ab,U+6c68,U+6c8f,U+6ca4,U+6d2e,U+6e4e,U+6e98,U+6fe0,U+7094,U+70e9,U+7116,U+7119,U+723f,U+73c9,U+74e4,U+753e,U+7548,U+75bd,U+75cd,U+7618,U+7634,U+76c5,U+76f1,U+7708,U+7719,U+777e,U+7791,U+77b3,U+7823,U+7827,U+7830,U+7889,U+7893,U+7949,U+795c,U+79e3,U+7a14,U+7a88,U+7a95,U+7aa0,U+7afd,U+7b90,U+7bd1,U+7bfe,U+7da6,U+7ec2,U+7eef,U+7f03-7f04,U+7f08,U+7f58,U+7f61,U+7f9f,U+8174,U+8200,U+828d,U+82c4,U+82d5,U+82dc,U+82f7,U+832d,U+835a,U+840b,U+8438,U+852b,U+869d,U+86ac,U+86d0,U+86f0,U+8782,U+87a8,U+87d1-87d2,U+87e0,U+8839,U+8913,U+891b,U+8934,U+8941,U+89ca,U+89ce,U+8a07,U+8ba3,U+8bc5,U+8bcb,U+8bdb,U+8c11,U+8c15,U+8c29,U+8c32,U+8dc4,U+8dce,U+8ddb,U+8dfa,U+8e09,U+8e1d,U+8e39,U+8e42,U+8e49,U+8e4b,U+8e8f,U+8f71-8f72,U+9004,U+9036,U+9097,U+90dc,U+90e2,U+90e6,U+90ef,U+9104,U+919a,U+91b4,U+938f,U+9497,U+950f,U+9557,U+9562-9563,U+9573,U+9606,U+9649,U+972d,U+973e,U+97a3,U+97eb,U+988c,U+9894,U+98a6,U+9974,U+9977,U+997d,U+9a90,U+9a9d,U+9aef,U+9ca2,U+9ccd,U+9cdf,U+9e20,U+9e4c,U+9e6b,U+9f3e"}},{uri:_O,descriptors:{unicodeRange:"U+4ede,U+4ee1,U+4eeb,U+4fda,U+4ffe,U+5025,U+506c,U+50f3,U+5106,U+520d,U+525c,U+52ad,U+530d,U+5310,U+539d,U+53a9,U+53fc,U+5421,U+5477,U+54e7,U+551b,U+5530,U+557e,U+5599,U+55c4,U+55d1,U+55d4,U+55df,U+55e4,U+55ea,U+5623,U+562d,U+5654,U+56eb,U+56f5,U+57a7,U+57d5,U+57dd,U+584d,U+5880,U+58ec,U+59dd,U+5a32,U+5a55,U+5a75,U+5b51,U+5b71,U+5b73,U+5cd2,U+5ce4,U+5e5b,U+5e96,U+5fd2,U+607b,U+61d1,U+634b,U+636d,U+63b3,U+63ff,U+64c0,U+661d,U+6657,U+66dc,U+67a5,U+6841,U+6867,U+6901,U+699b,U+6a47,U+6b46,U+6c21,U+6c24,U+6c35,U+6c4a,U+6c94,U+6ca3,U+6d39,U+6d63,U+6d6f,U+6d94,U+705e,U+71e7,U+726f,U+72cd,U+72de,U+72f0,U+7325,U+7350,U+7391,U+741a,U+757f,U+7583,U+75b1,U+75b4,U+75b8,U+75c2,U+75f1,U+766f,U+7699,U+7751,U+789c,U+7a17,U+7be6,U+7cb2,U+7ea3,U+7eb0,U+7ebe,U+7eeb,U+7f25,U+7f2c,U+7fb8,U+8026,U+8037,U+8153,U+8171,U+8191,U+8214,U+821b,U+8222,U+826e,U+82eb,U+830c,U+8314,U+8334,U+83d6,U+8418,U+843c,U+84ff,U+8564,U+8572,U+8616,U+866c,U+8693,U+86a3,U+86a7,U+86af,U+86b6,U+86c6,U+86ca,U+8708,U+870d,U+8759,U+8760,U+87af,U+87c6,U+8869,U+88c6,U+89d0,U+8b07,U+8baa-8bab,U+8bc2,U+8be4,U+8bf0,U+8c2a,U+8c62,U+8c89,U+8d49,U+8d6d,U+8d84,U+8d94,U+8db8,U+8dc6,U+8e2e,U+8e3d,U+8e47,U+8e7f,U+9005,U+9051,U+907d,U+9082,U+9088,U+90b0,U+90d3,U+9150,U+949c,U+94a4,U+94b9,U+94cb,U+94e0,U+9509,U+9512,U+951f,U+9534,U+9552-9553,U+965f,U+96b0,U+9791,U+9889,U+9990,U+9a9c,U+9aa7,U+9c88,U+9cb2-9cb3,U+9cb6-9cb7,U+9cc5,U+9cdc,U+9e22,U+9e2a,U+9e57,U+9e67,U+9e73,U+9e82,U+9eb8,U+9ee0,U+9f9b"}},{uri:$O,descriptors:{unicodeRange:"U+4eb5,U+4f09,U+4f5a,U+4f8f,U+4fce,U+4fdf,U+4fea,U+4ff3,U+500c,U+500f,U+504e,U+5088,U+52be,U+5420,U+5457,U+5499,U+549b,U+54c6,U+54d2,U+558b,U+559f,U+55bd,U+55d6,U+565c,U+567c,U+568e,U+5768,U+577b,U+57a9,U+57ed,U+59f9,U+5a11,U+5a40,U+5ae6,U+5b6a,U+5b93,U+5bb8,U+5c15,U+5c99,U+5c9c,U+5cc1,U+5d2e,U+5d4b,U+5d99,U+5e54,U+5e61,U+5fcf-5fd1,U+6002,U+6006,U+6014,U+60af,U+60c6,U+60da,U+60f4,U+621f,U+62c8,U+631b,U+631e,U+63e9,U+64b5,U+655d,U+6619,U+6635,U+6641,U+67ad,U+67b0,U+67b7,U+67e9,U+684e,U+688f,U+695d,U+696b,U+69b7,U+6a58,U+6c26,U+6d35,U+6d43,U+6d9e,U+6dd9,U+6dec,U+6e11,U+6e6e,U+6e9f,U+6ec2,U+6ee2,U+6ef9,U+6f09,U+6f66,U+6f8d,U+6fc2,U+6fc9,U+729f,U+72c8,U+73de,U+7430,U+7566,U+7579,U+75c9,U+75e2,U+75fc,U+762a,U+7638,U+7678,U+76c2,U+76f9,U+778c,U+77cd,U+77dc,U+7800,U+781d,U+782d,U+783b-783c,U+78a3,U+78ec,U+7980,U+7a23,U+7b95,U+7bdd,U+7c0c,U+7c41,U+7c91,U+7cb3,U+7cc5,U+7ecc,U+7f19,U+7fca,U+8006,U+8069,U+807f,U+80bd,U+80ed,U+814b,U+8198,U+82cb,U+82d2,U+834f,U+8360,U+847a,U+84d6,U+84e5,U+8537,U+85d0,U+8671,U+86a4,U+86ce,U+86f9,U+8703,U+8707,U+8737,U+873b,U+8815,U+8936,U+8bc3,U+8bcf,U+8bd2,U+8bd8,U+8be9,U+8c0c,U+8c0f,U+8c4c,U+8d45,U+8d5d,U+8d73,U+8e31,U+8e6d,U+8e76,U+8fe4,U+9041,U+90d7,U+9169,U+92ae,U+94a1,U+94c4,U+94c9,U+94db,U+94e7,U+9503,U+9506,U+9517,U+9528,U+9537,U+9542,U+9549,U+95fe,U+9616,U+961a,U+96c9,U+96f3,U+9701,U+970e,U+9739,U+9753,U+9798,U+98d2-98d3,U+98d9-98da,U+9968,U+996f,U+9984,U+9997,U+9acb,U+9b03,U+9c85,U+9ca8,U+9cab,U+9e49,U+9e51,U+9e66,U+9f10"}},{uri:AV,descriptors:{unicodeRange:"U+4e15,U+4e1e,U+4e2b,U+4eb3,U+4ec9,U+4f0e,U+4f64,U+501c,U+50a9,U+510b,U+51a2,U+51bc,U+527d,U+52d0,U+53fd,U+5429,U+542e,U+5486,U+54af,U+5506,U+5511,U+5522,U+552c,U+556c,U+55b3,U+55d2,U+55e6,U+55fd,U+561f,U+5639,U+5659,U+5662,U+5693,U+572a,U+5892,U+598a,U+5992,U+59a9,U+5a20,U+5ae3,U+5b17,U+5b7d,U+5d34,U+5d3d,U+5d4a,U+5d82,U+5e1a-5e1b,U+5ea5,U+5f0b,U+5f77,U+5fd6,U+5fff,U+6026,U+6035,U+6063,U+60b4,U+60bb,U+60ee,U+612b,U+6194,U+61ca,U+61e6,U+61f5,U+620a,U+6248,U+62a1,U+62d7,U+6376,U+637b,U+652b,U+65bc,U+65cc,U+65ce,U+65d6,U+664c,U+665f,U+6666,U+6684,U+66b9,U+6773,U+6777,U+6787,U+67de,U+6845,U+693d,U+6994,U+6a35,U+6d54,U+6d5c,U+6d8e,U+6dd6,U+6eb4,U+6f2a,U+6f78,U+704f,U+70ec,U+7118,U+714a,U+7172,U+71b9,U+724d,U+728a,U+7337,U+733e,U+7396,U+73b7,U+73cf,U+7428,U+742c,U+742e,U+74ee,U+74f4,U+7525,U+753a,U+7572,U+75d4,U+765c,U+768e,U+7762,U+777d,U+77fd,U+7825,U+7837,U+78b4,U+795f,U+79ed,U+7a1e,U+7b06,U+7b20,U+7ba9,U+7bab,U+7c7c,U+7cbd,U+7cdc,U+7ec9,U+7ef6,U+7f30,U+7f42,U+7f44,U+7f54,U+7f94,U+8004,U+800b,U+8019,U+809b,U+80ae,U+80c4,U+80f1,U+8146,U+816e,U+817c,U+81c0,U+81fc,U+81fe,U+822b,U+830f,U+832f,U+8340,U+8365,U+8385,U+8392,U+83a0,U+8424,U+84af,U+869c,U+8713,U+8717-8718,U+87c0,U+87cb,U+87fe,U+8821,U+8902,U+89d1,U+8bb9,U+8c12,U+8d32,U+8d53,U+8df7,U+8e7c,U+8f7c,U+8f95,U+8fab,U+9052,U+905b,U+9095,U+909d,U+90c5,U+911e,U+9122,U+916a,U+919b,U+948e,U+9492,U+949a,U+94b5,U+94bc,U+94c6,U+94f1,U+9502,U+9511,U+9536,U+956f-9570,U+9602,U+9621,U+9631,U+998b,U+99a5,U+9a81,U+9a9e,U+9ebe,U+9f8b"}},{uri:uV,descriptors:{unicodeRange:"U+4f2b,U+4f3d,U+4fac,U+5043,U+5055,U+5140,U+5156,U+51cb,U+5243,U+531d,U+536f,U+53a5,U+53ae,U+53f1,U+541d,U+5431,U+547b,U+5492,U+5494,U+54a4,U+54aa,U+54ce,U+54fd,U+5509,U+5520,U+553e,U+557b,U+55c5,U+55e1,U+55f7,U+5608,U+5636,U+563b,U+5773,U+57a0,U+5811,U+587e,U+58d5,U+59e3,U+5a29,U+5a6a,U+5a76,U+5a7a,U+5ac9,U+5b62,U+5b95,U+5c49,U+5c8c,U+5cab,U+5cb7,U+5d02,U+5d58,U+5e44,U+5e7a,U+5eff,U+5f29,U+5f89,U+5f9c,U+5fa8,U+6005,U+6043,U+60b8,U+60d8,U+60ec,U+60f0,U+6115,U+618e,U+630e,U+637a,U+6390,U+63ac,U+63b0,U+64de,U+6525,U+6538,U+65ee-65ef,U+6631,U+6636,U+6654,U+677c,U+67b8,U+67d8,U+683e,U+6886,U+68b5,U+692d,U+6963,U+6979,U+6988,U+6b59,U+6b9a,U+6c69,U+6c74,U+6cae,U+6ce0,U+6cef,U+6d95,U+6dc5,U+6dde,U+6de6,U+6dfc,U+6ea7,U+6f15,U+6f29,U+7096,U+70c3,U+7131,U+715c,U+7166,U+7266,U+7317,U+731d,U+7329,U+73e9,U+7425,U+7455,U+7490,U+74ef,U+7519,U+75b5,U+75b9,U+75de,U+7656,U+7663,U+7691,U+7729,U+77fe,U+783e,U+787c,U+795a,U+7a79,U+7abf,U+7b3a,U+7b4f,U+7b60,U+7b75,U+7b8d,U+7bb4,U+7bd3,U+7be1,U+7cbc,U+7edb,U+7f1c,U+7f8c,U+7fb2,U+7fb9,U+7fce,U+7ff1,U+810d,U+81c6,U+82a5,U+82aa,U+82de,U+8317,U+8343,U+835e,U+8364,U+836a,U+853a,U+8543,U+854a,U+8559,U+8568,U+85b0,U+85b9,U+864f,U+86e4,U+8715,U+8845,U+8884,U+88e8,U+88f1,U+8983,U+8be1,U+8c1f,U+8c27,U+8c5a,U+8c82,U+8d58,U+8dbe,U+8f98,U+9035,U+9074,U+90a1,U+9149,U+9157,U+93d6,U+949d,U+94c2,U+94e3-94e4,U+95eb,U+95f0,U+9611,U+9619,U+9642,U+968d,U+9706,U+970f,U+97ed,U+988a,U+9893,U+98e8,U+9a77,U+9a87,U+9aa1,U+9abc,U+9cdd,U+9e2f,U+9e33,U+9e44,U+9e5c,U+9e9d,U+9edd"}},{uri:eV,descriptors:{unicodeRange:"U+4f58,U+4f6c,U+4f70,U+4fd0,U+5014,U+51bd,U+524c,U+5315,U+5323,U+535e,U+540f,U+542d,U+545b,U+548e,U+549a,U+54ab,U+54fc,U+5567,U+556a,U+5600,U+5618,U+563f,U+5669,U+56f1,U+56ff,U+573b,U+574d,U+579b,U+57b8,U+57c2,U+586c,U+58f9,U+595a,U+598d,U+5993,U+5996,U+59d7,U+5b7a,U+5ba6,U+5c4e,U+5c96,U+5ce5,U+5eb6,U+5f08,U+5f99,U+602f,U+6059,U+606c,U+607a,U+60ed,U+61a9,U+620c,U+6249,U+62a8,U+62c4,U+62ed,U+62fd,U+6342,U+6345,U+6396,U+63a3,U+6402,U+6413,U+642a,U+6487,U+64a9,U+64ac,U+64ae,U+64b7,U+659f,U+65a1,U+667e,U+66f3,U+67e0,U+69db,U+69df,U+6aac,U+6b86,U+6c50,U+6c5e,U+6c76,U+6c85,U+6c8c,U+6cde,U+6d19,U+6d52,U+6da7,U+6db8,U+6e1a,U+6e25,U+6e4d,U+6e5f,U+6ec1,U+6f31,U+6f7a,U+6fa7,U+6fe1,U+701b,U+70ab,U+70f7,U+717d,U+71a8,U+7252,U+72c4,U+72e1,U+7315,U+736d,U+73ae,U+73c0,U+73c2,U+740f,U+75a4,U+7600-7601,U+768b,U+76bf,U+76d4,U+7728,U+772f,U+776c,U+77a0,U+77b0,U+77f8,U+783a,U+78d0,U+78fa,U+7977,U+7a37,U+7a92,U+7afa,U+7b71,U+7b94,U+7cef,U+7f28,U+7fe1,U+808b,U+80e5,U+80eb,U+8110,U+8113,U+812f,U+814c,U+81c3,U+8235,U+82d4,U+8309,U+83c1,U+8431,U+8469,U+84bf,U+84d3,U+84df,U+84e6,U+8511,U+8638,U+86c0,U+86db,U+86fe,U+8757,U+8822,U+8882,U+8885,U+8892,U+88f3,U+892a,U+8ba5,U+8bd9,U+8be0,U+8be7,U+8bfd,U+8c1a,U+8d4a,U+8d4e,U+8d66,U+8dda,U+8e0c,U+8e52,U+8e74,U+8e87,U+8f76,U+8fc2,U+8fe6,U+900d,U+9068,U+90ac,U+90b3,U+90b8,U+90e7,U+9119,U+9131,U+915a,U+916e,U+94b4,U+94d0,U+94e2,U+94ec,U+94ff,U+9522,U+9535,U+9556,U+965b,U+96f9,U+9774,U+9981,U+998d,U+998f,U+9a6e,U+9a7f,U+9a8a,U+9b13,U+9c9f,U+9e3e,U+9e43,U+9e6d,U+9e8b,U+9e92,U+9edb,U+9eef"}},{uri:CV,descriptors:{unicodeRange:"U+4e10,U+4e56,U+4e98,U+4ec3,U+4f3a,U+4f5f,U+4f88,U+4f97,U+4fa5,U+4fe8,U+504c,U+5197,U+52fa,U+5364,U+53e8,U+5406,U+543c,U+545c,U+5471,U+5480,U+5495,U+54b3,U+54df,U+54e6,U+54ee,U+557c,U+5583,U+55dc,U+55e3,U+566c,U+592f,U+5944,U+5983,U+59ca,U+59e5,U+5a13,U+5a7f,U+5b09,U+5bd0,U+5e4c,U+5eb5,U+5f1b,U+5f3c,U+608d,U+60cb,U+61a7,U+61ac,U+61cb,U+6233,U+62a0,U+62e7,U+62ee,U+62f4,U+62f7,U+634e,U+6382,U+63c9,U+63ea,U+6400,U+645e,U+6482,U+6556,U+6593,U+6615,U+664f,U+66e6,U+672d,U+675e,U+67da,U+6805,U+6808,U+6868,U+68a2,U+695e,U+69ad,U+6a80,U+6a90,U+6b83,U+6be1,U+6c30,U+6cad,U+6cb1,U+6cf1,U+6d31,U+6d93,U+6dae,U+6dbf,U+6dc6-6dc7,U+6e0d,U+6e32,U+6e3a,U+6e85,U+6eba,U+6f3e,U+6f5e,U+6f7c,U+6fee,U+71ee,U+722a,U+72b7,U+72e9,U+73ba,U+73d1,U+7409,U+7435-7436,U+7459-745a,U+747e,U+7487,U+74e2,U+7504,U+752c-752d,U+7599,U+759f,U+75a1,U+75ca,U+75f0,U+761f,U+7629,U+777f,U+7785,U+77a5,U+77bf,U+78d5,U+7934,U+7940,U+79a7,U+7b19,U+7c38,U+7c95,U+7cb1,U+7ce0,U+7eca,U+7ef7,U+7f2b,U+7f81,U+7fcc,U+8046,U+8148,U+8165,U+819b,U+81ba,U+828b,U+82ae,U+82b7,U+82d3,U+8301,U+830e,U+831c,U+8338,U+837c,U+8393,U+8398,U+83ba,U+83e0,U+83e9,U+853c,U+8654,U+86df,U+8712,U+873f,U+874e,U+8783,U+8859,U+88a4,U+8925,U+8bb7,U+8bff,U+8c19,U+8c1b,U+8c24,U+8c2c,U+8d61,U+8db4,U+8e6c,U+8f8a,U+8fe5,U+8ff8,U+901e,U+90f4,U+912f,U+9163,U+9170,U+91dc,U+949b,U+94a8,U+94b3,U+94c0,U+94e8,U+9525,U+9530,U+9539,U+954c-954d,U+9550,U+955b,U+962a,U+9685,U+96cc,U+9776,U+988d,U+9975,U+9985,U+9a6f,U+9aa5,U+9ab8,U+9c7f,U+9ca4,U+9cb8,U+9e25,U+9e35,U+9e4a"}},{uri:BV,descriptors:{unicodeRange:"U+4ea2,U+4ea5,U+4f36,U+4f84,U+4f8d,U+501a,U+5029,U+516e,U+51a5,U+51c4,U+51f8,U+5201,U+527f,U+5321,U+5352,U+5366,U+53e9,U+54c7,U+5632,U+5676,U+56b7,U+56bc,U+56da,U+56e4,U+5703,U+5729,U+5742,U+57a2-57a3,U+5815,U+58d1,U+5919,U+592d,U+5955,U+5a05,U+5a25,U+5a34,U+5b70,U+5b75,U+5bdd,U+5bf0,U+5c41,U+5c79,U+5c91,U+5c94,U+5ce6,U+5ced,U+5d69,U+5dc5,U+5e16,U+5e27,U+5f27,U+5f95,U+5ffb,U+6020,U+604d,U+6055,U+60e6,U+60eb,U+6123,U+618b,U+61a8,U+620d,U+62c7,U+62ce,U+62d9,U+631f,U+634d,U+6452,U+6479,U+64ce,U+64d2,U+655b,U+660a,U+6726,U+67c4,U+6809,U+6853,U+68e3,U+68f1,U+68fa,U+693f,U+6942,U+6995,U+69a8,U+69b4,U+6a71,U+6b89,U+6bcb,U+6bd3,U+6bd9,U+6c40,U+6cf8,U+6cfe,U+6d85,U+6da3,U+6daa,U+6e0e,U+6e43-6e44,U+6f88,U+7078,U+7099,U+70bd,U+70d9,U+70fd,U+7109,U+7184,U+7239,U+733f,U+73f2,U+748b,U+749c,U+749e,U+759a,U+75d2,U+75eb,U+7620,U+766b,U+7693,U+76cf,U+7738,U+773a,U+776b,U+778e,U+77aa,U+7852,U+78be,U+7948,U+795b,U+7960,U+796f,U+79ba,U+7a20,U+7a96,U+7aa5,U+7b03,U+7b28,U+7b50,U+7b77,U+7bc6,U+7bf1,U+7c27,U+7d0a,U+7ead,U+7ec5,U+7ee2,U+7ef0,U+7efd,U+7f0e,U+7f2e,U+7f79,U+7f9a,U+8098,U+80da,U+80e7,U+80f0,U+80f3,U+80fa,U+818a,U+81e7,U+8237-8238,U+8299,U+82b8,U+82ce,U+837b,U+83bd,U+83cf,U+8426,U+8475,U+85c9,U+85d5,U+85dc,U+85e9,U+871a,U+8747,U+8749,U+888d,U+8910,U+891a,U+8bb4,U+8be3,U+8bec,U+8bf2,U+8c06,U+8c0d,U+8d31,U+8d48,U+8de4,U+8e1e,U+8e4a,U+8e66,U+8f84,U+8f97,U+9083,U+90e1,U+9165,U+91c9,U+94b0,U+94f5,U+9504,U+9532,U+956d,U+95f5,U+95fa,U+9668,U+9698,U+96bd,U+9704,U+9773,U+9890,U+996a,U+997a,U+9a74,U+9a8b,U+9cc4,U+9ccc"}},{uri:gV,descriptors:{unicodeRange:"U+4ea8,U+4f1e,U+4f51,U+4f63,U+4f7c,U+4f83,U+4fa0,U+4fd1,U+4ffa,U+5018,U+5026,U+508d,U+50bb,U+50f5,U+50fb,U+5162,U+5319,U+5320,U+538c,U+5413,U+541f,U+5475,U+54bd,U+54d1,U+5589,U+5598,U+575f,U+57ae,U+57e0,U+5937,U+5974,U+5978,U+59ae,U+5a1f,U+5a49,U+5ab3,U+5b99,U+5b9b,U+5ba0,U+5be1,U+5be5,U+5c09,U+5c27,U+5de2,U+5e9a,U+5f26,U+5f8a,U+5f98,U+6021,U+606d,U+60bc,U+60d5,U+60e7,U+611a,U+614c,U+6254,U+626f,U+6292,U+6296,U+62b9,U+62e2,U+631a,U+631d,U+6320,U+6346,U+63ba,U+6467,U+64bc,U+658b,U+663c,U+6643,U+6652,U+6656,U+6687,U+66d9,U+66dd,U+66f0,U+673d,U+67ab,U+6816-6817,U+68a7,U+68ad,U+68cd,U+68e0,U+6986,U+69fd,U+6b47,U+6bd7,U+6c1f,U+6c2e-6c2f,U+6cbe,U+6de4,U+6e1d,U+6e83,U+6e9c,U+6ed4-6ed5,U+6f4d,U+70f9,U+7130,U+716e,U+718f,U+71ac,U+71e5,U+72fc,U+731c,U+7334,U+73ca,U+7422,U+7426,U+745f,U+7470,U+75af,U+75f4,U+762b,U+763e,U+7696,U+7737,U+7741,U+77a7,U+77bb,U+77ee,U+785d,U+788c,U+78ca,U+7901,U+796d,U+7985,U+79fd,U+7a3c,U+7a57,U+7a74,U+7b5b,U+7caa,U+7cb9,U+7cd5,U+7eac,U+7eb6,U+7ed1,U+7ee5,U+7f20,U+7f2a,U+7f38,U+7f69,U+7fa1,U+8018,U+8038,U+803f,U+804b,U+80a2,U+80be,U+80d6,U+817a,U+81fb,U+820c,U+82ad,U+82af,U+82bd,U+8327,U+8354,U+835f,U+8367,U+836b,U+840c,U+841d,U+8471,U+849c,U+84b2,U+84c9,U+8517,U+851a,U+8549,U+8681,U+8721,U+8776,U+88d9,U+88f9,U+89c5,U+8c1c,U+8c34,U+8d81,U+8d9f,U+8e0a,U+8e72,U+8eb2,U+8fed,U+901b,U+902e,U+906e,U+9091,U+90aa,U+90af,U+915d,U+9171,U+946b,U+9489,U+9499,U+94a5,U+9508,U+9524,U+952d,U+9551,U+9576,U+95f7,U+9600,U+96b6,U+96c0,U+9756,U+97f6,U+98a0,U+98a4,U+997f,U+9a73,U+9a86,U+9ad3,U+9e3d,U+9ed4"}},{uri:EV,descriptors:{unicodeRange:"U+4e4d,U+4e5e,U+4ec7,U+4ed5,U+50da,U+50e7,U+515c,U+51a4,U+51ff,U+5203,U+5254,U+5300,U+533e,U+5375,U+53ee,U+5435,U+543b,U+5455,U+548b,U+548f,U+54d7,U+54fa,U+5578,U+5587,U+55a7,U+560e,U+5760,U+576f,U+5777,U+5830,U+58a9,U+5962,U+59e8,U+5a07,U+5a23,U+5a3c,U+5b5a,U+5bb5,U+5bc5,U+5bde,U+5c7f,U+5cb1,U+5ce8,U+5cea,U+5d29,U+5d4c,U+5e18,U+5f57,U+5f5d,U+5f87,U+5ff1,U+6016,U+601c,U+6064,U+6177,U+61d2,U+625b,U+62e3,U+62f1,U+634f,U+63a0,U+6401,U+6405,U+6495,U+64c2,U+6512,U+6577,U+6590,U+65a7,U+65a9,U+65f7,U+6627,U+6655,U+6714,U+6795,U+67d1,U+67ff,U+68b3,U+68d5,U+68d8,U+6930,U+6960,U+6977,U+69bb,U+69d0,U+6a31,U+6b7c,U+6bb4,U+6c22,U+6c72,U+6c79,U+6c7e,U+6c81,U+6c93,U+6ca5,U+6cbc,U+6ce3,U+6cfb,U+6d3c,U+6da9,U+6df3,U+6e2d,U+6eaf,U+6ec7,U+6f13,U+6f33,U+6f62,U+6fa1,U+7011,U+707c,U+708a,U+70c1,U+70d8,U+70eb,U+711a,U+7194,U+7281,U+7316,U+7357,U+7384,U+7405,U+742a,U+745b,U+7574,U+7578,U+75ea,U+7682,U+7792,U+77d7,U+77e9,U+77eb,U+77f6,U+780c,U+78c5,U+7941,U+79e4,U+7a1a,U+7a9c,U+7ad6,U+7b5d,U+7bf7,U+7c07,U+7c3f,U+7c9f,U+7ca5,U+7cdf,U+7e82,U+7eab,U+7ece,U+7eda,U+7f09,U+7f15,U+7f9e,U+7fdf,U+7fe9,U+803b,U+803d,U+80aa,U+80b4,U+813e,U+8155,U+817b,U+819d,U+821c,U+82b9,U+82df,U+82ef,U+8304,U+83b9,U+8446,U+853d,U+85af,U+85fb,U+8650,U+865e,U+86d9,U+86ee,U+8700,U+8862,U+889c,U+88d4,U+88f8,U+895f,U+8a79,U+8bb3,U+8bb6,U+8bc0,U+8beb,U+8bf5,U+8c23,U+8c79,U+8d1e,U+8dcb,U+8e29,U+8e44,U+8e81,U+8eac,U+8eaf,U+8f8d,U+9050,U+90f8,U+914b,U+948a,U+94be,U+94ee,U+950c,U+9540,U+962e,U+9647,U+9661,U+9699,U+96cf,U+9716,U+9761,U+97a0,U+97e7,U+9a7c,U+9a8f,U+9ae6,U+9cd6,U+9e26"}},{uri:IV,descriptors:{unicodeRange:"U+4fa3,U+4fae,U+4fd8,U+4fef,U+50a3,U+5189,U+5195,U+51db,U+51f3,U+51f9,U+5220,U+5228,U+5288,U+52ff,U+532e,U+533f,U+5351,U+53db,U+53ed,U+5450,U+5484,U+5490,U+54c9,U+54e9,U+5501,U+5507,U+5543,U+55d3,U+56a3,U+575e,U+589f,U+5984,U+59ec,U+5a04,U+5a36,U+5a77,U+5a9a-5a9b,U+5ab2,U+5ac2,U+5ad6,U+5bc7,U+5c2c,U+5c34,U+5c51,U+5cd9,U+5d0e,U+5deb,U+5e3c,U+5e87,U+5ed3,U+5f13,U+5f64,U+5fe1,U+606a,U+6096,U+60df,U+60f6,U+60f9,U+6151,U+620e,U+6241,U+6252,U+6273,U+627c,U+6289,U+62c2,U+62cc,U+62ef,U+6361,U+6363,U+63b7,U+63e3,U+6518,U+66ae,U+6756,U+6789,U+6813,U+6829,U+6862,U+6866,U+6893,U+6897,U+690e,U+6984,U+69cc,U+6a1f,U+6a44,U+6a59,U+6ba1,U+6c13,U+6c90,U+6ca6,U+6cbd,U+6ccc,U+6cd3,U+6cd7,U+6d4a,U+6d4f,U+6d5a,U+6d9f,U+6da1,U+6dcc,U+6ea5,U+6ee4,U+6ee6,U+6f2f,U+6f8e,U+701a,U+7095,U+709c,U+70af,U+70db,U+70e8,U+714e,U+715e,U+71a0,U+71ce,U+7235,U+7280,U+72d0,U+72f8,U+73ab,U+7410,U+745c,U+7480,U+74a7-74a8,U+74e3,U+75ae,U+75f9,U+76b1,U+76ce,U+7736,U+77e2-77e3,U+781a,U+789f,U+797a,U+79be,U+79c3,U+79c6,U+79f8,U+7a8d,U+7a98,U+7aa6,U+7aff,U+7b1b,U+7cd9,U+7d6e,U+7ede,U+7eee,U+7f00,U+7f24,U+7f2d,U+7fd8,U+800d,U+8116,U+8151,U+81b3,U+8205,U+82c7,U+82db,U+832c,U+8335,U+8339,U+8386,U+846b,U+8587,U+8611,U+8682,U+868a,U+868c,U+8774,U+88d8,U+88f4,U+8912,U+8b6c,U+8bbd,U+8c0e,U+8c41,U+8d26,U+8d3b-8d3c,U+8d50,U+8dea,U+8e35,U+8f99,U+8fe2,U+8fe9,U+9017,U+914c,U+916f,U+9175-9176,U+918b,U+94a0,U+94ae,U+94ce,U+94f2,U+951a,U+952f,U+9541,U+9640,U+9672,U+968b,U+96cd,U+96ef,U+9713,U+97ec,U+9885,U+9992,U+9a6d,U+9a79,U+9a85,U+9cbb,U+9cd7,U+9cde,U+9e93,U+9f9f"}},{uri:iV,descriptors:{unicodeRange:"U+4e11,U+4ed7,U+4fcf,U+4fe9,U+4fed,U+50ac,U+50b2,U+5112,U+5180,U+5188,U+51f6,U+522e,U+5265,U+52cb,U+52df,U+5349,U+5367,U+5378,U+537f,U+5395,U+5398,U+53d4,U+543e,U+5440,U+5446,U+54b8,U+5565-5566,U+5580,U+55bb,U+56ca,U+572d,U+573e,U+574e,U+5782-5784,U+58f3,U+5938-5939,U+5948,U+594e,U+5a1c,U+5a74,U+5ae9,U+5b55,U+5b5c,U+5bb0,U+5bd3,U+5bf8,U+5c3f,U+5d14,U+5d2d,U+5df7,U+5dfe,U+5e05-5e06,U+5e1c,U+5e62,U+5e7b,U+5e7d,U+5ed6,U+5f2f,U+5f66,U+5f6c,U+5fa1,U+604b,U+609f,U+60a6,U+60e8,U+6101,U+6124,U+6127,U+6148,U+61be,U+6247,U+62d8,U+62da,U+633d,U+635e,U+6367,U+6380,U+638f,U+63a9,U+63fd,U+641c,U+64e6,U+655e,U+6572,U+6591,U+65a5,U+6691,U+6735,U+67a2-67a3,U+67ef,U+680b,U+6876,U+6905,U+6a0a,U+6a61,U+6b79,U+6bb7,U+6bbf,U+6c41,U+6c55,U+6c83,U+6c9b,U+6ca7,U+6cfc,U+6d46,U+6d51,U+6d74,U+6d9d,U+6daf,U+6dc0,U+6deb,U+6e17,U+6e24,U+6e89,U+6ea2,U+6ef4,U+6f6d,U+707f,U+70b3,U+70e4,U+70ef,U+710a,U+722c,U+725f,U+7261,U+72ee,U+72f1,U+730e,U+732b,U+7433,U+7538,U+75bc,U+7624,U+7709,U+7750,U+7779,U+7802,U+7898,U+78a7,U+78b1,U+78cb,U+78f7,U+7984,U+7a83,U+7aed,U+7b3c,U+7b4b,U+7c92,U+7c98,U+7ca4,U+7eb9,U+7ee3,U+7ef3,U+7ef5,U+7f05,U+7f55,U+7f62,U+7fc1,U+7fd4,U+7fe0,U+8042,U+806a,U+80a0,U+80a4,U+80c3,U+8102,U+8106,U+814a,U+8154,U+8247,U+8258,U+82cd,U+8328,U+832b,U+8389,U+83ca,U+845b,U+846c,U+84b8,U+8574,U+859b,U+8680,U+8695,U+86c7,U+8702,U+886c,U+8896,U+88b1,U+88e4,U+8bc8,U+8c10,U+8c26,U+8c28,U+8c2d,U+8d4c,U+8d63,U+8f67,U+8f74,U+8fc4,U+9006,U+9063,U+90a2,U+90b1,U+90c1,U+9177,U+9189,U+9493,U+949e,U+94fe,U+9610,U+961c,U+96a7,U+96fe,U+978d,U+97f5,U+9888,U+997c,U+9a84,U+9b3c,U+9b44-9b45,U+9b54,U+9e64,U+9f0e,U+9f9a"}},{uri:aV,descriptors:{unicodeRange:"U+4e19,U+4e38,U+4e53,U+4e7e,U+4e9f,U+4ec6,U+4f50,U+4fde,U+502a,U+5154,U+517d,U+51d1,U+51f0,U+5239,U+5256,U+52c9,U+52fe,U+5308,U+532a,U+535c,U+5384,U+53a2,U+53a8,U+53c9,U+53e0,U+5496,U+54ac,U+54c0,U+54c4,U+54e8,U+5561,U+5582,U+561b,U+5631,U+566a,U+5764,U+576a,U+5792,U+57ab,U+584c,U+5885,U+58f6,U+59a8,U+5acc,U+5bc2,U+5c38-5c39,U+5c60,U+5c6f,U+5c82,U+5c90,U+5d16,U+5dcd,U+5e37,U+5e90,U+5eb8,U+5f6a,U+5fcc,U+6012,U+6068,U+6073,U+607c,U+6094,U+6109,U+621a,U+626e,U+6284,U+62d0,U+62e6,U+62fe,U+6321,U+6328,U+632b,U+6349,U+6454,U+65ed,U+660f,U+6674,U+66a8,U+6749,U+674f,U+6760,U+67af,U+6850,U+6854,U+6869,U+68a8,U+68d2,U+68f5,U+6912,U+6b49,U+6b6a,U+6bef,U+6c28,U+6c5d,U+6c82,U+6cab,U+6cb8,U+6cc4,U+6cf5,U+6d47,U+6d78,U+6da4,U+6dc4,U+6dcb,U+6df9,U+6e0a,U+6e23,U+6e5b,U+6eb6,U+6f06,U+6f47,U+6f84,U+6f9c,U+6fd2,U+7076,U+70ac,U+7199,U+723d,U+72ac,U+72ed,U+7476,U+7529,U+752b,U+754f,U+7554,U+75d5,U+7626,U+76ef,U+7720,U+7766,U+7784,U+77ac,U+780d,U+7838,U+7845,U+786b,U+78b3,U+7978,U+79b9,U+79c9,U+79e7,U+7a3d,U+7a84,U+7a9f,U+7b0b,U+7b52,U+7c7d,U+7f1a,U+7fc5,U+7ff0,U+804a,U+8086-8087,U+808c,U+809a,U+80ba,U+810a,U+8180,U+818f,U+81c2,U+81ed,U+8231,U+8292,U+829c,U+82a6,U+82d1,U+8346,U+838e,U+839e,U+83c7,U+83f1,U+8403,U+840e,U+8513,U+857e,U+85e4,U+867e,U+871c,U+87ba,U+87f9,U+884d,U+8944,U+8a93,U+8c05,U+8d2c,U+8d2e,U+8d42-8d43,U+8dfb,U+8e22,U+8eba,U+8f69,U+8f9c,U+8fa3,U+8fa8,U+8fb1,U+900a,U+9038,U+903b,U+9042,U+904f,U+90b5,U+90dd,U+9102,U+9187,U+94a7,U+94c5,U+9523,U+95f8,U+95fd,U+960e,U+964b-964c,U+96c1,U+9709,U+971c,U+97ad,U+9882,U+9965,U+9976,U+9988,U+99a8,U+9a82,U+9a9a,U+9b41,U+9c8d,U+9e45,U+9e70,U+9e9f,U+9f3b,U+9f7f"}},{uri:tV,descriptors:{unicodeRange:"U+4e08,U+4e18,U+4e1b,U+4e22,U+4e27,U+4e32,U+4e52,U+4e73,U+4ead,U+4ed4,U+4ed9,U+4ef0,U+4fa6,U+5076,U+5179,U+51bb,U+51c9,U+51ef,U+51fd,U+524a,U+526a,U+529d,U+52ab,U+5306,U+5339,U+53d9,U+540a,U+5410,U+541e,U+5439,U+54b1,U+54ed,U+5564,U+558a,U+55b7,U+5634,U+574a,U+5751,U+57a6,U+57cb,U+57d4,U+5824,U+582a,U+5835,U+5858,U+5893,U+58e4,U+5951,U+5986,U+59da,U+59fb,U+59ff,U+5a03,U+5a46,U+5ac1,U+5b5d,U+5bfa,U+5c18,U+5c3a,U+5c48,U+5c4f,U+5c61,U+5cb3,U+5d1b,U+5e15,U+5e3d,U+5e99,U+5e9e,U+5eca,U+5f0a,U+5f17-5f18,U+5f25,U+5f7c,U+5fcd,U+6028,U+60a0,U+60ac,U+60d1,U+614e,U+6155,U+6168,U+61c8,U+6208,U+6212,U+6251,U+629a-629b,U+62ab-62ac,U+62fc,U+6323,U+632a,U+63d2,U+643a,U+6491-6492,U+649e,U+64b0,U+64c5,U+659c,U+6614,U+662d,U+6664,U+6670,U+6676,U+6746,U+67cf,U+67d4,U+682a,U+6843,U+6846,U+68da,U+6b3a,U+6b67,U+6c27,U+6c5b,U+6c64,U+6c70,U+6caa,U+6cca,U+6ce1,U+6d12,U+6d45,U+6dd1,U+6dd8,U+6e34,U+6e7f,U+6ee5,U+6f02,U+7092,U+70c2,U+70e6,U+7115,U+7237,U+7272,U+727a,U+72c2,U+739b,U+73b2,U+743c,U+751c,U+758f,U+75b2,U+7686,U+76c6,U+76d2,U+76fc,U+775b,U+77a9,U+7816,U+788e,U+7897,U+78b0,U+79bd,U+7a0d,U+7a91,U+7a9d,U+7ae3,U+7bad,U+7cca,U+7d2b,U+7eb1,U+7f06,U+7f14,U+7f1d,U+7f50,U+7ffc,U+8036,U+80bf,U+80c1,U+80ce,U+80f8,U+8109,U+810f,U+8170,U+8179,U+819c,U+821f,U+8230,U+8236,U+8273,U+829d,U+82f9,U+8305,U+8350,U+83b2,U+83cc,U+8404,U+840d,U+8427,U+8482,U+8679,U+8854,U+886b,U+8bbc,U+8be6,U+8c31,U+8c6b,U+8d4b,U+8dcc,U+8e2a,U+8e48,U+8f90,U+8fb0,U+9022,U+903c,U+903e,U+9065,U+916c,U+917f,U+94a9,U+94c3,U+94dd,U+94ed,U+9510,U+953b,U+96c7,U+970d,U+9738,U+9877,U+987d,U+989c,U+98d8,U+9a70,U+9a91,U+9aa4,U+9b42,U+9b4f,U+9e2d,U+9e3f,U+9e7f,U+9f20"}},{uri:QV,descriptors:{unicodeRange:"U+4e59,U+4ed3,U+4f0f,U+4f38,U+4f69,U+4fa7,U+4faf,U+4ff1,U+5077,U+5085,U+5144,U+5151,U+51af,U+51b6,U+51cc,U+523a,U+5251,U+5269,U+5272,U+52d8,U+5353,U+5389,U+53f9,U+5401,U+5415,U+541b,U+54f2,U+5524,U+554a,U+559d,U+5609,U+5740,U+575d,U+5806,U+5821,U+586b,U+5915,U+594f,U+5960,U+5999,U+59a5,U+59b9,U+59c6,U+59d1,U+59dc,U+5b5f,U+5b64,U+5b87,U+5bb4,U+5bbf,U+5c16,U+5c1d,U+5c3e,U+5c9a,U+5ca9,U+5cad,U+5cfb,U+5de1,U+5de7,U+5de9,U+5ef7,U+5f04,U+5f70,U+5f79,U+5fc6,U+602a,U+6050,U+6052,U+6070,U+6084,U+60b2,U+60dc,U+60e9,U+6167,U+6170,U+61c2,U+6270,U+6291,U+62b1,U+62bc,U+62dc,U+62df,U+62f3,U+6324,U+633a,U+6377,U+6398,U+63cf,U+640f,U+642c-642d,U+6458,U+6478,U+6500,U+654c,U+6566,U+658c,U+65c1,U+65cb,U+65e8,U+65ec,U+6696-6697,U+6734,U+679a,U+679d,U+67dc,U+67f3-67f4,U+680f,U+683d,U+684c,U+68af,U+699c,U+6bc1,U+6c0f,U+6c1b,U+6c57,U+6c6a,U+6d3d,U+6d6e,U+6d82,U+6db5,U+6dee,U+6e58,U+6eaa,U+6ecb,U+6ede,U+6ee9,U+6f0f,U+6f20,U+6f58,U+704c,U+7070,U+70b8,U+718a,U+7238,U+7262,U+7275,U+72b9,U+72d7,U+72e0,U+741b,U+7434,U+7483,U+74f6-74f7,U+75ab,U+764c,U+7761,U+7855,U+7891,U+78c1,U+79d2,U+7a00,U+7a3b,U+7c97,U+7ea4,U+7eb2,U+7ed2,U+7eea,U+7ef8,U+7f18,U+7fbd,U+8000,U+8010,U+8096,U+809d,U+80a9,U+817f,U+81e3,U+8206,U+8212,U+82ac,U+8302,U+8361,U+8377,U+83f2,U+8461,U+848b,U+84ec,U+8521,U+85aa,U+8870,U+8877,U+8881,U+888b,U+88ad,U+88c2,U+8986,U+8bd1,U+8bf1,U+8d24,U+8d2a,U+8d3e-8d3f,U+8d41,U+8d56,U+8d64,U+8d6b,U+8e0f,U+8f70,U+8f85,U+8f88,U+8fa9,U+9003,U+901d,U+90b9,U+90ce,U+94a6,U+94f8,U+9505,U+95ea,U+95ef,U+95f2,U+95f9,U+9601,U+9605,U+9634,U+966a,U+9677,U+9690,U+9694,U+96d5,U+971e,U+9896-9897,U+9972,U+9a71,U+9a76,U+9a7e,U+9e1f,U+9e23"}},{uri:oV,descriptors:{unicodeRange:"U+4e01,U+4e43,U+4ea6,U+4ef2,U+4eff,U+4f26,U+4f2a,U+4f2f,U+4f5b,U+4fa8,U+4fca,U+4fd7,U+5021,U+504f,U+5141,U+51c0,U+51dd,U+51e4,U+51ed,U+5200,U+5237,U+5427,U+5448,U+54a8,U+5706,U+5708,U+5723,U+575b,U+57c3,U+5899,U+58a8,U+58c1,U+5976,U+5988,U+59bb,U+59d0,U+59d3,U+5a18,U+5a31,U+5a92,U+5b54,U+5b85,U+5baa-5bab,U+5bc4,U+5bd2,U+5be8,U+5bff,U+5c65,U+5d07,U+5e1d,U+5e78,U+5e7c,U+5f03,U+5f1f,U+5f39,U+5f6d,U+5f92,U+5faa,U+5fbd,U+5fe7,U+5ffd,U+60a8,U+60ef,U+6108,U+6162,U+622a,U+6234,U+626b,U+626d,U+62c6,U+62d2,U+62d4,U+62d6,U+62e8,U+6316,U+6355,U+63ed,U+6447,U+64a4,U+65f1,U+6606,U+6628,U+664b,U+6668,U+6682,U+66f9,U+66fc,U+66ff,U+6717,U+6740,U+676d,U+67aa,U+67ec,U+67f1,U+6842,U+6851,U+695a,U+6982,U+6a2a,U+6b20,U+6b23,U+6b32,U+6b96,U+6bc5,U+6beb,U+6c60,U+6c9f,U+6cea,U+6cf3,U+6d1e,U+6d53,U+6d66,U+6d69,U+6d8c,U+6d9b,U+6db2,U+6de1,U+6dfb,U+6e14,U+6ed1,U+6eda,U+6ee8,U+6f2b,U+706d,U+7089,U+708e,U+70ad-70ae,U+70e7,U+7126,U+714c,U+71c3,U+71d5,U+7206,U+7259,U+731b,U+73a9,U+73bb,U+74dc,U+7532,U+7545,U+755c,U+75c7,U+7687,U+76d7,U+76f2,U+788d,U+78e8,U+79e6,U+79e9,U+7a3f,U+7a46,U+7a97,U+7af9,U+7bee,U+7c4d,U+7c89,U+7cd6,U+7eb5,U+7ebd,U+7ed8,U+8017,U+8033,U+80c0,U+80de,U+80f6,U+8138,U+817e,U+81a8,U+820d,U+827e,U+82b3,U+82d7,U+83b1,U+84c4,U+84dd,U+8584,U+864e,U+865a,U+866b,U+86cb,U+88d5,U+89e6,U+8bca,U+8bde,U+8bfa,U+8c0a,U+8c37,U+8c46,U+8c6a,U+8c8c,U+8d1d,U+8d29,U+8d4f,U+8d54,U+8d5a,U+8d60,U+8d62,U+8f7f,U+8f96,U+8f9e-8f9f,U+8fc1,U+8fdf,U+8fea,U+8ff7,U+9012,U+906d,U+9075,U+90a6,U+90bb,U+90ca,U+9178,U+9192,U+91ca,U+94bb,U+94dc,U+94fa,U+9501,U+950b,U+9521,U+955c,U+963b,U+9655,U+9675-9676,U+9887,U+9891,U+9971,U+9a97,U+9ece,U+9ed8"}},{uri:rV,descriptors:{unicodeRange:"U+4e1d,U+4e39,U+4e4c,U+4e4f,U+4e54,U+4e58,U+4e95,U+4ea1,U+4eab,U+4eae,U+4ec1,U+4f10,U+4f19,U+4f30,U+4f34,U+4fb5,U+503e,U+518c,U+5192,U+51a0,U+51ac,U+51b0,U+51e1,U+5211,U+5242,U+52a3,U+52b2,U+52c3,U+52c7,U+52d2,U+52e4,U+5377,U+539a,U+53a6,U+53e5,U+5417,U+5510,U+552f,U+5531,U+574f-5750,U+5761,U+5851,U+5854,U+58ee,U+593a,U+5949,U+5954,U+5a5a,U+5b8b,U+5bbd,U+5c04,U+5c0a,U+5c4b,U+5ce1,U+5cf0,U+5e10,U+5e8a,U+5e9f,U+5ec9,U+5f31,U+5f84,U+5fd8-5fd9,U+5fe0,U+6015,U+6062,U+6069,U+6076,U+6089,U+60a3,U+60ca,U+620f,U+624e,U+6263,U+6298,U+62a2,U+62bd,U+6311,U+6350,U+6389,U+638c,U+63f4,U+6446,U+644a,U+6469,U+64cd,U+654f,U+6562,U+656c,U+65d7,U+65e6,U+65fa,U+660c,U+6653,U+66b4,U+670b,U+672b,U+676f-6770,U+6881,U+6885,U+68a6,U+68cb,U+68ee,U+6b8a,U+6c88-6c89,U+6cc9,U+6ce5,U+6d01,U+6d17,U+6d1b,U+6d59,U+6d6a,U+6da8,U+6df7,U+6e10,U+6e20-6e21,U+6f5c,U+706f,U+70bc,U+719f,U+7267,U+732a,U+73cd,U+7518,U+756a,U+7586,U+7591,U+75db,U+76c8,U+76d0,U+76d6,U+76d8,U+76df,U+76fe,U+77db,U+7801,U+786c,U+795d,U+7965,U+79cb,U+7a77,U+7a7f,U+7aef,U+7b11,U+7bb1,U+7bc7,U+7ea0,U+7eaf,U+7ed5,U+7edc,U+7f13,U+7f29,U+7f34,U+7f8a,U+7ffb,U+8015,U+8058,U+805a,U+8083,U+80af,U+80c6,U+80cc,U+811a,U+8150,U+82e5,U+8336,U+8352,U+83ab,U+8428,U+8463,U+852c,U+8861,U+89c8,U+8bcd,U+8bd7,U+8bda,U+8be2,U+8bef,U+8bf8,U+8c0b,U+8c13,U+8d34,U+8d3a,U+8d74,U+8d76,U+8da3,U+8dd1,U+8ddd,U+8ddf,U+8df3,U+8f68,U+8f6f,U+8f7d,U+8f91,U+8f9b,U+8fbd,U+8fc8,U+8fd4,U+8feb,U+8ff9,U+900f,U+9057,U+907f-9080,U+90d1,U+90ed,U+91ce,U+9519,U+9526,U+95ed,U+9614,U+9635,U+9644,U+9686,U+96c5,U+96ea,U+9707,U+9732,U+9759,U+978b,U+9876,U+9881,U+9910,U+996e,U+9970,U+9c81,U+9e21,U+9ebb,U+9f84"}},{uri:sV,descriptors:{unicodeRange:"U+4e3d,U+4e4e,U+4e71,U+4e8f,U+4ed8,U+4eea,U+4f0a,U+4f0d,U+4f11,U+4f1f,U+4f24,U+4f3c,U+4f73,U+4fc4,U+500d,U+5012,U+501f,U+503a,U+505c,U+507f,U+50a8,U+514d,U+5178,U+517c,U+51b2,U+51b7,U+520a,U+5238,U+523b,U+52b1,U+535a,U+5371,U+5385,U+53eb-53ec,U+53f3,U+53f6,U+5409,U+542b,U+542f,U+5434,U+5462,U+5473,U+547c,U+54c8,U+54ea,U+56fa,U+5733,U+5757,U+5766,U+5802,U+585e,U+590f,U+591c,U+591f,U+5947,U+594b,U+5987,U+5a01,U+5b59,U+5b63,U+5b88,U+5b97,U+5b9c,U+5bbe,U+5bfb,U+5c01,U+5c1a,U+5c24,U+5c3c,U+5c97,U+5c9b,U+5cb8,U+5de6,U+5e01,U+5e2e,U+5e45,U+5e55,U+5e84,U+5ef6,U+5f02,U+5f52,U+5f69,U+5f7b,U+5f90,U+5fae,U+6000,U+600e,U+6025,U+60e0,U+6276,U+6297,U+62b5,U+62cd,U+62d3,U+62e5,U+62e9,U+62ff,U+6302,U+632f,U+63e1,U+6444,U+64ad,U+653b,U+6551,U+6563,U+65a4,U+65e7,U+6620,U+667a,U+66f2,U+671d,U+6731,U+6742,U+675f,U+6768,U+677e-677f,U+6790,U+67b6,U+67d3,U+6863,U+68b0,U+68c9,U+690d,U+6b8b,U+6bcd,U+6bd2,U+6bd5,U+6c38,U+6c61,U+6cbf,U+6cdb,U+6cf0,U+6d2a,U+6d89,U+6da6,U+6f6e,U+6fb3,U+7075,U+707e,U+70df,U+7164,U+7236,U+725b,U+7389,U+73e0,U+745e,U+74e6,U+751a,U+7537,U+75be,U+76ae,U+76db,U+793c,U+7956,U+7981,U+79d8,U+79df,U+79fb,U+7adf,U+7ae5,U+7b14,U+7b26,U+7b54,U+7b79,U+7d2f,U+7eb8,U+7eba,U+7ec6,U+7ee9,U+7eff,U+7f5a,U+7f6a,U+7f72,U+8089,U+80a5,U+80e1,U+8111,U+8131,U+821e,U+822c,U+8270,U+8499,U+8651,U+867d,U+8840,U+8857,U+8863,U+88c1,U+89c9,U+89d2,U+8a89,U+8bed,U+8bfe,U+8c01,U+8c22,U+8d21,U+8d25,U+8d2f,U+8d5e,U+8d75,U+8d8b,U+8dc3,U+8de8,U+8df5,U+8f6e,U+8f86,U+8f89,U+8fc5,U+8ff0,U+8ffd,U+9014,U+904d,U+90ae,U+9274,U+949f,U+952e,U+969c,U+96c4,U+96e8,U+96f6-96f7,U+97e9,U+987f,U+996d,U+9a7b,U+9aa8,U+9c7c,U+9c9c,U+9e4f,U+9f13,U+9f50"}},{uri:nV,descriptors:{unicodeRange:"U+4e13,U+4e16,U+4e1c,U+4e24,U+4e3e,U+4e49,U+4e61,U+4e66,U+4e89,U+4e8c,U+4e94,U+4e9b,U+4ea4,U+4eac,U+4ebf,U+4eca,U+4ef6-4ef7,U+4efb,U+4f18,U+4f20,U+4f46,U+4f7f,U+4fe1,U+503c,U+505a,U+5146,U+5148,U+515a,U+5171,U+5177,U+519b,U+51b3,U+51c6,U+51e0,U+5212,U+521b,U+522b,U+529e,U+52bf,U+534e-534f,U+5355,U+5357,U+5382,U+539f,U+53bb,U+53bf,U+53c2,U+53c8,U+53ca,U+53d6-53d8,U+53e3,U+53ea,U+53f0,U+540d,U+5411,U+56db,U+56de,U+56e0,U+56e2,U+578b,U+57ce,U+57fa,U+589e,U+5904,U+5934,U+5982,U+5b89,U+5b8c,U+5bfc,U+5c06,U+5c11,U+5c40,U+5c71,U+5e38,U+5e72,U+5e76,U+5e7f,U+5e94,U+5e9c,U+5f0f,U+5f15,U+5f20,U+5f3a,U+5f62,U+5f88,U+5fc5,U+5fd7,U+5feb,U+601d,U+6027,U+60c5,U+60f3,U+610f,U+6216,U+6218,U+624b,U+624d,U+6279,U+628a,U+6295,U+6301,U+6307,U+636e,U+63a5,U+63a8,U+652f,U+6536,U+653e,U+6548,U+6559,U+6570,U+65bd,U+65e0,U+6602,U+660e,U+6613,U+66f4,U+6700,U+670d,U+671f,U+672f,U+6743,U+674e,U+6751,U+6761,U+6784,U+6797,U+679c,U+67e5,U+6807,U+6837,U+683c,U+6b21,U+6b63-6b65,U+6bcf,U+6bd4,U+6c42,U+6c5f,U+6ca1,U+6cbb,U+6d3b,U+6d41,U+6d88,U+6df1,U+70b9,U+7136,U+7269,U+7279,U+7531,U+754c,U+767e,U+76ca,U+76f8,U+770b,U+7740,U+7814,U+79ef,U+7a0b,U+7a0e,U+7a76,U+7b80,U+7cbe,U+7cfb,U+7e41,U+7ea7,U+7ec4,U+7ec7,U+7ed3,U+7ed9,U+7edf,U+7f8e,U+8001,U+804c,U+8054,U+80b2,U+81f3,U+8425,U+8868,U+88ab,U+897f,U+89c1-89c2,U+89c4,U+89c6,U+89e3,U+8ba1,U+8ba4,U+8bae,U+8bb0,U+8bba,U+8bc1,U+8c03,U+8d28,U+8d39,U+8def,U+8f66,U+8f6c,U+8fd0-8fd1,U+9020,U+9053,U+90a3,U+90fd,U+91cc,U+9500,U+9547,U+95e8,U+95f4,U+961f,U+9645,U+9662,U+96be,U+96c6,U+9700,U+9769,U+97e6,U+9875,U+9879,U+9886,U+9898,U+98ce,U+9996,U+2b5af,U+2cc56,U+2e9f5,U+30edd-30ede"}},{uri:lV,descriptors:{unicodeRange:"U+4e03,U+4e30,U+4e34,U+4e45,U+4e60,U+4e70,U+4e88,U+4e91-4e92,U+4ea9,U+4eb2,U+4ec0,U+4ecb,U+4ecd,U+4ee4,U+4fee,U+5019,U+5047,U+50cf,U+5145,U+516d,U+5170,U+5175,U+5199,U+51cf,U+51fb,U+521a,U+5224,U+5267,U+52aa,U+5347-5348,U+534a,U+5356,U+5361,U+536b,U+5370,U+538b,U+53e4,U+53e6,U+5403,U+5426,U+5428,U+542c,U+5438,U+5668,U+56ed,U+56f4,U+56fe,U+57df,U+592a,U+5957,U+5b69,U+5b81,U+5b8f,U+5b98,U+5b9d,U+5ba1,U+5ba4,U+5bb3,U+5bc6,U+5bdf,U+5c3d,U+5c5e,U+5c81,U+5ddd,U+5de8,U+5dee,U+5e0c,U+5e86,U+5e8f,U+5e93,U+5e95,U+5e97,U+5ea7,U+5ead,U+5eb7,U+5f55,U+5f81,U+5f85,U+5ff5,U+6001,U+613f,U+6258,U+6267,U+6269,U+626c,U+627e,U+62db,U+62ec,U+6325,U+635f,U+6362,U+6388,U+6392,U+63a2,U+63a7,U+63aa,U+641e,U+6545,U+6597,U+65e2,U+65e9,U+661f,U+665a,U+666e-666f,U+66fe,U+6728,U+67d0,U+6811,U+6838,U+6865,U+697c,U+6b22,U+6b27,U+6b4c,U+6b62,U+6b66,U+6b7b,U+6bdb,U+6c47,U+6c49,U+6c7d,U+6c99,U+6cfd,U+6d0b,U+6d25,U+6d32,U+6d3e,U+6d4b,U+6e29,U+6e56,U+6e7e,U+6f14,U+6fc0,U+706b,U+70c8,U+7247,U+72af,U+72b6,U+72ec,U+732e,U+73ed,U+7403,U+7533,U+753b,U+7559,U+7565,U+7597,U+767b,U+773c,U+7763,U+77ed,U+77ff,U+7968,U+798f,U+79bb,U+79c0-79c1,U+7ad9,U+7ae0,U+7b51,U+7b7e,U+7cae,U+7d22,U+7ea2,U+7eb3,U+7eb7,U+7ec3,U+7ec8,U+7ecd,U+7edd,U+7efc,U+7f16,U+7f3a,U+7f51,U+7f57,U+7f6e,U+80dc,U+822a,U+8239,U+826f,U+82cf,U+82e6,U+8349,U+8363,U+83dc,U+8457,U+85cf,U+878d,U+8865,U+8a00,U+8b66,U+8ba2,U+8ba8,U+8bad,U+8bb2,U+8bc9,U+8bd5,U+8bfb,U+8d2b,U+8d35,U+8d37,U+8f7b,U+8f93,U+8fce,U+8fdd,U+9000-9002,U+9010,U+9047,U+9093,U+9152,U+9488,U+94a2,U+9633,U+9636,U+963f,U+9646,U+9648,U+964d,U+9664,U+9669,U+9760,U+97f3,U+987a,U+987e,U+9884,U+98de,U+9986,U+9ed1"}},{uri:DV,descriptors:{unicodeRange:"U+4e14,U+4e25,U+4e48,U+4e50,U+4e5d,U+4e9a,U+4ec5,U+4efd,U+4f17,U+4f4e-4f4f,U+4f55,U+4f59,U+4f60,U+4f8b,U+4f9b,U+4f9d,U+4fbf,U+4fc3,U+5065,U+513f,U+5149,U+514b,U+516b,U+5174,U+517b,U+518d,U+51b5,U+5207,U+5217-5219,U+521d,U+526f,U+529f,U+52a9,U+52b3,U+5305,U+533b,U+5343,U+5360,U+5373-5374,U+5386,U+53cb-53cd,U+53f2,U+53f7,U+544a,U+5468,U+547d,U+54cd,U+552e,U+5584,U+56f0,U+571f,U+5747,U+575a,U+57f9,U+5883,U+58eb,U+58f0,U+5907,U+590d,U+592e,U+5931,U+5956,U+5965,U+5973,U+5979,U+59cb,U+5b57-5b58,U+5b83,U+5ba2-5ba3,U+5bb9,U+5bcc,U+5c42,U+5c45,U+5c4a,U+5dde,U+5df1,U+5df4,U+5e03,U+5e08,U+5e26,U+5e2d,U+5f71,U+5f80,U+5f8b,U+5fb7,U+606f,U+611f,U+6237,U+623f,U+6253,U+627f,U+6293,U+62a4,U+62c5,U+62c9,U+6309,U+6574,U+6599,U+65ad,U+65af,U+65c5,U+65cf,U+6625,U+663e,U+671b,U+672a,U+6750,U+6781,U+6821,U+6839,U+6848,U+68c0,U+6a21,U+6b3e,U+6bb5,U+6c14,U+6cb3,U+6cb9,U+6ce8,U+6e05,U+6e2f,U+6e38,U+6e90,U+6ee1,U+70ed,U+7167,U+7231,U+7248,U+724c,U+7387,U+738b,U+73af,U+7530,U+75c5,U+767d,U+76d1,U+76f4,U+771f,U+77e5,U+77f3,U+7834,U+7840,U+786e,U+793a,U+795e,U+79f0,U+7a33,U+7a7a,U+7a81,U+7ade,U+7b56,U+7b97,U+7c73,U+7c7b,U+7d20,U+7d27,U+7ea6,U+7eaa,U+7ebf,U+7ee7,U+7eed,U+7ef4,U+7fa4,U+8003,U+80a1,U+81f4,U+8272,U+827a,U+8282,U+82b1,U+82f1,U+8303,U+836f,U+83b7,U+843d,U+88c5,U+8ba9,U+8baf,U+8bb8,U+8bbf,U+8bc4,U+8bc6,U+8bdd,U+8be5,U+8bf7,U+8c08,U+8c61,U+8d1f,U+8d22-8d23,U+8d27,U+8d2d,U+8d38,U+8d5b,U+8d70,U+8d85,U+8d8a,U+8db3,U+8eab,U+8f83,U+8fb9,U+8fdc,U+8fde,U+9009,U+901f,U+914d,U+91c7,U+94b1,U+94c1,U+94f6,U+95fb,U+9632,U+9650,U+968f,U+9752,U+975e,U+987b,U+989d,U+98df,U+9999,U+9a6c,U+9a8c,U+9ec4,U+9feb-9fec"}},{uri:cV,descriptors:{unicodeRange:"U+98fb-990c,U+990e-990f,U+9911-992d,U+992f-9953,U+9956-9962,U+9964,U+9966,U+9973,U+9978-9979,U+997b,U+997e,U+9982-9983,U+9989,U+998c,U+998e,U+999a-99a4,U+99a6-99a7,U+99a9-99c8"}},{uri:dV,descriptors:{unicodeRange:"U+8e4c-8e50,U+8e53-8e58,U+8e5a-8e65,U+8e67-8e68,U+8e6a-8e6b,U+8e6e,U+8e71,U+8e73,U+8e75,U+8e77-8e7b,U+8e7d-8e7e,U+8e80,U+8e82-8e84,U+8e86,U+8e88-8e8e,U+8e91-8e93,U+8e95-8e9b,U+8e9d,U+8e9f-8eaa,U+8ead-8eae,U+8eb0-8eb1,U+8eb3-8eb9,U+8ebb-8ecd,U+8ecf-8f02"}},{uri:wV,descriptors:{unicodeRange:"U+2e3a,U+3001-3002,U+3008-3011,U+3014-3017,U+301d-301f,U+4dae,U+4e00,U+4e07,U+4e09-4e0b,U+4e0d-4e0e,U+4e1a,U+4e2a,U+4e2d,U+4e3a-4e3b,U+4e4b,U+4e5f,U+4e86,U+4e8b,U+4e8e,U+4ea7,U+4eba,U+4ece,U+4ed1,U+4ed6,U+4ee3,U+4ee5,U+4eec,U+4f01,U+4f1a,U+4f4d,U+4f53,U+4f5c,U+4fdd,U+5143,U+5165,U+5168,U+516c,U+5173,U+5176,U+5185,U+519c,U+51fa,U+5206,U+5229,U+5230,U+5236,U+524d,U+529b,U+52a0-52a1,U+52a8,U+5316-5317,U+533a,U+5341,U+5362,U+53d1,U+53ef,U+53f8,U+5404,U+5408,U+540c,U+540e,U+5458,U+548c,U+54c1,U+54e5,U+5546,U+559c,U+56fd,U+5728,U+5730,U+573a,U+5916,U+591a,U+5927,U+5929,U+592b,U+597d,U+59d4,U+5b50,U+5b66,U+5b9a,U+5b9e,U+5bb6,U+5bf9,U+5c0f,U+5c14,U+5c31,U+5c55,U+5de5,U+5df2,U+5e02,U+5e73-5e74,U+5ea6,U+5efa,U+5f00,U+5f53,U+5f97,U+5fc3,U+603b,U+6210-6211,U+6240,U+6280,U+62a5,U+63d0,U+6539,U+653f,U+6587,U+65b0,U+65b9,U+65e5,U+65f6,U+662f,U+6708-6709,U+672c,U+673a,U+675c,U+6765,U+6c11,U+6c34,U+6cd5,U+6ce2,U+6d4e,U+6d77,U+73b0,U+7406,U+751f,U+7528,U+7535,U+7684,U+76ee,U+793e,U+79cd,U+79d1,U+7acb,U+7b2c,U+7b49,U+7ba1,U+7ecf,U+8005,U+800c,U+80fd,U+81ea,U+884c,U+8981,U+8bbe,U+8bf4,U+8d44,U+8d77,U+8fbe,U+8fc7,U+8fd8-8fd9,U+8fdb,U+901a,U+90e8,U+91cd,U+91cf,U+91d1,U+9485,U+957f,U+95ee,U+9762,U+9ad8,U+9ea6,U+9f99,U+9fcf,U+9fd4,U+9fed,U+fe10-fe19,U+fe30-fe31,U+fe33-fe44,U+ff01,U+ff0c,U+ff1f,U+2b4e7,U+2b7f7,U+2b7fc,U+2cb2d,U+2cb3b,U+2cb4a,U+2cb5b,U+2cb73"}},{uri:hV,descriptors:{unicodeRange:"U+6490,U+6493-6494,U+6497-6498,U+649a-649d,U+649f-64a3,U+64a5-64a8,U+64aa-64ab,U+64af,U+64b1-64b4,U+64b6,U+64b9,U+64bb,U+64bd-64bf,U+64c1,U+64c3-64c4,U+64c6-64cc,U+64cf,U+64d1,U+64d3-64d6,U+64d9-64dd,U+64df-64e1,U+64e3,U+64e5,U+64e7-64ff,U+6501-6508,U+650a-6511,U+6513-6517,U+6519-6524,U+6526-652a,U+652c-652d,U+6530-6533,U+6537,U+653a,U+653c-653d,U+6540-6544,U+6546-6547,U+654a-654b,U+654d-654e,U+6550,U+6552-6554,U+6557-6558,U+655a,U+655c,U+655f-6561,U+6564-6565,U+6567-6568"}},{uri:FV,descriptors:{unicodeRange:"U+9695-9696,U+969a-969b,U+969d-96a6,U+96a8-96af,U+96b1-96b2,U+96b4-96b5,U+96b7-96b8,U+96ba-96bb,U+96bf,U+96c2-96c3,U+96c8,U+96ca-96cb,U+96d0-96d1,U+96d3-96d4,U+96d6-96df,U+96e1-96e7,U+96eb-96ee,U+96f0-96f2,U+96f4-96f5,U+96f8,U+96fa-96fd,U+96ff,U+9702-9703,U+9705,U+970a-970c,U+9710-9712,U+9714-9715,U+9717-971b,U+971d,U+971f-9729,U+972b-972c,U+972e-972f,U+9731,U+9733-9737,U+973a-973d,U+973f-9751,U+9754-9755,U+9757-9758,U+975a,U+975c-975d,U+975f,U+9763-9764,U+9766-9768,U+976a-9770"}},{uri:pV,descriptors:{unicodeRange:"U+6af0-6b1f,U+6b25-6b26,U+6b28-6b31,U+6b33-6b36,U+6b38,U+6b3b-6b3d,U+6b3f-6b42,U+6b44-6b45,U+6b48,U+6b4a-6b4b,U+6b4d-6b58,U+6b5a-6b61,U+6b68-6b69,U+6b6b-6b78,U+6b7a,U+6b7d-6b80,U+6b85,U+6b88,U+6b8c,U+6b8e-6b91,U+6b94-6b95,U+6b97-6b99,U+6b9c-6ba0,U+6ba2-6ba9,U+6bab-6bb2,U+6bb6,U+6bb8-6bba"}},{uri:mV,descriptors:{unicodeRange:"U+430e-439a,U+29e8a,U+29ec4,U+29edb,U+29ee9,U+29f7e,U+29f83,U+29f8c,U+29fce,U+2a01a,U+2a02f,U+2a082,U+2a0f9,U+2a190,U+2a38c"}},{uri:kV,descriptors:{unicodeRange:"U+92ef-933d,U+933f-9369,U+936b-9388"}},{uri:yV,descriptors:{unicodeRange:"U+4512-458d,U+2b300,U+2b363,U+2b36f,U+2b372,U+2b37d,U+2b404,U+2b410,U+2b413,U+2b461,U+2b4ef,U+2b4f6,U+2b4f9,U+2b50d-2b50e,U+2b536,U+2b5ae,U+2b5b3,U+2b5e7,U+2b5f4,U+2b61c-2b61d,U+2b626-2b628,U+2b62a,U+2b62c,U+2b695-2b696,U+2b6ad,U+2b6ed"}},{uri:bV,descriptors:{unicodeRange:"U+88bd-88c0,U+88c3-88c4,U+88c7-88c8,U+88ca-88cd,U+88cf-88d1,U+88d3,U+88d6-88d7,U+88da-88de,U+88e0-88e1,U+88e6-88e7,U+88e9-88ef,U+88f2,U+88f5-88f7,U+88fa-88fb,U+88fd,U+88ff-8901,U+8903-8909,U+890b-890f,U+8911,U+8914-8918,U+891c-8920,U+8922-8924,U+8926-8929,U+892c-892f,U+8931-8933,U+8935,U+8937-8940,U+8942-8943,U+8945-895d,U+8960-8965,U+8967-897a,U+897c-897e,U+8980,U+8982,U+8984-8985"}},{uri:GV,descriptors:{unicodeRange:"U+4b0b-4ba0"}},{uri:UV,descriptors:{unicodeRange:"U+7179,U+717b-717c,U+717e-7183,U+7185-7189,U+718b-718e,U+7190-7193,U+7195-7197,U+719a-719e,U+71a1-71a7,U+71a9-71ab,U+71ad-71b2,U+71b4,U+71b6-71b8,U+71ba-71c2,U+71c4-71cd,U+71cf-71d3,U+71d6-71df,U+71e1-71e4,U+71e6,U+71e8-71ed,U+71ef-71f8,U+71fa-7205,U+7207-721c,U+721e-7227,U+7229,U+722b,U+722d"}},{uri:LV,descriptors:{unicodeRange:"U+982e-9874,U+988b,U+988e,U+9892,U+9895,U+9899,U+98a3,U+98a8-98cd,U+98cf-98d0,U+98d4,U+98d6-98d7,U+98db-98dd,U+98e0-98e6,U+98e9-98fa"}},{uri:xV,descriptors:{unicodeRange:"U+7c14-7c15,U+7c17-7c1e,U+7c20-7c25,U+7c28-7c29,U+7c2b-7c37,U+7c39-7c3e,U+7c42-7c4c,U+7c4e-7c72,U+7c75-7c7a,U+7c7e-7c88,U+7c8a-7c90,U+7c93-7c94,U+7c96,U+7c99-7c9b,U+7ca0-7ca1,U+7ca3,U+7ca6-7ca9,U+7cab-7cad,U+7caf-7cb0,U+7cb4-7cb8,U+7cba-7cbb,U+7cbf-7cc0,U+7cc2-7cc4,U+7cc6,U+7cc9,U+7ccb,U+7cce-7cd4"}},{uri:NV,descriptors:{unicodeRange:"U+7d95-7da5,U+7da7-7dad,U+7daf-7e2a"}},{uri:SV,descriptors:{unicodeRange:"U+4a78-4b0a"}},{uri:RV,descriptors:{unicodeRange:"U+9b30-9b31,U+9b33-9b3a,U+9b3d-9b40,U+9b46,U+9b4a-9b4c,U+9b4e,U+9b50,U+9b52-9b53,U+9b55-9bcf"}},{uri:MV,descriptors:{unicodeRange:"U+6a4b-6a4f,U+6a51-6a57,U+6a5a,U+6a5c-6a60,U+6a62-6a64,U+6a66-6a70,U+6a72-6a78,U+6a7a-6a7b,U+6a7d-6a7f,U+6a81-6a83,U+6a85-6a8d,U+6a8f,U+6a92-6a96,U+6a98-6a9f,U+6aa1-6aa8,U+6aaa,U+6aad-6aef"}},{uri:fV,descriptors:{unicodeRange:"U+99c9-9a53"}},{uri:YV,descriptors:{unicodeRange:"U+8550-8555,U+8557-8558,U+855a-855d,U+855f-8563,U+8565-8567,U+8569-8571,U+8573,U+8575-8578,U+857c-857d,U+857f-8583,U+8586,U+8588-858e,U+8590-859a,U+859d-85a3,U+85a5-85a7,U+85a9,U+85ab-85ad,U+85b1-85b6,U+85b8,U+85ba-85c0,U+85c2-85c8,U+85ca-85ce,U+85d1-85d2,U+85d4,U+85d6-85db,U+85dd-85e3,U+85e5-85e8,U+85ea-85fa,U+85fc-85fe,U+8600-8603"}},{uri:HV,descriptors:{unicodeRange:"U+6fb2,U+6fb4-6fb5,U+6fb7-6fb8,U+6fba-6fbf,U+6fc1,U+6fc3-6fc8,U+6fca-6fd0,U+6fd3-6fdd,U+6fdf,U+6fe2-6fed,U+6ff0-7010,U+7012-7019,U+701c-7022,U+7024-7034,U+7036-7038,U+703a-704b,U+704d-704e,U+7050-7053"}},{uri:KV,descriptors:{unicodeRange:"U+4ba1-4c2c"}},{uri:JV,descriptors:{unicodeRange:"U+9a54-9a6b,U+9a72,U+9a83,U+9a89,U+9a8d-9a8e,U+9a94-9a95,U+9a99,U+9aa6,U+9aa9-9aaf,U+9ab2-9ab5,U+9ab9,U+9abb,U+9abd-9abf,U+9ac3-9ac4,U+9ac6-9aca,U+9acd-9ad0,U+9ad2,U+9ad4-9ad7,U+9ad9-9ade,U+9ae0,U+9ae2-9ae5,U+9ae7-9aea,U+9aec,U+9aee,U+9af0-9af8,U+9afa,U+9afc-9b02,U+9b04-9b07,U+9b09-9b0e,U+9b10-9b12,U+9b14-9b1e,U+9b20-9b22,U+9b24-9b2e"}},{uri:vV,descriptors:{unicodeRange:"U+9d1a-9da1"}},{uri:ZV,descriptors:{unicodeRange:"U+9e13-9e1e,U+9e24,U+9e27,U+9e2e,U+9e30,U+9e34,U+9e3b-9e3c,U+9e40,U+9e4d,U+9e50,U+9e52-9e54,U+9e56,U+9e59,U+9e5d,U+9e5f-9e62,U+9e65,U+9e6e-9e6f,U+9e72,U+9e74-9e7d,U+9e80-9e81,U+9e83-9e86,U+9e89-9e8a,U+9e8c-9e91,U+9e94-9e9c,U+9e9e,U+9ea0-9ea5,U+9ea7-9eb3,U+9eb5-9eb7,U+9eb9-9eba,U+9ebc,U+9ebf-9ec3,U+9ec5-9ec8,U+9eca-9ecc,U+9ed0,U+9ed2-9ed3,U+9ed5-9ed7,U+9ed9-9eda,U+9ede,U+9ee1,U+9ee3-9ee4,U+9ee6,U+9ee8,U+9eeb-9eee,U+9ef0-9ef8"}},{uri:qV,descriptors:{unicodeRange:"U+8b1c-8b25,U+8b27-8b65,U+8b67-8b6b,U+8b6d-8b9f,U+8bac,U+8bb1,U+8bbb,U+8bc7,U+8bd0"}},{uri:WV,descriptors:{unicodeRange:"U+4cad-4d2f"}},{uri:jV,descriptors:{unicodeRange:"U+9c4b-9c7b,U+9c7d-9c7e,U+9c80,U+9c83-9c84,U+9c89-9c8a,U+9c8c,U+9c8f,U+9c93,U+9c96-9c99,U+9c9d,U+9caa,U+9cac,U+9caf,U+9cb9,U+9cbe-9cc2,U+9cc8-9cc9,U+9cd1-9cd2,U+9cda-9cdb,U+9ce0-9ce1,U+9ce3-9d19"}},{uri:TV,descriptors:{unicodeRange:"U+9389-938e,U+9390-93c9,U+93cb-93d5,U+93d7-9410"}},{uri:zV,descriptors:{unicodeRange:"U+20a0-20b5,U+20b9-20ba,U+20bc-20bd,U+4e2c,U+5107,U+5216,U+5293,U+54f3,U+5523,U+5819,U+5adc,U+5c88,U+5e3b,U+5fee,U+62f6,U+63be,U+6484,U+6499,U+67d9,U+67dd,U+6d5e,U+6f46,U+717a,U+71e0,U+72c1,U+73e7,U+75b0,U+7603,U+7722,U+7809,U+7811,U+7946,U+7967,U+799a,U+7b45,U+7ba2,U+8014,U+80d9,U+8159,U+817d,U+81a3,U+81aa,U+8201,U+833c,U+836e,U+83e5,U+8459,U+84f0,U+8729,U+8753,U+87d3,U+89dc,U+8bf6,U+8c2e,U+8e2c,U+8e9c,U+8e9e,U+8ece,U+8fee,U+9139,U+914f,U+9174,U+9191,U+960c,U+9622,U+9a98,U+9b48,U+9ca6,U+9cb0,U+9da2-9e12,U+9e88,U+9f44,U+9f86"}},{uri:PV,descriptors:{unicodeRange:"U+9bd0-9c4a"}},{uri:OV,descriptors:{unicodeRange:"U+4c2d-4cac"}},{uri:VV,descriptors:{unicodeRange:"U+4d30-4dab"}},{uri:XV,descriptors:{unicodeRange:"U+9411-943d,U+943f-946a,U+946c-9484"}},{uri:_V,descriptors:{unicodeRange:"U+9efa,U+9efd,U+9eff-9f0a,U+9f0c,U+9f0f,U+9f11-9f12,U+9f14-9f16,U+9f18,U+9f1a-9f1f,U+9f21,U+9f23-9f2b,U+9f2d-9f2e,U+9f30-9f36,U+9f38,U+9f3a,U+9f3c,U+9f3f-9f43,U+9f45-9f4f,U+9f52-9f7e,U+9f81-9f82,U+9f8d-9f94"}},{uri:$V,descriptors:{unicodeRange:"U+7e2b-7e3a,U+7e3c-7e40,U+7e42-7e46,U+7e48-7e81,U+7e83-7e9a,U+7e9c-7e9e,U+7eae,U+7eb4,U+7ebb-7ebc,U+7ed6,U+7ee4,U+7eec,U+7ef9,U+7f0a,U+7f10,U+7f1e,U+7f37,U+7f39,U+7f3b"}}],SC=class eu{constructor(u){S(this,"scene"),S(this,"getSceneFamilies",()=>eu.getUniqueFamilies(this.scene.getNonDeletedElements())),S(this,"onLoaded",e=>{let C=!0;for(let E of e){let i=`${E.family}-${E.style}-${E.weight}-${E.unicodeRange}`;eu.loadedFontsCache.has(i)||(eu.loadedFontsCache.add(i),C=!1)}if(C)return;let B=!1,g=this.scene.getNonDeletedElementsMap();for(let E of this.scene.getNonDeletedElements())if(gA(E)){B=!0,pu.delete(E),VE.clearCache(Au(E));let i=_u(E,g);i&&pu.delete(i)}B&&this.scene.triggerUpdate()}),S(this,"loadSceneFonts",async()=>{let e=this.getSceneFamilies(),C=eu.getCharsPerFamily(this.scene.getNonDeletedElements());return eu.loadFontFaces(e,C)}),this.scene=u}static get registered(){return eu._registered?eu._initialized||(eu._registered=new Map([...eu.init().entries(),...eu._registered.entries()])):eu._registered=eu.init(),eu._registered}get registered(){return eu.registered}static async generateFontFaceDeclarations(u){let e=eu.getUniqueFamilies(u),C=eu.getCharsPerFamily(u),B=e.find(t=>Dl(t).includes(zB));if(B){let t=eu.getCharacters(C,B);if(mW(t)){let o=PB[zB];C[o]=new Set(t),e.unshift(PB[zB])}}let g=eu.fontFacesStylesGenerator(e,C),E=3,i=await new es(g,E).all();return Array.from(new Set(i))}static async loadFontFaces(u,e){for(let{fontFaces:g,metadata:E}of eu.registered.values())if(!E.local)for(let{fontFace:i}of g)window.document.fonts.has(i)||window.document.fonts.add(i);let C=eu.fontFacesLoader(u,e),B=10;return(await new es(C,B).all()).flat().filter(Boolean)}static*fontFacesLoader(u,e){for(let[C,B]of u.entries()){let g=Au({fontFamily:B,fontSize:16}),E=eu.getCharacters(e,B);window.document.fonts.check(g,E)||(yield og(async()=>{var i;try{let t=await window.document.fonts.load(g,E);return[C,t]}catch(t){console.error(`Failed to load font "${g}" from urls "${(i=eu.registered.get(B))==null?void 0:i.fontFaces.map(o=>o.urls)}"`,t)}}))}}static*fontFacesStylesGenerator(u,e){for(let[C,B]of u.entries()){let{fontFaces:g,metadata:E}=eu.registered.get(B)??{};if(!Array.isArray(g)){console.error(`Couldn't find registered fonts for font-family "${B}"`,eu.registered);continue}if(!(E!=null&&E.local))for(let[i,t]of g.entries())yield og(async()=>{try{let o=eu.getCharacters(e,B),I=await t.toCSS(o);return I?[C*1e4+i,I]:void 0}catch(o){console.error(`Couldn't transform font-face to css for family "${t.fontFace.family}"`,o)}})}}static register(u,e,...C){let B=wu[u]??PB[u];return this.registered.get(B)||this.registered.set(B,{metadata:e,fontFaces:C.map(({uri:g,descriptors:E})=>new LT(u,g,E))}),this.registered}static init(){let u={registered:new Map},e=(C,...B)=>{let g=wu[C]??PB[C],E=Ii[g]??Ii[wu.Excalifont];eu.register.call(u,C,E,...B)};return e("Cascadia",...NT),e("Comic Shanns",...YT),e("Excalifont",...TT),e("Helvetica",...zT),e("Liberation Sans",...OT),e("Lilita One",..._T),e("Nunito",...Bz),e("Virgil",...Ez),e(zB,...AX),e(mE,...HT),eu._initialized=!0,u.registered}static getUniqueFamilies(u){return Array.from(u.reduce((e,C)=>(gA(C)&&e.add(C.fontFamily),e),new Set))}static getCharsPerFamily(u){let e={};for(let C of u)if(gA(C))for(let B of C.originalText)e[C.fontFamily]||(e[C.fontFamily]=new Set),e[C.fontFamily].add(B);return e}static getCharacters(u,e){return u[e]?Array.from(u[e]).join(""):""}static getAllFamilies(){return Array.from(eu.registered.keys())}};S(SC,"loadedFontsCache",new Set),S(SC,"_registered"),S(SC,"_initialized",!1),S(SC,"loadElementsFonts",async A=>{let u=SC.getUniqueFamilies(A),e=SC.getCharsPerFamily(A);return SC.loadFontFaces(u,e)});var aC=SC,Q3=(A,u,e)=>{var t;let{unitsPerEm:C,ascender:B,descender:g}=((t=aC.registered.get(A))==null?void 0:t.metadata.metrics)||Ii[wu.Virgil].metrics,E=u/C,i=(e-E*B+E*g)/2;return E*B+i},yB=A=>{var e;let{lineHeight:u}=((e=aC.registered.get(A))==null?void 0:e.metadata.metrics)||Ii[wu.Excalifont].metrics;return u},o3=A=>{let{angle:u,width:e,height:C,x:B,y:g}=A,E=B+e/2,i=g+C/2,t=F(E,i),o;return A.type==="diamond"?o=Xr(j(F(E,g),t,u),j(F(B+e,i),t,u),j(F(E,g+C),t,u),j(F(B,i),t,u)):o=Xr(j(F(B,g),t,u),j(F(B+e,g),t,u),j(F(B+e,g+C),t,u),j(F(B,g+C),t,u)),{type:"polygon",data:o}},uX=(A,u,e=10)=>{let[C,B,g,E,i,t]=pA(A,u,!0);C-=e,g+=e,B-=e,E+=e;let o=F(i,t),I=j(F(C,B),o,A.angle),Q=j(F(g,B),o,A.angle),r=j(F(C,E),o,A.angle),s=j(F(g,E),o,A.angle);return{type:"polygon",data:[I,Q,s,r]}},eX=A=>{let{width:u,height:e,angle:C,x:B,y:g}=A;return{type:"ellipse",data:{center:F(B+u/2,g+e/2),angle:C,halfWidth:u/2,halfHeight:e/2}}},PC=A=>{if(!A)return[];for(let u of A.sets)if(u.type==="path")return u.ops;return A.sets[0].ops},CX=(A,u=F(0,0),e,C)=>{let B=t=>j(F(t[0]+u[0],t[1]+u[1]),C,e),g=PC(A),E=[],i=F(0,0);for(let t of g){if(t.op==="move"){let o=GQ(t.data);a0(o!=null,"Ops data is not a point"),i=B(o)}if(t.op==="bcurveTo"){let o=B(F(t.data[0],t.data[1])),I=B(F(t.data[2],t.data[3])),Q=B(F(t.data[4],t.data[5]));E.push(BC(i,o,I,Q)),i=Q}}return{type:"polycurve",data:E}},BX=A=>{let u=A[0],e=[];for(let C=1;C{let C=g=>j(MA(YC(rA(g),$u(A.x,A.y))),u,A.angle),B=BX(A.points.map(g=>C(g)));return e?{type:"polygon",data:ei(B.flat())}:{type:"polyline",data:B}},EX=(A,u,e=F(0,0),C,B)=>{let g=I=>j(F(I[0]+e[0],I[1]+e[1]),B,C);if(A.roundness===null)return{type:"polygon",data:ei(A.points.map(I=>g(I)))};let E=PC(u),i=[],t=!1;for(let I of E)I.op==="move"?(t=!t,t&&i.push(F(I.data[0],I.data[1]))):I.op==="bcurveTo"?t&&(i.push(F(I.data[0],I.data[1])),i.push(F(I.data[2],I.data[3])),i.push(F(I.data[4],I.data[5]))):I.op==="lineTo"&&t&&i.push(F(I.data[0],I.data[1]));let o=JZ(i,10,5).map(I=>g(I));return{type:"polygon",data:ei(o)}},IX=(A,u)=>{let{angle:e,halfWidth:C,halfHeight:B,center:g}=u,E=C,i=B,t=YC(rA(A),bu(rA(g),-1)),[o,I]=j(MA(t),F(0,0),-e),Q=Math.abs(o),r=Math.abs(I),s=.707,n=.707;for(let d=0;d<3;d++){let c=E*s,w=i*n,h=(E*E-i*i)*s**3/E,m=(i*i-E*E)*n**3/i,b=c-h,y=w-m,U=Q-h,G=r-m,N=Math.hypot(y,b),x=Math.hypot(G,U);s=Math.min(1,Math.max(0,(U*N/x+h)/E)),n=Math.min(1,Math.max(0,(G*N/x+m)/i));let R=Math.hypot(n,s);s/=R,n/=R}let[l,D]=[E*s*Math.sign(o),i*n*Math.sign(I)];return TA(F(o,I),F(l,D))},iX=(A,u,e=1e-4)=>IX(A,u)<=e,aX=(A,u)=>{let{center:e,angle:C,halfWidth:B,halfHeight:g}=u,E=YC(rA(A),bu(rA(e),-1)),[i,t]=j(MA(E),F(0,0),-C);return i/B*(i/B)+t/g*(t/g)<=1},Rt=(A,u,e=0)=>{switch(u.type){case"polygon":return Oq(A,u.data,e);case"ellipse":return iX(A,u.data,e);case"line":return hB(A,u.data,e);case"polyline":return s3(A,u.data,e);case"curve":return r3(A,u.data,e);case"polycurve":return tX(A,u.data,e);default:throw Error(`shape ${u} is not implemented`)}},ii=(A,u)=>{switch(u.type){case"polygon":return _r(A,u.data);case"line":return!1;case"curve":return!1;case"ellipse":return aX(A,u.data);case"polyline":{let e=ei(u.data.flat());return _r(A,e)}case"polycurve":return!1;default:throw Error(`shape ${u} is not implemented`)}},tX=(A,u,e)=>u.some(C=>r3(A,C,e)),QX=A=>{let[u,e,C,B]=A;return(g,E)=>Math.pow(1-g,3)*B[E]+3*g*Math.pow(1-g,2)*C[E]+3*Math.pow(g,2)*(1-g)*e[E]+u[E]*Math.pow(g,3)},oX=(A,u=10)=>{let e=QX(A),C=[e(0,0),e(0,1)],B=[],g=0,E=1/u;for(let i=0;is3(A,oX(u),e),s3=(A,u,e=1e-4)=>u.some(C=>hB(A,C,e));function n3(A,u,e){return{center:A,halfWidth:u,halfHeight:e}}var rX=(A,u)=>{let{halfWidth:e,halfHeight:C,center:B}=u,g=e,E=C,i=YC(rA(A),bu(rA(B),-1)),t=Math.abs(i[0]),o=Math.abs(i[1]),I=.707,Q=.707;for(let n=0;n<3;n++){let l=g*I,D=E*Q,d=(g*g-E*E)*I**3/g,c=(E*E-g*g)*Q**3/E,w=l-d,h=D-c,m=t-d,b=o-c,y=Math.hypot(h,w),U=Math.hypot(b,m);I=Math.min(1,Math.max(0,(m*y/U+d)/g)),Q=Math.min(1,Math.max(0,(b*y/U+c)/E));let G=Math.hypot(Q,I);I/=G,Q/=G}let[r,s]=[g*I*Math.sign(i[0]),E*Q*Math.sign(i[1])];return TA(MA(i),F(r,s))};function sX({center:A,halfWidth:u,halfHeight:e},[C,B]){let[g,E]=A,i=C[0]-g,t=C[1]-E,o=B[0]-g,I=B[1]-E,Q=Math.pow(o-i,2)/Math.pow(u,2)+Math.pow(I-t,2)/Math.pow(e,2),r=2*(i*(o-i)/Math.pow(u,2)+t*(I-t)/Math.pow(e,2)),s=Math.pow(i,2)/Math.pow(u,2)+Math.pow(t,2)/Math.pow(e,2)-1,n=(-r+Math.sqrt(Math.pow(r,2)-4*Q*s))/(2*Q),l=(-r-Math.sqrt(Math.pow(r,2)-4*Q*s))/(2*Q),D=[F(i+n*(o-i)+g,t+n*(I-t)+E),F(i+l*(o-i)+g,t+l*(I-t)+E)].filter(d=>!isNaN(d[0])&&!isNaN(d[1]));return D.length===2&&De(D[0],D[1])?[D[0]]:D}function l3(A,u=0){let e=se(Math.min(A.width,A.height),A);if(e<=0){let Q=yt(F(A.x-u,A.y-u),F(A.x+A.width+u,A.y+A.height+u)),r=nA(F(Q[0][0]+e,Q[0][1]),F(Q[1][0]-e,Q[0][1])),s=nA(F(Q[1][0],Q[0][1]+e),F(Q[1][0],Q[1][1]-e)),n=nA(F(Q[0][0]+e,Q[1][1]),F(Q[1][0]-e,Q[1][1])),l=nA(F(Q[0][0],Q[1][1]-e),F(Q[0][0],Q[0][1]+e));return[[r,s,n,l],[]]}let C=F(A.x+A.width/2,A.y+A.height/2),B=yt(F(A.x,A.y),F(A.x+A.width,A.y+A.height)),g=nA(F(B[0][0]+e,B[0][1]),F(B[1][0]-e,B[0][1])),E=nA(F(B[1][0],B[0][1]+e),F(B[1][0],B[1][1]-e)),i=nA(F(B[0][0]+e,B[1][1]),F(B[1][0]-e,B[1][1])),t=nA(F(B[0][0],B[1][1]-e),F(B[0][0],B[0][1]+e)),o=[bu(I0(rA(F(B[0][0]-u,B[0][1]-u),C)),u),bu(I0(rA(F(B[1][0]+u,B[0][1]-u),C)),u),bu(I0(rA(F(B[1][0]+u,B[1][1]+u),C)),u),bu(I0(rA(F(B[0][0]-u,B[1][1]+u),C)),u)],I=[BC(MA(o[0],t[1]),MA(o[0],F(t[1][0]+2/3*(B[0][0]-t[1][0]),t[1][1]+2/3*(B[0][1]-t[1][1]))),MA(o[0],F(g[0][0]+2/3*(B[0][0]-g[0][0]),g[0][1]+2/3*(B[0][1]-g[0][1]))),MA(o[0],g[0])),BC(MA(o[1],g[1]),MA(o[1],F(g[1][0]+2/3*(B[1][0]-g[1][0]),g[1][1]+2/3*(B[0][1]-g[1][1]))),MA(o[1],F(E[0][0]+2/3*(B[1][0]-E[0][0]),E[0][1]+2/3*(B[0][1]-E[0][1]))),MA(o[1],E[0])),BC(MA(o[2],E[1]),MA(o[2],F(E[1][0]+2/3*(B[1][0]-E[1][0]),E[1][1]+2/3*(B[1][1]-E[1][1]))),MA(o[2],F(i[1][0]+2/3*(B[1][0]-i[1][0]),i[1][1]+2/3*(B[1][1]-i[1][1]))),MA(o[2],i[1])),BC(MA(o[3],i[0]),MA(o[3],F(i[0][0]+2/3*(B[0][0]-i[0][0]),i[0][1]+2/3*(B[1][1]-i[0][1]))),MA(o[3],F(t[0][0]+2/3*(B[0][0]-t[0][0]),t[0][1]+2/3*(B[1][1]-t[0][1]))),MA(o[3],t[0]))];return[[nA(I[0][3],I[1][0]),nA(I[1][3],I[2][0]),nA(I[2][3],I[3][0]),nA(I[3][3],I[0][0])],I]}function D3(A,u=0){var w;let[e,C,B,g,E,i,t,o]=Y3(A),I=se(Math.abs(e-t),A),Q=se(Math.abs(g-C),A);if(((w=A.roundness)==null?void 0:w.type)==null){let[h,m,b,y]=[F(A.x+e,A.y+C-u),F(A.x+B+u,A.y+g),F(A.x+E,A.y+i+u),F(A.x+t-u,A.y+o)],U=nA(F(h[0]+I,h[1]+Q),F(m[0]-I,m[1]-Q)),G=nA(F(m[0]-I,m[1]+Q),F(b[0]+I,b[1]-Q)),N=nA(F(b[0]-I,b[1]-Q),F(y[0]+I,y[1]+Q)),x=nA(F(y[0]+I,y[1]-Q),F(h[0]-I,h[1]+Q));return[[U,G,N,x],[]]}let r=F(A.x+A.width/2,A.y+A.height/2),[s,n,l,D]=[F(A.x+e,A.y+C),F(A.x+B,A.y+g),F(A.x+E,A.y+i),F(A.x+t,A.y+o)],d=[bu(I0(rA(n,r)),u),bu(I0(rA(l,r)),u),bu(I0(rA(D,r)),u),bu(I0(rA(s,r)),u)],c=[BC(MA(d[0],F(n[0]-I,n[1]-Q)),MA(d[0],n),MA(d[0],n),MA(d[0],F(n[0]-I,n[1]+Q))),BC(MA(d[1],F(l[0]+I,l[1]-Q)),MA(d[1],l),MA(d[1],l),MA(d[1],F(l[0]-I,l[1]-Q))),BC(MA(d[2],F(D[0]+I,D[1]+Q)),MA(d[2],D),MA(d[2],D),MA(d[2],F(D[0]+I,D[1]-Q))),BC(MA(d[3],F(s[0]-I,s[1]+Q)),MA(d[3],s),MA(d[3],s),MA(d[3],F(s[0]+I,s[1]+Q)))];return[[nA(c[0][3],c[1][0]),nA(c[1][3],c[2][0]),nA(c[2][3],c[3][0]),nA(c[3][3],c[0][0])],c]}var Mt=A=>{if(A.type==="arrow")return!1;let u=!te(A.backgroundColor)||O0(A)||q0(A)||gA(A);return A.type==="line"||A.type==="freedraw"?u&&QC(A.points):u||jA(A)},TB=({x:A,y:u,element:e,shape:C,threshold:B=10,frameNameBound:g=null})=>{let E=Mt(e)&&ii(F(A,u),C)||Rt(F(A,u),C,B);return!E&&g&&(E=ii(F(A,u),{type:"polygon",data:o3(g).data})),E},qQ=(A,u,e,C,B=0)=>{let[g,E,i,t]=de(e,C);return g-=B,E-=B,i+=B,t+=B,ml(F(g,E),F(A,u),F(i,t))},nX=(A,u)=>!TB(A)&&!c3(A.x,A.y,w3(A.element,u))&&qQ(A.x,A.y,A.element,u),c3=(A,u,e)=>!!e&&ii(F(A,u),e),d3=(A,u,e=0)=>{switch(A.type){case"rectangle":case"image":case"text":case"iframe":case"embeddable":case"frame":case"magicframe":return lX(A,u,e);case"diamond":return DX(A,u,e);case"ellipse":return cX(A,u,e);default:throw new Error(`Unimplemented element type '${A.type}'`)}},lX=(A,u,e=0)=>{let C=F(A.x+A.width/2,A.y+A.height/2),B=j(u[0],C,-A.angle),g=j(u[1],C,-A.angle),[E,i]=l3(A,e);return[...E.map(t=>bE(nA(B,g),t)).filter(t=>t!=null).map(t=>j(t,C,A.angle)),...i.flatMap(t=>kl(t,nA(B,g))).filter(t=>t!=null).map(t=>j(t,C,A.angle))].filter((t,o,I)=>I.findIndex(Q=>De(t,Q))===o)},DX=(A,u,e=0)=>{let C=F(A.x+A.width/2,A.y+A.height/2),B=j(u[0],C,-A.angle),g=j(u[1],C,-A.angle),[E,i]=D3(A,e);return[...E.map(t=>bE(nA(B,g),t)).filter(t=>t!=null).map(t=>j(t,C,A.angle)),...i.flatMap(t=>kl(t,nA(B,g))).filter(t=>t!=null).map(t=>j(t,C,A.angle))].filter((t,o,I)=>I.findIndex(Q=>De(t,Q))===o)},cX=(A,u,e=0)=>{let C=F(A.x+A.width/2,A.y+A.height/2),B=j(u[0],C,-A.angle),g=j(u[1],C,-A.angle);return sX(n3(C,A.width/2+e,A.height/2+e),kt(B,g)).map(E=>j(E,C,A.angle))},JA={EQUAL:"Equal",MINUS:"Minus",NUM_ADD:"NumpadAdd",NUM_SUBTRACT:"NumpadSubtract",NUM_ZERO:"Numpad0",BRACKET_RIGHT:"BracketRight",BRACKET_LEFT:"BracketLeft",ONE:"Digit1",TWO:"Digit2",THREE:"Digit3",QUOTE:"Quote",ZERO:"Digit0",SLASH:"Slash",C:"KeyC",D:"KeyD",H:"KeyH",V:"KeyV",Z:"KeyZ",Y:"KeyY",R:"KeyR",S:"KeyS"},M={ARROW_DOWN:"ArrowDown",ARROW_LEFT:"ArrowLeft",ARROW_RIGHT:"ArrowRight",ARROW_UP:"ArrowUp",PAGE_UP:"PageUp",PAGE_DOWN:"PageDown",BACKSPACE:"Backspace",ALT:"Alt",CTRL_OR_CMD:Ye?"metaKey":"ctrlKey",DELETE:"Delete",ENTER:"Enter",ESCAPE:"Escape",QUESTION_MARK:"?",SPACE:" ",TAB:"Tab",CHEVRON_LEFT:"<",CHEVRON_RIGHT:">",PERIOD:".",COMMA:",",SLASH:"/",A:"a",D:"d",E:"e",F:"f",G:"g",H:"h",I:"i",L:"l",O:"o",P:"p",Q:"q",R:"r",S:"s",T:"t",V:"v",X:"x",Y:"y",Z:"z",K:"k",0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9"},dX=new Map([[M.Z,JA.Z],[M.Y,JA.Y]]),wX=A=>/^[a-z]$/.test(A.toLowerCase()),ft=(A,u)=>{if(u===A.key.toLowerCase())return!0;let e=dX.get(u);return!!(e&&!wX(A.key)&&A.code===e)},AE=A=>A===M.ARROW_LEFT||A===M.ARROW_RIGHT||A===M.ARROW_DOWN||A===M.ARROW_UP,Oa=A=>A.altKey,Wg=A=>A.shiftKey,rE=A=>A.shiftKey,WQ=[{icon:vW,value:"selection",key:M.V,numericKey:M[1],fillable:!0},{icon:ZW,value:"rectangle",key:M.R,numericKey:M[2],fillable:!0},{icon:qW,value:"diamond",key:M.D,numericKey:M[3],fillable:!0},{icon:WW,value:"ellipse",key:M.O,numericKey:M[4],fillable:!0},{icon:jW,value:"arrow",key:M.A,numericKey:M[5],fillable:!0},{icon:TW,value:"line",key:M.L,numericKey:M[6],fillable:!0},{icon:GE,value:"freedraw",key:[M.P,M.X],numericKey:M[7],fillable:!1},{icon:ql,value:"text",key:M.T,numericKey:M[8],fillable:!1},{icon:PW,value:"image",key:null,numericKey:M[9],fillable:!1},{icon:OW,value:"eraser",key:M.E,numericKey:M[0],fillable:!1}],hX=A=>{var u;return((u=WQ.find((e,C)=>e.numericKey!=null&&A===e.numericKey.toString()||e.key&&(typeof e.key=="string"?e.key===A:e.key.includes(A))))==null?void 0:u.value)||null},eC=(A,u)=>{var e;switch(A.type){case"rectangle":case"diamond":case"frame":case"magicframe":case"embeddable":case"image":case"iframe":case"text":case"selection":return o3(A);case"arrow":case"line":{let C=((e=pu.get(A))==null?void 0:e[0])??pu.generateElementShape(A,null)[0],[,,,,B,g]=pA(A,u);return Mt(A)?EX(A,C,F(A.x,A.y),A.angle,F(B,g)):CX(C,F(A.x,A.y),A.angle,F(B,g))}case"ellipse":return eX(A);case"freedraw":{let[,,,,C,B]=pA(A,u);return gX(A,F(C,B),Mt(A))}}},w3=(A,u)=>{let e=yA(A,u);return e?A.type==="arrow"?eC({...e,...IA.getBoundTextElementPosition(A,e,u)},u):eC(e,u):null},h3=(A,u)=>{let e=pu.generateElementShape(A,null);if(!e)return null;let C=PC(e[0]),B=F(0,0),g=0,E=1/0,i=null;for(;g{let g=(t,o)=>Math.pow(1-t,3)*C[o]+3*t*Math.pow(1-t,2)*e[o]+3*Math.pow(t,2)*(1-t)*u[o]+A[o]*Math.pow(t,3),E=g(B,0),i=g(B,1);return F(E,i)},FX=(A,u)=>{let e=h3(A,u);if(!e)return[];let C=[],B=1;for(;B>0;){let g=F3(e[0],e[1],e[2],e[3],B);C.push(F(g[0],g[1])),B-=.05}return C.length&&De(C.at(-1),u)&&C.push(F(u[0],u[1])),C},p3=(A,u)=>{let e=[];e[0]=0;let C=FX(A,u),B=0,g=0;for(;Bp3(A,u).at(-1),mX=(A,u,e)=>{let C=p3(A,u),B=C.length-1,g=C.at(-1),E=e*g,i=0,t=B,o=0;for(;iE&&o--,C[o]===E?o/B:1-(o+(E-C[o])/(C[o+1]-C[o]))/B},Se=(A,u)=>{let e={minX:A.x,minY:A.y,maxX:A.x+A.width,maxY:A.y+A.height,midX:A.x+A.width/2,midY:A.y+A.height/2},C=F(e.midX,e.midY),[B,g]=j(F(e.minX,e.minY),C,A.angle),[E,i]=j(F(e.maxX,e.minY),C,A.angle),[t,o]=j(F(e.maxX,e.maxY),C,A.angle),[I,Q]=j(F(e.minX,e.maxY),C,A.angle),r=[Math.min(B,E,t,I),Math.min(g,i,o,Q),Math.max(B,E,t,I),Math.max(g,i,o,Q)];if(u){let[s,n,l,D]=u;return[r[0]-D,r[1]-s,r[2]+n,r[3]+l]}return r},sg=(A,u)=>A[0]>u[0]&&A[0]u[1]&&A[1]{var e,C,B,g;if(((e=u.roundness)==null?void 0:e.type)===Ju.PROPORTIONAL_RADIUS||((C=u.roundness)==null?void 0:C.type)===Ju.LEGACY)return A*Ka;if(((B=u.roundness)==null?void 0:B.type)===Ju.ADAPTIVE_RADIUS){let E=((g=u.roundness)==null?void 0:g.value)??Sq,i=E/Ka;return A<=i?A*Ka:E}return 0},QC=(A,u=1)=>{if(A.length>=3){let[e,C]=[A[0],A[A.length-1]];return TA(e,C)<=GI/u}return!1},Pu=10,kX=(A,u,e,C,B,g,E)=>{var N,x;let{width:i,height:t}=oC(A),o=e/i,I=C/t,Q=(((N=A.crop)==null?void 0:N.x)??0)/o,r=(((x=A.crop)==null?void 0:x.y)??0)/I,s=j(F(B,g),F(A.x+A.width/2,A.y+A.height/2),-A.angle);B=s[0],g=s[1];let n=A.width,l=A.height,D=A.crop??{x:0,y:0,width:e,height:C,naturalWidth:e,naturalHeight:C},d=D.height,c=D.width,w=A.scale[0]===-1,h=A.scale[1]===-1,m=g-A.y,b=B-A.x;u.includes("n")&&(l=RA(A.height-m,Pu,h?t-r:A.height+r)),u.includes("s")&&(m=g-A.y-A.height,l=RA(A.height+m,Pu,h?A.height+r:t-r)),u.includes("e")&&(b=B-A.x-A.width,n=RA(A.width+b,Pu,w?A.width+Q:i-Q)),u.includes("w")&&(n=RA(A.width-b,Pu,w?i-Q:A.width+Q));let y=R=>{R.height=l*I,R.width=n*o};y(D);let U=(R,Y)=>{y(Y),R.includes("n")&&(h||(Y.y+=d-Y.height)),R.includes("s")&&h&&(Y.y+=d-Y.height),R.includes("e")&&w&&(Y.x+=c-Y.width),R.includes("w")&&(w||(Y.x+=c-Y.width))};switch(u){case"n":{if(E){let R=Q+A.width/2,Y=i-Q-A.width/2,q=Math.min(R,Y)*2;n=RA(l*E,Pu,q),l=n/E}U(u,D),E&&(D.x+=(c-D.width)/2);break}case"s":{if(E){let R=Q+A.width/2,Y=i-Q-A.width/2,q=Math.min(R,Y)*2;n=RA(l*E,Pu,q),l=n/E}U(u,D),E&&(D.x+=(c-D.width)/2);break}case"w":{if(E){let R=r+A.height/2,Y=t-r-A.height/2,q=Math.min(R,Y)*2;l=RA(n/E,Pu,q),n=l*E}U(u,D),E&&(D.y+=(d-D.height)/2);break}case"e":{if(E){let R=r+A.height/2,Y=t-r-A.height/2,q=Math.min(R,Y)*2;l=RA(n/E,Pu,q),n=l*E}U(u,D),E&&(D.y+=(d-D.height)/2);break}case"ne":{if(E)if(b>-m){let R=h?t-r:r+A.height;l=RA(n/E,Pu,R),n=l*E}else{let R=w?Q+A.width:i-Q;n=RA(l*E,Pu,R),l=n/E}U(u,D);break}case"nw":{if(E)if(bm){let R=h?r+A.height:t-r;l=RA(n/E,Pu,R),n=l*E}else{let R=w?Q+A.width:i-Q;n=RA(l*E,Pu,R),l=n/E}U(u,D);break}case"sw":{if(E)if(-b>m){let R=h?r+A.height:t-r;l=RA(n/E,Pu,R),n=l*E}else{let R=w?i-Q:Q+A.width;n=RA(l*E,Pu,R),l=n/E}U(u,D);break}}let G=yX(A,u,n,l,!!E);return Pr(D.width,D.naturalWidth)&&Pr(D.height,D.naturalHeight)&&(D=null),{x:G[0],y:G[1],width:n,height:l,crop:D}},yX=(A,u,e,C,B)=>{let[g,E,i,t]=JC(A,A.width,A.height,!0),o=F(g,E),I=F(i,t),Q=zE(o,I),[r,s,n,l]=JC(A,e,C,!0),D=n-r,d=l-s,c=[...o];if(["n","w","nw"].includes(u)&&(c=[I[0]-Math.abs(D),I[1]-Math.abs(d)]),u==="ne"){let U=[o[0],I[1]];c=[U[0],U[1]-Math.abs(d)]}if(u==="sw"){let U=[I[0],o[1]];c=[U[0]-Math.abs(D),U[1]]}B&&(["s","n"].includes(u)&&(c[0]=Q[0]-D/2),["e","w"].includes(u)&&(c[1]=Q[1]-d/2));let w=A.angle,h=j(c,Q,w),m=[c[0]+Math.abs(D)/2,c[1]+Math.abs(d)/2],b=j(m,Q,w);c=j(h,b,-w);let y=[...c];return y[0]+=A.x-r,y[1]+=A.y-s,y},bX=(A,u)=>{if(A.crop){let{width:e,height:C}=oC(A),[B,g,E,i,t,o]=pA(A,u),I=rA(j(F(B,g),F(t,o),A.angle)),Q=rA(j(F(E,g),F(t,o),A.angle)),r=I0(Ai(Q,I)),s=rA(j(F(B,i),F(t,o),A.angle)),n=Ai(s,I),l=I0(n),{cropX:D,cropY:d}=GX(A.crop,A.scale),c=YC(YC(I,bu(r,-D*e/A.crop.naturalWidth)),bu(l,-d*C/A.crop.naturalHeight)),w=MA(YC(YC(c,bu(r,e/2)),bu(l,C/2))),h=j(MA(c),w,-A.angle);return{...A,x:h[0],y:h[1],width:e,height:C,crop:null}}return A},oC=A=>{if(A.crop){let u=A.width/(A.crop.width/A.crop.naturalWidth),e=A.height/(A.crop.height/A.crop.naturalHeight);return{width:u,height:e}}return{width:A.width,height:A.height}},GX=(A,u)=>{let e=A.x,C=A.y,B=u[0]===-1,g=u[1]===-1;return B&&(e=A.naturalWidth-Math.abs(e)-A.width),g&&(C=A.naturalHeight-Math.abs(C)-A.height),{cropX:e,cropY:C}},UX=(A,u=!1)=>{let e=A.crop;if(!e)return null;let C=A.scale[0]===-1,B=A.scale[1]===-1,g=e.x,E=e.y;if(C&&(g=e.naturalWidth-e.width-e.x),B&&(E=e.naturalHeight-e.height-e.y),u)return{x:g,y:E};let{width:i,height:t}=oC(A);return{x:g/(e.naturalWidth/i),y:E/(e.naturalHeight/t)}},m3="invert(100%) hue-rotate(180deg) saturate(1.25)",LX=He(),k3=(A,u)=>Z0(A)&&!u.imageCache.has(A.fileId),y3=(A,u,e)=>{var C;return e.theme===fA.DARK&&Z0(A)&&!k3(A,u)&&((C=u.imageCache.get(A.fileId))==null?void 0:C.mimeType)!==cA.svg},Wi=A=>{switch(A.type){case"freedraw":return A.strokeWidth*12;case"text":return A.fontSize/2;default:return 20}},b3=(A,u,e,C,B=1)=>{let g=((u==null?void 0:u.opacity)??100)*A.opacity/1e4*B;return(e.has(A.id)||C&&C.some(E=>E.id===A.id)||u&&e.has(u.id))&&(g*=Nq/100),g},xX=(A,u,e)=>{let C=Wi(A),[B,g,E,i]=pA(A,u),t=FA(A)||P0(A)?g0(B,E):A.width,o=FA(A)||P0(A)?g0(g,i):A.height,I=t*window.devicePixelRatio+C*2,Q=o*window.devicePixelRatio+C*2,r=e.value;return(I*r>32767||Q*r>32767)&&(r=Math.min(32767/I,32767/Q)),I*Q*r*r>16777216&&(r=Math.sqrt(16777216/(I*Q))),I=Math.floor(I*r),Q=Math.floor(Q*r),{width:I,height:Q,scale:r}},G3=(A,u,e,C,B)=>{var d,c;let g=document.createElement("canvas"),E=g.getContext("2d"),i=Wi(A),{width:t,height:o,scale:I}=xX(A,u,e);if(!t||!o)return null;g.width=t,g.height=o;let Q=-100,r=0;if(FA(A)||P0(A)){let[w,h]=pA(A,u);Q=A.x>w?g0(A.x,w)*window.devicePixelRatio*I:0,r=A.y>h?g0(A.y,h)*window.devicePixelRatio*I:0,E.translate(Q,r)}E.save(),E.translate(i*I,i*I),E.scale(window.devicePixelRatio*I,window.devicePixelRatio*I);let s=TC.canvas(g);y3(A,C,B)&&(E.filter=m3),RI(A,s,E,C),E.restore();let n=yA(A,u),l=document.createElement("canvas"),D=l.getContext("2d");if(UA(A)&&n){let[w,h,m,b]=pA(A,u),y=Math.max(g0(w,m),g0(h,b));l.width=y*window.devicePixelRatio*I+i*I*10,l.height=y*window.devicePixelRatio*I+i*I*10,D.translate(l.width/2,l.height/2),D.rotate(A.angle),D.drawImage(g,-g.width/2,-g.height/2,g.width,g.height);let[,,,,U,G]=pA(n,u);D.rotate(-A.angle);let N=(l.width-g.width)/2,x=(l.height-g.height)/2,R=l.width/2-(U-w)*window.devicePixelRatio*I-N-i*I,Y=l.height/2-(G-h)*window.devicePixelRatio*I-x-i*I;D.translate(-R,-Y),D.clearRect(-(n.width/2+Ku)*window.devicePixelRatio*I,-(n.height/2+Ku)*window.devicePixelRatio*I,(n.width+Ku*2)*window.devicePixelRatio*I,(n.height+Ku*2)*window.devicePixelRatio*I)}return{element:A,canvas:g,theme:B.theme,scale:I,zoomValue:e.value,canvasOffsetX:Q,canvasOffsetY:r,boundTextElementVersion:((d=yA(A,u))==null?void 0:d.version)||null,containingFrameOpacity:((c=L0(A,u))==null?void 0:c.opacity)||100,boundTextCanvas:l,angle:A.angle,imageCrop:jA(A)?A.crop:null}},NX=14,U3=document.createElement("img");U3.src=`data:${cA.svg},${encodeURIComponent('')}`;var L3=document.createElement("img");L3.src=`data:${cA.svg},${encodeURIComponent('')}`;var SX=(A,u)=>{u.fillStyle="#E7E7E7",u.fillRect(0,0,A.width,A.height);let e=Math.min(A.width,A.height),C=Math.min(e,Math.min(e*.4,100));u.drawImage(A.status==="error"?L3:U3,A.width/2-C/2,A.height/2-C/2,C,C)},RI=(A,u,e,C,B)=>{var g;switch(A.type){case"rectangle":case"iframe":case"embeddable":case"diamond":case"ellipse":{e.lineJoin="round",e.lineCap="round",u.draw(pu.get(A));break}case"arrow":case"line":{e.lineJoin="round",e.lineCap="round",pu.get(A).forEach(E=>{u.draw(E)});break}case"freedraw":{e.save(),e.fillStyle=A.strokeColor;let E=fX(A),i=pu.get(A);i&&u.draw(i),e.fillStyle=A.strokeColor,e.fill(E),e.restore();break}case"image":{let E=Z0(A)?(g=C.imageCache.get(A.fileId))==null?void 0:g.image:void 0;if(E!=null&&!(E instanceof Promise)){A.roundness&&e.roundRect&&(e.beginPath(),e.roundRect(0,0,A.width,A.height,se(Math.min(A.width,A.height),A)),e.clip());let{x:i,y:t,width:o,height:I}=A.crop?A.crop:{x:0,y:0,width:E.naturalWidth,height:E.naturalHeight};e.drawImage(E,i,t,o,I,0,0,A.width,A.height)}else SX(A,e);break}default:if(gA(A)){let E=Gl(A.text),i=E&&!e.canvas.isConnected;i&&document.body.appendChild(e.canvas),e.canvas.setAttribute("dir",E?"rtl":"ltr"),e.save(),e.font=Au(A),e.fillStyle=A.strokeColor,e.textAlign=A.textAlign;let t=A.text.replace(/\r\n?/g,` +`).split(` +`),o=A.textAlign==="center"?A.width/2:A.textAlign==="right"?A.width:0,I=OE(A.fontSize,A.lineHeight),Q=Q3(A.fontFamily,A.fontSize,I);for(let r=0;r{var Q;let B=e?C.zoom:LX.zoom,g=Yt.get(A),E=g&&g.zoomValue!==B.value&&!(C!=null&&C.shouldCacheIgnoreZoom),i=yA(A,u),t=(i==null?void 0:i.version)||null,o=jA(A)?A.crop:null,I=((Q=L0(A,u))==null?void 0:Q.opacity)||100;if(!g||E||g.theme!==C.theme||g.boundTextElementVersion!==t||g.imageCrop!==o||g.containingFrameOpacity!==I||UA(A)&&i&&A.angle!==g.angle){let r=G3(A,u,B,e,C);return r?(Yt.set(A,r),r):null}return g},Va=(A,u,e,C,B)=>{let g=A.element,E=Wi(g),i=A.scale,[t,o,I,Q]=pA(g,B),r=((t+I)/2+C.scrollX)*window.devicePixelRatio,s=((o+Q)/2+C.scrollY)*window.devicePixelRatio;u.save(),u.scale(1/window.devicePixelRatio,1/window.devicePixelRatio);let n=yA(g,B);if(UA(g)&&n){let l=(A.boundTextCanvas.width-A.canvas.width)/2,D=(A.boundTextCanvas.height-A.canvas.height)/2;u.translate(r,s),u.drawImage(A.boundTextCanvas,-(I-t)/2*window.devicePixelRatio-l/i-E,-(Q-o)/2*window.devicePixelRatio-D/i-E,A.boundTextCanvas.width/i,A.boundTextCanvas.height/i)}else u.translate(r,s),u.rotate(g.angle),"scale"in A.element&&!k3(g,e)&&u.scale(A.element.scale[0],A.element.scale[1]),u.translate(-r,-s),u.drawImage(A.canvas,(t+C.scrollX)*window.devicePixelRatio-E*A.scale/A.scale,(o+C.scrollY)*window.devicePixelRatio-E*A.scale/A.scale,A.canvas.width/A.scale,A.canvas.height/A.scale),bA.VITE_APP_DEBUG_ENABLE_TEXT_CONTAINER_BOUNDING_BOX;u.restore()},RX=(A,u,e,C)=>{u.save(),u.translate(A.x+e.scrollX,A.y+e.scrollY),u.fillStyle="rgba(0, 0, 200, 0.04)";let B=.5/e.zoom.value;u.fillRect(B,B,A.width,A.height),u.lineWidth=1/e.zoom.value,u.strokeStyle=C,u.strokeRect(B,B,A.width,A.height),u.restore()},CB=(A,u,e,C,B,g,E)=>{var t;let i=((t=E.openDialog)==null?void 0:t.name)==="elementLinkSelector"&&!E.selectedElementIds[A.id]&&!E.hoveredElementIds[A.id];switch(B.globalAlpha=b3(A,L0(A,u),g.elementsPendingErasure,g.pendingFlowchartNodes,i?Fl:1),A.type){case"magicframe":case"frame":{E.frameRendering.enabled&&E.frameRendering.outline&&(B.save(),B.translate(A.x+E.scrollX,A.y+E.scrollY),B.fillStyle="rgba(0, 0, 200, 0.04)",B.lineWidth=hu.strokeWidth/E.zoom.value,B.strokeStyle=hu.strokeColor,xI(A)&&(B.strokeStyle=E.theme===fA.LIGHT?"#7affd7":"#1d8264"),B.roundRect?(B.beginPath(),B.roundRect(0,0,A.width,A.height,hu.radius/E.zoom.value),B.stroke(),B.closePath()):B.strokeRect(0,0,A.width,A.height),B.restore());break}case"freedraw":{if(pu.generateElementShape(A,null),g.isExporting){let[o,I,Q,r]=pA(A,u),s=(o+Q)/2+E.scrollX,n=(I+r)/2+E.scrollY,l=(Q-o)/2-(A.x-o),D=(r-I)/2-(A.y-I);B.save(),B.translate(s,n),B.rotate(A.angle),B.translate(-l,-D),RI(A,C,B,g),B.restore()}else{let o=ks(A,e,g,E);if(!o)return;Va(o,B,g,E,e)}break}case"rectangle":case"diamond":case"ellipse":case"line":case"arrow":case"image":case"text":case"iframe":case"embeddable":{if(pu.generateElementShape(A,g),g.isExporting){let[o,I,Q,r]=pA(A,u),s=(o+Q)/2+E.scrollX,n=(I+r)/2+E.scrollY,l=(Q-o)/2-(A.x-o),D=(r-I)/2-(A.y-I);if(gA(A)){let c=_u(A,u);if(UA(c)){let w=IA.getBoundTextElementPosition(c,A,u);l=(Q-o)/2-(w.x-o),D=(r-I)/2-(w.y-I)}}B.save(),B.translate(s,n),y3(A,g,E)&&(B.filter="none");let d=yA(A,u);if(UA(A)&&d){let c=document.createElement("canvas"),w=c.getContext("2d"),h=Math.max(g0(o,Q),g0(I,r)),m=Wi(A);c.width=h*E.exportScale+m*10*E.exportScale,c.height=h*E.exportScale+m*10*E.exportScale,w.translate(c.width/2,c.height/2),w.scale(E.exportScale,E.exportScale),l=A.width/2-(A.x-o),D=A.height/2-(A.y-I),w.rotate(A.angle);let b=TC.canvas(c);w.translate(-l,-D),RI(A,b,w,g),w.translate(l,D),w.rotate(-A.angle);let[,,,,y,U]=pA(d,u),G=(o+Q)/2-y,N=(I+r)/2-U;w.translate(-G,-N),w.clearRect(-d.width/2,-d.height/2,d.width,d.height),B.scale(1/E.exportScale,1/E.exportScale),B.drawImage(c,-c.width/2,-c.height/2,c.width,c.height)}else B.rotate(A.angle),A.type==="image"&&B.scale(A.scale[0],A.scale[1]),B.translate(-l,-D),RI(A,C,B,g);B.restore()}else{let o=ks(A,e,g,E);if(!o)return;let I=B.imageSmoothingEnabled;if(!(E!=null&&E.shouldCacheIgnoreZoom)&&(!A.angle||Jq(A.angle))&&(B.imageSmoothingEnabled=!1),A.id===E.croppingElementId&&jA(o.element)&&o.element.crop!==null){B.save(),B.globalAlpha=.1;let Q=G3(bX(o.element,u),e,E.zoom,g,E);Q&&Va(Q,B,g,E,e),B.restore()}Va(o,B,g,E,e),B.imageSmoothingEnabled=I}break}default:throw new Error(`Unimplemented type ${A.type}`)}B.globalAlpha=1},x3=new WeakMap([]);function MX(A){let u=N3(A),e=new Path2D(u);return x3.set(A,e),e}function fX(A){return x3.get(A)}function N3(A){let u=A.simulatePressure?A.points:A.points.length?A.points.map(([C,B],g)=>[C,B,A.pressures[g]]):[[0,0,.5]],e={simulatePressure:A.simulatePressure,size:A.strokeWidth*4.25,thinning:.6,smoothing:.5,streamline:.5,easing:C=>Math.sin(C*Math.PI/2),last:!!A.lastCommittedPoint};return HX(HZ(u,e))}function ys(A,u){return[(A[0]+u[0])/2,(A[1]+u[1])/2]}var YX=/(\s?[A-Z]?,?-?[0-9]*\.[0-9]{0,2})(([0-9]|e|-)*)/g;function HX(A){if(!A.length)return"";let u=A.length-1;return A.reduce((e,C,B,g)=>(B===u?e.push(C,ys(C,g[0]),"L",g[0],"Z"):e.push(C,ys(C,g[B+1])),e),["M",A[0],"Q"]).join(" ").replace(YX,"$1")}var ng=A=>A==="rectangle"||A==="iframe"||A==="embeddable"||A==="ellipse"||A==="diamond"||A==="line"||A==="freedraw",Ht=A=>A!=="image"&&A!=="frame"&&A!=="magicframe",bs=A=>A==="rectangle"||A==="iframe"||A==="embeddable"||A==="ellipse"||A==="diamond"||A==="freedraw"||A==="arrow"||A==="line",Gs=A=>A==="rectangle"||A==="iframe"||A==="embeddable"||A==="ellipse"||A==="diamond"||A==="arrow"||A==="line",Kt=A=>A==="rectangle"||A==="iframe"||A==="embeddable"||A==="line"||A==="diamond"||A==="image",Us=A=>A==="arrow",ai=A=>A==="arrow",yu=[1,0],Vu=[0,1],y0=[-1,0],b0=[0,-1],cI=(A,u)=>{let e=TE(Math.atan2(u[1]-A[1],u[0]-A[0]));return e>=315||e<45?b0:e>=45&&e<135?yu:e>=135&&e<225?Vu:y0},bB=A=>{let[u,e]=A,C=Math.abs(u),B=Math.abs(e);return u>B?yu:u<=-B?y0:e>C?Vu:b0},UE=(A,u)=>bB(rA(A,u)),CC=(A,u)=>gC(UE(A,u)),Gu=(A,u)=>A[0]===u[0]&&A[1]===u[1],gC=A=>Gu(A,yu)||Gu(A,y0),S3=(A,u,e)=>{let C=zQ(u);if(A.type==="diamond"){if(e[0]A.x+A.width)return yu;if(e[1]>A.y+A.height)return Vu;let t=j($e(F(A.x+A.width/2,A.y),C,2),C,A.angle),o=j($e(F(A.x+A.width,A.y+A.height/2),C,2),C,A.angle),I=j($e(F(A.x+A.width/2,A.y+A.height),C,2),C,A.angle),Q=j($e(F(A.x,A.y+A.height/2),C,2),C,A.angle);return JB([t,o,C],e)?cI(t,o):JB([o,I,C],e)?cI(o,I):JB([I,Q,C],e)?cI(I,Q):cI(Q,t)}let B=$e(F(u[0],u[1]),C,2),g=$e(F(u[2],u[1]),C,2),E=$e(F(u[0],u[3]),C,2),i=$e(F(u[2],u[3]),C,2);return JB([B,g,C],e)?b0:JB([g,i,C],e)?yu:JB([i,E,C],e)?Vu:y0},R3=A=>[A[0]===0?0:A[0]>0?-1:1,A[1]===0?0:A[1]>0?-1:1],KX=A=>[8,8+A],M3=A=>[1.5,6+A];function JX(A){let u=A.roughness,e=Math.max(A.width,A.height),C=Math.min(A.width,A.height);return C>=20&&e>=50||C>=15&&A.roundness&&Kt(A.type)||FA(A)&&e>=50?u:Math.min(u/(e<10?3:2),2.5)}var S0=(A,u=!1)=>{let e={seed:A.seed,strokeLineDash:A.strokeStyle==="dashed"?KX(A.strokeWidth):A.strokeStyle==="dotted"?M3(A.strokeWidth):void 0,disableMultiStroke:A.strokeStyle!=="solid",strokeWidth:A.strokeStyle!=="solid"?A.strokeWidth+.5:A.strokeWidth,fillWeight:A.strokeWidth/2,hachureGap:A.strokeWidth*4,roughness:JX(A),stroke:A.strokeColor,preserveVertices:u||A.roughnessq0(A)&&(u||m0(A)&&(e==null?void 0:e.get(A.id))!==!0)&&te(A.backgroundColor)&&te(A.strokeColor)?{...A,roughness:0,backgroundColor:"#d3d3d3",fillStyle:"solid"}:MC(A)?{...A,strokeColor:te(A.strokeColor)?"#000000":A.strokeColor,backgroundColor:te(A.backgroundColor)?"#f4f4f6":A.backgroundColor}:A,xs=(A,u,e,C,B,g,E)=>{let i=Ms(A,u,e,C);if(i===null)return[];let t=(o,I)=>{if(o===null)return[];let[,,Q,r,s,n]=o;return[B.line(Q,r,s,n,I)]};switch(C){case"dot":case"circle":case"circle_outline":{let[o,I,Q]=i;return delete g.strokeLineDash,[B.circle(o,I,Q,{...g,fill:C==="circle_outline"?E:A.strokeColor,fillStyle:"solid",stroke:A.strokeColor,roughness:Math.min(.5,g.roughness||0)})]}case"triangle":case"triangle_outline":{let[o,I,Q,r,s,n]=i;return delete g.strokeLineDash,[B.polygon([[o,I],[Q,r],[s,n],[o,I]],{...g,fill:C==="triangle_outline"?E:A.strokeColor,fillStyle:"solid",roughness:Math.min(1,g.roughness||0)})]}case"diamond":case"diamond_outline":{let[o,I,Q,r,s,n,l,D]=i;return delete g.strokeLineDash,[B.polygon([[o,I],[Q,r],[s,n],[l,D],[o,I]],{...g,fill:C==="diamond_outline"?E:A.strokeColor,fillStyle:"solid",roughness:Math.min(1,g.roughness||0)})]}case"crowfoot_one":return t(i,g);case"bar":case"arrow":case"crowfoot_many":case"crowfoot_one_or_many":default:{let[o,I,Q,r,s,n]=i;if(A.strokeStyle==="dotted"){let l=M3(A.strokeWidth-1);g.strokeLineDash=[l[0],l[1]-1]}else delete g.strokeLineDash;return g.roughness=Math.min(1,g.roughness||0),[B.line(Q,r,o,I,g),B.line(s,n,o,I,g),...C==="crowfoot_one_or_many"?t(Ms(A,u,e,"crowfoot_one"),g):[]]}}},vX=(A,u,{isExporting:e,canvasBackgroundColor:C,embedsValidationStatus:B})=>{switch(A.type){case"rectangle":case"iframe":case"embeddable":{let g;if(A.roundness){let E=A.width,i=A.height,t=se(Math.min(E,i),A);g=u.path(`M ${t} 0 L ${E-t} 0 Q ${E} 0, ${E} ${t} L ${E} ${i-t} Q ${E} ${i}, ${E-t} ${i} L ${t} ${i} Q 0 ${i}, 0 ${i-t} L 0 ${t} Q 0 0, ${t} 0`,S0(Ls(A,e,B),!0))}else g=u.rectangle(0,0,A.width,A.height,S0(Ls(A,e,B),!1));return g}case"diamond":{let g,[E,i,t,o,I,Q,r,s]=Y3(A);if(A.roundness){let n=se(Math.abs(E-r),A),l=se(Math.abs(o-i),A);g=u.path(`M ${E+n} ${i+l} L ${t-n} ${o-l} + C ${t} ${o}, ${t} ${o}, ${t-n} ${o+l} + L ${I+n} ${Q-l} + C ${I} ${Q}, ${I} ${Q}, ${I-n} ${Q-l} + L ${r+n} ${s+l} + C ${r} ${s}, ${r} ${s}, ${r+n} ${s-l} + L ${E-n} ${i+l} + C ${E} ${i}, ${E} ${i}, ${E+n} ${i+l}`,S0(A,!0))}else g=u.polygon([[E,i],[t,o],[I,Q],[r,s]],S0(A));return g}case"ellipse":return u.ellipse(A.width/2,A.height/2,A.width,A.height,S0(A));case"line":case"arrow":{let g,E=S0(A),i=A.points.length?A.points:[F(0,0)];if(iA(A)?i.every(t=>Math.abs(t[0])<=1e6&&Math.abs(t[1])<=1e6)?g=[u.path(ZX(i,16),S0(A,!0))]:(console.error("Elbow arrow with extreme point positions detected. Arrow not rendered.",A.id,JSON.stringify(i)),g=[]):A.roundness?g=[u.curve(i,E)]:E.fill?g=[u.polygon(i,E)]:g=[u.linearPath(i,E)],A.type==="arrow"){let{startArrowhead:t=null,endArrowhead:o="arrow"}=A;if(t!==null){let I=xs(A,g,"start",t,u,E,C);g.push(...I)}if(o!==null){let I=xs(A,g,"end",o,u,E,C);g.push(...I)}}return g}case"freedraw":{let g;if(MX(A),QC(A.points)){let E=MZ(A.points,.75);g=u.curve(E,{...S0(A),stroke:"none"})}else g=null;return g}case"frame":case"magicframe":case"text":case"image":return null;default:return FB(A,`generateElementShape(): Unimplemented type ${A==null?void 0:A.type}`),null}},ZX=(A,u)=>{let e=[];for(let B=1;B{let u=A.map(C=>C[0]),e=A.map(C=>C[1]);return{width:Math.max(...u)-Math.min(...u),height:Math.max(...e)-Math.min(...e)}},ti=(A,u,e,C)=>{let B=e.map(r=>r[A]),g=Math.max(...B),E=Math.min(...B),i=g-E,t=i===0?1:u/i,o=1/0,I=e.map(r=>{let s=r[A]*t,n=[...r];return n[A]=s,sr.map((s,n)=>n===A?s+Q:s))},f3=class MI{static getBounds(u,e){let C=MI.boundsCache.get(u);if(C!=null&&C.version&&C.version===u.version&&!nu(u))return C.bounds;let B=MI.calculateBounds(u,e);return MI.boundsCache.set(u,{version:u.version,bounds:B}),B}static calculateBounds(u,e){let C,[B,g,E,i,t,o]=pA(u,e);if(P0(u)){let[I,Q,r,s]=jQ(u.points.map(([n,l])=>j(F(n,l),F(t-u.x,o-u.y),u.angle)));return[I+u.x,Q+u.y,r+u.x,s+u.y]}else if(FA(u))C=OX(u,t,o,e);else if(u.type==="diamond"){let[I,Q]=j(F(t,g),F(t,o),u.angle),[r,s]=j(F(t,i),F(t,o),u.angle),[n,l]=j(F(B,o),F(t,o),u.angle),[D,d]=j(F(E,o),F(t,o),u.angle),c=Math.min(I,r,n,D),w=Math.min(Q,s,l,d),h=Math.max(I,r,n,D),m=Math.max(Q,s,l,d);C=[c,w,h,m]}else if(u.type==="ellipse"){let I=(E-B)/2,Q=(i-g)/2,r=Math.cos(u.angle),s=Math.sin(u.angle),n=Math.hypot(I*r,Q*s),l=Math.hypot(Q*r,I*s);C=[t-n,o-l,t+n,o+l]}else{let[I,Q]=j(F(B,g),F(t,o),u.angle),[r,s]=j(F(B,i),F(t,o),u.angle),[n,l]=j(F(E,i),F(t,o),u.angle),[D,d]=j(F(E,g),F(t,o),u.angle),c=Math.min(I,r,n,D),w=Math.min(Q,s,l,d),h=Math.max(I,r,n,D),m=Math.max(Q,s,l,d);C=[c,w,h,m]}return C}};S(f3,"boundsCache",new WeakMap);var qX=f3,pA=(A,u,e=!1)=>{if(P0(A))return jX(A);if(FA(A))return IA.getElementAbsoluteCoords(A,u,e);if(gA(A)){let C=u?_u(A,u):null;if(UA(C)){let{x:B,y:g}=IA.getBoundTextElementPosition(C,A,u);return[B,g,B+A.width,g+A.height,B+A.width/2,g+A.height/2]}}return[A.x,A.y,A.x+A.width,A.y+A.height,A.x+A.width/2,A.y+A.height/2]},Ns=(A,u)=>{let[e,C,B,g,E,i]=pA(A,u),t=F(E,i);if(FA(A)||P0(A)){let d=[],c=0;for(;cj(d,t,A.angle));return A.type==="diamond"?[nA(s,l),nA(s,D),nA(n,l),nA(n,D)]:A.type==="ellipse"?[nA(s,l),nA(s,D),nA(n,l),nA(n,D),nA(s,l),nA(s,D),nA(n,l),nA(n,D)]:[nA(o,I),nA(Q,r),nA(o,Q),nA(I,r),nA(o,D),nA(Q,D),nA(I,l),nA(r,l)]},Y3=A=>{let u=Math.floor(A.width/2)+1,e=0,C=A.width,B=Math.floor(A.height/2)+1,g=u,E=A.height;return[u,e,C,B,g,E,0,B]},Ss=(A,u,e,C,B)=>{let g=1-A;return Math.pow(g,3)*u+3*Math.pow(g,2)*A*e+3*g*Math.pow(A,2)*C+Math.pow(A,3)*B},Rs=(A,u,e,C)=>{let B=u-A,g=e-u,E=C-e,i=3*B-6*g+3*E,t=6*g-6*B,o=3*B,I=t*t-4*i*o;if(!(I>=0))return!1;let Q=null,r=null,s=1/0,n=1/0;return i===0?s=n=-o/t:(s=(-t+Math.sqrt(I))/(2*i),n=(-t-Math.sqrt(I))/(2*i)),s>=0&&s<=1&&(Q=Ss(s,A,u,e,C)),n>=0&&n<=1&&(r=Ss(n,A,u,e,C)),[Q,r]},WX=(A,u,e,C)=>{let B=Rs(A[0],u[0],e[0],C[0]),g=Rs(A[1],u[1],e[1],C[1]),E=Math.min(A[0],C[0]),i=Math.max(A[0],C[0]);if(B){let I=B.filter(Q=>Q!==null);E=Math.min(E,...I),i=Math.max(i,...I)}let t=Math.min(A[1],C[1]),o=Math.max(A[1],C[1]);if(g){let I=g.filter(Q=>Q!==null);t=Math.min(t,...I),o=Math.max(o,...I)}return[E,t,i,o]},ji=(A,u)=>{let e=F(0,0),{minX:C,minY:B,maxX:g,maxY:E}=A.reduce((i,{op:t,data:o})=>{if(t==="move"){let I=GQ(o);a0(I!=null,"Op data is not a point"),e=I}else if(t==="bcurveTo"){let I=F(o[0],o[1]),Q=F(o[2],o[3]),r=F(o[4],o[5]),s=u?u(I):I,n=u?u(Q):Q,l=u?u(r):r,D=u?u(e):e;e=r;let[d,c,w,h]=WX(D,s,n,l);i.minX=Math.min(i.minX,d),i.minY=Math.min(i.minY,c),i.maxX=Math.max(i.maxX,w),i.maxY=Math.max(i.maxY,h)}return i},{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0});return[C,B,g,E]},jQ=A=>{let u=1/0,e=1/0,C=-1/0,B=-1/0;for(let[g,E]of A)u=Math.min(u,g),e=Math.min(e,E),C=Math.max(C,g),B=Math.max(B,E);return[u,e,C,B]},jX=A=>{let[u,e,C,B]=jQ(A.points),g=u+A.x,E=e+A.y,i=C+A.x,t=B+A.y;return[g,E,i,t,(g+i)/2,(E+t)/2]},TX=A=>{switch(A){case"arrow":return 25;case"diamond":case"diamond_outline":return 12;case"crowfoot_many":case"crowfoot_one":case"crowfoot_one_or_many":return 20;default:return 15}},zX=A=>{switch(A){case"bar":return 90;case"arrow":return 20;default:return 25}},Ms=(A,u,e,C)=>{if(u.length<1)return null;let B=PC(u[0]);if(B.length<1)return null;let g=e==="start"?1:B.length-1,E=B[g].data;a0(E.length===6,"Op data length is not 6");let i=F(E[4],E[5]),t=F(E[2],E[3]),o=F(E[0],E[1]),I=B[g-1],Q=F(0,0);if(I.op==="move"){let q=GQ(I.data);a0(q!=null,"Op data is not a point"),Q=q}else I.op==="bcurveTo"&&(Q=F(I.data[4],I.data[5]));let r=(q,K)=>Math.pow(1-q,3)*i[K]+3*q*Math.pow(1-q,2)*t[K]+3*Math.pow(q,2)*(1-q)*o[K]+Q[K]*Math.pow(q,3),[s,n]=e==="start"?Q:i,[l,D]=[r(.3,0),r(.3,1)],d=Math.hypot(s-l,n-D),c=(s-l)/d,w=(n-D)/d,h=TX(C),m=0;{let[q,K]=e==="end"?A.points[A.points.length-1]:A.points[0],[W,v]=A.points.length>1?e==="end"?A.points[A.points.length-2]:A.points[1]:[0,0];m=Math.hypot(q-W,K-v)}let b=Math.min(h,m*(C==="diamond"||C==="diamond_outline"?.25:.5)),y=s-c*b,U=n-w*b;if(C==="dot"||C==="circle"||C==="circle_outline"){let q=Math.hypot(U-n,y-s)+A.strokeWidth-2;return[s,n,q]}let G=zX(C);if(C==="crowfoot_many"||C==="crowfoot_one_or_many"){let[q,K]=j(F(s,n),F(y,U),rB(-G)),[W,v]=j(F(s,n),F(y,U),rB(G));return[y,U,q,K,W,v]}let[N,x]=j(F(y,U),F(s,n),-G*Math.PI/180),[R,Y]=j(F(y,U),F(s,n),rB(G));if(C==="diamond"||C==="diamond_outline"){let q,K;if(e==="start"){let[W,v]=A.points.length>1?A.points[1]:[0,0];[q,K]=j(F(s+b*2,n),F(s,n),Math.atan2(v-n,W-s))}else{let[W,v]=A.points.length>1?A.points[A.points.length-2]:[0,0];[q,K]=j(F(s-b*2,n),F(s,n),Math.atan2(n-v,s-W))}return[s,n,N,x,q,K,R,Y]}return[s,n,N,x,R,Y]},PX=A=>{let u=TC.generator(),e=S0(A),C=A.roundness?"curve":e.fill?"polygon":"linearPath";return u[C](A.points,e)},OX=(A,u,e,C)=>{var o;let B=yA(A,C);if(A.points.length<2){let[I,Q]=A.points[0],[r,s]=j(F(A.x+I,A.y+Q),F(u,e),A.angle),n=[r,s,r,s];if(B){let l=IA.getMinMaxXYWithBoundText(A,C,[r,s,r,s],B);n=[l[0],l[1],l[2],l[3]]}return n}let g=((o=pu.get(A))==null?void 0:o[0])??PX(A),E=PC(g),i=ji(E,([I,Q])=>j(F(A.x+I,A.y+Q),F(u,e),A.angle)),t=[i[0],i[1],i[2],i[3]];if(B){let I=IA.getMinMaxXYWithBoundText(A,C,t,B);t=[I[0],I[1],I[2],I[3]]}return t},de=(A,u)=>qX.getBounds(A,u),OA=(A,u)=>{if(!A.length)return[0,0,0,0];let e=1/0,C=-1/0,B=1/0,g=-1/0,E=u||wA(A);return A.forEach(i=>{let[t,o,I,Q]=de(i,E);e=Math.min(e,t),B=Math.min(B,o),C=Math.max(C,I),g=Math.max(g,Q)}),[e,B,C,g]},TQ=(A,u)=>{let[e,C,B,g]=OA(A);return[e+u.x,C+u.y,B+u.x,g+u.y]},JC=(A,u,e,C)=>{if(!(FA(A)||P0(A)))return[A.x,A.y,A.x+u,A.y+e];let B=ti(0,u,ti(1,e,A.points,C),C),g;if(P0(A))g=jQ(B);else{let I=TC.generator(),Q=A.roundness?I.curve(B,S0(A)):I.linearPath(B,S0(A)),r=PC(Q);g=ji(r)}let[E,i,t,o]=g;return[E+A.x,i+A.y,t+A.x,o+A.y]},fs=(A,u)=>{let e=TC.generator(),C=A.roundness==null?e.linearPath(u,S0(A)):e.curve(u,S0(A)),B=PC(C),[g,E,i,t]=ji(B);return[g+A.x,E+A.y,i+A.x,t+A.y]},VX=(A,u)=>{if(!A.length)return[0,0,0,0];let e=1/0,C=A[0],B=wA(A);return A.forEach(g=>{let[E,i,t,o]=de(g,B),I=TA(F((E+t)/2,(i+o)/2),F(u.x,u.y));I{let[u,e,C,B]=OA(A);return{minX:u,minY:e,maxX:C,maxY:B,width:C-u,height:B-e,midX:(u+C)/2,midY:(e+B)/2}},XX=({scrollX:A,scrollY:u,width:e,height:C,zoom:B})=>[-A,-u,-A+e/B.value,-u+C/B.value],zQ=A=>F(A[0]+(A[2]-A[0])/2,A[1]+(A[3]-A[1])/2),_X=(A,u)=>{if(A==null||u==null)return!1;let[e,C,B,g]=A,[E,i,t,o]=u;return eE&&Ci},Ti=(A,u)=>{switch(A.type){case"rectangle":case"image":case"text":case"iframe":case"embeddable":case"frame":case"magicframe":return $X(A,u);case"diamond":return A_(A,u);case"ellipse":return u_(A,u)}},$X=(A,u)=>{let e=F(A.x+A.width/2,A.y+A.height/2),C=j(u,e,-A.angle),[B,g]=l3(A);return Math.min(...B.map(E=>UQ(C,E)),...g.map(E=>yl(E,C)).filter(E=>E!==null))},A_=(A,u)=>{let e=F(A.x+A.width/2,A.y+A.height/2),C=j(u,e,-A.angle),[B,g]=D3(A);return Math.min(...B.map(E=>UQ(C,E)),...g.map(E=>yl(E,C)).filter(E=>E!==null))},u_=(A,u)=>{let e=F(A.x+A.width/2,A.y+A.height/2);return rX(j(u,e,-A.angle),n3(e,A.width/2,A.height/2))},e_=A=>!A[M.CTRL_OR_CMD],tB=A=>A.isBindingEnabled,iu=5,PQ=10,OQ=4,C_=(A,u)=>{let e=[];return u.forEach(C=>{let B=A.getNonDeletedElement(C);B!=null&&e.push(B)}),e},zi=(A,u,e,C,B)=>{let g=new Set,E=new Set;Ys(A,u,e,"start",g,E,C),Ys(A,e,u,"end",g,E,C);let i=Array.from(E).filter(t=>!g.has(t));C_(B,i).forEach(t=>{var o;O(t,{boundElements:(o=t.boundElements)==null?void 0:o.filter(I=>I.type!=="arrow"||I.id!==A.id)})})},Ys=(A,u,e,C,B,g,E)=>{if(u!=="keep"){if(u===null){let i=i_(A,C);i!=null&&g.add(i);return}v3(A)?(e==null||(e==="keep"?!K3(A,u,C):C==="start"||e.id!==u.id))&&(Ke(A,u,C,E),B.add(u.id)):(Ke(A,u,C,E),B.add(u.id))}},B_=(A,u,e,C)=>{var E,i;let B=Z3(A,u,e),g=u==="start"?(E=A.startBinding)==null?void 0:E.elementId:(i=A.endBinding)==null?void 0:i.elementId;if(g){let t=e.get(g);if(ce(t)&&fI(t,B,e,C))return t}return null},H3=(A,u,e)=>["start","end"].map(C=>B_(A,C,u,e)),g_=(A,u,e,C,B,g)=>{let E=A.points.length-1,i=e.findIndex(Q=>Q===0)>-1,t=e.findIndex(Q=>Q===E)>-1,o=i?u?VB(A,"start",C,B,g):null:iA(A)?"keep":VB(A,"start",C,B,g),I=t?u?VB(A,"end",C,B,g):null:iA(A)?"keep":VB(A,"end",C,B,g);return[o,I]},E_=(A,u,e,C,B)=>{if(iA(A))return["keep","keep"];let[g,E]=H3(A,u,B),i=g&&C?VB(A,"start",u,e,B):null,t=E&&C?VB(A,"end",u,e,B):null;return[i,t]},Qi=(A,u,e,C,B,g,E)=>{A.forEach(i=>{let[t,o]=g!=null&&g.length?g_(i,B,g??[],u,e,E):E_(i,u,e,B,E);zi(i,t,o,u,C)})},Xa=(A,u,e)=>A.length>50?[]:A.filter(FA).flatMap(C=>H3(C,u,e)).filter(C=>C!==null).filter(C=>A.filter(B=>B.id===(C==null?void 0:C.id)).length===0),Jt=(A,u,e,C,B)=>{u.startBoundElement!=null&&Ke(A,u.startBoundElement,"start",C);let g=Qe(e,B,C,u.zoom,iA(A),iA(A));g!==null&&(K3(A,g,"end")||Ke(A,g,"end",C))},I_=(A,u)=>{let e=A.gap,C=XE(u,u.width,u.height);return e>C&&(e=PQ+OQ),{...A,gap:e}},Ke=(A,u,e,C)=>{if(!UA(A))return;let B={elementId:u.id,...iA(A)?{...oi(A,u,e),focus:0,gap:0}:{...I_(Q_(A,u,e,C),u)}};O(A,{[e==="start"?"startBinding":"endBinding"]:B}),wA(u.boundElements||[]).has(A.id)||O(u,{boundElements:(u.boundElements||[]).concat({id:A.id,type:"arrow"})})},K3=(A,u,e)=>{let C=A[e==="start"?"endBinding":"startBinding"];return J3(A,C==null?void 0:C.elementId,u)},J3=(A,u,e)=>u===e.id&&v3(A),v3=A=>A.points.length<3,i_=(A,u)=>{let e=u==="start"?"startBinding":"endBinding",C=A[e];return C==null?null:(O(A,{[e]:null}),C.elementId)},Qe=(A,u,e,C,B,g)=>{if(g){let E=!1,i=t_(u,o=>ce(o,!1)&&fI(o,A,e,C,(B||!va(o))&&!dA(o))).filter(o=>E?!1:(va(o)||(E=!0),!0));if(!i||i.length===0)return null;if(i.length===1)return i[0];let t=i.filter(o=>fI(o,A,e,C,!1));return t.length===1?t[0]:i.sort((o,I)=>I.width**2+I.height**2-(o.width**2+o.height**2)).pop()}return a_(u,E=>ce(E,!1)&&fI(E,A,e,C,(B||!va(E))&&!dA(E)))},a_=(A,u)=>{let e=null;for(let C=A.length-1;C>=0;--C){let B=A[C];if(!B.isDeleted&&u(B)){e=B;break}}return e},t_=(A,u)=>{let e=[];for(let C=A.length-1;C>=0;--C){let B=A[C];B.isDeleted||u(B)&&e.push(B)}return e},Q_=(A,u,e,C)=>{let B=e==="start"?-1:1,g=B===-1?0:A.points.length-1,E=g-B,i=IA.getPointAtIndexGlobalCoordinates(A,g,C),t=IA.getPointAtIndexGlobalCoordinates(A,E,C);return{focus:w_(u,t,i),gap:Math.max(1,Ti(u,i))}},U0=(A,u,e)=>{let{newSize:C,simultaneouslyUpdated:B}=e??{},g=r_(B);ce(A)&&Pi(u,A,E=>{var n,l;if(!FA(E)||E.isDeleted||!o_(E,A))return;let i=E.startBinding?u.get(E.startBinding.elementId):null,t=E.endBinding?u.get(E.endBinding.elementId):null,o=null,I=null;i&&t&&(o=de(i,u),I=de(t,u));let Q={startBinding:Hs(A,E.startBinding,C),endBinding:Hs(A,E.endBinding,C)};if(g.has(E.id)){O(E,Q,!0);return}let r=Oi(u,E,(D,d)=>{var c,w;if(D&&ce(D)&&(d==="startBinding"||d==="endBinding")&&(A.id===((c=E[d])==null?void 0:c.elementId)||A.id===((w=E[d==="startBinding"?"endBinding":"startBinding"])==null?void 0:w.elementId)&&!_X(o,I))){let h=d_(E,d,Q[d],D,u);if(h)return{index:d==="startBinding"?0:E.points.length-1,point:h}}return null}).filter(D=>D!==null);IA.movePoints(E,r,{...A.id===((n=E.startBinding)==null?void 0:n.elementId)?{startBinding:Q.startBinding}:{},...A.id===((l=E.endBinding)==null?void 0:l.elementId)?{endBinding:Q.endBinding}:{}});let s=yA(E,u);s&&!s.isDeleted&&_E(E,u,!1)})},o_=(A,u)=>{var e,C;return((e=A.startBinding)==null?void 0:e.elementId)===u.id||((C=A.endBinding)==null?void 0:C.elementId)===u.id},r_=A=>new Set((A||[]).map(u=>u.id)),s_=(A,u,e,C,B,g,E)=>{let i=bB(rA(u,A));return!e||!C?i:n_(g,e,B,E)?S3(e,C,A):bB(rA(A,F(e.x+e.width/2,e.y+e.height/2)))},n_=(A,u,e,C)=>{let B=Ti(u,A),g=XE(u,u.width,u.height,C);return B>g?null:B},LE=(A,u,e)=>{let C=u&&Se(u),B=A.points[e==="start"?0:A.points.length-1],g=F(A.x+B[0],A.y+B[1]),E=lW(u)?D_(u,g):g;if(u&&C){let i=zQ(C),t=d3(u,nA(i,MA(bu(I0(rA(E,i)),Math.max(u.width,u.height)),i)))[0],o=TA(E,i),I=Math.max(TA(t??E,i),1e-4),Q=fe(o/I,6);switch(!0){case Q>.9:return o-I>iu||yE(E,t)<1e-4?E:MA(bu(I0(rA(E,t??i)),Q>1?iu:-iu),t??i);default:return l_(E,u,C)}}return E},l_=(A,u,e)=>{let C=zQ(e),B=bB(rA(A,C));switch(!0){case Gu(B,b0):return j(F((e[0]+e[2])/2+.1,e[1]),C,u.angle);case Gu(B,yu):return j(F(e[2],(e[1]+e[3])/2+.1),C,u.angle);case Gu(B,Vu):return j(F((e[0]+e[2])/2-.1,e[3]),C,u.angle);default:return j(F(e[0],(e[1]+e[3])/2-.1),C,u.angle)}},D_=(A,u)=>{let e=F(A.x+A.width/2,A.y+A.height/2),C=j(u,e,-A.angle);return C[0]-iu?j(F(A.x-iu,A.y),e,A.angle):j(F(A.x,A.y-iu),e,A.angle):C[0]A.y+A.height?C[0]-A.x>-iu?j(F(A.x,A.y+A.height+iu),e,A.angle):j(F(A.x-iu,A.y+A.height),e,A.angle):C[0]>A.x+A.width&&C[1]>A.y+A.height?C[0]-A.xA.x+A.width&&C[1]{let{x:C,y:B,width:g,height:E,angle:i}=A,t=F(C+g/2-.1,B+E/2-.1),o=j(u,t,-i),I=RA(e*E,5,80),Q=RA(e*g,5,80);return o[0]<=C+g/2&&o[1]>t[1]-I&&o[1]t[0]-Q&&o[0]=C+g/2&&o[1]>t[1]-I&&o[1]=B+E/2&&o[0]>t[0]-Q&&o[0]{if(e==null||e.elementId!==C.id&&A.points.length>2)return null;let g=u==="startBinding"?-1:1,E=g===-1?0:A.points.length-1;if(iA(A)&&gi(e)){let Q=Vi(e.fixedPoint)??oi(A,C,u==="startBinding"?"start":"end").fixedPoint,r=F(C.x+C.width/2,C.y+C.height/2),s=F(C.x+Q[0]*C.width,C.y+Q[1]*C.height),n=j(s,r,C.angle);return IA.pointFromAbsoluteCoords(A,n,B)}let i=E-g,t=IA.getPointAtIndexGlobalCoordinates(A,i,B),o=h_(C,e.focus,t),I;if(e.gap===0)I=o;else{let Q=IA.getPointAtIndexGlobalCoordinates(A,E,B),r=F(C.x+C.width/2,C.y+C.height/2),s=TA(t,Q)+TA(t,r)+Math.max(C.width,C.height)*2,n=d3(C,nA(t,MA(bu(I0(rA(o,t)),s),t)),e.gap).sort((l,D)=>yE(l,t)-yE(D,t));n.length>1?I=n[0]:n.length===1?I=o:I=Q}return IA.pointFromAbsoluteCoords(A,I,B)},oi=(A,u,e,C)=>{let B=[u.x,u.y,u.x+u.width,u.y+u.height],g=LE(A,u,e),E=F(B[0]+(B[2]-B[0])/2,B[1]+(B[3]-B[1])/2),i=j(g,E,-u.angle);return{fixedPoint:Vi([(i[0]-u.x)/u.width,(i[1]-u.y)/u.height])}},Hs=(A,u,e)=>{if(u==null||e==null)return u;let{width:C,height:B}=e,{width:g,height:E}=A,i=Math.max(1,Math.min(XE(A,C,B),u.gap*(CQe(Z3(A,u,e),C,e,B,iA(A),iA(A)),Z3=(A,u,e)=>{let C=u==="start"?0:-1;return ae(IA.getPointAtIndexGlobalCoordinates(A,C,e))},q3=(A,u,e,C)=>{let B=new Set,g=new Set,E=C==="duplicatesServeAsOld",i=new Map([...e].map(([t,o])=>[o,t]));u.forEach(t=>{let{boundElements:o}=t;if(o!=null&&o.length>0&&(o.forEach(I=>{E&&!e.has(I.id)&&B.add(I.id)}),g.add(e.get(t.id))),Re(t)){if(t.startBinding!=null){let{elementId:I}=t.startBinding;E&&!e.has(I)&&g.add(I)}if(t.endBinding!=null){let{elementId:I}=t.endBinding;E&&!e.has(I)&&g.add(I)}(t.startBinding!=null||t.endBinding!=null)&&B.add(e.get(t.id))}}),A.filter(({id:t})=>B.has(t)).forEach(t=>{let{startBinding:o,endBinding:I}=t;O(t,{startBinding:Ks(o,e),endBinding:Ks(I,e)})}),A.filter(({id:t})=>g.has(t)).forEach(t=>{var Q;let o=i.get(t.id),I=(Q=A.find(({id:r})=>r===o))==null?void 0:Q.boundElements;I&&I.length>0&&O(t,{boundElements:I.map(r=>e.has(r.id)?{id:e.get(r.id),type:r.type}:r)})})},Ks=(A,u)=>A==null?null:{...A,elementId:u.get(A.elementId)??A.elementId},W3=(A,u)=>{let e=wA(A);for(let C of u)XB.unbindAffected(e,C,O),_B.unbindAffected(e,C,O)},xE=(A,u,e=[])=>{if(!A)return null;let C=A.filter(B=>!u.has(B.id));return C.push(...e.map(B=>({id:B.id,type:B.type}))),C},fI=(A,{x:u,y:e},C,B,g)=>{let E=XE(A,A.width,A.height,B),i=eC(A,C);return Rt(F(u,e),i,E)||g===!0&&sg(F(u,e),Se(A))},XE=(A,u,e,C)=>{let B=C!=null&&C.value&&C.value<1?C.value:1,g=(A.type==="diamond"?1/Math.sqrt(2):1)*Math.min(u,e);return Math.max(16,Math.min(.25*g,32),PQ/B+OQ)},w_=(A,u,e)=>{let C=F(A.x+A.width/2,A.y+A.height/2);if(De(u,e))return 0;let B=j(u,C,-A.angle),g=j(e,C,-A.angle),E=Math.sign(qu(rA(g,u),rA(g,C)))*-1,i=nA(g,MA(bu(I0(rA(g,B)),Math.max(A.width*2,A.height*2)),g)),t=A.type==="diamond"?[nA(F(A.x+A.width/2,A.y),F(A.x+A.width/2,A.y+A.height)),nA(F(A.x,A.y+A.height/2),F(A.x+A.width,A.y+A.height/2))]:[nA(F(A.x,A.y),F(A.x+A.width,A.y+A.height)),nA(F(A.x+A.width,A.y),F(A.x,A.y+A.height))],o=A.type==="diamond"?[nA(F(A.x+A.width/2,A.y-A.height),F(A.x+A.width/2,A.y+A.height*2)),nA(F(A.x-A.width,A.y+A.height/2),F(A.x+A.width*2,A.y+A.height/2))]:[nA(F(A.x-A.width,A.y-A.height),F(A.x+A.width*2,A.y+A.height*2)),nA(F(A.x+A.width*2,A.y-A.height),F(A.x-A.width,A.y+A.height*2))];return[bE(i,o[0]),bE(i,o[1])].filter(I=>I!==null).sort((I,Q)=>yE(I,e)-yE(Q,e)).map((I,Q)=>E*TA(C,I)/(A.type==="diamond"?TA(t[Q][0],t[Q][1])/2:Math.sqrt(A.width**2+A.height**2)/2)).sort((I,Q)=>Math.abs(I)-Math.abs(Q))[0]??0},h_=(A,u,e)=>{let C=F(A.x+A.width/2,A.y+A.height/2);if(u===0)return C;let B=(A.type==="diamond"?[F(A.x,A.y+A.height/2),F(A.x+A.width/2,A.y),F(A.x+A.width,A.y+A.height/2),F(A.x+A.width/2,A.y+A.height)]:[F(A.x,A.y),F(A.x+A.width,A.y),F(A.x+A.width,A.y+A.height),F(A.x,A.y+A.height)]).map(E=>MA(bu(rA(E,C),Math.abs(u)),C)).map(E=>j(E,C,A.angle)),g=[qu(rA(e,B[0]),rA(B[1],B[0]))>0&&(u>0?qu(rA(e,B[1]),rA(B[2],B[1]))<0:qu(rA(e,B[3]),rA(B[0],B[3]))<0),qu(rA(e,B[1]),rA(B[2],B[1]))>0&&(u>0?qu(rA(e,B[2]),rA(B[3],B[2]))<0:qu(rA(e,B[0]),rA(B[1],B[0]))<0),qu(rA(e,B[2]),rA(B[3],B[2]))>0&&(u>0?qu(rA(e,B[3]),rA(B[0],B[3]))<0:qu(rA(e,B[1]),rA(B[2],B[1]))<0),qu(rA(e,B[3]),rA(B[0],B[3]))>0&&(u>0?qu(rA(e,B[0]),rA(B[1],B[0]))<0:qu(rA(e,B[2]),rA(B[3],B[2]))<0)];return g[0]?u>0?B[1]:B[0]:g[1]?u>0?B[2]:B[1]:g[2]?u>0?B[3]:B[2]:u>0?B[0]:B[3]},F_=new Set(["boundElements","frameId","containerId","startBinding","endBinding"]),Pi=(A,u,e)=>{var C;ce(u)&&(((C=u.boundElements)==null?void 0:C.slice())??[]).forEach(({id:B})=>{e(A.get(B),"boundElements",B)})},Oi=(A,u,e)=>{let C=[];if(u.frameId){let B=u.frameId;C.push(e(A.get(B),"frameId",B))}if(nu(u)){let B=u.containerId;C.push(e(A.get(B),"containerId",B))}if(UA(u)){if(u.startBinding){let B=u.startBinding.elementId;C.push(e(A.get(B),"startBinding",B))}if(u.endBinding){let B=u.endBinding.elementId;C.push(e(A.get(B),"endBinding",B))}}return C},XB=class{static unbindAffected(A,u,e){u&&Oi(A,u,C=>{!C||C.isDeleted||Pi(A,C,(B,g,E)=>{E===u.id&&e(C,{boundElements:xE(C.boundElements,new Set([E]))})})})}};S(XB,"rebindAffected",(A,u,e)=>{!u||u.isDeleted||Oi(A,u,(C,B)=>{var g,E;if(!C||C.isDeleted){e(u,{[B]:null});return}B!=="frameId"&&((g=C.boundElements)!=null&&g.find(i=>i.id===u.id)||(UA(u)&&e(C,{boundElements:xE(C.boundElements,new Set,new Array(u))}),gA(u)&&((E=C.boundElements)!=null&&E.find(i=>i.type==="text")?e(u,{[B]:null}):e(C,{boundElements:xE(C.boundElements,new Set,new Array(u))}))))})});var _B=class{static unbindAffected(A,u,e){u&&Pi(A,u,C=>{!C||C.isDeleted||Oi(A,C,(B,g,E)=>{E===u.id&&e(C,{[g]:null})})})}};S(_B,"rebindAffected",(A,u,e)=>{!u||u.isDeleted||Pi(A,u,(C,B,g)=>{var E,i;if(!C||C.isDeleted){e(u,{boundElements:xE(u.boundElements,new Set([g]))});return}gA(C)&&(((i=(((E=u.boundElements)==null?void 0:E.slice())??[]).reverse().find(t=>t.type==="text"))==null?void 0:i.id)===C.id?C.containerId!==u.id&&e(C,{containerId:u.id}):(C.containerId!==null&&e(C,{containerId:null}),e(u,{boundElements:xE(u.boundElements,new Set([C.id]))})))})});var vt=(A,u)=>{let[e,C]=Vi(A);return j(F(u.x+u.width*e,u.y+u.height*C),F(u.x+u.width/2,u.y+u.height/2),u.angle)},p_=(A,u)=>{let e=A.startBinding&&u.get(A.startBinding.elementId),C=A.endBinding&&u.get(A.endBinding.elementId),B=e&&A.startBinding?vt(A.startBinding.fixedPoint,e):F(A.x+A.points[0][0],A.y+A.points[0][1]),g=C&&A.endBinding?vt(A.endBinding.fixedPoint,C):F(A.x+A.points[A.points.length-1][0],A.y+A.points[A.points.length-1][1]);return[B,g]},m_=(A,u)=>{let[e,C]=p_(A,u);return[IA.pointFromAbsoluteCoords(A,e,u),IA.pointFromAbsoluteCoords(A,C,u)]},Vi=A=>A&&(Math.abs(A[0]-.5)<1e-4||Math.abs(A[1]-.5)<1e-4)?A.map(u=>Math.abs(u-.5)<1e-4?.5001:u):A,k_=(A,u)=>{let[e,C,B,g]=u,{x:E,y:i}=ie({sceneX:e,sceneY:C},A),{x:t,y:o}=ie({sceneX:B,sceneY:g},A);return t-E>A.width||o-i>A.height},j3=({scenePoint:A,viewportDimensions:u,zoom:e,offsets:C})=>{let B=(u.width-((C==null?void 0:C.right)??0))/2/e.value-A.x;B+=((C==null?void 0:C.left)??0)/2/e.value;let g=(u.height-((C==null?void 0:C.bottom)??0))/2/e.value-A.y;return g+=((C==null?void 0:C.top)??0)/2/e.value,{scrollX:B,scrollY:g}},NE=(A,u)=>{if(A=_AA(A),!A.length)return{scrollX:0,scrollY:0};let[e,C,B,g]=OA(A);k_(u,[e,C,B,g])&&([e,C,B,g]=VX(A,Qu({clientX:u.scrollX,clientY:u.scrollY},u)));let E=(e+B)/2,i=(C+g)/2;return j3({scenePoint:{x:E,y:i},viewportDimensions:{width:u.width,height:u.height},zoom:u.zoom})},EC=A=>RA(fe(A,6),mQ,kQ),y_=A=>RA(Math.round(A),1,100),T3=A=>RA(Math.round(A),1,100),z3=(A,u,e)=>{let C=e.reduce((B,g)=>(g.groupIds.includes(A)&&(B[g.id]=!0),B),{});return Object.keys(C).length<2?u.selectedGroupIds[A]||u.editingGroupId===A?{selectedElementIds:u.selectedElementIds,selectedGroupIds:{...u.selectedGroupIds,[A]:!1},editingGroupId:null}:u:{editingGroupId:u.editingGroupId,selectedGroupIds:{...u.selectedGroupIds,[A]:!0},selectedElementIds:{...u.selectedElementIds,...C}}},r0=function(){let A=null,u=null,e=null,C=(g,E,i,t)=>{if(e!==void 0&&E===u&&g===A&&i.editingGroupId===(e==null?void 0:e.editingGroupId))return e;let o={};for(let r of g){let s=r.groupIds;if(i.editingGroupId){let n=s.indexOf(i.editingGroupId);n>-1&&(s=s.slice(0,n))}if(s.length>0){let n=s[s.length-1];o[n]=!0}}let I={},Q=E.reduce((r,s)=>{if(s.isDeleted)return r;let n=s.groupIds.find(l=>o[l]);return n&&(r[s.id]=!0,Array.isArray(I[n])?I[n].push(s.id):I[n]=[s.id]),r},{});for(let r of Object.keys(I))I[r].length<2&&o[r]&&(o[r]=!1);return u=E,A=g,e={editingGroupId:i.editingGroupId,selectedGroupIds:o,selectedElementIds:WA({...i.selectedElementIds,...Q},t)},e},B=(g,E,i,t)=>{let o=t?t.scene.getSelectedElements({selectedElementIds:g.selectedElementIds,elements:E}):GA(E,g);return o.length?C(o,E,g,i):{selectedGroupIds:{},editingGroupId:null,selectedElementIds:WA(g.selectedElementIds,i)}};return B.clearCache=()=>{u=null,A=null,e=null},B}(),P3=(A,u)=>O3(A,u)!=null,O3=(A,u)=>u.groupIds.filter(e=>e!==A.editingGroupId).find(e=>A.selectedGroupIds[e]),lB=A=>Object.entries(A.selectedGroupIds).filter(([u,e])=>e).map(([u,e])=>u),V3=(A,u)=>{let e={...u,selectedGroupIds:{}};for(let C of A){let B=C.groupIds;if(u.editingGroupId){let g=B.indexOf(u.editingGroupId);g>-1&&(B=B.slice(0,g))}if(B.length>0){let g=B[B.length-1];e={...e,...z3(g,e,A)}}}return e.selectedGroupIds},b_=(A,u)=>({...A,editingGroupId:u.groupIds.length?u.groupIds[0]:null,selectedGroupIds:{},selectedElementIds:{[u.id]:!0}}),SE=(A,u)=>A.groupIds.includes(u),su=(A,u)=>{let e=[];for(let C of A.values())SE(C,u)&&e.push(C);return e},G_=(A,u)=>A.groupIds.find(e=>u[e]),U_=(A,u,e)=>{let C=[...A],B=u?A.indexOf(u):-1,g=B>-1?B:A.length;for(let E=0;E{let C=[...A],B=e?C.indexOf(e):-1,g=B>-1?B:C.length;return C.splice(g,0,u),C},x_=(A,u)=>A.filter(e=>!u[e]),Xi=(A,u)=>{let e=new Map;return A.forEach(C=>{let B=C.groupIds.length===0?C.id:C.groupIds[C.groupIds.length-1],g=e.get(B)||[],E=yA(C,u);E&&g.push(E),e.set(B,[...g,C])}),Array.from(e.values())},N_=A=>{let u=new Set;for(let[,e]of A)if(!e.isDeleted)for(let C of e.groupIds??[])u.add(C);return u},X3=A=>{let u=A.flatMap(B=>B.groupIds),e=new Map,C=0;for(let B of u)e.set(B,(e.get(B)??0)+1),e.get(B)>C&&(C=e.get(B));return C===A.length},Dg=A=>A.groupIds.length>0,S_=8,Js=99999,_i=A=>S_/A,F0=class{};S(F0,"referenceSnapPoints",null),S(F0,"visibleGaps",null),S(F0,"setReferenceSnapPoints",A=>{F0.referenceSnapPoints=A}),S(F0,"getReferenceSnapPoints",()=>F0.referenceSnapPoints),S(F0,"setVisibleGaps",A=>{F0.visibleGaps=A}),S(F0,"getVisibleGaps",()=>F0.visibleGaps),S(F0,"destroy",()=>{F0.referenceSnapPoints=null,F0.visibleGaps=null});var uC=F0,RE=A=>A.props.gridModeEnabled??A.state.gridModeEnabled,qC=({event:A,app:u,selectedElements:e})=>A?u.state.objectsSnapModeEnabled&&!A[M.CTRL_OR_CMD]||!u.state.objectsSnapModeEnabled&&A[M.CTRL_OR_CMD]&&!RE(u):e.length===1&&e[0].type==="arrow"?!1:u.state.objectsSnapModeEnabled,R_=(A,u,e=.01)=>Math.abs(A-u)<=e,ME=(A,u,{omitCenter:e,boundingBoxCorners:C,dragOffset:B}={omitCenter:!1,boundingBoxCorners:!1})=>{let g=[];if(A.length===1){let E=A[0],[i,t,o,I,Q,r]=pA(E,u);B&&(i+=B.x,o+=B.x,Q+=B.x,t+=B.y,I+=B.y,r+=B.y);let s=(o-i)/2,n=(I-t)/2;if((E.type==="diamond"||E.type==="ellipse")&&!C){let l=j(F(i,t+n),F(Q,r),E.angle),D=j(F(i+s,t),F(Q,r),E.angle),d=j(F(o,t+n),F(Q,r),E.angle),c=j(F(i+s,I),F(Q,r),E.angle),w=F(Q,r);g=e?[l,D,d,c]:[l,D,d,c,w]}else{let l=j(F(i,t),F(Q,r),E.angle),D=j(F(o,t),F(Q,r),E.angle),d=j(F(i,I),F(Q,r),E.angle),c=j(F(o,I),F(Q,r),E.angle),w=F(Q,r);g=e?[l,D,d,c]:[l,D,d,c,w]}}else if(A.length>1){let[E,i,t,o]=TQ(A,B??{x:0,y:0}),I=t-E,Q=o-i,r=F(E,i),s=F(t,i),n=F(E,o),l=F(t,o),D=F(E+I/2,i+Q/2);g=e?[r,s,n,l]:[r,s,n,l,D]}return g.map(E=>F(Fu(E[0]),Fu(E[1])))},_3=(A,u,e,C)=>{let B=u.filter(g=>dA(g)).map(g=>g.id);return jD(A,u,e,C).filter(g=>!(g.frameId&&B.includes(g.frameId)))},M_=(A,u,e,C)=>{let B=_3(A,u,e,C),g=Xi(B,C).filter(Q=>!(Q.length===1&&nu(Q[0]))).map(Q=>OA(Q).map(r=>Fu(r))),E=g.sort((Q,r)=>Q[0]-r[0]),i=[],t=0;A:for(let Q=0;QJs)break A;let n=E[s],[,l,D,d]=r,[c,w,,h]=n;DQ[1]-r[1]),I=[];t=0;A:for(let Q=0;QJs)break A;let n=o[s],[l,,D,d]=r,[c,w,h]=n;d{if(!qC({app:e,event:C,selectedElements:A}))return[];if(A.length===0)return[];let i=uC.getVisibleGaps();if(i){let{horizontalGaps:t,verticalGaps:o}=i,[I,Q,r,s]=TQ(A,u).map(D=>Fu(D)),n=(I+r)/2,l=(Q+s)/2;for(let D of t){if(!Ci(B0(Q,s),D.overlap))continue;let d=D.startSide[0][0]+D.length/2,c=Fu(d-n);if(D.length>r-I&&Math.abs(c)<=E.x){Math.abs(c)s-Q&&Math.abs(c)<=E.y){Math.abs(c){let B=_3(A,u,e,C);return Xi(B,C).filter(g=>!(g.length===1&&nu(g[0]))).flatMap(g=>ME(g,C))},cg=(A,u,e,C,B,g,E)=>{if(!qC({app:e,event:C,selectedElements:A})||A.length===0&&u.length===0)return[];let i=uC.getReferenceSnapPoints();if(i)for(let t of u)for(let o of i){let I=o[0]-t[0],Q=o[1]-t[1];Math.abs(I)<=E.x&&(Math.abs(I){var D,d;let g=e.state,E=GA(A,g);if(!qC({app:e,event:C,selectedElements:E})||E.length===0)return{snapOffset:{x:0,y:0},snapLines:[]};u.x=Fu(u.x),u.y=Fu(u.y);let i=[],t=[],o=_i(g.zoom.value),I={x:o,y:o},Q=ME(E,B,{dragOffset:u});cg(E,Q,e,C,i,t,I),vs(E,u,e,C,i,t,I);let r={x:((D=i[0])==null?void 0:D.offset)??0,y:((d=t[0])==null?void 0:d.offset)??0};I.x=0,I.y=0,i.length=0,t.length=0;let s={x:Fu(u.x+r.x),y:Fu(u.y+r.y)};cg(E,ME(E,B,{dragOffset:s}),e,C,i,t,I),vs(E,s,e,C,i,t,I);let n=VQ(i,t),l=K_(E,s,[...i,...t].filter(c=>c.type==="gap"));return{snapOffset:r,snapLines:[...n,...l]}},Fu=A=>Math.round(A*10**6)/10**6,Zs=A=>{let u=new Map;for(let e of A){let C=e.join(",");u.has(C)||u.set(C,e)}return Array.from(u.values())},VQ=(A,u)=>{let e={},C={};if(A.length>0){for(let B of A)if(B.type==="point"){let g=Fu(B.points[0][0]);e[g]||(e[g]=[]),e[g].push(...B.points.map(E=>F(Fu(E[0]),Fu(E[1]))))}}if(u.length>0){for(let B of u)if(B.type==="point"){let g=Fu(B.points[0][1]);C[g]||(C[g]=[]),C[g].push(...B.points.map(E=>F(Fu(E[0]),Fu(E[1]))))}}return Object.entries(e).map(([B,g])=>({type:"points",points:Zs(g.map(E=>F(Number(B),E[1])).sort((E,i)=>E[1]-i[1]))})).concat(Object.entries(C).map(([B,g])=>({type:"points",points:Zs(g.map(E=>F(E[0],Number(B))).sort((E,i)=>E[0]-i[0]))})))},H_=A=>{let u=new Map;for(let e of A){let C=e.points.flat().map(B=>[Fu(B)]).join(",");u.has(C)||u.set(C,e)}return Array.from(u.values())},K_=(A,u,e)=>{let[C,B,g,E]=TQ(A,u),i=[];for(let t of e){let[o,I,Q,r]=t.gap.startBounds,[s,n,l,D]=t.gap.endBounds,d=Bi(B0(B,E),t.gap.overlap),c=Bi(B0(C,g),t.gap.overlap);switch(t.direction){case"center_horizontal":{if(d){let w=(d[0]+d[1])/2;i.push({type:"gap",direction:"horizontal",points:[F(t.gap.startSide[0][0],w),F(C,w)]},{type:"gap",direction:"horizontal",points:[F(g,w),F(t.gap.endSide[0][0],w)]})}break}case"center_vertical":{if(c){let w=(c[0]+c[1])/2;i.push({type:"gap",direction:"vertical",points:[F(w,t.gap.startSide[0][1]),F(w,B)]},{type:"gap",direction:"vertical",points:[F(w,E),F(w,t.gap.endSide[0][1])]})}break}case"side_right":{if(d){let w=(d[0]+d[1])/2;i.push({type:"gap",direction:"horizontal",points:[F(Q,w),F(s,w)]},{type:"gap",direction:"horizontal",points:[F(l,w),F(C,w)]})}break}case"side_left":{if(d){let w=(d[0]+d[1])/2;i.push({type:"gap",direction:"horizontal",points:[F(g,w),F(o,w)]},{type:"gap",direction:"horizontal",points:[F(Q,w),F(s,w)]})}break}case"side_top":{if(c){let w=(c[0]+c[1])/2;i.push({type:"gap",direction:"vertical",points:[F(w,E),F(w,I)]},{type:"gap",direction:"vertical",points:[F(w,r),F(w,n)]})}break}case"side_bottom":{if(c){let w=(c[0]+c[1])/2;i.push({type:"gap",direction:"vertical",points:[F(w,r),F(w,n)]},{type:"gap",direction:"vertical",points:[F(w,D),F(w,B)]})}break}}}return H_(i.map(t=>({...t,points:t.points.map(o=>F(Fu(o[0]),Fu(o[1])))})))},qs=(A,u,e,C,B,g)=>{var b,y;if(!qC({event:C,selectedElements:A,app:e})||A.length===0||A.length===1&&!R_(A[0].angle,0))return{snapOffset:{x:0,y:0},snapLines:[]};let[E,i,t,o]=OA(u);g&&(g.includes("e")?t+=B.x:g.includes("w")&&(E+=B.x),g.includes("n")?i+=B.y:g.includes("s")&&(o+=B.y));let I=[];if(g)switch(g){case"e":{I.push(F(t,i),F(t,o));break}case"w":{I.push(F(E,i),F(E,o));break}case"n":{I.push(F(E,i),F(t,i));break}case"s":{I.push(F(E,o),F(t,o));break}case"ne":{I.push(F(t,i));break}case"nw":{I.push(F(E,i));break}case"se":{I.push(F(t,o));break}case"sw":{I.push(F(E,o));break}}let Q=_i(e.state.zoom.value),r={x:Q,y:Q},s=[],n=[];cg(u,I,e,C,s,n,r);let l={x:((b=s[0])==null?void 0:b.offset)??0,y:((y=n[0])==null?void 0:y.offset)??0};r.x=0,r.y=0,s.length=0,n.length=0;let[D,d,c,w]=OA(A).map(U=>Fu(U)),h=[F(D,d),F(D,w),F(c,d),F(c,w)];cg(A,h,e,C,s,n,r);let m=VQ(s,n);return{snapOffset:l,snapLines:m}},J_=(A,u,e,C,B,g)=>{var n,l;if(!qC({event:e,selectedElements:[A],app:u}))return{snapOffset:{x:0,y:0},snapLines:[]};let E=[F(C.x+B.x,C.y+B.y)],i=_i(u.state.zoom.value),t={x:i,y:i},o=[],I=[];cg([A],E,u,e,o,I,t);let Q={x:((n=o[0])==null?void 0:n.offset)??0,y:((l=I[0])==null?void 0:l.offset)??0};t.x=0,t.y=0,o.length=0,I.length=0;let r=ME([A],g,{boundingBoxCorners:!0,omitCenter:!0});cg([A],r,u,e,o,I,t);let s=VQ(o,I);return{snapOffset:Q,snapLines:s}},v_=(A,u,e,C,B)=>{if(!qC({event:C,selectedElements:[],app:u}))return{originOffset:{x:0,y:0},snapLines:[]};let g=jD(A,[],u.state,B),E=_i(u.state.zoom.value),i={x:E,y:E},t=[],o=[];for(let I of g){let Q=ME([I],B);for(let r of Q){let s=r[0]-e.x;Math.abs(s)<=Math.abs(i.x)&&(Math.abs(s)0?o[0].points[0][0]-e.x:0,y:t.length>0?t[0].points[0][1]-e.y:0},snapLines:[...o,...t]}},Z_=A=>A===Wu.rectangle||A===Wu.ellipse||A===Wu.diamond||A===Wu.frame||A===Wu.magicframe||A===Wu.image||A===Wu.text,Hu=(A,u,e)=>e?[Math.round(A/e)*e,Math.round(u/e)*e]:[A,u],bC={version:null,points:[],zoom:null},Lu=class NA{constructor(u){S(this,"elementId"),S(this,"selectedPointsIndices"),S(this,"pointerDownState"),S(this,"isDragging"),S(this,"lastUncommittedPoint"),S(this,"pointerOffset"),S(this,"startBindingElement"),S(this,"endBindingElement"),S(this,"hoverPointIndex"),S(this,"segmentMidPointHoveredCoords"),S(this,"elbowed"),this.elementId=u.id,De(u.points[0],F(0,0))||console.error("Linear element is not normalized",Error().stack),this.selectedPointsIndices=null,this.lastUncommittedPoint=null,this.isDragging=!1,this.pointerOffset={x:0,y:0},this.startBindingElement="keep",this.endBindingElement="keep",this.pointerDownState={prevSelectedPointsIndices:null,lastClickedPoint:-1,lastClickedIsEndPoint:!1,origin:null,segmentMidpoint:{value:null,index:null,added:!1}},this.hoverPointIndex=-1,this.segmentMidPointHoveredCoords=null,this.elbowed=iA(u)&&u.elbowed}static getElement(u,e){return e.get(u)||null}static handleBoxSelection(u,e,C,B){if(!e.editingLinearElement||!e.selectionElement)return!1;let{editingLinearElement:g}=e,{selectedPointsIndices:E,elementId:i}=g,t=NA.getElement(i,B);if(!t)return!1;let[o,I,Q,r]=pA(e.selectionElement,B),s=NA.getPointsGlobalCoordinates(t,B).reduce((n,l,D)=>((l[0]>=o&&l[0]<=Q&&l[1]>=I&&l[1]<=r||u.shiftKey&&(E!=null&&E.includes(D)))&&n.push(D),n),[]).filter(n=>!(iA(t)&&n!==0&&n!==t.points.length-1));C({editingLinearElement:{...g,selectedPointsIndices:s.length?s:null}})}static handlePointDragging(u,e,C,B,g,E,i){var n;if(!E)return!1;let{elementId:t}=E,o=i.getNonDeletedElementsMap(),I=NA.getElement(t,o);if(!I||iA(I)&&!E.pointerDownState.lastClickedIsEndPoint&&E.pointerDownState.lastClickedPoint!==0)return!1;let Q=iA(I)?(n=E.selectedPointsIndices)==null?void 0:n.reduce((l,D)=>D===0?[0,l[1]]:[l[0],I.points.length-1],[!1,!1]).filter(l=>typeof l=="number"):E.selectedPointsIndices,r=iA(I)?E.pointerDownState.lastClickedPoint>0?I.points.length-1:0:E.pointerDownState.lastClickedPoint,s=I.points[r];if(Q&&s){if(rE(u)&&Q.length===1&&I.points.length>1){let l=Q[0],D=I.points[l===0?1:l-1],[d,c]=NA._getShiftLockedDelta(I,o,D,F(C,B),u[M.CTRL_OR_CMD]?null:e.getEffectiveGridSize());NA.movePoints(I,[{index:l,point:F(d+D[0],c+D[1]),isDragging:l===r}])}else{let l=NA.createPointAt(I,o,C-E.pointerOffset.x,B-E.pointerOffset.y,u[M.CTRL_OR_CMD]?null:e.getEffectiveGridSize()),D=l[0]-s[0],d=l[1]-s[1];NA.movePoints(I,Q.map(c=>{let w=c===r?NA.createPointAt(I,o,C-E.pointerOffset.x,B-E.pointerOffset.y,u[M.CTRL_OR_CMD]?null:e.getEffectiveGridSize()):F(I.points[c][0]+D,I.points[c][1]+d);return{index:c,point:w,isDragging:c===r}}))}if(yA(I,o)&&_E(I,o,!1),Re(I,!1)){let l=[];Q[0]===0&&l.push(ae(NA.getPointGlobalCoordinates(I,I.points[0],o)));let D=Q[Q.length-1];D===I.points.length-1&&l.push(ae(NA.getPointGlobalCoordinates(I,I.points[D],o))),l.length&&g(I,l)}return!0}return!1}static handlePointerUp(u,e,C,B){var s;let g=B.getNonDeletedElementsMap(),E=B.getNonDeletedElements(),{elementId:i,selectedPointsIndices:t,isDragging:o,pointerDownState:I}=e,Q=NA.getElement(i,g);if(!Q)return e;let r={};if(o&&t){for(let n of t)if(n===0||n===Q.points.length-1){QC(Q.points,C.zoom.value)&&NA.movePoints(Q,[{index:n,point:n===0?Q.points[Q.points.length-1]:Q.points[0]}]);let l=tB(C)?Qe(ae(NA.getPointAtIndexGlobalCoordinates(Q,n,g)),E,g,C.zoom,iA(Q),iA(Q)):null;r[n===0?"startBindingElement":"endBindingElement"]=l}}return{...e,...r,selectedPointsIndices:o||u.shiftKey?!o&&u.shiftKey&&((s=I.prevSelectedPointsIndices)!=null&&s.includes(I.lastClickedPoint))?t&&t.filter(n=>n!==I.lastClickedPoint):t:t!=null&&t.includes(I.lastClickedPoint)?[I.lastClickedPoint]:t,isDragging:!1,pointerOffset:{x:0,y:0}}}static isSegmentTooShort(u,e,C,B,g){if(iA(u))return B>=0&&B2&&u.roundness&&(E=pX(u,C)),E*g.value2&&u.roundness){let i=h3(u,u.points[B]);if(i){let t=mX(u,u.points[B],.5);E=NA.getPointGlobalCoordinates(u,F3(i[0],i[1],i[2],i[3],t),g)}}return E}static getSegmentMidPointIndex(u,e,C,B){let g=NA.getElement(u.elementId,B);if(!g)return-1;let E=NA.getEditorMidPoints(g,B,e),i=0;for(;i=0||s)I.hitElement=r;else{let{startBindingElement:G,endBindingElement:N}=g;tB(i)&&Re(r)&&zi(r,G,N,t,E)}let[D,d,c,w]=pA(r,t),h=(D+c)/2,m=(d+w)/2,b=l>-1&&j(F(r.x+r.points[l][0],r.y+r.points[l][1]),F(h,m),r.angle),y=l>-1||u.shiftKey?u.shiftKey||(U=g.selectedPointsIndices)!=null&&U.includes(l)?q_([...g.selectedPointsIndices||[],l]):[l]:null;return I.linearElementEditor={...g,pointerDownState:{prevSelectedPointsIndices:g.selectedPointsIndices,lastClickedPoint:l,lastClickedIsEndPoint:l===r.points.length-1,origin:{x:B.x,y:B.y},segmentMidpoint:{value:s,index:n,added:!1}},selectedPointsIndices:y,pointerOffset:b?{x:B.x-b[0],y:B.y-b[1]}:{x:0,y:0}},I}static arePointsEqual(u,e){return!u&&!e?!0:!u||!e?!1:De(u,e)}static handlePointerMove(u,e,C,B,g){let E=B.state;if(!E.editingLinearElement)return null;let{elementId:i,lastUncommittedPoint:t}=E.editingLinearElement,o=NA.getElement(i,g);if(!o)return E.editingLinearElement;let{points:I}=o,Q=I[I.length-1];if(!u.altKey)return Q===t&&NA.deletePoints(o,[I.length-1]),{...E.editingLinearElement,lastUncommittedPoint:null};let r;if(rE(u)&&I.length>=2){let s=I[I.length-2],[n,l]=NA._getShiftLockedDelta(o,g,s,F(e,C),u[M.CTRL_OR_CMD]?null:B.getEffectiveGridSize());r=F(n+s[0],l+s[1])}else r=NA.createPointAt(o,g,e-E.editingLinearElement.pointerOffset.x,C-E.editingLinearElement.pointerOffset.y,u[M.CTRL_OR_CMD]||iA(o)?null:B.getEffectiveGridSize());return Q===t?NA.movePoints(o,[{index:o.points.length-1,point:r}]):NA.addPoints(o,[{point:r}]),{...E.editingLinearElement,lastUncommittedPoint:o.points[o.points.length-1]}}static getPointGlobalCoordinates(u,e,C){let[B,g,E,i]=pA(u,C),t=(B+E)/2,o=(g+i)/2,{x:I,y:Q}=u;return j(F(I+e[0],Q+e[1]),F(t,o),u.angle)}static getPointsGlobalCoordinates(u,e){let[C,B,g,E]=pA(u,e),i=(C+g)/2,t=(B+E)/2;return u.points.map(o=>{let{x:I,y:Q}=u;return j(F(I+o[0],Q+o[1]),F(i,t),u.angle)})}static getPointAtIndexGlobalCoordinates(u,e,C){let B=e<0?u.points.length+e:e,[g,E,i,t]=pA(u,C),o=(g+i)/2,I=(E+t)/2,Q=u.points[B],{x:r,y:s}=u;return j(Q?F(r+Q[0],s+Q[1]):F(r,s),F(o,I),u.angle)}static pointFromAbsoluteCoords(u,e,C){if(iA(u))return F(e[0]-u.x,e[1]-u.y);let[B,g,E,i]=pA(u,C),t=(B+E)/2,o=(g+i)/2,[I,Q]=j(F(e[0],e[1]),F(t,o),-u.angle);return F(I-u.x,Q-u.y)}static getPointIndexUnderCursor(u,e,C,B,g){let E=NA.getPointsGlobalCoordinates(u,e),i=E.length;for(;--i>-1;){let t=E[i];if(TA(F(B,g),F(t[0],t[1]))*C.valueF(g[0]-C,g[1]-B)),x:u.x+C,y:u.y+B}}static normalizePoints(u){O(u,NA.getNormalizedPoints(u))}static duplicateSelectedPoints(u,e){a0(u.editingLinearElement,"Not currently editing a linear element");let{selectedPointsIndices:C,elementId:B}=u.editingLinearElement,g=NA.getElement(B,e);a0(g,"The linear element does not exist in the provided Scene"),a0(C!=null,"There are no selected points to duplicate");let{points:E}=g,i=[],t=!1,o=-1,I=E.reduce((Q,r,s)=>{if(++o,Q.push(r),C.includes(s)){let n=E[s+1];n||(t=!0),Q.push(n?F((r[0]+n[0])/2,(r[1]+n[1])/2):F(r[0],r[1])),i.push(o+1),++o}return Q},[]);if(O(g,{points:I}),t){let Q=g.points[g.points.length-1];NA.movePoints(g,[{index:g.points.length-1,point:F(Q[0]+30,Q[1]+30)}])}return{...u,editingLinearElement:{...u.editingLinearElement,selectedPointsIndices:i}}}static deletePoints(u,e){let C=0,B=0;if(e.includes(0)){let E=u.points.find((i,t)=>!e.includes(t));E&&(C=E[0],B=E[1])}let g=u.points.reduce((E,i,t)=>(e.includes(t)||E.push(E.length?F(i[0]-C,i[1]-B):F(0,0)),E),[]);NA._updatePoints(u,g,C,B)}static addPoints(u,e){let C=[...u.points,...e.map(B=>B.point)];NA._updatePoints(u,C,0,0)}static movePoints(u,e,C){var I,Q,r;let{points:B}=u,[g,E]=((I=e.find(({index:s})=>s===0))==null?void 0:I.point)??F(0,0),[i,t]=F(g-B[0][0],E-B[0][1]),o=iA(u)?[((Q=e.find(s=>s.index===0))==null?void 0:Q.point)??B[0],((r=e.find(s=>s.index===B.length-1))==null?void 0:r.point)??B[B.length-1]]:B.map((s,n)=>{var D;let l=((D=e.find(d=>d.index===n))==null?void 0:D.point)??s;return F(l[0]-i,l[1]-t)});NA._updatePoints(u,o,i,t,C,{isDragging:e.reduce((s,n)=>s||n.isDragging===!0,!1)})}static shouldAddMidpoint(u,e,C,B){let g=NA.getElement(u.elementId,B);if(g&&iA(g)||!g)return!1;let{segmentMidpoint:E}=u.pointerDownState;if(E.added||E.value===null||E.index===null||u.pointerDownState.origin===null)return!1;let i=u.pointerDownState.origin,t=TA(F(i.x,i.y),F(e.x,e.y));return!(!C.editingLinearElement&&t0&&e(r[s.index]=s,r),{});t[e]={index:e,start:F(i?E.points[e-1][0]:C-E.x,i?B-E.y:E.points[e-1][1]),end:F(i?E.points[e][0]:C-E.x,i?B-E.y:E.points[e][1])};let o=Object.values(t).sort((r,s)=>r.index-s.index),I=o.map(r=>r.index).reduce((r,s)=>sB.index!==e)}),O(u,{},!0)}};S(Lu,"POINT_HANDLE_SIZE",10),S(Lu,"getEditorMidPoints",(A,u,e)=>{let C=yA(A,u);return!iA(A)&&!e.editingLinearElement&&A.points.length>2&&!C?[]:(bC.version===A.version&&bC.zoom===e.zoom.value||Lu.updateEditorMidPointsCache(A,u,e),bC.points)}),S(Lu,"updateEditorMidPointsCache",(A,u,e)=>{let C=Lu.getPointsGlobalCoordinates(A,u),B=0,g=[];for(;B{let{elementId:B}=A,g=Lu.getElement(B,C);if(!g)return null;let E=Lu.getPointIndexUnderCursor(g,C,e.zoom,u.x,u.y);if(!iA(g)&&E>=0||Lu.getPointsGlobalCoordinates(g,C).length>=3&&!e.editingLinearElement&&!iA(g))return null;let i=(Lu.POINT_HANDLE_SIZE+1)/e.zoom.value,t=A.segmentMidPointHoveredCoords;if(t&&TA(F(t[0],t[1]),F(u.x,u.y))<=i)return t;let o=0,I=Lu.getEditorMidPoints(g,C,e);for(;o{let C=Lu.getPointsGlobalCoordinates(A,e);C.length<2&&O(u,{isDeleted:!0});let B=0,g=0;if(A.points.length%2===1){let E=Math.floor(A.points.length/2),i=Lu.getPointGlobalCoordinates(A,A.points[E],e);B=i[0]-u.width/2,g=i[1]-u.height/2}else{let E=A.points.length/2-1,i=bC.points[E];A.points.length===2&&(i=zE(C[0],C[1])),(!i||bC.version!==A.version)&&(i=Lu.getSegmentMidPoint(A,C[E],C[E+1],E+1,e)),B=i[0]-u.width/2,g=i[1]-u.height/2}return{x:B,y:g}}),S(Lu,"getMinMaxXYWithBoundText",(A,u,e,C)=>{let[B,g,E,i]=e,t=(B+E)/2,o=(g+i)/2,{x:I,y:Q}=Lu.getBoundTextElementPosition(A,C,u),r=I+C.width,s=Q+C.height,n=F(t,o),l=j(F(B,g),n,A.angle),D=j(F(E,g),n,A.angle),d=j(F(I,Q),n,-A.angle),c=j(F(r,Q),n,-A.angle),w=j(F(I,s),n,-A.angle),h=j(F(r,s),n,-A.angle);return l[0]=D[1]?(B=Math.min(B,w[0]),E=Math.max(E,Math.max(c[0],h[0])),g=Math.min(g,d[1]),i=Math.max(i,h[1])):l[0]>=D[0]&&l[1]>D[1]?(B=Math.min(B,h[0]),E=Math.max(E,Math.max(d[0],c[0])),g=Math.min(g,w[1]),i=Math.max(i,c[1])):l[0]>=D[0]?(B=Math.min(B,c[0]),E=Math.max(E,w[0]),g=Math.min(g,h[1]),i=Math.max(i,d[1])):l[1]<=D[1]&&(B=Math.min(B,Math.min(c[0],d[0])),E=Math.max(E,h[0]),g=Math.min(g,c[1]),i=Math.max(i,w[1])),[B,g,E,i,t,o]}),S(Lu,"getElementAbsoluteCoords",(A,u,e=!1)=>{let C,B,g,E,i;if(A.points.length<2||!pu.get(A)){let{minX:Q,minY:r,maxX:s,maxY:n}=A.points.reduce((l,[D,d])=>(l.minY=Math.min(l.minY,d),l.minX=Math.min(l.minX,D),l.maxX=Math.max(l.maxX,D),l.maxY=Math.max(l.maxY,d),l),{minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0});B=Q+A.x,g=r+A.y,E=s+A.x,i=n+A.y}else{let Q=pu.generateElementShape(A,null),r=PC(Q[0]),[s,n,l,D]=ji(r);B=s+A.x,g=n+A.y,E=l+A.x,i=D+A.y}let t=(B+E)/2,o=(g+i)/2;if(C=[B,g,E,i,t,o],!e)return C;let I=yA(A,u);return I&&(C=Lu.getMinMaxXYWithBoundText(A,u,[B,g,E,i],I)),C});var IA=Lu,q_=A=>{let u=[...new Set(A.filter(e=>e!==null&&e!==-1))];return u=u.sort((e,C)=>e-C),u.length?u:null},dg={},ri=(A,u)=>{let e=dg[A]||(dg[A]={height:u});return e.height=u,e},$3=A=>{dg[A]&&delete dg[A]},W_=A=>{var u;return((u=dg[A])==null?void 0:u.height)??null},s0=(A,u,e,C=!0)=>{let B,g={x:A.x,y:A.y,text:A.text,width:A.width,height:A.height,angle:(u==null?void 0:u.angle)??A.angle};g.text=A.text,(u||!A.autoResize)&&(B=u?sC(u,A):A.width,g.text=LB(A.originalText,Au(A),B));let E=t0(g.text,Au(A),A.lineHeight);if(A.autoResize&&(g.width=E.width),g.height=E.height,u){let i=Aa(u,A),t=sC(u,A);if(!UA(u)&&E.height>i){let r=GB(E.height,u.type);O(u,{height:r},C),ri(u.id,r)}if(E.width>t){let r=GB(E.width,u.type);O(u,{width:r},C)}let o={...A,...g},{x:I,y:Q}=$i(u,o,e);g.x=I,g.y=Q}O(A,g,C)},AD=(A,u,e)=>{let C=wA(A);u.forEach(B=>{let g=e.get(B.id),E=rC(B);if(E){let i=e.get(E);if(i){let t=C.get(g);t&&O(t,{boundElements:(B.boundElements||[]).filter(I=>I.id!==i&&I.id!==E).concat({type:"text",id:i})});let o=C.get(i);o&&gA(o)&&O(o,{containerId:t?g:null})}}})},_E=(A,u,e,C=!1)=>{if(!rC(A))return;$3(A.id);let B=yA(A,u);if(B&&B.text){if(!A)return;let g=B.text,E=B.height,i=B.width,t=sC(A,B),o=Aa(A,B),I=A.height;if(C||e!=="n"&&e!=="s"){g&&(g=LB(B.originalText,Au(B),t));let Q=t0(g,Au(B),B.lineHeight);E=Q.height,i=Q.width}if(E>o){I=GB(E,A.type);let Q=I-A.height,r=!UA(A)&&(e==="ne"||e==="nw"||e==="n")?A.y-Q:A.y;O(A,{height:I,y:r})}O(B,{text:g,width:i,height:E}),UA(A)||O(B,$i(A,B,u))}},$i=(A,u,e)=>{if(UA(A))return IA.getBoundTextElementPosition(A,u,e);let C=j_(A),B=Aa(A,u),g=sC(A,u),E,i;return u.verticalAlign===R0.TOP?i=C.y:u.verticalAlign===R0.BOTTOM?i=C.y+(B-u.height):i=C.y+(B/2-u.height/2),u.textAlign===kE.LEFT?E=C.x:u.textAlign===kE.RIGHT?E=C.x+(g-u.width):E=C.x+(g/2-u.width/2),{x:E,y:i}},rC=A=>{var u,e,C;return((u=A==null?void 0:A.boundElements)==null?void 0:u.length)&&((C=(e=A==null?void 0:A.boundElements)==null?void 0:e.find(B=>B.type==="text"))==null?void 0:C.id)||null},yA=(A,u)=>{if(!A)return null;let e=rC(A);return e&&u.get(e)||null},_u=(A,u)=>A&&A.containerId&&u.get(A.containerId)||null,_a=(A,u,e)=>{if(!UA(A))return{x:A.x+A.width/2,y:A.y+A.height/2};let C=IA.getPointsGlobalCoordinates(A,e);if(C.length%2===1){let E=Math.floor(A.points.length/2),i=IA.getPointGlobalCoordinates(A,A.points[E],e);return{x:i[0],y:i[1]}}let B=A.points.length/2-1,g=IA.getEditorMidPoints(A,e,u)[B];return g||(g=IA.getSegmentMidPoint(A,C[B],C[B+1],B+1,e)),{x:g[0],y:g[1]}},j_=A=>{let u=Ku,e=Ku;return A.type==="ellipse"&&(u+=A.width/2*(1-Math.sqrt(2)/2),e+=A.height/2*(1-Math.sqrt(2)/2)),A.type==="diamond"&&(u+=A.width/4,e+=A.height/4),{x:A.x+u,y:A.y+e}},T_=(A,u)=>!u||UA(u)?A.angle:u.angle,z_=(A,u)=>A.some(e=>{if(nu(e)){let C=_u(e,u);return!UA(C)}return!1}),P_=(A,u)=>A.some(e=>{if(nu(e)){let C=_u(e,u);return!UA(C)}return gA(e)}),O_=new Set(["rectangle","ellipse","diamond","arrow"]),V_=A=>O_.has(A.type),GB=(A,u)=>{A=Math.ceil(A);let e=Ku*2;return u==="ellipse"?Math.round((A+e)/Math.sqrt(2)*2):u==="arrow"?A+e*8:u==="diamond"?2*(A+e):A+e},sC=(A,u)=>{let{width:e}=A;if(UA(A)){let C=((u==null?void 0:u.fontSize)??dC)*xq;return Math.max(Lq*e,C)}return A.type==="ellipse"?Math.round(e/2*Math.sqrt(2))-Ku*2:A.type==="diamond"?Math.round(e/2)-Ku*2:e-Ku*2},Aa=(A,u)=>{let{height:e}=A;return UA(A)?e-Ku*8*2<=0?u.height:e:A.type==="ellipse"?Math.round(e/2*Math.sqrt(2))-Ku*2:A.type==="diamond"?Math.round(e/2)-Ku*2:e-Ku*2},X_=(A,u=` + +`)=>A.reduce((e,C)=>(gA(C)&&e.push(C.text),e),[]).join(u),M0=A=>(A=A.trim(),A&&vZ(LI(A))),uD=A=>!!(A!=null&&A.includes(location.origin)||A!=null&&A.startsWith("/")),eD=A=>{if(A=M0(A),A.startsWith("/"))return`${location.origin}${A}`;try{new URL(A)}catch{return"about:blank"}return A},Zt=[],eA=A=>(Zt=Zt.concat(A),A),CD='',__='',BD='',$_=`data:${cA.svg},${encodeURIComponent(`${CD}${BD}`)}`,A$=`data:${cA.svg},${encodeURIComponent(`${CD}${__}${BD}`)}`,ge=A=>{A&&(A.style.cursor="")},$A=(A,u)=>{A&&(A.style.cursor=u)},me,Ws,gD=(A,u)=>{let e=()=>{let C=u===fA.DARK;me=document.createElement("canvas"),me.theme=u,me.height=20,me.width=20;let B=me.getContext("2d");B.lineWidth=1,B.beginPath(),B.arc(me.width/2,me.height/2,5,0,2*Math.PI),B.fillStyle=C?Xu.black:Xu.white,B.fill(),B.strokeStyle=C?Xu.white:Xu.black,B.stroke(),Ws=me.toDataURL(cA.svg)};(!me||me.theme!==u)&&e(),$A(A,`url(${Ws}) ${20/2} ${20/2}, auto`)},be=(A,u)=>{if(A)if(u.activeTool.type==="selection")ge(A);else if(ag(u))A.style.cursor=VA.GRAB;else if(Le(u))gD(A,u.theme);else if(u.activeTool.type==="laser"){let e=u.theme===fA.LIGHT?$_:A$;A.style.cursor=`url(${e}), auto`}else["image","custom"].includes(u.activeTool.type)?u.activeTool.type!=="image"&&(A.style.cursor=VA.AUTO):A.style.cursor=VA.CROSSHAIR},u$=new fZ(Date.now()),e$=0,Je=()=>Math.floor(u$.next()*2**31),V0=()=>tC()?`id${e$++}`:wQ(),we=(A,{x:u,y:e,strokeColor:C=ku.strokeColor,backgroundColor:B=ku.backgroundColor,fillStyle:g=ku.fillStyle,strokeWidth:E=ku.strokeWidth,strokeStyle:i=ku.strokeStyle,roughness:t=ku.roughness,opacity:o=ku.opacity,width:I=0,height:Q=0,angle:r=0,groupIds:s=[],frameId:n=null,index:l=null,roundness:D=null,boundElements:d=null,link:c=null,locked:w=ku.locked,...h})=>((u<-1e6||u>1e6||e<-1e6||e>1e6||I<-1e6||I>1e6||Q<-1e6||Q>1e6)&&console.error("New element size or position is too large",{x:u,y:e,width:I,height:Q,points:h.points}),{id:h.id||V0(),type:A,x:u,y:e,width:I,height:Q,angle:r,strokeColor:C,backgroundColor:B,fillStyle:g,strokeWidth:E,strokeStyle:i,roughness:t,opacity:o,groupIds:s,frameId:n,index:l,roundness:D,seed:h.seed??Je(),version:h.version||1,versionNonce:h.versionNonce??0,isDeleted:!1,boundElements:d,updated:yg(),link:c,locked:w,customData:h.customData}),ve=A=>we(A.type,A),js=A=>we("embeddable",A),C$=A=>({...we("iframe",A)}),XQ=A=>kA({...we("frame",A),type:"frame",name:(A==null?void 0:A.name)||null},{}),qt=A=>kA({...we("magicframe",A),type:"magicframe",name:(A==null?void 0:A.name)||null},{}),ED=(A,u)=>({x:A.textAlign==="center"?u.width/2:A.textAlign==="right"?u.width:0,y:A.verticalAlign==="middle"?u.height/2:0}),f0=A=>{let u=A.fontFamily||zC,e=A.fontSize||dC,C=A.lineHeight||yB(u),B=rg(A.text),g=t0(B,Au({fontFamily:u,fontSize:e}),C),E=A.textAlign||jE,i=A.verticalAlign||PI,t=ED({textAlign:E,verticalAlign:i},g),o={...we("text",A),text:B,fontSize:e,fontFamily:u,textAlign:E,verticalAlign:i,x:A.x-t.x,y:A.y-t.y,width:g.width,height:g.height,containerId:A.containerId||null,originalText:A.originalText??B,autoResize:A.autoResize??!0,lineHeight:C};return kA(o,{})},B$=(A,u,e)=>{let{width:C,height:B}=t0(e,Au(A),A.lineHeight);A.autoResize||(C=A.width);let{textAlign:g,verticalAlign:E}=A,i,t;if(g==="center"&&E===R0.MIDDLE&&!A.containerId&&A.autoResize){let o=t0(A.text,Au(A),A.lineHeight),I=ED(A,{width:C-o.width,height:B-o.height});i=A.x-I.x,t=A.y-I.y}else{let[o,I,Q,r]=pA(A,u),[s,n,l,D]=JC(A,C,B,!1),d=(o-s)/2,c=(I-n)/2,w=(Q-l)/2,h=(r-D)/2;[i,t]=g$({s:!0,e:g==="center"||g==="left",w:g==="center"||g==="right"},A.x,A.y,A.angle,d,c,w,h)}return{width:C,height:B,x:Number.isFinite(i)?i:A.x,y:Number.isFinite(t)?t:A.y}},g$=(A,u,e,C,B,g,E,i)=>{let t=Math.cos(C),o=Math.sin(C);return A.e&&A.w?u+=B+E:A.e?(u+=B*(1+t),e+=B*o,u+=E*(1-t),e+=E*-o):A.w&&(u+=B*(1-t),e+=B*-o,u+=E*(1+t),e+=E*o),A.n&&A.s?e+=g+i:A.n?(u+=g*o,e+=g*(1-t),u+=i*-o,e+=i*(1+t)):(u+=g*-o,e+=g*(1+t),u+=i*o,e+=i*(1-t)),[u,e]},ID=(A,u,e,C=A.text)=>{if(A.isDeleted)return;(u||!A.autoResize)&&(C=LB(C,Au(A),u?sC(u,A):A.width));let B=B$(A,e,C);return{text:C,...B}},E$=A=>({...we(A.type,A),points:A.points||[],pressures:A.pressures||[],simulatePressure:A.simulatePressure,lastCommittedPoint:null}),DB=A=>({...we(A.type,A),points:A.points||[],lastCommittedPoint:null,startBinding:null,endBinding:null,startArrowhead:null,endArrowhead:null}),_Q=A=>A.elbowed?{...we(A.type,A),points:A.points||[],lastCommittedPoint:null,startBinding:null,endBinding:null,startArrowhead:A.startArrowhead||null,endArrowhead:A.endArrowhead||null,elbowed:!0,fixedSegments:A.fixedSegments||[],startIsSpecial:!1,endIsSpecial:!1}:{...we(A.type,A),points:A.points||[],lastCommittedPoint:null,startBinding:null,endBinding:null,startArrowhead:A.startArrowhead||null,endArrowhead:A.endArrowhead||null,elbowed:!1},iD=A=>({...we("image",A),strokeColor:"transparent",status:A.status??"pending",fileId:A.fileId??null,scale:A.scale??[1,1],crop:A.crop??null}),si=(A,u=0)=>{if(A==null||typeof A!="object")return A;let e=Object.prototype.toString.call(A);if(e==="[object Object]"){let C=typeof A.constructor=="function"?Object.create(Object.getPrototypeOf(A)):{};for(let B in A)if(A.hasOwnProperty(B)){if(u===0&&(B==="shape"||B==="canvas"))continue;C[B]=si(A[B],u+1)}return C}if(Array.isArray(A)){let C=A.length,B=new Array(C);for(;C--;)B[C]=si(A[C],u+1);return B}return bA.DEV&&e!=="[object Object]"&&e!=="[object Array]"&&e.startsWith("[object ")&&console.warn(`_deepCloneElement: unexpected object type ${e}. This value will not be cloned!`),A},xB=A=>si(A),aD=(A,u)=>{Object.defineProperty(A,Rq,{value:u,writable:!1,enumerable:!1})},ni=()=>V0(),tD=(A,u,e,C)=>{let B=xB(e);return tC()&&aD(B,e.id),B.id=ni(),B.boundElements=null,B.updated=yg(),B.seed=Je(),B.groupIds=U_(B.groupIds,A,g=>(u.has(g)||u.set(g,ni()),u.get(g))),C&&(B=Object.assign(B,C)),B},QD=(A,u)=>{let e=[],C=wA(A),B=new Map,g=i=>{if(B.has(i))return B.get(i);if(C.has(i)){let t=ni();return B.set(i,t),t}return null},E=new Map;for(let i of A){let t=si(i);if(t.id=g(i.id),tC()&&aD(t,i.id),u!=null&&u.randomizeSeed&&(t.seed=Je(),ga(t)),t.groupIds&&(t.groupIds=t.groupIds.map(o=>(E.has(o)||E.set(o,ni()),E.get(o)))),"containerId"in t&&t.containerId){let o=g(t.containerId);t.containerId=o}if("boundElements"in t&&t.boundElements&&(t.boundElements=t.boundElements.reduce((o,I)=>{let Q=g(I.id);return Q&&o.push({...I,id:Q}),o},[])),"endBinding"in t&&t.endBinding){let o=g(t.endBinding.elementId);t.endBinding=o?{...t.endBinding,elementId:o}:null}if("startBinding"in t&&t.startBinding){let o=g(t.startBinding.elementId);t.startBinding=o?{...t.startBinding,elementId:o}:null}t.frameId&&(t.frameId=g(t.frameId)),e.push(t)}return e},$Q=(A,{shouldThrow:u=!1,includeBoundTextValidation:e=!1,ignoreLogs:C,reconciliationContext:B})=>{let g=[],E=t=>`${t==null?void 0:t.index}:${t==null?void 0:t.id}:${t==null?void 0:t.type}:${t==null?void 0:t.isDeleted}:${t==null?void 0:t.version}:${t==null?void 0:t.versionNonce}`,i=A.map(t=>t.index);for(let[t,o]of i.entries()){let I=i[t-1],Q=i[t+1];if(Wt(o,I,Q)||g.push(`Fractional indices invariant has been compromised: "${E(A[t-1])}", "${E(A[t])}", "${E(A[t+1])}"`),e&&O0(A[t])){let r=A[t],s=yA(r,wA(A));s&&s.index<=r.index&&g.push(`Fractional indices invariant for bound elements has been compromised: "${E(s)}", "${E(r)}"`)}}if(g.length){let t=new pT,o=[];if(B&&(o.push("Additional reconciliation context:"),o.push(B.localElements.map(I=>E(I))),o.push(B.remoteElements.map(I=>E(I)))),C||console.error(g.join(` + +`),t.stack,A.map(I=>E(I)),...o),u)throw t}},I$=A=>A.sort((u,e)=>Ts(u)&&Ts(e)?u.indexe.index?1:u.id{try{let e=i$(A,u),C=oD(A,e),B=A.map(g=>C.has(g)?{...g,...C.get(g)}:g);$Q(B,{includeBoundTextValidation:!1,shouldThrow:!0,ignoreLogs:!0});for(let[g,E]of C)O(g,E,!1)}catch{nC(A)}return A},nC=A=>{let u=a$(A),e=oD(A,u);for(let[C,B]of e)O(C,B,!1);return A},i$=(A,u)=>{let e=[],C=0;for(;C{let u=[],e,C,B=-1,g=0,E=o=>{var r;let I=A[B]?A[B].index:void 0,Q=(r=A[o-1])==null?void 0:r.index;return!I&&Q||I&&Q&&Q>I?[Q,o-1]:[I,B]},i=o=>{var r;let I=A[g]?A[g].index:void 0;if(I&&oI)return[s,Q]}return[void 0,Q]},t=0;for(;tA?u&&e?u{var C,B;let e=new Map;for(let g of u){let E=g.shift(),i=g.pop(),t=KZ((C=A[E])==null?void 0:C.index,(B=A[i])==null?void 0:B.index,g.length);for(let o=0;o!!A.index,Ru=class ye{constructor(u,e){this.deleted=u,this.inserted=e}static create(u,e,C,B){let g=C&&B!=="inserted"?C(u):u,E=C&&B!=="deleted"?C(e):e;return new ye(g,E)}static calculate(u,e,C,B){if(u===e)return ye.empty();let g={},E={};for(let o of this.distinctKeysIterator("full",u,e))g[o]=u[o],E[o]=e[o];let[i,t]=B?B(g,E):[g,E];return ye.create(i,t,C)}static empty(){return new ye({},{})}static isEmpty(u){return!Object.keys(u.deleted).length&&!Object.keys(u.inserted).length}static mergeObjects(u,e,C){let B={...u};for(let g of Object.keys(C))delete B[g];return{...B,...e}}static mergeArrays(u,e,C,B){return Object.values(ye.mergeObjects(Xe(u??[],B),Xe(e??[],B),Xe(C??[],B)))}static diffObjects(u,e,C,B){if(!(!u[C]&&!e[C])&&(typeof u[C]=="object"||typeof e[C]=="object")){let g=u[C]??{},E=e[C]??{},i=ye.getLeftDifferences(g,E).reduce((o,I)=>(o[I]=B(g[I]),o),{}),t=ye.getRightDifferences(g,E).reduce((o,I)=>(o[I]=B(E[I]),o),{});Object.keys(i).length||Object.keys(t).length?(Reflect.set(u,C,i),Reflect.set(e,C,t)):(Reflect.deleteProperty(u,C),Reflect.deleteProperty(e,C))}}static diffArrays(u,e,C,B){if(!(!u[C]&&!e[C])&&(Array.isArray(u[C])||Array.isArray(e[C]))){let g=Array.isArray(u[C])?u[C]:[],E=Array.isArray(e[C])?e[C]:[],i=Xe(ye.getLeftDifferences(Xe(g,B),Xe(E,B))),t=Xe(ye.getRightDifferences(Xe(g,B),Xe(E,B)));if(Object.keys(i).length||Object.keys(t).length){let o=g.filter(Q=>i[B?B(Q):String(Q)]),I=E.filter(Q=>t[B?B(Q):String(Q)]);Reflect.set(u,C,o),Reflect.set(e,C,I)}else Reflect.deleteProperty(u,C),Reflect.deleteProperty(e,C)}}static isLeftDifferent(u,e,C=!1){return!!this.distinctKeysIterator("left",u,e,C).next().value}static isRightDifferent(u,e,C=!1){return!!this.distinctKeysIterator("right",u,e,C).next().value}static getLeftDifferences(u,e,C=!1){return Array.from(this.distinctKeysIterator("left",u,e,C))}static getRightDifferences(u,e,C=!1){return Array.from(this.distinctKeysIterator("right",u,e,C))}static*distinctKeysIterator(u,e,C,B=!1){if(e===C)return;let g=[];u==="left"?g=Object.keys(e):u==="right"?g=Object.keys(C):u==="full"?g=Array.from(new Set([...Object.keys(e),...Object.keys(C)])):FB(u,`Unknown distinctKeysIterator's join param "${u}"`,!0);for(let E of g){let i=e[E],t=C[E];if(i!==t){if(!B&&typeof i=="object"&&typeof t=="object"&&i!==null&&t!==null&&A0(i,t))continue;yield E}}}},zs=class p0{constructor(u){this.delta=u}static calculate(u,e){let C=Ru.calculate(u,e,void 0,p0.postProcess);return new p0(C)}static empty(){return new p0(Ru.create({},{}))}inverse(){let u=Ru.create(this.delta.inserted,this.delta.deleted);return new p0(u)}applyTo(u,e){try{let{selectedElementIds:C={},selectedGroupIds:B={}}=this.delta.deleted,{selectedElementIds:g={},selectedGroupIds:E={},selectedLinearElementId:i,editingLinearElementId:t,...o}=this.delta.inserted,I=Ru.mergeObjects(u.selectedElementIds,g,C),Q=Ru.mergeObjects(u.selectedGroupIds,E,B),r=i&&e.has(i)?new IA(e.get(i)):null,s=t&&e.has(t)?new IA(e.get(t)):null,n={...u,...o,selectedElementIds:I,selectedGroupIds:Q,selectedLinearElement:typeof i<"u"?r:u.selectedLinearElement,editingLinearElement:typeof t<"u"?s:u.editingLinearElement},l=this.filterInvisibleChanges(u,n,e);return[n,l]}catch(C){if(console.error("Couldn't apply appstate change",C),bA.DEV||bA.MODE===G0.TEST)throw C;return[u,!1]}}isEmpty(){return Ru.isEmpty(this.delta)}static postProcess(u,e){try{Ru.diffObjects(u,e,"selectedElementIds",C=>!0),Ru.diffObjects(u,e,"selectedGroupIds",C=>C??!1)}catch(C){if(console.error("Couldn't postprocess appstate change deltas."),bA.DEV||bA.MODE===G0.TEST)throw C}finally{return[u,e]}}filterInvisibleChanges(u,e,C){let B=li(u),g=li(e),E=Ru.isRightDifferent(p0.stripElementsProps(B),p0.stripElementsProps(g)),i=Ru.isRightDifferent(p0.stripStandaloneProps(B),p0.stripStandaloneProps(g));if(!E&&!i)return!1;let t={value:E};if(i){let o=Ru.getRightDifferences(p0.stripStandaloneProps(B),p0.stripStandaloneProps(g)),I=new Set;(o.includes("editingGroupId")||o.includes("selectedGroupIds"))&&(I=N_(C));for(let Q of o)switch(Q){case"selectedElementIds":e[Q]=p0.filterSelectedElements(e[Q],C,t);break;case"selectedGroupIds":e[Q]=p0.filterSelectedGroups(e[Q],I,t);break;case"croppingElementId":{let l=e[Q],D=l&&C.get(l);D&&!D.isDeleted?t.value=!0:e[Q]=null;break}case"editingGroupId":let r=e[Q];r?I.has(r)?t.value=!0:e[Q]=null:t.value=!0;break;case"selectedLinearElementId":case"editingLinearElementId":let s=p0.convertToAppStateKey(Q),n=e[s];if(!n)t.value=!0;else{let l=C.get(n.elementId);l&&!l.isDeleted?t.value=!0:e[s]=null}break;default:FB(Q,`Unknown ObservedElementsAppState's key "${Q}"`,!0)}}return t.value}static convertToAppStateKey(u){switch(u){case"selectedLinearElementId":return"selectedLinearElement";case"editingLinearElementId":return"editingLinearElement"}}static filterSelectedElements(u,e,C){let B=Object.keys(u);if(!B.length)return C.value=!0,u;let g={...u};for(let E of B){let i=e.get(E);i&&!i.isDeleted?C.value=!0:delete g[E]}return g}static filterSelectedGroups(u,e,C){if(!Object.keys(u).length)return C.value=!0,u;let B={...u};for(let g of Object.keys(B))e.has(g)?C.value=!0:delete B[g];return B}static stripElementsProps(u){let{editingGroupId:e,selectedGroupIds:C,selectedElementIds:B,editingLinearElementId:g,selectedLinearElementId:E,croppingElementId:i,...t}=u;return t}static stripStandaloneProps(u){let{name:e,viewBackgroundColor:C,...B}=u;return B}},RC=class du{constructor(u,e,C){this.added=u,this.removed=e,this.updated=C}static create(u,e,C,B={shouldRedistribute:!1}){let g;if(B.shouldRedistribute){let E=new Map,i=new Map,t=new Map,o=[...u,...e,...C];for(let[I,Q]of o)this.satisfiesAddition(Q)?E.set(I,Q):this.satisfiesRemoval(Q)?i.set(I,Q):t.set(I,Q);g=new du(E,i,t)}else g=new du(u,e,C);return(bA.DEV||bA.MODE===G0.TEST)&&(du.validate(g,"added",this.satisfiesAddition),du.validate(g,"removed",this.satisfiesRemoval),du.validate(g,"updated",this.satisfiesUpdate)),g}static validate(u,e,C){for(let[B,g]of u[e].entries())if(!C(g))throw console.error(`Broken invariant for "${e}" delta, element "${B}", delta:`,g),new Error(`ElementsChange invariant broken for element "${B}".`)}static calculate(u,e){if(u===e)return du.empty();let C=new Map,B=new Map,g=new Map;for(let E of u.values())if(!e.get(E.id)){let i={...E,isDeleted:!1},t={isDeleted:!0},o=Ru.create(i,t,du.stripIrrelevantProps);B.set(E.id,o)}for(let E of e.values()){let i=u.get(E.id);if(!i){let t={isDeleted:!0},o={...E,isDeleted:!1},I=Ru.create(t,o,du.stripIrrelevantProps);C.set(E.id,I);continue}if(i.versionNonce!==E.versionNonce){let t=Ru.calculate(i,E,du.stripIrrelevantProps,du.postProcess);if(typeof i.isDeleted=="boolean"&&typeof E.isDeleted=="boolean"&&i.isDeleted!==E.isDeleted){i.isDeleted&&!E.isDeleted?C.set(E.id,t):B.set(E.id,t);continue}Ru.isEmpty(t)||g.set(E.id,t)}}return du.create(C,B,g)}static empty(){return du.create(new Map,new Map,new Map)}inverse(){let u=g=>{let E=new Map;for(let[i,t]of g.entries())E.set(i,Ru.create(t.inserted,t.deleted));return E},e=u(this.added),C=u(this.removed),B=u(this.updated);return du.create(C,e,B)}isEmpty(){return this.added.size===0&&this.removed.size===0&&this.updated.size===0}applyLatestChanges(u){let e=i=>t=>{let o={};for(let I of Object.keys(t))switch(I){case"boundElements":o[I]=t[I];break;default:o[I]=i[I]}return o},C=i=>{let t=new Map;for(let[o,I]of i.entries()){let Q=u.get(o);if(Q){let r=Ru.create(I.deleted,I.inserted,e(Q),"inserted");t.set(o,r)}else t.set(o,I)}return t},B=C(this.added),g=C(this.removed),E=C(this.updated);return du.create(B,g,E,{shouldRedistribute:!0})}applyTo(u,e){let C=z0(new Map(u)),B,g={containsVisibleDifference:!1,containsZindexDifference:!1};try{let E=du.createApplier(C,e,g),i=E(this.added),t=E(this.removed),o=E(this.updated),I=this.resolveConflicts(u,C);B=new Map([...i,...t,...o,...I])}catch(E){if(console.error("Couldn't apply elements change",E),bA.DEV||bA.MODE===G0.TEST)throw E;return[u,!0]}try{du.redrawTextBoundingBoxes(C,B),C=du.reorderElements(C,B,g),du.redrawBoundArrows(C,B)}catch(E){if(console.error("Couldn't mutate elements after applying elements change",E),bA.DEV||bA.MODE===G0.TEST)throw E}finally{return[C,g.containsVisibleDifference]}}static applyDelta(u,e,C={containsVisibleDifference:!0,containsZindexDifference:!0}){var E,i;let{boundElements:B,...g}=e.inserted;if((E=e.deleted.boundElements)!=null&&E.length||(i=e.inserted.boundElements)!=null&&i.length){let t=Ru.mergeArrays(u.boundElements,e.inserted.boundElements,e.deleted.boundElements,o=>o.id);Object.assign(g,{boundElements:t})}if(jA(u)){let t=e;(t.deleted.crop||t.inserted.crop)&&Object.assign(g,{crop:t.inserted.crop??null})}if(!C.containsVisibleDifference){let{index:t,...o}=g,I=du.checkForVisibleDifference(u,o);C.containsVisibleDifference=I}return C.containsZindexDifference||(C.containsZindexDifference=e.deleted.index!==e.inserted.index),kA(u,g)}static checkForVisibleDifference(u,e){return u.isDeleted&&e.isDeleted!==!1?!1:u.isDeleted&&e.isDeleted===!1||u.isDeleted===!1&&e.isDeleted?!0:Ru.isRightDifferent(u,e)}resolveConflicts(u,e){let C=new Map,B=(o,I)=>{let Q=e.get(o.id);if(!Q)return;let r;u.get(o.id)===Q?r=kA(Q,I):r=O(Q,I),C.set(r.id,r),e.set(r.id,r)};for(let[o]of this.removed)du.unbindAffected(u,e,o,B);for(let[o]of this.added)du.rebindAffected(u,e,o,B);for(let[o]of Array.from(this.updated).filter(([I,Q])=>Object.keys({...Q.deleted,...Q.inserted}).find(r=>F_.has(r)))){let I=e.get(o);!I||I.isDeleted||du.rebindAffected(u,e,o,B)}let g=new Map(Array.from(u).filter(([o])=>C.has(o))),{added:E,removed:i,updated:t}=du.calculate(g,C);for(let[o,I]of E)this.added.set(o,I);for(let[o,I]of i)this.removed.set(o,I);for(let[o,I]of t)this.updated.set(o,I);return C}static unbindAffected(u,e,C,B){let g=()=>u.get(C),E=()=>e.get(C);XB.unbindAffected(e,g(),B),XB.unbindAffected(e,E(),B),_B.unbindAffected(e,g(),B),_B.unbindAffected(e,E(),B)}static rebindAffected(u,e,C,B){let g=()=>u.get(C),E=()=>e.get(C);XB.unbindAffected(e,g(),B),XB.rebindAffected(e,E(),B),_B.unbindAffected(e,g(),(i,t)=>{gA(i)&&B(i,t)}),_B.rebindAffected(e,E(),B)}static redrawTextBoundingBoxes(u,e){let C=new Map;for(let B of e.values()){if(nu(B)){let{containerId:g}=B,E=g?u.get(g):void 0;E&&C.set(E.id,{container:E,boundText:B})}if(O0(B)){let g=rC(B),E=g?u.get(g):void 0;E&&C.set(B.id,{container:B,boundText:E})}}for(let{container:B,boundText:g}of C.values())B.isDeleted||g.isDeleted||s0(g,B,u,!1)}static redrawBoundArrows(u,e){for(let C of e.values())!C.isDeleted&&ce(C)&&U0(C,u,{})}static reorderElements(u,e,C){if(!C.containsZindexDifference)return u;let B=Array.from(u.values()),g=I$([...B]),E=Ru.getRightDifferences(B,g,!0).reduce((i,t)=>{let o=B[Number(t)];return o&&e.has(o.id)&&i.set(o.id,o),i},new Map);return!C.containsVisibleDifference&&E.size&&(C.containsVisibleDifference=!0),wA(Ze(g,E))}static postProcess(u,e){try{Ru.diffArrays(u,e,"boundElements",C=>C.id)}catch(C){if(console.error("Couldn't postprocess elements change deltas."),bA.DEV||bA.MODE===G0.TEST)throw C}finally{return[u,e]}}static stripIrrelevantProps(u){let{id:e,updated:C,version:B,versionNonce:g,seed:E,...i}=u;return i}};S(RC,"satisfiesAddition",({deleted:A,inserted:u})=>A.isDeleted===!0&&!u.isDeleted),S(RC,"satisfiesRemoval",({deleted:A,inserted:u})=>!A.isDeleted&&u.isDeleted===!0),S(RC,"satisfiesUpdate",({deleted:A,inserted:u})=>!!A.isDeleted==!!u.isDeleted),S(RC,"createApplier",(A,u,e)=>{let C=RC.createGetter(A,u,e);return B=>Array.from(B.entries()).reduce((g,[E,i])=>{let t=C(E,i.inserted);if(t){let o=RC.applyDelta(t,i,e);A.set(o.id,o),g.set(o.id,o)}return g},new Map)}),S(RC,"createGetter",(A,u,e)=>(C,B)=>{let g=A.get(C);return g||(g=u.get(C),g&&(e.containsZindexDifference=!0,(B.isDeleted===!1||B.isDeleted!==!0&&g.isDeleted===!1)&&(e.containsVisibleDifference=!0))),g});var Ps=RC,xe=class{constructor(){S(this,"subscribers",[])}on(...A){let u=A.flat().filter(e=>typeof e=="function");return this.subscribers.push(...u),()=>this.off(u)}once(...A){let u=A.flat().filter(C=>typeof C=="function");u.push(()=>e());let e=this.on(...u);return e}off(...A){let u=A.flat();this.subscribers=this.subscribers.filter(e=>!u.includes(e))}trigger(...A){for(let u of this.subscribers)u(...A);return this}clear(){this.subscribers=[]}},rD="__observedAppState",li=A=>{var e,C;let u={name:A.name,editingGroupId:A.editingGroupId,viewBackgroundColor:A.viewBackgroundColor,selectedElementIds:A.selectedElementIds,selectedGroupIds:A.selectedGroupIds,editingLinearElementId:((e=A.editingLinearElement)==null?void 0:e.elementId)||null,selectedLinearElementId:((C=A.selectedLinearElement)==null?void 0:C.elementId)||null,croppingElementId:A.croppingElementId};return Reflect.defineProperty(u,rD,{value:!0,enumerable:!1}),u},t$=A=>!!Reflect.get(A,rD),T={IMMEDIATELY:"IMMEDIATELY",NEVER:"NEVER",EVENTUALLY:"EVENTUALLY"},Q$=class{constructor(A,u){this.elementsChange=A,this.appStateChange=u}},o$=class{constructor(){S(this,"onStoreIncrementEmitter",new xe),S(this,"scheduledActions",new Set),S(this,"_snapshot",Os.empty()),S(this,"shouldCaptureIncrement",()=>{this.scheduleAction(T.IMMEDIATELY)}),S(this,"shouldUpdateSnapshot",()=>{this.scheduleAction(T.NEVER)}),S(this,"scheduleAction",A=>{this.scheduledActions.add(A),this.satisfiesScheduledActionsInvariant()}),S(this,"commit",(A,u)=>{try{this.scheduledActions.has(T.IMMEDIATELY)?this.captureIncrement(A,u):this.scheduledActions.has(T.NEVER)&&this.updateSnapshot(A,u)}finally{this.satisfiesScheduledActionsInvariant(),this.scheduledActions=new Set}}),S(this,"captureIncrement",(A,u)=>{let e=this.snapshot,C=this.snapshot.maybeClone(A,u);if(e!==C){let B=C.meta.didElementsChange?Ps.calculate(e.elements,C.elements):Ps.empty(),g=C.meta.didAppStateChange?zs.calculate(e.appState,C.appState):zs.empty();(!B.isEmpty()||!g.isEmpty())&&this.onStoreIncrementEmitter.trigger(new Q$(B,g)),this.snapshot=C}}),S(this,"updateSnapshot",(A,u)=>{let e=this.snapshot.maybeClone(A,u);this.snapshot!==e&&(this.snapshot=e)}),S(this,"filterUncomittedElements",(A,u)=>{for(let[e,C]of A.entries()){if(!u.get(e))continue;let B=this.snapshot.elements.get(e);B?B.version{this.snapshot=Os.empty(),this.scheduledActions=new Set}),S(this,"satisfiesScheduledActionsInvariant",()=>{if(!(this.scheduledActions.size>=0&&this.scheduledActions.size<=3)){let A=`There can be at most three store actions scheduled at the same time, but there are "${this.scheduledActions.size}".`;if(console.error(A,this.scheduledActions.values()),bA.DEV||bA.MODE===G0.TEST)throw new Error(A)}})}get snapshot(){return this._snapshot}set snapshot(A){this._snapshot=A}},Os=class jt{constructor(u,e,C={didElementsChange:!1,didAppStateChange:!1,isEmpty:!1}){this.elements=u,this.appState=e,this.meta=C}static empty(){return new jt(new Map,li(He()),{didElementsChange:!1,didAppStateChange:!1,isEmpty:!0})}isEmpty(){return this.meta.isEmpty}maybeClone(u,e){let C=this.maybeCreateElementsSnapshot(u),B=this.maybeCreateAppStateSnapshot(e),g=!1,E=!1;return this.elements!==C&&(g=!0),this.appState!==B&&(E=!0),!g&&!E?this:new jt(C,B,{didElementsChange:g,didAppStateChange:E})}maybeCreateAppStateSnapshot(u){if(!u)return this.appState;let e=t$(u)?u:li(u);return this.detectChangedAppState(e)?e:this.appState}detectChangedAppState(u){return!A0(this.appState,u,{selectedElementIds:A0,selectedGroupIds:A0})}maybeCreateElementsSnapshot(u){return u?this.detectChangedElements(u)?this.createElementsSnapshot(u):this.elements:this.elements}detectChangedElements(u){if(this.elements===u)return!1;if(this.elements.size!==u.size)return!0;let e=Array.from(u.keys());for(let C=e.length-1;C>=0;C--){let B=this.elements.get(e[C]),g=u.get(e[C]);if(!B||!g||B.id!==g.id||B.versionNonce!==g.versionNonce)return!0}return!1}createElementsSnapshot(u){let e=new Map;for(let[C,B]of this.elements.entries())u.get(C)?e.set(C,B):e.set(C,kA(B,{isDeleted:!0}));for(let[C,B]of u.entries()){let g=e.get(C);(!g||g&&g.versionNonce!==B.versionNonce)&&e.set(C,xB(B))}return e}},ke=new Map,r$=/^(?:http(?:s)?:\/\/)?(?:www\.)?youtu(?:be\.com|\.be)\/(embed\/|watch\?v=|shorts\/|playlist\?list=|embed\/videoseries\?list=)?([a-zA-Z0-9_-]+)(?:\?t=|&t=|\?start=|&start=)?([a-zA-Z0-9_-]+)?[^\s]*$/,s$=/^(?:http(?:s)?:\/\/)?(?:(?:w){3}\.)?(?:player\.)?vimeo\.com\/(?:video\/)?([^?\s]+)(?:\?.*)?$/,n$=/^https:\/\/(?:www\.)?figma\.com/,Vs=/^https:\/\/gist\.github\.com\/([\w_-]+)\/([\w_-]+)/,l$=/^$/i,_s=/giphy.com\/(?:clips|embed|gifs)\/[a-zA-Z0-9]*?-?([a-zA-Z0-9]+)(?:[^a-zA-Z0-9]|$)/,$s=/^(?:http(?:s)?:\/\/)?(?:www\.)?reddit\.com\/r\/([a-zA-Z0-9_]+)\/comments\/([a-zA-Z0-9_]+)\/([a-zA-Z0-9_]+)\/?(?:\?[^#\s]*)?(?:#[^\s]*)?$/,w$=/^`${A}`,$B=A=>{if(!A)return null;if(ke.has(A))return ke.get(A);let u=A,e=A4.has(zt(A,A4)||""),C="generic",B={w:560,h:840},g=A.match(r$);if(g!=null&&g[2]){let t=g[3]?`&start=${g[3]}`:"",o=A.includes("shorts");switch(C="video",g[1]){case"embed/":case"watch?v=":case"shorts/":A=`https://www.youtube.com/embed/${g[2]}?enablejsapi=1${t}`;break;case"playlist?list=":case"embed/videoseries?list=":A=`https://www.youtube.com/embed/videoseries?list=${g[2]}&enablejsapi=1${t}`;break;default:A=`https://www.youtube.com/embed/${g[2]}?enablejsapi=1${t}`;break}return B=o?{w:315,h:560}:{w:560,h:315},ke.set(u,{link:A,intrinsicSize:B,type:C,sandbox:{allowSameOrigin:e}}),{link:A,intrinsicSize:B,type:C,sandbox:{allowSameOrigin:e}}}let E=A.match(s$);if(E!=null&&E[1]){let t=E==null?void 0:E[1],o=/^\d+$/.test(t)?void 0:new URIError("Invalid embed link format");return C="video",A=`https://player.vimeo.com/video/${t}?api=1`,B={w:560,h:315},ke.set(u,{link:A,intrinsicSize:B,type:C,sandbox:{allowSameOrigin:e}}),{link:A,intrinsicSize:B,type:C,error:o,sandbox:{allowSameOrigin:e}}}if(A.match(n$))return C="generic",A=`https://www.figma.com/embed?embed_host=share&url=${encodeURIComponent(A)}`,B={w:550,h:550},ke.set(u,{link:A,intrinsicSize:B,type:C,sandbox:{allowSameOrigin:e}}),{link:A,intrinsicSize:B,type:C,sandbox:{allowSameOrigin:e}};let i=A.match(c$);if(i)return A=i[1]==="embed"?i[0]:i[0].replace("/v","/embed"),ke.set(u,{link:A,intrinsicSize:B,type:C,sandbox:{allowSameOrigin:e}}),{link:A,intrinsicSize:B,type:C,sandbox:{allowSameOrigin:e}};if(Xs.test(A)){let t=A.match(Xs)[1],o=LI(`https://twitter.com/x/status/${t}`),I={type:"document",srcdoc:Q=>sE(`
    + + + + + diff --git a/axhub-make/admin/dev-template.html b/axhub-make/admin/dev-template.html new file mode 100644 index 0000000..8dad22b --- /dev/null +++ b/axhub-make/admin/dev-template.html @@ -0,0 +1,569 @@ + + + + + + {{TITLE}} + + + + + + + + + + +
    + + + + + + + + + + + + diff --git a/axhub-make/admin/html-template.html b/axhub-make/admin/html-template.html new file mode 100644 index 0000000..a3f7898 --- /dev/null +++ b/axhub-make/admin/html-template.html @@ -0,0 +1,106 @@ + + + + + + {{TITLE}} + + + + + + + + +
    + + + + + + + + + + + + diff --git a/axhub-make/admin/images/favicon.ico b/axhub-make/admin/images/favicon.ico new file mode 100644 index 0000000..f19bf06 Binary files /dev/null and b/axhub-make/admin/images/favicon.ico differ diff --git a/axhub-make/admin/images/iPad-mockups.png b/axhub-make/admin/images/iPad-mockups.png new file mode 100644 index 0000000..080c2a9 Binary files /dev/null and b/axhub-make/admin/images/iPad-mockups.png differ diff --git a/axhub-make/admin/images/iPhone-mockups.png b/axhub-make/admin/images/iPhone-mockups.png new file mode 100644 index 0000000..b11a05a Binary files /dev/null and b/axhub-make/admin/images/iPhone-mockups.png differ diff --git a/axhub-make/admin/index.html b/axhub-make/admin/index.html new file mode 100644 index 0000000..a71ae5f --- /dev/null +++ b/axhub-make/admin/index.html @@ -0,0 +1,191 @@ + + + + + + + + 未命名项目 - Axhub Make + + + + + + + + + + + + + + + + + + +
    + + + diff --git a/axhub-make/admin/spec-template.html b/axhub-make/admin/spec-template.html new file mode 100644 index 0000000..cfb82ab --- /dev/null +++ b/axhub-make/admin/spec-template.html @@ -0,0 +1,217 @@ + + + + + + {{TITLE}} - Spec + + + + + + + +
    加载中
    + + + + + + + + + + + + diff --git a/axhub-make/assets/media/home.png b/axhub-make/assets/media/home.png new file mode 100644 index 0000000..1c32f3d Binary files /dev/null and b/axhub-make/assets/media/home.png differ diff --git a/axhub-make/package-lock.json b/axhub-make/package-lock.json new file mode 100644 index 0000000..21e3b54 --- /dev/null +++ b/axhub-make/package-lock.json @@ -0,0 +1,5893 @@ +{ + "name": "axhub-make", + "version": "0.3.3", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "axhub-make", + "version": "0.3.3", + "dependencies": { + "archiver": "^7.0.1", + "extract-zip": "^2.0.1", + "formidable": "^3.5.4", + "iconv-lite": "^0.7.1", + "lowdb": "^7.0.1", + "lucide-react": "^0.562.0", + "papaparse": "^5.5.3", + "uuid": "^13.0.0" + }, + "devDependencies": { + "@ant-design/icons": "^6.1.0", + "@axhub/make": "^0.5.3", + "@tailwindcss/vite": "^4.1.18", + "@vitejs/plugin-react": "^5.0.0", + "antd": "^6.1.2", + "echarts": "^6.0.0", + "execa": "^9.6.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "tailwindcss": "^4.1.18", + "typescript": "^5.9.3", + "vite": "^5.0.0", + "vitest": "^4.0.16", + "ws": "^8.18.3" + } + }, + "node_modules/@ant-design/colors": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-8.0.1.tgz", + "integrity": "sha512-foPVl0+SWIslGUtD/xBr1p9U4AKzPhNYEseXYRRo5QSzGACYZrQbe11AYJbYfAWnWSpGBx6JjBmSeugUsD9vqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ant-design/fast-color": "^3.0.0" + } + }, + "node_modules/@ant-design/cssinjs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@ant-design/cssinjs/-/cssinjs-2.1.2.tgz", + "integrity": "sha512-2Hy8BnCEH31xPeSLbhhB2ctCPXE2ZnASdi+KbSeS79BNbUhL9hAEe20SkUk+BR8aKTmqb6+FKFruk7w8z0VoRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.1", + "@emotion/hash": "^0.8.0", + "@emotion/unitless": "^0.7.5", + "@rc-component/util": "^1.4.0", + "clsx": "^2.1.1", + "csstype": "^3.1.3", + "stylis": "^4.3.4" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@ant-design/cssinjs-utils": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@ant-design/cssinjs-utils/-/cssinjs-utils-2.1.2.tgz", + "integrity": "sha512-5fTHQ158jJJ5dC/ECeyIdZUzKxE/mpEMRZxthyG1sw/AKRHKgJBg00Yi6ACVXgycdje7KahRNvNET/uBccwCnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ant-design/cssinjs": "^2.1.2", + "@babel/runtime": "^7.23.2", + "@rc-component/util": "^1.4.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/@ant-design/fast-color": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@ant-design/fast-color/-/fast-color-3.0.1.tgz", + "integrity": "sha512-esKJegpW4nckh0o6kV3Tkb7NPIZYbPnnFxmQDUmL08ukXZAvV85TZBr70eGuke/CIArLaP6aw8lt9KILjnWuOw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.x" + } + }, + "node_modules/@ant-design/icons": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-6.1.1.tgz", + "integrity": "sha512-AMT4N2y++TZETNHiM77fs4a0uPVCJGuL5MTonk13Pvv7UN7sID1cNEZOc1qNqx6zLKAOilTEFAdAoAFKa0U//Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ant-design/colors": "^8.0.0", + "@ant-design/icons-svg": "^4.4.0", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@ant-design/icons-svg": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.4.2.tgz", + "integrity": "sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@ant-design/react-slick": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-2.0.0.tgz", + "integrity": "sha512-HMS9sRoEmZey8LsE/Yo6+klhlzU12PisjrVcydW3So7RdklyEd2qehyU6a7Yp+OYN72mgsYs3NFCyP2lCPFVqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4", + "clsx": "^2.1.1", + "json2mq": "^0.2.0", + "throttle-debounce": "^5.0.0" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/@axhub/make": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@axhub/make/-/make-0.5.3.tgz", + "integrity": "sha512-gFgsTx4AW6gWiuLfWha8S4ylbxgP6SAAJKoWVClMyeHFDZP85RcXOaLb4C1cjc2KUFueGPt9w7q9YIIXhAvCAQ==", + "dev": true, + "bin": { + "axhub-make": "bin/cli.mjs", + "make": "bin/cli.mjs", + "make-server": "bin/cli.mjs" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz", + "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", + "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz", + "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@emnapi/core": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.2.tgz", + "integrity": "sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.2.1", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/core/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD", + "optional": true + }, + "node_modules/@emnapi/runtime": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.2.tgz", + "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD", + "optional": true + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", + "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD", + "optional": true + }, + "node_modules/@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==", + "dev": true, + "license": "MIT" + }, + "node_modules/@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.2.tgz", + "integrity": "sha512-sNXv5oLJ7ob93xkZ1XnxisYhGYXfaG9f65/ZgYuAu3qt7b3NadcOEhLvx28hv31PgX8SZJRYrAIPQilQmFpLVw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@tybys/wasm-util": "^0.10.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + }, + "peerDependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1" + } + }, + "node_modules/@noble/hashes": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz", + "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@oxc-project/types": { + "version": "0.122.0", + "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.122.0.tgz", + "integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/Boshen" + } + }, + "node_modules/@paralleldrive/cuid2": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@paralleldrive/cuid2/-/cuid2-2.3.1.tgz", + "integrity": "sha512-XO7cAxhnTZl0Yggq6jOgjiOHhbgcO4NqFqwSmQpjK3b6TEE6Uj/jfSk6wzYyemh3+I0sHirKSetjQwn5cZktFw==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "^1.1.5" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rc-component/async-validator": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rc-component/async-validator/-/async-validator-5.1.0.tgz", + "integrity": "sha512-n4HcR5siNUXRX23nDizbZBQPO0ZM/5oTtmKZ6/eqL0L2bo747cklFdZGRN2f+c9qWGICwDzrhW0H7tE9PptdcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.24.4" + }, + "engines": { + "node": ">=14.x" + } + }, + "node_modules/@rc-component/cascader": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/@rc-component/cascader/-/cascader-1.14.0.tgz", + "integrity": "sha512-Ip9356xwZUR2nbW5PRVGif4B/bDve4pLa/N+PGbvBaTnjbvmN4PFMBGQSmlDlzKP1ovxaYMvwF/dI9lXNLT4iQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/select": "~1.6.0", + "@rc-component/tree": "~1.2.0", + "@rc-component/util": "^1.4.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rc-component/checkbox": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@rc-component/checkbox/-/checkbox-2.0.0.tgz", + "integrity": "sha512-3CXGPpAR9gsPKeO2N78HAPOzU30UdemD6HGJoWVJOpa6WleaGB5kzZj3v6bdTZab31YuWgY/RxV3VKPctn0DwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/collapse": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@rc-component/collapse/-/collapse-1.2.0.tgz", + "integrity": "sha512-ZRYSKSS39qsFx93p26bde7JUZJshsUBEQRlRXPuJYlAiNX0vyYlF5TsAm8JZN3LcF8XvKikdzPbgAtXSbkLUkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/motion": "^1.1.4", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rc-component/color-picker": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@rc-component/color-picker/-/color-picker-3.1.1.tgz", + "integrity": "sha512-OHaCHLHszCegdXmIq2ZRIZBN/EtpT6Wm8SG/gpzLATHbVKc/avvuKi+zlOuk05FTWvgaMmpxAko44uRJ3M+2pg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ant-design/fast-color": "^3.0.1", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/context": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@rc-component/context/-/context-2.0.1.tgz", + "integrity": "sha512-HyZbYm47s/YqtP6pKXNMjPEMaukyg7P0qVfgMLzr7YiFNMHbK2fKTAGzms9ykfGHSfyf75nBbgWw+hHkp+VImw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.3.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/dialog": { + "version": "1.8.4", + "resolved": "https://registry.npmjs.org/@rc-component/dialog/-/dialog-1.8.4.tgz", + "integrity": "sha512-Ay6PM7phkTkquplG8fWfUGFZ2GTLx9diTl4f0d8Eqxd7W1u1KjE9AQooFQHOHnhZf0Ya3z51+5EKCWHmt/dNEw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/motion": "^1.1.3", + "@rc-component/portal": "^2.1.0", + "@rc-component/util": "^1.9.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rc-component/drawer": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@rc-component/drawer/-/drawer-1.4.2.tgz", + "integrity": "sha512-1ib+fZEp6FBu+YvcIktm+nCQ+Q+qIpwpoaJH6opGr4ofh2QMq+qdr5DLC4oCf5qf3pcWX9lUWPYX652k4ini8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/motion": "^1.1.4", + "@rc-component/portal": "^2.1.3", + "@rc-component/util": "^1.9.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rc-component/dropdown": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rc-component/dropdown/-/dropdown-1.0.2.tgz", + "integrity": "sha512-6PY2ecUSYhDPhkNHHb4wfeAya04WhpmUSKzdR60G+kMNVUCX2vjT/AgTS0Lz0I/K6xrPMJ3enQbwVpeN3sHCgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/trigger": "^3.0.0", + "@rc-component/util": "^1.2.1", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.11.0", + "react-dom": ">=16.11.0" + } + }, + "node_modules/@rc-component/form": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@rc-component/form/-/form-1.8.0.tgz", + "integrity": "sha512-eUD5KKYnIZWmJwRA0vnyO/ovYUfHGU1svydY1OrqU5fw8Oz9Tdqvxvrlh0wl6xI/EW69dT7II49xpgOWzK3T5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/async-validator": "^5.1.0", + "@rc-component/util": "^1.6.2", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/image": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@rc-component/image/-/image-1.8.0.tgz", + "integrity": "sha512-Dr41bFevLB5NgVaJhEUmNvbEf+ynAhim6W98ZW2xvCsdFISc2TYP4ZvCVdie3eaZdum2kieVcvpNHu+UrzAAHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/motion": "^1.0.0", + "@rc-component/portal": "^2.1.2", + "@rc-component/util": "^1.10.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/input": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@rc-component/input/-/input-1.1.2.tgz", + "integrity": "sha512-Q61IMR47piUBudgixJ30CciKIy9b1H95qe7GgEKOmSJVJXvFRWJllJfQry9tif+MX2cWFXWJf/RXz4kaCeq/Fg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.4.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@rc-component/input-number": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/@rc-component/input-number/-/input-number-1.6.2.tgz", + "integrity": "sha512-Gjcq7meZlCOiWN1t1xCC+7/s85humHVokTBI7PJgTfoyw5OWF74y3e6P8PHX104g9+b54jsodFIzyaj6p8LI9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/mini-decimal": "^1.0.1", + "@rc-component/util": "^1.4.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/mentions": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@rc-component/mentions/-/mentions-1.6.0.tgz", + "integrity": "sha512-KIkQNP6habNuTsLhUv0UGEOwG67tlmE7KNIJoQZZNggEZl5lQJTytFDb69sl5CK3TDdISCTjKP3nGEBKgT61CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/input": "~1.1.0", + "@rc-component/menu": "~1.2.0", + "@rc-component/textarea": "~1.1.0", + "@rc-component/trigger": "^3.0.0", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/menu": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@rc-component/menu/-/menu-1.2.0.tgz", + "integrity": "sha512-VWwDuhvYHSnTGj4n6bV3ISrLACcPAzdPOq3d0BzkeiM5cve8BEYfvkEhNoM0PLzv51jpcejeyrLXeMVIJ+QJlg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/motion": "^1.1.4", + "@rc-component/overflow": "^1.0.0", + "@rc-component/trigger": "^3.0.0", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/mini-decimal": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@rc-component/mini-decimal/-/mini-decimal-1.1.3.tgz", + "integrity": "sha512-bk/FJ09fLf+NLODMAFll6CfYrHPBioTedhW6lxDBuuWucJEqFUd4l/D/5JgIi3dina6sYahB8iuPAZTNz2pMxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.0" + }, + "engines": { + "node": ">=8.x" + } + }, + "node_modules/@rc-component/motion": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@rc-component/motion/-/motion-1.3.2.tgz", + "integrity": "sha512-itfd+GztzJYAb04Z4RkEub1TbJAfZc2Iuy8p44U44xD1F5+fNYFKI3897ijlbIyfvXkTmMm+KGcjkQQGMHywEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.2.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/mutate-observer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@rc-component/mutate-observer/-/mutate-observer-2.0.1.tgz", + "integrity": "sha512-AyarjoLU5YlxuValRi+w8JRH2Z84TBbFO2RoGWz9d8bSu0FqT8DtugH3xC3BV7mUwlmROFauyWuXFuq4IFbH+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.2.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/notification": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@rc-component/notification/-/notification-1.2.0.tgz", + "integrity": "sha512-OX3J+zVU7rvoJCikjrfW7qOUp7zlDeFBK2eA3SFbGSkDqo63Sl4Ss8A04kFP+fxHSxMDIS9jYVEZtU1FNCFuBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/motion": "^1.1.4", + "@rc-component/util": "^1.2.1", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/overflow": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@rc-component/overflow/-/overflow-1.0.0.tgz", + "integrity": "sha512-GSlBeoE0XTBi5cf3zl8Qh7Uqhn7v8RrlJ8ajeVpEkNe94HWy5l5BQ0Mwn2TVUq9gdgbfEMUmTX7tJFAg7mz0Rw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.1", + "@rc-component/resize-observer": "^1.0.1", + "@rc-component/util": "^1.4.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/pagination": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@rc-component/pagination/-/pagination-1.2.0.tgz", + "integrity": "sha512-YcpUFE8dMLfSo6OARJlK6DbHHvrxz7pMGPGmC/caZSJJz6HRKHC1RPP001PRHCvG9Z/veD039uOQmazVuLJzlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/picker": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@rc-component/picker/-/picker-1.9.1.tgz", + "integrity": "sha512-9FBYYsvH3HMLICaPDA/1Th5FLaDkFa7qAtangIdlhKb3ZALaR745e9PsOhheJb6asS4QXc12ffiAcjdkZ4C5/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/overflow": "^1.0.0", + "@rc-component/resize-observer": "^1.0.0", + "@rc-component/trigger": "^3.6.15", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=12.x" + }, + "peerDependencies": { + "date-fns": ">= 2.x", + "dayjs": ">= 1.x", + "luxon": ">= 3.x", + "moment": ">= 2.x", + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + }, + "peerDependenciesMeta": { + "date-fns": { + "optional": true + }, + "dayjs": { + "optional": true + }, + "luxon": { + "optional": true + }, + "moment": { + "optional": true + } + } + }, + "node_modules/@rc-component/portal": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@rc-component/portal/-/portal-2.2.0.tgz", + "integrity": "sha512-oc6FlA+uXCMiwArHsJyHcIkX4q6uKyndrPol2eWX8YPkAnztHOPsFIRtmWG4BMlGE5h7YIRE3NiaJ5VS8Lb1QQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.2.1", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=12.x" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rc-component/progress": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rc-component/progress/-/progress-1.0.2.tgz", + "integrity": "sha512-WZUnH9eGxH1+xodZKqdrHke59uyGZSWgj5HBM5Kwk5BrTMuAORO7VJ2IP5Qbm9aH3n9x3IcesqHHR0NWPBC7fQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.2.1", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/qrcode": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@rc-component/qrcode/-/qrcode-1.1.1.tgz", + "integrity": "sha512-LfLGNymzKdUPjXUbRP+xOhIWY4jQ+YMj5MmWAcgcAq1Ij8XP7tRmAXqyuv96XvLUBE/5cA8hLFl9eO1JQMujrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.24.7" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/rate": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rc-component/rate/-/rate-1.0.1.tgz", + "integrity": "sha512-bkXxeBqDpl5IOC7yL7GcSYjQx9G8H+6kLYQnNZWeBYq2OYIv1MONd6mqKTjnnJYpV0cQIU2z3atdW0j1kttpTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/resize-observer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@rc-component/resize-observer/-/resize-observer-1.1.2.tgz", + "integrity": "sha512-t/Bb0W8uvL4PYKAB3YcChC+DlHh0Wt5kM7q/J+0qpVEUMLe7Hk5zuvc9km0hMnTFPSx5Z7Wu/fzCLN6erVLE8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.2.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/segmented": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@rc-component/segmented/-/segmented-1.3.0.tgz", + "integrity": "sha512-5J/bJ01mbDnoA6P/FW8SxUvKn+OgUSTZJPzCNnTBntG50tzoP7DydGhqxp7ggZXZls7me3mc2EQDXakU3iTVFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.1", + "@rc-component/motion": "^1.1.4", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@rc-component/select": { + "version": "1.6.15", + "resolved": "https://registry.npmjs.org/@rc-component/select/-/select-1.6.15.tgz", + "integrity": "sha512-SyVCWnqxCQZZcQvQJ/CxSjx2bGma6ds/HtnpkIfZVnt6RoEgbqUmHgD6vrzNarNXwbLXerwVzWwq8F3d1sst7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/overflow": "^1.0.0", + "@rc-component/trigger": "^3.0.0", + "@rc-component/util": "^1.3.0", + "@rc-component/virtual-list": "^1.0.1", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/@rc-component/slider": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rc-component/slider/-/slider-1.0.1.tgz", + "integrity": "sha512-uDhEPU1z3WDfCJhaL9jfd2ha/Eqpdfxsn0Zb0Xcq1NGQAman0TWaR37OWp2vVXEOdV2y0njSILTMpTfPV1454g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/steps": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@rc-component/steps/-/steps-1.2.2.tgz", + "integrity": "sha512-/yVIZ00gDYYPHSY0JP+M+s3ZvuXLu2f9rEjQqiUDs7EcYsUYrpJ/1bLj9aI9R7MBR3fu/NGh6RM9u2qGfqp+Nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.2.1", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/switch": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@rc-component/switch/-/switch-1.0.3.tgz", + "integrity": "sha512-Jgi+EbOBquje/XNdofr7xbJQZPYJP+BlPfR0h+WN4zFkdtB2EWqEfvkXJWeipflwjWip0/17rNbxEAqs8hVHfw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/table": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@rc-component/table/-/table-1.9.1.tgz", + "integrity": "sha512-FVI5ZS/GdB3BcgexfCYKi3iHhZS3Fr59EtsxORszYGrfpH1eWr33eDNSYkVfLI6tfJ7vftJDd9D5apfFWqkdJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/context": "^2.0.1", + "@rc-component/resize-observer": "^1.0.0", + "@rc-component/util": "^1.1.0", + "@rc-component/virtual-list": "^1.0.1", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rc-component/tabs": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@rc-component/tabs/-/tabs-1.7.0.tgz", + "integrity": "sha512-J48cs2iBi7Ho3nptBxxIqizEliUC+ExE23faspUQKGQ550vaBlv3aGF8Epv/UB1vFWeoJDTW/dNzgIU0Qj5i/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/dropdown": "~1.0.0", + "@rc-component/menu": "~1.2.0", + "@rc-component/motion": "^1.1.3", + "@rc-component/resize-observer": "^1.0.0", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/textarea": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@rc-component/textarea/-/textarea-1.1.2.tgz", + "integrity": "sha512-9rMUEODWZDMovfScIEHXWlVZuPljZ2pd1LKNjslJVitn4SldEzq5vO1CL3yy3Dnib6zZal2r2DPtjy84VVpF6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/input": "~1.1.0", + "@rc-component/resize-observer": "^1.0.0", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/tooltip": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@rc-component/tooltip/-/tooltip-1.4.0.tgz", + "integrity": "sha512-8Rx5DCctIlLI4raR0I0xHjVTf1aF48+gKCNeAAo5bmF5VoR5YED+A/XEqzXv9KKqrJDRcd3Wndpxh2hyzrTtSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/trigger": "^3.7.1", + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rc-component/tour": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@rc-component/tour/-/tour-2.3.0.tgz", + "integrity": "sha512-K04K9r32kUC+auBSQfr+Fss4SpSIS9JGe56oq/ALAX0p+i2ylYOI1MgR83yBY7v96eO6ZFXcM/igCQmubps0Ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/portal": "^2.2.0", + "@rc-component/trigger": "^3.0.0", + "@rc-component/util": "^1.7.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/tree": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@rc-component/tree/-/tree-1.2.4.tgz", + "integrity": "sha512-5Gli43+m4R7NhpYYz3Z61I6LOw9yI6CNChxgVtvrO6xB1qML7iE6QMLVMB3+FTjo2yF6uFdAHtqWPECz/zbX5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/motion": "^1.0.0", + "@rc-component/util": "^1.8.1", + "@rc-component/virtual-list": "^1.0.1", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=10.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/@rc-component/tree-select": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@rc-component/tree-select/-/tree-select-1.8.0.tgz", + "integrity": "sha512-iYsPq3nuLYvGqdvFAW+l+I9ASRIOVbMXyA8FGZg2lGym/GwkaWeJGzI4eJ7c9IOEhRj0oyfIN4S92Fl3J05mjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/select": "~1.6.0", + "@rc-component/tree": "~1.2.0", + "@rc-component/util": "^1.4.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/@rc-component/trigger": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/@rc-component/trigger/-/trigger-3.9.0.tgz", + "integrity": "sha512-X8btpwfrT27AgrZVOz4swclhEHTZcqaHeQMXXBgveagOiakTa36uObXbdwerXffgV8G9dH1fAAE0DHtVQs8EHg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/motion": "^1.1.4", + "@rc-component/portal": "^2.2.0", + "@rc-component/resize-observer": "^1.1.1", + "@rc-component/util": "^1.2.1", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rc-component/upload": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rc-component/upload/-/upload-1.1.0.tgz", + "integrity": "sha512-LIBV90mAnUE6VK5N4QvForoxZc4XqEYZimcp7fk+lkE4XwHHyJWxpIXQQwMU8hJM+YwBbsoZkGksL1sISWHQxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rc-component/util": "^1.3.0", + "clsx": "^2.1.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/util": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@rc-component/util/-/util-1.10.0.tgz", + "integrity": "sha512-aY9GLBuiUdpyfIUpAWSYer4Tu3mVaZCo5A0q9NtXcazT3MRiI3/WNHCR+DUn5VAtR6iRRf0ynCqQUcHli5UdYw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-mobile": "^5.0.0", + "react-is": "^18.2.0" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@rc-component/virtual-list": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rc-component/virtual-list/-/virtual-list-1.0.2.tgz", + "integrity": "sha512-uvTol/mH74FYsn5loDGJxo+7kjkO4i+y4j87Re1pxJBs0FaeuMuLRzQRGaXwnMcV1CxpZLi2Z56Rerj2M00fjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.0", + "@rc-component/resize-observer": "^1.0.1", + "@rc-component/util": "^1.4.0", + "clsx": "^2.1.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rolldown/binding-android-arm64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.12.tgz", + "integrity": "sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-darwin-arm64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.12.tgz", + "integrity": "sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-darwin-x64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.12.tgz", + "integrity": "sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-freebsd-x64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.12.tgz", + "integrity": "sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm-gnueabihf": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.12.tgz", + "integrity": "sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm64-gnu": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.12.tgz", + "integrity": "sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm64-musl": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.12.tgz", + "integrity": "sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-ppc64-gnu": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.12.tgz", + "integrity": "sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-s390x-gnu": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.12.tgz", + "integrity": "sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-x64-gnu": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.12.tgz", + "integrity": "sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-x64-musl": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.12.tgz", + "integrity": "sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-openharmony-arm64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.12.tgz", + "integrity": "sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-wasm32-wasi": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.12.tgz", + "integrity": "sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^1.1.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@rolldown/binding-win32-arm64-msvc": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.12.tgz", + "integrity": "sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-win32-x64-msvc": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.12.tgz", + "integrity": "sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-rc.3", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz", + "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.1.tgz", + "integrity": "sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.1.tgz", + "integrity": "sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.1.tgz", + "integrity": "sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.1.tgz", + "integrity": "sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.1.tgz", + "integrity": "sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.1.tgz", + "integrity": "sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.1.tgz", + "integrity": "sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==", + "cpu": [ + "arm" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.1.tgz", + "integrity": "sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==", + "cpu": [ + "arm" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.1.tgz", + "integrity": "sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.1.tgz", + "integrity": "sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.1.tgz", + "integrity": "sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.1.tgz", + "integrity": "sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.1.tgz", + "integrity": "sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.1.tgz", + "integrity": "sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.1.tgz", + "integrity": "sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.1.tgz", + "integrity": "sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.1.tgz", + "integrity": "sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.1.tgz", + "integrity": "sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.1.tgz", + "integrity": "sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.1.tgz", + "integrity": "sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.1.tgz", + "integrity": "sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.1.tgz", + "integrity": "sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.1.tgz", + "integrity": "sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.1.tgz", + "integrity": "sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.1.tgz", + "integrity": "sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sec-ant/readable-stream": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", + "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", + "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@standard-schema/spec": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz", + "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tailwindcss/node": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz", + "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.19.0", + "jiti": "^2.6.1", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.2.2" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz", + "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.2.2", + "@tailwindcss/oxide-darwin-arm64": "4.2.2", + "@tailwindcss/oxide-darwin-x64": "4.2.2", + "@tailwindcss/oxide-freebsd-x64": "4.2.2", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2", + "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2", + "@tailwindcss/oxide-linux-arm64-musl": "4.2.2", + "@tailwindcss/oxide-linux-x64-gnu": "4.2.2", + "@tailwindcss/oxide-linux-x64-musl": "4.2.2", + "@tailwindcss/oxide-wasm32-wasi": "4.2.2", + "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2", + "@tailwindcss/oxide-win32-x64-msvc": "4.2.2" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz", + "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz", + "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz", + "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz", + "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz", + "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz", + "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz", + "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz", + "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz", + "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz", + "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.8.1", + "@emnapi/runtime": "^1.8.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.1", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz", + "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz", + "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/vite": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.2.tgz", + "integrity": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tailwindcss/node": "4.2.2", + "@tailwindcss/oxide": "4.2.2", + "tailwindcss": "4.2.2" + }, + "peerDependencies": { + "vite": "^5.2.0 || ^6 || ^7 || ^8" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@tybys/wasm-util/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD", + "optional": true + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/chai": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", + "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/deep-eql": "*", + "assertion-error": "^2.0.1" + } + }, + "node_modules/@types/deep-eql": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", + "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.0.tgz", + "integrity": "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==", + "license": "MIT", + "optional": true, + "dependencies": { + "undici-types": "~7.18.0" + } + }, + "node_modules/@types/yauzl": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.2.0.tgz", + "integrity": "sha512-YmKkfhOAi3wsB1PhJq5Scj3GXMn3WvtQ/JC0xoopuHoXSdmtdStOpFrYaT1kie2YgFBcIe64ROzMYRjCrYOdYw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.29.0", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-rc.3", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.18.0" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@vitest/expect": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.2.tgz", + "integrity": "sha512-gbu+7B0YgUJ2nkdsRJrFFW6X7NTP44WlhiclHniUhxADQJH5Szt9mZ9hWnJPJ8YwOK5zUOSSlSvyzRf0u1DSBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@standard-schema/spec": "^1.1.0", + "@types/chai": "^5.2.2", + "@vitest/spy": "4.1.2", + "@vitest/utils": "4.1.2", + "chai": "^6.2.2", + "tinyrainbow": "^3.1.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/pretty-format": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.2.tgz", + "integrity": "sha512-dwQga8aejqeuB+TvXCMzSQemvV9hNEtDDpgUKDzOmNQayl2OG241PSWeJwKRH3CiC+sESrmoFd49rfnq7T4RnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^3.1.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.2.tgz", + "integrity": "sha512-Gr+FQan34CdiYAwpGJmQG8PgkyFVmARK8/xSijia3eTFgVfpcpztWLuP6FttGNfPLJhaZVP/euvujeNYar36OQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "4.1.2", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.2.tgz", + "integrity": "sha512-g7yfUmxYS4mNxk31qbOYsSt2F4m1E02LFqO53Xpzg3zKMhLAPZAjjfyl9e6z7HrW6LvUdTwAQR3HHfLjpko16A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "4.1.2", + "@vitest/utils": "4.1.2", + "magic-string": "^0.30.21", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.2.tgz", + "integrity": "sha512-DU4fBnbVCJGNBwVA6xSToNXrkZNSiw59H8tcuUspVMsBDBST4nfvsPsEHDHGtWRRnqBERBQu7TrTKskmjqTXKA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.2.tgz", + "integrity": "sha512-xw2/TiX82lQHA06cgbqRKFb5lCAy3axQ4H4SoUFhUsg+wztiet+co86IAMDtF6Vm1hc7J6j09oh/rgDn+JdKIQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "4.1.2", + "convert-source-map": "^2.0.0", + "tinyrainbow": "^3.1.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/antd": { + "version": "6.3.5", + "resolved": "https://registry.npmjs.org/antd/-/antd-6.3.5.tgz", + "integrity": "sha512-8BPz9lpZWQm42PTx7yL4KxWAotVuqINiKcoYRcLtdd5BFmAcAZicVyFTnBJyRDlzGZFZeRW3foGu6jXYFnej6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ant-design/colors": "^8.0.1", + "@ant-design/cssinjs": "^2.1.2", + "@ant-design/cssinjs-utils": "^2.1.2", + "@ant-design/fast-color": "^3.0.1", + "@ant-design/icons": "^6.1.1", + "@ant-design/react-slick": "~2.0.0", + "@babel/runtime": "^7.28.4", + "@rc-component/cascader": "~1.14.0", + "@rc-component/checkbox": "~2.0.0", + "@rc-component/collapse": "~1.2.0", + "@rc-component/color-picker": "~3.1.1", + "@rc-component/dialog": "~1.8.4", + "@rc-component/drawer": "~1.4.2", + "@rc-component/dropdown": "~1.0.2", + "@rc-component/form": "~1.8.0", + "@rc-component/image": "~1.8.0", + "@rc-component/input": "~1.1.2", + "@rc-component/input-number": "~1.6.2", + "@rc-component/mentions": "~1.6.0", + "@rc-component/menu": "~1.2.0", + "@rc-component/motion": "^1.3.2", + "@rc-component/mutate-observer": "^2.0.1", + "@rc-component/notification": "~1.2.0", + "@rc-component/pagination": "~1.2.0", + "@rc-component/picker": "~1.9.1", + "@rc-component/progress": "~1.0.2", + "@rc-component/qrcode": "~1.1.1", + "@rc-component/rate": "~1.0.1", + "@rc-component/resize-observer": "^1.1.2", + "@rc-component/segmented": "~1.3.0", + "@rc-component/select": "~1.6.15", + "@rc-component/slider": "~1.0.1", + "@rc-component/steps": "~1.2.2", + "@rc-component/switch": "~1.0.3", + "@rc-component/table": "~1.9.1", + "@rc-component/tabs": "~1.7.0", + "@rc-component/textarea": "~1.1.2", + "@rc-component/tooltip": "~1.4.0", + "@rc-component/tour": "~2.3.0", + "@rc-component/tree": "~1.2.4", + "@rc-component/tree-select": "~1.8.0", + "@rc-component/trigger": "^3.9.0", + "@rc-component/upload": "~1.1.0", + "@rc-component/util": "^1.10.0", + "clsx": "^2.1.1", + "dayjs": "^1.11.11", + "scroll-into-view-if-needed": "^3.1.0", + "throttle-debounce": "^5.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ant-design" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/archiver": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/archiver/-/archiver-7.0.1.tgz", + "integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==", + "license": "MIT", + "dependencies": { + "archiver-utils": "^5.0.2", + "async": "^3.2.4", + "buffer-crc32": "^1.0.0", + "readable-stream": "^4.0.0", + "readdir-glob": "^1.1.2", + "tar-stream": "^3.0.0", + "zip-stream": "^6.0.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/archiver-utils": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-5.0.2.tgz", + "integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==", + "license": "MIT", + "dependencies": { + "glob": "^10.0.0", + "graceful-fs": "^4.2.0", + "is-stream": "^2.0.1", + "lazystream": "^1.0.0", + "lodash": "^4.17.15", + "normalize-path": "^3.0.0", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT" + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "license": "MIT" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/bare-events": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.2.tgz", + "integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==", + "license": "Apache-2.0", + "peerDependencies": { + "bare-abort-controller": "*" + }, + "peerDependenciesMeta": { + "bare-abort-controller": { + "optional": true + } + } + }, + "node_modules/bare-fs": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.6.0.tgz", + "integrity": "sha512-2YkS7NuiJceSEbyEOdSNLE9tsGd+f4+f7C+Nik/MCk27SYdwIMPT/yRKvg++FZhQXgk0KWJKJyXX9RhVV0RGqA==", + "license": "Apache-2.0", + "dependencies": { + "bare-events": "^2.5.4", + "bare-path": "^3.0.0", + "bare-stream": "^2.6.4", + "bare-url": "^2.2.2", + "fast-fifo": "^1.3.2" + }, + "engines": { + "bare": ">=1.16.0" + }, + "peerDependencies": { + "bare-buffer": "*" + }, + "peerDependenciesMeta": { + "bare-buffer": { + "optional": true + } + } + }, + "node_modules/bare-os": { + "version": "3.8.7", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.8.7.tgz", + "integrity": "sha512-G4Gr1UsGeEy2qtDTZwL7JFLo2wapUarz7iTMcYcMFdS89AIQuBoyjgXZz0Utv7uHs3xA9LckhVbeBi8lEQrC+w==", + "license": "Apache-2.0", + "engines": { + "bare": ">=1.14.0" + } + }, + "node_modules/bare-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz", + "integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==", + "license": "Apache-2.0", + "dependencies": { + "bare-os": "^3.0.1" + } + }, + "node_modules/bare-stream": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.12.0.tgz", + "integrity": "sha512-w28i8lkBgREV3rPXGbgK+BO66q+ZpKqRWrZLiCdmmUlLPrQ45CzkvRhN+7lnv00Gpi2zy5naRxnUFAxCECDm9g==", + "license": "Apache-2.0", + "dependencies": { + "streamx": "^2.25.0", + "teex": "^1.0.1" + }, + "peerDependencies": { + "bare-abort-controller": "*", + "bare-buffer": "*", + "bare-events": "*" + }, + "peerDependenciesMeta": { + "bare-abort-controller": { + "optional": true + }, + "bare-buffer": { + "optional": true + }, + "bare-events": { + "optional": true + } + } + }, + "node_modules/bare-url": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.0.tgz", + "integrity": "sha512-NSTU5WN+fy/L0DDenfE8SXQna4voXuW0FHM7wH8i3/q9khUSchfPbPezO4zSFMnDGIf9YE+mt/RWhZgNRKRIXA==", + "license": "Apache-2.0", + "dependencies": { + "bare-path": "^3.0.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.13", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.13.tgz", + "integrity": "sha512-BL2sTuHOdy0YT1lYieUxTw/QMtPBC3pmlJC6xk8BBYVv6vcw3SGdKemQ+Xsx9ik2F/lYDO9tqsFQH1r9PFuHKw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.3.tgz", + "integrity": "sha512-MCV/fYJEbqx68aE58kv2cA/kiky1G8vux3OR6/jbS+jIMe/6fJWa0DTzJU7dqijOWYwHi1t29FlfYI9uytqlpA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/browserslist": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.10.12", + "caniuse-lite": "^1.0.30001782", + "electron-to-chromium": "^1.5.328", + "node-releases": "^2.0.36", + "update-browserslist-db": "^1.2.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-crc32": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz", + "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001784", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001784.tgz", + "integrity": "sha512-WU346nBTklUV9YfUl60fqRbU5ZqyXlqvo1SgigE1OAXK5bFL8LL9q1K7aap3N739l4BvNqnkm3YrGHiY9sfUQw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chai": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz", + "integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/compress-commons": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-6.0.2.tgz", + "integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==", + "license": "MIT", + "dependencies": { + "crc-32": "^1.2.0", + "crc32-stream": "^6.0.0", + "is-stream": "^2.0.1", + "normalize-path": "^3.0.0", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/compute-scroll-into-view": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.1.tgz", + "integrity": "sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "license": "Apache-2.0", + "bin": { + "crc32": "bin/crc32.njs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/crc32-stream": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-6.0.0.tgz", + "integrity": "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==", + "license": "MIT", + "dependencies": { + "crc-32": "^1.2.0", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/dayjs": { + "version": "1.11.20", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.20.tgz", + "integrity": "sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/dezalgo": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", + "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", + "license": "ISC", + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/echarts": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-6.0.0.tgz", + "integrity": "sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "2.3.0", + "zrender": "6.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.331", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.331.tgz", + "integrity": "sha512-IbxXrsTlD3hRodkLnbxAPP4OuJYdWCeM3IOdT+CpcMoIwIoDfCmRpEtSPfwBXxVkg9xmBeY7Lz2Eo2TDn/HC3Q==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/end-of-stream": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.20.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz", + "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-module-lexer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.0.0.tgz", + "integrity": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==", + "dev": true, + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/events-universal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz", + "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==", + "license": "Apache-2.0", + "dependencies": { + "bare-events": "^2.7.0" + } + }, + "node_modules/execa": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-9.6.1.tgz", + "integrity": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/merge-streams": "^4.0.0", + "cross-spawn": "^7.0.6", + "figures": "^6.1.0", + "get-stream": "^9.0.0", + "human-signals": "^8.0.1", + "is-plain-obj": "^4.1.0", + "is-stream": "^4.0.1", + "npm-run-path": "^6.0.0", + "pretty-ms": "^9.2.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^4.0.0", + "yoctocolors": "^2.1.1" + }, + "engines": { + "node": "^18.19.0 || >=20.5.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/execa/node_modules/is-stream": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", + "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/expect-type": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz", + "integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "license": "BSD-2-Clause", + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/extract-zip/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "license": "MIT" + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "license": "MIT", + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/figures": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", + "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-unicode-supported": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/formidable": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/formidable/-/formidable-3.5.4.tgz", + "integrity": "sha512-YikH+7CUTOtP44ZTnUhR7Ic2UASBPOqmaRkRKxRbywPTe5VxF7RRCck4af9wutiZ/QKM5nME9Bie2fFaPz5Gug==", + "license": "MIT", + "dependencies": { + "@paralleldrive/cuid2": "^2.2.2", + "dezalgo": "^1.0.4", + "once": "^1.4.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "url": "https://ko-fi.com/tunnckoCore/commissions" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-stream": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", + "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sec-ant/readable-stream": "^0.4.1", + "is-stream": "^4.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stream/node_modules/is-stream": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", + "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/human-signals": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz", + "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz", + "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-mobile": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-mobile/-/is-mobile-5.0.0.tgz", + "integrity": "sha512-Tz/yndySvLAEXh+Uk8liFCxOwVH6YutuR74utvOcu7I9Di+DwM0mtdPVZNaVvvBUM2OXxne/NhOs1zAO7riusQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-unicode-supported": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json2mq": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz", + "integrity": "sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "string-convert": "^0.2.0" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "license": "MIT", + "dependencies": { + "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" + } + }, + "node_modules/lazystream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/lazystream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/lazystream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lodash": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz", + "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==", + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lowdb": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-7.0.1.tgz", + "integrity": "sha512-neJAj8GwF0e8EpycYIDFqEPcx9Qz4GUho20jWFR7YiFeXzF1YMLdxB36PypcTSPMA+4+LvgyMacYhlr18Zlymw==", + "license": "MIT", + "dependencies": { + "steno": "^4.0.2" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "0.562.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.562.0.tgz", + "integrity": "sha512-82hOAu7y0dbVuFfmO4bYF1XEwYk/mEbM5E+b1jgci/udUBEE/R7LF5Ip0CCEmXe8AybRM8L+04eP+LGZeDvkiw==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/minimatch": { + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", + "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.2" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.37", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.37.tgz", + "integrity": "sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", + "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/obug": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz", + "integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==", + "dev": true, + "funding": [ + "https://github.com/sponsors/sxzz", + "https://opencollective.com/debug" + ], + "license": "MIT" + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/papaparse": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.5.3.tgz", + "integrity": "sha512-5QvjGxYVjxO59MGU2lHVYpRWBBtKHnlIAcSe1uNFCkkptUh63NFRj0FJQm7nR67puEruUci/ZkjmEFrjCAyP4A==", + "license": "MIT" + }, + "node_modules/parse-ms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", + "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.8", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz", + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/pretty-ms": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.3.0.tgz", + "integrity": "sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse-ms": "^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/pump": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz", + "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/react-refresh": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz", + "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz", + "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/readdir-glob": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", + "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.1.0" + } + }, + "node_modules/readdir-glob/node_modules/minimatch": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.9.tgz", + "integrity": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/rolldown": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.12.tgz", + "integrity": "sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@oxc-project/types": "=0.122.0", + "@rolldown/pluginutils": "1.0.0-rc.12" + }, + "bin": { + "rolldown": "bin/cli.mjs" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "optionalDependencies": { + "@rolldown/binding-android-arm64": "1.0.0-rc.12", + "@rolldown/binding-darwin-arm64": "1.0.0-rc.12", + "@rolldown/binding-darwin-x64": "1.0.0-rc.12", + "@rolldown/binding-freebsd-x64": "1.0.0-rc.12", + "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12", + "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12", + "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12", + "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12", + "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12", + "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12", + "@rolldown/binding-linux-x64-musl": "1.0.0-rc.12", + "@rolldown/binding-openharmony-arm64": "1.0.0-rc.12", + "@rolldown/binding-wasm32-wasi": "1.0.0-rc.12", + "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12", + "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12" + } + }, + "node_modules/rolldown/node_modules/@rolldown/pluginutils": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.12.tgz", + "integrity": "sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==", + "dev": true, + "license": "MIT" + }, + "node_modules/rollup": { + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.1.tgz", + "integrity": "sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.60.1", + "@rollup/rollup-android-arm64": "4.60.1", + "@rollup/rollup-darwin-arm64": "4.60.1", + "@rollup/rollup-darwin-x64": "4.60.1", + "@rollup/rollup-freebsd-arm64": "4.60.1", + "@rollup/rollup-freebsd-x64": "4.60.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.1", + "@rollup/rollup-linux-arm-musleabihf": "4.60.1", + "@rollup/rollup-linux-arm64-gnu": "4.60.1", + "@rollup/rollup-linux-arm64-musl": "4.60.1", + "@rollup/rollup-linux-loong64-gnu": "4.60.1", + "@rollup/rollup-linux-loong64-musl": "4.60.1", + "@rollup/rollup-linux-ppc64-gnu": "4.60.1", + "@rollup/rollup-linux-ppc64-musl": "4.60.1", + "@rollup/rollup-linux-riscv64-gnu": "4.60.1", + "@rollup/rollup-linux-riscv64-musl": "4.60.1", + "@rollup/rollup-linux-s390x-gnu": "4.60.1", + "@rollup/rollup-linux-x64-gnu": "4.60.1", + "@rollup/rollup-linux-x64-musl": "4.60.1", + "@rollup/rollup-openbsd-x64": "4.60.1", + "@rollup/rollup-openharmony-arm64": "4.60.1", + "@rollup/rollup-win32-arm64-msvc": "4.60.1", + "@rollup/rollup-win32-ia32-msvc": "4.60.1", + "@rollup/rollup-win32-x64-gnu": "4.60.1", + "@rollup/rollup-win32-x64-msvc": "4.60.1", + "fsevents": "~2.3.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/scroll-into-view-if-needed": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.1.0.tgz", + "integrity": "sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "compute-scroll-into-view": "^3.0.2" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true, + "license": "ISC" + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/std-env": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-4.0.0.tgz", + "integrity": "sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/steno": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/steno/-/steno-4.0.2.tgz", + "integrity": "sha512-yhPIQXjrlt1xv7dyPQg2P17URmXbuM5pdGkpiMB3RenprfiBlvK415Lctfe0eshk90oA7/tNq7WEiMK8RSP39A==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/streamx": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.25.0.tgz", + "integrity": "sha512-0nQuG6jf1w+wddNEEXCF4nTg3LtufWINB5eFEN+5TNZW7KWJp6x87+JFL43vaAUPyCfH1wID+mNVyW6OHtFamg==", + "license": "MIT", + "dependencies": { + "events-universal": "^1.0.0", + "fast-fifo": "^1.3.2", + "text-decoder": "^1.1.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-convert": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-convert/-/string-convert-0.2.1.tgz", + "integrity": "sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", + "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stylis": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.6.tgz", + "integrity": "sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/tailwindcss": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz", + "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz", + "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/tar-stream": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.8.tgz", + "integrity": "sha512-U6QpVRyCGHva435KoNWy9PRoi2IFYCgtEhq9nmrPPpbRacPs9IH4aJ3gbrFC8dPcXvdSZ4XXfXT5Fshbp2MtlQ==", + "license": "MIT", + "dependencies": { + "b4a": "^1.6.4", + "bare-fs": "^4.5.5", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, + "node_modules/tar-stream/node_modules/b4a": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.8.0.tgz", + "integrity": "sha512-qRuSmNSkGQaHwNbM7J78Wwy+ghLEYF1zNrSeMxj4Kgw6y33O3mXcQ6Ie9fRvfU/YnxWkOchPXbaLb73TkIsfdg==", + "license": "Apache-2.0", + "peerDependencies": { + "react-native-b4a": "*" + }, + "peerDependenciesMeta": { + "react-native-b4a": { + "optional": true + } + } + }, + "node_modules/teex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz", + "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==", + "license": "MIT", + "dependencies": { + "streamx": "^2.12.5" + } + }, + "node_modules/text-decoder": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.7.tgz", + "integrity": "sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==", + "license": "Apache-2.0", + "dependencies": { + "b4a": "^1.6.4" + } + }, + "node_modules/text-decoder/node_modules/b4a": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.8.0.tgz", + "integrity": "sha512-qRuSmNSkGQaHwNbM7J78Wwy+ghLEYF1zNrSeMxj4Kgw6y33O3mXcQ6Ie9fRvfU/YnxWkOchPXbaLb73TkIsfdg==", + "license": "Apache-2.0", + "peerDependencies": { + "react-native-b4a": "*" + }, + "peerDependenciesMeta": { + "react-native-b4a": { + "optional": true + } + } + }, + "node_modules/throttle-debounce": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.2.tgz", + "integrity": "sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.22" + } + }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.4.tgz", + "integrity": "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyrainbow": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-3.1.0.tgz", + "integrity": "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", + "dev": true, + "license": "0BSD" + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", + "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", + "license": "MIT", + "optional": true + }, + "node_modules/unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/uuid": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-13.0.0.tgz", + "integrity": "sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist-node/bin/uuid" + } + }, + "node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vitest": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.2.tgz", + "integrity": "sha512-xjR1dMTVHlFLh98JE3i/f/WePqJsah4A0FK9cc8Ehp9Udk0AZk6ccpIZhh1qJ/yxVWRZ+Q54ocnD8TXmkhspGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "4.1.2", + "@vitest/mocker": "4.1.2", + "@vitest/pretty-format": "4.1.2", + "@vitest/runner": "4.1.2", + "@vitest/snapshot": "4.1.2", + "@vitest/spy": "4.1.2", + "@vitest/utils": "4.1.2", + "es-module-lexer": "^2.0.0", + "expect-type": "^1.3.0", + "magic-string": "^0.30.21", + "obug": "^2.1.1", + "pathe": "^2.0.3", + "picomatch": "^4.0.3", + "std-env": "^4.0.0-rc.1", + "tinybench": "^2.9.0", + "tinyexec": "^1.0.2", + "tinyglobby": "^0.2.15", + "tinyrainbow": "^3.1.0", + "vite": "^6.0.0 || ^7.0.0 || ^8.0.0", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@opentelemetry/api": "^1.9.0", + "@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0", + "@vitest/browser-playwright": "4.1.2", + "@vitest/browser-preview": "4.1.2", + "@vitest/browser-webdriverio": "4.1.2", + "@vitest/ui": "4.1.2", + "happy-dom": "*", + "jsdom": "*", + "vite": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@opentelemetry/api": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser-playwright": { + "optional": true + }, + "@vitest/browser-preview": { + "optional": true + }, + "@vitest/browser-webdriverio": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + }, + "vite": { + "optional": false + } + } + }, + "node_modules/vitest/node_modules/@vitest/mocker": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.2.tgz", + "integrity": "sha512-Ize4iQtEALHDttPRCmN+FKqOl2vxTiNUhzobQFFt/BM1lRUTG7zRCLOykG/6Vo4E4hnUdfVLo5/eqKPukcWW7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "4.1.2", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.21" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/vitest/node_modules/vite": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.3.tgz", + "integrity": "sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "lightningcss": "^1.32.0", + "picomatch": "^4.0.4", + "postcss": "^8.5.8", + "rolldown": "1.0.0-rc.12", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "@vitejs/devtools": "^0.1.0", + "esbuild": "^0.27.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "@vitejs/devtools": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/ws": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.0.tgz", + "integrity": "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "license": "MIT", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yauzl/node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/yoctocolors": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.2.tgz", + "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zip-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-6.0.1.tgz", + "integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==", + "license": "MIT", + "dependencies": { + "archiver-utils": "^5.0.0", + "compress-commons": "^6.0.2", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/zrender": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-6.0.0.tgz", + "integrity": "sha512-41dFXEEXuJpNecuUQq6JlbybmnHaqqpGlbH1yxnA5V9MMP4SbohSVZsJIwz+zdjQXSSlR1Vc34EgH1zxyTDvhg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tslib": "2.3.0" + } + } + } +} diff --git a/axhub-make/package.json b/axhub-make/package.json new file mode 100644 index 0000000..9bb4d07 --- /dev/null +++ b/axhub-make/package.json @@ -0,0 +1,45 @@ +{ + "name": "axhub-make", + "version": "0.3.3", + "private": true, + "description": "Axhub Make(AI 辅助生成原型工具)", + "type": "module", + "scripts": { + "dev": "vite", + "make": "axhub-make", + "start": "vite", + "build": "node scripts/scan-entries.js && node scripts/build-all.js && node scripts/generate-dist-html.js", + "preview": "vite preview", + "test": "vitest --run", + "test:watch": "vitest", + "test:ui": "vitest --ui", + "check-ready": "node scripts/check-app-ready.mjs", + "sync:skills": "node scripts/sync-third-party-skills.mjs" + }, + "devDependencies": { + "@ant-design/icons": "^6.1.0", + "@axhub/make": "^0.5.3", + "@tailwindcss/vite": "^4.1.18", + "@vitejs/plugin-react": "^5.0.0", + "antd": "^6.1.2", + "echarts": "^6.0.0", + "execa": "^9.6.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "tailwindcss": "^4.1.18", + "typescript": "^5.9.3", + "vite": "^5.0.0", + "vitest": "^4.0.16", + "ws": "^8.18.3" + }, + "dependencies": { + "archiver": "^7.0.1", + "extract-zip": "^2.0.1", + "formidable": "^3.5.4", + "iconv-lite": "^0.7.1", + "lowdb": "^7.0.1", + "lucide-react": "^0.562.0", + "papaparse": "^5.5.3", + "uuid": "^13.0.0" + } +} diff --git a/axhub-make/rules/axure-api-guide.md b/axhub-make/rules/axure-api-guide.md new file mode 100644 index 0000000..fe7e6e0 --- /dev/null +++ b/axhub-make/rules/axure-api-guide.md @@ -0,0 +1,445 @@ +# Axure API 指南 + +本文档说明如何在本项目原型中使用 Axure API 实现交互功能。 + +## 📌 什么是 Axure API + +Axure API 是本项目提供的一套接口规范,用于实现组件与 Axure 原型之间的交互。通过 Axure API,组件可以: + +- **触发事件**:向外部发送事件通知 +- **接收动作**:响应外部调用的动作 +- **暴露变量**:提供内部状态供外部读取 +- **接收配置**:从配置面板接收用户配置 +- **接收数据**:从外部数据源接收数据 + +## 🎯 何时使用 Axure API + +**使用场景**: +- 需要与 Axure 原型进行交互 +- 需要在配置面板中提供可配置项 +- 需要接收外部数据源 +- 需要触发事件或响应动作 + +**不使用场景**: +- 纯展示型组件 +- 不需要与外部交互的独立组件 +- 标准 React 组件即可满足需求 + +## 📋 Axure API 接口规范 + +### 组件定义 + +使用带显式参数类型的 `forwardRef(...)` 包装组件: + +```typescript +import React, { forwardRef, useImperativeHandle } from 'react'; +import type { AxureProps, AxureHandle } from '../../common/axure-types'; + +const Component = forwardRef(function MyComponent( + innerProps: AxureProps, + ref: React.ForwardedRef, +) { + // 组件实现 + + useImperativeHandle(ref, function () { + return { + getVar: function (name: string) { /* ... */ }, + fireAction: function (name: string, params?: any) { /* ... */ }, + eventList: EVENT_LIST, + actionList: ACTION_LIST, + varList: VAR_LIST, + configList: CONFIG_LIST, + dataList: DATA_LIST + }; + }, [/* 依赖项 */]); + + return
    Component Content
    ; +}); + +export default Component; +``` + +### Props 处理 + +```typescript +// 安全解构 props 并提供默认值 +const dataSource = innerProps && innerProps.data ? innerProps.data : {}; +const configSource = innerProps && innerProps.config ? innerProps.config : {}; +const onEventHandler = typeof innerProps.onEvent === 'function' + ? innerProps.onEvent + : function () { return undefined; }; +const container = innerProps && innerProps.container ? innerProps.container : null; + +// 从 config 获取配置值(避免使用 || 运算符) +const title = typeof configSource.title === 'string' && configSource.title + ? configSource.title + : '默认标题'; +``` + +## 📝 API 常量定义 + +### 1. 事件列表(EVENT_LIST) + +定义组件可以触发的事件: + +```typescript +import type { EventItem } from '../../common/axure-types'; + +const EVENT_LIST: EventItem[] = [ + { name: 'onClick', desc: '点击按钮时触发' }, + { name: 'onChange', desc: '值改变时触发,传递新值' }, + { name: 'onSubmit', desc: '提交表单时触发,传递表单数据' } +]; +``` + +**触发事件**: + +```typescript +import { useCallback } from 'react'; + +// ⚠️ 强制规则:payload 必须是字符串类型 +// 如果需要传递复杂数据,请使用 JSON.stringify() 序列化 +const emitEvent = useCallback(function (eventName: string, payload?: string) { + try { + onEventHandler(eventName, payload); + } catch (error) { + console.warn('事件触发失败:', eventName, error); + } +}, [onEventHandler]); + +// 使用示例:传递简单字符串 +emitEvent('onClick', 'button_clicked'); + +// 使用示例:传递复杂数据(需要序列化) +emitEvent('onChange', JSON.stringify({ timestamp: Date.now(), value: 'new_value' })); +``` + +### 2. 动作列表(ACTION_LIST) + +定义组件可以响应的动作: + +```typescript +import type { Action } from '../../common/axure-types'; + +// ⚠️ 强制规则:params 必须是字符串类型 +// 如果需要传递复杂参数,请在 desc 中说明使用 JSON 格式 +const ACTION_LIST: Action[] = [ + { name: 'reset', desc: '重置表单到初始状态' }, + { name: 'setValue', desc: '设置指定字段的值,参数格式:JSON 字符串 {"field":"字段名","value":"值"}', params: 'JSON string' }, + { name: 'submit', desc: '提交表单' } +]; +``` + +**处理动作**: + +```typescript +// ⚠️ 强制规则:params 必须是字符串类型 +// 如果需要接收复杂参数,请使用 JSON.parse() 解析 +const fireActionHandler = useCallback(function (name: string, params?: string) { + switch (name) { + case 'reset': + // 重置逻辑 + setFormData({}); + break; + case 'setValue': + // 解析 JSON 字符串参数 + if (params) { + try { + const parsed = JSON.parse(params); + if (parsed.field) { + setFormData({ ...formData, [parsed.field]: parsed.value }); + } + } catch (error) { + console.warn('参数解析失败:', error); + } + } + break; + case 'submit': + // 提交逻辑 + handleSubmit(); + break; + default: + console.warn('未知的动作:', name); + } +}, [formData]); +``` + +### 3. 变量列表(VAR_LIST) + +定义组件暴露的内部状态: + +```typescript +import type { KeyDesc } from '../../common/axure-types'; + +// ⚠️ name 必须使用小写 + 下划线(snake_case),详见 KeyDesc 说明 +const VAR_LIST: KeyDesc[] = [ + { name: 'value', desc: '当前输入值(字符串)' }, + { name: 'is_valid', desc: '表单是否有效(布尔值)' }, + { name: 'error_message', desc: '错误信息(字符串)' } +]; +``` + +**暴露变量**: + +```typescript +useImperativeHandle(ref, function () { + return { + getVar: function (name: string) { + const vars: Record = { + value: inputValue, + isValid: isFormValid, + errorMessage: error + }; + return vars[name]; + }, + // ... 其他接口 + }; +}, [inputValue, isFormValid, error]); +``` + +### 4. 配置项列表(CONFIG_LIST) + +定义配置面板中的可配置项: + +```typescript +import type { ConfigItem } from '../../common/axure-types'; + +const CONFIG_LIST: ConfigItem[] = [ + { + type: 'input', + : 'title', + displayName: '标题', + info: '组件顶部显示的标题文本', + initialValue: '默认标题' + }, + { + type: 'inputNumber', + attributeId: 'maxLength', + displayName: '最大长度', + info: '输入框允许的最大字符数', + initialValue: 100, + min: 1, + max: 1000 + }, + { + type: 'switch', + attributeId: 'disabled', + displayName: '禁用', + info: '是否禁用组件', + initialValue: false + } +]; +``` + +**配置项类型**: +- `input`:文本输入框 +- `inputNumber`:数字输入框 +- `switch`:开关 +- `select`:下拉选择 +- `color`:颜色选择器 +- 更多类型参考 `/src/common/config-panel-types.ts` + +### 5. 数据项列表(DATA_LIST) + +定义组件接收的数据结构: + +```typescript +import type { DataDesc } from '../../common/axure-types'; + +const DATA_LIST: DataDesc[] = [ + { + name: 'users', + desc: '用户列表数据', + keys: [ + { name: 'id', desc: '用户唯一标识(数字)' }, + { name: 'name', desc: '用户姓名(字符串)' }, + { name: 'email', desc: '用户邮箱(字符串)' }, + { name: 'status', desc: '用户状态(active/inactive)' } + ] + } +]; +``` + +**使用数据**: + +```typescript +const users = Array.isArray(dataSource.users) ? dataSource.users : []; +``` + +## 🔧 Container 容器使用 + +`container` 是 AxureProps 提供的 DOM 容器元素,适用于需要直接操作 DOM 的场景(如图表库): + +```typescript +import { useRef, useEffect } from 'react'; +import * as echarts from 'echarts/core'; + +const Component = forwardRef(function Chart( + innerProps: AxureProps, + ref: React.ForwardedRef, +) { + const container = innerProps && innerProps.container ? innerProps.container : null; + const chartRef = useRef(null); + + useEffect(function () { + if (!container) return; + + if (!chartRef.current) { + chartRef.current = echarts.init(container); + chartRef.current.setOption({ /* 配置 */ }); + } + + return function () { + if (chartRef.current) { + chartRef.current.dispose(); + chartRef.current = null; + } + }; + }, [container]); + + return null; // 直接使用 container 时可返回 null +}); +``` + +## ✅ 完整示例 + +```typescript +/** + * @name 用户表单 + */ + +import './style.css'; +import React, { useState, useCallback, useImperativeHandle, forwardRef } from 'react'; +import { Input, Button } from 'antd'; +import type { + KeyDesc, + DataDesc, + ConfigItem, + Action, + EventItem, + AxureProps, + AxureHandle +} from '../../common/axure-types'; + +const EVENT_LIST: EventItem[] = [ + { name: 'onSubmit', desc: '提交表单时触发,传递表单数据(JSON 字符串格式)', payload: 'JSON string' } +]; + +const ACTION_LIST: Action[] = [ + { name: 'reset', desc: '重置表单' }, + { name: 'setData', desc: '设置表单数据,参数格式:JSON 字符串', params: 'JSON string' } +]; + +// ⚠️ name 必须使用小写 + 下划线(snake_case),详见 KeyDesc 说明 +const VAR_LIST: KeyDesc[] = [ + { name: 'form_data', desc: '当前表单数据(对象)' } +]; + +const CONFIG_LIST: ConfigItem[] = [ + { + type: 'input', + attributeId: 'submitText', + displayName: '提交按钮文字', + info: '提交按钮显示的文字', + initialValue: '提交' + } +]; + +const DATA_LIST: DataDesc[] = []; + +const Component = forwardRef(function UserForm( + innerProps: AxureProps, + ref: React.ForwardedRef, +) { + const configSource = innerProps && innerProps.config ? innerProps.config : {}; + const onEventHandler = typeof innerProps.onEvent === 'function' + ? innerProps.onEvent + : function () { return undefined; }; + + const submitText = typeof configSource.submitText === 'string' && configSource.submitText + ? configSource.submitText + : '提交'; + + const formDataState = useState({ name: '', email: '' }); + const formData = formDataState[0]; + const setFormData = formDataState[1]; + + // ⚠️ 强制规则:payload 必须是字符串类型 + const emitEvent = useCallback(function (eventName: string, payload?: string) { + try { + onEventHandler(eventName, payload); + } catch (error) { + console.warn('事件触发失败:', error); + } + }, [onEventHandler]); + + const handleSubmit = useCallback(function () { + // 将复杂数据序列化为 JSON 字符串 + emitEvent('onSubmit', JSON.stringify({ formData })); + }, [emitEvent, formData]); + + const handleReset = useCallback(function () { + setFormData({ name: '', email: '' }); + }, []); + + useImperativeHandle(ref, function () { + return { + getVar: function (name: string) { + const vars: Record = { formData }; + return vars[name]; + }, + fireAction: function (name: string, params?: string) { + switch (name) { + case 'reset': + handleReset(); + break; + case 'setData': + // 解析 JSON 字符串参数 + if (params) { + try { + const parsed = JSON.parse(params); + setFormData(parsed); + } catch (error) { + console.warn('参数解析失败:', error); + } + } + break; + default: + console.warn('未知的动作:', name); + } + }, + eventList: EVENT_LIST, + actionList: ACTION_LIST, + varList: VAR_LIST, + configList: CONFIG_LIST, + dataList: DATA_LIST + }; + }, [formData, handleReset]); + + return ( +
    + setFormData({ ...formData, name: e.target.value })} + /> + setFormData({ ...formData, email: e.target.value })} + /> + +
    + ); +}); + +export default Component; +``` + +## 📚 参考资源 + +- **类型定义**:`/src/common/axure-types.ts` +- **配置面板类型**:`/src/common/config-panel-types.ts` +- **示例代码**:查看 `/src/components/` 和 `/src/prototypes/` 目录下以 `ref-` 开头的文件 diff --git a/axhub-make/rules/debugging-guide.md b/axhub-make/rules/debugging-guide.md new file mode 100644 index 0000000..8478fe2 --- /dev/null +++ b/axhub-make/rules/debugging-guide.md @@ -0,0 +1,90 @@ +# 调试指南 + +核心思想:先定位规范与目标页面,再用自动化完成复现、修复与回归;尽量不要求用户提供技术细节。 + +## 1. 调试前准备 + +开始调试前,按顺序确认以下信息: + +- 目标目录下的 `spec.md`、`index.tsx`、`style.css`(如有) +- 相关主题文件:`DESIGN.md`、`designToken.json`、`globals.css`(如有) +- 验收规则:`rules/development-guide.md` +- 涉及视觉或布局问题时,额外参考 `rules/design-guide.md` + +### 1.1 视觉问题的设计规范优先级 + +当问题属于样式、布局、层级、字体、配色、组件状态不一致时,按以下顺序判断: + +1. **用户提供的设计规范** +2. **主题内设计系统**:`DESIGN.md` +3. **默认设计规范(兜底)** + - **基础型界面**:`/skills/third-party/interface-design/SKILL.md` + - 适用:后台、ToB、工具类、设置页、数据工作台 + - **风格化界面**:`/skills/third-party/frontend-design/SKILL.md` + - 适用:落地页、品牌展示、营销页、ToC 产品页、强视觉 App 页面 + +## 2. 标准调试流程 + +### 2.1 先跑验收脚本 + +优先运行项目验收脚本,拿到真实状态和目标地址: + +```bash +node scripts/check-app-ready.mjs /components/[组件目录] +# 或 +node scripts/check-app-ready.mjs /prototypes/[原型目录] +``` + +处理原则: + +- `ERROR`:优先修复构建、依赖、运行时报错,再进入浏览器复现 +- `READY`:直接进入浏览器自动化验收 +- `TIMEOUT`:优先排查启动卡死、接口阻塞、长任务或脚本异常 + +### 2.2 自动化复现与定位 + +- **优先使用 Chrome DevTools MCP**;没有时使用 **Playwright MCP** +- 如果当前环境没有可用 MCP:直接提示用户安装并完成配置,再继续自动化验收 +- 自动化过程中必须完成: + - 打开验收脚本返回的 `targetUrl` + - 检查 Console、Network、页面报错与资源加载状态 + - 复现核心交互链路,而不是只看首屏 + - 必要时截图、快照、记录关键 DOM / 样式状态 + +## 3. 问题处理顺序 + +按影响范围由大到小处理: + +1. **构建与启动问题**:依赖缺失、编译失败、路径错误、语法错误 +2. **运行时问题**:白屏、崩溃、接口异常、状态错误、空数据未兜底 +3. **交互问题**:按钮不可点、表单无反馈、弹层错位、路由异常 +4. **视觉问题**:尺寸、间距、颜色、字体、层级、响应式、主题不一致 + +**重要**:一次只修一个明确问题。每次修复后必须重新验收,确认未引入新问题,再继续下一个。 + +## 4. 视觉与交互调试要求 + +当页面可访问后,不仅要看“能打开”,还要验证: + +- 关键任务路径是否能走通 +- 空状态、加载态、错误态是否合理 +- 文案、字段、组件层级是否与 `spec.md` 一致 +- 响应式布局是否在主要断点下可用 +- 颜色、字体、圆角、阴影、边框是否与主题或设计规范一致 + +如果属于视觉偏差,但用户未提供设计稿: + +- **基础型界面**按 `/skills/third-party/interface-design/SKILL.md` 约束修复 +- **风格化界面**按 `/skills/third-party/frontend-design/SKILL.md` 约束修复 + +## 5. 回归验收 + +每次修复后都必须重复以下动作: + +1. 重新运行 `check-app-ready.mjs` +2. 再次打开 `targetUrl` +3. 重跑刚才失败的交互链路 +4. 确认 Console 无新增报错 +5. 确认页面状态恢复正常 + +只有当前问题完成回归后,才能进入下一个问题。 diff --git a/axhub-make/rules/design-guide.md b/axhub-make/rules/design-guide.md new file mode 100644 index 0000000..73f443f --- /dev/null +++ b/axhub-make/rules/design-guide.md @@ -0,0 +1,159 @@ +# 设计指南 + +本文档定义页面或元素设计阶段的标准流程、产出规范与质量约束。 + +## 📋 概述 + +设计阶段的核心目标是在编码前完成以下工作: +- 明确页面功能、内容结构与用户任务 +- 确定布局方案与视觉风格方向 +- 复用现有主题、组件与设计规范 +- 产出可落地的设计规格文档 + +## ✅ 触发条件 + +以下场景需进入设计流程: +- 新建页面或元素 +- 显式的视觉或布局调整需求 +- 涉及信息架构或交互结构变化 +- 功能或内容范围发生重大调整 + +## 🔍 前置准备 + +### 1. 资料收集 + +按优先级依次阅读以下资料: + +**用户指定的技能(若有)** +- 优先阅读并执行该 Skill 的流程(可能会产出**主题 tokens / 设计规范**等) +- 如果 Skill 的设计流程和本指导冲突时,以 Skill 为准 + +**用户提供的资料(最高优先级)** +- 用户提供的主题、设计规范、业务文档、数据表、参考设计稿等 +- 用户指定的任何参考资料或约束条件 + +**项目原型资产(补充资源)** +- `AGENTS.md`:项目名称、简介、总文档、默认主题(如有) +- 关联页面或元素的实现代码 + +**优先级原则**:用户提供 > 项目资产 > 默认推荐(详见「默认资源分流」) + +## 📝 内容与功能规划 + + +### 1. 功能与内容规划 + +明确页面或元素的核心职责与内容组织: +- 用户目标、关键任务与功能模块优先级 +- 交互触发点、反馈机制、数据流转与状态管理 +- 信息层级、模块划分、内容清单与文案语气 +- 数据字段与展示优先级、空状态/加载态/异常处理 + +### 2. 数据与内容来源 + +**优先级顺序**(用户未提供充分上下文时,**必须主动检索**以下项目资产): +1. **用户提供** → 严格按提供的数据/文档组织,保持原有语气与术语 +2. **项目数据表** → 使用 `src/database/` 中匹配的数据 +3. **项目文档** → 引用 `src/docs/` 中已定义的业务逻辑与字段 +4. **关联原型** → 在 `src/prototypes/` 中查找相关页面的 `spec.md`、`prd.md` 及实现代码,优先复用已有页面结构和交互约定 + +> **原则**:已有文档中的定义优先于推测。 + +## 🎨 视觉设计流程 + +### 1. 确定主题 + +**优先级顺序**: +1. **用户指定主题** → 严格使用用户提供的主题 +2. **项目默认主题** → 使用 `AGENTS.md` 中定义的默认主题 + +**注意**:禁止使用非用户指定,或项目默认主题以外的主题,包括资产库中的主题。 + +**主题设计系统文件含义**: +- `DESIGN.md`:设计规范(不一定存在) +- `designToken.json` 或 `globals.css`:设计令牌定义(支持 Tailwind CSS V4 或标准 CSS 变量),通常仅使用一个,以主题内实际存在的文件为准。 + +### 2. 确定设计规范 + +**优先级顺序**: +1. **用户指定规范** → 严格遵循用户提供的设计规范文档 +2. **主题内 `DESIGN.md`** → 使用主题自带的设计规范 +3. **内置设计指导** → 根据业务场景选择: + - **基础型界面**(管理后台 / ToB / 工具 / 设置 / 数据工作台)→ `/skills/third-party/interface-design/SKILL.md` + - **风格化界面**(落地页 / ToC / 品牌展示 / 营销页 / 强视觉 App)→ `/skills/third-party/frontend-design/SKILL.md` + - **混合场景** → 以核心任务区优先套用基础型界面规范,品牌展示区再补充风格化规范 + +### 3. 弥补缺失事项 + +按需补充主题或当前设计缺失的资源。 + +**仅在触发条件满足时查阅对应文档**: + +| 资源类型 | 触发条件 | 参考文档或内容 | +|---------|---------|---------| +| **图表库** | 需要数据可视化 且 用户未指定图表库 且 项目中无现有图表方案 | `/skills/default-resource-recommendations/references/default-chart-libraries.md` | +| **图标库** | 需要图标 且 用户未指定图标库 且 主题中无自定义图标系统 | `/skills/default-resource-recommendations/references/default-icon-libraries.md` | +| **字体** | 需要自定义字体 且 用户未提供字体方案 且 主题中无字体定义 | `/skills/default-resource-recommendations/references/default-font-combinations.md` | +| **动画库** | 页面动画处数 > 5 且 用户未指定动画方案 且 主题中无自定义动画系统 | `/skills/default-resource-recommendations/references/default-animation-libraries.md` | +| **图片** | 需要图片/插图 且 用户未提供图片资源 且 Agent 无法生成 | 优先级:Unsplash → Pexels → Pixabay → Picsum | + +**重要**:不要一次性加载所有默认推荐文档,严格按触发条件按需查阅。 + +### 4. 布局结构 + +确定页面框架与信息组织: +- 整体布局模式(单栏、双栏、网格、自由) +- 模块尺寸与比例约束 +- 响应式断点与适配策略 +- 信息密度与留白处理 + +## 📄 规格文档产出 + +### 1. 生成时机 + +- 设计方案确认后,立即产出 `spec.md` +- 使用模板:`src/docs/templates/spec-template.md` + +### 2. 文档内容 + +规格文档必须包含以下部分: + +**业务与功能** +- 页面/元素定位与核心目标 +- 功能清单 +- 交互要点 + +**内容规划** +- 信息架构与模块划分 +- 数据来源与关键字段说明 +- 示例内容(如适用,包含文案语气与术语规范) + +**布局与结构** +- 整体布局(布局模式、关键尺寸、模块比例) +- 响应式适配(如适用) + +**视觉规范** +- 设计规范来源(用户规范/主题设计系统/内置设计指导) +- 自定义设计要点(如适用) +- 组件状态定义(默认/悬停/聚焦/禁用/加载) + +## 🛠️ 样式实现规范 + +### 1. 技术栈选择 + +- 默认:Tailwind CSS V4 + +### 2. 可访问性要求 + +- 色彩对比度符合 WCAG 2.1 AA 标准(特别是文本与背景的对比度) + +## ✨ 质量检查点 + +设计阶段完成前,确认以下检查点: + +- [ ] 已明确业务场景并匹配对应设计规范 +- [ ] 已确定数据来源或兜底方案 +- [ ] 功能清单与内容结构已规划 +- [ ] 布局方案清晰且符合设计规范 +- [ ] Design Tokens 引用正确 +- [ ] `spec.md` 已产出且包含所有必需章节 diff --git a/axhub-make/rules/development-guide.md b/axhub-make/rules/development-guide.md new file mode 100644 index 0000000..ad7cfeb --- /dev/null +++ b/axhub-make/rules/development-guide.md @@ -0,0 +1,75 @@ +# 开发指南 + +**开发流程**:阅读 `spec.md` → 编写代码 → 运行验收脚本 → 按错误信息修复 + +## 项目结构与命名 + +```text +src/ +├── prototypes// +│ ├── index.tsx # 必需 +│ ├── spec.md # 必需 +│ ├── style.css # 可选 +│ ├── hack.css # 可选(AI 不应修改) +│ └── components/ # 可选:内部子组件目录 +└── components// + ├── index.tsx + ├── spec.md + └── (同上) + +- 入口文件必须是 `index.tsx` +- 目录内必须包含 `spec.md` +- 目录(`name`)使用小写字母、数字、连字符(如 `login-page`) +- 支持可选子目录 `components/` 用于拆分内部子组件 + +## 核心约束 + +### 1. 文件头注释(必需) + +每个 `index.tsx` 顶部必须包含 `@name`: + +```typescript +/** + * @name 显示名 + * + */ +``` + +- `@name` 必须存在,且为中文显示名 + +### 2. 依赖与样式 + +- React 与 Hooks 直接从 `react` 导入 +- 第三方库按需导入,新增依赖需同步安装 +- 使用 Tailwind 时必须导入 `style.css`,且样式文件需包含: + +```css +@import "tailwindcss"; +``` + +## 验收流程 + +### 1. 运行验收脚本 + +```bash +node scripts/check-app-ready.mjs /components/[组件目录] +# 或 +node scripts/check-app-ready.mjs /prototypes/[原型目录] +``` + +关键返回字段: +- `status`: `READY` / `ERROR` / `TIMEOUT` +- `targetUrl`: 本次验收目标地址 +- `errors`: 构建/运行时/页面加载错误列表 + +### 2. 错误处理 + +当状态为 `ERROR`:按 `errors` 修复后重新执行验收脚本,直到通过。 + +## 验收清单(提交前) + +- [ ] `index.tsx` 与 `spec.md` 完整存在 +- [ ] 顶部包含 `@name` 注释与参考资料 +- [ ] 依赖导入方式符合规范,新增依赖已安装 +- [ ] 使用 Tailwind 时已正确引入 `@import "tailwindcss";` +- [ ] `check-app-ready.mjs` 验收通过 diff --git a/axhub-make/rules/documentation-guide.md b/axhub-make/rules/documentation-guide.md new file mode 100644 index 0000000..a4a026b --- /dev/null +++ b/axhub-make/rules/documentation-guide.md @@ -0,0 +1,44 @@ +# 文档指南 + +适用于用户主动新建或更新 MD 文档的场景。 + +## 🧭 简单流程 + +1. 先确认文档用途、内容范围和输出位置 +2. 读取与该文档直接相关的资料、已有文档或页面说明 +3. 按需建议模板,但不强制套模板 +4. 在 `src/docs/` 中生成或更新用户需要的单篇 MD 文档 + +补充说明: + +- 默认只处理当前这篇文档 +- 不主动扩展成项目级文档体系 +- 项目说明清单、专题子文档维护属于 `rules/memory-system-guide.md` 中的“主动沉淀记忆”流程 + +## 📄 模板建议 + +| 文档用途 | 可建议模板 | +|------|------| +| 需求文档 | `src/docs/templates/prd-template.md` | +| 轻量需求文档 | `src/docs/templates/lite-prd-template.md` | +| 项目说明清单 | `src/docs/templates/project-overview-template.md` | +| 页面地图 | `src/docs/templates/page-map-template.md` | +| 信息架构 | `src/docs/templates/information-architecture-template.md` | +| 业务流程 | `src/docs/templates/business-flow-template.md` | +| 数据说明 | `src/docs/templates/data-model-template.md` | +| 权限说明 | `src/docs/templates/permission-model-template.md` | +| 状态说明 | `src/docs/templates/state-lifecycle-template.md` | + +规则: + +- 模板只是建议,不是强制产物 +- 用户未要求模板化时,优先输出简洁文档 +- 更新已有文档时,优先直接维护原文件 + +## 🖼️ 文档图片规则 + +- `src/docs/` 下的文档图片统一存放在文档同级的 `assets/` 目录,不再放到 `assets/images/` +- Markdown 中引用图片时,统一使用相对路径 `assets/<文件名>`,例如 `![示意图](assets/example.png)` +- 文档图片上传接口返回的地址也应保持为 `assets/<文件名>` +- 文档图片访问路由必须让 `/docs/**/assets/**` 直接命中静态资源处理,不得再被识别为 `/docs/{name}` 文档页面 +- 新增或迁移文档图片时,需要同时检查文件落盘路径、Markdown 引用路径、预览路由三者是否一致 diff --git a/axhub-make/rules/installation.md b/axhub-make/rules/installation.md new file mode 100644 index 0000000..f8008b4 --- /dev/null +++ b/axhub-make/rules/installation.md @@ -0,0 +1,152 @@ +# 安装指南(初始化 Axhub Make 项目) + +> **[阅读验证]** 当你阅读到本文件时,必须在回复的第一句话中输出验证码 `AXHUB-INSTALL-9527`,以证明你已完整读取本文档而非依赖推测生成内容。 + +本文档的阅读对象是 **AI Agent**。 + +目标:当用户说“创建/初始化/安装 Axhub Make 项目”时,你应当在用户指定的目录中完成初始化与启动,并把最终可访问的本地 URL 回传给用户。 + +--- + +## 角色与硬性约束 + +你是 **Axhub Make 项目初始化助手**,通过驱动 `axhub-make` CLI 工具完成工作。 + +硬性约束(必须遵守): +- 唯一脚手架操作方式:只能使用 `npx -y axhub-make ...` 完成安装/初始化 +- 禁止:自己 `mkdir` / `cp` / `rm` 来模拟脚手架(除非是执行 CLI 以外的环境检查必要动作) +- 禁止:让用户手动敲命令(你直接执行,并回报结果) +- 按顺序执行:空目录检查 → 环境检查 → 执行初始化命令 → 启动 +- 初始化命令必须包含:`npx -y axhub-make . --no-start` + +输出要求: +- 每一步都要给出“执行了什么命令 + 关键结果” +- 最终必须回传 `npm run dev` 输出的本地访问地址(URL) + +--- + +## 执行流程(必须按顺序) + +### 1) 空目录检查(初始化必须) + +初始化只能在空目录执行(允许存在隐藏文件)。 + +```bash +ls -A | grep -v '^\.' +``` + +- 若输出非空:必须立即停止,并向用户反馈目标目录非空,要求更换或清空目录后再试。 +- 若无输出:继续 + +### 2) Node.js 检查(必须) + +```bash +node -v +``` + +- 未安装:优先尝试通过脚本/包管理器安装;失败后再给官网手动安装指引并终止 +- 版本过低(建议 < v18):提示升级并终止 +- 通过:继续 + +安装方式(按优先级): + +```text +1) macOS(Homebrew) + brew install node + +2) Windows(优先 winget,其次 Chocolatey) + winget install OpenJS.NodeJS.LTS + choco install nodejs-lts -y + +3) Linux(按发行版选择其一) + Ubuntu/Debian: sudo apt-get update && sudo apt-get install -y nodejs npm + Fedora/RHEL: sudo dnf install -y nodejs npm + Arch: sudo pacman -S --noconfirm nodejs npm +``` + +官网手动安装指引(仅在上述方式失败/无权限/无包管理器时使用): + +> **注意**:在发送引导时,必须明确说明**为什么**需要用户手动安装(例如:自动安装缺少权限、系统未检测到包管理器、安装命令报错等)。 + +```text +❌ 未检测到 Node.js(建议安装 v18+ LTS) + +由于【请简述原因:如自动安装受到权限限制 / 未找到包管理器】,需要你配合进行手动安装。 + +安装方式: +- Windows/macOS/Linux:去 nodejs.org 下载 LTS 安装包并安装 + +安装完成后再继续初始化。 + +如果你在安装/环境配置上遇到任何问题,把报错信息原样发我,我会继续一步步带你排查。 +``` + +### 3) Git 检查(必须) + +```bash +git --version +``` + +- 未安装:优先尝试通过脚本/包管理器安装;失败后再给官网手动安装指引并终止 +- 通过:继续 + +安装方式(按优先级): + +```text +1) macOS(Homebrew) + brew install git + +2) Windows(优先 winget,其次 Chocolatey) + winget install Git.Git + choco install git -y + +3) Linux(按发行版选择其一) + Ubuntu/Debian: sudo apt-get update && sudo apt-get install -y git + Fedora/RHEL: sudo dnf install -y git + Arch: sudo pacman -S --noconfirm git +``` + +官网手动安装指引(仅在上述方式失败/无权限/无包管理器时使用): + +> **注意**:在发送引导时,必须明确说明**为什么**需要用户手动安装(例如:自动安装缺少权限、系统未检测到包管理器、安装命令报错等)。 + +```text +❌ 未检测到 Git + +由于【请简述原因:如自动安装受到权限限制 / 未找到包管理器】,需要你配合进行手动安装。 + +安装方式: +- Windows/macOS/Linux:git-scm.com 下载并安装 + +安装完成后再继续初始化。 + +如果你在安装/环境配置上遇到任何问题,把报错信息原样发我,我会继续一步步带你排查。 +``` + +### 4) 初始化(必须命令) + +```bash +npx -y axhub-make . --no-start +``` + +说明: +- 必须包含 `-y` +- 必须包含 `--no-start`(避免占用终端,方便后续继续执行) + +### 5) 启动开发服务 + +```bash +npm run dev +``` + +把终端里输出的本地访问地址(例如 `http://localhost:51720`)回传给用户,提醒用户打开验证。 + +--- + +## 常用参数(按需使用) + +- 指定目录:`npx -y axhub-make my-project --no-start` +- 指定包管理器:`--pm pnpm`(npm/pnpm/yarn) +- 跳过依赖安装:`--no-install`(不推荐) +- 强制模式:`--force`(高风险,必须先解释可能覆盖并征得确认) +- 指定模板源:`-t ` diff --git a/axhub-make/rules/legacy-update.md b/axhub-make/rules/legacy-update.md new file mode 100644 index 0000000..1216926 --- /dev/null +++ b/axhub-make/rules/legacy-update.md @@ -0,0 +1,202 @@ +# 旧架构更新指南(旧版 Axhub Make 项目升级到新架构) + +本文档的阅读对象是 **AI Agent**。 + +目标:当用户明确表示要更新一个**旧架构 Axhub Make 项目**时,你应当先完成旧目录结构迁移,再执行标准更新,最后启动验证并回传本地 URL。 + +这里的“旧架构”特指:项目里还没有新版本 marker,且目录结构仍停留在旧命名方式,例如: +- `src/elements/` +- `src/pages/` +- `assets/docs/` +- `assets/database/` + +升级后的目标新结构为: +- `src/components/` +- `src/prototypes/` +- `src/docs/` +- `src/database/` + +--- + +## 角色与硬性约束 + +你是 **Axhub Make 旧架构升级助手**,通过驱动 `axhub-make` CLI 工具完成工作。 + +硬性约束(必须遵守): +- 更新脚手架动作只能使用 `npx -y axhub-make ...`,不要手写脚手架逻辑替代更新命令 +- 禁止:让用户手动敲命令(你直接执行,并回报结果) +- 更新前必须检查:Node.js、Git +- 在执行 `npx -y axhub-make --no-start` 之前,必须先完成旧目录迁移 +- 更新后必须启动:`npm run dev` 并回传 URL +- 每一步都要汇报“执行了什么命令 + 关键结果” + +--- + +## 执行流程(必须按顺序) + +### 0) 识别旧架构项目(必须) + +先检查: +- 是否存在 `package.json` + +然后检查是否**缺少合法 marker**: +- `.axhub/make/make.json` + +并结合旧目录特征进行识别。 + +满足以下条件时,才能按本规则继续: +- 没有合法的 `.axhub/make/make.json` +- 且至少存在以下任一旧目录: + - `src/elements/` + - `src/pages/` + - `assets/docs/` + - `assets/database/` + +如果已经存在合法的 `.axhub/make/make.json`,说明它属于**新架构项目**,应改为使用 `rules/update-guide.md`,不要走本规则。 + +如果既没有 marker,也没有旧目录特征,则停止并提示用户切到正确项目目录。 + +### 1) Node.js 检查(必须) + +```bash +node -v +``` + +- 未安装或版本过低(建议 < v18):提示安装/升级并终止 + +### 2) Git 检查(必须) + +```bash +git --version +``` + +- 未安装:提示安装并终止(脚手架需要 git 拉取模板) + +### 3) 迁移前备份(必须) + +在执行任何目录改动前,先创建带时间戳的备份目录,例如: + +```bash +mkdir -p .axhub/make/backups// +``` + +建议备份这些目录(存在才备份): +- `src/elements/` +- `src/pages/` +- `assets/docs/` +- `assets/database/` +- `package.json` + +如果目录不存在,跳过即可,但必须在结果里说明“哪些目录实际存在并被备份”。 + +### 4) 迁移旧目录到新目录(必须) + +将以下目录迁到新架构: +- `src/elements/` → `src/components/` +- `src/pages/` → `src/prototypes/` +- `assets/docs/` → `src/docs/` +- `assets/database/` → `src/database/` + +迁移原则: +- 目标目录不存在:直接迁移 +- 目标目录已存在:按“不覆盖用户已有新目录内容”的原则进行合并 +- 如果存在同名冲突: + - 优先保留目标目录中的现有文件 + - 把旧目录里的冲突文件转存到备份冲突目录 + - 在结果汇报中明确列出冲突项 +- 迁移完成后,删除已经清空的旧目录 + +注意: +- 这是**物理目录迁移**,不是只靠运行时 URL 兼容 +- 因为更新策略通常保留 `src/**` 和 `assets/**`,如果不先迁移,脚手架更新后旧目录仍会残留 + +### 5) 补写新架构 marker(必须) + +迁移完成后,补写 marker: + +```bash +mkdir -p .axhub/make +cat > .axhub/make/make.json <<'EOF2' +{ "schemaVersion": 1, "projectType": "axhub-make" } +EOF2 +``` + +写完后,这个项目就视为**已迁到新架构**。 + +### 6) 执行标准更新(必须命令) + +```bash +npx -y axhub-make --no-start +``` + +说明: +- 必须包含 `-y` +- 必须包含 `--no-start` +- 这一步必须在“目录迁移 + marker 补写”完成后执行 + +### 7) 启动验证 + +```bash +npm run dev +``` + +把终端里输出的本地访问地址(URL)回传给用户,提醒用户打开验证。 + +--- + +## 为什么旧架构需要单独处理 + +旧架构项目没有 `.axhub/make/make.json`,无法通过新规则中的 marker 检查。 + +同时,更新策略通常会保留: +- `src/**` +- `assets/**` + +这意味着脚手架不会自动把这些旧目录改名: +- `src/elements/` +- `src/pages/` +- `assets/docs/` +- `assets/database/` + +所以对旧架构项目,必须先迁移目录,再执行标准更新。 + +--- + +## 升级后预期结果 + +升级完成后,项目应满足: +- 存在 `.axhub/make/make.json` +- 原有业务内容已经迁到: + - `src/components/` + - `src/prototypes/` + - `src/docs/` + - `src/database/` +- 可以继续使用标准更新规则 `rules/update-guide.md` + +--- + +## 出问题时的最小恢复路径 + +### 1) 查找升级备份 + +```bash +ls -la .axhub/make/backups/ +ls -la package.json.backup.* +``` + +### 2) 恢复迁移目录(仅在确认目录迁移有误时) + +优先从: +- `.axhub/make/backups//` + +恢复对应目录(例如 `assets/docs/`、`assets/database/`),再重新执行升级流程。 + +### 3) 恢复 package.json(仅在确认是依赖问题时) + +```bash +cp package.json.backup. package.json +npm install +npm run dev +``` + +如果仍失败:继续收集 `npm install` / `npm run dev` 的报错,按“每次只修一个问题”的方式推进。 diff --git a/axhub-make/rules/resource-management-guide.md b/axhub-make/rules/resource-management-guide.md new file mode 100644 index 0000000..e19a555 --- /dev/null +++ b/axhub-make/rules/resource-management-guide.md @@ -0,0 +1,25 @@ +# 资源指南 + +适用于资源的新增、整理、替换与维护。 + +## 📁 资源范围 + +- `src/docs/assets/`:文档配图等附属资源 +- `src/docs/templates/`:文档模板 +- `src/database/`:页面可直接消费的数据表 +- `src/themes/`:主题及其配套资源 + +## ✅ 管理规则 + +- 先检查是否已有可复用资源,再决定是否新增 +- 资源按类型放回对应目录,不混放 +- 命名保持清晰,并与同类资源风格一致 +- 未经用户确认,不删除、不覆盖已有资源 +- 引用使用稳定相对路径,避免临时路径或外部临时链接 +- 数据资源遵循 `src/database/README.md` +- 主题资源按 `src/themes//` 维护,并同步相关说明 + +## 🔗 相关规则 + +- `rules/theme-guide.md` +- `src/database/README.md` diff --git a/axhub-make/rules/theme-guide.md b/axhub-make/rules/theme-guide.md new file mode 100644 index 0000000..b909ee5 --- /dev/null +++ b/axhub-make/rules/theme-guide.md @@ -0,0 +1,241 @@ +# 主题指南(Design Tokens + Tailwind CSS + 演示页) + +本文档约束"主题"的生成产物与实现方式,供 AI 在用户提供任意形式输入(token、设计规范文档、截图、样式提取结果等)时,稳定产出可用的主题文件与演示页面。 + +## 🎯 交付物 + +每个主题推荐生成以下文件(根据信息完整度灵活调整): + +``` +src/themes// +├── globals.css # Tailwind CSS 定义(可选,优先使用) +├── designToken.json # 主题 Token(可选,兼容传统模式) +├── DESIGN.md # 设计规范文档(可选,信息充分时推荐) +├── index.tsx # 主题演示页(必需) +├── components/ # 演示组件 2-3 个(推荐) +│ ├── Button.tsx +│ ├── Card.tsx +│ └── Input.tsx +└── templates/ # 页面模板 2-3 个(推荐) + ├── LoginTemplate.tsx + └── DashboardTemplate.tsx +``` + +约束: +- `` 使用 `kebab-case`(如 `antd`、`my-brand`、`trae-dark`) +- **二选一原则**:`globals.css` 和 `designToken.json` **只生成一个**,避免维护负担。 +- **优先 Tailwind CSS**:默认生成 `globals.css`(现代化、易维护)。 +- **例外情况**:仅当使用场景明确不支持 Tailwind CSS 时,才生成 `designToken.json`。 +- **禁止干扰性依赖**:主题演示页不得引入与该主题/设计系统无关的 UI 库,以免影响视觉表达。默认只使用原生 HTML + CSS Variables(或该设计系统指定的组件库)。 + +## 1) `globals.css` 规范 (Tailwind CSS) + +这是主题的核心定义文件(若生成)。 + +### 1.1 格式要求 +- 使用 CSS Variables 定义主题变量(`:root` 和 `.dark`)。 +- 支持 Tailwind CSS v4 语法(如 `@theme inline`)。 +- 必须包含基础配色、圆角、字体等定义。 + +示例结构: +```css +@import "tailwindcss"; + +/* 自定义变体 */ +@custom-variant dark (&:is(.dark *)); + +:root { + /* 基础色变量 */ + --background: #ffffff; + --foreground: #000000; + --primary: #3b82f6; + /* ... */ +} + +.dark { + /* 深色模式变量 */ + --background: #000000; + --foreground: #ffffff; + /* ... */ +} + +@theme inline { + /* 映射变量到 Tailwind theme */ + --color-background: var(--background); + --color-primary: var(--primary); + /* ... */ +} +``` + +## 2) `designToken.json` 规范 + +### 2.1 必须字段 + +- `name`:主题名称(必需,字符串,用于 UI 展示与演示页标题) + +推荐字段: +- `description`:主题描述(字符串) +- `token`:Ant Design 风格的 Token 对象(如果存在 `globals.css`,推荐引用变量如 `var(--primary)`) + +### 2.2 何时生成 + +**仅在以下情况生成 `designToken.json`**: +- 使用场景明确不支持 Tailwind CSS(如纯 JS 环境、特定框架限制) +- 用户明确要求使用 JSON Token 格式 +- 需要与不支持 CSS Variables 的组件库集成 + +**默认情况下优先生成 `globals.css`**,避免维护两套配置。 + +## 3) `DESIGN.md` 规范(设计规范文档) + +**可选但推荐**的产物,用于系统化记录主题的设计价值、使用约束和实现细节。 + +### 3.1 推荐结构 + +参考 `src/themes/firecrawl/DESIGN.md`,包含: +- 设计系统价值(品牌定位、核心价值、设计原则) +- 能力边界(适合/不适合的场景) +- 色彩/字体/间距/圆角/阴影/图标系统 +- 组件规范(Button、Card、Input 等样式规范) +- 使用约束(必须遵守、建议做法、禁止做法) + +### 3.2 生成策略 +- 信息充分时生成完整文档 +- 信息不足时可省略或生成简化版本 + +## 4) `index.tsx`(主题演示页)规范 + +主题演示页的目标:在本项目环境中直观看到主题 token 的内容与效果。 + +### 4.1 基本约束 + +- 文件必须 `export default Component` +- **按需引入**: + - 如果有 `globals.css`,必须 `import './globals.css';` + - 如果有 `designToken.json`,导入并使用它。 + - 如果有 `DESIGN.md`,在演示页中提供查看入口。 +- 演示页应展示主题效果。 +- 默认只使用原生 HTML 元素(div/button/input 等)与 CSS Variables 展示效果。 + +### 4.2 演示内容优先级 + +1. **优先自定义演示**:根据当前主题的设计规范,从零创建符合该主题风格的演示页面、组件和模板 +2. **避免照搬已有主题**:不要直接参考或复制其他主题的演示页面,因为它们是按各自设计规范定制的 + +### 4.3 注入方式 + +- 若有 `globals.css`:使用 CSS 变量展示(推荐)。 +- 若有 `designToken.json`:通过 `ConfigProvider` 注入。 +- **不会同时存在两者**(避免维护负担)。 + +## 5) `components/` 规范(演示组件) + +推荐生成 **2-3 个核心组件**(如 Button、Card、Input),展示主题在具体 UI 组件上的应用效果。 + +### 5.1 组件结构 + +```tsx +import React from 'react'; + +interface ComponentSectionProps { + tokens: Record; +} + +export const ButtonSection: React.FC = ({ tokens }) => { + return ( +
    +
    +

    按钮 Button

    +

    按钮用于开始一个即时操作。

    +
    +
    + {/* 展示多种变体、尺寸、状态 */} +
    +
    + ); +}; +``` + +### 5.2 演示内容 +- 多种变体(primary、secondary、ghost 等) +- 多种尺寸(large、default、small) +- 多种状态(normal、hover、disabled、loading) + +## 6) `templates/` 规范(页面模板) + +推荐生成 **2-3 个典型页面**(如登录页、仪表盘、表单页),展示主题在完整页面场景中的应用效果。 + +### 6.1 推荐模板类型 + +| 模板类型 | 适用场景 | 展示重点 | +|---------|---------|---------| +| 登录页 | 通用 | 表单、按钮、品牌展示 | +| 仪表盘 | 数据密集型产品 | 卡片、图表、数据展示 | +| 表单页 | 业务系统 | 表单组件、布局、验证 | +| 列表页 | 内容管理 | 表格、筛选、分页 | + +### 6.2 模板要求 +- 展示完整的页面布局和交互流程 +- 使用真实/模拟数据 +- 严格遵循主题的设计规范 + +## 7) 输入来源与生成策略 + +**优先级原则**:用户提供 > 项目主题 > 默认设计指导 + +用户输入可能包含: +- Tailwind CSS 文件或配置(**最高优先级**) +- CSS 变量定义 +- JSON Token +- 设计规范文档或截图 + +### 7.1 生成策略(按输入类型) + +1. **用户提供 CSS/Tailwind**: + - 必须生成 `globals.css` + - **不生成** `designToken.json`(除非明确不支持 TW) + - 推荐生成 `DESIGN.md` + 组件 + 模板 + +2. **用户提供 JSON Token**: + - 必须生成 `designToken.json` + - **不生成** `globals.css`(除非用户要求迁移到 TW) + - 推荐生成 `DESIGN.md` + 组件 + 模板 + +3. **用户提供设计规范文档**: + - 必须生成 `DESIGN.md` + - **优先生成 `globals.css`**(现代化方案) + - 生成符合规范的组件和模板 + +4. **截图提取/无明确格式**: + - **默认生成 `globals.css`**(推荐) + - 尽量生成 `DESIGN.md` + 组件 + 模板 + +### 7.2 默认设计指导(兜底方案) + +**仅在以下条件同时满足时查阅**: +- 用户未提供设计规范文档 +- 项目中无可复用的主题 +- 需要设计风格指导 + +**参考文档(渐进式披露)**: + +| 业务场景 | 参考文档 | 判断依据 | +|---------|---------|---------| +| **基础型界面 / ToB / 工具类** | `/skills/third-party/interface-design/SKILL.md` | • 目标用户:企业员工或专业用户
    • 使用频率:高频操作
    • 核心任务:完成工作、处理数据、执行操作 | +| **风格化页面 / ToC / App / 移动端** | `/skills/third-party/frontend-design/SKILL.md` | • 目标用户:普通消费者或品牌受众
    • 使用频率:低频浏览或内容消费
    • 核心任务:获取信息、建立品牌感知、提升视觉吸引力 | +| **混合场景** | 基础区用 `/skills/third-party/interface-design/SKILL.md`,展示区用 `/skills/third-party/frontend-design/SKILL.md` | 核心功能简洁稳定,展示区域可适度风格化 | + +**重要**:不要提前加载设计指导文档,仅在真正需要且无其他参考时查阅。 + +## 8) 开发后验收流程 + +### 8.1 运行验收脚本 + +```bash +node scripts/check-app-ready.mjs /themes/[主题名] +``` + +### 8.2 根据状态处理 + +- **状态为 ERROR**:根据错误信息修复。 +- **状态为 READY**:访问预览 URL,检查主题展示效果(颜色、字体、深色模式切换等)。 diff --git a/axhub-make/rules/update.md b/axhub-make/rules/update.md new file mode 100644 index 0000000..e5126ef --- /dev/null +++ b/axhub-make/rules/update.md @@ -0,0 +1,100 @@ +# 更新指南(更新现有 Axhub Make 项目) + +本文档的阅读对象是 **AI Agent**。 + +目标:当用户说“更新 Axhub Make 项目”时,你应当在项目根目录执行更新并启动验证,最终回传本地 URL;若更新后启动失败,优先走最小恢复路径(例如 `package.json.backup.*`)。 + +--- + +## 角色与硬性约束 + +你是 **Axhub Make 项目更新助手**,通过驱动 `axhub-make` CLI 工具完成工作。 + +硬性约束(必须遵守): +- 更新脚手架动作只能使用 `npx -y axhub-make ...`,不要手写脚手架逻辑 +- 禁止:让用户手动敲命令(你直接执行,并回报结果) +- 更新前必须检查:Node.js、Git +- 更新命令必须包含:`npx -y axhub-make --no-start` +- 更新后必须启动:`npm run dev` 并回传 URL + +输出要求: +- 每一步都要给出“执行了什么命令 + 关键结果” +- 最终必须回传 `npm run dev` 输出的本地访问地址(URL) + +--- + +## 执行流程(必须按顺序) + +### 0) 防跑错目录(必须) + +从此以后,Axhub Make 项目的“更新识别”以根目录的 marker 文件为准: +- `.axhub/make/make.json`(内容要求:`{ "schemaVersion": 1, "projectType": "axhub-make" }`) + +因此在更新前必须检查: +- 是否存在 `package.json` +- 是否存在 `.axhub/make/make.json` 且内容合法 + +若缺失或不合法:必须停止,让用户切到正确项目目录(不做旧项目兼容/迁移)。 + +### 1) Node.js 检查(必须) + +```bash +node -v +``` + +- 未安装或版本过低(建议 < v18):提示安装/升级并终止 + +### 2) Git 检查(必须) + +```bash +git --version +``` + +- 未安装:提示安装并终止(脚手架需要 git 拉取模板) + +### 3) 执行更新(必须命令) + +```bash +npx -y axhub-make --no-start +``` + +说明: +- 必须包含 `-y` +- 必须包含 `--no-start` + +### 4) 启动验证 + +```bash +npm run dev +``` + +把终端里输出的本地访问地址(URL)回传给用户,提醒用户打开验证。 + +--- + +## 更新会做什么(用于解释与排障) + +更新遵循项目内的 `scaffold.update.json` 策略,一般原则: +- 用户业务内容默认保留(例如 `src/**`、`assets/**` 常被配置为不覆盖) +- 基础公共定义可能会强制更新(例如 `src/common/**`) +- `package.json` 如果有差异,通常会备份旧版本为 `package.json.backup.`,并将旧版本里“新版本缺失的依赖”合并到新版本中(避免丢依赖) + +--- + +## 更新后出问题的最小恢复路径 + +### 1) 查找备份 + +```bash +ls -la package.json.backup.* +``` + +### 2) 恢复备份(只在确认是 package.json 引起的问题时) + +```bash +cp package.json.backup. package.json +npm install +npm run dev +``` + +如果仍失败:继续收集 `npm install` / `npm run dev` 的报错,按“每次只修一个问题”的方式推进。 diff --git a/axhub-make/rules/variant-comparison-guide.md b/axhub-make/rules/variant-comparison-guide.md new file mode 100644 index 0000000..5f7a6ba --- /dev/null +++ b/axhub-make/rules/variant-comparison-guide.md @@ -0,0 +1,306 @@ +# 方案比选指南 + +本文档指导 AI Agent 如何为用户提供多方案比选,以及如何引导用户进行决策收敛。 + +## 🎯 目标 + +通过结构化的比选流程,确保: +1. 为用户提供有价值的备选方案 +2. 方案数量可控,便于用户决策 +3. 及时引导用户进行收敛决策 +4. 使用 `VariantSwitcher` 组件进行方案展示 + +## 📋 核心规则 + +### 1. 方案数量原则 + +| 规则 | 说明 | +|------|------| +| **推荐方案数** | 原则上不超过 **3 个**方案 | +| **最小方案数** | 当存在明确分歧时,至少提供 2 个方案 | +| **特殊情况** | 如用户有特殊需求,可适当增加方案数量 | + +**为什么建议不超过 3 个?** +- 超过 3 个方案会增加用户决策负担 +- 方案过多容易导致决策疲劳 +- 3 个方案足以覆盖大多数设计维度(如:保守、平衡、激进) + +> 注意:这是工作指导原则,组件本身不强制限制方案数量。 + +### 2. 何时触发比选 + +以下情况 **应该** 提供多方案比选: + +| 场景 | 示例 | +|------|------| +| 设计风格有多种合理选择 | 卡片式 vs 列表式布局 | +| 交互模式存在权衡 | 弹窗确认 vs 内联确认 | +| 技术实现有多条路径 | 动画效果的不同实现方式 | +| 用户需求模糊 | "做一个好看的按钮" | +| 用户明确要求比选 | "给我几个方案看看" | + +以下情况 **不应该** 提供比选: + +| 场景 | 原因 | +|------|------| +| 需求明确且唯一 | 用户已明确指定实现方式 | +| 只有一种合理实现 | 无需增加决策负担 | +| 差异极小 | 如仅颜色深浅微调,应直接询问偏好 | + +### 3. 方案差异化原则 + +每个方案之间应该有 **明显的差异**,避免提供相似方案: + +``` +✅ 正确: +- 方案 A:极简风格,留白多,突出内容 +- 方案 B:信息密集,功能明显,效率优先 +- 方案 C:视觉丰富,强调品牌感 + +❌ 错误: +- 方案 A:蓝色按钮 +- 方案 B:深蓝色按钮 +- 方案 C:浅蓝色按钮 +``` + +## 🛠️ 使用 VariantSwitcher 组件 + +### 组件导入 + +```typescript +import { VariantSwitcher, VariantItem } from '@/common/VariantSwitcher'; +``` + +### 数据结构 + +每个方案需要定义为 `VariantItem` 类型: + +```typescript +interface VariantItem { + key?: string; // 唯一标识(可选) + content: ReactNode; // 渲染内容 + title: string; // 方案标题 + description: string; // 方案一句话描述 +} +``` + +### 基本用法 + +```tsx +// 1. 定义方案数据 +const CARD_VARIANTS: VariantItem[] = [ + { + key: 'minimal', + content: , + title: '极简风格', + description: '大量留白,突出内容本身' + }, + { + key: 'dense', + content: , + title: '信息密集', + description: '功能区块明显,操作便捷' + }, + { + key: 'visual', + content: , + title: '视觉冲击', + description: '强调视觉效果,品牌感强' + } +]; + +// 2. 使用组件 + { + console.log(`用户选择了: ${item.title}`); + }} +/> +``` + +### Props 说明 + +| 属性 | 类型 | 必填 | 说明 | +|------|------|------|------| +| `id` | string | 否 | 唯一标识符,用于全局寻址 | +| `name` | string | 否 | **中文名称**,显示在全局面板中(如"头部设计"、"登录页布局") | +| `variants` | VariantItem[] | 是 | 方案列表 | +| `defaultIndex` | number | 否 | 默认选中索引,默认 0 | +| `onConfirm` | function | 否 | 确认回调,参数为 (index, item) | +| `onReset` | function | 否 | 重置回调 | +| `style` | CSSProperties | 否 | 容器样式 | +| `className` | string | 否 | 容器类名 | + +### 组件特性 + +#### 1. 轻量化入口 +- 鼠标悬停在组件上时,右上角显示切换图标 +- 点击图标弹出方案选择面板 +- 面板显示每个方案的标题和描述 + +#### 2. 全局面板 +- 页面右下角有全局入口按钮(当存在比选组件时自动显示) +- 点击打开侧边栏,显示所有比选项目 +- 每个项目显示 **中文名称**(`name` 属性) +- 支持快速定位到具体组件 + +#### 3. 快捷键支持 +- `Ctrl + .` 或 `Cmd + .`:显示/隐藏比选入口 + +### 外部控制 + +```javascript +// 在浏览器控制台或 AI Agent 中 +const manager = window.AXHUB_VARIANT_MANAGER; + +// 获取实例 +const switcher = manager.instances['card-style']; + +// 切换方案 +switcher.select(1); // 选择第 2 个方案 + +// 确认选择 +switcher.confirm(); + +// 定位到组件 +switcher.focus(); + +// 获取所有实例 +Object.values(manager.instances).forEach(inst => { + console.log(`${inst.name}: 当前选择 ${inst.variants[inst.currentIndex].title}`); +}); +``` + +## 💬 用户交互规则 + +### 1. 方案介绍 + +在提供方案时,必须简要说明每个方案的特点: + +```markdown +我为您准备了 3 个设计方案,请预览后选择您偏好的风格: + +**极简风格** +大量留白,突出核心内容,适合内容展示型页面 + +**信息密集** +功能区块明显,操作便捷,适合工具型/管理型页面 + +**视觉冲击** +强调视觉效果,品牌感强,适合营销型/展示型页面 + +请悬停在组件上点击切换图标预览,或点击右下角全局按钮查看所有比选项。 +选定后点击"确认"按钮。 +``` + +### 2. 收敛提醒 + +当用户长时间未做决策或继续提出新需求时,应主动提醒: + +```markdown +💡 提醒:您目前还有待决策的方案比选,可以点击右下角的比选按钮查看: +- 卡片样式 +- 头部设计 + +建议先确认这些方案,以便我基于您的选择继续优化。 +``` + +### 3. 决策后确认 + +用户确认方案后,应给予反馈: + +```markdown +✅ 已记录您的选择: +- 卡片样式:**极简风格** + +我将基于这个选择继续后续开发。如需调整,可随时点击组件上的切换图标重新选择。 +``` + +## 📝 典型使用场景 + +### 场景 1:用户需求模糊 + +``` +用户: "帮我做一个登录页面" + +AI: 我为您准备了 3 种登录页面风格: + +**居中卡片** +经典设计,表单居中,背景可自定义 + +**左右分栏** +左侧品牌展示区,右侧登录表单 + +**沉浸式** +大图背景,表单叠加,视觉冲击力强 + +[使用 VariantSwitcher name="登录页布局" 展示三个方案] +``` + +### 场景 2:组件样式选择 + +``` +用户: "这个按钮给我几个样式选择" + +AI: 好的,这里是 3 种按钮样式: + +**实心填充** - 高对比度,强调主要操作 +**描边镂空** - 轻量化,适合次要操作 +**渐变高亮** - 时尚动感,吸引用户注意 + +[使用 VariantSwitcher name="按钮样式" 展示三个方案] +``` + +### 场景 3:页面整体布局 + +``` +用户: "帮我做一个产品详情页" + +AI: 我为您准备了 3 种页面布局方案: + +**左右分栏** - 左侧产品图片,右侧产品信息,经典电商布局 +**上下结构** - 顶部大图轮播,下方详情信息,适合视觉型产品 +**沉浸式** - 全屏背景,信息叠加,强调品牌调性 + +[使用 VariantSwitcher name="产品详情页布局" 展示三个页面方案] +``` + +## ⚠️ 注意事项 + +1. **命名规范**:`name` 属性应使用清晰的中文名称,便于用户在全局面板中识别 +2. **方案描述**:每个 `VariantItem` 的 `title` 和 `description` 应简洁明了 +3. **布局影响**:组件外层是 relative 定位的 div,确保父容器正确设置尺寸 +4. **事件冒泡**:控制条按钮已阻止事件冒泡,不会触发下层点击事件 +5. **层级覆盖**:全局面板 z-index 为 100000,注意与其他 Modal 的层级冲突 +6. **快捷键**:使用 `Ctrl + .` 可以隐藏/显示比选入口,适合演示场景 + +## ✅ 检查清单 + +### 提供比选前 + +- [ ] 确认确实存在多种合理方案 +- [ ] 方案之间有明显差异 +- [ ] 原则上方案数量不超过 3 个 +- [ ] 每个方案都有清晰的标题和描述 + +### 比选进行中 + +- [ ] 使用 `VariantSwitcher` 组件展示方案 +- [ ] 设置有意义的 `name` 属性(中文名称) +- [ ] 为每个方案提供 `title` 和 `description` +- [ ] 向用户说明如何切换和确认 + +### 比选完成后 + +- [ ] 确认用户的选择 +- [ ] 基于选择继续后续工作 +- [ ] 如有多个待决策项,提醒用户收敛 + +## 🔗 相关文档 + +- `src/common/VariantSwitcher.tsx` - 组件实现代码 +- `src/prototypes/ref-variant-switcher-demo/` - 演示页面 +- `skills/third-party/brainstorming/SKILL.md` - 需求对齐规则 +- `development-guide.md` - 开发指南 diff --git a/axhub-make/rules/wechat-reply-guide.md b/axhub-make/rules/wechat-reply-guide.md new file mode 100644 index 0000000..4d43160 --- /dev/null +++ b/axhub-make/rules/wechat-reply-guide.md @@ -0,0 +1,49 @@ +# 微信回复指南 + +## 获取项目首页地址 + +先读取开发服务信息,拿到 `port` 和 `localIP`: + +```bash +cat .axhub/make/.dev-server-info.json + +# 如果当前工作目录是仓库根目录,则读取: +cat apps/axhub-make/.axhub/make/.dev-server-info.json +``` + +对外沟通时不要返回 `127.0.0.1` 或 `localhost`。至少返回 `localIP` 对应的局域网地址。 + +如果机器上还存在额外的可访问组网地址,也要一起返回,例如 Tailscale、ZeroTier 或其他 VPN/组网 IPv4。可以额外检查: + +```bash +ifconfig | rg '^[A-Za-z0-9:._-]+:|\\s+inet\\s' + +# 如果安装了 tailscale,再检查: +tailscale ip -4 +``` + +只返回外部设备可访问的地址,忽略回环地址和明显不可对外访问的虚拟测试地址。 + +回复示例(根据实际值替换;按实际存在的地址返回,不要虚构不存在的项): +``` +项目首页: +• 局域网: http://{localIP}:{port} +• Tailscale: http://{tailscaleIP}:{port} +``` + +## 切换 AI Agent + +直接运行项目内的脚本,无需网络请求: + +```bash +node scripts/switch-agent.mjs +``` + +agent 可选值:`codex`、`claudecode`(别名 `claude`)、`gemini`(别名 `gem`) + +查看当前状态: +```bash +node scripts/switch-agent.mjs --status +``` + +> 切换后 daemon 重启,会话上下文会重置。完成后告知用户已切换到哪个 Agent。 diff --git a/axhub-make/scaffold.update.json b/axhub-make/scaffold.update.json new file mode 100644 index 0000000..6ec2f8c --- /dev/null +++ b/axhub-make/scaffold.update.json @@ -0,0 +1,14 @@ +{ + "schemaVersion": 1, + "neverOverwrite": [ + "src/**", + "assets/**" + ], + "alwaysOverwrite": [ + "src/common/**" + ], + "conflictCheck": [ + "package.json" + ], + "defaultOverwrite": true +} \ No newline at end of file diff --git a/axhub-make/scripts/ai-studio-converter.mjs b/axhub-make/scripts/ai-studio-converter.mjs new file mode 100755 index 0000000..89a569d --- /dev/null +++ b/axhub-make/scripts/ai-studio-converter.mjs @@ -0,0 +1,624 @@ +#!/usr/bin/env node + +/** + * AI Studio 项目预处理器(最小化处理模式) + * + * 只做 100% 有把握的操作: + * 1. 完整复制项目 + * 2. 分析项目结构 + * 3. 生成任务文档 + * + * 不做任何代码修改,全部留给 AI 处理 + */ + +import fs from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +const TARGET_TYPE_TO_SRC_DIR = { + prototypes: 'src/prototypes', + components: 'src/components', + themes: 'src/themes', +}; + +const THEME_SPLIT_SKILL_DOCS = [ + '/skills/axure-prototype-workflow/theme-generation.md', + '/skills/axure-prototype-workflow/doc-generation.md', + '/skills/axure-prototype-workflow/data-generation.md', + '/skills/web-page-workflow/theme-generation.md', + '/skills/web-page-workflow/doc-generation.md', + '/skills/web-page-workflow/data-generation.md', +]; + +const CONFIG = { + projectRoot: path.resolve(__dirname, '..'), + tempDir: path.resolve(__dirname, '../temp'), +}; + +function log(message, type = 'info') { + const prefix = { info: '✓', warn: '⚠', error: '✗', progress: '⏳' }[type] || 'ℹ'; + console.log(`${prefix} ${message}`); +} + +function ensureDir(dirPath) { + if (!fs.existsSync(dirPath)) { + fs.mkdirSync(dirPath, { recursive: true }); + } +} + +function sanitizeName(rawName) { + return String(rawName || '') + .replace(/[^a-z0-9-]/gi, '-') + .replace(/-+/g, '-') + .replace(/^-|-$/g, '') + .toLowerCase(); +} + +function getTargetInfo(targetType, outputName) { + const srcDir = TARGET_TYPE_TO_SRC_DIR[targetType]; + const outputBaseDir = path.resolve(CONFIG.projectRoot, srcDir); + const outputDir = path.join(outputBaseDir, outputName); + const relativeOutputDir = `${srcDir}/${outputName}`; + + if (targetType === 'themes') { + return { + targetType, + srcDir, + outputBaseDir, + outputDir, + relativeOutputDir, + tasksFileName: '.ai-studio-theme-tasks.md', + analysisFileName: '.ai-studio-theme-analysis.json', + checkPath: `/themes/${outputName}`, + label: '主题', + }; + } + + return { + targetType, + srcDir, + outputBaseDir, + outputDir, + relativeOutputDir, + tasksFileName: '.ai-studio-tasks.md', + analysisFileName: '.ai-studio-analysis.json', + checkPath: `/${targetType}/${outputName}`, + label: targetType === 'components' ? '组件' : '页面', + }; +} + +// 递归查找所有 .tsx/.ts 文件 +function findFiles(dir, extensions = ['.tsx', '.ts']) { + const results = []; + + if (!fs.existsSync(dir)) return results; + + const entries = fs.readdirSync(dir, { withFileTypes: true }); + + for (const entry of entries) { + const fullPath = path.join(dir, entry.name); + + if (entry.isDirectory()) { + // 跳过 node_modules + if (entry.name === 'node_modules') continue; + results.push(...findFiles(fullPath, extensions)); + } else { + const ext = path.extname(entry.name); + if (extensions.includes(ext)) { + results.push(fullPath); + } + } + } + + return results; +} + +function copyDirectory(src, dest) { + if (!fs.existsSync(src)) return 0; + ensureDir(dest); + const entries = fs.readdirSync(src, { withFileTypes: true }); + let count = 0; + for (const entry of entries) { + const srcPath = path.join(src, entry.name); + const destPath = path.join(dest, entry.name); + if (entry.isDirectory()) { + if (entry.name === 'node_modules') continue; + count += copyDirectory(srcPath, destPath); + } else { + fs.copyFileSync(srcPath, destPath); + count++; + } + } + return count; +} + +console.log('AI Studio Converter - Minimal Processing Mode\n'); + +function analyzeProject(targetDir) { + const analysis = { + files: [], + components: [], + dependencies: {}, + structure: {}, + indexHtml: null, + viteConfig: null + }; + + const files = findFiles(targetDir, ['.tsx', '.ts']); + + files.forEach(file => { + const relativePath = path.relative(targetDir, file); + const content = fs.readFileSync(file, 'utf8'); + const fileName = path.basename(file); + + const fileInfo = { + path: relativePath, + isAppTsx: fileName === 'App.tsx', + isIndexTsx: fileName === 'index.tsx', + imports: [] + }; + + const importMatches = content.matchAll(/import\s+.*from\s+['"]([^'"]+)['"]/g); + for (const match of importMatches) { + fileInfo.imports.push(match[1]); + } + + analysis.files.push(fileInfo); + + if (relativePath.startsWith('components/')) { + analysis.components.push(relativePath); + } + }); + + const indexHtmlPath = path.join(targetDir, 'index.html'); + if (fs.existsSync(indexHtmlPath)) { + const htmlContent = fs.readFileSync(indexHtmlPath, 'utf8'); + + const importMapMatch = htmlContent.match(/ + + + +``` + +### 本项目页面组件规范 + +默认先转换为普通 React 页面组件。只有在需求明确要求接入 Axhub / Axure 运行时能力时,才引入 `forwardRef`、`useImperativeHandle` 和 `axure-types`。 + +**默认格式(推荐)**: + +```typescript +/** + * @name 页面名称 + * + * 参考资料: + * - /rules/development-guide.md + * - /skills/default-resource-recommendations/SKILL.md + */ + +import './style.css'; +import React from 'react'; + +export default function PageName() { + // 组件逻辑 + + return ( + // JSX 内容 + ); +} +``` + +**仅在以下场景才接入 Axure API**: +- 页面需要被 Axhub / Axure 接管 +- 需要配置面板、外部数据源、事件回调或动作触发 +- 用户明确要求保持与现有 Axure 组件一致的接口形式 + +此时再参考 `/rules/axure-api-guide.md`,使用如下包装形式: + +```typescript +import React, { forwardRef, useImperativeHandle } from 'react'; +import type { AxureProps, AxureHandle } from '../../common/axure-types'; + +const Component = forwardRef(function PageName(innerProps, ref) { + useImperativeHandle(ref, function () { + return { + getVar: function () { return undefined; }, + fireAction: function () {}, + eventList: [], + actionList: [], + varList: [], + configList: [], + dataList: [] + }; + }, []); + + return ( + // JSX 内容 + ); +}); + +export default Component; +``` + +### 转换主应用组件 + +**AI Studio 原始代码**: +```typescript +// App.tsx +import { useState } from 'react'; +import Header from './components/Header'; + +export default function App() { + const [count, setCount] = useState(0); + return
    ; +} +``` + +**转换为本项目默认规范**: +```typescript +/** + * @name 页面名称 + * + * 参考资料: + * - /rules/development-guide.md + * - /skills/default-resource-recommendations/SKILL.md + */ + +import './style.css'; +import React, { useState } from 'react'; +import Header from './components/Header'; + +export default function PageName() { + const [count, setCount] = useState(0); + + return
    ; +} +``` + +**关键转换点**: +1. 添加文件头部注释(`@name` 和参考资料) +2. 默认保持普通 React 组件写法,优先最小改造 +3. 仅在明确需要 Axhub / Axure 接管时,才增加 `forwardRef` 与 `useImperativeHandle` +4. 保持原有的 JSX、Hooks 和 Tailwind 类名不变 +5. 若补接 Axure API,需同步参考 `/rules/axure-api-guide.md` + +### 处理样式 + +从 `index.html` 提取样式信息,创建 `style.css`: + +```css +@import "tailwindcss"; + +/* 提取 + + +
    +
    +

    {{TITLE}}

    +
    + {{DATE}} + + {{SOURCE_COUNT}} Sources +
    +
    + + {{METRICS_DASHBOARD}} + +
    + {{CONTENT}} + +
    +
    Bibliography
    + {{BIBLIOGRAPHY}} +
    + +
    +
    + + diff --git a/axhub-make/skills/third-party/deep-research/templates/report_template.md b/axhub-make/skills/third-party/deep-research/templates/report_template.md new file mode 100644 index 0000000..6a16e69 --- /dev/null +++ b/axhub-make/skills/third-party/deep-research/templates/report_template.md @@ -0,0 +1,414 @@ +# Research Report: [Topic] + + + + + + + + + + + + + + + + + + + + + + + + + + + + +## Executive Summary + +[Write 3-5 bullet points, 50-250 words total] +- **Key Finding 1:** [Major discovery with specific data/metrics] +- **Key Finding 2:** [Important insight with evidence] +- **Key Finding 3:** [Critical conclusion with implications] +- [Additional findings as needed] + +**Primary Recommendation:** [One clear sentence stating the main recommendation] + +**Confidence Level:** [High/Medium/Low with brief justification] + +--- + +## Introduction + +### Research Question +[State the original question clearly and completely] + +[Add 1-2 sentences providing context for why this question matters] + +### Scope & Methodology +[2-3 paragraphs explaining:] +- What specific aspects were investigated +- What was included vs excluded from scope +- What research methods were used (web search, academic sources, industry reports, etc.) +- How many sources were consulted +- Time period covered + +### Key Assumptions +[List 3-5 important assumptions made during research] +- Assumption 1: [Description and why it matters] +- Assumption 2: [Description and why it matters] +- [Continue...] + +--- + +## Main Analysis + + + + + + + + +### Finding 1: [Descriptive Title That Captures the Key Point] + +[Opening paragraph: State the finding clearly and why it matters] + +[Body paragraphs: +- Present detailed evidence +- Include specific data, statistics, dates, numbers +- Explain mechanisms, causes, or relationships +- Discuss implications +- Address nuances or exceptions +] + +**Key Evidence:** +- Data point 1 from Source A [1] +- Data point 2 from Source B [2] +- Conflicting view from Source C [3] and how it was resolved + +**Implications:** +[1-2 paragraphs on what this finding means for the user's decision/understanding] + +**Sources:** [1], [2], [3], [4] + +--- + +### Finding 2: [Descriptive Title] + +[Follow same detailed structure as Finding 1] +[Minimum 300 words per finding] +[Include multiple paragraphs with evidence] + +**Sources:** [5], [6], [7], [8] + +--- + +### Finding 3: [Descriptive Title] + +[Continue with same detail level] + +**Sources:** [9], [10], [11] + +--- + +### Finding 4: [Descriptive Title] + +[And so on... Include 4-8 major findings minimum] + +**Sources:** [12], [13], [14] + +--- + +[Continue with additional findings as needed] + +--- + +## Synthesis & Insights + + + + +### Patterns Identified + +[2-3 paragraphs identifying key patterns across findings] + +**Pattern 1: [Name]** +[Explain the pattern in detail, cite which findings support it] + +**Pattern 2: [Name]** +[Continue...] + +### Novel Insights + +[2-3 paragraphs of insights that go BEYOND what sources explicitly stated] + +**Insight 1: [Name]** +[What you discovered by connecting information across sources] +[Why this matters even though no single source said it explicitly] + +**Insight 2: [Name]** +[Continue...] + +### Implications + +[2-3 paragraphs on what all this means] + +**For [User Context]:** +[Specific implications for the user's situation/decision] + +**Broader Implications:** +[Wider significance of these findings] + +**Second-Order Effects:** +[What might happen as consequences of these findings] + +--- + +## Limitations & Caveats + + + +### Counterevidence Register + + + +[2-3 paragraphs explaining contradictory evidence found during research] + +**Contradictory Finding 1:** [Description] +- Source: [Citation] +- Why it contradicts: [Explanation] +- How resolved/interpreted: [Your analysis] +- Impact on conclusions: [Minimal/Moderate/Significant] + +**Contradictory Finding 2:** [Continue...] + +### Known Gaps + +[2-3 paragraphs explaining:] +- What information was not available +- What questions remain unanswered +- What would strengthen this research + +**Gap 1:** [Description] +- Why it's missing +- How it affects conclusions +- How to address it in future research + +**Gap 2:** [Continue...] + +### Assumptions + +[Revisit key assumptions from intro, now with more detail on their validity] + +**Assumption 1:** [Restate] +- Evidence supporting it: [...] +- Evidence challenging it: [...] +- Overall validity: [...] + +### Areas of Uncertainty + +[2-3 paragraphs on:] +- Where sources disagree +- Where evidence is thin +- Where extrapolation was necessary +- What could change conclusions + +**Uncertainty 1:** [Topic] +[Detailed explanation of what's uncertain and why] + +**Uncertainty 2:** [Continue...] + +--- + +## Recommendations + + + +### Immediate Actions + +[3-5 specific actions the user should take NOW] + +1. **[Action Title]** + - What: [Specific action] + - Why: [Rationale based on findings] + - How: [Implementation steps] + - Timeline: [When to do this] + +2. **[Continue with similar detail...]** + +### Next Steps + +[3-5 actions for the near-term future (1-3 months)] + +1. **[Step Title]** + - [Similar detailed structure] + +### Further Research Needs + +[3-5 areas where additional research would be valuable] + +1. **[Research Topic]** + - What to investigate: [Specific question] + - Why it matters: [Connection to current findings] + - Suggested approach: [How to research it] + +--- + +## Bibliography + + + + + + + + + + +[1] Author Name or Organization (2025). "Full Title of Article or Paper". Publication Name or Website. https://full-url.com (Retrieved: 2025-11-04) + +[2] Second Author (2024). "Second Article Title". Journal Name, Volume(Issue), pages. https://doi-or-url.com (Retrieved: 2025-11-04) + + + + + +--- + +## Appendix: Methodology + +### Research Process + +[2-3 paragraphs describing the research process in detail] + +**Phase Execution:** +- Phase 1 (SCOPE): [What was done] +- Phase 2 (PLAN): [What was done] +- Phase 3 (RETRIEVE): [What was done] +- [Continue for all phases executed] + +### Sources Consulted + +**Total Sources:** [Number] + +**Source Types:** +- Academic journals: [Number] +- Industry reports: [Number] +- News articles: [Number] +- Government/regulatory: [Number] +- Documentation: [Number] +- [Other categories] + +**Geographic Coverage:** +[If relevant, note geographic distribution of sources] + +**Temporal Coverage:** +[Date range of sources, recency distribution] + +### Verification Approach + +[2-3 paragraphs explaining:] + +**Triangulation:** +- How claims were verified across multiple sources +- Minimum sources required per major claim: 3 +- How contradictions were handled + +**Credibility Assessment:** +- How source quality was evaluated +- Scoring system used (0-100) +- Average credibility score: [Number]/100 +- Distribution: [High/medium/low source counts] + +**Quality Control:** +- Validation checks performed +- Issues found and corrected +- Final quality metrics + +### Claims-Evidence Table + + + +| Claim ID | Major Claim | Evidence Type | Supporting Sources | Confidence | +|----------|-------------|---------------|-------------------|------------| +| C1 | [First major claim from findings] | [Primary data / Meta-analysis / Expert opinion] | [1], [2], [3] | High / Medium / Low | +| C2 | [Second major claim] | [Evidence type] | [4], [5], [6] | High / Medium / Low | +| C3 | [Third major claim] | [Evidence type] | [7], [8] | High / Medium / Low | +| ... | [Continue for all major claims] | ... | ... | ... | + +**Confidence Levels:** +- **High**: 3+ independent sources, consistent findings, strong methodology +- **Medium**: 2 sources OR single high-quality source with minor contradictions +- **Low**: Single source OR significant contradictions in evidence + +--- + +## Report Metadata + +**Research Mode:** [Quick/Standard/Deep/UltraDeep] +**Total Sources:** [Number] +**Word Count:** [Approximate count] +**Research Duration:** [Time taken] +**Generated:** [Date and time] +**Validation Status:** [Passed with X warnings / Passed without warnings] + +--- + + + + + diff --git a/axhub-make/skills/third-party/frontend-design/SKILL.md b/axhub-make/skills/third-party/frontend-design/SKILL.md new file mode 100644 index 0000000..5be498e --- /dev/null +++ b/axhub-make/skills/third-party/frontend-design/SKILL.md @@ -0,0 +1,42 @@ +--- +name: frontend-design +description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics. +license: Complete terms in LICENSE.txt +--- + +This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. + +The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. + +## Design Thinking + +Before coding, understand the context and commit to a BOLD aesthetic direction: +- **Purpose**: What problem does this interface solve? Who uses it? +- **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction. +- **Constraints**: Technical requirements (framework, performance, accessibility). +- **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember? + +**CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity. + +Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is: +- Production-grade and functional +- Visually striking and memorable +- Cohesive with a clear aesthetic point-of-view +- Meticulously refined in every detail + +## Frontend Aesthetics Guidelines + +Focus on: +- **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font. +- **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes. +- **Motion**: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise. +- **Spatial Composition**: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density. +- **Backgrounds & Visual Details**: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays. + +NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character. + +Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations. + +**IMPORTANT**: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well. + +Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision. diff --git a/axhub-make/skills/third-party/implement-design/SKILL.md b/axhub-make/skills/third-party/implement-design/SKILL.md new file mode 100644 index 0000000..8f6effa --- /dev/null +++ b/axhub-make/skills/third-party/implement-design/SKILL.md @@ -0,0 +1,245 @@ +--- +name: implement-design +description: Translates Figma designs into production-ready code with 1:1 visual fidelity. Use when implementing UI from Figma files, when user mentions "implement design", "generate code", "implement component", "build Figma design", provides Figma URLs, or asks to build components matching Figma specs. Requires Figma MCP server connection. +metadata: + mcp-server: figma +--- + +# Implement Design + +## Overview + +This skill provides a structured workflow for translating Figma designs into production-ready code with pixel-perfect accuracy. It ensures consistent integration with the Figma MCP server, proper use of design tokens, and 1:1 visual parity with designs. + +## Prerequisites + +- Figma MCP server must be connected and accessible + - Before proceeding, verify the Figma MCP server is connected by checking if Figma MCP tools (e.g., `get_design_context`) are available. + - If the tools are not available, the Figma MCP server may not be enabled. Guide the user to enable the Figma MCP server that is included with the plugin. They may need to restart their MCP client afterward. +- User must provide a Figma URL in the format: `https://figma.com/design/:fileKey/:fileName?node-id=1-2` + - `:fileKey` is the file key + - `1-2` is the node ID (the specific component or frame to implement) +- Project should have an established design system or component library (preferred) + +## Required Workflow + +**Follow these steps in order. Do not skip steps.** + +### Step 1: Get Node ID + +#### Option A: Parse from Figma URL + +When the user provides a Figma URL, extract the file key and node ID to pass as arguments to MCP tools. + +**URL format:** `https://figma.com/design/:fileKey/:fileName?node-id=1-2` + +**Extract:** + +- **File key:** `:fileKey` (the segment after `/design/`) +- **Node ID:** `1-2` (the value of the `node-id` query parameter) + +**Example:** + +- URL: `https://figma.com/design/kL9xQn2VwM8pYrTb4ZcHjF/DesignSystem?node-id=42-15` +- File key: `kL9xQn2VwM8pYrTb4ZcHjF` +- Node ID: `42-15` + +### Step 2: Fetch Design Context + +Run `get_design_context` with the extracted file key and node ID. + +``` +get_design_context(fileKey=":fileKey", nodeId="1-2") +``` + +This provides the structured data including: + +- Layout properties (Auto Layout, constraints, sizing) +- Typography specifications +- Color values and design tokens +- Component structure and variants +- Spacing and padding values + +**If the response is too large or truncated:** + +1. Run `get_metadata(fileKey=":fileKey", nodeId="1-2")` to get the high-level node map +2. Identify the specific child nodes needed from the metadata +3. Fetch individual child nodes with `get_design_context(fileKey=":fileKey", nodeId=":childNodeId")` + +### Step 3: Capture Visual Reference + +Run `get_screenshot` with the same file key and node ID for a visual reference. + +``` +get_screenshot(fileKey=":fileKey", nodeId="1-2") +``` + +This screenshot serves as the source of truth for visual validation. Keep it accessible throughout implementation. + +### Step 4: Download Required Assets + +Download any assets (images, icons, SVGs) returned by the Figma MCP server. + +**IMPORTANT:** Follow these asset rules: + +- If the Figma MCP server returns a `localhost` source for an image or SVG, use that source directly +- DO NOT import or add new icon packages - all assets should come from the Figma payload +- DO NOT use or create placeholders if a `localhost` source is provided +- Assets are served through the Figma MCP server's built-in assets endpoint + +### Step 5: Translate to Project Conventions + +Translate the Figma output into this project's framework, styles, and conventions. + +**Key principles:** + +- Treat the Figma MCP output (typically React + Tailwind) as a representation of design and behavior, not as final code style +- Replace Tailwind utility classes with the project's preferred utilities or design system tokens +- Reuse existing components (buttons, inputs, typography, icon wrappers) instead of duplicating functionality +- Use the project's color system, typography scale, and spacing tokens consistently +- Respect existing routing, state management, and data-fetch patterns + +### Step 6: Achieve 1:1 Visual Parity + +Strive for pixel-perfect visual parity with the Figma design. + +**Guidelines:** + +- Prioritize Figma fidelity to match designs exactly +- Avoid hardcoded values - use design tokens from Figma where available +- When conflicts arise between design system tokens and Figma specs, prefer design system tokens but adjust spacing or sizes minimally to match visuals +- Follow WCAG requirements for accessibility +- Add component documentation as needed + +### Step 7: Validate Against Figma + +Before marking complete, validate the final UI against the Figma screenshot. + +**Validation checklist:** + +- [ ] Layout matches (spacing, alignment, sizing) +- [ ] Typography matches (font, size, weight, line height) +- [ ] Colors match exactly +- [ ] Interactive states work as designed (hover, active, disabled) +- [ ] Responsive behavior follows Figma constraints +- [ ] Assets render correctly +- [ ] Accessibility standards met + +## Implementation Rules + +### Component Organization + +- Place UI components in the project's designated design system directory +- Follow the project's component naming conventions +- Avoid inline styles unless truly necessary for dynamic values + +### Design System Integration + +- ALWAYS use components from the project's design system when possible +- Map Figma design tokens to project design tokens +- When a matching component exists, extend it rather than creating a new one +- Document any new components added to the design system + +### Code Quality + +- Avoid hardcoded values - extract to constants or design tokens +- Keep components composable and reusable +- Add TypeScript types for component props +- Include JSDoc comments for exported components + +## Examples + +### Example 1: Implementing a Button Component + +User says: "Implement this Figma button component: https://figma.com/design/kL9xQn2VwM8pYrTb4ZcHjF/DesignSystem?node-id=42-15" + +**Actions:** + +1. Parse URL to extract fileKey=`kL9xQn2VwM8pYrTb4ZcHjF` and nodeId=`42-15` +2. Run `get_design_context(fileKey="kL9xQn2VwM8pYrTb4ZcHjF", nodeId="42-15")` +3. Run `get_screenshot(fileKey="kL9xQn2VwM8pYrTb4ZcHjF", nodeId="42-15")` for visual reference +4. Download any button icons from the assets endpoint +5. Check if project has existing button component +6. If yes, extend it with new variant; if no, create new component using project conventions +7. Map Figma colors to project design tokens (e.g., `primary-500`, `primary-hover`) +8. Validate against screenshot for padding, border radius, typography + +**Result:** Button component matching Figma design, integrated with project design system. + +### Example 2: Building a Dashboard Layout + +User says: "Build this dashboard: https://figma.com/design/pR8mNv5KqXzGwY2JtCfL4D/Dashboard?node-id=10-5" + +**Actions:** + +1. Parse URL to extract fileKey=`pR8mNv5KqXzGwY2JtCfL4D` and nodeId=`10-5` +2. Run `get_metadata(fileKey="pR8mNv5KqXzGwY2JtCfL4D", nodeId="10-5")` to understand the page structure +3. Identify main sections from metadata (header, sidebar, content area, cards) and their child node IDs +4. Run `get_design_context(fileKey="pR8mNv5KqXzGwY2JtCfL4D", nodeId=":childNodeId")` for each major section +5. Run `get_screenshot(fileKey="pR8mNv5KqXzGwY2JtCfL4D", nodeId="10-5")` for the full page +6. Download all assets (logos, icons, charts) +7. Build layout using project's layout primitives +8. Implement each section using existing components where possible +9. Validate responsive behavior against Figma constraints + +**Result:** Complete dashboard matching Figma design with responsive layout. + +## Best Practices + +### Always Start with Context + +Never implement based on assumptions. Always fetch `get_design_context` and `get_screenshot` first. + +### Incremental Validation + +Validate frequently during implementation, not just at the end. This catches issues early. + +### Document Deviations + +If you must deviate from the Figma design (e.g., for accessibility or technical constraints), document why in code comments. + +### Reuse Over Recreation + +Always check for existing components before creating new ones. Consistency across the codebase is more important than exact Figma replication. + +### Design System First + +When in doubt, prefer the project's design system patterns over literal Figma translation. + +## Common Issues and Solutions + +### Issue: Figma output is truncated + +**Cause:** The design is too complex or has too many nested layers to return in a single response. +**Solution:** Use `get_metadata` to get the node structure, then fetch specific nodes individually with `get_design_context`. + +### Issue: Design doesn't match after implementation + +**Cause:** Visual discrepancies between the implemented code and the original Figma design. +**Solution:** Compare side-by-side with the screenshot from Step 3. Check spacing, colors, and typography values in the design context data. + +### Issue: Assets not loading + +**Cause:** The Figma MCP server's assets endpoint is not accessible or the URLs are being modified. +**Solution:** Verify the Figma MCP server's assets endpoint is accessible. The server serves assets at `localhost` URLs. Use these directly without modification. + +### Issue: Design token values differ from Figma + +**Cause:** The project's design system tokens have different values than those specified in the Figma design. +**Solution:** When project tokens differ from Figma values, prefer project tokens for consistency but adjust spacing/sizing to maintain visual fidelity. + +## Understanding Design Implementation + +The Figma implementation workflow establishes a reliable process for translating designs to code: + +**For designers:** Confidence that implementations will match their designs with pixel-perfect accuracy. +**For developers:** A structured approach that eliminates guesswork and reduces back-and-forth revisions. +**For teams:** Consistent, high-quality implementations that maintain design system integrity. + +By following this workflow, you ensure that every Figma design is implemented with the same level of care and attention to detail. + +## Additional Resources + +- [Figma MCP Server Documentation](https://developers.figma.com/docs/figma-mcp-server/) +- [Figma MCP Server Tools and Prompts](https://developers.figma.com/docs/figma-mcp-server/tools-and-prompts/) +- [Figma Variables and Design Tokens](https://help.figma.com/hc/en-us/articles/15339657135383-Guide-to-variables-in-Figma) diff --git a/axhub-make/skills/third-party/interface-design/SKILL.md b/axhub-make/skills/third-party/interface-design/SKILL.md new file mode 100644 index 0000000..9fe89c2 --- /dev/null +++ b/axhub-make/skills/third-party/interface-design/SKILL.md @@ -0,0 +1,391 @@ +--- +name: interface-design +description: This skill is for interface design — dashboards, admin panels, apps, tools, and interactive products. NOT for marketing design (landing pages, marketing sites, campaigns). +--- + +# Interface Design + +Build interface design with craft and consistency. + +## Scope + +**Use for:** Dashboards, admin panels, SaaS apps, tools, settings pages, data interfaces. + +**Not for:** Landing pages, marketing sites, campaigns. Redirect those to `/frontend-design`. + +--- + +# The Problem + +You will generate generic output. Your training has seen thousands of dashboards. The patterns are strong. + +You can follow the entire process below — explore the domain, name a signature, state your intent — and still produce a template. Warm colors on cold structures. Friendly fonts on generic layouts. "Kitchen feel" that looks like every other app. + +This happens because intent lives in prose, but code generation pulls from patterns. The gap between them is where defaults win. + +The process below helps. But process alone doesn't guarantee craft. You have to catch yourself. + +--- + +# Where Defaults Hide + +Defaults don't announce themselves. They disguise themselves as infrastructure — the parts that feel like they just need to work, not be designed. + +**Typography feels like a container.** Pick something readable, move on. But typography isn't holding your design — it IS your design. The weight of a headline, the personality of a label, the texture of a paragraph. These shape how the product feels before anyone reads a word. A bakery management tool and a trading terminal might both need "clean, readable type" — but the type that's warm and handmade is not the type that's cold and precise. If you're reaching for your usual font, you're not designing. + +**Navigation feels like scaffolding.** Build the sidebar, add the links, get to the real work. But navigation isn't around your product — it IS your product. Where you are, where you can go, what matters most. A page floating in space is a component demo, not software. The navigation teaches people how to think about the space they're in. + +**Data feels like presentation.** You have numbers, show numbers. But a number on screen is not design. The question is: what does this number mean to the person looking at it? What will they do with it? A progress ring and a stacked label both show "3 of 10" — one tells a story, one fills space. If you're reaching for number-on-label, you're not designing. + +**Token names feel like implementation detail.** But your CSS variables are design decisions. `--ink` and `--parchment` evoke a world. `--gray-700` and `--surface-2` evoke a template. Someone reading only your tokens should be able to guess what product this is. + +The trap is thinking some decisions are creative and others are structural. There are no structural decisions. Everything is design. The moment you stop asking "why this?" is the moment defaults take over. + +--- + +# Intent First + +Before touching code, answer these. Not in your head — out loud, to yourself or the user. + +**Who is this human?** +Not "users." The actual person. Where are they when they open this? What's on their mind? What did they do 5 minutes ago, what will they do 5 minutes after? A teacher at 7am with coffee is not a developer debugging at midnight is not a founder between investor meetings. Their world shapes the interface. + +**What must they accomplish?** +Not "use the dashboard." The verb. Grade these submissions. Find the broken deployment. Approve the payment. The answer determines what leads, what follows, what hides. + +**What should this feel like?** +Say it in words that mean something. "Clean and modern" means nothing — every AI says that. Warm like a notebook? Cold like a terminal? Dense like a trading floor? Calm like a reading app? The answer shapes color, type, spacing, density — everything. + +If you cannot answer these with specifics, stop. Ask the user. Do not guess. Do not default. + +## Every Choice Must Be A Choice + +For every decision, you must be able to explain WHY. + +- Why this layout and not another? +- Why this color temperature? +- Why this typeface? +- Why this spacing scale? +- Why this information hierarchy? + +If your answer is "it's common" or "it's clean" or "it works" — you haven't chosen. You've defaulted. Defaults are invisible. Invisible choices compound into generic output. + +**The test:** If you swapped your choices for the most common alternatives and the design didn't feel meaningfully different, you never made real choices. + +## Sameness Is Failure + +If another AI, given a similar prompt, would produce substantially the same output — you have failed. + +This is not about being different for its own sake. It's about the interface emerging from the specific problem, the specific user, the specific context. When you design from intent, sameness becomes impossible because no two intents are identical. + +When you design from defaults, everything looks the same because defaults are shared. + +## Intent Must Be Systemic + +Saying "warm" and using cold colors is not following through. Intent is not a label — it's a constraint that shapes every decision. + +If the intent is warm: surfaces, text, borders, accents, semantic colors, typography — all warm. If the intent is dense: spacing, type size, information architecture — all dense. If the intent is calm: motion, contrast, color saturation — all calm. + +Check your output against your stated intent. Does every token reinforce it? Or did you state an intent and then default anyway? + +--- + +# Product Domain Exploration + +This is where defaults get caught — or don't. + +Generic output: Task type → Visual template → Theme +Crafted output: Task type → Product domain → Signature → Structure + Expression + +The difference: time in the product's world before any visual or structural thinking. + +## Required Outputs + +**Do not propose any direction until you produce all four:** + +**Domain:** Concepts, metaphors, vocabulary from this product's world. Not features — territory. Minimum 5. + +**Color world:** What colors exist naturally in this product's domain? Not "warm" or "cool" — go to the actual world. If this product were a physical space, what would you see? What colors belong there that don't belong elsewhere? List 5+. + +**Signature:** One element — visual, structural, or interaction — that could only exist for THIS product. If you can't name one, keep exploring. + +**Defaults:** 3 obvious choices for this interface type — visual AND structural. You can't avoid patterns you haven't named. + +## Proposal Requirements + +Your direction must explicitly reference: +- Domain concepts you explored +- Colors from your color world exploration +- Your signature element +- What replaces each default + +**The test:** Read your proposal. Remove the product name. Could someone identify what this is for? If not, it's generic. Explore deeper. + +--- + +# The Mandate + +**Before showing the user, look at what you made.** + +Ask yourself: "If they said this lacks craft, what would they mean?" + +That thing you just thought of — fix it first. + +Your first output is probably generic. That's normal. The work is catching it before the user has to. + +## The Checks + +Run these against your output before presenting: + +- **The swap test:** If you swapped the typeface for your usual one, would anyone notice? If you swapped the layout for a standard dashboard template, would it feel different? The places where swapping wouldn't matter are the places you defaulted. + +- **The squint test:** Blur your eyes. Can you still perceive hierarchy? Is anything jumping out harshly? Craft whispers. + +- **The signature test:** Can you point to five specific elements where your signature appears? Not "the overall feel" — actual components. A signature you can't locate doesn't exist. + +- **The token test:** Read your CSS variables out loud. Do they sound like they belong to this product's world, or could they belong to any project? + +If any check fails, iterate before showing. + +--- + +# Craft Foundations + +## Subtle Layering + +This is the backbone of craft. Regardless of direction, product type, or visual style — this principle applies to everything. You should barely notice the system working. When you look at Vercel's dashboard, you don't think "nice borders." You just understand the structure. The craft is invisible — that's how you know it's working. + +### Surface Elevation + +Surfaces stack. A dropdown sits above a card which sits above the page. Build a numbered system — base, then increasing elevation levels. In dark mode, higher elevation = slightly lighter. In light mode, higher elevation = slightly lighter or uses shadow. + +Each jump should be only a few percentage points of lightness. You can barely see the difference in isolation. But when surfaces stack, the hierarchy emerges. Whisper-quiet shifts that you feel rather than see. + +**Key decisions:** +- **Sidebars:** Same background as canvas, not different. Different colors fragment the visual space into "sidebar world" and "content world." A subtle border is enough separation. +- **Dropdowns:** One level above their parent surface. If both share the same level, the dropdown blends into the card and layering is lost. +- **Inputs:** Slightly darker than their surroundings, not lighter. Inputs are "inset" — they receive content. A darker background signals "type here" without heavy borders. + +### Borders + +Borders should disappear when you're not looking for them, but be findable when you need structure. Low opacity rgba blends with the background — it defines edges without demanding attention. Solid hex borders look harsh in comparison. + +Build a progression — not all borders are equal. Standard borders, softer separation, emphasis borders, maximum emphasis for focus rings. Match intensity to the importance of the boundary. + +**The squint test:** Blur your eyes at the interface. You should still perceive hierarchy — what's above what, where sections divide. But nothing should jump out. No harsh lines. No jarring color shifts. Just quiet structure. + +This separates professional interfaces from amateur ones. Get this wrong and nothing else matters. + +## Infinite Expression + +Every pattern has infinite expressions. **No interface should look the same.** + +A metric display could be a hero number, inline stat, sparkline, gauge, progress bar, comparison delta, trend badge, or something new. A dashboard could emphasize density, whitespace, hierarchy, or flow in completely different ways. Even sidebar + cards has infinite variations in proportion, spacing, and emphasis. + +**Before building, ask:** +- What's the ONE thing users do most here? +- What products solve similar problems brilliantly? Study them. +- Why would this interface feel designed for its purpose, not templated? + +**NEVER produce identical output.** Same sidebar width, same card grid, same metric boxes with icon-left-number-big-label-small every time — this signals AI-generated immediately. It's forgettable. + +The architecture and components should emerge from the task and data, executed in a way that feels fresh. Linear's cards don't look like Notion's. Vercel's metrics don't look like Stripe's. Same concepts, infinite expressions. + +## Color Lives Somewhere + +Every product exists in a world. That world has colors. + +Before you reach for a palette, spend time in the product's world. What would you see if you walked into the physical version of this space? What materials? What light? What objects? + +Your palette should feel like it came FROM somewhere — not like it was applied TO something. + +**Beyond Warm and Cold:** Temperature is one axis. Is this quiet or loud? Dense or spacious? Serious or playful? Geometric or organic? A trading terminal and a meditation app are both "focused" — completely different kinds of focus. Find the specific quality, not the generic label. + +**Color Carries Meaning:** Gray builds structure. Color communicates — status, action, emphasis, identity. Unmotivated color is noise. One accent color, used with intention, beats five colors used without thought. + +--- + +# Before Writing Each Component + +**Every time** you write UI code — even small additions — state: + +``` +Intent: [who is this human, what must they do, how should it feel] +Palette: [colors from your exploration — and WHY they fit this product's world] +Depth: [borders / shadows / layered — and WHY this fits the intent] +Surfaces: [your elevation scale — and WHY this color temperature] +Typography: [your typeface — and WHY it fits the intent] +Spacing: [your base unit] +``` + +This checkpoint is mandatory. It forces you to connect every technical choice back to intent. + +If you can't explain WHY for each choice, you're defaulting. Stop and think. + +--- + +# Design Principles + +## Token Architecture + +Every color in your interface should trace back to a small set of primitives: foreground (text hierarchy), background (surface elevation), border (separation hierarchy), brand, and semantic (destructive, warning, success). No random hex values — everything maps to primitives. + +### Text Hierarchy + +Don't just have "text" and "gray text." Build four levels — primary, secondary, tertiary, muted. Each serves a different role: default text, supporting text, metadata, and disabled/placeholder. Use all four consistently. If you're only using two, your hierarchy is too flat. + +### Border Progression + +Borders aren't binary. Build a scale that matches intensity to importance — standard separation, softer separation, emphasis, maximum emphasis. Not every boundary deserves the same weight. + +### Control Tokens + +Form controls have specific needs. Don't reuse surface tokens — create dedicated ones for control backgrounds, control borders, and focus states. This lets you tune interactive elements independently from layout surfaces. + +## Spacing + +Pick a base unit and stick to multiples. Build a scale for different contexts — micro spacing for icon gaps, component spacing within buttons and cards, section spacing between groups, major separation between distinct areas. Random values signal no system. + +## Padding + +Keep it symmetrical. If one side has a value, others should match unless content naturally requires asymmetry. + +## Depth + +Choose ONE approach and commit: +- **Borders-only** — Clean, technical. For dense tools. +- **Subtle shadows** — Soft lift. For approachable products. +- **Layered shadows** — Premium, dimensional. For cards that need presence. +- **Surface color shifts** — Background tints establish hierarchy without shadows. + +Don't mix approaches. + +## Border Radius + +Sharper feels technical. Rounder feels friendly. Build a scale — small for inputs and buttons, medium for cards, large for modals. Don't mix sharp and soft randomly. + +## Typography + +Build distinct levels distinguishable at a glance. Headlines need weight and tight tracking for presence. Body needs comfortable weight for readability. Labels need medium weight that works at smaller sizes. Data needs monospace with tabular number spacing for alignment. Don't rely on size alone — combine size, weight, and letter-spacing. + +## Card Layouts + +A metric card doesn't have to look like a plan card doesn't have to look like a settings card. Design each card's internal structure for its specific content — but keep the surface treatment consistent: same border weight, shadow depth, corner radius, padding scale. + +## Controls + +Native `` render OS-native elements that cannot be styled. Build custom components — trigger buttons with positioned dropdowns, calendar popovers, styled state management. + +## Iconography + +Icons clarify, not decorate — if removing an icon loses no meaning, remove it. Choose one icon set and stick with it. Give standalone icons presence with subtle background containers. + +## Animation + +Fast micro-interactions, smooth easing. Larger transitions can be slightly longer. Use deceleration easing. Avoid spring/bounce in professional interfaces. + +## States + +Every interactive element needs states: default, hover, active, focus, disabled. Data needs states too: loading, empty, error. Missing states feel broken. + +## Navigation Context + +Screens need grounding. A data table floating in space feels like a component demo, not a product. Include navigation showing where you are in the app, location indicators, and user context. When building sidebars, consider same background as main content with border separation rather than different colors. + +## Dark Mode + +Dark interfaces have different needs. Shadows are less visible on dark backgrounds — lean on borders for definition. Semantic colors (success, warning, error) often need slight desaturation. The hierarchy system still applies, just with inverted values. + +--- + +# Avoid + +- **Harsh borders** — if borders are the first thing you see, they're too strong +- **Dramatic surface jumps** — elevation changes should be whisper-quiet +- **Inconsistent spacing** — the clearest sign of no system +- **Mixed depth strategies** — pick one approach and commit +- **Missing interaction states** — hover, focus, disabled, loading, error +- **Dramatic drop shadows** — shadows should be subtle, not attention-grabbing +- **Large radius on small elements** +- **Pure white cards on colored backgrounds** +- **Thick decorative borders** +- **Gradients and color for decoration** — color should mean something +- **Multiple accent colors** — dilutes focus +- **Different hues for different surfaces** — keep the same hue, shift only lightness + +--- + +# Workflow + +## Communication +Be invisible. Don't announce modes or narrate process. + +**Never say:** "I'm in ESTABLISH MODE", "Let me check system.md..." + +**Instead:** Jump into work. State suggestions with reasoning. + +## Suggest + Ask +Lead with your exploration and recommendation, then confirm: +``` +"Domain: [5+ concepts from the product's world] +Color world: [5+ colors that exist in this domain] +Signature: [one element unique to this product] +Rejecting: [default 1] → [alternative], [default 2] → [alternative], [default 3] → [alternative] + +Direction: [approach that connects to the above]" + +[Ask: "Does that direction feel right?"] +``` + +## If Project Has system.md +Read `.interface-design/system.md` and apply. Decisions are made. + +## If No system.md +1. Explore domain — Produce all four required outputs +2. Propose — Direction must reference all four +3. Confirm — Get user buy-in +4. Build — Apply principles +5. **Evaluate** — Run the mandate checks before showing +6. Offer to save + +--- + +# After Completing a Task + +When you finish building something, **always offer to save**: + +``` +"Want me to save these patterns for future sessions?" +``` + +If yes, write to `.interface-design/system.md`: +- Direction and feel +- Depth strategy (borders/shadows/layered) +- Spacing base unit +- Key component patterns + +### What to Save + +Add patterns when a component is used 2+ times, is reusable across the project, or has specific measurements worth remembering. Don't save one-off components, temporary experiments, or variations better handled with props. + +### Consistency Checks + +If system.md defines values, check against them: spacing on the defined grid, depth using the declared strategy throughout, colors from the defined palette, documented patterns reused instead of reinvented. + +This compounds — each save makes future work faster and more consistent. + +--- + +# Deep Dives + +For more detail on specific topics: +- `references/principles.md` — Code examples, specific values, dark mode +- `references/validation.md` — Memory management, when to update system.md +- `references/critique.md` — Post-build craft critique protocol + +# Commands + +- `/interface-design:status` — Current system state +- `/interface-design:audit` — Check code against system +- `/interface-design:extract` — Extract patterns from code +- `/interface-design:critique` — Critique your build for craft, then rebuild what defaulted diff --git a/axhub-make/skills/third-party/prd/SKILL.md b/axhub-make/skills/third-party/prd/SKILL.md new file mode 100644 index 0000000..b19e77a --- /dev/null +++ b/axhub-make/skills/third-party/prd/SKILL.md @@ -0,0 +1,143 @@ +--- +name: prd +description: 'Generate high-quality Product Requirements Documents (PRDs) for software systems and AI-powered features. Includes executive summaries, user stories, technical specifications, and risk analysis.' +license: MIT +--- + +# Product Requirements Document (PRD) + +## Overview + +Design comprehensive, production-grade Product Requirements Documents (PRDs) that bridge the gap between business vision and technical execution. This skill works for modern software systems, ensuring that requirements are clearly defined. + +## When to Use + +Use this skill when: + +- Starting a new product or feature development cycle +- Translating a vague idea into a concrete technical specification +- Defining requirements for AI-powered features +- Stakeholders need a unified "source of truth" for project scope +- User asks to "write a PRD", "document requirements", or "plan a feature" + +--- + +## Operational Workflow + +### Phase 1: Discovery (The Interview) + +Before writing a single line of the PRD, you **MUST** interrogate the user to fill knowledge gaps. Do not assume context. + +**Ask about:** + +- **The Core Problem**: Why are we building this now? +- **Success Metrics**: How do we know it worked? +- **Constraints**: Budget, tech stack, or deadline? + +### Phase 2: Analysis & Scoping + +Synthesize the user's input. Identify dependencies and hidden complexities. + +- Map out the **User Flow**. +- Define **Non-Goals** to protect the timeline. + +### Phase 3: Technical Drafting + +Generate the document using the **Strict PRD Schema** below. + +--- + +## PRD Quality Standards + +### Requirements Quality + +Use concrete, measurable criteria. Avoid "fast", "easy", or "intuitive". + +```diff +# Vague (BAD) +- The search should be fast and return relevant results. +- The UI must look modern and be easy to use. + +# Concrete (GOOD) ++ The search must return results within 200ms for a 10k record dataset. ++ The search algorithm must achieve >= 85% Precision@10 in benchmark evals. ++ The UI must follow the 'Vercel/Next.js' design system and achieve 100% Lighthouse Accessibility score. +``` + +--- + +## Strict PRD Schema + +You **MUST** follow this exact structure for the output: + +### 1. Executive Summary + +- **Problem Statement**: 1-2 sentences on the pain point. +- **Proposed Solution**: 1-2 sentences on the fix. +- **Success Criteria**: 3-5 measurable KPIs. + +### 2. User Experience & Functionality + +- **User Personas**: Who is this for? +- **User Stories**: `As a [user], I want to [action] so that [benefit].` +- **Acceptance Criteria**: Bulleted list of "Done" definitions for each story. +- **Non-Goals**: What are we NOT building? + +### 3. AI System Requirements (If Applicable) + +- **Tool Requirements**: What tools and APIs are needed? +- **Evaluation Strategy**: How to measure output quality and accuracy. + +### 4. Technical Specifications + +- **Architecture Overview**: Data flow and component interaction. +- **Integration Points**: APIs, DBs, and Auth. +- **Security & Privacy**: Data handling and compliance. + +### 5. Risks & Roadmap + +- **Phased Rollout**: MVP -> v1.1 -> v2.0. +- **Technical Risks**: Latency, cost, or dependency failures. + +--- + +## Implementation Guidelines + +### DO (Always) + +- **Define Testing**: For AI systems, specify how to test and validate output quality. +- **Iterate**: Present a draft and ask for feedback on specific sections. + +### DON'T (Avoid) + +- **Skip Discovery**: Never write a PRD without asking at least 2 clarifying questions first. +- **Hallucinate Constraints**: If the user didn't specify a tech stack, ask or label it as `TBD`. + +--- + +## Example: Intelligent Search System + +### 1. Executive Summary + +**Problem**: Users struggle to find specific documentation snippets in massive repositories. +**Solution**: An intelligent search system that provides direct answers with source citations. +**Success**: + +- Reduce search time by 50%. +- Citation accuracy >= 95%. + +### 2. User Stories + +- **Story**: As a developer, I want to ask natural language questions so I don't have to guess keywords. +- **AC**: + - Supports multi-turn clarification. + - Returns code blocks with "Copy" button. + +### 3. AI System Architecture + +- **Tools Required**: `codesearch`, `grep`, `webfetch`. + +### 4. Evaluation + +- **Benchmark**: Test with 50 common developer questions. +- **Pass Rate**: 90% must match expected citations. diff --git a/axhub-make/skills/third-party/product-requirements/SKILL.md b/axhub-make/skills/third-party/product-requirements/SKILL.md new file mode 100644 index 0000000..c19dc3c --- /dev/null +++ b/axhub-make/skills/third-party/product-requirements/SKILL.md @@ -0,0 +1,362 @@ +--- +name: product-requirements +description: Interactive Product Owner skill for requirements gathering, analysis, and PRD generation. Triggers when users request product requirements, feature specification, PRD creation, or need help understanding and documenting project requirements. Uses quality scoring and iterative dialogue to ensure comprehensive requirements before generating professional PRD documents. +--- + +# Product Requirements Skill + +## Overview + +Transform user requirements into professional Product Requirements Documents (PRDs) through interactive dialogue, quality scoring, and iterative refinement. Act as Sarah, a meticulous Product Owner who ensures requirements are clear, testable, and actionable before documentation. + +## Core Identity + +- **Role**: Technical Product Owner & Requirements Specialist +- **Approach**: Systematic, quality-driven, user-focused +- **Method**: Quality scoring (100-point scale) with 90+ threshold for PRD generation +- **Output**: Professional yet concise PRDs saved to `docs/{feature-name}-prd.md` + +## Interactive Process + +### Step 1: Initial Understanding & Context Gathering + +Greet as Sarah and immediately gather project context: + +``` +"Hi! I'm Sarah, your Product Owner. I'll help define clear requirements for your feature. + +Let me first understand your project context..." +``` + +**Context gathering actions:** +1. Read project README, package.json/pyproject.toml in parallel +2. Understand tech stack, existing architecture, and conventions +3. Present initial interpretation of the user's request within project context +4. Ask: "Is this understanding correct? What would you like to add?" + +**Early stop**: Once you can articulate the feature request clearly within the project's context, proceed to quality assessment. + +### Step 2: Quality Assessment (100-Point System) + +Evaluate requirements across five dimensions: + +#### Scoring Breakdown: + +**Business Value & Goals (30 points)** +- 10 pts: Clear problem statement and business need +- 10 pts: Measurable success metrics and KPIs +- 10 pts: Expected outcomes and ROI justification + +**Functional Requirements (25 points)** +- 10 pts: Complete user stories with acceptance criteria +- 10 pts: Clear feature descriptions and workflows +- 5 pts: Edge cases and error handling defined + +**User Experience (20 points)** +- 8 pts: Well-defined user personas +- 7 pts: User journey and interaction flows +- 5 pts: UI/UX preferences and constraints + +**Technical Constraints (15 points)** +- 5 pts: Performance requirements +- 5 pts: Security and compliance needs +- 5 pts: Integration requirements + +**Scope & Priorities (10 points)** +- 5 pts: Clear MVP definition +- 3 pts: Phased delivery plan +- 2 pts: Priority rankings + +**Display format:** +``` +📊 Requirements Quality Score: [TOTAL]/100 + +Breakdown: +- Business Value & Goals: [X]/30 +- Functional Requirements: [X]/25 +- User Experience: [X]/20 +- Technical Constraints: [X]/15 +- Scope & Priorities: [X]/10 + +[If < 90]: Let me ask targeted questions to improve clarity... +[If ≥ 90]: Excellent! Ready to generate PRD. +``` + +### Step 3: Targeted Clarification + +**If score < 90**, use `AskUserQuestion` tool to clarify gaps. Focus on the lowest-scoring area first. + +**Question categories by dimension:** + +**Business Value (if <24/30):** +- "What specific business problem are we solving?" +- "How will we measure success?" +- "What happens if we don't build this?" + +**Functional Requirements (if <20/25):** +- "Can you walk me through the main user workflows?" +- "What should happen when [specific edge case]?" +- "What are the must-have vs. nice-to-have features?" + +**User Experience (if <16/20):** +- "Who are the primary users?" +- "What are their goals and pain points?" +- "Can you describe the ideal user experience?" + +**Technical Constraints (if <12/15):** +- "What performance expectations do you have?" +- "Are there security or compliance requirements?" +- "What systems need to integrate with this?" + +**Scope & Priorities (if <8/10):** +- "What's the minimum viable product (MVP)?" +- "How should we phase the delivery?" +- "What are the top 3 priorities?" + +**Ask 2-3 questions at a time** using `AskUserQuestion` tool. Don't overwhelm. + +### Step 4: Iterative Refinement + +After each user response: +1. Update understanding +2. Recalculate quality score +3. Show progress: "Great! That improved [area] from X to Y." +4. Continue until 90+ threshold met + +### Step 5: Final Confirmation & PRD Generation + +When score ≥ 90: + +``` +"Excellent! Here's the final PRD summary: + +[2-3 sentence executive summary] + +📊 Final Quality Score: [SCORE]/100 + +Generating professional PRD at docs/{feature-name}-prd.md..." +``` + +Generate PRD using template below, then confirm: +``` +"✅ PRD saved to docs/{feature-name}-prd.md + +Review the document and let me know if any adjustments are needed." +``` + +## PRD Template (Streamlined Professional Version) + +Save to: `docs/{feature-name}-prd.md` + +```markdown +# Product Requirements Document: [Feature Name] + +**Version**: 1.0 +**Date**: [YYYY-MM-DD] +**Author**: Sarah (Product Owner) +**Quality Score**: [SCORE]/100 + +--- + +## Executive Summary + +[2-3 paragraphs covering: what problem this solves, who it helps, and expected impact. Include business context and why this feature matters now.] + +--- + +## Problem Statement + +**Current Situation**: [Describe current pain points or limitations] + +**Proposed Solution**: [High-level description of the feature] + +**Business Impact**: [Quantifiable or qualitative expected outcomes] + +--- + +## Success Metrics + +**Primary KPIs:** +- [Metric 1]: [Target value and measurement method] +- [Metric 2]: [Target value and measurement method] +- [Metric 3]: [Target value and measurement method] + +**Validation**: [How and when we'll measure these metrics] + +--- + +## User Personas + +### Primary: [Persona Name] +- **Role**: [User type] +- **Goals**: [What they want to achieve] +- **Pain Points**: [Current frustrations] +- **Technical Level**: [Novice/Intermediate/Advanced] + +[Add secondary persona if relevant] + +--- + +## User Stories & Acceptance Criteria + +### Story 1: [Story Title] + +**As a** [persona] +**I want to** [action] +**So that** [benefit] + +**Acceptance Criteria:** +- [ ] [Specific, testable criterion] +- [ ] [Another criterion covering happy path] +- [ ] [Edge case or error handling criterion] + +### Story 2: [Story Title] + +[Repeat structure] + +[Continue for all core user stories - typically 3-5 for MVP] + +--- + +## Functional Requirements + +### Core Features + +**Feature 1: [Name]** +- Description: [Clear explanation of functionality] +- User flow: [Step-by-step interaction] +- Edge cases: [What happens when...] +- Error handling: [How system responds to failures] + +**Feature 2: [Name]** +[Repeat structure] + +### Out of Scope +- [Explicitly list what's NOT included in this release] +- [Helps prevent scope creep] + +--- + +## Technical Constraints + +### Performance +- [Response time requirements: e.g., "API calls < 200ms"] +- [Scalability: e.g., "Support 10k concurrent users"] + +### Security +- [Authentication/authorization requirements] +- [Data protection and privacy considerations] +- [Compliance requirements: GDPR, SOC2, etc.] + +### Integration +- **[System 1]**: [Integration details and dependencies] +- **[System 2]**: [Integration details] + +### Technology Stack +- [Required frameworks, libraries, or platforms] +- [Compatibility requirements: browsers, devices, OS] +- [Infrastructure constraints: cloud provider, database, etc.] + +--- + +## MVP Scope & Phasing + +### Phase 1: MVP (Required for Initial Launch) +- [Core feature 1] +- [Core feature 2] +- [Core feature 3] + +**MVP Definition**: [What's the minimum that delivers value?] + +### Phase 2: Enhancements (Post-Launch) +- [Enhancement 1] +- [Enhancement 2] + +### Future Considerations +- [Potential future feature 1] +- [Potential future feature 2] + +--- + +## Risk Assessment + +| Risk | Probability | Impact | Mitigation Strategy | +|------|------------|--------|---------------------| +| [Risk 1: e.g., API rate limits] | High/Med/Low | High/Med/Low | [Specific mitigation plan] | +| [Risk 2: e.g., User adoption] | High/Med/Low | High/Med/Low | [Mitigation plan] | +| [Risk 3: e.g., Technical debt] | High/Med/Low | High/Med/Low | [Mitigation plan] | + +--- + +## Dependencies & Blockers + +**Dependencies:** +- [Dependency 1]: [Description and owner] +- [Dependency 2]: [Description] + +**Known Blockers:** +- [Blocker 1]: [Description and resolution plan] + +--- + +## Appendix + +### Glossary +- **[Term]**: [Definition] +- **[Term]**: [Definition] + +### References +- [Link to design mockups] +- [Related documentation] +- [Technical specs or API docs] + +--- + +*This PRD was created through interactive requirements gathering with quality scoring to ensure comprehensive coverage of business, functional, UX, and technical dimensions.* +``` + +## Communication Guidelines + +### Tone +- Professional yet approachable +- Clear, jargon-free language +- Collaborative and respectful + +### Show Progress +- Celebrate improvements: "Great! That really clarifies things." +- Acknowledge complexity: "This is a complex requirement, let's break it down." +- Be transparent: "I need more information about X to ensure quality." + +### Handle Uncertainty +- If user is unsure: "That's okay, let's explore some options..." +- For assumptions: "I'll assume X based on typical patterns, but we can adjust." + +## Important Behaviors + +### DO: +- Start with greeting and context gathering +- Show quality scores transparently after assessment +- Use `AskUserQuestion` tool for clarification (2-3 questions max per round) +- Iterate until 90+ quality threshold +- Generate PRD with proper feature name in filename +- Maintain focus on actionable, testable requirements + +### DON'T: +- Skip context gathering phase +- Accept vague requirements (iterate to 90+) +- Overwhelm with too many questions at once +- Proceed without quality threshold +- Make assumptions without validation +- Use overly technical jargon + +## Success Criteria + +- ✅ Achieve 90+ quality score through systematic dialogue +- ✅ Create concise, actionable PRD (not bloated documentation) +- ✅ Save to `docs/{feature-name}-prd.md` with proper naming +- ✅ Enable smooth handoff to development phase +- ✅ Maintain positive, collaborative user engagement + +--- + +**Remember**: Think in English, respond to user in Chinese. Quality over speed—iterate until requirements are truly clear. diff --git a/axhub-make/skills/third-party/research/SKILL.md b/axhub-make/skills/third-party/research/SKILL.md new file mode 100644 index 0000000..61ae180 --- /dev/null +++ b/axhub-make/skills/third-party/research/SKILL.md @@ -0,0 +1,89 @@ +--- +name: research +description: "Comprehensive research grounded in web data with explicit citations. Use when you need multi-source synthesis—comparisons, current events, market analysis, detailed reports. " +--- +# Research Skill + +Conduct comprehensive research on any topic with automatic source gathering, analysis, and response generation with citations. + +## Authentication + +The script uses OAuth via the Tavily MCP server. **No manual setup required** - on first run, it will: +1. Check for existing tokens in `~/.mcp-auth/` +2. If none found, automatically open your browser for OAuth authentication + +> **Note:** You must have an existing Tavily account. The OAuth flow only supports login — account creation is not available through this flow. [Sign up at tavily.com](https://tavily.com) first if you don't have an account. + +### Alternative: API Key + +If you prefer using an API key, get one at https://tavily.com and add to `~/.claude/settings.json`: +```json +{ + "env": { + "TAVILY_API_KEY": "tvly-your-api-key-here" + } +} +``` + +## Quick Start + +> **Tip**: Research can take 30-120 seconds. Press **Ctrl+B** to run in the background. + +### Using the Script + +```bash +./scripts/research.sh '' [output_file] +``` + +**Examples:** + +```bash +# Basic research +./scripts/research.sh '{"input": "quantum computing trends"}' + +# With pro model for comprehensive analysis +./scripts/research.sh '{"input": "AI agents comparison", "model": "pro"}' + +# Save to file +./scripts/research.sh '{"input": "market analysis for EVs", "model": "pro"}' ./ev-report.md + +# Quick targeted research +./scripts/research.sh '{"input": "climate change impacts", "model": "mini"}' +``` + +## Parameters + +| Field | Type | Default | Description | +|-------|------|---------|-------------| +| `input` | string | Required | Research topic or question | +| `model` | string | `"mini"` | Model: `mini`, `pro`, `auto` | + +## Model Selection + +**Rule of thumb**: "what does X do?" -> mini. "X vs Y vs Z" or "best way to..." -> pro. + +| Model | Use Case | Speed | +|-------|----------|-------| +| `mini` | Single topic, targeted research | ~30s | +| `pro` | Comprehensive multi-angle analysis | ~60-120s | +| `auto` | API chooses based on complexity | Varies | + +## Examples + +### Quick Overview + +```bash +./scripts/research.sh '{"input": "What is retrieval augmented generation?", "model": "mini"}' +``` + +### Technical Comparison + +```bash +./scripts/research.sh '{"input": "LangGraph vs CrewAI for multi-agent systems", "model": "pro"}' +``` + +### Market Research + +```bash +./scripts/research.sh '{"input": "Fintech startup landscape 2025", "model": "pro"}' fintech-report.md +``` diff --git a/axhub-make/skills/third-party/research/scripts/research.sh b/axhub-make/skills/third-party/research/scripts/research.sh new file mode 100644 index 0000000..1d7ac9c --- /dev/null +++ b/axhub-make/skills/third-party/research/scripts/research.sh @@ -0,0 +1,182 @@ +#!/bin/bash +# Tavily Research API script +# Usage: ./research.sh '{"input": "your research query", ...}' [output_file] +# Example: ./research.sh '{"input": "quantum computing trends", "model": "pro"}' results.md + +set -e + +# Function to decode JWT payload +decode_jwt_payload() { + local token="$1" + local payload=$(echo "$token" | cut -d'.' -f2) + local padded_payload="$payload" + case $((${#payload} % 4)) in + 2) padded_payload="${payload}==" ;; + 3) padded_payload="${payload}=" ;; + esac + echo "$padded_payload" | base64 -d 2>/dev/null +} + +# Function to check if a JWT is valid for Tavily (not expired and correct issuer) +is_valid_tavily_token() { + local token="$1" + local payload=$(decode_jwt_payload "$token") + + # Check if it's a Tavily token (exact issuer match for security) + local iss=$(echo "$payload" | jq -r '.iss // empty' 2>/dev/null) + if [ "$iss" != "https://mcp.tavily.com/" ]; then + return 1 # Not a valid Tavily token + fi + + # Check if expired + local exp=$(echo "$payload" | jq -r '.exp // empty' 2>/dev/null) + if [ -n "$exp" ] && [ "$exp" != "null" ]; then + local current_time=$(date +%s) + if [ "$current_time" -ge "$exp" ]; then + return 1 # Expired + fi + fi + + return 0 # Valid Tavily token +} + +# Function to find token from MCP auth cache +get_mcp_token() { + MCP_AUTH_DIR="$HOME/.mcp-auth" + if [ -d "$MCP_AUTH_DIR" ]; then + # Search recursively for *_tokens.json files + while IFS= read -r token_file; do + if [ -f "$token_file" ]; then + token=$(jq -r '.access_token // empty' "$token_file" 2>/dev/null) + if [ -n "$token" ] && [ "$token" != "null" ]; then + # Check if valid Tavily token (correct issuer and not expired) + if ! is_valid_tavily_token "$token"; then + continue # Skip invalid/non-Tavily/expired tokens + fi + echo "$token" + return 0 + fi + fi + done < <(find "$MCP_AUTH_DIR" -name "*_tokens.json" 2>/dev/null) + fi + return 1 +} + +# Try to load OAuth token from MCP if TAVILY_API_KEY is not set +if [ -z "$TAVILY_API_KEY" ]; then + token=$(get_mcp_token) || true + if [ -n "$token" ]; then + export TAVILY_API_KEY="$token" + fi +fi + +JSON_INPUT="$1" +OUTPUT_FILE="$2" + +if [ -z "$JSON_INPUT" ]; then + echo "Usage: ./research.sh '' [output_file]" + echo "" + echo "Required:" + echo " input: string - The research topic or question" + echo "" + echo "Optional:" + echo " model: \"mini\" (default), \"pro\", \"auto\"" + echo " - mini: Targeted, efficient research for narrow questions" + echo " - pro: Comprehensive, multi-agent research for complex topics" + echo " - auto: Automatically selects based on query complexity" + echo "" + echo "Arguments:" + echo " output_file: optional file to save results" + echo "" + echo "Example:" + echo " ./research.sh '{\"input\": \"AI agent frameworks comparison\", \"model\": \"pro\"}' report.md" + exit 1 +fi + +# If no token found, run MCP OAuth flow +if [ -z "$TAVILY_API_KEY" ]; then + set +e + echo "No Tavily token found. Initiating OAuth flow..." >&2 + echo "Please complete authentication in your browser..." >&2 + npx -y mcp-remote https://mcp.tavily.com/mcp /dev/null 2>&1 & + MCP_PID=$! + + TIMEOUT=120 + ELAPSED=0 + while [ $ELAPSED -lt $TIMEOUT ]; do + sleep 3 + ELAPSED=$((ELAPSED + 3)) + + token=$(get_mcp_token) || true + if [ -n "$token" ]; then + export TAVILY_API_KEY="$token" + echo "Authentication successful!" >&2 + break + fi + done + + kill $MCP_PID 2>/dev/null || true + wait $MCP_PID 2>/dev/null || true + set -e +fi + +if [ -z "$TAVILY_API_KEY" ]; then + echo "Error: Failed to obtain Tavily API token" + echo "Note: The OAuth flow requires an existing Tavily account — account creation is not supported through this flow." + echo "Please sign up at https://tavily.com first, then retry, or set TAVILY_API_KEY manually." + exit 1 +fi + +# Validate JSON +if ! echo "$JSON_INPUT" | jq empty 2>/dev/null; then + echo "Error: Invalid JSON input" + exit 1 +fi + +# Check for required input field +if ! echo "$JSON_INPUT" | jq -e '.input' >/dev/null 2>&1; then + echo "Error: 'input' field is required" + exit 1 +fi + +INPUT=$(echo "$JSON_INPUT" | jq -r '.input') +MODEL=$(echo "$JSON_INPUT" | jq -r '.model // "mini"') + +echo "Researching: $INPUT (model: $MODEL)" +echo "This may take 30-120 seconds..." + +# Build MCP JSON-RPC request +MCP_REQUEST=$(jq -n --argjson args "$JSON_INPUT" '{ + "jsonrpc": "2.0", + "id": 1, + "method": "tools/call", + "params": { + "name": "tavily_research", + "arguments": $args + } +}') + +# Call Tavily MCP server via HTTPS (SSE response) +RESPONSE=$(curl -s --request POST \ + --url "https://mcp.tavily.com/mcp" \ + --header "Authorization: Bearer $TAVILY_API_KEY" \ + --header 'Content-Type: application/json' \ + --header 'Accept: application/json, text/event-stream' \ + --header 'x-client-source: claude-code-skill' \ + --data "$MCP_REQUEST") + +# Parse SSE response and extract the JSON result +JSON_DATA=$(echo "$RESPONSE" | grep '^data:' | sed 's/^data://' | head -1) + +if [ -z "$JSON_DATA" ]; then + RESULT="$RESPONSE" +else + RESULT=$(echo "$JSON_DATA" | jq '.result.structuredContent // .result.content[0].text // .error // .' 2>/dev/null || echo "$JSON_DATA") +fi + +if [ -n "$OUTPUT_FILE" ]; then + echo "$RESULT" > "$OUTPUT_FILE" + echo "Results saved to: $OUTPUT_FILE" +else + echo "$RESULT" +fi diff --git a/axhub-make/skills/third-party/shadcn-ui/SKILL.md b/axhub-make/skills/third-party/shadcn-ui/SKILL.md new file mode 100644 index 0000000..a5458c6 --- /dev/null +++ b/axhub-make/skills/third-party/shadcn-ui/SKILL.md @@ -0,0 +1,1932 @@ +--- +name: shadcn-ui +description: Provides complete shadcn/ui component library patterns including installation, configuration, and implementation of accessible React components. Use when setting up shadcn/ui, installing components, building forms with React Hook Form and Zod, customizing themes with Tailwind CSS, or implementing UI patterns like buttons, dialogs, dropdowns, tables, and complex form layouts. +allowed-tools: Read, Write, Bash, Edit, Glob +--- + +# shadcn/ui Component Patterns + +## Overview + +Expert guide for building accessible, customizable UI components with shadcn/ui, Radix UI, and Tailwind CSS. This skill provides comprehensive patterns for implementing production-ready components with full accessibility support. + +## Table of Contents + +- [When to Use](#when-to-use) +- [Quick Start](#quick-start) +- [Installation & Setup](#installation--setup) +- [Project Configuration](#project-configuration) +- [Core Components](#core-components) + - [Button](#button-component) + - [Input & Form Fields](#input--form-fields) + - [Forms with Validation](#forms-with-validation) + - [Card](#card-component) + - [Dialog (Modal)](#dialog-modal-component) + - [Select (Dropdown)](#select-dropdown-component) + - [Sheet (Slide-over)](#sheet-slide-over-component) + - [Menubar & Navigation](#menubar--navigation) + - [Table](#table-component) + - [Toast Notifications](#toast-notifications) + - [Charts](#charts-component) +- [Advanced Patterns](#advanced-patterns) +- [Customization](#customization) +- [Next.js Integration](#nextjs-integration) +- [Best Practices](#best-practices) +- [Common Component Combinations](#common-component-combinations) + +## When to Use + +- Setting up a new project with shadcn/ui +- Installing or configuring individual components +- Building forms with React Hook Form and Zod validation +- Creating accessible UI components (buttons, dialogs, dropdowns, sheets) +- Customizing component styling with Tailwind CSS +- Implementing design systems with shadcn/ui +- Building Next.js applications with TypeScript +- Creating complex layouts and data displays + +## Instructions + +1. **Initialize Project**: Run `npx shadcn@latest init` to configure shadcn/ui +2. **Install Components**: Add components with `npx shadcn@latest add ` +3. **Configure Theme**: Customize CSS variables in globals.css for theming +4. **Import Components**: Use components from `@/components/ui/` directory +5. **Customize as Needed**: Modify component code directly in your project +6. **Add Form Validation**: Integrate React Hook Form with Zod schemas +7. **Test Accessibility**: Verify ARIA attributes and keyboard navigation + +## Examples + +### Complete Form with Validation + +```tsx +"use client" + +import { zodResolver } from "@hookform/resolvers/zod" +import { useForm } from "react-hook-form" +import { z } from "zod" +import { Button } from "@/components/ui/button" +import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form" +import { Input } from "@/components/ui/input" + +const formSchema = z.object({ + email: z.string().email("Invalid email"), + password: z.string().min(8, "Password must be at least 8 characters"), +}) + +export function LoginForm() { + const form = useForm>({ + resolver: zodResolver(formSchema), + defaultValues: { email: "", password: "" }, + }) + + return ( +
    + + ( + + Email + + + + )} /> + + + + ) +} +``` + +## Constraints and Warnings + +- **Not an NPM Package**: Components are copied to your project; you own the code +- **Registry Security**: Components installed via `npx shadcn@latest add` are fetched from remote registries (e.g., `ui.shadcn.com`); always verify the registry source is trusted before installation, and review generated component code before use in production +- **Custom Registry Validation**: When configuring custom registries in `components.json`, only use trusted private registry URLs; never point to untrusted third-party registry endpoints as they could inject malicious code +- **Client Components**: Most components require "use client" directive +- **Radix Dependencies**: Ensure all @radix-ui packages are installed +- **Tailwind Required**: Components rely on Tailwind CSS utilities +- **TypeScript**: Designed for TypeScript projects; type definitions included +- **Path Aliases**: Configure @ alias in tsconfig.json for imports +- **Dark Mode**: Set up dark mode with CSS variables or class strategy + +## Quick Start + +For new projects, use the automated setup: + +```bash +# Create Next.js project with shadcn/ui +npx create-next-app@latest my-app --typescript --tailwind --eslint --app +cd my-app +npx shadcn@latest init + +# Install essential components +npx shadcn@latest add button input form card dialog select +``` + +For existing projects: + +```bash +# Install dependencies +npm install tailwindcss-animate class-variance-authority clsx tailwind-merge lucide-react + +# Initialize shadcn/ui +npx shadcn@latest init +``` + +## What is shadcn/ui? + +shadcn/ui is **not** a traditional component library or npm package. Instead: + +- It's a **collection of reusable components** that you can copy into your project +- Components are **yours to customize** - you own the code +- Built with **Radix UI** primitives for accessibility +- Styled with **Tailwind CSS** utilities +- Includes CLI tool for easy component installation + +## Installation & Setup + +### Initial Setup + +```bash +# Initialize shadcn/ui in your project +npx shadcn@latest init +``` + +During setup, you'll configure: +- TypeScript or JavaScript +- Style (Default, New York, etc.) +- Base color theme +- CSS variables or Tailwind CSS classes +- Component installation path + +### Installing Individual Components + +```bash +# Install a single component +npx shadcn@latest add button + +# Install multiple components +npx shadcn@latest add button input form + +# Install all components +npx shadcn@latest add --all +``` + +### Manual Installation + +If you prefer manual setup: + +```bash +# Install dependencies for a specific component +npm install @radix-ui/react-slot + +# Copy component code from ui.shadcn.com +# Place in src/components/ui/ +``` + +## Project Configuration + +### Required Dependencies + +```json +{ + "dependencies": { + "@radix-ui/react-accordion": "^1.1.2", + "@radix-ui/react-alert-dialog": "^1.0.5", + "@radix-ui/react-dialog": "^1.0.5", + "@radix-ui/react-dropdown-menu": "^2.0.6", + "@radix-ui/react-label": "^2.0.2", + "@radix-ui/react-select": "^2.0.0", + "@radix-ui/react-separator": "^1.0.3", + "@radix-ui/react-slot": "^1.0.2", + "@radix-ui/react-toast": "^1.1.5", + "class-variance-authority": "^0.7.0", + "clsx": "^2.0.0", + "lucide-react": "^0.294.0", + "tailwind-merge": "^2.0.0", + "tailwindcss-animate": "^1.0.7" + } +} +``` + +### TSConfig Configuration + +```json +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "es6"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "baseUrl": ".", + "paths": { + "@/components/*": ["./src/components/*"], + "@/lib/*": ["./src/lib/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} +``` + +### Tailwind Configuration + +```js +// tailwind.config.js +/** @type {import('tailwindcss').Config} */ +module.exports = { + darkMode: ["class"], + content: [ + './pages/**/*.{ts,tsx}', + './components/**/*.{ts,tsx}', + './app/**/*.{ts,tsx}', + './src/**/*.{ts,tsx}', + ], + prefix: "", + theme: { + container: { + center: true, + padding: "2rem", + screens: { + "2xl": "1400px", + }, + }, + extend: { + colors: { + border: "hsl(var(--border))", + input: "hsl(var(--input))", + ring: "hsl(var(--ring))", + background: "hsl(var(--background))", + foreground: "hsl(var(--foreground))", + primary: { + DEFAULT: "hsl(var(--primary))", + foreground: "hsl(var(--primary-foreground))", + }, + secondary: { + DEFAULT: "hsl(var(--secondary))", + foreground: "hsl(var(--secondary-foreground))", + }, + destructive: { + DEFAULT: "hsl(var(--destructive))", + foreground: "hsl(var(--destructive-foreground))", + }, + muted: { + DEFAULT: "hsl(var(--muted))", + foreground: "hsl(var(--muted-foreground))", + }, + accent: { + DEFAULT: "hsl(var(--accent))", + foreground: "hsl(var(--accent-foreground))", + }, + popover: { + DEFAULT: "hsl(var(--popover))", + foreground: "hsl(var(--popover-foreground))", + }, + card: { + DEFAULT: "hsl(var(--card))", + foreground: "hsl(var(--card-foreground))", + }, + }, + borderRadius: { + lg: "var(--radius)", + md: "calc(var(--radius) - 2px)", + sm: "calc(var(--radius) - 4px)", + }, + keyframes: { + "accordion-down": { + from: { height: "0" }, + to: { height: "var(--radix-accordion-content-height)" }, + }, + "accordion-up": { + from: { height: "var(--radix-accordion-content-height)" }, + to: { height: "0" }, + }, + }, + animation: { + "accordion-down": "accordion-down 0.2s ease-out", + "accordion-up": "accordion-up 0.2s ease-out", + }, + }, + }, + plugins: [require("tailwindcss-animate")], +} +``` + +### CSS Variables (globals.css) + +```css +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + :root { + --background: 0 0% 100%; + --foreground: 222.2 84% 4.9%; + --card: 0 0% 100%; + --card-foreground: 222.2 84% 4.9%; + --popover: 0 0% 100%; + --popover-foreground: 222.2 84% 4.9%; + --primary: 222.2 47.4% 11.2%; + --primary-foreground: 210 40% 98%; + --secondary: 210 40% 96.1%; + --secondary-foreground: 222.2 47.4% 11.2%; + --muted: 210 40% 96.1%; + --muted-foreground: 215.4 16.3% 46.9%; + --accent: 210 40% 96.1%; + --accent-foreground: 222.2 47.4% 11.2%; + --destructive: 0 84.2% 60.2%; + --destructive-foreground: 210 40% 98%; + --border: 214.3 31.8% 91.4%; + --input: 214.3 31.8% 91.4%; + --ring: 222.2 84% 4.9%; + --radius: 0.5rem; + } + + .dark { + --background: 222.2 84% 4.9%; + --foreground: 210 40% 98%; + --card: 222.2 84% 4.9%; + --card-foreground: 210 40% 98%; + --popover: 222.2 84% 4.9%; + --popover-foreground: 210 40% 98%; + --primary: 210 40% 98%; + --primary-foreground: 222.2 47.4% 11.2%; + --secondary: 217.2 32.6% 17.5%; + --secondary-foreground: 210 40% 98%; + --muted: 217.2 32.6% 17.5%; + --muted-foreground: 215 20.2% 65.1%; + --accent: 217.2 32.6% 17.5%; + --accent-foreground: 210 40% 98%; + --destructive: 0 62.8% 30.6%; + --destructive-foreground: 210 40% 98%; + --border: 217.2 32.6% 17.5%; + --input: 217.2 32.6% 17.5%; + --ring: 212.7 26.8% 83.9%; + } +} + +@layer base { + * { + @apply border-border; + } + body { + @apply bg-background text-foreground; + } +} +``` + +## Core Components + +### Button Component + +Installation: + +```bash +npx shadcn@latest add button +``` + +Basic usage: + +```tsx +import { Button } from "@/components/ui/button"; + +export function ButtonDemo() { + return ; +} +``` + +Button variants: + +```tsx +import { Button } from "@/components/ui/button"; + +export function ButtonVariants() { + return ( +
    + + + + + + +
    + ); +} +``` + +Button sizes: + +```tsx +
    + + + + +
    +``` + +With loading state: + +```tsx +import { Button } from "@/components/ui/button"; +import { Loader2 } from "lucide-react"; + +export function ButtonLoading() { + return ( + + ); +} +``` + +### Input & Form Fields + +#### Input Component + +Installation: + +```bash +npx shadcn@latest add input +``` + +Basic input: + +```tsx +import { Input } from "@/components/ui/input"; + +export function InputDemo() { + return ; +} +``` + +Input with label: + +```tsx +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; + +export function InputWithLabel() { + return ( +
    + + +
    + ); +} +``` + +Input with button: + +```tsx +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; + +export function InputWithButton() { + return ( +
    + + +
    + ); +} +``` + +### Forms with Validation + +Installation: + +```bash +npx shadcn@latest add form +``` + +This installs React Hook Form, Zod, and form components. + +Complete form example: + +```tsx +"use client" + +import { zodResolver } from "@hookform/resolvers/zod" +import { useForm } from "react-hook-form" +import * as z from "zod" + +import { Button } from "@/components/ui/button" +import { + Form, + FormControl, + FormDescription, + FormField, + FormItem, + FormLabel, + FormMessage, +} from "@/components/ui/form" +import { Input } from "@/components/ui/input" +import { toast } from "@/components/ui/use-toast" + +const formSchema = z.object({ + username: z.string().min(2, { + message: "Username must be at least 2 characters.", + }), + email: z.string().email({ + message: "Please enter a valid email address.", + }), +}) + +export function ProfileForm() { + const form = useForm>({ + resolver: zodResolver(formSchema), + defaultValues: { + username: "", + email: "", + }, + }) + + function onSubmit(values: z.infer) { + toast({ + title: "You submitted the following values:", + description: ( +
    +          {JSON.stringify(values, null, 2)}
    +        
    + ), + }) + } + + return ( +
    + + ( + + Username + + + + + This is your public display name. + + + + )} + /> + + ( + + Email + + + + + + )} + /> + + + + + ) +} +``` + +### Card Component + +Installation: + +```bash +npx shadcn@latest add card +``` + +Basic card: + +```tsx +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "@/components/ui/card" + +export function CardDemo() { + return ( + + + Card Title + Card Description + + +

    Card Content

    +
    + +

    Card Footer

    +
    +
    + ) +} +``` + +Card with form: + +```tsx +import { Button } from "@/components/ui/button" +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "@/components/ui/card" +import { Input } from "@/components/ui/input" +import { Label } from "@/components/ui/label" + +export function CardWithForm() { + return ( + + + Create project + Deploy your new project in one-click. + + +
    +
    +
    + + +
    +
    +
    +
    + + + + +
    + ) +} +``` + +### Dialog (Modal) Component + +Installation: + +```bash +npx shadcn@latest add dialog +``` + +Basic dialog: + +```tsx +import { Button } from "@/components/ui/button" +import { + Dialog, + DialogContent, + DialogDescription, + DialogFooter, + DialogHeader, + DialogTitle, + DialogTrigger, +} from "@/components/ui/dialog" + +export function DialogDemo() { + return ( + + + + + + + Edit profile + + Make changes to your profile here. Click save when you're done. + + +
    +
    + + +
    +
    + + + +
    +
    + ) +} +``` + +### Sheet (Slide-over) Component + +Installation: + +```bash +npx shadcn@latest add sheet +``` + +Basic sheet: + +```tsx +import { Button } from "@/components/ui/button" +import { + Sheet, + SheetContent, + SheetDescription, + SheetHeader, + SheetTitle, + SheetTrigger, +} from "@/components/ui/sheet" + +export function SheetDemo() { + return ( + + + + + + + Edit profile + + Make changes to your profile here. Click save when you're done. + + +
    +
    + + +
    +
    + + +
    +
    +
    +
    + ) +} +``` + +Sheet with side placement: + +```tsx + + + + + + + Settings + + Configure your application settings here. + + + {/* Settings content */} + + +``` + +### Menubar & Navigation + +#### Menubar Component + +Installation: + +```bash +npx shadcn@latest add menubar +``` + +Basic menubar: + +```tsx +import { + Menubar, + MenubarContent, + MenubarItem, + MenubarMenu, + MenubarSeparator, + MenubarShortcut, + MenubarSub, + MenubarSubContent, + MenubarSubTrigger, + MenubarTrigger, +} from "@/components/ui/menubar" + +export function MenubarDemo() { + return ( + + + File + + + New Tab ⌘T + + + New Window ⌘N + + + Share + + Print + + + + Edit + + + Undo ⌘Z + + + Redo ⌘Y + + + + Find + + Search the web + Find... + Find Next + Find Previous + + + + + + ) +} +``` + +### Select (Dropdown) Component + +Installation: + +```bash +npx shadcn@latest add select +``` + +Basic select: + +```tsx +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue, +} from "@/components/ui/select" + +export function SelectDemo() { + return ( + + ) +} +``` + +Select in form: + +```tsx + ( + + Role + + + + )} +/> +``` + +### Toast Notifications + +Installation: + +```bash +npx shadcn@latest add toast +``` + +Setup toast provider in root layout: + +```tsx +import { Toaster } from "@/components/ui/toaster" + +export default function RootLayout({ children }) { + return ( + + + {children} + + + + ) +} +``` + +Using toast: + +```tsx +import { useToast } from "@/components/ui/use-toast" +import { Button } from "@/components/ui/button" + +export function ToastDemo() { + const { toast } = useToast() + + return ( + + ) +} +``` + +Toast variants: + +```tsx +// Success +toast({ + title: "Success", + description: "Your changes have been saved.", +}) + +// Error +toast({ + variant: "destructive", + title: "Error", + description: "Something went wrong.", +}) + +// With action +toast({ + title: "Uh oh! Something went wrong.", + description: "There was a problem with your request.", + action: Try again, +}) +``` + +### Table Component + +Installation: + +```bash +npx shadcn@latest add table +``` + +Basic table: + +```tsx +import { + Table, + TableBody, + TableCaption, + TableCell, + TableHead, + TableHeader, + TableRow, +} from "@/components/ui/table" + +const invoices = [ + { invoice: "INV001", status: "Paid", method: "Credit Card", amount: "$250.00" }, + { invoice: "INV002", status: "Pending", method: "PayPal", amount: "$150.00" }, +] + +export function TableDemo() { + return ( + + A list of your recent invoices. + + + Invoice + Status + Method + Amount + + + + {invoices.map((invoice) => ( + + {invoice.invoice} + {invoice.status} + {invoice.method} + {invoice.amount} + + ))} + +
    + ) +} +``` + +### Charts Component + +Installation: + +```bash +npx shadcn@latest add chart +``` + +The charts component in shadcn/ui is built on **Recharts** - providing direct access to all Recharts capabilities with consistent theming and styling. + +#### ChartContainer and ChartConfig + +The `ChartContainer` wraps your Recharts component and accepts a `config` prop for theming: + +```tsx +import { Bar, BarChart, CartesianGrid, XAxis, YAxis } from "recharts" +import { ChartContainer, ChartTooltipContent } from "@/components/ui/chart" + +const chartConfig = { + desktop: { + label: "Desktop", + color: "var(--chart-1)", + }, + mobile: { + label: "Mobile", + color: "var(--chart-2)", + }, +} satisfies import("@/components/ui/chart").ChartConfig + +const chartData = [ + { month: "January", desktop: 186, mobile: 80 }, + { month: "February", desktop: 305, mobile: 200 }, + { month: "March", desktop: 237, mobile: 120 }, +] + +export function BarChartDemo() { + return ( + + + + value.slice(0, 3)} + /> + + + } /> + + + ) +} +``` + +#### ChartConfig with Custom Colors + +You can define custom colors directly in the configuration: + +```tsx +const chartConfig = { + visitors: { + label: "Visitors", + color: "#2563eb", // Custom hex color + theme: { + light: "#2563eb", + dark: "#60a5fa", + }, + }, + sales: { + label: "Sales", + color: "var(--chart-1)", // CSS variable + theme: { + light: "oklch(0.646 0.222 41.116)", + dark: "oklch(0.696 0.182 281.41)", + }, + }, +} satisfies import("@/components/ui/chart").ChartConfig +``` + +#### CSS Variables for Charts + +Add chart color variables to your `globals.css`: + +```css +@layer base { + :root { + /* Chart colors */ + --chart-1: oklch(0.646 0.222 41.116); + --chart-2: oklch(0.6 0.118 184.704); + --chart-3: oklch(0.546 0.198 38.228); + --chart-4: oklch(0.596 0.151 343.253); + --chart-5: oklch(0.546 0.158 49.157); + } + + .dark { + --chart-1: oklch(0.488 0.243 264.376); + --chart-2: oklch(0.696 0.17 162.48); + --chart-3: oklch(0.698 0.141 24.311); + --chart-4: oklch(0.676 0.172 171.196); + --chart-5: oklch(0.578 0.192 302.85); + } +} +``` + +#### Line Chart Example + +```tsx +import { Line, LineChart, CartesianGrid, XAxis, YAxis } from "recharts" +import { ChartContainer, ChartTooltipContent } from "@/components/ui/chart" + +const chartConfig = { + price: { + label: "Price", + color: "var(--chart-1)", + }, +} satisfies import("@/components/ui/chart").ChartConfig + +const chartData = [ + { month: "January", price: 186 }, + { month: "February", price: 305 }, + { month: "March", price: 237 }, + { month: "April", price: 203 }, + { month: "May", price: 276 }, +] + +export function LineChartDemo() { + return ( + + + + + `$${value}`} /> + + } /> + + + ) +} +``` + +#### Area Chart Example + +```tsx +import { Area, AreaChart, XAxis, YAxis } from "recharts" +import { ChartContainer, ChartLegend, ChartLegendContent, ChartTooltipContent } from "@/components/ui/chart" + +const chartConfig = { + desktop: { label: "Desktop", color: "var(--chart-1)" }, + mobile: { label: "Mobile", color: "var(--chart-2)" }, +} satisfies import("@/components/ui/chart").ChartConfig + +export function AreaChartDemo() { + return ( + + + + + + + } /> + } /> + + + ) +} +``` + +#### Pie Chart Example + +```tsx +import { Pie, PieChart } from "recharts" +import { ChartContainer, ChartLegend, ChartLegendContent, ChartTooltipContent } from "@/components/ui/chart" + +const chartConfig = { + chrome: { label: "Chrome", color: "var(--chart-1)" }, + safari: { label: "Safari", color: "var(--chart-2)" }, + firefox: { label: "Firefox", color: "var(--chart-3)" }, +} satisfies import("@/components/ui/chart").ChartConfig + +const pieData = [ + { browser: "Chrome", visitors: 275, fill: "var(--color-chrome)" }, + { browser: "Safari", visitors: 200, fill: "var(--color-safari)" }, + { browser: "Firefox", visitors: 187, fill: "var(--color-firefox)" }, +] + +export function PieChartDemo() { + return ( + + + + } /> + } /> + + + ) +} +``` + +#### ChartTooltipContent Props + +| Prop | Type | Default | Description | +|------|------|---------|-------------| +| `labelKey` | string | "label" | Key for tooltip label | +| `nameKey` | string | "name" | Key for tooltip name | +| `indicator` | "dot" \| "line" \| "dashed" | "dot" | Indicator style | +| `hideLabel` | boolean | false | Hide label | +| `hideIndicator` | boolean | false | Hide indicator | + +#### Accessibility + +Enable keyboard navigation and screen reader support: + +```tsx +... +``` + +This adds: +- Keyboard arrow key navigation +- ARIA labels for chart elements +- Screen reader announcements for data values + +## Customization + +### Theming with CSS Variables + +shadcn/ui uses CSS variables for theming. Configure in `globals.css`: + +```css +@layer base { + :root { + --background: 0 0% 100%; + --foreground: 222.2 84% 4.9%; + --primary: 222.2 47.4% 11.2%; + --primary-foreground: 210 40% 98%; + --secondary: 210 40% 96.1%; + --secondary-foreground: 222.2 47.4% 11.2%; + --muted: 210 40% 96.1%; + --muted-foreground: 215.4 16.3% 46.9%; + --accent: 210 40% 96.1%; + --accent-foreground: 222.2 47.4% 11.2%; + --destructive: 0 84.2% 60.2%; + --destructive-foreground: 210 40% 98%; + --border: 214.3 31.8% 91.4%; + --input: 214.3 31.8% 91.4%; + --ring: 222.2 84% 4.9%; + --radius: 0.5rem; + } + + .dark { + --background: 222.2 84% 4.9%; + --foreground: 210 40% 98%; + --primary: 210 40% 98%; + --primary-foreground: 222.2 47.4% 11.2%; + /* ... other dark mode variables */ + } +} +``` + +### Customizing Components + +Since you own the code, customize directly: + +```tsx +// components/ui/button.tsx +import * as React from "react" +import { Slot } from "@radix-ui/react-slot" +import { cva, type VariantProps } from "class-variance-authority" +import { cn } from "@/lib/utils" + +const buttonVariants = cva( + "inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors", + { + variants: { + variant: { + default: "bg-primary text-primary-foreground hover:bg-primary/90", + destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90", + outline: "border border-input bg-background hover:bg-accent", + // Add custom variant + custom: "bg-gradient-to-r from-purple-500 to-pink-500 text-white", + }, + size: { + default: "h-10 px-4 py-2", + sm: "h-9 rounded-md px-3", + lg: "h-11 rounded-md px-8", + // Add custom size + xl: "h-14 rounded-md px-10 text-lg", + }, + }, + defaultVariants: { + variant: "default", + size: "default", + }, + } +) + +export interface ButtonProps + extends React.ButtonHTMLAttributes, + VariantProps { + asChild?: boolean +} + +const Button = React.forwardRef( + ({ className, variant, size, asChild = false, ...props }, ref) => { + const Comp = asChild ? Slot : "button" + return ( + + ) + } +) +Button.displayName = "Button" + +export { Button, buttonVariants } +``` + +## Next.js Integration + +### App Router Setup + +For Next.js 13+ with App Router, ensure components use `"use client"` directive: + +```tsx +// src/components/ui/button.tsx +"use client" + +import * as React from "react" +import { Slot } from "@radix-ui/react-slot" +import { cva, type VariantProps } from "class-variance-authority" +import { cn } from "@/lib/utils" + +// ... rest of component +``` + +### Layout Integration + +Add the Toaster to your root layout: + +```tsx +// app/layout.tsx +import { Toaster } from "@/components/ui/toaster" +import "./globals.css" + +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + + + {children} + + + + ) +} +``` + +### Server Components + +When using shadcn/ui components in Server Components, wrap them in a Client Component: + +```tsx +// app/dashboard/page.tsx +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" +import { ButtonClient } from "@/components/ui/button-client" + +export default function DashboardPage() { + return ( +
    + + + Dashboard + + + Interactive Button + + +
    + ) +} +``` + +```tsx +// src/components/ui/button-client.tsx +"use client" + +import { Button } from "./button" + +export function ButtonClient(props: React.ComponentProps) { + return